From 99ff8bc1f5b96c9384f7e9dbe9b66000d50c541f Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Tue, 12 Dec 2023 20:23:39 +0800 Subject: [PATCH 01/17] feat: dashboard partially --- addons/dashboard/helper.py | 31 +++++++++++ addons/dashboard/server.py | 68 +++++++++++++++++++++++ cores/qqbot/core.py | 48 +++++----------- cores/qqbot/global_object.py | 3 + main.py | 10 +++- util/general_utils.py | 33 +++++++---- webapp_replit.py => util/webapp_replit.py | 0 7 files changed, 145 insertions(+), 48 deletions(-) create mode 100644 addons/dashboard/helper.py create mode 100644 addons/dashboard/server.py rename webapp_replit.py => util/webapp_replit.py (100%) diff --git a/addons/dashboard/helper.py b/addons/dashboard/helper.py new file mode 100644 index 000000000..06dff7238 --- /dev/null +++ b/addons/dashboard/helper.py @@ -0,0 +1,31 @@ +from addons.dashboard.server import AstrBotDashBoard, DashBoardData +from pydantic import BaseModel +from typing import Union, Optional, + +class DashBoardConfig(BaseModel): + type: str["group", "item"] + name: str + description: str + body: Union[dict, list] + value: Optional[Union[list, dict, str, int, bool]] + val_type: Optional[str["list", "dict", "str", "int", "bool"]] + body: Optional['DashBoardConfig'] + + +class DashBoardHelper(): + def __init__(self, dashboard_data: DashBoardData): + self.dashboard_data = dashboard_data + self.dashboard = AstrBotDashBoard(self.dashboard_data) + + @self.dashboard.register("post_configs") + def on_post_configs(configs: dict): + self.dashboard_data.configs = configs + + return True + + # 将 config.yaml、 中的配置解析到 dashboard_data.configs 中 + def parse_config(self, config: dict): + pass + + def run(self): + self.dashboard.run() \ No newline at end of file diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py new file mode 100644 index 000000000..fa85ab37d --- /dev/null +++ b/addons/dashboard/server.py @@ -0,0 +1,68 @@ +from flask import Flask +import datetime +from pydantic import BaseModel +from util import general_utils as gu + +class DashBoardData(BaseModel): + stats: dict + configs: dict + logs: dict + +class Response(BaseModel): + status: str + message: str + data: dict + +class AstrBotDashBoard(): + def __init__(self, dashboard_data: DashBoardData): + self.dashboard_data = dashboard_data + self.dashboard_be = Flask(__name__) + self.funcs = {} + + @self.dashboard_be.get("/stats") + def get_stats(): + return Response( + status="success", + message="", + data=self.dashboard_data.stats + ).dict() + + @self.dashboard_be.get("/configs") + def get_configs(): + return Response( + status="success", + message="", + data=self.dashboard_data.configs + ).__dict__ + + @self.dashboard_be.post("/configs") + def post_configs(): + if self.funcs["post_configs"](self.dashboard_data.configs): + return Response( + status="success", + message="", + data=self.dashboard_data.configs + ).__dict__ + return Response( + status="error", + message="", + data=self.dashboard_data.configs + ).__dict__ + + @self.dashboard_be.get("/logs") + def get_logs(): + return Response( + status="success", + message="", + data=self.dashboard_data.logs + ).__dict__ + + def register(self, name: str): + def decorator(func): + self.funcs[name] = func + return func + return decorator + + def run(self): + gu.log(f"\n\n==================\n您可以访问:\n\thttp://localhost:6185/\n来登录可视化面板。\n==================\n\n", tag="可视化面板") + self.dashboard_be.run(host="0.0.0.0", port=6185) diff --git a/cores/qqbot/core.py b/cores/qqbot/core.py index 9cd34508e..ef1268ba5 100644 --- a/cores/qqbot/core.py +++ b/cores/qqbot/core.py @@ -39,7 +39,7 @@ import io import traceback from . global_object import GlobalObject from typing import Union, Callable - +from addons.dashboard.helper import DashBoardHelper # 缓存的会话 session_dict = {} @@ -48,9 +48,6 @@ count = {} # 统计信息 stat_file = '' -# 日志记录 -# logf = open('log.log', 'a+', encoding='utf-8') - # 用户发言频率 user_frequency = {} # 时间默认值 @@ -64,11 +61,8 @@ announcement = "" # 机器人私聊模式 direct_message_mode = True -# 适配pyinstaller -abs_path = os.path.dirname(os.path.realpath(sys.argv[0])) + '/' - # 版本 -version = '3.0.4' +version = '3.1.0' # 语言模型 REV_CHATGPT = 'rev_chatgpt' @@ -160,27 +154,6 @@ def _runner(func: Callable, args: tuple): loop.run_until_complete(func(*args)) loop.close() - -# [Deprecated] 写入统计信息 -def toggle_count(at: bool, message): - global stat_file - try: - if str(message.guild_id) not in count: - count[str(message.guild_id)] = { - 'count': 1, - 'direct_count': 1, - } - else: - count[str(message.guild_id)]['count'] += 1 - if not at: - count[str(message.guild_id)]['direct_count'] += 1 - stat_file = open(abs_path+"configs/stat", 'w', encoding='utf-8') - stat_file.write(json.dumps(count)) - stat_file.flush() - stat_file.close() - except BaseException: - pass - # 上传统计信息并检查更新 def upload(): global version, gocq_bot, qqchannel_bot @@ -228,6 +201,9 @@ def initBot(cfg, prov): global baidu_judge, chosen_provider global frequency_count, frequency_time, announcement, direct_message_mode, version global keywords, _global_object + + # 迁移旧配置 + gu.try_migrate_config() _event_loop = asyncio.new_event_loop() asyncio.set_event_loop(_event_loop) @@ -410,7 +386,7 @@ def initBot(cfg, prov): # thread.join() if thread_inst == None: - raise Exception("[System-Error] 没有启用/成功启用任何机器人,程序退出") + gu.log("没有启用/成功启用任何机器人平台", gu.LEVEL_CRITICAL) default_personality_str = cc.get("default_personality_str", "") if default_personality_str == "": @@ -420,12 +396,18 @@ def initBot(cfg, prov): "name": "default", "prompt": default_personality_str, } + + # 初始化dashboard + dashboard_helper = DashBoardHelper(_global_object.dashboard_data) + dashboard_helper.parse_config(cfg) + dashboard_thread = threading.Thread(target=dashboard_helper.run, daemon=True) + dashboard_thread.start() gu.log("🎉 项目启动完成。") + + # asyncio.get_event_loop().run_until_complete(cli()) - asyncio.get_event_loop().run_until_complete(cli()) - - thread_inst.join() + dashboard_thread.join() async def cli(): time.sleep(1) diff --git a/cores/qqbot/global_object.py b/cores/qqbot/global_object.py index d9871429e..8e268ff71 100644 --- a/cores/qqbot/global_object.py +++ b/cores/qqbot/global_object.py @@ -1,6 +1,7 @@ from model.platform.qqchan import QQChan, NakuruGuildMember, NakuruGuildMessage from model.platform.qq import QQ from model.provider.provider import Provider +from addons.dashboard.server import DashBoardData from nakuru import ( CQHTTP, GroupMessage, @@ -27,6 +28,7 @@ class GlobalObject: platform_qq: QQ platform_qqchan: QQChan default_personality: dict + dashboard_data: DashBoardData def __init__(self): self.nick = None # gocq 的昵称 @@ -41,6 +43,7 @@ class GlobalObject: self.platform_qq = None self.platform_qqchan = None self.default_personality = None + self.dashboard_data = None class AstrMessageEvent(): message_str: str # 纯消息字符串 diff --git a/main.py b/main.py index 4a209e82e..7b1b2af06 100644 --- a/main.py +++ b/main.py @@ -3,12 +3,17 @@ from pip._internal import main as pipmain import warnings import traceback import threading +import logging warnings.filterwarnings("ignore") abs_path = os.path.dirname(os.path.realpath(sys.argv[0])) + '/' def main(): - + logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + datefmt='%H:%M:%S', + ) # config.yaml 配置文件加载和环境确认 try: import cores.qqbot.core as qqBot @@ -112,7 +117,6 @@ def get_platform(): print("other") if __name__ == "__main__": - args = sys.argv if '-cn' in args: @@ -123,7 +127,7 @@ if __name__ == "__main__": if '-replit' in args: print("[System] 启动Replit Web保活服务...") try: - from webapp_replit import keep_alive + from util.webapp_replit import keep_alive keep_alive() except BaseException as e: print(e) diff --git a/util/general_utils.py b/util/general_utils.py index 2525a15ec..6ec3c0eba 100644 --- a/util/general_utils.py +++ b/util/general_utils.py @@ -5,6 +5,7 @@ from PIL import Image, ImageDraw, ImageFont import os import re import requests +from util.cmd_config import CmdConfig PLATFORM_GOCQ = 'gocq' PLATFORM_QQCHAN = 'qqchan' @@ -79,7 +80,14 @@ def log( if len(msg) > max_len: msg = msg[:max_len] + "..." now = datetime.datetime.now().strftime("%m-%d %H:%M:%S") - pre = f"[{now}] [{level}] [{tag}]: {msg}" + + pres = [] + for line in msg.split("\n"): + if line == "\n": + pres.append("") + else: + pres.append(f"[{now}] [{level}] [{tag}]: {line}") + if level == "INFO": if fg is None: fg = FG_COLORS["green"] @@ -100,8 +108,11 @@ def log( fg = FG_COLORS["purple"] if bg is None: bg = BG_COLORS["default"] - - print(f"\033[{fg};{bg}m{pre}\033[0m") + + ret = "" + for line in pres: + ret += f"\033[{fg};{bg}m{line}\033[0m\n" + print(ret) def port_checker(port: int, host: str = "localhost"): @@ -501,14 +512,12 @@ def create_markdown_image(text: str): return p except Exception as e: raise e - -def test_markdown(): - # 示例使用 - markdown_text = """# Help Center - ! [] (https://soulter.top/helpme.jpg) - """ - image = render_markdown(markdown_text) - image.show() -# test_markdown() +# 迁移配置文件到 cmd_config.json +def try_migrate_config(old_config: dict): + cc = CmdConfig() + if cc.get("qqbot", None) is None: + # 未迁移过 + for k in old_config: + cc.put(k, old_config[k]) \ No newline at end of file diff --git a/webapp_replit.py b/util/webapp_replit.py similarity index 100% rename from webapp_replit.py rename to util/webapp_replit.py From 3ba97ad0dc306b94e8c43d6f8fd8afed78b22427 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 13 Dec 2023 16:17:49 +0800 Subject: [PATCH 02/17] chore: dashboard update --- addons/dashboard/helper.py | 157 ++++++++++++++++++++++++++++++++++--- 1 file changed, 148 insertions(+), 9 deletions(-) diff --git a/addons/dashboard/helper.py b/addons/dashboard/helper.py index 06dff7238..80be607b5 100644 --- a/addons/dashboard/helper.py +++ b/addons/dashboard/helper.py @@ -1,21 +1,23 @@ from addons.dashboard.server import AstrBotDashBoard, DashBoardData from pydantic import BaseModel -from typing import Union, Optional, +from typing import Union, Optional +import uuid class DashBoardConfig(BaseModel): type: str["group", "item"] name: str description: str - body: Union[dict, list] - value: Optional[Union[list, dict, str, int, bool]] - val_type: Optional[str["list", "dict", "str", "int", "bool"]] - body: Optional['DashBoardConfig'] - + uuid: Optional[str] # 仅 item 才需要 + body: Optional[list['DashBoardConfig']] # 仅 group 才需要 + value: Optional[Union[list, dict, str, int, bool]] # 仅 item 才需要 + val_type: Optional[str] # 仅 item 才需要 class DashBoardHelper(): - def __init__(self, dashboard_data: DashBoardData): - self.dashboard_data = dashboard_data + def __init__(self, dashboard_data: DashBoardData, config: dict): + self.parse_config(config) + self.dashboard_data: DashBoardData = dashboard_data self.dashboard = AstrBotDashBoard(self.dashboard_data) + self.key_map = {} # key: uuid, value: config key name @self.dashboard.register("post_configs") def on_post_configs(configs: dict): @@ -25,7 +27,144 @@ class DashBoardHelper(): # 将 config.yaml、 中的配置解析到 dashboard_data.configs 中 def parse_config(self, config: dict): - pass + self.dashboard_data.configs = { + "data": [] + } + ''' + { + "data": [ + { + "type": "group", + "name": "机器人平台配置", + "description": "机器人平台配置描述", + "body": [ + { + "type": "item", + "val_type": "bool", + "name": "启用 QQ 频道平台", + "description": "机器人平台名称描述", + "value": true + }, + { + "type": "item", + "val_type": "string", + "name": "QQ机器人APPID", + "description": "机器人平台名称描述", + "value": "123456" + }, + { + "type": "item", + "val_type": "string", + "name": "QQ机器人令牌", + "description": "机器人平台名称描述", + "value": "123456" + }, + { + "type": "divider" + }, + { + "type": "item", + "val_type": "bool", + "name": "启用 GO-CQHTTP 平台", + "description": "机器人平台名称描述", + "value": false + } + ] + }, + { + "type": "group", + "name": "代理配置", + "description": "代理配置描述", + "body": [ + { + "type": "item", + "val_type": "string", + "name": "代理地址", + "description": "代理配置描述", + "value": "http://localhost:7890" + } + ] + }, + { + "type": "group", + "name": "其他配置", + "description": "其他配置描述", + "body": [ + { + "type": "item", + "val_type": "string", + "name": "回复前缀", + "description": "[xxxx] 你好! 其中xxxx是你可以填写的前缀。如果为空则不显示。", + "value": "GPT" + } + ] + } + + ] +} + ''' + for k in config: + if 'qqbot' in k and 'enable' in k['qqbot'] and 'gocqbot' in k and 'enable' in k['gocqbot']': + self.dashboard_data.configs['data'].append({ + "type": "group", + "name": "机器人平台配置", + "description": "机器人平台配置描述", + "body": [ + { + "type": "item", + "val_type": "bool", + "name": "启用 QQ 频道平台", + "description": "机器人平台名称描述", + "value": k['qqbot']['enable'], + "uuid": uuid.uuid4().hex + }, + { + "type": "item", + "val_type": "string", + "name": "QQ机器人APPID", + "description": "机器人平台名称描述", + "value": k['qqbot']['appid'], + "uuid": uuid.uuid4().hex + }, + { + "type": "item", + "val_type": "string", + "name": "QQ机器人令牌", + "description": "机器人平台名称描述", + "value": k['qqbot']['token'], + "uuid": uuid.uuid4().hex + }, + { + "type": "divider" + }, + { + "type": "item", + "val_type": "bool", + "name": "启用 GO-CQHTTP 平台", + "description": "机器人平台名称描述", + "value": k['gocqbot']['enable'], + "uuid": uuid.uuid4().hex + } + ] + }) + + if 'http_proxy' in k: + self.dashboard_data.configs['data'].append({ + "type": "group", + "name": "代理配置", + "description": "代理配置描述", + "body": [ + { + "type": "item", + "val_type": "string", + "name": "代理地址", + "description": "代理配置描述", + "value": k['proxy'], + "uuid": uuid.uuid4().hex + } + ] + }) + def run(self): self.dashboard.run() \ No newline at end of file From 0e53c95c06d110bdfec486d2f1925c69404548d7 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 13 Dec 2023 18:35:50 +0800 Subject: [PATCH 03/17] feat: config --- addons/dashboard/helper.py | 318 ++++++++++++++++++++----------------- addons/dashboard/server.py | 29 ++-- cores/qqbot/core.py | 26 ++- main.py | 4 +- util/cmd_config.py | 19 +++ 5 files changed, 226 insertions(+), 170 deletions(-) diff --git a/addons/dashboard/helper.py b/addons/dashboard/helper.py index 80be607b5..0aeac5613 100644 --- a/addons/dashboard/helper.py +++ b/addons/dashboard/helper.py @@ -2,169 +2,187 @@ from addons.dashboard.server import AstrBotDashBoard, DashBoardData from pydantic import BaseModel from typing import Union, Optional import uuid +from util import general_utils as gu +from util.cmd_config import CmdConfig +from dataclasses import dataclass +import sys +import os -class DashBoardConfig(BaseModel): - type: str["group", "item"] - name: str - description: str - uuid: Optional[str] # 仅 item 才需要 - body: Optional[list['DashBoardConfig']] # 仅 group 才需要 - value: Optional[Union[list, dict, str, int, bool]] # 仅 item 才需要 - val_type: Optional[str] # 仅 item 才需要 +@dataclass +class DashBoardConfig(): + config_type: str + name: Optional[str] = None + description: Optional[str] = None + path: Optional[str] = None # 仅 item 才需要 + body: Optional[list['DashBoardConfig']] = None # 仅 group 才需要 + value: Optional[Union[list, dict, str, int, bool]] = None # 仅 item 才需要 + val_type: Optional[str] = None # 仅 item 才需要 class DashBoardHelper(): def __init__(self, dashboard_data: DashBoardData, config: dict): - self.parse_config(config) + dashboard_data.configs = { + "data": [] + } + self.parse_default_config(dashboard_data, config) self.dashboard_data: DashBoardData = dashboard_data self.dashboard = AstrBotDashBoard(self.dashboard_data) self.key_map = {} # key: uuid, value: config key name + self.cc = CmdConfig() @self.dashboard.register("post_configs") - def on_post_configs(configs: dict): - self.dashboard_data.configs = configs - - return True + def on_post_configs(post_configs: dict): + try: + gu.log(f"收到配置更新请求", gu.LEVEL_INFO, tag="可视化面板") + self.save_config(post_configs) + self.parse_default_config(self.dashboard_data, self.cc.get_all()) + # 重启 + py = sys.executable + os.execl(py, py, *sys.argv) + except Exception as e: + gu.log(f"在保存配置时发生错误:{e}", gu.LEVEL_ERROR, tag="可视化面板") + raise e + # 将 config.yaml、 中的配置解析到 dashboard_data.configs 中 - def parse_config(self, config: dict): - self.dashboard_data.configs = { - "data": [] - } - ''' - { - "data": [ - { - "type": "group", - "name": "机器人平台配置", - "description": "机器人平台配置描述", - "body": [ - { - "type": "item", - "val_type": "bool", - "name": "启用 QQ 频道平台", - "description": "机器人平台名称描述", - "value": true - }, - { - "type": "item", - "val_type": "string", - "name": "QQ机器人APPID", - "description": "机器人平台名称描述", - "value": "123456" - }, - { - "type": "item", - "val_type": "string", - "name": "QQ机器人令牌", - "description": "机器人平台名称描述", - "value": "123456" - }, - { - "type": "divider" - }, - { - "type": "item", - "val_type": "bool", - "name": "启用 GO-CQHTTP 平台", - "description": "机器人平台名称描述", - "value": false - } - ] - }, - { - "type": "group", - "name": "代理配置", - "description": "代理配置描述", - "body": [ - { - "type": "item", - "val_type": "string", - "name": "代理地址", - "description": "代理配置描述", - "value": "http://localhost:7890" - } - ] - }, - { - "type": "group", - "name": "其他配置", - "description": "其他配置描述", - "body": [ - { - "type": "item", - "val_type": "string", - "name": "回复前缀", - "description": "[xxxx] 你好! 其中xxxx是你可以填写的前缀。如果为空则不显示。", - "value": "GPT" - } - ] - } - - ] -} - ''' - for k in config: - if 'qqbot' in k and 'enable' in k['qqbot'] and 'gocqbot' in k and 'enable' in k['gocqbot']': - self.dashboard_data.configs['data'].append({ - "type": "group", - "name": "机器人平台配置", - "description": "机器人平台配置描述", - "body": [ - { - "type": "item", - "val_type": "bool", - "name": "启用 QQ 频道平台", - "description": "机器人平台名称描述", - "value": k['qqbot']['enable'], - "uuid": uuid.uuid4().hex - }, - { - "type": "item", - "val_type": "string", - "name": "QQ机器人APPID", - "description": "机器人平台名称描述", - "value": k['qqbot']['appid'], - "uuid": uuid.uuid4().hex - }, - { - "type": "item", - "val_type": "string", - "name": "QQ机器人令牌", - "description": "机器人平台名称描述", - "value": k['qqbot']['token'], - "uuid": uuid.uuid4().hex - }, - { - "type": "divider" - }, - { - "type": "item", - "val_type": "bool", - "name": "启用 GO-CQHTTP 平台", - "description": "机器人平台名称描述", - "value": k['gocqbot']['enable'], - "uuid": uuid.uuid4().hex - } - ] - }) + def parse_default_config(self, dashboard_data: DashBoardData, config: dict): + + try: + bot_platform_group = DashBoardConfig( + config_type="group", + name="机器人平台配置", + description="机器人平台配置描述", + body=[ + DashBoardConfig( + config_type="item", + val_type="bool", + name="启用 QQ 频道平台", + description="机器人平台名称描述", + value=config['qqbot']['enable'], + path="qqbot.enable", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="QQ机器人APPID", + description="机器人平台名称描述", + value=config['qqbot']['appid'], + path="qqbot.appid", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="QQ机器人令牌", + description="机器人平台名称描述", + value=config['qqbot']['token'], + path="qqbot.token", + ), + DashBoardConfig( + config_type="divider" + ), + DashBoardConfig( + config_type="item", + val_type="bool", + name="启用 GO-CQHTTP 平台", + description="机器人平台名称描述", + value=config['gocqbot']['enable'], + path="gocqbot.enable", + ) + ] + ) - if 'http_proxy' in k: - self.dashboard_data.configs['data'].append({ - "type": "group", - "name": "代理配置", - "description": "代理配置描述", - "body": [ - { - "type": "item", - "val_type": "string", - "name": "代理地址", - "description": "代理配置描述", - "value": k['proxy'], - "uuid": uuid.uuid4().hex - } - ] - }) + proxy_group = DashBoardConfig( + config_type="group", + name="代理配置", + description="代理配置描述", + body=[ + DashBoardConfig( + config_type="item", + val_type="string", + name="HTTP 代理地址", + description="代理配置描述", + value=config['http_proxy'], + path="proxy", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="HTTPS 代理地址", + description="代理配置描述", + value=config['https_proxy'], + path="proxy", + ) + ] + ) + other_group = DashBoardConfig( + config_type="group", + name="其他配置", + description="其他配置描述", + body=[ + DashBoardConfig( + config_type="item", + val_type="string", + name="回复前缀", + description="[xxxx] 你好! 其中xxxx是你可以填写的前缀。如果为空则不显示。", + value=config['reply_prefix'], + path="reply_prefix", + ) + ] + ) + + dashboard_data.configs['data'] = [ + bot_platform_group, + proxy_group, + other_group + ] + + except Exception as e: + gu.log(f"配置文件解析错误:{e}", gu.LEVEL_ERROR) + raise e + + def save_config(self, post_config: dict): + ''' + 根据 path 解析并保存配置 + ''' + # for config in dashboard_data.configs['data']: + # if config['config_type'] == "group": + # for item in config['body']: + # queue.append(item) + + queue = [] + for config in post_config['data']: + queue.append(config) + + while len(queue) > 0: + config = queue.pop(0) + if config['config_type'] == "group": + for item in config['body']: + queue.append(item) + elif config['config_type'] == "item": + if config['path'] is None or config['path'] == "": + continue + + path = config['path'].split('.') + if len(path) == 0: + continue + + if config['val_type'] == "bool": + self.cc.put_by_dot_str(config['path'], config['value']) + elif config['val_type'] == "string": + self.cc.put_by_dot_str(config['path'], config['value']) + elif config['val_type'] == "int": + try: + self.cc.put_by_dot_str(config['path'], int(config['value'])) + except: + raise ValueError(f"配置项 {config['name']} 的值必须是整数") + elif config['val_type'] == "float": + try: + self.cc.put_by_dot_str(config['path'], float(config['value'])) + except: + raise ValueError(f"配置项 {config['name']} 的值必须是浮点数") + else: + raise NotImplementedError(f"未知或者未实现的的配置项类型:{config['val_type']}") + def run(self): self.dashboard.run() \ No newline at end of file diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py index fa85ab37d..8733c3374 100644 --- a/addons/dashboard/server.py +++ b/addons/dashboard/server.py @@ -1,14 +1,16 @@ -from flask import Flask +from flask import Flask, request import datetime -from pydantic import BaseModel from util import general_utils as gu +from dataclasses import dataclass -class DashBoardData(BaseModel): +@dataclass +class DashBoardData(): stats: dict configs: dict logs: dict - -class Response(BaseModel): + +@dataclass +class Response(): status: str message: str data: dict @@ -37,17 +39,20 @@ class AstrBotDashBoard(): @self.dashboard_be.post("/configs") def post_configs(): - if self.funcs["post_configs"](self.dashboard_data.configs): + post_configs = request.json + try: + self.funcs["post_configs"](post_configs) return Response( status="success", - message="", + message="保存成功~ 机器人正在重启以应用新的配置。", + data=None + ).__dict__ + except Exception as e: + return Response( + status="error", + message=e.__str__(), data=self.dashboard_data.configs ).__dict__ - return Response( - status="error", - message="", - data=self.dashboard_data.configs - ).__dict__ @self.dashboard_be.get("/logs") def get_logs(): diff --git a/cores/qqbot/core.py b/cores/qqbot/core.py index ef1268ba5..ef0fa558b 100644 --- a/cores/qqbot/core.py +++ b/cores/qqbot/core.py @@ -40,6 +40,7 @@ import traceback from . global_object import GlobalObject from typing import Union, Callable from addons.dashboard.helper import DashBoardHelper +from addons.dashboard.server import DashBoardData # 缓存的会话 session_dict = {} @@ -122,6 +123,8 @@ cc.init_attributes("openai_image_generate", { "style": "vivid", "quality": "standard", }) +cc.init_attributes("http_proxy", "") +cc.init_attributes("https_proxy", "") # cc.init_attributes(["qq_forward_mode"], False) # QQ机器人 @@ -203,7 +206,9 @@ def initBot(cfg, prov): global keywords, _global_object # 迁移旧配置 - gu.try_migrate_config() + gu.try_migrate_config(cfg) + # 使用新配置 + cfg = cc.get_all() _event_loop = asyncio.new_event_loop() asyncio.set_event_loop(_event_loop) @@ -213,7 +218,13 @@ def initBot(cfg, prov): _global_object.base_config = cfg if 'reply_prefix' in cfg: - _global_object.reply_prefix = cfg['reply_prefix'] + # 适配旧版配置 + if isinstance(cfg['reply_prefix'], dict): + for k in cfg['reply_prefix']: + _global_object.reply_prefix = cfg['reply_prefix'][k] + break + else: + _global_object.reply_prefix = cfg['reply_prefix'] # 语言模型提供商 gu.log("--------加载语言模型--------", gu.LEVEL_INFO, fg=gu.FG_COLORS['yellow']) @@ -398,8 +409,12 @@ def initBot(cfg, prov): } # 初始化dashboard - dashboard_helper = DashBoardHelper(_global_object.dashboard_data) - dashboard_helper.parse_config(cfg) + _global_object.dashboard_data = DashBoardData( + stats={}, + configs={}, + logs={} + ) + dashboard_helper = DashBoardHelper(_global_object.dashboard_data, config=cc.get_all()) dashboard_thread = threading.Thread(target=dashboard_helper.run, daemon=True) dashboard_thread.start() @@ -736,8 +751,7 @@ async def oper_msg(message: Union[GroupMessage, FriendMessage, GuildMessage, Nak res = "" chatgpt_res = str(res) - if chosen_provider in _global_object.reply_prefix: - chatgpt_res = _global_object.reply_prefix[chosen_provider] + chatgpt_res + chatgpt_res = _global_object.reply_prefix + chatgpt_res except BaseException as e: gu.log(f"调用异常:{traceback.format_exc()}", gu.LEVEL_ERROR, max_len=100000) gu.log("调用语言模型例程时出现异常。原因: "+str(e), gu.LEVEL_ERROR) diff --git a/main.py b/main.py index 7b1b2af06..1169354d7 100644 --- a/main.py +++ b/main.py @@ -33,9 +33,9 @@ def main(): input("config.yaml 配置文件格式错误,请遵守 yaml 格式。") # 设置代理 - if 'http_proxy' in cfg: + if 'http_proxy' in cfg and cfg['http_proxy'] != '': os.environ['HTTP_PROXY'] = cfg['http_proxy'] - if 'https_proxy' in cfg: + if 'https_proxy' in cfg and cfg['https_proxy'] != '': os.environ['HTTPS_PROXY'] = cfg['https_proxy'] os.environ['NO_PROXY'] = 'cn.bing.com,https://api.sgroup.qq.com' diff --git a/util/cmd_config.py b/util/cmd_config.py index 9a138829a..047baed79 100644 --- a/util/cmd_config.py +++ b/util/cmd_config.py @@ -37,6 +37,25 @@ class CmdConfig(): with open(cpath, "w", encoding="utf-8-sig") as f: json.dump(d, f, indent=4, ensure_ascii=False) f.flush() + + @staticmethod + def put_by_dot_str(key: str, value): + ''' + 根据点分割的字符串,将值写入配置文件 + ''' + check_exist() + with open(cpath, "r", encoding="utf-8-sig") as f: + d = json.load(f) + _d = d + _ks = key.split(".") + for i in range(len(_ks)): + if i == len(_ks) - 1: + _d[_ks[i]] = value + else: + _d = _d[_ks[i]] + with open(cpath, "w", encoding="utf-8-sig") as f: + json.dump(d, f, indent=4, ensure_ascii=False) + f.flush() @staticmethod def init_attributes(key: Union[str, list], init_val = ""): From 6eee4f678fd9e2f68dee00742052adad751a2245 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 13 Dec 2023 22:47:17 +0800 Subject: [PATCH 04/17] =?UTF-8?q?feat:=20dashboard=20=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E5=86=85=E5=AD=98=E6=98=BE=E7=A4=BA=E3=80=81=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- addons/dashboard/helper.py | 11 +++++++++-- addons/dashboard/server.py | 13 ++++++++++--- cores/monitor/perf.py | 21 +++++++++++++++++++++ cores/qqbot/core.py | 5 ++++- cores/qqbot/global_object.py | 3 +++ 5 files changed, 47 insertions(+), 6 deletions(-) create mode 100644 cores/monitor/perf.py diff --git a/addons/dashboard/helper.py b/addons/dashboard/helper.py index 0aeac5613..c46e2ecce 100644 --- a/addons/dashboard/helper.py +++ b/addons/dashboard/helper.py @@ -7,6 +7,14 @@ from util.cmd_config import CmdConfig from dataclasses import dataclass import sys import os +import threading +import time + + +def shutdown_bot(delay_s: int): + time.sleep(delay_s) + py = sys.executable + os.execl(py, py, *sys.argv) @dataclass class DashBoardConfig(): @@ -36,8 +44,7 @@ class DashBoardHelper(): self.save_config(post_configs) self.parse_default_config(self.dashboard_data, self.cc.get_all()) # 重启 - py = sys.executable - os.execl(py, py, *sys.argv) + threading.Thread(target=shutdown_bot, args=(2,), daemon=True).start() except Exception as e: gu.log(f"在保存配置时发生错误:{e}", gu.LEVEL_ERROR, tag="可视化面板") raise e diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py index 8733c3374..128be13bf 100644 --- a/addons/dashboard/server.py +++ b/addons/dashboard/server.py @@ -1,7 +1,10 @@ from flask import Flask, request +from flask.logging import default_handler +from werkzeug.serving import make_server import datetime from util import general_utils as gu from dataclasses import dataclass +import logging @dataclass class DashBoardData(): @@ -19,6 +22,8 @@ class AstrBotDashBoard(): def __init__(self, dashboard_data: DashBoardData): self.dashboard_data = dashboard_data self.dashboard_be = Flask(__name__) + log = logging.getLogger('werkzeug') + log.setLevel(logging.ERROR) self.funcs = {} @self.dashboard_be.get("/stats") @@ -27,7 +32,7 @@ class AstrBotDashBoard(): status="success", message="", data=self.dashboard_data.stats - ).dict() + ).__dict__ @self.dashboard_be.get("/configs") def get_configs(): @@ -44,7 +49,7 @@ class AstrBotDashBoard(): self.funcs["post_configs"](post_configs) return Response( status="success", - message="保存成功~ 机器人正在重启以应用新的配置。", + message="保存成功~ 机器人将在 2 秒内重启以应用新的配置。", data=None ).__dict__ except Exception as e: @@ -70,4 +75,6 @@ class AstrBotDashBoard(): def run(self): gu.log(f"\n\n==================\n您可以访问:\n\thttp://localhost:6185/\n来登录可视化面板。\n==================\n\n", tag="可视化面板") - self.dashboard_be.run(host="0.0.0.0", port=6185) + # self.dashboard_be.run(host="0.0.0.0", port=6185) + http_server = make_server('0.0.0.0', 6185, self.dashboard_be) + http_server.serve_forever() diff --git a/cores/monitor/perf.py b/cores/monitor/perf.py new file mode 100644 index 000000000..e9388be64 --- /dev/null +++ b/cores/monitor/perf.py @@ -0,0 +1,21 @@ +''' +监测机器性能 +- Bot 内存使用量 +- CPU 占用率 +''' + +import psutil +from cores.qqbot.global_object import GlobalObject +import time + +def run_monitor(global_object: GlobalObject): + '''运行监测''' + while True: + stat = global_object.dashboard_data.stats + # 程序占用的内存大小 + mem = psutil.Process().memory_info().rss / 1024 / 1024 # MB + stat['sys_perf'] = { + 'memory': mem, + 'cpu': psutil.cpu_percent() + } + time.sleep(30) \ No newline at end of file diff --git a/cores/qqbot/core.py b/cores/qqbot/core.py index ef0fa558b..fb8de10a3 100644 --- a/cores/qqbot/core.py +++ b/cores/qqbot/core.py @@ -41,6 +41,7 @@ from . global_object import GlobalObject from typing import Union, Callable from addons.dashboard.helper import DashBoardHelper from addons.dashboard.server import DashBoardData +from cores.monitor.perf import run_monitor # 缓存的会话 session_dict = {} @@ -407,7 +408,6 @@ def initBot(cfg, prov): "name": "default", "prompt": default_personality_str, } - # 初始化dashboard _global_object.dashboard_data = DashBoardData( stats={}, @@ -418,6 +418,9 @@ def initBot(cfg, prov): dashboard_thread = threading.Thread(target=dashboard_helper.run, daemon=True) dashboard_thread.start() + # 运行 monitor + threading.Thread(target=run_monitor, args=(_global_object,), daemon=False).start() + gu.log("🎉 项目启动完成。") # asyncio.get_event_loop().run_until_complete(cli()) diff --git a/cores/qqbot/global_object.py b/cores/qqbot/global_object.py index 8e268ff71..4b660ff8e 100644 --- a/cores/qqbot/global_object.py +++ b/cores/qqbot/global_object.py @@ -29,6 +29,7 @@ class GlobalObject: platform_qqchan: QQChan default_personality: dict dashboard_data: DashBoardData + stat: dict def __init__(self): self.nick = None # gocq 的昵称 @@ -44,6 +45,8 @@ class GlobalObject: self.platform_qqchan = None self.default_personality = None self.dashboard_data = None + self.stat = {} + class AstrMessageEvent(): message_str: str # 纯消息字符串 From a12be7fa7786a0930b3d386b5f6b8a2eb89c6daf Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Thu, 14 Dec 2023 16:39:47 +0800 Subject: [PATCH 05/17] =?UTF-8?q?feat:=20=E9=9B=86=E6=88=90=E5=8F=AF?= =?UTF-8?q?=E8=A7=86=E5=8C=96=E9=9D=A2=E6=9D=BF=E5=88=B0=E6=9C=BA=E5=99=A8?= =?UTF-8?q?=E4=BA=BA=E5=86=85=E9=83=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 + addons/dashboard/dist/_redirects | 1 + .../dist/assets/BaseBreadcrumb-4d676ba5.css | 1 + ...ue_vue_type_style_index_0_lang-d429ad96.js | 1 + .../dist/assets/BlankLayout-d60a3667.js | 1 + .../dist/assets/ColorPage-ed37a0a8.js | 1 + .../dist/assets/ConfigPage-25c22b8a.js | 1 + .../dist/assets/DefaultDashboard-e25eb9fa.js | 1 + .../dist/assets/Error404Page-11cf087a.css | 1 + .../dist/assets/Error404Page-cf3bd987.js | 1 + .../dist/assets/ExtensionPage-134b32c8.js | 26 + .../dist/assets/FullLayout-b0552666.js | 1 + .../dist/assets/LoginPage-74e85ca7.css | 1 + .../dist/assets/LoginPage-bfc811c9.js | 5 + ...ue_type_script_setup_true_lang-16088022.js | 1 + .../dist/assets/MaterialIcons-5aa79b4a.js | 1 + .../dist/assets/RegisterPage-799ed804.css | 1 + .../dist/assets/RegisterPage-f5bc57b5.js | 1 + .../dist/assets/ShadowPage-4627a05c.js | 1 + .../dist/assets/StarterPage-64b013bc.js | 1 + .../dist/assets/TablerIcons-cf6c4112.js | 1 + .../dist/assets/TypographyPage-8db478a1.js | 1 + ...ue_type_script_setup_true_lang-b5d50914.js | 1 + .../_plugin-vue_export-helper-c27b6911.js | 1 + .../dashboard/dist/assets/axios-21b846bc.js | 5 + .../dist/assets/icon-card-5ebb8a56.svg | 5 + .../dist/assets/img-error-bg-ab6474a0.svg | 34 + .../dist/assets/img-error-blue-2675a7a9.svg | 43 ++ .../dist/assets/img-error-purple-edee3fbc.svg | 42 + .../dist/assets/img-error-text-a6aebfa0.svg | 27 + .../dashboard/dist/assets/index-0f1523f3.css | 5 + .../dashboard/dist/assets/index-ab39813a.js | 716 ++++++++++++++++++ .../materialdesignicons-webfont-67d24abe.eot | Bin 0 -> 1280212 bytes .../materialdesignicons-webfont-80bb28b3.woff | Bin 0 -> 576748 bytes .../materialdesignicons-webfont-a58ecb54.ttf | Bin 0 -> 1279992 bytes ...materialdesignicons-webfont-c1c004a9.woff2 | Bin 0 -> 396732 bytes .../dist/assets/social-google-a359a253.svg | 6 + addons/dashboard/dist/favicon.svg | 1 + addons/dashboard/dist/index.html | 21 + addons/dashboard/server.py | 23 +- cores/qqbot/core.py | 1 + requirements.txt | 6 +- util/general_utils.py | 2 +- 43 files changed, 984 insertions(+), 8 deletions(-) create mode 100644 addons/dashboard/dist/_redirects create mode 100644 addons/dashboard/dist/assets/BaseBreadcrumb-4d676ba5.css create mode 100644 addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js create mode 100644 addons/dashboard/dist/assets/BlankLayout-d60a3667.js create mode 100644 addons/dashboard/dist/assets/ColorPage-ed37a0a8.js create mode 100644 addons/dashboard/dist/assets/ConfigPage-25c22b8a.js create mode 100644 addons/dashboard/dist/assets/DefaultDashboard-e25eb9fa.js create mode 100644 addons/dashboard/dist/assets/Error404Page-11cf087a.css create mode 100644 addons/dashboard/dist/assets/Error404Page-cf3bd987.js create mode 100644 addons/dashboard/dist/assets/ExtensionPage-134b32c8.js create mode 100644 addons/dashboard/dist/assets/FullLayout-b0552666.js create mode 100644 addons/dashboard/dist/assets/LoginPage-74e85ca7.css create mode 100644 addons/dashboard/dist/assets/LoginPage-bfc811c9.js create mode 100644 addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js create mode 100644 addons/dashboard/dist/assets/MaterialIcons-5aa79b4a.js create mode 100644 addons/dashboard/dist/assets/RegisterPage-799ed804.css create mode 100644 addons/dashboard/dist/assets/RegisterPage-f5bc57b5.js create mode 100644 addons/dashboard/dist/assets/ShadowPage-4627a05c.js create mode 100644 addons/dashboard/dist/assets/StarterPage-64b013bc.js create mode 100644 addons/dashboard/dist/assets/TablerIcons-cf6c4112.js create mode 100644 addons/dashboard/dist/assets/TypographyPage-8db478a1.js create mode 100644 addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js create mode 100644 addons/dashboard/dist/assets/_plugin-vue_export-helper-c27b6911.js create mode 100644 addons/dashboard/dist/assets/axios-21b846bc.js create mode 100644 addons/dashboard/dist/assets/icon-card-5ebb8a56.svg create mode 100644 addons/dashboard/dist/assets/img-error-bg-ab6474a0.svg create mode 100644 addons/dashboard/dist/assets/img-error-blue-2675a7a9.svg create mode 100644 addons/dashboard/dist/assets/img-error-purple-edee3fbc.svg create mode 100644 addons/dashboard/dist/assets/img-error-text-a6aebfa0.svg create mode 100644 addons/dashboard/dist/assets/index-0f1523f3.css create mode 100644 addons/dashboard/dist/assets/index-ab39813a.js create mode 100644 addons/dashboard/dist/assets/materialdesignicons-webfont-67d24abe.eot create mode 100644 addons/dashboard/dist/assets/materialdesignicons-webfont-80bb28b3.woff create mode 100644 addons/dashboard/dist/assets/materialdesignicons-webfont-a58ecb54.ttf create mode 100644 addons/dashboard/dist/assets/materialdesignicons-webfont-c1c004a9.woff2 create mode 100644 addons/dashboard/dist/assets/social-google-a359a253.svg create mode 100644 addons/dashboard/dist/favicon.svg create mode 100644 addons/dashboard/dist/index.html diff --git a/.gitignore b/.gitignore index cd60be127..690818a8c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ __pycache__ botpy.log .vscode +data.db +configs/session +configs/config.yaml diff --git a/addons/dashboard/dist/_redirects b/addons/dashboard/dist/_redirects new file mode 100644 index 000000000..ad37e2c2c --- /dev/null +++ b/addons/dashboard/dist/_redirects @@ -0,0 +1 @@ +/* /index.html 200 diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb-4d676ba5.css b/addons/dashboard/dist/assets/BaseBreadcrumb-4d676ba5.css new file mode 100644 index 000000000..7217ebb55 --- /dev/null +++ b/addons/dashboard/dist/assets/BaseBreadcrumb-4d676ba5.css @@ -0,0 +1 @@ +.page-breadcrumb .v-toolbar{background:transparent} diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js new file mode 100644 index 000000000..77cc5e5f5 --- /dev/null +++ b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js @@ -0,0 +1 @@ +import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a5 as p,B as n,a6 as o,j as f}from"./index-ab39813a.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/addons/dashboard/dist/assets/BlankLayout-d60a3667.js b/addons/dashboard/dist/assets/BlankLayout-d60a3667.js new file mode 100644 index 000000000..bbbcd4f91 --- /dev/null +++ b/addons/dashboard/dist/assets/BlankLayout-d60a3667.js @@ -0,0 +1 @@ +import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-ab39813a.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/ColorPage-ed37a0a8.js b/addons/dashboard/dist/assets/ColorPage-ed37a0a8.js new file mode 100644 index 000000000..b0bbb2b39 --- /dev/null +++ b/addons/dashboard/dist/assets/ColorPage-ed37a0a8.js @@ -0,0 +1 @@ +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-ab39813a.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-25c22b8a.js b/addons/dashboard/dist/assets/ConfigPage-25c22b8a.js new file mode 100644 index 000000000..dc966cb8c --- /dev/null +++ b/addons/dashboard/dist/assets/ConfigPage-25c22b8a.js @@ -0,0 +1 @@ +import{_ as p}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{a as m}from"./axios-21b846bc.js";import{o as a,s as l,a as i,w as d,f,F as n,u as g,V as v,d as V,e as h,t as k,a2 as y,c as r,a3 as b,a4 as C,k as _,A as x}from"./index-ab39813a.js";const U={name:"ConfigPage",components:{UiParentCard:p},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){m.get("/api/configs").then(s=>{this.config_data=s.data.data,console.log(this.config_data)})},updateConfig(){m.post("/api/configs",this.config_data).then(s=>{console.log(this.config_data),s.data.status==="success"?(this.save_message=s.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=s.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},N=Object.assign(U,{setup(s){return(t,c)=>(a(),l(n,null,[i(v,null,{default:d(()=>[i(f,{cols:"12",md:"12"},{default:d(()=>[(a(!0),l(n,null,g(t.config_data.data,o=>(a(),r(p,{key:o.name,title:o.name,style:{"margin-bottom":"16px"}},{default:d(()=>[(a(!0),l(n,null,g(o.body,e=>(a(),l(n,null,[e.config_type==="item"?(a(),l(n,{key:0},[e.val_type==="bool"?(a(),r(b,{key:0,modelValue:e.value,"onUpdate:modelValue":u=>e.value=u,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(C,{key:1,modelValue:e.value,"onUpdate:modelValue":u=>e.value=u,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):_("",!0)],64)):e.config_type==="divider"?(a(),r(x,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):_("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),i(V,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:t.updateConfig},null,8,["onClick"]),i(y,{timeout:2e3,elevation:"24",color:t.save_message_success,modelValue:t.save_message_snack,"onUpdate:modelValue":c[0]||(c[0]=o=>t.save_message_snack=o)},{default:d(()=>[h(k(t.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{N as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-e25eb9fa.js b/addons/dashboard/dist/assets/DefaultDashboard-e25eb9fa.js new file mode 100644 index 000000000..a9395e20c --- /dev/null +++ b/addons/dashboard/dist/assets/DefaultDashboard-e25eb9fa.js @@ -0,0 +1 @@ +import{y as Q,p as i,o as r,c as _,w as e,a as t,O as g,b as a,d as f,j as w,P as M,q as z,Q as F,z as T,s as C,F as D,u as j,n as y,r as R,l as $,e as v,t as V,S as h,T as N,D as O,U as k,W as U,X as I,Y as W,Z as L,V as S,f as d,G as X,_ as E}from"./index-ab39813a.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";import{a as G}from"./axios-21b846bc.js";const Y={class:"d-flex align-start mb-6"},q={class:"ml-auto z-1"},A=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),H=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),Z={name:"TotalMessage",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},J=Object.assign(Z,{setup(s){const o=Q([{title:"移除",icon:N}]);return(p,b)=>{const u=i("DotsIcon");return r(),_(h,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",Y,[t(f,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-message"})]),_:1}),a("div",q,[t(M,{"close-on-content-click":!1},{activator:e(({props:n})=>[t(f,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},n),{default:e(()=>[t(u,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(T,{density:"compact"},{default:e(()=>[(r(!0),C(D,null,j(o.value,(n,c)=>(r(),_(y,{key:c,value:c},{prepend:e(()=>[(r(),_(R(n.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t($,{class:"ml-2"},{default:e(()=>[v(V(n.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),A,H]),_:1})]),_:1})}}}),K={class:"d-flex align-start mb-3"},tt={class:"ml-auto z-1"},et=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),at=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),st=a("h2",{class:"text-h1 font-weight-medium"}," 198 ",-1),ot=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),lt={name:"TotalSession",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},nt=Object.assign(lt,{setup(s){const o=O("1"),p=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),b={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},u=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),n={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(c,l)=>{const m=i("apexchart");return r(),_(h,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",K,[t(f,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",tt,[t(U,{modelValue:o.value,"onUpdate:modelValue":l[0]||(l[0]=x=>o.value=x),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(I,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[v("按日")]),_:1}),t(I,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[v("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(W,{modelValue:o.value,"onUpdate:modelValue":l[1]||(l[1]=x=>o.value=x),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"6"},{default:e(()=>[et,at]),_:1}),t(d,{cols:"6"},{default:e(()=>[t(m,{type:"line",height:"90",options:p.value,series:b.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"6"},{default:e(()=>[st,ot]),_:1}),t(d,{cols:"6"},{default:e(()=>[t(m,{type:"line",height:"90",options:u.value,series:n.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),it={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.memory=s.sys_perf.memory},deep:!0}},data:()=>({_stat:{},memory:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},rt=a("div",null,[a("h4",{class:"text-h4 font-weight-medium"},"?? 天 ?? 时 ?? 秒"),a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间")],-1),ct={class:"d-flex align-center gap-3"},ut={class:"text-h4 font-weight-medium"},mt=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function _t(s,o,p,b,u,n){return r(),C(D,null,[t(h,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(g,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(f,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-clock"})]),_:1}),rt,t(X),a("div",null,[t(f,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t(w,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(h,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(g,{class:"pa-5"},{default:e(()=>[a("div",ct,[t(f,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",ut,V(s.memory)+" MiB",1),mt])])]),_:1})]),_:1})],64)}const ft=B(it,[["render",_t]]),ht=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),pt=a("h3",{class:"text-h3 mt-1"},"??",-1),bt={class:"mt-4"},vt={name:"MessageStat",components:{},props:["stat"],data:()=>({}),mounted(){}},gt=Object.assign(vt,{setup(s){const o=O({state:"Today",abbr:"FL"}),p=[{state:"今天",abbr:"FL"},{state:"今月",abbr:"GA"},{state:"今年",abbr:"NE"}],b=k(()=>({chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:["1","2","3","4","5","6","7","8","9","10","11","12"]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}})),u={series:[{name:"消息条数",data:[35,145,35,35,20,105,100,10,65,45,30,10]}]};return(n,c)=>{const l=i("apexchart");return r(),_(h,{elevation:"0"},{default:e(()=>[t(h,{variant:"outlined"},{default:e(()=>[t(g,null,{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"12",sm:"9"},{default:e(()=>[ht,pt]),_:1}),t(d,{cols:"12",sm:"3"},{default:e(()=>[t(E,{color:"primary",variant:"outlined","hide-details":"",modelValue:o.value,"onUpdate:modelValue":c[0]||(c[0]=m=>o.value=m),items:p,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue"])]),_:1})]),_:1}),a("div",bt,[t(l,{type:"bar",height:"280",options:b.value,series:u.series},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},yt=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),wt={class:"ml-auto"},$t={class:"mt-4"},Vt={class:"d-inline-flex align-center justify-space-between w-100"},kt={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},St={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Tt={class:"text-center mt-3"},Ct={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.stat=s},deep:!0}},data:()=>({}),mounted(){}},Dt=Object.assign(Ct,{setup(s){k(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}}));const o=O([{name:"QQ 群",count:14124},{name:"QQ 频道",count:612},{name:"Discord",count:123}]);return(p,b)=>{const u=i("DotsIcon"),n=i("perfect-scrollbar"),c=i("ChevronRightIcon");return r(),_(h,{elevation:"0"},{default:e(()=>[t(h,{variant:"outlined"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",xt,[yt,a("div",wt,[t(M,{transition:"slide-y-transition"},{activator:e(({props:l})=>[t(f,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},l),{default:e(()=>[t(u,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(T,null,{default:e(()=>[t(y,{value:"1"},{default:e(()=>[t($,null,{default:e(()=>[v("今天")]),_:1})]),_:1}),t(y,{value:"2"},{default:e(()=>[t($,null,{default:e(()=>[v("今月")]),_:1})]),_:1}),t(y,{value:"3"},{default:e(()=>[t($,null,{default:e(()=>[v("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",$t,[t(n,{style:{height:"270px"}},{default:e(()=>[t(T,{lines:"two",class:"py-0"},{default:e(()=>[(r(!0),C(D,null,j(o.value,(l,m)=>(r(),_(y,{key:m,value:l,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Vt,[a("div",null,[a("h6",kt,V(l.name),1)]),a("div",St,V(l.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Tt,[t(f,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[v("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Ot={name:"DefaultDashboard",components:{TotalMessage:J,TotalSession:nt,OnlineTime:ft,MessageStat:gt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){G.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,o,p,b,u,n){const c=i("TotalMessage"),l=i("TotalSession"),m=i("OnlineTime"),x=i("MessageStat"),P=i("PlatformStat");return r(),_(S,null,{default:e(()=>[t(d,{cols:"12",md:"4"},{default:e(()=>[t(c,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",md:"4"},{default:e(()=>[t(l,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",md:"4"},{default:e(()=>[t(m,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",lg:"8"},{default:e(()=>[t(x,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",lg:"4"},{default:e(()=>[t(P,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const Ft=B(Ot,[["render",It]]);export{Ft as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-11cf087a.css b/addons/dashboard/dist/assets/Error404Page-11cf087a.css new file mode 100644 index 000000000..f7d3419c7 --- /dev/null +++ b/addons/dashboard/dist/assets/Error404Page-11cf087a.css @@ -0,0 +1 @@ +.CardMediaWrapper{max-width:720px;margin:0 auto;position:relative}.CardMediaBuild{position:absolute;top:0;left:0;width:100%;animation:5s bounce ease-in-out infinite}.CardMediaParts{position:absolute;top:0;left:0;width:100%;animation:10s blink ease-in-out infinite} diff --git a/addons/dashboard/dist/assets/Error404Page-cf3bd987.js b/addons/dashboard/dist/assets/Error404Page-cf3bd987.js new file mode 100644 index 000000000..88f2b2c0b --- /dev/null +++ b/addons/dashboard/dist/assets/Error404Page-cf3bd987.js @@ -0,0 +1 @@ +import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-ab39813a.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-134b32c8.js b/addons/dashboard/dist/assets/ExtensionPage-134b32c8.js new file mode 100644 index 000000000..0a9fa0992 --- /dev/null +++ b/addons/dashboard/dist/assets/ExtensionPage-134b32c8.js @@ -0,0 +1,26 @@ +import{x as _,o as s,c as l,w as t,a as e,$ as f,b as r,a0 as h,e as i,t as d,G as g,d as m,A as V,O as v,a1 as x,S as k,D as p,s as C,F as w,u as S,f as y,j as b,V as B}from"./index-ab39813a.js";const P={class:"d-sm-flex align-center justify-space-between"},$=_({__name:"ExtensionCard",props:{title:String,link:String},setup(u){const n=u,c=o=>{window.open(o,"_blank")};return(o,a)=>(s(),l(k,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(f,{style:{padding:"10px 20px"}},{default:t(()=>[r("div",P,[e(h,null,{default:t(()=>[i(d(n.title),1)]),_:1}),e(g),e(m,{icon:"mdi-link",variant:"plain",onClick:a[0]||(a[0]=E=>c(n.link))})])]),_:1}),e(V),e(v,null,{default:t(()=>[x(o.$slots,"default")]),_:3})]),_:3}))}}),G={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},N={class:"d-flex align-center gap-3"},D=` +{ + "data": [ + { + "name": "GoodPlugins", + "repo": "https://gitee.com/soulter/goodplugins", + "author": "soulter", + "desc": "一些好用的插件,一些好用的插件,一些好用的插件。一些好用的插件。一些好用的插件,一些好用的插件。一些好用的插件,一些好用的插件。一些好用的插件,一些好用的插件,一些好用的插件。一些好用的插件。一些好用的插件,一些好用的插件。一些好用的插件,一些好用的插件", + "version": "1.0" + }, + { + "name": "GoodPlugins", + "repo": "https://gitee.com/soulter/goodplugins", + "author": "soulter", + "desc": "一些好用的插件", + "version": "1.0" + }, + { + "name": "GoodPlugins", + "repo": "https://gitee.com/soulter/goodplugins", + "author": "soulter", + "desc": "一些好用的插件", + "version": "1.0" + } + ] +}`,j=_({__name:"ExtensionPage",setup(u){p({title:"Sample Page"});const n=p(JSON.parse(D));return(c,o)=>(s(),l(B,null,{default:t(()=>[(s(!0),C(w,null,S(n.value.data,a=>(s(),l(y,{cols:"12",md:"6",lg:"4"},{default:t(()=>[(s(),l($,{key:a.name,title:a.name,link:a.repo,style:{"margin-bottom":"16px"}},{default:t(()=>[r("p",G,d(a.desc),1),r("div",N,[e(b,null,{default:t(()=>[i("mdi-account")]),_:1}),r("span",null,d(a.author),1),e(g),e(m,{variant:"plain"},{default:t(()=>[i("安 装")]),_:1})])]),_:2},1032,["title","link"]))]),_:2},1024))),256))]),_:1}))}});export{j as default}; diff --git a/addons/dashboard/dist/assets/FullLayout-b0552666.js b/addons/dashboard/dist/assets/FullLayout-b0552666.js new file mode 100644 index 000000000..07a98c17c --- /dev/null +++ b/addons/dashboard/dist/assets/FullLayout-b0552666.js @@ -0,0 +1 @@ +import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-ab39813a.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-16088022.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; diff --git a/addons/dashboard/dist/assets/LoginPage-74e85ca7.css b/addons/dashboard/dist/assets/LoginPage-74e85ca7.css new file mode 100644 index 000000000..57fda31f0 --- /dev/null +++ b/addons/dashboard/dist/assets/LoginPage-74e85ca7.css @@ -0,0 +1 @@ +.custom-devider{border-color:#00000014!important}.googleBtn{border-color:#00000014;margin:30px 0 20px}.outlinedInput .v-field{border:1px solid rgba(0,0,0,.08);box-shadow:none}.orbtn{padding:2px 40px;border-color:#00000014;margin:20px 15px}.pwdInput{position:relative}.pwdInput .v-input__append{position:absolute;right:10px;top:50%;transform:translateY(-50%)}.loginForm .v-text-field .v-field--active input{font-weight:500}.loginBox{max-width:475px;margin:0 auto} diff --git a/addons/dashboard/dist/assets/LoginPage-bfc811c9.js b/addons/dashboard/dist/assets/LoginPage-bfc811c9.js new file mode 100644 index 000000000..a79d0d7f7 --- /dev/null +++ b/addons/dashboard/dist/assets/LoginPage-bfc811c9.js @@ -0,0 +1,5 @@ +import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-16088022.js";import{x as ke,a7 as we,r as Ot,a8 as Vt,D as A,a9 as Be,U as P,B as I,aa as Q,ab as St,ac as Ne,ad as Ie,ae as Et,af as jt,ag as At,ah as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,ai as Ft,d as Pt,e as Ge,s as Ct,aj as Tt,t as Bt,k as Nt,ak as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-ab39813a.js";/** + * vee-validate v4.11.3 + * (c) 2023 Abdelrahman Awad + * @license MIT + */function R(e){return typeof e=="function"}function nt(e){return e==null}const Z=e=>e!==null&&!!e&&typeof e=="object"&&!Array.isArray(e);function Me(e){return Number(e)>=0}function Mt(e){return typeof e=="object"&&e!==null}function Ut(e){return e==null?e===void 0?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}function Dt(e){if(!Mt(e)||Ut(e)!=="[object Object]")return!1;if(Object.getPrototypeOf(e)===null)return!0;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function ye(e,t){return Object.keys(t).forEach(n=>{if(Dt(t[n])){e[n]||(e[n]={}),ye(e[n],t[n]);return}e[n]=t[n]}),e}function pe(e){const t=e.split(".");if(!t.length)return"";let n=String(t[0]);for(let i=1;iGt(l)&&o in l?l[o]:n,e):n}function Y(e,t,n){if(be(t)){e[De(t)]=n;return}const i=t.split(/\.|\[(\d+)\]/).filter(Boolean);let l=e;for(let o=0;oD(e,n.slice(0,d).join(".")));for(let o=l.length-1;o>=0;o--)if(Yt(l[o])){if(o===0){Ce(e,n[0]);continue}Ce(l[o-1],n[o-1])}}function U(e){return Object.keys(e)}function Qe(e,t=0){let n=null,i=[];return function(...l){return n&&clearTimeout(n),n=setTimeout(()=>{const o=e(...l);i.forEach(d=>d(o)),i=[]},t),new Promise(o=>i.push(o))}}function Kt(e,t){let n;return async function(...l){const o=e(...l);n=o;const d=await o;return o!==n||(n=void 0,t(d,l)),d}}function Xe(e){return Array.isArray(e)?e:e?[e]:[]}function ue(e,t){const n={};for(const i in e)t.includes(i)||(n[i]=e[i]);return n}function Jt(e){let t=null,n=[];return function(...i){const l=Q(()=>{if(t!==l)return;const o=e(...i);n.forEach(d=>d(o)),n=[],t=null});return t=l,new Promise(o=>n.push(o))}}const Qt=(e,t,n)=>t.slots.default?typeof e=="string"||!e?t.slots.default(n()):{default:()=>{var i,l;return(l=(i=t.slots).default)===null||l===void 0?void 0:l.call(i,n())}}:t.slots.default;function Te(e){if(lt(e))return e._value}function lt(e){return"_value"in e}function Xt(e){return e.type==="number"||e.type==="range"?Number.isNaN(e.valueAsNumber)?e.value:e.valueAsNumber:e.value}function Ze(e){if(!Ue(e))return e;const t=e.target;if(qt(t.type)&<(t))return Te(t);if(t.type==="file"&&t.files){const n=Array.from(t.files);return t.multiple?n:n[0]}if(Wt(t))return Array.from(t.options).filter(n=>n.selected&&!n.disabled).map(Te);if(at(t)){const n=Array.from(t.options).find(i=>i.selected);return n?Te(n):t.value}return Xt(t)}function Zt(e){const t={};return Object.defineProperty(t,"_$$isNormalized",{value:!0,writable:!1,enumerable:!1,configurable:!1}),e?Z(e)&&e._$$isNormalized?e:Z(e)?Object.keys(e).reduce((n,i)=>{const l=en(e[i]);return e[i]!==!1&&(n[i]=et(l)),n},t):typeof e!="string"?t:e.split("|").reduce((n,i)=>{const l=tn(i);return l.name&&(n[l.name]=et(l.params)),n},t):t}function en(e){return e===!0?[]:Array.isArray(e)||Z(e)?e:[e]}function et(e){const t=n=>typeof n=="string"&&n[0]==="@"?nn(n.slice(1)):n;return Array.isArray(e)?e.map(t):e instanceof RegExp?[e]:Object.keys(e).reduce((n,i)=>(n[i]=t(e[i]),n),{})}const tn=e=>{let t=[];const n=e.split(":")[0];return e.includes(":")&&(t=e.split(":").slice(1).join(":").split(",")),{name:n,params:t}};function nn(e){const t=n=>D(n,e)||n[e];return t.__locatorRef=e,t}const rn={generateMessage:({field:e})=>`${e} is not valid.`,bails:!0,validateOnBlur:!0,validateOnChange:!0,validateOnInput:!1,validateOnModelUpdate:!0};let an=Object.assign({},rn);const X=()=>an;async function ln(e,t,n={}){const i=n==null?void 0:n.bails,l={name:(n==null?void 0:n.name)||"{field}",rules:t,label:n==null?void 0:n.label,bails:i??!0,formData:(n==null?void 0:n.values)||{}},d=(await un(l,e)).errors;return{errors:d,valid:!d.length}}async function un(e,t){if(ee(e.rules)||rt(e.rules))return sn(t,e.rules);if(R(e.rules)||Array.isArray(e.rules)){const d={field:e.label||e.name,name:e.name,label:e.label,form:e.formData,value:t},h=Array.isArray(e.rules)?e.rules:[e.rules],f=h.length,c=[];for(let m=0;m{const f=h.path||"";return d[f]||(d[f]={errors:[],path:f}),d[f].errors.push(...h.errors),d},{});return{errors:Object.values(o)}}}}}async function sn(e,t){const i=await(ee(t)?t:ut(t)).parse(e),l=[];for(const o of i.errors)o.errors.length&&l.push(...o.errors);return{errors:l}}async function cn(e,t,n){const i=xt(n.name);if(!i)throw new Error(`No such validator '${n.name}' exists.`);const l=dn(n.params,e.formData),o={field:e.label||e.name,name:e.name,label:e.label,value:t,form:e.formData,rule:Object.assign(Object.assign({},n),{params:l})},d=await i(t,l,o);return typeof d=="string"?{error:d}:{error:d?void 0:ot(o)}}function ot(e){const t=X().generateMessage;return t?t(e):"Field is invalid"}function dn(e,t){const n=i=>Ht(i)?i(t):i;return Array.isArray(e)?e.map(n):Object.keys(e).reduce((i,l)=>(i[l]=n(e[l]),i),{})}async function fn(e,t){const i=await(ee(e)?e:ut(e)).parse(t),l={},o={};for(const d of i.errors){const h=d.errors,f=(d.path||"").replace(/\["(\d+)"\]/g,(c,m)=>`[${m}]`);l[f]={valid:!h.length,errors:h},h.length&&(o[f]=h[0])}return{valid:!i.errors.length,results:l,errors:o,values:i.value}}async function vn(e,t,n){const l=U(e).map(async c=>{var m,E,O;const b=(m=n==null?void 0:n.names)===null||m===void 0?void 0:m[c],T=await ln(D(t,c),e[c],{name:(b==null?void 0:b.name)||c,label:b==null?void 0:b.label,values:t,bails:(O=(E=n==null?void 0:n.bailsMap)===null||E===void 0?void 0:E[c])!==null&&O!==void 0?O:!0});return Object.assign(Object.assign({},T),{path:c})});let o=!0;const d=await Promise.all(l),h={},f={};for(const c of d)h[c.path]={valid:c.valid,errors:c.errors},c.valid||(o=!1,f[c.path]=c.errors[0]);return{valid:o,results:h,errors:f}}let mn=0;const oe=["bails","fieldsCount","id","multiple","type","validate"];function st(e){const t=I(e==null?void 0:e.initialValues)||{},n=I(e==null?void 0:e.validationSchema);return n&&ee(n)&&R(n.cast)?S(n.cast(t)||{}):S(t)}function hn(e){var t;const n=mn++;let i=0;const l=A(!1),o=A(!1),d=A(0),h=[],f=Be(st(e)),c=A([]),m=A({}),E=A({}),O=Jt(()=>{E.value=c.value.reduce((a,r)=>(a[pe(G(r.path))]=r,a),{})});function b(a,r){const u=w(a);if(!u){typeof a=="string"&&(m.value[pe(a)]=Xe(r));return}if(typeof a=="string"){const s=pe(a);m.value[s]&&delete m.value[s]}u.errors=Xe(r),u.valid=!u.errors.length}function T(a){U(a).forEach(r=>{b(r,a[r])})}e!=null&&e.initialErrors&&T(e.initialErrors);const W=P(()=>{const a=c.value.reduce((r,u)=>(u.errors.length&&(r[u.path]=u.errors),r),{});return Object.assign(Object.assign({},m.value),a)}),K=P(()=>U(W.value).reduce((a,r)=>{const u=W.value[r];return u!=null&&u.length&&(a[r]=u[0]),a},{})),te=P(()=>c.value.reduce((a,r)=>(a[r.path]={name:r.path||"",label:r.label||""},a),{})),ce=P(()=>c.value.reduce((a,r)=>{var u;return a[r.path]=(u=r.bails)!==null&&u!==void 0?u:!0,a},{})),ne=Object.assign({},(e==null?void 0:e.initialErrors)||{}),de=(t=e==null?void 0:e.keepValuesOnUnmount)!==null&&t!==void 0?t:!1,{initialValues:z,originalInitialValues:J,setInitialValues:fe}=yn(c,f,e),ve=pn(c,f,J,K),re=P(()=>c.value.reduce((a,r)=>{const u=D(f,r.path);return Y(a,r.path,u),a},{})),N=e==null?void 0:e.validationSchema;function H(a,r){var u,s;const p=P(()=>D(z.value,G(a))),v=E.value[G(a)];if(v){((r==null?void 0:r.type)==="checkbox"||(r==null?void 0:r.type)==="radio")&&(v.multiple=!0);const F=i++;return Array.isArray(v.id)?v.id.push(F):v.id=[v.id,F],v.fieldsCount++,v.__flags.pendingUnmount[F]=!1,v}const y=P(()=>D(f,G(a))),V=G(a),g=i++,_=Be({id:g,path:a,touched:!1,pending:!1,valid:!0,validated:!!(!((u=ne[V])===null||u===void 0)&&u.length),initialValue:p,errors:wt([]),bails:(s=r==null?void 0:r.bails)!==null&&s!==void 0?s:!1,label:r==null?void 0:r.label,type:(r==null?void 0:r.type)||"default",value:y,multiple:!1,__flags:{pendingUnmount:{[g]:!1}},fieldsCount:1,validate:r==null?void 0:r.validate,dirty:P(()=>!se(I(y),I(p)))});return c.value.push(_),E.value[V]=_,O(),K.value[V]&&!ne[V]&&Q(()=>{q(V,{mode:"silent"})}),Ne(a)&&Ie(a,F=>{O();const le=S(y.value);E.value[F]=_,Q(()=>{Y(f,F,le)})}),_}const _e=Qe(He,5),me=Qe(He,5),ae=Kt(async a=>await a==="silent"?_e():me(),(a,[r])=>{const u=U(M.errorBag.value);return[...new Set([...U(a.results),...c.value.map(p=>p.path),...u])].sort().reduce((p,v)=>{const y=v,V=w(y)||k(y),g=(a.results[y]||{errors:[]}).errors,_={errors:g,valid:!g.length};return p.results[y]=_,_.valid||(p.errors[y]=_.errors[0]),V&&m.value[y]&&delete m.value[y],V?(V.valid=_.valid,r==="silent"||r==="validated-only"&&!V.validated||b(V,_.errors),p):(b(y,g),p)},{valid:a.valid,results:{},errors:{}})});function x(a){c.value.forEach(a)}function w(a){const r=typeof a=="string"?pe(a):a;return typeof r=="string"?E.value[r]:r}function k(a){return c.value.filter(u=>a.startsWith(u.path)).reduce((u,s)=>u?s.path.length>u.path.length?s:u:s,void 0)}let B=[],L;function Oe(a){return B.push(a),L||(L=Q(()=>{[...B].sort().reverse().forEach(u=>{Je(f,u)}),B=[],L=null})),L}function ze(a){return function(u,s){return function(v){return v instanceof Event&&(v.preventDefault(),v.stopPropagation()),x(y=>y.touched=!0),l.value=!0,d.value++,ie().then(y=>{const V=S(f);if(y.valid&&typeof u=="function"){const g=S(re.value);let _=a?g:V;return y.values&&(_=y.values),u(_,{evt:v,controlledValues:g,setErrors:T,setFieldError:b,setTouched:Ee,setFieldTouched:he,setValues:Se,setFieldValue:$,resetForm:je,resetField:Le})}!y.valid&&typeof s=="function"&&s({values:V,evt:v,errors:y.errors,results:y.results})}).then(y=>(l.value=!1,y),y=>{throw l.value=!1,y})}}}const Ve=ze(!1);Ve.withControlled=ze(!0);function ct(a,r){const u=c.value.findIndex(p=>p.path===a),s=c.value[u];if(!(u===-1||!s)){if(Q(()=>{q(a,{mode:"silent",warn:!1})}),s.multiple&&s.fieldsCount&&s.fieldsCount--,Array.isArray(s.id)){const p=s.id.indexOf(r);p>=0&&s.id.splice(p,1),delete s.__flags.pendingUnmount[r]}(!s.multiple||s.fieldsCount<=0)&&(c.value.splice(u,1),$e(a),O(),delete E.value[a])}}function dt(a){return x(r=>{r.path.startsWith(a)&&U(r.__flags.pendingUnmount).forEach(u=>{r.__flags.pendingUnmount[u]=!0})})}const M={formId:n,values:f,controlledValues:re,errorBag:W,errors:K,schema:N,submitCount:d,meta:ve,isSubmitting:l,isValidating:o,fieldArrays:h,keepValuesOnUnmount:de,validateSchema:I(N)?ae:void 0,validate:ie,setFieldError:b,validateField:q,setFieldValue:$,setValues:Se,setErrors:T,setFieldTouched:he,setTouched:Ee,resetForm:je,resetField:Le,handleSubmit:Ve,stageInitialValue:pt,unsetInitialValue:$e,setFieldInitialValue:Ae,useFieldModel:ft,createPathState:H,getPathState:w,unsetPathValue:Oe,removePathState:ct,initialValues:z,getAllPathStates:()=>c.value,markForUnmount:dt,isFieldTouched:vt,isFieldDirty:mt,isFieldValid:ht};function $(a,r,u=!0){const s=S(r),p=typeof a=="string"?a:a.path;w(p)||H(p),Y(f,p,s),u&&q(p)}function Se(a,r=!0){ye(f,a),h.forEach(u=>u&&u.reset()),r&&ie()}function xe(a){const r=w(I(a))||H(a);return P({get(){return r.value},set(u){const s=I(a);$(s,u,!1),r.validated=!0,r.pending=!0,q(s).then(()=>{r.pending=!1})}})}function ft(a){return Array.isArray(a)?a.map(xe):xe(a)}function he(a,r){const u=w(a);u&&(u.touched=r)}function vt(a){var r;return!!(!((r=w(a))===null||r===void 0)&&r.touched)}function mt(a){var r;return!!(!((r=w(a))===null||r===void 0)&&r.dirty)}function ht(a){var r;return!!(!((r=w(a))===null||r===void 0)&&r.valid)}function Ee(a){if(typeof a=="boolean"){x(r=>{r.touched=a});return}U(a).forEach(r=>{he(r,!!a[r])})}function Le(a,r){var u;const s=r&&"value"in r?r.value:D(z.value,a);Ae(a,S(s)),$(a,s,!1),he(a,(u=r==null?void 0:r.touched)!==null&&u!==void 0?u:!1),b(a,(r==null?void 0:r.errors)||[])}function je(a){let r=a!=null&&a.values?a.values:J.value;r=ee(N)&&R(N.cast)?N.cast(r):r,fe(r),x(u=>{var s;u.validated=!1,u.touched=((s=a==null?void 0:a.touched)===null||s===void 0?void 0:s[u.path])||!1,$(u.path,D(r,u.path),!1),b(u.path,void 0)}),Se(r,!1),T((a==null?void 0:a.errors)||{}),d.value=(a==null?void 0:a.submitCount)||0,Q(()=>{ie({mode:"silent"})})}async function ie(a){const r=(a==null?void 0:a.mode)||"force";if(r==="force"&&x(v=>v.validated=!0),M.validateSchema)return M.validateSchema(r);o.value=!0;const u=await Promise.all(c.value.map(v=>v.validate?v.validate(a).then(y=>({key:v.path,valid:y.valid,errors:y.errors})):Promise.resolve({key:v.path,valid:!0,errors:[]})));o.value=!1;const s={},p={};for(const v of u)s[v.key]={valid:v.valid,errors:v.errors},v.errors.length&&(p[v.key]=v.errors[0]);return{valid:u.every(v=>v.valid),results:s,errors:p}}async function q(a,r){var u;const s=w(a);if(s&&(s.validated=!0),N){const{results:p}=await ae((r==null?void 0:r.mode)||"validated-only");return p[a]||{errors:[],valid:!0}}return s!=null&&s.validate?s.validate(r):(!s&&(u=r==null?void 0:r.warn),Promise.resolve({errors:[],valid:!0}))}function $e(a){Je(z.value,a)}function pt(a,r,u=!1){Ae(a,r),Y(f,a,r),u&&!(e!=null&&e.initialValues)&&Y(J.value,a,S(r))}function Ae(a,r){Y(z.value,a,S(r))}async function He(){const a=I(N);if(!a)return{valid:!0,results:{},errors:{}};o.value=!0;const r=rt(a)||ee(a)?await fn(a,f):await vn(a,f,{names:te.value,bailsMap:ce.value});return o.value=!1,r}const yt=Ve((a,{evt:r})=>{it(r)&&r.target.submit()});St(()=>{if(e!=null&&e.initialErrors&&T(e.initialErrors),e!=null&&e.initialTouched&&Ee(e.initialTouched),e!=null&&e.validateOnMount){ie();return}M.validateSchema&&M.validateSchema("silent")}),Ne(N)&&Ie(N,()=>{var a;(a=M.validateSchema)===null||a===void 0||a.call(M,"validated-only")}),Et(Lt,M);function gt(a,r){const u=w(G(a))||H(a),s=()=>R(r)?r(ue(u,oe)):r||{};function p(){var V;u.touched=!0,((V=s().validateOnBlur)!==null&&V!==void 0?V:X().validateOnBlur)&&q(u.path)}function v(V){var g;const _=(g=s().validateOnModelUpdate)!==null&&g!==void 0?g:X().validateOnModelUpdate;$(u.path,V,_)}return P(()=>{if(R(r)){const _=r(u),F=_.model||"modelValue";return Object.assign({onBlur:p,[F]:u.value,[`onUpdate:${F}`]:v},_.props||{})}const V=(r==null?void 0:r.model)||"modelValue",g={onBlur:p,[V]:u.value,[`onUpdate:${V}`]:v};return r!=null&&r.mapProps?Object.assign(Object.assign({},g),r.mapProps(ue(u,oe))):g})}function bt(a,r){const u=w(G(a))||H(a),s=()=>R(r)?r(ue(u,oe)):r||{};function p(){var g;u.touched=!0,((g=s().validateOnBlur)!==null&&g!==void 0?g:X().validateOnBlur)&&q(u.path)}function v(g){var _;const F=Ze(g),le=(_=s().validateOnInput)!==null&&_!==void 0?_:X().validateOnInput;$(u.path,F,le)}function y(g){var _;const F=Ze(g),le=(_=s().validateOnChange)!==null&&_!==void 0?_:X().validateOnChange;$(u.path,F,le)}return P(()=>{const g={value:u.value,onChange:y,onInput:v,onBlur:p};return R(r)?Object.assign(Object.assign({},g),r(ue(u,oe)).attrs||{}):r!=null&&r.mapAttrs?Object.assign(Object.assign({},g),r.mapAttrs(ue(u,oe))):g})}return Object.assign(Object.assign({},M),{values:jt(f),handleReset:()=>je(),submitForm:yt,defineComponentBinds:gt,defineInputBinds:bt})}function pn(e,t,n,i){const l={touched:"some",pending:"some",valid:"every"},o=P(()=>!se(t,I(n)));function d(){const f=e.value;return U(l).reduce((c,m)=>{const E=l[m];return c[m]=f[E](O=>O[m]),c},{})}const h=Be(d());return At(()=>{const f=d();h.touched=f.touched,h.valid=f.valid,h.pending=f.pending}),P(()=>Object.assign(Object.assign({initialValues:I(n)},h),{valid:h.valid&&!U(i.value).length,dirty:o.value}))}function yn(e,t,n){const i=st(n),l=n==null?void 0:n.initialValues,o=A(i),d=A(S(i));function h(f,c=!1){o.value=ye(S(o.value)||{},S(f)),d.value=ye(S(d.value)||{},S(f)),c&&e.value.forEach(m=>{if(m.touched)return;const O=D(o.value,m.path);Y(t,m.path,S(O))})}return Ne(l)&&Ie(l,f=>{f&&h(f,!0)},{deep:!0}),{initialValues:o,originalInitialValues:d,setInitialValues:h}}const gn=ke({name:"Form",inheritAttrs:!1,props:{as:{type:String,default:"form"},validationSchema:{type:Object,default:void 0},initialValues:{type:Object,default:void 0},initialErrors:{type:Object,default:void 0},initialTouched:{type:Object,default:void 0},validateOnMount:{type:Boolean,default:!1},onSubmit:{type:Function,default:void 0},onInvalidSubmit:{type:Function,default:void 0},keepValues:{type:Boolean,default:!1}},setup(e,t){const n=we(e,"initialValues"),i=we(e,"validationSchema"),l=we(e,"keepValues"),{errors:o,errorBag:d,values:h,meta:f,isSubmitting:c,isValidating:m,submitCount:E,controlledValues:O,validate:b,validateField:T,handleReset:W,resetForm:K,handleSubmit:te,setErrors:ce,setFieldError:ne,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetField:ve}=hn({validationSchema:i.value?i:void 0,initialValues:n,initialErrors:e.initialErrors,initialTouched:e.initialTouched,validateOnMount:e.validateOnMount,keepValuesOnUnmount:l}),re=te((k,{evt:B})=>{it(B)&&B.target.submit()},e.onInvalidSubmit),N=e.onSubmit?te(e.onSubmit,e.onInvalidSubmit):re;function H(k){Ue(k)&&k.preventDefault(),W(),typeof t.attrs.onReset=="function"&&t.attrs.onReset()}function _e(k,B){return te(typeof k=="function"&&!B?k:B,e.onInvalidSubmit)(k)}function me(){return S(h)}function ae(){return S(f.value)}function x(){return S(o.value)}function w(){return{meta:f.value,errors:o.value,errorBag:d.value,values:h,isSubmitting:c.value,isValidating:m.value,submitCount:E.value,controlledValues:O.value,validate:b,validateField:T,handleSubmit:_e,handleReset:W,submitForm:re,setErrors:ce,setFieldError:ne,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetForm:K,resetField:ve,getValues:me,getMeta:ae,getErrors:x}}return t.expose({setFieldError:ne,setErrors:ce,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetForm:K,validate:b,validateField:T,resetField:ve,getValues:me,getMeta:ae,getErrors:x}),function(){const B=e.as==="form"?e.as:Ot(e.as),L=Qt(B,t,w);if(!e.as)return L;const Oe=e.as==="form"?{novalidate:!0}:{};return Vt(B,Object.assign(Object.assign(Object.assign({},Oe),t.attrs),{onSubmit:N,onReset:H}),L)}}}),bn=gn,_n={class:"d-sm-flex align-center mt-2 mb-7 mb-sm-0"},On={key:0,class:"mt-2"},Vn=ke({__name:"AuthLogin",setup(e){const t=A(!1),n=A(!1),i=A(!1),l=A(""),o=A(""),d=A([c=>!!c||"需要填写:密码",c=>c&&c.length<=10||"Password must be less than 10 characters"]),h=A([c=>!!c||"需要填写:用户名",c=>/.+@.+\..+/.test(c)||"E-mail must be valid"]);function f(c,{setErrors:m}){return It().login(o.value,l.value).catch(O=>m({apiError:O}))}return(c,m)=>(Re(),tt(I(bn),{onSubmit:f,class:"mt-7 loginForm"},{default:C(({errors:E,isSubmitting:O})=>[j(qe,{modelValue:o.value,"onUpdate:modelValue":m[0]||(m[0]=b=>o.value=b),rules:h.value,label:"用户名",class:"mt-4 mb-8",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),j(qe,{modelValue:l.value,"onUpdate:modelValue":m[1]||(m[1]=b=>l.value=b),rules:d.value,label:"密码",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":m[2]||(m[2]=b=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),ge("div",_n,[j(Ft,{modelValue:t.value,"onUpdate:modelValue":m[3]||(m[3]=b=>t.value=b),rules:[b=>!!b||"You must agree to continue!"],label:"记住密码",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"])]),j(Pt,{color:"secondary",loading:O,block:"",class:"mt-2",variant:"flat",size:"large",disabled:n.value,type:"submit"},{default:C(()=>[Ge(" 登录")]),_:2},1032,["loading","disabled"]),E.apiError?(Re(),Ct("div",On,[j(Tt,{color:"error"},{default:C(()=>[Ge(Bt(E.apiError),1)]),_:2},1024)])):Nt("",!0)]),_:1}))}});const Sn={class:"pa-7 pa-sm-12"},En=ge("h2",{class:"text-secondary text-h2 mt-8"},"欢迎回来。",-1),jn=ge("h4",{class:"text-disabled text-h4 mt-3"},"输入凭证以继续。",-1),Pn=ke({__name:"LoginPage",setup(e){return(t,n)=>(Re(),tt(Pe,{class:"h-100vh","no-gutters":""},{default:C(()=>[j(Fe,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:C(()=>[j(Rt,null,{default:C(()=>[ge("div",Sn,[j(Pe,{justify:"center"},{default:C(()=>[j(Fe,{cols:"12",lg:"10",xl:"6",md:"7"},{default:C(()=>[j(Ye,{elevation:"0",class:"loginBox"},{default:C(()=>[j(Ye,{variant:"outlined"},{default:C(()=>[j(kt,{class:"pa-9"},{default:C(()=>[j(Pe,null,{default:C(()=>[j(Fe,{cols:"12",class:"text-center"},{default:C(()=>[j(_t),En,jn]),_:1})]),_:1}),j(Vn)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{Pn as default}; diff --git a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js new file mode 100644 index 000000000..45675b044 --- /dev/null +++ b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js @@ -0,0 +1 @@ +import{am as _,x as d,D as n,o as c,s as m,a as p,w as f,an as r,b as a,ao as o,B as t,ap as h}from"./index-ab39813a.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/addons/dashboard/dist/assets/MaterialIcons-5aa79b4a.js b/addons/dashboard/dist/assets/MaterialIcons-5aa79b4a.js new file mode 100644 index 000000000..3e5568536 --- /dev/null +++ b/addons/dashboard/dist/assets/MaterialIcons-5aa79b4a.js @@ -0,0 +1 @@ +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-ab39813a.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-799ed804.css b/addons/dashboard/dist/assets/RegisterPage-799ed804.css new file mode 100644 index 000000000..e6ada618b --- /dev/null +++ b/addons/dashboard/dist/assets/RegisterPage-799ed804.css @@ -0,0 +1 @@ +.custom-devider{border-color:#00000014!important}.googleBtn{border-color:#00000014;margin:30px 0 20px}.outlinedInput .v-field{border:1px solid rgba(0,0,0,.08);box-shadow:none}.orbtn{padding:2px 40px;border-color:#00000014;margin:20px 15px}.pwdInput{position:relative}.pwdInput .v-input__append{position:absolute;right:10px;top:50%;transform:translateY(-50%)}.loginBox{max-width:475px;margin:0 auto} diff --git a/addons/dashboard/dist/assets/RegisterPage-f5bc57b5.js b/addons/dashboard/dist/assets/RegisterPage-f5bc57b5.js new file mode 100644 index 000000000..6f568fa11 --- /dev/null +++ b/addons/dashboard/dist/assets/RegisterPage-f5bc57b5.js @@ -0,0 +1 @@ +import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-16088022.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as i,A as _,e as f,V as r,a4 as m,ai as A,al as E,F,c as T,L as q,S as V,O as P}from"./index-ab39813a.js";const S="/assets/social-google-a359a253.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),d=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(i,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(i,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(i,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":d.value?"mdi-eye":"mdi-eye-off",type:d.value?"text":"password","onClick:append":l[4]||(l[4]=t=>d.value=!d.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,d)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(i,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(i,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(i,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/ShadowPage-4627a05c.js b/addons/dashboard/dist/assets/ShadowPage-4627a05c.js new file mode 100644 index 000000000..c6517b26d --- /dev/null +++ b/addons/dashboard/dist/assets/ShadowPage-4627a05c.js @@ -0,0 +1 @@ +import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-ab39813a.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/StarterPage-64b013bc.js b/addons/dashboard/dist/assets/StarterPage-64b013bc.js new file mode 100644 index 000000000..6e3f8032b --- /dev/null +++ b/addons/dashboard/dist/assets/StarterPage-64b013bc.js @@ -0,0 +1 @@ +import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-ab39813a.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; diff --git a/addons/dashboard/dist/assets/TablerIcons-cf6c4112.js b/addons/dashboard/dist/assets/TablerIcons-cf6c4112.js new file mode 100644 index 000000000..30d2dfccf --- /dev/null +++ b/addons/dashboard/dist/assets/TablerIcons-cf6c4112.js @@ -0,0 +1 @@ +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-ab39813a.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/addons/dashboard/dist/assets/TypographyPage-8db478a1.js b/addons/dashboard/dist/assets/TypographyPage-8db478a1.js new file mode 100644 index 000000000..b3236af5b --- /dev/null +++ b/addons/dashboard/dist/assets/TypographyPage-8db478a1.js @@ -0,0 +1 @@ +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-ab39813a.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; diff --git a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js new file mode 100644 index 000000000..8d093bc52 --- /dev/null +++ b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js @@ -0,0 +1 @@ +import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-ab39813a.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/addons/dashboard/dist/assets/_plugin-vue_export-helper-c27b6911.js b/addons/dashboard/dist/assets/_plugin-vue_export-helper-c27b6911.js new file mode 100644 index 000000000..718edd339 --- /dev/null +++ b/addons/dashboard/dist/assets/_plugin-vue_export-helper-c27b6911.js @@ -0,0 +1 @@ +const s=(t,r)=>{const o=t.__vccOpts||t;for(const[c,e]of r)o[c]=e;return o};export{s as _}; diff --git a/addons/dashboard/dist/assets/axios-21b846bc.js b/addons/dashboard/dist/assets/axios-21b846bc.js new file mode 100644 index 000000000..801375a47 --- /dev/null +++ b/addons/dashboard/dist/assets/axios-21b846bc.js @@ -0,0 +1,5 @@ +function me(e,t){return function(){return e.apply(t,arguments)}}const{toString:je}=Object.prototype,{getPrototypeOf:Z}=Object,H=(e=>t=>{const n=je.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),A=e=>(e=e.toLowerCase(),t=>H(t)===e),I=e=>t=>typeof t===e,{isArray:P}=Array,F=I("undefined");function ke(e){return e!==null&&!F(e)&&e.constructor!==null&&!F(e.constructor)&&S(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ye=A("ArrayBuffer");function He(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ye(e.buffer),t}const Ie=I("string"),S=I("function"),Ee=I("number"),q=e=>e!==null&&typeof e=="object",qe=e=>e===!0||e===!1,L=e=>{if(H(e)!=="object")return!1;const t=Z(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},Me=A("Date"),ze=A("File"),Je=A("Blob"),$e=A("FileList"),Ve=e=>q(e)&&S(e.pipe),We=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||S(e.append)&&((t=H(e))==="formdata"||t==="object"&&S(e.toString)&&e.toString()==="[object FormData]"))},Ke=A("URLSearchParams"),Ge=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function B(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),P(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const be=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Se=e=>!F(e)&&e!==be;function K(){const{caseless:e}=Se(this)&&this||{},t={},n=(r,s)=>{const o=e&&we(t,s)||s;L(t[o])&&L(r)?t[o]=K(t[o],r):L(r)?t[o]=K({},r):P(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(B(t,(s,o)=>{n&&S(s)?e[o]=me(s,n):e[o]=s},{allOwnKeys:r}),e),ve=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Qe=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Ze=(e,t,n,r)=>{let s,o,i;const u={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!u[i]&&(t[i]=e[i],u[i]=!0);e=n!==!1&&Z(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Ye=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},et=e=>{if(!e)return null;if(P(e))return e;let t=e.length;if(!Ee(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},tt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Z(Uint8Array)),nt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},rt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},st=A("HTMLFormElement"),ot=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),it=A("RegExp"),Re=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};B(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},at=e=>{Re(e,(t,n)=>{if(S(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(S(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},ct=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return P(e)?r(e):r(String(e).split(t)),n},ut=()=>{},lt=(e,t)=>(e=+e,Number.isFinite(e)?e:t),J="abcdefghijklmnopqrstuvwxyz",oe="0123456789",Oe={DIGIT:oe,ALPHA:J,ALPHA_DIGIT:J+J.toUpperCase()+oe},ft=(e=16,t=Oe.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function dt(e){return!!(e&&S(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const pt=e=>{const t=new Array(10),n=(r,s)=>{if(q(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=P(r)?[]:{};return B(r,(i,u)=>{const f=n(i,s+1);!F(f)&&(o[u]=f)}),t[s]=void 0,o}}return r};return n(e,0)},ht=A("AsyncFunction"),mt=e=>e&&(q(e)||S(e))&&S(e.then)&&S(e.catch),a={isArray:P,isArrayBuffer:ye,isBuffer:ke,isFormData:We,isArrayBufferView:He,isString:Ie,isNumber:Ee,isBoolean:qe,isObject:q,isPlainObject:L,isUndefined:F,isDate:Me,isFile:ze,isBlob:Je,isRegExp:it,isFunction:S,isStream:Ve,isURLSearchParams:Ke,isTypedArray:tt,isFileList:$e,forEach:B,merge:K,extend:Xe,trim:Ge,stripBOM:ve,inherits:Qe,toFlatObject:Ze,kindOf:H,kindOfTest:A,endsWith:Ye,toArray:et,forEachEntry:nt,matchAll:rt,isHTMLForm:st,hasOwnProperty:se,hasOwnProp:se,reduceDescriptors:Re,freezeMethods:at,toObjectSet:ct,toCamelCase:ot,noop:ut,toFiniteNumber:lt,findKey:we,global:be,isContextDefined:Se,ALPHABET:Oe,generateString:ft,isSpecCompliantForm:dt,toJSONObject:pt,isAsyncFn:ht,isThenable:mt};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ae=m.prototype,Te={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Te[e]={value:e}});Object.defineProperties(m,Te);Object.defineProperty(Ae,"isAxiosError",{value:!0});m.from=(e,t,n,r,s,o)=>{const i=Object.create(Ae);return a.toFlatObject(e,i,function(f){return f!==Error.prototype},u=>u!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const yt=null;function G(e){return a.isPlainObject(e)||a.isArray(e)}function ge(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function ie(e,t,n){return e?e.concat(t).map(function(s,o){return s=ge(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function Et(e){return a.isArray(e)&&!e.some(G)}const wt=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function M(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(h,b){return!a.isUndefined(b[h])});const r=n.metaTokens,s=n.visitor||c,o=n.dots,i=n.indexes,f=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function d(l){if(l===null)return"";if(a.isDate(l))return l.toISOString();if(!f&&a.isBlob(l))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(l)||a.isTypedArray(l)?f&&typeof Blob=="function"?new Blob([l]):Buffer.from(l):l}function c(l,h,b){let T=l;if(l&&!b&&typeof l=="object"){if(a.endsWith(h,"{}"))h=r?h:h.slice(0,-2),l=JSON.stringify(l);else if(a.isArray(l)&&Et(l)||(a.isFileList(l)||a.endsWith(h,"[]"))&&(T=a.toArray(l)))return h=ge(h),T.forEach(function(_,Ue){!(a.isUndefined(_)||_===null)&&t.append(i===!0?ie([h],Ue,o):i===null?h:h+"[]",d(_))}),!1}return G(l)?!0:(t.append(ie(b,h,o),d(l)),!1)}const p=[],E=Object.assign(wt,{defaultVisitor:c,convertValue:d,isVisitable:G});function w(l,h){if(!a.isUndefined(l)){if(p.indexOf(l)!==-1)throw Error("Circular reference detected in "+h.join("."));p.push(l),a.forEach(l,function(T,R){(!(a.isUndefined(T)||T===null)&&s.call(t,T,a.isString(R)?R.trim():R,h,E))===!0&&w(T,h?h.concat(R):[R])}),p.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return w(e),t}function ae(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Y(e,t){this._pairs=[],e&&M(e,this,t)}const xe=Y.prototype;xe.append=function(t,n){this._pairs.push([t,n])};xe.toString=function(t){const n=t?function(r){return t.call(this,r,ae)}:ae;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function bt(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ne(e,t,n){if(!t)return e;const r=n&&n.encode||bt,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new Y(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class St{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const ce=St,Pe={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Rt=typeof URLSearchParams<"u"?URLSearchParams:Y,Ot=typeof FormData<"u"?FormData:null,At=typeof Blob<"u"?Blob:null,Tt=(()=>{let e;return typeof navigator<"u"&&((e=navigator.product)==="ReactNative"||e==="NativeScript"||e==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),gt=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),O={isBrowser:!0,classes:{URLSearchParams:Rt,FormData:Ot,Blob:At},isStandardBrowserEnv:Tt,isStandardBrowserWebWorkerEnv:gt,protocols:["http","https","file","blob","url","data"]};function xt(e,t){return M(e,new O.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return O.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Nt(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Pt(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return i=!i&&a.isArray(s)?s.length:i,f?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!u):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=Pt(s[i])),!u)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(Nt(r),s,n,0)}),n}return null}function Ct(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const ee={transitional:Pe,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s&&s?JSON.stringify(Ce(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let u;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return xt(t,this.formSerializer).toString();if((u=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const f=this.env&&this.env.FormData;return M(u?{"files[]":t}:t,f&&new f,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Ct(t)):t}],transformResponse:[function(t){const n=this.transitional||ee.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(u){if(i)throw u.name==="SyntaxError"?m.from(u,m.ERR_BAD_RESPONSE,this,null,this.response):u}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:O.classes.FormData,Blob:O.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{ee.headers[e]={}});const te=ee,Ft=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Bt=e=>{const t={};let n,r,s;return e&&e.split(` +`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Ft[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},ue=Symbol("internals");function C(e){return e&&String(e).trim().toLowerCase()}function U(e){return e===!1||e==null?e:a.isArray(e)?e.map(U):String(e)}function Dt(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const _t=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function $(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function Lt(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Ut(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class z{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(u,f,d){const c=C(f);if(!c)throw new Error("header name must be a non-empty string");const p=a.findKey(s,c);(!p||s[p]===void 0||d===!0||d===void 0&&s[p]!==!1)&&(s[p||f]=U(u))}const i=(u,f)=>a.forEach(u,(d,c)=>o(d,c,f));return a.isPlainObject(t)||t instanceof this.constructor?i(t,n):a.isString(t)&&(t=t.trim())&&!_t(t)?i(Bt(t),n):t!=null&&o(n,t,r),this}get(t,n){if(t=C(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Dt(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=C(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||$(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=C(i),i){const u=a.findKey(r,i);u&&(!n||$(r,r[u],u,n))&&(delete r[u],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||$(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=U(s),delete n[o];return}const u=t?Lt(o):String(o).trim();u!==o&&delete n[o],n[u]=U(s),r[u]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[ue]=this[ue]={accessors:{}}).accessors,s=this.prototype;function o(i){const u=C(i);r[u]||(Ut(s,i),r[u]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}z.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(z.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(z);const g=z;function V(e,t){const n=this||te,r=t||n,s=g.from(r.headers);let o=r.data;return a.forEach(e,function(u){o=u.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function Fe(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,m,{__CANCEL__:!0});function jt(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const kt=O.isStandardBrowserEnv?function(){return{write:function(n,r,s,o,i,u){const f=[];f.push(n+"="+encodeURIComponent(r)),a.isNumber(s)&&f.push("expires="+new Date(s).toGMTString()),a.isString(o)&&f.push("path="+o),a.isString(i)&&f.push("domain="+i),u===!0&&f.push("secure"),document.cookie=f.join("; ")},read:function(n){const r=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return r?decodeURIComponent(r[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function Ht(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function It(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}function Be(e,t){return e&&!Ht(t)?It(e,t):t}const qt=O.isStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const u=a.isString(i)?s(i):i;return u.protocol===r.protocol&&u.host===r.host}}():function(){return function(){return!0}}();function Mt(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function zt(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(f){const d=Date.now(),c=r[o];i||(i=d),n[s]=f,r[s]=d;let p=o,E=0;for(;p!==s;)E+=n[p++],p=p%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),d-i{const o=s.loaded,i=s.lengthComputable?s.total:void 0,u=o-n,f=r(u),d=o<=i;n=o;const c={loaded:o,total:i,progress:i?o/i:void 0,bytes:u,rate:f||void 0,estimated:f&&i&&d?(i-o)/f:void 0,event:s};c[t?"download":"upload"]=!0,e(c)}}const Jt=typeof XMLHttpRequest<"u",$t=Jt&&function(e){return new Promise(function(n,r){let s=e.data;const o=g.from(e.headers).normalize(),i=e.responseType;let u;function f(){e.cancelToken&&e.cancelToken.unsubscribe(u),e.signal&&e.signal.removeEventListener("abort",u)}let d;a.isFormData(s)&&(O.isStandardBrowserEnv||O.isStandardBrowserWebWorkerEnv?o.setContentType(!1):o.getContentType(/^\s*multipart\/form-data/)?a.isString(d=o.getContentType())&&o.setContentType(d.replace(/^\s*(multipart\/form-data);+/,"$1")):o.setContentType("multipart/form-data"));let c=new XMLHttpRequest;if(e.auth){const l=e.auth.username||"",h=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(l+":"+h))}const p=Be(e.baseURL,e.url);c.open(e.method.toUpperCase(),Ne(p,e.params,e.paramsSerializer),!0),c.timeout=e.timeout;function E(){if(!c)return;const l=g.from("getAllResponseHeaders"in c&&c.getAllResponseHeaders()),b={data:!i||i==="text"||i==="json"?c.responseText:c.response,status:c.status,statusText:c.statusText,headers:l,config:e,request:c};jt(function(R){n(R),f()},function(R){r(R),f()},b),c=null}if("onloadend"in c?c.onloadend=E:c.onreadystatechange=function(){!c||c.readyState!==4||c.status===0&&!(c.responseURL&&c.responseURL.indexOf("file:")===0)||setTimeout(E)},c.onabort=function(){c&&(r(new m("Request aborted",m.ECONNABORTED,e,c)),c=null)},c.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,c)),c=null},c.ontimeout=function(){let h=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const b=e.transitional||Pe;e.timeoutErrorMessage&&(h=e.timeoutErrorMessage),r(new m(h,b.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,c)),c=null},O.isStandardBrowserEnv){const l=(e.withCredentials||qt(p))&&e.xsrfCookieName&&kt.read(e.xsrfCookieName);l&&o.set(e.xsrfHeaderName,l)}s===void 0&&o.setContentType(null),"setRequestHeader"in c&&a.forEach(o.toJSON(),function(h,b){c.setRequestHeader(b,h)}),a.isUndefined(e.withCredentials)||(c.withCredentials=!!e.withCredentials),i&&i!=="json"&&(c.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&c.addEventListener("progress",le(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&c.upload&&c.upload.addEventListener("progress",le(e.onUploadProgress)),(e.cancelToken||e.signal)&&(u=l=>{c&&(r(!l||l.type?new D(null,e,c):l),c.abort(),c=null)},e.cancelToken&&e.cancelToken.subscribe(u),e.signal&&(e.signal.aborted?u():e.signal.addEventListener("abort",u)));const w=Mt(p);if(w&&O.protocols.indexOf(w)===-1){r(new m("Unsupported protocol "+w+":",m.ERR_BAD_REQUEST,e));return}c.send(s||null)})},X={http:yt,xhr:$t};a.forEach(X,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const fe=e=>`- ${e}`,Vt=e=>a.isFunction(e)||e===null||e===!1,De={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o`adapter ${u} `+(f===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since : +`+o.map(fe).join(` +`):" "+fe(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:X};function W(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new D(null,e)}function de(e){return W(e),e.headers=g.from(e.headers),e.data=V.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),De.getAdapter(e.adapter||te.adapter)(e).then(function(r){return W(e),r.data=V.call(e,e.transformResponse,r),r.headers=g.from(r.headers),r},function(r){return Fe(r)||(W(e),r&&r.response&&(r.response.data=V.call(e,e.transformResponse,r.response),r.response.headers=g.from(r.response.headers))),Promise.reject(r)})}const pe=e=>e instanceof g?e.toJSON():e;function N(e,t){t=t||{};const n={};function r(d,c,p){return a.isPlainObject(d)&&a.isPlainObject(c)?a.merge.call({caseless:p},d,c):a.isPlainObject(c)?a.merge({},c):a.isArray(c)?c.slice():c}function s(d,c,p){if(a.isUndefined(c)){if(!a.isUndefined(d))return r(void 0,d,p)}else return r(d,c,p)}function o(d,c){if(!a.isUndefined(c))return r(void 0,c)}function i(d,c){if(a.isUndefined(c)){if(!a.isUndefined(d))return r(void 0,d)}else return r(void 0,c)}function u(d,c,p){if(p in t)return r(d,c);if(p in e)return r(void 0,d)}const f={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:u,headers:(d,c)=>s(pe(d),pe(c),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(c){const p=f[c]||s,E=p(e[c],t[c],c);a.isUndefined(E)&&p!==u||(n[c]=E)}),n}const _e="1.5.1",ne={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ne[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const he={};ne.transitional=function(t,n,r){function s(o,i){return"[Axios v"+_e+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,u)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!he[i]&&(he[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,u):!0}};function Wt(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const u=e[o],f=u===void 0||i(u,o,e);if(f!==!0)throw new m("option "+o+" must be "+f,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const v={assertOptions:Wt,validators:ne},x=v.validators;class k{constructor(t){this.defaults=t,this.interceptors={request:new ce,response:new ce}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=N(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&v.assertOptions(r,{silentJSONParsing:x.transitional(x.boolean),forcedJSONParsing:x.transitional(x.boolean),clarifyTimeoutError:x.transitional(x.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:v.assertOptions(s,{encode:x.function,serialize:x.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],l=>{delete o[l]}),n.headers=g.concat(i,o);const u=[];let f=!0;this.interceptors.request.forEach(function(h){typeof h.runWhen=="function"&&h.runWhen(n)===!1||(f=f&&h.synchronous,u.unshift(h.fulfilled,h.rejected))});const d=[];this.interceptors.response.forEach(function(h){d.push(h.fulfilled,h.rejected)});let c,p=0,E;if(!f){const l=[de.bind(this),void 0];for(l.unshift.apply(l,u),l.push.apply(l,d),E=l.length,c=Promise.resolve(n);p{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(u=>{r.subscribe(u),o=u}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,u){r.reason||(r.reason=new D(o,i,u),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new re(function(s){t=s}),cancel:t}}}const Kt=re;function Gt(e){return function(n){return e.apply(null,n)}}function Xt(e){return a.isObject(e)&&e.isAxiosError===!0}const Q={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Q).forEach(([e,t])=>{Q[t]=e});const vt=Q;function Le(e){const t=new j(e),n=me(j.prototype.request,t);return a.extend(n,j.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Le(N(e,s))},n}const y=Le(te);y.Axios=j;y.CanceledError=D;y.CancelToken=Kt;y.isCancel=Fe;y.VERSION=_e;y.toFormData=M;y.AxiosError=m;y.Cancel=y.CanceledError;y.all=function(t){return Promise.all(t)};y.spread=Gt;y.isAxiosError=Xt;y.mergeConfig=N;y.AxiosHeaders=g;y.formToJSON=e=>Ce(a.isHTMLForm(e)?new FormData(e):e);y.getAdapter=De.getAdapter;y.HttpStatusCode=vt;y.default=y;const Qt=y;export{Qt as a}; diff --git a/addons/dashboard/dist/assets/icon-card-5ebb8a56.svg b/addons/dashboard/dist/assets/icon-card-5ebb8a56.svg new file mode 100644 index 000000000..e877b599e --- /dev/null +++ b/addons/dashboard/dist/assets/icon-card-5ebb8a56.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/addons/dashboard/dist/assets/img-error-bg-ab6474a0.svg b/addons/dashboard/dist/assets/img-error-bg-ab6474a0.svg new file mode 100644 index 000000000..57af439c9 --- /dev/null +++ b/addons/dashboard/dist/assets/img-error-bg-ab6474a0.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/dashboard/dist/assets/img-error-blue-2675a7a9.svg b/addons/dashboard/dist/assets/img-error-blue-2675a7a9.svg new file mode 100644 index 000000000..a72084386 --- /dev/null +++ b/addons/dashboard/dist/assets/img-error-blue-2675a7a9.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/dashboard/dist/assets/img-error-purple-edee3fbc.svg b/addons/dashboard/dist/assets/img-error-purple-edee3fbc.svg new file mode 100644 index 000000000..12904c1a8 --- /dev/null +++ b/addons/dashboard/dist/assets/img-error-purple-edee3fbc.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/dashboard/dist/assets/img-error-text-a6aebfa0.svg b/addons/dashboard/dist/assets/img-error-text-a6aebfa0.svg new file mode 100644 index 000000000..16ed50aaf --- /dev/null +++ b/addons/dashboard/dist/assets/img-error-text-a6aebfa0.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/dashboard/dist/assets/index-0f1523f3.css b/addons/dashboard/dist/assets/index-0f1523f3.css new file mode 100644 index 000000000..b47232ce2 --- /dev/null +++ b/addons/dashboard/dist/assets/index-0f1523f3.css @@ -0,0 +1,5 @@ +@charset "UTF-8";@font-face{font-family:Material Design Icons;src:url(/assets/materialdesignicons-webfont-67d24abe.eot?v=7.2.96);src:url(/assets/materialdesignicons-webfont-67d24abe.eot?#iefix&v=7.2.96) format("embedded-opentype"),url(/assets/materialdesignicons-webfont-c1c004a9.woff2?v=7.2.96) format("woff2"),url(/assets/materialdesignicons-webfont-80bb28b3.woff?v=7.2.96) format("woff"),url(/assets/materialdesignicons-webfont-a58ecb54.ttf?v=7.2.96) format("truetype");font-weight:400;font-style:normal}.mdi:before,.mdi-set{display:inline-block;font: 24px/1 Material Design Icons;font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-ab-testing:before{content:"󰇉"}.mdi-abacus:before{content:"󱛠"}.mdi-abjad-arabic:before{content:"󱌨"}.mdi-abjad-hebrew:before{content:"󱌩"}.mdi-abugida-devanagari:before{content:"󱌪"}.mdi-abugida-thai:before{content:"󱌫"}.mdi-access-point:before{content:"󰀃"}.mdi-access-point-check:before{content:"󱔸"}.mdi-access-point-minus:before{content:"󱔹"}.mdi-access-point-network:before{content:"󰀂"}.mdi-access-point-network-off:before{content:"󰯡"}.mdi-access-point-off:before{content:"󱔑"}.mdi-access-point-plus:before{content:"󱔺"}.mdi-access-point-remove:before{content:"󱔻"}.mdi-account:before{content:"󰀄"}.mdi-account-alert:before{content:"󰀅"}.mdi-account-alert-outline:before{content:"󰭐"}.mdi-account-arrow-down:before{content:"󱡨"}.mdi-account-arrow-down-outline:before{content:"󱡩"}.mdi-account-arrow-left:before{content:"󰭑"}.mdi-account-arrow-left-outline:before{content:"󰭒"}.mdi-account-arrow-right:before{content:"󰭓"}.mdi-account-arrow-right-outline:before{content:"󰭔"}.mdi-account-arrow-up:before{content:"󱡧"}.mdi-account-arrow-up-outline:before{content:"󱡪"}.mdi-account-badge:before{content:"󱬊"}.mdi-account-badge-outline:before{content:"󱬋"}.mdi-account-box:before{content:"󰀆"}.mdi-account-box-multiple:before{content:"󰤴"}.mdi-account-box-multiple-outline:before{content:"󱀊"}.mdi-account-box-outline:before{content:"󰀇"}.mdi-account-cancel:before{content:"󱋟"}.mdi-account-cancel-outline:before{content:"󱋠"}.mdi-account-card:before{content:"󱮤"}.mdi-account-card-outline:before{content:"󱮥"}.mdi-account-cash:before{content:"󱂗"}.mdi-account-cash-outline:before{content:"󱂘"}.mdi-account-check:before{content:"󰀈"}.mdi-account-check-outline:before{content:"󰯢"}.mdi-account-child:before{content:"󰪉"}.mdi-account-child-circle:before{content:"󰪊"}.mdi-account-child-outline:before{content:"󱃈"}.mdi-account-circle:before{content:"󰀉"}.mdi-account-circle-outline:before{content:"󰭕"}.mdi-account-clock:before{content:"󰭖"}.mdi-account-clock-outline:before{content:"󰭗"}.mdi-account-cog:before{content:"󱍰"}.mdi-account-cog-outline:before{content:"󱍱"}.mdi-account-convert:before{content:"󰀊"}.mdi-account-convert-outline:before{content:"󱌁"}.mdi-account-cowboy-hat:before{content:"󰺛"}.mdi-account-cowboy-hat-outline:before{content:"󱟳"}.mdi-account-credit-card:before{content:"󱮦"}.mdi-account-credit-card-outline:before{content:"󱮧"}.mdi-account-details:before{content:"󰘱"}.mdi-account-details-outline:before{content:"󱍲"}.mdi-account-edit:before{content:"󰚼"}.mdi-account-edit-outline:before{content:"󰿻"}.mdi-account-eye:before{content:"󰐠"}.mdi-account-eye-outline:before{content:"󱉻"}.mdi-account-filter:before{content:"󰤶"}.mdi-account-filter-outline:before{content:"󰾝"}.mdi-account-group:before{content:"󰡉"}.mdi-account-group-outline:before{content:"󰭘"}.mdi-account-hard-hat:before{content:"󰖵"}.mdi-account-hard-hat-outline:before{content:"󱨟"}.mdi-account-heart:before{content:"󰢙"}.mdi-account-heart-outline:before{content:"󰯣"}.mdi-account-injury:before{content:"󱠕"}.mdi-account-injury-outline:before{content:"󱠖"}.mdi-account-key:before{content:"󰀋"}.mdi-account-key-outline:before{content:"󰯤"}.mdi-account-lock:before{content:"󱅞"}.mdi-account-lock-open:before{content:"󱥠"}.mdi-account-lock-open-outline:before{content:"󱥡"}.mdi-account-lock-outline:before{content:"󱅟"}.mdi-account-minus:before{content:"󰀍"}.mdi-account-minus-outline:before{content:"󰫬"}.mdi-account-multiple:before{content:"󰀎"}.mdi-account-multiple-check:before{content:"󰣅"}.mdi-account-multiple-check-outline:before{content:"󱇾"}.mdi-account-multiple-minus:before{content:"󰗓"}.mdi-account-multiple-minus-outline:before{content:"󰯥"}.mdi-account-multiple-outline:before{content:"󰀏"}.mdi-account-multiple-plus:before{content:"󰀐"}.mdi-account-multiple-plus-outline:before{content:"󰠀"}.mdi-account-multiple-remove:before{content:"󱈊"}.mdi-account-multiple-remove-outline:before{content:"󱈋"}.mdi-account-music:before{content:"󰠃"}.mdi-account-music-outline:before{content:"󰳩"}.mdi-account-network:before{content:"󰀑"}.mdi-account-network-off:before{content:"󱫱"}.mdi-account-network-off-outline:before{content:"󱫲"}.mdi-account-network-outline:before{content:"󰯦"}.mdi-account-off:before{content:"󰀒"}.mdi-account-off-outline:before{content:"󰯧"}.mdi-account-outline:before{content:"󰀓"}.mdi-account-plus:before{content:"󰀔"}.mdi-account-plus-outline:before{content:"󰠁"}.mdi-account-question:before{content:"󰭙"}.mdi-account-question-outline:before{content:"󰭚"}.mdi-account-reactivate:before{content:"󱔫"}.mdi-account-reactivate-outline:before{content:"󱔬"}.mdi-account-remove:before{content:"󰀕"}.mdi-account-remove-outline:before{content:"󰫭"}.mdi-account-school:before{content:"󱨠"}.mdi-account-school-outline:before{content:"󱨡"}.mdi-account-search:before{content:"󰀖"}.mdi-account-search-outline:before{content:"󰤵"}.mdi-account-settings:before{content:"󰘰"}.mdi-account-settings-outline:before{content:"󱃉"}.mdi-account-star:before{content:"󰀗"}.mdi-account-star-outline:before{content:"󰯨"}.mdi-account-supervisor:before{content:"󰪋"}.mdi-account-supervisor-circle:before{content:"󰪌"}.mdi-account-supervisor-circle-outline:before{content:"󱓬"}.mdi-account-supervisor-outline:before{content:"󱄭"}.mdi-account-switch:before{content:"󰀙"}.mdi-account-switch-outline:before{content:"󰓋"}.mdi-account-sync:before{content:"󱤛"}.mdi-account-sync-outline:before{content:"󱤜"}.mdi-account-tag:before{content:"󱰛"}.mdi-account-tag-outline:before{content:"󱰜"}.mdi-account-tie:before{content:"󰳣"}.mdi-account-tie-hat:before{content:"󱢘"}.mdi-account-tie-hat-outline:before{content:"󱢙"}.mdi-account-tie-outline:before{content:"󱃊"}.mdi-account-tie-voice:before{content:"󱌈"}.mdi-account-tie-voice-off:before{content:"󱌊"}.mdi-account-tie-voice-off-outline:before{content:"󱌋"}.mdi-account-tie-voice-outline:before{content:"󱌉"}.mdi-account-tie-woman:before{content:"󱪌"}.mdi-account-voice:before{content:"󰗋"}.mdi-account-voice-off:before{content:"󰻔"}.mdi-account-wrench:before{content:"󱢚"}.mdi-account-wrench-outline:before{content:"󱢛"}.mdi-adjust:before{content:"󰀚"}.mdi-advertisements:before{content:"󱤪"}.mdi-advertisements-off:before{content:"󱤫"}.mdi-air-conditioner:before{content:"󰀛"}.mdi-air-filter:before{content:"󰵃"}.mdi-air-horn:before{content:"󰶬"}.mdi-air-humidifier:before{content:"󱂙"}.mdi-air-humidifier-off:before{content:"󱑦"}.mdi-air-purifier:before{content:"󰵄"}.mdi-air-purifier-off:before{content:"󱭗"}.mdi-airbag:before{content:"󰯩"}.mdi-airballoon:before{content:"󰀜"}.mdi-airballoon-outline:before{content:"󱀋"}.mdi-airplane:before{content:"󰀝"}.mdi-airplane-alert:before{content:"󱡺"}.mdi-airplane-check:before{content:"󱡻"}.mdi-airplane-clock:before{content:"󱡼"}.mdi-airplane-cog:before{content:"󱡽"}.mdi-airplane-edit:before{content:"󱡾"}.mdi-airplane-landing:before{content:"󰗔"}.mdi-airplane-marker:before{content:"󱡿"}.mdi-airplane-minus:before{content:"󱢀"}.mdi-airplane-off:before{content:"󰀞"}.mdi-airplane-plus:before{content:"󱢁"}.mdi-airplane-remove:before{content:"󱢂"}.mdi-airplane-search:before{content:"󱢃"}.mdi-airplane-settings:before{content:"󱢄"}.mdi-airplane-takeoff:before{content:"󰗕"}.mdi-airport:before{content:"󰡋"}.mdi-alarm:before{content:"󰀠"}.mdi-alarm-bell:before{content:"󰞎"}.mdi-alarm-check:before{content:"󰀡"}.mdi-alarm-light:before{content:"󰞏"}.mdi-alarm-light-off:before{content:"󱜞"}.mdi-alarm-light-off-outline:before{content:"󱜟"}.mdi-alarm-light-outline:before{content:"󰯪"}.mdi-alarm-multiple:before{content:"󰀢"}.mdi-alarm-note:before{content:"󰹱"}.mdi-alarm-note-off:before{content:"󰹲"}.mdi-alarm-off:before{content:"󰀣"}.mdi-alarm-panel:before{content:"󱗄"}.mdi-alarm-panel-outline:before{content:"󱗅"}.mdi-alarm-plus:before{content:"󰀤"}.mdi-alarm-snooze:before{content:"󰚎"}.mdi-album:before{content:"󰀥"}.mdi-alert:before{content:"󰀦"}.mdi-alert-box:before{content:"󰀧"}.mdi-alert-box-outline:before{content:"󰳤"}.mdi-alert-circle:before{content:"󰀨"}.mdi-alert-circle-check:before{content:"󱇭"}.mdi-alert-circle-check-outline:before{content:"󱇮"}.mdi-alert-circle-outline:before{content:"󰗖"}.mdi-alert-decagram:before{content:"󰚽"}.mdi-alert-decagram-outline:before{content:"󰳥"}.mdi-alert-minus:before{content:"󱒻"}.mdi-alert-minus-outline:before{content:"󱒾"}.mdi-alert-octagon:before{content:"󰀩"}.mdi-alert-octagon-outline:before{content:"󰳦"}.mdi-alert-octagram:before{content:"󰝧"}.mdi-alert-octagram-outline:before{content:"󰳧"}.mdi-alert-outline:before{content:"󰀪"}.mdi-alert-plus:before{content:"󱒺"}.mdi-alert-plus-outline:before{content:"󱒽"}.mdi-alert-remove:before{content:"󱒼"}.mdi-alert-remove-outline:before{content:"󱒿"}.mdi-alert-rhombus:before{content:"󱇎"}.mdi-alert-rhombus-outline:before{content:"󱇏"}.mdi-alien:before{content:"󰢚"}.mdi-alien-outline:before{content:"󱃋"}.mdi-align-horizontal-center:before{content:"󱇃"}.mdi-align-horizontal-distribute:before{content:"󱥢"}.mdi-align-horizontal-left:before{content:"󱇂"}.mdi-align-horizontal-right:before{content:"󱇄"}.mdi-align-vertical-bottom:before{content:"󱇅"}.mdi-align-vertical-center:before{content:"󱇆"}.mdi-align-vertical-distribute:before{content:"󱥣"}.mdi-align-vertical-top:before{content:"󱇇"}.mdi-all-inclusive:before{content:"󰚾"}.mdi-all-inclusive-box:before{content:"󱢍"}.mdi-all-inclusive-box-outline:before{content:"󱢎"}.mdi-allergy:before{content:"󱉘"}.mdi-alpha:before{content:"󰀫"}.mdi-alpha-a:before{content:"󰫮"}.mdi-alpha-a-box:before{content:"󰬈"}.mdi-alpha-a-box-outline:before{content:"󰯫"}.mdi-alpha-a-circle:before{content:"󰯬"}.mdi-alpha-a-circle-outline:before{content:"󰯭"}.mdi-alpha-b:before{content:"󰫯"}.mdi-alpha-b-box:before{content:"󰬉"}.mdi-alpha-b-box-outline:before{content:"󰯮"}.mdi-alpha-b-circle:before{content:"󰯯"}.mdi-alpha-b-circle-outline:before{content:"󰯰"}.mdi-alpha-c:before{content:"󰫰"}.mdi-alpha-c-box:before{content:"󰬊"}.mdi-alpha-c-box-outline:before{content:"󰯱"}.mdi-alpha-c-circle:before{content:"󰯲"}.mdi-alpha-c-circle-outline:before{content:"󰯳"}.mdi-alpha-d:before{content:"󰫱"}.mdi-alpha-d-box:before{content:"󰬋"}.mdi-alpha-d-box-outline:before{content:"󰯴"}.mdi-alpha-d-circle:before{content:"󰯵"}.mdi-alpha-d-circle-outline:before{content:"󰯶"}.mdi-alpha-e:before{content:"󰫲"}.mdi-alpha-e-box:before{content:"󰬌"}.mdi-alpha-e-box-outline:before{content:"󰯷"}.mdi-alpha-e-circle:before{content:"󰯸"}.mdi-alpha-e-circle-outline:before{content:"󰯹"}.mdi-alpha-f:before{content:"󰫳"}.mdi-alpha-f-box:before{content:"󰬍"}.mdi-alpha-f-box-outline:before{content:"󰯺"}.mdi-alpha-f-circle:before{content:"󰯻"}.mdi-alpha-f-circle-outline:before{content:"󰯼"}.mdi-alpha-g:before{content:"󰫴"}.mdi-alpha-g-box:before{content:"󰬎"}.mdi-alpha-g-box-outline:before{content:"󰯽"}.mdi-alpha-g-circle:before{content:"󰯾"}.mdi-alpha-g-circle-outline:before{content:"󰯿"}.mdi-alpha-h:before{content:"󰫵"}.mdi-alpha-h-box:before{content:"󰬏"}.mdi-alpha-h-box-outline:before{content:"󰰀"}.mdi-alpha-h-circle:before{content:"󰰁"}.mdi-alpha-h-circle-outline:before{content:"󰰂"}.mdi-alpha-i:before{content:"󰫶"}.mdi-alpha-i-box:before{content:"󰬐"}.mdi-alpha-i-box-outline:before{content:"󰰃"}.mdi-alpha-i-circle:before{content:"󰰄"}.mdi-alpha-i-circle-outline:before{content:"󰰅"}.mdi-alpha-j:before{content:"󰫷"}.mdi-alpha-j-box:before{content:"󰬑"}.mdi-alpha-j-box-outline:before{content:"󰰆"}.mdi-alpha-j-circle:before{content:"󰰇"}.mdi-alpha-j-circle-outline:before{content:"󰰈"}.mdi-alpha-k:before{content:"󰫸"}.mdi-alpha-k-box:before{content:"󰬒"}.mdi-alpha-k-box-outline:before{content:"󰰉"}.mdi-alpha-k-circle:before{content:"󰰊"}.mdi-alpha-k-circle-outline:before{content:"󰰋"}.mdi-alpha-l:before{content:"󰫹"}.mdi-alpha-l-box:before{content:"󰬓"}.mdi-alpha-l-box-outline:before{content:"󰰌"}.mdi-alpha-l-circle:before{content:"󰰍"}.mdi-alpha-l-circle-outline:before{content:"󰰎"}.mdi-alpha-m:before{content:"󰫺"}.mdi-alpha-m-box:before{content:"󰬔"}.mdi-alpha-m-box-outline:before{content:"󰰏"}.mdi-alpha-m-circle:before{content:"󰰐"}.mdi-alpha-m-circle-outline:before{content:"󰰑"}.mdi-alpha-n:before{content:"󰫻"}.mdi-alpha-n-box:before{content:"󰬕"}.mdi-alpha-n-box-outline:before{content:"󰰒"}.mdi-alpha-n-circle:before{content:"󰰓"}.mdi-alpha-n-circle-outline:before{content:"󰰔"}.mdi-alpha-o:before{content:"󰫼"}.mdi-alpha-o-box:before{content:"󰬖"}.mdi-alpha-o-box-outline:before{content:"󰰕"}.mdi-alpha-o-circle:before{content:"󰰖"}.mdi-alpha-o-circle-outline:before{content:"󰰗"}.mdi-alpha-p:before{content:"󰫽"}.mdi-alpha-p-box:before{content:"󰬗"}.mdi-alpha-p-box-outline:before{content:"󰰘"}.mdi-alpha-p-circle:before{content:"󰰙"}.mdi-alpha-p-circle-outline:before{content:"󰰚"}.mdi-alpha-q:before{content:"󰫾"}.mdi-alpha-q-box:before{content:"󰬘"}.mdi-alpha-q-box-outline:before{content:"󰰛"}.mdi-alpha-q-circle:before{content:"󰰜"}.mdi-alpha-q-circle-outline:before{content:"󰰝"}.mdi-alpha-r:before{content:"󰫿"}.mdi-alpha-r-box:before{content:"󰬙"}.mdi-alpha-r-box-outline:before{content:"󰰞"}.mdi-alpha-r-circle:before{content:"󰰟"}.mdi-alpha-r-circle-outline:before{content:"󰰠"}.mdi-alpha-s:before{content:"󰬀"}.mdi-alpha-s-box:before{content:"󰬚"}.mdi-alpha-s-box-outline:before{content:"󰰡"}.mdi-alpha-s-circle:before{content:"󰰢"}.mdi-alpha-s-circle-outline:before{content:"󰰣"}.mdi-alpha-t:before{content:"󰬁"}.mdi-alpha-t-box:before{content:"󰬛"}.mdi-alpha-t-box-outline:before{content:"󰰤"}.mdi-alpha-t-circle:before{content:"󰰥"}.mdi-alpha-t-circle-outline:before{content:"󰰦"}.mdi-alpha-u:before{content:"󰬂"}.mdi-alpha-u-box:before{content:"󰬜"}.mdi-alpha-u-box-outline:before{content:"󰰧"}.mdi-alpha-u-circle:before{content:"󰰨"}.mdi-alpha-u-circle-outline:before{content:"󰰩"}.mdi-alpha-v:before{content:"󰬃"}.mdi-alpha-v-box:before{content:"󰬝"}.mdi-alpha-v-box-outline:before{content:"󰰪"}.mdi-alpha-v-circle:before{content:"󰰫"}.mdi-alpha-v-circle-outline:before{content:"󰰬"}.mdi-alpha-w:before{content:"󰬄"}.mdi-alpha-w-box:before{content:"󰬞"}.mdi-alpha-w-box-outline:before{content:"󰰭"}.mdi-alpha-w-circle:before{content:"󰰮"}.mdi-alpha-w-circle-outline:before{content:"󰰯"}.mdi-alpha-x:before{content:"󰬅"}.mdi-alpha-x-box:before{content:"󰬟"}.mdi-alpha-x-box-outline:before{content:"󰰰"}.mdi-alpha-x-circle:before{content:"󰰱"}.mdi-alpha-x-circle-outline:before{content:"󰰲"}.mdi-alpha-y:before{content:"󰬆"}.mdi-alpha-y-box:before{content:"󰬠"}.mdi-alpha-y-box-outline:before{content:"󰰳"}.mdi-alpha-y-circle:before{content:"󰰴"}.mdi-alpha-y-circle-outline:before{content:"󰰵"}.mdi-alpha-z:before{content:"󰬇"}.mdi-alpha-z-box:before{content:"󰬡"}.mdi-alpha-z-box-outline:before{content:"󰰶"}.mdi-alpha-z-circle:before{content:"󰰷"}.mdi-alpha-z-circle-outline:before{content:"󰰸"}.mdi-alphabet-aurebesh:before{content:"󱌬"}.mdi-alphabet-cyrillic:before{content:"󱌭"}.mdi-alphabet-greek:before{content:"󱌮"}.mdi-alphabet-latin:before{content:"󱌯"}.mdi-alphabet-piqad:before{content:"󱌰"}.mdi-alphabet-tengwar:before{content:"󱌷"}.mdi-alphabetical:before{content:"󰀬"}.mdi-alphabetical-off:before{content:"󱀌"}.mdi-alphabetical-variant:before{content:"󱀍"}.mdi-alphabetical-variant-off:before{content:"󱀎"}.mdi-altimeter:before{content:"󰗗"}.mdi-ambulance:before{content:"󰀯"}.mdi-ammunition:before{content:"󰳨"}.mdi-ampersand:before{content:"󰪍"}.mdi-amplifier:before{content:"󰀰"}.mdi-amplifier-off:before{content:"󱆵"}.mdi-anchor:before{content:"󰀱"}.mdi-android:before{content:"󰀲"}.mdi-android-studio:before{content:"󰀴"}.mdi-angle-acute:before{content:"󰤷"}.mdi-angle-obtuse:before{content:"󰤸"}.mdi-angle-right:before{content:"󰤹"}.mdi-angular:before{content:"󰚲"}.mdi-angularjs:before{content:"󰚿"}.mdi-animation:before{content:"󰗘"}.mdi-animation-outline:before{content:"󰪏"}.mdi-animation-play:before{content:"󰤺"}.mdi-animation-play-outline:before{content:"󰪐"}.mdi-ansible:before{content:"󱂚"}.mdi-antenna:before{content:"󱄙"}.mdi-anvil:before{content:"󰢛"}.mdi-apache-kafka:before{content:"󱀏"}.mdi-api:before{content:"󱂛"}.mdi-api-off:before{content:"󱉗"}.mdi-apple:before{content:"󰀵"}.mdi-apple-finder:before{content:"󰀶"}.mdi-apple-icloud:before{content:"󰀸"}.mdi-apple-ios:before{content:"󰀷"}.mdi-apple-keyboard-caps:before{content:"󰘲"}.mdi-apple-keyboard-command:before{content:"󰘳"}.mdi-apple-keyboard-control:before{content:"󰘴"}.mdi-apple-keyboard-option:before{content:"󰘵"}.mdi-apple-keyboard-shift:before{content:"󰘶"}.mdi-apple-safari:before{content:"󰀹"}.mdi-application:before{content:"󰣆"}.mdi-application-array:before{content:"󱃵"}.mdi-application-array-outline:before{content:"󱃶"}.mdi-application-braces:before{content:"󱃷"}.mdi-application-braces-outline:before{content:"󱃸"}.mdi-application-brackets:before{content:"󰲋"}.mdi-application-brackets-outline:before{content:"󰲌"}.mdi-application-cog:before{content:"󰙵"}.mdi-application-cog-outline:before{content:"󱕷"}.mdi-application-edit:before{content:"󰂮"}.mdi-application-edit-outline:before{content:"󰘙"}.mdi-application-export:before{content:"󰶭"}.mdi-application-import:before{content:"󰶮"}.mdi-application-outline:before{content:"󰘔"}.mdi-application-parentheses:before{content:"󱃹"}.mdi-application-parentheses-outline:before{content:"󱃺"}.mdi-application-settings:before{content:"󰭠"}.mdi-application-settings-outline:before{content:"󱕕"}.mdi-application-variable:before{content:"󱃻"}.mdi-application-variable-outline:before{content:"󱃼"}.mdi-approximately-equal:before{content:"󰾞"}.mdi-approximately-equal-box:before{content:"󰾟"}.mdi-apps:before{content:"󰀻"}.mdi-apps-box:before{content:"󰵆"}.mdi-arch:before{content:"󰣇"}.mdi-archive:before{content:"󰀼"}.mdi-archive-alert:before{content:"󱓽"}.mdi-archive-alert-outline:before{content:"󱓾"}.mdi-archive-arrow-down:before{content:"󱉙"}.mdi-archive-arrow-down-outline:before{content:"󱉚"}.mdi-archive-arrow-up:before{content:"󱉛"}.mdi-archive-arrow-up-outline:before{content:"󱉜"}.mdi-archive-cancel:before{content:"󱝋"}.mdi-archive-cancel-outline:before{content:"󱝌"}.mdi-archive-check:before{content:"󱝍"}.mdi-archive-check-outline:before{content:"󱝎"}.mdi-archive-clock:before{content:"󱝏"}.mdi-archive-clock-outline:before{content:"󱝐"}.mdi-archive-cog:before{content:"󱝑"}.mdi-archive-cog-outline:before{content:"󱝒"}.mdi-archive-edit:before{content:"󱝓"}.mdi-archive-edit-outline:before{content:"󱝔"}.mdi-archive-eye:before{content:"󱝕"}.mdi-archive-eye-outline:before{content:"󱝖"}.mdi-archive-lock:before{content:"󱝗"}.mdi-archive-lock-open:before{content:"󱝘"}.mdi-archive-lock-open-outline:before{content:"󱝙"}.mdi-archive-lock-outline:before{content:"󱝚"}.mdi-archive-marker:before{content:"󱝛"}.mdi-archive-marker-outline:before{content:"󱝜"}.mdi-archive-minus:before{content:"󱝝"}.mdi-archive-minus-outline:before{content:"󱝞"}.mdi-archive-music:before{content:"󱝟"}.mdi-archive-music-outline:before{content:"󱝠"}.mdi-archive-off:before{content:"󱝡"}.mdi-archive-off-outline:before{content:"󱝢"}.mdi-archive-outline:before{content:"󱈎"}.mdi-archive-plus:before{content:"󱝣"}.mdi-archive-plus-outline:before{content:"󱝤"}.mdi-archive-refresh:before{content:"󱝥"}.mdi-archive-refresh-outline:before{content:"󱝦"}.mdi-archive-remove:before{content:"󱝧"}.mdi-archive-remove-outline:before{content:"󱝨"}.mdi-archive-search:before{content:"󱝩"}.mdi-archive-search-outline:before{content:"󱝪"}.mdi-archive-settings:before{content:"󱝫"}.mdi-archive-settings-outline:before{content:"󱝬"}.mdi-archive-star:before{content:"󱝭"}.mdi-archive-star-outline:before{content:"󱝮"}.mdi-archive-sync:before{content:"󱝯"}.mdi-archive-sync-outline:before{content:"󱝰"}.mdi-arm-flex:before{content:"󰿗"}.mdi-arm-flex-outline:before{content:"󰿖"}.mdi-arrange-bring-forward:before{content:"󰀽"}.mdi-arrange-bring-to-front:before{content:"󰀾"}.mdi-arrange-send-backward:before{content:"󰀿"}.mdi-arrange-send-to-back:before{content:"󰁀"}.mdi-arrow-all:before{content:"󰁁"}.mdi-arrow-bottom-left:before{content:"󰁂"}.mdi-arrow-bottom-left-bold-box:before{content:"󱥤"}.mdi-arrow-bottom-left-bold-box-outline:before{content:"󱥥"}.mdi-arrow-bottom-left-bold-outline:before{content:"󰦷"}.mdi-arrow-bottom-left-thick:before{content:"󰦸"}.mdi-arrow-bottom-left-thin:before{content:"󱦶"}.mdi-arrow-bottom-left-thin-circle-outline:before{content:"󱖖"}.mdi-arrow-bottom-right:before{content:"󰁃"}.mdi-arrow-bottom-right-bold-box:before{content:"󱥦"}.mdi-arrow-bottom-right-bold-box-outline:before{content:"󱥧"}.mdi-arrow-bottom-right-bold-outline:before{content:"󰦹"}.mdi-arrow-bottom-right-thick:before{content:"󰦺"}.mdi-arrow-bottom-right-thin:before{content:"󱦷"}.mdi-arrow-bottom-right-thin-circle-outline:before{content:"󱖕"}.mdi-arrow-collapse:before{content:"󰘕"}.mdi-arrow-collapse-all:before{content:"󰁄"}.mdi-arrow-collapse-down:before{content:"󰞒"}.mdi-arrow-collapse-horizontal:before{content:"󰡌"}.mdi-arrow-collapse-left:before{content:"󰞓"}.mdi-arrow-collapse-right:before{content:"󰞔"}.mdi-arrow-collapse-up:before{content:"󰞕"}.mdi-arrow-collapse-vertical:before{content:"󰡍"}.mdi-arrow-decision:before{content:"󰦻"}.mdi-arrow-decision-auto:before{content:"󰦼"}.mdi-arrow-decision-auto-outline:before{content:"󰦽"}.mdi-arrow-decision-outline:before{content:"󰦾"}.mdi-arrow-down:before{content:"󰁅"}.mdi-arrow-down-bold:before{content:"󰜮"}.mdi-arrow-down-bold-box:before{content:"󰜯"}.mdi-arrow-down-bold-box-outline:before{content:"󰜰"}.mdi-arrow-down-bold-circle:before{content:"󰁇"}.mdi-arrow-down-bold-circle-outline:before{content:"󰁈"}.mdi-arrow-down-bold-hexagon-outline:before{content:"󰁉"}.mdi-arrow-down-bold-outline:before{content:"󰦿"}.mdi-arrow-down-box:before{content:"󰛀"}.mdi-arrow-down-circle:before{content:"󰳛"}.mdi-arrow-down-circle-outline:before{content:"󰳜"}.mdi-arrow-down-drop-circle:before{content:"󰁊"}.mdi-arrow-down-drop-circle-outline:before{content:"󰁋"}.mdi-arrow-down-left:before{content:"󱞡"}.mdi-arrow-down-left-bold:before{content:"󱞢"}.mdi-arrow-down-right:before{content:"󱞣"}.mdi-arrow-down-right-bold:before{content:"󱞤"}.mdi-arrow-down-thick:before{content:"󰁆"}.mdi-arrow-down-thin:before{content:"󱦳"}.mdi-arrow-down-thin-circle-outline:before{content:"󱖙"}.mdi-arrow-expand:before{content:"󰘖"}.mdi-arrow-expand-all:before{content:"󰁌"}.mdi-arrow-expand-down:before{content:"󰞖"}.mdi-arrow-expand-horizontal:before{content:"󰡎"}.mdi-arrow-expand-left:before{content:"󰞗"}.mdi-arrow-expand-right:before{content:"󰞘"}.mdi-arrow-expand-up:before{content:"󰞙"}.mdi-arrow-expand-vertical:before{content:"󰡏"}.mdi-arrow-horizontal-lock:before{content:"󱅛"}.mdi-arrow-left:before{content:"󰁍"}.mdi-arrow-left-bold:before{content:"󰜱"}.mdi-arrow-left-bold-box:before{content:"󰜲"}.mdi-arrow-left-bold-box-outline:before{content:"󰜳"}.mdi-arrow-left-bold-circle:before{content:"󰁏"}.mdi-arrow-left-bold-circle-outline:before{content:"󰁐"}.mdi-arrow-left-bold-hexagon-outline:before{content:"󰁑"}.mdi-arrow-left-bold-outline:before{content:"󰧀"}.mdi-arrow-left-bottom:before{content:"󱞥"}.mdi-arrow-left-bottom-bold:before{content:"󱞦"}.mdi-arrow-left-box:before{content:"󰛁"}.mdi-arrow-left-circle:before{content:"󰳝"}.mdi-arrow-left-circle-outline:before{content:"󰳞"}.mdi-arrow-left-drop-circle:before{content:"󰁒"}.mdi-arrow-left-drop-circle-outline:before{content:"󰁓"}.mdi-arrow-left-right:before{content:"󰹳"}.mdi-arrow-left-right-bold:before{content:"󰹴"}.mdi-arrow-left-right-bold-outline:before{content:"󰧁"}.mdi-arrow-left-thick:before{content:"󰁎"}.mdi-arrow-left-thin:before{content:"󱦱"}.mdi-arrow-left-thin-circle-outline:before{content:"󱖚"}.mdi-arrow-left-top:before{content:"󱞧"}.mdi-arrow-left-top-bold:before{content:"󱞨"}.mdi-arrow-projectile:before{content:"󱡀"}.mdi-arrow-projectile-multiple:before{content:"󱠿"}.mdi-arrow-right:before{content:"󰁔"}.mdi-arrow-right-bold:before{content:"󰜴"}.mdi-arrow-right-bold-box:before{content:"󰜵"}.mdi-arrow-right-bold-box-outline:before{content:"󰜶"}.mdi-arrow-right-bold-circle:before{content:"󰁖"}.mdi-arrow-right-bold-circle-outline:before{content:"󰁗"}.mdi-arrow-right-bold-hexagon-outline:before{content:"󰁘"}.mdi-arrow-right-bold-outline:before{content:"󰧂"}.mdi-arrow-right-bottom:before{content:"󱞩"}.mdi-arrow-right-bottom-bold:before{content:"󱞪"}.mdi-arrow-right-box:before{content:"󰛂"}.mdi-arrow-right-circle:before{content:"󰳟"}.mdi-arrow-right-circle-outline:before{content:"󰳠"}.mdi-arrow-right-drop-circle:before{content:"󰁙"}.mdi-arrow-right-drop-circle-outline:before{content:"󰁚"}.mdi-arrow-right-thick:before{content:"󰁕"}.mdi-arrow-right-thin:before{content:"󱦰"}.mdi-arrow-right-thin-circle-outline:before{content:"󱖘"}.mdi-arrow-right-top:before{content:"󱞫"}.mdi-arrow-right-top-bold:before{content:"󱞬"}.mdi-arrow-split-horizontal:before{content:"󰤻"}.mdi-arrow-split-vertical:before{content:"󰤼"}.mdi-arrow-top-left:before{content:"󰁛"}.mdi-arrow-top-left-bold-box:before{content:"󱥨"}.mdi-arrow-top-left-bold-box-outline:before{content:"󱥩"}.mdi-arrow-top-left-bold-outline:before{content:"󰧃"}.mdi-arrow-top-left-bottom-right:before{content:"󰹵"}.mdi-arrow-top-left-bottom-right-bold:before{content:"󰹶"}.mdi-arrow-top-left-thick:before{content:"󰧄"}.mdi-arrow-top-left-thin:before{content:"󱦵"}.mdi-arrow-top-left-thin-circle-outline:before{content:"󱖓"}.mdi-arrow-top-right:before{content:"󰁜"}.mdi-arrow-top-right-bold-box:before{content:"󱥪"}.mdi-arrow-top-right-bold-box-outline:before{content:"󱥫"}.mdi-arrow-top-right-bold-outline:before{content:"󰧅"}.mdi-arrow-top-right-bottom-left:before{content:"󰹷"}.mdi-arrow-top-right-bottom-left-bold:before{content:"󰹸"}.mdi-arrow-top-right-thick:before{content:"󰧆"}.mdi-arrow-top-right-thin:before{content:"󱦴"}.mdi-arrow-top-right-thin-circle-outline:before{content:"󱖔"}.mdi-arrow-u-down-left:before{content:"󱞭"}.mdi-arrow-u-down-left-bold:before{content:"󱞮"}.mdi-arrow-u-down-right:before{content:"󱞯"}.mdi-arrow-u-down-right-bold:before{content:"󱞰"}.mdi-arrow-u-left-bottom:before{content:"󱞱"}.mdi-arrow-u-left-bottom-bold:before{content:"󱞲"}.mdi-arrow-u-left-top:before{content:"󱞳"}.mdi-arrow-u-left-top-bold:before{content:"󱞴"}.mdi-arrow-u-right-bottom:before{content:"󱞵"}.mdi-arrow-u-right-bottom-bold:before{content:"󱞶"}.mdi-arrow-u-right-top:before{content:"󱞷"}.mdi-arrow-u-right-top-bold:before{content:"󱞸"}.mdi-arrow-u-up-left:before{content:"󱞹"}.mdi-arrow-u-up-left-bold:before{content:"󱞺"}.mdi-arrow-u-up-right:before{content:"󱞻"}.mdi-arrow-u-up-right-bold:before{content:"󱞼"}.mdi-arrow-up:before{content:"󰁝"}.mdi-arrow-up-bold:before{content:"󰜷"}.mdi-arrow-up-bold-box:before{content:"󰜸"}.mdi-arrow-up-bold-box-outline:before{content:"󰜹"}.mdi-arrow-up-bold-circle:before{content:"󰁟"}.mdi-arrow-up-bold-circle-outline:before{content:"󰁠"}.mdi-arrow-up-bold-hexagon-outline:before{content:"󰁡"}.mdi-arrow-up-bold-outline:before{content:"󰧇"}.mdi-arrow-up-box:before{content:"󰛃"}.mdi-arrow-up-circle:before{content:"󰳡"}.mdi-arrow-up-circle-outline:before{content:"󰳢"}.mdi-arrow-up-down:before{content:"󰹹"}.mdi-arrow-up-down-bold:before{content:"󰹺"}.mdi-arrow-up-down-bold-outline:before{content:"󰧈"}.mdi-arrow-up-drop-circle:before{content:"󰁢"}.mdi-arrow-up-drop-circle-outline:before{content:"󰁣"}.mdi-arrow-up-left:before{content:"󱞽"}.mdi-arrow-up-left-bold:before{content:"󱞾"}.mdi-arrow-up-right:before{content:"󱞿"}.mdi-arrow-up-right-bold:before{content:"󱟀"}.mdi-arrow-up-thick:before{content:"󰁞"}.mdi-arrow-up-thin:before{content:"󱦲"}.mdi-arrow-up-thin-circle-outline:before{content:"󱖗"}.mdi-arrow-vertical-lock:before{content:"󱅜"}.mdi-artboard:before{content:"󱮚"}.mdi-artstation:before{content:"󰭛"}.mdi-aspect-ratio:before{content:"󰨤"}.mdi-assistant:before{content:"󰁤"}.mdi-asterisk:before{content:"󰛄"}.mdi-asterisk-circle-outline:before{content:"󱨧"}.mdi-at:before{content:"󰁥"}.mdi-atlassian:before{content:"󰠄"}.mdi-atm:before{content:"󰵇"}.mdi-atom:before{content:"󰝨"}.mdi-atom-variant:before{content:"󰹻"}.mdi-attachment:before{content:"󰁦"}.mdi-attachment-check:before{content:"󱫁"}.mdi-attachment-lock:before{content:"󱧄"}.mdi-attachment-minus:before{content:"󱫂"}.mdi-attachment-off:before{content:"󱫃"}.mdi-attachment-plus:before{content:"󱫄"}.mdi-attachment-remove:before{content:"󱫅"}.mdi-atv:before{content:"󱭰"}.mdi-audio-input-rca:before{content:"󱡫"}.mdi-audio-input-stereo-minijack:before{content:"󱡬"}.mdi-audio-input-xlr:before{content:"󱡭"}.mdi-audio-video:before{content:"󰤽"}.mdi-audio-video-off:before{content:"󱆶"}.mdi-augmented-reality:before{content:"󰡐"}.mdi-aurora:before{content:"󱮹"}.mdi-auto-download:before{content:"󱍾"}.mdi-auto-fix:before{content:"󰁨"}.mdi-auto-mode:before{content:"󱰠"}.mdi-auto-upload:before{content:"󰁩"}.mdi-autorenew:before{content:"󰁪"}.mdi-autorenew-off:before{content:"󱧧"}.mdi-av-timer:before{content:"󰁫"}.mdi-awning:before{content:"󱮇"}.mdi-awning-outline:before{content:"󱮈"}.mdi-aws:before{content:"󰸏"}.mdi-axe:before{content:"󰣈"}.mdi-axe-battle:before{content:"󱡂"}.mdi-axis:before{content:"󰵈"}.mdi-axis-arrow:before{content:"󰵉"}.mdi-axis-arrow-info:before{content:"󱐎"}.mdi-axis-arrow-lock:before{content:"󰵊"}.mdi-axis-lock:before{content:"󰵋"}.mdi-axis-x-arrow:before{content:"󰵌"}.mdi-axis-x-arrow-lock:before{content:"󰵍"}.mdi-axis-x-rotate-clockwise:before{content:"󰵎"}.mdi-axis-x-rotate-counterclockwise:before{content:"󰵏"}.mdi-axis-x-y-arrow-lock:before{content:"󰵐"}.mdi-axis-y-arrow:before{content:"󰵑"}.mdi-axis-y-arrow-lock:before{content:"󰵒"}.mdi-axis-y-rotate-clockwise:before{content:"󰵓"}.mdi-axis-y-rotate-counterclockwise:before{content:"󰵔"}.mdi-axis-z-arrow:before{content:"󰵕"}.mdi-axis-z-arrow-lock:before{content:"󰵖"}.mdi-axis-z-rotate-clockwise:before{content:"󰵗"}.mdi-axis-z-rotate-counterclockwise:before{content:"󰵘"}.mdi-babel:before{content:"󰨥"}.mdi-baby:before{content:"󰁬"}.mdi-baby-bottle:before{content:"󰼹"}.mdi-baby-bottle-outline:before{content:"󰼺"}.mdi-baby-buggy:before{content:"󱏠"}.mdi-baby-buggy-off:before{content:"󱫳"}.mdi-baby-carriage:before{content:"󰚏"}.mdi-baby-carriage-off:before{content:"󰾠"}.mdi-baby-face:before{content:"󰹼"}.mdi-baby-face-outline:before{content:"󰹽"}.mdi-backburger:before{content:"󰁭"}.mdi-backspace:before{content:"󰁮"}.mdi-backspace-outline:before{content:"󰭜"}.mdi-backspace-reverse:before{content:"󰹾"}.mdi-backspace-reverse-outline:before{content:"󰹿"}.mdi-backup-restore:before{content:"󰁯"}.mdi-bacteria:before{content:"󰻕"}.mdi-bacteria-outline:before{content:"󰻖"}.mdi-badge-account:before{content:"󰶧"}.mdi-badge-account-alert:before{content:"󰶨"}.mdi-badge-account-alert-outline:before{content:"󰶩"}.mdi-badge-account-horizontal:before{content:"󰸍"}.mdi-badge-account-horizontal-outline:before{content:"󰸎"}.mdi-badge-account-outline:before{content:"󰶪"}.mdi-badminton:before{content:"󰡑"}.mdi-bag-carry-on:before{content:"󰼻"}.mdi-bag-carry-on-check:before{content:"󰵥"}.mdi-bag-carry-on-off:before{content:"󰼼"}.mdi-bag-checked:before{content:"󰼽"}.mdi-bag-personal:before{content:"󰸐"}.mdi-bag-personal-off:before{content:"󰸑"}.mdi-bag-personal-off-outline:before{content:"󰸒"}.mdi-bag-personal-outline:before{content:"󰸓"}.mdi-bag-personal-tag:before{content:"󱬌"}.mdi-bag-personal-tag-outline:before{content:"󱬍"}.mdi-bag-suitcase:before{content:"󱖋"}.mdi-bag-suitcase-off:before{content:"󱖍"}.mdi-bag-suitcase-off-outline:before{content:"󱖎"}.mdi-bag-suitcase-outline:before{content:"󱖌"}.mdi-baguette:before{content:"󰼾"}.mdi-balcony:before{content:"󱠗"}.mdi-balloon:before{content:"󰨦"}.mdi-ballot:before{content:"󰧉"}.mdi-ballot-outline:before{content:"󰧊"}.mdi-ballot-recount:before{content:"󰰹"}.mdi-ballot-recount-outline:before{content:"󰰺"}.mdi-bandage:before{content:"󰶯"}.mdi-bank:before{content:"󰁰"}.mdi-bank-check:before{content:"󱙕"}.mdi-bank-circle:before{content:"󱰃"}.mdi-bank-circle-outline:before{content:"󱰄"}.mdi-bank-minus:before{content:"󰶰"}.mdi-bank-off:before{content:"󱙖"}.mdi-bank-off-outline:before{content:"󱙗"}.mdi-bank-outline:before{content:"󰺀"}.mdi-bank-plus:before{content:"󰶱"}.mdi-bank-remove:before{content:"󰶲"}.mdi-bank-transfer:before{content:"󰨧"}.mdi-bank-transfer-in:before{content:"󰨨"}.mdi-bank-transfer-out:before{content:"󰨩"}.mdi-barcode:before{content:"󰁱"}.mdi-barcode-off:before{content:"󱈶"}.mdi-barcode-scan:before{content:"󰁲"}.mdi-barley:before{content:"󰁳"}.mdi-barley-off:before{content:"󰭝"}.mdi-barn:before{content:"󰭞"}.mdi-barrel:before{content:"󰁴"}.mdi-barrel-outline:before{content:"󱨨"}.mdi-baseball:before{content:"󰡒"}.mdi-baseball-bat:before{content:"󰡓"}.mdi-baseball-diamond:before{content:"󱗬"}.mdi-baseball-diamond-outline:before{content:"󱗭"}.mdi-baseball-outline:before{content:"󱱚"}.mdi-bash:before{content:"󱆃"}.mdi-basket:before{content:"󰁶"}.mdi-basket-check:before{content:"󱣥"}.mdi-basket-check-outline:before{content:"󱣦"}.mdi-basket-fill:before{content:"󰁷"}.mdi-basket-minus:before{content:"󱔣"}.mdi-basket-minus-outline:before{content:"󱔤"}.mdi-basket-off:before{content:"󱔥"}.mdi-basket-off-outline:before{content:"󱔦"}.mdi-basket-outline:before{content:"󱆁"}.mdi-basket-plus:before{content:"󱔧"}.mdi-basket-plus-outline:before{content:"󱔨"}.mdi-basket-remove:before{content:"󱔩"}.mdi-basket-remove-outline:before{content:"󱔪"}.mdi-basket-unfill:before{content:"󰁸"}.mdi-basketball:before{content:"󰠆"}.mdi-basketball-hoop:before{content:"󰰻"}.mdi-basketball-hoop-outline:before{content:"󰰼"}.mdi-bat:before{content:"󰭟"}.mdi-bathtub:before{content:"󱠘"}.mdi-bathtub-outline:before{content:"󱠙"}.mdi-battery:before{content:"󰁹"}.mdi-battery-10:before{content:"󰁺"}.mdi-battery-10-bluetooth:before{content:"󰤾"}.mdi-battery-20:before{content:"󰁻"}.mdi-battery-20-bluetooth:before{content:"󰤿"}.mdi-battery-30:before{content:"󰁼"}.mdi-battery-30-bluetooth:before{content:"󰥀"}.mdi-battery-40:before{content:"󰁽"}.mdi-battery-40-bluetooth:before{content:"󰥁"}.mdi-battery-50:before{content:"󰁾"}.mdi-battery-50-bluetooth:before{content:"󰥂"}.mdi-battery-60:before{content:"󰁿"}.mdi-battery-60-bluetooth:before{content:"󰥃"}.mdi-battery-70:before{content:"󰂀"}.mdi-battery-70-bluetooth:before{content:"󰥄"}.mdi-battery-80:before{content:"󰂁"}.mdi-battery-80-bluetooth:before{content:"󰥅"}.mdi-battery-90:before{content:"󰂂"}.mdi-battery-90-bluetooth:before{content:"󰥆"}.mdi-battery-alert:before{content:"󰂃"}.mdi-battery-alert-bluetooth:before{content:"󰥇"}.mdi-battery-alert-variant:before{content:"󱃌"}.mdi-battery-alert-variant-outline:before{content:"󱃍"}.mdi-battery-arrow-down:before{content:"󱟞"}.mdi-battery-arrow-down-outline:before{content:"󱟟"}.mdi-battery-arrow-up:before{content:"󱟠"}.mdi-battery-arrow-up-outline:before{content:"󱟡"}.mdi-battery-bluetooth:before{content:"󰥈"}.mdi-battery-bluetooth-variant:before{content:"󰥉"}.mdi-battery-charging:before{content:"󰂄"}.mdi-battery-charging-10:before{content:"󰢜"}.mdi-battery-charging-100:before{content:"󰂅"}.mdi-battery-charging-20:before{content:"󰂆"}.mdi-battery-charging-30:before{content:"󰂇"}.mdi-battery-charging-40:before{content:"󰂈"}.mdi-battery-charging-50:before{content:"󰢝"}.mdi-battery-charging-60:before{content:"󰂉"}.mdi-battery-charging-70:before{content:"󰢞"}.mdi-battery-charging-80:before{content:"󰂊"}.mdi-battery-charging-90:before{content:"󰂋"}.mdi-battery-charging-high:before{content:"󱊦"}.mdi-battery-charging-low:before{content:"󱊤"}.mdi-battery-charging-medium:before{content:"󱊥"}.mdi-battery-charging-outline:before{content:"󰢟"}.mdi-battery-charging-wireless:before{content:"󰠇"}.mdi-battery-charging-wireless-10:before{content:"󰠈"}.mdi-battery-charging-wireless-20:before{content:"󰠉"}.mdi-battery-charging-wireless-30:before{content:"󰠊"}.mdi-battery-charging-wireless-40:before{content:"󰠋"}.mdi-battery-charging-wireless-50:before{content:"󰠌"}.mdi-battery-charging-wireless-60:before{content:"󰠍"}.mdi-battery-charging-wireless-70:before{content:"󰠎"}.mdi-battery-charging-wireless-80:before{content:"󰠏"}.mdi-battery-charging-wireless-90:before{content:"󰠐"}.mdi-battery-charging-wireless-alert:before{content:"󰠑"}.mdi-battery-charging-wireless-outline:before{content:"󰠒"}.mdi-battery-check:before{content:"󱟢"}.mdi-battery-check-outline:before{content:"󱟣"}.mdi-battery-clock:before{content:"󱧥"}.mdi-battery-clock-outline:before{content:"󱧦"}.mdi-battery-heart:before{content:"󱈏"}.mdi-battery-heart-outline:before{content:"󱈐"}.mdi-battery-heart-variant:before{content:"󱈑"}.mdi-battery-high:before{content:"󱊣"}.mdi-battery-lock:before{content:"󱞜"}.mdi-battery-lock-open:before{content:"󱞝"}.mdi-battery-low:before{content:"󱊡"}.mdi-battery-medium:before{content:"󱊢"}.mdi-battery-minus:before{content:"󱟤"}.mdi-battery-minus-outline:before{content:"󱟥"}.mdi-battery-minus-variant:before{content:"󰂌"}.mdi-battery-negative:before{content:"󰂍"}.mdi-battery-off:before{content:"󱉝"}.mdi-battery-off-outline:before{content:"󱉞"}.mdi-battery-outline:before{content:"󰂎"}.mdi-battery-plus:before{content:"󱟦"}.mdi-battery-plus-outline:before{content:"󱟧"}.mdi-battery-plus-variant:before{content:"󰂏"}.mdi-battery-positive:before{content:"󰂐"}.mdi-battery-remove:before{content:"󱟨"}.mdi-battery-remove-outline:before{content:"󱟩"}.mdi-battery-sync:before{content:"󱠴"}.mdi-battery-sync-outline:before{content:"󱠵"}.mdi-battery-unknown:before{content:"󰂑"}.mdi-battery-unknown-bluetooth:before{content:"󰥊"}.mdi-beach:before{content:"󰂒"}.mdi-beaker:before{content:"󰳪"}.mdi-beaker-alert:before{content:"󱈩"}.mdi-beaker-alert-outline:before{content:"󱈪"}.mdi-beaker-check:before{content:"󱈫"}.mdi-beaker-check-outline:before{content:"󱈬"}.mdi-beaker-minus:before{content:"󱈭"}.mdi-beaker-minus-outline:before{content:"󱈮"}.mdi-beaker-outline:before{content:"󰚐"}.mdi-beaker-plus:before{content:"󱈯"}.mdi-beaker-plus-outline:before{content:"󱈰"}.mdi-beaker-question:before{content:"󱈱"}.mdi-beaker-question-outline:before{content:"󱈲"}.mdi-beaker-remove:before{content:"󱈳"}.mdi-beaker-remove-outline:before{content:"󱈴"}.mdi-bed:before{content:"󰋣"}.mdi-bed-clock:before{content:"󱮔"}.mdi-bed-double:before{content:"󰿔"}.mdi-bed-double-outline:before{content:"󰿓"}.mdi-bed-empty:before{content:"󰢠"}.mdi-bed-king:before{content:"󰿒"}.mdi-bed-king-outline:before{content:"󰿑"}.mdi-bed-outline:before{content:"󰂙"}.mdi-bed-queen:before{content:"󰿐"}.mdi-bed-queen-outline:before{content:"󰿛"}.mdi-bed-single:before{content:"󱁭"}.mdi-bed-single-outline:before{content:"󱁮"}.mdi-bee:before{content:"󰾡"}.mdi-bee-flower:before{content:"󰾢"}.mdi-beehive-off-outline:before{content:"󱏭"}.mdi-beehive-outline:before{content:"󱃎"}.mdi-beekeeper:before{content:"󱓢"}.mdi-beer:before{content:"󰂘"}.mdi-beer-outline:before{content:"󱌌"}.mdi-bell:before{content:"󰂚"}.mdi-bell-alert:before{content:"󰵙"}.mdi-bell-alert-outline:before{content:"󰺁"}.mdi-bell-badge:before{content:"󱅫"}.mdi-bell-badge-outline:before{content:"󰅸"}.mdi-bell-cancel:before{content:"󱏧"}.mdi-bell-cancel-outline:before{content:"󱏨"}.mdi-bell-check:before{content:"󱇥"}.mdi-bell-check-outline:before{content:"󱇦"}.mdi-bell-circle:before{content:"󰵚"}.mdi-bell-circle-outline:before{content:"󰵛"}.mdi-bell-cog:before{content:"󱨩"}.mdi-bell-cog-outline:before{content:"󱨪"}.mdi-bell-minus:before{content:"󱏩"}.mdi-bell-minus-outline:before{content:"󱏪"}.mdi-bell-off:before{content:"󰂛"}.mdi-bell-off-outline:before{content:"󰪑"}.mdi-bell-outline:before{content:"󰂜"}.mdi-bell-plus:before{content:"󰂝"}.mdi-bell-plus-outline:before{content:"󰪒"}.mdi-bell-remove:before{content:"󱏫"}.mdi-bell-remove-outline:before{content:"󱏬"}.mdi-bell-ring:before{content:"󰂞"}.mdi-bell-ring-outline:before{content:"󰂟"}.mdi-bell-sleep:before{content:"󰂠"}.mdi-bell-sleep-outline:before{content:"󰪓"}.mdi-bench:before{content:"󱰡"}.mdi-bench-back:before{content:"󱰢"}.mdi-beta:before{content:"󰂡"}.mdi-betamax:before{content:"󰧋"}.mdi-biathlon:before{content:"󰸔"}.mdi-bicycle:before{content:"󱂜"}.mdi-bicycle-basket:before{content:"󱈵"}.mdi-bicycle-cargo:before{content:"󱢜"}.mdi-bicycle-electric:before{content:"󱖴"}.mdi-bicycle-penny-farthing:before{content:"󱗩"}.mdi-bike:before{content:"󰂣"}.mdi-bike-fast:before{content:"󱄟"}.mdi-bike-pedal:before{content:"󱰣"}.mdi-bike-pedal-clipless:before{content:"󱰤"}.mdi-bike-pedal-mountain:before{content:"󱰥"}.mdi-billboard:before{content:"󱀐"}.mdi-billiards:before{content:"󰭡"}.mdi-billiards-rack:before{content:"󰭢"}.mdi-binoculars:before{content:"󰂥"}.mdi-bio:before{content:"󰂦"}.mdi-biohazard:before{content:"󰂧"}.mdi-bird:before{content:"󱗆"}.mdi-bitbucket:before{content:"󰂨"}.mdi-bitcoin:before{content:"󰠓"}.mdi-black-mesa:before{content:"󰂩"}.mdi-blender:before{content:"󰳫"}.mdi-blender-outline:before{content:"󱠚"}.mdi-blender-software:before{content:"󰂫"}.mdi-blinds:before{content:"󰂬"}.mdi-blinds-horizontal:before{content:"󱨫"}.mdi-blinds-horizontal-closed:before{content:"󱨬"}.mdi-blinds-open:before{content:"󱀑"}.mdi-blinds-vertical:before{content:"󱨭"}.mdi-blinds-vertical-closed:before{content:"󱨮"}.mdi-block-helper:before{content:"󰂭"}.mdi-blood-bag:before{content:"󰳬"}.mdi-bluetooth:before{content:"󰂯"}.mdi-bluetooth-audio:before{content:"󰂰"}.mdi-bluetooth-connect:before{content:"󰂱"}.mdi-bluetooth-off:before{content:"󰂲"}.mdi-bluetooth-settings:before{content:"󰂳"}.mdi-bluetooth-transfer:before{content:"󰂴"}.mdi-blur:before{content:"󰂵"}.mdi-blur-linear:before{content:"󰂶"}.mdi-blur-off:before{content:"󰂷"}.mdi-blur-radial:before{content:"󰂸"}.mdi-bolt:before{content:"󰶳"}.mdi-bomb:before{content:"󰚑"}.mdi-bomb-off:before{content:"󰛅"}.mdi-bone:before{content:"󰂹"}.mdi-bone-off:before{content:"󱧠"}.mdi-book:before{content:"󰂺"}.mdi-book-account:before{content:"󱎭"}.mdi-book-account-outline:before{content:"󱎮"}.mdi-book-alert:before{content:"󱙼"}.mdi-book-alert-outline:before{content:"󱙽"}.mdi-book-alphabet:before{content:"󰘝"}.mdi-book-arrow-down:before{content:"󱙾"}.mdi-book-arrow-down-outline:before{content:"󱙿"}.mdi-book-arrow-left:before{content:"󱚀"}.mdi-book-arrow-left-outline:before{content:"󱚁"}.mdi-book-arrow-right:before{content:"󱚂"}.mdi-book-arrow-right-outline:before{content:"󱚃"}.mdi-book-arrow-up:before{content:"󱚄"}.mdi-book-arrow-up-outline:before{content:"󱚅"}.mdi-book-cancel:before{content:"󱚆"}.mdi-book-cancel-outline:before{content:"󱚇"}.mdi-book-check:before{content:"󱓳"}.mdi-book-check-outline:before{content:"󱓴"}.mdi-book-clock:before{content:"󱚈"}.mdi-book-clock-outline:before{content:"󱚉"}.mdi-book-cog:before{content:"󱚊"}.mdi-book-cog-outline:before{content:"󱚋"}.mdi-book-cross:before{content:"󰂢"}.mdi-book-edit:before{content:"󱚌"}.mdi-book-edit-outline:before{content:"󱚍"}.mdi-book-education:before{content:"󱛉"}.mdi-book-education-outline:before{content:"󱛊"}.mdi-book-heart:before{content:"󱨝"}.mdi-book-heart-outline:before{content:"󱨞"}.mdi-book-information-variant:before{content:"󱁯"}.mdi-book-lock:before{content:"󰞚"}.mdi-book-lock-open:before{content:"󰞛"}.mdi-book-lock-open-outline:before{content:"󱚎"}.mdi-book-lock-outline:before{content:"󱚏"}.mdi-book-marker:before{content:"󱚐"}.mdi-book-marker-outline:before{content:"󱚑"}.mdi-book-minus:before{content:"󰗙"}.mdi-book-minus-multiple:before{content:"󰪔"}.mdi-book-minus-multiple-outline:before{content:"󰤋"}.mdi-book-minus-outline:before{content:"󱚒"}.mdi-book-multiple:before{content:"󰂻"}.mdi-book-multiple-outline:before{content:"󰐶"}.mdi-book-music:before{content:"󰁧"}.mdi-book-music-outline:before{content:"󱚓"}.mdi-book-off:before{content:"󱚔"}.mdi-book-off-outline:before{content:"󱚕"}.mdi-book-open:before{content:"󰂽"}.mdi-book-open-blank-variant:before{content:"󰂾"}.mdi-book-open-outline:before{content:"󰭣"}.mdi-book-open-page-variant:before{content:"󰗚"}.mdi-book-open-page-variant-outline:before{content:"󱗖"}.mdi-book-open-variant:before{content:"󱓷"}.mdi-book-outline:before{content:"󰭤"}.mdi-book-play:before{content:"󰺂"}.mdi-book-play-outline:before{content:"󰺃"}.mdi-book-plus:before{content:"󰗛"}.mdi-book-plus-multiple:before{content:"󰪕"}.mdi-book-plus-multiple-outline:before{content:"󰫞"}.mdi-book-plus-outline:before{content:"󱚖"}.mdi-book-refresh:before{content:"󱚗"}.mdi-book-refresh-outline:before{content:"󱚘"}.mdi-book-remove:before{content:"󰪗"}.mdi-book-remove-multiple:before{content:"󰪖"}.mdi-book-remove-multiple-outline:before{content:"󰓊"}.mdi-book-remove-outline:before{content:"󱚙"}.mdi-book-search:before{content:"󰺄"}.mdi-book-search-outline:before{content:"󰺅"}.mdi-book-settings:before{content:"󱚚"}.mdi-book-settings-outline:before{content:"󱚛"}.mdi-book-sync:before{content:"󱚜"}.mdi-book-sync-outline:before{content:"󱛈"}.mdi-book-variant:before{content:"󰂿"}.mdi-bookmark:before{content:"󰃀"}.mdi-bookmark-box:before{content:"󱭵"}.mdi-bookmark-box-multiple:before{content:"󱥬"}.mdi-bookmark-box-multiple-outline:before{content:"󱥭"}.mdi-bookmark-box-outline:before{content:"󱭶"}.mdi-bookmark-check:before{content:"󰃁"}.mdi-bookmark-check-outline:before{content:"󱍻"}.mdi-bookmark-minus:before{content:"󰧌"}.mdi-bookmark-minus-outline:before{content:"󰧍"}.mdi-bookmark-multiple:before{content:"󰸕"}.mdi-bookmark-multiple-outline:before{content:"󰸖"}.mdi-bookmark-music:before{content:"󰃂"}.mdi-bookmark-music-outline:before{content:"󱍹"}.mdi-bookmark-off:before{content:"󰧎"}.mdi-bookmark-off-outline:before{content:"󰧏"}.mdi-bookmark-outline:before{content:"󰃃"}.mdi-bookmark-plus:before{content:"󰃅"}.mdi-bookmark-plus-outline:before{content:"󰃄"}.mdi-bookmark-remove:before{content:"󰃆"}.mdi-bookmark-remove-outline:before{content:"󱍺"}.mdi-bookshelf:before{content:"󱉟"}.mdi-boom-gate:before{content:"󰺆"}.mdi-boom-gate-alert:before{content:"󰺇"}.mdi-boom-gate-alert-outline:before{content:"󰺈"}.mdi-boom-gate-arrow-down:before{content:"󰺉"}.mdi-boom-gate-arrow-down-outline:before{content:"󰺊"}.mdi-boom-gate-arrow-up:before{content:"󰺌"}.mdi-boom-gate-arrow-up-outline:before{content:"󰺍"}.mdi-boom-gate-outline:before{content:"󰺋"}.mdi-boom-gate-up:before{content:"󱟹"}.mdi-boom-gate-up-outline:before{content:"󱟺"}.mdi-boombox:before{content:"󰗜"}.mdi-boomerang:before{content:"󱃏"}.mdi-bootstrap:before{content:"󰛆"}.mdi-border-all:before{content:"󰃇"}.mdi-border-all-variant:before{content:"󰢡"}.mdi-border-bottom:before{content:"󰃈"}.mdi-border-bottom-variant:before{content:"󰢢"}.mdi-border-color:before{content:"󰃉"}.mdi-border-horizontal:before{content:"󰃊"}.mdi-border-inside:before{content:"󰃋"}.mdi-border-left:before{content:"󰃌"}.mdi-border-left-variant:before{content:"󰢣"}.mdi-border-none:before{content:"󰃍"}.mdi-border-none-variant:before{content:"󰢤"}.mdi-border-outside:before{content:"󰃎"}.mdi-border-radius:before{content:"󱫴"}.mdi-border-right:before{content:"󰃏"}.mdi-border-right-variant:before{content:"󰢥"}.mdi-border-style:before{content:"󰃐"}.mdi-border-top:before{content:"󰃑"}.mdi-border-top-variant:before{content:"󰢦"}.mdi-border-vertical:before{content:"󰃒"}.mdi-bottle-soda:before{content:"󱁰"}.mdi-bottle-soda-classic:before{content:"󱁱"}.mdi-bottle-soda-classic-outline:before{content:"󱍣"}.mdi-bottle-soda-outline:before{content:"󱁲"}.mdi-bottle-tonic:before{content:"󱄮"}.mdi-bottle-tonic-outline:before{content:"󱄯"}.mdi-bottle-tonic-plus:before{content:"󱄰"}.mdi-bottle-tonic-plus-outline:before{content:"󱄱"}.mdi-bottle-tonic-skull:before{content:"󱄲"}.mdi-bottle-tonic-skull-outline:before{content:"󱄳"}.mdi-bottle-wine:before{content:"󰡔"}.mdi-bottle-wine-outline:before{content:"󱌐"}.mdi-bow-arrow:before{content:"󱡁"}.mdi-bow-tie:before{content:"󰙸"}.mdi-bowl:before{content:"󰊎"}.mdi-bowl-mix:before{content:"󰘗"}.mdi-bowl-mix-outline:before{content:"󰋤"}.mdi-bowl-outline:before{content:"󰊩"}.mdi-bowling:before{content:"󰃓"}.mdi-box:before{content:"󰃔"}.mdi-box-cutter:before{content:"󰃕"}.mdi-box-cutter-off:before{content:"󰭊"}.mdi-box-shadow:before{content:"󰘷"}.mdi-boxing-glove:before{content:"󰭥"}.mdi-braille:before{content:"󰧐"}.mdi-brain:before{content:"󰧑"}.mdi-bread-slice:before{content:"󰳮"}.mdi-bread-slice-outline:before{content:"󰳯"}.mdi-bridge:before{content:"󰘘"}.mdi-briefcase:before{content:"󰃖"}.mdi-briefcase-account:before{content:"󰳰"}.mdi-briefcase-account-outline:before{content:"󰳱"}.mdi-briefcase-arrow-left-right:before{content:"󱪍"}.mdi-briefcase-arrow-left-right-outline:before{content:"󱪎"}.mdi-briefcase-arrow-up-down:before{content:"󱪏"}.mdi-briefcase-arrow-up-down-outline:before{content:"󱪐"}.mdi-briefcase-check:before{content:"󰃗"}.mdi-briefcase-check-outline:before{content:"󱌞"}.mdi-briefcase-clock:before{content:"󱃐"}.mdi-briefcase-clock-outline:before{content:"󱃑"}.mdi-briefcase-download:before{content:"󰃘"}.mdi-briefcase-download-outline:before{content:"󰰽"}.mdi-briefcase-edit:before{content:"󰪘"}.mdi-briefcase-edit-outline:before{content:"󰰾"}.mdi-briefcase-eye:before{content:"󱟙"}.mdi-briefcase-eye-outline:before{content:"󱟚"}.mdi-briefcase-minus:before{content:"󰨪"}.mdi-briefcase-minus-outline:before{content:"󰰿"}.mdi-briefcase-off:before{content:"󱙘"}.mdi-briefcase-off-outline:before{content:"󱙙"}.mdi-briefcase-outline:before{content:"󰠔"}.mdi-briefcase-plus:before{content:"󰨫"}.mdi-briefcase-plus-outline:before{content:"󰱀"}.mdi-briefcase-remove:before{content:"󰨬"}.mdi-briefcase-remove-outline:before{content:"󰱁"}.mdi-briefcase-search:before{content:"󰨭"}.mdi-briefcase-search-outline:before{content:"󰱂"}.mdi-briefcase-upload:before{content:"󰃙"}.mdi-briefcase-upload-outline:before{content:"󰱃"}.mdi-briefcase-variant:before{content:"󱒔"}.mdi-briefcase-variant-off:before{content:"󱙚"}.mdi-briefcase-variant-off-outline:before{content:"󱙛"}.mdi-briefcase-variant-outline:before{content:"󱒕"}.mdi-brightness-1:before{content:"󰃚"}.mdi-brightness-2:before{content:"󰃛"}.mdi-brightness-3:before{content:"󰃜"}.mdi-brightness-4:before{content:"󰃝"}.mdi-brightness-5:before{content:"󰃞"}.mdi-brightness-6:before{content:"󰃟"}.mdi-brightness-7:before{content:"󰃠"}.mdi-brightness-auto:before{content:"󰃡"}.mdi-brightness-percent:before{content:"󰳲"}.mdi-broadcast:before{content:"󱜠"}.mdi-broadcast-off:before{content:"󱜡"}.mdi-broom:before{content:"󰃢"}.mdi-brush:before{content:"󰃣"}.mdi-brush-off:before{content:"󱝱"}.mdi-brush-outline:before{content:"󱨍"}.mdi-brush-variant:before{content:"󱠓"}.mdi-bucket:before{content:"󱐕"}.mdi-bucket-outline:before{content:"󱐖"}.mdi-buffet:before{content:"󰕸"}.mdi-bug:before{content:"󰃤"}.mdi-bug-check:before{content:"󰨮"}.mdi-bug-check-outline:before{content:"󰨯"}.mdi-bug-outline:before{content:"󰨰"}.mdi-bug-pause:before{content:"󱫵"}.mdi-bug-pause-outline:before{content:"󱫶"}.mdi-bug-play:before{content:"󱫷"}.mdi-bug-play-outline:before{content:"󱫸"}.mdi-bug-stop:before{content:"󱫹"}.mdi-bug-stop-outline:before{content:"󱫺"}.mdi-bugle:before{content:"󰶴"}.mdi-bulkhead-light:before{content:"󱨯"}.mdi-bulldozer:before{content:"󰬢"}.mdi-bullet:before{content:"󰳳"}.mdi-bulletin-board:before{content:"󰃥"}.mdi-bullhorn:before{content:"󰃦"}.mdi-bullhorn-outline:before{content:"󰬣"}.mdi-bullhorn-variant:before{content:"󱥮"}.mdi-bullhorn-variant-outline:before{content:"󱥯"}.mdi-bullseye:before{content:"󰗝"}.mdi-bullseye-arrow:before{content:"󰣉"}.mdi-bulma:before{content:"󱋧"}.mdi-bunk-bed:before{content:"󱌂"}.mdi-bunk-bed-outline:before{content:"󰂗"}.mdi-bus:before{content:"󰃧"}.mdi-bus-alert:before{content:"󰪙"}.mdi-bus-articulated-end:before{content:"󰞜"}.mdi-bus-articulated-front:before{content:"󰞝"}.mdi-bus-clock:before{content:"󰣊"}.mdi-bus-double-decker:before{content:"󰞞"}.mdi-bus-electric:before{content:"󱤝"}.mdi-bus-marker:before{content:"󱈒"}.mdi-bus-multiple:before{content:"󰼿"}.mdi-bus-school:before{content:"󰞟"}.mdi-bus-side:before{content:"󰞠"}.mdi-bus-stop:before{content:"󱀒"}.mdi-bus-stop-covered:before{content:"󱀓"}.mdi-bus-stop-uncovered:before{content:"󱀔"}.mdi-butterfly:before{content:"󱖉"}.mdi-butterfly-outline:before{content:"󱖊"}.mdi-button-cursor:before{content:"󱭏"}.mdi-button-pointer:before{content:"󱭐"}.mdi-cabin-a-frame:before{content:"󱢌"}.mdi-cable-data:before{content:"󱎔"}.mdi-cached:before{content:"󰃨"}.mdi-cactus:before{content:"󰶵"}.mdi-cake:before{content:"󰃩"}.mdi-cake-layered:before{content:"󰃪"}.mdi-cake-variant:before{content:"󰃫"}.mdi-cake-variant-outline:before{content:"󱟰"}.mdi-calculator:before{content:"󰃬"}.mdi-calculator-variant:before{content:"󰪚"}.mdi-calculator-variant-outline:before{content:"󱖦"}.mdi-calendar:before{content:"󰃭"}.mdi-calendar-account:before{content:"󰻗"}.mdi-calendar-account-outline:before{content:"󰻘"}.mdi-calendar-alert:before{content:"󰨱"}.mdi-calendar-alert-outline:before{content:"󱭢"}.mdi-calendar-arrow-left:before{content:"󱄴"}.mdi-calendar-arrow-right:before{content:"󱄵"}.mdi-calendar-badge:before{content:"󱮝"}.mdi-calendar-badge-outline:before{content:"󱮞"}.mdi-calendar-blank:before{content:"󰃮"}.mdi-calendar-blank-multiple:before{content:"󱁳"}.mdi-calendar-blank-outline:before{content:"󰭦"}.mdi-calendar-check:before{content:"󰃯"}.mdi-calendar-check-outline:before{content:"󰱄"}.mdi-calendar-clock:before{content:"󰃰"}.mdi-calendar-clock-outline:before{content:"󱛡"}.mdi-calendar-collapse-horizontal:before{content:"󱢝"}.mdi-calendar-collapse-horizontal-outline:before{content:"󱭣"}.mdi-calendar-cursor:before{content:"󱕻"}.mdi-calendar-cursor-outline:before{content:"󱭤"}.mdi-calendar-edit:before{content:"󰢧"}.mdi-calendar-edit-outline:before{content:"󱭥"}.mdi-calendar-end:before{content:"󱙬"}.mdi-calendar-end-outline:before{content:"󱭦"}.mdi-calendar-expand-horizontal:before{content:"󱢞"}.mdi-calendar-expand-horizontal-outline:before{content:"󱭧"}.mdi-calendar-export:before{content:"󰬤"}.mdi-calendar-export-outline:before{content:"󱭨"}.mdi-calendar-filter:before{content:"󱨲"}.mdi-calendar-filter-outline:before{content:"󱨳"}.mdi-calendar-heart:before{content:"󰧒"}.mdi-calendar-heart-outline:before{content:"󱭩"}.mdi-calendar-import:before{content:"󰬥"}.mdi-calendar-import-outline:before{content:"󱭪"}.mdi-calendar-lock:before{content:"󱙁"}.mdi-calendar-lock-open:before{content:"󱭛"}.mdi-calendar-lock-open-outline:before{content:"󱭜"}.mdi-calendar-lock-outline:before{content:"󱙂"}.mdi-calendar-minus:before{content:"󰵜"}.mdi-calendar-minus-outline:before{content:"󱭫"}.mdi-calendar-month:before{content:"󰸗"}.mdi-calendar-month-outline:before{content:"󰸘"}.mdi-calendar-multiple:before{content:"󰃱"}.mdi-calendar-multiple-check:before{content:"󰃲"}.mdi-calendar-multiselect:before{content:"󰨲"}.mdi-calendar-multiselect-outline:before{content:"󱭕"}.mdi-calendar-outline:before{content:"󰭧"}.mdi-calendar-plus:before{content:"󰃳"}.mdi-calendar-plus-outline:before{content:"󱭬"}.mdi-calendar-question:before{content:"󰚒"}.mdi-calendar-question-outline:before{content:"󱭭"}.mdi-calendar-range:before{content:"󰙹"}.mdi-calendar-range-outline:before{content:"󰭨"}.mdi-calendar-refresh:before{content:"󰇡"}.mdi-calendar-refresh-outline:before{content:"󰈃"}.mdi-calendar-remove:before{content:"󰃴"}.mdi-calendar-remove-outline:before{content:"󰱅"}.mdi-calendar-search:before{content:"󰥌"}.mdi-calendar-search-outline:before{content:"󱭮"}.mdi-calendar-star:before{content:"󰧓"}.mdi-calendar-star-four-points:before{content:"󱰟"}.mdi-calendar-star-outline:before{content:"󱭓"}.mdi-calendar-start:before{content:"󱙭"}.mdi-calendar-start-outline:before{content:"󱭯"}.mdi-calendar-sync:before{content:"󰺎"}.mdi-calendar-sync-outline:before{content:"󰺏"}.mdi-calendar-text:before{content:"󰃵"}.mdi-calendar-text-outline:before{content:"󰱆"}.mdi-calendar-today:before{content:"󰃶"}.mdi-calendar-today-outline:before{content:"󱨰"}.mdi-calendar-week:before{content:"󰨳"}.mdi-calendar-week-begin:before{content:"󰨴"}.mdi-calendar-week-begin-outline:before{content:"󱨱"}.mdi-calendar-week-outline:before{content:"󱨴"}.mdi-calendar-weekend:before{content:"󰻙"}.mdi-calendar-weekend-outline:before{content:"󰻚"}.mdi-call-made:before{content:"󰃷"}.mdi-call-merge:before{content:"󰃸"}.mdi-call-missed:before{content:"󰃹"}.mdi-call-received:before{content:"󰃺"}.mdi-call-split:before{content:"󰃻"}.mdi-camcorder:before{content:"󰃼"}.mdi-camcorder-off:before{content:"󰃿"}.mdi-camera:before{content:"󰄀"}.mdi-camera-account:before{content:"󰣋"}.mdi-camera-burst:before{content:"󰚓"}.mdi-camera-control:before{content:"󰭩"}.mdi-camera-document:before{content:"󱡱"}.mdi-camera-document-off:before{content:"󱡲"}.mdi-camera-enhance:before{content:"󰄁"}.mdi-camera-enhance-outline:before{content:"󰭪"}.mdi-camera-flip:before{content:"󱗙"}.mdi-camera-flip-outline:before{content:"󱗚"}.mdi-camera-front:before{content:"󰄂"}.mdi-camera-front-variant:before{content:"󰄃"}.mdi-camera-gopro:before{content:"󰞡"}.mdi-camera-image:before{content:"󰣌"}.mdi-camera-iris:before{content:"󰄄"}.mdi-camera-lock:before{content:"󱨔"}.mdi-camera-lock-open:before{content:"󱰍"}.mdi-camera-lock-open-outline:before{content:"󱰎"}.mdi-camera-lock-outline:before{content:"󱨕"}.mdi-camera-marker:before{content:"󱦧"}.mdi-camera-marker-outline:before{content:"󱦨"}.mdi-camera-metering-center:before{content:"󰞢"}.mdi-camera-metering-matrix:before{content:"󰞣"}.mdi-camera-metering-partial:before{content:"󰞤"}.mdi-camera-metering-spot:before{content:"󰞥"}.mdi-camera-off:before{content:"󰗟"}.mdi-camera-off-outline:before{content:"󱦿"}.mdi-camera-outline:before{content:"󰵝"}.mdi-camera-party-mode:before{content:"󰄅"}.mdi-camera-plus:before{content:"󰻛"}.mdi-camera-plus-outline:before{content:"󰻜"}.mdi-camera-rear:before{content:"󰄆"}.mdi-camera-rear-variant:before{content:"󰄇"}.mdi-camera-retake:before{content:"󰸙"}.mdi-camera-retake-outline:before{content:"󰸚"}.mdi-camera-switch:before{content:"󰄈"}.mdi-camera-switch-outline:before{content:"󰡊"}.mdi-camera-timer:before{content:"󰄉"}.mdi-camera-wireless:before{content:"󰶶"}.mdi-camera-wireless-outline:before{content:"󰶷"}.mdi-campfire:before{content:"󰻝"}.mdi-cancel:before{content:"󰜺"}.mdi-candelabra:before{content:"󱟒"}.mdi-candelabra-fire:before{content:"󱟓"}.mdi-candle:before{content:"󰗢"}.mdi-candy:before{content:"󱥰"}.mdi-candy-off:before{content:"󱥱"}.mdi-candy-off-outline:before{content:"󱥲"}.mdi-candy-outline:before{content:"󱥳"}.mdi-candycane:before{content:"󰄊"}.mdi-cannabis:before{content:"󰞦"}.mdi-cannabis-off:before{content:"󱙮"}.mdi-caps-lock:before{content:"󰪛"}.mdi-car:before{content:"󰄋"}.mdi-car-2-plus:before{content:"󱀕"}.mdi-car-3-plus:before{content:"󱀖"}.mdi-car-arrow-left:before{content:"󱎲"}.mdi-car-arrow-right:before{content:"󱎳"}.mdi-car-back:before{content:"󰸛"}.mdi-car-battery:before{content:"󰄌"}.mdi-car-brake-abs:before{content:"󰱇"}.mdi-car-brake-alert:before{content:"󰱈"}.mdi-car-brake-fluid-level:before{content:"󱤉"}.mdi-car-brake-hold:before{content:"󰵞"}.mdi-car-brake-low-pressure:before{content:"󱤊"}.mdi-car-brake-parking:before{content:"󰵟"}.mdi-car-brake-retarder:before{content:"󱀗"}.mdi-car-brake-temperature:before{content:"󱤋"}.mdi-car-brake-worn-linings:before{content:"󱤌"}.mdi-car-child-seat:before{content:"󰾣"}.mdi-car-clock:before{content:"󱥴"}.mdi-car-clutch:before{content:"󱀘"}.mdi-car-cog:before{content:"󱏌"}.mdi-car-connected:before{content:"󰄍"}.mdi-car-convertible:before{content:"󰞧"}.mdi-car-coolant-level:before{content:"󱀙"}.mdi-car-cruise-control:before{content:"󰵠"}.mdi-car-defrost-front:before{content:"󰵡"}.mdi-car-defrost-rear:before{content:"󰵢"}.mdi-car-door:before{content:"󰭫"}.mdi-car-door-lock:before{content:"󱂝"}.mdi-car-electric:before{content:"󰭬"}.mdi-car-electric-outline:before{content:"󱖵"}.mdi-car-emergency:before{content:"󱘏"}.mdi-car-esp:before{content:"󰱉"}.mdi-car-estate:before{content:"󰞨"}.mdi-car-hatchback:before{content:"󰞩"}.mdi-car-info:before{content:"󱆾"}.mdi-car-key:before{content:"󰭭"}.mdi-car-lifted-pickup:before{content:"󱔭"}.mdi-car-light-alert:before{content:"󱤍"}.mdi-car-light-dimmed:before{content:"󰱊"}.mdi-car-light-fog:before{content:"󰱋"}.mdi-car-light-high:before{content:"󰱌"}.mdi-car-limousine:before{content:"󰣍"}.mdi-car-multiple:before{content:"󰭮"}.mdi-car-off:before{content:"󰸜"}.mdi-car-outline:before{content:"󱓭"}.mdi-car-parking-lights:before{content:"󰵣"}.mdi-car-pickup:before{content:"󰞪"}.mdi-car-search:before{content:"󱮍"}.mdi-car-search-outline:before{content:"󱮎"}.mdi-car-seat:before{content:"󰾤"}.mdi-car-seat-cooler:before{content:"󰾥"}.mdi-car-seat-heater:before{content:"󰾦"}.mdi-car-select:before{content:"󱡹"}.mdi-car-settings:before{content:"󱏍"}.mdi-car-shift-pattern:before{content:"󰽀"}.mdi-car-side:before{content:"󰞫"}.mdi-car-speed-limiter:before{content:"󱤎"}.mdi-car-sports:before{content:"󰞬"}.mdi-car-tire-alert:before{content:"󰱍"}.mdi-car-traction-control:before{content:"󰵤"}.mdi-car-turbocharger:before{content:"󱀚"}.mdi-car-wash:before{content:"󰄎"}.mdi-car-windshield:before{content:"󱀛"}.mdi-car-windshield-outline:before{content:"󱀜"}.mdi-car-wireless:before{content:"󱡸"}.mdi-car-wrench:before{content:"󱠔"}.mdi-carabiner:before{content:"󱓀"}.mdi-caravan:before{content:"󰞭"}.mdi-card:before{content:"󰭯"}.mdi-card-account-details:before{content:"󰗒"}.mdi-card-account-details-outline:before{content:"󰶫"}.mdi-card-account-details-star:before{content:"󰊣"}.mdi-card-account-details-star-outline:before{content:"󰛛"}.mdi-card-account-mail:before{content:"󰆎"}.mdi-card-account-mail-outline:before{content:"󰺘"}.mdi-card-account-phone:before{content:"󰺙"}.mdi-card-account-phone-outline:before{content:"󰺚"}.mdi-card-bulleted:before{content:"󰭰"}.mdi-card-bulleted-off:before{content:"󰭱"}.mdi-card-bulleted-off-outline:before{content:"󰭲"}.mdi-card-bulleted-outline:before{content:"󰭳"}.mdi-card-bulleted-settings:before{content:"󰭴"}.mdi-card-bulleted-settings-outline:before{content:"󰭵"}.mdi-card-minus:before{content:"󱘀"}.mdi-card-minus-outline:before{content:"󱘁"}.mdi-card-multiple:before{content:"󱟱"}.mdi-card-multiple-outline:before{content:"󱟲"}.mdi-card-off:before{content:"󱘂"}.mdi-card-off-outline:before{content:"󱘃"}.mdi-card-outline:before{content:"󰭶"}.mdi-card-plus:before{content:"󱇿"}.mdi-card-plus-outline:before{content:"󱈀"}.mdi-card-remove:before{content:"󱘄"}.mdi-card-remove-outline:before{content:"󱘅"}.mdi-card-search:before{content:"󱁴"}.mdi-card-search-outline:before{content:"󱁵"}.mdi-card-text:before{content:"󰭷"}.mdi-card-text-outline:before{content:"󰭸"}.mdi-cards:before{content:"󰘸"}.mdi-cards-club:before{content:"󰣎"}.mdi-cards-club-outline:before{content:"󱢟"}.mdi-cards-diamond:before{content:"󰣏"}.mdi-cards-diamond-outline:before{content:"󱀝"}.mdi-cards-heart:before{content:"󰣐"}.mdi-cards-heart-outline:before{content:"󱢠"}.mdi-cards-outline:before{content:"󰘹"}.mdi-cards-playing:before{content:"󱢡"}.mdi-cards-playing-club:before{content:"󱢢"}.mdi-cards-playing-club-multiple:before{content:"󱢣"}.mdi-cards-playing-club-multiple-outline:before{content:"󱢤"}.mdi-cards-playing-club-outline:before{content:"󱢥"}.mdi-cards-playing-diamond:before{content:"󱢦"}.mdi-cards-playing-diamond-multiple:before{content:"󱢧"}.mdi-cards-playing-diamond-multiple-outline:before{content:"󱢨"}.mdi-cards-playing-diamond-outline:before{content:"󱢩"}.mdi-cards-playing-heart:before{content:"󱢪"}.mdi-cards-playing-heart-multiple:before{content:"󱢫"}.mdi-cards-playing-heart-multiple-outline:before{content:"󱢬"}.mdi-cards-playing-heart-outline:before{content:"󱢭"}.mdi-cards-playing-outline:before{content:"󰘺"}.mdi-cards-playing-spade:before{content:"󱢮"}.mdi-cards-playing-spade-multiple:before{content:"󱢯"}.mdi-cards-playing-spade-multiple-outline:before{content:"󱢰"}.mdi-cards-playing-spade-outline:before{content:"󱢱"}.mdi-cards-spade:before{content:"󰣑"}.mdi-cards-spade-outline:before{content:"󱢲"}.mdi-cards-variant:before{content:"󰛇"}.mdi-carrot:before{content:"󰄏"}.mdi-cart:before{content:"󰄐"}.mdi-cart-arrow-down:before{content:"󰵦"}.mdi-cart-arrow-right:before{content:"󰱎"}.mdi-cart-arrow-up:before{content:"󰵧"}.mdi-cart-check:before{content:"󱗪"}.mdi-cart-heart:before{content:"󱣠"}.mdi-cart-minus:before{content:"󰵨"}.mdi-cart-off:before{content:"󰙫"}.mdi-cart-outline:before{content:"󰄑"}.mdi-cart-percent:before{content:"󱮮"}.mdi-cart-plus:before{content:"󰄒"}.mdi-cart-remove:before{content:"󰵩"}.mdi-cart-variant:before{content:"󱗫"}.mdi-case-sensitive-alt:before{content:"󰄓"}.mdi-cash:before{content:"󰄔"}.mdi-cash-100:before{content:"󰄕"}.mdi-cash-check:before{content:"󱓮"}.mdi-cash-clock:before{content:"󱪑"}.mdi-cash-fast:before{content:"󱡜"}.mdi-cash-lock:before{content:"󱓪"}.mdi-cash-lock-open:before{content:"󱓫"}.mdi-cash-marker:before{content:"󰶸"}.mdi-cash-minus:before{content:"󱉠"}.mdi-cash-multiple:before{content:"󰄖"}.mdi-cash-off:before{content:"󱱹"}.mdi-cash-plus:before{content:"󱉡"}.mdi-cash-refund:before{content:"󰪜"}.mdi-cash-register:before{content:"󰳴"}.mdi-cash-remove:before{content:"󱉢"}.mdi-cash-sync:before{content:"󱪒"}.mdi-cassette:before{content:"󰧔"}.mdi-cast:before{content:"󰄘"}.mdi-cast-audio:before{content:"󱀞"}.mdi-cast-audio-variant:before{content:"󱝉"}.mdi-cast-connected:before{content:"󰄙"}.mdi-cast-education:before{content:"󰸝"}.mdi-cast-off:before{content:"󰞊"}.mdi-cast-variant:before{content:"󰀟"}.mdi-castle:before{content:"󰄚"}.mdi-cat:before{content:"󰄛"}.mdi-cctv:before{content:"󰞮"}.mdi-cctv-off:before{content:"󱡟"}.mdi-ceiling-fan:before{content:"󱞗"}.mdi-ceiling-fan-light:before{content:"󱞘"}.mdi-ceiling-light:before{content:"󰝩"}.mdi-ceiling-light-multiple:before{content:"󱣝"}.mdi-ceiling-light-multiple-outline:before{content:"󱣞"}.mdi-ceiling-light-outline:before{content:"󱟇"}.mdi-cellphone:before{content:"󰄜"}.mdi-cellphone-arrow-down:before{content:"󰧕"}.mdi-cellphone-arrow-down-variant:before{content:"󱧅"}.mdi-cellphone-basic:before{content:"󰄞"}.mdi-cellphone-charging:before{content:"󱎗"}.mdi-cellphone-check:before{content:"󱟽"}.mdi-cellphone-cog:before{content:"󰥑"}.mdi-cellphone-dock:before{content:"󰄟"}.mdi-cellphone-information:before{content:"󰽁"}.mdi-cellphone-key:before{content:"󰥎"}.mdi-cellphone-link:before{content:"󰄡"}.mdi-cellphone-link-off:before{content:"󰄢"}.mdi-cellphone-lock:before{content:"󰥏"}.mdi-cellphone-marker:before{content:"󱠺"}.mdi-cellphone-message:before{content:"󰣓"}.mdi-cellphone-message-off:before{content:"󱃒"}.mdi-cellphone-nfc:before{content:"󰺐"}.mdi-cellphone-nfc-off:before{content:"󱋘"}.mdi-cellphone-off:before{content:"󰥐"}.mdi-cellphone-play:before{content:"󱀟"}.mdi-cellphone-remove:before{content:"󰥍"}.mdi-cellphone-screenshot:before{content:"󰨵"}.mdi-cellphone-settings:before{content:"󰄣"}.mdi-cellphone-sound:before{content:"󰥒"}.mdi-cellphone-text:before{content:"󰣒"}.mdi-cellphone-wireless:before{content:"󰠕"}.mdi-centos:before{content:"󱄚"}.mdi-certificate:before{content:"󰄤"}.mdi-certificate-outline:before{content:"󱆈"}.mdi-chair-rolling:before{content:"󰽈"}.mdi-chair-school:before{content:"󰄥"}.mdi-chandelier:before{content:"󱞓"}.mdi-charity:before{content:"󰱏"}.mdi-chart-arc:before{content:"󰄦"}.mdi-chart-areaspline:before{content:"󰄧"}.mdi-chart-areaspline-variant:before{content:"󰺑"}.mdi-chart-bar:before{content:"󰄨"}.mdi-chart-bar-stacked:before{content:"󰝪"}.mdi-chart-bell-curve:before{content:"󰱐"}.mdi-chart-bell-curve-cumulative:before{content:"󰾧"}.mdi-chart-box:before{content:"󱕍"}.mdi-chart-box-outline:before{content:"󱕎"}.mdi-chart-box-plus-outline:before{content:"󱕏"}.mdi-chart-bubble:before{content:"󰗣"}.mdi-chart-donut:before{content:"󰞯"}.mdi-chart-donut-variant:before{content:"󰞰"}.mdi-chart-gantt:before{content:"󰙬"}.mdi-chart-histogram:before{content:"󰄩"}.mdi-chart-line:before{content:"󰄪"}.mdi-chart-line-stacked:before{content:"󰝫"}.mdi-chart-line-variant:before{content:"󰞱"}.mdi-chart-multiline:before{content:"󰣔"}.mdi-chart-multiple:before{content:"󱈓"}.mdi-chart-pie:before{content:"󰄫"}.mdi-chart-pie-outline:before{content:"󱯟"}.mdi-chart-ppf:before{content:"󱎀"}.mdi-chart-sankey:before{content:"󱇟"}.mdi-chart-sankey-variant:before{content:"󱇠"}.mdi-chart-scatter-plot:before{content:"󰺒"}.mdi-chart-scatter-plot-hexbin:before{content:"󰙭"}.mdi-chart-timeline:before{content:"󰙮"}.mdi-chart-timeline-variant:before{content:"󰺓"}.mdi-chart-timeline-variant-shimmer:before{content:"󱖶"}.mdi-chart-tree:before{content:"󰺔"}.mdi-chart-waterfall:before{content:"󱤘"}.mdi-chat:before{content:"󰭹"}.mdi-chat-alert:before{content:"󰭺"}.mdi-chat-alert-outline:before{content:"󱋉"}.mdi-chat-minus:before{content:"󱐐"}.mdi-chat-minus-outline:before{content:"󱐓"}.mdi-chat-outline:before{content:"󰻞"}.mdi-chat-plus:before{content:"󱐏"}.mdi-chat-plus-outline:before{content:"󱐒"}.mdi-chat-processing:before{content:"󰭻"}.mdi-chat-processing-outline:before{content:"󱋊"}.mdi-chat-question:before{content:"󱜸"}.mdi-chat-question-outline:before{content:"󱜹"}.mdi-chat-remove:before{content:"󱐑"}.mdi-chat-remove-outline:before{content:"󱐔"}.mdi-chat-sleep:before{content:"󱋑"}.mdi-chat-sleep-outline:before{content:"󱋒"}.mdi-check:before{content:"󰄬"}.mdi-check-all:before{content:"󰄭"}.mdi-check-bold:before{content:"󰸞"}.mdi-check-circle:before{content:"󰗠"}.mdi-check-circle-outline:before{content:"󰗡"}.mdi-check-decagram:before{content:"󰞑"}.mdi-check-decagram-outline:before{content:"󱝀"}.mdi-check-network:before{content:"󰱓"}.mdi-check-network-outline:before{content:"󰱔"}.mdi-check-outline:before{content:"󰡕"}.mdi-check-underline:before{content:"󰸟"}.mdi-check-underline-circle:before{content:"󰸠"}.mdi-check-underline-circle-outline:before{content:"󰸡"}.mdi-checkbook:before{content:"󰪝"}.mdi-checkbook-arrow-left:before{content:"󱰝"}.mdi-checkbook-arrow-right:before{content:"󱰞"}.mdi-checkbox-blank:before{content:"󰄮"}.mdi-checkbox-blank-badge:before{content:"󱅶"}.mdi-checkbox-blank-badge-outline:before{content:"󰄗"}.mdi-checkbox-blank-circle:before{content:"󰄯"}.mdi-checkbox-blank-circle-outline:before{content:"󰄰"}.mdi-checkbox-blank-off:before{content:"󱋬"}.mdi-checkbox-blank-off-outline:before{content:"󱋭"}.mdi-checkbox-blank-outline:before{content:"󰄱"}.mdi-checkbox-intermediate:before{content:"󰡖"}.mdi-checkbox-intermediate-variant:before{content:"󱭔"}.mdi-checkbox-marked:before{content:"󰄲"}.mdi-checkbox-marked-circle:before{content:"󰄳"}.mdi-checkbox-marked-circle-auto-outline:before{content:"󱰦"}.mdi-checkbox-marked-circle-minus-outline:before{content:"󱰧"}.mdi-checkbox-marked-circle-outline:before{content:"󰄴"}.mdi-checkbox-marked-circle-plus-outline:before{content:"󱤧"}.mdi-checkbox-marked-outline:before{content:"󰄵"}.mdi-checkbox-multiple-blank:before{content:"󰄶"}.mdi-checkbox-multiple-blank-circle:before{content:"󰘻"}.mdi-checkbox-multiple-blank-circle-outline:before{content:"󰘼"}.mdi-checkbox-multiple-blank-outline:before{content:"󰄷"}.mdi-checkbox-multiple-marked:before{content:"󰄸"}.mdi-checkbox-multiple-marked-circle:before{content:"󰘽"}.mdi-checkbox-multiple-marked-circle-outline:before{content:"󰘾"}.mdi-checkbox-multiple-marked-outline:before{content:"󰄹"}.mdi-checkbox-multiple-outline:before{content:"󰱑"}.mdi-checkbox-outline:before{content:"󰱒"}.mdi-checkerboard:before{content:"󰄺"}.mdi-checkerboard-minus:before{content:"󱈂"}.mdi-checkerboard-plus:before{content:"󱈁"}.mdi-checkerboard-remove:before{content:"󱈃"}.mdi-cheese:before{content:"󱊹"}.mdi-cheese-off:before{content:"󱏮"}.mdi-chef-hat:before{content:"󰭼"}.mdi-chemical-weapon:before{content:"󰄻"}.mdi-chess-bishop:before{content:"󰡜"}.mdi-chess-king:before{content:"󰡗"}.mdi-chess-knight:before{content:"󰡘"}.mdi-chess-pawn:before{content:"󰡙"}.mdi-chess-queen:before{content:"󰡚"}.mdi-chess-rook:before{content:"󰡛"}.mdi-chevron-double-down:before{content:"󰄼"}.mdi-chevron-double-left:before{content:"󰄽"}.mdi-chevron-double-right:before{content:"󰄾"}.mdi-chevron-double-up:before{content:"󰄿"}.mdi-chevron-down:before{content:"󰅀"}.mdi-chevron-down-box:before{content:"󰧖"}.mdi-chevron-down-box-outline:before{content:"󰧗"}.mdi-chevron-down-circle:before{content:"󰬦"}.mdi-chevron-down-circle-outline:before{content:"󰬧"}.mdi-chevron-left:before{content:"󰅁"}.mdi-chevron-left-box:before{content:"󰧘"}.mdi-chevron-left-box-outline:before{content:"󰧙"}.mdi-chevron-left-circle:before{content:"󰬨"}.mdi-chevron-left-circle-outline:before{content:"󰬩"}.mdi-chevron-right:before{content:"󰅂"}.mdi-chevron-right-box:before{content:"󰧚"}.mdi-chevron-right-box-outline:before{content:"󰧛"}.mdi-chevron-right-circle:before{content:"󰬪"}.mdi-chevron-right-circle-outline:before{content:"󰬫"}.mdi-chevron-triple-down:before{content:"󰶹"}.mdi-chevron-triple-left:before{content:"󰶺"}.mdi-chevron-triple-right:before{content:"󰶻"}.mdi-chevron-triple-up:before{content:"󰶼"}.mdi-chevron-up:before{content:"󰅃"}.mdi-chevron-up-box:before{content:"󰧜"}.mdi-chevron-up-box-outline:before{content:"󰧝"}.mdi-chevron-up-circle:before{content:"󰬬"}.mdi-chevron-up-circle-outline:before{content:"󰬭"}.mdi-chili-alert:before{content:"󱟪"}.mdi-chili-alert-outline:before{content:"󱟫"}.mdi-chili-hot:before{content:"󰞲"}.mdi-chili-hot-outline:before{content:"󱟬"}.mdi-chili-medium:before{content:"󰞳"}.mdi-chili-medium-outline:before{content:"󱟭"}.mdi-chili-mild:before{content:"󰞴"}.mdi-chili-mild-outline:before{content:"󱟮"}.mdi-chili-off:before{content:"󱑧"}.mdi-chili-off-outline:before{content:"󱟯"}.mdi-chip:before{content:"󰘚"}.mdi-church:before{content:"󰅄"}.mdi-church-outline:before{content:"󱬂"}.mdi-cigar:before{content:"󱆉"}.mdi-cigar-off:before{content:"󱐛"}.mdi-circle:before{content:"󰝥"}.mdi-circle-box:before{content:"󱗜"}.mdi-circle-box-outline:before{content:"󱗝"}.mdi-circle-double:before{content:"󰺕"}.mdi-circle-edit-outline:before{content:"󰣕"}.mdi-circle-expand:before{content:"󰺖"}.mdi-circle-half:before{content:"󱎕"}.mdi-circle-half-full:before{content:"󱎖"}.mdi-circle-medium:before{content:"󰧞"}.mdi-circle-multiple:before{content:"󰬸"}.mdi-circle-multiple-outline:before{content:"󰚕"}.mdi-circle-off-outline:before{content:"󱃓"}.mdi-circle-opacity:before{content:"󱡓"}.mdi-circle-outline:before{content:"󰝦"}.mdi-circle-slice-1:before{content:"󰪞"}.mdi-circle-slice-2:before{content:"󰪟"}.mdi-circle-slice-3:before{content:"󰪠"}.mdi-circle-slice-4:before{content:"󰪡"}.mdi-circle-slice-5:before{content:"󰪢"}.mdi-circle-slice-6:before{content:"󰪣"}.mdi-circle-slice-7:before{content:"󰪤"}.mdi-circle-slice-8:before{content:"󰪥"}.mdi-circle-small:before{content:"󰧟"}.mdi-circular-saw:before{content:"󰸢"}.mdi-city:before{content:"󰅆"}.mdi-city-switch:before{content:"󱰨"}.mdi-city-variant:before{content:"󰨶"}.mdi-city-variant-outline:before{content:"󰨷"}.mdi-clipboard:before{content:"󰅇"}.mdi-clipboard-account:before{content:"󰅈"}.mdi-clipboard-account-outline:before{content:"󰱕"}.mdi-clipboard-alert:before{content:"󰅉"}.mdi-clipboard-alert-outline:before{content:"󰳷"}.mdi-clipboard-arrow-down:before{content:"󰅊"}.mdi-clipboard-arrow-down-outline:before{content:"󰱖"}.mdi-clipboard-arrow-left:before{content:"󰅋"}.mdi-clipboard-arrow-left-outline:before{content:"󰳸"}.mdi-clipboard-arrow-right:before{content:"󰳹"}.mdi-clipboard-arrow-right-outline:before{content:"󰳺"}.mdi-clipboard-arrow-up:before{content:"󰱗"}.mdi-clipboard-arrow-up-outline:before{content:"󰱘"}.mdi-clipboard-check:before{content:"󰅎"}.mdi-clipboard-check-multiple:before{content:"󱉣"}.mdi-clipboard-check-multiple-outline:before{content:"󱉤"}.mdi-clipboard-check-outline:before{content:"󰢨"}.mdi-clipboard-clock:before{content:"󱛢"}.mdi-clipboard-clock-outline:before{content:"󱛣"}.mdi-clipboard-edit:before{content:"󱓥"}.mdi-clipboard-edit-outline:before{content:"󱓦"}.mdi-clipboard-file:before{content:"󱉥"}.mdi-clipboard-file-outline:before{content:"󱉦"}.mdi-clipboard-flow:before{content:"󰛈"}.mdi-clipboard-flow-outline:before{content:"󱄗"}.mdi-clipboard-list:before{content:"󱃔"}.mdi-clipboard-list-outline:before{content:"󱃕"}.mdi-clipboard-minus:before{content:"󱘘"}.mdi-clipboard-minus-outline:before{content:"󱘙"}.mdi-clipboard-multiple:before{content:"󱉧"}.mdi-clipboard-multiple-outline:before{content:"󱉨"}.mdi-clipboard-off:before{content:"󱘚"}.mdi-clipboard-off-outline:before{content:"󱘛"}.mdi-clipboard-outline:before{content:"󰅌"}.mdi-clipboard-play:before{content:"󰱙"}.mdi-clipboard-play-multiple:before{content:"󱉩"}.mdi-clipboard-play-multiple-outline:before{content:"󱉪"}.mdi-clipboard-play-outline:before{content:"󰱚"}.mdi-clipboard-plus:before{content:"󰝑"}.mdi-clipboard-plus-outline:before{content:"󱌟"}.mdi-clipboard-pulse:before{content:"󰡝"}.mdi-clipboard-pulse-outline:before{content:"󰡞"}.mdi-clipboard-remove:before{content:"󱘜"}.mdi-clipboard-remove-outline:before{content:"󱘝"}.mdi-clipboard-search:before{content:"󱘞"}.mdi-clipboard-search-outline:before{content:"󱘟"}.mdi-clipboard-text:before{content:"󰅍"}.mdi-clipboard-text-clock:before{content:"󱣹"}.mdi-clipboard-text-clock-outline:before{content:"󱣺"}.mdi-clipboard-text-multiple:before{content:"󱉫"}.mdi-clipboard-text-multiple-outline:before{content:"󱉬"}.mdi-clipboard-text-off:before{content:"󱘠"}.mdi-clipboard-text-off-outline:before{content:"󱘡"}.mdi-clipboard-text-outline:before{content:"󰨸"}.mdi-clipboard-text-play:before{content:"󰱛"}.mdi-clipboard-text-play-outline:before{content:"󰱜"}.mdi-clipboard-text-search:before{content:"󱘢"}.mdi-clipboard-text-search-outline:before{content:"󱘣"}.mdi-clippy:before{content:"󰅏"}.mdi-clock:before{content:"󰥔"}.mdi-clock-alert:before{content:"󰥕"}.mdi-clock-alert-outline:before{content:"󰗎"}.mdi-clock-check:before{content:"󰾨"}.mdi-clock-check-outline:before{content:"󰾩"}.mdi-clock-digital:before{content:"󰺗"}.mdi-clock-edit:before{content:"󱦺"}.mdi-clock-edit-outline:before{content:"󱦻"}.mdi-clock-end:before{content:"󰅑"}.mdi-clock-fast:before{content:"󰅒"}.mdi-clock-in:before{content:"󰅓"}.mdi-clock-minus:before{content:"󱡣"}.mdi-clock-minus-outline:before{content:"󱡤"}.mdi-clock-out:before{content:"󰅔"}.mdi-clock-outline:before{content:"󰅐"}.mdi-clock-plus:before{content:"󱡡"}.mdi-clock-plus-outline:before{content:"󱡢"}.mdi-clock-remove:before{content:"󱡥"}.mdi-clock-remove-outline:before{content:"󱡦"}.mdi-clock-star-four-points:before{content:"󱰩"}.mdi-clock-star-four-points-outline:before{content:"󱰪"}.mdi-clock-start:before{content:"󰅕"}.mdi-clock-time-eight:before{content:"󱑆"}.mdi-clock-time-eight-outline:before{content:"󱑒"}.mdi-clock-time-eleven:before{content:"󱑉"}.mdi-clock-time-eleven-outline:before{content:"󱑕"}.mdi-clock-time-five:before{content:"󱑃"}.mdi-clock-time-five-outline:before{content:"󱑏"}.mdi-clock-time-four:before{content:"󱑂"}.mdi-clock-time-four-outline:before{content:"󱑎"}.mdi-clock-time-nine:before{content:"󱑇"}.mdi-clock-time-nine-outline:before{content:"󱑓"}.mdi-clock-time-one:before{content:"󱐿"}.mdi-clock-time-one-outline:before{content:"󱑋"}.mdi-clock-time-seven:before{content:"󱑅"}.mdi-clock-time-seven-outline:before{content:"󱑑"}.mdi-clock-time-six:before{content:"󱑄"}.mdi-clock-time-six-outline:before{content:"󱑐"}.mdi-clock-time-ten:before{content:"󱑈"}.mdi-clock-time-ten-outline:before{content:"󱑔"}.mdi-clock-time-three:before{content:"󱑁"}.mdi-clock-time-three-outline:before{content:"󱑍"}.mdi-clock-time-twelve:before{content:"󱑊"}.mdi-clock-time-twelve-outline:before{content:"󱑖"}.mdi-clock-time-two:before{content:"󱑀"}.mdi-clock-time-two-outline:before{content:"󱑌"}.mdi-close:before{content:"󰅖"}.mdi-close-box:before{content:"󰅗"}.mdi-close-box-multiple:before{content:"󰱝"}.mdi-close-box-multiple-outline:before{content:"󰱞"}.mdi-close-box-outline:before{content:"󰅘"}.mdi-close-circle:before{content:"󰅙"}.mdi-close-circle-multiple:before{content:"󰘪"}.mdi-close-circle-multiple-outline:before{content:"󰢃"}.mdi-close-circle-outline:before{content:"󰅚"}.mdi-close-network:before{content:"󰅛"}.mdi-close-network-outline:before{content:"󰱟"}.mdi-close-octagon:before{content:"󰅜"}.mdi-close-octagon-outline:before{content:"󰅝"}.mdi-close-outline:before{content:"󰛉"}.mdi-close-thick:before{content:"󱎘"}.mdi-closed-caption:before{content:"󰅞"}.mdi-closed-caption-outline:before{content:"󰶽"}.mdi-cloud:before{content:"󰅟"}.mdi-cloud-alert:before{content:"󰧠"}.mdi-cloud-alert-outline:before{content:"󱯠"}.mdi-cloud-arrow-down:before{content:"󱯡"}.mdi-cloud-arrow-down-outline:before{content:"󱯢"}.mdi-cloud-arrow-left:before{content:"󱯣"}.mdi-cloud-arrow-left-outline:before{content:"󱯤"}.mdi-cloud-arrow-right:before{content:"󱯥"}.mdi-cloud-arrow-right-outline:before{content:"󱯦"}.mdi-cloud-arrow-up:before{content:"󱯧"}.mdi-cloud-arrow-up-outline:before{content:"󱯨"}.mdi-cloud-braces:before{content:"󰞵"}.mdi-cloud-cancel:before{content:"󱯩"}.mdi-cloud-cancel-outline:before{content:"󱯪"}.mdi-cloud-check:before{content:"󱯫"}.mdi-cloud-check-outline:before{content:"󱯬"}.mdi-cloud-check-variant:before{content:"󰅠"}.mdi-cloud-check-variant-outline:before{content:"󱋌"}.mdi-cloud-circle:before{content:"󰅡"}.mdi-cloud-circle-outline:before{content:"󱯭"}.mdi-cloud-clock:before{content:"󱯮"}.mdi-cloud-clock-outline:before{content:"󱯯"}.mdi-cloud-cog:before{content:"󱯰"}.mdi-cloud-cog-outline:before{content:"󱯱"}.mdi-cloud-download:before{content:"󰅢"}.mdi-cloud-download-outline:before{content:"󰭽"}.mdi-cloud-lock:before{content:"󱇱"}.mdi-cloud-lock-open:before{content:"󱯲"}.mdi-cloud-lock-open-outline:before{content:"󱯳"}.mdi-cloud-lock-outline:before{content:"󱇲"}.mdi-cloud-minus:before{content:"󱯴"}.mdi-cloud-minus-outline:before{content:"󱯵"}.mdi-cloud-off:before{content:"󱯶"}.mdi-cloud-off-outline:before{content:"󰅤"}.mdi-cloud-outline:before{content:"󰅣"}.mdi-cloud-percent:before{content:"󱨵"}.mdi-cloud-percent-outline:before{content:"󱨶"}.mdi-cloud-plus:before{content:"󱯷"}.mdi-cloud-plus-outline:before{content:"󱯸"}.mdi-cloud-print:before{content:"󰅥"}.mdi-cloud-print-outline:before{content:"󰅦"}.mdi-cloud-question:before{content:"󰨹"}.mdi-cloud-question-outline:before{content:"󱯹"}.mdi-cloud-refresh:before{content:"󱯺"}.mdi-cloud-refresh-outline:before{content:"󱯻"}.mdi-cloud-refresh-variant:before{content:"󰔪"}.mdi-cloud-refresh-variant-outline:before{content:"󱯼"}.mdi-cloud-remove:before{content:"󱯽"}.mdi-cloud-remove-outline:before{content:"󱯾"}.mdi-cloud-search:before{content:"󰥖"}.mdi-cloud-search-outline:before{content:"󰥗"}.mdi-cloud-sync:before{content:"󰘿"}.mdi-cloud-sync-outline:before{content:"󱋖"}.mdi-cloud-tags:before{content:"󰞶"}.mdi-cloud-upload:before{content:"󰅧"}.mdi-cloud-upload-outline:before{content:"󰭾"}.mdi-clouds:before{content:"󱮕"}.mdi-clover:before{content:"󰠖"}.mdi-clover-outline:before{content:"󱱢"}.mdi-coach-lamp:before{content:"󱀠"}.mdi-coach-lamp-variant:before{content:"󱨷"}.mdi-coat-rack:before{content:"󱂞"}.mdi-code-array:before{content:"󰅨"}.mdi-code-braces:before{content:"󰅩"}.mdi-code-braces-box:before{content:"󱃖"}.mdi-code-brackets:before{content:"󰅪"}.mdi-code-equal:before{content:"󰅫"}.mdi-code-greater-than:before{content:"󰅬"}.mdi-code-greater-than-or-equal:before{content:"󰅭"}.mdi-code-json:before{content:"󰘦"}.mdi-code-less-than:before{content:"󰅮"}.mdi-code-less-than-or-equal:before{content:"󰅯"}.mdi-code-not-equal:before{content:"󰅰"}.mdi-code-not-equal-variant:before{content:"󰅱"}.mdi-code-parentheses:before{content:"󰅲"}.mdi-code-parentheses-box:before{content:"󱃗"}.mdi-code-string:before{content:"󰅳"}.mdi-code-tags:before{content:"󰅴"}.mdi-code-tags-check:before{content:"󰚔"}.mdi-codepen:before{content:"󰅵"}.mdi-coffee:before{content:"󰅶"}.mdi-coffee-maker:before{content:"󱂟"}.mdi-coffee-maker-check:before{content:"󱤱"}.mdi-coffee-maker-check-outline:before{content:"󱤲"}.mdi-coffee-maker-outline:before{content:"󱠛"}.mdi-coffee-off:before{content:"󰾪"}.mdi-coffee-off-outline:before{content:"󰾫"}.mdi-coffee-outline:before{content:"󰛊"}.mdi-coffee-to-go:before{content:"󰅷"}.mdi-coffee-to-go-outline:before{content:"󱌎"}.mdi-coffin:before{content:"󰭿"}.mdi-cog:before{content:"󰒓"}.mdi-cog-box:before{content:"󰒔"}.mdi-cog-clockwise:before{content:"󱇝"}.mdi-cog-counterclockwise:before{content:"󱇞"}.mdi-cog-off:before{content:"󱏎"}.mdi-cog-off-outline:before{content:"󱏏"}.mdi-cog-outline:before{content:"󰢻"}.mdi-cog-pause:before{content:"󱤳"}.mdi-cog-pause-outline:before{content:"󱤴"}.mdi-cog-play:before{content:"󱤵"}.mdi-cog-play-outline:before{content:"󱤶"}.mdi-cog-refresh:before{content:"󱑞"}.mdi-cog-refresh-outline:before{content:"󱑟"}.mdi-cog-stop:before{content:"󱤷"}.mdi-cog-stop-outline:before{content:"󱤸"}.mdi-cog-sync:before{content:"󱑠"}.mdi-cog-sync-outline:before{content:"󱑡"}.mdi-cog-transfer:before{content:"󱁛"}.mdi-cog-transfer-outline:before{content:"󱁜"}.mdi-cogs:before{content:"󰣖"}.mdi-collage:before{content:"󰙀"}.mdi-collapse-all:before{content:"󰪦"}.mdi-collapse-all-outline:before{content:"󰪧"}.mdi-color-helper:before{content:"󰅹"}.mdi-comma:before{content:"󰸣"}.mdi-comma-box:before{content:"󰸫"}.mdi-comma-box-outline:before{content:"󰸤"}.mdi-comma-circle:before{content:"󰸥"}.mdi-comma-circle-outline:before{content:"󰸦"}.mdi-comment:before{content:"󰅺"}.mdi-comment-account:before{content:"󰅻"}.mdi-comment-account-outline:before{content:"󰅼"}.mdi-comment-alert:before{content:"󰅽"}.mdi-comment-alert-outline:before{content:"󰅾"}.mdi-comment-arrow-left:before{content:"󰧡"}.mdi-comment-arrow-left-outline:before{content:"󰧢"}.mdi-comment-arrow-right:before{content:"󰧣"}.mdi-comment-arrow-right-outline:before{content:"󰧤"}.mdi-comment-bookmark:before{content:"󱖮"}.mdi-comment-bookmark-outline:before{content:"󱖯"}.mdi-comment-check:before{content:"󰅿"}.mdi-comment-check-outline:before{content:"󰆀"}.mdi-comment-edit:before{content:"󱆿"}.mdi-comment-edit-outline:before{content:"󱋄"}.mdi-comment-eye:before{content:"󰨺"}.mdi-comment-eye-outline:before{content:"󰨻"}.mdi-comment-flash:before{content:"󱖰"}.mdi-comment-flash-outline:before{content:"󱖱"}.mdi-comment-minus:before{content:"󱗟"}.mdi-comment-minus-outline:before{content:"󱗠"}.mdi-comment-multiple:before{content:"󰡟"}.mdi-comment-multiple-outline:before{content:"󰆁"}.mdi-comment-off:before{content:"󱗡"}.mdi-comment-off-outline:before{content:"󱗢"}.mdi-comment-outline:before{content:"󰆂"}.mdi-comment-plus:before{content:"󰧥"}.mdi-comment-plus-outline:before{content:"󰆃"}.mdi-comment-processing:before{content:"󰆄"}.mdi-comment-processing-outline:before{content:"󰆅"}.mdi-comment-question:before{content:"󰠗"}.mdi-comment-question-outline:before{content:"󰆆"}.mdi-comment-quote:before{content:"󱀡"}.mdi-comment-quote-outline:before{content:"󱀢"}.mdi-comment-remove:before{content:"󰗞"}.mdi-comment-remove-outline:before{content:"󰆇"}.mdi-comment-search:before{content:"󰨼"}.mdi-comment-search-outline:before{content:"󰨽"}.mdi-comment-text:before{content:"󰆈"}.mdi-comment-text-multiple:before{content:"󰡠"}.mdi-comment-text-multiple-outline:before{content:"󰡡"}.mdi-comment-text-outline:before{content:"󰆉"}.mdi-compare:before{content:"󰆊"}.mdi-compare-horizontal:before{content:"󱒒"}.mdi-compare-remove:before{content:"󱢳"}.mdi-compare-vertical:before{content:"󱒓"}.mdi-compass:before{content:"󰆋"}.mdi-compass-off:before{content:"󰮀"}.mdi-compass-off-outline:before{content:"󰮁"}.mdi-compass-outline:before{content:"󰆌"}.mdi-compass-rose:before{content:"󱎂"}.mdi-compost:before{content:"󱨸"}.mdi-cone:before{content:"󱥌"}.mdi-cone-off:before{content:"󱥍"}.mdi-connection:before{content:"󱘖"}.mdi-console:before{content:"󰆍"}.mdi-console-line:before{content:"󰞷"}.mdi-console-network:before{content:"󰢩"}.mdi-console-network-outline:before{content:"󰱠"}.mdi-consolidate:before{content:"󱃘"}.mdi-contactless-payment:before{content:"󰵪"}.mdi-contactless-payment-circle:before{content:"󰌡"}.mdi-contactless-payment-circle-outline:before{content:"󰐈"}.mdi-contacts:before{content:"󰛋"}.mdi-contacts-outline:before{content:"󰖸"}.mdi-contain:before{content:"󰨾"}.mdi-contain-end:before{content:"󰨿"}.mdi-contain-start:before{content:"󰩀"}.mdi-content-copy:before{content:"󰆏"}.mdi-content-cut:before{content:"󰆐"}.mdi-content-duplicate:before{content:"󰆑"}.mdi-content-paste:before{content:"󰆒"}.mdi-content-save:before{content:"󰆓"}.mdi-content-save-alert:before{content:"󰽂"}.mdi-content-save-alert-outline:before{content:"󰽃"}.mdi-content-save-all:before{content:"󰆔"}.mdi-content-save-all-outline:before{content:"󰽄"}.mdi-content-save-check:before{content:"󱣪"}.mdi-content-save-check-outline:before{content:"󱣫"}.mdi-content-save-cog:before{content:"󱑛"}.mdi-content-save-cog-outline:before{content:"󱑜"}.mdi-content-save-edit:before{content:"󰳻"}.mdi-content-save-edit-outline:before{content:"󰳼"}.mdi-content-save-minus:before{content:"󱭃"}.mdi-content-save-minus-outline:before{content:"󱭄"}.mdi-content-save-move:before{content:"󰸧"}.mdi-content-save-move-outline:before{content:"󰸨"}.mdi-content-save-off:before{content:"󱙃"}.mdi-content-save-off-outline:before{content:"󱙄"}.mdi-content-save-outline:before{content:"󰠘"}.mdi-content-save-plus:before{content:"󱭁"}.mdi-content-save-plus-outline:before{content:"󱭂"}.mdi-content-save-settings:before{content:"󰘛"}.mdi-content-save-settings-outline:before{content:"󰬮"}.mdi-contrast:before{content:"󰆕"}.mdi-contrast-box:before{content:"󰆖"}.mdi-contrast-circle:before{content:"󰆗"}.mdi-controller:before{content:"󰊴"}.mdi-controller-classic:before{content:"󰮂"}.mdi-controller-classic-outline:before{content:"󰮃"}.mdi-controller-off:before{content:"󰊵"}.mdi-cookie:before{content:"󰆘"}.mdi-cookie-alert:before{content:"󱛐"}.mdi-cookie-alert-outline:before{content:"󱛑"}.mdi-cookie-check:before{content:"󱛒"}.mdi-cookie-check-outline:before{content:"󱛓"}.mdi-cookie-clock:before{content:"󱛤"}.mdi-cookie-clock-outline:before{content:"󱛥"}.mdi-cookie-cog:before{content:"󱛔"}.mdi-cookie-cog-outline:before{content:"󱛕"}.mdi-cookie-edit:before{content:"󱛦"}.mdi-cookie-edit-outline:before{content:"󱛧"}.mdi-cookie-lock:before{content:"󱛨"}.mdi-cookie-lock-outline:before{content:"󱛩"}.mdi-cookie-minus:before{content:"󱛚"}.mdi-cookie-minus-outline:before{content:"󱛛"}.mdi-cookie-off:before{content:"󱛪"}.mdi-cookie-off-outline:before{content:"󱛫"}.mdi-cookie-outline:before{content:"󱛞"}.mdi-cookie-plus:before{content:"󱛖"}.mdi-cookie-plus-outline:before{content:"󱛗"}.mdi-cookie-refresh:before{content:"󱛬"}.mdi-cookie-refresh-outline:before{content:"󱛭"}.mdi-cookie-remove:before{content:"󱛘"}.mdi-cookie-remove-outline:before{content:"󱛙"}.mdi-cookie-settings:before{content:"󱛜"}.mdi-cookie-settings-outline:before{content:"󱛝"}.mdi-coolant-temperature:before{content:"󰏈"}.mdi-copyleft:before{content:"󱤹"}.mdi-copyright:before{content:"󰗦"}.mdi-cordova:before{content:"󰥘"}.mdi-corn:before{content:"󰞸"}.mdi-corn-off:before{content:"󱏯"}.mdi-cosine-wave:before{content:"󱑹"}.mdi-counter:before{content:"󰆙"}.mdi-countertop:before{content:"󱠜"}.mdi-countertop-outline:before{content:"󱠝"}.mdi-cow:before{content:"󰆚"}.mdi-cow-off:before{content:"󱣼"}.mdi-cpu-32-bit:before{content:"󰻟"}.mdi-cpu-64-bit:before{content:"󰻠"}.mdi-cradle:before{content:"󱦋"}.mdi-cradle-outline:before{content:"󱦑"}.mdi-crane:before{content:"󰡢"}.mdi-creation:before{content:"󰙴"}.mdi-creation-outline:before{content:"󱰫"}.mdi-creative-commons:before{content:"󰵫"}.mdi-credit-card:before{content:"󰿯"}.mdi-credit-card-check:before{content:"󱏐"}.mdi-credit-card-check-outline:before{content:"󱏑"}.mdi-credit-card-chip:before{content:"󱤏"}.mdi-credit-card-chip-outline:before{content:"󱤐"}.mdi-credit-card-clock:before{content:"󰻡"}.mdi-credit-card-clock-outline:before{content:"󰻢"}.mdi-credit-card-edit:before{content:"󱟗"}.mdi-credit-card-edit-outline:before{content:"󱟘"}.mdi-credit-card-fast:before{content:"󱤑"}.mdi-credit-card-fast-outline:before{content:"󱤒"}.mdi-credit-card-lock:before{content:"󱣧"}.mdi-credit-card-lock-outline:before{content:"󱣨"}.mdi-credit-card-marker:before{content:"󰚨"}.mdi-credit-card-marker-outline:before{content:"󰶾"}.mdi-credit-card-minus:before{content:"󰾬"}.mdi-credit-card-minus-outline:before{content:"󰾭"}.mdi-credit-card-multiple:before{content:"󰿰"}.mdi-credit-card-multiple-outline:before{content:"󰆜"}.mdi-credit-card-off:before{content:"󰿱"}.mdi-credit-card-off-outline:before{content:"󰗤"}.mdi-credit-card-outline:before{content:"󰆛"}.mdi-credit-card-plus:before{content:"󰿲"}.mdi-credit-card-plus-outline:before{content:"󰙶"}.mdi-credit-card-refresh:before{content:"󱙅"}.mdi-credit-card-refresh-outline:before{content:"󱙆"}.mdi-credit-card-refund:before{content:"󰿳"}.mdi-credit-card-refund-outline:before{content:"󰪨"}.mdi-credit-card-remove:before{content:"󰾮"}.mdi-credit-card-remove-outline:before{content:"󰾯"}.mdi-credit-card-scan:before{content:"󰿴"}.mdi-credit-card-scan-outline:before{content:"󰆝"}.mdi-credit-card-search:before{content:"󱙇"}.mdi-credit-card-search-outline:before{content:"󱙈"}.mdi-credit-card-settings:before{content:"󰿵"}.mdi-credit-card-settings-outline:before{content:"󰣗"}.mdi-credit-card-sync:before{content:"󱙉"}.mdi-credit-card-sync-outline:before{content:"󱙊"}.mdi-credit-card-wireless:before{content:"󰠂"}.mdi-credit-card-wireless-off:before{content:"󰕺"}.mdi-credit-card-wireless-off-outline:before{content:"󰕻"}.mdi-credit-card-wireless-outline:before{content:"󰵬"}.mdi-cricket:before{content:"󰵭"}.mdi-crop:before{content:"󰆞"}.mdi-crop-free:before{content:"󰆟"}.mdi-crop-landscape:before{content:"󰆠"}.mdi-crop-portrait:before{content:"󰆡"}.mdi-crop-rotate:before{content:"󰚖"}.mdi-crop-square:before{content:"󰆢"}.mdi-cross:before{content:"󰥓"}.mdi-cross-bolnisi:before{content:"󰳭"}.mdi-cross-celtic:before{content:"󰳵"}.mdi-cross-outline:before{content:"󰳶"}.mdi-crosshairs:before{content:"󰆣"}.mdi-crosshairs-gps:before{content:"󰆤"}.mdi-crosshairs-off:before{content:"󰽅"}.mdi-crosshairs-question:before{content:"󱄶"}.mdi-crowd:before{content:"󱥵"}.mdi-crown:before{content:"󰆥"}.mdi-crown-circle:before{content:"󱟜"}.mdi-crown-circle-outline:before{content:"󱟝"}.mdi-crown-outline:before{content:"󱇐"}.mdi-cryengine:before{content:"󰥙"}.mdi-crystal-ball:before{content:"󰬯"}.mdi-cube:before{content:"󰆦"}.mdi-cube-off:before{content:"󱐜"}.mdi-cube-off-outline:before{content:"󱐝"}.mdi-cube-outline:before{content:"󰆧"}.mdi-cube-scan:before{content:"󰮄"}.mdi-cube-send:before{content:"󰆨"}.mdi-cube-unfolded:before{content:"󰆩"}.mdi-cup:before{content:"󰆪"}.mdi-cup-off:before{content:"󰗥"}.mdi-cup-off-outline:before{content:"󱍽"}.mdi-cup-outline:before{content:"󱌏"}.mdi-cup-water:before{content:"󰆫"}.mdi-cupboard:before{content:"󰽆"}.mdi-cupboard-outline:before{content:"󰽇"}.mdi-cupcake:before{content:"󰥚"}.mdi-curling:before{content:"󰡣"}.mdi-currency-bdt:before{content:"󰡤"}.mdi-currency-brl:before{content:"󰮅"}.mdi-currency-btc:before{content:"󰆬"}.mdi-currency-cny:before{content:"󰞺"}.mdi-currency-eth:before{content:"󰞻"}.mdi-currency-eur:before{content:"󰆭"}.mdi-currency-eur-off:before{content:"󱌕"}.mdi-currency-fra:before{content:"󱨹"}.mdi-currency-gbp:before{content:"󰆮"}.mdi-currency-ils:before{content:"󰱡"}.mdi-currency-inr:before{content:"󰆯"}.mdi-currency-jpy:before{content:"󰞼"}.mdi-currency-krw:before{content:"󰞽"}.mdi-currency-kzt:before{content:"󰡥"}.mdi-currency-mnt:before{content:"󱔒"}.mdi-currency-ngn:before{content:"󰆰"}.mdi-currency-php:before{content:"󰧦"}.mdi-currency-rial:before{content:"󰺜"}.mdi-currency-rub:before{content:"󰆱"}.mdi-currency-rupee:before{content:"󱥶"}.mdi-currency-sign:before{content:"󰞾"}.mdi-currency-thb:before{content:"󱰅"}.mdi-currency-try:before{content:"󰆲"}.mdi-currency-twd:before{content:"󰞿"}.mdi-currency-uah:before{content:"󱮛"}.mdi-currency-usd:before{content:"󰇁"}.mdi-currency-usd-off:before{content:"󰙺"}.mdi-current-ac:before{content:"󱒀"}.mdi-current-dc:before{content:"󰥜"}.mdi-cursor-default:before{content:"󰇀"}.mdi-cursor-default-click:before{content:"󰳽"}.mdi-cursor-default-click-outline:before{content:"󰳾"}.mdi-cursor-default-gesture:before{content:"󱄧"}.mdi-cursor-default-gesture-outline:before{content:"󱄨"}.mdi-cursor-default-outline:before{content:"󰆿"}.mdi-cursor-move:before{content:"󰆾"}.mdi-cursor-pointer:before{content:"󰆽"}.mdi-cursor-text:before{content:"󰗧"}.mdi-curtains:before{content:"󱡆"}.mdi-curtains-closed:before{content:"󱡇"}.mdi-cylinder:before{content:"󱥎"}.mdi-cylinder-off:before{content:"󱥏"}.mdi-dance-ballroom:before{content:"󱗻"}.mdi-dance-pole:before{content:"󱕸"}.mdi-data-matrix:before{content:"󱔼"}.mdi-data-matrix-edit:before{content:"󱔽"}.mdi-data-matrix-minus:before{content:"󱔾"}.mdi-data-matrix-plus:before{content:"󱔿"}.mdi-data-matrix-remove:before{content:"󱕀"}.mdi-data-matrix-scan:before{content:"󱕁"}.mdi-database:before{content:"󰆼"}.mdi-database-alert:before{content:"󱘺"}.mdi-database-alert-outline:before{content:"󱘤"}.mdi-database-arrow-down:before{content:"󱘻"}.mdi-database-arrow-down-outline:before{content:"󱘥"}.mdi-database-arrow-left:before{content:"󱘼"}.mdi-database-arrow-left-outline:before{content:"󱘦"}.mdi-database-arrow-right:before{content:"󱘽"}.mdi-database-arrow-right-outline:before{content:"󱘧"}.mdi-database-arrow-up:before{content:"󱘾"}.mdi-database-arrow-up-outline:before{content:"󱘨"}.mdi-database-check:before{content:"󰪩"}.mdi-database-check-outline:before{content:"󱘩"}.mdi-database-clock:before{content:"󱘿"}.mdi-database-clock-outline:before{content:"󱘪"}.mdi-database-cog:before{content:"󱙋"}.mdi-database-cog-outline:before{content:"󱙌"}.mdi-database-edit:before{content:"󰮆"}.mdi-database-edit-outline:before{content:"󱘫"}.mdi-database-export:before{content:"󰥞"}.mdi-database-export-outline:before{content:"󱘬"}.mdi-database-eye:before{content:"󱤟"}.mdi-database-eye-off:before{content:"󱤠"}.mdi-database-eye-off-outline:before{content:"󱤡"}.mdi-database-eye-outline:before{content:"󱤢"}.mdi-database-import:before{content:"󰥝"}.mdi-database-import-outline:before{content:"󱘭"}.mdi-database-lock:before{content:"󰪪"}.mdi-database-lock-outline:before{content:"󱘮"}.mdi-database-marker:before{content:"󱋶"}.mdi-database-marker-outline:before{content:"󱘯"}.mdi-database-minus:before{content:"󰆻"}.mdi-database-minus-outline:before{content:"󱘰"}.mdi-database-off:before{content:"󱙀"}.mdi-database-off-outline:before{content:"󱘱"}.mdi-database-outline:before{content:"󱘲"}.mdi-database-plus:before{content:"󰆺"}.mdi-database-plus-outline:before{content:"󱘳"}.mdi-database-refresh:before{content:"󰗂"}.mdi-database-refresh-outline:before{content:"󱘴"}.mdi-database-remove:before{content:"󰴀"}.mdi-database-remove-outline:before{content:"󱘵"}.mdi-database-search:before{content:"󰡦"}.mdi-database-search-outline:before{content:"󱘶"}.mdi-database-settings:before{content:"󰴁"}.mdi-database-settings-outline:before{content:"󱘷"}.mdi-database-sync:before{content:"󰳿"}.mdi-database-sync-outline:before{content:"󱘸"}.mdi-death-star:before{content:"󰣘"}.mdi-death-star-variant:before{content:"󰣙"}.mdi-deathly-hallows:before{content:"󰮇"}.mdi-debian:before{content:"󰣚"}.mdi-debug-step-into:before{content:"󰆹"}.mdi-debug-step-out:before{content:"󰆸"}.mdi-debug-step-over:before{content:"󰆷"}.mdi-decagram:before{content:"󰝬"}.mdi-decagram-outline:before{content:"󰝭"}.mdi-decimal:before{content:"󱂡"}.mdi-decimal-comma:before{content:"󱂢"}.mdi-decimal-comma-decrease:before{content:"󱂣"}.mdi-decimal-comma-increase:before{content:"󱂤"}.mdi-decimal-decrease:before{content:"󰆶"}.mdi-decimal-increase:before{content:"󰆵"}.mdi-delete:before{content:"󰆴"}.mdi-delete-alert:before{content:"󱂥"}.mdi-delete-alert-outline:before{content:"󱂦"}.mdi-delete-circle:before{content:"󰚃"}.mdi-delete-circle-outline:before{content:"󰮈"}.mdi-delete-clock:before{content:"󱕖"}.mdi-delete-clock-outline:before{content:"󱕗"}.mdi-delete-empty:before{content:"󰛌"}.mdi-delete-empty-outline:before{content:"󰺝"}.mdi-delete-forever:before{content:"󰗨"}.mdi-delete-forever-outline:before{content:"󰮉"}.mdi-delete-off:before{content:"󱂧"}.mdi-delete-off-outline:before{content:"󱂨"}.mdi-delete-outline:before{content:"󰧧"}.mdi-delete-restore:before{content:"󰠙"}.mdi-delete-sweep:before{content:"󰗩"}.mdi-delete-sweep-outline:before{content:"󰱢"}.mdi-delete-variant:before{content:"󰆳"}.mdi-delta:before{content:"󰇂"}.mdi-desk:before{content:"󱈹"}.mdi-desk-lamp:before{content:"󰥟"}.mdi-desk-lamp-off:before{content:"󱬟"}.mdi-desk-lamp-on:before{content:"󱬠"}.mdi-deskphone:before{content:"󰇃"}.mdi-desktop-classic:before{content:"󰟀"}.mdi-desktop-tower:before{content:"󰇅"}.mdi-desktop-tower-monitor:before{content:"󰪫"}.mdi-details:before{content:"󰇆"}.mdi-dev-to:before{content:"󰵮"}.mdi-developer-board:before{content:"󰚗"}.mdi-deviantart:before{content:"󰇇"}.mdi-devices:before{content:"󰾰"}.mdi-dharmachakra:before{content:"󰥋"}.mdi-diabetes:before{content:"󱄦"}.mdi-dialpad:before{content:"󰘜"}.mdi-diameter:before{content:"󰱣"}.mdi-diameter-outline:before{content:"󰱤"}.mdi-diameter-variant:before{content:"󰱥"}.mdi-diamond:before{content:"󰮊"}.mdi-diamond-outline:before{content:"󰮋"}.mdi-diamond-stone:before{content:"󰇈"}.mdi-dice-1:before{content:"󰇊"}.mdi-dice-1-outline:before{content:"󱅊"}.mdi-dice-2:before{content:"󰇋"}.mdi-dice-2-outline:before{content:"󱅋"}.mdi-dice-3:before{content:"󰇌"}.mdi-dice-3-outline:before{content:"󱅌"}.mdi-dice-4:before{content:"󰇍"}.mdi-dice-4-outline:before{content:"󱅍"}.mdi-dice-5:before{content:"󰇎"}.mdi-dice-5-outline:before{content:"󱅎"}.mdi-dice-6:before{content:"󰇏"}.mdi-dice-6-outline:before{content:"󱅏"}.mdi-dice-d10:before{content:"󱅓"}.mdi-dice-d10-outline:before{content:"󰝯"}.mdi-dice-d12:before{content:"󱅔"}.mdi-dice-d12-outline:before{content:"󰡧"}.mdi-dice-d20:before{content:"󱅕"}.mdi-dice-d20-outline:before{content:"󰗪"}.mdi-dice-d4:before{content:"󱅐"}.mdi-dice-d4-outline:before{content:"󰗫"}.mdi-dice-d6:before{content:"󱅑"}.mdi-dice-d6-outline:before{content:"󰗭"}.mdi-dice-d8:before{content:"󱅒"}.mdi-dice-d8-outline:before{content:"󰗬"}.mdi-dice-multiple:before{content:"󰝮"}.mdi-dice-multiple-outline:before{content:"󱅖"}.mdi-digital-ocean:before{content:"󱈷"}.mdi-dip-switch:before{content:"󰟁"}.mdi-directions:before{content:"󰇐"}.mdi-directions-fork:before{content:"󰙁"}.mdi-disc:before{content:"󰗮"}.mdi-disc-alert:before{content:"󰇑"}.mdi-disc-player:before{content:"󰥠"}.mdi-dishwasher:before{content:"󰪬"}.mdi-dishwasher-alert:before{content:"󱆸"}.mdi-dishwasher-off:before{content:"󱆹"}.mdi-disqus:before{content:"󰇒"}.mdi-distribute-horizontal-center:before{content:"󱇉"}.mdi-distribute-horizontal-left:before{content:"󱇈"}.mdi-distribute-horizontal-right:before{content:"󱇊"}.mdi-distribute-vertical-bottom:before{content:"󱇋"}.mdi-distribute-vertical-center:before{content:"󱇌"}.mdi-distribute-vertical-top:before{content:"󱇍"}.mdi-diversify:before{content:"󱡷"}.mdi-diving:before{content:"󱥷"}.mdi-diving-flippers:before{content:"󰶿"}.mdi-diving-helmet:before{content:"󰷀"}.mdi-diving-scuba:before{content:"󱭷"}.mdi-diving-scuba-flag:before{content:"󰷂"}.mdi-diving-scuba-mask:before{content:"󰷁"}.mdi-diving-scuba-tank:before{content:"󰷃"}.mdi-diving-scuba-tank-multiple:before{content:"󰷄"}.mdi-diving-snorkel:before{content:"󰷅"}.mdi-division:before{content:"󰇔"}.mdi-division-box:before{content:"󰇕"}.mdi-dlna:before{content:"󰩁"}.mdi-dna:before{content:"󰚄"}.mdi-dns:before{content:"󰇖"}.mdi-dns-outline:before{content:"󰮌"}.mdi-dock-bottom:before{content:"󱂩"}.mdi-dock-left:before{content:"󱂪"}.mdi-dock-right:before{content:"󱂫"}.mdi-dock-top:before{content:"󱔓"}.mdi-dock-window:before{content:"󱂬"}.mdi-docker:before{content:"󰡨"}.mdi-doctor:before{content:"󰩂"}.mdi-dog:before{content:"󰩃"}.mdi-dog-service:before{content:"󰪭"}.mdi-dog-side:before{content:"󰩄"}.mdi-dog-side-off:before{content:"󱛮"}.mdi-dolby:before{content:"󰚳"}.mdi-dolly:before{content:"󰺞"}.mdi-dolphin:before{content:"󱢴"}.mdi-domain:before{content:"󰇗"}.mdi-domain-off:before{content:"󰵯"}.mdi-domain-plus:before{content:"󱂭"}.mdi-domain-remove:before{content:"󱂮"}.mdi-domain-switch:before{content:"󱰬"}.mdi-dome-light:before{content:"󱐞"}.mdi-domino-mask:before{content:"󱀣"}.mdi-donkey:before{content:"󰟂"}.mdi-door:before{content:"󰠚"}.mdi-door-closed:before{content:"󰠛"}.mdi-door-closed-lock:before{content:"󱂯"}.mdi-door-open:before{content:"󰠜"}.mdi-door-sliding:before{content:"󱠞"}.mdi-door-sliding-lock:before{content:"󱠟"}.mdi-door-sliding-open:before{content:"󱠠"}.mdi-doorbell:before{content:"󱋦"}.mdi-doorbell-video:before{content:"󰡩"}.mdi-dot-net:before{content:"󰪮"}.mdi-dots-circle:before{content:"󱥸"}.mdi-dots-grid:before{content:"󱗼"}.mdi-dots-hexagon:before{content:"󱗿"}.mdi-dots-horizontal:before{content:"󰇘"}.mdi-dots-horizontal-circle:before{content:"󰟃"}.mdi-dots-horizontal-circle-outline:before{content:"󰮍"}.mdi-dots-square:before{content:"󱗽"}.mdi-dots-triangle:before{content:"󱗾"}.mdi-dots-vertical:before{content:"󰇙"}.mdi-dots-vertical-circle:before{content:"󰟄"}.mdi-dots-vertical-circle-outline:before{content:"󰮎"}.mdi-download:before{content:"󰇚"}.mdi-download-box:before{content:"󱑢"}.mdi-download-box-outline:before{content:"󱑣"}.mdi-download-circle:before{content:"󱑤"}.mdi-download-circle-outline:before{content:"󱑥"}.mdi-download-lock:before{content:"󱌠"}.mdi-download-lock-outline:before{content:"󱌡"}.mdi-download-multiple:before{content:"󰧩"}.mdi-download-network:before{content:"󰛴"}.mdi-download-network-outline:before{content:"󰱦"}.mdi-download-off:before{content:"󱂰"}.mdi-download-off-outline:before{content:"󱂱"}.mdi-download-outline:before{content:"󰮏"}.mdi-drag:before{content:"󰇛"}.mdi-drag-horizontal:before{content:"󰇜"}.mdi-drag-horizontal-variant:before{content:"󱋰"}.mdi-drag-variant:before{content:"󰮐"}.mdi-drag-vertical:before{content:"󰇝"}.mdi-drag-vertical-variant:before{content:"󱋱"}.mdi-drama-masks:before{content:"󰴂"}.mdi-draw:before{content:"󰽉"}.mdi-draw-pen:before{content:"󱦹"}.mdi-drawing:before{content:"󰇞"}.mdi-drawing-box:before{content:"󰇟"}.mdi-dresser:before{content:"󰽊"}.mdi-dresser-outline:before{content:"󰽋"}.mdi-drone:before{content:"󰇢"}.mdi-dropbox:before{content:"󰇣"}.mdi-drupal:before{content:"󰇤"}.mdi-duck:before{content:"󰇥"}.mdi-dumbbell:before{content:"󰇦"}.mdi-dump-truck:before{content:"󰱧"}.mdi-ear-hearing:before{content:"󰟅"}.mdi-ear-hearing-loop:before{content:"󱫮"}.mdi-ear-hearing-off:before{content:"󰩅"}.mdi-earbuds:before{content:"󱡏"}.mdi-earbuds-off:before{content:"󱡐"}.mdi-earbuds-off-outline:before{content:"󱡑"}.mdi-earbuds-outline:before{content:"󱡒"}.mdi-earth:before{content:"󰇧"}.mdi-earth-arrow-right:before{content:"󱌑"}.mdi-earth-box:before{content:"󰛍"}.mdi-earth-box-minus:before{content:"󱐇"}.mdi-earth-box-off:before{content:"󰛎"}.mdi-earth-box-plus:before{content:"󱐆"}.mdi-earth-box-remove:before{content:"󱐈"}.mdi-earth-minus:before{content:"󱐄"}.mdi-earth-off:before{content:"󰇨"}.mdi-earth-plus:before{content:"󱐃"}.mdi-earth-remove:before{content:"󱐅"}.mdi-egg:before{content:"󰪯"}.mdi-egg-easter:before{content:"󰪰"}.mdi-egg-fried:before{content:"󱡊"}.mdi-egg-off:before{content:"󱏰"}.mdi-egg-off-outline:before{content:"󱏱"}.mdi-egg-outline:before{content:"󱏲"}.mdi-eiffel-tower:before{content:"󱕫"}.mdi-eight-track:before{content:"󰧪"}.mdi-eject:before{content:"󰇪"}.mdi-eject-circle:before{content:"󱬣"}.mdi-eject-circle-outline:before{content:"󱬤"}.mdi-eject-outline:before{content:"󰮑"}.mdi-electric-switch:before{content:"󰺟"}.mdi-electric-switch-closed:before{content:"󱃙"}.mdi-electron-framework:before{content:"󱀤"}.mdi-elephant:before{content:"󰟆"}.mdi-elevation-decline:before{content:"󰇫"}.mdi-elevation-rise:before{content:"󰇬"}.mdi-elevator:before{content:"󰇭"}.mdi-elevator-down:before{content:"󱋂"}.mdi-elevator-passenger:before{content:"󱎁"}.mdi-elevator-passenger-off:before{content:"󱥹"}.mdi-elevator-passenger-off-outline:before{content:"󱥺"}.mdi-elevator-passenger-outline:before{content:"󱥻"}.mdi-elevator-up:before{content:"󱋁"}.mdi-ellipse:before{content:"󰺠"}.mdi-ellipse-outline:before{content:"󰺡"}.mdi-email:before{content:"󰇮"}.mdi-email-alert:before{content:"󰛏"}.mdi-email-alert-outline:before{content:"󰵂"}.mdi-email-arrow-left:before{content:"󱃚"}.mdi-email-arrow-left-outline:before{content:"󱃛"}.mdi-email-arrow-right:before{content:"󱃜"}.mdi-email-arrow-right-outline:before{content:"󱃝"}.mdi-email-box:before{content:"󰴃"}.mdi-email-check:before{content:"󰪱"}.mdi-email-check-outline:before{content:"󰪲"}.mdi-email-edit:before{content:"󰻣"}.mdi-email-edit-outline:before{content:"󰻤"}.mdi-email-fast:before{content:"󱡯"}.mdi-email-fast-outline:before{content:"󱡰"}.mdi-email-heart-outline:before{content:"󱱛"}.mdi-email-lock:before{content:"󰇱"}.mdi-email-lock-outline:before{content:"󱭡"}.mdi-email-mark-as-unread:before{content:"󰮒"}.mdi-email-minus:before{content:"󰻥"}.mdi-email-minus-outline:before{content:"󰻦"}.mdi-email-multiple:before{content:"󰻧"}.mdi-email-multiple-outline:before{content:"󰻨"}.mdi-email-newsletter:before{content:"󰾱"}.mdi-email-off:before{content:"󱏣"}.mdi-email-off-outline:before{content:"󱏤"}.mdi-email-open:before{content:"󰇯"}.mdi-email-open-heart-outline:before{content:"󱱜"}.mdi-email-open-multiple:before{content:"󰻩"}.mdi-email-open-multiple-outline:before{content:"󰻪"}.mdi-email-open-outline:before{content:"󰗯"}.mdi-email-outline:before{content:"󰇰"}.mdi-email-plus:before{content:"󰧫"}.mdi-email-plus-outline:before{content:"󰧬"}.mdi-email-remove:before{content:"󱙡"}.mdi-email-remove-outline:before{content:"󱙢"}.mdi-email-seal:before{content:"󱥛"}.mdi-email-seal-outline:before{content:"󱥜"}.mdi-email-search:before{content:"󰥡"}.mdi-email-search-outline:before{content:"󰥢"}.mdi-email-sync:before{content:"󱋇"}.mdi-email-sync-outline:before{content:"󱋈"}.mdi-email-variant:before{content:"󰗰"}.mdi-ember:before{content:"󰬰"}.mdi-emby:before{content:"󰚴"}.mdi-emoticon:before{content:"󰱨"}.mdi-emoticon-angry:before{content:"󰱩"}.mdi-emoticon-angry-outline:before{content:"󰱪"}.mdi-emoticon-confused:before{content:"󱃞"}.mdi-emoticon-confused-outline:before{content:"󱃟"}.mdi-emoticon-cool:before{content:"󰱫"}.mdi-emoticon-cool-outline:before{content:"󰇳"}.mdi-emoticon-cry:before{content:"󰱬"}.mdi-emoticon-cry-outline:before{content:"󰱭"}.mdi-emoticon-dead:before{content:"󰱮"}.mdi-emoticon-dead-outline:before{content:"󰚛"}.mdi-emoticon-devil:before{content:"󰱯"}.mdi-emoticon-devil-outline:before{content:"󰇴"}.mdi-emoticon-excited:before{content:"󰱰"}.mdi-emoticon-excited-outline:before{content:"󰚜"}.mdi-emoticon-frown:before{content:"󰽌"}.mdi-emoticon-frown-outline:before{content:"󰽍"}.mdi-emoticon-happy:before{content:"󰱱"}.mdi-emoticon-happy-outline:before{content:"󰇵"}.mdi-emoticon-kiss:before{content:"󰱲"}.mdi-emoticon-kiss-outline:before{content:"󰱳"}.mdi-emoticon-lol:before{content:"󱈔"}.mdi-emoticon-lol-outline:before{content:"󱈕"}.mdi-emoticon-neutral:before{content:"󰱴"}.mdi-emoticon-neutral-outline:before{content:"󰇶"}.mdi-emoticon-outline:before{content:"󰇲"}.mdi-emoticon-poop:before{content:"󰇷"}.mdi-emoticon-poop-outline:before{content:"󰱵"}.mdi-emoticon-sad:before{content:"󰱶"}.mdi-emoticon-sad-outline:before{content:"󰇸"}.mdi-emoticon-sick:before{content:"󱕼"}.mdi-emoticon-sick-outline:before{content:"󱕽"}.mdi-emoticon-tongue:before{content:"󰇹"}.mdi-emoticon-tongue-outline:before{content:"󰱷"}.mdi-emoticon-wink:before{content:"󰱸"}.mdi-emoticon-wink-outline:before{content:"󰱹"}.mdi-engine:before{content:"󰇺"}.mdi-engine-off:before{content:"󰩆"}.mdi-engine-off-outline:before{content:"󰩇"}.mdi-engine-outline:before{content:"󰇻"}.mdi-epsilon:before{content:"󱃠"}.mdi-equal:before{content:"󰇼"}.mdi-equal-box:before{content:"󰇽"}.mdi-equalizer:before{content:"󰺢"}.mdi-equalizer-outline:before{content:"󰺣"}.mdi-eraser:before{content:"󰇾"}.mdi-eraser-variant:before{content:"󰙂"}.mdi-escalator:before{content:"󰇿"}.mdi-escalator-box:before{content:"󱎙"}.mdi-escalator-down:before{content:"󱋀"}.mdi-escalator-up:before{content:"󱊿"}.mdi-eslint:before{content:"󰱺"}.mdi-et:before{content:"󰪳"}.mdi-ethereum:before{content:"󰡪"}.mdi-ethernet:before{content:"󰈀"}.mdi-ethernet-cable:before{content:"󰈁"}.mdi-ethernet-cable-off:before{content:"󰈂"}.mdi-ev-plug-ccs1:before{content:"󱔙"}.mdi-ev-plug-ccs2:before{content:"󱔚"}.mdi-ev-plug-chademo:before{content:"󱔛"}.mdi-ev-plug-tesla:before{content:"󱔜"}.mdi-ev-plug-type1:before{content:"󱔝"}.mdi-ev-plug-type2:before{content:"󱔞"}.mdi-ev-station:before{content:"󰗱"}.mdi-evernote:before{content:"󰈄"}.mdi-excavator:before{content:"󱀥"}.mdi-exclamation:before{content:"󰈅"}.mdi-exclamation-thick:before{content:"󱈸"}.mdi-exit-run:before{content:"󰩈"}.mdi-exit-to-app:before{content:"󰈆"}.mdi-expand-all:before{content:"󰪴"}.mdi-expand-all-outline:before{content:"󰪵"}.mdi-expansion-card:before{content:"󰢮"}.mdi-expansion-card-variant:before{content:"󰾲"}.mdi-exponent:before{content:"󰥣"}.mdi-exponent-box:before{content:"󰥤"}.mdi-export:before{content:"󰈇"}.mdi-export-variant:before{content:"󰮓"}.mdi-eye:before{content:"󰈈"}.mdi-eye-arrow-left:before{content:"󱣽"}.mdi-eye-arrow-left-outline:before{content:"󱣾"}.mdi-eye-arrow-right:before{content:"󱣿"}.mdi-eye-arrow-right-outline:before{content:"󱤀"}.mdi-eye-check:before{content:"󰴄"}.mdi-eye-check-outline:before{content:"󰴅"}.mdi-eye-circle:before{content:"󰮔"}.mdi-eye-circle-outline:before{content:"󰮕"}.mdi-eye-lock:before{content:"󱰆"}.mdi-eye-lock-open:before{content:"󱰇"}.mdi-eye-lock-open-outline:before{content:"󱰈"}.mdi-eye-lock-outline:before{content:"󱰉"}.mdi-eye-minus:before{content:"󱀦"}.mdi-eye-minus-outline:before{content:"󱀧"}.mdi-eye-off:before{content:"󰈉"}.mdi-eye-off-outline:before{content:"󰛑"}.mdi-eye-outline:before{content:"󰛐"}.mdi-eye-plus:before{content:"󰡫"}.mdi-eye-plus-outline:before{content:"󰡬"}.mdi-eye-refresh:before{content:"󱥼"}.mdi-eye-refresh-outline:before{content:"󱥽"}.mdi-eye-remove:before{content:"󱗣"}.mdi-eye-remove-outline:before{content:"󱗤"}.mdi-eye-settings:before{content:"󰡭"}.mdi-eye-settings-outline:before{content:"󰡮"}.mdi-eyedropper:before{content:"󰈊"}.mdi-eyedropper-minus:before{content:"󱏝"}.mdi-eyedropper-off:before{content:"󱏟"}.mdi-eyedropper-plus:before{content:"󱏜"}.mdi-eyedropper-remove:before{content:"󱏞"}.mdi-eyedropper-variant:before{content:"󰈋"}.mdi-face-agent:before{content:"󰵰"}.mdi-face-man:before{content:"󰙃"}.mdi-face-man-outline:before{content:"󰮖"}.mdi-face-man-profile:before{content:"󰙄"}.mdi-face-man-shimmer:before{content:"󱗌"}.mdi-face-man-shimmer-outline:before{content:"󱗍"}.mdi-face-mask:before{content:"󱖆"}.mdi-face-mask-outline:before{content:"󱖇"}.mdi-face-recognition:before{content:"󰱻"}.mdi-face-woman:before{content:"󱁷"}.mdi-face-woman-outline:before{content:"󱁸"}.mdi-face-woman-profile:before{content:"󱁶"}.mdi-face-woman-shimmer:before{content:"󱗎"}.mdi-face-woman-shimmer-outline:before{content:"󱗏"}.mdi-facebook:before{content:"󰈌"}.mdi-facebook-gaming:before{content:"󰟝"}.mdi-facebook-messenger:before{content:"󰈎"}.mdi-facebook-workplace:before{content:"󰬱"}.mdi-factory:before{content:"󰈏"}.mdi-family-tree:before{content:"󱘎"}.mdi-fan:before{content:"󰈐"}.mdi-fan-alert:before{content:"󱑬"}.mdi-fan-auto:before{content:"󱜝"}.mdi-fan-chevron-down:before{content:"󱑭"}.mdi-fan-chevron-up:before{content:"󱑮"}.mdi-fan-clock:before{content:"󱨺"}.mdi-fan-minus:before{content:"󱑰"}.mdi-fan-off:before{content:"󰠝"}.mdi-fan-plus:before{content:"󱑯"}.mdi-fan-remove:before{content:"󱑱"}.mdi-fan-speed-1:before{content:"󱑲"}.mdi-fan-speed-2:before{content:"󱑳"}.mdi-fan-speed-3:before{content:"󱑴"}.mdi-fast-forward:before{content:"󰈑"}.mdi-fast-forward-10:before{content:"󰵱"}.mdi-fast-forward-15:before{content:"󱤺"}.mdi-fast-forward-30:before{content:"󰴆"}.mdi-fast-forward-45:before{content:"󱬒"}.mdi-fast-forward-5:before{content:"󱇸"}.mdi-fast-forward-60:before{content:"󱘋"}.mdi-fast-forward-outline:before{content:"󰛒"}.mdi-faucet:before{content:"󱬩"}.mdi-faucet-variant:before{content:"󱬪"}.mdi-fax:before{content:"󰈒"}.mdi-feather:before{content:"󰛓"}.mdi-feature-search:before{content:"󰩉"}.mdi-feature-search-outline:before{content:"󰩊"}.mdi-fedora:before{content:"󰣛"}.mdi-fence:before{content:"󱞚"}.mdi-fence-electric:before{content:"󱟶"}.mdi-fencing:before{content:"󱓁"}.mdi-ferris-wheel:before{content:"󰺤"}.mdi-ferry:before{content:"󰈓"}.mdi-file:before{content:"󰈔"}.mdi-file-account:before{content:"󰜻"}.mdi-file-account-outline:before{content:"󱀨"}.mdi-file-alert:before{content:"󰩋"}.mdi-file-alert-outline:before{content:"󰩌"}.mdi-file-arrow-left-right:before{content:"󱪓"}.mdi-file-arrow-left-right-outline:before{content:"󱪔"}.mdi-file-arrow-up-down:before{content:"󱪕"}.mdi-file-arrow-up-down-outline:before{content:"󱪖"}.mdi-file-cabinet:before{content:"󰪶"}.mdi-file-cad:before{content:"󰻫"}.mdi-file-cad-box:before{content:"󰻬"}.mdi-file-cancel:before{content:"󰷆"}.mdi-file-cancel-outline:before{content:"󰷇"}.mdi-file-certificate:before{content:"󱆆"}.mdi-file-certificate-outline:before{content:"󱆇"}.mdi-file-chart:before{content:"󰈕"}.mdi-file-chart-check:before{content:"󱧆"}.mdi-file-chart-check-outline:before{content:"󱧇"}.mdi-file-chart-outline:before{content:"󱀩"}.mdi-file-check:before{content:"󰈖"}.mdi-file-check-outline:before{content:"󰸩"}.mdi-file-clock:before{content:"󱋡"}.mdi-file-clock-outline:before{content:"󱋢"}.mdi-file-cloud:before{content:"󰈗"}.mdi-file-cloud-outline:before{content:"󱀪"}.mdi-file-code:before{content:"󰈮"}.mdi-file-code-outline:before{content:"󱀫"}.mdi-file-cog:before{content:"󱁻"}.mdi-file-cog-outline:before{content:"󱁼"}.mdi-file-compare:before{content:"󰢪"}.mdi-file-delimited:before{content:"󰈘"}.mdi-file-delimited-outline:before{content:"󰺥"}.mdi-file-document:before{content:"󰈙"}.mdi-file-document-alert:before{content:"󱪗"}.mdi-file-document-alert-outline:before{content:"󱪘"}.mdi-file-document-arrow-right:before{content:"󱰏"}.mdi-file-document-arrow-right-outline:before{content:"󱰐"}.mdi-file-document-check:before{content:"󱪙"}.mdi-file-document-check-outline:before{content:"󱪚"}.mdi-file-document-edit:before{content:"󰷈"}.mdi-file-document-edit-outline:before{content:"󰷉"}.mdi-file-document-minus:before{content:"󱪛"}.mdi-file-document-minus-outline:before{content:"󱪜"}.mdi-file-document-multiple:before{content:"󱔗"}.mdi-file-document-multiple-outline:before{content:"󱔘"}.mdi-file-document-outline:before{content:"󰧮"}.mdi-file-document-plus:before{content:"󱪝"}.mdi-file-document-plus-outline:before{content:"󱪞"}.mdi-file-document-refresh:before{content:"󱱺"}.mdi-file-document-refresh-outline:before{content:"󱱻"}.mdi-file-document-remove:before{content:"󱪟"}.mdi-file-document-remove-outline:before{content:"󱪠"}.mdi-file-download:before{content:"󰥥"}.mdi-file-download-outline:before{content:"󰥦"}.mdi-file-edit:before{content:"󱇧"}.mdi-file-edit-outline:before{content:"󱇨"}.mdi-file-excel:before{content:"󰈛"}.mdi-file-excel-box:before{content:"󰈜"}.mdi-file-excel-box-outline:before{content:"󱀬"}.mdi-file-excel-outline:before{content:"󱀭"}.mdi-file-export:before{content:"󰈝"}.mdi-file-export-outline:before{content:"󱀮"}.mdi-file-eye:before{content:"󰷊"}.mdi-file-eye-outline:before{content:"󰷋"}.mdi-file-find:before{content:"󰈞"}.mdi-file-find-outline:before{content:"󰮗"}.mdi-file-gif-box:before{content:"󰵸"}.mdi-file-hidden:before{content:"󰘓"}.mdi-file-image:before{content:"󰈟"}.mdi-file-image-marker:before{content:"󱝲"}.mdi-file-image-marker-outline:before{content:"󱝳"}.mdi-file-image-minus:before{content:"󱤻"}.mdi-file-image-minus-outline:before{content:"󱤼"}.mdi-file-image-outline:before{content:"󰺰"}.mdi-file-image-plus:before{content:"󱤽"}.mdi-file-image-plus-outline:before{content:"󱤾"}.mdi-file-image-remove:before{content:"󱤿"}.mdi-file-image-remove-outline:before{content:"󱥀"}.mdi-file-import:before{content:"󰈠"}.mdi-file-import-outline:before{content:"󱀯"}.mdi-file-jpg-box:before{content:"󰈥"}.mdi-file-key:before{content:"󱆄"}.mdi-file-key-outline:before{content:"󱆅"}.mdi-file-link:before{content:"󱅷"}.mdi-file-link-outline:before{content:"󱅸"}.mdi-file-lock:before{content:"󰈡"}.mdi-file-lock-open:before{content:"󱧈"}.mdi-file-lock-open-outline:before{content:"󱧉"}.mdi-file-lock-outline:before{content:"󱀰"}.mdi-file-marker:before{content:"󱝴"}.mdi-file-marker-outline:before{content:"󱝵"}.mdi-file-minus:before{content:"󱪡"}.mdi-file-minus-outline:before{content:"󱪢"}.mdi-file-move:before{content:"󰪹"}.mdi-file-move-outline:before{content:"󱀱"}.mdi-file-multiple:before{content:"󰈢"}.mdi-file-multiple-outline:before{content:"󱀲"}.mdi-file-music:before{content:"󰈣"}.mdi-file-music-outline:before{content:"󰸪"}.mdi-file-outline:before{content:"󰈤"}.mdi-file-pdf-box:before{content:"󰈦"}.mdi-file-percent:before{content:"󰠞"}.mdi-file-percent-outline:before{content:"󱀳"}.mdi-file-phone:before{content:"󱅹"}.mdi-file-phone-outline:before{content:"󱅺"}.mdi-file-plus:before{content:"󰝒"}.mdi-file-plus-outline:before{content:"󰻭"}.mdi-file-png-box:before{content:"󰸭"}.mdi-file-powerpoint:before{content:"󰈧"}.mdi-file-powerpoint-box:before{content:"󰈨"}.mdi-file-powerpoint-box-outline:before{content:"󱀴"}.mdi-file-powerpoint-outline:before{content:"󱀵"}.mdi-file-presentation-box:before{content:"󰈩"}.mdi-file-question:before{content:"󰡯"}.mdi-file-question-outline:before{content:"󱀶"}.mdi-file-refresh:before{content:"󰤘"}.mdi-file-refresh-outline:before{content:"󰕁"}.mdi-file-remove:before{content:"󰮘"}.mdi-file-remove-outline:before{content:"󱀷"}.mdi-file-replace:before{content:"󰬲"}.mdi-file-replace-outline:before{content:"󰬳"}.mdi-file-restore:before{content:"󰙰"}.mdi-file-restore-outline:before{content:"󱀸"}.mdi-file-rotate-left:before{content:"󱨻"}.mdi-file-rotate-left-outline:before{content:"󱨼"}.mdi-file-rotate-right:before{content:"󱨽"}.mdi-file-rotate-right-outline:before{content:"󱨾"}.mdi-file-search:before{content:"󰱼"}.mdi-file-search-outline:before{content:"󰱽"}.mdi-file-send:before{content:"󰈪"}.mdi-file-send-outline:before{content:"󱀹"}.mdi-file-settings:before{content:"󱁹"}.mdi-file-settings-outline:before{content:"󱁺"}.mdi-file-sign:before{content:"󱧃"}.mdi-file-star:before{content:"󱀺"}.mdi-file-star-four-points:before{content:"󱰭"}.mdi-file-star-four-points-outline:before{content:"󱰮"}.mdi-file-star-outline:before{content:"󱀻"}.mdi-file-swap:before{content:"󰾴"}.mdi-file-swap-outline:before{content:"󰾵"}.mdi-file-sync:before{content:"󱈖"}.mdi-file-sync-outline:before{content:"󱈗"}.mdi-file-table:before{content:"󰱾"}.mdi-file-table-box:before{content:"󱃡"}.mdi-file-table-box-multiple:before{content:"󱃢"}.mdi-file-table-box-multiple-outline:before{content:"󱃣"}.mdi-file-table-box-outline:before{content:"󱃤"}.mdi-file-table-outline:before{content:"󰱿"}.mdi-file-tree:before{content:"󰙅"}.mdi-file-tree-outline:before{content:"󱏒"}.mdi-file-undo:before{content:"󰣜"}.mdi-file-undo-outline:before{content:"󱀼"}.mdi-file-upload:before{content:"󰩍"}.mdi-file-upload-outline:before{content:"󰩎"}.mdi-file-video:before{content:"󰈫"}.mdi-file-video-outline:before{content:"󰸬"}.mdi-file-word:before{content:"󰈬"}.mdi-file-word-box:before{content:"󰈭"}.mdi-file-word-box-outline:before{content:"󱀽"}.mdi-file-word-outline:before{content:"󱀾"}.mdi-file-xml-box:before{content:"󱭋"}.mdi-film:before{content:"󰈯"}.mdi-filmstrip:before{content:"󰈰"}.mdi-filmstrip-box:before{content:"󰌲"}.mdi-filmstrip-box-multiple:before{content:"󰴘"}.mdi-filmstrip-off:before{content:"󰈱"}.mdi-filter:before{content:"󰈲"}.mdi-filter-check:before{content:"󱣬"}.mdi-filter-check-outline:before{content:"󱣭"}.mdi-filter-cog:before{content:"󱪣"}.mdi-filter-cog-outline:before{content:"󱪤"}.mdi-filter-menu:before{content:"󱃥"}.mdi-filter-menu-outline:before{content:"󱃦"}.mdi-filter-minus:before{content:"󰻮"}.mdi-filter-minus-outline:before{content:"󰻯"}.mdi-filter-multiple:before{content:"󱨿"}.mdi-filter-multiple-outline:before{content:"󱩀"}.mdi-filter-off:before{content:"󱓯"}.mdi-filter-off-outline:before{content:"󱓰"}.mdi-filter-outline:before{content:"󰈳"}.mdi-filter-plus:before{content:"󰻰"}.mdi-filter-plus-outline:before{content:"󰻱"}.mdi-filter-remove:before{content:"󰈴"}.mdi-filter-remove-outline:before{content:"󰈵"}.mdi-filter-settings:before{content:"󱪥"}.mdi-filter-settings-outline:before{content:"󱪦"}.mdi-filter-variant:before{content:"󰈶"}.mdi-filter-variant-minus:before{content:"󱄒"}.mdi-filter-variant-plus:before{content:"󱄓"}.mdi-filter-variant-remove:before{content:"󱀿"}.mdi-finance:before{content:"󰠟"}.mdi-find-replace:before{content:"󰛔"}.mdi-fingerprint:before{content:"󰈷"}.mdi-fingerprint-off:before{content:"󰺱"}.mdi-fire:before{content:"󰈸"}.mdi-fire-alert:before{content:"󱗗"}.mdi-fire-circle:before{content:"󱠇"}.mdi-fire-extinguisher:before{content:"󰻲"}.mdi-fire-hydrant:before{content:"󱄷"}.mdi-fire-hydrant-alert:before{content:"󱄸"}.mdi-fire-hydrant-off:before{content:"󱄹"}.mdi-fire-off:before{content:"󱜢"}.mdi-fire-truck:before{content:"󰢫"}.mdi-firebase:before{content:"󰥧"}.mdi-firefox:before{content:"󰈹"}.mdi-fireplace:before{content:"󰸮"}.mdi-fireplace-off:before{content:"󰸯"}.mdi-firewire:before{content:"󰖾"}.mdi-firework:before{content:"󰸰"}.mdi-firework-off:before{content:"󱜣"}.mdi-fish:before{content:"󰈺"}.mdi-fish-off:before{content:"󱏳"}.mdi-fishbowl:before{content:"󰻳"}.mdi-fishbowl-outline:before{content:"󰻴"}.mdi-fit-to-page:before{content:"󰻵"}.mdi-fit-to-page-outline:before{content:"󰻶"}.mdi-fit-to-screen:before{content:"󱣴"}.mdi-fit-to-screen-outline:before{content:"󱣵"}.mdi-flag:before{content:"󰈻"}.mdi-flag-checkered:before{content:"󰈼"}.mdi-flag-minus:before{content:"󰮙"}.mdi-flag-minus-outline:before{content:"󱂲"}.mdi-flag-off:before{content:"󱣮"}.mdi-flag-off-outline:before{content:"󱣯"}.mdi-flag-outline:before{content:"󰈽"}.mdi-flag-plus:before{content:"󰮚"}.mdi-flag-plus-outline:before{content:"󱂳"}.mdi-flag-remove:before{content:"󰮛"}.mdi-flag-remove-outline:before{content:"󱂴"}.mdi-flag-triangle:before{content:"󰈿"}.mdi-flag-variant:before{content:"󰉀"}.mdi-flag-variant-minus:before{content:"󱮴"}.mdi-flag-variant-minus-outline:before{content:"󱮵"}.mdi-flag-variant-off:before{content:"󱮰"}.mdi-flag-variant-off-outline:before{content:"󱮱"}.mdi-flag-variant-outline:before{content:"󰈾"}.mdi-flag-variant-plus:before{content:"󱮲"}.mdi-flag-variant-plus-outline:before{content:"󱮳"}.mdi-flag-variant-remove:before{content:"󱮶"}.mdi-flag-variant-remove-outline:before{content:"󱮷"}.mdi-flare:before{content:"󰵲"}.mdi-flash:before{content:"󰉁"}.mdi-flash-alert:before{content:"󰻷"}.mdi-flash-alert-outline:before{content:"󰻸"}.mdi-flash-auto:before{content:"󰉂"}.mdi-flash-off:before{content:"󰉃"}.mdi-flash-off-outline:before{content:"󱭅"}.mdi-flash-outline:before{content:"󰛕"}.mdi-flash-red-eye:before{content:"󰙻"}.mdi-flash-triangle:before{content:"󱬝"}.mdi-flash-triangle-outline:before{content:"󱬞"}.mdi-flashlight:before{content:"󰉄"}.mdi-flashlight-off:before{content:"󰉅"}.mdi-flask:before{content:"󰂓"}.mdi-flask-empty:before{content:"󰂔"}.mdi-flask-empty-minus:before{content:"󱈺"}.mdi-flask-empty-minus-outline:before{content:"󱈻"}.mdi-flask-empty-off:before{content:"󱏴"}.mdi-flask-empty-off-outline:before{content:"󱏵"}.mdi-flask-empty-outline:before{content:"󰂕"}.mdi-flask-empty-plus:before{content:"󱈼"}.mdi-flask-empty-plus-outline:before{content:"󱈽"}.mdi-flask-empty-remove:before{content:"󱈾"}.mdi-flask-empty-remove-outline:before{content:"󱈿"}.mdi-flask-minus:before{content:"󱉀"}.mdi-flask-minus-outline:before{content:"󱉁"}.mdi-flask-off:before{content:"󱏶"}.mdi-flask-off-outline:before{content:"󱏷"}.mdi-flask-outline:before{content:"󰂖"}.mdi-flask-plus:before{content:"󱉂"}.mdi-flask-plus-outline:before{content:"󱉃"}.mdi-flask-remove:before{content:"󱉄"}.mdi-flask-remove-outline:before{content:"󱉅"}.mdi-flask-round-bottom:before{content:"󱉋"}.mdi-flask-round-bottom-empty:before{content:"󱉌"}.mdi-flask-round-bottom-empty-outline:before{content:"󱉍"}.mdi-flask-round-bottom-outline:before{content:"󱉎"}.mdi-fleur-de-lis:before{content:"󱌃"}.mdi-flip-horizontal:before{content:"󱃧"}.mdi-flip-to-back:before{content:"󰉇"}.mdi-flip-to-front:before{content:"󰉈"}.mdi-flip-vertical:before{content:"󱃨"}.mdi-floor-lamp:before{content:"󰣝"}.mdi-floor-lamp-dual:before{content:"󱁀"}.mdi-floor-lamp-dual-outline:before{content:"󱟎"}.mdi-floor-lamp-outline:before{content:"󱟈"}.mdi-floor-lamp-torchiere:before{content:"󱝇"}.mdi-floor-lamp-torchiere-outline:before{content:"󱟖"}.mdi-floor-lamp-torchiere-variant:before{content:"󱁁"}.mdi-floor-lamp-torchiere-variant-outline:before{content:"󱟏"}.mdi-floor-plan:before{content:"󰠡"}.mdi-floppy:before{content:"󰉉"}.mdi-floppy-variant:before{content:"󰧯"}.mdi-flower:before{content:"󰉊"}.mdi-flower-outline:before{content:"󰧰"}.mdi-flower-pollen:before{content:"󱢅"}.mdi-flower-pollen-outline:before{content:"󱢆"}.mdi-flower-poppy:before{content:"󰴈"}.mdi-flower-tulip:before{content:"󰧱"}.mdi-flower-tulip-outline:before{content:"󰧲"}.mdi-focus-auto:before{content:"󰽎"}.mdi-focus-field:before{content:"󰽏"}.mdi-focus-field-horizontal:before{content:"󰽐"}.mdi-focus-field-vertical:before{content:"󰽑"}.mdi-folder:before{content:"󰉋"}.mdi-folder-account:before{content:"󰉌"}.mdi-folder-account-outline:before{content:"󰮜"}.mdi-folder-alert:before{content:"󰷌"}.mdi-folder-alert-outline:before{content:"󰷍"}.mdi-folder-arrow-down:before{content:"󱧨"}.mdi-folder-arrow-down-outline:before{content:"󱧩"}.mdi-folder-arrow-left:before{content:"󱧪"}.mdi-folder-arrow-left-outline:before{content:"󱧫"}.mdi-folder-arrow-left-right:before{content:"󱧬"}.mdi-folder-arrow-left-right-outline:before{content:"󱧭"}.mdi-folder-arrow-right:before{content:"󱧮"}.mdi-folder-arrow-right-outline:before{content:"󱧯"}.mdi-folder-arrow-up:before{content:"󱧰"}.mdi-folder-arrow-up-down:before{content:"󱧱"}.mdi-folder-arrow-up-down-outline:before{content:"󱧲"}.mdi-folder-arrow-up-outline:before{content:"󱧳"}.mdi-folder-cancel:before{content:"󱧴"}.mdi-folder-cancel-outline:before{content:"󱧵"}.mdi-folder-check:before{content:"󱥾"}.mdi-folder-check-outline:before{content:"󱥿"}.mdi-folder-clock:before{content:"󰪺"}.mdi-folder-clock-outline:before{content:"󰪻"}.mdi-folder-cog:before{content:"󱁿"}.mdi-folder-cog-outline:before{content:"󱂀"}.mdi-folder-download:before{content:"󰉍"}.mdi-folder-download-outline:before{content:"󱃩"}.mdi-folder-edit:before{content:"󰣞"}.mdi-folder-edit-outline:before{content:"󰷎"}.mdi-folder-eye:before{content:"󱞊"}.mdi-folder-eye-outline:before{content:"󱞋"}.mdi-folder-file:before{content:"󱧶"}.mdi-folder-file-outline:before{content:"󱧷"}.mdi-folder-google-drive:before{content:"󰉎"}.mdi-folder-heart:before{content:"󱃪"}.mdi-folder-heart-outline:before{content:"󱃫"}.mdi-folder-hidden:before{content:"󱞞"}.mdi-folder-home:before{content:"󱂵"}.mdi-folder-home-outline:before{content:"󱂶"}.mdi-folder-image:before{content:"󰉏"}.mdi-folder-information:before{content:"󱂷"}.mdi-folder-information-outline:before{content:"󱂸"}.mdi-folder-key:before{content:"󰢬"}.mdi-folder-key-network:before{content:"󰢭"}.mdi-folder-key-network-outline:before{content:"󰲀"}.mdi-folder-key-outline:before{content:"󱃬"}.mdi-folder-lock:before{content:"󰉐"}.mdi-folder-lock-open:before{content:"󰉑"}.mdi-folder-lock-open-outline:before{content:"󱪧"}.mdi-folder-lock-outline:before{content:"󱪨"}.mdi-folder-marker:before{content:"󱉭"}.mdi-folder-marker-outline:before{content:"󱉮"}.mdi-folder-minus:before{content:"󱭉"}.mdi-folder-minus-outline:before{content:"󱭊"}.mdi-folder-move:before{content:"󰉒"}.mdi-folder-move-outline:before{content:"󱉆"}.mdi-folder-multiple:before{content:"󰉓"}.mdi-folder-multiple-image:before{content:"󰉔"}.mdi-folder-multiple-outline:before{content:"󰉕"}.mdi-folder-multiple-plus:before{content:"󱑾"}.mdi-folder-multiple-plus-outline:before{content:"󱑿"}.mdi-folder-music:before{content:"󱍙"}.mdi-folder-music-outline:before{content:"󱍚"}.mdi-folder-network:before{content:"󰡰"}.mdi-folder-network-outline:before{content:"󰲁"}.mdi-folder-off:before{content:"󱧸"}.mdi-folder-off-outline:before{content:"󱧹"}.mdi-folder-open:before{content:"󰝰"}.mdi-folder-open-outline:before{content:"󰷏"}.mdi-folder-outline:before{content:"󰉖"}.mdi-folder-play:before{content:"󱧺"}.mdi-folder-play-outline:before{content:"󱧻"}.mdi-folder-plus:before{content:"󰉗"}.mdi-folder-plus-outline:before{content:"󰮝"}.mdi-folder-pound:before{content:"󰴉"}.mdi-folder-pound-outline:before{content:"󰴊"}.mdi-folder-question:before{content:"󱧊"}.mdi-folder-question-outline:before{content:"󱧋"}.mdi-folder-refresh:before{content:"󰝉"}.mdi-folder-refresh-outline:before{content:"󰕂"}.mdi-folder-remove:before{content:"󰉘"}.mdi-folder-remove-outline:before{content:"󰮞"}.mdi-folder-search:before{content:"󰥨"}.mdi-folder-search-outline:before{content:"󰥩"}.mdi-folder-settings:before{content:"󱁽"}.mdi-folder-settings-outline:before{content:"󱁾"}.mdi-folder-star:before{content:"󰚝"}.mdi-folder-star-multiple:before{content:"󱏓"}.mdi-folder-star-multiple-outline:before{content:"󱏔"}.mdi-folder-star-outline:before{content:"󰮟"}.mdi-folder-swap:before{content:"󰾶"}.mdi-folder-swap-outline:before{content:"󰾷"}.mdi-folder-sync:before{content:"󰴋"}.mdi-folder-sync-outline:before{content:"󰴌"}.mdi-folder-table:before{content:"󱋣"}.mdi-folder-table-outline:before{content:"󱋤"}.mdi-folder-text:before{content:"󰲂"}.mdi-folder-text-outline:before{content:"󰲃"}.mdi-folder-upload:before{content:"󰉙"}.mdi-folder-upload-outline:before{content:"󱃭"}.mdi-folder-wrench:before{content:"󱧼"}.mdi-folder-wrench-outline:before{content:"󱧽"}.mdi-folder-zip:before{content:"󰛫"}.mdi-folder-zip-outline:before{content:"󰞹"}.mdi-font-awesome:before{content:"󰀺"}.mdi-food:before{content:"󰉚"}.mdi-food-apple:before{content:"󰉛"}.mdi-food-apple-outline:before{content:"󰲄"}.mdi-food-croissant:before{content:"󰟈"}.mdi-food-drumstick:before{content:"󱐟"}.mdi-food-drumstick-off:before{content:"󱑨"}.mdi-food-drumstick-off-outline:before{content:"󱑩"}.mdi-food-drumstick-outline:before{content:"󱐠"}.mdi-food-fork-drink:before{content:"󰗲"}.mdi-food-halal:before{content:"󱕲"}.mdi-food-hot-dog:before{content:"󱡋"}.mdi-food-kosher:before{content:"󱕳"}.mdi-food-off:before{content:"󰗳"}.mdi-food-off-outline:before{content:"󱤕"}.mdi-food-outline:before{content:"󱤖"}.mdi-food-steak:before{content:"󱑪"}.mdi-food-steak-off:before{content:"󱑫"}.mdi-food-takeout-box:before{content:"󱠶"}.mdi-food-takeout-box-outline:before{content:"󱠷"}.mdi-food-turkey:before{content:"󱜜"}.mdi-food-variant:before{content:"󰉜"}.mdi-food-variant-off:before{content:"󱏥"}.mdi-foot-print:before{content:"󰽒"}.mdi-football:before{content:"󰉝"}.mdi-football-australian:before{content:"󰉞"}.mdi-football-helmet:before{content:"󰉟"}.mdi-forest:before{content:"󱢗"}.mdi-forest-outline:before{content:"󱱣"}.mdi-forklift:before{content:"󰟉"}.mdi-form-dropdown:before{content:"󱐀"}.mdi-form-select:before{content:"󱐁"}.mdi-form-textarea:before{content:"󱂕"}.mdi-form-textbox:before{content:"󰘎"}.mdi-form-textbox-lock:before{content:"󱍝"}.mdi-form-textbox-password:before{content:"󰟵"}.mdi-format-align-bottom:before{content:"󰝓"}.mdi-format-align-center:before{content:"󰉠"}.mdi-format-align-justify:before{content:"󰉡"}.mdi-format-align-left:before{content:"󰉢"}.mdi-format-align-middle:before{content:"󰝔"}.mdi-format-align-right:before{content:"󰉣"}.mdi-format-align-top:before{content:"󰝕"}.mdi-format-annotation-minus:before{content:"󰪼"}.mdi-format-annotation-plus:before{content:"󰙆"}.mdi-format-bold:before{content:"󰉤"}.mdi-format-clear:before{content:"󰉥"}.mdi-format-color-fill:before{content:"󰉦"}.mdi-format-color-highlight:before{content:"󰸱"}.mdi-format-color-marker-cancel:before{content:"󱌓"}.mdi-format-color-text:before{content:"󰚞"}.mdi-format-columns:before{content:"󰣟"}.mdi-format-float-center:before{content:"󰉧"}.mdi-format-float-left:before{content:"󰉨"}.mdi-format-float-none:before{content:"󰉩"}.mdi-format-float-right:before{content:"󰉪"}.mdi-format-font:before{content:"󰛖"}.mdi-format-font-size-decrease:before{content:"󰧳"}.mdi-format-font-size-increase:before{content:"󰧴"}.mdi-format-header-1:before{content:"󰉫"}.mdi-format-header-2:before{content:"󰉬"}.mdi-format-header-3:before{content:"󰉭"}.mdi-format-header-4:before{content:"󰉮"}.mdi-format-header-5:before{content:"󰉯"}.mdi-format-header-6:before{content:"󰉰"}.mdi-format-header-decrease:before{content:"󰉱"}.mdi-format-header-equal:before{content:"󰉲"}.mdi-format-header-increase:before{content:"󰉳"}.mdi-format-header-pound:before{content:"󰉴"}.mdi-format-horizontal-align-center:before{content:"󰘞"}.mdi-format-horizontal-align-left:before{content:"󰘟"}.mdi-format-horizontal-align-right:before{content:"󰘠"}.mdi-format-indent-decrease:before{content:"󰉵"}.mdi-format-indent-increase:before{content:"󰉶"}.mdi-format-italic:before{content:"󰉷"}.mdi-format-letter-case:before{content:"󰬴"}.mdi-format-letter-case-lower:before{content:"󰬵"}.mdi-format-letter-case-upper:before{content:"󰬶"}.mdi-format-letter-ends-with:before{content:"󰾸"}.mdi-format-letter-matches:before{content:"󰾹"}.mdi-format-letter-spacing:before{content:"󱥖"}.mdi-format-letter-spacing-variant:before{content:"󱫻"}.mdi-format-letter-starts-with:before{content:"󰾺"}.mdi-format-line-height:before{content:"󱫼"}.mdi-format-line-spacing:before{content:"󰉸"}.mdi-format-line-style:before{content:"󰗈"}.mdi-format-line-weight:before{content:"󰗉"}.mdi-format-list-bulleted:before{content:"󰉹"}.mdi-format-list-bulleted-square:before{content:"󰷐"}.mdi-format-list-bulleted-triangle:before{content:"󰺲"}.mdi-format-list-bulleted-type:before{content:"󰉺"}.mdi-format-list-checkbox:before{content:"󰥪"}.mdi-format-list-checks:before{content:"󰝖"}.mdi-format-list-group:before{content:"󱡠"}.mdi-format-list-group-plus:before{content:"󱭖"}.mdi-format-list-numbered:before{content:"󰉻"}.mdi-format-list-numbered-rtl:before{content:"󰴍"}.mdi-format-list-text:before{content:"󱉯"}.mdi-format-overline:before{content:"󰺳"}.mdi-format-page-break:before{content:"󰛗"}.mdi-format-page-split:before{content:"󱤗"}.mdi-format-paint:before{content:"󰉼"}.mdi-format-paragraph:before{content:"󰉽"}.mdi-format-paragraph-spacing:before{content:"󱫽"}.mdi-format-pilcrow:before{content:"󰛘"}.mdi-format-pilcrow-arrow-left:before{content:"󰊆"}.mdi-format-pilcrow-arrow-right:before{content:"󰊅"}.mdi-format-quote-close:before{content:"󰉾"}.mdi-format-quote-close-outline:before{content:"󱆨"}.mdi-format-quote-open:before{content:"󰝗"}.mdi-format-quote-open-outline:before{content:"󱆧"}.mdi-format-rotate-90:before{content:"󰚪"}.mdi-format-section:before{content:"󰚟"}.mdi-format-size:before{content:"󰉿"}.mdi-format-strikethrough:before{content:"󰊀"}.mdi-format-strikethrough-variant:before{content:"󰊁"}.mdi-format-subscript:before{content:"󰊂"}.mdi-format-superscript:before{content:"󰊃"}.mdi-format-text:before{content:"󰊄"}.mdi-format-text-rotation-angle-down:before{content:"󰾻"}.mdi-format-text-rotation-angle-up:before{content:"󰾼"}.mdi-format-text-rotation-down:before{content:"󰵳"}.mdi-format-text-rotation-down-vertical:before{content:"󰾽"}.mdi-format-text-rotation-none:before{content:"󰵴"}.mdi-format-text-rotation-up:before{content:"󰾾"}.mdi-format-text-rotation-vertical:before{content:"󰾿"}.mdi-format-text-variant:before{content:"󰸲"}.mdi-format-text-variant-outline:before{content:"󱔏"}.mdi-format-text-wrapping-clip:before{content:"󰴎"}.mdi-format-text-wrapping-overflow:before{content:"󰴏"}.mdi-format-text-wrapping-wrap:before{content:"󰴐"}.mdi-format-textbox:before{content:"󰴑"}.mdi-format-title:before{content:"󰗴"}.mdi-format-underline:before{content:"󰊇"}.mdi-format-underline-wavy:before{content:"󱣩"}.mdi-format-vertical-align-bottom:before{content:"󰘡"}.mdi-format-vertical-align-center:before{content:"󰘢"}.mdi-format-vertical-align-top:before{content:"󰘣"}.mdi-format-wrap-inline:before{content:"󰊈"}.mdi-format-wrap-square:before{content:"󰊉"}.mdi-format-wrap-tight:before{content:"󰊊"}.mdi-format-wrap-top-bottom:before{content:"󰊋"}.mdi-forum:before{content:"󰊌"}.mdi-forum-minus:before{content:"󱪩"}.mdi-forum-minus-outline:before{content:"󱪪"}.mdi-forum-outline:before{content:"󰠢"}.mdi-forum-plus:before{content:"󱪫"}.mdi-forum-plus-outline:before{content:"󱪬"}.mdi-forum-remove:before{content:"󱪭"}.mdi-forum-remove-outline:before{content:"󱪮"}.mdi-forward:before{content:"󰊍"}.mdi-forwardburger:before{content:"󰵵"}.mdi-fountain:before{content:"󰥫"}.mdi-fountain-pen:before{content:"󰴒"}.mdi-fountain-pen-tip:before{content:"󰴓"}.mdi-fraction-one-half:before{content:"󱦒"}.mdi-freebsd:before{content:"󰣠"}.mdi-french-fries:before{content:"󱥗"}.mdi-frequently-asked-questions:before{content:"󰺴"}.mdi-fridge:before{content:"󰊐"}.mdi-fridge-alert:before{content:"󱆱"}.mdi-fridge-alert-outline:before{content:"󱆲"}.mdi-fridge-bottom:before{content:"󰊒"}.mdi-fridge-industrial:before{content:"󱗮"}.mdi-fridge-industrial-alert:before{content:"󱗯"}.mdi-fridge-industrial-alert-outline:before{content:"󱗰"}.mdi-fridge-industrial-off:before{content:"󱗱"}.mdi-fridge-industrial-off-outline:before{content:"󱗲"}.mdi-fridge-industrial-outline:before{content:"󱗳"}.mdi-fridge-off:before{content:"󱆯"}.mdi-fridge-off-outline:before{content:"󱆰"}.mdi-fridge-outline:before{content:"󰊏"}.mdi-fridge-top:before{content:"󰊑"}.mdi-fridge-variant:before{content:"󱗴"}.mdi-fridge-variant-alert:before{content:"󱗵"}.mdi-fridge-variant-alert-outline:before{content:"󱗶"}.mdi-fridge-variant-off:before{content:"󱗷"}.mdi-fridge-variant-off-outline:before{content:"󱗸"}.mdi-fridge-variant-outline:before{content:"󱗹"}.mdi-fruit-cherries:before{content:"󱁂"}.mdi-fruit-cherries-off:before{content:"󱏸"}.mdi-fruit-citrus:before{content:"󱁃"}.mdi-fruit-citrus-off:before{content:"󱏹"}.mdi-fruit-grapes:before{content:"󱁄"}.mdi-fruit-grapes-outline:before{content:"󱁅"}.mdi-fruit-pear:before{content:"󱨎"}.mdi-fruit-pineapple:before{content:"󱁆"}.mdi-fruit-watermelon:before{content:"󱁇"}.mdi-fuel:before{content:"󰟊"}.mdi-fuel-cell:before{content:"󱢵"}.mdi-fullscreen:before{content:"󰊓"}.mdi-fullscreen-exit:before{content:"󰊔"}.mdi-function:before{content:"󰊕"}.mdi-function-variant:before{content:"󰡱"}.mdi-furigana-horizontal:before{content:"󱂁"}.mdi-furigana-vertical:before{content:"󱂂"}.mdi-fuse:before{content:"󰲅"}.mdi-fuse-alert:before{content:"󱐭"}.mdi-fuse-blade:before{content:"󰲆"}.mdi-fuse-off:before{content:"󱐬"}.mdi-gamepad:before{content:"󰊖"}.mdi-gamepad-circle:before{content:"󰸳"}.mdi-gamepad-circle-down:before{content:"󰸴"}.mdi-gamepad-circle-left:before{content:"󰸵"}.mdi-gamepad-circle-outline:before{content:"󰸶"}.mdi-gamepad-circle-right:before{content:"󰸷"}.mdi-gamepad-circle-up:before{content:"󰸸"}.mdi-gamepad-down:before{content:"󰸹"}.mdi-gamepad-left:before{content:"󰸺"}.mdi-gamepad-outline:before{content:"󱤙"}.mdi-gamepad-right:before{content:"󰸻"}.mdi-gamepad-round:before{content:"󰸼"}.mdi-gamepad-round-down:before{content:"󰸽"}.mdi-gamepad-round-left:before{content:"󰸾"}.mdi-gamepad-round-outline:before{content:"󰸿"}.mdi-gamepad-round-right:before{content:"󰹀"}.mdi-gamepad-round-up:before{content:"󰹁"}.mdi-gamepad-square:before{content:"󰺵"}.mdi-gamepad-square-outline:before{content:"󰺶"}.mdi-gamepad-up:before{content:"󰹂"}.mdi-gamepad-variant:before{content:"󰊗"}.mdi-gamepad-variant-outline:before{content:"󰺷"}.mdi-gamma:before{content:"󱃮"}.mdi-gantry-crane:before{content:"󰷑"}.mdi-garage:before{content:"󰛙"}.mdi-garage-alert:before{content:"󰡲"}.mdi-garage-alert-variant:before{content:"󱋕"}.mdi-garage-lock:before{content:"󱟻"}.mdi-garage-open:before{content:"󰛚"}.mdi-garage-open-variant:before{content:"󱋔"}.mdi-garage-variant:before{content:"󱋓"}.mdi-garage-variant-lock:before{content:"󱟼"}.mdi-gas-burner:before{content:"󱨛"}.mdi-gas-cylinder:before{content:"󰙇"}.mdi-gas-station:before{content:"󰊘"}.mdi-gas-station-off:before{content:"󱐉"}.mdi-gas-station-off-outline:before{content:"󱐊"}.mdi-gas-station-outline:before{content:"󰺸"}.mdi-gate:before{content:"󰊙"}.mdi-gate-alert:before{content:"󱟸"}.mdi-gate-and:before{content:"󰣡"}.mdi-gate-arrow-left:before{content:"󱟷"}.mdi-gate-arrow-right:before{content:"󱅩"}.mdi-gate-buffer:before{content:"󱫾"}.mdi-gate-nand:before{content:"󰣢"}.mdi-gate-nor:before{content:"󰣣"}.mdi-gate-not:before{content:"󰣤"}.mdi-gate-open:before{content:"󱅪"}.mdi-gate-or:before{content:"󰣥"}.mdi-gate-xnor:before{content:"󰣦"}.mdi-gate-xor:before{content:"󰣧"}.mdi-gatsby:before{content:"󰹃"}.mdi-gauge:before{content:"󰊚"}.mdi-gauge-empty:before{content:"󰡳"}.mdi-gauge-full:before{content:"󰡴"}.mdi-gauge-low:before{content:"󰡵"}.mdi-gavel:before{content:"󰊛"}.mdi-gender-female:before{content:"󰊜"}.mdi-gender-male:before{content:"󰊝"}.mdi-gender-male-female:before{content:"󰊞"}.mdi-gender-male-female-variant:before{content:"󱄿"}.mdi-gender-non-binary:before{content:"󱅀"}.mdi-gender-transgender:before{content:"󰊟"}.mdi-gentoo:before{content:"󰣨"}.mdi-gesture:before{content:"󰟋"}.mdi-gesture-double-tap:before{content:"󰜼"}.mdi-gesture-pinch:before{content:"󰪽"}.mdi-gesture-spread:before{content:"󰪾"}.mdi-gesture-swipe:before{content:"󰵶"}.mdi-gesture-swipe-down:before{content:"󰜽"}.mdi-gesture-swipe-horizontal:before{content:"󰪿"}.mdi-gesture-swipe-left:before{content:"󰜾"}.mdi-gesture-swipe-right:before{content:"󰜿"}.mdi-gesture-swipe-up:before{content:"󰝀"}.mdi-gesture-swipe-vertical:before{content:"󰫀"}.mdi-gesture-tap:before{content:"󰝁"}.mdi-gesture-tap-box:before{content:"󱊩"}.mdi-gesture-tap-button:before{content:"󱊨"}.mdi-gesture-tap-hold:before{content:"󰵷"}.mdi-gesture-two-double-tap:before{content:"󰝂"}.mdi-gesture-two-tap:before{content:"󰝃"}.mdi-ghost:before{content:"󰊠"}.mdi-ghost-off:before{content:"󰧵"}.mdi-ghost-off-outline:before{content:"󱙜"}.mdi-ghost-outline:before{content:"󱙝"}.mdi-gift:before{content:"󰹄"}.mdi-gift-off:before{content:"󱛯"}.mdi-gift-off-outline:before{content:"󱛰"}.mdi-gift-open:before{content:"󱛱"}.mdi-gift-open-outline:before{content:"󱛲"}.mdi-gift-outline:before{content:"󰊡"}.mdi-git:before{content:"󰊢"}.mdi-github:before{content:"󰊤"}.mdi-gitlab:before{content:"󰮠"}.mdi-glass-cocktail:before{content:"󰍖"}.mdi-glass-cocktail-off:before{content:"󱗦"}.mdi-glass-flute:before{content:"󰊥"}.mdi-glass-fragile:before{content:"󱡳"}.mdi-glass-mug:before{content:"󰊦"}.mdi-glass-mug-off:before{content:"󱗧"}.mdi-glass-mug-variant:before{content:"󱄖"}.mdi-glass-mug-variant-off:before{content:"󱗨"}.mdi-glass-pint-outline:before{content:"󱌍"}.mdi-glass-stange:before{content:"󰊧"}.mdi-glass-tulip:before{content:"󰊨"}.mdi-glass-wine:before{content:"󰡶"}.mdi-glasses:before{content:"󰊪"}.mdi-globe-light:before{content:"󰙯"}.mdi-globe-light-outline:before{content:"󱋗"}.mdi-globe-model:before{content:"󰣩"}.mdi-gmail:before{content:"󰊫"}.mdi-gnome:before{content:"󰊬"}.mdi-go-kart:before{content:"󰵹"}.mdi-go-kart-track:before{content:"󰵺"}.mdi-gog:before{content:"󰮡"}.mdi-gold:before{content:"󱉏"}.mdi-golf:before{content:"󰠣"}.mdi-golf-cart:before{content:"󱆤"}.mdi-golf-tee:before{content:"󱂃"}.mdi-gondola:before{content:"󰚆"}.mdi-goodreads:before{content:"󰵻"}.mdi-google:before{content:"󰊭"}.mdi-google-ads:before{content:"󰲇"}.mdi-google-analytics:before{content:"󰟌"}.mdi-google-assistant:before{content:"󰟍"}.mdi-google-cardboard:before{content:"󰊮"}.mdi-google-chrome:before{content:"󰊯"}.mdi-google-circles:before{content:"󰊰"}.mdi-google-circles-communities:before{content:"󰊱"}.mdi-google-circles-extended:before{content:"󰊲"}.mdi-google-circles-group:before{content:"󰊳"}.mdi-google-classroom:before{content:"󰋀"}.mdi-google-cloud:before{content:"󱇶"}.mdi-google-downasaur:before{content:"󱍢"}.mdi-google-drive:before{content:"󰊶"}.mdi-google-earth:before{content:"󰊷"}.mdi-google-fit:before{content:"󰥬"}.mdi-google-glass:before{content:"󰊸"}.mdi-google-hangouts:before{content:"󰋉"}.mdi-google-keep:before{content:"󰛜"}.mdi-google-lens:before{content:"󰧶"}.mdi-google-maps:before{content:"󰗵"}.mdi-google-my-business:before{content:"󱁈"}.mdi-google-nearby:before{content:"󰊹"}.mdi-google-play:before{content:"󰊼"}.mdi-google-plus:before{content:"󰊽"}.mdi-google-podcast:before{content:"󰺹"}.mdi-google-spreadsheet:before{content:"󰧷"}.mdi-google-street-view:before{content:"󰲈"}.mdi-google-translate:before{content:"󰊿"}.mdi-gradient-horizontal:before{content:"󱝊"}.mdi-gradient-vertical:before{content:"󰚠"}.mdi-grain:before{content:"󰵼"}.mdi-graph:before{content:"󱁉"}.mdi-graph-outline:before{content:"󱁊"}.mdi-graphql:before{content:"󰡷"}.mdi-grass:before{content:"󱔐"}.mdi-grave-stone:before{content:"󰮢"}.mdi-grease-pencil:before{content:"󰙈"}.mdi-greater-than:before{content:"󰥭"}.mdi-greater-than-or-equal:before{content:"󰥮"}.mdi-greenhouse:before{content:"󰀭"}.mdi-grid:before{content:"󰋁"}.mdi-grid-large:before{content:"󰝘"}.mdi-grid-off:before{content:"󰋂"}.mdi-grill:before{content:"󰹅"}.mdi-grill-outline:before{content:"󱆊"}.mdi-group:before{content:"󰋃"}.mdi-guitar-acoustic:before{content:"󰝱"}.mdi-guitar-electric:before{content:"󰋄"}.mdi-guitar-pick:before{content:"󰋅"}.mdi-guitar-pick-outline:before{content:"󰋆"}.mdi-guy-fawkes-mask:before{content:"󰠥"}.mdi-gymnastics:before{content:"󱩁"}.mdi-hail:before{content:"󰫁"}.mdi-hair-dryer:before{content:"󱃯"}.mdi-hair-dryer-outline:before{content:"󱃰"}.mdi-halloween:before{content:"󰮣"}.mdi-hamburger:before{content:"󰚅"}.mdi-hamburger-check:before{content:"󱝶"}.mdi-hamburger-minus:before{content:"󱝷"}.mdi-hamburger-off:before{content:"󱝸"}.mdi-hamburger-plus:before{content:"󱝹"}.mdi-hamburger-remove:before{content:"󱝺"}.mdi-hammer:before{content:"󰣪"}.mdi-hammer-screwdriver:before{content:"󱌢"}.mdi-hammer-sickle:before{content:"󱢇"}.mdi-hammer-wrench:before{content:"󱌣"}.mdi-hand-back-left:before{content:"󰹆"}.mdi-hand-back-left-off:before{content:"󱠰"}.mdi-hand-back-left-off-outline:before{content:"󱠲"}.mdi-hand-back-left-outline:before{content:"󱠬"}.mdi-hand-back-right:before{content:"󰹇"}.mdi-hand-back-right-off:before{content:"󱠱"}.mdi-hand-back-right-off-outline:before{content:"󱠳"}.mdi-hand-back-right-outline:before{content:"󱠭"}.mdi-hand-clap:before{content:"󱥋"}.mdi-hand-clap-off:before{content:"󱩂"}.mdi-hand-coin:before{content:"󱢏"}.mdi-hand-coin-outline:before{content:"󱢐"}.mdi-hand-cycle:before{content:"󱮜"}.mdi-hand-extended:before{content:"󱢶"}.mdi-hand-extended-outline:before{content:"󱢷"}.mdi-hand-front-left:before{content:"󱠫"}.mdi-hand-front-left-outline:before{content:"󱠮"}.mdi-hand-front-right:before{content:"󰩏"}.mdi-hand-front-right-outline:before{content:"󱠯"}.mdi-hand-heart:before{content:"󱃱"}.mdi-hand-heart-outline:before{content:"󱕾"}.mdi-hand-okay:before{content:"󰩐"}.mdi-hand-peace:before{content:"󰩑"}.mdi-hand-peace-variant:before{content:"󰩒"}.mdi-hand-pointing-down:before{content:"󰩓"}.mdi-hand-pointing-left:before{content:"󰩔"}.mdi-hand-pointing-right:before{content:"󰋇"}.mdi-hand-pointing-up:before{content:"󰩕"}.mdi-hand-saw:before{content:"󰹈"}.mdi-hand-wash:before{content:"󱕿"}.mdi-hand-wash-outline:before{content:"󱖀"}.mdi-hand-water:before{content:"󱎟"}.mdi-hand-wave:before{content:"󱠡"}.mdi-hand-wave-outline:before{content:"󱠢"}.mdi-handball:before{content:"󰽓"}.mdi-handcuffs:before{content:"󱄾"}.mdi-hands-pray:before{content:"󰕹"}.mdi-handshake:before{content:"󱈘"}.mdi-handshake-outline:before{content:"󱖡"}.mdi-hanger:before{content:"󰋈"}.mdi-hard-hat:before{content:"󰥯"}.mdi-harddisk:before{content:"󰋊"}.mdi-harddisk-plus:before{content:"󱁋"}.mdi-harddisk-remove:before{content:"󱁌"}.mdi-hat-fedora:before{content:"󰮤"}.mdi-hazard-lights:before{content:"󰲉"}.mdi-hdmi-port:before{content:"󱮸"}.mdi-hdr:before{content:"󰵽"}.mdi-hdr-off:before{content:"󰵾"}.mdi-head:before{content:"󱍞"}.mdi-head-alert:before{content:"󱌸"}.mdi-head-alert-outline:before{content:"󱌹"}.mdi-head-check:before{content:"󱌺"}.mdi-head-check-outline:before{content:"󱌻"}.mdi-head-cog:before{content:"󱌼"}.mdi-head-cog-outline:before{content:"󱌽"}.mdi-head-dots-horizontal:before{content:"󱌾"}.mdi-head-dots-horizontal-outline:before{content:"󱌿"}.mdi-head-flash:before{content:"󱍀"}.mdi-head-flash-outline:before{content:"󱍁"}.mdi-head-heart:before{content:"󱍂"}.mdi-head-heart-outline:before{content:"󱍃"}.mdi-head-lightbulb:before{content:"󱍄"}.mdi-head-lightbulb-outline:before{content:"󱍅"}.mdi-head-minus:before{content:"󱍆"}.mdi-head-minus-outline:before{content:"󱍇"}.mdi-head-outline:before{content:"󱍟"}.mdi-head-plus:before{content:"󱍈"}.mdi-head-plus-outline:before{content:"󱍉"}.mdi-head-question:before{content:"󱍊"}.mdi-head-question-outline:before{content:"󱍋"}.mdi-head-remove:before{content:"󱍌"}.mdi-head-remove-outline:before{content:"󱍍"}.mdi-head-snowflake:before{content:"󱍎"}.mdi-head-snowflake-outline:before{content:"󱍏"}.mdi-head-sync:before{content:"󱍐"}.mdi-head-sync-outline:before{content:"󱍑"}.mdi-headphones:before{content:"󰋋"}.mdi-headphones-bluetooth:before{content:"󰥰"}.mdi-headphones-box:before{content:"󰋌"}.mdi-headphones-off:before{content:"󰟎"}.mdi-headphones-settings:before{content:"󰋍"}.mdi-headset:before{content:"󰋎"}.mdi-headset-dock:before{content:"󰋏"}.mdi-headset-off:before{content:"󰋐"}.mdi-heart:before{content:"󰋑"}.mdi-heart-box:before{content:"󰋒"}.mdi-heart-box-outline:before{content:"󰋓"}.mdi-heart-broken:before{content:"󰋔"}.mdi-heart-broken-outline:before{content:"󰴔"}.mdi-heart-circle:before{content:"󰥱"}.mdi-heart-circle-outline:before{content:"󰥲"}.mdi-heart-cog:before{content:"󱙣"}.mdi-heart-cog-outline:before{content:"󱙤"}.mdi-heart-flash:before{content:"󰻹"}.mdi-heart-half:before{content:"󰛟"}.mdi-heart-half-full:before{content:"󰛞"}.mdi-heart-half-outline:before{content:"󰛠"}.mdi-heart-minus:before{content:"󱐯"}.mdi-heart-minus-outline:before{content:"󱐲"}.mdi-heart-multiple:before{content:"󰩖"}.mdi-heart-multiple-outline:before{content:"󰩗"}.mdi-heart-off:before{content:"󰝙"}.mdi-heart-off-outline:before{content:"󱐴"}.mdi-heart-outline:before{content:"󰋕"}.mdi-heart-plus:before{content:"󱐮"}.mdi-heart-plus-outline:before{content:"󱐱"}.mdi-heart-pulse:before{content:"󰗶"}.mdi-heart-remove:before{content:"󱐰"}.mdi-heart-remove-outline:before{content:"󱐳"}.mdi-heart-settings:before{content:"󱙥"}.mdi-heart-settings-outline:before{content:"󱙦"}.mdi-heat-pump:before{content:"󱩃"}.mdi-heat-pump-outline:before{content:"󱩄"}.mdi-heat-wave:before{content:"󱩅"}.mdi-heating-coil:before{content:"󱪯"}.mdi-helicopter:before{content:"󰫂"}.mdi-help:before{content:"󰋖"}.mdi-help-box:before{content:"󰞋"}.mdi-help-box-multiple:before{content:"󱰊"}.mdi-help-box-multiple-outline:before{content:"󱰋"}.mdi-help-box-outline:before{content:"󱰌"}.mdi-help-circle:before{content:"󰋗"}.mdi-help-circle-outline:before{content:"󰘥"}.mdi-help-network:before{content:"󰛵"}.mdi-help-network-outline:before{content:"󰲊"}.mdi-help-rhombus:before{content:"󰮥"}.mdi-help-rhombus-outline:before{content:"󰮦"}.mdi-hexadecimal:before{content:"󱊧"}.mdi-hexagon:before{content:"󰋘"}.mdi-hexagon-multiple:before{content:"󰛡"}.mdi-hexagon-multiple-outline:before{content:"󱃲"}.mdi-hexagon-outline:before{content:"󰋙"}.mdi-hexagon-slice-1:before{content:"󰫃"}.mdi-hexagon-slice-2:before{content:"󰫄"}.mdi-hexagon-slice-3:before{content:"󰫅"}.mdi-hexagon-slice-4:before{content:"󰫆"}.mdi-hexagon-slice-5:before{content:"󰫇"}.mdi-hexagon-slice-6:before{content:"󰫈"}.mdi-hexagram:before{content:"󰫉"}.mdi-hexagram-outline:before{content:"󰫊"}.mdi-high-definition:before{content:"󰟏"}.mdi-high-definition-box:before{content:"󰡸"}.mdi-highway:before{content:"󰗷"}.mdi-hiking:before{content:"󰵿"}.mdi-history:before{content:"󰋚"}.mdi-hockey-puck:before{content:"󰡹"}.mdi-hockey-sticks:before{content:"󰡺"}.mdi-hololens:before{content:"󰋛"}.mdi-home:before{content:"󰋜"}.mdi-home-account:before{content:"󰠦"}.mdi-home-alert:before{content:"󰡻"}.mdi-home-alert-outline:before{content:"󱗐"}.mdi-home-analytics:before{content:"󰺺"}.mdi-home-assistant:before{content:"󰟐"}.mdi-home-automation:before{content:"󰟑"}.mdi-home-battery:before{content:"󱤁"}.mdi-home-battery-outline:before{content:"󱤂"}.mdi-home-circle:before{content:"󰟒"}.mdi-home-circle-outline:before{content:"󱁍"}.mdi-home-city:before{content:"󰴕"}.mdi-home-city-outline:before{content:"󰴖"}.mdi-home-clock:before{content:"󱨒"}.mdi-home-clock-outline:before{content:"󱨓"}.mdi-home-edit:before{content:"󱅙"}.mdi-home-edit-outline:before{content:"󱅚"}.mdi-home-export-outline:before{content:"󰾛"}.mdi-home-flood:before{content:"󰻺"}.mdi-home-floor-0:before{content:"󰷒"}.mdi-home-floor-1:before{content:"󰶀"}.mdi-home-floor-2:before{content:"󰶁"}.mdi-home-floor-3:before{content:"󰶂"}.mdi-home-floor-a:before{content:"󰶃"}.mdi-home-floor-b:before{content:"󰶄"}.mdi-home-floor-g:before{content:"󰶅"}.mdi-home-floor-l:before{content:"󰶆"}.mdi-home-floor-negative-1:before{content:"󰷓"}.mdi-home-group:before{content:"󰷔"}.mdi-home-group-minus:before{content:"󱧁"}.mdi-home-group-plus:before{content:"󱧀"}.mdi-home-group-remove:before{content:"󱧂"}.mdi-home-heart:before{content:"󰠧"}.mdi-home-import-outline:before{content:"󰾜"}.mdi-home-lightbulb:before{content:"󱉑"}.mdi-home-lightbulb-outline:before{content:"󱉒"}.mdi-home-lightning-bolt:before{content:"󱤃"}.mdi-home-lightning-bolt-outline:before{content:"󱤄"}.mdi-home-lock:before{content:"󰣫"}.mdi-home-lock-open:before{content:"󰣬"}.mdi-home-map-marker:before{content:"󰗸"}.mdi-home-minus:before{content:"󰥴"}.mdi-home-minus-outline:before{content:"󱏕"}.mdi-home-modern:before{content:"󰋝"}.mdi-home-off:before{content:"󱩆"}.mdi-home-off-outline:before{content:"󱩇"}.mdi-home-outline:before{content:"󰚡"}.mdi-home-percent:before{content:"󱱼"}.mdi-home-percent-outline:before{content:"󱱽"}.mdi-home-plus:before{content:"󰥵"}.mdi-home-plus-outline:before{content:"󱏖"}.mdi-home-remove:before{content:"󱉇"}.mdi-home-remove-outline:before{content:"󱏗"}.mdi-home-roof:before{content:"󱄫"}.mdi-home-search:before{content:"󱎰"}.mdi-home-search-outline:before{content:"󱎱"}.mdi-home-silo:before{content:"󱮠"}.mdi-home-silo-outline:before{content:"󱮡"}.mdi-home-sound-in:before{content:"󱰯"}.mdi-home-sound-in-outline:before{content:"󱰰"}.mdi-home-sound-out:before{content:"󱰱"}.mdi-home-sound-out-outline:before{content:"󱰲"}.mdi-home-switch:before{content:"󱞔"}.mdi-home-switch-outline:before{content:"󱞕"}.mdi-home-thermometer:before{content:"󰽔"}.mdi-home-thermometer-outline:before{content:"󰽕"}.mdi-home-variant:before{content:"󰋞"}.mdi-home-variant-outline:before{content:"󰮧"}.mdi-hook:before{content:"󰛢"}.mdi-hook-off:before{content:"󰛣"}.mdi-hoop-house:before{content:"󰹖"}.mdi-hops:before{content:"󰋟"}.mdi-horizontal-rotate-clockwise:before{content:"󱃳"}.mdi-horizontal-rotate-counterclockwise:before{content:"󱃴"}.mdi-horse:before{content:"󱖿"}.mdi-horse-human:before{content:"󱗀"}.mdi-horse-variant:before{content:"󱗁"}.mdi-horse-variant-fast:before{content:"󱡮"}.mdi-horseshoe:before{content:"󰩘"}.mdi-hospital:before{content:"󰿶"}.mdi-hospital-box:before{content:"󰋠"}.mdi-hospital-box-outline:before{content:"󰿷"}.mdi-hospital-building:before{content:"󰋡"}.mdi-hospital-marker:before{content:"󰋢"}.mdi-hot-tub:before{content:"󰠨"}.mdi-hours-24:before{content:"󱑸"}.mdi-hubspot:before{content:"󰴗"}.mdi-hulu:before{content:"󰠩"}.mdi-human:before{content:"󰋦"}.mdi-human-baby-changing-table:before{content:"󱎋"}.mdi-human-cane:before{content:"󱖁"}.mdi-human-capacity-decrease:before{content:"󱖛"}.mdi-human-capacity-increase:before{content:"󱖜"}.mdi-human-child:before{content:"󰋧"}.mdi-human-dolly:before{content:"󱦀"}.mdi-human-edit:before{content:"󱓨"}.mdi-human-female:before{content:"󰙉"}.mdi-human-female-boy:before{content:"󰩙"}.mdi-human-female-dance:before{content:"󱗉"}.mdi-human-female-female:before{content:"󰩚"}.mdi-human-female-girl:before{content:"󰩛"}.mdi-human-greeting:before{content:"󱟄"}.mdi-human-greeting-proximity:before{content:"󱖝"}.mdi-human-greeting-variant:before{content:"󰙊"}.mdi-human-handsdown:before{content:"󰙋"}.mdi-human-handsup:before{content:"󰙌"}.mdi-human-male:before{content:"󰙍"}.mdi-human-male-board:before{content:"󰢐"}.mdi-human-male-board-poll:before{content:"󰡆"}.mdi-human-male-boy:before{content:"󰩜"}.mdi-human-male-child:before{content:"󱎌"}.mdi-human-male-female:before{content:"󰋨"}.mdi-human-male-female-child:before{content:"󱠣"}.mdi-human-male-girl:before{content:"󰩝"}.mdi-human-male-height:before{content:"󰻻"}.mdi-human-male-height-variant:before{content:"󰻼"}.mdi-human-male-male:before{content:"󰩞"}.mdi-human-non-binary:before{content:"󱡈"}.mdi-human-pregnant:before{content:"󰗏"}.mdi-human-queue:before{content:"󱕱"}.mdi-human-scooter:before{content:"󱇩"}.mdi-human-walker:before{content:"󱭱"}.mdi-human-wheelchair:before{content:"󱎍"}.mdi-human-white-cane:before{content:"󱦁"}.mdi-humble-bundle:before{content:"󰝄"}.mdi-hvac:before{content:"󱍒"}.mdi-hvac-off:before{content:"󱖞"}.mdi-hydraulic-oil-level:before{content:"󱌤"}.mdi-hydraulic-oil-temperature:before{content:"󱌥"}.mdi-hydro-power:before{content:"󱋥"}.mdi-hydrogen-station:before{content:"󱢔"}.mdi-ice-cream:before{content:"󰠪"}.mdi-ice-cream-off:before{content:"󰹒"}.mdi-ice-pop:before{content:"󰻽"}.mdi-id-card:before{content:"󰿀"}.mdi-identifier:before{content:"󰻾"}.mdi-ideogram-cjk:before{content:"󱌱"}.mdi-ideogram-cjk-variant:before{content:"󱌲"}.mdi-image:before{content:"󰋩"}.mdi-image-album:before{content:"󰋪"}.mdi-image-area:before{content:"󰋫"}.mdi-image-area-close:before{content:"󰋬"}.mdi-image-auto-adjust:before{content:"󰿁"}.mdi-image-broken:before{content:"󰋭"}.mdi-image-broken-variant:before{content:"󰋮"}.mdi-image-check:before{content:"󱬥"}.mdi-image-check-outline:before{content:"󱬦"}.mdi-image-edit:before{content:"󱇣"}.mdi-image-edit-outline:before{content:"󱇤"}.mdi-image-filter-black-white:before{content:"󰋰"}.mdi-image-filter-center-focus:before{content:"󰋱"}.mdi-image-filter-center-focus-strong:before{content:"󰻿"}.mdi-image-filter-center-focus-strong-outline:before{content:"󰼀"}.mdi-image-filter-center-focus-weak:before{content:"󰋲"}.mdi-image-filter-drama:before{content:"󰋳"}.mdi-image-filter-drama-outline:before{content:"󱯿"}.mdi-image-filter-frames:before{content:"󰋴"}.mdi-image-filter-hdr:before{content:"󰋵"}.mdi-image-filter-hdr-outline:before{content:"󱱤"}.mdi-image-filter-none:before{content:"󰋶"}.mdi-image-filter-tilt-shift:before{content:"󰋷"}.mdi-image-filter-vintage:before{content:"󰋸"}.mdi-image-frame:before{content:"󰹉"}.mdi-image-lock:before{content:"󱪰"}.mdi-image-lock-outline:before{content:"󱪱"}.mdi-image-marker:before{content:"󱝻"}.mdi-image-marker-outline:before{content:"󱝼"}.mdi-image-minus:before{content:"󱐙"}.mdi-image-minus-outline:before{content:"󱭇"}.mdi-image-move:before{content:"󰧸"}.mdi-image-multiple:before{content:"󰋹"}.mdi-image-multiple-outline:before{content:"󰋯"}.mdi-image-off:before{content:"󰠫"}.mdi-image-off-outline:before{content:"󱇑"}.mdi-image-outline:before{content:"󰥶"}.mdi-image-plus:before{content:"󰡼"}.mdi-image-plus-outline:before{content:"󱭆"}.mdi-image-refresh:before{content:"󱧾"}.mdi-image-refresh-outline:before{content:"󱧿"}.mdi-image-remove:before{content:"󱐘"}.mdi-image-remove-outline:before{content:"󱭈"}.mdi-image-search:before{content:"󰥷"}.mdi-image-search-outline:before{content:"󰥸"}.mdi-image-size-select-actual:before{content:"󰲍"}.mdi-image-size-select-large:before{content:"󰲎"}.mdi-image-size-select-small:before{content:"󰲏"}.mdi-image-sync:before{content:"󱨀"}.mdi-image-sync-outline:before{content:"󱨁"}.mdi-image-text:before{content:"󱘍"}.mdi-import:before{content:"󰋺"}.mdi-inbox:before{content:"󰚇"}.mdi-inbox-arrow-down:before{content:"󰋻"}.mdi-inbox-arrow-down-outline:before{content:"󱉰"}.mdi-inbox-arrow-up:before{content:"󰏑"}.mdi-inbox-arrow-up-outline:before{content:"󱉱"}.mdi-inbox-full:before{content:"󱉲"}.mdi-inbox-full-outline:before{content:"󱉳"}.mdi-inbox-multiple:before{content:"󰢰"}.mdi-inbox-multiple-outline:before{content:"󰮨"}.mdi-inbox-outline:before{content:"󱉴"}.mdi-inbox-remove:before{content:"󱖟"}.mdi-inbox-remove-outline:before{content:"󱖠"}.mdi-incognito:before{content:"󰗹"}.mdi-incognito-circle:before{content:"󱐡"}.mdi-incognito-circle-off:before{content:"󱐢"}.mdi-incognito-off:before{content:"󰁵"}.mdi-induction:before{content:"󱡌"}.mdi-infinity:before{content:"󰛤"}.mdi-information:before{content:"󰋼"}.mdi-information-box:before{content:"󱱥"}.mdi-information-box-outline:before{content:"󱱦"}.mdi-information-off:before{content:"󱞌"}.mdi-information-off-outline:before{content:"󱞍"}.mdi-information-outline:before{content:"󰋽"}.mdi-information-slab-box:before{content:"󱱧"}.mdi-information-slab-box-outline:before{content:"󱱨"}.mdi-information-slab-circle:before{content:"󱱩"}.mdi-information-slab-circle-outline:before{content:"󱱪"}.mdi-information-slab-symbol:before{content:"󱱫"}.mdi-information-symbol:before{content:"󱱬"}.mdi-information-variant:before{content:"󰙎"}.mdi-information-variant-box:before{content:"󱱭"}.mdi-information-variant-box-outline:before{content:"󱱮"}.mdi-information-variant-circle:before{content:"󱱯"}.mdi-information-variant-circle-outline:before{content:"󱱰"}.mdi-instagram:before{content:"󰋾"}.mdi-instrument-triangle:before{content:"󱁎"}.mdi-integrated-circuit-chip:before{content:"󱤓"}.mdi-invert-colors:before{content:"󰌁"}.mdi-invert-colors-off:before{content:"󰹊"}.mdi-iobroker:before{content:"󱋨"}.mdi-ip:before{content:"󰩟"}.mdi-ip-network:before{content:"󰩠"}.mdi-ip-network-outline:before{content:"󰲐"}.mdi-ip-outline:before{content:"󱦂"}.mdi-ipod:before{content:"󰲑"}.mdi-iron:before{content:"󱠤"}.mdi-iron-board:before{content:"󱠸"}.mdi-iron-outline:before{content:"󱠥"}.mdi-island:before{content:"󱁏"}.mdi-iv-bag:before{content:"󱂹"}.mdi-jabber:before{content:"󰷕"}.mdi-jeepney:before{content:"󰌂"}.mdi-jellyfish:before{content:"󰼁"}.mdi-jellyfish-outline:before{content:"󰼂"}.mdi-jira:before{content:"󰌃"}.mdi-jquery:before{content:"󰡽"}.mdi-jsfiddle:before{content:"󰌄"}.mdi-jump-rope:before{content:"󱋿"}.mdi-kabaddi:before{content:"󰶇"}.mdi-kangaroo:before{content:"󱕘"}.mdi-karate:before{content:"󰠬"}.mdi-kayaking:before{content:"󰢯"}.mdi-keg:before{content:"󰌅"}.mdi-kettle:before{content:"󰗺"}.mdi-kettle-alert:before{content:"󱌗"}.mdi-kettle-alert-outline:before{content:"󱌘"}.mdi-kettle-off:before{content:"󱌛"}.mdi-kettle-off-outline:before{content:"󱌜"}.mdi-kettle-outline:before{content:"󰽖"}.mdi-kettle-pour-over:before{content:"󱜼"}.mdi-kettle-steam:before{content:"󱌙"}.mdi-kettle-steam-outline:before{content:"󱌚"}.mdi-kettlebell:before{content:"󱌀"}.mdi-key:before{content:"󰌆"}.mdi-key-alert:before{content:"󱦃"}.mdi-key-alert-outline:before{content:"󱦄"}.mdi-key-arrow-right:before{content:"󱌒"}.mdi-key-chain:before{content:"󱕴"}.mdi-key-chain-variant:before{content:"󱕵"}.mdi-key-change:before{content:"󰌇"}.mdi-key-link:before{content:"󱆟"}.mdi-key-minus:before{content:"󰌈"}.mdi-key-outline:before{content:"󰷖"}.mdi-key-plus:before{content:"󰌉"}.mdi-key-remove:before{content:"󰌊"}.mdi-key-star:before{content:"󱆞"}.mdi-key-variant:before{content:"󰌋"}.mdi-key-wireless:before{content:"󰿂"}.mdi-keyboard:before{content:"󰌌"}.mdi-keyboard-backspace:before{content:"󰌍"}.mdi-keyboard-caps:before{content:"󰌎"}.mdi-keyboard-close:before{content:"󰌏"}.mdi-keyboard-close-outline:before{content:"󱰀"}.mdi-keyboard-esc:before{content:"󱊷"}.mdi-keyboard-f1:before{content:"󱊫"}.mdi-keyboard-f10:before{content:"󱊴"}.mdi-keyboard-f11:before{content:"󱊵"}.mdi-keyboard-f12:before{content:"󱊶"}.mdi-keyboard-f2:before{content:"󱊬"}.mdi-keyboard-f3:before{content:"󱊭"}.mdi-keyboard-f4:before{content:"󱊮"}.mdi-keyboard-f5:before{content:"󱊯"}.mdi-keyboard-f6:before{content:"󱊰"}.mdi-keyboard-f7:before{content:"󱊱"}.mdi-keyboard-f8:before{content:"󱊲"}.mdi-keyboard-f9:before{content:"󱊳"}.mdi-keyboard-off:before{content:"󰌐"}.mdi-keyboard-off-outline:before{content:"󰹋"}.mdi-keyboard-outline:before{content:"󰥻"}.mdi-keyboard-return:before{content:"󰌑"}.mdi-keyboard-settings:before{content:"󰧹"}.mdi-keyboard-settings-outline:before{content:"󰧺"}.mdi-keyboard-space:before{content:"󱁐"}.mdi-keyboard-tab:before{content:"󰌒"}.mdi-keyboard-tab-reverse:before{content:"󰌥"}.mdi-keyboard-variant:before{content:"󰌓"}.mdi-khanda:before{content:"󱃽"}.mdi-kickstarter:before{content:"󰝅"}.mdi-kite:before{content:"󱦅"}.mdi-kite-outline:before{content:"󱦆"}.mdi-kitesurfing:before{content:"󱝄"}.mdi-klingon:before{content:"󱍛"}.mdi-knife:before{content:"󰧻"}.mdi-knife-military:before{content:"󰧼"}.mdi-knob:before{content:"󱮖"}.mdi-koala:before{content:"󱜿"}.mdi-kodi:before{content:"󰌔"}.mdi-kubernetes:before{content:"󱃾"}.mdi-label:before{content:"󰌕"}.mdi-label-multiple:before{content:"󱍵"}.mdi-label-multiple-outline:before{content:"󱍶"}.mdi-label-off:before{content:"󰫋"}.mdi-label-off-outline:before{content:"󰫌"}.mdi-label-outline:before{content:"󰌖"}.mdi-label-percent:before{content:"󱋪"}.mdi-label-percent-outline:before{content:"󱋫"}.mdi-label-variant:before{content:"󰫍"}.mdi-label-variant-outline:before{content:"󰫎"}.mdi-ladder:before{content:"󱖢"}.mdi-ladybug:before{content:"󰠭"}.mdi-lambda:before{content:"󰘧"}.mdi-lamp:before{content:"󰚵"}.mdi-lamp-outline:before{content:"󱟐"}.mdi-lamps:before{content:"󱕶"}.mdi-lamps-outline:before{content:"󱟑"}.mdi-lan:before{content:"󰌗"}.mdi-lan-check:before{content:"󱊪"}.mdi-lan-connect:before{content:"󰌘"}.mdi-lan-disconnect:before{content:"󰌙"}.mdi-lan-pending:before{content:"󰌚"}.mdi-land-fields:before{content:"󱪲"}.mdi-land-plots:before{content:"󱪳"}.mdi-land-plots-circle:before{content:"󱪴"}.mdi-land-plots-circle-variant:before{content:"󱪵"}.mdi-land-plots-marker:before{content:"󱱝"}.mdi-land-rows-horizontal:before{content:"󱪶"}.mdi-land-rows-vertical:before{content:"󱪷"}.mdi-landslide:before{content:"󱩈"}.mdi-landslide-outline:before{content:"󱩉"}.mdi-language-c:before{content:"󰙱"}.mdi-language-cpp:before{content:"󰙲"}.mdi-language-csharp:before{content:"󰌛"}.mdi-language-css3:before{content:"󰌜"}.mdi-language-fortran:before{content:"󱈚"}.mdi-language-go:before{content:"󰟓"}.mdi-language-haskell:before{content:"󰲒"}.mdi-language-html5:before{content:"󰌝"}.mdi-language-java:before{content:"󰬷"}.mdi-language-javascript:before{content:"󰌞"}.mdi-language-kotlin:before{content:"󱈙"}.mdi-language-lua:before{content:"󰢱"}.mdi-language-markdown:before{content:"󰍔"}.mdi-language-markdown-outline:before{content:"󰽛"}.mdi-language-php:before{content:"󰌟"}.mdi-language-python:before{content:"󰌠"}.mdi-language-r:before{content:"󰟔"}.mdi-language-ruby:before{content:"󰴭"}.mdi-language-ruby-on-rails:before{content:"󰫏"}.mdi-language-rust:before{content:"󱘗"}.mdi-language-swift:before{content:"󰛥"}.mdi-language-typescript:before{content:"󰛦"}.mdi-language-xaml:before{content:"󰙳"}.mdi-laptop:before{content:"󰌢"}.mdi-laptop-account:before{content:"󱩊"}.mdi-laptop-off:before{content:"󰛧"}.mdi-laravel:before{content:"󰫐"}.mdi-laser-pointer:before{content:"󱒄"}.mdi-lasso:before{content:"󰼃"}.mdi-lastpass:before{content:"󰑆"}.mdi-latitude:before{content:"󰽗"}.mdi-launch:before{content:"󰌧"}.mdi-lava-lamp:before{content:"󰟕"}.mdi-layers:before{content:"󰌨"}.mdi-layers-edit:before{content:"󱢒"}.mdi-layers-minus:before{content:"󰹌"}.mdi-layers-off:before{content:"󰌩"}.mdi-layers-off-outline:before{content:"󰧽"}.mdi-layers-outline:before{content:"󰧾"}.mdi-layers-plus:before{content:"󰹍"}.mdi-layers-remove:before{content:"󰹎"}.mdi-layers-search:before{content:"󱈆"}.mdi-layers-search-outline:before{content:"󱈇"}.mdi-layers-triple:before{content:"󰽘"}.mdi-layers-triple-outline:before{content:"󰽙"}.mdi-lead-pencil:before{content:"󰙏"}.mdi-leaf:before{content:"󰌪"}.mdi-leaf-circle:before{content:"󱤅"}.mdi-leaf-circle-outline:before{content:"󱤆"}.mdi-leaf-maple:before{content:"󰲓"}.mdi-leaf-maple-off:before{content:"󱋚"}.mdi-leaf-off:before{content:"󱋙"}.mdi-leak:before{content:"󰷗"}.mdi-leak-off:before{content:"󰷘"}.mdi-lectern:before{content:"󱫰"}.mdi-led-off:before{content:"󰌫"}.mdi-led-on:before{content:"󰌬"}.mdi-led-outline:before{content:"󰌭"}.mdi-led-strip:before{content:"󰟖"}.mdi-led-strip-variant:before{content:"󱁑"}.mdi-led-strip-variant-off:before{content:"󱩋"}.mdi-led-variant-off:before{content:"󰌮"}.mdi-led-variant-on:before{content:"󰌯"}.mdi-led-variant-outline:before{content:"󰌰"}.mdi-leek:before{content:"󱅽"}.mdi-less-than:before{content:"󰥼"}.mdi-less-than-or-equal:before{content:"󰥽"}.mdi-library:before{content:"󰌱"}.mdi-library-outline:before{content:"󱨢"}.mdi-library-shelves:before{content:"󰮩"}.mdi-license:before{content:"󰿃"}.mdi-lifebuoy:before{content:"󰡾"}.mdi-light-flood-down:before{content:"󱦇"}.mdi-light-flood-up:before{content:"󱦈"}.mdi-light-recessed:before{content:"󱞛"}.mdi-light-switch:before{content:"󰥾"}.mdi-light-switch-off:before{content:"󱨤"}.mdi-lightbulb:before{content:"󰌵"}.mdi-lightbulb-alert:before{content:"󱧡"}.mdi-lightbulb-alert-outline:before{content:"󱧢"}.mdi-lightbulb-auto:before{content:"󱠀"}.mdi-lightbulb-auto-outline:before{content:"󱠁"}.mdi-lightbulb-cfl:before{content:"󱈈"}.mdi-lightbulb-cfl-off:before{content:"󱈉"}.mdi-lightbulb-cfl-spiral:before{content:"󱉵"}.mdi-lightbulb-cfl-spiral-off:before{content:"󱋃"}.mdi-lightbulb-fluorescent-tube:before{content:"󱠄"}.mdi-lightbulb-fluorescent-tube-outline:before{content:"󱠅"}.mdi-lightbulb-group:before{content:"󱉓"}.mdi-lightbulb-group-off:before{content:"󱋍"}.mdi-lightbulb-group-off-outline:before{content:"󱋎"}.mdi-lightbulb-group-outline:before{content:"󱉔"}.mdi-lightbulb-multiple:before{content:"󱉕"}.mdi-lightbulb-multiple-off:before{content:"󱋏"}.mdi-lightbulb-multiple-off-outline:before{content:"󱋐"}.mdi-lightbulb-multiple-outline:before{content:"󱉖"}.mdi-lightbulb-night:before{content:"󱩌"}.mdi-lightbulb-night-outline:before{content:"󱩍"}.mdi-lightbulb-off:before{content:"󰹏"}.mdi-lightbulb-off-outline:before{content:"󰹐"}.mdi-lightbulb-on:before{content:"󰛨"}.mdi-lightbulb-on-10:before{content:"󱩎"}.mdi-lightbulb-on-20:before{content:"󱩏"}.mdi-lightbulb-on-30:before{content:"󱩐"}.mdi-lightbulb-on-40:before{content:"󱩑"}.mdi-lightbulb-on-50:before{content:"󱩒"}.mdi-lightbulb-on-60:before{content:"󱩓"}.mdi-lightbulb-on-70:before{content:"󱩔"}.mdi-lightbulb-on-80:before{content:"󱩕"}.mdi-lightbulb-on-90:before{content:"󱩖"}.mdi-lightbulb-on-outline:before{content:"󰛩"}.mdi-lightbulb-outline:before{content:"󰌶"}.mdi-lightbulb-question:before{content:"󱧣"}.mdi-lightbulb-question-outline:before{content:"󱧤"}.mdi-lightbulb-spot:before{content:"󱟴"}.mdi-lightbulb-spot-off:before{content:"󱟵"}.mdi-lightbulb-variant:before{content:"󱠂"}.mdi-lightbulb-variant-outline:before{content:"󱠃"}.mdi-lighthouse:before{content:"󰧿"}.mdi-lighthouse-on:before{content:"󰨀"}.mdi-lightning-bolt:before{content:"󱐋"}.mdi-lightning-bolt-circle:before{content:"󰠠"}.mdi-lightning-bolt-outline:before{content:"󱐌"}.mdi-line-scan:before{content:"󰘤"}.mdi-lingerie:before{content:"󱑶"}.mdi-link:before{content:"󰌷"}.mdi-link-box:before{content:"󰴚"}.mdi-link-box-outline:before{content:"󰴛"}.mdi-link-box-variant:before{content:"󰴜"}.mdi-link-box-variant-outline:before{content:"󰴝"}.mdi-link-lock:before{content:"󱂺"}.mdi-link-off:before{content:"󰌸"}.mdi-link-plus:before{content:"󰲔"}.mdi-link-variant:before{content:"󰌹"}.mdi-link-variant-minus:before{content:"󱃿"}.mdi-link-variant-off:before{content:"󰌺"}.mdi-link-variant-plus:before{content:"󱄀"}.mdi-link-variant-remove:before{content:"󱄁"}.mdi-linkedin:before{content:"󰌻"}.mdi-linux:before{content:"󰌽"}.mdi-linux-mint:before{content:"󰣭"}.mdi-lipstick:before{content:"󱎵"}.mdi-liquid-spot:before{content:"󱠦"}.mdi-liquor:before{content:"󱤞"}.mdi-list-box:before{content:"󱭻"}.mdi-list-box-outline:before{content:"󱭼"}.mdi-list-status:before{content:"󱖫"}.mdi-litecoin:before{content:"󰩡"}.mdi-loading:before{content:"󰝲"}.mdi-location-enter:before{content:"󰿄"}.mdi-location-exit:before{content:"󰿅"}.mdi-lock:before{content:"󰌾"}.mdi-lock-alert:before{content:"󰣮"}.mdi-lock-alert-outline:before{content:"󱗑"}.mdi-lock-check:before{content:"󱎚"}.mdi-lock-check-outline:before{content:"󱚨"}.mdi-lock-clock:before{content:"󰥿"}.mdi-lock-minus:before{content:"󱚩"}.mdi-lock-minus-outline:before{content:"󱚪"}.mdi-lock-off:before{content:"󱙱"}.mdi-lock-off-outline:before{content:"󱙲"}.mdi-lock-open:before{content:"󰌿"}.mdi-lock-open-alert:before{content:"󱎛"}.mdi-lock-open-alert-outline:before{content:"󱗒"}.mdi-lock-open-check:before{content:"󱎜"}.mdi-lock-open-check-outline:before{content:"󱚫"}.mdi-lock-open-minus:before{content:"󱚬"}.mdi-lock-open-minus-outline:before{content:"󱚭"}.mdi-lock-open-outline:before{content:"󰍀"}.mdi-lock-open-plus:before{content:"󱚮"}.mdi-lock-open-plus-outline:before{content:"󱚯"}.mdi-lock-open-remove:before{content:"󱚰"}.mdi-lock-open-remove-outline:before{content:"󱚱"}.mdi-lock-open-variant:before{content:"󰿆"}.mdi-lock-open-variant-outline:before{content:"󰿇"}.mdi-lock-outline:before{content:"󰍁"}.mdi-lock-pattern:before{content:"󰛪"}.mdi-lock-percent:before{content:"󱰒"}.mdi-lock-percent-open:before{content:"󱰓"}.mdi-lock-percent-open-outline:before{content:"󱰔"}.mdi-lock-percent-open-variant:before{content:"󱰕"}.mdi-lock-percent-open-variant-outline:before{content:"󱰖"}.mdi-lock-percent-outline:before{content:"󱰗"}.mdi-lock-plus:before{content:"󰗻"}.mdi-lock-plus-outline:before{content:"󱚲"}.mdi-lock-question:before{content:"󰣯"}.mdi-lock-remove:before{content:"󱚳"}.mdi-lock-remove-outline:before{content:"󱚴"}.mdi-lock-reset:before{content:"󰝳"}.mdi-lock-smart:before{content:"󰢲"}.mdi-locker:before{content:"󰟗"}.mdi-locker-multiple:before{content:"󰟘"}.mdi-login:before{content:"󰍂"}.mdi-login-variant:before{content:"󰗼"}.mdi-logout:before{content:"󰍃"}.mdi-logout-variant:before{content:"󰗽"}.mdi-longitude:before{content:"󰽚"}.mdi-looks:before{content:"󰍄"}.mdi-lotion:before{content:"󱖂"}.mdi-lotion-outline:before{content:"󱖃"}.mdi-lotion-plus:before{content:"󱖄"}.mdi-lotion-plus-outline:before{content:"󱖅"}.mdi-loupe:before{content:"󰍅"}.mdi-lumx:before{content:"󰍆"}.mdi-lungs:before{content:"󱂄"}.mdi-mace:before{content:"󱡃"}.mdi-magazine-pistol:before{content:"󰌤"}.mdi-magazine-rifle:before{content:"󰌣"}.mdi-magic-staff:before{content:"󱡄"}.mdi-magnet:before{content:"󰍇"}.mdi-magnet-on:before{content:"󰍈"}.mdi-magnify:before{content:"󰍉"}.mdi-magnify-close:before{content:"󰦀"}.mdi-magnify-expand:before{content:"󱡴"}.mdi-magnify-minus:before{content:"󰍊"}.mdi-magnify-minus-cursor:before{content:"󰩢"}.mdi-magnify-minus-outline:before{content:"󰛬"}.mdi-magnify-plus:before{content:"󰍋"}.mdi-magnify-plus-cursor:before{content:"󰩣"}.mdi-magnify-plus-outline:before{content:"󰛭"}.mdi-magnify-remove-cursor:before{content:"󱈌"}.mdi-magnify-remove-outline:before{content:"󱈍"}.mdi-magnify-scan:before{content:"󱉶"}.mdi-mail:before{content:"󰺻"}.mdi-mailbox:before{content:"󰛮"}.mdi-mailbox-open:before{content:"󰶈"}.mdi-mailbox-open-outline:before{content:"󰶉"}.mdi-mailbox-open-up:before{content:"󰶊"}.mdi-mailbox-open-up-outline:before{content:"󰶋"}.mdi-mailbox-outline:before{content:"󰶌"}.mdi-mailbox-up:before{content:"󰶍"}.mdi-mailbox-up-outline:before{content:"󰶎"}.mdi-manjaro:before{content:"󱘊"}.mdi-map:before{content:"󰍍"}.mdi-map-check:before{content:"󰺼"}.mdi-map-check-outline:before{content:"󰺽"}.mdi-map-clock:before{content:"󰴞"}.mdi-map-clock-outline:before{content:"󰴟"}.mdi-map-legend:before{content:"󰨁"}.mdi-map-marker:before{content:"󰍎"}.mdi-map-marker-account:before{content:"󱣣"}.mdi-map-marker-account-outline:before{content:"󱣤"}.mdi-map-marker-alert:before{content:"󰼅"}.mdi-map-marker-alert-outline:before{content:"󰼆"}.mdi-map-marker-check:before{content:"󰲕"}.mdi-map-marker-check-outline:before{content:"󱋻"}.mdi-map-marker-circle:before{content:"󰍏"}.mdi-map-marker-distance:before{content:"󰣰"}.mdi-map-marker-down:before{content:"󱄂"}.mdi-map-marker-left:before{content:"󱋛"}.mdi-map-marker-left-outline:before{content:"󱋝"}.mdi-map-marker-minus:before{content:"󰙐"}.mdi-map-marker-minus-outline:before{content:"󱋹"}.mdi-map-marker-multiple:before{content:"󰍐"}.mdi-map-marker-multiple-outline:before{content:"󱉷"}.mdi-map-marker-off:before{content:"󰍑"}.mdi-map-marker-off-outline:before{content:"󱋽"}.mdi-map-marker-outline:before{content:"󰟙"}.mdi-map-marker-path:before{content:"󰴠"}.mdi-map-marker-plus:before{content:"󰙑"}.mdi-map-marker-plus-outline:before{content:"󱋸"}.mdi-map-marker-question:before{content:"󰼇"}.mdi-map-marker-question-outline:before{content:"󰼈"}.mdi-map-marker-radius:before{content:"󰍒"}.mdi-map-marker-radius-outline:before{content:"󱋼"}.mdi-map-marker-remove:before{content:"󰼉"}.mdi-map-marker-remove-outline:before{content:"󱋺"}.mdi-map-marker-remove-variant:before{content:"󰼊"}.mdi-map-marker-right:before{content:"󱋜"}.mdi-map-marker-right-outline:before{content:"󱋞"}.mdi-map-marker-star:before{content:"󱘈"}.mdi-map-marker-star-outline:before{content:"󱘉"}.mdi-map-marker-up:before{content:"󱄃"}.mdi-map-minus:before{content:"󰦁"}.mdi-map-outline:before{content:"󰦂"}.mdi-map-plus:before{content:"󰦃"}.mdi-map-search:before{content:"󰦄"}.mdi-map-search-outline:before{content:"󰦅"}.mdi-mapbox:before{content:"󰮪"}.mdi-margin:before{content:"󰍓"}.mdi-marker:before{content:"󰙒"}.mdi-marker-cancel:before{content:"󰷙"}.mdi-marker-check:before{content:"󰍕"}.mdi-mastodon:before{content:"󰫑"}.mdi-material-design:before{content:"󰦆"}.mdi-material-ui:before{content:"󰍗"}.mdi-math-compass:before{content:"󰍘"}.mdi-math-cos:before{content:"󰲖"}.mdi-math-integral:before{content:"󰿈"}.mdi-math-integral-box:before{content:"󰿉"}.mdi-math-log:before{content:"󱂅"}.mdi-math-norm:before{content:"󰿊"}.mdi-math-norm-box:before{content:"󰿋"}.mdi-math-sin:before{content:"󰲗"}.mdi-math-tan:before{content:"󰲘"}.mdi-matrix:before{content:"󰘨"}.mdi-medal:before{content:"󰦇"}.mdi-medal-outline:before{content:"󱌦"}.mdi-medical-bag:before{content:"󰛯"}.mdi-medical-cotton-swab:before{content:"󱪸"}.mdi-medication:before{content:"󱬔"}.mdi-medication-outline:before{content:"󱬕"}.mdi-meditation:before{content:"󱅻"}.mdi-memory:before{content:"󰍛"}.mdi-menorah:before{content:"󱟔"}.mdi-menorah-fire:before{content:"󱟕"}.mdi-menu:before{content:"󰍜"}.mdi-menu-down:before{content:"󰍝"}.mdi-menu-down-outline:before{content:"󰚶"}.mdi-menu-left:before{content:"󰍞"}.mdi-menu-left-outline:before{content:"󰨂"}.mdi-menu-open:before{content:"󰮫"}.mdi-menu-right:before{content:"󰍟"}.mdi-menu-right-outline:before{content:"󰨃"}.mdi-menu-swap:before{content:"󰩤"}.mdi-menu-swap-outline:before{content:"󰩥"}.mdi-menu-up:before{content:"󰍠"}.mdi-menu-up-outline:before{content:"󰚷"}.mdi-merge:before{content:"󰽜"}.mdi-message:before{content:"󰍡"}.mdi-message-alert:before{content:"󰍢"}.mdi-message-alert-outline:before{content:"󰨄"}.mdi-message-arrow-left:before{content:"󱋲"}.mdi-message-arrow-left-outline:before{content:"󱋳"}.mdi-message-arrow-right:before{content:"󱋴"}.mdi-message-arrow-right-outline:before{content:"󱋵"}.mdi-message-badge:before{content:"󱥁"}.mdi-message-badge-outline:before{content:"󱥂"}.mdi-message-bookmark:before{content:"󱖬"}.mdi-message-bookmark-outline:before{content:"󱖭"}.mdi-message-bulleted:before{content:"󰚢"}.mdi-message-bulleted-off:before{content:"󰚣"}.mdi-message-check:before{content:"󱮊"}.mdi-message-check-outline:before{content:"󱮋"}.mdi-message-cog:before{content:"󰛱"}.mdi-message-cog-outline:before{content:"󱅲"}.mdi-message-draw:before{content:"󰍣"}.mdi-message-fast:before{content:"󱧌"}.mdi-message-fast-outline:before{content:"󱧍"}.mdi-message-flash:before{content:"󱖩"}.mdi-message-flash-outline:before{content:"󱖪"}.mdi-message-image:before{content:"󰍤"}.mdi-message-image-outline:before{content:"󱅬"}.mdi-message-lock:before{content:"󰿌"}.mdi-message-lock-outline:before{content:"󱅭"}.mdi-message-minus:before{content:"󱅮"}.mdi-message-minus-outline:before{content:"󱅯"}.mdi-message-off:before{content:"󱙍"}.mdi-message-off-outline:before{content:"󱙎"}.mdi-message-outline:before{content:"󰍥"}.mdi-message-plus:before{content:"󰙓"}.mdi-message-plus-outline:before{content:"󱂻"}.mdi-message-processing:before{content:"󰍦"}.mdi-message-processing-outline:before{content:"󱅰"}.mdi-message-question:before{content:"󱜺"}.mdi-message-question-outline:before{content:"󱜻"}.mdi-message-reply:before{content:"󰍧"}.mdi-message-reply-outline:before{content:"󱜽"}.mdi-message-reply-text:before{content:"󰍨"}.mdi-message-reply-text-outline:before{content:"󱜾"}.mdi-message-settings:before{content:"󰛰"}.mdi-message-settings-outline:before{content:"󱅱"}.mdi-message-star:before{content:"󰚚"}.mdi-message-star-outline:before{content:"󱉐"}.mdi-message-text:before{content:"󰍩"}.mdi-message-text-clock:before{content:"󱅳"}.mdi-message-text-clock-outline:before{content:"󱅴"}.mdi-message-text-fast:before{content:"󱧎"}.mdi-message-text-fast-outline:before{content:"󱧏"}.mdi-message-text-lock:before{content:"󰿍"}.mdi-message-text-lock-outline:before{content:"󱅵"}.mdi-message-text-outline:before{content:"󰍪"}.mdi-message-video:before{content:"󰍫"}.mdi-meteor:before{content:"󰘩"}.mdi-meter-electric:before{content:"󱩗"}.mdi-meter-electric-outline:before{content:"󱩘"}.mdi-meter-gas:before{content:"󱩙"}.mdi-meter-gas-outline:before{content:"󱩚"}.mdi-metronome:before{content:"󰟚"}.mdi-metronome-tick:before{content:"󰟛"}.mdi-micro-sd:before{content:"󰟜"}.mdi-microphone:before{content:"󰍬"}.mdi-microphone-message:before{content:"󰔊"}.mdi-microphone-message-off:before{content:"󰔋"}.mdi-microphone-minus:before{content:"󰢳"}.mdi-microphone-off:before{content:"󰍭"}.mdi-microphone-outline:before{content:"󰍮"}.mdi-microphone-plus:before{content:"󰢴"}.mdi-microphone-question:before{content:"󱦉"}.mdi-microphone-question-outline:before{content:"󱦊"}.mdi-microphone-settings:before{content:"󰍯"}.mdi-microphone-variant:before{content:"󰍰"}.mdi-microphone-variant-off:before{content:"󰍱"}.mdi-microscope:before{content:"󰙔"}.mdi-microsoft:before{content:"󰍲"}.mdi-microsoft-access:before{content:"󱎎"}.mdi-microsoft-azure:before{content:"󰠅"}.mdi-microsoft-azure-devops:before{content:"󰿕"}.mdi-microsoft-bing:before{content:"󰂤"}.mdi-microsoft-dynamics-365:before{content:"󰦈"}.mdi-microsoft-edge:before{content:"󰇩"}.mdi-microsoft-excel:before{content:"󱎏"}.mdi-microsoft-internet-explorer:before{content:"󰌀"}.mdi-microsoft-office:before{content:"󰏆"}.mdi-microsoft-onedrive:before{content:"󰏊"}.mdi-microsoft-onenote:before{content:"󰝇"}.mdi-microsoft-outlook:before{content:"󰴢"}.mdi-microsoft-powerpoint:before{content:"󱎐"}.mdi-microsoft-sharepoint:before{content:"󱎑"}.mdi-microsoft-teams:before{content:"󰊻"}.mdi-microsoft-visual-studio:before{content:"󰘐"}.mdi-microsoft-visual-studio-code:before{content:"󰨞"}.mdi-microsoft-windows:before{content:"󰖳"}.mdi-microsoft-windows-classic:before{content:"󰨡"}.mdi-microsoft-word:before{content:"󱎒"}.mdi-microsoft-xbox:before{content:"󰖹"}.mdi-microsoft-xbox-controller:before{content:"󰖺"}.mdi-microsoft-xbox-controller-battery-alert:before{content:"󰝋"}.mdi-microsoft-xbox-controller-battery-charging:before{content:"󰨢"}.mdi-microsoft-xbox-controller-battery-empty:before{content:"󰝌"}.mdi-microsoft-xbox-controller-battery-full:before{content:"󰝍"}.mdi-microsoft-xbox-controller-battery-low:before{content:"󰝎"}.mdi-microsoft-xbox-controller-battery-medium:before{content:"󰝏"}.mdi-microsoft-xbox-controller-battery-unknown:before{content:"󰝐"}.mdi-microsoft-xbox-controller-menu:before{content:"󰹯"}.mdi-microsoft-xbox-controller-off:before{content:"󰖻"}.mdi-microsoft-xbox-controller-view:before{content:"󰹰"}.mdi-microwave:before{content:"󰲙"}.mdi-microwave-off:before{content:"󱐣"}.mdi-middleware:before{content:"󰽝"}.mdi-middleware-outline:before{content:"󰽞"}.mdi-midi:before{content:"󰣱"}.mdi-midi-port:before{content:"󰣲"}.mdi-mine:before{content:"󰷚"}.mdi-minecraft:before{content:"󰍳"}.mdi-mini-sd:before{content:"󰨅"}.mdi-minidisc:before{content:"󰨆"}.mdi-minus:before{content:"󰍴"}.mdi-minus-box:before{content:"󰍵"}.mdi-minus-box-multiple:before{content:"󱅁"}.mdi-minus-box-multiple-outline:before{content:"󱅂"}.mdi-minus-box-outline:before{content:"󰛲"}.mdi-minus-circle:before{content:"󰍶"}.mdi-minus-circle-multiple:before{content:"󰍚"}.mdi-minus-circle-multiple-outline:before{content:"󰫓"}.mdi-minus-circle-off:before{content:"󱑙"}.mdi-minus-circle-off-outline:before{content:"󱑚"}.mdi-minus-circle-outline:before{content:"󰍷"}.mdi-minus-network:before{content:"󰍸"}.mdi-minus-network-outline:before{content:"󰲚"}.mdi-minus-thick:before{content:"󱘹"}.mdi-mirror:before{content:"󱇽"}.mdi-mirror-rectangle:before{content:"󱞟"}.mdi-mirror-variant:before{content:"󱞠"}.mdi-mixed-martial-arts:before{content:"󰶏"}.mdi-mixed-reality:before{content:"󰡿"}.mdi-molecule:before{content:"󰮬"}.mdi-molecule-co:before{content:"󱋾"}.mdi-molecule-co2:before{content:"󰟤"}.mdi-monitor:before{content:"󰍹"}.mdi-monitor-account:before{content:"󱩛"}.mdi-monitor-arrow-down:before{content:"󱧐"}.mdi-monitor-arrow-down-variant:before{content:"󱧑"}.mdi-monitor-cellphone:before{content:"󰦉"}.mdi-monitor-cellphone-star:before{content:"󰦊"}.mdi-monitor-dashboard:before{content:"󰨇"}.mdi-monitor-edit:before{content:"󱋆"}.mdi-monitor-eye:before{content:"󱎴"}.mdi-monitor-lock:before{content:"󰷛"}.mdi-monitor-multiple:before{content:"󰍺"}.mdi-monitor-off:before{content:"󰶐"}.mdi-monitor-screenshot:before{content:"󰹑"}.mdi-monitor-share:before{content:"󱒃"}.mdi-monitor-shimmer:before{content:"󱄄"}.mdi-monitor-small:before{content:"󱡶"}.mdi-monitor-speaker:before{content:"󰽟"}.mdi-monitor-speaker-off:before{content:"󰽠"}.mdi-monitor-star:before{content:"󰷜"}.mdi-monitor-vertical:before{content:"󱰳"}.mdi-moon-first-quarter:before{content:"󰽡"}.mdi-moon-full:before{content:"󰽢"}.mdi-moon-last-quarter:before{content:"󰽣"}.mdi-moon-new:before{content:"󰽤"}.mdi-moon-waning-crescent:before{content:"󰽥"}.mdi-moon-waning-gibbous:before{content:"󰽦"}.mdi-moon-waxing-crescent:before{content:"󰽧"}.mdi-moon-waxing-gibbous:before{content:"󰽨"}.mdi-moped:before{content:"󱂆"}.mdi-moped-electric:before{content:"󱖷"}.mdi-moped-electric-outline:before{content:"󱖸"}.mdi-moped-outline:before{content:"󱖹"}.mdi-more:before{content:"󰍻"}.mdi-mortar-pestle:before{content:"󱝈"}.mdi-mortar-pestle-plus:before{content:"󰏱"}.mdi-mosque:before{content:"󰵅"}.mdi-mosque-outline:before{content:"󱠧"}.mdi-mother-heart:before{content:"󱌔"}.mdi-mother-nurse:before{content:"󰴡"}.mdi-motion:before{content:"󱖲"}.mdi-motion-outline:before{content:"󱖳"}.mdi-motion-pause:before{content:"󱖐"}.mdi-motion-pause-outline:before{content:"󱖒"}.mdi-motion-play:before{content:"󱖏"}.mdi-motion-play-outline:before{content:"󱖑"}.mdi-motion-sensor:before{content:"󰶑"}.mdi-motion-sensor-off:before{content:"󱐵"}.mdi-motorbike:before{content:"󰍼"}.mdi-motorbike-electric:before{content:"󱖺"}.mdi-motorbike-off:before{content:"󱬖"}.mdi-mouse:before{content:"󰍽"}.mdi-mouse-bluetooth:before{content:"󰦋"}.mdi-mouse-move-down:before{content:"󱕐"}.mdi-mouse-move-up:before{content:"󱕑"}.mdi-mouse-move-vertical:before{content:"󱕒"}.mdi-mouse-off:before{content:"󰍾"}.mdi-mouse-variant:before{content:"󰍿"}.mdi-mouse-variant-off:before{content:"󰎀"}.mdi-move-resize:before{content:"󰙕"}.mdi-move-resize-variant:before{content:"󰙖"}.mdi-movie:before{content:"󰎁"}.mdi-movie-check:before{content:"󱛳"}.mdi-movie-check-outline:before{content:"󱛴"}.mdi-movie-cog:before{content:"󱛵"}.mdi-movie-cog-outline:before{content:"󱛶"}.mdi-movie-edit:before{content:"󱄢"}.mdi-movie-edit-outline:before{content:"󱄣"}.mdi-movie-filter:before{content:"󱄤"}.mdi-movie-filter-outline:before{content:"󱄥"}.mdi-movie-minus:before{content:"󱛷"}.mdi-movie-minus-outline:before{content:"󱛸"}.mdi-movie-off:before{content:"󱛹"}.mdi-movie-off-outline:before{content:"󱛺"}.mdi-movie-open:before{content:"󰿎"}.mdi-movie-open-check:before{content:"󱛻"}.mdi-movie-open-check-outline:before{content:"󱛼"}.mdi-movie-open-cog:before{content:"󱛽"}.mdi-movie-open-cog-outline:before{content:"󱛾"}.mdi-movie-open-edit:before{content:"󱛿"}.mdi-movie-open-edit-outline:before{content:"󱜀"}.mdi-movie-open-minus:before{content:"󱜁"}.mdi-movie-open-minus-outline:before{content:"󱜂"}.mdi-movie-open-off:before{content:"󱜃"}.mdi-movie-open-off-outline:before{content:"󱜄"}.mdi-movie-open-outline:before{content:"󰿏"}.mdi-movie-open-play:before{content:"󱜅"}.mdi-movie-open-play-outline:before{content:"󱜆"}.mdi-movie-open-plus:before{content:"󱜇"}.mdi-movie-open-plus-outline:before{content:"󱜈"}.mdi-movie-open-remove:before{content:"󱜉"}.mdi-movie-open-remove-outline:before{content:"󱜊"}.mdi-movie-open-settings:before{content:"󱜋"}.mdi-movie-open-settings-outline:before{content:"󱜌"}.mdi-movie-open-star:before{content:"󱜍"}.mdi-movie-open-star-outline:before{content:"󱜎"}.mdi-movie-outline:before{content:"󰷝"}.mdi-movie-play:before{content:"󱜏"}.mdi-movie-play-outline:before{content:"󱜐"}.mdi-movie-plus:before{content:"󱜑"}.mdi-movie-plus-outline:before{content:"󱜒"}.mdi-movie-remove:before{content:"󱜓"}.mdi-movie-remove-outline:before{content:"󱜔"}.mdi-movie-roll:before{content:"󰟞"}.mdi-movie-search:before{content:"󱇒"}.mdi-movie-search-outline:before{content:"󱇓"}.mdi-movie-settings:before{content:"󱜕"}.mdi-movie-settings-outline:before{content:"󱜖"}.mdi-movie-star:before{content:"󱜗"}.mdi-movie-star-outline:before{content:"󱜘"}.mdi-mower:before{content:"󱙯"}.mdi-mower-bag:before{content:"󱙰"}.mdi-mower-bag-on:before{content:"󱭠"}.mdi-mower-on:before{content:"󱭟"}.mdi-muffin:before{content:"󰦌"}.mdi-multicast:before{content:"󱢓"}.mdi-multimedia:before{content:"󱮗"}.mdi-multiplication:before{content:"󰎂"}.mdi-multiplication-box:before{content:"󰎃"}.mdi-mushroom:before{content:"󰟟"}.mdi-mushroom-off:before{content:"󱏺"}.mdi-mushroom-off-outline:before{content:"󱏻"}.mdi-mushroom-outline:before{content:"󰟠"}.mdi-music:before{content:"󰝚"}.mdi-music-accidental-double-flat:before{content:"󰽩"}.mdi-music-accidental-double-sharp:before{content:"󰽪"}.mdi-music-accidental-flat:before{content:"󰽫"}.mdi-music-accidental-natural:before{content:"󰽬"}.mdi-music-accidental-sharp:before{content:"󰽭"}.mdi-music-box:before{content:"󰎄"}.mdi-music-box-multiple:before{content:"󰌳"}.mdi-music-box-multiple-outline:before{content:"󰼄"}.mdi-music-box-outline:before{content:"󰎅"}.mdi-music-circle:before{content:"󰎆"}.mdi-music-circle-outline:before{content:"󰫔"}.mdi-music-clef-alto:before{content:"󰽮"}.mdi-music-clef-bass:before{content:"󰽯"}.mdi-music-clef-treble:before{content:"󰽰"}.mdi-music-note:before{content:"󰎇"}.mdi-music-note-bluetooth:before{content:"󰗾"}.mdi-music-note-bluetooth-off:before{content:"󰗿"}.mdi-music-note-eighth:before{content:"󰎈"}.mdi-music-note-eighth-dotted:before{content:"󰽱"}.mdi-music-note-half:before{content:"󰎉"}.mdi-music-note-half-dotted:before{content:"󰽲"}.mdi-music-note-minus:before{content:"󱮉"}.mdi-music-note-off:before{content:"󰎊"}.mdi-music-note-off-outline:before{content:"󰽳"}.mdi-music-note-outline:before{content:"󰽴"}.mdi-music-note-plus:before{content:"󰷞"}.mdi-music-note-quarter:before{content:"󰎋"}.mdi-music-note-quarter-dotted:before{content:"󰽵"}.mdi-music-note-sixteenth:before{content:"󰎌"}.mdi-music-note-sixteenth-dotted:before{content:"󰽶"}.mdi-music-note-whole:before{content:"󰎍"}.mdi-music-note-whole-dotted:before{content:"󰽷"}.mdi-music-off:before{content:"󰝛"}.mdi-music-rest-eighth:before{content:"󰽸"}.mdi-music-rest-half:before{content:"󰽹"}.mdi-music-rest-quarter:before{content:"󰽺"}.mdi-music-rest-sixteenth:before{content:"󰽻"}.mdi-music-rest-whole:before{content:"󰽼"}.mdi-mustache:before{content:"󱗞"}.mdi-nail:before{content:"󰷟"}.mdi-nas:before{content:"󰣳"}.mdi-nativescript:before{content:"󰢀"}.mdi-nature:before{content:"󰎎"}.mdi-nature-outline:before{content:"󱱱"}.mdi-nature-people:before{content:"󰎏"}.mdi-nature-people-outline:before{content:"󱱲"}.mdi-navigation:before{content:"󰎐"}.mdi-navigation-outline:before{content:"󱘇"}.mdi-navigation-variant:before{content:"󱣰"}.mdi-navigation-variant-outline:before{content:"󱣱"}.mdi-near-me:before{content:"󰗍"}.mdi-necklace:before{content:"󰼋"}.mdi-needle:before{content:"󰎑"}.mdi-needle-off:before{content:"󱧒"}.mdi-netflix:before{content:"󰝆"}.mdi-network:before{content:"󰛳"}.mdi-network-off:before{content:"󰲛"}.mdi-network-off-outline:before{content:"󰲜"}.mdi-network-outline:before{content:"󰲝"}.mdi-network-pos:before{content:"󱫋"}.mdi-network-strength-1:before{content:"󰣴"}.mdi-network-strength-1-alert:before{content:"󰣵"}.mdi-network-strength-2:before{content:"󰣶"}.mdi-network-strength-2-alert:before{content:"󰣷"}.mdi-network-strength-3:before{content:"󰣸"}.mdi-network-strength-3-alert:before{content:"󰣹"}.mdi-network-strength-4:before{content:"󰣺"}.mdi-network-strength-4-alert:before{content:"󰣻"}.mdi-network-strength-4-cog:before{content:"󱤚"}.mdi-network-strength-off:before{content:"󰣼"}.mdi-network-strength-off-outline:before{content:"󰣽"}.mdi-network-strength-outline:before{content:"󰣾"}.mdi-new-box:before{content:"󰎔"}.mdi-newspaper:before{content:"󰎕"}.mdi-newspaper-check:before{content:"󱥃"}.mdi-newspaper-minus:before{content:"󰼌"}.mdi-newspaper-plus:before{content:"󰼍"}.mdi-newspaper-remove:before{content:"󱥄"}.mdi-newspaper-variant:before{content:"󱀁"}.mdi-newspaper-variant-multiple:before{content:"󱀂"}.mdi-newspaper-variant-multiple-outline:before{content:"󱀃"}.mdi-newspaper-variant-outline:before{content:"󱀄"}.mdi-nfc:before{content:"󰎖"}.mdi-nfc-search-variant:before{content:"󰹓"}.mdi-nfc-tap:before{content:"󰎗"}.mdi-nfc-variant:before{content:"󰎘"}.mdi-nfc-variant-off:before{content:"󰹔"}.mdi-ninja:before{content:"󰝴"}.mdi-nintendo-game-boy:before{content:"󱎓"}.mdi-nintendo-switch:before{content:"󰟡"}.mdi-nintendo-wii:before{content:"󰖫"}.mdi-nintendo-wiiu:before{content:"󰜭"}.mdi-nix:before{content:"󱄅"}.mdi-nodejs:before{content:"󰎙"}.mdi-noodles:before{content:"󱅾"}.mdi-not-equal:before{content:"󰦍"}.mdi-not-equal-variant:before{content:"󰦎"}.mdi-note:before{content:"󰎚"}.mdi-note-alert:before{content:"󱝽"}.mdi-note-alert-outline:before{content:"󱝾"}.mdi-note-check:before{content:"󱝿"}.mdi-note-check-outline:before{content:"󱞀"}.mdi-note-edit:before{content:"󱞁"}.mdi-note-edit-outline:before{content:"󱞂"}.mdi-note-minus:before{content:"󱙏"}.mdi-note-minus-outline:before{content:"󱙐"}.mdi-note-multiple:before{content:"󰚸"}.mdi-note-multiple-outline:before{content:"󰚹"}.mdi-note-off:before{content:"󱞃"}.mdi-note-off-outline:before{content:"󱞄"}.mdi-note-outline:before{content:"󰎛"}.mdi-note-plus:before{content:"󰎜"}.mdi-note-plus-outline:before{content:"󰎝"}.mdi-note-remove:before{content:"󱙑"}.mdi-note-remove-outline:before{content:"󱙒"}.mdi-note-search:before{content:"󱙓"}.mdi-note-search-outline:before{content:"󱙔"}.mdi-note-text:before{content:"󰎞"}.mdi-note-text-outline:before{content:"󱇗"}.mdi-notebook:before{content:"󰠮"}.mdi-notebook-check:before{content:"󱓵"}.mdi-notebook-check-outline:before{content:"󱓶"}.mdi-notebook-edit:before{content:"󱓧"}.mdi-notebook-edit-outline:before{content:"󱓩"}.mdi-notebook-heart:before{content:"󱨋"}.mdi-notebook-heart-outline:before{content:"󱨌"}.mdi-notebook-minus:before{content:"󱘐"}.mdi-notebook-minus-outline:before{content:"󱘑"}.mdi-notebook-multiple:before{content:"󰹕"}.mdi-notebook-outline:before{content:"󰺿"}.mdi-notebook-plus:before{content:"󱘒"}.mdi-notebook-plus-outline:before{content:"󱘓"}.mdi-notebook-remove:before{content:"󱘔"}.mdi-notebook-remove-outline:before{content:"󱘕"}.mdi-notification-clear-all:before{content:"󰎟"}.mdi-npm:before{content:"󰛷"}.mdi-nuke:before{content:"󰚤"}.mdi-null:before{content:"󰟢"}.mdi-numeric:before{content:"󰎠"}.mdi-numeric-0:before{content:"󰬹"}.mdi-numeric-0-box:before{content:"󰎡"}.mdi-numeric-0-box-multiple:before{content:"󰼎"}.mdi-numeric-0-box-multiple-outline:before{content:"󰎢"}.mdi-numeric-0-box-outline:before{content:"󰎣"}.mdi-numeric-0-circle:before{content:"󰲞"}.mdi-numeric-0-circle-outline:before{content:"󰲟"}.mdi-numeric-1:before{content:"󰬺"}.mdi-numeric-1-box:before{content:"󰎤"}.mdi-numeric-1-box-multiple:before{content:"󰼏"}.mdi-numeric-1-box-multiple-outline:before{content:"󰎥"}.mdi-numeric-1-box-outline:before{content:"󰎦"}.mdi-numeric-1-circle:before{content:"󰲠"}.mdi-numeric-1-circle-outline:before{content:"󰲡"}.mdi-numeric-10:before{content:"󰿩"}.mdi-numeric-10-box:before{content:"󰽽"}.mdi-numeric-10-box-multiple:before{content:"󰿪"}.mdi-numeric-10-box-multiple-outline:before{content:"󰿫"}.mdi-numeric-10-box-outline:before{content:"󰽾"}.mdi-numeric-10-circle:before{content:"󰿬"}.mdi-numeric-10-circle-outline:before{content:"󰿭"}.mdi-numeric-2:before{content:"󰬻"}.mdi-numeric-2-box:before{content:"󰎧"}.mdi-numeric-2-box-multiple:before{content:"󰼐"}.mdi-numeric-2-box-multiple-outline:before{content:"󰎨"}.mdi-numeric-2-box-outline:before{content:"󰎩"}.mdi-numeric-2-circle:before{content:"󰲢"}.mdi-numeric-2-circle-outline:before{content:"󰲣"}.mdi-numeric-3:before{content:"󰬼"}.mdi-numeric-3-box:before{content:"󰎪"}.mdi-numeric-3-box-multiple:before{content:"󰼑"}.mdi-numeric-3-box-multiple-outline:before{content:"󰎫"}.mdi-numeric-3-box-outline:before{content:"󰎬"}.mdi-numeric-3-circle:before{content:"󰲤"}.mdi-numeric-3-circle-outline:before{content:"󰲥"}.mdi-numeric-4:before{content:"󰬽"}.mdi-numeric-4-box:before{content:"󰎭"}.mdi-numeric-4-box-multiple:before{content:"󰼒"}.mdi-numeric-4-box-multiple-outline:before{content:"󰎲"}.mdi-numeric-4-box-outline:before{content:"󰎮"}.mdi-numeric-4-circle:before{content:"󰲦"}.mdi-numeric-4-circle-outline:before{content:"󰲧"}.mdi-numeric-5:before{content:"󰬾"}.mdi-numeric-5-box:before{content:"󰎱"}.mdi-numeric-5-box-multiple:before{content:"󰼓"}.mdi-numeric-5-box-multiple-outline:before{content:"󰎯"}.mdi-numeric-5-box-outline:before{content:"󰎰"}.mdi-numeric-5-circle:before{content:"󰲨"}.mdi-numeric-5-circle-outline:before{content:"󰲩"}.mdi-numeric-6:before{content:"󰬿"}.mdi-numeric-6-box:before{content:"󰎳"}.mdi-numeric-6-box-multiple:before{content:"󰼔"}.mdi-numeric-6-box-multiple-outline:before{content:"󰎴"}.mdi-numeric-6-box-outline:before{content:"󰎵"}.mdi-numeric-6-circle:before{content:"󰲪"}.mdi-numeric-6-circle-outline:before{content:"󰲫"}.mdi-numeric-7:before{content:"󰭀"}.mdi-numeric-7-box:before{content:"󰎶"}.mdi-numeric-7-box-multiple:before{content:"󰼕"}.mdi-numeric-7-box-multiple-outline:before{content:"󰎷"}.mdi-numeric-7-box-outline:before{content:"󰎸"}.mdi-numeric-7-circle:before{content:"󰲬"}.mdi-numeric-7-circle-outline:before{content:"󰲭"}.mdi-numeric-8:before{content:"󰭁"}.mdi-numeric-8-box:before{content:"󰎹"}.mdi-numeric-8-box-multiple:before{content:"󰼖"}.mdi-numeric-8-box-multiple-outline:before{content:"󰎺"}.mdi-numeric-8-box-outline:before{content:"󰎻"}.mdi-numeric-8-circle:before{content:"󰲮"}.mdi-numeric-8-circle-outline:before{content:"󰲯"}.mdi-numeric-9:before{content:"󰭂"}.mdi-numeric-9-box:before{content:"󰎼"}.mdi-numeric-9-box-multiple:before{content:"󰼗"}.mdi-numeric-9-box-multiple-outline:before{content:"󰎽"}.mdi-numeric-9-box-outline:before{content:"󰎾"}.mdi-numeric-9-circle:before{content:"󰲰"}.mdi-numeric-9-circle-outline:before{content:"󰲱"}.mdi-numeric-9-plus:before{content:"󰿮"}.mdi-numeric-9-plus-box:before{content:"󰎿"}.mdi-numeric-9-plus-box-multiple:before{content:"󰼘"}.mdi-numeric-9-plus-box-multiple-outline:before{content:"󰏀"}.mdi-numeric-9-plus-box-outline:before{content:"󰏁"}.mdi-numeric-9-plus-circle:before{content:"󰲲"}.mdi-numeric-9-plus-circle-outline:before{content:"󰲳"}.mdi-numeric-negative-1:before{content:"󱁒"}.mdi-numeric-off:before{content:"󱧓"}.mdi-numeric-positive-1:before{content:"󱗋"}.mdi-nut:before{content:"󰛸"}.mdi-nutrition:before{content:"󰏂"}.mdi-nuxt:before{content:"󱄆"}.mdi-oar:before{content:"󰙼"}.mdi-ocarina:before{content:"󰷠"}.mdi-oci:before{content:"󱋩"}.mdi-ocr:before{content:"󱄺"}.mdi-octagon:before{content:"󰏃"}.mdi-octagon-outline:before{content:"󰏄"}.mdi-octagram:before{content:"󰛹"}.mdi-octagram-edit:before{content:"󱰴"}.mdi-octagram-edit-outline:before{content:"󱰵"}.mdi-octagram-minus:before{content:"󱰶"}.mdi-octagram-minus-outline:before{content:"󱰷"}.mdi-octagram-outline:before{content:"󰝵"}.mdi-octagram-plus:before{content:"󱰸"}.mdi-octagram-plus-outline:before{content:"󱰹"}.mdi-octahedron:before{content:"󱥐"}.mdi-octahedron-off:before{content:"󱥑"}.mdi-odnoklassniki:before{content:"󰏅"}.mdi-offer:before{content:"󱈛"}.mdi-office-building:before{content:"󰦑"}.mdi-office-building-cog:before{content:"󱥉"}.mdi-office-building-cog-outline:before{content:"󱥊"}.mdi-office-building-marker:before{content:"󱔠"}.mdi-office-building-marker-outline:before{content:"󱔡"}.mdi-office-building-minus:before{content:"󱮪"}.mdi-office-building-minus-outline:before{content:"󱮫"}.mdi-office-building-outline:before{content:"󱔟"}.mdi-office-building-plus:before{content:"󱮨"}.mdi-office-building-plus-outline:before{content:"󱮩"}.mdi-office-building-remove:before{content:"󱮬"}.mdi-office-building-remove-outline:before{content:"󱮭"}.mdi-oil:before{content:"󰏇"}.mdi-oil-lamp:before{content:"󰼙"}.mdi-oil-level:before{content:"󱁓"}.mdi-oil-temperature:before{content:"󰿸"}.mdi-om:before{content:"󰥳"}.mdi-omega:before{content:"󰏉"}.mdi-one-up:before{content:"󰮭"}.mdi-onepassword:before{content:"󰢁"}.mdi-opacity:before{content:"󰗌"}.mdi-open-in-app:before{content:"󰏋"}.mdi-open-in-new:before{content:"󰏌"}.mdi-open-source-initiative:before{content:"󰮮"}.mdi-openid:before{content:"󰏍"}.mdi-opera:before{content:"󰏎"}.mdi-orbit:before{content:"󰀘"}.mdi-orbit-variant:before{content:"󱗛"}.mdi-order-alphabetical-ascending:before{content:"󰈍"}.mdi-order-alphabetical-descending:before{content:"󰴇"}.mdi-order-bool-ascending:before{content:"󰊾"}.mdi-order-bool-ascending-variant:before{content:"󰦏"}.mdi-order-bool-descending:before{content:"󱎄"}.mdi-order-bool-descending-variant:before{content:"󰦐"}.mdi-order-numeric-ascending:before{content:"󰕅"}.mdi-order-numeric-descending:before{content:"󰕆"}.mdi-origin:before{content:"󰭃"}.mdi-ornament:before{content:"󰏏"}.mdi-ornament-variant:before{content:"󰏐"}.mdi-outdoor-lamp:before{content:"󱁔"}.mdi-overscan:before{content:"󱀅"}.mdi-owl:before{content:"󰏒"}.mdi-pac-man:before{content:"󰮯"}.mdi-package:before{content:"󰏓"}.mdi-package-check:before{content:"󱭑"}.mdi-package-down:before{content:"󰏔"}.mdi-package-up:before{content:"󰏕"}.mdi-package-variant:before{content:"󰏖"}.mdi-package-variant-closed:before{content:"󰏗"}.mdi-package-variant-closed-check:before{content:"󱭒"}.mdi-package-variant-closed-minus:before{content:"󱧔"}.mdi-package-variant-closed-plus:before{content:"󱧕"}.mdi-package-variant-closed-remove:before{content:"󱧖"}.mdi-package-variant-minus:before{content:"󱧗"}.mdi-package-variant-plus:before{content:"󱧘"}.mdi-package-variant-remove:before{content:"󱧙"}.mdi-page-first:before{content:"󰘀"}.mdi-page-last:before{content:"󰘁"}.mdi-page-layout-body:before{content:"󰛺"}.mdi-page-layout-footer:before{content:"󰛻"}.mdi-page-layout-header:before{content:"󰛼"}.mdi-page-layout-header-footer:before{content:"󰽿"}.mdi-page-layout-sidebar-left:before{content:"󰛽"}.mdi-page-layout-sidebar-right:before{content:"󰛾"}.mdi-page-next:before{content:"󰮰"}.mdi-page-next-outline:before{content:"󰮱"}.mdi-page-previous:before{content:"󰮲"}.mdi-page-previous-outline:before{content:"󰮳"}.mdi-pail:before{content:"󱐗"}.mdi-pail-minus:before{content:"󱐷"}.mdi-pail-minus-outline:before{content:"󱐼"}.mdi-pail-off:before{content:"󱐹"}.mdi-pail-off-outline:before{content:"󱐾"}.mdi-pail-outline:before{content:"󱐺"}.mdi-pail-plus:before{content:"󱐶"}.mdi-pail-plus-outline:before{content:"󱐻"}.mdi-pail-remove:before{content:"󱐸"}.mdi-pail-remove-outline:before{content:"󱐽"}.mdi-palette:before{content:"󰏘"}.mdi-palette-advanced:before{content:"󰏙"}.mdi-palette-outline:before{content:"󰸌"}.mdi-palette-swatch:before{content:"󰢵"}.mdi-palette-swatch-outline:before{content:"󱍜"}.mdi-palette-swatch-variant:before{content:"󱥚"}.mdi-palm-tree:before{content:"󱁕"}.mdi-pan:before{content:"󰮴"}.mdi-pan-bottom-left:before{content:"󰮵"}.mdi-pan-bottom-right:before{content:"󰮶"}.mdi-pan-down:before{content:"󰮷"}.mdi-pan-horizontal:before{content:"󰮸"}.mdi-pan-left:before{content:"󰮹"}.mdi-pan-right:before{content:"󰮺"}.mdi-pan-top-left:before{content:"󰮻"}.mdi-pan-top-right:before{content:"󰮼"}.mdi-pan-up:before{content:"󰮽"}.mdi-pan-vertical:before{content:"󰮾"}.mdi-panda:before{content:"󰏚"}.mdi-pandora:before{content:"󰏛"}.mdi-panorama:before{content:"󰏜"}.mdi-panorama-fisheye:before{content:"󰏝"}.mdi-panorama-horizontal:before{content:"󱤨"}.mdi-panorama-horizontal-outline:before{content:"󰏞"}.mdi-panorama-outline:before{content:"󱦌"}.mdi-panorama-sphere:before{content:"󱦍"}.mdi-panorama-sphere-outline:before{content:"󱦎"}.mdi-panorama-variant:before{content:"󱦏"}.mdi-panorama-variant-outline:before{content:"󱦐"}.mdi-panorama-vertical:before{content:"󱤩"}.mdi-panorama-vertical-outline:before{content:"󰏟"}.mdi-panorama-wide-angle:before{content:"󱥟"}.mdi-panorama-wide-angle-outline:before{content:"󰏠"}.mdi-paper-cut-vertical:before{content:"󰏡"}.mdi-paper-roll:before{content:"󱅗"}.mdi-paper-roll-outline:before{content:"󱅘"}.mdi-paperclip:before{content:"󰏢"}.mdi-paperclip-check:before{content:"󱫆"}.mdi-paperclip-lock:before{content:"󱧚"}.mdi-paperclip-minus:before{content:"󱫇"}.mdi-paperclip-off:before{content:"󱫈"}.mdi-paperclip-plus:before{content:"󱫉"}.mdi-paperclip-remove:before{content:"󱫊"}.mdi-parachute:before{content:"󰲴"}.mdi-parachute-outline:before{content:"󰲵"}.mdi-paragliding:before{content:"󱝅"}.mdi-parking:before{content:"󰏣"}.mdi-party-popper:before{content:"󱁖"}.mdi-passport:before{content:"󰟣"}.mdi-passport-biometric:before{content:"󰷡"}.mdi-pasta:before{content:"󱅠"}.mdi-patio-heater:before{content:"󰾀"}.mdi-patreon:before{content:"󰢂"}.mdi-pause:before{content:"󰏤"}.mdi-pause-box:before{content:"󰂼"}.mdi-pause-box-outline:before{content:"󱭺"}.mdi-pause-circle:before{content:"󰏥"}.mdi-pause-circle-outline:before{content:"󰏦"}.mdi-pause-octagon:before{content:"󰏧"}.mdi-pause-octagon-outline:before{content:"󰏨"}.mdi-paw:before{content:"󰏩"}.mdi-paw-off:before{content:"󰙗"}.mdi-paw-off-outline:before{content:"󱙶"}.mdi-paw-outline:before{content:"󱙵"}.mdi-peace:before{content:"󰢄"}.mdi-peanut:before{content:"󰿼"}.mdi-peanut-off:before{content:"󰿽"}.mdi-peanut-off-outline:before{content:"󰿿"}.mdi-peanut-outline:before{content:"󰿾"}.mdi-pen:before{content:"󰏪"}.mdi-pen-lock:before{content:"󰷢"}.mdi-pen-minus:before{content:"󰷣"}.mdi-pen-off:before{content:"󰷤"}.mdi-pen-plus:before{content:"󰷥"}.mdi-pen-remove:before{content:"󰷦"}.mdi-pencil:before{content:"󰏫"}.mdi-pencil-box:before{content:"󰏬"}.mdi-pencil-box-multiple:before{content:"󱅄"}.mdi-pencil-box-multiple-outline:before{content:"󱅅"}.mdi-pencil-box-outline:before{content:"󰏭"}.mdi-pencil-circle:before{content:"󰛿"}.mdi-pencil-circle-outline:before{content:"󰝶"}.mdi-pencil-lock:before{content:"󰏮"}.mdi-pencil-lock-outline:before{content:"󰷧"}.mdi-pencil-minus:before{content:"󰷨"}.mdi-pencil-minus-outline:before{content:"󰷩"}.mdi-pencil-off:before{content:"󰏯"}.mdi-pencil-off-outline:before{content:"󰷪"}.mdi-pencil-outline:before{content:"󰲶"}.mdi-pencil-plus:before{content:"󰷫"}.mdi-pencil-plus-outline:before{content:"󰷬"}.mdi-pencil-remove:before{content:"󰷭"}.mdi-pencil-remove-outline:before{content:"󰷮"}.mdi-pencil-ruler:before{content:"󱍓"}.mdi-pencil-ruler-outline:before{content:"󱰑"}.mdi-penguin:before{content:"󰻀"}.mdi-pentagon:before{content:"󰜁"}.mdi-pentagon-outline:before{content:"󰜀"}.mdi-pentagram:before{content:"󱙧"}.mdi-percent:before{content:"󰏰"}.mdi-percent-box:before{content:"󱨂"}.mdi-percent-box-outline:before{content:"󱨃"}.mdi-percent-circle:before{content:"󱨄"}.mdi-percent-circle-outline:before{content:"󱨅"}.mdi-percent-outline:before{content:"󱉸"}.mdi-periodic-table:before{content:"󰢶"}.mdi-perspective-less:before{content:"󰴣"}.mdi-perspective-more:before{content:"󰴤"}.mdi-ph:before{content:"󱟅"}.mdi-phone:before{content:"󰏲"}.mdi-phone-alert:before{content:"󰼚"}.mdi-phone-alert-outline:before{content:"󱆎"}.mdi-phone-bluetooth:before{content:"󰏳"}.mdi-phone-bluetooth-outline:before{content:"󱆏"}.mdi-phone-cancel:before{content:"󱂼"}.mdi-phone-cancel-outline:before{content:"󱆐"}.mdi-phone-check:before{content:"󱆩"}.mdi-phone-check-outline:before{content:"󱆪"}.mdi-phone-classic:before{content:"󰘂"}.mdi-phone-classic-off:before{content:"󱉹"}.mdi-phone-clock:before{content:"󱧛"}.mdi-phone-dial:before{content:"󱕙"}.mdi-phone-dial-outline:before{content:"󱕚"}.mdi-phone-forward:before{content:"󰏴"}.mdi-phone-forward-outline:before{content:"󱆑"}.mdi-phone-hangup:before{content:"󰏵"}.mdi-phone-hangup-outline:before{content:"󱆒"}.mdi-phone-in-talk:before{content:"󰏶"}.mdi-phone-in-talk-outline:before{content:"󱆂"}.mdi-phone-incoming:before{content:"󰏷"}.mdi-phone-incoming-outgoing:before{content:"󱬿"}.mdi-phone-incoming-outgoing-outline:before{content:"󱭀"}.mdi-phone-incoming-outline:before{content:"󱆓"}.mdi-phone-lock:before{content:"󰏸"}.mdi-phone-lock-outline:before{content:"󱆔"}.mdi-phone-log:before{content:"󰏹"}.mdi-phone-log-outline:before{content:"󱆕"}.mdi-phone-message:before{content:"󱆖"}.mdi-phone-message-outline:before{content:"󱆗"}.mdi-phone-minus:before{content:"󰙘"}.mdi-phone-minus-outline:before{content:"󱆘"}.mdi-phone-missed:before{content:"󰏺"}.mdi-phone-missed-outline:before{content:"󱆥"}.mdi-phone-off:before{content:"󰷯"}.mdi-phone-off-outline:before{content:"󱆦"}.mdi-phone-outgoing:before{content:"󰏻"}.mdi-phone-outgoing-outline:before{content:"󱆙"}.mdi-phone-outline:before{content:"󰷰"}.mdi-phone-paused:before{content:"󰏼"}.mdi-phone-paused-outline:before{content:"󱆚"}.mdi-phone-plus:before{content:"󰙙"}.mdi-phone-plus-outline:before{content:"󱆛"}.mdi-phone-refresh:before{content:"󱦓"}.mdi-phone-refresh-outline:before{content:"󱦔"}.mdi-phone-remove:before{content:"󱔯"}.mdi-phone-remove-outline:before{content:"󱔰"}.mdi-phone-return:before{content:"󰠯"}.mdi-phone-return-outline:before{content:"󱆜"}.mdi-phone-ring:before{content:"󱆫"}.mdi-phone-ring-outline:before{content:"󱆬"}.mdi-phone-rotate-landscape:before{content:"󰢅"}.mdi-phone-rotate-portrait:before{content:"󰢆"}.mdi-phone-settings:before{content:"󰏽"}.mdi-phone-settings-outline:before{content:"󱆝"}.mdi-phone-sync:before{content:"󱦕"}.mdi-phone-sync-outline:before{content:"󱦖"}.mdi-phone-voip:before{content:"󰏾"}.mdi-pi:before{content:"󰏿"}.mdi-pi-box:before{content:"󰐀"}.mdi-pi-hole:before{content:"󰷱"}.mdi-piano:before{content:"󰙽"}.mdi-piano-off:before{content:"󰚘"}.mdi-pickaxe:before{content:"󰢷"}.mdi-picture-in-picture-bottom-right:before{content:"󰹗"}.mdi-picture-in-picture-bottom-right-outline:before{content:"󰹘"}.mdi-picture-in-picture-top-right:before{content:"󰹙"}.mdi-picture-in-picture-top-right-outline:before{content:"󰹚"}.mdi-pier:before{content:"󰢇"}.mdi-pier-crane:before{content:"󰢈"}.mdi-pig:before{content:"󰐁"}.mdi-pig-variant:before{content:"󱀆"}.mdi-pig-variant-outline:before{content:"󱙸"}.mdi-piggy-bank:before{content:"󱀇"}.mdi-piggy-bank-outline:before{content:"󱙹"}.mdi-pill:before{content:"󰐂"}.mdi-pill-multiple:before{content:"󱭌"}.mdi-pill-off:before{content:"󱩜"}.mdi-pillar:before{content:"󰜂"}.mdi-pin:before{content:"󰐃"}.mdi-pin-off:before{content:"󰐄"}.mdi-pin-off-outline:before{content:"󰤰"}.mdi-pin-outline:before{content:"󰤱"}.mdi-pine-tree:before{content:"󰐅"}.mdi-pine-tree-box:before{content:"󰐆"}.mdi-pine-tree-fire:before{content:"󱐚"}.mdi-pine-tree-variant:before{content:"󱱳"}.mdi-pine-tree-variant-outline:before{content:"󱱴"}.mdi-pinterest:before{content:"󰐇"}.mdi-pinwheel:before{content:"󰫕"}.mdi-pinwheel-outline:before{content:"󰫖"}.mdi-pipe:before{content:"󰟥"}.mdi-pipe-disconnected:before{content:"󰟦"}.mdi-pipe-leak:before{content:"󰢉"}.mdi-pipe-valve:before{content:"󱡍"}.mdi-pipe-wrench:before{content:"󱍔"}.mdi-pirate:before{content:"󰨈"}.mdi-pistol:before{content:"󰜃"}.mdi-piston:before{content:"󰢊"}.mdi-pitchfork:before{content:"󱕓"}.mdi-pizza:before{content:"󰐉"}.mdi-plane-car:before{content:"󱫿"}.mdi-plane-train:before{content:"󱬀"}.mdi-play:before{content:"󰐊"}.mdi-play-box:before{content:"󱉺"}.mdi-play-box-edit-outline:before{content:"󱰺"}.mdi-play-box-lock:before{content:"󱨖"}.mdi-play-box-lock-open:before{content:"󱨗"}.mdi-play-box-lock-open-outline:before{content:"󱨘"}.mdi-play-box-lock-outline:before{content:"󱨙"}.mdi-play-box-multiple:before{content:"󰴙"}.mdi-play-box-multiple-outline:before{content:"󱏦"}.mdi-play-box-outline:before{content:"󰐋"}.mdi-play-circle:before{content:"󰐌"}.mdi-play-circle-outline:before{content:"󰐍"}.mdi-play-network:before{content:"󰢋"}.mdi-play-network-outline:before{content:"󰲷"}.mdi-play-outline:before{content:"󰼛"}.mdi-play-pause:before{content:"󰐎"}.mdi-play-protected-content:before{content:"󰐏"}.mdi-play-speed:before{content:"󰣿"}.mdi-playlist-check:before{content:"󰗇"}.mdi-playlist-edit:before{content:"󰤀"}.mdi-playlist-minus:before{content:"󰐐"}.mdi-playlist-music:before{content:"󰲸"}.mdi-playlist-music-outline:before{content:"󰲹"}.mdi-playlist-play:before{content:"󰐑"}.mdi-playlist-plus:before{content:"󰐒"}.mdi-playlist-remove:before{content:"󰐓"}.mdi-playlist-star:before{content:"󰷲"}.mdi-plex:before{content:"󰚺"}.mdi-pliers:before{content:"󱦤"}.mdi-plus:before{content:"󰐕"}.mdi-plus-box:before{content:"󰐖"}.mdi-plus-box-multiple:before{content:"󰌴"}.mdi-plus-box-multiple-outline:before{content:"󱅃"}.mdi-plus-box-outline:before{content:"󰜄"}.mdi-plus-circle:before{content:"󰐗"}.mdi-plus-circle-multiple:before{content:"󰍌"}.mdi-plus-circle-multiple-outline:before{content:"󰐘"}.mdi-plus-circle-outline:before{content:"󰐙"}.mdi-plus-lock:before{content:"󱩝"}.mdi-plus-lock-open:before{content:"󱩞"}.mdi-plus-minus:before{content:"󰦒"}.mdi-plus-minus-box:before{content:"󰦓"}.mdi-plus-minus-variant:before{content:"󱓉"}.mdi-plus-network:before{content:"󰐚"}.mdi-plus-network-outline:before{content:"󰲺"}.mdi-plus-outline:before{content:"󰜅"}.mdi-plus-thick:before{content:"󱇬"}.mdi-podcast:before{content:"󰦔"}.mdi-podium:before{content:"󰴥"}.mdi-podium-bronze:before{content:"󰴦"}.mdi-podium-gold:before{content:"󰴧"}.mdi-podium-silver:before{content:"󰴨"}.mdi-point-of-sale:before{content:"󰶒"}.mdi-pokeball:before{content:"󰐝"}.mdi-pokemon-go:before{content:"󰨉"}.mdi-poker-chip:before{content:"󰠰"}.mdi-polaroid:before{content:"󰐞"}.mdi-police-badge:before{content:"󱅧"}.mdi-police-badge-outline:before{content:"󱅨"}.mdi-police-station:before{content:"󱠹"}.mdi-poll:before{content:"󰐟"}.mdi-polo:before{content:"󱓃"}.mdi-polymer:before{content:"󰐡"}.mdi-pool:before{content:"󰘆"}.mdi-pool-thermometer:before{content:"󱩟"}.mdi-popcorn:before{content:"󰐢"}.mdi-post:before{content:"󱀈"}.mdi-post-lamp:before{content:"󱩠"}.mdi-post-outline:before{content:"󱀉"}.mdi-postage-stamp:before{content:"󰲻"}.mdi-pot:before{content:"󰋥"}.mdi-pot-mix:before{content:"󰙛"}.mdi-pot-mix-outline:before{content:"󰙷"}.mdi-pot-outline:before{content:"󰋿"}.mdi-pot-steam:before{content:"󰙚"}.mdi-pot-steam-outline:before{content:"󰌦"}.mdi-pound:before{content:"󰐣"}.mdi-pound-box:before{content:"󰐤"}.mdi-pound-box-outline:before{content:"󱅿"}.mdi-power:before{content:"󰐥"}.mdi-power-cycle:before{content:"󰤁"}.mdi-power-off:before{content:"󰤂"}.mdi-power-on:before{content:"󰤃"}.mdi-power-plug:before{content:"󰚥"}.mdi-power-plug-battery:before{content:"󱰻"}.mdi-power-plug-battery-outline:before{content:"󱰼"}.mdi-power-plug-off:before{content:"󰚦"}.mdi-power-plug-off-outline:before{content:"󱐤"}.mdi-power-plug-outline:before{content:"󱐥"}.mdi-power-settings:before{content:"󰐦"}.mdi-power-sleep:before{content:"󰤄"}.mdi-power-socket:before{content:"󰐧"}.mdi-power-socket-au:before{content:"󰤅"}.mdi-power-socket-ch:before{content:"󰾳"}.mdi-power-socket-de:before{content:"󱄇"}.mdi-power-socket-eu:before{content:"󰟧"}.mdi-power-socket-fr:before{content:"󱄈"}.mdi-power-socket-it:before{content:"󱓿"}.mdi-power-socket-jp:before{content:"󱄉"}.mdi-power-socket-uk:before{content:"󰟨"}.mdi-power-socket-us:before{content:"󰟩"}.mdi-power-standby:before{content:"󰤆"}.mdi-powershell:before{content:"󰨊"}.mdi-prescription:before{content:"󰜆"}.mdi-presentation:before{content:"󰐨"}.mdi-presentation-play:before{content:"󰐩"}.mdi-pretzel:before{content:"󱕢"}.mdi-printer:before{content:"󰐪"}.mdi-printer-3d:before{content:"󰐫"}.mdi-printer-3d-nozzle:before{content:"󰹛"}.mdi-printer-3d-nozzle-alert:before{content:"󱇀"}.mdi-printer-3d-nozzle-alert-outline:before{content:"󱇁"}.mdi-printer-3d-nozzle-heat:before{content:"󱢸"}.mdi-printer-3d-nozzle-heat-outline:before{content:"󱢹"}.mdi-printer-3d-nozzle-off:before{content:"󱬙"}.mdi-printer-3d-nozzle-off-outline:before{content:"󱬚"}.mdi-printer-3d-nozzle-outline:before{content:"󰹜"}.mdi-printer-3d-off:before{content:"󱬎"}.mdi-printer-alert:before{content:"󰐬"}.mdi-printer-check:before{content:"󱅆"}.mdi-printer-eye:before{content:"󱑘"}.mdi-printer-off:before{content:"󰹝"}.mdi-printer-off-outline:before{content:"󱞅"}.mdi-printer-outline:before{content:"󱞆"}.mdi-printer-pos:before{content:"󱁗"}.mdi-printer-pos-alert:before{content:"󱮼"}.mdi-printer-pos-alert-outline:before{content:"󱮽"}.mdi-printer-pos-cancel:before{content:"󱮾"}.mdi-printer-pos-cancel-outline:before{content:"󱮿"}.mdi-printer-pos-check:before{content:"󱯀"}.mdi-printer-pos-check-outline:before{content:"󱯁"}.mdi-printer-pos-cog:before{content:"󱯂"}.mdi-printer-pos-cog-outline:before{content:"󱯃"}.mdi-printer-pos-edit:before{content:"󱯄"}.mdi-printer-pos-edit-outline:before{content:"󱯅"}.mdi-printer-pos-minus:before{content:"󱯆"}.mdi-printer-pos-minus-outline:before{content:"󱯇"}.mdi-printer-pos-network:before{content:"󱯈"}.mdi-printer-pos-network-outline:before{content:"󱯉"}.mdi-printer-pos-off:before{content:"󱯊"}.mdi-printer-pos-off-outline:before{content:"󱯋"}.mdi-printer-pos-outline:before{content:"󱯌"}.mdi-printer-pos-pause:before{content:"󱯍"}.mdi-printer-pos-pause-outline:before{content:"󱯎"}.mdi-printer-pos-play:before{content:"󱯏"}.mdi-printer-pos-play-outline:before{content:"󱯐"}.mdi-printer-pos-plus:before{content:"󱯑"}.mdi-printer-pos-plus-outline:before{content:"󱯒"}.mdi-printer-pos-refresh:before{content:"󱯓"}.mdi-printer-pos-refresh-outline:before{content:"󱯔"}.mdi-printer-pos-remove:before{content:"󱯕"}.mdi-printer-pos-remove-outline:before{content:"󱯖"}.mdi-printer-pos-star:before{content:"󱯗"}.mdi-printer-pos-star-outline:before{content:"󱯘"}.mdi-printer-pos-stop:before{content:"󱯙"}.mdi-printer-pos-stop-outline:before{content:"󱯚"}.mdi-printer-pos-sync:before{content:"󱯛"}.mdi-printer-pos-sync-outline:before{content:"󱯜"}.mdi-printer-pos-wrench:before{content:"󱯝"}.mdi-printer-pos-wrench-outline:before{content:"󱯞"}.mdi-printer-search:before{content:"󱑗"}.mdi-printer-settings:before{content:"󰜇"}.mdi-printer-wireless:before{content:"󰨋"}.mdi-priority-high:before{content:"󰘃"}.mdi-priority-low:before{content:"󰘄"}.mdi-professional-hexagon:before{content:"󰐭"}.mdi-progress-alert:before{content:"󰲼"}.mdi-progress-check:before{content:"󰦕"}.mdi-progress-clock:before{content:"󰦖"}.mdi-progress-close:before{content:"󱄊"}.mdi-progress-download:before{content:"󰦗"}.mdi-progress-helper:before{content:"󱮢"}.mdi-progress-pencil:before{content:"󱞇"}.mdi-progress-question:before{content:"󱔢"}.mdi-progress-star:before{content:"󱞈"}.mdi-progress-star-four-points:before{content:"󱰽"}.mdi-progress-upload:before{content:"󰦘"}.mdi-progress-wrench:before{content:"󰲽"}.mdi-projector:before{content:"󰐮"}.mdi-projector-off:before{content:"󱨣"}.mdi-projector-screen:before{content:"󰐯"}.mdi-projector-screen-off:before{content:"󱠍"}.mdi-projector-screen-off-outline:before{content:"󱠎"}.mdi-projector-screen-outline:before{content:"󱜤"}.mdi-projector-screen-variant:before{content:"󱠏"}.mdi-projector-screen-variant-off:before{content:"󱠐"}.mdi-projector-screen-variant-off-outline:before{content:"󱠑"}.mdi-projector-screen-variant-outline:before{content:"󱠒"}.mdi-propane-tank:before{content:"󱍗"}.mdi-propane-tank-outline:before{content:"󱍘"}.mdi-protocol:before{content:"󰿘"}.mdi-publish:before{content:"󰚧"}.mdi-publish-off:before{content:"󱥅"}.mdi-pulse:before{content:"󰐰"}.mdi-pump:before{content:"󱐂"}.mdi-pump-off:before{content:"󱬢"}.mdi-pumpkin:before{content:"󰮿"}.mdi-purse:before{content:"󰼜"}.mdi-purse-outline:before{content:"󰼝"}.mdi-puzzle:before{content:"󰐱"}.mdi-puzzle-check:before{content:"󱐦"}.mdi-puzzle-check-outline:before{content:"󱐧"}.mdi-puzzle-edit:before{content:"󱓓"}.mdi-puzzle-edit-outline:before{content:"󱓙"}.mdi-puzzle-heart:before{content:"󱓔"}.mdi-puzzle-heart-outline:before{content:"󱓚"}.mdi-puzzle-minus:before{content:"󱓑"}.mdi-puzzle-minus-outline:before{content:"󱓗"}.mdi-puzzle-outline:before{content:"󰩦"}.mdi-puzzle-plus:before{content:"󱓐"}.mdi-puzzle-plus-outline:before{content:"󱓖"}.mdi-puzzle-remove:before{content:"󱓒"}.mdi-puzzle-remove-outline:before{content:"󱓘"}.mdi-puzzle-star:before{content:"󱓕"}.mdi-puzzle-star-outline:before{content:"󱓛"}.mdi-pyramid:before{content:"󱥒"}.mdi-pyramid-off:before{content:"󱥓"}.mdi-qi:before{content:"󰦙"}.mdi-qqchat:before{content:"󰘅"}.mdi-qrcode:before{content:"󰐲"}.mdi-qrcode-edit:before{content:"󰢸"}.mdi-qrcode-minus:before{content:"󱆌"}.mdi-qrcode-plus:before{content:"󱆋"}.mdi-qrcode-remove:before{content:"󱆍"}.mdi-qrcode-scan:before{content:"󰐳"}.mdi-quadcopter:before{content:"󰐴"}.mdi-quality-high:before{content:"󰐵"}.mdi-quality-low:before{content:"󰨌"}.mdi-quality-medium:before{content:"󰨍"}.mdi-quora:before{content:"󰴩"}.mdi-rabbit:before{content:"󰤇"}.mdi-rabbit-variant:before{content:"󱩡"}.mdi-rabbit-variant-outline:before{content:"󱩢"}.mdi-racing-helmet:before{content:"󰶓"}.mdi-racquetball:before{content:"󰶔"}.mdi-radar:before{content:"󰐷"}.mdi-radiator:before{content:"󰐸"}.mdi-radiator-disabled:before{content:"󰫗"}.mdi-radiator-off:before{content:"󰫘"}.mdi-radio:before{content:"󰐹"}.mdi-radio-am:before{content:"󰲾"}.mdi-radio-fm:before{content:"󰲿"}.mdi-radio-handheld:before{content:"󰐺"}.mdi-radio-off:before{content:"󱈜"}.mdi-radio-tower:before{content:"󰐻"}.mdi-radioactive:before{content:"󰐼"}.mdi-radioactive-circle:before{content:"󱡝"}.mdi-radioactive-circle-outline:before{content:"󱡞"}.mdi-radioactive-off:before{content:"󰻁"}.mdi-radiobox-blank:before{content:"󰐽"}.mdi-radiobox-indeterminate-variant:before{content:"󱱞"}.mdi-radiobox-marked:before{content:"󰐾"}.mdi-radiology-box:before{content:"󱓅"}.mdi-radiology-box-outline:before{content:"󱓆"}.mdi-radius:before{content:"󰳀"}.mdi-radius-outline:before{content:"󰳁"}.mdi-railroad-light:before{content:"󰼞"}.mdi-rake:before{content:"󱕄"}.mdi-raspberry-pi:before{content:"󰐿"}.mdi-raw:before{content:"󱨏"}.mdi-raw-off:before{content:"󱨐"}.mdi-ray-end:before{content:"󰑀"}.mdi-ray-end-arrow:before{content:"󰑁"}.mdi-ray-start:before{content:"󰑂"}.mdi-ray-start-arrow:before{content:"󰑃"}.mdi-ray-start-end:before{content:"󰑄"}.mdi-ray-start-vertex-end:before{content:"󱗘"}.mdi-ray-vertex:before{content:"󰑅"}.mdi-razor-double-edge:before{content:"󱦗"}.mdi-razor-single-edge:before{content:"󱦘"}.mdi-react:before{content:"󰜈"}.mdi-read:before{content:"󰑇"}.mdi-receipt:before{content:"󰠤"}.mdi-receipt-clock:before{content:"󱰾"}.mdi-receipt-clock-outline:before{content:"󱰿"}.mdi-receipt-outline:before{content:"󰓷"}.mdi-receipt-send:before{content:"󱱀"}.mdi-receipt-send-outline:before{content:"󱱁"}.mdi-receipt-text:before{content:"󰑉"}.mdi-receipt-text-arrow-left:before{content:"󱱂"}.mdi-receipt-text-arrow-left-outline:before{content:"󱱃"}.mdi-receipt-text-arrow-right:before{content:"󱱄"}.mdi-receipt-text-arrow-right-outline:before{content:"󱱅"}.mdi-receipt-text-check:before{content:"󱩣"}.mdi-receipt-text-check-outline:before{content:"󱩤"}.mdi-receipt-text-clock:before{content:"󱱆"}.mdi-receipt-text-clock-outline:before{content:"󱱇"}.mdi-receipt-text-edit:before{content:"󱱈"}.mdi-receipt-text-edit-outline:before{content:"󱱉"}.mdi-receipt-text-minus:before{content:"󱩥"}.mdi-receipt-text-minus-outline:before{content:"󱩦"}.mdi-receipt-text-outline:before{content:"󱧜"}.mdi-receipt-text-plus:before{content:"󱩧"}.mdi-receipt-text-plus-outline:before{content:"󱩨"}.mdi-receipt-text-remove:before{content:"󱩩"}.mdi-receipt-text-remove-outline:before{content:"󱩪"}.mdi-receipt-text-send:before{content:"󱱊"}.mdi-receipt-text-send-outline:before{content:"󱱋"}.mdi-record:before{content:"󰑊"}.mdi-record-circle:before{content:"󰻂"}.mdi-record-circle-outline:before{content:"󰻃"}.mdi-record-player:before{content:"󰦚"}.mdi-record-rec:before{content:"󰑋"}.mdi-rectangle:before{content:"󰹞"}.mdi-rectangle-outline:before{content:"󰹟"}.mdi-recycle:before{content:"󰑌"}.mdi-recycle-variant:before{content:"󱎝"}.mdi-reddit:before{content:"󰑍"}.mdi-redhat:before{content:"󱄛"}.mdi-redo:before{content:"󰑎"}.mdi-redo-variant:before{content:"󰑏"}.mdi-reflect-horizontal:before{content:"󰨎"}.mdi-reflect-vertical:before{content:"󰨏"}.mdi-refresh:before{content:"󰑐"}.mdi-refresh-auto:before{content:"󱣲"}.mdi-refresh-circle:before{content:"󱍷"}.mdi-regex:before{content:"󰑑"}.mdi-registered-trademark:before{content:"󰩧"}.mdi-reiterate:before{content:"󱖈"}.mdi-relation-many-to-many:before{content:"󱒖"}.mdi-relation-many-to-one:before{content:"󱒗"}.mdi-relation-many-to-one-or-many:before{content:"󱒘"}.mdi-relation-many-to-only-one:before{content:"󱒙"}.mdi-relation-many-to-zero-or-many:before{content:"󱒚"}.mdi-relation-many-to-zero-or-one:before{content:"󱒛"}.mdi-relation-one-or-many-to-many:before{content:"󱒜"}.mdi-relation-one-or-many-to-one:before{content:"󱒝"}.mdi-relation-one-or-many-to-one-or-many:before{content:"󱒞"}.mdi-relation-one-or-many-to-only-one:before{content:"󱒟"}.mdi-relation-one-or-many-to-zero-or-many:before{content:"󱒠"}.mdi-relation-one-or-many-to-zero-or-one:before{content:"󱒡"}.mdi-relation-one-to-many:before{content:"󱒢"}.mdi-relation-one-to-one:before{content:"󱒣"}.mdi-relation-one-to-one-or-many:before{content:"󱒤"}.mdi-relation-one-to-only-one:before{content:"󱒥"}.mdi-relation-one-to-zero-or-many:before{content:"󱒦"}.mdi-relation-one-to-zero-or-one:before{content:"󱒧"}.mdi-relation-only-one-to-many:before{content:"󱒨"}.mdi-relation-only-one-to-one:before{content:"󱒩"}.mdi-relation-only-one-to-one-or-many:before{content:"󱒪"}.mdi-relation-only-one-to-only-one:before{content:"󱒫"}.mdi-relation-only-one-to-zero-or-many:before{content:"󱒬"}.mdi-relation-only-one-to-zero-or-one:before{content:"󱒭"}.mdi-relation-zero-or-many-to-many:before{content:"󱒮"}.mdi-relation-zero-or-many-to-one:before{content:"󱒯"}.mdi-relation-zero-or-many-to-one-or-many:before{content:"󱒰"}.mdi-relation-zero-or-many-to-only-one:before{content:"󱒱"}.mdi-relation-zero-or-many-to-zero-or-many:before{content:"󱒲"}.mdi-relation-zero-or-many-to-zero-or-one:before{content:"󱒳"}.mdi-relation-zero-or-one-to-many:before{content:"󱒴"}.mdi-relation-zero-or-one-to-one:before{content:"󱒵"}.mdi-relation-zero-or-one-to-one-or-many:before{content:"󱒶"}.mdi-relation-zero-or-one-to-only-one:before{content:"󱒷"}.mdi-relation-zero-or-one-to-zero-or-many:before{content:"󱒸"}.mdi-relation-zero-or-one-to-zero-or-one:before{content:"󱒹"}.mdi-relative-scale:before{content:"󰑒"}.mdi-reload:before{content:"󰑓"}.mdi-reload-alert:before{content:"󱄋"}.mdi-reminder:before{content:"󰢌"}.mdi-remote:before{content:"󰑔"}.mdi-remote-desktop:before{content:"󰢹"}.mdi-remote-off:before{content:"󰻄"}.mdi-remote-tv:before{content:"󰻅"}.mdi-remote-tv-off:before{content:"󰻆"}.mdi-rename:before{content:"󱰘"}.mdi-rename-box:before{content:"󰑕"}.mdi-rename-box-outline:before{content:"󱰙"}.mdi-rename-outline:before{content:"󱰚"}.mdi-reorder-horizontal:before{content:"󰚈"}.mdi-reorder-vertical:before{content:"󰚉"}.mdi-repeat:before{content:"󰑖"}.mdi-repeat-off:before{content:"󰑗"}.mdi-repeat-once:before{content:"󰑘"}.mdi-repeat-variant:before{content:"󰕇"}.mdi-replay:before{content:"󰑙"}.mdi-reply:before{content:"󰑚"}.mdi-reply-all:before{content:"󰑛"}.mdi-reply-all-outline:before{content:"󰼟"}.mdi-reply-circle:before{content:"󱆮"}.mdi-reply-outline:before{content:"󰼠"}.mdi-reproduction:before{content:"󰑜"}.mdi-resistor:before{content:"󰭄"}.mdi-resistor-nodes:before{content:"󰭅"}.mdi-resize:before{content:"󰩨"}.mdi-resize-bottom-right:before{content:"󰑝"}.mdi-responsive:before{content:"󰑞"}.mdi-restart:before{content:"󰜉"}.mdi-restart-alert:before{content:"󱄌"}.mdi-restart-off:before{content:"󰶕"}.mdi-restore:before{content:"󰦛"}.mdi-restore-alert:before{content:"󱄍"}.mdi-rewind:before{content:"󰑟"}.mdi-rewind-10:before{content:"󰴪"}.mdi-rewind-15:before{content:"󱥆"}.mdi-rewind-30:before{content:"󰶖"}.mdi-rewind-45:before{content:"󱬓"}.mdi-rewind-5:before{content:"󱇹"}.mdi-rewind-60:before{content:"󱘌"}.mdi-rewind-outline:before{content:"󰜊"}.mdi-rhombus:before{content:"󰜋"}.mdi-rhombus-medium:before{content:"󰨐"}.mdi-rhombus-medium-outline:before{content:"󱓜"}.mdi-rhombus-outline:before{content:"󰜌"}.mdi-rhombus-split:before{content:"󰨑"}.mdi-rhombus-split-outline:before{content:"󱓝"}.mdi-ribbon:before{content:"󰑠"}.mdi-rice:before{content:"󰟪"}.mdi-rickshaw:before{content:"󱖻"}.mdi-rickshaw-electric:before{content:"󱖼"}.mdi-ring:before{content:"󰟫"}.mdi-rivet:before{content:"󰹠"}.mdi-road:before{content:"󰑡"}.mdi-road-variant:before{content:"󰑢"}.mdi-robber:before{content:"󱁘"}.mdi-robot:before{content:"󰚩"}.mdi-robot-angry:before{content:"󱚝"}.mdi-robot-angry-outline:before{content:"󱚞"}.mdi-robot-confused:before{content:"󱚟"}.mdi-robot-confused-outline:before{content:"󱚠"}.mdi-robot-dead:before{content:"󱚡"}.mdi-robot-dead-outline:before{content:"󱚢"}.mdi-robot-excited:before{content:"󱚣"}.mdi-robot-excited-outline:before{content:"󱚤"}.mdi-robot-happy:before{content:"󱜙"}.mdi-robot-happy-outline:before{content:"󱜚"}.mdi-robot-industrial:before{content:"󰭆"}.mdi-robot-industrial-outline:before{content:"󱨚"}.mdi-robot-love:before{content:"󱚥"}.mdi-robot-love-outline:before{content:"󱚦"}.mdi-robot-mower:before{content:"󱇷"}.mdi-robot-mower-outline:before{content:"󱇳"}.mdi-robot-off:before{content:"󱚧"}.mdi-robot-off-outline:before{content:"󱙻"}.mdi-robot-outline:before{content:"󱙺"}.mdi-robot-vacuum:before{content:"󰜍"}.mdi-robot-vacuum-alert:before{content:"󱭝"}.mdi-robot-vacuum-off:before{content:"󱰁"}.mdi-robot-vacuum-variant:before{content:"󰤈"}.mdi-robot-vacuum-variant-alert:before{content:"󱭞"}.mdi-robot-vacuum-variant-off:before{content:"󱰂"}.mdi-rocket:before{content:"󰑣"}.mdi-rocket-launch:before{content:"󱓞"}.mdi-rocket-launch-outline:before{content:"󱓟"}.mdi-rocket-outline:before{content:"󱎯"}.mdi-rodent:before{content:"󱌧"}.mdi-roller-shade:before{content:"󱩫"}.mdi-roller-shade-closed:before{content:"󱩬"}.mdi-roller-skate:before{content:"󰴫"}.mdi-roller-skate-off:before{content:"󰅅"}.mdi-rollerblade:before{content:"󰴬"}.mdi-rollerblade-off:before{content:"󰀮"}.mdi-rollupjs:before{content:"󰯀"}.mdi-rolodex:before{content:"󱪹"}.mdi-rolodex-outline:before{content:"󱪺"}.mdi-roman-numeral-1:before{content:"󱂈"}.mdi-roman-numeral-10:before{content:"󱂑"}.mdi-roman-numeral-2:before{content:"󱂉"}.mdi-roman-numeral-3:before{content:"󱂊"}.mdi-roman-numeral-4:before{content:"󱂋"}.mdi-roman-numeral-5:before{content:"󱂌"}.mdi-roman-numeral-6:before{content:"󱂍"}.mdi-roman-numeral-7:before{content:"󱂎"}.mdi-roman-numeral-8:before{content:"󱂏"}.mdi-roman-numeral-9:before{content:"󱂐"}.mdi-room-service:before{content:"󰢍"}.mdi-room-service-outline:before{content:"󰶗"}.mdi-rotate-360:before{content:"󱦙"}.mdi-rotate-3d:before{content:"󰻇"}.mdi-rotate-3d-variant:before{content:"󰑤"}.mdi-rotate-left:before{content:"󰑥"}.mdi-rotate-left-variant:before{content:"󰑦"}.mdi-rotate-orbit:before{content:"󰶘"}.mdi-rotate-right:before{content:"󰑧"}.mdi-rotate-right-variant:before{content:"󰑨"}.mdi-rounded-corner:before{content:"󰘇"}.mdi-router:before{content:"󱇢"}.mdi-router-network:before{content:"󱂇"}.mdi-router-wireless:before{content:"󰑩"}.mdi-router-wireless-off:before{content:"󱖣"}.mdi-router-wireless-settings:before{content:"󰩩"}.mdi-routes:before{content:"󰑪"}.mdi-routes-clock:before{content:"󱁙"}.mdi-rowing:before{content:"󰘈"}.mdi-rss:before{content:"󰑫"}.mdi-rss-box:before{content:"󰑬"}.mdi-rss-off:before{content:"󰼡"}.mdi-rug:before{content:"󱑵"}.mdi-rugby:before{content:"󰶙"}.mdi-ruler:before{content:"󰑭"}.mdi-ruler-square:before{content:"󰳂"}.mdi-ruler-square-compass:before{content:"󰺾"}.mdi-run:before{content:"󰜎"}.mdi-run-fast:before{content:"󰑮"}.mdi-rv-truck:before{content:"󱇔"}.mdi-sack:before{content:"󰴮"}.mdi-sack-outline:before{content:"󱱌"}.mdi-sack-percent:before{content:"󰴯"}.mdi-safe:before{content:"󰩪"}.mdi-safe-square:before{content:"󱉼"}.mdi-safe-square-outline:before{content:"󱉽"}.mdi-safety-goggles:before{content:"󰴰"}.mdi-sail-boat:before{content:"󰻈"}.mdi-sail-boat-sink:before{content:"󱫯"}.mdi-sale:before{content:"󰑯"}.mdi-sale-outline:before{content:"󱨆"}.mdi-salesforce:before{content:"󰢎"}.mdi-sass:before{content:"󰟬"}.mdi-satellite:before{content:"󰑰"}.mdi-satellite-uplink:before{content:"󰤉"}.mdi-satellite-variant:before{content:"󰑱"}.mdi-sausage:before{content:"󰢺"}.mdi-sausage-off:before{content:"󱞉"}.mdi-saw-blade:before{content:"󰹡"}.mdi-sawtooth-wave:before{content:"󱑺"}.mdi-saxophone:before{content:"󰘉"}.mdi-scale:before{content:"󰑲"}.mdi-scale-balance:before{content:"󰗑"}.mdi-scale-bathroom:before{content:"󰑳"}.mdi-scale-off:before{content:"󱁚"}.mdi-scale-unbalanced:before{content:"󱦸"}.mdi-scan-helper:before{content:"󱏘"}.mdi-scanner:before{content:"󰚫"}.mdi-scanner-off:before{content:"󰤊"}.mdi-scatter-plot:before{content:"󰻉"}.mdi-scatter-plot-outline:before{content:"󰻊"}.mdi-scent:before{content:"󱥘"}.mdi-scent-off:before{content:"󱥙"}.mdi-school:before{content:"󰑴"}.mdi-school-outline:before{content:"󱆀"}.mdi-scissors-cutting:before{content:"󰩫"}.mdi-scooter:before{content:"󱖽"}.mdi-scooter-electric:before{content:"󱖾"}.mdi-scoreboard:before{content:"󱉾"}.mdi-scoreboard-outline:before{content:"󱉿"}.mdi-screen-rotation:before{content:"󰑵"}.mdi-screen-rotation-lock:before{content:"󰑸"}.mdi-screw-flat-top:before{content:"󰷳"}.mdi-screw-lag:before{content:"󰷴"}.mdi-screw-machine-flat-top:before{content:"󰷵"}.mdi-screw-machine-round-top:before{content:"󰷶"}.mdi-screw-round-top:before{content:"󰷷"}.mdi-screwdriver:before{content:"󰑶"}.mdi-script:before{content:"󰯁"}.mdi-script-outline:before{content:"󰑷"}.mdi-script-text:before{content:"󰯂"}.mdi-script-text-key:before{content:"󱜥"}.mdi-script-text-key-outline:before{content:"󱜦"}.mdi-script-text-outline:before{content:"󰯃"}.mdi-script-text-play:before{content:"󱜧"}.mdi-script-text-play-outline:before{content:"󱜨"}.mdi-sd:before{content:"󰑹"}.mdi-seal:before{content:"󰑺"}.mdi-seal-variant:before{content:"󰿙"}.mdi-search-web:before{content:"󰜏"}.mdi-seat:before{content:"󰳃"}.mdi-seat-flat:before{content:"󰑻"}.mdi-seat-flat-angled:before{content:"󰑼"}.mdi-seat-individual-suite:before{content:"󰑽"}.mdi-seat-legroom-extra:before{content:"󰑾"}.mdi-seat-legroom-normal:before{content:"󰑿"}.mdi-seat-legroom-reduced:before{content:"󰒀"}.mdi-seat-outline:before{content:"󰳄"}.mdi-seat-passenger:before{content:"󱉉"}.mdi-seat-recline-extra:before{content:"󰒁"}.mdi-seat-recline-normal:before{content:"󰒂"}.mdi-seatbelt:before{content:"󰳅"}.mdi-security:before{content:"󰒃"}.mdi-security-network:before{content:"󰒄"}.mdi-seed:before{content:"󰹢"}.mdi-seed-off:before{content:"󱏽"}.mdi-seed-off-outline:before{content:"󱏾"}.mdi-seed-outline:before{content:"󰹣"}.mdi-seed-plus:before{content:"󱩭"}.mdi-seed-plus-outline:before{content:"󱩮"}.mdi-seesaw:before{content:"󱖤"}.mdi-segment:before{content:"󰻋"}.mdi-select:before{content:"󰒅"}.mdi-select-all:before{content:"󰒆"}.mdi-select-arrow-down:before{content:"󱭙"}.mdi-select-arrow-up:before{content:"󱭘"}.mdi-select-color:before{content:"󰴱"}.mdi-select-compare:before{content:"󰫙"}.mdi-select-drag:before{content:"󰩬"}.mdi-select-group:before{content:"󰾂"}.mdi-select-inverse:before{content:"󰒇"}.mdi-select-marker:before{content:"󱊀"}.mdi-select-multiple:before{content:"󱊁"}.mdi-select-multiple-marker:before{content:"󱊂"}.mdi-select-off:before{content:"󰒈"}.mdi-select-place:before{content:"󰿚"}.mdi-select-remove:before{content:"󱟁"}.mdi-select-search:before{content:"󱈄"}.mdi-selection:before{content:"󰒉"}.mdi-selection-drag:before{content:"󰩭"}.mdi-selection-ellipse:before{content:"󰴲"}.mdi-selection-ellipse-arrow-inside:before{content:"󰼢"}.mdi-selection-ellipse-remove:before{content:"󱟂"}.mdi-selection-marker:before{content:"󱊃"}.mdi-selection-multiple:before{content:"󱊅"}.mdi-selection-multiple-marker:before{content:"󱊄"}.mdi-selection-off:before{content:"󰝷"}.mdi-selection-remove:before{content:"󱟃"}.mdi-selection-search:before{content:"󱈅"}.mdi-semantic-web:before{content:"󱌖"}.mdi-send:before{content:"󰒊"}.mdi-send-check:before{content:"󱅡"}.mdi-send-check-outline:before{content:"󱅢"}.mdi-send-circle:before{content:"󰷸"}.mdi-send-circle-outline:before{content:"󰷹"}.mdi-send-clock:before{content:"󱅣"}.mdi-send-clock-outline:before{content:"󱅤"}.mdi-send-lock:before{content:"󰟭"}.mdi-send-lock-outline:before{content:"󱅦"}.mdi-send-outline:before{content:"󱅥"}.mdi-send-variant:before{content:"󱱍"}.mdi-send-variant-clock:before{content:"󱱾"}.mdi-send-variant-clock-outline:before{content:"󱱿"}.mdi-send-variant-outline:before{content:"󱱎"}.mdi-serial-port:before{content:"󰙜"}.mdi-server:before{content:"󰒋"}.mdi-server-minus:before{content:"󰒌"}.mdi-server-network:before{content:"󰒍"}.mdi-server-network-off:before{content:"󰒎"}.mdi-server-off:before{content:"󰒏"}.mdi-server-plus:before{content:"󰒐"}.mdi-server-remove:before{content:"󰒑"}.mdi-server-security:before{content:"󰒒"}.mdi-set-all:before{content:"󰝸"}.mdi-set-center:before{content:"󰝹"}.mdi-set-center-right:before{content:"󰝺"}.mdi-set-left:before{content:"󰝻"}.mdi-set-left-center:before{content:"󰝼"}.mdi-set-left-right:before{content:"󰝽"}.mdi-set-merge:before{content:"󱓠"}.mdi-set-none:before{content:"󰝾"}.mdi-set-right:before{content:"󰝿"}.mdi-set-split:before{content:"󱓡"}.mdi-set-square:before{content:"󱑝"}.mdi-set-top-box:before{content:"󰦟"}.mdi-settings-helper:before{content:"󰩮"}.mdi-shaker:before{content:"󱄎"}.mdi-shaker-outline:before{content:"󱄏"}.mdi-shape:before{content:"󰠱"}.mdi-shape-circle-plus:before{content:"󰙝"}.mdi-shape-outline:before{content:"󰠲"}.mdi-shape-oval-plus:before{content:"󱇺"}.mdi-shape-plus:before{content:"󰒕"}.mdi-shape-plus-outline:before{content:"󱱏"}.mdi-shape-polygon-plus:before{content:"󰙞"}.mdi-shape-rectangle-plus:before{content:"󰙟"}.mdi-shape-square-plus:before{content:"󰙠"}.mdi-shape-square-rounded-plus:before{content:"󱓺"}.mdi-share:before{content:"󰒖"}.mdi-share-all:before{content:"󱇴"}.mdi-share-all-outline:before{content:"󱇵"}.mdi-share-circle:before{content:"󱆭"}.mdi-share-off:before{content:"󰼣"}.mdi-share-off-outline:before{content:"󰼤"}.mdi-share-outline:before{content:"󰤲"}.mdi-share-variant:before{content:"󰒗"}.mdi-share-variant-outline:before{content:"󱔔"}.mdi-shark:before{content:"󱢺"}.mdi-shark-fin:before{content:"󱙳"}.mdi-shark-fin-outline:before{content:"󱙴"}.mdi-shark-off:before{content:"󱢻"}.mdi-sheep:before{content:"󰳆"}.mdi-shield:before{content:"󰒘"}.mdi-shield-account:before{content:"󰢏"}.mdi-shield-account-outline:before{content:"󰨒"}.mdi-shield-account-variant:before{content:"󱖧"}.mdi-shield-account-variant-outline:before{content:"󱖨"}.mdi-shield-airplane:before{content:"󰚻"}.mdi-shield-airplane-outline:before{content:"󰳇"}.mdi-shield-alert:before{content:"󰻌"}.mdi-shield-alert-outline:before{content:"󰻍"}.mdi-shield-bug:before{content:"󱏚"}.mdi-shield-bug-outline:before{content:"󱏛"}.mdi-shield-car:before{content:"󰾃"}.mdi-shield-check:before{content:"󰕥"}.mdi-shield-check-outline:before{content:"󰳈"}.mdi-shield-cross:before{content:"󰳉"}.mdi-shield-cross-outline:before{content:"󰳊"}.mdi-shield-crown:before{content:"󱢼"}.mdi-shield-crown-outline:before{content:"󱢽"}.mdi-shield-edit:before{content:"󱆠"}.mdi-shield-edit-outline:before{content:"󱆡"}.mdi-shield-half:before{content:"󱍠"}.mdi-shield-half-full:before{content:"󰞀"}.mdi-shield-home:before{content:"󰚊"}.mdi-shield-home-outline:before{content:"󰳋"}.mdi-shield-key:before{content:"󰯄"}.mdi-shield-key-outline:before{content:"󰯅"}.mdi-shield-link-variant:before{content:"󰴳"}.mdi-shield-link-variant-outline:before{content:"󰴴"}.mdi-shield-lock:before{content:"󰦝"}.mdi-shield-lock-open:before{content:"󱦚"}.mdi-shield-lock-open-outline:before{content:"󱦛"}.mdi-shield-lock-outline:before{content:"󰳌"}.mdi-shield-moon:before{content:"󱠨"}.mdi-shield-moon-outline:before{content:"󱠩"}.mdi-shield-off:before{content:"󰦞"}.mdi-shield-off-outline:before{content:"󰦜"}.mdi-shield-outline:before{content:"󰒙"}.mdi-shield-plus:before{content:"󰫚"}.mdi-shield-plus-outline:before{content:"󰫛"}.mdi-shield-refresh:before{content:"󰂪"}.mdi-shield-refresh-outline:before{content:"󰇠"}.mdi-shield-remove:before{content:"󰫜"}.mdi-shield-remove-outline:before{content:"󰫝"}.mdi-shield-search:before{content:"󰶚"}.mdi-shield-star:before{content:"󱄻"}.mdi-shield-star-outline:before{content:"󱄼"}.mdi-shield-sun:before{content:"󱁝"}.mdi-shield-sun-outline:before{content:"󱁞"}.mdi-shield-sword:before{content:"󱢾"}.mdi-shield-sword-outline:before{content:"󱢿"}.mdi-shield-sync:before{content:"󱆢"}.mdi-shield-sync-outline:before{content:"󱆣"}.mdi-shimmer:before{content:"󱕅"}.mdi-ship-wheel:before{content:"󰠳"}.mdi-shipping-pallet:before{content:"󱡎"}.mdi-shoe-ballet:before{content:"󱗊"}.mdi-shoe-cleat:before{content:"󱗇"}.mdi-shoe-formal:before{content:"󰭇"}.mdi-shoe-heel:before{content:"󰭈"}.mdi-shoe-print:before{content:"󰷺"}.mdi-shoe-sneaker:before{content:"󱗈"}.mdi-shopping:before{content:"󰒚"}.mdi-shopping-music:before{content:"󰒛"}.mdi-shopping-outline:before{content:"󱇕"}.mdi-shopping-search:before{content:"󰾄"}.mdi-shopping-search-outline:before{content:"󱩯"}.mdi-shore:before{content:"󱓹"}.mdi-shovel:before{content:"󰜐"}.mdi-shovel-off:before{content:"󰜑"}.mdi-shower:before{content:"󰦠"}.mdi-shower-head:before{content:"󰦡"}.mdi-shredder:before{content:"󰒜"}.mdi-shuffle:before{content:"󰒝"}.mdi-shuffle-disabled:before{content:"󰒞"}.mdi-shuffle-variant:before{content:"󰒟"}.mdi-shuriken:before{content:"󱍿"}.mdi-sickle:before{content:"󱣀"}.mdi-sigma:before{content:"󰒠"}.mdi-sigma-lower:before{content:"󰘫"}.mdi-sign-caution:before{content:"󰒡"}.mdi-sign-direction:before{content:"󰞁"}.mdi-sign-direction-minus:before{content:"󱀀"}.mdi-sign-direction-plus:before{content:"󰿜"}.mdi-sign-direction-remove:before{content:"󰿝"}.mdi-sign-language:before{content:"󱭍"}.mdi-sign-language-outline:before{content:"󱭎"}.mdi-sign-pole:before{content:"󱓸"}.mdi-sign-real-estate:before{content:"󱄘"}.mdi-sign-text:before{content:"󰞂"}.mdi-sign-yield:before{content:"󱮯"}.mdi-signal:before{content:"󰒢"}.mdi-signal-2g:before{content:"󰜒"}.mdi-signal-3g:before{content:"󰜓"}.mdi-signal-4g:before{content:"󰜔"}.mdi-signal-5g:before{content:"󰩯"}.mdi-signal-cellular-1:before{content:"󰢼"}.mdi-signal-cellular-2:before{content:"󰢽"}.mdi-signal-cellular-3:before{content:"󰢾"}.mdi-signal-cellular-outline:before{content:"󰢿"}.mdi-signal-distance-variant:before{content:"󰹤"}.mdi-signal-hspa:before{content:"󰜕"}.mdi-signal-hspa-plus:before{content:"󰜖"}.mdi-signal-off:before{content:"󰞃"}.mdi-signal-variant:before{content:"󰘊"}.mdi-signature:before{content:"󰷻"}.mdi-signature-freehand:before{content:"󰷼"}.mdi-signature-image:before{content:"󰷽"}.mdi-signature-text:before{content:"󰷾"}.mdi-silo:before{content:"󱮟"}.mdi-silo-outline:before{content:"󰭉"}.mdi-silverware:before{content:"󰒣"}.mdi-silverware-clean:before{content:"󰿞"}.mdi-silverware-fork:before{content:"󰒤"}.mdi-silverware-fork-knife:before{content:"󰩰"}.mdi-silverware-spoon:before{content:"󰒥"}.mdi-silverware-variant:before{content:"󰒦"}.mdi-sim:before{content:"󰒧"}.mdi-sim-alert:before{content:"󰒨"}.mdi-sim-alert-outline:before{content:"󱗓"}.mdi-sim-off:before{content:"󰒩"}.mdi-sim-off-outline:before{content:"󱗔"}.mdi-sim-outline:before{content:"󱗕"}.mdi-simple-icons:before{content:"󱌝"}.mdi-sina-weibo:before{content:"󰫟"}.mdi-sine-wave:before{content:"󰥛"}.mdi-sitemap:before{content:"󰒪"}.mdi-sitemap-outline:before{content:"󱦜"}.mdi-size-l:before{content:"󱎦"}.mdi-size-m:before{content:"󱎥"}.mdi-size-s:before{content:"󱎤"}.mdi-size-xl:before{content:"󱎧"}.mdi-size-xs:before{content:"󱎣"}.mdi-size-xxl:before{content:"󱎨"}.mdi-size-xxs:before{content:"󱎢"}.mdi-size-xxxl:before{content:"󱎩"}.mdi-skate:before{content:"󰴵"}.mdi-skate-off:before{content:"󰚙"}.mdi-skateboard:before{content:"󱓂"}.mdi-skateboarding:before{content:"󰔁"}.mdi-skew-less:before{content:"󰴶"}.mdi-skew-more:before{content:"󰴷"}.mdi-ski:before{content:"󱌄"}.mdi-ski-cross-country:before{content:"󱌅"}.mdi-ski-water:before{content:"󱌆"}.mdi-skip-backward:before{content:"󰒫"}.mdi-skip-backward-outline:before{content:"󰼥"}.mdi-skip-forward:before{content:"󰒬"}.mdi-skip-forward-outline:before{content:"󰼦"}.mdi-skip-next:before{content:"󰒭"}.mdi-skip-next-circle:before{content:"󰙡"}.mdi-skip-next-circle-outline:before{content:"󰙢"}.mdi-skip-next-outline:before{content:"󰼧"}.mdi-skip-previous:before{content:"󰒮"}.mdi-skip-previous-circle:before{content:"󰙣"}.mdi-skip-previous-circle-outline:before{content:"󰙤"}.mdi-skip-previous-outline:before{content:"󰼨"}.mdi-skull:before{content:"󰚌"}.mdi-skull-crossbones:before{content:"󰯆"}.mdi-skull-crossbones-outline:before{content:"󰯇"}.mdi-skull-outline:before{content:"󰯈"}.mdi-skull-scan:before{content:"󱓇"}.mdi-skull-scan-outline:before{content:"󱓈"}.mdi-skype:before{content:"󰒯"}.mdi-skype-business:before{content:"󰒰"}.mdi-slack:before{content:"󰒱"}.mdi-slash-forward:before{content:"󰿟"}.mdi-slash-forward-box:before{content:"󰿠"}.mdi-sledding:before{content:"󰐛"}.mdi-sleep:before{content:"󰒲"}.mdi-sleep-off:before{content:"󰒳"}.mdi-slide:before{content:"󱖥"}.mdi-slope-downhill:before{content:"󰷿"}.mdi-slope-uphill:before{content:"󰸀"}.mdi-slot-machine:before{content:"󱄔"}.mdi-slot-machine-outline:before{content:"󱄕"}.mdi-smart-card:before{content:"󱂽"}.mdi-smart-card-off:before{content:"󱣷"}.mdi-smart-card-off-outline:before{content:"󱣸"}.mdi-smart-card-outline:before{content:"󱂾"}.mdi-smart-card-reader:before{content:"󱂿"}.mdi-smart-card-reader-outline:before{content:"󱃀"}.mdi-smog:before{content:"󰩱"}.mdi-smoke:before{content:"󱞙"}.mdi-smoke-detector:before{content:"󰎒"}.mdi-smoke-detector-alert:before{content:"󱤮"}.mdi-smoke-detector-alert-outline:before{content:"󱤯"}.mdi-smoke-detector-off:before{content:"󱠉"}.mdi-smoke-detector-off-outline:before{content:"󱠊"}.mdi-smoke-detector-outline:before{content:"󱠈"}.mdi-smoke-detector-variant:before{content:"󱠋"}.mdi-smoke-detector-variant-alert:before{content:"󱤰"}.mdi-smoke-detector-variant-off:before{content:"󱠌"}.mdi-smoking:before{content:"󰒴"}.mdi-smoking-off:before{content:"󰒵"}.mdi-smoking-pipe:before{content:"󱐍"}.mdi-smoking-pipe-off:before{content:"󱐨"}.mdi-snail:before{content:"󱙷"}.mdi-snake:before{content:"󱔎"}.mdi-snapchat:before{content:"󰒶"}.mdi-snowboard:before{content:"󱌇"}.mdi-snowflake:before{content:"󰜗"}.mdi-snowflake-alert:before{content:"󰼩"}.mdi-snowflake-check:before{content:"󱩰"}.mdi-snowflake-melt:before{content:"󱋋"}.mdi-snowflake-off:before{content:"󱓣"}.mdi-snowflake-thermometer:before{content:"󱩱"}.mdi-snowflake-variant:before{content:"󰼪"}.mdi-snowman:before{content:"󰒷"}.mdi-snowmobile:before{content:"󰛝"}.mdi-snowshoeing:before{content:"󱩲"}.mdi-soccer:before{content:"󰒸"}.mdi-soccer-field:before{content:"󰠴"}.mdi-social-distance-2-meters:before{content:"󱕹"}.mdi-social-distance-6-feet:before{content:"󱕺"}.mdi-sofa:before{content:"󰒹"}.mdi-sofa-outline:before{content:"󱕭"}.mdi-sofa-single:before{content:"󱕮"}.mdi-sofa-single-outline:before{content:"󱕯"}.mdi-solar-panel:before{content:"󰶛"}.mdi-solar-panel-large:before{content:"󰶜"}.mdi-solar-power:before{content:"󰩲"}.mdi-solar-power-variant:before{content:"󱩳"}.mdi-solar-power-variant-outline:before{content:"󱩴"}.mdi-soldering-iron:before{content:"󱂒"}.mdi-solid:before{content:"󰚍"}.mdi-sony-playstation:before{content:"󰐔"}.mdi-sort:before{content:"󰒺"}.mdi-sort-alphabetical-ascending:before{content:"󰖽"}.mdi-sort-alphabetical-ascending-variant:before{content:"󱅈"}.mdi-sort-alphabetical-descending:before{content:"󰖿"}.mdi-sort-alphabetical-descending-variant:before{content:"󱅉"}.mdi-sort-alphabetical-variant:before{content:"󰒻"}.mdi-sort-ascending:before{content:"󰒼"}.mdi-sort-bool-ascending:before{content:"󱎅"}.mdi-sort-bool-ascending-variant:before{content:"󱎆"}.mdi-sort-bool-descending:before{content:"󱎇"}.mdi-sort-bool-descending-variant:before{content:"󱎈"}.mdi-sort-calendar-ascending:before{content:"󱕇"}.mdi-sort-calendar-descending:before{content:"󱕈"}.mdi-sort-clock-ascending:before{content:"󱕉"}.mdi-sort-clock-ascending-outline:before{content:"󱕊"}.mdi-sort-clock-descending:before{content:"󱕋"}.mdi-sort-clock-descending-outline:before{content:"󱕌"}.mdi-sort-descending:before{content:"󰒽"}.mdi-sort-numeric-ascending:before{content:"󱎉"}.mdi-sort-numeric-ascending-variant:before{content:"󰤍"}.mdi-sort-numeric-descending:before{content:"󱎊"}.mdi-sort-numeric-descending-variant:before{content:"󰫒"}.mdi-sort-numeric-variant:before{content:"󰒾"}.mdi-sort-reverse-variant:before{content:"󰌼"}.mdi-sort-variant:before{content:"󰒿"}.mdi-sort-variant-lock:before{content:"󰳍"}.mdi-sort-variant-lock-open:before{content:"󰳎"}.mdi-sort-variant-off:before{content:"󱪻"}.mdi-sort-variant-remove:before{content:"󱅇"}.mdi-soundbar:before{content:"󱟛"}.mdi-soundcloud:before{content:"󰓀"}.mdi-source-branch:before{content:"󰘬"}.mdi-source-branch-check:before{content:"󱓏"}.mdi-source-branch-minus:before{content:"󱓋"}.mdi-source-branch-plus:before{content:"󱓊"}.mdi-source-branch-refresh:before{content:"󱓍"}.mdi-source-branch-remove:before{content:"󱓌"}.mdi-source-branch-sync:before{content:"󱓎"}.mdi-source-commit:before{content:"󰜘"}.mdi-source-commit-end:before{content:"󰜙"}.mdi-source-commit-end-local:before{content:"󰜚"}.mdi-source-commit-local:before{content:"󰜛"}.mdi-source-commit-next-local:before{content:"󰜜"}.mdi-source-commit-start:before{content:"󰜝"}.mdi-source-commit-start-next-local:before{content:"󰜞"}.mdi-source-fork:before{content:"󰓁"}.mdi-source-merge:before{content:"󰘭"}.mdi-source-pull:before{content:"󰓂"}.mdi-source-repository:before{content:"󰳏"}.mdi-source-repository-multiple:before{content:"󰳐"}.mdi-soy-sauce:before{content:"󰟮"}.mdi-soy-sauce-off:before{content:"󱏼"}.mdi-spa:before{content:"󰳑"}.mdi-spa-outline:before{content:"󰳒"}.mdi-space-invaders:before{content:"󰯉"}.mdi-space-station:before{content:"󱎃"}.mdi-spade:before{content:"󰹥"}.mdi-speaker:before{content:"󰓃"}.mdi-speaker-bluetooth:before{content:"󰦢"}.mdi-speaker-message:before{content:"󱬑"}.mdi-speaker-multiple:before{content:"󰴸"}.mdi-speaker-off:before{content:"󰓄"}.mdi-speaker-pause:before{content:"󱭳"}.mdi-speaker-play:before{content:"󱭲"}.mdi-speaker-stop:before{content:"󱭴"}.mdi-speaker-wireless:before{content:"󰜟"}.mdi-spear:before{content:"󱡅"}.mdi-speedometer:before{content:"󰓅"}.mdi-speedometer-medium:before{content:"󰾅"}.mdi-speedometer-slow:before{content:"󰾆"}.mdi-spellcheck:before{content:"󰓆"}.mdi-sphere:before{content:"󱥔"}.mdi-sphere-off:before{content:"󱥕"}.mdi-spider:before{content:"󱇪"}.mdi-spider-outline:before{content:"󱱵"}.mdi-spider-thread:before{content:"󱇫"}.mdi-spider-web:before{content:"󰯊"}.mdi-spirit-level:before{content:"󱓱"}.mdi-spoon-sugar:before{content:"󱐩"}.mdi-spotify:before{content:"󰓇"}.mdi-spotlight:before{content:"󰓈"}.mdi-spotlight-beam:before{content:"󰓉"}.mdi-spray:before{content:"󰙥"}.mdi-spray-bottle:before{content:"󰫠"}.mdi-sprinkler:before{content:"󱁟"}.mdi-sprinkler-fire:before{content:"󱦝"}.mdi-sprinkler-variant:before{content:"󱁠"}.mdi-sprout:before{content:"󰹦"}.mdi-sprout-outline:before{content:"󰹧"}.mdi-square:before{content:"󰝤"}.mdi-square-circle:before{content:"󱔀"}.mdi-square-circle-outline:before{content:"󱱐"}.mdi-square-edit-outline:before{content:"󰤌"}.mdi-square-medium:before{content:"󰨓"}.mdi-square-medium-outline:before{content:"󰨔"}.mdi-square-off:before{content:"󱋮"}.mdi-square-off-outline:before{content:"󱋯"}.mdi-square-opacity:before{content:"󱡔"}.mdi-square-outline:before{content:"󰝣"}.mdi-square-root:before{content:"󰞄"}.mdi-square-root-box:before{content:"󰦣"}.mdi-square-rounded:before{content:"󱓻"}.mdi-square-rounded-badge:before{content:"󱨇"}.mdi-square-rounded-badge-outline:before{content:"󱨈"}.mdi-square-rounded-outline:before{content:"󱓼"}.mdi-square-small:before{content:"󰨕"}.mdi-square-wave:before{content:"󱑻"}.mdi-squeegee:before{content:"󰫡"}.mdi-ssh:before{content:"󰣀"}.mdi-stack-exchange:before{content:"󰘋"}.mdi-stack-overflow:before{content:"󰓌"}.mdi-stackpath:before{content:"󰍙"}.mdi-stadium:before{content:"󰿹"}.mdi-stadium-outline:before{content:"󱬃"}.mdi-stadium-variant:before{content:"󰜠"}.mdi-stairs:before{content:"󰓍"}.mdi-stairs-box:before{content:"󱎞"}.mdi-stairs-down:before{content:"󱊾"}.mdi-stairs-up:before{content:"󱊽"}.mdi-stamper:before{content:"󰴹"}.mdi-standard-definition:before{content:"󰟯"}.mdi-star:before{content:"󰓎"}.mdi-star-box:before{content:"󰩳"}.mdi-star-box-multiple:before{content:"󱊆"}.mdi-star-box-multiple-outline:before{content:"󱊇"}.mdi-star-box-outline:before{content:"󰩴"}.mdi-star-check:before{content:"󱕦"}.mdi-star-check-outline:before{content:"󱕪"}.mdi-star-circle:before{content:"󰓏"}.mdi-star-circle-outline:before{content:"󰦤"}.mdi-star-cog:before{content:"󱙨"}.mdi-star-cog-outline:before{content:"󱙩"}.mdi-star-crescent:before{content:"󰥹"}.mdi-star-david:before{content:"󰥺"}.mdi-star-face:before{content:"󰦥"}.mdi-star-four-points:before{content:"󰫢"}.mdi-star-four-points-box:before{content:"󱱑"}.mdi-star-four-points-box-outline:before{content:"󱱒"}.mdi-star-four-points-circle:before{content:"󱱓"}.mdi-star-four-points-circle-outline:before{content:"󱱔"}.mdi-star-four-points-outline:before{content:"󰫣"}.mdi-star-four-points-small:before{content:"󱱕"}.mdi-star-half:before{content:"󰉆"}.mdi-star-half-full:before{content:"󰓐"}.mdi-star-minus:before{content:"󱕤"}.mdi-star-minus-outline:before{content:"󱕨"}.mdi-star-off:before{content:"󰓑"}.mdi-star-off-outline:before{content:"󱕛"}.mdi-star-outline:before{content:"󰓒"}.mdi-star-plus:before{content:"󱕣"}.mdi-star-plus-outline:before{content:"󱕧"}.mdi-star-remove:before{content:"󱕥"}.mdi-star-remove-outline:before{content:"󱕩"}.mdi-star-settings:before{content:"󱙪"}.mdi-star-settings-outline:before{content:"󱙫"}.mdi-star-shooting:before{content:"󱝁"}.mdi-star-shooting-outline:before{content:"󱝂"}.mdi-star-three-points:before{content:"󰫤"}.mdi-star-three-points-outline:before{content:"󰫥"}.mdi-state-machine:before{content:"󱇯"}.mdi-steam:before{content:"󰓓"}.mdi-steering:before{content:"󰓔"}.mdi-steering-off:before{content:"󰤎"}.mdi-step-backward:before{content:"󰓕"}.mdi-step-backward-2:before{content:"󰓖"}.mdi-step-forward:before{content:"󰓗"}.mdi-step-forward-2:before{content:"󰓘"}.mdi-stethoscope:before{content:"󰓙"}.mdi-sticker:before{content:"󱍤"}.mdi-sticker-alert:before{content:"󱍥"}.mdi-sticker-alert-outline:before{content:"󱍦"}.mdi-sticker-check:before{content:"󱍧"}.mdi-sticker-check-outline:before{content:"󱍨"}.mdi-sticker-circle-outline:before{content:"󰗐"}.mdi-sticker-emoji:before{content:"󰞅"}.mdi-sticker-minus:before{content:"󱍩"}.mdi-sticker-minus-outline:before{content:"󱍪"}.mdi-sticker-outline:before{content:"󱍫"}.mdi-sticker-plus:before{content:"󱍬"}.mdi-sticker-plus-outline:before{content:"󱍭"}.mdi-sticker-remove:before{content:"󱍮"}.mdi-sticker-remove-outline:before{content:"󱍯"}.mdi-sticker-text:before{content:"󱞎"}.mdi-sticker-text-outline:before{content:"󱞏"}.mdi-stocking:before{content:"󰓚"}.mdi-stomach:before{content:"󱂓"}.mdi-stool:before{content:"󱥝"}.mdi-stool-outline:before{content:"󱥞"}.mdi-stop:before{content:"󰓛"}.mdi-stop-circle:before{content:"󰙦"}.mdi-stop-circle-outline:before{content:"󰙧"}.mdi-storage-tank:before{content:"󱩵"}.mdi-storage-tank-outline:before{content:"󱩶"}.mdi-store:before{content:"󰓜"}.mdi-store-24-hour:before{content:"󰓝"}.mdi-store-alert:before{content:"󱣁"}.mdi-store-alert-outline:before{content:"󱣂"}.mdi-store-check:before{content:"󱣃"}.mdi-store-check-outline:before{content:"󱣄"}.mdi-store-clock:before{content:"󱣅"}.mdi-store-clock-outline:before{content:"󱣆"}.mdi-store-cog:before{content:"󱣇"}.mdi-store-cog-outline:before{content:"󱣈"}.mdi-store-edit:before{content:"󱣉"}.mdi-store-edit-outline:before{content:"󱣊"}.mdi-store-marker:before{content:"󱣋"}.mdi-store-marker-outline:before{content:"󱣌"}.mdi-store-minus:before{content:"󱙞"}.mdi-store-minus-outline:before{content:"󱣍"}.mdi-store-off:before{content:"󱣎"}.mdi-store-off-outline:before{content:"󱣏"}.mdi-store-outline:before{content:"󱍡"}.mdi-store-plus:before{content:"󱙟"}.mdi-store-plus-outline:before{content:"󱣐"}.mdi-store-remove:before{content:"󱙠"}.mdi-store-remove-outline:before{content:"󱣑"}.mdi-store-search:before{content:"󱣒"}.mdi-store-search-outline:before{content:"󱣓"}.mdi-store-settings:before{content:"󱣔"}.mdi-store-settings-outline:before{content:"󱣕"}.mdi-storefront:before{content:"󰟇"}.mdi-storefront-check:before{content:"󱭽"}.mdi-storefront-check-outline:before{content:"󱭾"}.mdi-storefront-edit:before{content:"󱭿"}.mdi-storefront-edit-outline:before{content:"󱮀"}.mdi-storefront-minus:before{content:"󱮃"}.mdi-storefront-minus-outline:before{content:"󱮄"}.mdi-storefront-outline:before{content:"󱃁"}.mdi-storefront-plus:before{content:"󱮁"}.mdi-storefront-plus-outline:before{content:"󱮂"}.mdi-storefront-remove:before{content:"󱮅"}.mdi-storefront-remove-outline:before{content:"󱮆"}.mdi-stove:before{content:"󰓞"}.mdi-strategy:before{content:"󱇖"}.mdi-stretch-to-page:before{content:"󰼫"}.mdi-stretch-to-page-outline:before{content:"󰼬"}.mdi-string-lights:before{content:"󱊺"}.mdi-string-lights-off:before{content:"󱊻"}.mdi-subdirectory-arrow-left:before{content:"󰘌"}.mdi-subdirectory-arrow-right:before{content:"󰘍"}.mdi-submarine:before{content:"󱕬"}.mdi-subtitles:before{content:"󰨖"}.mdi-subtitles-outline:before{content:"󰨗"}.mdi-subway:before{content:"󰚬"}.mdi-subway-alert-variant:before{content:"󰶝"}.mdi-subway-variant:before{content:"󰓟"}.mdi-summit:before{content:"󰞆"}.mdi-sun-angle:before{content:"󱬧"}.mdi-sun-angle-outline:before{content:"󱬨"}.mdi-sun-clock:before{content:"󱩷"}.mdi-sun-clock-outline:before{content:"󱩸"}.mdi-sun-compass:before{content:"󱦥"}.mdi-sun-snowflake:before{content:"󱞖"}.mdi-sun-snowflake-variant:before{content:"󱩹"}.mdi-sun-thermometer:before{content:"󱣖"}.mdi-sun-thermometer-outline:before{content:"󱣗"}.mdi-sun-wireless:before{content:"󱟾"}.mdi-sun-wireless-outline:before{content:"󱟿"}.mdi-sunglasses:before{content:"󰓠"}.mdi-surfing:before{content:"󱝆"}.mdi-surround-sound:before{content:"󰗅"}.mdi-surround-sound-2-0:before{content:"󰟰"}.mdi-surround-sound-2-1:before{content:"󱜩"}.mdi-surround-sound-3-1:before{content:"󰟱"}.mdi-surround-sound-5-1:before{content:"󰟲"}.mdi-surround-sound-5-1-2:before{content:"󱜪"}.mdi-surround-sound-7-1:before{content:"󰟳"}.mdi-svg:before{content:"󰜡"}.mdi-swap-horizontal:before{content:"󰓡"}.mdi-swap-horizontal-bold:before{content:"󰯍"}.mdi-swap-horizontal-circle:before{content:"󰿡"}.mdi-swap-horizontal-circle-outline:before{content:"󰿢"}.mdi-swap-horizontal-variant:before{content:"󰣁"}.mdi-swap-vertical:before{content:"󰓢"}.mdi-swap-vertical-bold:before{content:"󰯎"}.mdi-swap-vertical-circle:before{content:"󰿣"}.mdi-swap-vertical-circle-outline:before{content:"󰿤"}.mdi-swap-vertical-variant:before{content:"󰣂"}.mdi-swim:before{content:"󰓣"}.mdi-switch:before{content:"󰓤"}.mdi-sword:before{content:"󰓥"}.mdi-sword-cross:before{content:"󰞇"}.mdi-syllabary-hangul:before{content:"󱌳"}.mdi-syllabary-hiragana:before{content:"󱌴"}.mdi-syllabary-katakana:before{content:"󱌵"}.mdi-syllabary-katakana-halfwidth:before{content:"󱌶"}.mdi-symbol:before{content:"󱔁"}.mdi-symfony:before{content:"󰫦"}.mdi-synagogue:before{content:"󱬄"}.mdi-synagogue-outline:before{content:"󱬅"}.mdi-sync:before{content:"󰓦"}.mdi-sync-alert:before{content:"󰓧"}.mdi-sync-circle:before{content:"󱍸"}.mdi-sync-off:before{content:"󰓨"}.mdi-tab:before{content:"󰓩"}.mdi-tab-minus:before{content:"󰭋"}.mdi-tab-plus:before{content:"󰝜"}.mdi-tab-remove:before{content:"󰭌"}.mdi-tab-search:before{content:"󱦞"}.mdi-tab-unselected:before{content:"󰓪"}.mdi-table:before{content:"󰓫"}.mdi-table-account:before{content:"󱎹"}.mdi-table-alert:before{content:"󱎺"}.mdi-table-arrow-down:before{content:"󱎻"}.mdi-table-arrow-left:before{content:"󱎼"}.mdi-table-arrow-right:before{content:"󱎽"}.mdi-table-arrow-up:before{content:"󱎾"}.mdi-table-border:before{content:"󰨘"}.mdi-table-cancel:before{content:"󱎿"}.mdi-table-chair:before{content:"󱁡"}.mdi-table-check:before{content:"󱏀"}.mdi-table-clock:before{content:"󱏁"}.mdi-table-cog:before{content:"󱏂"}.mdi-table-column:before{content:"󰠵"}.mdi-table-column-plus-after:before{content:"󰓬"}.mdi-table-column-plus-before:before{content:"󰓭"}.mdi-table-column-remove:before{content:"󰓮"}.mdi-table-column-width:before{content:"󰓯"}.mdi-table-edit:before{content:"󰓰"}.mdi-table-eye:before{content:"󱂔"}.mdi-table-eye-off:before{content:"󱏃"}.mdi-table-filter:before{content:"󱮌"}.mdi-table-furniture:before{content:"󰖼"}.mdi-table-headers-eye:before{content:"󱈝"}.mdi-table-headers-eye-off:before{content:"󱈞"}.mdi-table-heart:before{content:"󱏄"}.mdi-table-key:before{content:"󱏅"}.mdi-table-large:before{content:"󰓱"}.mdi-table-large-plus:before{content:"󰾇"}.mdi-table-large-remove:before{content:"󰾈"}.mdi-table-lock:before{content:"󱏆"}.mdi-table-merge-cells:before{content:"󰦦"}.mdi-table-minus:before{content:"󱏇"}.mdi-table-multiple:before{content:"󱏈"}.mdi-table-network:before{content:"󱏉"}.mdi-table-of-contents:before{content:"󰠶"}.mdi-table-off:before{content:"󱏊"}.mdi-table-picnic:before{content:"󱝃"}.mdi-table-pivot:before{content:"󱠼"}.mdi-table-plus:before{content:"󰩵"}.mdi-table-question:before{content:"󱬡"}.mdi-table-refresh:before{content:"󱎠"}.mdi-table-remove:before{content:"󰩶"}.mdi-table-row:before{content:"󰠷"}.mdi-table-row-height:before{content:"󰓲"}.mdi-table-row-plus-after:before{content:"󰓳"}.mdi-table-row-plus-before:before{content:"󰓴"}.mdi-table-row-remove:before{content:"󰓵"}.mdi-table-search:before{content:"󰤏"}.mdi-table-settings:before{content:"󰠸"}.mdi-table-split-cell:before{content:"󱐪"}.mdi-table-star:before{content:"󱏋"}.mdi-table-sync:before{content:"󱎡"}.mdi-table-tennis:before{content:"󰹨"}.mdi-tablet:before{content:"󰓶"}.mdi-tablet-cellphone:before{content:"󰦧"}.mdi-tablet-dashboard:before{content:"󰻎"}.mdi-taco:before{content:"󰝢"}.mdi-tag:before{content:"󰓹"}.mdi-tag-arrow-down:before{content:"󱜫"}.mdi-tag-arrow-down-outline:before{content:"󱜬"}.mdi-tag-arrow-left:before{content:"󱜭"}.mdi-tag-arrow-left-outline:before{content:"󱜮"}.mdi-tag-arrow-right:before{content:"󱜯"}.mdi-tag-arrow-right-outline:before{content:"󱜰"}.mdi-tag-arrow-up:before{content:"󱜱"}.mdi-tag-arrow-up-outline:before{content:"󱜲"}.mdi-tag-check:before{content:"󱩺"}.mdi-tag-check-outline:before{content:"󱩻"}.mdi-tag-faces:before{content:"󰓺"}.mdi-tag-heart:before{content:"󰚋"}.mdi-tag-heart-outline:before{content:"󰯏"}.mdi-tag-hidden:before{content:"󱱶"}.mdi-tag-minus:before{content:"󰤐"}.mdi-tag-minus-outline:before{content:"󱈟"}.mdi-tag-multiple:before{content:"󰓻"}.mdi-tag-multiple-outline:before{content:"󱋷"}.mdi-tag-off:before{content:"󱈠"}.mdi-tag-off-outline:before{content:"󱈡"}.mdi-tag-outline:before{content:"󰓼"}.mdi-tag-plus:before{content:"󰜢"}.mdi-tag-plus-outline:before{content:"󱈢"}.mdi-tag-remove:before{content:"󰜣"}.mdi-tag-remove-outline:before{content:"󱈣"}.mdi-tag-search:before{content:"󱤇"}.mdi-tag-search-outline:before{content:"󱤈"}.mdi-tag-text:before{content:"󱈤"}.mdi-tag-text-outline:before{content:"󰓽"}.mdi-tailwind:before{content:"󱏿"}.mdi-tally-mark-1:before{content:"󱪼"}.mdi-tally-mark-2:before{content:"󱪽"}.mdi-tally-mark-3:before{content:"󱪾"}.mdi-tally-mark-4:before{content:"󱪿"}.mdi-tally-mark-5:before{content:"󱫀"}.mdi-tangram:before{content:"󰓸"}.mdi-tank:before{content:"󰴺"}.mdi-tanker-truck:before{content:"󰿥"}.mdi-tape-drive:before{content:"󱛟"}.mdi-tape-measure:before{content:"󰭍"}.mdi-target:before{content:"󰓾"}.mdi-target-account:before{content:"󰯐"}.mdi-target-variant:before{content:"󰩷"}.mdi-taxi:before{content:"󰓿"}.mdi-tea:before{content:"󰶞"}.mdi-tea-outline:before{content:"󰶟"}.mdi-teamviewer:before{content:"󰔀"}.mdi-teddy-bear:before{content:"󱣻"}.mdi-telescope:before{content:"󰭎"}.mdi-television:before{content:"󰔂"}.mdi-television-ambient-light:before{content:"󱍖"}.mdi-television-box:before{content:"󰠹"}.mdi-television-classic:before{content:"󰟴"}.mdi-television-classic-off:before{content:"󰠺"}.mdi-television-guide:before{content:"󰔃"}.mdi-television-off:before{content:"󰠻"}.mdi-television-pause:before{content:"󰾉"}.mdi-television-play:before{content:"󰻏"}.mdi-television-shimmer:before{content:"󱄐"}.mdi-television-speaker:before{content:"󱬛"}.mdi-television-speaker-off:before{content:"󱬜"}.mdi-television-stop:before{content:"󰾊"}.mdi-temperature-celsius:before{content:"󰔄"}.mdi-temperature-fahrenheit:before{content:"󰔅"}.mdi-temperature-kelvin:before{content:"󰔆"}.mdi-temple-buddhist:before{content:"󱬆"}.mdi-temple-buddhist-outline:before{content:"󱬇"}.mdi-temple-hindu:before{content:"󱬈"}.mdi-temple-hindu-outline:before{content:"󱬉"}.mdi-tennis:before{content:"󰶠"}.mdi-tennis-ball:before{content:"󰔇"}.mdi-tennis-ball-outline:before{content:"󱱟"}.mdi-tent:before{content:"󰔈"}.mdi-terraform:before{content:"󱁢"}.mdi-terrain:before{content:"󰔉"}.mdi-test-tube:before{content:"󰙨"}.mdi-test-tube-empty:before{content:"󰤑"}.mdi-test-tube-off:before{content:"󰤒"}.mdi-text:before{content:"󰦨"}.mdi-text-account:before{content:"󱕰"}.mdi-text-box:before{content:"󰈚"}.mdi-text-box-check:before{content:"󰺦"}.mdi-text-box-check-outline:before{content:"󰺧"}.mdi-text-box-edit:before{content:"󱩼"}.mdi-text-box-edit-outline:before{content:"󱩽"}.mdi-text-box-minus:before{content:"󰺨"}.mdi-text-box-minus-outline:before{content:"󰺩"}.mdi-text-box-multiple:before{content:"󰪷"}.mdi-text-box-multiple-outline:before{content:"󰪸"}.mdi-text-box-outline:before{content:"󰧭"}.mdi-text-box-plus:before{content:"󰺪"}.mdi-text-box-plus-outline:before{content:"󰺫"}.mdi-text-box-remove:before{content:"󰺬"}.mdi-text-box-remove-outline:before{content:"󰺭"}.mdi-text-box-search:before{content:"󰺮"}.mdi-text-box-search-outline:before{content:"󰺯"}.mdi-text-long:before{content:"󰦪"}.mdi-text-recognition:before{content:"󱄽"}.mdi-text-search:before{content:"󱎸"}.mdi-text-search-variant:before{content:"󱩾"}.mdi-text-shadow:before{content:"󰙩"}.mdi-text-short:before{content:"󰦩"}.mdi-texture:before{content:"󰔌"}.mdi-texture-box:before{content:"󰿦"}.mdi-theater:before{content:"󰔍"}.mdi-theme-light-dark:before{content:"󰔎"}.mdi-thermometer:before{content:"󰔏"}.mdi-thermometer-alert:before{content:"󰸁"}.mdi-thermometer-auto:before{content:"󱬏"}.mdi-thermometer-bluetooth:before{content:"󱢕"}.mdi-thermometer-check:before{content:"󱩿"}.mdi-thermometer-chevron-down:before{content:"󰸂"}.mdi-thermometer-chevron-up:before{content:"󰸃"}.mdi-thermometer-high:before{content:"󱃂"}.mdi-thermometer-lines:before{content:"󰔐"}.mdi-thermometer-low:before{content:"󱃃"}.mdi-thermometer-minus:before{content:"󰸄"}.mdi-thermometer-off:before{content:"󱔱"}.mdi-thermometer-plus:before{content:"󰸅"}.mdi-thermometer-probe:before{content:"󱬫"}.mdi-thermometer-probe-off:before{content:"󱬬"}.mdi-thermometer-water:before{content:"󱪀"}.mdi-thermostat:before{content:"󰎓"}.mdi-thermostat-auto:before{content:"󱬗"}.mdi-thermostat-box:before{content:"󰢑"}.mdi-thermostat-box-auto:before{content:"󱬘"}.mdi-thermostat-cog:before{content:"󱲀"}.mdi-thought-bubble:before{content:"󰟶"}.mdi-thought-bubble-outline:before{content:"󰟷"}.mdi-thumb-down:before{content:"󰔑"}.mdi-thumb-down-outline:before{content:"󰔒"}.mdi-thumb-up:before{content:"󰔓"}.mdi-thumb-up-outline:before{content:"󰔔"}.mdi-thumbs-up-down:before{content:"󰔕"}.mdi-thumbs-up-down-outline:before{content:"󱤔"}.mdi-ticket:before{content:"󰔖"}.mdi-ticket-account:before{content:"󰔗"}.mdi-ticket-confirmation:before{content:"󰔘"}.mdi-ticket-confirmation-outline:before{content:"󱎪"}.mdi-ticket-outline:before{content:"󰤓"}.mdi-ticket-percent:before{content:"󰜤"}.mdi-ticket-percent-outline:before{content:"󱐫"}.mdi-tie:before{content:"󰔙"}.mdi-tilde:before{content:"󰜥"}.mdi-tilde-off:before{content:"󱣳"}.mdi-timelapse:before{content:"󰔚"}.mdi-timeline:before{content:"󰯑"}.mdi-timeline-alert:before{content:"󰾕"}.mdi-timeline-alert-outline:before{content:"󰾘"}.mdi-timeline-check:before{content:"󱔲"}.mdi-timeline-check-outline:before{content:"󱔳"}.mdi-timeline-clock:before{content:"󱇻"}.mdi-timeline-clock-outline:before{content:"󱇼"}.mdi-timeline-minus:before{content:"󱔴"}.mdi-timeline-minus-outline:before{content:"󱔵"}.mdi-timeline-outline:before{content:"󰯒"}.mdi-timeline-plus:before{content:"󰾖"}.mdi-timeline-plus-outline:before{content:"󰾗"}.mdi-timeline-question:before{content:"󰾙"}.mdi-timeline-question-outline:before{content:"󰾚"}.mdi-timeline-remove:before{content:"󱔶"}.mdi-timeline-remove-outline:before{content:"󱔷"}.mdi-timeline-text:before{content:"󰯓"}.mdi-timeline-text-outline:before{content:"󰯔"}.mdi-timer:before{content:"󱎫"}.mdi-timer-10:before{content:"󰔜"}.mdi-timer-3:before{content:"󰔝"}.mdi-timer-alert:before{content:"󱫌"}.mdi-timer-alert-outline:before{content:"󱫍"}.mdi-timer-cancel:before{content:"󱫎"}.mdi-timer-cancel-outline:before{content:"󱫏"}.mdi-timer-check:before{content:"󱫐"}.mdi-timer-check-outline:before{content:"󱫑"}.mdi-timer-cog:before{content:"󱤥"}.mdi-timer-cog-outline:before{content:"󱤦"}.mdi-timer-edit:before{content:"󱫒"}.mdi-timer-edit-outline:before{content:"󱫓"}.mdi-timer-lock:before{content:"󱫔"}.mdi-timer-lock-open:before{content:"󱫕"}.mdi-timer-lock-open-outline:before{content:"󱫖"}.mdi-timer-lock-outline:before{content:"󱫗"}.mdi-timer-marker:before{content:"󱫘"}.mdi-timer-marker-outline:before{content:"󱫙"}.mdi-timer-minus:before{content:"󱫚"}.mdi-timer-minus-outline:before{content:"󱫛"}.mdi-timer-music:before{content:"󱫜"}.mdi-timer-music-outline:before{content:"󱫝"}.mdi-timer-off:before{content:"󱎬"}.mdi-timer-off-outline:before{content:"󰔞"}.mdi-timer-outline:before{content:"󰔛"}.mdi-timer-pause:before{content:"󱫞"}.mdi-timer-pause-outline:before{content:"󱫟"}.mdi-timer-play:before{content:"󱫠"}.mdi-timer-play-outline:before{content:"󱫡"}.mdi-timer-plus:before{content:"󱫢"}.mdi-timer-plus-outline:before{content:"󱫣"}.mdi-timer-refresh:before{content:"󱫤"}.mdi-timer-refresh-outline:before{content:"󱫥"}.mdi-timer-remove:before{content:"󱫦"}.mdi-timer-remove-outline:before{content:"󱫧"}.mdi-timer-sand:before{content:"󰔟"}.mdi-timer-sand-complete:before{content:"󱦟"}.mdi-timer-sand-empty:before{content:"󰚭"}.mdi-timer-sand-full:before{content:"󰞌"}.mdi-timer-sand-paused:before{content:"󱦠"}.mdi-timer-settings:before{content:"󱤣"}.mdi-timer-settings-outline:before{content:"󱤤"}.mdi-timer-star:before{content:"󱫨"}.mdi-timer-star-outline:before{content:"󱫩"}.mdi-timer-stop:before{content:"󱫪"}.mdi-timer-stop-outline:before{content:"󱫫"}.mdi-timer-sync:before{content:"󱫬"}.mdi-timer-sync-outline:before{content:"󱫭"}.mdi-timetable:before{content:"󰔠"}.mdi-tire:before{content:"󱢖"}.mdi-toaster:before{content:"󱁣"}.mdi-toaster-off:before{content:"󱆷"}.mdi-toaster-oven:before{content:"󰳓"}.mdi-toggle-switch:before{content:"󰔡"}.mdi-toggle-switch-off:before{content:"󰔢"}.mdi-toggle-switch-off-outline:before{content:"󰨙"}.mdi-toggle-switch-outline:before{content:"󰨚"}.mdi-toggle-switch-variant:before{content:"󱨥"}.mdi-toggle-switch-variant-off:before{content:"󱨦"}.mdi-toilet:before{content:"󰦫"}.mdi-toolbox:before{content:"󰦬"}.mdi-toolbox-outline:before{content:"󰦭"}.mdi-tools:before{content:"󱁤"}.mdi-tooltip:before{content:"󰔣"}.mdi-tooltip-account:before{content:"󰀌"}.mdi-tooltip-cellphone:before{content:"󱠻"}.mdi-tooltip-check:before{content:"󱕜"}.mdi-tooltip-check-outline:before{content:"󱕝"}.mdi-tooltip-edit:before{content:"󰔤"}.mdi-tooltip-edit-outline:before{content:"󱋅"}.mdi-tooltip-image:before{content:"󰔥"}.mdi-tooltip-image-outline:before{content:"󰯕"}.mdi-tooltip-minus:before{content:"󱕞"}.mdi-tooltip-minus-outline:before{content:"󱕟"}.mdi-tooltip-outline:before{content:"󰔦"}.mdi-tooltip-plus:before{content:"󰯖"}.mdi-tooltip-plus-outline:before{content:"󰔧"}.mdi-tooltip-question:before{content:"󱮺"}.mdi-tooltip-question-outline:before{content:"󱮻"}.mdi-tooltip-remove:before{content:"󱕠"}.mdi-tooltip-remove-outline:before{content:"󱕡"}.mdi-tooltip-text:before{content:"󰔨"}.mdi-tooltip-text-outline:before{content:"󰯗"}.mdi-tooth:before{content:"󰣃"}.mdi-tooth-outline:before{content:"󰔩"}.mdi-toothbrush:before{content:"󱄩"}.mdi-toothbrush-electric:before{content:"󱄬"}.mdi-toothbrush-paste:before{content:"󱄪"}.mdi-torch:before{content:"󱘆"}.mdi-tortoise:before{content:"󰴻"}.mdi-toslink:before{content:"󱊸"}.mdi-touch-text-outline:before{content:"󱱠"}.mdi-tournament:before{content:"󰦮"}.mdi-tow-truck:before{content:"󰠼"}.mdi-tower-beach:before{content:"󰚁"}.mdi-tower-fire:before{content:"󰚂"}.mdi-town-hall:before{content:"󱡵"}.mdi-toy-brick:before{content:"󱊈"}.mdi-toy-brick-marker:before{content:"󱊉"}.mdi-toy-brick-marker-outline:before{content:"󱊊"}.mdi-toy-brick-minus:before{content:"󱊋"}.mdi-toy-brick-minus-outline:before{content:"󱊌"}.mdi-toy-brick-outline:before{content:"󱊍"}.mdi-toy-brick-plus:before{content:"󱊎"}.mdi-toy-brick-plus-outline:before{content:"󱊏"}.mdi-toy-brick-remove:before{content:"󱊐"}.mdi-toy-brick-remove-outline:before{content:"󱊑"}.mdi-toy-brick-search:before{content:"󱊒"}.mdi-toy-brick-search-outline:before{content:"󱊓"}.mdi-track-light:before{content:"󰤔"}.mdi-track-light-off:before{content:"󱬁"}.mdi-trackpad:before{content:"󰟸"}.mdi-trackpad-lock:before{content:"󰤳"}.mdi-tractor:before{content:"󰢒"}.mdi-tractor-variant:before{content:"󱓄"}.mdi-trademark:before{content:"󰩸"}.mdi-traffic-cone:before{content:"󱍼"}.mdi-traffic-light:before{content:"󰔫"}.mdi-traffic-light-outline:before{content:"󱠪"}.mdi-train:before{content:"󰔬"}.mdi-train-car:before{content:"󰯘"}.mdi-train-car-autorack:before{content:"󱬭"}.mdi-train-car-box:before{content:"󱬮"}.mdi-train-car-box-full:before{content:"󱬯"}.mdi-train-car-box-open:before{content:"󱬰"}.mdi-train-car-caboose:before{content:"󱬱"}.mdi-train-car-centerbeam:before{content:"󱬲"}.mdi-train-car-centerbeam-full:before{content:"󱬳"}.mdi-train-car-container:before{content:"󱬴"}.mdi-train-car-flatbed:before{content:"󱬵"}.mdi-train-car-flatbed-car:before{content:"󱬶"}.mdi-train-car-flatbed-tank:before{content:"󱬷"}.mdi-train-car-gondola:before{content:"󱬸"}.mdi-train-car-gondola-full:before{content:"󱬹"}.mdi-train-car-hopper:before{content:"󱬺"}.mdi-train-car-hopper-covered:before{content:"󱬻"}.mdi-train-car-hopper-full:before{content:"󱬼"}.mdi-train-car-intermodal:before{content:"󱬽"}.mdi-train-car-passenger:before{content:"󱜳"}.mdi-train-car-passenger-door:before{content:"󱜴"}.mdi-train-car-passenger-door-open:before{content:"󱜵"}.mdi-train-car-passenger-variant:before{content:"󱜶"}.mdi-train-car-tank:before{content:"󱬾"}.mdi-train-variant:before{content:"󰣄"}.mdi-tram:before{content:"󰔭"}.mdi-tram-side:before{content:"󰿧"}.mdi-transcribe:before{content:"󰔮"}.mdi-transcribe-close:before{content:"󰔯"}.mdi-transfer:before{content:"󱁥"}.mdi-transfer-down:before{content:"󰶡"}.mdi-transfer-left:before{content:"󰶢"}.mdi-transfer-right:before{content:"󰔰"}.mdi-transfer-up:before{content:"󰶣"}.mdi-transit-connection:before{content:"󰴼"}.mdi-transit-connection-horizontal:before{content:"󱕆"}.mdi-transit-connection-variant:before{content:"󰴽"}.mdi-transit-detour:before{content:"󰾋"}.mdi-transit-skip:before{content:"󱔕"}.mdi-transit-transfer:before{content:"󰚮"}.mdi-transition:before{content:"󰤕"}.mdi-transition-masked:before{content:"󰤖"}.mdi-translate:before{content:"󰗊"}.mdi-translate-off:before{content:"󰸆"}.mdi-translate-variant:before{content:"󱮙"}.mdi-transmission-tower:before{content:"󰴾"}.mdi-transmission-tower-export:before{content:"󱤬"}.mdi-transmission-tower-import:before{content:"󱤭"}.mdi-transmission-tower-off:before{content:"󱧝"}.mdi-trash-can:before{content:"󰩹"}.mdi-trash-can-outline:before{content:"󰩺"}.mdi-tray:before{content:"󱊔"}.mdi-tray-alert:before{content:"󱊕"}.mdi-tray-arrow-down:before{content:"󰄠"}.mdi-tray-arrow-up:before{content:"󰄝"}.mdi-tray-full:before{content:"󱊖"}.mdi-tray-minus:before{content:"󱊗"}.mdi-tray-plus:before{content:"󱊘"}.mdi-tray-remove:before{content:"󱊙"}.mdi-treasure-chest:before{content:"󰜦"}.mdi-treasure-chest-outline:before{content:"󱱷"}.mdi-tree:before{content:"󰔱"}.mdi-tree-outline:before{content:"󰹩"}.mdi-trello:before{content:"󰔲"}.mdi-trending-down:before{content:"󰔳"}.mdi-trending-neutral:before{content:"󰔴"}.mdi-trending-up:before{content:"󰔵"}.mdi-triangle:before{content:"󰔶"}.mdi-triangle-down:before{content:"󱱖"}.mdi-triangle-down-outline:before{content:"󱱗"}.mdi-triangle-outline:before{content:"󰔷"}.mdi-triangle-small-down:before{content:"󱨉"}.mdi-triangle-small-up:before{content:"󱨊"}.mdi-triangle-wave:before{content:"󱑼"}.mdi-triforce:before{content:"󰯙"}.mdi-trophy:before{content:"󰔸"}.mdi-trophy-award:before{content:"󰔹"}.mdi-trophy-broken:before{content:"󰶤"}.mdi-trophy-outline:before{content:"󰔺"}.mdi-trophy-variant:before{content:"󰔻"}.mdi-trophy-variant-outline:before{content:"󰔼"}.mdi-truck:before{content:"󰔽"}.mdi-truck-alert:before{content:"󱧞"}.mdi-truck-alert-outline:before{content:"󱧟"}.mdi-truck-cargo-container:before{content:"󱣘"}.mdi-truck-check:before{content:"󰳔"}.mdi-truck-check-outline:before{content:"󱊚"}.mdi-truck-delivery:before{content:"󰔾"}.mdi-truck-delivery-outline:before{content:"󱊛"}.mdi-truck-fast:before{content:"󰞈"}.mdi-truck-fast-outline:before{content:"󱊜"}.mdi-truck-flatbed:before{content:"󱢑"}.mdi-truck-minus:before{content:"󱦮"}.mdi-truck-minus-outline:before{content:"󱦽"}.mdi-truck-outline:before{content:"󱊝"}.mdi-truck-plus:before{content:"󱦭"}.mdi-truck-plus-outline:before{content:"󱦼"}.mdi-truck-remove:before{content:"󱦯"}.mdi-truck-remove-outline:before{content:"󱦾"}.mdi-truck-snowflake:before{content:"󱦦"}.mdi-truck-trailer:before{content:"󰜧"}.mdi-trumpet:before{content:"󱂖"}.mdi-tshirt-crew:before{content:"󰩻"}.mdi-tshirt-crew-outline:before{content:"󰔿"}.mdi-tshirt-v:before{content:"󰩼"}.mdi-tshirt-v-outline:before{content:"󰕀"}.mdi-tsunami:before{content:"󱪁"}.mdi-tumble-dryer:before{content:"󰤗"}.mdi-tumble-dryer-alert:before{content:"󱆺"}.mdi-tumble-dryer-off:before{content:"󱆻"}.mdi-tune:before{content:"󰘮"}.mdi-tune-variant:before{content:"󱕂"}.mdi-tune-vertical:before{content:"󰙪"}.mdi-tune-vertical-variant:before{content:"󱕃"}.mdi-tunnel:before{content:"󱠽"}.mdi-tunnel-outline:before{content:"󱠾"}.mdi-turbine:before{content:"󱪂"}.mdi-turkey:before{content:"󱜛"}.mdi-turnstile:before{content:"󰳕"}.mdi-turnstile-outline:before{content:"󰳖"}.mdi-turtle:before{content:"󰳗"}.mdi-twitch:before{content:"󰕃"}.mdi-twitter:before{content:"󰕄"}.mdi-two-factor-authentication:before{content:"󰦯"}.mdi-typewriter:before{content:"󰼭"}.mdi-ubisoft:before{content:"󰯚"}.mdi-ubuntu:before{content:"󰕈"}.mdi-ufo:before{content:"󱃄"}.mdi-ufo-outline:before{content:"󱃅"}.mdi-ultra-high-definition:before{content:"󰟹"}.mdi-umbraco:before{content:"󰕉"}.mdi-umbrella:before{content:"󰕊"}.mdi-umbrella-beach:before{content:"󱢊"}.mdi-umbrella-beach-outline:before{content:"󱢋"}.mdi-umbrella-closed:before{content:"󰦰"}.mdi-umbrella-closed-outline:before{content:"󱏢"}.mdi-umbrella-closed-variant:before{content:"󱏡"}.mdi-umbrella-outline:before{content:"󰕋"}.mdi-undo:before{content:"󰕌"}.mdi-undo-variant:before{content:"󰕍"}.mdi-unfold-less-horizontal:before{content:"󰕎"}.mdi-unfold-less-vertical:before{content:"󰝠"}.mdi-unfold-more-horizontal:before{content:"󰕏"}.mdi-unfold-more-vertical:before{content:"󰝡"}.mdi-ungroup:before{content:"󰕐"}.mdi-unicode:before{content:"󰻐"}.mdi-unicorn:before{content:"󱗂"}.mdi-unicorn-variant:before{content:"󱗃"}.mdi-unicycle:before{content:"󱗥"}.mdi-unity:before{content:"󰚯"}.mdi-unreal:before{content:"󰦱"}.mdi-update:before{content:"󰚰"}.mdi-upload:before{content:"󰕒"}.mdi-upload-lock:before{content:"󱍳"}.mdi-upload-lock-outline:before{content:"󱍴"}.mdi-upload-multiple:before{content:"󰠽"}.mdi-upload-network:before{content:"󰛶"}.mdi-upload-network-outline:before{content:"󰳘"}.mdi-upload-off:before{content:"󱃆"}.mdi-upload-off-outline:before{content:"󱃇"}.mdi-upload-outline:before{content:"󰸇"}.mdi-usb:before{content:"󰕓"}.mdi-usb-flash-drive:before{content:"󱊞"}.mdi-usb-flash-drive-outline:before{content:"󱊟"}.mdi-usb-port:before{content:"󱇰"}.mdi-vacuum:before{content:"󱦡"}.mdi-vacuum-outline:before{content:"󱦢"}.mdi-valve:before{content:"󱁦"}.mdi-valve-closed:before{content:"󱁧"}.mdi-valve-open:before{content:"󱁨"}.mdi-van-passenger:before{content:"󰟺"}.mdi-van-utility:before{content:"󰟻"}.mdi-vanish:before{content:"󰟼"}.mdi-vanish-quarter:before{content:"󱕔"}.mdi-vanity-light:before{content:"󱇡"}.mdi-variable:before{content:"󰫧"}.mdi-variable-box:before{content:"󱄑"}.mdi-vector-arrange-above:before{content:"󰕔"}.mdi-vector-arrange-below:before{content:"󰕕"}.mdi-vector-bezier:before{content:"󰫨"}.mdi-vector-circle:before{content:"󰕖"}.mdi-vector-circle-variant:before{content:"󰕗"}.mdi-vector-combine:before{content:"󰕘"}.mdi-vector-curve:before{content:"󰕙"}.mdi-vector-difference:before{content:"󰕚"}.mdi-vector-difference-ab:before{content:"󰕛"}.mdi-vector-difference-ba:before{content:"󰕜"}.mdi-vector-ellipse:before{content:"󰢓"}.mdi-vector-intersection:before{content:"󰕝"}.mdi-vector-line:before{content:"󰕞"}.mdi-vector-link:before{content:"󰿨"}.mdi-vector-point:before{content:"󰇄"}.mdi-vector-point-edit:before{content:"󰧨"}.mdi-vector-point-minus:before{content:"󱭸"}.mdi-vector-point-plus:before{content:"󱭹"}.mdi-vector-point-select:before{content:"󰕟"}.mdi-vector-polygon:before{content:"󰕠"}.mdi-vector-polygon-variant:before{content:"󱡖"}.mdi-vector-polyline:before{content:"󰕡"}.mdi-vector-polyline-edit:before{content:"󱈥"}.mdi-vector-polyline-minus:before{content:"󱈦"}.mdi-vector-polyline-plus:before{content:"󱈧"}.mdi-vector-polyline-remove:before{content:"󱈨"}.mdi-vector-radius:before{content:"󰝊"}.mdi-vector-rectangle:before{content:"󰗆"}.mdi-vector-selection:before{content:"󰕢"}.mdi-vector-square:before{content:"󰀁"}.mdi-vector-square-close:before{content:"󱡗"}.mdi-vector-square-edit:before{content:"󱣙"}.mdi-vector-square-minus:before{content:"󱣚"}.mdi-vector-square-open:before{content:"󱡘"}.mdi-vector-square-plus:before{content:"󱣛"}.mdi-vector-square-remove:before{content:"󱣜"}.mdi-vector-triangle:before{content:"󰕣"}.mdi-vector-union:before{content:"󰕤"}.mdi-vhs:before{content:"󰨛"}.mdi-vibrate:before{content:"󰕦"}.mdi-vibrate-off:before{content:"󰳙"}.mdi-video:before{content:"󰕧"}.mdi-video-2d:before{content:"󱨜"}.mdi-video-3d:before{content:"󰟽"}.mdi-video-3d-off:before{content:"󱏙"}.mdi-video-3d-variant:before{content:"󰻑"}.mdi-video-4k-box:before{content:"󰠾"}.mdi-video-account:before{content:"󰤙"}.mdi-video-box:before{content:"󰃽"}.mdi-video-box-off:before{content:"󰃾"}.mdi-video-check:before{content:"󱁩"}.mdi-video-check-outline:before{content:"󱁪"}.mdi-video-high-definition:before{content:"󱔮"}.mdi-video-image:before{content:"󰤚"}.mdi-video-input-antenna:before{content:"󰠿"}.mdi-video-input-component:before{content:"󰡀"}.mdi-video-input-hdmi:before{content:"󰡁"}.mdi-video-input-scart:before{content:"󰾌"}.mdi-video-input-svideo:before{content:"󰡂"}.mdi-video-marker:before{content:"󱦩"}.mdi-video-marker-outline:before{content:"󱦪"}.mdi-video-minus:before{content:"󰦲"}.mdi-video-minus-outline:before{content:"󰊺"}.mdi-video-off:before{content:"󰕨"}.mdi-video-off-outline:before{content:"󰯛"}.mdi-video-outline:before{content:"󰯜"}.mdi-video-plus:before{content:"󰦳"}.mdi-video-plus-outline:before{content:"󰇓"}.mdi-video-stabilization:before{content:"󰤛"}.mdi-video-switch:before{content:"󰕩"}.mdi-video-switch-outline:before{content:"󰞐"}.mdi-video-vintage:before{content:"󰨜"}.mdi-video-wireless:before{content:"󰻒"}.mdi-video-wireless-outline:before{content:"󰻓"}.mdi-view-agenda:before{content:"󰕪"}.mdi-view-agenda-outline:before{content:"󱇘"}.mdi-view-array:before{content:"󰕫"}.mdi-view-array-outline:before{content:"󱒅"}.mdi-view-carousel:before{content:"󰕬"}.mdi-view-carousel-outline:before{content:"󱒆"}.mdi-view-column:before{content:"󰕭"}.mdi-view-column-outline:before{content:"󱒇"}.mdi-view-comfy:before{content:"󰹪"}.mdi-view-comfy-outline:before{content:"󱒈"}.mdi-view-compact:before{content:"󰹫"}.mdi-view-compact-outline:before{content:"󰹬"}.mdi-view-dashboard:before{content:"󰕮"}.mdi-view-dashboard-edit:before{content:"󱥇"}.mdi-view-dashboard-edit-outline:before{content:"󱥈"}.mdi-view-dashboard-outline:before{content:"󰨝"}.mdi-view-dashboard-variant:before{content:"󰡃"}.mdi-view-dashboard-variant-outline:before{content:"󱒉"}.mdi-view-day:before{content:"󰕯"}.mdi-view-day-outline:before{content:"󱒊"}.mdi-view-gallery:before{content:"󱢈"}.mdi-view-gallery-outline:before{content:"󱢉"}.mdi-view-grid:before{content:"󰕰"}.mdi-view-grid-compact:before{content:"󱱡"}.mdi-view-grid-outline:before{content:"󱇙"}.mdi-view-grid-plus:before{content:"󰾍"}.mdi-view-grid-plus-outline:before{content:"󱇚"}.mdi-view-headline:before{content:"󰕱"}.mdi-view-list:before{content:"󰕲"}.mdi-view-list-outline:before{content:"󱒋"}.mdi-view-module:before{content:"󰕳"}.mdi-view-module-outline:before{content:"󱒌"}.mdi-view-parallel:before{content:"󰜨"}.mdi-view-parallel-outline:before{content:"󱒍"}.mdi-view-quilt:before{content:"󰕴"}.mdi-view-quilt-outline:before{content:"󱒎"}.mdi-view-sequential:before{content:"󰜩"}.mdi-view-sequential-outline:before{content:"󱒏"}.mdi-view-split-horizontal:before{content:"󰯋"}.mdi-view-split-vertical:before{content:"󰯌"}.mdi-view-stream:before{content:"󰕵"}.mdi-view-stream-outline:before{content:"󱒐"}.mdi-view-week:before{content:"󰕶"}.mdi-view-week-outline:before{content:"󱒑"}.mdi-vimeo:before{content:"󰕷"}.mdi-violin:before{content:"󰘏"}.mdi-virtual-reality:before{content:"󰢔"}.mdi-virus:before{content:"󱎶"}.mdi-virus-off:before{content:"󱣡"}.mdi-virus-off-outline:before{content:"󱣢"}.mdi-virus-outline:before{content:"󱎷"}.mdi-vlc:before{content:"󰕼"}.mdi-voicemail:before{content:"󰕽"}.mdi-volcano:before{content:"󱪃"}.mdi-volcano-outline:before{content:"󱪄"}.mdi-volleyball:before{content:"󰦴"}.mdi-volume-equal:before{content:"󱬐"}.mdi-volume-high:before{content:"󰕾"}.mdi-volume-low:before{content:"󰕿"}.mdi-volume-medium:before{content:"󰖀"}.mdi-volume-minus:before{content:"󰝞"}.mdi-volume-mute:before{content:"󰝟"}.mdi-volume-off:before{content:"󰖁"}.mdi-volume-plus:before{content:"󰝝"}.mdi-volume-source:before{content:"󱄠"}.mdi-volume-variant-off:before{content:"󰸈"}.mdi-volume-vibrate:before{content:"󱄡"}.mdi-vote:before{content:"󰨟"}.mdi-vote-outline:before{content:"󰨠"}.mdi-vpn:before{content:"󰖂"}.mdi-vuejs:before{content:"󰡄"}.mdi-vuetify:before{content:"󰹭"}.mdi-walk:before{content:"󰖃"}.mdi-wall:before{content:"󰟾"}.mdi-wall-fire:before{content:"󱨑"}.mdi-wall-sconce:before{content:"󰤜"}.mdi-wall-sconce-flat:before{content:"󰤝"}.mdi-wall-sconce-flat-outline:before{content:"󱟉"}.mdi-wall-sconce-flat-variant:before{content:"󰐜"}.mdi-wall-sconce-flat-variant-outline:before{content:"󱟊"}.mdi-wall-sconce-outline:before{content:"󱟋"}.mdi-wall-sconce-round:before{content:"󰝈"}.mdi-wall-sconce-round-outline:before{content:"󱟌"}.mdi-wall-sconce-round-variant:before{content:"󰤞"}.mdi-wall-sconce-round-variant-outline:before{content:"󱟍"}.mdi-wallet:before{content:"󰖄"}.mdi-wallet-bifold:before{content:"󱱘"}.mdi-wallet-bifold-outline:before{content:"󱱙"}.mdi-wallet-giftcard:before{content:"󰖅"}.mdi-wallet-membership:before{content:"󰖆"}.mdi-wallet-outline:before{content:"󰯝"}.mdi-wallet-plus:before{content:"󰾎"}.mdi-wallet-plus-outline:before{content:"󰾏"}.mdi-wallet-travel:before{content:"󰖇"}.mdi-wallpaper:before{content:"󰸉"}.mdi-wan:before{content:"󰖈"}.mdi-wardrobe:before{content:"󰾐"}.mdi-wardrobe-outline:before{content:"󰾑"}.mdi-warehouse:before{content:"󰾁"}.mdi-washing-machine:before{content:"󰜪"}.mdi-washing-machine-alert:before{content:"󱆼"}.mdi-washing-machine-off:before{content:"󱆽"}.mdi-watch:before{content:"󰖉"}.mdi-watch-export:before{content:"󰖊"}.mdi-watch-export-variant:before{content:"󰢕"}.mdi-watch-import:before{content:"󰖋"}.mdi-watch-import-variant:before{content:"󰢖"}.mdi-watch-variant:before{content:"󰢗"}.mdi-watch-vibrate:before{content:"󰚱"}.mdi-watch-vibrate-off:before{content:"󰳚"}.mdi-water:before{content:"󰖌"}.mdi-water-alert:before{content:"󱔂"}.mdi-water-alert-outline:before{content:"󱔃"}.mdi-water-boiler:before{content:"󰾒"}.mdi-water-boiler-alert:before{content:"󱆳"}.mdi-water-boiler-auto:before{content:"󱮘"}.mdi-water-boiler-off:before{content:"󱆴"}.mdi-water-check:before{content:"󱔄"}.mdi-water-check-outline:before{content:"󱔅"}.mdi-water-circle:before{content:"󱠆"}.mdi-water-minus:before{content:"󱔆"}.mdi-water-minus-outline:before{content:"󱔇"}.mdi-water-off:before{content:"󰖍"}.mdi-water-off-outline:before{content:"󱔈"}.mdi-water-opacity:before{content:"󱡕"}.mdi-water-outline:before{content:"󰸊"}.mdi-water-percent:before{content:"󰖎"}.mdi-water-percent-alert:before{content:"󱔉"}.mdi-water-plus:before{content:"󱔊"}.mdi-water-plus-outline:before{content:"󱔋"}.mdi-water-polo:before{content:"󱊠"}.mdi-water-pump:before{content:"󰖏"}.mdi-water-pump-off:before{content:"󰾓"}.mdi-water-remove:before{content:"󱔌"}.mdi-water-remove-outline:before{content:"󱔍"}.mdi-water-sync:before{content:"󱟆"}.mdi-water-thermometer:before{content:"󱪅"}.mdi-water-thermometer-outline:before{content:"󱪆"}.mdi-water-well:before{content:"󱁫"}.mdi-water-well-outline:before{content:"󱁬"}.mdi-waterfall:before{content:"󱡉"}.mdi-watering-can:before{content:"󱒁"}.mdi-watering-can-outline:before{content:"󱒂"}.mdi-watermark:before{content:"󰘒"}.mdi-wave:before{content:"󰼮"}.mdi-waveform:before{content:"󱑽"}.mdi-waves:before{content:"󰞍"}.mdi-waves-arrow-left:before{content:"󱡙"}.mdi-waves-arrow-right:before{content:"󱡚"}.mdi-waves-arrow-up:before{content:"󱡛"}.mdi-waze:before{content:"󰯞"}.mdi-weather-cloudy:before{content:"󰖐"}.mdi-weather-cloudy-alert:before{content:"󰼯"}.mdi-weather-cloudy-arrow-right:before{content:"󰹮"}.mdi-weather-cloudy-clock:before{content:"󱣶"}.mdi-weather-dust:before{content:"󱭚"}.mdi-weather-fog:before{content:"󰖑"}.mdi-weather-hail:before{content:"󰖒"}.mdi-weather-hazy:before{content:"󰼰"}.mdi-weather-hurricane:before{content:"󰢘"}.mdi-weather-hurricane-outline:before{content:"󱱸"}.mdi-weather-lightning:before{content:"󰖓"}.mdi-weather-lightning-rainy:before{content:"󰙾"}.mdi-weather-night:before{content:"󰖔"}.mdi-weather-night-partly-cloudy:before{content:"󰼱"}.mdi-weather-partly-cloudy:before{content:"󰖕"}.mdi-weather-partly-lightning:before{content:"󰼲"}.mdi-weather-partly-rainy:before{content:"󰼳"}.mdi-weather-partly-snowy:before{content:"󰼴"}.mdi-weather-partly-snowy-rainy:before{content:"󰼵"}.mdi-weather-pouring:before{content:"󰖖"}.mdi-weather-rainy:before{content:"󰖗"}.mdi-weather-snowy:before{content:"󰖘"}.mdi-weather-snowy-heavy:before{content:"󰼶"}.mdi-weather-snowy-rainy:before{content:"󰙿"}.mdi-weather-sunny:before{content:"󰖙"}.mdi-weather-sunny-alert:before{content:"󰼷"}.mdi-weather-sunny-off:before{content:"󱓤"}.mdi-weather-sunset:before{content:"󰖚"}.mdi-weather-sunset-down:before{content:"󰖛"}.mdi-weather-sunset-up:before{content:"󰖜"}.mdi-weather-tornado:before{content:"󰼸"}.mdi-weather-windy:before{content:"󰖝"}.mdi-weather-windy-variant:before{content:"󰖞"}.mdi-web:before{content:"󰖟"}.mdi-web-box:before{content:"󰾔"}.mdi-web-cancel:before{content:"󱞐"}.mdi-web-check:before{content:"󰞉"}.mdi-web-clock:before{content:"󱉊"}.mdi-web-minus:before{content:"󱂠"}.mdi-web-off:before{content:"󰪎"}.mdi-web-plus:before{content:"󰀳"}.mdi-web-refresh:before{content:"󱞑"}.mdi-web-remove:before{content:"󰕑"}.mdi-web-sync:before{content:"󱞒"}.mdi-webcam:before{content:"󰖠"}.mdi-webcam-off:before{content:"󱜷"}.mdi-webhook:before{content:"󰘯"}.mdi-webpack:before{content:"󰜫"}.mdi-webrtc:before{content:"󱉈"}.mdi-wechat:before{content:"󰘑"}.mdi-weight:before{content:"󰖡"}.mdi-weight-gram:before{content:"󰴿"}.mdi-weight-kilogram:before{content:"󰖢"}.mdi-weight-lifter:before{content:"󱅝"}.mdi-weight-pound:before{content:"󰦵"}.mdi-whatsapp:before{content:"󰖣"}.mdi-wheel-barrow:before{content:"󱓲"}.mdi-wheelchair:before{content:"󱪇"}.mdi-wheelchair-accessibility:before{content:"󰖤"}.mdi-whistle:before{content:"󰦶"}.mdi-whistle-outline:before{content:"󱊼"}.mdi-white-balance-auto:before{content:"󰖥"}.mdi-white-balance-incandescent:before{content:"󰖦"}.mdi-white-balance-iridescent:before{content:"󰖧"}.mdi-white-balance-sunny:before{content:"󰖨"}.mdi-widgets:before{content:"󰜬"}.mdi-widgets-outline:before{content:"󱍕"}.mdi-wifi:before{content:"󰖩"}.mdi-wifi-alert:before{content:"󱚵"}.mdi-wifi-arrow-down:before{content:"󱚶"}.mdi-wifi-arrow-left:before{content:"󱚷"}.mdi-wifi-arrow-left-right:before{content:"󱚸"}.mdi-wifi-arrow-right:before{content:"󱚹"}.mdi-wifi-arrow-up:before{content:"󱚺"}.mdi-wifi-arrow-up-down:before{content:"󱚻"}.mdi-wifi-cancel:before{content:"󱚼"}.mdi-wifi-check:before{content:"󱚽"}.mdi-wifi-cog:before{content:"󱚾"}.mdi-wifi-lock:before{content:"󱚿"}.mdi-wifi-lock-open:before{content:"󱛀"}.mdi-wifi-marker:before{content:"󱛁"}.mdi-wifi-minus:before{content:"󱛂"}.mdi-wifi-off:before{content:"󰖪"}.mdi-wifi-plus:before{content:"󱛃"}.mdi-wifi-refresh:before{content:"󱛄"}.mdi-wifi-remove:before{content:"󱛅"}.mdi-wifi-settings:before{content:"󱛆"}.mdi-wifi-star:before{content:"󰸋"}.mdi-wifi-strength-1:before{content:"󰤟"}.mdi-wifi-strength-1-alert:before{content:"󰤠"}.mdi-wifi-strength-1-lock:before{content:"󰤡"}.mdi-wifi-strength-1-lock-open:before{content:"󱛋"}.mdi-wifi-strength-2:before{content:"󰤢"}.mdi-wifi-strength-2-alert:before{content:"󰤣"}.mdi-wifi-strength-2-lock:before{content:"󰤤"}.mdi-wifi-strength-2-lock-open:before{content:"󱛌"}.mdi-wifi-strength-3:before{content:"󰤥"}.mdi-wifi-strength-3-alert:before{content:"󰤦"}.mdi-wifi-strength-3-lock:before{content:"󰤧"}.mdi-wifi-strength-3-lock-open:before{content:"󱛍"}.mdi-wifi-strength-4:before{content:"󰤨"}.mdi-wifi-strength-4-alert:before{content:"󰤩"}.mdi-wifi-strength-4-lock:before{content:"󰤪"}.mdi-wifi-strength-4-lock-open:before{content:"󱛎"}.mdi-wifi-strength-alert-outline:before{content:"󰤫"}.mdi-wifi-strength-lock-open-outline:before{content:"󱛏"}.mdi-wifi-strength-lock-outline:before{content:"󰤬"}.mdi-wifi-strength-off:before{content:"󰤭"}.mdi-wifi-strength-off-outline:before{content:"󰤮"}.mdi-wifi-strength-outline:before{content:"󰤯"}.mdi-wifi-sync:before{content:"󱛇"}.mdi-wikipedia:before{content:"󰖬"}.mdi-wind-power:before{content:"󱪈"}.mdi-wind-power-outline:before{content:"󱪉"}.mdi-wind-turbine:before{content:"󰶥"}.mdi-wind-turbine-alert:before{content:"󱦫"}.mdi-wind-turbine-check:before{content:"󱦬"}.mdi-window-close:before{content:"󰖭"}.mdi-window-closed:before{content:"󰖮"}.mdi-window-closed-variant:before{content:"󱇛"}.mdi-window-maximize:before{content:"󰖯"}.mdi-window-minimize:before{content:"󰖰"}.mdi-window-open:before{content:"󰖱"}.mdi-window-open-variant:before{content:"󱇜"}.mdi-window-restore:before{content:"󰖲"}.mdi-window-shutter:before{content:"󱄜"}.mdi-window-shutter-alert:before{content:"󱄝"}.mdi-window-shutter-auto:before{content:"󱮣"}.mdi-window-shutter-cog:before{content:"󱪊"}.mdi-window-shutter-open:before{content:"󱄞"}.mdi-window-shutter-settings:before{content:"󱪋"}.mdi-windsock:before{content:"󱗺"}.mdi-wiper:before{content:"󰫩"}.mdi-wiper-wash:before{content:"󰶦"}.mdi-wiper-wash-alert:before{content:"󱣟"}.mdi-wizard-hat:before{content:"󱑷"}.mdi-wordpress:before{content:"󰖴"}.mdi-wrap:before{content:"󰖶"}.mdi-wrap-disabled:before{content:"󰯟"}.mdi-wrench:before{content:"󰖷"}.mdi-wrench-check:before{content:"󱮏"}.mdi-wrench-check-outline:before{content:"󱮐"}.mdi-wrench-clock:before{content:"󱦣"}.mdi-wrench-clock-outline:before{content:"󱮓"}.mdi-wrench-cog:before{content:"󱮑"}.mdi-wrench-cog-outline:before{content:"󱮒"}.mdi-wrench-outline:before{content:"󰯠"}.mdi-xamarin:before{content:"󰡅"}.mdi-xml:before{content:"󰗀"}.mdi-xmpp:before{content:"󰟿"}.mdi-yahoo:before{content:"󰭏"}.mdi-yeast:before{content:"󰗁"}.mdi-yin-yang:before{content:"󰚀"}.mdi-yoga:before{content:"󱅼"}.mdi-youtube:before{content:"󰗃"}.mdi-youtube-gaming:before{content:"󰡈"}.mdi-youtube-studio:before{content:"󰡇"}.mdi-youtube-subscription:before{content:"󰵀"}.mdi-youtube-tv:before{content:"󰑈"}.mdi-yurt:before{content:"󱔖"}.mdi-z-wave:before{content:"󰫪"}.mdi-zend:before{content:"󰫫"}.mdi-zigbee:before{content:"󰵁"}.mdi-zip-box:before{content:"󰗄"}.mdi-zip-box-outline:before{content:"󰿺"}.mdi-zip-disk:before{content:"󰨣"}.mdi-zodiac-aquarius:before{content:"󰩽"}.mdi-zodiac-aries:before{content:"󰩾"}.mdi-zodiac-cancer:before{content:"󰩿"}.mdi-zodiac-capricorn:before{content:"󰪀"}.mdi-zodiac-gemini:before{content:"󰪁"}.mdi-zodiac-leo:before{content:"󰪂"}.mdi-zodiac-libra:before{content:"󰪃"}.mdi-zodiac-pisces:before{content:"󰪄"}.mdi-zodiac-sagittarius:before{content:"󰪅"}.mdi-zodiac-scorpio:before{content:"󰪆"}.mdi-zodiac-taurus:before{content:"󰪇"}.mdi-zodiac-virgo:before{content:"󰪈"}.mdi-blank:before{content:"";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:#0000008a}.mdi-dark.mdi-inactive:before{color:#00000042}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:#ffffff4d}.mdi-rotate-45:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mdi-rotate-90:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.mdi-rotate-135:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.mdi-rotate-180:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.mdi-rotate-225:before{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.mdi-rotate-270:before{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.mdi-rotate-315:before{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.mdi-flip-h:before{-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.mdi-flip-v:before{-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.mdi-spin:before{-webkit-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.v-application{display:flex;background:rgb(var(--v-theme-background));color:rgba(var(--v-theme-on-background),var(--v-high-emphasis-opacity))}.v-application__wrap{backface-visibility:hidden;display:flex;flex-direction:column;flex:1 1 auto;max-width:100%;min-height:100vh;min-height:100dvh;position:relative}.v-app-bar{display:flex}.v-app-bar.v-toolbar{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-app-bar.v-toolbar:not(.v-toolbar--flat){box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-app-bar:not(.v-toolbar--absolute){padding-inline-end:var(--v-scrollbar-offset)}.v-toolbar{align-items:flex-start;display:flex;flex:none;flex-direction:column;justify-content:space-between;max-width:100%;overflow:hidden;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);transition-property:height,width,transform,max-width,left,right,top,bottom,box-shadow;width:100%;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:0;background:rgb(var(--v-theme-on-surface-variant));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-toolbar--border{border-width:thin;box-shadow:none}.v-toolbar--absolute{position:absolute}.v-toolbar--collapse{max-width:112px;overflow:hidden}.v-toolbar--collapse .v-toolbar-title{display:none}.v-locale--is-ltr.v-toolbar--collapse,.v-locale--is-ltr .v-toolbar--collapse{border-bottom-right-radius:24px}.v-locale--is-rtl.v-toolbar--collapse,.v-locale--is-rtl .v-toolbar--collapse{border-bottom-left-radius:24px}.v-toolbar--flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-toolbar--floating{display:inline-flex}.v-toolbar--rounded{border-radius:4px}.v-toolbar__content,.v-toolbar__extension{align-items:center;display:flex;flex:0 0 auto;position:relative;transition:inherit;width:100%}.v-toolbar__content>.v-btn:first-child{margin-inline-start:10px}.v-toolbar__content>.v-btn:last-child{margin-inline-end:10px}.v-toolbar__content>.v-toolbar-title{margin-inline-start:16px}.v-toolbar--density-prominent .v-toolbar__content{align-items:flex-start}.v-toolbar__image{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;opacity:var(--v-toolbar-image-opacity, 1);transition-property:opacity}.v-toolbar__prepend,.v-toolbar__append{align-items:center;align-self:stretch;display:flex}.v-toolbar__prepend{margin-inline-start:10px;margin-inline-end:auto}.v-toolbar__append{margin-inline-start:auto;margin-inline-end:10px}.v-toolbar-title{flex:1 1;min-width:0;font-size:1.25rem;font-weight:400;letter-spacing:0;line-height:1.75rem;text-transform:none}.v-toolbar--density-prominent .v-toolbar-title{align-self:flex-end;padding-bottom:6px;font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:2.25rem;text-transform:none}.v-toolbar-title__placeholder{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-toolbar-items{display:flex;height:inherit;align-self:stretch}.v-toolbar-items>.v-btn{border-radius:0}.v-img{--v-theme-overlay-multiplier: 3;z-index:0}.v-img--booting .v-responsive__sizer{transition:none}.v-img__img,.v-img__picture,.v-img__gradient,.v-img__placeholder,.v-img__error{z-index:-1;position:absolute;top:0;left:0;width:100%;height:100%}.v-img__img--preload{filter:blur(4px)}.v-img__img--contain{object-fit:contain}.v-img__img--cover{object-fit:cover}.v-img__gradient{background-repeat:no-repeat}.v-responsive{display:flex;flex:1 0 auto;max-height:100%;max-width:100%;overflow:hidden;position:relative}.v-responsive--inline{display:inline-flex;flex:0 0 auto}.v-responsive__content{flex:1 0 0px;max-width:100%}.v-responsive__sizer~.v-responsive__content{margin-inline-start:-100%}.v-responsive__sizer{flex:1 0 0px;transition:padding-bottom .2s cubic-bezier(.4,0,.2,1);pointer-events:none}.v-btn{align-items:center;border-radius:4px;display:inline-grid;grid-template-areas:"prepend content append";grid-template-columns:max-content auto max-content;font-weight:500;justify-content:center;letter-spacing:.0892857143em;line-height:normal;max-width:100%;outline:none;position:relative;text-decoration:none;text-indent:.0892857143em;text-transform:uppercase;transition-property:box-shadow,transform,opacity,background;transition-duration:.28s;transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-user-select:none;user-select:none;vertical-align:middle;flex-shrink:0;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 20px;font-size:var(--v-btn-size);min-width:36px;padding:0 8px}.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 28px;font-size:var(--v-btn-size);min-width:50px;padding:0 12px}.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 36px;font-size:var(--v-btn-size);min-width:64px;padding:0 16px}.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 44px;font-size:var(--v-btn-size);min-width:78px;padding:0 20px}.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 52px;font-size:var(--v-btn-size);min-width:92px;padding:0 24px}.v-btn.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -8px)}.v-btn.v-btn--density-compact{height:calc(var(--v-btn-height) + -12px)}.v-btn--border{border-width:thin;box-shadow:none}.v-btn--absolute{position:absolute}.v-btn--fixed{position:fixed}.v-btn:hover>.v-btn__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-btn:focus-visible>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn:focus>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-btn--active>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]>.v-btn__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-btn--active:hover>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:hover>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-btn--active:focus-visible>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn--active:focus>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-btn--variant-plain,.v-btn--variant-outlined,.v-btn--variant-text,.v-btn--variant-tonal{background:transparent;color:inherit}.v-btn--variant-plain{opacity:.62}.v-btn--variant-plain:focus,.v-btn--variant-plain:hover{opacity:1}.v-btn--variant-plain .v-btn__overlay{display:none}.v-btn--variant-elevated,.v-btn--variant-flat{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn--variant-elevated{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-outlined{border:thin solid currentColor}.v-btn--variant-text .v-btn__overlay{background:currentColor}.v-btn--variant-tonal .v-btn__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}@supports selector(:focus-visible){.v-btn:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;border:2px solid currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn:focus-visible:after{opacity:calc(.25 * var(--v-theme-overlay-multiplier))}}.v-btn--icon{border-radius:50%;min-width:0;padding:0}.v-btn--icon.v-btn--size-default{--v-btn-size: 1rem}.v-btn--icon.v-btn--density-default{width:calc(var(--v-btn-height) + 12px);height:calc(var(--v-btn-height) + 12px)}.v-btn--icon.v-btn--density-comfortable{width:calc(var(--v-btn-height) + 0px);height:calc(var(--v-btn-height) + 0px)}.v-btn--icon.v-btn--density-compact{width:calc(var(--v-btn-height) + -8px);height:calc(var(--v-btn-height) + -8px)}.v-btn--elevated:hover,.v-btn--elevated:focus{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-btn--elevated:active{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-btn--flat{box-shadow:none}.v-btn--block{display:flex;flex:1 0 auto;min-width:100%}.v-btn--disabled{pointer-events:none;opacity:.26}.v-btn--disabled:hover{opacity:.26}.v-btn--disabled.v-btn--variant-elevated,.v-btn--disabled.v-btn--variant-flat{box-shadow:none;opacity:1;color:rgba(var(--v-theme-on-surface),.26);background:rgb(var(--v-theme-surface))}.v-btn--disabled.v-btn--variant-elevated .v-btn__overlay,.v-btn--disabled.v-btn--variant-flat .v-btn__overlay{opacity:.4615384615}.v-btn--loading{pointer-events:none}.v-btn--loading .v-btn__content,.v-btn--loading .v-btn__prepend,.v-btn--loading .v-btn__append{opacity:0}.v-btn--stacked{grid-template-areas:"prepend" "content" "append";grid-template-columns:auto;grid-template-rows:max-content max-content max-content;justify-items:center;align-content:center}.v-btn--stacked .v-btn__content{flex-direction:column;line-height:1.25}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--start,.v-btn--stacked .v-btn__content>.v-icon--end{margin-inline-start:0;margin-inline-end:0}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__content>.v-icon--start{margin-bottom:4px}.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--end{margin-top:4px}.v-btn--stacked.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 56px;font-size:var(--v-btn-size);min-width:56px;padding:0 12px}.v-btn--stacked.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 64px;font-size:var(--v-btn-size);min-width:64px;padding:0 14px}.v-btn--stacked.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 72px;font-size:var(--v-btn-size);min-width:72px;padding:0 16px}.v-btn--stacked.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 80px;font-size:var(--v-btn-size);min-width:80px;padding:0 18px}.v-btn--stacked.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 88px;font-size:var(--v-btn-size);min-width:88px;padding:0 20px}.v-btn--stacked.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn--stacked.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -16px)}.v-btn--stacked.v-btn--density-compact{height:calc(var(--v-btn-height) + -24px)}.v-btn--rounded{border-radius:24px}.v-btn--rounded.v-btn--icon{border-radius:4px}.v-btn .v-icon{--v-icon-size-multiplier: .8571428571}.v-btn--icon .v-icon{--v-icon-size-multiplier: 1}.v-btn--stacked .v-icon{--v-icon-size-multiplier: 1.1428571429}.v-btn__loader{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn__content,.v-btn__prepend,.v-btn__append{align-items:center;display:flex;transition:transform,opacity .2s cubic-bezier(.4,0,.2,1)}.v-btn__prepend{grid-area:prepend;margin-inline-start:calc(var(--v-btn-height) / -9);margin-inline-end:calc(var(--v-btn-height) / 4.5)}.v-btn__append{grid-area:append;margin-inline-start:calc(var(--v-btn-height) / 4.5);margin-inline-end:calc(var(--v-btn-height) / -9)}.v-btn__content{grid-area:content;justify-content:center;white-space:nowrap}.v-btn__content>.v-icon--start{margin-inline-start:calc(var(--v-btn-height) / -9);margin-inline-end:calc(var(--v-btn-height) / 4.5)}.v-btn__content>.v-icon--end{margin-inline-start:calc(var(--v-btn-height) / 4.5);margin-inline-end:calc(var(--v-btn-height) / -9)}.v-btn--stacked .v-btn__content{white-space:normal}.v-btn__overlay{background-color:currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn__overlay,.v-btn__underlay{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}.v-card-actions .v-btn{padding:0 8px}.v-card-actions .v-btn~.v-btn:not(.v-btn-toggle .v-btn){margin-inline-start:.5rem}.v-banner-actions .v-btn{padding:0 8px}.v-pagination .v-btn{border-radius:4px}.v-btn__overlay{transition:none}.v-pagination__item--is-active .v-btn__overlay{opacity:var(--v-border-opacity)}.v-snackbar-actions .v-btn{padding:0 8px}.v-btn-toggle .v-btn.v-btn--selected:not(.v-btn--disabled) .v-btn__overlay{opacity:var(--v-activated-opacity)}.v-btn-group{display:inline-flex;flex-wrap:nowrap;max-width:100%;min-width:0;overflow:hidden;vertical-align:middle;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:4px;background:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn-group--border{border-width:thin;box-shadow:none}.v-btn-group--density-default.v-btn-group{height:48px}.v-btn-group--density-comfortable.v-btn-group{height:40px}.v-btn-group--density-compact.v-btn-group{height:36px}.v-btn-group .v-btn{border-radius:0;border-color:inherit}.v-btn-group .v-btn:not(:last-child){border-inline-end:none}.v-btn-group .v-btn:not(:first-child){border-inline-start:none}.v-btn-group .v-btn:first-child{border-start-start-radius:inherit;border-end-start-radius:inherit}.v-btn-group .v-btn:last-child{border-start-end-radius:inherit;border-end-end-radius:inherit}.v-btn-group--divided .v-btn:not(:last-child){border-inline-end-width:thin;border-inline-end-style:solid;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))}.v-btn-group--tile{border-radius:0}.v-icon{--v-icon-size-multiplier: 1;align-items:center;display:inline-flex;font-feature-settings:"liga";height:1em;justify-content:center;letter-spacing:normal;line-height:1;position:relative;text-indent:0;text-align:center;-webkit-user-select:none;user-select:none;vertical-align:middle;width:1em}.v-icon--clickable{cursor:pointer}.v-icon--size-x-small{font-size:calc(var(--v-icon-size-multiplier) * 1em)}.v-icon--size-small{font-size:calc(var(--v-icon-size-multiplier) * 1.25em)}.v-icon--size-default{font-size:calc(var(--v-icon-size-multiplier) * 1.5em)}.v-icon--size-large{font-size:calc(var(--v-icon-size-multiplier) * 1.75em)}.v-icon--size-x-large{font-size:calc(var(--v-icon-size-multiplier) * 2em)}.v-icon__svg{fill:currentColor;width:100%;height:100%}.v-icon--start{margin-inline-end:8px}.v-icon--end{margin-inline-start:8px}.v-progress-circular{align-items:center;display:inline-flex;justify-content:center;position:relative;vertical-align:middle}.v-progress-circular>svg{width:100%;height:100%;margin:auto;position:absolute;top:0;bottom:0;left:0;right:0;z-index:0}.v-progress-circular__content{align-items:center;display:flex;justify-content:center}.v-progress-circular__underlay{color:rgba(var(--v-border-color),var(--v-border-opacity));stroke:currentColor;z-index:1}.v-progress-circular__overlay{stroke:currentColor;transition:all .2s ease-in-out,stroke-width 0s;z-index:2}.v-progress-circular--size-x-small{height:16px;width:16px}.v-progress-circular--size-small{height:24px;width:24px}.v-progress-circular--size-default{height:32px;width:32px}.v-progress-circular--size-large{height:48px;width:48px}.v-progress-circular--size-x-large{height:64px;width:64px}.v-progress-circular--indeterminate>svg{animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite,progress-circular-rotate 1.4s linear infinite;stroke-dasharray:25,200;stroke-dashoffset:0;stroke-linecap:round;transform-origin:center center;transform:rotate(-90deg)}.v-progress-circular--disable-shrink>svg{animation-duration:.7s}.v-progress-circular--disable-shrink .v-progress-circular__overlay{animation:none}.v-progress-circular--indeterminate:not(.v-progress-circular--visible)>svg,.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay{animation-play-state:paused!important}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-124px}}.v-progress-linear{background:transparent;overflow:hidden;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);width:100%}.v-progress-linear__background{background:currentColor;bottom:0;left:0;opacity:var(--v-border-opacity);position:absolute;top:0;transition-property:width,left,right;transition:inherit}.v-progress-linear__content{align-items:center;display:flex;height:100%;justify-content:center;left:0;pointer-events:none;position:absolute;top:0;width:100%}.v-progress-linear__determinate,.v-progress-linear__indeterminate{background:currentColor}.v-progress-linear__determinate{height:inherit;left:0;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear__indeterminate .long,.v-progress-linear__indeterminate .short{animation-play-state:paused;animation-duration:2.2s;animation-iteration-count:infinite;bottom:0;height:inherit;left:0;position:absolute;right:auto;top:0;width:auto;will-change:left,right}.v-progress-linear__indeterminate .long{animation-name:indeterminate-ltr}.v-progress-linear__indeterminate .short{animation-name:indeterminate-short-ltr}.v-progress-linear__stream{animation:stream .25s infinite linear;animation-play-state:paused;bottom:0;left:auto;opacity:.3;pointer-events:none;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear--reverse .v-progress-linear__background,.v-progress-linear--reverse .v-progress-linear__determinate,.v-progress-linear--reverse .v-progress-linear__content,.v-progress-linear--reverse .v-progress-linear__indeterminate .long,.v-progress-linear--reverse .v-progress-linear__indeterminate .short{left:auto;right:0}.v-progress-linear--reverse .v-progress-linear__indeterminate .long{animation-name:indeterminate-rtl}.v-progress-linear--reverse .v-progress-linear__indeterminate .short{animation-name:indeterminate-short-rtl}.v-progress-linear--reverse .v-progress-linear__stream{right:auto}.v-progress-linear--absolute,.v-progress-linear--fixed{left:0;z-index:1}.v-progress-linear--absolute{position:absolute}.v-progress-linear--fixed{position:fixed}.v-progress-linear--rounded{border-radius:9999px}.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__indeterminate{border-radius:inherit}.v-progress-linear--striped .v-progress-linear__determinate{animation:progress-linear-stripes 1s infinite linear;background-image:linear-gradient(135deg,hsla(0,0%,100%,.25) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.25) 0,hsla(0,0%,100%,.25) 75%,transparent 0,transparent);background-repeat:repeat;background-size:var(--v-progress-linear-height)}.v-progress-linear--active .v-progress-linear__indeterminate .long,.v-progress-linear--active .v-progress-linear__indeterminate .short,.v-progress-linear--active .v-progress-linear__stream{animation-play-state:running}.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded-bar .v-progress-linear__indeterminate,.v-progress-linear--rounded-bar .v-progress-linear__stream+.v-progress-linear__background{border-radius:9999px}.v-locale--is-ltr.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-locale--is-ltr .v-progress-linear--rounded-bar .v-progress-linear__determinate{border-top-left-radius:0;border-bottom-left-radius:0}.v-locale--is-rtl.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-locale--is-rtl .v-progress-linear--rounded-bar .v-progress-linear__determinate{border-top-right-radius:0;border-bottom-right-radius:0}@keyframes indeterminate-ltr{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate-rtl{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes indeterminate-short-ltr{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short-rtl{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}@keyframes stream{to{transform:translate(var(--v-progress-linear-stream-to))}}@keyframes progress-linear-stripes{0%{background-position-x:var(--v-progress-linear-height)}}.v-ripple__container{color:inherit;border-radius:inherit;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;z-index:0;pointer-events:none;contain:strict}.v-ripple__animation{color:inherit;position:absolute;top:0;left:0;border-radius:50%;background:currentColor;opacity:0;pointer-events:none;overflow:hidden;will-change:transform,opacity}.v-ripple__animation--enter{transition:none;opacity:0}.v-ripple__animation--in{transition:transform .25s cubic-bezier(0,0,.2,1),opacity .1s cubic-bezier(0,0,.2,1);opacity:calc(.25 * var(--v-theme-overlay-multiplier))}.v-ripple__animation--out{transition:opacity .3s cubic-bezier(0,0,.2,1);opacity:0}.v-alert{display:grid;flex:1 1;grid-template-areas:"prepend content append close" ". content . .";grid-template-columns:max-content auto max-content max-content;position:relative;padding:16px;overflow:hidden;--v-border-color: currentColor;border-radius:4px}.v-alert--absolute{position:absolute}.v-alert--fixed{position:fixed}.v-alert--sticky{position:sticky}.v-alert--variant-plain,.v-alert--variant-outlined,.v-alert--variant-text,.v-alert--variant-tonal{background:transparent;color:inherit}.v-alert--variant-plain{opacity:.62}.v-alert--variant-plain:focus,.v-alert--variant-plain:hover{opacity:1}.v-alert--variant-plain .v-alert__overlay{display:none}.v-alert--variant-elevated,.v-alert--variant-flat{background:rgb(var(--v-theme-on-surface-variant));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-alert--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-alert--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-alert--variant-outlined{border:thin solid currentColor}.v-alert--variant-text .v-alert__overlay{background:currentColor}.v-alert--variant-tonal .v-alert__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-alert--prominent{grid-template-areas:"prepend content append close" "prepend content . ."}.v-alert.v-alert--border{--v-border-opacity: .38}.v-alert.v-alert--border.v-alert--border-start{padding-inline-start:24px}.v-alert.v-alert--border.v-alert--border-end{padding-inline-end:24px}.v-alert--variant-plain{transition:.2s opacity cubic-bezier(.4,0,.2,1)}.v-alert--density-default{padding-bottom:16px;padding-top:16px}.v-alert--density-default.v-alert--border-top{padding-top:24px}.v-alert--density-default.v-alert--border-bottom{padding-bottom:24px}.v-alert--density-comfortable{padding-bottom:12px;padding-top:12px}.v-alert--density-comfortable.v-alert--border-top{padding-top:20px}.v-alert--density-comfortable.v-alert--border-bottom{padding-bottom:20px}.v-alert--density-compact{padding-bottom:8px;padding-top:8px}.v-alert--density-compact.v-alert--border-top{padding-top:16px}.v-alert--density-compact.v-alert--border-bottom{padding-bottom:16px}.v-alert__border{border-radius:inherit;bottom:0;left:0;opacity:var(--v-border-opacity);position:absolute;pointer-events:none;right:0;top:0;width:100%;border-color:currentColor;border-style:solid;border-width:0}.v-alert__border--border{border-width:8px;box-shadow:none}.v-alert--border-start .v-alert__border{border-inline-start-width:8px}.v-alert--border-end .v-alert__border{border-inline-end-width:8px}.v-alert--border-top .v-alert__border{border-top-width:8px}.v-alert--border-bottom .v-alert__border{border-bottom-width:8px}.v-alert__close{flex:0 1 auto;grid-area:close}.v-alert__content{align-self:center;grid-area:content;overflow:hidden}.v-alert__append,.v-alert__close{align-self:flex-start;margin-inline-start:16px}.v-alert__append{align-self:flex-start;grid-area:append}.v-alert__append+.v-alert__close{margin-inline-start:16px}.v-alert__prepend{align-self:flex-start;display:flex;align-items:center;grid-area:prepend;margin-inline-end:16px}.v-alert--prominent .v-alert__prepend{align-self:center}.v-alert__underlay{grid-area:none;position:absolute}.v-alert--border-start .v-alert__underlay{border-top-left-radius:0;border-bottom-left-radius:0}.v-alert--border-end .v-alert__underlay{border-top-right-radius:0;border-bottom-right-radius:0}.v-alert--border-top .v-alert__underlay{border-top-left-radius:0;border-top-right-radius:0}.v-alert--border-bottom .v-alert__underlay{border-bottom-left-radius:0;border-bottom-right-radius:0}.v-alert-title{align-items:center;align-self:center;display:flex;font-size:1.25rem;font-weight:500;-webkit-hyphens:auto;hyphens:auto;letter-spacing:.0125em;line-height:1.75rem;overflow-wrap:normal;text-transform:none;word-break:normal;word-wrap:break-word}.v-autocomplete .v-field .v-text-field__prefix,.v-autocomplete .v-field .v-text-field__suffix,.v-autocomplete .v-field .v-field__input,.v-autocomplete .v-field.v-field{cursor:text}.v-autocomplete .v-field .v-field__input>input{align-self:flex-start;flex:1 1}.v-autocomplete .v-field input{min-width:64px}.v-autocomplete .v-field:not(.v-field--focused) input{min-width:0}.v-autocomplete .v-field--dirty .v-autocomplete__selection{margin-inline-end:2px}.v-autocomplete .v-autocomplete__selection-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-autocomplete__content{overflow:hidden;box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:4px}.v-autocomplete__mask{background:rgb(var(--v-theme-on-surface-variant))}.v-autocomplete__selection{display:inline-flex;align-items:center;letter-spacing:inherit;line-height:inherit;max-width:90%}.v-autocomplete__selection{margin-top:var(--v-input-chips-margin-top);margin-bottom:var(--v-input-chips-margin-bottom)}.v-autocomplete__selection:first-child{margin-inline-start:0}.v-autocomplete--selecting-index .v-autocomplete__selection{opacity:var(--v-medium-emphasis-opacity)}.v-autocomplete--selecting-index .v-autocomplete__selection--selected{opacity:1}.v-autocomplete--selecting-index .v-field__input>input{caret-color:transparent}.v-autocomplete--single.v-text-field input{flex:1 1;position:absolute;left:0;right:0;width:100%;padding-inline-start:inherit;padding-inline-end:inherit}.v-autocomplete--single .v-field--variant-outlined input{top:50%;transform:translateY(calc(-50% - (var(--v-input-chips-margin-top) + var(--v-input-chips-margin-bottom)) / 2))}.v-autocomplete--single .v-field--active input{transition:none}.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input{opacity:0}.v-autocomplete--single .v-field--focused .v-autocomplete__selection{opacity:0}.v-autocomplete__menu-icon{margin-inline-start:4px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-autocomplete--active-menu .v-autocomplete__menu-icon{opacity:var(--v-high-emphasis-opacity);transform:rotate(180deg)}.v-checkbox .v-selection-control{min-height:var(--v-input-control-height)}.v-selection-control{align-items:center;contain:layout;display:flex;flex:1 0;grid-area:control;position:relative;-webkit-user-select:none;user-select:none}.v-selection-control .v-label{white-space:normal;word-break:break-word;height:100%;width:100%}.v-selection-control--disabled{opacity:var(--v-disabled-opacity);pointer-events:none}.v-selection-control--error .v-label,.v-selection-control--disabled .v-label{opacity:1}.v-selection-control--error:not(.v-selection-control--disabled) .v-label{color:rgb(var(--v-theme-error))}.v-selection-control--inline{display:inline-flex;flex:0 0 auto;min-width:0;max-width:100%}.v-selection-control--inline .v-label{width:auto}.v-selection-control--density-default{--v-selection-control-size: 40px}.v-selection-control--density-comfortable{--v-selection-control-size: 36px}.v-selection-control--density-compact{--v-selection-control-size: 28px}.v-selection-control__wrapper{width:var(--v-selection-control-size);height:var(--v-selection-control-size);display:inline-flex;align-items:center;position:relative;justify-content:center;flex:none}.v-selection-control__input{width:var(--v-selection-control-size);height:var(--v-selection-control-size);align-items:center;display:flex;flex:none;justify-content:center;position:relative;border-radius:50%}.v-selection-control__input input{cursor:pointer;position:absolute;left:0;top:0;width:100%;height:100%;opacity:0}.v-selection-control__input:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;border-radius:100%;background-color:currentColor;opacity:0;pointer-events:none}.v-selection-control__input:hover:before{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-selection-control__input>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-selection-control--disabled .v-selection-control__input>.v-icon,.v-selection-control--dirty .v-selection-control__input>.v-icon,.v-selection-control--error .v-selection-control__input>.v-icon{opacity:1}.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input>.v-icon{color:rgb(var(--v-theme-error))}.v-selection-control--focus-visible .v-selection-control__input:before{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}.v-label{align-items:center;display:inline-flex;font-size:1rem;letter-spacing:.009375em;min-width:0;opacity:var(--v-medium-emphasis-opacity);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-label--clickable{cursor:pointer}.v-selection-control-group{grid-area:control;display:flex;flex-direction:column}.v-selection-control-group--inline{flex-direction:row;flex-wrap:wrap}.v-input{display:grid;flex:1 1 auto;font-size:1rem;font-weight:400;line-height:1.5;--v-input-chips-margin-top: 2px}.v-input--disabled{pointer-events:none}.v-input--density-default{--v-input-control-height: 56px;--v-input-padding-top: 15px}.v-input--density-comfortable{--v-input-control-height: 48px;--v-input-padding-top: 11px}.v-input--density-compact{--v-input-control-height: 40px;--v-input-padding-top: 7px}.v-input--density-default{--v-input-chips-margin-bottom: 0px}.v-input--density-comfortable{--v-input-chips-margin-bottom: 2px}.v-input--density-compact{--v-input-chips-margin-bottom: 4px}.v-input--vertical{grid-template-areas:"append" "control" "prepend";grid-template-rows:max-content auto max-content;grid-template-columns:min-content}.v-input--vertical .v-input__prepend{margin-block-start:16px}.v-input--vertical .v-input__append{margin-block-end:16px}.v-input--horizontal{grid-template-areas:"prepend control append" "a messages b";grid-template-columns:max-content minmax(0,1fr) max-content;grid-template-rows:auto auto}.v-input--horizontal .v-input__prepend{margin-inline-end:16px}.v-input--horizontal .v-input__append{margin-inline-start:16px}.v-input__details{align-items:flex-end;display:flex;font-size:.75rem;font-weight:400;grid-area:messages;letter-spacing:.0333333333em;line-height:normal;min-height:22px;padding-top:6px;overflow:hidden;justify-content:space-between}.v-input__details>.v-icon,.v-input__prepend>.v-icon,.v-input__append>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-input--disabled .v-input__details>.v-icon,.v-input--disabled .v-input__details .v-messages,.v-input--error .v-input__details>.v-icon,.v-input--error .v-input__details .v-messages,.v-input--disabled .v-input__prepend>.v-icon,.v-input--disabled .v-input__prepend .v-messages,.v-input--error .v-input__prepend>.v-icon,.v-input--error .v-input__prepend .v-messages,.v-input--disabled .v-input__append>.v-icon,.v-input--disabled .v-input__append .v-messages,.v-input--error .v-input__append>.v-icon,.v-input--error .v-input__append .v-messages{opacity:1}.v-input--disabled .v-input__details,.v-input--disabled .v-input__prepend,.v-input--disabled .v-input__append{opacity:var(--v-disabled-opacity)}.v-input--error:not(.v-input--disabled) .v-input__details>.v-icon,.v-input--error:not(.v-input--disabled) .v-input__details .v-messages,.v-input--error:not(.v-input--disabled) .v-input__prepend>.v-icon,.v-input--error:not(.v-input--disabled) .v-input__prepend .v-messages,.v-input--error:not(.v-input--disabled) .v-input__append>.v-icon,.v-input--error:not(.v-input--disabled) .v-input__append .v-messages{color:rgb(var(--v-theme-error))}.v-input__prepend,.v-input__append{display:flex;align-items:flex-start;padding-top:var(--v-input-padding-top)}.v-input--center-affix .v-input__prepend,.v-input--center-affix .v-input__append{align-items:center;padding-top:0}.v-input__prepend{grid-area:prepend}.v-input__append{grid-area:append}.v-input__control{display:flex;grid-area:control}.v-messages{flex:1 1 auto;font-size:12px;min-height:14px;min-width:1px;opacity:var(--v-medium-emphasis-opacity);position:relative}.v-messages__message{line-height:12px;word-break:break-word;overflow-wrap:break-word;word-wrap:break-word;-webkit-hyphens:auto;hyphens:auto;transition-duration:.15s}.v-chip{align-items:center;cursor:default;display:inline-flex;font-weight:400;max-width:100%;min-width:0;overflow:hidden;position:relative;text-decoration:none;white-space:nowrap;vertical-align:middle;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;border-radius:9999px}.v-chip.v-chip--size-x-small{--v-chip-size: .625rem;--v-chip-height: 18px;font-size:.625rem;padding:0 7px}.v-chip.v-chip--size-x-small .v-avatar{--v-avatar-height: 12px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar{--v-avatar-height: 18px}.v-chip.v-chip--size-x-small .v-avatar--start{margin-inline-start:-4.9px;margin-inline-end:3.5px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--start{margin-inline-start:-7px}.v-chip.v-chip--size-x-small .v-avatar--end{margin-inline-start:3.5px;margin-inline-end:-4.9px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--end{margin-inline-end:-7px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--end+.v-chip__close{margin-inline-start:10.5px}.v-chip.v-chip--size-x-small .v-icon--start,.v-chip.v-chip--size-x-small .v-chip__filter{margin-inline-start:-3.5px;margin-inline-end:3.5px}.v-chip.v-chip--size-x-small .v-icon--end,.v-chip.v-chip--size-x-small .v-chip__close{margin-inline-start:3.5px;margin-inline-end:-3.5px}.v-chip.v-chip--size-x-small .v-icon--end+.v-chip__close,.v-chip.v-chip--size-x-small .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-x-small .v-chip__append+.v-chip__close{margin-inline-start:7px}.v-chip.v-chip--size-small{--v-chip-size: .75rem;--v-chip-height: 24px;font-size:.75rem;padding:0 9px}.v-chip.v-chip--size-small .v-avatar{--v-avatar-height: 18px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar{--v-avatar-height: 24px}.v-chip.v-chip--size-small .v-avatar--start{margin-inline-start:-6.3px;margin-inline-end:4.5px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar--start{margin-inline-start:-9px}.v-chip.v-chip--size-small .v-avatar--end{margin-inline-start:4.5px;margin-inline-end:-6.3px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar--end{margin-inline-end:-9px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar--end+.v-chip__close{margin-inline-start:13.5px}.v-chip.v-chip--size-small .v-icon--start,.v-chip.v-chip--size-small .v-chip__filter{margin-inline-start:-4.5px;margin-inline-end:4.5px}.v-chip.v-chip--size-small .v-icon--end,.v-chip.v-chip--size-small .v-chip__close{margin-inline-start:4.5px;margin-inline-end:-4.5px}.v-chip.v-chip--size-small .v-icon--end+.v-chip__close,.v-chip.v-chip--size-small .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-small .v-chip__append+.v-chip__close{margin-inline-start:9px}.v-chip.v-chip--size-default{--v-chip-size: .875rem;--v-chip-height: 30px;font-size:.875rem;padding:0 11px}.v-chip.v-chip--size-default .v-avatar{--v-avatar-height: 24px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar{--v-avatar-height: 30px}.v-chip.v-chip--size-default .v-avatar--start{margin-inline-start:-7.7px;margin-inline-end:5.5px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar--start{margin-inline-start:-11px}.v-chip.v-chip--size-default .v-avatar--end{margin-inline-start:5.5px;margin-inline-end:-7.7px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar--end{margin-inline-end:-11px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar--end+.v-chip__close{margin-inline-start:16.5px}.v-chip.v-chip--size-default .v-icon--start,.v-chip.v-chip--size-default .v-chip__filter{margin-inline-start:-5.5px;margin-inline-end:5.5px}.v-chip.v-chip--size-default .v-icon--end,.v-chip.v-chip--size-default .v-chip__close{margin-inline-start:5.5px;margin-inline-end:-5.5px}.v-chip.v-chip--size-default .v-icon--end+.v-chip__close,.v-chip.v-chip--size-default .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-default .v-chip__append+.v-chip__close{margin-inline-start:11px}.v-chip.v-chip--size-large{--v-chip-size: 1rem;--v-chip-height: 36px;font-size:1rem;padding:0 14px}.v-chip.v-chip--size-large .v-avatar{--v-avatar-height: 30px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar{--v-avatar-height: 36px}.v-chip.v-chip--size-large .v-avatar--start{margin-inline-start:-9.8px;margin-inline-end:7px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar--start{margin-inline-start:-14px}.v-chip.v-chip--size-large .v-avatar--end{margin-inline-start:7px;margin-inline-end:-9.8px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar--end{margin-inline-end:-14px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar--end+.v-chip__close{margin-inline-start:21px}.v-chip.v-chip--size-large .v-icon--start,.v-chip.v-chip--size-large .v-chip__filter{margin-inline-start:-7px;margin-inline-end:7px}.v-chip.v-chip--size-large .v-icon--end,.v-chip.v-chip--size-large .v-chip__close{margin-inline-start:7px;margin-inline-end:-7px}.v-chip.v-chip--size-large .v-icon--end+.v-chip__close,.v-chip.v-chip--size-large .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-large .v-chip__append+.v-chip__close{margin-inline-start:14px}.v-chip.v-chip--size-x-large{--v-chip-size: 1.125rem;--v-chip-height: 42px;font-size:1.125rem;padding:0 16px}.v-chip.v-chip--size-x-large .v-avatar{--v-avatar-height: 36px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar{--v-avatar-height: 42px}.v-chip.v-chip--size-x-large .v-avatar--start{margin-inline-start:-11.2px;margin-inline-end:8px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--start{margin-inline-start:-16px}.v-chip.v-chip--size-x-large .v-avatar--end{margin-inline-start:8px;margin-inline-end:-11.2px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--end{margin-inline-end:-16px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--end+.v-chip__close{margin-inline-start:24px}.v-chip.v-chip--size-x-large .v-icon--start,.v-chip.v-chip--size-x-large .v-chip__filter{margin-inline-start:-8px;margin-inline-end:8px}.v-chip.v-chip--size-x-large .v-icon--end,.v-chip.v-chip--size-x-large .v-chip__close{margin-inline-start:8px;margin-inline-end:-8px}.v-chip.v-chip--size-x-large .v-icon--end+.v-chip__close,.v-chip.v-chip--size-x-large .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-x-large .v-chip__append+.v-chip__close{margin-inline-start:16px}.v-chip.v-chip--density-default{height:calc(var(--v-chip-height) + 0px)}.v-chip.v-chip--density-comfortable{height:calc(var(--v-chip-height) + -8px)}.v-chip.v-chip--density-compact{height:calc(var(--v-chip-height) + -12px)}.v-chip:hover>.v-chip__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-chip:focus-visible>.v-chip__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-chip:focus>.v-chip__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-chip--active>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]>.v-chip__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-chip--active:hover>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]:hover>.v-chip__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-chip--active:focus-visible>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-chip__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-chip--active:focus>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]:focus>.v-chip__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-chip--variant-plain,.v-chip--variant-outlined,.v-chip--variant-text,.v-chip--variant-tonal{background:transparent;color:inherit}.v-chip--variant-plain{opacity:.26}.v-chip--variant-plain:focus,.v-chip--variant-plain:hover{opacity:1}.v-chip--variant-plain .v-chip__overlay{display:none}.v-chip--variant-elevated,.v-chip--variant-flat{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant))}.v-chip--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-chip--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-chip--variant-outlined{border:thin solid currentColor}.v-chip--variant-text .v-chip__overlay{background:currentColor}.v-chip--variant-tonal .v-chip__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-chip--border{border-width:thin}.v-chip--link{cursor:pointer}.v-chip--filter{-webkit-user-select:none;user-select:none}.v-chip__content{align-items:center;display:inline-flex}.v-autocomplete__selection .v-chip__content,.v-combobox__selection .v-chip__content,.v-select__selection .v-chip__content{overflow:hidden}.v-chip__filter,.v-chip__prepend,.v-chip__append,.v-chip__close{align-items:center;display:inline-flex}.v-chip__close{cursor:pointer;flex:0 1 auto;font-size:18px;max-height:18px;max-width:18px;-webkit-user-select:none;user-select:none}.v-chip__close .v-icon{font-size:inherit}.v-chip__filter{transition:.15s cubic-bezier(.4,0,.2,1)}.v-chip__overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:currentColor;border-radius:inherit;pointer-events:none;opacity:0;transition:opacity .2s ease-in-out}.v-chip--disabled{opacity:.3;pointer-events:none;-webkit-user-select:none;user-select:none}.v-chip--label{border-radius:4px}.v-avatar{flex:none;align-items:center;display:inline-flex;justify-content:center;line-height:normal;overflow:hidden;position:relative;text-align:center;transition:.2s cubic-bezier(.4,0,.2,1);transition-property:width,height;vertical-align:middle;border-radius:50%}.v-avatar.v-avatar--size-x-small{--v-avatar-height: 24px}.v-avatar.v-avatar--size-small{--v-avatar-height: 32px}.v-avatar.v-avatar--size-default{--v-avatar-height: 40px}.v-avatar.v-avatar--size-large{--v-avatar-height: 48px}.v-avatar.v-avatar--size-x-large{--v-avatar-height: 56px}.v-avatar.v-avatar--density-default{height:calc(var(--v-avatar-height) + 0px);width:calc(var(--v-avatar-height) + 0px)}.v-avatar.v-avatar--density-comfortable{height:calc(var(--v-avatar-height) + -4px);width:calc(var(--v-avatar-height) + -4px)}.v-avatar.v-avatar--density-compact{height:calc(var(--v-avatar-height) + -8px);width:calc(var(--v-avatar-height) + -8px)}.v-avatar--variant-plain,.v-avatar--variant-outlined,.v-avatar--variant-text,.v-avatar--variant-tonal{background:transparent;color:inherit}.v-avatar--variant-plain{opacity:.62}.v-avatar--variant-plain:focus,.v-avatar--variant-plain:hover{opacity:1}.v-avatar--variant-plain .v-avatar__overlay{display:none}.v-avatar--variant-elevated,.v-avatar--variant-flat{background:var(--v-theme-surface);color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity))}.v-avatar--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-avatar--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-avatar--variant-outlined{border:thin solid currentColor}.v-avatar--variant-text .v-avatar__overlay{background:currentColor}.v-avatar--variant-tonal .v-avatar__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-avatar--rounded{border-radius:4px}.v-avatar .v-img{height:100%;width:100%}.v-chip-group{display:flex;max-width:100%;min-width:0;overflow-x:auto;padding:4px 0;flex-wrap:wrap}.v-chip-group .v-chip{margin:4px 8px 4px 0}.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay{opacity:var(--v-activated-opacity)}.v-chip-group--column{flex-wrap:wrap;white-space:normal}.v-list{overflow:auto;padding:8px 0;position:relative;outline:none;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:0;background:rgba(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-list--border{border-width:thin;box-shadow:none}.v-list--disabled{pointer-events:none;-webkit-user-select:none;user-select:none}.v-list--nav{padding-inline-start:8px;padding-inline-end:8px}.v-navigation-drawer--rail:not(.v-navigation-drawer--is-hovering.v-navigation-drawer--expand-on-hover) .v-list .v-avatar{--v-avatar-height: 24px}.v-list--rounded{border-radius:4px}.v-list--subheader{padding-top:0}.v-list-img{border-radius:inherit;display:flex;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.v-list-subheader{align-items:center;background:inherit;color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));display:flex;font-size:.875rem;font-weight:400;line-height:1.375rem;padding-inline-end:16px;min-height:40px;transition:.2s min-height cubic-bezier(.4,0,.2,1)}.v-list-subheader__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-list--density-default .v-list-subheader{min-height:40px;padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list--density-comfortable .v-list-subheader{min-height:36px;padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list--density-compact .v-list-subheader{min-height:32px;padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list-subheader--inset{--indent-padding: 56px}.v-list--nav .v-list-subheader{font-size:.75rem}.v-list-subheader--sticky{background:inherit;left:0;position:sticky;top:0;z-index:1}.v-list__overlay{background-color:currentColor;border-radius:inherit;bottom:0;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s ease-in-out}.v-list-item{align-items:center;display:grid;flex:none;grid-template-areas:"prepend content append";grid-template-columns:max-content auto max-content;outline:none;max-width:100%;padding:4px 16px;position:relative;text-decoration:none;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;border-radius:0}.v-list-item--border{border-width:thin;box-shadow:none}.v-list-item:hover>.v-list-item__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-list-item:focus-visible>.v-list-item__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-list-item:focus>.v-list-item__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-list-item--active>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]>.v-list-item__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-list-item--active:hover>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]:hover>.v-list-item__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-list-item--active:focus-visible>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-list-item__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-list-item--active:focus>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]:focus>.v-list-item__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-list-item--variant-plain,.v-list-item--variant-outlined,.v-list-item--variant-text,.v-list-item--variant-tonal{background:transparent;color:inherit}.v-list-item--variant-plain{opacity:.62}.v-list-item--variant-plain:focus,.v-list-item--variant-plain:hover{opacity:1}.v-list-item--variant-plain .v-list-item__overlay{display:none}.v-list-item--variant-elevated,.v-list-item--variant-flat{background:rgba(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-list-item--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-list-item--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-list-item--variant-outlined{border:thin solid currentColor}.v-list-item--variant-text .v-list-item__overlay{background:currentColor}.v-list-item--variant-tonal .v-list-item__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}@supports selector(:focus-visible){.v-list-item:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;border:2px solid currentColor;border-radius:4px;opacity:0;transition:opacity .2s ease-in-out}.v-list-item:focus-visible:after{opacity:calc(.15 * var(--v-theme-overlay-multiplier))}}.v-list-item__prepend>.v-badge .v-icon,.v-list-item__prepend>.v-icon,.v-list-item__append>.v-badge .v-icon,.v-list-item__append>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-list-item--active .v-list-item__prepend>.v-badge .v-icon,.v-list-item--active .v-list-item__prepend>.v-icon,.v-list-item--active .v-list-item__append>.v-badge .v-icon,.v-list-item--active .v-list-item__append>.v-icon{opacity:1}.v-list-item--rounded{border-radius:4px}.v-list-item--disabled{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.6}.v-list-item--link{cursor:pointer}.v-list-item__prepend{align-items:center;align-self:center;display:flex;grid-area:prepend}.v-list-item__prepend>.v-badge~.v-list-item__spacer,.v-list-item__prepend>.v-icon~.v-list-item__spacer,.v-list-item__prepend>.v-tooltip~.v-list-item__spacer{width:32px}.v-list-item__prepend>.v-avatar~.v-list-item__spacer{width:16px}.v-list-item--three-line .v-list-item__prepend{align-self:start}.v-list-item__append{align-self:center;display:flex;align-items:center;grid-area:append}.v-list-item__append .v-list-item__spacer{order:-1}.v-list-item__append>.v-badge~.v-list-item__spacer,.v-list-item__append>.v-icon~.v-list-item__spacer,.v-list-item__append>.v-tooltip~.v-list-item__spacer{width:32px}.v-list-item__append>.v-avatar~.v-list-item__spacer{width:16px}.v-list-item--three-line .v-list-item__append{align-self:start}.v-list-item__content{align-self:center;grid-area:content;overflow:hidden}.v-list-item-action{align-self:center;display:flex;align-items:center;grid-area:prepend;flex:none;transition:inherit;transition-property:height,width}.v-list-item-action--start{margin-inline-end:12px}.v-list-item-action--end{margin-inline-start:12px}.v-list-item-media{margin-top:0;margin-bottom:0}.v-list-item-media--start{margin-inline-end:16px}.v-list-item-media--end{margin-inline-start:16px}.v-list-item--two-line .v-list-item-media{margin-top:-4px;margin-bottom:-4px}.v-list-item--three-line .v-list-item-media{margin-top:0;margin-bottom:0}.v-list-item-subtitle{-webkit-box-orient:vertical;display:-webkit-box;opacity:var(--v-medium-emphasis-opacity);overflow:hidden;padding:0;text-overflow:ellipsis;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;line-height:1rem;text-transform:none}.v-list-item--one-line .v-list-item-subtitle{-webkit-line-clamp:1}.v-list-item--two-line .v-list-item-subtitle{-webkit-line-clamp:2}.v-list-item--three-line .v-list-item-subtitle{-webkit-line-clamp:3}.v-list-item--nav .v-list-item-subtitle{font-size:.75rem;font-weight:400;letter-spacing:.0178571429em;line-height:1rem}.v-list-item-title{-webkit-hyphens:auto;hyphens:auto;overflow-wrap:normal;overflow:hidden;padding:0;white-space:nowrap;text-overflow:ellipsis;word-break:normal;word-wrap:break-word;font-size:1rem;font-weight:400;letter-spacing:.009375em;line-height:1.5rem;text-transform:none}.v-list-item--nav .v-list-item-title{font-size:.8125rem;font-weight:500;letter-spacing:normal;line-height:1rem}.v-list-item--density-default{min-height:40px}.v-list-item--density-default.v-list-item--one-line{min-height:48px;padding-top:4px;padding-bottom:4px}.v-list-item--density-default.v-list-item--two-line{min-height:64px;padding-top:12px;padding-bottom:12px}.v-list-item--density-default.v-list-item--three-line{min-height:88px;padding-top:16px;padding-bottom:16px}.v-list-item--density-default.v-list-item--three-line .v-list-item__prepend,.v-list-item--density-default.v-list-item--three-line .v-list-item__append{padding-top:8px}.v-list-item--density-default:not(.v-list-item--nav).v-list-item--one-line{padding-inline-start:16px;padding-inline-end:16px}.v-list-item--density-default:not(.v-list-item--nav).v-list-item--two-line{padding-inline-start:16px;padding-inline-end:16px}.v-list-item--density-default:not(.v-list-item--nav).v-list-item--three-line{padding-inline-start:16px;padding-inline-end:16px}.v-list-item--density-comfortable{min-height:36px}.v-list-item--density-comfortable.v-list-item--one-line{min-height:44px}.v-list-item--density-comfortable.v-list-item--two-line{min-height:60px;padding-top:8px;padding-bottom:8px}.v-list-item--density-comfortable.v-list-item--three-line{min-height:84px;padding-top:12px;padding-bottom:12px}.v-list-item--density-comfortable.v-list-item--three-line .v-list-item__prepend,.v-list-item--density-comfortable.v-list-item--three-line .v-list-item__append{padding-top:6px}.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--one-line{padding-inline-start:16px;padding-inline-end:16px}.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--two-line{padding-inline-start:16px;padding-inline-end:16px}.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--three-line{padding-inline-start:16px;padding-inline-end:16px}.v-list-item--density-compact{min-height:32px}.v-list-item--density-compact.v-list-item--one-line{min-height:40px}.v-list-item--density-compact.v-list-item--two-line{min-height:56px;padding-top:4px;padding-bottom:4px}.v-list-item--density-compact.v-list-item--three-line{min-height:80px;padding-top:8px;padding-bottom:8px}.v-list-item--density-compact.v-list-item--three-line .v-list-item__prepend,.v-list-item--density-compact.v-list-item--three-line .v-list-item__append{padding-top:4px}.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--one-line{padding-inline-start:16px;padding-inline-end:16px}.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--two-line{padding-inline-start:16px;padding-inline-end:16px}.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--three-line{padding-inline-start:16px;padding-inline-end:16px}.v-list-item--nav{padding-inline-start:8px;padding-inline-end:8px}.v-list .v-list-item--nav:not(:only-child){margin-bottom:4px}.v-list-item__underlay{position:absolute}.v-list-item__overlay{background-color:currentColor;border-radius:inherit;bottom:0;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s ease-in-out}.v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay{--v-theme-overlay-multiplier: 0}.v-list{--indent-padding: 0px}.v-list--nav{--indent-padding: -8px}.v-list-group{--list-indent-size: 16px;--parent-padding: var(--indent-padding);--prepend-width: 40px}.v-list-group--fluid{--list-indent-size: 0px}.v-list-group--prepend{--parent-padding: calc(var(--indent-padding) + var(--prepend-width))}.v-list-group--fluid.v-list-group--prepend{--parent-padding: var(--indent-padding)}.v-list-group__items{--indent-padding: calc(var(--parent-padding) + var(--list-indent-size))}.v-list-group__items .v-list-item{padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay{opacity:0}.v-list-group__header.v-list-item--active:hover .v-list-item__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-divider{display:block;flex:1 1 100%;height:0px;max-height:0px;opacity:var(--v-border-opacity);transition:inherit;border-style:solid;border-width:thin 0 0 0}.v-divider--vertical{align-self:stretch;border-width:0 thin 0 0;display:inline-flex;height:inherit;margin-left:-1px;max-height:100%;max-width:0px;vertical-align:text-bottom;width:0px}.v-divider--inset:not(.v-divider--vertical){max-width:calc(100% - 72px);margin-inline-start:72px}.v-divider--inset.v-divider--vertical{margin-bottom:8px;margin-top:8px;max-height:calc(100% - 16px)}.v-menu>.v-overlay__content{display:flex;flex-direction:column;border-radius:4px}.v-menu>.v-overlay__content>.v-card,.v-menu>.v-overlay__content>.v-sheet,.v-menu>.v-overlay__content>.v-list{background:rgb(var(--v-theme-surface));border-radius:inherit;overflow:auto;height:100%;box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-overlay-container{contain:layout;left:0;pointer-events:none;position:absolute;top:0;display:contents}.v-overlay-scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-overlay-scroll-blocked:not(html){overflow-y:hidden!important}html.v-overlay-scroll-blocked{position:fixed;top:var(--v-body-scroll-y);left:var(--v-body-scroll-x);width:100%;height:100%}.v-overlay{border-radius:inherit;display:flex;left:0;pointer-events:none;position:fixed;top:0;bottom:0;right:0}.v-overlay__content{outline:none;position:absolute;pointer-events:auto;contain:layout}.v-overlay__scrim{pointer-events:auto;background:rgb(var(--v-theme-on-surface));border-radius:inherit;bottom:0;left:0;opacity:.32;position:fixed;right:0;top:0}.v-overlay--absolute,.v-overlay--contained .v-overlay__scrim{position:absolute}.v-overlay--scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-select .v-field .v-text-field__prefix,.v-select .v-field .v-text-field__suffix,.v-select .v-field .v-field__input,.v-select .v-field.v-field{cursor:pointer}.v-select .v-field .v-field__input>input{align-self:flex-start;opacity:1;flex:0 0;position:absolute;width:100%;transition:none;pointer-events:none;caret-color:transparent}.v-select .v-field--dirty .v-select__selection{margin-inline-end:2px}.v-select .v-select__selection-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-select__content{overflow:hidden;box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:4px}.v-select__selection{display:inline-flex;align-items:center;letter-spacing:inherit;line-height:inherit;max-width:100%}.v-select .v-select__selection{margin-top:var(--v-input-chips-margin-top);margin-bottom:var(--v-input-chips-margin-bottom)}.v-select .v-select__selection:first-child{margin-inline-start:0}.v-select--selected .v-field .v-field__input>input{opacity:0}.v-select__menu-icon{margin-inline-start:4px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-select--active-menu .v-select__menu-icon{opacity:var(--v-high-emphasis-opacity);transform:rotate(180deg)}.v-text-field input{color:inherit;opacity:0;flex:1;transition:.15s opacity cubic-bezier(.4,0,.2,1);min-width:0}.v-text-field input:focus,.v-text-field input:active{outline:none}.v-text-field input:invalid{box-shadow:none}.v-text-field .v-field{cursor:text}.v-text-field--prefixed.v-text-field .v-field__input{--v-field-padding-start: 6px}.v-text-field--suffixed.v-text-field .v-field__input{--v-field-padding-end: 0}.v-text-field .v-field__input input{margin-top:var(--v-input-chips-margin-top);margin-bottom:var(--v-input-chips-margin-bottom)}.v-text-field input.v-field__input{min-height:calc(max(var(--v-input-control-height, 56px),1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom) + var(--v-input-chips-margin-bottom) + 2px) - var(--v-input-chips-margin-top) - var(--v-input-chips-margin-bottom));padding-top:calc(var(--v-input-chips-margin-top) + var(--v-field-input-padding-top));padding-bottom:calc(var(--v-input-chips-margin-bottom) + var(--v-field-input-padding-bottom))}.v-text-field .v-input__details{padding-inline-start:16px;padding-inline-end:16px}.v-text-field .v-field--no-label input,.v-text-field .v-field--active input{opacity:1}.v-text-field .v-field--single-line input{transition:none}.v-text-field__prefix,.v-text-field__suffix{align-items:center;color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));cursor:default;display:flex;opacity:0;transition:inherit;white-space:nowrap;min-height:max(var(--v-input-control-height, 56px),1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom) + var(--v-input-chips-margin-bottom) + 2px);padding-top:calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));padding-bottom:var(--v-field-padding-bottom, 6px)}.v-text-field__prefix__text,.v-text-field__suffix__text{margin-top:var(--v-input-chips-margin-top);margin-bottom:var(--v-input-chips-margin-bottom)}.v-field--active .v-text-field__prefix,.v-field--active .v-text-field__suffix{opacity:1}.v-field--disabled .v-text-field__prefix,.v-field--disabled .v-text-field__suffix{color:rgba(var(--v-theme-on-surface),var(--v-disabled-opacity))}.v-text-field__prefix{padding-inline-start:var(--v-field-padding-start)}.v-text-field__suffix{padding-inline-end:var(--v-field-padding-end)}.v-text-field--plain-underlined{--v-field-padding-top--plain-underlined: 6px}.v-text-field--plain-underlined .v-input__details{padding:0}.v-text-field--plain-underlined .v-input__prepend,.v-text-field--plain-underlined .v-input__append{align-items:flex-start;padding-top:calc(var(--v-field-padding-top--plain-underlined) + var(--v-input-padding-top))}.v-counter{color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));flex:0 1 auto;font-size:12px;transition-duration:.15s}.v-field{display:grid;grid-template-areas:"prepend-inner field clear append-inner";grid-template-columns:min-content minmax(0,1fr) min-content min-content;font-size:16px;letter-spacing:.009375em;max-width:100%;border-radius:4px;contain:layout;flex:1 0;grid-area:control;position:relative;--v-field-padding-start: 16px;--v-field-padding-end: 16px;--v-field-padding-top: 10px;--v-field-padding-bottom: 5px;--v-field-input-padding-top: calc(var(--v-field-padding-top, 10px) + var(--v-input-padding-top, 0));--v-field-input-padding-bottom: var(--v-field-padding-bottom, 5px)}.v-field--disabled{opacity:var(--v-disabled-opacity);pointer-events:none}.v-field--prepended{padding-inline-start:12px}.v-field--appended{padding-inline-end:12px}.v-field--variant-solo,.v-field--variant-solo-filled,.v-field--variant-solo-inverted{background:rgb(var(--v-theme-surface));border-color:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity));box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-field--variant-solo-inverted.v-field--focused{color:rgb(var(--v-theme-on-surface-variant))}.v-field--variant-filled{border-bottom-left-radius:0;border-bottom-right-radius:0}.v-input--density-default .v-field--variant-solo,.v-input--density-default .v-field--variant-solo-inverted,.v-input--density-default .v-field--variant-solo-filled,.v-input--density-default .v-field--variant-filled{--v-input-control-height: 56px;--v-field-padding-bottom: 5px}.v-input--density-comfortable .v-field--variant-solo,.v-input--density-comfortable .v-field--variant-solo-inverted,.v-input--density-comfortable .v-field--variant-solo-filled,.v-input--density-comfortable .v-field--variant-filled{--v-input-control-height: 48px;--v-field-padding-bottom: 1px}.v-input--density-compact .v-field--variant-solo,.v-input--density-compact .v-field--variant-solo-inverted,.v-input--density-compact .v-field--variant-solo-filled,.v-input--density-compact .v-field--variant-filled{--v-input-control-height: 40px;--v-field-padding-bottom: 0px}.v-field--variant-outlined,.v-field--single-line,.v-field--no-label{--v-field-padding-top: 0px}.v-input--density-default .v-field--variant-outlined,.v-input--density-default .v-field--single-line,.v-input--density-default .v-field--no-label{--v-field-padding-bottom: 15px}.v-input--density-comfortable .v-field--variant-outlined,.v-input--density-comfortable .v-field--single-line,.v-input--density-comfortable .v-field--no-label{--v-field-padding-bottom: 11px}.v-input--density-compact .v-field--variant-outlined,.v-input--density-compact .v-field--single-line,.v-input--density-compact .v-field--no-label{--v-field-padding-bottom: 7px}.v-field--variant-plain,.v-field--variant-underlined{border-radius:0;padding:0}.v-field--variant-plain.v-field,.v-field--variant-underlined.v-field{--v-field-padding-start: 0px;--v-field-padding-end: 0px;--v-field-padding-top: var(--v-field-padding-top--plain-underlined, 6px)}.v-input--density-default .v-field--variant-plain,.v-input--density-default .v-field--variant-underlined{--v-input-control-height: 48px;--v-field-padding-bottom: 5px}.v-input--density-comfortable .v-field--variant-plain,.v-input--density-comfortable .v-field--variant-underlined{--v-input-control-height: 40px;--v-field-padding-bottom: 1px}.v-input--density-compact .v-field--variant-plain,.v-input--density-compact .v-field--variant-underlined{--v-input-control-height: 32px;--v-field-padding-bottom: 0px}.v-field--flat{box-shadow:none}.v-field--rounded{border-radius:9999px}.v-field.v-field--prepended{--v-field-padding-start: 6px}.v-field.v-field--appended{--v-field-padding-end: 6px}.v-field__input{color:inherit;display:flex;flex-wrap:wrap;letter-spacing:.009375em;opacity:var(--v-high-emphasis-opacity);min-height:max(var(--v-input-control-height, 56px),1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom) + var(--v-input-chips-margin-bottom) + 2px);min-width:0;padding-inline-start:var(--v-field-padding-start);padding-inline-end:var(--v-field-padding-end);padding-top:var(--v-field-input-padding-top);padding-bottom:var(--v-field-input-padding-bottom);position:relative;width:100%}.v-field__input input{letter-spacing:inherit}.v-field__input input::placeholder,input.v-field__input::placeholder,textarea.v-field__input::placeholder{color:currentColor;opacity:var(--v-disabled-opacity)}.v-field__input:focus,.v-field__input:active{outline:none}.v-field__input:invalid{box-shadow:none}.v-field__field{flex:1 0;grid-area:field;position:relative;align-items:flex-start;display:flex}.v-field__prepend-inner{grid-area:prepend-inner;padding-inline-end:var(--v-field-padding-after)}.v-field__clearable{grid-area:clear}.v-field__append-inner{grid-area:append-inner;padding-inline-start:var(--v-field-padding-after)}.v-field__append-inner,.v-field__clearable,.v-field__prepend-inner{display:flex;align-items:flex-start;padding-top:var(--v-input-padding-top, 10px)}.v-field--center-affix .v-field__append-inner,.v-field--center-affix .v-field__clearable,.v-field--center-affix .v-field__prepend-inner{align-items:center;padding-top:0}.v-field.v-field--variant-underlined .v-field__append-inner,.v-field.v-field--variant-underlined .v-field__clearable,.v-field.v-field--variant-underlined .v-field__prepend-inner,.v-field.v-field--variant-plain .v-field__append-inner,.v-field.v-field--variant-plain .v-field__clearable,.v-field.v-field--variant-plain .v-field__prepend-inner{align-items:flex-start;padding-top:calc(var(--v-field-padding-top, 10px) + var(--v-input-padding-top, 0));padding-bottom:var(--v-field-padding-bottom, 5px)}.v-field--focused .v-field__prepend-inner,.v-field--focused .v-field__append-inner{opacity:1}.v-field__prepend-inner>.v-icon,.v-field__append-inner>.v-icon,.v-field__clearable>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-field--disabled .v-field__prepend-inner>.v-icon,.v-field--error .v-field__prepend-inner>.v-icon,.v-field--disabled .v-field__append-inner>.v-icon,.v-field--error .v-field__append-inner>.v-icon,.v-field--disabled .v-field__clearable>.v-icon,.v-field--error .v-field__clearable>.v-icon{opacity:1}.v-field--error:not(.v-field--disabled) .v-field__prepend-inner>.v-icon,.v-field--error:not(.v-field--disabled) .v-field__append-inner>.v-icon,.v-field--error:not(.v-field--disabled) .v-field__clearable>.v-icon{color:rgb(var(--v-theme-error))}.v-field__clearable{cursor:pointer;opacity:0;margin-inline-start:4px;margin-inline-end:4px;transition:.15s cubic-bezier(.4,0,.2,1);transition-property:opacity,transform,width}.v-field--focused .v-field__clearable,.v-field--persistent-clear .v-field__clearable{opacity:1}@media (hover: hover){.v-field:hover .v-field__clearable{opacity:1}}.v-label.v-field-label{contain:layout paint;margin-inline-start:var(--v-field-padding-start);margin-inline-end:var(--v-field-padding-end);max-width:calc(100% - var(--v-field-padding-start) - var(--v-field-padding-end));pointer-events:none;position:absolute;top:var(--v-input-padding-top);transform-origin:left center;transition:.15s cubic-bezier(.4,0,.2,1);transition-property:opacity,transform;z-index:1}.v-field--variant-underlined .v-label.v-field-label,.v-field--variant-plain .v-label.v-field-label{top:calc(var(--v-input-padding-top) + var(--v-field-padding-top))}.v-field--center-affix .v-label.v-field-label{top:50%;transform:translateY(-50%)}.v-field--active .v-label.v-field-label{visibility:hidden}.v-field--focused .v-label.v-field-label,.v-field--error .v-label.v-field-label{opacity:1}.v-field--error:not(.v-field--disabled) .v-label.v-field-label{color:rgb(var(--v-theme-error))}.v-label.v-field-label--floating{--v-field-label-scale: .75em;font-size:var(--v-field-label-scale);visibility:hidden;max-width:100%}.v-field--center-affix .v-label.v-field-label--floating{transform:none}.v-field.v-field--active .v-label.v-field-label--floating{visibility:visible}.v-input--density-default .v-field--variant-solo .v-label.v-field-label--floating,.v-input--density-default .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-input--density-default .v-field--variant-filled .v-label.v-field-label--floating,.v-input--density-default .v-field--variant-solo-filled .v-label.v-field-label--floating{top:7px}.v-input--density-comfortable .v-field--variant-solo .v-label.v-field-label--floating,.v-input--density-comfortable .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-input--density-comfortable .v-field--variant-filled .v-label.v-field-label--floating,.v-input--density-comfortable .v-field--variant-solo-filled .v-label.v-field-label--floating{top:5px}.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating{top:3px}.v-field--variant-plain .v-label.v-field-label--floating,.v-field--variant-underlined .v-label.v-field-label--floating{transform:translateY(-16px);margin:0;top:var(--v-input-padding-top)}.v-field--variant-outlined .v-label.v-field-label--floating{transform:translateY(-50%);transform-origin:center;position:static;margin:0 4px}.v-field__outline{--v-field-border-width: 1px;--v-field-border-opacity: .38;align-items:stretch;contain:layout;display:flex;height:100%;left:0;pointer-events:none;position:absolute;right:0;width:100%}@media (hover: hover){.v-field:hover .v-field__outline{--v-field-border-opacity: var(--v-high-emphasis-opacity)}}.v-field--error:not(.v-field--disabled) .v-field__outline{color:rgb(var(--v-theme-error))}.v-field.v-field--focused .v-field__outline,.v-input.v-input--error .v-field__outline{--v-field-border-opacity: 1}.v-field--variant-outlined.v-field--focused .v-field__outline{--v-field-border-width: 2px}.v-field--variant-filled .v-field__outline:before,.v-field--variant-underlined .v-field__outline:before{border-color:currentColor;border-style:solid;border-width:0 0 var(--v-field-border-width);opacity:var(--v-field-border-opacity);transition:opacity .25s cubic-bezier(.4,0,.2,1);content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-field--variant-filled .v-field__outline:after,.v-field--variant-underlined .v-field__outline:after{border-color:currentColor;border-style:solid;border-width:0 0 2px;transform:scaleX(0);transition:transform .15s cubic-bezier(.4,0,.2,1);content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-field--focused.v-field--variant-filled .v-field__outline:after,.v-field--focused.v-field--variant-underlined .v-field__outline:after{transform:scaleX(1)}.v-field--variant-outlined .v-field__outline{border-radius:inherit}.v-field--variant-outlined .v-field__outline__start,.v-field--variant-outlined .v-field__outline__notch:before,.v-field--variant-outlined .v-field__outline__notch:after,.v-field--variant-outlined .v-field__outline__end{border:0 solid currentColor;opacity:var(--v-field-border-opacity);transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-outlined .v-field__outline__start{border-top-width:var(--v-field-border-width);border-bottom-width:var(--v-field-border-width);border-inline-start-width:var(--v-field-border-width)}.v-input--density-default .v-field--variant-outlined .v-field__outline__start{flex:0 0 29px}.v-input--density-comfortable .v-field--variant-outlined .v-field__outline__start{flex:0 0 25px}.v-input--density-compact .v-field--variant-outlined .v-field__outline__start{flex:0 0 21px}.v-locale--is-ltr.v-field--variant-outlined .v-field__outline__start,.v-locale--is-ltr .v-field--variant-outlined .v-field__outline__start{border-top-left-radius:inherit;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:inherit}.v-locale--is-rtl.v-field--variant-outlined .v-field__outline__start,.v-locale--is-rtl .v-field--variant-outlined .v-field__outline__start{border-top-left-radius:0;border-top-right-radius:inherit;border-bottom-right-radius:inherit;border-bottom-left-radius:0}.v-field--variant-outlined .v-field__outline__notch{flex:none;position:relative}.v-field--variant-outlined .v-field__outline__notch:before,.v-field--variant-outlined .v-field__outline__notch:after{opacity:var(--v-field-border-opacity);transition:opacity .25s cubic-bezier(.4,0,.2,1);content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-field--variant-outlined .v-field__outline__notch:before{border-width:var(--v-field-border-width) 0 0}.v-field--variant-outlined .v-field__outline__notch:after{bottom:0;border-width:0 0 var(--v-field-border-width)}.v-field--active.v-field--variant-outlined .v-field__outline__notch:before{opacity:0}.v-field--variant-outlined .v-field__outline__end{flex:1;border-top-width:var(--v-field-border-width);border-bottom-width:var(--v-field-border-width);border-inline-end-width:var(--v-field-border-width)}.v-locale--is-ltr.v-field--variant-outlined .v-field__outline__end,.v-locale--is-ltr .v-field--variant-outlined .v-field__outline__end{border-top-left-radius:0;border-top-right-radius:inherit;border-bottom-right-radius:inherit;border-bottom-left-radius:0}.v-locale--is-rtl.v-field--variant-outlined .v-field__outline__end,.v-locale--is-rtl .v-field--variant-outlined .v-field__outline__end{border-top-left-radius:inherit;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:inherit}.v-field__loader{bottom:0;left:0;position:absolute;right:0;width:100%}.v-field__overlay{border-radius:inherit;pointer-events:none;position:absolute;top:0;left:0;width:100%;height:100%}.v-field--variant-filled .v-field__overlay{background-color:currentColor;opacity:.04;transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-filled.v-field--has-background .v-field__overlay{opacity:0}@media (hover: hover){.v-field--variant-filled:hover .v-field__overlay{opacity:calc((.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}}.v-field--variant-filled.v-field--focused .v-field__overlay{opacity:calc((.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}.v-field--variant-solo-filled .v-field__overlay{background-color:currentColor;opacity:.04;transition:opacity .25s cubic-bezier(.4,0,.2,1)}@media (hover: hover){.v-field--variant-solo-filled:hover .v-field__overlay{opacity:calc((.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}}.v-field--variant-solo-filled.v-field--focused .v-field__overlay{opacity:calc((.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}.v-field--variant-solo-inverted .v-field__overlay{transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-solo-inverted.v-field--has-background .v-field__overlay{opacity:0}@media (hover: hover){.v-field--variant-solo-inverted:hover .v-field__overlay{opacity:calc((.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}}.v-field--variant-solo-inverted.v-field--focused .v-field__overlay{background-color:rgb(var(--v-theme-surface-variant));opacity:1}.v-field--reverse .v-field__field,.v-field--reverse .v-field__input{flex-direction:row-reverse}.v-locale--is-ltr.v-field--reverse .v-field__input,.v-locale--is-ltr.v-field--reverse input,.v-locale--is-ltr .v-field--reverse .v-field__input,.v-locale--is-ltr .v-field--reverse input{text-align:right}.v-locale--is-rtl.v-field--reverse .v-field__input,.v-locale--is-rtl.v-field--reverse input,.v-locale--is-rtl .v-field--reverse .v-field__input,.v-locale--is-rtl .v-field--reverse input{text-align:left}.v-input--disabled .v-field--variant-filled .v-field__outline:before,.v-input--disabled .v-field--variant-underlined .v-field__outline:before{border-image:repeating-linear-gradient(to right,rgba(var(--v-theme-on-surface),var(--v-disabled-opacity)) 0px,rgba(var(--v-theme-on-surface),var(--v-disabled-opacity)) 2px,transparent 2px,transparent 4px) 1 repeat}.v-field--loading .v-field__outline:after,.v-field--loading .v-field__outline:before{opacity:0}.v-virtual-scroll{display:block;flex:1 1 auto;max-width:100%;overflow:auto;position:relative}.v-virtual-scroll__container{display:block}.v-badge{display:inline-block;line-height:1}.v-badge__badge{align-items:center;display:inline-flex;border-radius:10px;font-size:.75rem;font-weight:500;height:1.25rem;justify-content:center;min-width:20px;padding:4px 6px;pointer-events:auto;position:absolute;text-align:center;text-indent:0;transition:.225s cubic-bezier(.4,0,.2,1);white-space:nowrap;background:rgb(var(--v-theme-surface-variant));color:rgba(var(--v-theme-on-surface-variant),var(--v-high-emphasis-opacity))}.v-badge--bordered .v-badge__badge:after{border-radius:inherit;border-style:solid;border-width:2px;bottom:0;color:rgb(var(--v-theme-background));content:"";left:0;position:absolute;right:0;top:0;transform:scale(1.05)}.v-badge--dot .v-badge__badge{border-radius:4.5px;height:9px;min-width:0;padding:0;width:9px}.v-badge--dot .v-badge__badge:after{border-width:1.5px}.v-badge--inline .v-badge__badge{position:relative;vertical-align:middle}.v-badge__badge .v-icon{color:inherit;font-size:.75rem;margin:0 -2px}.v-badge__badge img,.v-badge__badge .v-img{height:100%;width:100%}.v-badge__wrapper{display:flex;position:relative}.v-badge--inline .v-badge__wrapper{align-items:center;display:inline-flex;justify-content:center;margin:0 4px}.v-banner{display:grid;flex:1 1;font-size:.875rem;grid-template-areas:"prepend content actions";grid-template-columns:max-content auto max-content;grid-template-rows:max-content max-content;line-height:1.375rem;overflow:hidden;padding-inline-start:16px;padding-inline-end:8px;padding-top:16px;padding-bottom:16px;position:relative;width:100%;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0 0 thin 0;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:0;background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-banner--border{border-width:thin;box-shadow:none}.v-banner--absolute{position:absolute}.v-banner--fixed{position:fixed}.v-banner--sticky{position:sticky}.v-banner--rounded{border-radius:4px}.v-banner--stacked:not(.v-banner--one-line){grid-template-areas:"prepend content" ". actions"}.v-banner--stacked .v-banner-text{padding-inline-end:36px}.v-banner--density-default .v-banner-actions{margin-bottom:-8px}.v-banner--density-default.v-banner--one-line{padding-top:8px;padding-bottom:8px}.v-banner--density-default.v-banner--one-line .v-banner-actions{margin-bottom:0}.v-banner--density-default.v-banner--one-line{padding-top:10px}.v-banner--density-default.v-banner--two-line{padding-top:16px;padding-bottom:16px}.v-banner--density-default.v-banner--three-line{padding-top:24px;padding-bottom:16px}.v-banner--density-default:not(.v-banner--one-line) .v-banner-actions,.v-banner--density-default.v-banner--two-line .v-banner-actions,.v-banner--density-default.v-banner--three-line .v-banner-actions{margin-top:20px}.v-banner--density-comfortable .v-banner-actions{margin-bottom:-4px}.v-banner--density-comfortable.v-banner--one-line{padding-top:4px;padding-bottom:4px}.v-banner--density-comfortable.v-banner--one-line .v-banner-actions{margin-bottom:0}.v-banner--density-comfortable.v-banner--two-line{padding-top:12px;padding-bottom:12px}.v-banner--density-comfortable.v-banner--three-line{padding-top:20px;padding-bottom:12px}.v-banner--density-comfortable:not(.v-banner--one-line) .v-banner-actions,.v-banner--density-comfortable.v-banner--two-line .v-banner-actions,.v-banner--density-comfortable.v-banner--three-line .v-banner-actions{margin-top:16px}.v-banner--density-compact .v-banner-actions{margin-bottom:0}.v-banner--density-compact.v-banner--one-line{padding-top:0;padding-bottom:0}.v-banner--density-compact.v-banner--one-line .v-banner-actions{margin-bottom:0}.v-banner--density-compact.v-banner--two-line{padding-top:8px;padding-bottom:8px}.v-banner--density-compact.v-banner--three-line{padding-top:16px;padding-bottom:8px}.v-banner--density-compact:not(.v-banner--one-line) .v-banner-actions,.v-banner--density-compact.v-banner--two-line .v-banner-actions,.v-banner--density-compact.v-banner--three-line .v-banner-actions{margin-top:12px}.v-banner--sticky{top:0}.v-banner__content{align-items:center;display:flex;grid-area:content}.v-banner__prepend{align-self:flex-start;grid-area:prepend;margin-inline-end:24px}.v-banner-actions{align-self:flex-end;display:flex;flex:0 1;grid-area:actions;justify-content:flex-end}.v-banner--two-line .v-banner-actions,.v-banner--three-line .v-banner-actions{margin-top:20px}.v-banner-text{-webkit-box-orient:vertical;display:-webkit-box;padding-inline-end:90px;overflow:hidden}.v-banner--one-line .v-banner-text{-webkit-line-clamp:1}.v-banner--two-line .v-banner-text{-webkit-line-clamp:2}.v-banner--three-line .v-banner-text{-webkit-line-clamp:3}.v-banner--two-line .v-banner-text,.v-banner--three-line .v-banner-text{align-self:flex-start}.v-bottom-navigation{display:flex;max-width:100%;overflow:hidden;position:absolute;transition:transform,color .2s,.2s cubic-bezier(.4,0,.2,1);border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;border-radius:0;background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-bottom-navigation--border{border-width:thin;box-shadow:none}.v-bottom-navigation--active{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-bottom-navigation__content{display:flex;flex:none;font-size:.75rem;justify-content:center;transition:inherit;width:100%}.v-bottom-navigation .v-bottom-navigation__content>.v-btn{font-size:inherit;height:100%;max-width:168px;min-width:80px;text-transform:none;transition:inherit;width:auto;border-radius:0}.v-bottom-navigation .v-bottom-navigation__content>.v-btn .v-btn__content,.v-bottom-navigation .v-bottom-navigation__content>.v-btn .v-btn__icon{transition:inherit}.v-bottom-navigation .v-bottom-navigation__content>.v-btn .v-btn__icon{font-size:1.5rem}.v-bottom-navigation--grow .v-bottom-navigation__content>.v-btn{flex-grow:1}.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content>span{transition:inherit;opacity:0}.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content{transform:translateY(.5rem)}.v-breadcrumbs{display:flex;align-items:center;line-height:1.375rem;padding:16px 12px}.v-breadcrumbs--rounded{border-radius:4px}.v-breadcrumbs--density-default{padding-top:16px;padding-bottom:16px}.v-breadcrumbs--density-comfortable{padding-top:12px;padding-bottom:12px}.v-breadcrumbs--density-compact{padding-top:8px;padding-bottom:8px}.v-breadcrumbs__prepend{align-items:center;display:inline-flex}.v-breadcrumbs-item{align-items:center;color:inherit;display:inline-flex;padding:0 4px;text-decoration:none;vertical-align:middle}.v-breadcrumbs-item--disabled{opacity:var(--v-disabled-opacity);pointer-events:none}.v-breadcrumbs-item--link{color:inherit;text-decoration:none}.v-breadcrumbs-item--link:hover{text-decoration:underline}.v-breadcrumbs-item .v-icon{font-size:1rem;margin-inline-start:-4px;margin-inline-end:2px}.v-breadcrumbs-divider{display:inline-block;padding:0 8px;vertical-align:middle}.v-card{display:block;overflow:hidden;overflow-wrap:break-word;position:relative;padding:0;text-decoration:none;transition-duration:.28s;transition-property:box-shadow,opacity,background;transition-timing-function:cubic-bezier(.4,0,.2,1);z-index:0;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;border-radius:4px}.v-card--border{border-width:thin;box-shadow:none}.v-card--absolute{position:absolute}.v-card--fixed{position:fixed}.v-card:hover>.v-card__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-card:focus-visible>.v-card__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-card:focus>.v-card__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-card--active>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]>.v-card__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-card--active:hover>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]:hover>.v-card__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-card--active:focus-visible>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-card__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-card--active:focus>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]:focus>.v-card__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-card--variant-plain,.v-card--variant-outlined,.v-card--variant-text,.v-card--variant-tonal{background:transparent;color:inherit}.v-card--variant-plain{opacity:.62}.v-card--variant-plain:focus,.v-card--variant-plain:hover{opacity:1}.v-card--variant-plain .v-card__overlay{display:none}.v-card--variant-elevated,.v-card--variant-flat{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-card--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-card--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-card--variant-outlined{border:thin solid currentColor}.v-card--variant-text .v-card__overlay{background:currentColor}.v-card--variant-tonal .v-card__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-card--disabled{pointer-events:none;-webkit-user-select:none;user-select:none}.v-card--disabled>:not(.v-card__loader){opacity:.6}.v-card--flat{box-shadow:none}.v-card--hover{cursor:pointer;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-card--hover:before,.v-card--hover:after{border-radius:inherit;bottom:0;content:"";display:block;left:0;pointer-events:none;position:absolute;right:0;top:0;transition:inherit}.v-card--hover:before{opacity:1;z-index:-1;box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-card--hover:after{z-index:1;opacity:0;box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-card--hover:hover:after{opacity:1}.v-card--hover:hover:before{opacity:0}.v-card--link{cursor:pointer}.v-card-actions{align-items:center;display:flex;flex:none;min-height:52px;padding:.5rem}.v-card-item{align-items:center;display:grid;flex:none;grid-template-areas:"prepend content append";grid-template-columns:max-content auto max-content;padding:.625rem 1rem}.v-card-item+.v-card-text{padding-top:0}.v-card-item__prepend{grid-area:prepend;padding-inline-end:1rem}.v-card-item__append{grid-area:append;padding-inline-start:1rem}.v-card-item__content{align-self:center;grid-area:content;overflow:hidden}.v-card-title{display:block;flex:none;font-size:1.25rem;font-weight:500;-webkit-hyphens:auto;hyphens:auto;letter-spacing:.0125em;min-width:0;overflow-wrap:normal;overflow:hidden;padding:.5rem 1rem;text-overflow:ellipsis;text-transform:none;white-space:nowrap;word-break:normal;word-wrap:break-word}.v-card .v-card-title{line-height:2rem}.v-card--density-comfortable .v-card-title{line-height:1.75rem}.v-card--density-compact .v-card-title{line-height:1.55rem}.v-card-item .v-card-title{padding:0}.v-card-title+.v-card-text,.v-card-title+.v-card-actions{padding-top:0}.v-card-subtitle{display:block;flex:none;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;opacity:var(--v-medium-emphasis-opacity);overflow:hidden;padding:0 1rem;text-overflow:ellipsis;text-transform:none;white-space:nowrap}.v-card .v-card-subtitle{line-height:1.25rem}.v-card--density-comfortable .v-card-subtitle{line-height:1.125rem}.v-card--density-compact .v-card-subtitle{line-height:1rem}.v-card-item .v-card-subtitle{padding:0 0 .25rem}.v-card-text{flex:1 1 auto;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;padding:1rem;text-transform:none}.v-card .v-card-text{line-height:1.25rem}.v-card--density-comfortable .v-card-text{line-height:1.2rem}.v-card--density-compact .v-card-text{line-height:1.15rem}.v-card__image{display:flex;height:100%;flex:1 1 auto;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.v-card__content{border-radius:inherit;overflow:hidden;position:relative}.v-card__loader{bottom:auto;top:0;left:0;position:absolute;right:0;width:100%;z-index:1}.v-card__overlay{background-color:currentColor;border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;opacity:0;transition:opacity .2s ease-in-out}.v-carousel{overflow:hidden;position:relative;width:100%}.v-carousel__controls{align-items:center;background:rgba(var(--v-theme-surface-variant),.3);bottom:0;display:flex;height:50px;justify-content:center;list-style-type:none;position:absolute;width:100%;z-index:1}.v-carousel__controls>.v-item-group{flex:0 1 auto}.v-carousel__controls__item{margin:0 8px}.v-carousel__controls__item .v-icon{opacity:.5}.v-carousel__controls__item--active .v-icon{opacity:1;vertical-align:middle}.v-carousel__controls__item:hover{background:none}.v-carousel__controls__item:hover .v-icon{opacity:.8}.v-carousel__progress{margin:0;position:absolute;bottom:0;left:0;right:0}.v-carousel-item{display:block;height:inherit;text-decoration:none}.v-carousel-item>.v-img{height:inherit}.v-carousel--hide-delimiter-background .v-carousel__controls{background:transparent}.v-carousel--vertical-delimiters .v-carousel__controls{flex-direction:column;height:100%!important;width:50px}.v-window{overflow:hidden}.v-window__container{display:flex;flex-direction:column;height:inherit;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-window__controls{position:absolute;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:space-between;padding:0 16px;pointer-events:none}.v-window__controls *{pointer-events:auto}.v-window--show-arrows-on-hover{overflow:hidden}.v-window--show-arrows-on-hover .v-window__left{transform:translate(-200%)}.v-window--show-arrows-on-hover .v-window__right{transform:translate(200%)}.v-window--show-arrows-on-hover:hover .v-window__left,.v-window--show-arrows-on-hover:hover .v-window__right{transform:translate(0)}.v-window-x-transition-enter-active,.v-window-x-transition-leave-active,.v-window-x-reverse-transition-enter-active,.v-window-x-reverse-transition-leave-active,.v-window-y-transition-enter-active,.v-window-y-transition-leave-active,.v-window-y-reverse-transition-enter-active,.v-window-y-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-window-x-transition-leave-from,.v-window-x-transition-leave-to,.v-window-x-reverse-transition-leave-from,.v-window-x-reverse-transition-leave-to,.v-window-y-transition-leave-from,.v-window-y-transition-leave-to,.v-window-y-reverse-transition-leave-from,.v-window-y-reverse-transition-leave-to{position:absolute!important;top:0;width:100%}.v-window-x-transition-enter-from{transform:translate(100%)}.v-window-x-transition-leave-to,.v-window-x-reverse-transition-enter-from{transform:translate(-100%)}.v-window-x-reverse-transition-leave-to{transform:translate(100%)}.v-window-y-transition-enter-from{transform:translateY(100%)}.v-window-y-transition-leave-to,.v-window-y-reverse-transition-enter-from{transform:translateY(-100%)}.v-window-y-reverse-transition-leave-to{transform:translateY(100%)}.v-code{background-color:rgb(var(--v-theme-code));color:rgb(var(--v-theme-on-code));border-radius:4px;line-height:1.8;font-size:.9em;font-weight:400;padding:.2em .4em}.v-color-picker{align-self:flex-start;contain:content}.v-color-picker.v-sheet{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:4px}.v-color-picker__controls{display:flex;flex-direction:column;padding:16px}.v-color-picker--flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-color-picker-canvas{display:flex;position:relative;overflow:hidden;contain:content}.v-color-picker-canvas__dot{position:absolute;top:0;left:0;width:15px;height:15px;background:transparent;border-radius:50%;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1.5px #0000004d}.v-color-picker-canvas__dot--disabled{box-shadow:0 0 0 1.5px #ffffffb3,inset 0 0 1px 1.5px #0000004d}.v-color-picker-canvas:hover .v-color-picker-canvas__dot{will-change:transform}.v-color-picker-edit{display:flex;margin-top:24px}.v-color-picker-edit__input{width:100%;display:flex;flex-wrap:wrap;justify-content:center;text-align:center}.v-locale--is-ltr.v-color-picker-edit__input:not(:last-child),.v-locale--is-ltr .v-color-picker-edit__input:not(:last-child){margin-right:8px}.v-locale--is-rtl.v-color-picker-edit__input:not(:last-child),.v-locale--is-rtl .v-color-picker-edit__input:not(:last-child){margin-left:8px}.v-color-picker-edit__input input{border-radius:4px;margin-bottom:8px;min-width:0;outline:none;text-align:center;width:100%;height:32px;background:rgba(var(--v-theme-surface-variant),.2);color:rgba(var(--v-theme-on-surface))}.v-color-picker-edit__input span{font-size:.75rem}.v-color-picker-preview__alpha .v-slider-track__background{background-color:transparent!important}.v-locale--is-ltr.v-color-picker-preview__alpha .v-slider-track__background,.v-locale--is-ltr .v-color-picker-preview__alpha .v-slider-track__background{background-image:linear-gradient(to right,transparent,var(--v-color-picker-color-hsv))}.v-locale--is-rtl.v-color-picker-preview__alpha .v-slider-track__background,.v-locale--is-rtl .v-color-picker-preview__alpha .v-slider-track__background{background-image:linear-gradient(to left,transparent,var(--v-color-picker-color-hsv))}.v-color-picker-preview__alpha .v-slider-track__background:after{content:"";z-index:-1;left:0;top:0;width:100%;height:100%;position:absolute;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;border-radius:inherit}.v-color-picker-preview__sliders{display:flex;flex:1 0 auto;flex-direction:column}.v-color-picker-preview__dot{position:relative;height:30px;width:30px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;border-radius:50%;overflow:hidden}.v-locale--is-ltr.v-color-picker-preview__dot,.v-locale--is-ltr .v-color-picker-preview__dot{margin-right:24px}.v-locale--is-rtl.v-color-picker-preview__dot,.v-locale--is-rtl .v-color-picker-preview__dot{margin-left:24px}.v-color-picker-preview__dot>div{width:100%;height:100%}.v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background,.v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background{background:linear-gradient(to right,#F00 0%,#FF0 16.66%,#0F0 33.33%,#0FF 50%,#00F 66.66%,#F0F 83.33%,#F00 100%)}.v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background,.v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background{background:linear-gradient(to left,#F00 0%,#FF0 16.66%,#0F0 33.33%,#0FF 50%,#00F 66.66%,#F0F 83.33%,#F00 100%)}.v-color-picker-preview__track{position:relative;width:100%;margin:0!important}.v-color-picker-preview__track .v-slider-track__fill{display:none}.v-color-picker-preview{align-items:center;display:flex;margin-bottom:0}.v-slider .v-slider__container input{cursor:default;padding:0;width:100%;display:none}.v-slider>.v-input__append,.v-slider>.v-input__prepend{padding:0}.v-slider__container{position:relative;min-height:inherit;width:100%;height:100%;display:flex;justify-content:center;align-items:center;cursor:pointer}.v-input--disabled .v-slider__container{opacity:var(--v-disabled-opacity)}.v-input--error:not(.v-input--disabled) .v-slider__container{color:rgb(var(--v-theme-error))}.v-slider.v-input--horizontal{align-items:center;margin-inline-start:8px;margin-inline-end:8px}.v-slider.v-input--horizontal>.v-input__control{min-height:32px;display:flex;align-items:center}.v-slider.v-input--vertical{justify-content:center;margin-top:12px;margin-bottom:12px}.v-slider.v-input--vertical>.v-input__control{min-height:300px}.v-slider.v-input--disabled{pointer-events:none}.v-slider--has-labels>.v-input__control{margin-bottom:4px}.v-slider__label{margin-inline-end:12px}.v-slider-thumb{touch-action:none;color:rgb(var(--v-theme-surface-variant))}.v-input--error:not(.v-input--disabled) .v-slider-thumb{color:inherit}.v-slider-thumb__label{background:rgba(var(--v-theme-surface-variant),.7);color:rgb(var(--v-theme-on-surface-variant))}.v-slider-thumb__label:before{color:rgba(var(--v-theme-surface-variant),.7)}.v-slider-thumb{outline:none;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider-thumb__surface{cursor:pointer;width:var(--v-slider-thumb-size);height:var(--v-slider-thumb-size);border-radius:50%;-webkit-user-select:none;user-select:none;background-color:currentColor}.v-slider-thumb__surface:before{transition:.3s cubic-bezier(.4,0,.2,1);content:"";color:inherit;top:0;left:0;width:100%;height:100%;border-radius:50%;background:currentColor;position:absolute;pointer-events:none;opacity:0}.v-slider-thumb__surface:after{content:"";width:42px;height:42px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.v-slider-thumb__label-container{position:absolute;transition:.2s cubic-bezier(.4,0,1,1)}.v-slider-thumb__label{display:flex;align-items:center;justify-content:center;font-size:.75rem;min-width:35px;height:25px;border-radius:4px;padding:6px;position:absolute;-webkit-user-select:none;user-select:none;transition:.2s cubic-bezier(.4,0,1,1)}.v-slider-thumb__label:before{content:"";width:0;height:0;position:absolute}.v-slider-thumb__ripple{position:absolute;left:calc(var(--v-slider-thumb-size) / -2);top:calc(var(--v-slider-thumb-size) / -2);width:calc(var(--v-slider-thumb-size) * 2);height:calc(var(--v-slider-thumb-size) * 2);background:inherit}.v-slider.v-input--horizontal .v-slider-thumb{top:50%;transform:translateY(-50%)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb{left:calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb{right:calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2)}.v-slider.v-input--horizontal .v-slider-thumb__label-container{left:calc(var(--v-slider-thumb-size) / 2);top:0}.v-slider.v-input--horizontal .v-slider-thumb__label{bottom:calc(var(--v-slider-thumb-size) / 2)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label{transform:translate(-50%)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label{transform:translate(50%)}.v-slider.v-input--horizontal .v-slider-thumb__label:before{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid currentColor;bottom:-6px}.v-slider.v-input--vertical .v-slider-thumb{top:calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2)}.v-slider.v-input--vertical .v-slider-thumb__label-container{top:calc(var(--v-slider-thumb-size) / 2);right:0}.v-slider.v-input--vertical .v-slider-thumb__label{top:-12.5px;left:calc(var(--v-slider-thumb-size) / 2)}.v-slider.v-input--vertical .v-slider-thumb__label:before{border-right:6px solid currentColor;border-top:6px solid transparent;border-bottom:6px solid transparent;left:-6px}.v-slider-thumb--focused .v-slider-thumb__surface:before{transform:scale(2);opacity:var(--v-focus-opacity)}.v-slider-thumb--pressed{transition:none}.v-slider-thumb--pressed .v-slider-thumb__surface:before{opacity:var(--v-pressed-opacity)}@media (hover: hover){.v-slider-thumb:hover .v-slider-thumb__surface:before{transform:scale(2)}.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface:before{opacity:var(--v-hover-opacity)}}.v-slider-track__background,.v-slider-track__fill,.v-slider-track__tick{background-color:rgb(var(--v-theme-surface-variant))}.v-slider-track__tick--filled{background-color:rgb(var(--v-theme-on-surface-variant))}.v-slider-track{border-radius:6px}.v-slider-track__background,.v-slider-track__fill{position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1);border-radius:inherit}.v-slider--pressed .v-slider-track__background,.v-slider--pressed .v-slider-track__fill{transition:none}.v-input--error:not(.v-input--disabled) .v-slider-track__background,.v-input--error:not(.v-input--disabled) .v-slider-track__fill{background-color:currentColor}.v-slider-track__ticks{height:100%;width:100%;position:relative}.v-slider-track__tick{position:absolute;opacity:0;transition:.2s opacity cubic-bezier(.4,0,.2,1);border-radius:2px;width:var(--v-slider-tick-size);height:var(--v-slider-tick-size);transform:translate(calc(var(--v-slider-tick-size) / -2),calc(var(--v-slider-tick-size) / -2))}.v-locale--is-ltr.v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-ltr .v-slider-track__tick--first .v-slider-track__tick-label{transform:none}.v-locale--is-rtl.v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-rtl .v-slider-track__tick--first .v-slider-track__tick-label{transform:translate(100%)}.v-locale--is-ltr.v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-ltr .v-slider-track__tick--last .v-slider-track__tick-label{transform:translate(-100%)}.v-locale--is-rtl.v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-rtl .v-slider-track__tick--last .v-slider-track__tick-label{transform:none}.v-slider-track__tick-label{position:absolute;-webkit-user-select:none;user-select:none;white-space:nowrap}.v-slider.v-input--horizontal .v-slider-track{display:flex;align-items:center;width:100%;height:calc(var(--v-slider-track-size) + 2px);touch-action:pan-y}.v-slider.v-input--horizontal .v-slider-track__background{height:var(--v-slider-track-size)}.v-slider.v-input--horizontal .v-slider-track__fill{height:inherit}.v-slider.v-input--horizontal .v-slider-track__tick{margin-top:calc(calc(var(--v-slider-track-size) + 2px) / 2)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick{transform:translate(calc(var(--v-slider-tick-size) / 2),calc(var(--v-slider-tick-size) / -2))}.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label{margin-top:calc(var(--v-slider-track-size) / 2 + 8px)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label{transform:translate(-50%)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label{transform:translate(50%)}.v-slider.v-input--horizontal .v-slider-track__tick--first{margin-inline-start:calc(var(--v-slider-tick-size) + 1px)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label{transform:translate(0)}.v-slider.v-input--horizontal .v-slider-track__tick--last{margin-inline-start:calc(100% - var(--v-slider-tick-size) - 1px)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label{transform:translate(-100%)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label{transform:translate(100%)}.v-slider.v-input--vertical .v-slider-track{height:100%;display:flex;justify-content:center;width:calc(var(--v-slider-track-size) + 2px);touch-action:pan-x}.v-slider.v-input--vertical .v-slider-track__background{width:var(--v-slider-track-size)}.v-slider.v-input--vertical .v-slider-track__fill{width:inherit}.v-slider.v-input--vertical .v-slider-track__ticks{height:100%}.v-slider.v-input--vertical .v-slider-track__tick{margin-inline-start:calc(calc(var(--v-slider-track-size) + 2px) / 2);transform:translate(calc(var(--v-slider-tick-size) / -2),calc(var(--v-slider-tick-size) / 2))}.v-locale--is-rtl.v-slider.v-input--vertical .v-slider-track__tick,.v-locale--is-rtl .v-slider.v-input--vertical .v-slider-track__tick{transform:translate(calc(var(--v-slider-tick-size) / 2),calc(var(--v-slider-tick-size) / 2))}.v-slider.v-input--vertical .v-slider-track__tick--first{bottom:calc(0% + var(--v-slider-tick-size) + 1px)}.v-slider.v-input--vertical .v-slider-track__tick--last{bottom:calc(100% - var(--v-slider-tick-size) - 1px)}.v-slider.v-input--vertical .v-slider-track__tick .v-slider-track__tick-label{margin-inline-start:calc(var(--v-slider-track-size) / 2 + 12px);transform:translateY(-50%)}.v-slider-track__ticks--always-show .v-slider-track__tick,.v-slider--focused .v-slider-track__tick{opacity:1}.v-slider-track__background--opacity{opacity:.38}.v-color-picker-swatches{overflow-y:auto}.v-color-picker-swatches>div{display:flex;flex-wrap:wrap;justify-content:center;padding:8px}.v-color-picker-swatches__swatch{display:flex;flex-direction:column;margin-bottom:10px}.v-color-picker-swatches__color{position:relative;height:18px;max-height:18px;width:45px;margin:2px 4px;border-radius:2px;-webkit-user-select:none;user-select:none;overflow:hidden;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;cursor:pointer}.v-color-picker-swatches__color>div{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.v-sheet{display:block;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:0;background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-background),var(--v-high-emphasis-opacity))}.v-sheet--border{border-width:thin;box-shadow:none}.v-sheet--absolute{position:absolute}.v-sheet--fixed{position:fixed}.v-sheet--relative{position:relative}.v-sheet--sticky{position:sticky}.v-sheet--rounded{border-radius:4px}.v-combobox .v-field .v-text-field__prefix,.v-combobox .v-field .v-text-field__suffix,.v-combobox .v-field .v-field__input,.v-combobox .v-field.v-field{cursor:text}.v-combobox .v-field .v-field__input>input{align-self:flex-start;flex:1 1}.v-combobox .v-field input{min-width:64px}.v-combobox .v-field:not(.v-field--focused) input{min-width:0}.v-combobox .v-field--dirty .v-combobox__selection{margin-inline-end:2px}.v-combobox .v-combobox__selection-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-combobox__content{overflow:hidden;box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:4px}.v-combobox__mask{background:rgb(var(--v-theme-on-surface-variant))}.v-combobox__selection{display:inline-flex;align-items:center;letter-spacing:inherit;line-height:inherit;max-width:90%}.v-combobox__selection{margin-top:var(--v-input-chips-margin-top);margin-bottom:var(--v-input-chips-margin-bottom)}.v-combobox__selection:first-child{margin-inline-start:0}.v-combobox--selecting-index .v-combobox__selection{opacity:var(--v-medium-emphasis-opacity)}.v-combobox--selecting-index .v-combobox__selection--selected{opacity:1}.v-combobox--selecting-index .v-field__input>input{caret-color:transparent}.v-combobox--single.v-text-field input{flex:1 1;position:absolute;left:0;right:0;width:100%;padding-inline-start:inherit;padding-inline-end:inherit}.v-combobox--single .v-field--variant-outlined input{top:50%;transform:translateY(calc(-50% - (var(--v-input-chips-margin-top) + var(--v-input-chips-margin-bottom)) / 2))}.v-combobox--single .v-field--active input{transition:none}.v-combobox--single .v-field--dirty:not(.v-field--focused) input{opacity:0}.v-combobox--single .v-field--focused .v-combobox__selection{opacity:0}.v-combobox__menu-icon{margin-inline-start:4px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-combobox--active-menu .v-combobox__menu-icon{opacity:var(--v-high-emphasis-opacity);transform:rotate(180deg)}.v-dialog{align-items:center;justify-content:center;margin:auto}.v-dialog>.v-overlay__content{max-height:calc(100% - 48px);width:calc(100% - 48px);max-width:calc(100% - 48px);margin:24px;display:flex;flex-direction:column}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>.v-sheet,.v-dialog>.v-overlay__content>form>.v-card,.v-dialog>.v-overlay__content>form>.v-sheet{--v-scrollbar-offset: 0px;border-radius:4px;overflow-y:auto;box-shadow:0 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 9px 46px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>form>.v-card{display:flex;flex-direction:column}.v-dialog>.v-overlay__content>.v-card>.v-card-item,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item{padding:14px 24px 0}.v-dialog>.v-overlay__content>.v-card>.v-card-item+.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item+.v-card-text{padding-top:10px}.v-dialog>.v-overlay__content>.v-card>.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-text{font-size:inherit;letter-spacing:.03125em;line-height:inherit;padding:16px 24px 10px}.v-dialog--fullscreen{--v-scrollbar-offset: 0px}.v-dialog--fullscreen>.v-overlay__content{border-radius:0;margin:0;padding:0;width:100%;height:100%;max-width:100%;max-height:100%;overflow-y:auto;top:0;left:0}.v-dialog--fullscreen>.v-overlay__content>.v-card,.v-dialog--fullscreen>.v-overlay__content>.v-sheet,.v-dialog--fullscreen>.v-overlay__content>form>.v-card,.v-dialog--fullscreen>.v-overlay__content>form>.v-sheet{min-height:100%;min-width:100%;border-radius:0}.v-dialog--scrollable>.v-overlay__content,.v-dialog--scrollable>.v-overlay__content>form{display:flex;overflow:hidden}.v-dialog--scrollable>.v-overlay__content>.v-card,.v-dialog--scrollable>.v-overlay__content>form>.v-card{display:flex;flex:1 1 100%;flex-direction:column;max-height:100%;max-width:100%}.v-dialog--scrollable>.v-overlay__content>.v-card>.v-card-text,.v-dialog--scrollable>.v-overlay__content>form>.v-card>.v-card-text{backface-visibility:hidden;overflow-y:auto}.v-expansion-panel{background-color:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-expansion-panel:not(:first-child):after{border-color:rgba(var(--v-border-color),var(--v-border-opacity))}.v-expansion-panel--disabled .v-expansion-panel-title{color:rgba(var(--v-theme-on-surface),.26)}.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay{opacity:.4615384615}.v-expansion-panels{display:flex;flex-wrap:wrap;justify-content:center;list-style-type:none;padding:0;width:100%;position:relative;z-index:1}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active){border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active){border-top-left-radius:0!important;border-top-right-radius:0!important}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active){border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active){border-top-left-radius:0!important;border-top-right-radius:0!important}.v-expansion-panels--variant-accordion>:first-child{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-expansion-panels--variant-accordion>:last-child{border-top-left-radius:0!important;border-top-right-radius:0!important}.v-expansion-panels--variant-accordion>:last-child .v-expansion-panel-title--active{border-bottom-left-radius:initial;border-bottom-right-radius:initial}.v-expansion-panels--variant-accordion>:not(:first-child):not(:last-child){border-radius:0!important}.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay{transition:.3s border-radius cubic-bezier(.4,0,.2,1)}.v-expansion-panel{flex:1 0 100%;max-width:100%;position:relative;transition:.3s all cubic-bezier(.4,0,.2,1);transition-property:margin-top,border-radius,border,max-width;border-radius:4px}.v-expansion-panel:not(:first-child):after{border-top-style:solid;border-top-width:thin;content:"";left:0;position:absolute;right:0;top:0;transition:.3s opacity cubic-bezier(.4,0,.2,1)}.v-expansion-panel--disabled .v-expansion-panel-title{pointer-events:none}.v-expansion-panel--active:not(:first-child),.v-expansion-panel--active+.v-expansion-panel{margin-top:16px}.v-expansion-panel--active:not(:first-child):after,.v-expansion-panel--active+.v-expansion-panel:after{opacity:0}.v-expansion-panel--active>.v-expansion-panel-title{border-bottom-left-radius:0;border-bottom-right-radius:0;min-height:64px}.v-expansion-panel__shadow{position:absolute;top:0;left:0;width:100%;height:100%;box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:inherit;z-index:-1}.v-expansion-panel-title{align-items:center;text-align:start;border-radius:inherit;display:flex;font-size:.9375rem;line-height:1;min-height:48px;outline:none;padding:16px 24px;position:relative;transition:.3s min-height cubic-bezier(.4,0,.2,1);width:100%;justify-content:space-between}.v-expansion-panel-title:hover>.v-expansion-panel-title__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-expansion-panel-title:focus-visible>.v-expansion-panel-title__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-expansion-panel-title:focus>.v-expansion-panel-title__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-expansion-panel-title--active>.v-expansion-panel-title__overlay,.v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]>.v-expansion-panel-title__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-expansion-panel-title--active:hover>.v-expansion-panel-title__overlay,.v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:hover>.v-expansion-panel-title__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-expansion-panel-title--active:focus-visible>.v-expansion-panel-title__overlay,.v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-expansion-panel-title__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-expansion-panel-title--active:focus>.v-expansion-panel-title__overlay,.v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus>.v-expansion-panel-title__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-expansion-panel-title--active:before{opacity:.12}.v-expansion-panel-title__overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:currentColor;border-radius:inherit;opacity:0}.v-expansion-panel-title__icon{display:inline-flex;margin-bottom:-4px;margin-top:-4px;-webkit-user-select:none;user-select:none;margin-inline-start:auto}.v-expansion-panel-text{display:flex}.v-expansion-panel-text__wrapper{padding:8px 24px 16px;flex:1 1 auto;max-width:100%}.v-expansion-panels--variant-accordion>.v-expansion-panel{margin-top:0}.v-expansion-panels--variant-accordion>.v-expansion-panel:after{opacity:1}.v-expansion-panels--variant-popout>.v-expansion-panel{max-width:calc(100% - 32px)}.v-expansion-panels--variant-popout>.v-expansion-panel--active{max-width:calc(100% + 16px)}.v-expansion-panels--variant-inset>.v-expansion-panel{max-width:100%}.v-expansion-panels--variant-inset>.v-expansion-panel--active{max-width:calc(100% - 32px)}.v-file-input input[type=file]{height:100%;left:0;opacity:0;position:absolute;top:0;width:100%;z-index:1}.v-file-input .v-input__details{padding-inline-start:16px;padding-inline-end:16px}.v-file-input .v-chip{margin-top:var(--v-input-chips-margin-top);margin-bottom:var(--v-input-chips-margin-bottom)}.v-footer{align-items:center;display:flex;flex:1 1 auto;padding:8px 16px;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);transition-property:height,width,transform,max-width,left,right,top,bottom;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));border-radius:0;background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-footer--border{border-width:thin;box-shadow:none}.v-footer--absolute{position:absolute}.v-footer--fixed{position:fixed}.v-footer--rounded{border-radius:4px}.v-container{width:100%;padding:16px;margin-right:auto;margin-left:auto}@media (min-width: 960px){.v-container{max-width:900px}}@media (min-width: 1280px){.v-container{max-width:1200px}}@media (min-width: 1920px){.v-container{max-width:1800px}}@media (min-width: 2560px){.v-container{max-width:2400px}}.v-container--fluid{max-width:100%}.v-container.fill-height{align-items:center;display:flex;flex-wrap:wrap}.v-row{display:flex;flex-wrap:wrap;flex:1 1 auto;margin:-12px}.v-row+.v-row{margin-top:12px}.v-row+.v-row--dense{margin-top:4px}.v-row--dense{margin:-4px}.v-row--dense>.v-col,.v-row--dense>[class*=v-col-]{padding:4px}.v-row.v-row--no-gutters{margin:0}.v-row.v-row--no-gutters>.v-col,.v-row.v-row--no-gutters>[class*=v-col-]{padding:0}.v-spacer{flex-grow:1}.v-col-xxl,.v-col-xxl-auto,.v-col-xxl-12,.v-col-xxl-11,.v-col-xxl-10,.v-col-xxl-9,.v-col-xxl-8,.v-col-xxl-7,.v-col-xxl-6,.v-col-xxl-5,.v-col-xxl-4,.v-col-xxl-3,.v-col-xxl-2,.v-col-xxl-1,.v-col-xl,.v-col-xl-auto,.v-col-xl-12,.v-col-xl-11,.v-col-xl-10,.v-col-xl-9,.v-col-xl-8,.v-col-xl-7,.v-col-xl-6,.v-col-xl-5,.v-col-xl-4,.v-col-xl-3,.v-col-xl-2,.v-col-xl-1,.v-col-lg,.v-col-lg-auto,.v-col-lg-12,.v-col-lg-11,.v-col-lg-10,.v-col-lg-9,.v-col-lg-8,.v-col-lg-7,.v-col-lg-6,.v-col-lg-5,.v-col-lg-4,.v-col-lg-3,.v-col-lg-2,.v-col-lg-1,.v-col-md,.v-col-md-auto,.v-col-md-12,.v-col-md-11,.v-col-md-10,.v-col-md-9,.v-col-md-8,.v-col-md-7,.v-col-md-6,.v-col-md-5,.v-col-md-4,.v-col-md-3,.v-col-md-2,.v-col-md-1,.v-col-sm,.v-col-sm-auto,.v-col-sm-12,.v-col-sm-11,.v-col-sm-10,.v-col-sm-9,.v-col-sm-8,.v-col-sm-7,.v-col-sm-6,.v-col-sm-5,.v-col-sm-4,.v-col-sm-3,.v-col-sm-2,.v-col-sm-1,.v-col,.v-col-auto,.v-col-12,.v-col-11,.v-col-10,.v-col-9,.v-col-8,.v-col-7,.v-col-6,.v-col-5,.v-col-4,.v-col-3,.v-col-2,.v-col-1{width:100%;padding:12px}.v-col{flex-basis:0;flex-grow:1;max-width:100%}.v-col-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-3{flex:0 0 25%;max-width:25%}.v-col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-6{flex:0 0 50%;max-width:50%}.v-col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-9{flex:0 0 75%;max-width:75%}.v-col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-12{flex:0 0 100%;max-width:100%}.v-locale--is-ltr.offset-1,.v-locale--is-ltr .offset-1{margin-left:8.3333333333%}.v-locale--is-rtl.offset-1,.v-locale--is-rtl .offset-1{margin-right:8.3333333333%}.v-locale--is-ltr.offset-2,.v-locale--is-ltr .offset-2{margin-left:16.6666666667%}.v-locale--is-rtl.offset-2,.v-locale--is-rtl .offset-2{margin-right:16.6666666667%}.v-locale--is-ltr.offset-3,.v-locale--is-ltr .offset-3{margin-left:25%}.v-locale--is-rtl.offset-3,.v-locale--is-rtl .offset-3{margin-right:25%}.v-locale--is-ltr.offset-4,.v-locale--is-ltr .offset-4{margin-left:33.3333333333%}.v-locale--is-rtl.offset-4,.v-locale--is-rtl .offset-4{margin-right:33.3333333333%}.v-locale--is-ltr.offset-5,.v-locale--is-ltr .offset-5{margin-left:41.6666666667%}.v-locale--is-rtl.offset-5,.v-locale--is-rtl .offset-5{margin-right:41.6666666667%}.v-locale--is-ltr.offset-6,.v-locale--is-ltr .offset-6{margin-left:50%}.v-locale--is-rtl.offset-6,.v-locale--is-rtl .offset-6{margin-right:50%}.v-locale--is-ltr.offset-7,.v-locale--is-ltr .offset-7{margin-left:58.3333333333%}.v-locale--is-rtl.offset-7,.v-locale--is-rtl .offset-7{margin-right:58.3333333333%}.v-locale--is-ltr.offset-8,.v-locale--is-ltr .offset-8{margin-left:66.6666666667%}.v-locale--is-rtl.offset-8,.v-locale--is-rtl .offset-8{margin-right:66.6666666667%}.v-locale--is-ltr.offset-9,.v-locale--is-ltr .offset-9{margin-left:75%}.v-locale--is-rtl.offset-9,.v-locale--is-rtl .offset-9{margin-right:75%}.v-locale--is-ltr.offset-10,.v-locale--is-ltr .offset-10{margin-left:83.3333333333%}.v-locale--is-rtl.offset-10,.v-locale--is-rtl .offset-10{margin-right:83.3333333333%}.v-locale--is-ltr.offset-11,.v-locale--is-ltr .offset-11{margin-left:91.6666666667%}.v-locale--is-rtl.offset-11,.v-locale--is-rtl .offset-11{margin-right:91.6666666667%}@media (min-width: 600px){.v-col-sm{flex-basis:0;flex-grow:1;max-width:100%}.v-col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-sm-3{flex:0 0 25%;max-width:25%}.v-col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-sm-6{flex:0 0 50%;max-width:50%}.v-col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-sm-9{flex:0 0 75%;max-width:75%}.v-col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-sm-12{flex:0 0 100%;max-width:100%}.v-locale--is-ltr.offset-sm-0,.v-locale--is-ltr .offset-sm-0{margin-left:0}.v-locale--is-rtl.offset-sm-0,.v-locale--is-rtl .offset-sm-0{margin-right:0}.v-locale--is-ltr.offset-sm-1,.v-locale--is-ltr .offset-sm-1{margin-left:8.3333333333%}.v-locale--is-rtl.offset-sm-1,.v-locale--is-rtl .offset-sm-1{margin-right:8.3333333333%}.v-locale--is-ltr.offset-sm-2,.v-locale--is-ltr .offset-sm-2{margin-left:16.6666666667%}.v-locale--is-rtl.offset-sm-2,.v-locale--is-rtl .offset-sm-2{margin-right:16.6666666667%}.v-locale--is-ltr.offset-sm-3,.v-locale--is-ltr .offset-sm-3{margin-left:25%}.v-locale--is-rtl.offset-sm-3,.v-locale--is-rtl .offset-sm-3{margin-right:25%}.v-locale--is-ltr.offset-sm-4,.v-locale--is-ltr .offset-sm-4{margin-left:33.3333333333%}.v-locale--is-rtl.offset-sm-4,.v-locale--is-rtl .offset-sm-4{margin-right:33.3333333333%}.v-locale--is-ltr.offset-sm-5,.v-locale--is-ltr .offset-sm-5{margin-left:41.6666666667%}.v-locale--is-rtl.offset-sm-5,.v-locale--is-rtl .offset-sm-5{margin-right:41.6666666667%}.v-locale--is-ltr.offset-sm-6,.v-locale--is-ltr .offset-sm-6{margin-left:50%}.v-locale--is-rtl.offset-sm-6,.v-locale--is-rtl .offset-sm-6{margin-right:50%}.v-locale--is-ltr.offset-sm-7,.v-locale--is-ltr .offset-sm-7{margin-left:58.3333333333%}.v-locale--is-rtl.offset-sm-7,.v-locale--is-rtl .offset-sm-7{margin-right:58.3333333333%}.v-locale--is-ltr.offset-sm-8,.v-locale--is-ltr .offset-sm-8{margin-left:66.6666666667%}.v-locale--is-rtl.offset-sm-8,.v-locale--is-rtl .offset-sm-8{margin-right:66.6666666667%}.v-locale--is-ltr.offset-sm-9,.v-locale--is-ltr .offset-sm-9{margin-left:75%}.v-locale--is-rtl.offset-sm-9,.v-locale--is-rtl .offset-sm-9{margin-right:75%}.v-locale--is-ltr.offset-sm-10,.v-locale--is-ltr .offset-sm-10{margin-left:83.3333333333%}.v-locale--is-rtl.offset-sm-10,.v-locale--is-rtl .offset-sm-10{margin-right:83.3333333333%}.v-locale--is-ltr.offset-sm-11,.v-locale--is-ltr .offset-sm-11{margin-left:91.6666666667%}.v-locale--is-rtl.offset-sm-11,.v-locale--is-rtl .offset-sm-11{margin-right:91.6666666667%}}@media (min-width: 960px){.v-col-md{flex-basis:0;flex-grow:1;max-width:100%}.v-col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-md-3{flex:0 0 25%;max-width:25%}.v-col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-md-6{flex:0 0 50%;max-width:50%}.v-col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-md-9{flex:0 0 75%;max-width:75%}.v-col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-md-12{flex:0 0 100%;max-width:100%}.v-locale--is-ltr.offset-md-0,.v-locale--is-ltr .offset-md-0{margin-left:0}.v-locale--is-rtl.offset-md-0,.v-locale--is-rtl .offset-md-0{margin-right:0}.v-locale--is-ltr.offset-md-1,.v-locale--is-ltr .offset-md-1{margin-left:8.3333333333%}.v-locale--is-rtl.offset-md-1,.v-locale--is-rtl .offset-md-1{margin-right:8.3333333333%}.v-locale--is-ltr.offset-md-2,.v-locale--is-ltr .offset-md-2{margin-left:16.6666666667%}.v-locale--is-rtl.offset-md-2,.v-locale--is-rtl .offset-md-2{margin-right:16.6666666667%}.v-locale--is-ltr.offset-md-3,.v-locale--is-ltr .offset-md-3{margin-left:25%}.v-locale--is-rtl.offset-md-3,.v-locale--is-rtl .offset-md-3{margin-right:25%}.v-locale--is-ltr.offset-md-4,.v-locale--is-ltr .offset-md-4{margin-left:33.3333333333%}.v-locale--is-rtl.offset-md-4,.v-locale--is-rtl .offset-md-4{margin-right:33.3333333333%}.v-locale--is-ltr.offset-md-5,.v-locale--is-ltr .offset-md-5{margin-left:41.6666666667%}.v-locale--is-rtl.offset-md-5,.v-locale--is-rtl .offset-md-5{margin-right:41.6666666667%}.v-locale--is-ltr.offset-md-6,.v-locale--is-ltr .offset-md-6{margin-left:50%}.v-locale--is-rtl.offset-md-6,.v-locale--is-rtl .offset-md-6{margin-right:50%}.v-locale--is-ltr.offset-md-7,.v-locale--is-ltr .offset-md-7{margin-left:58.3333333333%}.v-locale--is-rtl.offset-md-7,.v-locale--is-rtl .offset-md-7{margin-right:58.3333333333%}.v-locale--is-ltr.offset-md-8,.v-locale--is-ltr .offset-md-8{margin-left:66.6666666667%}.v-locale--is-rtl.offset-md-8,.v-locale--is-rtl .offset-md-8{margin-right:66.6666666667%}.v-locale--is-ltr.offset-md-9,.v-locale--is-ltr .offset-md-9{margin-left:75%}.v-locale--is-rtl.offset-md-9,.v-locale--is-rtl .offset-md-9{margin-right:75%}.v-locale--is-ltr.offset-md-10,.v-locale--is-ltr .offset-md-10{margin-left:83.3333333333%}.v-locale--is-rtl.offset-md-10,.v-locale--is-rtl .offset-md-10{margin-right:83.3333333333%}.v-locale--is-ltr.offset-md-11,.v-locale--is-ltr .offset-md-11{margin-left:91.6666666667%}.v-locale--is-rtl.offset-md-11,.v-locale--is-rtl .offset-md-11{margin-right:91.6666666667%}}@media (min-width: 1280px){.v-col-lg{flex-basis:0;flex-grow:1;max-width:100%}.v-col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-lg-3{flex:0 0 25%;max-width:25%}.v-col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-lg-6{flex:0 0 50%;max-width:50%}.v-col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-lg-9{flex:0 0 75%;max-width:75%}.v-col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-lg-12{flex:0 0 100%;max-width:100%}.v-locale--is-ltr.offset-lg-0,.v-locale--is-ltr .offset-lg-0{margin-left:0}.v-locale--is-rtl.offset-lg-0,.v-locale--is-rtl .offset-lg-0{margin-right:0}.v-locale--is-ltr.offset-lg-1,.v-locale--is-ltr .offset-lg-1{margin-left:8.3333333333%}.v-locale--is-rtl.offset-lg-1,.v-locale--is-rtl .offset-lg-1{margin-right:8.3333333333%}.v-locale--is-ltr.offset-lg-2,.v-locale--is-ltr .offset-lg-2{margin-left:16.6666666667%}.v-locale--is-rtl.offset-lg-2,.v-locale--is-rtl .offset-lg-2{margin-right:16.6666666667%}.v-locale--is-ltr.offset-lg-3,.v-locale--is-ltr .offset-lg-3{margin-left:25%}.v-locale--is-rtl.offset-lg-3,.v-locale--is-rtl .offset-lg-3{margin-right:25%}.v-locale--is-ltr.offset-lg-4,.v-locale--is-ltr .offset-lg-4{margin-left:33.3333333333%}.v-locale--is-rtl.offset-lg-4,.v-locale--is-rtl .offset-lg-4{margin-right:33.3333333333%}.v-locale--is-ltr.offset-lg-5,.v-locale--is-ltr .offset-lg-5{margin-left:41.6666666667%}.v-locale--is-rtl.offset-lg-5,.v-locale--is-rtl .offset-lg-5{margin-right:41.6666666667%}.v-locale--is-ltr.offset-lg-6,.v-locale--is-ltr .offset-lg-6{margin-left:50%}.v-locale--is-rtl.offset-lg-6,.v-locale--is-rtl .offset-lg-6{margin-right:50%}.v-locale--is-ltr.offset-lg-7,.v-locale--is-ltr .offset-lg-7{margin-left:58.3333333333%}.v-locale--is-rtl.offset-lg-7,.v-locale--is-rtl .offset-lg-7{margin-right:58.3333333333%}.v-locale--is-ltr.offset-lg-8,.v-locale--is-ltr .offset-lg-8{margin-left:66.6666666667%}.v-locale--is-rtl.offset-lg-8,.v-locale--is-rtl .offset-lg-8{margin-right:66.6666666667%}.v-locale--is-ltr.offset-lg-9,.v-locale--is-ltr .offset-lg-9{margin-left:75%}.v-locale--is-rtl.offset-lg-9,.v-locale--is-rtl .offset-lg-9{margin-right:75%}.v-locale--is-ltr.offset-lg-10,.v-locale--is-ltr .offset-lg-10{margin-left:83.3333333333%}.v-locale--is-rtl.offset-lg-10,.v-locale--is-rtl .offset-lg-10{margin-right:83.3333333333%}.v-locale--is-ltr.offset-lg-11,.v-locale--is-ltr .offset-lg-11{margin-left:91.6666666667%}.v-locale--is-rtl.offset-lg-11,.v-locale--is-rtl .offset-lg-11{margin-right:91.6666666667%}}@media (min-width: 1920px){.v-col-xl{flex-basis:0;flex-grow:1;max-width:100%}.v-col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-xl-3{flex:0 0 25%;max-width:25%}.v-col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-xl-6{flex:0 0 50%;max-width:50%}.v-col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-xl-9{flex:0 0 75%;max-width:75%}.v-col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-xl-12{flex:0 0 100%;max-width:100%}.v-locale--is-ltr.offset-xl-0,.v-locale--is-ltr .offset-xl-0{margin-left:0}.v-locale--is-rtl.offset-xl-0,.v-locale--is-rtl .offset-xl-0{margin-right:0}.v-locale--is-ltr.offset-xl-1,.v-locale--is-ltr .offset-xl-1{margin-left:8.3333333333%}.v-locale--is-rtl.offset-xl-1,.v-locale--is-rtl .offset-xl-1{margin-right:8.3333333333%}.v-locale--is-ltr.offset-xl-2,.v-locale--is-ltr .offset-xl-2{margin-left:16.6666666667%}.v-locale--is-rtl.offset-xl-2,.v-locale--is-rtl .offset-xl-2{margin-right:16.6666666667%}.v-locale--is-ltr.offset-xl-3,.v-locale--is-ltr .offset-xl-3{margin-left:25%}.v-locale--is-rtl.offset-xl-3,.v-locale--is-rtl .offset-xl-3{margin-right:25%}.v-locale--is-ltr.offset-xl-4,.v-locale--is-ltr .offset-xl-4{margin-left:33.3333333333%}.v-locale--is-rtl.offset-xl-4,.v-locale--is-rtl .offset-xl-4{margin-right:33.3333333333%}.v-locale--is-ltr.offset-xl-5,.v-locale--is-ltr .offset-xl-5{margin-left:41.6666666667%}.v-locale--is-rtl.offset-xl-5,.v-locale--is-rtl .offset-xl-5{margin-right:41.6666666667%}.v-locale--is-ltr.offset-xl-6,.v-locale--is-ltr .offset-xl-6{margin-left:50%}.v-locale--is-rtl.offset-xl-6,.v-locale--is-rtl .offset-xl-6{margin-right:50%}.v-locale--is-ltr.offset-xl-7,.v-locale--is-ltr .offset-xl-7{margin-left:58.3333333333%}.v-locale--is-rtl.offset-xl-7,.v-locale--is-rtl .offset-xl-7{margin-right:58.3333333333%}.v-locale--is-ltr.offset-xl-8,.v-locale--is-ltr .offset-xl-8{margin-left:66.6666666667%}.v-locale--is-rtl.offset-xl-8,.v-locale--is-rtl .offset-xl-8{margin-right:66.6666666667%}.v-locale--is-ltr.offset-xl-9,.v-locale--is-ltr .offset-xl-9{margin-left:75%}.v-locale--is-rtl.offset-xl-9,.v-locale--is-rtl .offset-xl-9{margin-right:75%}.v-locale--is-ltr.offset-xl-10,.v-locale--is-ltr .offset-xl-10{margin-left:83.3333333333%}.v-locale--is-rtl.offset-xl-10,.v-locale--is-rtl .offset-xl-10{margin-right:83.3333333333%}.v-locale--is-ltr.offset-xl-11,.v-locale--is-ltr .offset-xl-11{margin-left:91.6666666667%}.v-locale--is-rtl.offset-xl-11,.v-locale--is-rtl .offset-xl-11{margin-right:91.6666666667%}}@media (min-width: 2560px){.v-col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.v-col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-xxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-xxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-xxl-3{flex:0 0 25%;max-width:25%}.v-col-xxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-xxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-xxl-6{flex:0 0 50%;max-width:50%}.v-col-xxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-xxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-xxl-9{flex:0 0 75%;max-width:75%}.v-col-xxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-xxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-xxl-12{flex:0 0 100%;max-width:100%}.v-locale--is-ltr.offset-xxl-0,.v-locale--is-ltr .offset-xxl-0{margin-left:0}.v-locale--is-rtl.offset-xxl-0,.v-locale--is-rtl .offset-xxl-0{margin-right:0}.v-locale--is-ltr.offset-xxl-1,.v-locale--is-ltr .offset-xxl-1{margin-left:8.3333333333%}.v-locale--is-rtl.offset-xxl-1,.v-locale--is-rtl .offset-xxl-1{margin-right:8.3333333333%}.v-locale--is-ltr.offset-xxl-2,.v-locale--is-ltr .offset-xxl-2{margin-left:16.6666666667%}.v-locale--is-rtl.offset-xxl-2,.v-locale--is-rtl .offset-xxl-2{margin-right:16.6666666667%}.v-locale--is-ltr.offset-xxl-3,.v-locale--is-ltr .offset-xxl-3{margin-left:25%}.v-locale--is-rtl.offset-xxl-3,.v-locale--is-rtl .offset-xxl-3{margin-right:25%}.v-locale--is-ltr.offset-xxl-4,.v-locale--is-ltr .offset-xxl-4{margin-left:33.3333333333%}.v-locale--is-rtl.offset-xxl-4,.v-locale--is-rtl .offset-xxl-4{margin-right:33.3333333333%}.v-locale--is-ltr.offset-xxl-5,.v-locale--is-ltr .offset-xxl-5{margin-left:41.6666666667%}.v-locale--is-rtl.offset-xxl-5,.v-locale--is-rtl .offset-xxl-5{margin-right:41.6666666667%}.v-locale--is-ltr.offset-xxl-6,.v-locale--is-ltr .offset-xxl-6{margin-left:50%}.v-locale--is-rtl.offset-xxl-6,.v-locale--is-rtl .offset-xxl-6{margin-right:50%}.v-locale--is-ltr.offset-xxl-7,.v-locale--is-ltr .offset-xxl-7{margin-left:58.3333333333%}.v-locale--is-rtl.offset-xxl-7,.v-locale--is-rtl .offset-xxl-7{margin-right:58.3333333333%}.v-locale--is-ltr.offset-xxl-8,.v-locale--is-ltr .offset-xxl-8{margin-left:66.6666666667%}.v-locale--is-rtl.offset-xxl-8,.v-locale--is-rtl .offset-xxl-8{margin-right:66.6666666667%}.v-locale--is-ltr.offset-xxl-9,.v-locale--is-ltr .offset-xxl-9{margin-left:75%}.v-locale--is-rtl.offset-xxl-9,.v-locale--is-rtl .offset-xxl-9{margin-right:75%}.v-locale--is-ltr.offset-xxl-10,.v-locale--is-ltr .offset-xxl-10{margin-left:83.3333333333%}.v-locale--is-rtl.offset-xxl-10,.v-locale--is-rtl .offset-xxl-10{margin-right:83.3333333333%}.v-locale--is-ltr.offset-xxl-11,.v-locale--is-ltr .offset-xxl-11{margin-left:91.6666666667%}.v-locale--is-rtl.offset-xxl-11,.v-locale--is-rtl .offset-xxl-11{margin-right:91.6666666667%}}.v-item-group{flex:0 1 auto;max-width:100%;position:relative;transition:.2s cubic-bezier(.4,0,.2,1)}.v-kbd{background:rgb(var(--v-theme-kbd));color:rgb(var(--v-theme-on-kbd));border-radius:3px;display:inline;font-size:85%;font-weight:400;padding:.2em .4rem;box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-layout{--v-scrollbar-offset: 0px;display:flex;flex:1 1 auto}.v-layout--full-height{--v-scrollbar-offset: inherit;height:100%}.v-layout-item{position:absolute;transition:.2s cubic-bezier(.4,0,.2,1)}.v-layout-item--absolute{position:absolute}.v-locale-provider{display:contents}.v-main{flex:1 0 auto;max-width:100%;transition:.2s cubic-bezier(.4,0,.2,1);padding-left:var(--v-layout-left);padding-right:var(--v-layout-right);padding-top:var(--v-layout-top);padding-bottom:var(--v-layout-bottom)}.v-main__scroller{max-width:100%;position:relative}.v-main--scrollable{display:flex;position:absolute;top:0;left:0;width:100%;height:100%}.v-main--scrollable>.v-main__scroller{flex:1 1 auto;overflow-y:auto;--v-layout-left: 0px;--v-layout-right: 0px;--v-layout-top: 0px;--v-layout-bottom: 0px}.v-navigation-drawer{-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;height:100%;max-width:100%;pointer-events:auto;transition-duration:.2s;transition-property:box-shadow,transform,visibility,width,height,left,right,top,bottom;transition-timing-function:cubic-bezier(.4,0,.2,1);position:absolute;border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-navigation-drawer--border{border-width:thin;box-shadow:none}.v-navigation-drawer--rounded{border-radius:4px}.v-navigation-drawer--top{top:0;border-bottom-width:thin}.v-navigation-drawer--bottom{left:0;border-top-width:thin}.v-navigation-drawer--left{top:0;left:0;right:auto;border-right-width:thin}.v-navigation-drawer--right{top:0;left:auto;right:0;border-left-width:thin}.v-navigation-drawer--floating{border:none}.v-navigation-drawer--temporary{box-shadow:0 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 6px 30px 5px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-navigation-drawer--sticky{height:auto;transition:box-shadow,transform,visibility,width,height,left,right}.v-navigation-drawer .v-list{overflow:hidden}.v-navigation-drawer__content{flex:0 1 auto;height:100%;max-width:100%;overflow-x:hidden;overflow-y:auto}.v-navigation-drawer__img{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.v-navigation-drawer__img img{height:inherit;object-fit:cover;width:inherit}.v-navigation-drawer__scrim{position:absolute;top:0;left:0;width:100%;height:100%;background:black;opacity:.2;transition:opacity .2s cubic-bezier(.4,0,.2,1);z-index:1}.v-pagination__list{display:inline-flex;list-style-type:none;justify-content:center;width:100%}.v-pagination__item,.v-pagination__first,.v-pagination__prev,.v-pagination__next,.v-pagination__last{margin:.3rem}.v-parallax{position:relative;overflow:hidden}.v-parallax--active>.v-img__img{will-change:transform}.v-radio-group>.v-input__control{flex-direction:column}.v-radio-group>.v-input__control>.v-label{margin-inline-start:16px}.v-radio-group>.v-input__control>.v-label+.v-selection-control-group{padding-inline-start:6px;margin-top:8px}.v-radio-group .v-input__details{padding-inline-start:16px;padding-inline-end:16px}.v-rating{max-width:100%;display:inline-flex;white-space:nowrap}.v-rating--readonly{pointer-events:none}.v-rating__wrapper{align-items:center;display:inline-flex;flex-direction:column}.v-rating__wrapper--bottom{flex-direction:column-reverse}.v-rating__item{display:inline-flex;position:relative}.v-rating__item label{cursor:pointer}.v-rating__item .v-btn--variant-plain{opacity:1}.v-rating__item .v-btn{transition-property:transform}.v-rating__item .v-btn .v-icon{transition:inherit;transition-timing-function:cubic-bezier(0,0,.2,1)}.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn{transform:scale(1.25)}.v-rating__item--half{overflow:hidden;position:absolute;clip-path:polygon(0 0,50% 0,50% 100%,0 100%);z-index:1}.v-rating__item--half .v-btn__overlay,.v-rating__item--half:hover .v-btn__overlay{opacity:0}.v-rating__hidden{height:0;opacity:0;position:absolute;width:0}.v-slide-group{display:flex;overflow:hidden}.v-slide-group__next,.v-slide-group__prev{align-items:center;display:flex;flex:0 1 52px;justify-content:center;min-width:52px;cursor:pointer}.v-slide-group__next--disabled,.v-slide-group__prev--disabled{pointer-events:none;opacity:var(--v-disabled-opacity)}.v-slide-group__content{display:flex;flex:1 0 auto;position:relative;transition:.2s all cubic-bezier(.4,0,.2,1);white-space:nowrap}.v-slide-group__content>*{white-space:initial}.v-slide-group__container{contain:content;display:flex;flex:1 1 auto;overflow:hidden}.v-slide-group--vertical,.v-slide-group--vertical .v-slide-group__container,.v-slide-group--vertical .v-slide-group__content{flex-direction:column}.v-snackbar{justify-content:center;z-index:10000;margin:8px;margin-inline-end:calc(8px + var(--v-scrollbar-offset))}.v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top){align-items:flex-end}.v-snackbar__wrapper{align-items:center;display:flex;max-width:672px;min-height:48px;min-width:344px;padding:0;border-radius:4px}.v-snackbar--variant-plain,.v-snackbar--variant-outlined,.v-snackbar--variant-text,.v-snackbar--variant-tonal{background:transparent;color:inherit}.v-snackbar--variant-plain{opacity:.62}.v-snackbar--variant-plain:focus,.v-snackbar--variant-plain:hover{opacity:1}.v-snackbar--variant-plain .v-snackbar__overlay{display:none}.v-snackbar--variant-elevated,.v-snackbar--variant-flat{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant))}.v-snackbar--variant-elevated{box-shadow:0 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 6px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 18px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-snackbar--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-snackbar--variant-outlined{border:thin solid currentColor}.v-snackbar--variant-text .v-snackbar__overlay{background:currentColor}.v-snackbar--variant-tonal .v-snackbar__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-snackbar__content{flex-grow:1;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;line-height:1.25rem;margin-right:auto;padding:14px 16px;text-align:initial}.v-snackbar__actions{align-items:center;align-self:center;display:flex;margin-inline-end:8px}.v-snackbar__actions>.v-btn{padding:0 8px;min-width:auto}.v-snackbar--absolute{position:absolute;z-index:1}.v-snackbar--multi-line .v-snackbar__wrapper{min-height:68px}.v-snackbar--vertical .v-snackbar__wrapper{flex-direction:column}.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{align-self:flex-end;margin-bottom:8px}.v-snackbar-transition-enter-active,.v-snackbar-transition-leave-active{transition-duration:.15s;transition-timing-function:cubic-bezier(0,0,.2,1)}.v-snackbar-transition-enter-active{transition-property:opacity,transform}.v-snackbar-transition-enter-from{opacity:0;transform:scale(.8)}.v-snackbar-transition-leave-active{transition-property:opacity}.v-snackbar-transition-leave-to{opacity:0}.v-switch .v-label{padding-inline-start:10px}.v-switch__loader{display:flex}.v-switch__loader .v-progress-circular{color:rgb(var(--v-theme-surface))}.v-switch__track,.v-switch__thumb{transition:none}.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb{background-color:rgb(var(--v-theme-error));color:rgb(var(--v-theme-on-error))}.v-switch__track{background-color:currentColor;border-radius:9999px;height:14px;opacity:.6;width:36px;cursor:pointer;transition:.2s color cubic-bezier(.4,0,.2,1)}.v-switch--inset .v-switch__track{border-radius:9999px;height:32px;width:52px}.v-switch__thumb{align-items:center;border-radius:50%;background:rgb(var(--v-theme-surface));color:rgb(var(--v-theme-on-surface));display:flex;height:20px;justify-content:center;width:20px;pointer-events:none;transition:.15s .05s transform cubic-bezier(0,0,.2,1);position:relative;overflow:hidden;box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-switch--inset .v-switch__thumb{height:24px;width:24px;transform:scale(.6666666667);box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-switch--inset .v-switch__thumb--filled{transform:none}.v-switch--inset .v-selection-control--dirty .v-switch__thumb{transform:none;transition:.15s .05s transform cubic-bezier(0,0,.2,1)}.v-switch .v-selection-control{min-height:var(--v-input-control-height)}.v-switch .v-selection-control__input{border-radius:50%;transition:.2s transform cubic-bezier(.4,0,.2,1);transform:translate(-10px);position:absolute}.v-switch .v-selection-control__input .v-icon{position:absolute}.v-switch .v-selection-control--dirty .v-selection-control__input{transform:translate(10px)}.v-switch.v-switch--indeterminate .v-selection-control__input{transform:scale(.8)}.v-switch.v-switch--indeterminate .v-switch__thumb{transform:scale(.75);box-shadow:none}.v-switch.v-switch--inset .v-selection-control__wrapper{width:auto}.v-system-bar{align-items:center;display:flex;flex:1 1 auto;height:24px;justify-content:flex-end;max-width:100%;padding-inline-start:8px;padding-inline-end:8px;position:relative;text-align:end;width:100%;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12));background:rgba(var(--v-theme-on-surface-variant));color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));font-size:.75rem;font-weight:400;letter-spacing:.0333333333em;line-height:1.25rem;text-transform:none}.v-system-bar .v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-system-bar--absolute{position:absolute}.v-system-bar--fixed{position:fixed}.v-system-bar--rounded{border-radius:0}.v-system-bar--window{height:32px}.v-system-bar:not(.v-system-bar--absolute){padding-inline-end:calc(var(--v-scrollbar-offset) + 8px)}.v-tabs{display:flex;height:var(--v-tabs-height)}.v-tabs--density-default{--v-tabs-height: 48px}.v-tabs--density-default.v-tabs--stacked{--v-tabs-height: 72px}.v-tabs--density-comfortable{--v-tabs-height: 44px}.v-tabs--density-comfortable.v-tabs--stacked{--v-tabs-height: 68px}.v-tabs--density-compact{--v-tabs-height: 36px}.v-tabs--density-compact.v-tabs--stacked{--v-tabs-height: 60px}.v-tabs.v-slide-group--vertical{height:auto;flex:none;--v-tabs-height: 48px}.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child{margin-inline-start:42px}.v-tabs--fixed-tabs .v-slide-group__content>*:last-child,.v-tabs--align-tabs-center .v-slide-group__content>*:last-child{margin-inline-end:auto}.v-tabs--fixed-tabs .v-slide-group__content>*:first-child,.v-tabs--align-tabs-center .v-slide-group__content>*:first-child{margin-inline-start:auto}.v-tabs--grow{flex-grow:1}.v-tabs--grow .v-tab{flex:1 0 auto;max-width:none}.v-tabs--align-tabs-end .v-tab:first-child{margin-inline-start:auto}.v-tabs--align-tabs-end .v-tab:last-child{margin-inline-end:0}@media (max-width: 1279.98px){.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child{margin-inline-start:52px}.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child{margin-inline-end:52px}}.v-tab.v-tab{--v-btn-height: var(--v-tabs-height);min-width:90px}.v-slide-group--horizontal .v-tab{max-width:360px}.v-slide-group--vertical .v-tab{justify-content:start}.v-tab__slider{position:absolute;bottom:0;left:0;height:2px;width:100%;background:currentColor;pointer-events:none;opacity:0}.v-tab--selected .v-tab__slider{opacity:1}.v-slide-group--vertical .v-tab__slider{top:0;height:100%;width:2px}.v-table{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-table .v-table-divider{border-right:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table .v-table__wrapper>table>thead>tr>th{border-bottom:thin solid rgba(var(--v-border-color),var(--v-border-opacity));color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity))}.v-table .v-table__wrapper>table>tbody>tr:not(:last-child)>td,.v-table .v-table__wrapper>table>tbody>tr:not(:last-child)>th{border-bottom:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table .v-table__wrapper>table>tfoot>tr>td,.v-table .v-table__wrapper>table>tfoot>tr>th{border-top:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table.v-table--hover>.v-table__wrapper>table>tbody>tr:hover td{background:rgba(var(--v-border-color),var(--v-hover-opacity))}.v-table.v-table--fixed-header>.v-table__wrapper>table>thead>tr>th{background:rgb(var(--v-theme-surface));box-shadow:inset 0 -1px 0 rgba(var(--v-border-color),var(--v-border-opacity));z-index:1}.v-table.v-table--fixed-footer>tfoot>tr>th,.v-table.v-table--fixed-footer>tfoot>tr>td{background:rgb(var(--v-theme-surface));box-shadow:inset 0 1px 0 rgba(var(--v-border-color),var(--v-border-opacity))}.v-table{--v-table-header-height: 56px;border-radius:inherit;line-height:1.5;max-width:100%}.v-table>.v-table__wrapper>table{width:100%;border-spacing:0}.v-table>.v-table__wrapper>table>tbody>tr>td,.v-table>.v-table__wrapper>table>tbody>tr>th,.v-table>.v-table__wrapper>table>thead>tr>td,.v-table>.v-table__wrapper>table>thead>tr>th,.v-table>.v-table__wrapper>table>tfoot>tr>td,.v-table>.v-table__wrapper>table>tfoot>tr>th{padding:0 16px;transition:height cubic-bezier(.4,0,.2,1)}.v-table>.v-table__wrapper>table>tbody>tr>th,.v-table>.v-table__wrapper>table>thead>tr>th,.v-table>.v-table__wrapper>table>tfoot>tr>th{font-weight:500;-webkit-user-select:none;user-select:none;text-align:start}.v-table--density-default>.v-table__wrapper>table>tbody>tr>th,.v-table--density-default>.v-table__wrapper>table>thead>tr>th,.v-table--density-default>.v-table__wrapper>table>tfoot>tr>th{height:calc(var(--v-table-header-height) + 0px)}.v-table--density-default>.v-table__wrapper>table>tbody>tr>td,.v-table--density-default>.v-table__wrapper>table>thead>tr>td,.v-table--density-default>.v-table__wrapper>table>tfoot>tr>td{height:calc(var(--v-table-row-height, 52px) + 0px)}.v-table--density-comfortable>.v-table__wrapper>table>tbody>tr>th,.v-table--density-comfortable>.v-table__wrapper>table>thead>tr>th,.v-table--density-comfortable>.v-table__wrapper>table>tfoot>tr>th{height:calc(var(--v-table-header-height) - 8px)}.v-table--density-comfortable>.v-table__wrapper>table>tbody>tr>td,.v-table--density-comfortable>.v-table__wrapper>table>thead>tr>td,.v-table--density-comfortable>.v-table__wrapper>table>tfoot>tr>td{height:calc(var(--v-table-row-height, 52px) - 8px)}.v-table--density-compact>.v-table__wrapper>table>tbody>tr>th,.v-table--density-compact>.v-table__wrapper>table>thead>tr>th,.v-table--density-compact>.v-table__wrapper>table>tfoot>tr>th{height:calc(var(--v-table-header-height) - 16px)}.v-table--density-compact>.v-table__wrapper>table>tbody>tr>td,.v-table--density-compact>.v-table__wrapper>table>thead>tr>td,.v-table--density-compact>.v-table__wrapper>table>tfoot>tr>td{height:calc(var(--v-table-row-height, 52px) - 16px)}.v-table__wrapper{border-radius:inherit;overflow:auto}.v-table--has-top>.v-table__wrapper>table>tbody>tr:first-child:hover>td:first-child{border-top-left-radius:0}.v-table--has-top>.v-table__wrapper>table>tbody>tr:first-child:hover>td:last-child{border-top-right-radius:0}.v-table--has-bottom>.v-table__wrapper>table>tbody>tr:last-child:hover>td:first-child{border-bottom-left-radius:0}.v-table--has-bottom>.v-table__wrapper>table>tbody>tr:last-child:hover>td:last-child{border-bottom-right-radius:0}.v-table--fixed-height>.v-table__wrapper{overflow-y:auto}.v-table--fixed-header>.v-table__wrapper>table>thead{position:sticky;top:0;z-index:1}.v-table--fixed-header>.v-table__wrapper>table>thead>tr>th{border-bottom:0px!important}.v-table--fixed-footer>.v-table__wrapper>table>tfoot>tr{position:sticky;bottom:0;z-index:1}.v-table--fixed-footer>.v-table__wrapper>table>tfoot>tr>td,.v-table--fixed-footer>.v-table__wrapper>table>tfoot>tr>th{border-top:0px!important}.v-textarea .v-field{--v-textarea-control-height: var(--v-input-control-height)}.v-textarea .v-field__field{--v-input-control-height: var(--v-textarea-control-height)}.v-textarea .v-field__input{flex:1 1 auto;outline:none;-webkit-mask-image:linear-gradient(to bottom,transparent,transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px),black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));mask-image:linear-gradient(to bottom,transparent,transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px),black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px))}.v-textarea .v-field__input.v-textarea__sizer{visibility:hidden;position:absolute;top:0;left:0;height:0!important;min-height:0!important;pointer-events:none}.v-textarea--no-resize .v-field__input{resize:none}.v-textarea .v-field--no-label textarea,.v-textarea .v-field--active textarea{opacity:1}.v-textarea textarea{opacity:0;flex:1;min-width:0;transition:.15s opacity cubic-bezier(.4,0,.2,1)}.v-textarea textarea:focus,.v-textarea textarea:active{outline:none}.v-textarea textarea:invalid{box-shadow:none}.v-theme-provider{background:rgb(var(--v-theme-background));color:rgb(var(--v-theme-on-background))}.v-timeline .v-timeline-divider__dot{background:rgb(var(--v-theme-on-surface-variant))}.v-timeline .v-timeline-divider__inner-dot{background:rgb(var(--v-theme-on-surface))}.v-timeline{display:grid;grid-auto-flow:dense;position:relative}.v-timeline--horizontal.v-timeline{width:100%}.v-timeline--horizontal.v-timeline .v-timeline-item:first-child .v-timeline-divider,.v-timeline--horizontal.v-timeline .v-timeline-item:first-child .v-timeline-item__body,.v-timeline--horizontal.v-timeline .v-timeline-item:first-child .v-timeline-item__opposite{padding-inline-start:24px}.v-timeline--horizontal.v-timeline .v-timeline-item:last-child .v-timeline-divider,.v-timeline--horizontal.v-timeline .v-timeline-item:last-child .v-timeline-item__body,.v-timeline--horizontal.v-timeline .v-timeline-item:last-child .v-timeline-item__opposite{padding-inline-end:24px}.v-timeline--horizontal.v-timeline .v-timeline-item__body,.v-timeline--horizontal.v-timeline .v-timeline-item__opposite{padding-inline-end:24px}.v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__body{grid-row:3;padding-block-start:24px}.v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__opposite{grid-row:1;padding-block-end:24px;align-self:flex-end}.v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(odd) .v-timeline-item__body{grid-row:1;padding-block-end:24px;align-self:flex-end}.v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(odd) .v-timeline-item__opposite{grid-row:3;padding-block-start:24px}.v-timeline--vertical.v-timeline{grid-row-gap:24px;height:100%}.v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-divider,.v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__body,.v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__opposite{padding-block-start:24px}.v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-divider,.v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__body,.v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__opposite{padding-block-end:24px}.v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__body{grid-column:1;justify-self:flex-end;padding-inline-end:24px}.v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__opposite{grid-column:3;padding-inline-start:24px}.v-timeline--vertical.v-timeline .v-timeline-item:nth-child(odd) .v-timeline-item__body{grid-column:3;padding-inline-start:24px}.v-timeline--vertical.v-timeline .v-timeline-item:nth-child(odd) .v-timeline-item__opposite{grid-column:1;justify-self:flex-end;padding-inline-end:24px}.v-timeline-item{display:contents}.v-timeline-divider{position:relative;display:flex;align-items:center}.v-timeline--horizontal .v-timeline-divider{flex-direction:row;grid-row:2;width:100%}.v-timeline--vertical .v-timeline-divider{height:100%;flex-direction:column;grid-column:2}.v-timeline-divider__before{background:rgba(var(--v-border-color),var(--v-border-opacity))}.v-timeline--horizontal .v-timeline-divider__before{height:var(--v-timeline-line-thickness);width:calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset))}.v-locale--is-ltr.v-timeline--horizontal .v-timeline-divider__before,.v-locale--is-ltr .v-timeline--horizontal .v-timeline-divider__before{left:-12px;right:initial}.v-locale--is-rtl.v-timeline--horizontal .v-timeline-divider__before,.v-locale--is-rtl .v-timeline--horizontal .v-timeline-divider__before{right:-12px;left:initial}.v-timeline--vertical .v-timeline-divider__before{position:absolute;height:calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));width:var(--v-timeline-line-thickness);top:-12px}.v-timeline-divider__after{background:rgba(var(--v-border-color),var(--v-border-opacity))}.v-timeline--horizontal .v-timeline-divider__after{height:var(--v-timeline-line-thickness);width:calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset))}.v-locale--is-ltr.v-timeline--horizontal .v-timeline-divider__after,.v-locale--is-ltr .v-timeline--horizontal .v-timeline-divider__after{right:-12px;left:initial}.v-locale--is-rtl.v-timeline--horizontal .v-timeline-divider__after,.v-locale--is-rtl .v-timeline--horizontal .v-timeline-divider__after{left:-12px;right:initial}.v-timeline--vertical .v-timeline-divider__after{position:absolute;height:calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));width:var(--v-timeline-line-thickness);bottom:-12px}.v-timeline--vertical .v-timeline-item:first-child .v-timeline-divider__before{height:calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));top:0}.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before{width:calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset))}.v-locale--is-ltr.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before,.v-locale--is-ltr .v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before{left:0;right:initial}.v-locale--is-rtl.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before,.v-locale--is-rtl .v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before{right:0;left:initial}.v-timeline--vertical .v-timeline-item:first-child .v-timeline-divider__after{height:calc(var(--v-timeline-line-size-base) - var(--v-timeline-line-inset) + var(--v-timeline-line-size-offset))}.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after{width:calc(var(--v-timeline-line-size-base) - var(--v-timeline-line-inset) + var(--v-timeline-line-size-offset))}.v-locale--is-ltr.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after,.v-locale--is-ltr .v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after{right:-12px;left:initial}.v-locale--is-rtl.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after,.v-locale--is-rtl .v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after{left:-12px;right:initial}.v-timeline--vertical .v-timeline-item:last-child .v-timeline-divider__before{height:calc(var(--v-timeline-line-size-base) - var(--v-timeline-line-inset) + var(--v-timeline-line-size-offset))}.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__before{width:calc(var(--v-timeline-line-size-base) - var(--v-timeline-line-inset) + var(--v-timeline-line-size-offset))}.v-timeline--vertical .v-timeline-item:last-child .v-timeline-divider__after{height:calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));bottom:0}.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after{width:calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset))}.v-locale--is-ltr.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after,.v-locale--is-ltr .v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after{right:0;left:initial}.v-locale--is-rtl.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after,.v-locale--is-rtl .v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after{left:0;right:initial}.v-timeline--vertical .v-timeline-item:only-child .v-timeline-divider__after{height:calc(var(--v-timeline-line-size-base) - var(--v-timeline-line-inset))}.v-timeline-divider__dot{z-index:1;flex-shrink:0;border-radius:50%;display:flex;justify-content:center;align-items:center;box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))}.v-timeline-divider__dot--size-x-small{height:22px;width:22px}.v-timeline-divider__dot--size-x-small .v-timeline-divider__inner-dot{height:calc(100% - 6px);width:calc(100% - 6px)}.v-timeline-divider__dot--size-small{height:30px;width:30px}.v-timeline-divider__dot--size-small .v-timeline-divider__inner-dot{height:calc(100% - 8px);width:calc(100% - 8px)}.v-timeline-divider__dot--size-default{height:38px;width:38px}.v-timeline-divider__dot--size-default .v-timeline-divider__inner-dot{height:calc(100% - 8px);width:calc(100% - 8px)}.v-timeline-divider__dot--size-large{height:46px;width:46px}.v-timeline-divider__dot--size-large .v-timeline-divider__inner-dot{height:calc(100% - 8px);width:calc(100% - 8px)}.v-timeline-divider__dot--size-x-large{height:54px;width:54px}.v-timeline-divider__dot--size-x-large .v-timeline-divider__inner-dot{height:calc(100% - 10px);width:calc(100% - 10px)}.v-timeline-divider__inner-dot{align-items:center;border-radius:50%;display:flex;justify-content:center}.v-timeline--horizontal.v-timeline--justify-center{grid-template-rows:minmax(auto,50%) min-content minmax(auto,50%)}.v-timeline--vertical.v-timeline--justify-center{grid-template-columns:minmax(auto,50%) min-content minmax(auto,50%)}.v-timeline--horizontal.v-timeline--justify-auto{grid-template-rows:auto min-content auto}.v-timeline--vertical.v-timeline--justify-auto{grid-template-columns:auto min-content auto}.v-timeline--horizontal.v-timeline--density-comfortable{height:100%}.v-timeline--horizontal.v-timeline--density-comfortable.v-timeline--side-end{grid-template-rows:min-content min-content auto}.v-timeline--horizontal.v-timeline--density-comfortable.v-timeline--side-start{grid-template-rows:auto min-content min-content}.v-timeline--vertical.v-timeline--density-comfortable{width:100%}.v-timeline--vertical.v-timeline--density-comfortable.v-timeline--side-end{grid-template-columns:min-content min-content auto}.v-timeline--vertical.v-timeline--density-comfortable.v-timeline--side-start{grid-template-columns:auto min-content min-content}.v-timeline--horizontal.v-timeline--density-compact.v-timeline--side-end{grid-template-rows:0 min-content auto}.v-timeline--horizontal.v-timeline--density-compact.v-timeline--side-start{grid-template-rows:auto min-content 0}.v-timeline--horizontal.v-timeline--density-compact .v-timeline-item__body{grid-row:1}.v-timeline--vertical.v-timeline--density-compact.v-timeline--side-end{grid-template-columns:0 min-content auto}.v-timeline--vertical.v-timeline--density-compact.v-timeline--side-start{grid-template-columns:auto min-content 0}.v-timeline--vertical.v-timeline--density-compact .v-timeline-item__body{grid-column:3}.v-timeline--horizontal.v-timeline.v-timeline--side-end .v-timeline-item .v-timeline-item__body{grid-row:3;padding-block-end:initial;padding-block-start:24px}.v-timeline--horizontal.v-timeline.v-timeline--side-end .v-timeline-item .v-timeline-item__opposite{grid-row:1;padding-block-end:24px;padding-block-start:initial}.v-timeline--vertical.v-timeline.v-timeline--side-end .v-timeline-item .v-timeline-item__body{grid-column:3;padding-inline-start:24px;padding-inline-end:initial;justify-self:flex-start}.v-timeline--vertical.v-timeline.v-timeline--side-end .v-timeline-item .v-timeline-item__opposite{grid-column:1;justify-self:flex-end;padding-inline-end:24px;padding-inline-start:initial}.v-timeline--horizontal.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__body{grid-row:1;padding-block-end:24px;padding-block-start:initial}.v-timeline--horizontal.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__opposite{grid-row:3;padding-block-end:initial;padding-block-start:24px}.v-timeline--vertical.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__body{grid-column:1;justify-self:flex-end;padding-inline-end:24px}.v-timeline--vertical.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__opposite{grid-column:3;padding-inline-start:24px;justify-self:flex-start}.v-timeline-divider--fill-dot .v-timeline-divider__inner-dot{height:inherit;width:inherit}.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before{display:none}.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after{display:none}.v-timeline--align-center{--v-timeline-line-size-base: 50%;--v-timeline-line-size-offset: 0px}.v-timeline--horizontal.v-timeline--align-center{justify-items:center}.v-timeline--horizontal.v-timeline--align-center .v-timeline-divider{justify-content:center}.v-timeline--vertical.v-timeline--align-center{align-items:center}.v-timeline--vertical.v-timeline--align-center .v-timeline-divider{justify-content:center}.v-timeline--align-start{--v-timeline-line-size-base: 100%;--v-timeline-line-size-offset: 12px}.v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__before{--v-timeline-line-size-offset: 24px}.v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__after{--v-timeline-line-size-offset: -12px}.v-timeline--align-start .v-timeline-item:last-child .v-timeline-divider__after{--v-timeline-line-size-offset: 0px}.v-timeline--horizontal.v-timeline--align-start{justify-items:flex-start}.v-timeline--horizontal.v-timeline--align-start .v-timeline-divider{justify-content:flex-start}.v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before{width:calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset))}.v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after{width:calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset))}.v-timeline--vertical.v-timeline--align-start{align-items:flex-start}.v-timeline--vertical.v-timeline--align-start .v-timeline-divider{justify-content:flex-start}.v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before{height:calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset))}.v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after{height:calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset))}.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after{--v-timeline-line-size-offset: 12px}.v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider,.v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body,.v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite{padding-block-start:0}.v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider,.v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body,.v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite{padding-inline-start:0}.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before{--v-timeline-line-size-offset: 12px}.v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider,.v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body,.v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite{padding-block-end:0}.v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider,.v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body,.v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite{padding-inline-end:0}.v-tooltip>.v-overlay__content{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant));border-radius:4px;font-size:.875rem;line-height:1.6;display:inline-block;padding:5px 16px;text-transform:initial;width:auto;opacity:1;pointer-events:none;transition-property:opacity,transform}.v-tooltip>.v-overlay__content[class*=enter-active]{transition-timing-function:cubic-bezier(0,0,.2,1);transition-duration:.15s}.v-tooltip>.v-overlay__content[class*=leave-active]{transition-timing-function:cubic-bezier(.4,0,1,1);transition-duration:75ms}.ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;height:15px;bottom:0;position:absolute}.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;width:15px;right:0;position:absolute}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:#eee;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:6px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:6px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:11px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}.ps{position:relative}@keyframes v-shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}/*! + * ress.css • v2.0.4 + * MIT License + * github.com/filipelinhares/ress + */html{box-sizing:border-box;overflow-y:scroll;-webkit-text-size-adjust:100%;word-break:normal;-moz-tab-size:4;tab-size:4}*,:before,:after{background-repeat:no-repeat;box-sizing:inherit}:before,:after{text-decoration:inherit;vertical-align:inherit}*{padding:0;margin:0}hr{overflow:visible;height:0}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}[disabled]{cursor:default}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit],[role=button]{cursor:pointer;color:inherit}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{outline:1px dotted ButtonText}button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;white-space:normal;max-width:100%}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}::-ms-clear,::-ms-reveal{display:none}img{border-style:none}progress{vertical-align:baseline}@media screen{[hidden~=screen]{display:inherit}[hidden~=screen]:not(:active):not(:focus):not(:target){position:absolute!important;clip:rect(0 0 0 0)!important}}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}.dialog-transition-enter-active,.dialog-bottom-transition-enter-active,.dialog-top-transition-enter-active{transition-duration:225ms!important;transition-timing-function:cubic-bezier(0,0,.2,1)!important}.dialog-transition-leave-active,.dialog-bottom-transition-leave-active,.dialog-top-transition-leave-active{transition-duration:125ms!important;transition-timing-function:cubic-bezier(.4,0,1,1)!important}.dialog-transition-enter-active,.dialog-transition-leave-active,.dialog-bottom-transition-enter-active,.dialog-bottom-transition-leave-active,.dialog-top-transition-enter-active,.dialog-top-transition-leave-active{transition-property:transform,opacity!important;pointer-events:none}.dialog-transition-enter-from,.dialog-transition-leave-to{transform:scale(.9);opacity:0}.dialog-transition-enter-to,.dialog-transition-leave-from{opacity:1}.dialog-bottom-transition-enter-from,.dialog-bottom-transition-leave-to{transform:translateY(calc(50vh + 50%))}.dialog-top-transition-enter-from,.dialog-top-transition-leave-to{transform:translateY(calc(-50vh - 50%))}.picker-transition-enter-active,.picker-reverse-transition-enter-active,.picker-transition-leave-active,.picker-reverse-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.picker-transition-move,.picker-reverse-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.picker-transition-enter-from,.picker-transition-leave-to,.picker-reverse-transition-enter-from,.picker-reverse-transition-leave-to{opacity:0}.picker-transition-leave-from,.picker-transition-leave-active,.picker-transition-leave-to,.picker-reverse-transition-leave-from,.picker-reverse-transition-leave-active,.picker-reverse-transition-leave-to{position:absolute!important}.picker-transition-enter-active,.picker-transition-leave-active,.picker-reverse-transition-enter-active,.picker-reverse-transition-leave-active{transition-property:transform,opacity!important}.picker-transition-enter-active,.picker-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.picker-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.picker-transition-enter-from{transform:translateY(100%)}.picker-transition-leave-to{transform:translateY(-100%)}.picker-reverse-transition-enter-active,.picker-reverse-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.picker-reverse-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.picker-reverse-transition-enter-from{transform:translateY(-100%)}.picker-reverse-transition-leave-to{transform:translateY(100%)}.expand-transition-enter-active,.expand-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.expand-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.expand-transition-enter-active,.expand-transition-leave-active{transition-property:height!important}.expand-x-transition-enter-active,.expand-x-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.expand-x-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.expand-x-transition-enter-active,.expand-x-transition-leave-active{transition-property:width!important}.scale-transition-enter-active,.scale-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scale-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scale-transition-leave-to{opacity:0}.scale-transition-leave-active{transition-duration:.1s!important}.scale-transition-enter-from{opacity:0;transform:scale(0)}.scale-transition-enter-active,.scale-transition-leave-active{transition-property:transform,opacity!important}.scale-rotate-transition-enter-active,.scale-rotate-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scale-rotate-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scale-rotate-transition-leave-to{opacity:0}.scale-rotate-transition-leave-active{transition-duration:.1s!important}.scale-rotate-transition-enter-from{opacity:0;transform:scale(0) rotate(-45deg)}.scale-rotate-transition-enter-active,.scale-rotate-transition-leave-active{transition-property:transform,opacity!important}.scale-rotate-reverse-transition-enter-active,.scale-rotate-reverse-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scale-rotate-reverse-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scale-rotate-reverse-transition-leave-to{opacity:0}.scale-rotate-reverse-transition-leave-active{transition-duration:.1s!important}.scale-rotate-reverse-transition-enter-from{opacity:0;transform:scale(0) rotate(45deg)}.scale-rotate-reverse-transition-enter-active,.scale-rotate-reverse-transition-leave-active{transition-property:transform,opacity!important}.message-transition-enter-active,.message-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.message-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.message-transition-enter-from,.message-transition-leave-to{opacity:0;transform:translateY(-15px)}.message-transition-leave-from,.message-transition-leave-active{position:absolute}.message-transition-enter-active,.message-transition-leave-active{transition-property:transform,opacity!important}.slide-y-transition-enter-active,.slide-y-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.slide-y-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.slide-y-transition-enter-from,.slide-y-transition-leave-to{opacity:0;transform:translateY(-15px)}.slide-y-transition-enter-active,.slide-y-transition-leave-active{transition-property:transform,opacity!important}.slide-y-reverse-transition-enter-active,.slide-y-reverse-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.slide-y-reverse-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.slide-y-reverse-transition-enter-from,.slide-y-reverse-transition-leave-to{opacity:0;transform:translateY(15px)}.slide-y-reverse-transition-enter-active,.slide-y-reverse-transition-leave-active{transition-property:transform,opacity!important}.scroll-y-transition-enter-active,.scroll-y-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scroll-y-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scroll-y-transition-enter-from,.scroll-y-transition-leave-to{opacity:0}.scroll-y-transition-enter-from{transform:translateY(-15px)}.scroll-y-transition-leave-to{transform:translateY(15px)}.scroll-y-transition-enter-active,.scroll-y-transition-leave-active{transition-property:transform,opacity!important}.scroll-y-reverse-transition-enter-active,.scroll-y-reverse-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scroll-y-reverse-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scroll-y-reverse-transition-enter-from,.scroll-y-reverse-transition-leave-to{opacity:0}.scroll-y-reverse-transition-enter-from{transform:translateY(15px)}.scroll-y-reverse-transition-leave-to{transform:translateY(-15px)}.scroll-y-reverse-transition-enter-active,.scroll-y-reverse-transition-leave-active{transition-property:transform,opacity!important}.scroll-x-transition-enter-active,.scroll-x-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scroll-x-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scroll-x-transition-enter-from,.scroll-x-transition-leave-to{opacity:0}.scroll-x-transition-enter-from{transform:translate(-15px)}.scroll-x-transition-leave-to{transform:translate(15px)}.scroll-x-transition-enter-active,.scroll-x-transition-leave-active{transition-property:transform,opacity!important}.scroll-x-reverse-transition-enter-active,.scroll-x-reverse-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scroll-x-reverse-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.scroll-x-reverse-transition-enter-from,.scroll-x-reverse-transition-leave-to{opacity:0}.scroll-x-reverse-transition-enter-from{transform:translate(15px)}.scroll-x-reverse-transition-leave-to{transform:translate(-15px)}.scroll-x-reverse-transition-enter-active,.scroll-x-reverse-transition-leave-active{transition-property:transform,opacity!important}.slide-x-transition-enter-active,.slide-x-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.slide-x-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.slide-x-transition-enter-from,.slide-x-transition-leave-to{opacity:0;transform:translate(-15px)}.slide-x-transition-enter-active,.slide-x-transition-leave-active{transition-property:transform,opacity!important}.slide-x-reverse-transition-enter-active,.slide-x-reverse-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.slide-x-reverse-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.slide-x-reverse-transition-enter-from,.slide-x-reverse-transition-leave-to{opacity:0;transform:translate(15px)}.slide-x-reverse-transition-enter-active,.slide-x-reverse-transition-leave-active{transition-property:transform,opacity!important}.fade-transition-enter-active,.fade-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.fade-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.fade-transition-enter-from,.fade-transition-leave-to{opacity:0!important}.fade-transition-enter-active,.fade-transition-leave-active{transition-property:opacity!important}.fab-transition-enter-active,.fab-transition-leave-active{transition-duration:.3s!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.fab-transition-move{transition-duration:.5s!important;transition-property:transform!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.fab-transition-enter-from,.fab-transition-leave-to{transform:scale(0) rotate(-45deg)}.fab-transition-enter-active,.fab-transition-leave-active{transition-property:transform!important}.v-locale--is-rtl{direction:rtl}.v-locale--is-ltr{direction:ltr}.blockquote{padding:16px 0 16px 24px;font-size:18px;font-weight:300}html{font-family:Roboto,sans-serif;line-height:1.5;font-size:1rem;overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:rgba(0,0,0,0)}html.overflow-y-hidden{overflow-y:hidden!important}:root{--v-theme-overlay-multiplier: 1;--v-scrollbar-offset: 0px}@supports (-webkit-touch-callout: none){body{cursor:pointer}}@media only print{.hidden-print-only{display:none!important}}@media only screen{.hidden-screen-only{display:none!important}}@media (max-width: 599.98px){.hidden-xs{display:none!important}}@media (min-width: 600px) and (max-width: 959.98px){.hidden-sm{display:none!important}}@media (min-width: 960px) and (max-width: 1279.98px){.hidden-md{display:none!important}}@media (min-width: 1280px) and (max-width: 1919.98px){.hidden-lg{display:none!important}}@media (min-width: 1920px) and (max-width: 2559.98px){.hidden-xl{display:none!important}}@media (min-width: 2560px){.hidden-xxl{display:none!important}}@media (min-width: 600px){.hidden-sm-and-up{display:none!important}}@media (min-width: 960px){.hidden-md-and-up{display:none!important}}@media (min-width: 1280px){.hidden-lg-and-up{display:none!important}}@media (min-width: 1920px){.hidden-xl-and-up{display:none!important}}@media (max-width: 959.98px){.hidden-sm-and-down{display:none!important}}@media (max-width: 1279.98px){.hidden-md-and-down{display:none!important}}@media (max-width: 1919.98px){.hidden-lg-and-down{display:none!important}}@media (max-width: 2559.98px){.hidden-xl-and-down{display:none!important}}.elevation-24{box-shadow:0 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 9px 46px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-23{box-shadow:0 11px 14px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 23px 36px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 9px 44px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-22{box-shadow:0 10px 14px -6px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 22px 35px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 8px 42px 7px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-21{box-shadow:0 10px 13px -6px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 21px 33px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 8px 40px 7px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-20{box-shadow:0 10px 13px -6px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 20px 31px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 8px 38px 7px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-19{box-shadow:0 9px 12px -6px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 19px 29px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 7px 36px 6px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-18{box-shadow:0 9px 11px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 18px 28px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 7px 34px 6px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-17{box-shadow:0 8px 11px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 17px 26px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 6px 32px 5px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-16{box-shadow:0 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 6px 30px 5px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-15{box-shadow:0 8px 9px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 15px 22px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 6px 28px 5px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-14{box-shadow:0 7px 9px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 14px 21px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 5px 26px 4px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-13{box-shadow:0 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 13px 19px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 5px 24px 4px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-12{box-shadow:0 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 5px 22px 4px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-11{box-shadow:0 6px 7px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 11px 15px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 4px 20px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-10{box-shadow:0 6px 6px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 10px 14px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 4px 18px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-9{box-shadow:0 5px 6px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 9px 12px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 16px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-8{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-7{box-shadow:0 4px 5px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 7px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 2px 16px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-6{box-shadow:0 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 6px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 18px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-5{box-shadow:0 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 5px 8px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 14px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-4{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-3{box-shadow:0 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 3px 4px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 8px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-2{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-1{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.elevation-0{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12))!important}.d-sr-only,.d-sr-only-focusable:not(:focus){border:0!important;clip:rect(0,0,0,0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.float-none{float:none!important}.float-left{float:left!important}.float-right{float:right!important}.v-locale--is-rtl .float-end{float:left!important}.v-locale--is-rtl .float-start,.v-locale--is-ltr .float-end{float:right!important}.v-locale--is-ltr .float-start{float:left!important}.flex-fill,.flex-1-1{flex:1 1 auto!important}.flex-1-0{flex:1 0 auto!important}.flex-0-1{flex:0 1 auto!important}.flex-0-0{flex:0 0 auto!important}.flex-1-1-100{flex:1 1 100%!important}.flex-1-0-100{flex:1 0 100%!important}.flex-0-1-100{flex:0 1 100%!important}.flex-0-0-100{flex:0 0 100%!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-start{justify-content:flex-start!important}.justify-end{justify-content:flex-end!important}.justify-center{justify-content:center!important}.justify-space-between{justify-content:space-between!important}.justify-space-around{justify-content:space-around!important}.justify-space-evenly{justify-content:space-evenly!important}.align-start{align-items:flex-start!important}.align-end{align-items:flex-end!important}.align-center{align-items:center!important}.align-baseline{align-items:baseline!important}.align-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-space-between{align-content:space-between!important}.align-content-space-around{align-content:space-around!important}.align-content-space-evenly{align-content:space-evenly!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-6{order:6!important}.order-7{order:7!important}.order-8{order:8!important}.order-9{order:9!important}.order-10{order:10!important}.order-11{order:11!important}.order-12{order:12!important}.order-last{order:13!important}.ma-0{margin:0!important}.ma-1{margin:4px!important}.ma-2{margin:8px!important}.ma-3{margin:12px!important}.ma-4{margin:16px!important}.ma-5{margin:20px!important}.ma-6{margin:24px!important}.ma-7{margin:28px!important}.ma-8{margin:32px!important}.ma-9{margin:36px!important}.ma-10{margin:40px!important}.ma-11{margin:44px!important}.ma-12{margin:48px!important}.ma-13{margin:52px!important}.ma-14{margin:56px!important}.ma-15{margin:60px!important}.ma-16{margin:64px!important}.ma-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:4px!important;margin-left:4px!important}.mx-2{margin-right:8px!important;margin-left:8px!important}.mx-3{margin-right:12px!important;margin-left:12px!important}.mx-4{margin-right:16px!important;margin-left:16px!important}.mx-5{margin-right:20px!important;margin-left:20px!important}.mx-6{margin-right:24px!important;margin-left:24px!important}.mx-7{margin-right:28px!important;margin-left:28px!important}.mx-8{margin-right:32px!important;margin-left:32px!important}.mx-9{margin-right:36px!important;margin-left:36px!important}.mx-10{margin-right:40px!important;margin-left:40px!important}.mx-11{margin-right:44px!important;margin-left:44px!important}.mx-12{margin-right:48px!important;margin-left:48px!important}.mx-13{margin-right:52px!important;margin-left:52px!important}.mx-14{margin-right:56px!important;margin-left:56px!important}.mx-15{margin-right:60px!important;margin-left:60px!important}.mx-16{margin-right:64px!important;margin-left:64px!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:4px!important;margin-bottom:4px!important}.my-2{margin-top:8px!important;margin-bottom:8px!important}.my-3{margin-top:12px!important;margin-bottom:12px!important}.my-4{margin-top:16px!important;margin-bottom:16px!important}.my-5{margin-top:20px!important;margin-bottom:20px!important}.my-6{margin-top:24px!important;margin-bottom:24px!important}.my-7{margin-top:28px!important;margin-bottom:28px!important}.my-8{margin-top:32px!important;margin-bottom:32px!important}.my-9{margin-top:36px!important;margin-bottom:36px!important}.my-10{margin-top:40px!important;margin-bottom:40px!important}.my-11{margin-top:44px!important;margin-bottom:44px!important}.my-12{margin-top:48px!important;margin-bottom:48px!important}.my-13{margin-top:52px!important;margin-bottom:52px!important}.my-14{margin-top:56px!important;margin-bottom:56px!important}.my-15{margin-top:60px!important;margin-bottom:60px!important}.my-16{margin-top:64px!important;margin-bottom:64px!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:4px!important}.mt-2{margin-top:8px!important}.mt-3{margin-top:12px!important}.mt-4{margin-top:16px!important}.mt-5{margin-top:20px!important}.mt-6{margin-top:24px!important}.mt-7{margin-top:28px!important}.mt-8{margin-top:32px!important}.mt-9{margin-top:36px!important}.mt-10{margin-top:40px!important}.mt-11{margin-top:44px!important}.mt-12{margin-top:48px!important}.mt-13{margin-top:52px!important}.mt-14{margin-top:56px!important}.mt-15{margin-top:60px!important}.mt-16{margin-top:64px!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0!important}.mr-1{margin-right:4px!important}.mr-2{margin-right:8px!important}.mr-3{margin-right:12px!important}.mr-4{margin-right:16px!important}.mr-5{margin-right:20px!important}.mr-6{margin-right:24px!important}.mr-7{margin-right:28px!important}.mr-8{margin-right:32px!important}.mr-9{margin-right:36px!important}.mr-10{margin-right:40px!important}.mr-11{margin-right:44px!important}.mr-12{margin-right:48px!important}.mr-13{margin-right:52px!important}.mr-14{margin-right:56px!important}.mr-15{margin-right:60px!important}.mr-16{margin-right:64px!important}.mr-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:4px!important}.mb-2{margin-bottom:8px!important}.mb-3{margin-bottom:12px!important}.mb-4{margin-bottom:16px!important}.mb-5{margin-bottom:20px!important}.mb-6{margin-bottom:24px!important}.mb-7{margin-bottom:28px!important}.mb-8{margin-bottom:32px!important}.mb-9{margin-bottom:36px!important}.mb-10{margin-bottom:40px!important}.mb-11{margin-bottom:44px!important}.mb-12{margin-bottom:48px!important}.mb-13{margin-bottom:52px!important}.mb-14{margin-bottom:56px!important}.mb-15{margin-bottom:60px!important}.mb-16{margin-bottom:64px!important}.mb-auto{margin-bottom:auto!important}.ml-0{margin-left:0!important}.ml-1{margin-left:4px!important}.ml-2{margin-left:8px!important}.ml-3{margin-left:12px!important}.ml-4{margin-left:16px!important}.ml-5{margin-left:20px!important}.ml-6{margin-left:24px!important}.ml-7{margin-left:28px!important}.ml-8{margin-left:32px!important}.ml-9{margin-left:36px!important}.ml-10{margin-left:40px!important}.ml-11{margin-left:44px!important}.ml-12{margin-left:48px!important}.ml-13{margin-left:52px!important}.ml-14{margin-left:56px!important}.ml-15{margin-left:60px!important}.ml-16{margin-left:64px!important}.ml-auto{margin-left:auto!important}.ms-0{margin-inline-start:0px!important}.ms-1{margin-inline-start:4px!important}.ms-2{margin-inline-start:8px!important}.ms-3{margin-inline-start:12px!important}.ms-4{margin-inline-start:16px!important}.ms-5{margin-inline-start:20px!important}.ms-6{margin-inline-start:24px!important}.ms-7{margin-inline-start:28px!important}.ms-8{margin-inline-start:32px!important}.ms-9{margin-inline-start:36px!important}.ms-10{margin-inline-start:40px!important}.ms-11{margin-inline-start:44px!important}.ms-12{margin-inline-start:48px!important}.ms-13{margin-inline-start:52px!important}.ms-14{margin-inline-start:56px!important}.ms-15{margin-inline-start:60px!important}.ms-16{margin-inline-start:64px!important}.ms-auto{margin-inline-start:auto!important}.me-0{margin-inline-end:0px!important}.me-1{margin-inline-end:4px!important}.me-2{margin-inline-end:8px!important}.me-3{margin-inline-end:12px!important}.me-4{margin-inline-end:16px!important}.me-5{margin-inline-end:20px!important}.me-6{margin-inline-end:24px!important}.me-7{margin-inline-end:28px!important}.me-8{margin-inline-end:32px!important}.me-9{margin-inline-end:36px!important}.me-10{margin-inline-end:40px!important}.me-11{margin-inline-end:44px!important}.me-12{margin-inline-end:48px!important}.me-13{margin-inline-end:52px!important}.me-14{margin-inline-end:56px!important}.me-15{margin-inline-end:60px!important}.me-16{margin-inline-end:64px!important}.me-auto{margin-inline-end:auto!important}.ma-n1{margin:-4px!important}.ma-n2{margin:-8px!important}.ma-n3{margin:-12px!important}.ma-n4{margin:-16px!important}.ma-n5{margin:-20px!important}.ma-n6{margin:-24px!important}.ma-n7{margin:-28px!important}.ma-n8{margin:-32px!important}.ma-n9{margin:-36px!important}.ma-n10{margin:-40px!important}.ma-n11{margin:-44px!important}.ma-n12{margin:-48px!important}.ma-n13{margin:-52px!important}.ma-n14{margin:-56px!important}.ma-n15{margin:-60px!important}.ma-n16{margin:-64px!important}.mx-n1{margin-right:-4px!important;margin-left:-4px!important}.mx-n2{margin-right:-8px!important;margin-left:-8px!important}.mx-n3{margin-right:-12px!important;margin-left:-12px!important}.mx-n4{margin-right:-16px!important;margin-left:-16px!important}.mx-n5{margin-right:-20px!important;margin-left:-20px!important}.mx-n6{margin-right:-24px!important;margin-left:-24px!important}.mx-n7{margin-right:-28px!important;margin-left:-28px!important}.mx-n8{margin-right:-32px!important;margin-left:-32px!important}.mx-n9{margin-right:-36px!important;margin-left:-36px!important}.mx-n10{margin-right:-40px!important;margin-left:-40px!important}.mx-n11{margin-right:-44px!important;margin-left:-44px!important}.mx-n12{margin-right:-48px!important;margin-left:-48px!important}.mx-n13{margin-right:-52px!important;margin-left:-52px!important}.mx-n14{margin-right:-56px!important;margin-left:-56px!important}.mx-n15{margin-right:-60px!important;margin-left:-60px!important}.mx-n16{margin-right:-64px!important;margin-left:-64px!important}.my-n1{margin-top:-4px!important;margin-bottom:-4px!important}.my-n2{margin-top:-8px!important;margin-bottom:-8px!important}.my-n3{margin-top:-12px!important;margin-bottom:-12px!important}.my-n4{margin-top:-16px!important;margin-bottom:-16px!important}.my-n5{margin-top:-20px!important;margin-bottom:-20px!important}.my-n6{margin-top:-24px!important;margin-bottom:-24px!important}.my-n7{margin-top:-28px!important;margin-bottom:-28px!important}.my-n8{margin-top:-32px!important;margin-bottom:-32px!important}.my-n9{margin-top:-36px!important;margin-bottom:-36px!important}.my-n10{margin-top:-40px!important;margin-bottom:-40px!important}.my-n11{margin-top:-44px!important;margin-bottom:-44px!important}.my-n12{margin-top:-48px!important;margin-bottom:-48px!important}.my-n13{margin-top:-52px!important;margin-bottom:-52px!important}.my-n14{margin-top:-56px!important;margin-bottom:-56px!important}.my-n15{margin-top:-60px!important;margin-bottom:-60px!important}.my-n16{margin-top:-64px!important;margin-bottom:-64px!important}.mt-n1{margin-top:-4px!important}.mt-n2{margin-top:-8px!important}.mt-n3{margin-top:-12px!important}.mt-n4{margin-top:-16px!important}.mt-n5{margin-top:-20px!important}.mt-n6{margin-top:-24px!important}.mt-n7{margin-top:-28px!important}.mt-n8{margin-top:-32px!important}.mt-n9{margin-top:-36px!important}.mt-n10{margin-top:-40px!important}.mt-n11{margin-top:-44px!important}.mt-n12{margin-top:-48px!important}.mt-n13{margin-top:-52px!important}.mt-n14{margin-top:-56px!important}.mt-n15{margin-top:-60px!important}.mt-n16{margin-top:-64px!important}.mr-n1{margin-right:-4px!important}.mr-n2{margin-right:-8px!important}.mr-n3{margin-right:-12px!important}.mr-n4{margin-right:-16px!important}.mr-n5{margin-right:-20px!important}.mr-n6{margin-right:-24px!important}.mr-n7{margin-right:-28px!important}.mr-n8{margin-right:-32px!important}.mr-n9{margin-right:-36px!important}.mr-n10{margin-right:-40px!important}.mr-n11{margin-right:-44px!important}.mr-n12{margin-right:-48px!important}.mr-n13{margin-right:-52px!important}.mr-n14{margin-right:-56px!important}.mr-n15{margin-right:-60px!important}.mr-n16{margin-right:-64px!important}.mb-n1{margin-bottom:-4px!important}.mb-n2{margin-bottom:-8px!important}.mb-n3{margin-bottom:-12px!important}.mb-n4{margin-bottom:-16px!important}.mb-n5{margin-bottom:-20px!important}.mb-n6{margin-bottom:-24px!important}.mb-n7{margin-bottom:-28px!important}.mb-n8{margin-bottom:-32px!important}.mb-n9{margin-bottom:-36px!important}.mb-n10{margin-bottom:-40px!important}.mb-n11{margin-bottom:-44px!important}.mb-n12{margin-bottom:-48px!important}.mb-n13{margin-bottom:-52px!important}.mb-n14{margin-bottom:-56px!important}.mb-n15{margin-bottom:-60px!important}.mb-n16{margin-bottom:-64px!important}.ml-n1{margin-left:-4px!important}.ml-n2{margin-left:-8px!important}.ml-n3{margin-left:-12px!important}.ml-n4{margin-left:-16px!important}.ml-n5{margin-left:-20px!important}.ml-n6{margin-left:-24px!important}.ml-n7{margin-left:-28px!important}.ml-n8{margin-left:-32px!important}.ml-n9{margin-left:-36px!important}.ml-n10{margin-left:-40px!important}.ml-n11{margin-left:-44px!important}.ml-n12{margin-left:-48px!important}.ml-n13{margin-left:-52px!important}.ml-n14{margin-left:-56px!important}.ml-n15{margin-left:-60px!important}.ml-n16{margin-left:-64px!important}.ms-n1{margin-inline-start:-4px!important}.ms-n2{margin-inline-start:-8px!important}.ms-n3{margin-inline-start:-12px!important}.ms-n4{margin-inline-start:-16px!important}.ms-n5{margin-inline-start:-20px!important}.ms-n6{margin-inline-start:-24px!important}.ms-n7{margin-inline-start:-28px!important}.ms-n8{margin-inline-start:-32px!important}.ms-n9{margin-inline-start:-36px!important}.ms-n10{margin-inline-start:-40px!important}.ms-n11{margin-inline-start:-44px!important}.ms-n12{margin-inline-start:-48px!important}.ms-n13{margin-inline-start:-52px!important}.ms-n14{margin-inline-start:-56px!important}.ms-n15{margin-inline-start:-60px!important}.ms-n16{margin-inline-start:-64px!important}.me-n1{margin-inline-end:-4px!important}.me-n2{margin-inline-end:-8px!important}.me-n3{margin-inline-end:-12px!important}.me-n4{margin-inline-end:-16px!important}.me-n5{margin-inline-end:-20px!important}.me-n6{margin-inline-end:-24px!important}.me-n7{margin-inline-end:-28px!important}.me-n8{margin-inline-end:-32px!important}.me-n9{margin-inline-end:-36px!important}.me-n10{margin-inline-end:-40px!important}.me-n11{margin-inline-end:-44px!important}.me-n12{margin-inline-end:-48px!important}.me-n13{margin-inline-end:-52px!important}.me-n14{margin-inline-end:-56px!important}.me-n15{margin-inline-end:-60px!important}.me-n16{margin-inline-end:-64px!important}.pa-0{padding:0!important}.pa-1{padding:4px!important}.pa-2{padding:8px!important}.pa-3{padding:12px!important}.pa-4{padding:16px!important}.pa-5{padding:20px!important}.pa-6{padding:24px!important}.pa-7{padding:28px!important}.pa-8{padding:32px!important}.pa-9{padding:36px!important}.pa-10{padding:40px!important}.pa-11{padding:44px!important}.pa-12{padding:48px!important}.pa-13{padding:52px!important}.pa-14{padding:56px!important}.pa-15{padding:60px!important}.pa-16{padding:64px!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:4px!important;padding-left:4px!important}.px-2{padding-right:8px!important;padding-left:8px!important}.px-3{padding-right:12px!important;padding-left:12px!important}.px-4{padding-right:16px!important;padding-left:16px!important}.px-5{padding-right:20px!important;padding-left:20px!important}.px-6{padding-right:24px!important;padding-left:24px!important}.px-7{padding-right:28px!important;padding-left:28px!important}.px-8{padding-right:32px!important;padding-left:32px!important}.px-9{padding-right:36px!important;padding-left:36px!important}.px-10{padding-right:40px!important;padding-left:40px!important}.px-11{padding-right:44px!important;padding-left:44px!important}.px-12{padding-right:48px!important;padding-left:48px!important}.px-13{padding-right:52px!important;padding-left:52px!important}.px-14{padding-right:56px!important;padding-left:56px!important}.px-15{padding-right:60px!important;padding-left:60px!important}.px-16{padding-right:64px!important;padding-left:64px!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:4px!important;padding-bottom:4px!important}.py-2{padding-top:8px!important;padding-bottom:8px!important}.py-3{padding-top:12px!important;padding-bottom:12px!important}.py-4{padding-top:16px!important;padding-bottom:16px!important}.py-5{padding-top:20px!important;padding-bottom:20px!important}.py-6{padding-top:24px!important;padding-bottom:24px!important}.py-7{padding-top:28px!important;padding-bottom:28px!important}.py-8{padding-top:32px!important;padding-bottom:32px!important}.py-9{padding-top:36px!important;padding-bottom:36px!important}.py-10{padding-top:40px!important;padding-bottom:40px!important}.py-11{padding-top:44px!important;padding-bottom:44px!important}.py-12{padding-top:48px!important;padding-bottom:48px!important}.py-13{padding-top:52px!important;padding-bottom:52px!important}.py-14{padding-top:56px!important;padding-bottom:56px!important}.py-15{padding-top:60px!important;padding-bottom:60px!important}.py-16{padding-top:64px!important;padding-bottom:64px!important}.pt-0{padding-top:0!important}.pt-1{padding-top:4px!important}.pt-2{padding-top:8px!important}.pt-3{padding-top:12px!important}.pt-4{padding-top:16px!important}.pt-5{padding-top:20px!important}.pt-6{padding-top:24px!important}.pt-7{padding-top:28px!important}.pt-8{padding-top:32px!important}.pt-9{padding-top:36px!important}.pt-10{padding-top:40px!important}.pt-11{padding-top:44px!important}.pt-12{padding-top:48px!important}.pt-13{padding-top:52px!important}.pt-14{padding-top:56px!important}.pt-15{padding-top:60px!important}.pt-16{padding-top:64px!important}.pr-0{padding-right:0!important}.pr-1{padding-right:4px!important}.pr-2{padding-right:8px!important}.pr-3{padding-right:12px!important}.pr-4{padding-right:16px!important}.pr-5{padding-right:20px!important}.pr-6{padding-right:24px!important}.pr-7{padding-right:28px!important}.pr-8{padding-right:32px!important}.pr-9{padding-right:36px!important}.pr-10{padding-right:40px!important}.pr-11{padding-right:44px!important}.pr-12{padding-right:48px!important}.pr-13{padding-right:52px!important}.pr-14{padding-right:56px!important}.pr-15{padding-right:60px!important}.pr-16{padding-right:64px!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:4px!important}.pb-2{padding-bottom:8px!important}.pb-3{padding-bottom:12px!important}.pb-4{padding-bottom:16px!important}.pb-5{padding-bottom:20px!important}.pb-6{padding-bottom:24px!important}.pb-7{padding-bottom:28px!important}.pb-8{padding-bottom:32px!important}.pb-9{padding-bottom:36px!important}.pb-10{padding-bottom:40px!important}.pb-11{padding-bottom:44px!important}.pb-12{padding-bottom:48px!important}.pb-13{padding-bottom:52px!important}.pb-14{padding-bottom:56px!important}.pb-15{padding-bottom:60px!important}.pb-16{padding-bottom:64px!important}.pl-0{padding-left:0!important}.pl-1{padding-left:4px!important}.pl-2{padding-left:8px!important}.pl-3{padding-left:12px!important}.pl-4{padding-left:16px!important}.pl-5{padding-left:20px!important}.pl-6{padding-left:24px!important}.pl-7{padding-left:28px!important}.pl-8{padding-left:32px!important}.pl-9{padding-left:36px!important}.pl-10{padding-left:40px!important}.pl-11{padding-left:44px!important}.pl-12{padding-left:48px!important}.pl-13{padding-left:52px!important}.pl-14{padding-left:56px!important}.pl-15{padding-left:60px!important}.pl-16{padding-left:64px!important}.ps-0{padding-inline-start:0px!important}.ps-1{padding-inline-start:4px!important}.ps-2{padding-inline-start:8px!important}.ps-3{padding-inline-start:12px!important}.ps-4{padding-inline-start:16px!important}.ps-5{padding-inline-start:20px!important}.ps-6{padding-inline-start:24px!important}.ps-7{padding-inline-start:28px!important}.ps-8{padding-inline-start:32px!important}.ps-9{padding-inline-start:36px!important}.ps-10{padding-inline-start:40px!important}.ps-11{padding-inline-start:44px!important}.ps-12{padding-inline-start:48px!important}.ps-13{padding-inline-start:52px!important}.ps-14{padding-inline-start:56px!important}.ps-15{padding-inline-start:60px!important}.ps-16{padding-inline-start:64px!important}.pe-0{padding-inline-end:0px!important}.pe-1{padding-inline-end:4px!important}.pe-2{padding-inline-end:8px!important}.pe-3{padding-inline-end:12px!important}.pe-4{padding-inline-end:16px!important}.pe-5{padding-inline-end:20px!important}.pe-6{padding-inline-end:24px!important}.pe-7{padding-inline-end:28px!important}.pe-8{padding-inline-end:32px!important}.pe-9{padding-inline-end:36px!important}.pe-10{padding-inline-end:40px!important}.pe-11{padding-inline-end:44px!important}.pe-12{padding-inline-end:48px!important}.pe-13{padding-inline-end:52px!important}.pe-14{padding-inline-end:56px!important}.pe-15{padding-inline-end:60px!important}.pe-16{padding-inline-end:64px!important}.rounded-0{border-radius:0!important}.rounded-sm{border-radius:6px!important}.rounded{border-radius:12px!important}.rounded-lg{border-radius:24px!important}.rounded-xl{border-radius:72px!important}.rounded-pill{border-radius:9999px!important}.rounded-circle{border-radius:50%!important}.rounded-shaped{border-radius:72px 0!important}.rounded-md{border-radius:12px!important}.rounded-t-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-t-sm{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-t{border-top-left-radius:12px!important;border-top-right-radius:12px!important}.rounded-t-lg{border-top-left-radius:24px!important;border-top-right-radius:24px!important}.rounded-t-xl{border-top-left-radius:72px!important;border-top-right-radius:72px!important}.rounded-t-pill{border-top-left-radius:9999px!important;border-top-right-radius:9999px!important}.rounded-t-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-t-shaped{border-top-left-radius:72px!important;border-top-right-radius:0!important}.rounded-t-md{border-top-left-radius:12px!important;border-top-right-radius:12px!important}.v-locale--is-ltr .rounded-e-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.v-locale--is-rtl .rounded-e-0{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.v-locale--is-ltr .rounded-e-sm{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.v-locale--is-rtl .rounded-e-sm{border-top-left-radius:6px!important;border-bottom-left-radius:6px!important}.v-locale--is-ltr .rounded-e{border-top-right-radius:12px!important;border-bottom-right-radius:12px!important}.v-locale--is-rtl .rounded-e{border-top-left-radius:12px!important;border-bottom-left-radius:12px!important}.v-locale--is-ltr .rounded-e-lg{border-top-right-radius:24px!important;border-bottom-right-radius:24px!important}.v-locale--is-rtl .rounded-e-lg{border-top-left-radius:24px!important;border-bottom-left-radius:24px!important}.v-locale--is-ltr .rounded-e-xl{border-top-right-radius:72px!important;border-bottom-right-radius:72px!important}.v-locale--is-rtl .rounded-e-xl{border-top-left-radius:72px!important;border-bottom-left-radius:72px!important}.v-locale--is-ltr .rounded-e-pill{border-top-right-radius:9999px!important;border-bottom-right-radius:9999px!important}.v-locale--is-rtl .rounded-e-pill{border-top-left-radius:9999px!important;border-bottom-left-radius:9999px!important}.v-locale--is-ltr .rounded-e-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.v-locale--is-rtl .rounded-e-circle{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.v-locale--is-ltr .rounded-e-shaped{border-top-right-radius:72px!important;border-bottom-right-radius:0!important}.v-locale--is-rtl .rounded-e-shaped{border-top-left-radius:72px!important;border-bottom-left-radius:0!important}.v-locale--is-ltr .rounded-e-md{border-top-right-radius:12px!important;border-bottom-right-radius:12px!important}.v-locale--is-rtl .rounded-e-md{border-top-left-radius:12px!important;border-bottom-left-radius:12px!important}.rounded-b-0{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.rounded-b-sm{border-bottom-left-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-b{border-bottom-left-radius:12px!important;border-bottom-right-radius:12px!important}.rounded-b-lg{border-bottom-left-radius:24px!important;border-bottom-right-radius:24px!important}.rounded-b-xl{border-bottom-left-radius:72px!important;border-bottom-right-radius:72px!important}.rounded-b-pill{border-bottom-left-radius:9999px!important;border-bottom-right-radius:9999px!important}.rounded-b-circle{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-b-shaped{border-bottom-left-radius:72px!important;border-bottom-right-radius:0!important}.rounded-b-md{border-bottom-left-radius:12px!important;border-bottom-right-radius:12px!important}.v-locale--is-ltr .rounded-s-0{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.v-locale--is-rtl .rounded-s-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.v-locale--is-ltr .rounded-s-sm{border-top-left-radius:6px!important;border-bottom-left-radius:6px!important}.v-locale--is-rtl .rounded-s-sm{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.v-locale--is-ltr .rounded-s{border-top-left-radius:12px!important;border-bottom-left-radius:12px!important}.v-locale--is-rtl .rounded-s{border-top-right-radius:12px!important;border-bottom-right-radius:12px!important}.v-locale--is-ltr .rounded-s-lg{border-top-left-radius:24px!important;border-bottom-left-radius:24px!important}.v-locale--is-rtl .rounded-s-lg{border-top-right-radius:24px!important;border-bottom-right-radius:24px!important}.v-locale--is-ltr .rounded-s-xl{border-top-left-radius:72px!important;border-bottom-left-radius:72px!important}.v-locale--is-rtl .rounded-s-xl{border-top-right-radius:72px!important;border-bottom-right-radius:72px!important}.v-locale--is-ltr .rounded-s-pill{border-top-left-radius:9999px!important;border-bottom-left-radius:9999px!important}.v-locale--is-rtl .rounded-s-pill{border-top-right-radius:9999px!important;border-bottom-right-radius:9999px!important}.v-locale--is-ltr .rounded-s-circle{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.v-locale--is-rtl .rounded-s-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.v-locale--is-ltr .rounded-s-shaped{border-top-left-radius:72px!important;border-bottom-left-radius:0!important}.v-locale--is-rtl .rounded-s-shaped{border-top-right-radius:72px!important;border-bottom-right-radius:0!important}.v-locale--is-ltr .rounded-s-md{border-top-left-radius:12px!important;border-bottom-left-radius:12px!important}.v-locale--is-rtl .rounded-s-md{border-top-right-radius:12px!important;border-bottom-right-radius:12px!important}.v-locale--is-ltr .rounded-ts-0{border-top-left-radius:0!important}.v-locale--is-rtl .rounded-ts-0{border-top-right-radius:0!important}.v-locale--is-ltr .rounded-ts-sm{border-top-left-radius:6px!important}.v-locale--is-rtl .rounded-ts-sm{border-top-right-radius:6px!important}.v-locale--is-ltr .rounded-ts{border-top-left-radius:12px!important}.v-locale--is-rtl .rounded-ts{border-top-right-radius:12px!important}.v-locale--is-ltr .rounded-ts-lg{border-top-left-radius:24px!important}.v-locale--is-rtl .rounded-ts-lg{border-top-right-radius:24px!important}.v-locale--is-ltr .rounded-ts-xl{border-top-left-radius:72px!important}.v-locale--is-rtl .rounded-ts-xl{border-top-right-radius:72px!important}.v-locale--is-ltr .rounded-ts-pill{border-top-left-radius:9999px!important}.v-locale--is-rtl .rounded-ts-pill{border-top-right-radius:9999px!important}.v-locale--is-ltr .rounded-ts-circle{border-top-left-radius:50%!important}.v-locale--is-rtl .rounded-ts-circle{border-top-right-radius:50%!important}.v-locale--is-ltr .rounded-ts-shaped{border-top-left-radius:72px 0!important}.v-locale--is-rtl .rounded-ts-shaped{border-top-right-radius:72px 0!important}.v-locale--is-ltr .rounded-ts-md{border-top-left-radius:12px!important}.v-locale--is-rtl .rounded-ts-md{border-top-right-radius:12px!important}.v-locale--is-ltr .rounded-te-0{border-top-right-radius:0!important}.v-locale--is-rtl .rounded-te-0{border-top-left-radius:0!important}.v-locale--is-ltr .rounded-te-sm{border-top-right-radius:6px!important}.v-locale--is-rtl .rounded-te-sm{border-top-left-radius:6px!important}.v-locale--is-ltr .rounded-te{border-top-right-radius:12px!important}.v-locale--is-rtl .rounded-te{border-top-left-radius:12px!important}.v-locale--is-ltr .rounded-te-lg{border-top-right-radius:24px!important}.v-locale--is-rtl .rounded-te-lg{border-top-left-radius:24px!important}.v-locale--is-ltr .rounded-te-xl{border-top-right-radius:72px!important}.v-locale--is-rtl .rounded-te-xl{border-top-left-radius:72px!important}.v-locale--is-ltr .rounded-te-pill{border-top-right-radius:9999px!important}.v-locale--is-rtl .rounded-te-pill{border-top-left-radius:9999px!important}.v-locale--is-ltr .rounded-te-circle{border-top-right-radius:50%!important}.v-locale--is-rtl .rounded-te-circle{border-top-left-radius:50%!important}.v-locale--is-ltr .rounded-te-shaped{border-top-right-radius:72px 0!important}.v-locale--is-rtl .rounded-te-shaped{border-top-left-radius:72px 0!important}.v-locale--is-ltr .rounded-te-md{border-top-right-radius:12px!important}.v-locale--is-rtl .rounded-te-md{border-top-left-radius:12px!important}.v-locale--is-ltr .rounded-be-0{border-bottom-right-radius:0!important}.v-locale--is-rtl .rounded-be-0{border-bottom-left-radius:0!important}.v-locale--is-ltr .rounded-be-sm{border-bottom-right-radius:6px!important}.v-locale--is-rtl .rounded-be-sm{border-bottom-left-radius:6px!important}.v-locale--is-ltr .rounded-be{border-bottom-right-radius:12px!important}.v-locale--is-rtl .rounded-be{border-bottom-left-radius:12px!important}.v-locale--is-ltr .rounded-be-lg{border-bottom-right-radius:24px!important}.v-locale--is-rtl .rounded-be-lg{border-bottom-left-radius:24px!important}.v-locale--is-ltr .rounded-be-xl{border-bottom-right-radius:72px!important}.v-locale--is-rtl .rounded-be-xl{border-bottom-left-radius:72px!important}.v-locale--is-ltr .rounded-be-pill{border-bottom-right-radius:9999px!important}.v-locale--is-rtl .rounded-be-pill{border-bottom-left-radius:9999px!important}.v-locale--is-ltr .rounded-be-circle{border-bottom-right-radius:50%!important}.v-locale--is-rtl .rounded-be-circle{border-bottom-left-radius:50%!important}.v-locale--is-ltr .rounded-be-shaped{border-bottom-right-radius:72px 0!important}.v-locale--is-rtl .rounded-be-shaped{border-bottom-left-radius:72px 0!important}.v-locale--is-ltr .rounded-be-md{border-bottom-right-radius:12px!important}.v-locale--is-rtl .rounded-be-md{border-bottom-left-radius:12px!important}.v-locale--is-ltr .rounded-bs-0{border-bottom-left-radius:0!important}.v-locale--is-rtl .rounded-bs-0{border-bottom-right-radius:0!important}.v-locale--is-ltr .rounded-bs-sm{border-bottom-left-radius:6px!important}.v-locale--is-rtl .rounded-bs-sm{border-bottom-right-radius:6px!important}.v-locale--is-ltr .rounded-bs{border-bottom-left-radius:12px!important}.v-locale--is-rtl .rounded-bs{border-bottom-right-radius:12px!important}.v-locale--is-ltr .rounded-bs-lg{border-bottom-left-radius:24px!important}.v-locale--is-rtl .rounded-bs-lg{border-bottom-right-radius:24px!important}.v-locale--is-ltr .rounded-bs-xl{border-bottom-left-radius:72px!important}.v-locale--is-rtl .rounded-bs-xl{border-bottom-right-radius:72px!important}.v-locale--is-ltr .rounded-bs-pill{border-bottom-left-radius:9999px!important}.v-locale--is-rtl .rounded-bs-pill{border-bottom-right-radius:9999px!important}.v-locale--is-ltr .rounded-bs-circle{border-bottom-left-radius:50%!important}.v-locale--is-rtl .rounded-bs-circle{border-bottom-right-radius:50%!important}.v-locale--is-ltr .rounded-bs-shaped{border-bottom-left-radius:72px 0!important}.v-locale--is-rtl .rounded-bs-shaped{border-bottom-right-radius:72px 0!important}.v-locale--is-ltr .rounded-bs-md{border-bottom-left-radius:12px!important}.v-locale--is-rtl .rounded-bs-md{border-bottom-right-radius:12px!important}.border-0{border-width:0!important;border-style:solid!important;border-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border{border-width:thin!important;border-style:solid!important;border-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-sm{border-width:1px!important;border-style:solid!important;border-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-md{border-width:2px!important;border-style:solid!important;border-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-lg{border-width:4px!important;border-style:solid!important;border-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-xl{border-width:8px!important;border-style:solid!important;border-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-opacity-0{--v-border-opacity: 0 !important}.border-opacity{--v-border-opacity: .12 !important}.border-opacity-25{--v-border-opacity: .25 !important}.border-opacity-50{--v-border-opacity: .5 !important}.border-opacity-75{--v-border-opacity: .75 !important}.border-opacity-100{--v-border-opacity: 1 !important}.border-t-0{border-block-start-width:0!important;border-block-start-style:solid!important;border-block-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-t{border-block-start-width:thin!important;border-block-start-style:solid!important;border-block-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-t-sm{border-block-start-width:1px!important;border-block-start-style:solid!important;border-block-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-t-md{border-block-start-width:2px!important;border-block-start-style:solid!important;border-block-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-t-lg{border-block-start-width:4px!important;border-block-start-style:solid!important;border-block-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-t-xl{border-block-start-width:8px!important;border-block-start-style:solid!important;border-block-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-e-0{border-inline-end-width:0!important;border-inline-end-style:solid!important;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-e{border-inline-end-width:thin!important;border-inline-end-style:solid!important;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-e-sm{border-inline-end-width:1px!important;border-inline-end-style:solid!important;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-e-md{border-inline-end-width:2px!important;border-inline-end-style:solid!important;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-e-lg{border-inline-end-width:4px!important;border-inline-end-style:solid!important;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-e-xl{border-inline-end-width:8px!important;border-inline-end-style:solid!important;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-b-0{border-block-end-width:0!important;border-block-end-style:solid!important;border-block-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-b{border-block-end-width:thin!important;border-block-end-style:solid!important;border-block-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-b-sm{border-block-end-width:1px!important;border-block-end-style:solid!important;border-block-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-b-md{border-block-end-width:2px!important;border-block-end-style:solid!important;border-block-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-b-lg{border-block-end-width:4px!important;border-block-end-style:solid!important;border-block-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-b-xl{border-block-end-width:8px!important;border-block-end-style:solid!important;border-block-end-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-s-0{border-inline-start-width:0!important;border-inline-start-style:solid!important;border-inline-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-s{border-inline-start-width:thin!important;border-inline-start-style:solid!important;border-inline-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-s-sm{border-inline-start-width:1px!important;border-inline-start-style:solid!important;border-inline-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-s-md{border-inline-start-width:2px!important;border-inline-start-style:solid!important;border-inline-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-s-lg{border-inline-start-width:4px!important;border-inline-start-style:solid!important;border-inline-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-s-xl{border-inline-start-width:8px!important;border-inline-start-style:solid!important;border-inline-start-color:rgba(var(--v-border-color),var(--v-border-opacity))!important}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}.border-none{border-style:none!important}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-start{text-align:start!important}.text-end{text-align:end!important}.text-decoration-line-through{text-decoration:line-through!important}.text-decoration-none{text-decoration:none!important}.text-decoration-overline{text-decoration:overline!important}.text-decoration-underline{text-decoration:underline!important}.text-wrap{white-space:normal!important}.text-no-wrap{white-space:nowrap!important}.text-pre{white-space:pre!important}.text-pre-line{white-space:pre-line!important}.text-pre-wrap{white-space:pre-wrap!important}.text-break{overflow-wrap:break-word!important;word-break:break-word!important}.text-high-emphasis{color:rgba(var(--v-theme-on-background),var(--v-high-emphasis-opacity))!important}.text-medium-emphasis{color:rgba(var(--v-theme-on-background),var(--v-medium-emphasis-opacity))!important}.text-disabled{color:rgba(var(--v-theme-on-background),var(--v-disabled-opacity))!important}.text-truncate{white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}.text-h1{font-size:2.125rem!important;font-weight:700;line-height:3.5rem;letter-spacing:-.015625em!important;font-family:inherit!important;text-transform:none!important}.text-h2{font-size:1.5rem!important;font-weight:700;line-height:2.5rem;letter-spacing:-.0083333333em!important;font-family:inherit!important;text-transform:none!important}.text-h3{font-size:1.25rem!important;font-weight:600;line-height:2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-h4{font-size:1rem!important;font-weight:600;line-height:1.5rem;letter-spacing:.0073529412em!important;font-family:inherit!important;text-transform:none!important}.text-h5{font-size:.875rem!important;font-weight:500;line-height:1.2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-h6{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.0125em!important;font-family:inherit!important;text-transform:none!important}.text-subtitle-1{font-size:.875rem!important;font-weight:500;line-height:1rem;letter-spacing:.009375em!important;font-family:inherit!important;text-transform:none!important}.text-subtitle-2{font-size:.75rem!important;font-weight:400;line-height:1rem;letter-spacing:.0071428571em!important;font-family:inherit!important;text-transform:none!important}.text-body-1{font-size:.875rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:inherit!important;text-transform:none!important}.text-body-2{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important;font-family:inherit!important;text-transform:none!important}.text-button{font-size:.875rem!important;font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;font-family:inherit!important;text-transform:uppercase!important}.text-caption{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important;font-family:inherit!important;text-transform:none!important}.text-overline{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;font-family:inherit!important;text-transform:uppercase!important}.text-none{text-transform:none!important}.text-capitalize{text-transform:capitalize!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.font-weight-thin{font-weight:100!important}.font-weight-light{font-weight:300!important}.font-weight-regular{font-weight:400!important}.font-weight-medium{font-weight:500!important}.font-weight-bold{font-weight:700!important}.font-weight-black{font-weight:900!important}.font-italic{font-style:italic!important}.text-mono{font-family:monospace!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-fixed{position:fixed!important}.position-absolute{position:absolute!important}.position-sticky{position:sticky!important}.fill-height{height:100%!important}.h-auto{height:auto!important}.h-screen{height:100vh!important}.h-0{height:0!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-screen{height:100dvh!important}.w-auto{width:auto!important}.w-0{width:0!important}.w-25{width:25%!important}.w-33{width:33%!important}.w-50{width:50%!important}.w-66{width:66%!important}.w-75{width:75%!important}.w-100{width:100%!important}@media (min-width: 600px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.float-sm-none{float:none!important}.float-sm-left{float:left!important}.float-sm-right{float:right!important}.v-locale--is-rtl .float-sm-end{float:left!important}.v-locale--is-rtl .float-sm-start,.v-locale--is-ltr .float-sm-end{float:right!important}.v-locale--is-ltr .float-sm-start{float:left!important}.flex-sm-fill,.flex-sm-1-1{flex:1 1 auto!important}.flex-sm-1-0{flex:1 0 auto!important}.flex-sm-0-1{flex:0 1 auto!important}.flex-sm-0-0{flex:0 0 auto!important}.flex-sm-1-1-100{flex:1 1 100%!important}.flex-sm-1-0-100{flex:1 0 100%!important}.flex-sm-0-1-100{flex:0 1 100%!important}.flex-sm-0-0-100{flex:0 0 100%!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-sm-start{justify-content:flex-start!important}.justify-sm-end{justify-content:flex-end!important}.justify-sm-center{justify-content:center!important}.justify-sm-space-between{justify-content:space-between!important}.justify-sm-space-around{justify-content:space-around!important}.justify-sm-space-evenly{justify-content:space-evenly!important}.align-sm-start{align-items:flex-start!important}.align-sm-end{align-items:flex-end!important}.align-sm-center{align-items:center!important}.align-sm-baseline{align-items:baseline!important}.align-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-space-between{align-content:space-between!important}.align-content-sm-space-around{align-content:space-around!important}.align-content-sm-space-evenly{align-content:space-evenly!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-6{order:6!important}.order-sm-7{order:7!important}.order-sm-8{order:8!important}.order-sm-9{order:9!important}.order-sm-10{order:10!important}.order-sm-11{order:11!important}.order-sm-12{order:12!important}.order-sm-last{order:13!important}.ma-sm-0{margin:0!important}.ma-sm-1{margin:4px!important}.ma-sm-2{margin:8px!important}.ma-sm-3{margin:12px!important}.ma-sm-4{margin:16px!important}.ma-sm-5{margin:20px!important}.ma-sm-6{margin:24px!important}.ma-sm-7{margin:28px!important}.ma-sm-8{margin:32px!important}.ma-sm-9{margin:36px!important}.ma-sm-10{margin:40px!important}.ma-sm-11{margin:44px!important}.ma-sm-12{margin:48px!important}.ma-sm-13{margin:52px!important}.ma-sm-14{margin:56px!important}.ma-sm-15{margin:60px!important}.ma-sm-16{margin:64px!important}.ma-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:4px!important;margin-left:4px!important}.mx-sm-2{margin-right:8px!important;margin-left:8px!important}.mx-sm-3{margin-right:12px!important;margin-left:12px!important}.mx-sm-4{margin-right:16px!important;margin-left:16px!important}.mx-sm-5{margin-right:20px!important;margin-left:20px!important}.mx-sm-6{margin-right:24px!important;margin-left:24px!important}.mx-sm-7{margin-right:28px!important;margin-left:28px!important}.mx-sm-8{margin-right:32px!important;margin-left:32px!important}.mx-sm-9{margin-right:36px!important;margin-left:36px!important}.mx-sm-10{margin-right:40px!important;margin-left:40px!important}.mx-sm-11{margin-right:44px!important;margin-left:44px!important}.mx-sm-12{margin-right:48px!important;margin-left:48px!important}.mx-sm-13{margin-right:52px!important;margin-left:52px!important}.mx-sm-14{margin-right:56px!important;margin-left:56px!important}.mx-sm-15{margin-right:60px!important;margin-left:60px!important}.mx-sm-16{margin-right:64px!important;margin-left:64px!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:4px!important;margin-bottom:4px!important}.my-sm-2{margin-top:8px!important;margin-bottom:8px!important}.my-sm-3{margin-top:12px!important;margin-bottom:12px!important}.my-sm-4{margin-top:16px!important;margin-bottom:16px!important}.my-sm-5{margin-top:20px!important;margin-bottom:20px!important}.my-sm-6{margin-top:24px!important;margin-bottom:24px!important}.my-sm-7{margin-top:28px!important;margin-bottom:28px!important}.my-sm-8{margin-top:32px!important;margin-bottom:32px!important}.my-sm-9{margin-top:36px!important;margin-bottom:36px!important}.my-sm-10{margin-top:40px!important;margin-bottom:40px!important}.my-sm-11{margin-top:44px!important;margin-bottom:44px!important}.my-sm-12{margin-top:48px!important;margin-bottom:48px!important}.my-sm-13{margin-top:52px!important;margin-bottom:52px!important}.my-sm-14{margin-top:56px!important;margin-bottom:56px!important}.my-sm-15{margin-top:60px!important;margin-bottom:60px!important}.my-sm-16{margin-top:64px!important;margin-bottom:64px!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:4px!important}.mt-sm-2{margin-top:8px!important}.mt-sm-3{margin-top:12px!important}.mt-sm-4{margin-top:16px!important}.mt-sm-5{margin-top:20px!important}.mt-sm-6{margin-top:24px!important}.mt-sm-7{margin-top:28px!important}.mt-sm-8{margin-top:32px!important}.mt-sm-9{margin-top:36px!important}.mt-sm-10{margin-top:40px!important}.mt-sm-11{margin-top:44px!important}.mt-sm-12{margin-top:48px!important}.mt-sm-13{margin-top:52px!important}.mt-sm-14{margin-top:56px!important}.mt-sm-15{margin-top:60px!important}.mt-sm-16{margin-top:64px!important}.mt-sm-auto{margin-top:auto!important}.mr-sm-0{margin-right:0!important}.mr-sm-1{margin-right:4px!important}.mr-sm-2{margin-right:8px!important}.mr-sm-3{margin-right:12px!important}.mr-sm-4{margin-right:16px!important}.mr-sm-5{margin-right:20px!important}.mr-sm-6{margin-right:24px!important}.mr-sm-7{margin-right:28px!important}.mr-sm-8{margin-right:32px!important}.mr-sm-9{margin-right:36px!important}.mr-sm-10{margin-right:40px!important}.mr-sm-11{margin-right:44px!important}.mr-sm-12{margin-right:48px!important}.mr-sm-13{margin-right:52px!important}.mr-sm-14{margin-right:56px!important}.mr-sm-15{margin-right:60px!important}.mr-sm-16{margin-right:64px!important}.mr-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:4px!important}.mb-sm-2{margin-bottom:8px!important}.mb-sm-3{margin-bottom:12px!important}.mb-sm-4{margin-bottom:16px!important}.mb-sm-5{margin-bottom:20px!important}.mb-sm-6{margin-bottom:24px!important}.mb-sm-7{margin-bottom:28px!important}.mb-sm-8{margin-bottom:32px!important}.mb-sm-9{margin-bottom:36px!important}.mb-sm-10{margin-bottom:40px!important}.mb-sm-11{margin-bottom:44px!important}.mb-sm-12{margin-bottom:48px!important}.mb-sm-13{margin-bottom:52px!important}.mb-sm-14{margin-bottom:56px!important}.mb-sm-15{margin-bottom:60px!important}.mb-sm-16{margin-bottom:64px!important}.mb-sm-auto{margin-bottom:auto!important}.ml-sm-0{margin-left:0!important}.ml-sm-1{margin-left:4px!important}.ml-sm-2{margin-left:8px!important}.ml-sm-3{margin-left:12px!important}.ml-sm-4{margin-left:16px!important}.ml-sm-5{margin-left:20px!important}.ml-sm-6{margin-left:24px!important}.ml-sm-7{margin-left:28px!important}.ml-sm-8{margin-left:32px!important}.ml-sm-9{margin-left:36px!important}.ml-sm-10{margin-left:40px!important}.ml-sm-11{margin-left:44px!important}.ml-sm-12{margin-left:48px!important}.ml-sm-13{margin-left:52px!important}.ml-sm-14{margin-left:56px!important}.ml-sm-15{margin-left:60px!important}.ml-sm-16{margin-left:64px!important}.ml-sm-auto{margin-left:auto!important}.ms-sm-0{margin-inline-start:0px!important}.ms-sm-1{margin-inline-start:4px!important}.ms-sm-2{margin-inline-start:8px!important}.ms-sm-3{margin-inline-start:12px!important}.ms-sm-4{margin-inline-start:16px!important}.ms-sm-5{margin-inline-start:20px!important}.ms-sm-6{margin-inline-start:24px!important}.ms-sm-7{margin-inline-start:28px!important}.ms-sm-8{margin-inline-start:32px!important}.ms-sm-9{margin-inline-start:36px!important}.ms-sm-10{margin-inline-start:40px!important}.ms-sm-11{margin-inline-start:44px!important}.ms-sm-12{margin-inline-start:48px!important}.ms-sm-13{margin-inline-start:52px!important}.ms-sm-14{margin-inline-start:56px!important}.ms-sm-15{margin-inline-start:60px!important}.ms-sm-16{margin-inline-start:64px!important}.ms-sm-auto{margin-inline-start:auto!important}.me-sm-0{margin-inline-end:0px!important}.me-sm-1{margin-inline-end:4px!important}.me-sm-2{margin-inline-end:8px!important}.me-sm-3{margin-inline-end:12px!important}.me-sm-4{margin-inline-end:16px!important}.me-sm-5{margin-inline-end:20px!important}.me-sm-6{margin-inline-end:24px!important}.me-sm-7{margin-inline-end:28px!important}.me-sm-8{margin-inline-end:32px!important}.me-sm-9{margin-inline-end:36px!important}.me-sm-10{margin-inline-end:40px!important}.me-sm-11{margin-inline-end:44px!important}.me-sm-12{margin-inline-end:48px!important}.me-sm-13{margin-inline-end:52px!important}.me-sm-14{margin-inline-end:56px!important}.me-sm-15{margin-inline-end:60px!important}.me-sm-16{margin-inline-end:64px!important}.me-sm-auto{margin-inline-end:auto!important}.ma-sm-n1{margin:-4px!important}.ma-sm-n2{margin:-8px!important}.ma-sm-n3{margin:-12px!important}.ma-sm-n4{margin:-16px!important}.ma-sm-n5{margin:-20px!important}.ma-sm-n6{margin:-24px!important}.ma-sm-n7{margin:-28px!important}.ma-sm-n8{margin:-32px!important}.ma-sm-n9{margin:-36px!important}.ma-sm-n10{margin:-40px!important}.ma-sm-n11{margin:-44px!important}.ma-sm-n12{margin:-48px!important}.ma-sm-n13{margin:-52px!important}.ma-sm-n14{margin:-56px!important}.ma-sm-n15{margin:-60px!important}.ma-sm-n16{margin:-64px!important}.mx-sm-n1{margin-right:-4px!important;margin-left:-4px!important}.mx-sm-n2{margin-right:-8px!important;margin-left:-8px!important}.mx-sm-n3{margin-right:-12px!important;margin-left:-12px!important}.mx-sm-n4{margin-right:-16px!important;margin-left:-16px!important}.mx-sm-n5{margin-right:-20px!important;margin-left:-20px!important}.mx-sm-n6{margin-right:-24px!important;margin-left:-24px!important}.mx-sm-n7{margin-right:-28px!important;margin-left:-28px!important}.mx-sm-n8{margin-right:-32px!important;margin-left:-32px!important}.mx-sm-n9{margin-right:-36px!important;margin-left:-36px!important}.mx-sm-n10{margin-right:-40px!important;margin-left:-40px!important}.mx-sm-n11{margin-right:-44px!important;margin-left:-44px!important}.mx-sm-n12{margin-right:-48px!important;margin-left:-48px!important}.mx-sm-n13{margin-right:-52px!important;margin-left:-52px!important}.mx-sm-n14{margin-right:-56px!important;margin-left:-56px!important}.mx-sm-n15{margin-right:-60px!important;margin-left:-60px!important}.mx-sm-n16{margin-right:-64px!important;margin-left:-64px!important}.my-sm-n1{margin-top:-4px!important;margin-bottom:-4px!important}.my-sm-n2{margin-top:-8px!important;margin-bottom:-8px!important}.my-sm-n3{margin-top:-12px!important;margin-bottom:-12px!important}.my-sm-n4{margin-top:-16px!important;margin-bottom:-16px!important}.my-sm-n5{margin-top:-20px!important;margin-bottom:-20px!important}.my-sm-n6{margin-top:-24px!important;margin-bottom:-24px!important}.my-sm-n7{margin-top:-28px!important;margin-bottom:-28px!important}.my-sm-n8{margin-top:-32px!important;margin-bottom:-32px!important}.my-sm-n9{margin-top:-36px!important;margin-bottom:-36px!important}.my-sm-n10{margin-top:-40px!important;margin-bottom:-40px!important}.my-sm-n11{margin-top:-44px!important;margin-bottom:-44px!important}.my-sm-n12{margin-top:-48px!important;margin-bottom:-48px!important}.my-sm-n13{margin-top:-52px!important;margin-bottom:-52px!important}.my-sm-n14{margin-top:-56px!important;margin-bottom:-56px!important}.my-sm-n15{margin-top:-60px!important;margin-bottom:-60px!important}.my-sm-n16{margin-top:-64px!important;margin-bottom:-64px!important}.mt-sm-n1{margin-top:-4px!important}.mt-sm-n2{margin-top:-8px!important}.mt-sm-n3{margin-top:-12px!important}.mt-sm-n4{margin-top:-16px!important}.mt-sm-n5{margin-top:-20px!important}.mt-sm-n6{margin-top:-24px!important}.mt-sm-n7{margin-top:-28px!important}.mt-sm-n8{margin-top:-32px!important}.mt-sm-n9{margin-top:-36px!important}.mt-sm-n10{margin-top:-40px!important}.mt-sm-n11{margin-top:-44px!important}.mt-sm-n12{margin-top:-48px!important}.mt-sm-n13{margin-top:-52px!important}.mt-sm-n14{margin-top:-56px!important}.mt-sm-n15{margin-top:-60px!important}.mt-sm-n16{margin-top:-64px!important}.mr-sm-n1{margin-right:-4px!important}.mr-sm-n2{margin-right:-8px!important}.mr-sm-n3{margin-right:-12px!important}.mr-sm-n4{margin-right:-16px!important}.mr-sm-n5{margin-right:-20px!important}.mr-sm-n6{margin-right:-24px!important}.mr-sm-n7{margin-right:-28px!important}.mr-sm-n8{margin-right:-32px!important}.mr-sm-n9{margin-right:-36px!important}.mr-sm-n10{margin-right:-40px!important}.mr-sm-n11{margin-right:-44px!important}.mr-sm-n12{margin-right:-48px!important}.mr-sm-n13{margin-right:-52px!important}.mr-sm-n14{margin-right:-56px!important}.mr-sm-n15{margin-right:-60px!important}.mr-sm-n16{margin-right:-64px!important}.mb-sm-n1{margin-bottom:-4px!important}.mb-sm-n2{margin-bottom:-8px!important}.mb-sm-n3{margin-bottom:-12px!important}.mb-sm-n4{margin-bottom:-16px!important}.mb-sm-n5{margin-bottom:-20px!important}.mb-sm-n6{margin-bottom:-24px!important}.mb-sm-n7{margin-bottom:-28px!important}.mb-sm-n8{margin-bottom:-32px!important}.mb-sm-n9{margin-bottom:-36px!important}.mb-sm-n10{margin-bottom:-40px!important}.mb-sm-n11{margin-bottom:-44px!important}.mb-sm-n12{margin-bottom:-48px!important}.mb-sm-n13{margin-bottom:-52px!important}.mb-sm-n14{margin-bottom:-56px!important}.mb-sm-n15{margin-bottom:-60px!important}.mb-sm-n16{margin-bottom:-64px!important}.ml-sm-n1{margin-left:-4px!important}.ml-sm-n2{margin-left:-8px!important}.ml-sm-n3{margin-left:-12px!important}.ml-sm-n4{margin-left:-16px!important}.ml-sm-n5{margin-left:-20px!important}.ml-sm-n6{margin-left:-24px!important}.ml-sm-n7{margin-left:-28px!important}.ml-sm-n8{margin-left:-32px!important}.ml-sm-n9{margin-left:-36px!important}.ml-sm-n10{margin-left:-40px!important}.ml-sm-n11{margin-left:-44px!important}.ml-sm-n12{margin-left:-48px!important}.ml-sm-n13{margin-left:-52px!important}.ml-sm-n14{margin-left:-56px!important}.ml-sm-n15{margin-left:-60px!important}.ml-sm-n16{margin-left:-64px!important}.ms-sm-n1{margin-inline-start:-4px!important}.ms-sm-n2{margin-inline-start:-8px!important}.ms-sm-n3{margin-inline-start:-12px!important}.ms-sm-n4{margin-inline-start:-16px!important}.ms-sm-n5{margin-inline-start:-20px!important}.ms-sm-n6{margin-inline-start:-24px!important}.ms-sm-n7{margin-inline-start:-28px!important}.ms-sm-n8{margin-inline-start:-32px!important}.ms-sm-n9{margin-inline-start:-36px!important}.ms-sm-n10{margin-inline-start:-40px!important}.ms-sm-n11{margin-inline-start:-44px!important}.ms-sm-n12{margin-inline-start:-48px!important}.ms-sm-n13{margin-inline-start:-52px!important}.ms-sm-n14{margin-inline-start:-56px!important}.ms-sm-n15{margin-inline-start:-60px!important}.ms-sm-n16{margin-inline-start:-64px!important}.me-sm-n1{margin-inline-end:-4px!important}.me-sm-n2{margin-inline-end:-8px!important}.me-sm-n3{margin-inline-end:-12px!important}.me-sm-n4{margin-inline-end:-16px!important}.me-sm-n5{margin-inline-end:-20px!important}.me-sm-n6{margin-inline-end:-24px!important}.me-sm-n7{margin-inline-end:-28px!important}.me-sm-n8{margin-inline-end:-32px!important}.me-sm-n9{margin-inline-end:-36px!important}.me-sm-n10{margin-inline-end:-40px!important}.me-sm-n11{margin-inline-end:-44px!important}.me-sm-n12{margin-inline-end:-48px!important}.me-sm-n13{margin-inline-end:-52px!important}.me-sm-n14{margin-inline-end:-56px!important}.me-sm-n15{margin-inline-end:-60px!important}.me-sm-n16{margin-inline-end:-64px!important}.pa-sm-0{padding:0!important}.pa-sm-1{padding:4px!important}.pa-sm-2{padding:8px!important}.pa-sm-3{padding:12px!important}.pa-sm-4{padding:16px!important}.pa-sm-5{padding:20px!important}.pa-sm-6{padding:24px!important}.pa-sm-7{padding:28px!important}.pa-sm-8{padding:32px!important}.pa-sm-9{padding:36px!important}.pa-sm-10{padding:40px!important}.pa-sm-11{padding:44px!important}.pa-sm-12{padding:48px!important}.pa-sm-13{padding:52px!important}.pa-sm-14{padding:56px!important}.pa-sm-15{padding:60px!important}.pa-sm-16{padding:64px!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:4px!important;padding-left:4px!important}.px-sm-2{padding-right:8px!important;padding-left:8px!important}.px-sm-3{padding-right:12px!important;padding-left:12px!important}.px-sm-4{padding-right:16px!important;padding-left:16px!important}.px-sm-5{padding-right:20px!important;padding-left:20px!important}.px-sm-6{padding-right:24px!important;padding-left:24px!important}.px-sm-7{padding-right:28px!important;padding-left:28px!important}.px-sm-8{padding-right:32px!important;padding-left:32px!important}.px-sm-9{padding-right:36px!important;padding-left:36px!important}.px-sm-10{padding-right:40px!important;padding-left:40px!important}.px-sm-11{padding-right:44px!important;padding-left:44px!important}.px-sm-12{padding-right:48px!important;padding-left:48px!important}.px-sm-13{padding-right:52px!important;padding-left:52px!important}.px-sm-14{padding-right:56px!important;padding-left:56px!important}.px-sm-15{padding-right:60px!important;padding-left:60px!important}.px-sm-16{padding-right:64px!important;padding-left:64px!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:4px!important;padding-bottom:4px!important}.py-sm-2{padding-top:8px!important;padding-bottom:8px!important}.py-sm-3{padding-top:12px!important;padding-bottom:12px!important}.py-sm-4{padding-top:16px!important;padding-bottom:16px!important}.py-sm-5{padding-top:20px!important;padding-bottom:20px!important}.py-sm-6{padding-top:24px!important;padding-bottom:24px!important}.py-sm-7{padding-top:28px!important;padding-bottom:28px!important}.py-sm-8{padding-top:32px!important;padding-bottom:32px!important}.py-sm-9{padding-top:36px!important;padding-bottom:36px!important}.py-sm-10{padding-top:40px!important;padding-bottom:40px!important}.py-sm-11{padding-top:44px!important;padding-bottom:44px!important}.py-sm-12{padding-top:48px!important;padding-bottom:48px!important}.py-sm-13{padding-top:52px!important;padding-bottom:52px!important}.py-sm-14{padding-top:56px!important;padding-bottom:56px!important}.py-sm-15{padding-top:60px!important;padding-bottom:60px!important}.py-sm-16{padding-top:64px!important;padding-bottom:64px!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:4px!important}.pt-sm-2{padding-top:8px!important}.pt-sm-3{padding-top:12px!important}.pt-sm-4{padding-top:16px!important}.pt-sm-5{padding-top:20px!important}.pt-sm-6{padding-top:24px!important}.pt-sm-7{padding-top:28px!important}.pt-sm-8{padding-top:32px!important}.pt-sm-9{padding-top:36px!important}.pt-sm-10{padding-top:40px!important}.pt-sm-11{padding-top:44px!important}.pt-sm-12{padding-top:48px!important}.pt-sm-13{padding-top:52px!important}.pt-sm-14{padding-top:56px!important}.pt-sm-15{padding-top:60px!important}.pt-sm-16{padding-top:64px!important}.pr-sm-0{padding-right:0!important}.pr-sm-1{padding-right:4px!important}.pr-sm-2{padding-right:8px!important}.pr-sm-3{padding-right:12px!important}.pr-sm-4{padding-right:16px!important}.pr-sm-5{padding-right:20px!important}.pr-sm-6{padding-right:24px!important}.pr-sm-7{padding-right:28px!important}.pr-sm-8{padding-right:32px!important}.pr-sm-9{padding-right:36px!important}.pr-sm-10{padding-right:40px!important}.pr-sm-11{padding-right:44px!important}.pr-sm-12{padding-right:48px!important}.pr-sm-13{padding-right:52px!important}.pr-sm-14{padding-right:56px!important}.pr-sm-15{padding-right:60px!important}.pr-sm-16{padding-right:64px!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:4px!important}.pb-sm-2{padding-bottom:8px!important}.pb-sm-3{padding-bottom:12px!important}.pb-sm-4{padding-bottom:16px!important}.pb-sm-5{padding-bottom:20px!important}.pb-sm-6{padding-bottom:24px!important}.pb-sm-7{padding-bottom:28px!important}.pb-sm-8{padding-bottom:32px!important}.pb-sm-9{padding-bottom:36px!important}.pb-sm-10{padding-bottom:40px!important}.pb-sm-11{padding-bottom:44px!important}.pb-sm-12{padding-bottom:48px!important}.pb-sm-13{padding-bottom:52px!important}.pb-sm-14{padding-bottom:56px!important}.pb-sm-15{padding-bottom:60px!important}.pb-sm-16{padding-bottom:64px!important}.pl-sm-0{padding-left:0!important}.pl-sm-1{padding-left:4px!important}.pl-sm-2{padding-left:8px!important}.pl-sm-3{padding-left:12px!important}.pl-sm-4{padding-left:16px!important}.pl-sm-5{padding-left:20px!important}.pl-sm-6{padding-left:24px!important}.pl-sm-7{padding-left:28px!important}.pl-sm-8{padding-left:32px!important}.pl-sm-9{padding-left:36px!important}.pl-sm-10{padding-left:40px!important}.pl-sm-11{padding-left:44px!important}.pl-sm-12{padding-left:48px!important}.pl-sm-13{padding-left:52px!important}.pl-sm-14{padding-left:56px!important}.pl-sm-15{padding-left:60px!important}.pl-sm-16{padding-left:64px!important}.ps-sm-0{padding-inline-start:0px!important}.ps-sm-1{padding-inline-start:4px!important}.ps-sm-2{padding-inline-start:8px!important}.ps-sm-3{padding-inline-start:12px!important}.ps-sm-4{padding-inline-start:16px!important}.ps-sm-5{padding-inline-start:20px!important}.ps-sm-6{padding-inline-start:24px!important}.ps-sm-7{padding-inline-start:28px!important}.ps-sm-8{padding-inline-start:32px!important}.ps-sm-9{padding-inline-start:36px!important}.ps-sm-10{padding-inline-start:40px!important}.ps-sm-11{padding-inline-start:44px!important}.ps-sm-12{padding-inline-start:48px!important}.ps-sm-13{padding-inline-start:52px!important}.ps-sm-14{padding-inline-start:56px!important}.ps-sm-15{padding-inline-start:60px!important}.ps-sm-16{padding-inline-start:64px!important}.pe-sm-0{padding-inline-end:0px!important}.pe-sm-1{padding-inline-end:4px!important}.pe-sm-2{padding-inline-end:8px!important}.pe-sm-3{padding-inline-end:12px!important}.pe-sm-4{padding-inline-end:16px!important}.pe-sm-5{padding-inline-end:20px!important}.pe-sm-6{padding-inline-end:24px!important}.pe-sm-7{padding-inline-end:28px!important}.pe-sm-8{padding-inline-end:32px!important}.pe-sm-9{padding-inline-end:36px!important}.pe-sm-10{padding-inline-end:40px!important}.pe-sm-11{padding-inline-end:44px!important}.pe-sm-12{padding-inline-end:48px!important}.pe-sm-13{padding-inline-end:52px!important}.pe-sm-14{padding-inline-end:56px!important}.pe-sm-15{padding-inline-end:60px!important}.pe-sm-16{padding-inline-end:64px!important}.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}.text-sm-justify{text-align:justify!important}.text-sm-start{text-align:start!important}.text-sm-end{text-align:end!important}.text-sm-h1{font-size:2.125rem!important;font-weight:700;line-height:3.5rem;letter-spacing:-.015625em!important;font-family:inherit!important;text-transform:none!important}.text-sm-h2{font-size:1.5rem!important;font-weight:700;line-height:2.5rem;letter-spacing:-.0083333333em!important;font-family:inherit!important;text-transform:none!important}.text-sm-h3{font-size:1.25rem!important;font-weight:600;line-height:2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-sm-h4{font-size:1rem!important;font-weight:600;line-height:1.5rem;letter-spacing:.0073529412em!important;font-family:inherit!important;text-transform:none!important}.text-sm-h5{font-size:.875rem!important;font-weight:500;line-height:1.2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-sm-h6{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.0125em!important;font-family:inherit!important;text-transform:none!important}.text-sm-subtitle-1{font-size:.875rem!important;font-weight:500;line-height:1rem;letter-spacing:.009375em!important;font-family:inherit!important;text-transform:none!important}.text-sm-subtitle-2{font-size:.75rem!important;font-weight:400;line-height:1rem;letter-spacing:.0071428571em!important;font-family:inherit!important;text-transform:none!important}.text-sm-body-1{font-size:.875rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:inherit!important;text-transform:none!important}.text-sm-body-2{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important;font-family:inherit!important;text-transform:none!important}.text-sm-button{font-size:.875rem!important;font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;font-family:inherit!important;text-transform:uppercase!important}.text-sm-caption{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important;font-family:inherit!important;text-transform:none!important}.text-sm-overline{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;font-family:inherit!important;text-transform:uppercase!important}}@media (min-width: 960px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.float-md-none{float:none!important}.float-md-left{float:left!important}.float-md-right{float:right!important}.v-locale--is-rtl .float-md-end{float:left!important}.v-locale--is-rtl .float-md-start,.v-locale--is-ltr .float-md-end{float:right!important}.v-locale--is-ltr .float-md-start{float:left!important}.flex-md-fill,.flex-md-1-1{flex:1 1 auto!important}.flex-md-1-0{flex:1 0 auto!important}.flex-md-0-1{flex:0 1 auto!important}.flex-md-0-0{flex:0 0 auto!important}.flex-md-1-1-100{flex:1 1 100%!important}.flex-md-1-0-100{flex:1 0 100%!important}.flex-md-0-1-100{flex:0 1 100%!important}.flex-md-0-0-100{flex:0 0 100%!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-md-start{justify-content:flex-start!important}.justify-md-end{justify-content:flex-end!important}.justify-md-center{justify-content:center!important}.justify-md-space-between{justify-content:space-between!important}.justify-md-space-around{justify-content:space-around!important}.justify-md-space-evenly{justify-content:space-evenly!important}.align-md-start{align-items:flex-start!important}.align-md-end{align-items:flex-end!important}.align-md-center{align-items:center!important}.align-md-baseline{align-items:baseline!important}.align-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-space-between{align-content:space-between!important}.align-content-md-space-around{align-content:space-around!important}.align-content-md-space-evenly{align-content:space-evenly!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-6{order:6!important}.order-md-7{order:7!important}.order-md-8{order:8!important}.order-md-9{order:9!important}.order-md-10{order:10!important}.order-md-11{order:11!important}.order-md-12{order:12!important}.order-md-last{order:13!important}.ma-md-0{margin:0!important}.ma-md-1{margin:4px!important}.ma-md-2{margin:8px!important}.ma-md-3{margin:12px!important}.ma-md-4{margin:16px!important}.ma-md-5{margin:20px!important}.ma-md-6{margin:24px!important}.ma-md-7{margin:28px!important}.ma-md-8{margin:32px!important}.ma-md-9{margin:36px!important}.ma-md-10{margin:40px!important}.ma-md-11{margin:44px!important}.ma-md-12{margin:48px!important}.ma-md-13{margin:52px!important}.ma-md-14{margin:56px!important}.ma-md-15{margin:60px!important}.ma-md-16{margin:64px!important}.ma-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:4px!important;margin-left:4px!important}.mx-md-2{margin-right:8px!important;margin-left:8px!important}.mx-md-3{margin-right:12px!important;margin-left:12px!important}.mx-md-4{margin-right:16px!important;margin-left:16px!important}.mx-md-5{margin-right:20px!important;margin-left:20px!important}.mx-md-6{margin-right:24px!important;margin-left:24px!important}.mx-md-7{margin-right:28px!important;margin-left:28px!important}.mx-md-8{margin-right:32px!important;margin-left:32px!important}.mx-md-9{margin-right:36px!important;margin-left:36px!important}.mx-md-10{margin-right:40px!important;margin-left:40px!important}.mx-md-11{margin-right:44px!important;margin-left:44px!important}.mx-md-12{margin-right:48px!important;margin-left:48px!important}.mx-md-13{margin-right:52px!important;margin-left:52px!important}.mx-md-14{margin-right:56px!important;margin-left:56px!important}.mx-md-15{margin-right:60px!important;margin-left:60px!important}.mx-md-16{margin-right:64px!important;margin-left:64px!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:4px!important;margin-bottom:4px!important}.my-md-2{margin-top:8px!important;margin-bottom:8px!important}.my-md-3{margin-top:12px!important;margin-bottom:12px!important}.my-md-4{margin-top:16px!important;margin-bottom:16px!important}.my-md-5{margin-top:20px!important;margin-bottom:20px!important}.my-md-6{margin-top:24px!important;margin-bottom:24px!important}.my-md-7{margin-top:28px!important;margin-bottom:28px!important}.my-md-8{margin-top:32px!important;margin-bottom:32px!important}.my-md-9{margin-top:36px!important;margin-bottom:36px!important}.my-md-10{margin-top:40px!important;margin-bottom:40px!important}.my-md-11{margin-top:44px!important;margin-bottom:44px!important}.my-md-12{margin-top:48px!important;margin-bottom:48px!important}.my-md-13{margin-top:52px!important;margin-bottom:52px!important}.my-md-14{margin-top:56px!important;margin-bottom:56px!important}.my-md-15{margin-top:60px!important;margin-bottom:60px!important}.my-md-16{margin-top:64px!important;margin-bottom:64px!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:4px!important}.mt-md-2{margin-top:8px!important}.mt-md-3{margin-top:12px!important}.mt-md-4{margin-top:16px!important}.mt-md-5{margin-top:20px!important}.mt-md-6{margin-top:24px!important}.mt-md-7{margin-top:28px!important}.mt-md-8{margin-top:32px!important}.mt-md-9{margin-top:36px!important}.mt-md-10{margin-top:40px!important}.mt-md-11{margin-top:44px!important}.mt-md-12{margin-top:48px!important}.mt-md-13{margin-top:52px!important}.mt-md-14{margin-top:56px!important}.mt-md-15{margin-top:60px!important}.mt-md-16{margin-top:64px!important}.mt-md-auto{margin-top:auto!important}.mr-md-0{margin-right:0!important}.mr-md-1{margin-right:4px!important}.mr-md-2{margin-right:8px!important}.mr-md-3{margin-right:12px!important}.mr-md-4{margin-right:16px!important}.mr-md-5{margin-right:20px!important}.mr-md-6{margin-right:24px!important}.mr-md-7{margin-right:28px!important}.mr-md-8{margin-right:32px!important}.mr-md-9{margin-right:36px!important}.mr-md-10{margin-right:40px!important}.mr-md-11{margin-right:44px!important}.mr-md-12{margin-right:48px!important}.mr-md-13{margin-right:52px!important}.mr-md-14{margin-right:56px!important}.mr-md-15{margin-right:60px!important}.mr-md-16{margin-right:64px!important}.mr-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:4px!important}.mb-md-2{margin-bottom:8px!important}.mb-md-3{margin-bottom:12px!important}.mb-md-4{margin-bottom:16px!important}.mb-md-5{margin-bottom:20px!important}.mb-md-6{margin-bottom:24px!important}.mb-md-7{margin-bottom:28px!important}.mb-md-8{margin-bottom:32px!important}.mb-md-9{margin-bottom:36px!important}.mb-md-10{margin-bottom:40px!important}.mb-md-11{margin-bottom:44px!important}.mb-md-12{margin-bottom:48px!important}.mb-md-13{margin-bottom:52px!important}.mb-md-14{margin-bottom:56px!important}.mb-md-15{margin-bottom:60px!important}.mb-md-16{margin-bottom:64px!important}.mb-md-auto{margin-bottom:auto!important}.ml-md-0{margin-left:0!important}.ml-md-1{margin-left:4px!important}.ml-md-2{margin-left:8px!important}.ml-md-3{margin-left:12px!important}.ml-md-4{margin-left:16px!important}.ml-md-5{margin-left:20px!important}.ml-md-6{margin-left:24px!important}.ml-md-7{margin-left:28px!important}.ml-md-8{margin-left:32px!important}.ml-md-9{margin-left:36px!important}.ml-md-10{margin-left:40px!important}.ml-md-11{margin-left:44px!important}.ml-md-12{margin-left:48px!important}.ml-md-13{margin-left:52px!important}.ml-md-14{margin-left:56px!important}.ml-md-15{margin-left:60px!important}.ml-md-16{margin-left:64px!important}.ml-md-auto{margin-left:auto!important}.ms-md-0{margin-inline-start:0px!important}.ms-md-1{margin-inline-start:4px!important}.ms-md-2{margin-inline-start:8px!important}.ms-md-3{margin-inline-start:12px!important}.ms-md-4{margin-inline-start:16px!important}.ms-md-5{margin-inline-start:20px!important}.ms-md-6{margin-inline-start:24px!important}.ms-md-7{margin-inline-start:28px!important}.ms-md-8{margin-inline-start:32px!important}.ms-md-9{margin-inline-start:36px!important}.ms-md-10{margin-inline-start:40px!important}.ms-md-11{margin-inline-start:44px!important}.ms-md-12{margin-inline-start:48px!important}.ms-md-13{margin-inline-start:52px!important}.ms-md-14{margin-inline-start:56px!important}.ms-md-15{margin-inline-start:60px!important}.ms-md-16{margin-inline-start:64px!important}.ms-md-auto{margin-inline-start:auto!important}.me-md-0{margin-inline-end:0px!important}.me-md-1{margin-inline-end:4px!important}.me-md-2{margin-inline-end:8px!important}.me-md-3{margin-inline-end:12px!important}.me-md-4{margin-inline-end:16px!important}.me-md-5{margin-inline-end:20px!important}.me-md-6{margin-inline-end:24px!important}.me-md-7{margin-inline-end:28px!important}.me-md-8{margin-inline-end:32px!important}.me-md-9{margin-inline-end:36px!important}.me-md-10{margin-inline-end:40px!important}.me-md-11{margin-inline-end:44px!important}.me-md-12{margin-inline-end:48px!important}.me-md-13{margin-inline-end:52px!important}.me-md-14{margin-inline-end:56px!important}.me-md-15{margin-inline-end:60px!important}.me-md-16{margin-inline-end:64px!important}.me-md-auto{margin-inline-end:auto!important}.ma-md-n1{margin:-4px!important}.ma-md-n2{margin:-8px!important}.ma-md-n3{margin:-12px!important}.ma-md-n4{margin:-16px!important}.ma-md-n5{margin:-20px!important}.ma-md-n6{margin:-24px!important}.ma-md-n7{margin:-28px!important}.ma-md-n8{margin:-32px!important}.ma-md-n9{margin:-36px!important}.ma-md-n10{margin:-40px!important}.ma-md-n11{margin:-44px!important}.ma-md-n12{margin:-48px!important}.ma-md-n13{margin:-52px!important}.ma-md-n14{margin:-56px!important}.ma-md-n15{margin:-60px!important}.ma-md-n16{margin:-64px!important}.mx-md-n1{margin-right:-4px!important;margin-left:-4px!important}.mx-md-n2{margin-right:-8px!important;margin-left:-8px!important}.mx-md-n3{margin-right:-12px!important;margin-left:-12px!important}.mx-md-n4{margin-right:-16px!important;margin-left:-16px!important}.mx-md-n5{margin-right:-20px!important;margin-left:-20px!important}.mx-md-n6{margin-right:-24px!important;margin-left:-24px!important}.mx-md-n7{margin-right:-28px!important;margin-left:-28px!important}.mx-md-n8{margin-right:-32px!important;margin-left:-32px!important}.mx-md-n9{margin-right:-36px!important;margin-left:-36px!important}.mx-md-n10{margin-right:-40px!important;margin-left:-40px!important}.mx-md-n11{margin-right:-44px!important;margin-left:-44px!important}.mx-md-n12{margin-right:-48px!important;margin-left:-48px!important}.mx-md-n13{margin-right:-52px!important;margin-left:-52px!important}.mx-md-n14{margin-right:-56px!important;margin-left:-56px!important}.mx-md-n15{margin-right:-60px!important;margin-left:-60px!important}.mx-md-n16{margin-right:-64px!important;margin-left:-64px!important}.my-md-n1{margin-top:-4px!important;margin-bottom:-4px!important}.my-md-n2{margin-top:-8px!important;margin-bottom:-8px!important}.my-md-n3{margin-top:-12px!important;margin-bottom:-12px!important}.my-md-n4{margin-top:-16px!important;margin-bottom:-16px!important}.my-md-n5{margin-top:-20px!important;margin-bottom:-20px!important}.my-md-n6{margin-top:-24px!important;margin-bottom:-24px!important}.my-md-n7{margin-top:-28px!important;margin-bottom:-28px!important}.my-md-n8{margin-top:-32px!important;margin-bottom:-32px!important}.my-md-n9{margin-top:-36px!important;margin-bottom:-36px!important}.my-md-n10{margin-top:-40px!important;margin-bottom:-40px!important}.my-md-n11{margin-top:-44px!important;margin-bottom:-44px!important}.my-md-n12{margin-top:-48px!important;margin-bottom:-48px!important}.my-md-n13{margin-top:-52px!important;margin-bottom:-52px!important}.my-md-n14{margin-top:-56px!important;margin-bottom:-56px!important}.my-md-n15{margin-top:-60px!important;margin-bottom:-60px!important}.my-md-n16{margin-top:-64px!important;margin-bottom:-64px!important}.mt-md-n1{margin-top:-4px!important}.mt-md-n2{margin-top:-8px!important}.mt-md-n3{margin-top:-12px!important}.mt-md-n4{margin-top:-16px!important}.mt-md-n5{margin-top:-20px!important}.mt-md-n6{margin-top:-24px!important}.mt-md-n7{margin-top:-28px!important}.mt-md-n8{margin-top:-32px!important}.mt-md-n9{margin-top:-36px!important}.mt-md-n10{margin-top:-40px!important}.mt-md-n11{margin-top:-44px!important}.mt-md-n12{margin-top:-48px!important}.mt-md-n13{margin-top:-52px!important}.mt-md-n14{margin-top:-56px!important}.mt-md-n15{margin-top:-60px!important}.mt-md-n16{margin-top:-64px!important}.mr-md-n1{margin-right:-4px!important}.mr-md-n2{margin-right:-8px!important}.mr-md-n3{margin-right:-12px!important}.mr-md-n4{margin-right:-16px!important}.mr-md-n5{margin-right:-20px!important}.mr-md-n6{margin-right:-24px!important}.mr-md-n7{margin-right:-28px!important}.mr-md-n8{margin-right:-32px!important}.mr-md-n9{margin-right:-36px!important}.mr-md-n10{margin-right:-40px!important}.mr-md-n11{margin-right:-44px!important}.mr-md-n12{margin-right:-48px!important}.mr-md-n13{margin-right:-52px!important}.mr-md-n14{margin-right:-56px!important}.mr-md-n15{margin-right:-60px!important}.mr-md-n16{margin-right:-64px!important}.mb-md-n1{margin-bottom:-4px!important}.mb-md-n2{margin-bottom:-8px!important}.mb-md-n3{margin-bottom:-12px!important}.mb-md-n4{margin-bottom:-16px!important}.mb-md-n5{margin-bottom:-20px!important}.mb-md-n6{margin-bottom:-24px!important}.mb-md-n7{margin-bottom:-28px!important}.mb-md-n8{margin-bottom:-32px!important}.mb-md-n9{margin-bottom:-36px!important}.mb-md-n10{margin-bottom:-40px!important}.mb-md-n11{margin-bottom:-44px!important}.mb-md-n12{margin-bottom:-48px!important}.mb-md-n13{margin-bottom:-52px!important}.mb-md-n14{margin-bottom:-56px!important}.mb-md-n15{margin-bottom:-60px!important}.mb-md-n16{margin-bottom:-64px!important}.ml-md-n1{margin-left:-4px!important}.ml-md-n2{margin-left:-8px!important}.ml-md-n3{margin-left:-12px!important}.ml-md-n4{margin-left:-16px!important}.ml-md-n5{margin-left:-20px!important}.ml-md-n6{margin-left:-24px!important}.ml-md-n7{margin-left:-28px!important}.ml-md-n8{margin-left:-32px!important}.ml-md-n9{margin-left:-36px!important}.ml-md-n10{margin-left:-40px!important}.ml-md-n11{margin-left:-44px!important}.ml-md-n12{margin-left:-48px!important}.ml-md-n13{margin-left:-52px!important}.ml-md-n14{margin-left:-56px!important}.ml-md-n15{margin-left:-60px!important}.ml-md-n16{margin-left:-64px!important}.ms-md-n1{margin-inline-start:-4px!important}.ms-md-n2{margin-inline-start:-8px!important}.ms-md-n3{margin-inline-start:-12px!important}.ms-md-n4{margin-inline-start:-16px!important}.ms-md-n5{margin-inline-start:-20px!important}.ms-md-n6{margin-inline-start:-24px!important}.ms-md-n7{margin-inline-start:-28px!important}.ms-md-n8{margin-inline-start:-32px!important}.ms-md-n9{margin-inline-start:-36px!important}.ms-md-n10{margin-inline-start:-40px!important}.ms-md-n11{margin-inline-start:-44px!important}.ms-md-n12{margin-inline-start:-48px!important}.ms-md-n13{margin-inline-start:-52px!important}.ms-md-n14{margin-inline-start:-56px!important}.ms-md-n15{margin-inline-start:-60px!important}.ms-md-n16{margin-inline-start:-64px!important}.me-md-n1{margin-inline-end:-4px!important}.me-md-n2{margin-inline-end:-8px!important}.me-md-n3{margin-inline-end:-12px!important}.me-md-n4{margin-inline-end:-16px!important}.me-md-n5{margin-inline-end:-20px!important}.me-md-n6{margin-inline-end:-24px!important}.me-md-n7{margin-inline-end:-28px!important}.me-md-n8{margin-inline-end:-32px!important}.me-md-n9{margin-inline-end:-36px!important}.me-md-n10{margin-inline-end:-40px!important}.me-md-n11{margin-inline-end:-44px!important}.me-md-n12{margin-inline-end:-48px!important}.me-md-n13{margin-inline-end:-52px!important}.me-md-n14{margin-inline-end:-56px!important}.me-md-n15{margin-inline-end:-60px!important}.me-md-n16{margin-inline-end:-64px!important}.pa-md-0{padding:0!important}.pa-md-1{padding:4px!important}.pa-md-2{padding:8px!important}.pa-md-3{padding:12px!important}.pa-md-4{padding:16px!important}.pa-md-5{padding:20px!important}.pa-md-6{padding:24px!important}.pa-md-7{padding:28px!important}.pa-md-8{padding:32px!important}.pa-md-9{padding:36px!important}.pa-md-10{padding:40px!important}.pa-md-11{padding:44px!important}.pa-md-12{padding:48px!important}.pa-md-13{padding:52px!important}.pa-md-14{padding:56px!important}.pa-md-15{padding:60px!important}.pa-md-16{padding:64px!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:4px!important;padding-left:4px!important}.px-md-2{padding-right:8px!important;padding-left:8px!important}.px-md-3{padding-right:12px!important;padding-left:12px!important}.px-md-4{padding-right:16px!important;padding-left:16px!important}.px-md-5{padding-right:20px!important;padding-left:20px!important}.px-md-6{padding-right:24px!important;padding-left:24px!important}.px-md-7{padding-right:28px!important;padding-left:28px!important}.px-md-8{padding-right:32px!important;padding-left:32px!important}.px-md-9{padding-right:36px!important;padding-left:36px!important}.px-md-10{padding-right:40px!important;padding-left:40px!important}.px-md-11{padding-right:44px!important;padding-left:44px!important}.px-md-12{padding-right:48px!important;padding-left:48px!important}.px-md-13{padding-right:52px!important;padding-left:52px!important}.px-md-14{padding-right:56px!important;padding-left:56px!important}.px-md-15{padding-right:60px!important;padding-left:60px!important}.px-md-16{padding-right:64px!important;padding-left:64px!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:4px!important;padding-bottom:4px!important}.py-md-2{padding-top:8px!important;padding-bottom:8px!important}.py-md-3{padding-top:12px!important;padding-bottom:12px!important}.py-md-4{padding-top:16px!important;padding-bottom:16px!important}.py-md-5{padding-top:20px!important;padding-bottom:20px!important}.py-md-6{padding-top:24px!important;padding-bottom:24px!important}.py-md-7{padding-top:28px!important;padding-bottom:28px!important}.py-md-8{padding-top:32px!important;padding-bottom:32px!important}.py-md-9{padding-top:36px!important;padding-bottom:36px!important}.py-md-10{padding-top:40px!important;padding-bottom:40px!important}.py-md-11{padding-top:44px!important;padding-bottom:44px!important}.py-md-12{padding-top:48px!important;padding-bottom:48px!important}.py-md-13{padding-top:52px!important;padding-bottom:52px!important}.py-md-14{padding-top:56px!important;padding-bottom:56px!important}.py-md-15{padding-top:60px!important;padding-bottom:60px!important}.py-md-16{padding-top:64px!important;padding-bottom:64px!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:4px!important}.pt-md-2{padding-top:8px!important}.pt-md-3{padding-top:12px!important}.pt-md-4{padding-top:16px!important}.pt-md-5{padding-top:20px!important}.pt-md-6{padding-top:24px!important}.pt-md-7{padding-top:28px!important}.pt-md-8{padding-top:32px!important}.pt-md-9{padding-top:36px!important}.pt-md-10{padding-top:40px!important}.pt-md-11{padding-top:44px!important}.pt-md-12{padding-top:48px!important}.pt-md-13{padding-top:52px!important}.pt-md-14{padding-top:56px!important}.pt-md-15{padding-top:60px!important}.pt-md-16{padding-top:64px!important}.pr-md-0{padding-right:0!important}.pr-md-1{padding-right:4px!important}.pr-md-2{padding-right:8px!important}.pr-md-3{padding-right:12px!important}.pr-md-4{padding-right:16px!important}.pr-md-5{padding-right:20px!important}.pr-md-6{padding-right:24px!important}.pr-md-7{padding-right:28px!important}.pr-md-8{padding-right:32px!important}.pr-md-9{padding-right:36px!important}.pr-md-10{padding-right:40px!important}.pr-md-11{padding-right:44px!important}.pr-md-12{padding-right:48px!important}.pr-md-13{padding-right:52px!important}.pr-md-14{padding-right:56px!important}.pr-md-15{padding-right:60px!important}.pr-md-16{padding-right:64px!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:4px!important}.pb-md-2{padding-bottom:8px!important}.pb-md-3{padding-bottom:12px!important}.pb-md-4{padding-bottom:16px!important}.pb-md-5{padding-bottom:20px!important}.pb-md-6{padding-bottom:24px!important}.pb-md-7{padding-bottom:28px!important}.pb-md-8{padding-bottom:32px!important}.pb-md-9{padding-bottom:36px!important}.pb-md-10{padding-bottom:40px!important}.pb-md-11{padding-bottom:44px!important}.pb-md-12{padding-bottom:48px!important}.pb-md-13{padding-bottom:52px!important}.pb-md-14{padding-bottom:56px!important}.pb-md-15{padding-bottom:60px!important}.pb-md-16{padding-bottom:64px!important}.pl-md-0{padding-left:0!important}.pl-md-1{padding-left:4px!important}.pl-md-2{padding-left:8px!important}.pl-md-3{padding-left:12px!important}.pl-md-4{padding-left:16px!important}.pl-md-5{padding-left:20px!important}.pl-md-6{padding-left:24px!important}.pl-md-7{padding-left:28px!important}.pl-md-8{padding-left:32px!important}.pl-md-9{padding-left:36px!important}.pl-md-10{padding-left:40px!important}.pl-md-11{padding-left:44px!important}.pl-md-12{padding-left:48px!important}.pl-md-13{padding-left:52px!important}.pl-md-14{padding-left:56px!important}.pl-md-15{padding-left:60px!important}.pl-md-16{padding-left:64px!important}.ps-md-0{padding-inline-start:0px!important}.ps-md-1{padding-inline-start:4px!important}.ps-md-2{padding-inline-start:8px!important}.ps-md-3{padding-inline-start:12px!important}.ps-md-4{padding-inline-start:16px!important}.ps-md-5{padding-inline-start:20px!important}.ps-md-6{padding-inline-start:24px!important}.ps-md-7{padding-inline-start:28px!important}.ps-md-8{padding-inline-start:32px!important}.ps-md-9{padding-inline-start:36px!important}.ps-md-10{padding-inline-start:40px!important}.ps-md-11{padding-inline-start:44px!important}.ps-md-12{padding-inline-start:48px!important}.ps-md-13{padding-inline-start:52px!important}.ps-md-14{padding-inline-start:56px!important}.ps-md-15{padding-inline-start:60px!important}.ps-md-16{padding-inline-start:64px!important}.pe-md-0{padding-inline-end:0px!important}.pe-md-1{padding-inline-end:4px!important}.pe-md-2{padding-inline-end:8px!important}.pe-md-3{padding-inline-end:12px!important}.pe-md-4{padding-inline-end:16px!important}.pe-md-5{padding-inline-end:20px!important}.pe-md-6{padding-inline-end:24px!important}.pe-md-7{padding-inline-end:28px!important}.pe-md-8{padding-inline-end:32px!important}.pe-md-9{padding-inline-end:36px!important}.pe-md-10{padding-inline-end:40px!important}.pe-md-11{padding-inline-end:44px!important}.pe-md-12{padding-inline-end:48px!important}.pe-md-13{padding-inline-end:52px!important}.pe-md-14{padding-inline-end:56px!important}.pe-md-15{padding-inline-end:60px!important}.pe-md-16{padding-inline-end:64px!important}.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}.text-md-justify{text-align:justify!important}.text-md-start{text-align:start!important}.text-md-end{text-align:end!important}.text-md-h1{font-size:2.125rem!important;font-weight:700;line-height:3.5rem;letter-spacing:-.015625em!important;font-family:inherit!important;text-transform:none!important}.text-md-h2{font-size:1.5rem!important;font-weight:700;line-height:2.5rem;letter-spacing:-.0083333333em!important;font-family:inherit!important;text-transform:none!important}.text-md-h3{font-size:1.25rem!important;font-weight:600;line-height:2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-md-h4{font-size:1rem!important;font-weight:600;line-height:1.5rem;letter-spacing:.0073529412em!important;font-family:inherit!important;text-transform:none!important}.text-md-h5{font-size:.875rem!important;font-weight:500;line-height:1.2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-md-h6{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.0125em!important;font-family:inherit!important;text-transform:none!important}.text-md-subtitle-1{font-size:.875rem!important;font-weight:500;line-height:1rem;letter-spacing:.009375em!important;font-family:inherit!important;text-transform:none!important}.text-md-subtitle-2{font-size:.75rem!important;font-weight:400;line-height:1rem;letter-spacing:.0071428571em!important;font-family:inherit!important;text-transform:none!important}.text-md-body-1{font-size:.875rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:inherit!important;text-transform:none!important}.text-md-body-2{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important;font-family:inherit!important;text-transform:none!important}.text-md-button{font-size:.875rem!important;font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;font-family:inherit!important;text-transform:uppercase!important}.text-md-caption{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important;font-family:inherit!important;text-transform:none!important}.text-md-overline{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;font-family:inherit!important;text-transform:uppercase!important}}@media (min-width: 1280px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.float-lg-none{float:none!important}.float-lg-left{float:left!important}.float-lg-right{float:right!important}.v-locale--is-rtl .float-lg-end{float:left!important}.v-locale--is-rtl .float-lg-start,.v-locale--is-ltr .float-lg-end{float:right!important}.v-locale--is-ltr .float-lg-start{float:left!important}.flex-lg-fill,.flex-lg-1-1{flex:1 1 auto!important}.flex-lg-1-0{flex:1 0 auto!important}.flex-lg-0-1{flex:0 1 auto!important}.flex-lg-0-0{flex:0 0 auto!important}.flex-lg-1-1-100{flex:1 1 100%!important}.flex-lg-1-0-100{flex:1 0 100%!important}.flex-lg-0-1-100{flex:0 1 100%!important}.flex-lg-0-0-100{flex:0 0 100%!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-lg-start{justify-content:flex-start!important}.justify-lg-end{justify-content:flex-end!important}.justify-lg-center{justify-content:center!important}.justify-lg-space-between{justify-content:space-between!important}.justify-lg-space-around{justify-content:space-around!important}.justify-lg-space-evenly{justify-content:space-evenly!important}.align-lg-start{align-items:flex-start!important}.align-lg-end{align-items:flex-end!important}.align-lg-center{align-items:center!important}.align-lg-baseline{align-items:baseline!important}.align-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-space-between{align-content:space-between!important}.align-content-lg-space-around{align-content:space-around!important}.align-content-lg-space-evenly{align-content:space-evenly!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-6{order:6!important}.order-lg-7{order:7!important}.order-lg-8{order:8!important}.order-lg-9{order:9!important}.order-lg-10{order:10!important}.order-lg-11{order:11!important}.order-lg-12{order:12!important}.order-lg-last{order:13!important}.ma-lg-0{margin:0!important}.ma-lg-1{margin:4px!important}.ma-lg-2{margin:8px!important}.ma-lg-3{margin:12px!important}.ma-lg-4{margin:16px!important}.ma-lg-5{margin:20px!important}.ma-lg-6{margin:24px!important}.ma-lg-7{margin:28px!important}.ma-lg-8{margin:32px!important}.ma-lg-9{margin:36px!important}.ma-lg-10{margin:40px!important}.ma-lg-11{margin:44px!important}.ma-lg-12{margin:48px!important}.ma-lg-13{margin:52px!important}.ma-lg-14{margin:56px!important}.ma-lg-15{margin:60px!important}.ma-lg-16{margin:64px!important}.ma-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:4px!important;margin-left:4px!important}.mx-lg-2{margin-right:8px!important;margin-left:8px!important}.mx-lg-3{margin-right:12px!important;margin-left:12px!important}.mx-lg-4{margin-right:16px!important;margin-left:16px!important}.mx-lg-5{margin-right:20px!important;margin-left:20px!important}.mx-lg-6{margin-right:24px!important;margin-left:24px!important}.mx-lg-7{margin-right:28px!important;margin-left:28px!important}.mx-lg-8{margin-right:32px!important;margin-left:32px!important}.mx-lg-9{margin-right:36px!important;margin-left:36px!important}.mx-lg-10{margin-right:40px!important;margin-left:40px!important}.mx-lg-11{margin-right:44px!important;margin-left:44px!important}.mx-lg-12{margin-right:48px!important;margin-left:48px!important}.mx-lg-13{margin-right:52px!important;margin-left:52px!important}.mx-lg-14{margin-right:56px!important;margin-left:56px!important}.mx-lg-15{margin-right:60px!important;margin-left:60px!important}.mx-lg-16{margin-right:64px!important;margin-left:64px!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:4px!important;margin-bottom:4px!important}.my-lg-2{margin-top:8px!important;margin-bottom:8px!important}.my-lg-3{margin-top:12px!important;margin-bottom:12px!important}.my-lg-4{margin-top:16px!important;margin-bottom:16px!important}.my-lg-5{margin-top:20px!important;margin-bottom:20px!important}.my-lg-6{margin-top:24px!important;margin-bottom:24px!important}.my-lg-7{margin-top:28px!important;margin-bottom:28px!important}.my-lg-8{margin-top:32px!important;margin-bottom:32px!important}.my-lg-9{margin-top:36px!important;margin-bottom:36px!important}.my-lg-10{margin-top:40px!important;margin-bottom:40px!important}.my-lg-11{margin-top:44px!important;margin-bottom:44px!important}.my-lg-12{margin-top:48px!important;margin-bottom:48px!important}.my-lg-13{margin-top:52px!important;margin-bottom:52px!important}.my-lg-14{margin-top:56px!important;margin-bottom:56px!important}.my-lg-15{margin-top:60px!important;margin-bottom:60px!important}.my-lg-16{margin-top:64px!important;margin-bottom:64px!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:4px!important}.mt-lg-2{margin-top:8px!important}.mt-lg-3{margin-top:12px!important}.mt-lg-4{margin-top:16px!important}.mt-lg-5{margin-top:20px!important}.mt-lg-6{margin-top:24px!important}.mt-lg-7{margin-top:28px!important}.mt-lg-8{margin-top:32px!important}.mt-lg-9{margin-top:36px!important}.mt-lg-10{margin-top:40px!important}.mt-lg-11{margin-top:44px!important}.mt-lg-12{margin-top:48px!important}.mt-lg-13{margin-top:52px!important}.mt-lg-14{margin-top:56px!important}.mt-lg-15{margin-top:60px!important}.mt-lg-16{margin-top:64px!important}.mt-lg-auto{margin-top:auto!important}.mr-lg-0{margin-right:0!important}.mr-lg-1{margin-right:4px!important}.mr-lg-2{margin-right:8px!important}.mr-lg-3{margin-right:12px!important}.mr-lg-4{margin-right:16px!important}.mr-lg-5{margin-right:20px!important}.mr-lg-6{margin-right:24px!important}.mr-lg-7{margin-right:28px!important}.mr-lg-8{margin-right:32px!important}.mr-lg-9{margin-right:36px!important}.mr-lg-10{margin-right:40px!important}.mr-lg-11{margin-right:44px!important}.mr-lg-12{margin-right:48px!important}.mr-lg-13{margin-right:52px!important}.mr-lg-14{margin-right:56px!important}.mr-lg-15{margin-right:60px!important}.mr-lg-16{margin-right:64px!important}.mr-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:4px!important}.mb-lg-2{margin-bottom:8px!important}.mb-lg-3{margin-bottom:12px!important}.mb-lg-4{margin-bottom:16px!important}.mb-lg-5{margin-bottom:20px!important}.mb-lg-6{margin-bottom:24px!important}.mb-lg-7{margin-bottom:28px!important}.mb-lg-8{margin-bottom:32px!important}.mb-lg-9{margin-bottom:36px!important}.mb-lg-10{margin-bottom:40px!important}.mb-lg-11{margin-bottom:44px!important}.mb-lg-12{margin-bottom:48px!important}.mb-lg-13{margin-bottom:52px!important}.mb-lg-14{margin-bottom:56px!important}.mb-lg-15{margin-bottom:60px!important}.mb-lg-16{margin-bottom:64px!important}.mb-lg-auto{margin-bottom:auto!important}.ml-lg-0{margin-left:0!important}.ml-lg-1{margin-left:4px!important}.ml-lg-2{margin-left:8px!important}.ml-lg-3{margin-left:12px!important}.ml-lg-4{margin-left:16px!important}.ml-lg-5{margin-left:20px!important}.ml-lg-6{margin-left:24px!important}.ml-lg-7{margin-left:28px!important}.ml-lg-8{margin-left:32px!important}.ml-lg-9{margin-left:36px!important}.ml-lg-10{margin-left:40px!important}.ml-lg-11{margin-left:44px!important}.ml-lg-12{margin-left:48px!important}.ml-lg-13{margin-left:52px!important}.ml-lg-14{margin-left:56px!important}.ml-lg-15{margin-left:60px!important}.ml-lg-16{margin-left:64px!important}.ml-lg-auto{margin-left:auto!important}.ms-lg-0{margin-inline-start:0px!important}.ms-lg-1{margin-inline-start:4px!important}.ms-lg-2{margin-inline-start:8px!important}.ms-lg-3{margin-inline-start:12px!important}.ms-lg-4{margin-inline-start:16px!important}.ms-lg-5{margin-inline-start:20px!important}.ms-lg-6{margin-inline-start:24px!important}.ms-lg-7{margin-inline-start:28px!important}.ms-lg-8{margin-inline-start:32px!important}.ms-lg-9{margin-inline-start:36px!important}.ms-lg-10{margin-inline-start:40px!important}.ms-lg-11{margin-inline-start:44px!important}.ms-lg-12{margin-inline-start:48px!important}.ms-lg-13{margin-inline-start:52px!important}.ms-lg-14{margin-inline-start:56px!important}.ms-lg-15{margin-inline-start:60px!important}.ms-lg-16{margin-inline-start:64px!important}.ms-lg-auto{margin-inline-start:auto!important}.me-lg-0{margin-inline-end:0px!important}.me-lg-1{margin-inline-end:4px!important}.me-lg-2{margin-inline-end:8px!important}.me-lg-3{margin-inline-end:12px!important}.me-lg-4{margin-inline-end:16px!important}.me-lg-5{margin-inline-end:20px!important}.me-lg-6{margin-inline-end:24px!important}.me-lg-7{margin-inline-end:28px!important}.me-lg-8{margin-inline-end:32px!important}.me-lg-9{margin-inline-end:36px!important}.me-lg-10{margin-inline-end:40px!important}.me-lg-11{margin-inline-end:44px!important}.me-lg-12{margin-inline-end:48px!important}.me-lg-13{margin-inline-end:52px!important}.me-lg-14{margin-inline-end:56px!important}.me-lg-15{margin-inline-end:60px!important}.me-lg-16{margin-inline-end:64px!important}.me-lg-auto{margin-inline-end:auto!important}.ma-lg-n1{margin:-4px!important}.ma-lg-n2{margin:-8px!important}.ma-lg-n3{margin:-12px!important}.ma-lg-n4{margin:-16px!important}.ma-lg-n5{margin:-20px!important}.ma-lg-n6{margin:-24px!important}.ma-lg-n7{margin:-28px!important}.ma-lg-n8{margin:-32px!important}.ma-lg-n9{margin:-36px!important}.ma-lg-n10{margin:-40px!important}.ma-lg-n11{margin:-44px!important}.ma-lg-n12{margin:-48px!important}.ma-lg-n13{margin:-52px!important}.ma-lg-n14{margin:-56px!important}.ma-lg-n15{margin:-60px!important}.ma-lg-n16{margin:-64px!important}.mx-lg-n1{margin-right:-4px!important;margin-left:-4px!important}.mx-lg-n2{margin-right:-8px!important;margin-left:-8px!important}.mx-lg-n3{margin-right:-12px!important;margin-left:-12px!important}.mx-lg-n4{margin-right:-16px!important;margin-left:-16px!important}.mx-lg-n5{margin-right:-20px!important;margin-left:-20px!important}.mx-lg-n6{margin-right:-24px!important;margin-left:-24px!important}.mx-lg-n7{margin-right:-28px!important;margin-left:-28px!important}.mx-lg-n8{margin-right:-32px!important;margin-left:-32px!important}.mx-lg-n9{margin-right:-36px!important;margin-left:-36px!important}.mx-lg-n10{margin-right:-40px!important;margin-left:-40px!important}.mx-lg-n11{margin-right:-44px!important;margin-left:-44px!important}.mx-lg-n12{margin-right:-48px!important;margin-left:-48px!important}.mx-lg-n13{margin-right:-52px!important;margin-left:-52px!important}.mx-lg-n14{margin-right:-56px!important;margin-left:-56px!important}.mx-lg-n15{margin-right:-60px!important;margin-left:-60px!important}.mx-lg-n16{margin-right:-64px!important;margin-left:-64px!important}.my-lg-n1{margin-top:-4px!important;margin-bottom:-4px!important}.my-lg-n2{margin-top:-8px!important;margin-bottom:-8px!important}.my-lg-n3{margin-top:-12px!important;margin-bottom:-12px!important}.my-lg-n4{margin-top:-16px!important;margin-bottom:-16px!important}.my-lg-n5{margin-top:-20px!important;margin-bottom:-20px!important}.my-lg-n6{margin-top:-24px!important;margin-bottom:-24px!important}.my-lg-n7{margin-top:-28px!important;margin-bottom:-28px!important}.my-lg-n8{margin-top:-32px!important;margin-bottom:-32px!important}.my-lg-n9{margin-top:-36px!important;margin-bottom:-36px!important}.my-lg-n10{margin-top:-40px!important;margin-bottom:-40px!important}.my-lg-n11{margin-top:-44px!important;margin-bottom:-44px!important}.my-lg-n12{margin-top:-48px!important;margin-bottom:-48px!important}.my-lg-n13{margin-top:-52px!important;margin-bottom:-52px!important}.my-lg-n14{margin-top:-56px!important;margin-bottom:-56px!important}.my-lg-n15{margin-top:-60px!important;margin-bottom:-60px!important}.my-lg-n16{margin-top:-64px!important;margin-bottom:-64px!important}.mt-lg-n1{margin-top:-4px!important}.mt-lg-n2{margin-top:-8px!important}.mt-lg-n3{margin-top:-12px!important}.mt-lg-n4{margin-top:-16px!important}.mt-lg-n5{margin-top:-20px!important}.mt-lg-n6{margin-top:-24px!important}.mt-lg-n7{margin-top:-28px!important}.mt-lg-n8{margin-top:-32px!important}.mt-lg-n9{margin-top:-36px!important}.mt-lg-n10{margin-top:-40px!important}.mt-lg-n11{margin-top:-44px!important}.mt-lg-n12{margin-top:-48px!important}.mt-lg-n13{margin-top:-52px!important}.mt-lg-n14{margin-top:-56px!important}.mt-lg-n15{margin-top:-60px!important}.mt-lg-n16{margin-top:-64px!important}.mr-lg-n1{margin-right:-4px!important}.mr-lg-n2{margin-right:-8px!important}.mr-lg-n3{margin-right:-12px!important}.mr-lg-n4{margin-right:-16px!important}.mr-lg-n5{margin-right:-20px!important}.mr-lg-n6{margin-right:-24px!important}.mr-lg-n7{margin-right:-28px!important}.mr-lg-n8{margin-right:-32px!important}.mr-lg-n9{margin-right:-36px!important}.mr-lg-n10{margin-right:-40px!important}.mr-lg-n11{margin-right:-44px!important}.mr-lg-n12{margin-right:-48px!important}.mr-lg-n13{margin-right:-52px!important}.mr-lg-n14{margin-right:-56px!important}.mr-lg-n15{margin-right:-60px!important}.mr-lg-n16{margin-right:-64px!important}.mb-lg-n1{margin-bottom:-4px!important}.mb-lg-n2{margin-bottom:-8px!important}.mb-lg-n3{margin-bottom:-12px!important}.mb-lg-n4{margin-bottom:-16px!important}.mb-lg-n5{margin-bottom:-20px!important}.mb-lg-n6{margin-bottom:-24px!important}.mb-lg-n7{margin-bottom:-28px!important}.mb-lg-n8{margin-bottom:-32px!important}.mb-lg-n9{margin-bottom:-36px!important}.mb-lg-n10{margin-bottom:-40px!important}.mb-lg-n11{margin-bottom:-44px!important}.mb-lg-n12{margin-bottom:-48px!important}.mb-lg-n13{margin-bottom:-52px!important}.mb-lg-n14{margin-bottom:-56px!important}.mb-lg-n15{margin-bottom:-60px!important}.mb-lg-n16{margin-bottom:-64px!important}.ml-lg-n1{margin-left:-4px!important}.ml-lg-n2{margin-left:-8px!important}.ml-lg-n3{margin-left:-12px!important}.ml-lg-n4{margin-left:-16px!important}.ml-lg-n5{margin-left:-20px!important}.ml-lg-n6{margin-left:-24px!important}.ml-lg-n7{margin-left:-28px!important}.ml-lg-n8{margin-left:-32px!important}.ml-lg-n9{margin-left:-36px!important}.ml-lg-n10{margin-left:-40px!important}.ml-lg-n11{margin-left:-44px!important}.ml-lg-n12{margin-left:-48px!important}.ml-lg-n13{margin-left:-52px!important}.ml-lg-n14{margin-left:-56px!important}.ml-lg-n15{margin-left:-60px!important}.ml-lg-n16{margin-left:-64px!important}.ms-lg-n1{margin-inline-start:-4px!important}.ms-lg-n2{margin-inline-start:-8px!important}.ms-lg-n3{margin-inline-start:-12px!important}.ms-lg-n4{margin-inline-start:-16px!important}.ms-lg-n5{margin-inline-start:-20px!important}.ms-lg-n6{margin-inline-start:-24px!important}.ms-lg-n7{margin-inline-start:-28px!important}.ms-lg-n8{margin-inline-start:-32px!important}.ms-lg-n9{margin-inline-start:-36px!important}.ms-lg-n10{margin-inline-start:-40px!important}.ms-lg-n11{margin-inline-start:-44px!important}.ms-lg-n12{margin-inline-start:-48px!important}.ms-lg-n13{margin-inline-start:-52px!important}.ms-lg-n14{margin-inline-start:-56px!important}.ms-lg-n15{margin-inline-start:-60px!important}.ms-lg-n16{margin-inline-start:-64px!important}.me-lg-n1{margin-inline-end:-4px!important}.me-lg-n2{margin-inline-end:-8px!important}.me-lg-n3{margin-inline-end:-12px!important}.me-lg-n4{margin-inline-end:-16px!important}.me-lg-n5{margin-inline-end:-20px!important}.me-lg-n6{margin-inline-end:-24px!important}.me-lg-n7{margin-inline-end:-28px!important}.me-lg-n8{margin-inline-end:-32px!important}.me-lg-n9{margin-inline-end:-36px!important}.me-lg-n10{margin-inline-end:-40px!important}.me-lg-n11{margin-inline-end:-44px!important}.me-lg-n12{margin-inline-end:-48px!important}.me-lg-n13{margin-inline-end:-52px!important}.me-lg-n14{margin-inline-end:-56px!important}.me-lg-n15{margin-inline-end:-60px!important}.me-lg-n16{margin-inline-end:-64px!important}.pa-lg-0{padding:0!important}.pa-lg-1{padding:4px!important}.pa-lg-2{padding:8px!important}.pa-lg-3{padding:12px!important}.pa-lg-4{padding:16px!important}.pa-lg-5{padding:20px!important}.pa-lg-6{padding:24px!important}.pa-lg-7{padding:28px!important}.pa-lg-8{padding:32px!important}.pa-lg-9{padding:36px!important}.pa-lg-10{padding:40px!important}.pa-lg-11{padding:44px!important}.pa-lg-12{padding:48px!important}.pa-lg-13{padding:52px!important}.pa-lg-14{padding:56px!important}.pa-lg-15{padding:60px!important}.pa-lg-16{padding:64px!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:4px!important;padding-left:4px!important}.px-lg-2{padding-right:8px!important;padding-left:8px!important}.px-lg-3{padding-right:12px!important;padding-left:12px!important}.px-lg-4{padding-right:16px!important;padding-left:16px!important}.px-lg-5{padding-right:20px!important;padding-left:20px!important}.px-lg-6{padding-right:24px!important;padding-left:24px!important}.px-lg-7{padding-right:28px!important;padding-left:28px!important}.px-lg-8{padding-right:32px!important;padding-left:32px!important}.px-lg-9{padding-right:36px!important;padding-left:36px!important}.px-lg-10{padding-right:40px!important;padding-left:40px!important}.px-lg-11{padding-right:44px!important;padding-left:44px!important}.px-lg-12{padding-right:48px!important;padding-left:48px!important}.px-lg-13{padding-right:52px!important;padding-left:52px!important}.px-lg-14{padding-right:56px!important;padding-left:56px!important}.px-lg-15{padding-right:60px!important;padding-left:60px!important}.px-lg-16{padding-right:64px!important;padding-left:64px!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:4px!important;padding-bottom:4px!important}.py-lg-2{padding-top:8px!important;padding-bottom:8px!important}.py-lg-3{padding-top:12px!important;padding-bottom:12px!important}.py-lg-4{padding-top:16px!important;padding-bottom:16px!important}.py-lg-5{padding-top:20px!important;padding-bottom:20px!important}.py-lg-6{padding-top:24px!important;padding-bottom:24px!important}.py-lg-7{padding-top:28px!important;padding-bottom:28px!important}.py-lg-8{padding-top:32px!important;padding-bottom:32px!important}.py-lg-9{padding-top:36px!important;padding-bottom:36px!important}.py-lg-10{padding-top:40px!important;padding-bottom:40px!important}.py-lg-11{padding-top:44px!important;padding-bottom:44px!important}.py-lg-12{padding-top:48px!important;padding-bottom:48px!important}.py-lg-13{padding-top:52px!important;padding-bottom:52px!important}.py-lg-14{padding-top:56px!important;padding-bottom:56px!important}.py-lg-15{padding-top:60px!important;padding-bottom:60px!important}.py-lg-16{padding-top:64px!important;padding-bottom:64px!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:4px!important}.pt-lg-2{padding-top:8px!important}.pt-lg-3{padding-top:12px!important}.pt-lg-4{padding-top:16px!important}.pt-lg-5{padding-top:20px!important}.pt-lg-6{padding-top:24px!important}.pt-lg-7{padding-top:28px!important}.pt-lg-8{padding-top:32px!important}.pt-lg-9{padding-top:36px!important}.pt-lg-10{padding-top:40px!important}.pt-lg-11{padding-top:44px!important}.pt-lg-12{padding-top:48px!important}.pt-lg-13{padding-top:52px!important}.pt-lg-14{padding-top:56px!important}.pt-lg-15{padding-top:60px!important}.pt-lg-16{padding-top:64px!important}.pr-lg-0{padding-right:0!important}.pr-lg-1{padding-right:4px!important}.pr-lg-2{padding-right:8px!important}.pr-lg-3{padding-right:12px!important}.pr-lg-4{padding-right:16px!important}.pr-lg-5{padding-right:20px!important}.pr-lg-6{padding-right:24px!important}.pr-lg-7{padding-right:28px!important}.pr-lg-8{padding-right:32px!important}.pr-lg-9{padding-right:36px!important}.pr-lg-10{padding-right:40px!important}.pr-lg-11{padding-right:44px!important}.pr-lg-12{padding-right:48px!important}.pr-lg-13{padding-right:52px!important}.pr-lg-14{padding-right:56px!important}.pr-lg-15{padding-right:60px!important}.pr-lg-16{padding-right:64px!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:4px!important}.pb-lg-2{padding-bottom:8px!important}.pb-lg-3{padding-bottom:12px!important}.pb-lg-4{padding-bottom:16px!important}.pb-lg-5{padding-bottom:20px!important}.pb-lg-6{padding-bottom:24px!important}.pb-lg-7{padding-bottom:28px!important}.pb-lg-8{padding-bottom:32px!important}.pb-lg-9{padding-bottom:36px!important}.pb-lg-10{padding-bottom:40px!important}.pb-lg-11{padding-bottom:44px!important}.pb-lg-12{padding-bottom:48px!important}.pb-lg-13{padding-bottom:52px!important}.pb-lg-14{padding-bottom:56px!important}.pb-lg-15{padding-bottom:60px!important}.pb-lg-16{padding-bottom:64px!important}.pl-lg-0{padding-left:0!important}.pl-lg-1{padding-left:4px!important}.pl-lg-2{padding-left:8px!important}.pl-lg-3{padding-left:12px!important}.pl-lg-4{padding-left:16px!important}.pl-lg-5{padding-left:20px!important}.pl-lg-6{padding-left:24px!important}.pl-lg-7{padding-left:28px!important}.pl-lg-8{padding-left:32px!important}.pl-lg-9{padding-left:36px!important}.pl-lg-10{padding-left:40px!important}.pl-lg-11{padding-left:44px!important}.pl-lg-12{padding-left:48px!important}.pl-lg-13{padding-left:52px!important}.pl-lg-14{padding-left:56px!important}.pl-lg-15{padding-left:60px!important}.pl-lg-16{padding-left:64px!important}.ps-lg-0{padding-inline-start:0px!important}.ps-lg-1{padding-inline-start:4px!important}.ps-lg-2{padding-inline-start:8px!important}.ps-lg-3{padding-inline-start:12px!important}.ps-lg-4{padding-inline-start:16px!important}.ps-lg-5{padding-inline-start:20px!important}.ps-lg-6{padding-inline-start:24px!important}.ps-lg-7{padding-inline-start:28px!important}.ps-lg-8{padding-inline-start:32px!important}.ps-lg-9{padding-inline-start:36px!important}.ps-lg-10{padding-inline-start:40px!important}.ps-lg-11{padding-inline-start:44px!important}.ps-lg-12{padding-inline-start:48px!important}.ps-lg-13{padding-inline-start:52px!important}.ps-lg-14{padding-inline-start:56px!important}.ps-lg-15{padding-inline-start:60px!important}.ps-lg-16{padding-inline-start:64px!important}.pe-lg-0{padding-inline-end:0px!important}.pe-lg-1{padding-inline-end:4px!important}.pe-lg-2{padding-inline-end:8px!important}.pe-lg-3{padding-inline-end:12px!important}.pe-lg-4{padding-inline-end:16px!important}.pe-lg-5{padding-inline-end:20px!important}.pe-lg-6{padding-inline-end:24px!important}.pe-lg-7{padding-inline-end:28px!important}.pe-lg-8{padding-inline-end:32px!important}.pe-lg-9{padding-inline-end:36px!important}.pe-lg-10{padding-inline-end:40px!important}.pe-lg-11{padding-inline-end:44px!important}.pe-lg-12{padding-inline-end:48px!important}.pe-lg-13{padding-inline-end:52px!important}.pe-lg-14{padding-inline-end:56px!important}.pe-lg-15{padding-inline-end:60px!important}.pe-lg-16{padding-inline-end:64px!important}.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}.text-lg-justify{text-align:justify!important}.text-lg-start{text-align:start!important}.text-lg-end{text-align:end!important}.text-lg-h1{font-size:2.125rem!important;font-weight:700;line-height:3.5rem;letter-spacing:-.015625em!important;font-family:inherit!important;text-transform:none!important}.text-lg-h2{font-size:1.5rem!important;font-weight:700;line-height:2.5rem;letter-spacing:-.0083333333em!important;font-family:inherit!important;text-transform:none!important}.text-lg-h3{font-size:1.25rem!important;font-weight:600;line-height:2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-lg-h4{font-size:1rem!important;font-weight:600;line-height:1.5rem;letter-spacing:.0073529412em!important;font-family:inherit!important;text-transform:none!important}.text-lg-h5{font-size:.875rem!important;font-weight:500;line-height:1.2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-lg-h6{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.0125em!important;font-family:inherit!important;text-transform:none!important}.text-lg-subtitle-1{font-size:.875rem!important;font-weight:500;line-height:1rem;letter-spacing:.009375em!important;font-family:inherit!important;text-transform:none!important}.text-lg-subtitle-2{font-size:.75rem!important;font-weight:400;line-height:1rem;letter-spacing:.0071428571em!important;font-family:inherit!important;text-transform:none!important}.text-lg-body-1{font-size:.875rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:inherit!important;text-transform:none!important}.text-lg-body-2{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important;font-family:inherit!important;text-transform:none!important}.text-lg-button{font-size:.875rem!important;font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;font-family:inherit!important;text-transform:uppercase!important}.text-lg-caption{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important;font-family:inherit!important;text-transform:none!important}.text-lg-overline{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;font-family:inherit!important;text-transform:uppercase!important}}@media (min-width: 1920px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.float-xl-none{float:none!important}.float-xl-left{float:left!important}.float-xl-right{float:right!important}.v-locale--is-rtl .float-xl-end{float:left!important}.v-locale--is-rtl .float-xl-start,.v-locale--is-ltr .float-xl-end{float:right!important}.v-locale--is-ltr .float-xl-start{float:left!important}.flex-xl-fill,.flex-xl-1-1{flex:1 1 auto!important}.flex-xl-1-0{flex:1 0 auto!important}.flex-xl-0-1{flex:0 1 auto!important}.flex-xl-0-0{flex:0 0 auto!important}.flex-xl-1-1-100{flex:1 1 100%!important}.flex-xl-1-0-100{flex:1 0 100%!important}.flex-xl-0-1-100{flex:0 1 100%!important}.flex-xl-0-0-100{flex:0 0 100%!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-xl-start{justify-content:flex-start!important}.justify-xl-end{justify-content:flex-end!important}.justify-xl-center{justify-content:center!important}.justify-xl-space-between{justify-content:space-between!important}.justify-xl-space-around{justify-content:space-around!important}.justify-xl-space-evenly{justify-content:space-evenly!important}.align-xl-start{align-items:flex-start!important}.align-xl-end{align-items:flex-end!important}.align-xl-center{align-items:center!important}.align-xl-baseline{align-items:baseline!important}.align-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-space-between{align-content:space-between!important}.align-content-xl-space-around{align-content:space-around!important}.align-content-xl-space-evenly{align-content:space-evenly!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-6{order:6!important}.order-xl-7{order:7!important}.order-xl-8{order:8!important}.order-xl-9{order:9!important}.order-xl-10{order:10!important}.order-xl-11{order:11!important}.order-xl-12{order:12!important}.order-xl-last{order:13!important}.ma-xl-0{margin:0!important}.ma-xl-1{margin:4px!important}.ma-xl-2{margin:8px!important}.ma-xl-3{margin:12px!important}.ma-xl-4{margin:16px!important}.ma-xl-5{margin:20px!important}.ma-xl-6{margin:24px!important}.ma-xl-7{margin:28px!important}.ma-xl-8{margin:32px!important}.ma-xl-9{margin:36px!important}.ma-xl-10{margin:40px!important}.ma-xl-11{margin:44px!important}.ma-xl-12{margin:48px!important}.ma-xl-13{margin:52px!important}.ma-xl-14{margin:56px!important}.ma-xl-15{margin:60px!important}.ma-xl-16{margin:64px!important}.ma-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:4px!important;margin-left:4px!important}.mx-xl-2{margin-right:8px!important;margin-left:8px!important}.mx-xl-3{margin-right:12px!important;margin-left:12px!important}.mx-xl-4{margin-right:16px!important;margin-left:16px!important}.mx-xl-5{margin-right:20px!important;margin-left:20px!important}.mx-xl-6{margin-right:24px!important;margin-left:24px!important}.mx-xl-7{margin-right:28px!important;margin-left:28px!important}.mx-xl-8{margin-right:32px!important;margin-left:32px!important}.mx-xl-9{margin-right:36px!important;margin-left:36px!important}.mx-xl-10{margin-right:40px!important;margin-left:40px!important}.mx-xl-11{margin-right:44px!important;margin-left:44px!important}.mx-xl-12{margin-right:48px!important;margin-left:48px!important}.mx-xl-13{margin-right:52px!important;margin-left:52px!important}.mx-xl-14{margin-right:56px!important;margin-left:56px!important}.mx-xl-15{margin-right:60px!important;margin-left:60px!important}.mx-xl-16{margin-right:64px!important;margin-left:64px!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:4px!important;margin-bottom:4px!important}.my-xl-2{margin-top:8px!important;margin-bottom:8px!important}.my-xl-3{margin-top:12px!important;margin-bottom:12px!important}.my-xl-4{margin-top:16px!important;margin-bottom:16px!important}.my-xl-5{margin-top:20px!important;margin-bottom:20px!important}.my-xl-6{margin-top:24px!important;margin-bottom:24px!important}.my-xl-7{margin-top:28px!important;margin-bottom:28px!important}.my-xl-8{margin-top:32px!important;margin-bottom:32px!important}.my-xl-9{margin-top:36px!important;margin-bottom:36px!important}.my-xl-10{margin-top:40px!important;margin-bottom:40px!important}.my-xl-11{margin-top:44px!important;margin-bottom:44px!important}.my-xl-12{margin-top:48px!important;margin-bottom:48px!important}.my-xl-13{margin-top:52px!important;margin-bottom:52px!important}.my-xl-14{margin-top:56px!important;margin-bottom:56px!important}.my-xl-15{margin-top:60px!important;margin-bottom:60px!important}.my-xl-16{margin-top:64px!important;margin-bottom:64px!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:4px!important}.mt-xl-2{margin-top:8px!important}.mt-xl-3{margin-top:12px!important}.mt-xl-4{margin-top:16px!important}.mt-xl-5{margin-top:20px!important}.mt-xl-6{margin-top:24px!important}.mt-xl-7{margin-top:28px!important}.mt-xl-8{margin-top:32px!important}.mt-xl-9{margin-top:36px!important}.mt-xl-10{margin-top:40px!important}.mt-xl-11{margin-top:44px!important}.mt-xl-12{margin-top:48px!important}.mt-xl-13{margin-top:52px!important}.mt-xl-14{margin-top:56px!important}.mt-xl-15{margin-top:60px!important}.mt-xl-16{margin-top:64px!important}.mt-xl-auto{margin-top:auto!important}.mr-xl-0{margin-right:0!important}.mr-xl-1{margin-right:4px!important}.mr-xl-2{margin-right:8px!important}.mr-xl-3{margin-right:12px!important}.mr-xl-4{margin-right:16px!important}.mr-xl-5{margin-right:20px!important}.mr-xl-6{margin-right:24px!important}.mr-xl-7{margin-right:28px!important}.mr-xl-8{margin-right:32px!important}.mr-xl-9{margin-right:36px!important}.mr-xl-10{margin-right:40px!important}.mr-xl-11{margin-right:44px!important}.mr-xl-12{margin-right:48px!important}.mr-xl-13{margin-right:52px!important}.mr-xl-14{margin-right:56px!important}.mr-xl-15{margin-right:60px!important}.mr-xl-16{margin-right:64px!important}.mr-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:4px!important}.mb-xl-2{margin-bottom:8px!important}.mb-xl-3{margin-bottom:12px!important}.mb-xl-4{margin-bottom:16px!important}.mb-xl-5{margin-bottom:20px!important}.mb-xl-6{margin-bottom:24px!important}.mb-xl-7{margin-bottom:28px!important}.mb-xl-8{margin-bottom:32px!important}.mb-xl-9{margin-bottom:36px!important}.mb-xl-10{margin-bottom:40px!important}.mb-xl-11{margin-bottom:44px!important}.mb-xl-12{margin-bottom:48px!important}.mb-xl-13{margin-bottom:52px!important}.mb-xl-14{margin-bottom:56px!important}.mb-xl-15{margin-bottom:60px!important}.mb-xl-16{margin-bottom:64px!important}.mb-xl-auto{margin-bottom:auto!important}.ml-xl-0{margin-left:0!important}.ml-xl-1{margin-left:4px!important}.ml-xl-2{margin-left:8px!important}.ml-xl-3{margin-left:12px!important}.ml-xl-4{margin-left:16px!important}.ml-xl-5{margin-left:20px!important}.ml-xl-6{margin-left:24px!important}.ml-xl-7{margin-left:28px!important}.ml-xl-8{margin-left:32px!important}.ml-xl-9{margin-left:36px!important}.ml-xl-10{margin-left:40px!important}.ml-xl-11{margin-left:44px!important}.ml-xl-12{margin-left:48px!important}.ml-xl-13{margin-left:52px!important}.ml-xl-14{margin-left:56px!important}.ml-xl-15{margin-left:60px!important}.ml-xl-16{margin-left:64px!important}.ml-xl-auto{margin-left:auto!important}.ms-xl-0{margin-inline-start:0px!important}.ms-xl-1{margin-inline-start:4px!important}.ms-xl-2{margin-inline-start:8px!important}.ms-xl-3{margin-inline-start:12px!important}.ms-xl-4{margin-inline-start:16px!important}.ms-xl-5{margin-inline-start:20px!important}.ms-xl-6{margin-inline-start:24px!important}.ms-xl-7{margin-inline-start:28px!important}.ms-xl-8{margin-inline-start:32px!important}.ms-xl-9{margin-inline-start:36px!important}.ms-xl-10{margin-inline-start:40px!important}.ms-xl-11{margin-inline-start:44px!important}.ms-xl-12{margin-inline-start:48px!important}.ms-xl-13{margin-inline-start:52px!important}.ms-xl-14{margin-inline-start:56px!important}.ms-xl-15{margin-inline-start:60px!important}.ms-xl-16{margin-inline-start:64px!important}.ms-xl-auto{margin-inline-start:auto!important}.me-xl-0{margin-inline-end:0px!important}.me-xl-1{margin-inline-end:4px!important}.me-xl-2{margin-inline-end:8px!important}.me-xl-3{margin-inline-end:12px!important}.me-xl-4{margin-inline-end:16px!important}.me-xl-5{margin-inline-end:20px!important}.me-xl-6{margin-inline-end:24px!important}.me-xl-7{margin-inline-end:28px!important}.me-xl-8{margin-inline-end:32px!important}.me-xl-9{margin-inline-end:36px!important}.me-xl-10{margin-inline-end:40px!important}.me-xl-11{margin-inline-end:44px!important}.me-xl-12{margin-inline-end:48px!important}.me-xl-13{margin-inline-end:52px!important}.me-xl-14{margin-inline-end:56px!important}.me-xl-15{margin-inline-end:60px!important}.me-xl-16{margin-inline-end:64px!important}.me-xl-auto{margin-inline-end:auto!important}.ma-xl-n1{margin:-4px!important}.ma-xl-n2{margin:-8px!important}.ma-xl-n3{margin:-12px!important}.ma-xl-n4{margin:-16px!important}.ma-xl-n5{margin:-20px!important}.ma-xl-n6{margin:-24px!important}.ma-xl-n7{margin:-28px!important}.ma-xl-n8{margin:-32px!important}.ma-xl-n9{margin:-36px!important}.ma-xl-n10{margin:-40px!important}.ma-xl-n11{margin:-44px!important}.ma-xl-n12{margin:-48px!important}.ma-xl-n13{margin:-52px!important}.ma-xl-n14{margin:-56px!important}.ma-xl-n15{margin:-60px!important}.ma-xl-n16{margin:-64px!important}.mx-xl-n1{margin-right:-4px!important;margin-left:-4px!important}.mx-xl-n2{margin-right:-8px!important;margin-left:-8px!important}.mx-xl-n3{margin-right:-12px!important;margin-left:-12px!important}.mx-xl-n4{margin-right:-16px!important;margin-left:-16px!important}.mx-xl-n5{margin-right:-20px!important;margin-left:-20px!important}.mx-xl-n6{margin-right:-24px!important;margin-left:-24px!important}.mx-xl-n7{margin-right:-28px!important;margin-left:-28px!important}.mx-xl-n8{margin-right:-32px!important;margin-left:-32px!important}.mx-xl-n9{margin-right:-36px!important;margin-left:-36px!important}.mx-xl-n10{margin-right:-40px!important;margin-left:-40px!important}.mx-xl-n11{margin-right:-44px!important;margin-left:-44px!important}.mx-xl-n12{margin-right:-48px!important;margin-left:-48px!important}.mx-xl-n13{margin-right:-52px!important;margin-left:-52px!important}.mx-xl-n14{margin-right:-56px!important;margin-left:-56px!important}.mx-xl-n15{margin-right:-60px!important;margin-left:-60px!important}.mx-xl-n16{margin-right:-64px!important;margin-left:-64px!important}.my-xl-n1{margin-top:-4px!important;margin-bottom:-4px!important}.my-xl-n2{margin-top:-8px!important;margin-bottom:-8px!important}.my-xl-n3{margin-top:-12px!important;margin-bottom:-12px!important}.my-xl-n4{margin-top:-16px!important;margin-bottom:-16px!important}.my-xl-n5{margin-top:-20px!important;margin-bottom:-20px!important}.my-xl-n6{margin-top:-24px!important;margin-bottom:-24px!important}.my-xl-n7{margin-top:-28px!important;margin-bottom:-28px!important}.my-xl-n8{margin-top:-32px!important;margin-bottom:-32px!important}.my-xl-n9{margin-top:-36px!important;margin-bottom:-36px!important}.my-xl-n10{margin-top:-40px!important;margin-bottom:-40px!important}.my-xl-n11{margin-top:-44px!important;margin-bottom:-44px!important}.my-xl-n12{margin-top:-48px!important;margin-bottom:-48px!important}.my-xl-n13{margin-top:-52px!important;margin-bottom:-52px!important}.my-xl-n14{margin-top:-56px!important;margin-bottom:-56px!important}.my-xl-n15{margin-top:-60px!important;margin-bottom:-60px!important}.my-xl-n16{margin-top:-64px!important;margin-bottom:-64px!important}.mt-xl-n1{margin-top:-4px!important}.mt-xl-n2{margin-top:-8px!important}.mt-xl-n3{margin-top:-12px!important}.mt-xl-n4{margin-top:-16px!important}.mt-xl-n5{margin-top:-20px!important}.mt-xl-n6{margin-top:-24px!important}.mt-xl-n7{margin-top:-28px!important}.mt-xl-n8{margin-top:-32px!important}.mt-xl-n9{margin-top:-36px!important}.mt-xl-n10{margin-top:-40px!important}.mt-xl-n11{margin-top:-44px!important}.mt-xl-n12{margin-top:-48px!important}.mt-xl-n13{margin-top:-52px!important}.mt-xl-n14{margin-top:-56px!important}.mt-xl-n15{margin-top:-60px!important}.mt-xl-n16{margin-top:-64px!important}.mr-xl-n1{margin-right:-4px!important}.mr-xl-n2{margin-right:-8px!important}.mr-xl-n3{margin-right:-12px!important}.mr-xl-n4{margin-right:-16px!important}.mr-xl-n5{margin-right:-20px!important}.mr-xl-n6{margin-right:-24px!important}.mr-xl-n7{margin-right:-28px!important}.mr-xl-n8{margin-right:-32px!important}.mr-xl-n9{margin-right:-36px!important}.mr-xl-n10{margin-right:-40px!important}.mr-xl-n11{margin-right:-44px!important}.mr-xl-n12{margin-right:-48px!important}.mr-xl-n13{margin-right:-52px!important}.mr-xl-n14{margin-right:-56px!important}.mr-xl-n15{margin-right:-60px!important}.mr-xl-n16{margin-right:-64px!important}.mb-xl-n1{margin-bottom:-4px!important}.mb-xl-n2{margin-bottom:-8px!important}.mb-xl-n3{margin-bottom:-12px!important}.mb-xl-n4{margin-bottom:-16px!important}.mb-xl-n5{margin-bottom:-20px!important}.mb-xl-n6{margin-bottom:-24px!important}.mb-xl-n7{margin-bottom:-28px!important}.mb-xl-n8{margin-bottom:-32px!important}.mb-xl-n9{margin-bottom:-36px!important}.mb-xl-n10{margin-bottom:-40px!important}.mb-xl-n11{margin-bottom:-44px!important}.mb-xl-n12{margin-bottom:-48px!important}.mb-xl-n13{margin-bottom:-52px!important}.mb-xl-n14{margin-bottom:-56px!important}.mb-xl-n15{margin-bottom:-60px!important}.mb-xl-n16{margin-bottom:-64px!important}.ml-xl-n1{margin-left:-4px!important}.ml-xl-n2{margin-left:-8px!important}.ml-xl-n3{margin-left:-12px!important}.ml-xl-n4{margin-left:-16px!important}.ml-xl-n5{margin-left:-20px!important}.ml-xl-n6{margin-left:-24px!important}.ml-xl-n7{margin-left:-28px!important}.ml-xl-n8{margin-left:-32px!important}.ml-xl-n9{margin-left:-36px!important}.ml-xl-n10{margin-left:-40px!important}.ml-xl-n11{margin-left:-44px!important}.ml-xl-n12{margin-left:-48px!important}.ml-xl-n13{margin-left:-52px!important}.ml-xl-n14{margin-left:-56px!important}.ml-xl-n15{margin-left:-60px!important}.ml-xl-n16{margin-left:-64px!important}.ms-xl-n1{margin-inline-start:-4px!important}.ms-xl-n2{margin-inline-start:-8px!important}.ms-xl-n3{margin-inline-start:-12px!important}.ms-xl-n4{margin-inline-start:-16px!important}.ms-xl-n5{margin-inline-start:-20px!important}.ms-xl-n6{margin-inline-start:-24px!important}.ms-xl-n7{margin-inline-start:-28px!important}.ms-xl-n8{margin-inline-start:-32px!important}.ms-xl-n9{margin-inline-start:-36px!important}.ms-xl-n10{margin-inline-start:-40px!important}.ms-xl-n11{margin-inline-start:-44px!important}.ms-xl-n12{margin-inline-start:-48px!important}.ms-xl-n13{margin-inline-start:-52px!important}.ms-xl-n14{margin-inline-start:-56px!important}.ms-xl-n15{margin-inline-start:-60px!important}.ms-xl-n16{margin-inline-start:-64px!important}.me-xl-n1{margin-inline-end:-4px!important}.me-xl-n2{margin-inline-end:-8px!important}.me-xl-n3{margin-inline-end:-12px!important}.me-xl-n4{margin-inline-end:-16px!important}.me-xl-n5{margin-inline-end:-20px!important}.me-xl-n6{margin-inline-end:-24px!important}.me-xl-n7{margin-inline-end:-28px!important}.me-xl-n8{margin-inline-end:-32px!important}.me-xl-n9{margin-inline-end:-36px!important}.me-xl-n10{margin-inline-end:-40px!important}.me-xl-n11{margin-inline-end:-44px!important}.me-xl-n12{margin-inline-end:-48px!important}.me-xl-n13{margin-inline-end:-52px!important}.me-xl-n14{margin-inline-end:-56px!important}.me-xl-n15{margin-inline-end:-60px!important}.me-xl-n16{margin-inline-end:-64px!important}.pa-xl-0{padding:0!important}.pa-xl-1{padding:4px!important}.pa-xl-2{padding:8px!important}.pa-xl-3{padding:12px!important}.pa-xl-4{padding:16px!important}.pa-xl-5{padding:20px!important}.pa-xl-6{padding:24px!important}.pa-xl-7{padding:28px!important}.pa-xl-8{padding:32px!important}.pa-xl-9{padding:36px!important}.pa-xl-10{padding:40px!important}.pa-xl-11{padding:44px!important}.pa-xl-12{padding:48px!important}.pa-xl-13{padding:52px!important}.pa-xl-14{padding:56px!important}.pa-xl-15{padding:60px!important}.pa-xl-16{padding:64px!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:4px!important;padding-left:4px!important}.px-xl-2{padding-right:8px!important;padding-left:8px!important}.px-xl-3{padding-right:12px!important;padding-left:12px!important}.px-xl-4{padding-right:16px!important;padding-left:16px!important}.px-xl-5{padding-right:20px!important;padding-left:20px!important}.px-xl-6{padding-right:24px!important;padding-left:24px!important}.px-xl-7{padding-right:28px!important;padding-left:28px!important}.px-xl-8{padding-right:32px!important;padding-left:32px!important}.px-xl-9{padding-right:36px!important;padding-left:36px!important}.px-xl-10{padding-right:40px!important;padding-left:40px!important}.px-xl-11{padding-right:44px!important;padding-left:44px!important}.px-xl-12{padding-right:48px!important;padding-left:48px!important}.px-xl-13{padding-right:52px!important;padding-left:52px!important}.px-xl-14{padding-right:56px!important;padding-left:56px!important}.px-xl-15{padding-right:60px!important;padding-left:60px!important}.px-xl-16{padding-right:64px!important;padding-left:64px!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:4px!important;padding-bottom:4px!important}.py-xl-2{padding-top:8px!important;padding-bottom:8px!important}.py-xl-3{padding-top:12px!important;padding-bottom:12px!important}.py-xl-4{padding-top:16px!important;padding-bottom:16px!important}.py-xl-5{padding-top:20px!important;padding-bottom:20px!important}.py-xl-6{padding-top:24px!important;padding-bottom:24px!important}.py-xl-7{padding-top:28px!important;padding-bottom:28px!important}.py-xl-8{padding-top:32px!important;padding-bottom:32px!important}.py-xl-9{padding-top:36px!important;padding-bottom:36px!important}.py-xl-10{padding-top:40px!important;padding-bottom:40px!important}.py-xl-11{padding-top:44px!important;padding-bottom:44px!important}.py-xl-12{padding-top:48px!important;padding-bottom:48px!important}.py-xl-13{padding-top:52px!important;padding-bottom:52px!important}.py-xl-14{padding-top:56px!important;padding-bottom:56px!important}.py-xl-15{padding-top:60px!important;padding-bottom:60px!important}.py-xl-16{padding-top:64px!important;padding-bottom:64px!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:4px!important}.pt-xl-2{padding-top:8px!important}.pt-xl-3{padding-top:12px!important}.pt-xl-4{padding-top:16px!important}.pt-xl-5{padding-top:20px!important}.pt-xl-6{padding-top:24px!important}.pt-xl-7{padding-top:28px!important}.pt-xl-8{padding-top:32px!important}.pt-xl-9{padding-top:36px!important}.pt-xl-10{padding-top:40px!important}.pt-xl-11{padding-top:44px!important}.pt-xl-12{padding-top:48px!important}.pt-xl-13{padding-top:52px!important}.pt-xl-14{padding-top:56px!important}.pt-xl-15{padding-top:60px!important}.pt-xl-16{padding-top:64px!important}.pr-xl-0{padding-right:0!important}.pr-xl-1{padding-right:4px!important}.pr-xl-2{padding-right:8px!important}.pr-xl-3{padding-right:12px!important}.pr-xl-4{padding-right:16px!important}.pr-xl-5{padding-right:20px!important}.pr-xl-6{padding-right:24px!important}.pr-xl-7{padding-right:28px!important}.pr-xl-8{padding-right:32px!important}.pr-xl-9{padding-right:36px!important}.pr-xl-10{padding-right:40px!important}.pr-xl-11{padding-right:44px!important}.pr-xl-12{padding-right:48px!important}.pr-xl-13{padding-right:52px!important}.pr-xl-14{padding-right:56px!important}.pr-xl-15{padding-right:60px!important}.pr-xl-16{padding-right:64px!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:4px!important}.pb-xl-2{padding-bottom:8px!important}.pb-xl-3{padding-bottom:12px!important}.pb-xl-4{padding-bottom:16px!important}.pb-xl-5{padding-bottom:20px!important}.pb-xl-6{padding-bottom:24px!important}.pb-xl-7{padding-bottom:28px!important}.pb-xl-8{padding-bottom:32px!important}.pb-xl-9{padding-bottom:36px!important}.pb-xl-10{padding-bottom:40px!important}.pb-xl-11{padding-bottom:44px!important}.pb-xl-12{padding-bottom:48px!important}.pb-xl-13{padding-bottom:52px!important}.pb-xl-14{padding-bottom:56px!important}.pb-xl-15{padding-bottom:60px!important}.pb-xl-16{padding-bottom:64px!important}.pl-xl-0{padding-left:0!important}.pl-xl-1{padding-left:4px!important}.pl-xl-2{padding-left:8px!important}.pl-xl-3{padding-left:12px!important}.pl-xl-4{padding-left:16px!important}.pl-xl-5{padding-left:20px!important}.pl-xl-6{padding-left:24px!important}.pl-xl-7{padding-left:28px!important}.pl-xl-8{padding-left:32px!important}.pl-xl-9{padding-left:36px!important}.pl-xl-10{padding-left:40px!important}.pl-xl-11{padding-left:44px!important}.pl-xl-12{padding-left:48px!important}.pl-xl-13{padding-left:52px!important}.pl-xl-14{padding-left:56px!important}.pl-xl-15{padding-left:60px!important}.pl-xl-16{padding-left:64px!important}.ps-xl-0{padding-inline-start:0px!important}.ps-xl-1{padding-inline-start:4px!important}.ps-xl-2{padding-inline-start:8px!important}.ps-xl-3{padding-inline-start:12px!important}.ps-xl-4{padding-inline-start:16px!important}.ps-xl-5{padding-inline-start:20px!important}.ps-xl-6{padding-inline-start:24px!important}.ps-xl-7{padding-inline-start:28px!important}.ps-xl-8{padding-inline-start:32px!important}.ps-xl-9{padding-inline-start:36px!important}.ps-xl-10{padding-inline-start:40px!important}.ps-xl-11{padding-inline-start:44px!important}.ps-xl-12{padding-inline-start:48px!important}.ps-xl-13{padding-inline-start:52px!important}.ps-xl-14{padding-inline-start:56px!important}.ps-xl-15{padding-inline-start:60px!important}.ps-xl-16{padding-inline-start:64px!important}.pe-xl-0{padding-inline-end:0px!important}.pe-xl-1{padding-inline-end:4px!important}.pe-xl-2{padding-inline-end:8px!important}.pe-xl-3{padding-inline-end:12px!important}.pe-xl-4{padding-inline-end:16px!important}.pe-xl-5{padding-inline-end:20px!important}.pe-xl-6{padding-inline-end:24px!important}.pe-xl-7{padding-inline-end:28px!important}.pe-xl-8{padding-inline-end:32px!important}.pe-xl-9{padding-inline-end:36px!important}.pe-xl-10{padding-inline-end:40px!important}.pe-xl-11{padding-inline-end:44px!important}.pe-xl-12{padding-inline-end:48px!important}.pe-xl-13{padding-inline-end:52px!important}.pe-xl-14{padding-inline-end:56px!important}.pe-xl-15{padding-inline-end:60px!important}.pe-xl-16{padding-inline-end:64px!important}.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}.text-xl-justify{text-align:justify!important}.text-xl-start{text-align:start!important}.text-xl-end{text-align:end!important}.text-xl-h1{font-size:2.125rem!important;font-weight:700;line-height:3.5rem;letter-spacing:-.015625em!important;font-family:inherit!important;text-transform:none!important}.text-xl-h2{font-size:1.5rem!important;font-weight:700;line-height:2.5rem;letter-spacing:-.0083333333em!important;font-family:inherit!important;text-transform:none!important}.text-xl-h3{font-size:1.25rem!important;font-weight:600;line-height:2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-xl-h4{font-size:1rem!important;font-weight:600;line-height:1.5rem;letter-spacing:.0073529412em!important;font-family:inherit!important;text-transform:none!important}.text-xl-h5{font-size:.875rem!important;font-weight:500;line-height:1.2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-xl-h6{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.0125em!important;font-family:inherit!important;text-transform:none!important}.text-xl-subtitle-1{font-size:.875rem!important;font-weight:500;line-height:1rem;letter-spacing:.009375em!important;font-family:inherit!important;text-transform:none!important}.text-xl-subtitle-2{font-size:.75rem!important;font-weight:400;line-height:1rem;letter-spacing:.0071428571em!important;font-family:inherit!important;text-transform:none!important}.text-xl-body-1{font-size:.875rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:inherit!important;text-transform:none!important}.text-xl-body-2{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important;font-family:inherit!important;text-transform:none!important}.text-xl-button{font-size:.875rem!important;font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;font-family:inherit!important;text-transform:uppercase!important}.text-xl-caption{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important;font-family:inherit!important;text-transform:none!important}.text-xl-overline{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;font-family:inherit!important;text-transform:uppercase!important}}@media (min-width: 2560px){.d-xxl-none{display:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.float-xxl-none{float:none!important}.float-xxl-left{float:left!important}.float-xxl-right{float:right!important}.v-locale--is-rtl .float-xxl-end{float:left!important}.v-locale--is-rtl .float-xxl-start,.v-locale--is-ltr .float-xxl-end{float:right!important}.v-locale--is-ltr .float-xxl-start{float:left!important}.flex-xxl-fill,.flex-xxl-1-1{flex:1 1 auto!important}.flex-xxl-1-0{flex:1 0 auto!important}.flex-xxl-0-1{flex:0 1 auto!important}.flex-xxl-0-0{flex:0 0 auto!important}.flex-xxl-1-1-100{flex:1 1 100%!important}.flex-xxl-1-0-100{flex:1 0 100%!important}.flex-xxl-0-1-100{flex:0 1 100%!important}.flex-xxl-0-0-100{flex:0 0 100%!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-xxl-start{justify-content:flex-start!important}.justify-xxl-end{justify-content:flex-end!important}.justify-xxl-center{justify-content:center!important}.justify-xxl-space-between{justify-content:space-between!important}.justify-xxl-space-around{justify-content:space-around!important}.justify-xxl-space-evenly{justify-content:space-evenly!important}.align-xxl-start{align-items:flex-start!important}.align-xxl-end{align-items:flex-end!important}.align-xxl-center{align-items:center!important}.align-xxl-baseline{align-items:baseline!important}.align-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-space-between{align-content:space-between!important}.align-content-xxl-space-around{align-content:space-around!important}.align-content-xxl-space-evenly{align-content:space-evenly!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-6{order:6!important}.order-xxl-7{order:7!important}.order-xxl-8{order:8!important}.order-xxl-9{order:9!important}.order-xxl-10{order:10!important}.order-xxl-11{order:11!important}.order-xxl-12{order:12!important}.order-xxl-last{order:13!important}.ma-xxl-0{margin:0!important}.ma-xxl-1{margin:4px!important}.ma-xxl-2{margin:8px!important}.ma-xxl-3{margin:12px!important}.ma-xxl-4{margin:16px!important}.ma-xxl-5{margin:20px!important}.ma-xxl-6{margin:24px!important}.ma-xxl-7{margin:28px!important}.ma-xxl-8{margin:32px!important}.ma-xxl-9{margin:36px!important}.ma-xxl-10{margin:40px!important}.ma-xxl-11{margin:44px!important}.ma-xxl-12{margin:48px!important}.ma-xxl-13{margin:52px!important}.ma-xxl-14{margin:56px!important}.ma-xxl-15{margin:60px!important}.ma-xxl-16{margin:64px!important}.ma-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:4px!important;margin-left:4px!important}.mx-xxl-2{margin-right:8px!important;margin-left:8px!important}.mx-xxl-3{margin-right:12px!important;margin-left:12px!important}.mx-xxl-4{margin-right:16px!important;margin-left:16px!important}.mx-xxl-5{margin-right:20px!important;margin-left:20px!important}.mx-xxl-6{margin-right:24px!important;margin-left:24px!important}.mx-xxl-7{margin-right:28px!important;margin-left:28px!important}.mx-xxl-8{margin-right:32px!important;margin-left:32px!important}.mx-xxl-9{margin-right:36px!important;margin-left:36px!important}.mx-xxl-10{margin-right:40px!important;margin-left:40px!important}.mx-xxl-11{margin-right:44px!important;margin-left:44px!important}.mx-xxl-12{margin-right:48px!important;margin-left:48px!important}.mx-xxl-13{margin-right:52px!important;margin-left:52px!important}.mx-xxl-14{margin-right:56px!important;margin-left:56px!important}.mx-xxl-15{margin-right:60px!important;margin-left:60px!important}.mx-xxl-16{margin-right:64px!important;margin-left:64px!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:4px!important;margin-bottom:4px!important}.my-xxl-2{margin-top:8px!important;margin-bottom:8px!important}.my-xxl-3{margin-top:12px!important;margin-bottom:12px!important}.my-xxl-4{margin-top:16px!important;margin-bottom:16px!important}.my-xxl-5{margin-top:20px!important;margin-bottom:20px!important}.my-xxl-6{margin-top:24px!important;margin-bottom:24px!important}.my-xxl-7{margin-top:28px!important;margin-bottom:28px!important}.my-xxl-8{margin-top:32px!important;margin-bottom:32px!important}.my-xxl-9{margin-top:36px!important;margin-bottom:36px!important}.my-xxl-10{margin-top:40px!important;margin-bottom:40px!important}.my-xxl-11{margin-top:44px!important;margin-bottom:44px!important}.my-xxl-12{margin-top:48px!important;margin-bottom:48px!important}.my-xxl-13{margin-top:52px!important;margin-bottom:52px!important}.my-xxl-14{margin-top:56px!important;margin-bottom:56px!important}.my-xxl-15{margin-top:60px!important;margin-bottom:60px!important}.my-xxl-16{margin-top:64px!important;margin-bottom:64px!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:4px!important}.mt-xxl-2{margin-top:8px!important}.mt-xxl-3{margin-top:12px!important}.mt-xxl-4{margin-top:16px!important}.mt-xxl-5{margin-top:20px!important}.mt-xxl-6{margin-top:24px!important}.mt-xxl-7{margin-top:28px!important}.mt-xxl-8{margin-top:32px!important}.mt-xxl-9{margin-top:36px!important}.mt-xxl-10{margin-top:40px!important}.mt-xxl-11{margin-top:44px!important}.mt-xxl-12{margin-top:48px!important}.mt-xxl-13{margin-top:52px!important}.mt-xxl-14{margin-top:56px!important}.mt-xxl-15{margin-top:60px!important}.mt-xxl-16{margin-top:64px!important}.mt-xxl-auto{margin-top:auto!important}.mr-xxl-0{margin-right:0!important}.mr-xxl-1{margin-right:4px!important}.mr-xxl-2{margin-right:8px!important}.mr-xxl-3{margin-right:12px!important}.mr-xxl-4{margin-right:16px!important}.mr-xxl-5{margin-right:20px!important}.mr-xxl-6{margin-right:24px!important}.mr-xxl-7{margin-right:28px!important}.mr-xxl-8{margin-right:32px!important}.mr-xxl-9{margin-right:36px!important}.mr-xxl-10{margin-right:40px!important}.mr-xxl-11{margin-right:44px!important}.mr-xxl-12{margin-right:48px!important}.mr-xxl-13{margin-right:52px!important}.mr-xxl-14{margin-right:56px!important}.mr-xxl-15{margin-right:60px!important}.mr-xxl-16{margin-right:64px!important}.mr-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:4px!important}.mb-xxl-2{margin-bottom:8px!important}.mb-xxl-3{margin-bottom:12px!important}.mb-xxl-4{margin-bottom:16px!important}.mb-xxl-5{margin-bottom:20px!important}.mb-xxl-6{margin-bottom:24px!important}.mb-xxl-7{margin-bottom:28px!important}.mb-xxl-8{margin-bottom:32px!important}.mb-xxl-9{margin-bottom:36px!important}.mb-xxl-10{margin-bottom:40px!important}.mb-xxl-11{margin-bottom:44px!important}.mb-xxl-12{margin-bottom:48px!important}.mb-xxl-13{margin-bottom:52px!important}.mb-xxl-14{margin-bottom:56px!important}.mb-xxl-15{margin-bottom:60px!important}.mb-xxl-16{margin-bottom:64px!important}.mb-xxl-auto{margin-bottom:auto!important}.ml-xxl-0{margin-left:0!important}.ml-xxl-1{margin-left:4px!important}.ml-xxl-2{margin-left:8px!important}.ml-xxl-3{margin-left:12px!important}.ml-xxl-4{margin-left:16px!important}.ml-xxl-5{margin-left:20px!important}.ml-xxl-6{margin-left:24px!important}.ml-xxl-7{margin-left:28px!important}.ml-xxl-8{margin-left:32px!important}.ml-xxl-9{margin-left:36px!important}.ml-xxl-10{margin-left:40px!important}.ml-xxl-11{margin-left:44px!important}.ml-xxl-12{margin-left:48px!important}.ml-xxl-13{margin-left:52px!important}.ml-xxl-14{margin-left:56px!important}.ml-xxl-15{margin-left:60px!important}.ml-xxl-16{margin-left:64px!important}.ml-xxl-auto{margin-left:auto!important}.ms-xxl-0{margin-inline-start:0px!important}.ms-xxl-1{margin-inline-start:4px!important}.ms-xxl-2{margin-inline-start:8px!important}.ms-xxl-3{margin-inline-start:12px!important}.ms-xxl-4{margin-inline-start:16px!important}.ms-xxl-5{margin-inline-start:20px!important}.ms-xxl-6{margin-inline-start:24px!important}.ms-xxl-7{margin-inline-start:28px!important}.ms-xxl-8{margin-inline-start:32px!important}.ms-xxl-9{margin-inline-start:36px!important}.ms-xxl-10{margin-inline-start:40px!important}.ms-xxl-11{margin-inline-start:44px!important}.ms-xxl-12{margin-inline-start:48px!important}.ms-xxl-13{margin-inline-start:52px!important}.ms-xxl-14{margin-inline-start:56px!important}.ms-xxl-15{margin-inline-start:60px!important}.ms-xxl-16{margin-inline-start:64px!important}.ms-xxl-auto{margin-inline-start:auto!important}.me-xxl-0{margin-inline-end:0px!important}.me-xxl-1{margin-inline-end:4px!important}.me-xxl-2{margin-inline-end:8px!important}.me-xxl-3{margin-inline-end:12px!important}.me-xxl-4{margin-inline-end:16px!important}.me-xxl-5{margin-inline-end:20px!important}.me-xxl-6{margin-inline-end:24px!important}.me-xxl-7{margin-inline-end:28px!important}.me-xxl-8{margin-inline-end:32px!important}.me-xxl-9{margin-inline-end:36px!important}.me-xxl-10{margin-inline-end:40px!important}.me-xxl-11{margin-inline-end:44px!important}.me-xxl-12{margin-inline-end:48px!important}.me-xxl-13{margin-inline-end:52px!important}.me-xxl-14{margin-inline-end:56px!important}.me-xxl-15{margin-inline-end:60px!important}.me-xxl-16{margin-inline-end:64px!important}.me-xxl-auto{margin-inline-end:auto!important}.ma-xxl-n1{margin:-4px!important}.ma-xxl-n2{margin:-8px!important}.ma-xxl-n3{margin:-12px!important}.ma-xxl-n4{margin:-16px!important}.ma-xxl-n5{margin:-20px!important}.ma-xxl-n6{margin:-24px!important}.ma-xxl-n7{margin:-28px!important}.ma-xxl-n8{margin:-32px!important}.ma-xxl-n9{margin:-36px!important}.ma-xxl-n10{margin:-40px!important}.ma-xxl-n11{margin:-44px!important}.ma-xxl-n12{margin:-48px!important}.ma-xxl-n13{margin:-52px!important}.ma-xxl-n14{margin:-56px!important}.ma-xxl-n15{margin:-60px!important}.ma-xxl-n16{margin:-64px!important}.mx-xxl-n1{margin-right:-4px!important;margin-left:-4px!important}.mx-xxl-n2{margin-right:-8px!important;margin-left:-8px!important}.mx-xxl-n3{margin-right:-12px!important;margin-left:-12px!important}.mx-xxl-n4{margin-right:-16px!important;margin-left:-16px!important}.mx-xxl-n5{margin-right:-20px!important;margin-left:-20px!important}.mx-xxl-n6{margin-right:-24px!important;margin-left:-24px!important}.mx-xxl-n7{margin-right:-28px!important;margin-left:-28px!important}.mx-xxl-n8{margin-right:-32px!important;margin-left:-32px!important}.mx-xxl-n9{margin-right:-36px!important;margin-left:-36px!important}.mx-xxl-n10{margin-right:-40px!important;margin-left:-40px!important}.mx-xxl-n11{margin-right:-44px!important;margin-left:-44px!important}.mx-xxl-n12{margin-right:-48px!important;margin-left:-48px!important}.mx-xxl-n13{margin-right:-52px!important;margin-left:-52px!important}.mx-xxl-n14{margin-right:-56px!important;margin-left:-56px!important}.mx-xxl-n15{margin-right:-60px!important;margin-left:-60px!important}.mx-xxl-n16{margin-right:-64px!important;margin-left:-64px!important}.my-xxl-n1{margin-top:-4px!important;margin-bottom:-4px!important}.my-xxl-n2{margin-top:-8px!important;margin-bottom:-8px!important}.my-xxl-n3{margin-top:-12px!important;margin-bottom:-12px!important}.my-xxl-n4{margin-top:-16px!important;margin-bottom:-16px!important}.my-xxl-n5{margin-top:-20px!important;margin-bottom:-20px!important}.my-xxl-n6{margin-top:-24px!important;margin-bottom:-24px!important}.my-xxl-n7{margin-top:-28px!important;margin-bottom:-28px!important}.my-xxl-n8{margin-top:-32px!important;margin-bottom:-32px!important}.my-xxl-n9{margin-top:-36px!important;margin-bottom:-36px!important}.my-xxl-n10{margin-top:-40px!important;margin-bottom:-40px!important}.my-xxl-n11{margin-top:-44px!important;margin-bottom:-44px!important}.my-xxl-n12{margin-top:-48px!important;margin-bottom:-48px!important}.my-xxl-n13{margin-top:-52px!important;margin-bottom:-52px!important}.my-xxl-n14{margin-top:-56px!important;margin-bottom:-56px!important}.my-xxl-n15{margin-top:-60px!important;margin-bottom:-60px!important}.my-xxl-n16{margin-top:-64px!important;margin-bottom:-64px!important}.mt-xxl-n1{margin-top:-4px!important}.mt-xxl-n2{margin-top:-8px!important}.mt-xxl-n3{margin-top:-12px!important}.mt-xxl-n4{margin-top:-16px!important}.mt-xxl-n5{margin-top:-20px!important}.mt-xxl-n6{margin-top:-24px!important}.mt-xxl-n7{margin-top:-28px!important}.mt-xxl-n8{margin-top:-32px!important}.mt-xxl-n9{margin-top:-36px!important}.mt-xxl-n10{margin-top:-40px!important}.mt-xxl-n11{margin-top:-44px!important}.mt-xxl-n12{margin-top:-48px!important}.mt-xxl-n13{margin-top:-52px!important}.mt-xxl-n14{margin-top:-56px!important}.mt-xxl-n15{margin-top:-60px!important}.mt-xxl-n16{margin-top:-64px!important}.mr-xxl-n1{margin-right:-4px!important}.mr-xxl-n2{margin-right:-8px!important}.mr-xxl-n3{margin-right:-12px!important}.mr-xxl-n4{margin-right:-16px!important}.mr-xxl-n5{margin-right:-20px!important}.mr-xxl-n6{margin-right:-24px!important}.mr-xxl-n7{margin-right:-28px!important}.mr-xxl-n8{margin-right:-32px!important}.mr-xxl-n9{margin-right:-36px!important}.mr-xxl-n10{margin-right:-40px!important}.mr-xxl-n11{margin-right:-44px!important}.mr-xxl-n12{margin-right:-48px!important}.mr-xxl-n13{margin-right:-52px!important}.mr-xxl-n14{margin-right:-56px!important}.mr-xxl-n15{margin-right:-60px!important}.mr-xxl-n16{margin-right:-64px!important}.mb-xxl-n1{margin-bottom:-4px!important}.mb-xxl-n2{margin-bottom:-8px!important}.mb-xxl-n3{margin-bottom:-12px!important}.mb-xxl-n4{margin-bottom:-16px!important}.mb-xxl-n5{margin-bottom:-20px!important}.mb-xxl-n6{margin-bottom:-24px!important}.mb-xxl-n7{margin-bottom:-28px!important}.mb-xxl-n8{margin-bottom:-32px!important}.mb-xxl-n9{margin-bottom:-36px!important}.mb-xxl-n10{margin-bottom:-40px!important}.mb-xxl-n11{margin-bottom:-44px!important}.mb-xxl-n12{margin-bottom:-48px!important}.mb-xxl-n13{margin-bottom:-52px!important}.mb-xxl-n14{margin-bottom:-56px!important}.mb-xxl-n15{margin-bottom:-60px!important}.mb-xxl-n16{margin-bottom:-64px!important}.ml-xxl-n1{margin-left:-4px!important}.ml-xxl-n2{margin-left:-8px!important}.ml-xxl-n3{margin-left:-12px!important}.ml-xxl-n4{margin-left:-16px!important}.ml-xxl-n5{margin-left:-20px!important}.ml-xxl-n6{margin-left:-24px!important}.ml-xxl-n7{margin-left:-28px!important}.ml-xxl-n8{margin-left:-32px!important}.ml-xxl-n9{margin-left:-36px!important}.ml-xxl-n10{margin-left:-40px!important}.ml-xxl-n11{margin-left:-44px!important}.ml-xxl-n12{margin-left:-48px!important}.ml-xxl-n13{margin-left:-52px!important}.ml-xxl-n14{margin-left:-56px!important}.ml-xxl-n15{margin-left:-60px!important}.ml-xxl-n16{margin-left:-64px!important}.ms-xxl-n1{margin-inline-start:-4px!important}.ms-xxl-n2{margin-inline-start:-8px!important}.ms-xxl-n3{margin-inline-start:-12px!important}.ms-xxl-n4{margin-inline-start:-16px!important}.ms-xxl-n5{margin-inline-start:-20px!important}.ms-xxl-n6{margin-inline-start:-24px!important}.ms-xxl-n7{margin-inline-start:-28px!important}.ms-xxl-n8{margin-inline-start:-32px!important}.ms-xxl-n9{margin-inline-start:-36px!important}.ms-xxl-n10{margin-inline-start:-40px!important}.ms-xxl-n11{margin-inline-start:-44px!important}.ms-xxl-n12{margin-inline-start:-48px!important}.ms-xxl-n13{margin-inline-start:-52px!important}.ms-xxl-n14{margin-inline-start:-56px!important}.ms-xxl-n15{margin-inline-start:-60px!important}.ms-xxl-n16{margin-inline-start:-64px!important}.me-xxl-n1{margin-inline-end:-4px!important}.me-xxl-n2{margin-inline-end:-8px!important}.me-xxl-n3{margin-inline-end:-12px!important}.me-xxl-n4{margin-inline-end:-16px!important}.me-xxl-n5{margin-inline-end:-20px!important}.me-xxl-n6{margin-inline-end:-24px!important}.me-xxl-n7{margin-inline-end:-28px!important}.me-xxl-n8{margin-inline-end:-32px!important}.me-xxl-n9{margin-inline-end:-36px!important}.me-xxl-n10{margin-inline-end:-40px!important}.me-xxl-n11{margin-inline-end:-44px!important}.me-xxl-n12{margin-inline-end:-48px!important}.me-xxl-n13{margin-inline-end:-52px!important}.me-xxl-n14{margin-inline-end:-56px!important}.me-xxl-n15{margin-inline-end:-60px!important}.me-xxl-n16{margin-inline-end:-64px!important}.pa-xxl-0{padding:0!important}.pa-xxl-1{padding:4px!important}.pa-xxl-2{padding:8px!important}.pa-xxl-3{padding:12px!important}.pa-xxl-4{padding:16px!important}.pa-xxl-5{padding:20px!important}.pa-xxl-6{padding:24px!important}.pa-xxl-7{padding:28px!important}.pa-xxl-8{padding:32px!important}.pa-xxl-9{padding:36px!important}.pa-xxl-10{padding:40px!important}.pa-xxl-11{padding:44px!important}.pa-xxl-12{padding:48px!important}.pa-xxl-13{padding:52px!important}.pa-xxl-14{padding:56px!important}.pa-xxl-15{padding:60px!important}.pa-xxl-16{padding:64px!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:4px!important;padding-left:4px!important}.px-xxl-2{padding-right:8px!important;padding-left:8px!important}.px-xxl-3{padding-right:12px!important;padding-left:12px!important}.px-xxl-4{padding-right:16px!important;padding-left:16px!important}.px-xxl-5{padding-right:20px!important;padding-left:20px!important}.px-xxl-6{padding-right:24px!important;padding-left:24px!important}.px-xxl-7{padding-right:28px!important;padding-left:28px!important}.px-xxl-8{padding-right:32px!important;padding-left:32px!important}.px-xxl-9{padding-right:36px!important;padding-left:36px!important}.px-xxl-10{padding-right:40px!important;padding-left:40px!important}.px-xxl-11{padding-right:44px!important;padding-left:44px!important}.px-xxl-12{padding-right:48px!important;padding-left:48px!important}.px-xxl-13{padding-right:52px!important;padding-left:52px!important}.px-xxl-14{padding-right:56px!important;padding-left:56px!important}.px-xxl-15{padding-right:60px!important;padding-left:60px!important}.px-xxl-16{padding-right:64px!important;padding-left:64px!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:4px!important;padding-bottom:4px!important}.py-xxl-2{padding-top:8px!important;padding-bottom:8px!important}.py-xxl-3{padding-top:12px!important;padding-bottom:12px!important}.py-xxl-4{padding-top:16px!important;padding-bottom:16px!important}.py-xxl-5{padding-top:20px!important;padding-bottom:20px!important}.py-xxl-6{padding-top:24px!important;padding-bottom:24px!important}.py-xxl-7{padding-top:28px!important;padding-bottom:28px!important}.py-xxl-8{padding-top:32px!important;padding-bottom:32px!important}.py-xxl-9{padding-top:36px!important;padding-bottom:36px!important}.py-xxl-10{padding-top:40px!important;padding-bottom:40px!important}.py-xxl-11{padding-top:44px!important;padding-bottom:44px!important}.py-xxl-12{padding-top:48px!important;padding-bottom:48px!important}.py-xxl-13{padding-top:52px!important;padding-bottom:52px!important}.py-xxl-14{padding-top:56px!important;padding-bottom:56px!important}.py-xxl-15{padding-top:60px!important;padding-bottom:60px!important}.py-xxl-16{padding-top:64px!important;padding-bottom:64px!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:4px!important}.pt-xxl-2{padding-top:8px!important}.pt-xxl-3{padding-top:12px!important}.pt-xxl-4{padding-top:16px!important}.pt-xxl-5{padding-top:20px!important}.pt-xxl-6{padding-top:24px!important}.pt-xxl-7{padding-top:28px!important}.pt-xxl-8{padding-top:32px!important}.pt-xxl-9{padding-top:36px!important}.pt-xxl-10{padding-top:40px!important}.pt-xxl-11{padding-top:44px!important}.pt-xxl-12{padding-top:48px!important}.pt-xxl-13{padding-top:52px!important}.pt-xxl-14{padding-top:56px!important}.pt-xxl-15{padding-top:60px!important}.pt-xxl-16{padding-top:64px!important}.pr-xxl-0{padding-right:0!important}.pr-xxl-1{padding-right:4px!important}.pr-xxl-2{padding-right:8px!important}.pr-xxl-3{padding-right:12px!important}.pr-xxl-4{padding-right:16px!important}.pr-xxl-5{padding-right:20px!important}.pr-xxl-6{padding-right:24px!important}.pr-xxl-7{padding-right:28px!important}.pr-xxl-8{padding-right:32px!important}.pr-xxl-9{padding-right:36px!important}.pr-xxl-10{padding-right:40px!important}.pr-xxl-11{padding-right:44px!important}.pr-xxl-12{padding-right:48px!important}.pr-xxl-13{padding-right:52px!important}.pr-xxl-14{padding-right:56px!important}.pr-xxl-15{padding-right:60px!important}.pr-xxl-16{padding-right:64px!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:4px!important}.pb-xxl-2{padding-bottom:8px!important}.pb-xxl-3{padding-bottom:12px!important}.pb-xxl-4{padding-bottom:16px!important}.pb-xxl-5{padding-bottom:20px!important}.pb-xxl-6{padding-bottom:24px!important}.pb-xxl-7{padding-bottom:28px!important}.pb-xxl-8{padding-bottom:32px!important}.pb-xxl-9{padding-bottom:36px!important}.pb-xxl-10{padding-bottom:40px!important}.pb-xxl-11{padding-bottom:44px!important}.pb-xxl-12{padding-bottom:48px!important}.pb-xxl-13{padding-bottom:52px!important}.pb-xxl-14{padding-bottom:56px!important}.pb-xxl-15{padding-bottom:60px!important}.pb-xxl-16{padding-bottom:64px!important}.pl-xxl-0{padding-left:0!important}.pl-xxl-1{padding-left:4px!important}.pl-xxl-2{padding-left:8px!important}.pl-xxl-3{padding-left:12px!important}.pl-xxl-4{padding-left:16px!important}.pl-xxl-5{padding-left:20px!important}.pl-xxl-6{padding-left:24px!important}.pl-xxl-7{padding-left:28px!important}.pl-xxl-8{padding-left:32px!important}.pl-xxl-9{padding-left:36px!important}.pl-xxl-10{padding-left:40px!important}.pl-xxl-11{padding-left:44px!important}.pl-xxl-12{padding-left:48px!important}.pl-xxl-13{padding-left:52px!important}.pl-xxl-14{padding-left:56px!important}.pl-xxl-15{padding-left:60px!important}.pl-xxl-16{padding-left:64px!important}.ps-xxl-0{padding-inline-start:0px!important}.ps-xxl-1{padding-inline-start:4px!important}.ps-xxl-2{padding-inline-start:8px!important}.ps-xxl-3{padding-inline-start:12px!important}.ps-xxl-4{padding-inline-start:16px!important}.ps-xxl-5{padding-inline-start:20px!important}.ps-xxl-6{padding-inline-start:24px!important}.ps-xxl-7{padding-inline-start:28px!important}.ps-xxl-8{padding-inline-start:32px!important}.ps-xxl-9{padding-inline-start:36px!important}.ps-xxl-10{padding-inline-start:40px!important}.ps-xxl-11{padding-inline-start:44px!important}.ps-xxl-12{padding-inline-start:48px!important}.ps-xxl-13{padding-inline-start:52px!important}.ps-xxl-14{padding-inline-start:56px!important}.ps-xxl-15{padding-inline-start:60px!important}.ps-xxl-16{padding-inline-start:64px!important}.pe-xxl-0{padding-inline-end:0px!important}.pe-xxl-1{padding-inline-end:4px!important}.pe-xxl-2{padding-inline-end:8px!important}.pe-xxl-3{padding-inline-end:12px!important}.pe-xxl-4{padding-inline-end:16px!important}.pe-xxl-5{padding-inline-end:20px!important}.pe-xxl-6{padding-inline-end:24px!important}.pe-xxl-7{padding-inline-end:28px!important}.pe-xxl-8{padding-inline-end:32px!important}.pe-xxl-9{padding-inline-end:36px!important}.pe-xxl-10{padding-inline-end:40px!important}.pe-xxl-11{padding-inline-end:44px!important}.pe-xxl-12{padding-inline-end:48px!important}.pe-xxl-13{padding-inline-end:52px!important}.pe-xxl-14{padding-inline-end:56px!important}.pe-xxl-15{padding-inline-end:60px!important}.pe-xxl-16{padding-inline-end:64px!important}.text-xxl-left{text-align:left!important}.text-xxl-right{text-align:right!important}.text-xxl-center{text-align:center!important}.text-xxl-justify{text-align:justify!important}.text-xxl-start{text-align:start!important}.text-xxl-end{text-align:end!important}.text-xxl-h1{font-size:2.125rem!important;font-weight:700;line-height:3.5rem;letter-spacing:-.015625em!important;font-family:inherit!important;text-transform:none!important}.text-xxl-h2{font-size:1.5rem!important;font-weight:700;line-height:2.5rem;letter-spacing:-.0083333333em!important;font-family:inherit!important;text-transform:none!important}.text-xxl-h3{font-size:1.25rem!important;font-weight:600;line-height:2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-xxl-h4{font-size:1rem!important;font-weight:600;line-height:1.5rem;letter-spacing:.0073529412em!important;font-family:inherit!important;text-transform:none!important}.text-xxl-h5{font-size:.875rem!important;font-weight:500;line-height:1.2rem;letter-spacing:normal!important;font-family:inherit!important;text-transform:none!important}.text-xxl-h6{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.0125em!important;font-family:inherit!important;text-transform:none!important}.text-xxl-subtitle-1{font-size:.875rem!important;font-weight:500;line-height:1rem;letter-spacing:.009375em!important;font-family:inherit!important;text-transform:none!important}.text-xxl-subtitle-2{font-size:.75rem!important;font-weight:400;line-height:1rem;letter-spacing:.0071428571em!important;font-family:inherit!important;text-transform:none!important}.text-xxl-body-1{font-size:.875rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:inherit!important;text-transform:none!important}.text-xxl-body-2{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important;font-family:inherit!important;text-transform:none!important}.text-xxl-button{font-size:.875rem!important;font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;font-family:inherit!important;text-transform:uppercase!important}.text-xxl-caption{font-size:.75rem!important;font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important;font-family:inherit!important;text-transform:none!important}.text-xxl-overline{font-size:.75rem!important;font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;font-family:inherit!important;text-transform:uppercase!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.float-print-none{float:none!important}.float-print-left{float:left!important}.float-print-right{float:right!important}.v-locale--is-rtl .float-print-end{float:left!important}.v-locale--is-rtl .float-print-start,.v-locale--is-ltr .float-print-end{float:right!important}.v-locale--is-ltr .float-print-start{float:left!important}}html .bg-success{color:#fff!important}.v-row+.v-row{margin-top:0}.v-divider{opacity:1;border-color:rgba(var(--v-theme-borderLight),.36)}.v-selection-control{flex:unset}.no-spacer .v-list-item__spacer{display:none!important}@keyframes progress-circular-rotate{to{transform:rotate(270deg)}}html{overflow-y:auto}.v-main{margin-right:20px}@media (max-width: 1279px){.v-main{margin:0 10px}}.spacer{padding:100px 0}@media (max-width: 800px){.spacer{padding:40px 0}}.page-wrapper{min-height:calc(100vh - 100px);padding:15px;border-radius:12px;background:rgb(var(--v-theme-containerBg))}.display-1{font-size:44px;line-height:54px}.display-2{font-size:40px;line-height:50px}.display-3{font-size:30px;line-height:40px}.h1{font-size:36px;line-height:46px}.h2{font-size:30px;line-height:40px}.h3{font-size:21px;line-height:31px}.h4{font-size:18px;line-height:28px}.h5{font-size:16px;line-height:26px}.h6{font-size:14px;line-height:24px}.text-8{font-size:8px;line-height:18px}.text-10{font-size:10px;line-height:20px}.text-13{font-size:13px;line-height:23px}.text-18{font-size:18px;line-height:28px}.text-20{font-size:20px;line-height:30px}.text-24{font-size:24px;line-height:34px}.body-text-1{font-size:10px;line-height:20px}.customizer-btn{position:fixed;top:25%;right:10px;border-radius:50% 50% 4px}.customizer-btn .icon{animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;transition:all .2s ease-in-out}.w-100{width:100%}.h-100vh{height:100vh}.gap-3{gap:16px}.text-white{color:#fff!important}body .Poppins{font-family:Poppins,sans-serif!important}body .Inter{font-family:Inter,sans-serif!important}@keyframes blink{50%{opacity:0}to{opacity:1}}@keyframes bounce{0%,20%,53%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-5px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-7px,0)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}90%{transform:translate3d(0,-2px,0)}}.leftSidebar{border:0px;box-shadow:none!important}.scrollnavbar{height:calc(100vh - 100px)}.scrollnavbar .smallCap{padding:0 0 0 4px!important;font-size:.875rem;font-weight:500}.scrollnavbar .v-list{color:rgb(var(--v-theme-lightText))}.scrollnavbar .v-list-group__items .v-list-item,.scrollnavbar .v-list-item{border-radius:12px;padding-inline-start:calc(12px + var(--indent-padding) / 2)!important}.scrollnavbar .v-list-group__items .v-list-item:hover,.scrollnavbar .v-list-item:hover{color:rgb(var(--v-theme-secondary))}.scrollnavbar .v-list-group__items .v-list-item .v-list-item__prepend,.scrollnavbar .v-list-item .v-list-item__prepend{margin-inline-end:13px}.scrollnavbar .v-list-group__items .v-list-item .v-list-item__append,.scrollnavbar .v-list-item .v-list-item__append{font-size:.875rem}.scrollnavbar .v-list-group__items .v-list-item .v-list-item__append .v-icon,.scrollnavbar .v-list-item .v-list-item__append .v-icon{margin-inline-start:13px}.scrollnavbar .v-list-group__items .v-list-item .v-list-item-title,.scrollnavbar .v-list-item .v-list-item-title{font-size:.875rem}.scrollnavbar .leftPadding{margin-left:4px}.scrollnavbar .v-list .v-list-item--active .v-list-item-title{font-weight:500}.scrollnavbar .v-list .sidebarchip .v-icon{margin-inline-start:-3px}.scrollnavbar .v-list .v-list-group .v-list-item:hover>.v-list-item__overlay,.scrollnavbar .v-list .v-list-group .v-list-item--active>.v-list-item__overlay{background-color:transparent}.scrollnavbar .v-list .v-list-group .v-list-item:focus-visible>.v-list-item__overlay{opacity:0}.scrollnavbar .v-list>.v-list-group{position:relative}.scrollnavbar .v-list>.v-list-group>.v-list-item--active,.scrollnavbar .v-list>.v-list-group>.v-list-item:hover{background:rgb(var(--v-theme-secondary),.05)}.scrollnavbar .v-list>.v-list-group:after{content:"";position:absolute;left:21px;top:46px;height:calc(100% - 46px);width:1px;opacity:1;background:rgb(var(--v-theme-primary),.15)}.v-navigation-drawer--rail .scrollnavbar .v-list .v-list-group__items,.v-navigation-drawer--rail .hide-menu{opacity:0}.v-navigation-drawer--rail .leftPadding{margin-left:0}@media only screen and (min-width: 1170px){.mini-sidebar .logo{width:90px;overflow:hidden}.mini-sidebar .leftSidebar:hover{box-shadow:1px 0 20px #00000014!important}.mini-sidebar .v-navigation-drawer--expand-on-hover:hover .logo{width:100%}.mini-sidebar .v-navigation-drawer--expand-on-hover:hover .v-list .v-list-group__items,.mini-sidebar .v-navigation-drawer--expand-on-hover:hover .hide-menu{opacity:1}}.profileBtn{height:50px!important;margin:0 20px 0 10px!important}.SearchIcon{margin-top:2px}.search-sheet{position:absolute;z-index:9}.circle{position:relative;overflow:hidden}.circle.sm-circle:before{content:"";position:absolute;width:200px;height:200px;border:3px solid rgb(var(--v-theme-warning));border-radius:50%;top:125px;right:-70px}.circle.lg-circle:after{content:"";position:absolute;width:200px;height:200px;border:19px solid rgb(var(--v-theme-warning));border-radius:50%;top:65px;right:-150px}.v-btn.bg-lightsecondary:hover,.v-btn.bg-lightsecondary:active,.v-btn.bg-lightsecondary:focus{background-color:rgb(var(--v-theme-secondary))!important;color:#fff!important}.v-btn{text-transform:capitalize;letter-spacing:0}.v-btn--icon.v-btn--density-default{width:calc(var(--v-btn-height) + 6px);height:calc(var(--v-btn-height) + 6px)}.v-card--variant-outlined,.v-card--variant-outlined .v-divider{border-color:rgba(var(--v-theme-borderLight),.36)}.v-card-text{padding:24px}.v-card{width:100%;overflow:visible}.v-card.withbg{background-color:rgb(var(--v-theme-background))}.v-card.overflow-hidden{overflow:hidden}.v-card-item{padding:20px 24px}.v-field--variant-outlined .v-field__outline__start.v-locale--is-ltr,.v-locale--is-ltr .v-field--variant-outlined .v-field__outline__start{border-radius:12px 0 0 12px}.v-field--variant-outlined .v-field__outline__end.v-locale--is-ltr,.v-locale--is-ltr .v-field--variant-outlined .v-field__outline__end{border-radius:0 12px 12px 0}.v-input--density-default,.v-field--variant-solo,.v-field--variant-filled{--v-input-control-height: 51px;--v-input-padding-top: 14px}.v-input--density-comfortable{--v-input-control-height: 56px;--v-input-padding-top: 17px}.v-label{font-size:.975rem}.v-switch .v-label,.v-checkbox .v-label{opacity:1}.v-navigation-drawer__scrim.fade-transition-leave-to{display:none}.elevation-10{box-shadow:1px 0 20px #00000014!important}.v-text-field input{font-size:.875rem}.v-input--density-default .v-field__input{min-height:51px}.v-field__outline{color:rgb(var(--v-theme-inputBorder))}.inputWithbg .v-field--variant-outlined{background-color:#00000006}.theme-tab.v-tabs .v-tab{border-radius:12px!important;min-width:auto!important}.theme-tab.v-tabs .v-tab.v-slide-group-item--active{background:rgb(var(--v-theme-primary))}.bubble-shape{position:relative}.bubble-shape:before{content:"";position:absolute;width:210px;height:210px;border-radius:50%;top:-125px;right:-15px;opacity:.5}.bubble-shape:after{content:"";position:absolute;width:210px;height:210px;border-radius:50%;top:-85px;right:-95px}.z-1{z-index:1;position:relative}.bubble-shape-sm{position:relative}.bubble-shape-sm:before{content:"";position:absolute;width:210px;height:210px;border-radius:50%;top:-160px;right:-130px}.bubble-shape-sm:after{content:"";position:absolute;width:210px;height:210px;border-radius:50%;top:-30px;right:-180px}.rounded-square{width:20px;height:20px} diff --git a/addons/dashboard/dist/assets/index-ab39813a.js b/addons/dashboard/dist/assets/index-ab39813a.js new file mode 100644 index 000000000..65a78dfa6 --- /dev/null +++ b/addons/dashboard/dist/assets/index-ab39813a.js @@ -0,0 +1,716 @@ +(function(){const l=document.createElement("link").relList;if(l&&l.supports&&l.supports("modulepreload"))return;for(const u of document.querySelectorAll('link[rel="modulepreload"]'))h(u);new MutationObserver(u=>{for(const g of u)if(g.type==="childList")for(const v of g.addedNodes)v.tagName==="LINK"&&v.rel==="modulepreload"&&h(v)}).observe(document,{childList:!0,subtree:!0});function r(u){const g={};return u.integrity&&(g.integrity=u.integrity),u.referrerPolicy&&(g.referrerPolicy=u.referrerPolicy),u.crossOrigin==="use-credentials"?g.credentials="include":u.crossOrigin==="anonymous"?g.credentials="omit":g.credentials="same-origin",g}function h(u){if(u.ep)return;u.ep=!0;const g=r(u);fetch(u.href,g)}})();function Y4(n,l){const r=Object.create(null),h=n.split(",");for(let u=0;u!!r[u.toLowerCase()]:u=>!!r[u]}const G4=()=>{},H0=Object.assign,U4=Object.prototype.hasOwnProperty,ha=(n,l)=>U4.call(n,l),hl=Array.isArray,Vs=n=>ud(n)==="[object Map]",N0=n=>typeof n=="function",Z4=n=>typeof n=="string",j0=n=>typeof n=="symbol",es=n=>n!==null&&typeof n=="object",K4=Object.prototype.toString,ud=n=>K4.call(n),Q4=n=>ud(n).slice(8,-1),P0=n=>Z4(n)&&n!=="NaN"&&n[0]!=="-"&&""+parseInt(n,10)===n,L0=(n,l)=>!Object.is(n,l),J4=(n,l,r)=>{Object.defineProperty(n,l,{configurable:!0,enumerable:!1,value:r})};let bn;class D0{constructor(l=!1){this.detached=l,this._active=!0,this.effects=[],this.cleanups=[],this.parent=bn,!l&&bn&&(this.index=(bn.scopes||(bn.scopes=[])).push(this)-1)}get active(){return this._active}run(l){if(this._active){const r=bn;try{return bn=this,l()}finally{bn=r}}}on(){bn=this}off(){bn=this.parent}stop(l){if(this._active){let r,h;for(r=0,h=this.effects.length;r{const l=new Set(n);return l.w=0,l.n=0,l},gd=n=>(n.w&Dl)>0,wd=n=>(n.n&Dl)>0,tg=({deps:n})=>{if(n.length)for(let l=0;l{const{deps:l}=n;if(l.length){let r=0;for(let h=0;h{(S==="length"||S>=z)&&b.push(C)})}else switch(r!==void 0&&b.push(v.get(r)),l){case"add":hl(n)?P0(r)&&b.push(v.get("length")):(b.push(v.get(or)),Vs(n)&&b.push(v.get(yi)));break;case"delete":hl(n)||(b.push(v.get(or)),Vs(n)&&b.push(v.get(yi)));break;case"set":Vs(n)&&b.push(v.get(or));break}if(b.length===1)b[0]&&Ci(b[0]);else{const z=[];for(const C of b)C&&z.push(...C);Ci(O0(z))}}function Ci(n,l){const r=hl(n)?n:[...n];for(const h of r)h.computed&&a2(h);for(const h of r)h.computed||a2(h)}function a2(n,l){(n!==En||n.allowRecurse)&&(n.scheduler?n.scheduler():n.run())}function rg(n,l){var r;return(r=Gs.get(n))==null?void 0:r.get(l)}const og=Y4("__proto__,__v_isRef,__isVue"),md=new Set(Object.getOwnPropertyNames(Symbol).filter(n=>n!=="arguments"&&n!=="caller").map(n=>Symbol[n]).filter(j0)),sg=da(),ag=da(!1,!0),ig=da(!0),hg=da(!0,!0),i2=dg();function dg(){const n={};return["includes","indexOf","lastIndexOf"].forEach(l=>{n[l]=function(...r){const h=ne(this);for(let g=0,v=this.length;g{n[l]=function(...r){to();const h=ne(this)[l].apply(this,r);return eo(),h}}),n}function cg(n){const l=ne(this);return wn(l,"has",n),l.hasOwnProperty(n)}function da(n=!1,l=!1){return function(h,u,g){if(u==="__v_isReactive")return!n;if(u==="__v_isReadonly")return n;if(u==="__v_isShallow")return l;if(u==="__v_raw"&&g===(n?l?yd:Id:l?zd:xd).get(h))return h;const v=hl(h);if(!n){if(v&&ha(i2,u))return Reflect.get(i2,u,g);if(u==="hasOwnProperty")return cg}const b=Reflect.get(h,u,g);return(j0(u)?md.has(u):og(u))||(n||wn(h,"get",u),l)?b:ke(b)?v&&P0(u)?b:b.value:es(b)?n?no(b):Ye(b):b}}const ug=kd(),pg=kd(!0);function kd(n=!1){return function(r,h,u,g){let v=r[h];if(dr(v)&&ke(v)&&!ke(u))return!1;if(!n&&(!Fo(u)&&!dr(u)&&(v=ne(v),u=ne(u)),!hl(r)&&ke(v)&&!ke(u)))return v.value=u,!0;const b=hl(r)&&P0(h)?Number(h)n,ca=n=>Reflect.getPrototypeOf(n);function zs(n,l,r=!1,h=!1){n=n.__v_raw;const u=ne(n),g=ne(l);r||(l!==g&&wn(u,"get",l),wn(u,"get",g));const{has:v}=ca(u),b=h?T0:r?V0:Oo;if(v.call(u,l))return b(n.get(l));if(v.call(u,g))return b(n.get(g));n!==u&&n.get(l)}function Is(n,l=!1){const r=this.__v_raw,h=ne(r),u=ne(n);return l||(n!==u&&wn(h,"has",n),wn(h,"has",u)),n===u?r.has(n):r.has(n)||r.has(u)}function ys(n,l=!1){return n=n.__v_raw,!l&&wn(ne(n),"iterate",or),Reflect.get(n,"size",n)}function h2(n){n=ne(n);const l=ne(this);return ca(l).has.call(l,n)||(l.add(n),ul(l,"add",n,n)),this}function d2(n,l){l=ne(l);const r=ne(this),{has:h,get:u}=ca(r);let g=h.call(r,n);g||(n=ne(n),g=h.call(r,n));const v=u.call(r,n);return r.set(n,l),g?L0(l,v)&&ul(r,"set",n,l):ul(r,"add",n,l),this}function c2(n){const l=ne(this),{has:r,get:h}=ca(l);let u=r.call(l,n);u||(n=ne(n),u=r.call(l,n)),h&&h.call(l,n);const g=l.delete(n);return u&&ul(l,"delete",n,void 0),g}function u2(){const n=ne(this),l=n.size!==0,r=n.clear();return l&&ul(n,"clear",void 0,void 0),r}function Cs(n,l){return function(h,u){const g=this,v=g.__v_raw,b=ne(v),z=l?T0:n?V0:Oo;return!n&&wn(b,"iterate",or),v.forEach((C,S)=>h.call(u,z(C),z(S),g))}}function Ss(n,l,r){return function(...h){const u=this.__v_raw,g=ne(u),v=Vs(g),b=n==="entries"||n===Symbol.iterator&&v,z=n==="keys"&&v,C=u[n](...h),S=r?T0:l?V0:Oo;return!l&&wn(g,"iterate",z?yi:or),{next(){const{value:A,done:B}=C.next();return B?{value:A,done:B}:{value:b?[S(A[0]),S(A[1])]:S(A),done:B}},[Symbol.iterator](){return this}}}}function Il(n){return function(...l){return n==="delete"?!1:this}}function kg(){const n={get(g){return zs(this,g)},get size(){return ys(this)},has:Is,add:h2,set:d2,delete:c2,clear:u2,forEach:Cs(!1,!1)},l={get(g){return zs(this,g,!1,!0)},get size(){return ys(this)},has:Is,add:h2,set:d2,delete:c2,clear:u2,forEach:Cs(!1,!0)},r={get(g){return zs(this,g,!0)},get size(){return ys(this,!0)},has(g){return Is.call(this,g,!0)},add:Il("add"),set:Il("set"),delete:Il("delete"),clear:Il("clear"),forEach:Cs(!0,!1)},h={get(g){return zs(this,g,!0,!0)},get size(){return ys(this,!0)},has(g){return Is.call(this,g,!0)},add:Il("add"),set:Il("set"),delete:Il("delete"),clear:Il("clear"),forEach:Cs(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(g=>{n[g]=Ss(g,!1,!1),r[g]=Ss(g,!0,!1),l[g]=Ss(g,!1,!0),h[g]=Ss(g,!0,!0)}),[n,r,l,h]}const[bg,Mg,xg,zg]=kg();function ua(n,l){const r=l?n?zg:xg:n?Mg:bg;return(h,u,g)=>u==="__v_isReactive"?!n:u==="__v_isReadonly"?n:u==="__v_raw"?h:Reflect.get(ha(r,u)&&u in h?r:h,u,g)}const Ig={get:ua(!1,!1)},yg={get:ua(!1,!0)},Cg={get:ua(!0,!1)},Sg={get:ua(!0,!0)},xd=new WeakMap,zd=new WeakMap,Id=new WeakMap,yd=new WeakMap;function $g(n){switch(n){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Ag(n){return n.__v_skip||!Object.isExtensible(n)?0:$g(Q4(n))}function Ye(n){return dr(n)?n:pa(n,!1,bd,Ig,xd)}function R0(n){return pa(n,!1,fg,yg,zd)}function no(n){return pa(n,!0,Md,Cg,Id)}function Bg(n){return pa(n,!0,mg,Sg,yd)}function pa(n,l,r,h,u){if(!es(n)||n.__v_raw&&!(l&&n.__v_isReactive))return n;const g=u.get(n);if(g)return g;const v=Ag(n);if(v===0)return n;const b=new Proxy(n,v===2?h:r);return u.set(n,b),b}function dl(n){return dr(n)?dl(n.__v_raw):!!(n&&n.__v_isReactive)}function dr(n){return!!(n&&n.__v_isReadonly)}function Fo(n){return!!(n&&n.__v_isShallow)}function E0(n){return dl(n)||dr(n)}function ne(n){const l=n&&n.__v_raw;return l?ne(l):n}function ls(n){return J4(n,"__v_skip",!0),n}const Oo=n=>es(n)?Ye(n):n,V0=n=>es(n)?no(n):n;function _0(n){Pl&&En&&(n=ne(n),fd(n.dep||(n.dep=O0())))}function ga(n,l){n=ne(n);const r=n.dep;r&&Ci(r)}function ke(n){return!!(n&&n.__v_isRef===!0)}function Pt(n){return Cd(n,!1)}function _t(n){return Cd(n,!0)}function Cd(n,l){return ke(n)?n:new Hg(n,l)}class Hg{constructor(l,r){this.__v_isShallow=r,this.dep=void 0,this.__v_isRef=!0,this._rawValue=r?l:ne(l),this._value=r?l:Oo(l)}get value(){return _0(this),this._value}set value(l){const r=this.__v_isShallow||Fo(l)||dr(l);l=r?l:ne(l),L0(l,this._rawValue)&&(this._rawValue=l,this._value=r?l:Oo(l),ga(this))}}function Ng(n){ga(n)}function He(n){return ke(n)?n.value:n}function jg(n){return N0(n)?n():He(n)}const Pg={get:(n,l,r)=>He(Reflect.get(n,l,r)),set:(n,l,r,h)=>{const u=n[l];return ke(u)&&!ke(r)?(u.value=r,!0):Reflect.set(n,l,r,h)}};function W0(n){return dl(n)?n:new Proxy(n,Pg)}class Lg{constructor(l){this.dep=void 0,this.__v_isRef=!0;const{get:r,set:h}=l(()=>_0(this),()=>ga(this));this._get=r,this._set=h}get value(){return this._get()}set value(l){this._set(l)}}function Dg(n){return new Lg(n)}function rs(n){const l=hl(n)?new Array(n.length):{};for(const r in n)l[r]=Sd(n,r);return l}class Fg{constructor(l,r,h){this._object=l,this._key=r,this._defaultValue=h,this.__v_isRef=!0}get value(){const l=this._object[this._key];return l===void 0?this._defaultValue:l}set value(l){this._object[this._key]=l}get dep(){return rg(ne(this._object),this._key)}}class Og{constructor(l){this._getter=l,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Bt(n,l,r){return ke(n)?n:N0(n)?new Og(n):es(n)&&arguments.length>1?Sd(n,l,r):Pt(n)}function Sd(n,l,r){const h=n[l];return ke(h)?h:new Fg(n,l,r)}class Tg{constructor(l,r,h,u){this._setter=r,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new ns(l,()=>{this._dirty||(this._dirty=!0,ga(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!u,this.__v_isReadonly=h}get value(){const l=ne(this);return _0(l),(l._dirty||!l._cacheable)&&(l._dirty=!1,l._value=l.effect.run()),l._value}set value(l){this._setter(l)}}function Rg(n,l,r=!1){let h,u;const g=N0(n);return g?(h=n,u=G4):(h=n.get,u=n.set),new Tg(h,u,g||!u,r)}function $d(n,l){const r=Object.create(null),h=n.split(",");for(let u=0;u!!r[u.toLowerCase()]:u=>!!r[u]}const ze={},Rr=[],Jn=()=>{},Eg=()=>!1,Vg=/^on[^a-z]/,wa=n=>Vg.test(n),Ad=n=>n.startsWith("onUpdate:"),_e=Object.assign,X0=(n,l)=>{const r=n.indexOf(l);r>-1&&n.splice(r,1)},_g=Object.prototype.hasOwnProperty,ve=(n,l)=>_g.call(n,l),oe=Array.isArray,Bd=n=>va(n)==="[object Map]",Hd=n=>va(n)==="[object Set]",Wg=n=>va(n)==="[object RegExp]",re=n=>typeof n=="function",Oe=n=>typeof n=="string",De=n=>n!==null&&typeof n=="object",q0=n=>De(n)&&re(n.then)&&re(n.catch),Nd=Object.prototype.toString,va=n=>Nd.call(n),jd=n=>va(n)==="[object Object]",yo=$d(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),fa=n=>{const l=Object.create(null);return r=>l[r]||(l[r]=n(r))},Xg=/-(\w)/g,In=fa(n=>n.replace(Xg,(l,r)=>r?r.toUpperCase():"")),qg=/\B([A-Z])/g,ma=fa(n=>n.replace(qg,"-$1").toLowerCase()),fl=fa(n=>n.charAt(0).toUpperCase()+n.slice(1)),Co=fa(n=>n?`on${fl(n)}`:""),Si=(n,l)=>!Object.is(n,l),So=(n,l)=>{for(let r=0;r{Object.defineProperty(n,l,{configurable:!0,enumerable:!1,value:r})},Yg=n=>{const l=parseFloat(n);return isNaN(l)?n:l},Gg=n=>{const l=Oe(n)?Number(n):NaN;return isNaN(l)?n:l};let p2;const Ai=()=>p2||(p2=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),Ug="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console",Zg=$d(Ug);function os(n){if(oe(n)){const l={};for(let r=0;r{if(r){const h=r.split(Qg);h.length>1&&(l[h[0].trim()]=h[1].trim())}}),l}function ss(n){let l="";if(Oe(n))l=n;else if(oe(n))for(let r=0;rOe(n)?n:n==null?"":oe(n)||De(n)&&(n.toString===Nd||!re(n.toString))?JSON.stringify(n,Pd,2):String(n),Pd=(n,l)=>l&&l.__v_isRef?Pd(n,l.value):Bd(l)?{[`Map(${l.size})`]:[...l.entries()].reduce((r,[h,u])=>(r[`${h} =>`]=u,r),{})}:Hd(l)?{[`Set(${l.size})`]:[...l.values()]}:De(l)&&!oe(l)&&!jd(l)?String(l):l;function lw(n,...l){}function rw(n,l){}function cl(n,l,r,h){let u;try{u=h?n(...h):n()}catch(g){fr(g,l,r)}return u}function zn(n,l,r,h){if(re(n)){const g=cl(n,l,r,h);return g&&q0(g)&&g.catch(v=>{fr(v,l,r)}),g}const u=[];for(let g=0;g>>1;Ro(Je[h])Kn&&Je.splice(l,1)}function G0(n){oe(n)?Er.push(...n):(!sl||!sl.includes(n,n.allowRecurse?tr+1:tr))&&Er.push(n),Dd()}function g2(n,l=To?Kn+1:0){for(;lRo(r)-Ro(h)),tr=0;trn.id==null?1/0:n.id,iw=(n,l)=>{const r=Ro(n)-Ro(l);if(r===0){if(n.pre&&!l.pre)return-1;if(l.pre&&!n.pre)return 1}return r};function Fd(n){Bi=!1,To=!0,Je.sort(iw);const l=Jn;try{for(Kn=0;KnLr.emit(u,...g)),$s=[]):typeof window<"u"&&window.HTMLElement&&!((h=(r=window.navigator)==null?void 0:r.userAgent)!=null&&h.includes("jsdom"))?((l.__VUE_DEVTOOLS_HOOK_REPLAY__=l.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(g=>{Od(g,l)}),setTimeout(()=>{Lr||(l.__VUE_DEVTOOLS_HOOK_REPLAY__=null,$s=[])},3e3)):$s=[]}function hw(n,l,...r){if(n.isUnmounted)return;const h=n.vnode.props||ze;let u=r;const g=l.startsWith("update:"),v=g&&l.slice(7);if(v&&v in h){const S=`${v==="modelValue"?"model":v}Modifiers`,{number:A,trim:B}=h[S]||ze;B&&(u=r.map(P=>Oe(P)?P.trim():P)),A&&(u=r.map(Yg))}let b,z=h[b=Co(l)]||h[b=Co(In(l))];!z&&g&&(z=h[b=Co(ma(l))]),z&&zn(z,n,6,u);const C=h[b+"Once"];if(C){if(!n.emitted)n.emitted={};else if(n.emitted[b])return;n.emitted[b]=!0,zn(C,n,6,u)}}function Td(n,l,r=!1){const h=l.emitsCache,u=h.get(n);if(u!==void 0)return u;const g=n.emits;let v={},b=!1;if(!re(n)){const z=C=>{const S=Td(C,l,!0);S&&(b=!0,_e(v,S))};!r&&l.mixins.length&&l.mixins.forEach(z),n.extends&&z(n.extends),n.mixins&&n.mixins.forEach(z)}return!g&&!b?(De(n)&&h.set(n,null),null):(oe(g)?g.forEach(z=>v[z]=null):_e(v,g),De(n)&&h.set(n,v),v)}function ba(n,l){return!n||!wa(l)?!1:(l=l.slice(2).replace(/Once$/,""),ve(n,l[0].toLowerCase()+l.slice(1))||ve(n,ma(l))||ve(n,l))}let Ve=null,Ma=null;function Eo(n){const l=Ve;return Ve=n,Ma=n&&n.type.__scopeId||null,l}function dw(n){Ma=n}function cw(){Ma=null}const uw=n=>U0;function U0(n,l=Ve,r){if(!l||n._n)return n;const h=(...u)=>{h._d&&Fi(-1);const g=Eo(l);let v;try{v=n(...u)}finally{Eo(g),h._d&&Fi(1)}return v};return h._n=!0,h._c=!0,h._d=!0,h}function _s(n){const{type:l,vnode:r,proxy:h,withProxy:u,props:g,propsOptions:[v],slots:b,attrs:z,emit:C,render:S,renderCache:A,data:B,setupState:P,ctx:D,inheritAttrs:E}=n;let Y,O;const H=Eo(n);try{if(r.shapeFlag&4){const W=u||h;Y=Mn(S.call(W,W,A,g,P,B,D)),O=z}else{const W=l;Y=Mn(W.length>1?W(g,{attrs:z,slots:b,emit:C}):W(g,null)),O=l.props?z:gw(z)}}catch(W){Bo.length=0,fr(W,n,1),Y=t(nn)}let U=Y;if(O&&E!==!1){const W=Object.keys(O),{shapeFlag:_}=U;W.length&&_&7&&(v&&W.some(Ad)&&(O=ww(O,v)),U=Xn(U,O))}return r.dirs&&(U=Xn(U),U.dirs=U.dirs?U.dirs.concat(r.dirs):r.dirs),r.transition&&(U.transition=r.transition),Y=U,Eo(H),Y}function pw(n){let l;for(let r=0;r{let l;for(const r in n)(r==="class"||r==="style"||wa(r))&&((l||(l={}))[r]=n[r]);return l},ww=(n,l)=>{const r={};for(const h in n)(!Ad(h)||!(h.slice(9)in l))&&(r[h]=n[h]);return r};function vw(n,l,r){const{props:h,children:u,component:g}=n,{props:v,children:b,patchFlag:z}=l,C=g.emitsOptions;if(l.dirs||l.transition)return!0;if(r&&z>=0){if(z&1024)return!0;if(z&16)return h?w2(h,v,C):!!v;if(z&8){const S=l.dynamicProps;for(let A=0;An.__isSuspense,fw={name:"Suspense",__isSuspense:!0,process(n,l,r,h,u,g,v,b,z,C){n==null?kw(l,r,h,u,g,v,b,z,C):bw(n,l,r,h,u,v,b,z,C)},hydrate:Mw,create:K0,normalize:xw},mw=fw;function Vo(n,l){const r=n.props&&n.props[l];re(r)&&r()}function kw(n,l,r,h,u,g,v,b,z){const{p:C,o:{createElement:S}}=z,A=S("div"),B=n.suspense=K0(n,u,h,l,A,r,g,v,b,z);C(null,B.pendingBranch=n.ssContent,A,null,h,B,g,v),B.deps>0?(Vo(n,"onPending"),Vo(n,"onFallback"),C(null,n.ssFallback,l,r,h,null,g,v),Vr(B,n.ssFallback)):B.resolve(!1,!0)}function bw(n,l,r,h,u,g,v,b,{p:z,um:C,o:{createElement:S}}){const A=l.suspense=n.suspense;A.vnode=l,l.el=n.el;const B=l.ssContent,P=l.ssFallback,{activeBranch:D,pendingBranch:E,isInFallback:Y,isHydrating:O}=A;if(E)A.pendingBranch=B,Vn(B,E)?(z(E,B,A.hiddenContainer,null,u,A,g,v,b),A.deps<=0?A.resolve():Y&&(z(D,P,r,h,u,null,g,v,b),Vr(A,P))):(A.pendingId++,O?(A.isHydrating=!1,A.activeBranch=E):C(E,u,A),A.deps=0,A.effects.length=0,A.hiddenContainer=S("div"),Y?(z(null,B,A.hiddenContainer,null,u,A,g,v,b),A.deps<=0?A.resolve():(z(D,P,r,h,u,null,g,v,b),Vr(A,P))):D&&Vn(B,D)?(z(D,B,r,h,u,A,g,v,b),A.resolve(!0)):(z(null,B,A.hiddenContainer,null,u,A,g,v,b),A.deps<=0&&A.resolve()));else if(D&&Vn(B,D))z(D,B,r,h,u,A,g,v,b),Vr(A,B);else if(Vo(l,"onPending"),A.pendingBranch=B,A.pendingId++,z(null,B,A.hiddenContainer,null,u,A,g,v,b),A.deps<=0)A.resolve();else{const{timeout:H,pendingId:U}=A;H>0?setTimeout(()=>{A.pendingId===U&&A.fallback(P)},H):H===0&&A.fallback(P)}}function K0(n,l,r,h,u,g,v,b,z,C,S=!1){const{p:A,m:B,um:P,n:D,o:{parentNode:E,remove:Y}}=C;let O;const H=zw(n);H&&l!=null&&l.pendingBranch&&(O=l.pendingId,l.deps++);const U=n.props?Gg(n.props.timeout):void 0,W={vnode:n,parent:l,parentComponent:r,isSVG:v,container:h,hiddenContainer:u,anchor:g,deps:0,pendingId:0,timeout:typeof U=="number"?U:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:S,isUnmounted:!1,effects:[],resolve(_=!1,tt=!1){const{vnode:nt,activeBranch:q,pendingBranch:G,pendingId:et,effects:st,parentComponent:rt,container:ht}=W;if(W.isHydrating)W.isHydrating=!1;else if(!_){const xt=q&&G.transition&&G.transition.mode==="out-in";xt&&(q.transition.afterLeave=()=>{et===W.pendingId&&B(G,ht,wt,0)});let{anchor:wt}=W;q&&(wt=D(q),P(q,rt,W,!0)),xt||B(G,ht,wt,0)}Vr(W,G),W.pendingBranch=null,W.isInFallback=!1;let dt=W.parent,Ct=!1;for(;dt;){if(dt.pendingBranch){dt.effects.push(...st),Ct=!0;break}dt=dt.parent}Ct||G0(st),W.effects=[],H&&l&&l.pendingBranch&&O===l.pendingId&&(l.deps--,l.deps===0&&!tt&&l.resolve()),Vo(nt,"onResolve")},fallback(_){if(!W.pendingBranch)return;const{vnode:tt,activeBranch:nt,parentComponent:q,container:G,isSVG:et}=W;Vo(tt,"onFallback");const st=D(nt),rt=()=>{W.isInFallback&&(A(null,_,G,st,q,null,et,b,z),Vr(W,_))},ht=_.transition&&_.transition.mode==="out-in";ht&&(nt.transition.afterLeave=rt),W.isInFallback=!0,P(nt,q,null,!0),ht||rt()},move(_,tt,nt){W.activeBranch&&B(W.activeBranch,_,tt,nt),W.container=_},next(){return W.activeBranch&&D(W.activeBranch)},registerDep(_,tt){const nt=!!W.pendingBranch;nt&&W.deps++;const q=_.vnode.el;_.asyncDep.catch(G=>{fr(G,_,0)}).then(G=>{if(_.isUnmounted||W.isUnmounted||W.pendingId!==_.suspenseId)return;_.asyncResolved=!0;const{vnode:et}=_;Oi(_,G,!1),q&&(et.el=q);const st=!q&&_.subTree.el;tt(_,et,E(q||_.subTree.el),q?null:D(_.subTree),W,v,z),st&&Y(st),Z0(_,et.el),nt&&--W.deps===0&&W.resolve()})},unmount(_,tt){W.isUnmounted=!0,W.activeBranch&&P(W.activeBranch,r,_,tt),W.pendingBranch&&P(W.pendingBranch,r,_,tt)}};return W}function Mw(n,l,r,h,u,g,v,b,z){const C=l.suspense=K0(l,h,r,n.parentNode,document.createElement("div"),null,u,g,v,b,!0),S=z(n,C.pendingBranch=l.ssContent,r,C,g,v);return C.deps===0&&C.resolve(!1,!0),S}function xw(n){const{shapeFlag:l,children:r}=n,h=l&32;n.ssContent=v2(h?r.default:r),n.ssFallback=h?v2(r.fallback):t(nn)}function v2(n){let l;if(re(n)){const r=ur&&n._c;r&&(n._d=!1,ds()),n=n(),r&&(n._d=!0,l=gn,gc())}return oe(n)&&(n=pw(n)),n=Mn(n),l&&!n.dynamicChildren&&(n.dynamicChildren=l.filter(r=>r!==n)),n}function Ed(n,l){l&&l.pendingBranch?oe(n)?l.effects.push(...n):l.effects.push(n):G0(n)}function Vr(n,l){n.activeBranch=l;const{vnode:r,parentComponent:h}=n,u=r.el=l.el;h&&h.subTree===r&&(h.vnode.el=u,Z0(h,u))}function zw(n){var l;return((l=n.props)==null?void 0:l.suspensible)!=null&&n.props.suspensible!==!1}function fn(n,l){return as(n,null,l)}function Vd(n,l){return as(n,null,{flush:"post"})}function Iw(n,l){return as(n,null,{flush:"sync"})}const As={};function Vt(n,l,r){return as(n,l,r)}function as(n,l,{immediate:r,deep:h,flush:u,onTrack:g,onTrigger:v}=ze){var b;const z=F0()===((b=Le)==null?void 0:b.scope)?Le:null;let C,S=!1,A=!1;if(ke(n)?(C=()=>n.value,S=Fo(n)):dl(n)?(C=()=>n,h=!0):oe(n)?(A=!0,S=n.some(W=>dl(W)||Fo(W)),C=()=>n.map(W=>{if(ke(W))return W.value;if(dl(W))return nr(W);if(re(W))return cl(W,z,2)})):re(n)?l?C=()=>cl(n,z,2):C=()=>{if(!(z&&z.isUnmounted))return B&&B(),zn(n,z,3,[P])}:C=Jn,l&&h){const W=C;C=()=>nr(W())}let B,P=W=>{B=H.onStop=()=>{cl(W,z,4)}},D;if(Xr)if(P=Jn,l?r&&zn(l,z,3,[C(),A?[]:void 0,P]):C(),u==="sync"){const W=Ic();D=W.__watcherHandles||(W.__watcherHandles=[])}else return Jn;let E=A?new Array(n.length).fill(As):As;const Y=()=>{if(H.active)if(l){const W=H.run();(h||S||(A?W.some((_,tt)=>Si(_,E[tt])):Si(W,E)))&&(B&&B(),zn(l,z,3,[W,E===As?void 0:A&&E[0]===As?[]:E,P]),E=W)}else H.run()};Y.allowRecurse=!!l;let O;u==="sync"?O=Y:u==="post"?O=()=>qe(Y,z&&z.suspense):(Y.pre=!0,z&&(Y.id=z.uid),O=()=>ka(Y));const H=new ns(C,O);l?r?Y():E=H.run():u==="post"?qe(H.run.bind(H),z&&z.suspense):H.run();const U=()=>{H.stop(),z&&z.scope&&X0(z.scope.effects,H)};return D&&D.push(U),U}function yw(n,l,r){const h=this.proxy,u=Oe(n)?n.includes(".")?_d(h,n):()=>h[n]:n.bind(h,h);let g;re(l)?g=l:(g=l.handler,r=l);const v=Le;Tl(this);const b=as(u,g.bind(h),r);return v?Tl(v):Ll(),b}function _d(n,l){const r=l.split(".");return()=>{let h=n;for(let u=0;u{nr(r,l)});else if(jd(n))for(const r in n)nr(n[r],l);return n}function Ce(n,l){const r=Ve;if(r===null)return n;const h=$a(r)||r.proxy,u=n.dirs||(n.dirs=[]);for(let g=0;g{n.isMounted=!0}),Ue(()=>{n.isUnmounting=!0}),n}const $n=[Function,Array],J0={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:$n,onEnter:$n,onAfterEnter:$n,onEnterCancelled:$n,onBeforeLeave:$n,onLeave:$n,onAfterLeave:$n,onLeaveCancelled:$n,onBeforeAppear:$n,onAppear:$n,onAfterAppear:$n,onAppearCancelled:$n},Cw={name:"BaseTransition",props:J0,setup(n,{slots:l}){const r=nl(),h=Q0();let u;return()=>{const g=l.default&&xa(l.default(),!0);if(!g||!g.length)return;let v=g[0];if(g.length>1){for(const E of g)if(E.type!==nn){v=E;break}}const b=ne(n),{mode:z}=b;if(h.isLeaving)return li(v);const C=f2(v);if(!C)return li(v);const S=Wr(C,b,h,r);cr(C,S);const A=r.subTree,B=A&&f2(A);let P=!1;const{getTransitionKey:D}=C.type;if(D){const E=D();u===void 0?u=E:E!==u&&(u=E,P=!0)}if(B&&B.type!==nn&&(!Vn(C,B)||P)){const E=Wr(B,b,h,r);if(cr(B,E),z==="out-in")return h.isLeaving=!0,E.afterLeave=()=>{h.isLeaving=!1,r.update.active!==!1&&r.update()},li(v);z==="in-out"&&C.type!==nn&&(E.delayLeave=(Y,O,H)=>{const U=Xd(h,B);U[String(B.key)]=B,Y._leaveCb=()=>{O(),Y._leaveCb=void 0,delete S.delayedLeave},S.delayedLeave=H})}return v}}},Wd=Cw;function Xd(n,l){const{leavingVNodes:r}=n;let h=r.get(l.type);return h||(h=Object.create(null),r.set(l.type,h)),h}function Wr(n,l,r,h){const{appear:u,mode:g,persisted:v=!1,onBeforeEnter:b,onEnter:z,onAfterEnter:C,onEnterCancelled:S,onBeforeLeave:A,onLeave:B,onAfterLeave:P,onLeaveCancelled:D,onBeforeAppear:E,onAppear:Y,onAfterAppear:O,onAppearCancelled:H}=l,U=String(n.key),W=Xd(r,n),_=(q,G)=>{q&&zn(q,h,9,G)},tt=(q,G)=>{const et=G[1];_(q,G),oe(q)?q.every(st=>st.length<=1)&&et():q.length<=1&&et()},nt={mode:g,persisted:v,beforeEnter(q){let G=b;if(!r.isMounted)if(u)G=E||b;else return;q._leaveCb&&q._leaveCb(!0);const et=W[U];et&&Vn(n,et)&&et.el._leaveCb&&et.el._leaveCb(),_(G,[q])},enter(q){let G=z,et=C,st=S;if(!r.isMounted)if(u)G=Y||z,et=O||C,st=H||S;else return;let rt=!1;const ht=q._enterCb=dt=>{rt||(rt=!0,dt?_(st,[q]):_(et,[q]),nt.delayedLeave&&nt.delayedLeave(),q._enterCb=void 0)};G?tt(G,[q,ht]):ht()},leave(q,G){const et=String(n.key);if(q._enterCb&&q._enterCb(!0),r.isUnmounting)return G();_(A,[q]);let st=!1;const rt=q._leaveCb=ht=>{st||(st=!0,G(),ht?_(D,[q]):_(P,[q]),q._leaveCb=void 0,W[et]===n&&delete W[et])};W[et]=n,B?tt(B,[q,rt]):rt()},clone(q){return Wr(q,l,r,h)}};return nt}function li(n){if(is(n))return n=Xn(n),n.children=null,n}function f2(n){return is(n)?n.children?n.children[0]:void 0:n}function cr(n,l){n.shapeFlag&6&&n.component?cr(n.component.subTree,l):n.shapeFlag&128?(n.ssContent.transition=l.clone(n.ssContent),n.ssFallback.transition=l.clone(n.ssFallback)):n.transition=l}function xa(n,l=!1,r){let h=[],u=0;for(let g=0;g1)for(let g=0;g_e({name:n.name},l,{setup:n}))():n}const sr=n=>!!n.type.__asyncLoader;function Sw(n){re(n)&&(n={loader:n});const{loader:l,loadingComponent:r,errorComponent:h,delay:u=200,timeout:g,suspensible:v=!0,onError:b}=n;let z=null,C,S=0;const A=()=>(S++,z=null,B()),B=()=>{let P;return z||(P=z=l().catch(D=>{if(D=D instanceof Error?D:new Error(String(D)),b)return new Promise((E,Y)=>{b(D,()=>E(A()),()=>Y(D),S+1)});throw D}).then(D=>P!==z&&z?z:(D&&(D.__esModule||D[Symbol.toStringTag]==="Module")&&(D=D.default),C=D,D)))};return mr({name:"AsyncComponentWrapper",__asyncLoader:B,get __asyncResolved(){return C},setup(){const P=Le;if(C)return()=>ri(C,P);const D=H=>{z=null,fr(H,P,13,!h)};if(v&&P.suspense||Xr)return B().then(H=>()=>ri(H,P)).catch(H=>(D(H),()=>h?t(h,{error:H}):null));const E=Pt(!1),Y=Pt(),O=Pt(!!u);return u&&setTimeout(()=>{O.value=!1},u),g!=null&&setTimeout(()=>{if(!E.value&&!Y.value){const H=new Error(`Async component timed out after ${g}ms.`);D(H),Y.value=H}},g),B().then(()=>{E.value=!0,P.parent&&is(P.parent.vnode)&&ka(P.parent.update)}).catch(H=>{D(H),Y.value=H}),()=>{if(E.value&&C)return ri(C,P);if(Y.value&&h)return t(h,{error:Y.value});if(r&&!O.value)return t(r)}}})}function ri(n,l){const{ref:r,props:h,children:u,ce:g}=l.vnode,v=t(n,h,u);return v.ref=r,v.ce=g,delete l.vnode.ce,v}const is=n=>n.type.__isKeepAlive,$w={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(n,{slots:l}){const r=nl(),h=r.ctx;if(!h.renderer)return()=>{const H=l.default&&l.default();return H&&H.length===1?H[0]:H};const u=new Map,g=new Set;let v=null;const b=r.suspense,{renderer:{p:z,m:C,um:S,o:{createElement:A}}}=h,B=A("div");h.activate=(H,U,W,_,tt)=>{const nt=H.component;C(H,U,W,0,b),z(nt.vnode,H,U,W,nt,b,_,H.slotScopeIds,tt),qe(()=>{nt.isDeactivated=!1,nt.a&&So(nt.a);const q=H.props&&H.props.onVnodeMounted;q&&un(q,nt.parent,H)},b)},h.deactivate=H=>{const U=H.component;C(H,B,null,1,b),qe(()=>{U.da&&So(U.da);const W=H.props&&H.props.onVnodeUnmounted;W&&un(W,U.parent,H),U.isDeactivated=!0},b)};function P(H){oi(H),S(H,r,b,!0)}function D(H){u.forEach((U,W)=>{const _=Ri(U.type);_&&(!H||!H(_))&&E(W)})}function E(H){const U=u.get(H);!v||!Vn(U,v)?P(U):v&&oi(v),u.delete(H),g.delete(H)}Vt(()=>[n.include,n.exclude],([H,U])=>{H&&D(W=>xo(H,W)),U&&D(W=>!xo(U,W))},{flush:"post",deep:!0});let Y=null;const O=()=>{Y!=null&&u.set(Y,si(r.subTree))};return Te(O),Ia(O),Ue(()=>{u.forEach(H=>{const{subTree:U,suspense:W}=r,_=si(U);if(H.type===_.type&&H.key===_.key){oi(_);const tt=_.component.da;tt&&qe(tt,W);return}P(H)})}),()=>{if(Y=null,!l.default)return null;const H=l.default(),U=H[0];if(H.length>1)return v=null,H;if(!Ol(U)||!(U.shapeFlag&4)&&!(U.shapeFlag&128))return v=null,U;let W=si(U);const _=W.type,tt=Ri(sr(W)?W.type.__asyncResolved||{}:_),{include:nt,exclude:q,max:G}=n;if(nt&&(!tt||!xo(nt,tt))||q&&tt&&xo(q,tt))return v=W,U;const et=W.key==null?_:W.key,st=u.get(et);return W.el&&(W=Xn(W),U.shapeFlag&128&&(U.ssContent=W)),Y=et,st?(W.el=st.el,W.component=st.component,W.transition&&cr(W,W.transition),W.shapeFlag|=512,g.delete(et),g.add(et)):(g.add(et),G&&g.size>parseInt(G,10)&&E(g.values().next().value)),W.shapeFlag|=256,v=W,Rd(U.type)?U:W}}},Aw=$w;function xo(n,l){return oe(n)?n.some(r=>xo(r,l)):Oe(n)?n.split(",").includes(l):Wg(n)?n.test(l):!1}function th(n,l){qd(n,"a",l)}function eh(n,l){qd(n,"da",l)}function qd(n,l,r=Le){const h=n.__wdc||(n.__wdc=()=>{let u=r;for(;u;){if(u.isDeactivated)return;u=u.parent}return n()});if(za(l,h,r),r){let u=r.parent;for(;u&&u.parent;)is(u.parent.vnode)&&Bw(h,l,r,u),u=u.parent}}function Bw(n,l,r,h){const u=za(l,n,h,!0);ya(()=>{X0(h[l],u)},r)}function oi(n){n.shapeFlag&=-257,n.shapeFlag&=-513}function si(n){return n.shapeFlag&128?n.ssContent:n}function za(n,l,r=Le,h=!1){if(r){const u=r[n]||(r[n]=[]),g=l.__weh||(l.__weh=(...v)=>{if(r.isUnmounted)return;to(),Tl(r);const b=zn(l,r,n,v);return Ll(),eo(),b});return h?u.unshift(g):u.push(g),g}}const ml=n=>(l,r=Le)=>(!Xr||n==="sp")&&za(n,(...h)=>l(...h),r),hs=ml("bm"),Te=ml("m"),nh=ml("bu"),Ia=ml("u"),Ue=ml("bum"),ya=ml("um"),Yd=ml("sp"),Gd=ml("rtg"),Ud=ml("rtc");function Zd(n,l=Le){za("ec",n,l)}const lh="components",Hw="directives";function Nw(n,l){return rh(lh,n,!0,l)||n}const Kd=Symbol.for("v-ndc");function Qd(n){return Oe(n)?rh(lh,n,!1)||n:n||Kd}function mn(n){return rh(Hw,n)}function rh(n,l,r=!0,h=!1){const u=Ve||Le;if(u){const g=u.type;if(n===lh){const b=Ri(g,!1);if(b&&(b===l||b===In(l)||b===fl(In(l))))return g}const v=m2(u[n]||g[n],l)||m2(u.appContext[n],l);return!v&&h?g:v}}function m2(n,l){return n&&(n[l]||n[In(l)]||n[fl(In(l))])}function jw(n,l,r,h){let u;const g=r&&r[h];if(oe(n)||Oe(n)){u=new Array(n.length);for(let v=0,b=n.length;vl(v,b,void 0,g&&g[b]));else{const v=Object.keys(n);u=new Array(v.length);for(let b=0,z=v.length;b{const g=h.fn(...u);return g&&(g.key=h.key),g}:h.fn)}return n}function Lw(n,l,r={},h,u){if(Ve.isCE||Ve.parent&&sr(Ve.parent)&&Ve.parent.isCE)return l!=="default"&&(r.name=l),t("slot",r,h&&h());let g=n[l];g&&g._c&&(g._d=!1),ds();const v=g&&Jd(g(r)),b=Ca(Zt,{key:r.key||v&&v.key||`_${l}`},v||(h?h():[]),v&&n._===1?64:-2);return!u&&b.scopeId&&(b.slotScopeIds=[b.scopeId+"-s"]),g&&g._c&&(g._d=!0),b}function Jd(n){return n.some(l=>Ol(l)?!(l.type===nn||l.type===Zt&&!Jd(l.children)):!0)?n:null}function Dw(n,l){const r={};for(const h in n)r[l&&/[A-Z]/.test(h)?`on:${h}`:Co(h)]=n[h];return r}const Hi=n=>n?kc(n)?$a(n)||n.proxy:Hi(n.parent):null,$o=_e(Object.create(null),{$:n=>n,$el:n=>n.vnode.el,$data:n=>n.data,$props:n=>n.props,$attrs:n=>n.attrs,$slots:n=>n.slots,$refs:n=>n.refs,$parent:n=>Hi(n.parent),$root:n=>Hi(n.root),$emit:n=>n.emit,$options:n=>oh(n),$forceUpdate:n=>n.f||(n.f=()=>ka(n.update)),$nextTick:n=>n.n||(n.n=pe.bind(n.proxy)),$watch:n=>yw.bind(n)}),ai=(n,l)=>n!==ze&&!n.__isScriptSetup&&ve(n,l),Ni={get({_:n},l){const{ctx:r,setupState:h,data:u,props:g,accessCache:v,type:b,appContext:z}=n;let C;if(l[0]!=="$"){const P=v[l];if(P!==void 0)switch(P){case 1:return h[l];case 2:return u[l];case 4:return r[l];case 3:return g[l]}else{if(ai(h,l))return v[l]=1,h[l];if(u!==ze&&ve(u,l))return v[l]=2,u[l];if((C=n.propsOptions[0])&&ve(C,l))return v[l]=3,g[l];if(r!==ze&&ve(r,l))return v[l]=4,r[l];ji&&(v[l]=0)}}const S=$o[l];let A,B;if(S)return l==="$attrs"&&wn(n,"get",l),S(n);if((A=b.__cssModules)&&(A=A[l]))return A;if(r!==ze&&ve(r,l))return v[l]=4,r[l];if(B=z.config.globalProperties,ve(B,l))return B[l]},set({_:n},l,r){const{data:h,setupState:u,ctx:g}=n;return ai(u,l)?(u[l]=r,!0):h!==ze&&ve(h,l)?(h[l]=r,!0):ve(n.props,l)||l[0]==="$"&&l.slice(1)in n?!1:(g[l]=r,!0)},has({_:{data:n,setupState:l,accessCache:r,ctx:h,appContext:u,propsOptions:g}},v){let b;return!!r[v]||n!==ze&&ve(n,v)||ai(l,v)||(b=g[0])&&ve(b,v)||ve(h,v)||ve($o,v)||ve(u.config.globalProperties,v)},defineProperty(n,l,r){return r.get!=null?n._.accessCache[l]=0:ve(r,"value")&&this.set(n,l,r.value,null),Reflect.defineProperty(n,l,r)}},Fw=_e({},Ni,{get(n,l){if(l!==Symbol.unscopables)return Ni.get(n,l,n)},has(n,l){return l[0]!=="_"&&!Zg(l)}});function Ow(){return null}function Tw(){return null}function Rw(n){}function Ew(n){}function Vw(){return null}function _w(){}function Ww(n,l){return null}function Xw(){return tc().slots}function qw(){return tc().attrs}function Yw(n,l,r){const h=nl();if(r&&r.local){const u=Pt(n[l]);return Vt(()=>n[l],g=>u.value=g),Vt(u,g=>{g!==n[l]&&h.emit(`update:${l}`,g)}),u}else return{__v_isRef:!0,get value(){return n[l]},set value(u){h.emit(`update:${l}`,u)}}}function tc(){const n=nl();return n.setupContext||(n.setupContext=xc(n))}function _o(n){return oe(n)?n.reduce((l,r)=>(l[r]=null,l),{}):n}function Gw(n,l){const r=_o(n);for(const h in l){if(h.startsWith("__skip"))continue;let u=r[h];u?oe(u)||re(u)?u=r[h]={type:u,default:l[h]}:u.default=l[h]:u===null&&(u=r[h]={default:l[h]}),u&&l[`__skip_${h}`]&&(u.skipFactory=!0)}return r}function Uw(n,l){return!n||!l?n||l:oe(n)&&oe(l)?n.concat(l):_e({},_o(n),_o(l))}function Zw(n,l){const r={};for(const h in n)l.includes(h)||Object.defineProperty(r,h,{enumerable:!0,get:()=>n[h]});return r}function Kw(n){const l=nl();let r=n();return Ll(),q0(r)&&(r=r.catch(h=>{throw Tl(l),h})),[r,()=>Tl(l)]}let ji=!0;function Qw(n){const l=oh(n),r=n.proxy,h=n.ctx;ji=!1,l.beforeCreate&&k2(l.beforeCreate,n,"bc");const{data:u,computed:g,methods:v,watch:b,provide:z,inject:C,created:S,beforeMount:A,mounted:B,beforeUpdate:P,updated:D,activated:E,deactivated:Y,beforeDestroy:O,beforeUnmount:H,destroyed:U,unmounted:W,render:_,renderTracked:tt,renderTriggered:nt,errorCaptured:q,serverPrefetch:G,expose:et,inheritAttrs:st,components:rt,directives:ht,filters:dt}=l;if(C&&Jw(C,h,null),v)for(const wt in v){const gt=v[wt];re(gt)&&(h[wt]=gt.bind(r))}if(u){const wt=u.call(r,r);De(wt)&&(n.data=Ye(wt))}if(ji=!0,g)for(const wt in g){const gt=g[wt],It=re(gt)?gt.bind(r,r):re(gt.get)?gt.get.bind(r,r):Jn,$t=!re(gt)&&re(gt.set)?gt.set.bind(r):Jn,Tt=X({get:It,set:$t});Object.defineProperty(h,wt,{enumerable:!0,configurable:!0,get:()=>Tt.value,set:Ft=>Tt.value=Ft})}if(b)for(const wt in b)ec(b[wt],h,r,wt);if(z){const wt=re(z)?z.call(r):z;Reflect.ownKeys(wt).forEach(gt=>{ye(gt,wt[gt])})}S&&k2(S,n,"c");function xt(wt,gt){oe(gt)?gt.forEach(It=>wt(It.bind(r))):gt&&wt(gt.bind(r))}if(xt(hs,A),xt(Te,B),xt(nh,P),xt(Ia,D),xt(th,E),xt(eh,Y),xt(Zd,q),xt(Ud,tt),xt(Gd,nt),xt(Ue,H),xt(ya,W),xt(Yd,G),oe(et))if(et.length){const wt=n.exposed||(n.exposed={});et.forEach(gt=>{Object.defineProperty(wt,gt,{get:()=>r[gt],set:It=>r[gt]=It})})}else n.exposed||(n.exposed={});_&&n.render===Jn&&(n.render=_),st!=null&&(n.inheritAttrs=st),rt&&(n.components=rt),ht&&(n.directives=ht)}function Jw(n,l,r=Jn){oe(n)&&(n=Pi(n));for(const h in n){const u=n[h];let g;De(u)?"default"in u?g=he(u.from||h,u.default,!0):g=he(u.from||h):g=he(u),ke(g)?Object.defineProperty(l,h,{enumerable:!0,configurable:!0,get:()=>g.value,set:v=>g.value=v}):l[h]=g}}function k2(n,l,r){zn(oe(n)?n.map(h=>h.bind(l.proxy)):n.bind(l.proxy),l,r)}function ec(n,l,r,h){const u=h.includes(".")?_d(r,h):()=>r[h];if(Oe(n)){const g=l[n];re(g)&&Vt(u,g)}else if(re(n))Vt(u,n.bind(r));else if(De(n))if(oe(n))n.forEach(g=>ec(g,l,r,h));else{const g=re(n.handler)?n.handler.bind(r):l[n.handler];re(g)&&Vt(u,g,n)}}function oh(n){const l=n.type,{mixins:r,extends:h}=l,{mixins:u,optionsCache:g,config:{optionMergeStrategies:v}}=n.appContext,b=g.get(l);let z;return b?z=b:!u.length&&!r&&!h?z=l:(z={},u.length&&u.forEach(C=>Zs(z,C,v,!0)),Zs(z,l,v)),De(l)&&g.set(l,z),z}function Zs(n,l,r,h=!1){const{mixins:u,extends:g}=l;g&&Zs(n,g,r,!0),u&&u.forEach(v=>Zs(n,v,r,!0));for(const v in l)if(!(h&&v==="expose")){const b=tv[v]||r&&r[v];n[v]=b?b(n[v],l[v]):l[v]}return n}const tv={data:b2,props:M2,emits:M2,methods:zo,computed:zo,beforeCreate:hn,created:hn,beforeMount:hn,mounted:hn,beforeUpdate:hn,updated:hn,beforeDestroy:hn,beforeUnmount:hn,destroyed:hn,unmounted:hn,activated:hn,deactivated:hn,errorCaptured:hn,serverPrefetch:hn,components:zo,directives:zo,watch:nv,provide:b2,inject:ev};function b2(n,l){return l?n?function(){return _e(re(n)?n.call(this,this):n,re(l)?l.call(this,this):l)}:l:n}function ev(n,l){return zo(Pi(n),Pi(l))}function Pi(n){if(oe(n)){const l={};for(let r=0;r1)return r&&re(l)?l.call(h&&h.proxy):l}}function lc(){return!!(Le||Ve||Wo)}function ov(n,l,r,h=!1){const u={},g={};$i(g,Sa,1),n.propsDefaults=Object.create(null),rc(n,l,u,g);for(const v in n.propsOptions[0])v in u||(u[v]=void 0);r?n.props=h?u:R0(u):n.type.props?n.props=u:n.props=g,n.attrs=g}function sv(n,l,r,h){const{props:u,attrs:g,vnode:{patchFlag:v}}=n,b=ne(u),[z]=n.propsOptions;let C=!1;if((h||v>0)&&!(v&16)){if(v&8){const S=n.vnode.dynamicProps;for(let A=0;A{z=!0;const[B,P]=oc(A,l,!0);_e(v,B),P&&b.push(...P)};!r&&l.mixins.length&&l.mixins.forEach(S),n.extends&&S(n.extends),n.mixins&&n.mixins.forEach(S)}if(!g&&!z)return De(n)&&h.set(n,Rr),Rr;if(oe(g))for(let S=0;S-1,P[1]=E<0||D-1||ve(P,"default"))&&b.push(A)}}}const C=[v,b];return De(n)&&h.set(n,C),C}function x2(n){return n[0]!=="$"}function z2(n){const l=n&&n.toString().match(/^\s*(function|class) (\w+)/);return l?l[2]:n===null?"null":""}function I2(n,l){return z2(n)===z2(l)}function y2(n,l){return oe(l)?l.findIndex(r=>I2(r,n)):re(l)&&I2(l,n)?0:-1}const sc=n=>n[0]==="_"||n==="$stable",sh=n=>oe(n)?n.map(Mn):[Mn(n)],av=(n,l,r)=>{if(l._n)return l;const h=U0((...u)=>sh(l(...u)),r);return h._c=!1,h},ac=(n,l,r)=>{const h=n._ctx;for(const u in n){if(sc(u))continue;const g=n[u];if(re(g))l[u]=av(u,g,h);else if(g!=null){const v=sh(g);l[u]=()=>v}}},ic=(n,l)=>{const r=sh(l);n.slots.default=()=>r},iv=(n,l)=>{if(n.vnode.shapeFlag&32){const r=l._;r?(n.slots=ne(l),$i(l,"_",r)):ac(l,n.slots={})}else n.slots={},l&&ic(n,l);$i(n.slots,Sa,1)},hv=(n,l,r)=>{const{vnode:h,slots:u}=n;let g=!0,v=ze;if(h.shapeFlag&32){const b=l._;b?r&&b===1?g=!1:(_e(u,l),!r&&b===1&&delete u._):(g=!l.$stable,ac(l,u)),v=l}else l&&(ic(n,l),v={default:1});if(g)for(const b in u)!sc(b)&&!(b in v)&&delete u[b]};function Ks(n,l,r,h,u=!1){if(oe(n)){n.forEach((B,P)=>Ks(B,l&&(oe(l)?l[P]:l),r,h,u));return}if(sr(h)&&!u)return;const g=h.shapeFlag&4?$a(h.component)||h.component.proxy:h.el,v=u?null:g,{i:b,r:z}=n,C=l&&l.r,S=b.refs===ze?b.refs={}:b.refs,A=b.setupState;if(C!=null&&C!==z&&(Oe(C)?(S[C]=null,ve(A,C)&&(A[C]=null)):ke(C)&&(C.value=null)),re(z))cl(z,b,12,[v,S]);else{const B=Oe(z),P=ke(z);if(B||P){const D=()=>{if(n.f){const E=B?ve(A,z)?A[z]:S[z]:z.value;u?oe(E)&&X0(E,g):oe(E)?E.includes(g)||E.push(g):B?(S[z]=[g],ve(A,z)&&(A[z]=S[z])):(z.value=[g],n.k&&(S[n.k]=z.value))}else B?(S[z]=v,ve(A,z)&&(A[z]=v)):P&&(z.value=v,n.k&&(S[n.k]=v))};v?(D.id=-1,qe(D,r)):D()}}}let yl=!1;const Bs=n=>/svg/.test(n.namespaceURI)&&n.tagName!=="foreignObject",Hs=n=>n.nodeType===8;function dv(n){const{mt:l,p:r,o:{patchProp:h,createText:u,nextSibling:g,parentNode:v,remove:b,insert:z,createComment:C}}=n,S=(O,H)=>{if(!H.hasChildNodes()){r(null,O,H),Us(),H._vnode=O;return}yl=!1,A(H.firstChild,O,null,null,null),Us(),H._vnode=O,yl&&console.error("Hydration completed but contains mismatches.")},A=(O,H,U,W,_,tt=!1)=>{const nt=Hs(O)&&O.data==="[",q=()=>E(O,H,U,W,_,nt),{type:G,ref:et,shapeFlag:st,patchFlag:rt}=H;let ht=O.nodeType;H.el=O,rt===-2&&(tt=!1,H.dynamicChildren=null);let dt=null;switch(G){case Fl:ht!==3?H.children===""?(z(H.el=u(""),v(O),O),dt=O):dt=q():(O.data!==H.children&&(yl=!0,O.data=H.children),dt=g(O));break;case nn:ht!==8||nt?dt=q():dt=g(O);break;case ar:if(nt&&(O=g(O),ht=O.nodeType),ht===1||ht===3){dt=O;const Ct=!H.children.length;for(let xt=0;xt{tt=tt||!!H.dynamicChildren;const{type:nt,props:q,patchFlag:G,shapeFlag:et,dirs:st}=H,rt=nt==="input"&&st||nt==="option";if(rt||G!==-1){if(st&&Zn(H,null,U,"created"),q)if(rt||!tt||G&48)for(const dt in q)(rt&&dt.endsWith("value")||wa(dt)&&!yo(dt))&&h(O,dt,null,q[dt],!1,void 0,U);else q.onClick&&h(O,"onClick",null,q.onClick,!1,void 0,U);let ht;if((ht=q&&q.onVnodeBeforeMount)&&un(ht,U,H),st&&Zn(H,null,U,"beforeMount"),((ht=q&&q.onVnodeMounted)||st)&&Ed(()=>{ht&&un(ht,U,H),st&&Zn(H,null,U,"mounted")},W),et&16&&!(q&&(q.innerHTML||q.textContent))){let dt=P(O.firstChild,H,O,U,W,_,tt);for(;dt;){yl=!0;const Ct=dt;dt=dt.nextSibling,b(Ct)}}else et&8&&O.textContent!==H.children&&(yl=!0,O.textContent=H.children)}return O.nextSibling},P=(O,H,U,W,_,tt,nt)=>{nt=nt||!!H.dynamicChildren;const q=H.children,G=q.length;for(let et=0;et{const{slotScopeIds:nt}=H;nt&&(_=_?_.concat(nt):nt);const q=v(O),G=P(g(O),H,q,U,W,_,tt);return G&&Hs(G)&&G.data==="]"?g(H.anchor=G):(yl=!0,z(H.anchor=C("]"),q,G),G)},E=(O,H,U,W,_,tt)=>{if(yl=!0,H.el=null,tt){const G=Y(O);for(;;){const et=g(O);if(et&&et!==G)b(et);else break}}const nt=g(O),q=v(O);return b(O),r(null,H,q,nt,U,W,Bs(q),_),nt},Y=O=>{let H=0;for(;O;)if(O=g(O),O&&Hs(O)&&(O.data==="["&&H++,O.data==="]")){if(H===0)return g(O);H--}return O};return[S,A]}const qe=Ed;function hc(n){return cc(n)}function dc(n){return cc(n,dv)}function cc(n,l){const r=Ai();r.__VUE__=!0;const{insert:h,remove:u,patchProp:g,createElement:v,createText:b,createComment:z,setText:C,setElementText:S,parentNode:A,nextSibling:B,setScopeId:P=Jn,insertStaticContent:D}=n,E=(J,lt,at,ct=null,kt=null,yt=null,Dt=!1,St=null,Ot=!!lt.dynamicChildren)=>{if(J===lt)return;J&&!Vn(J,lt)&&(ct=pt(J),Ft(J,kt,yt,!0),J=null),lt.patchFlag===-2&&(Ot=!1,lt.dynamicChildren=null);const{type:jt,ref:Ut,shapeFlag:Yt}=lt;switch(jt){case Fl:Y(J,lt,at,ct);break;case nn:O(J,lt,at,ct);break;case ar:J==null&&H(lt,at,ct,Dt);break;case Zt:rt(J,lt,at,ct,kt,yt,Dt,St,Ot);break;default:Yt&1?_(J,lt,at,ct,kt,yt,Dt,St,Ot):Yt&6?ht(J,lt,at,ct,kt,yt,Dt,St,Ot):(Yt&64||Yt&128)&&jt.process(J,lt,at,ct,kt,yt,Dt,St,Ot,Nt)}Ut!=null&&kt&&Ks(Ut,J&&J.ref,yt,lt||J,!lt)},Y=(J,lt,at,ct)=>{if(J==null)h(lt.el=b(lt.children),at,ct);else{const kt=lt.el=J.el;lt.children!==J.children&&C(kt,lt.children)}},O=(J,lt,at,ct)=>{J==null?h(lt.el=z(lt.children||""),at,ct):lt.el=J.el},H=(J,lt,at,ct)=>{[J.el,J.anchor]=D(J.children,lt,at,ct,J.el,J.anchor)},U=({el:J,anchor:lt},at,ct)=>{let kt;for(;J&&J!==lt;)kt=B(J),h(J,at,ct),J=kt;h(lt,at,ct)},W=({el:J,anchor:lt})=>{let at;for(;J&&J!==lt;)at=B(J),u(J),J=at;u(lt)},_=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{Dt=Dt||lt.type==="svg",J==null?tt(lt,at,ct,kt,yt,Dt,St,Ot):G(J,lt,kt,yt,Dt,St,Ot)},tt=(J,lt,at,ct,kt,yt,Dt,St)=>{let Ot,jt;const{type:Ut,props:Yt,shapeFlag:Gt,transition:Jt,dirs:se}=J;if(Ot=J.el=v(J.type,yt,Yt&&Yt.is,Yt),Gt&8?S(Ot,J.children):Gt&16&&q(J.children,Ot,null,ct,kt,yt&&Ut!=="foreignObject",Dt,St),se&&Zn(J,null,ct,"created"),nt(Ot,J,J.scopeId,Dt,ct),Yt){for(const ue in Yt)ue!=="value"&&!yo(ue)&&g(Ot,ue,null,Yt[ue],yt,J.children,ct,kt,ut);"value"in Yt&&g(Ot,"value",null,Yt.value),(jt=Yt.onVnodeBeforeMount)&&un(jt,ct,J)}se&&Zn(J,null,ct,"beforeMount");const me=(!kt||kt&&!kt.pendingBranch)&&Jt&&!Jt.persisted;me&&Jt.beforeEnter(Ot),h(Ot,lt,at),((jt=Yt&&Yt.onVnodeMounted)||me||se)&&qe(()=>{jt&&un(jt,ct,J),me&&Jt.enter(Ot),se&&Zn(J,null,ct,"mounted")},kt)},nt=(J,lt,at,ct,kt)=>{if(at&&P(J,at),ct)for(let yt=0;yt{for(let jt=Ot;jt{const St=lt.el=J.el;let{patchFlag:Ot,dynamicChildren:jt,dirs:Ut}=lt;Ot|=J.patchFlag&16;const Yt=J.props||ze,Gt=lt.props||ze;let Jt;at&&Zl(at,!1),(Jt=Gt.onVnodeBeforeUpdate)&&un(Jt,at,lt,J),Ut&&Zn(lt,J,at,"beforeUpdate"),at&&Zl(at,!0);const se=kt&<.type!=="foreignObject";if(jt?et(J.dynamicChildren,jt,St,at,ct,se,yt):Dt||gt(J,lt,St,null,at,ct,se,yt,!1),Ot>0){if(Ot&16)st(St,lt,Yt,Gt,at,ct,kt);else if(Ot&2&&Yt.class!==Gt.class&&g(St,"class",null,Gt.class,kt),Ot&4&&g(St,"style",Yt.style,Gt.style,kt),Ot&8){const me=lt.dynamicProps;for(let ue=0;ue{Jt&&un(Jt,at,lt,J),Ut&&Zn(lt,J,at,"updated")},ct)},et=(J,lt,at,ct,kt,yt,Dt)=>{for(let St=0;St{if(at!==ct){if(at!==ze)for(const St in at)!yo(St)&&!(St in ct)&&g(J,St,at[St],null,Dt,lt.children,kt,yt,ut);for(const St in ct){if(yo(St))continue;const Ot=ct[St],jt=at[St];Ot!==jt&&St!=="value"&&g(J,St,jt,Ot,Dt,lt.children,kt,yt,ut)}"value"in ct&&g(J,"value",at.value,ct.value)}},rt=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{const jt=lt.el=J?J.el:b(""),Ut=lt.anchor=J?J.anchor:b("");let{patchFlag:Yt,dynamicChildren:Gt,slotScopeIds:Jt}=lt;Jt&&(St=St?St.concat(Jt):Jt),J==null?(h(jt,at,ct),h(Ut,at,ct),q(lt.children,at,Ut,kt,yt,Dt,St,Ot)):Yt>0&&Yt&64&&Gt&&J.dynamicChildren?(et(J.dynamicChildren,Gt,at,kt,yt,Dt,St),(lt.key!=null||kt&<===kt.subTree)&&ah(J,lt,!0)):gt(J,lt,at,Ut,kt,yt,Dt,St,Ot)},ht=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{lt.slotScopeIds=St,J==null?lt.shapeFlag&512?kt.ctx.activate(lt,at,ct,Dt,Ot):dt(lt,at,ct,kt,yt,Dt,Ot):Ct(J,lt,Ot)},dt=(J,lt,at,ct,kt,yt,Dt)=>{const St=J.component=mc(J,ct,kt);if(is(J)&&(St.ctx.renderer=Nt),bc(St),St.asyncDep){if(kt&&kt.registerDep(St,xt),!J.el){const Ot=St.subTree=t(nn);O(null,Ot,lt,at)}return}xt(St,J,lt,at,kt,yt,Dt)},Ct=(J,lt,at)=>{const ct=lt.component=J.component;if(vw(J,lt,at))if(ct.asyncDep&&!ct.asyncResolved){wt(ct,lt,at);return}else ct.next=lt,aw(ct.update),ct.update();else lt.el=J.el,ct.vnode=lt},xt=(J,lt,at,ct,kt,yt,Dt)=>{const St=()=>{if(J.isMounted){let{next:Ut,bu:Yt,u:Gt,parent:Jt,vnode:se}=J,me=Ut,ue;Zl(J,!1),Ut?(Ut.el=se.el,wt(J,Ut,Dt)):Ut=se,Yt&&So(Yt),(ue=Ut.props&&Ut.props.onVnodeBeforeUpdate)&&un(ue,Jt,Ut,se),Zl(J,!0);const Se=_s(J),kn=J.subTree;J.subTree=Se,E(kn,Se,A(kn.el),pt(kn),J,kt,yt),Ut.el=Se.el,me===null&&Z0(J,Se.el),Gt&&qe(Gt,kt),(ue=Ut.props&&Ut.props.onVnodeUpdated)&&qe(()=>un(ue,Jt,Ut,se),kt)}else{let Ut;const{el:Yt,props:Gt}=lt,{bm:Jt,m:se,parent:me}=J,ue=sr(lt);if(Zl(J,!1),Jt&&So(Jt),!ue&&(Ut=Gt&&Gt.onVnodeBeforeMount)&&un(Ut,me,lt),Zl(J,!0),Yt&&ft){const Se=()=>{J.subTree=_s(J),ft(Yt,J.subTree,J,kt,null)};ue?lt.type.__asyncLoader().then(()=>!J.isUnmounted&&Se()):Se()}else{const Se=J.subTree=_s(J);E(null,Se,at,ct,J,kt,yt),lt.el=Se.el}if(se&&qe(se,kt),!ue&&(Ut=Gt&&Gt.onVnodeMounted)){const Se=lt;qe(()=>un(Ut,me,Se),kt)}(lt.shapeFlag&256||me&&sr(me.vnode)&&me.vnode.shapeFlag&256)&&J.a&&qe(J.a,kt),J.isMounted=!0,lt=at=ct=null}},Ot=J.effect=new ns(St,()=>ka(jt),J.scope),jt=J.update=()=>Ot.run();jt.id=J.uid,Zl(J,!0),jt()},wt=(J,lt,at)=>{lt.component=J;const ct=J.vnode.props;J.vnode=lt,J.next=null,sv(J,lt.props,ct,at),hv(J,lt.children,at),to(),g2(),eo()},gt=(J,lt,at,ct,kt,yt,Dt,St,Ot=!1)=>{const jt=J&&J.children,Ut=J?J.shapeFlag:0,Yt=lt.children,{patchFlag:Gt,shapeFlag:Jt}=lt;if(Gt>0){if(Gt&128){$t(jt,Yt,at,ct,kt,yt,Dt,St,Ot);return}else if(Gt&256){It(jt,Yt,at,ct,kt,yt,Dt,St,Ot);return}}Jt&8?(Ut&16&&ut(jt,kt,yt),Yt!==jt&&S(at,Yt)):Ut&16?Jt&16?$t(jt,Yt,at,ct,kt,yt,Dt,St,Ot):ut(jt,kt,yt,!0):(Ut&8&&S(at,""),Jt&16&&q(Yt,at,ct,kt,yt,Dt,St,Ot))},It=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{J=J||Rr,lt=lt||Rr;const jt=J.length,Ut=lt.length,Yt=Math.min(jt,Ut);let Gt;for(Gt=0;GtUt?ut(J,kt,yt,!0,!1,Yt):q(lt,at,ct,kt,yt,Dt,St,Ot,Yt)},$t=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{let jt=0;const Ut=lt.length;let Yt=J.length-1,Gt=Ut-1;for(;jt<=Yt&&jt<=Gt;){const Jt=J[jt],se=lt[jt]=Ot?Bl(lt[jt]):Mn(lt[jt]);if(Vn(Jt,se))E(Jt,se,at,null,kt,yt,Dt,St,Ot);else break;jt++}for(;jt<=Yt&&jt<=Gt;){const Jt=J[Yt],se=lt[Gt]=Ot?Bl(lt[Gt]):Mn(lt[Gt]);if(Vn(Jt,se))E(Jt,se,at,null,kt,yt,Dt,St,Ot);else break;Yt--,Gt--}if(jt>Yt){if(jt<=Gt){const Jt=Gt+1,se=JtGt)for(;jt<=Yt;)Ft(J[jt],kt,yt,!0),jt++;else{const Jt=jt,se=jt,me=new Map;for(jt=se;jt<=Gt;jt++){const an=lt[jt]=Ot?Bl(lt[jt]):Mn(lt[jt]);an.key!=null&&me.set(an.key,jt)}let ue,Se=0;const kn=Gt-se+1;let ll=!1,bs=0;const zl=new Array(kn);for(jt=0;jt=kn){Ft(an,kt,yt,!0);continue}let Sn;if(an.key!=null)Sn=me.get(an.key);else for(ue=se;ue<=Gt;ue++)if(zl[ue-se]===0&&Vn(an,lt[ue])){Sn=ue;break}Sn===void 0?Ft(an,kt,yt,!0):(zl[Sn-se]=jt+1,Sn>=bs?bs=Sn:ll=!0,E(an,lt[Sn],at,null,kt,yt,Dt,St,Ot),Se++)}const Ms=ll?cv(zl):Rr;for(ue=Ms.length-1,jt=kn-1;jt>=0;jt--){const an=se+jt,Sn=lt[an],wo=an+1{const{el:yt,type:Dt,transition:St,children:Ot,shapeFlag:jt}=J;if(jt&6){Tt(J.component.subTree,lt,at,ct);return}if(jt&128){J.suspense.move(lt,at,ct);return}if(jt&64){Dt.move(J,lt,at,Nt);return}if(Dt===Zt){h(yt,lt,at);for(let Yt=0;YtSt.enter(yt),kt);else{const{leave:Yt,delayLeave:Gt,afterLeave:Jt}=St,se=()=>h(yt,lt,at),me=()=>{Yt(yt,()=>{se(),Jt&&Jt()})};Gt?Gt(yt,se,me):me()}else h(yt,lt,at)},Ft=(J,lt,at,ct=!1,kt=!1)=>{const{type:yt,props:Dt,ref:St,children:Ot,dynamicChildren:jt,shapeFlag:Ut,patchFlag:Yt,dirs:Gt}=J;if(St!=null&&Ks(St,null,at,J,!0),Ut&256){lt.ctx.deactivate(J);return}const Jt=Ut&1&&Gt,se=!sr(J);let me;if(se&&(me=Dt&&Dt.onVnodeBeforeUnmount)&&un(me,lt,J),Ut&6)Rt(J.component,at,ct);else{if(Ut&128){J.suspense.unmount(at,ct);return}Jt&&Zn(J,null,lt,"beforeUnmount"),Ut&64?J.type.remove(J,lt,at,kt,Nt,ct):jt&&(yt!==Zt||Yt>0&&Yt&64)?ut(jt,lt,at,!1,!0):(yt===Zt&&Yt&384||!kt&&Ut&16)&&ut(Ot,lt,at),ct&&Kt(J)}(se&&(me=Dt&&Dt.onVnodeUnmounted)||Jt)&&qe(()=>{me&&un(me,lt,J),Jt&&Zn(J,null,lt,"unmounted")},at)},Kt=J=>{const{type:lt,el:at,anchor:ct,transition:kt}=J;if(lt===Zt){Qt(at,ct);return}if(lt===ar){W(J);return}const yt=()=>{u(at),kt&&!kt.persisted&&kt.afterLeave&&kt.afterLeave()};if(J.shapeFlag&1&&kt&&!kt.persisted){const{leave:Dt,delayLeave:St}=kt,Ot=()=>Dt(at,yt);St?St(J.el,yt,Ot):Ot()}else yt()},Qt=(J,lt)=>{let at;for(;J!==lt;)at=B(J),u(J),J=at;u(lt)},Rt=(J,lt,at)=>{const{bum:ct,scope:kt,update:yt,subTree:Dt,um:St}=J;ct&&So(ct),kt.stop(),yt&&(yt.active=!1,Ft(Dt,J,lt,at)),St&&qe(St,lt),qe(()=>{J.isUnmounted=!0},lt),lt&<.pendingBranch&&!lt.isUnmounted&&J.asyncDep&&!J.asyncResolved&&J.suspenseId===lt.pendingId&&(lt.deps--,lt.deps===0&<.resolve())},ut=(J,lt,at,ct=!1,kt=!1,yt=0)=>{for(let Dt=yt;DtJ.shapeFlag&6?pt(J.component.subTree):J.shapeFlag&128?J.suspense.next():B(J.anchor||J.el),Ht=(J,lt,at)=>{J==null?lt._vnode&&Ft(lt._vnode,null,null,!0):E(lt._vnode||null,J,lt,null,null,null,at),g2(),Us(),lt._vnode=J},Nt={p:E,um:Ft,m:Tt,r:Kt,mt:dt,mc:q,pc:gt,pbc:et,n:pt,o:n};let bt,ft;return l&&([bt,ft]=l(Nt)),{render:Ht,hydrate:bt,createApp:rv(Ht,bt)}}function Zl({effect:n,update:l},r){n.allowRecurse=l.allowRecurse=r}function ah(n,l,r=!1){const h=n.children,u=l.children;if(oe(h)&&oe(u))for(let g=0;g>1,n[r[b]]0&&(l[h]=r[g-1]),r[g]=h)}}for(g=r.length,v=r[g-1];g-- >0;)r[g]=v,v=l[v];return r}const uv=n=>n.__isTeleport,Ao=n=>n&&(n.disabled||n.disabled===""),C2=n=>typeof SVGElement<"u"&&n instanceof SVGElement,Di=(n,l)=>{const r=n&&n.to;return Oe(r)?l?l(r):null:r},pv={__isTeleport:!0,process(n,l,r,h,u,g,v,b,z,C){const{mc:S,pc:A,pbc:B,o:{insert:P,querySelector:D,createText:E,createComment:Y}}=C,O=Ao(l.props);let{shapeFlag:H,children:U,dynamicChildren:W}=l;if(n==null){const _=l.el=E(""),tt=l.anchor=E("");P(_,r,h),P(tt,r,h);const nt=l.target=Di(l.props,D),q=l.targetAnchor=E("");nt&&(P(q,nt),v=v||C2(nt));const G=(et,st)=>{H&16&&S(U,et,st,u,g,v,b,z)};O?G(r,tt):nt&&G(nt,q)}else{l.el=n.el;const _=l.anchor=n.anchor,tt=l.target=n.target,nt=l.targetAnchor=n.targetAnchor,q=Ao(n.props),G=q?r:tt,et=q?_:nt;if(v=v||C2(tt),W?(B(n.dynamicChildren,W,G,u,g,v,b),ah(n,l,!0)):z||A(n,l,G,et,u,g,v,b,!1),O)q||Ns(l,r,_,C,1);else if((l.props&&l.props.to)!==(n.props&&n.props.to)){const st=l.target=Di(l.props,D);st&&Ns(l,st,null,C,0)}else q&&Ns(l,tt,nt,C,1)}pc(l)},remove(n,l,r,h,{um:u,o:{remove:g}},v){const{shapeFlag:b,children:z,anchor:C,targetAnchor:S,target:A,props:B}=n;if(A&&g(S),(v||!Ao(B))&&(g(C),b&16))for(let P=0;P0?gn||Rr:null,gc(),ur>0&&gn&&gn.push(n),n}function wv(n,l,r,h,u,g){return wc(ih(n,l,r,h,u,g,!0))}function Ca(n,l,r,h,u){return wc(t(n,l,r,h,u,!0))}function Ol(n){return n?n.__v_isVNode===!0:!1}function Vn(n,l){return n.type===l.type&&n.key===l.key}function vv(n){}const Sa="__vInternal",vc=({key:n})=>n??null,Ws=({ref:n,ref_key:l,ref_for:r})=>(typeof n=="number"&&(n=""+n),n!=null?Oe(n)||ke(n)||re(n)?{i:Ve,r:n,k:l,f:!!r}:n:null);function ih(n,l=null,r=null,h=0,u=null,g=n===Zt?0:1,v=!1,b=!1){const z={__v_isVNode:!0,__v_skip:!0,type:n,props:l,key:l&&vc(l),ref:l&&Ws(l),scopeId:Ma,slotScopeIds:null,children:r,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:g,patchFlag:h,dynamicProps:u,dynamicChildren:null,appContext:null,ctx:Ve};return b?(hh(z,r),g&128&&n.normalize(z)):r&&(z.shapeFlag|=Oe(r)?8:16),ur>0&&!v&&gn&&(z.patchFlag>0||g&6)&&z.patchFlag!==32&&gn.push(z),z}const t=fv;function fv(n,l=null,r=null,h=0,u=null,g=!1){if((!n||n===Kd)&&(n=nn),Ol(n)){const b=Xn(n,l,!0);return r&&hh(b,r),ur>0&&!g&&gn&&(b.shapeFlag&6?gn[gn.indexOf(n)]=b:gn.push(b)),b.patchFlag|=-2,b}if(Cv(n)&&(n=n.__vccOpts),l){l=fc(l);let{class:b,style:z}=l;b&&!Oe(b)&&(l.class=ss(b)),De(z)&&(E0(z)&&!oe(z)&&(z=_e({},z)),l.style=os(z))}const v=Oe(n)?1:Rd(n)?128:uv(n)?64:De(n)?4:re(n)?2:0;return ih(n,l,r,h,u,v,g,!0)}function fc(n){return n?E0(n)||Sa in n?_e({},n):n:null}function Xn(n,l,r=!1){const{props:h,ref:u,patchFlag:g,children:v}=n,b=l?o(h||{},l):h;return{__v_isVNode:!0,__v_skip:!0,type:n.type,props:b,key:b&&vc(b),ref:l&&l.ref?r&&u?oe(u)?u.concat(Ws(l)):[u,Ws(l)]:Ws(l):u,scopeId:n.scopeId,slotScopeIds:n.slotScopeIds,children:v,target:n.target,targetAnchor:n.targetAnchor,staticCount:n.staticCount,shapeFlag:n.shapeFlag,patchFlag:l&&n.type!==Zt?g===-1?16:g|16:g,dynamicProps:n.dynamicProps,dynamicChildren:n.dynamicChildren,appContext:n.appContext,dirs:n.dirs,transition:n.transition,component:n.component,suspense:n.suspense,ssContent:n.ssContent&&Xn(n.ssContent),ssFallback:n.ssFallback&&Xn(n.ssFallback),el:n.el,anchor:n.anchor,ctx:n.ctx,ce:n.ce}}function e(n=" ",l=0){return t(Fl,null,n,l)}function mv(n,l){const r=t(ar,null,n);return r.staticCount=l,r}function kv(n="",l=!1){return l?(ds(),Ca(nn,null,n)):t(nn,null,n)}function Mn(n){return n==null||typeof n=="boolean"?t(nn):oe(n)?t(Zt,null,n.slice()):typeof n=="object"?Bl(n):t(Fl,null,String(n))}function Bl(n){return n.el===null&&n.patchFlag!==-1||n.memo?n:Xn(n)}function hh(n,l){let r=0;const{shapeFlag:h}=n;if(l==null)l=null;else if(oe(l))r=16;else if(typeof l=="object")if(h&65){const u=l.default;u&&(u._c&&(u._d=!1),hh(n,u()),u._c&&(u._d=!0));return}else{r=32;const u=l._;!u&&!(Sa in l)?l._ctx=Ve:u===3&&Ve&&(Ve.slots._===1?l._=1:(l._=2,n.patchFlag|=1024))}else re(l)?(l={default:l,_ctx:Ve},r=32):(l=String(l),h&64?(r=16,l=[e(l)]):r=8);n.children=l,n.shapeFlag|=r}function o(...n){const l={};for(let r=0;rLe||Ve;let dh,$r,S2="__VUE_INSTANCE_SETTERS__";($r=Ai()[S2])||($r=Ai()[S2]=[]),$r.push(n=>Le=n),dh=n=>{$r.length>1?$r.forEach(l=>l(n)):$r[0](n)};const Tl=n=>{dh(n),n.scope.on()},Ll=()=>{Le&&Le.scope.off(),dh(null)};function kc(n){return n.vnode.shapeFlag&4}let Xr=!1;function bc(n,l=!1){Xr=l;const{props:r,children:h}=n.vnode,u=kc(n);ov(n,r,u,l),iv(n,h);const g=u?xv(n,l):void 0;return Xr=!1,g}function xv(n,l){const r=n.type;n.accessCache=Object.create(null),n.proxy=ls(new Proxy(n.ctx,Ni));const{setup:h}=r;if(h){const u=n.setupContext=h.length>1?xc(n):null;Tl(n),to();const g=cl(h,n,0,[n.props,u]);if(eo(),Ll(),q0(g)){if(g.then(Ll,Ll),l)return g.then(v=>{Oi(n,v,l)}).catch(v=>{fr(v,n,0)});n.asyncDep=g}else Oi(n,g,l)}else Mc(n,l)}function Oi(n,l,r){re(l)?n.type.__ssrInlineRender?n.ssrRender=l:n.render=l:De(l)&&(n.setupState=W0(l)),Mc(n,r)}let Qs,Ti;function zv(n){Qs=n,Ti=l=>{l.render._rc&&(l.withProxy=new Proxy(l.ctx,Fw))}}const Iv=()=>!Qs;function Mc(n,l,r){const h=n.type;if(!n.render){if(!l&&Qs&&!h.render){const u=h.template||oh(n).template;if(u){const{isCustomElement:g,compilerOptions:v}=n.appContext.config,{delimiters:b,compilerOptions:z}=h,C=_e(_e({isCustomElement:g,delimiters:b},v),z);h.render=Qs(u,C)}}n.render=h.render||Jn,Ti&&Ti(n)}Tl(n),to(),Qw(n),eo(),Ll()}function yv(n){return n.attrsProxy||(n.attrsProxy=new Proxy(n.attrs,{get(l,r){return wn(n,"get","$attrs"),l[r]}}))}function xc(n){const l=r=>{n.exposed=r||{}};return{get attrs(){return yv(n)},slots:n.slots,emit:n.emit,expose:l}}function $a(n){if(n.exposed)return n.exposeProxy||(n.exposeProxy=new Proxy(W0(ls(n.exposed)),{get(l,r){if(r in l)return l[r];if(r in $o)return $o[r](n)},has(l,r){return r in l||r in $o}}))}function Ri(n,l=!0){return re(n)?n.displayName||n.name:n.name||l&&n.__name}function Cv(n){return re(n)&&"__vccOpts"in n}const X=(n,l)=>Rg(n,l,Xr);function Hn(n,l,r){const h=arguments.length;return h===2?De(l)&&!oe(l)?Ol(l)?t(n,null,[l]):t(n,l):t(n,null,l):(h>3?r=Array.prototype.slice.call(arguments,2):h===3&&Ol(r)&&(r=[r]),t(n,l,r))}const zc=Symbol.for("v-scx"),Ic=()=>he(zc);function Sv(){}function $v(n,l,r,h){const u=r[h];if(u&&yc(u,n))return u;const g=l();return g.memo=n.slice(),r[h]=g}function yc(n,l){const r=n.memo;if(r.length!=l.length)return!1;for(let h=0;h0&&gn&&gn.push(n),!0}const Cc="3.3.4",Av={createComponentInstance:mc,setupComponent:bc,renderComponentRoot:_s,setCurrentRenderingInstance:Eo,isVNode:Ol,normalizeVNode:Mn},Bv=Av,Hv=null,Nv=null;function jv(n,l){const r=Object.create(null),h=n.split(",");for(let u=0;u!!r[u.toLowerCase()]:u=>!!r[u]}const ii={},Pv=/^on[^a-z]/,Lv=n=>Pv.test(n),Dv=n=>n.startsWith("onUpdate:"),cs=Object.assign,vn=Array.isArray,us=n=>$c(n)==="[object Set]",$2=n=>$c(n)==="[object Date]",Sc=n=>typeof n=="function",Xo=n=>typeof n=="string",A2=n=>typeof n=="symbol",Ei=n=>n!==null&&typeof n=="object",Fv=Object.prototype.toString,$c=n=>Fv.call(n),ch=n=>{const l=Object.create(null);return r=>l[r]||(l[r]=n(r))},Ov=/-(\w)/g,hi=ch(n=>n.replace(Ov,(l,r)=>r?r.toUpperCase():"")),Tv=/\B([A-Z])/g,Nl=ch(n=>n.replace(Tv,"-$1").toLowerCase()),Rv=ch(n=>n.charAt(0).toUpperCase()+n.slice(1)),Ev=(n,l)=>{for(let r=0;r{const l=parseFloat(n);return isNaN(l)?n:l},_i=n=>{const l=Xo(n)?Number(n):NaN;return isNaN(l)?n:l},Vv="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",_v=jv(Vv);function Ac(n){return!!n||n===""}function Wv(n,l){if(n.length!==l.length)return!1;let r=!0;for(let h=0;r&&hRl(r,l))}const Xv="http://www.w3.org/2000/svg",er=typeof document<"u"?document:null,B2=er&&er.createElement("template"),qv={insert:(n,l,r)=>{l.insertBefore(n,r||null)},remove:n=>{const l=n.parentNode;l&&l.removeChild(n)},createElement:(n,l,r,h)=>{const u=l?er.createElementNS(Xv,n):er.createElement(n,r?{is:r}:void 0);return n==="select"&&h&&h.multiple!=null&&u.setAttribute("multiple",h.multiple),u},createText:n=>er.createTextNode(n),createComment:n=>er.createComment(n),setText:(n,l)=>{n.nodeValue=l},setElementText:(n,l)=>{n.textContent=l},parentNode:n=>n.parentNode,nextSibling:n=>n.nextSibling,querySelector:n=>er.querySelector(n),setScopeId(n,l){n.setAttribute(l,"")},insertStaticContent(n,l,r,h,u,g){const v=r?r.previousSibling:l.lastChild;if(u&&(u===g||u.nextSibling))for(;l.insertBefore(u.cloneNode(!0),r),!(u===g||!(u=u.nextSibling)););else{B2.innerHTML=h?`${n}`:n;const b=B2.content;if(h){const z=b.firstChild;for(;z.firstChild;)b.appendChild(z.firstChild);b.removeChild(z)}l.insertBefore(b,r)}return[v?v.nextSibling:l.firstChild,r?r.previousSibling:l.lastChild]}};function Yv(n,l,r){const h=n._vtc;h&&(l=(l?[l,...h]:[...h]).join(" ")),l==null?n.removeAttribute("class"):r?n.setAttribute("class",l):n.className=l}function Gv(n,l,r){const h=n.style,u=Xo(r);if(r&&!u){if(l&&!Xo(l))for(const g in l)r[g]==null&&Wi(h,g,"");for(const g in r)Wi(h,g,r[g])}else{const g=h.display;u?l!==r&&(h.cssText=r):l&&n.removeAttribute("style"),"_vod"in n&&(h.display=g)}}const H2=/\s*!important$/;function Wi(n,l,r){if(vn(r))r.forEach(h=>Wi(n,l,h));else if(r==null&&(r=""),l.startsWith("--"))n.setProperty(l,r);else{const h=Uv(n,l);H2.test(r)?n.setProperty(Nl(h),r.replace(H2,""),"important"):n[h]=r}}const N2=["Webkit","Moz","ms"],di={};function Uv(n,l){const r=di[l];if(r)return r;let h=In(l);if(h!=="filter"&&h in n)return di[l]=h;h=Rv(h);for(let u=0;uci||(e3.then(()=>ci=0),ci=Date.now());function l3(n,l){const r=h=>{if(!h._vts)h._vts=Date.now();else if(h._vts<=r.attached)return;zn(r3(h,r.value),l,5,[h])};return r.value=n,r.attached=n3(),r}function r3(n,l){if(vn(l)){const r=n.stopImmediatePropagation;return n.stopImmediatePropagation=()=>{r.call(n),n._stopped=!0},l.map(h=>u=>!u._stopped&&h&&h(u))}else return l}const L2=/^on[a-z]/,o3=(n,l,r,h,u=!1,g,v,b,z)=>{l==="class"?Yv(n,h,u):l==="style"?Gv(n,r,h):Lv(l)?Dv(l)||Jv(n,l,r,h,v):(l[0]==="."?(l=l.slice(1),!0):l[0]==="^"?(l=l.slice(1),!1):s3(n,l,h,u))?Kv(n,l,h,g,v,b,z):(l==="true-value"?n._trueValue=h:l==="false-value"&&(n._falseValue=h),Zv(n,l,h,u))};function s3(n,l,r,h){return h?!!(l==="innerHTML"||l==="textContent"||l in n&&L2.test(l)&&Sc(r)):l==="spellcheck"||l==="draggable"||l==="translate"||l==="form"||l==="list"&&n.tagName==="INPUT"||l==="type"&&n.tagName==="TEXTAREA"||L2.test(l)&&Xo(r)?!1:l in n}function Bc(n,l){const r=mr(n);class h extends Ba{constructor(g){super(r,g,l)}}return h.def=r,h}const a3=n=>Bc(n,qc),i3=typeof HTMLElement<"u"?HTMLElement:class{};class Ba extends i3{constructor(l,r={},h){super(),this._def=l,this._props=r,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&h?h(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,pe(()=>{this._connected||(Yi(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let h=0;h{for(const u of h)this._setAttr(u.attributeName)}).observe(this,{attributes:!0});const l=(h,u=!1)=>{const{props:g,styles:v}=h;let b;if(g&&!vn(g))for(const z in g){const C=g[z];(C===Number||C&&C.type===Number)&&(z in this._props&&(this._props[z]=_i(this._props[z])),(b||(b=Object.create(null)))[hi(z)]=!0)}this._numberProps=b,u&&this._resolveProps(h),this._applyStyles(v),this._update()},r=this._def.__asyncLoader;r?r().then(h=>l(h,!0)):l(this._def)}_resolveProps(l){const{props:r}=l,h=vn(r)?r:Object.keys(r||{});for(const u of Object.keys(this))u[0]!=="_"&&h.includes(u)&&this._setProp(u,this[u],!0,!1);for(const u of h.map(hi))Object.defineProperty(this,u,{get(){return this._getProp(u)},set(g){this._setProp(u,g)}})}_setAttr(l){let r=this.getAttribute(l);const h=hi(l);this._numberProps&&this._numberProps[h]&&(r=_i(r)),this._setProp(h,r,!1)}_getProp(l){return this._props[l]}_setProp(l,r,h=!0,u=!0){r!==this._props[l]&&(this._props[l]=r,u&&this._instance&&this._update(),h&&(r===!0?this.setAttribute(Nl(l),""):typeof r=="string"||typeof r=="number"?this.setAttribute(Nl(l),r+""):r||this.removeAttribute(Nl(l))))}_update(){Yi(this._createVNode(),this.shadowRoot)}_createVNode(){const l=t(this._def,cs({},this._props));return this._instance||(l.ce=r=>{this._instance=r,r.isCE=!0;const h=(g,v)=>{this.dispatchEvent(new CustomEvent(g,{detail:v}))};r.emit=(g,...v)=>{h(g,v),Nl(g)!==g&&h(Nl(g),v)};let u=this;for(;u=u&&(u.parentNode||u.host);)if(u instanceof Ba){r.parent=u._instance,r.provides=u._instance.provides;break}}),l}_applyStyles(l){l&&l.forEach(r=>{const h=document.createElement("style");h.textContent=r,this.shadowRoot.appendChild(h)})}}function h3(n="$style"){{const l=nl();if(!l)return ii;const r=l.type.__cssModules;if(!r)return ii;const h=r[n];return h||ii}}function d3(n){const l=nl();if(!l)return;const r=l.ut=(u=n(l.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${l.uid}"]`)).forEach(g=>qi(g,u))},h=()=>{const u=n(l.proxy);Xi(l.subTree,u),r(u)};Vd(h),Te(()=>{const u=new MutationObserver(h);u.observe(l.subTree.el.parentNode,{childList:!0}),ya(()=>u.disconnect())})}function Xi(n,l){if(n.shapeFlag&128){const r=n.suspense;n=r.activeBranch,r.pendingBranch&&!r.isHydrating&&r.effects.push(()=>{Xi(r.activeBranch,l)})}for(;n.component;)n=n.component.subTree;if(n.shapeFlag&1&&n.el)qi(n.el,l);else if(n.type===Zt)n.children.forEach(r=>Xi(r,l));else if(n.type===ar){let{el:r,anchor:h}=n;for(;r&&(qi(r,l),r!==h);)r=r.nextSibling}}function qi(n,l){if(n.nodeType===1){const r=n.style;for(const h in l)r.setProperty(`--${h}`,l[h])}}const Cl="transition",vo="animation",qn=(n,{slots:l})=>Hn(Wd,Nc(n),l);qn.displayName="Transition";const Hc={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},c3=qn.props=cs({},J0,Hc),Kl=(n,l=[])=>{vn(n)?n.forEach(r=>r(...l)):n&&n(...l)},D2=n=>n?vn(n)?n.some(l=>l.length>1):n.length>1:!1;function Nc(n){const l={};for(const rt in n)rt in Hc||(l[rt]=n[rt]);if(n.css===!1)return l;const{name:r="v",type:h,duration:u,enterFromClass:g=`${r}-enter-from`,enterActiveClass:v=`${r}-enter-active`,enterToClass:b=`${r}-enter-to`,appearFromClass:z=g,appearActiveClass:C=v,appearToClass:S=b,leaveFromClass:A=`${r}-leave-from`,leaveActiveClass:B=`${r}-leave-active`,leaveToClass:P=`${r}-leave-to`}=n,D=u3(u),E=D&&D[0],Y=D&&D[1],{onBeforeEnter:O,onEnter:H,onEnterCancelled:U,onLeave:W,onLeaveCancelled:_,onBeforeAppear:tt=O,onAppear:nt=H,onAppearCancelled:q=U}=l,G=(rt,ht,dt)=>{$l(rt,ht?S:b),$l(rt,ht?C:v),dt&&dt()},et=(rt,ht)=>{rt._isLeaving=!1,$l(rt,A),$l(rt,P),$l(rt,B),ht&&ht()},st=rt=>(ht,dt)=>{const Ct=rt?nt:H,xt=()=>G(ht,rt,dt);Kl(Ct,[ht,xt]),F2(()=>{$l(ht,rt?z:g),ol(ht,rt?S:b),D2(Ct)||O2(ht,h,E,xt)})};return cs(l,{onBeforeEnter(rt){Kl(O,[rt]),ol(rt,g),ol(rt,v)},onBeforeAppear(rt){Kl(tt,[rt]),ol(rt,z),ol(rt,C)},onEnter:st(!1),onAppear:st(!0),onLeave(rt,ht){rt._isLeaving=!0;const dt=()=>et(rt,ht);ol(rt,A),Pc(),ol(rt,B),F2(()=>{rt._isLeaving&&($l(rt,A),ol(rt,P),D2(W)||O2(rt,h,Y,dt))}),Kl(W,[rt,dt])},onEnterCancelled(rt){G(rt,!1),Kl(U,[rt])},onAppearCancelled(rt){G(rt,!0),Kl(q,[rt])},onLeaveCancelled(rt){et(rt),Kl(_,[rt])}})}function u3(n){if(n==null)return null;if(Ei(n))return[ui(n.enter),ui(n.leave)];{const l=ui(n);return[l,l]}}function ui(n){return _i(n)}function ol(n,l){l.split(/\s+/).forEach(r=>r&&n.classList.add(r)),(n._vtc||(n._vtc=new Set)).add(l)}function $l(n,l){l.split(/\s+/).forEach(h=>h&&n.classList.remove(h));const{_vtc:r}=n;r&&(r.delete(l),r.size||(n._vtc=void 0))}function F2(n){requestAnimationFrame(()=>{requestAnimationFrame(n)})}let p3=0;function O2(n,l,r,h){const u=n._endId=++p3,g=()=>{u===n._endId&&h()};if(r)return setTimeout(g,r);const{type:v,timeout:b,propCount:z}=jc(n,l);if(!v)return h();const C=v+"end";let S=0;const A=()=>{n.removeEventListener(C,B),g()},B=P=>{P.target===n&&++S>=z&&A()};setTimeout(()=>{S(r[D]||"").split(", "),u=h(`${Cl}Delay`),g=h(`${Cl}Duration`),v=T2(u,g),b=h(`${vo}Delay`),z=h(`${vo}Duration`),C=T2(b,z);let S=null,A=0,B=0;l===Cl?v>0&&(S=Cl,A=v,B=g.length):l===vo?C>0&&(S=vo,A=C,B=z.length):(A=Math.max(v,C),S=A>0?v>C?Cl:vo:null,B=S?S===Cl?g.length:z.length:0);const P=S===Cl&&/\b(transform|all)(,|$)/.test(h(`${Cl}Property`).toString());return{type:S,timeout:A,propCount:B,hasTransform:P}}function T2(n,l){for(;n.lengthR2(r)+R2(n[h])))}function R2(n){return Number(n.slice(0,-1).replace(",","."))*1e3}function Pc(){return document.body.offsetHeight}const Lc=new WeakMap,Dc=new WeakMap,Fc={name:"TransitionGroup",props:cs({},c3,{tag:String,moveClass:String}),setup(n,{slots:l}){const r=nl(),h=Q0();let u,g;return Ia(()=>{if(!u.length)return;const v=n.moveClass||`${n.name||"v"}-move`;if(!m3(u[0].el,r.vnode.el,v))return;u.forEach(w3),u.forEach(v3);const b=u.filter(f3);Pc(),b.forEach(z=>{const C=z.el,S=C.style;ol(C,v),S.transform=S.webkitTransform=S.transitionDuration="";const A=C._moveCb=B=>{B&&B.target!==C||(!B||/transform$/.test(B.propertyName))&&(C.removeEventListener("transitionend",A),C._moveCb=null,$l(C,v))};C.addEventListener("transitionend",A)})}),()=>{const v=ne(n),b=Nc(v);let z=v.tag||Zt;u=g,g=l.default?xa(l.default()):[];for(let C=0;Cdelete n.mode;Fc.props;const Oc=Fc;function w3(n){const l=n.el;l._moveCb&&l._moveCb(),l._enterCb&&l._enterCb()}function v3(n){Dc.set(n,n.el.getBoundingClientRect())}function f3(n){const l=Lc.get(n),r=Dc.get(n),h=l.left-r.left,u=l.top-r.top;if(h||u){const g=n.el.style;return g.transform=g.webkitTransform=`translate(${h}px,${u}px)`,g.transitionDuration="0s",n}}function m3(n,l,r){const h=n.cloneNode();n._vtc&&n._vtc.forEach(v=>{v.split(/\s+/).forEach(b=>b&&h.classList.remove(b))}),r.split(/\s+/).forEach(v=>v&&h.classList.add(v)),h.style.display="none";const u=l.nodeType===1?l:l.parentNode;u.appendChild(h);const{hasTransform:g}=jc(h);return u.removeChild(h),g}const El=n=>{const l=n.props["onUpdate:modelValue"]||!1;return vn(l)?r=>Ev(l,r):l};function k3(n){n.target.composing=!0}function E2(n){const l=n.target;l.composing&&(l.composing=!1,l.dispatchEvent(new Event("input")))}const qo={created(n,{modifiers:{lazy:l,trim:r,number:h}},u){n._assign=El(u);const g=h||u.props&&u.props.type==="number";al(n,l?"change":"input",v=>{if(v.target.composing)return;let b=n.value;r&&(b=b.trim()),g&&(b=Vi(b)),n._assign(b)}),r&&al(n,"change",()=>{n.value=n.value.trim()}),l||(al(n,"compositionstart",k3),al(n,"compositionend",E2),al(n,"change",E2))},mounted(n,{value:l}){n.value=l??""},beforeUpdate(n,{value:l,modifiers:{lazy:r,trim:h,number:u}},g){if(n._assign=El(g),n.composing||document.activeElement===n&&n.type!=="range"&&(r||h&&n.value.trim()===l||(u||n.type==="number")&&Vi(n.value)===l))return;const v=l??"";n.value!==v&&(n.value=v)}},uh={deep:!0,created(n,l,r){n._assign=El(r),al(n,"change",()=>{const h=n._modelValue,u=qr(n),g=n.checked,v=n._assign;if(vn(h)){const b=Aa(h,u),z=b!==-1;if(g&&!z)v(h.concat(u));else if(!g&&z){const C=[...h];C.splice(b,1),v(C)}}else if(us(h)){const b=new Set(h);g?b.add(u):b.delete(u),v(b)}else v(Rc(n,g))})},mounted:V2,beforeUpdate(n,l,r){n._assign=El(r),V2(n,l,r)}};function V2(n,{value:l,oldValue:r},h){n._modelValue=l,vn(l)?n.checked=Aa(l,h.props.value)>-1:us(l)?n.checked=l.has(h.props.value):l!==r&&(n.checked=Rl(l,Rc(n,!0)))}const ph={created(n,{value:l},r){n.checked=Rl(l,r.props.value),n._assign=El(r),al(n,"change",()=>{n._assign(qr(n))})},beforeUpdate(n,{value:l,oldValue:r},h){n._assign=El(h),l!==r&&(n.checked=Rl(l,h.props.value))}},Tc={deep:!0,created(n,{value:l,modifiers:{number:r}},h){const u=us(l);al(n,"change",()=>{const g=Array.prototype.filter.call(n.options,v=>v.selected).map(v=>r?Vi(qr(v)):qr(v));n._assign(n.multiple?u?new Set(g):g:g[0])}),n._assign=El(h)},mounted(n,{value:l}){_2(n,l)},beforeUpdate(n,l,r){n._assign=El(r)},updated(n,{value:l}){_2(n,l)}};function _2(n,l){const r=n.multiple;if(!(r&&!vn(l)&&!us(l))){for(let h=0,u=n.options.length;h-1:g.selected=l.has(v);else if(Rl(qr(g),l)){n.selectedIndex!==h&&(n.selectedIndex=h);return}}!r&&n.selectedIndex!==-1&&(n.selectedIndex=-1)}}function qr(n){return"_value"in n?n._value:n.value}function Rc(n,l){const r=l?"_trueValue":"_falseValue";return r in n?n[r]:l}const Ec={created(n,l,r){js(n,l,r,null,"created")},mounted(n,l,r){js(n,l,r,null,"mounted")},beforeUpdate(n,l,r,h){js(n,l,r,h,"beforeUpdate")},updated(n,l,r,h){js(n,l,r,h,"updated")}};function Vc(n,l){switch(n){case"SELECT":return Tc;case"TEXTAREA":return qo;default:switch(l){case"checkbox":return uh;case"radio":return ph;default:return qo}}}function js(n,l,r,h,u){const v=Vc(n.tagName,r.props&&r.props.type)[u];v&&v(n,l,r,h)}function b3(){qo.getSSRProps=({value:n})=>({value:n}),ph.getSSRProps=({value:n},l)=>{if(l.props&&Rl(l.props.value,n))return{checked:!0}},uh.getSSRProps=({value:n},l)=>{if(vn(n)){if(l.props&&Aa(n,l.props.value)>-1)return{checked:!0}}else if(us(n)){if(l.props&&n.has(l.props.value))return{checked:!0}}else if(n)return{checked:!0}},Ec.getSSRProps=(n,l)=>{if(typeof l.type!="string")return;const r=Vc(l.type.toUpperCase(),l.props&&l.props.type);if(r.getSSRProps)return r.getSSRProps(n,l)}}const M3=["ctrl","shift","alt","meta"],x3={stop:n=>n.stopPropagation(),prevent:n=>n.preventDefault(),self:n=>n.target!==n.currentTarget,ctrl:n=>!n.ctrlKey,shift:n=>!n.shiftKey,alt:n=>!n.altKey,meta:n=>!n.metaKey,left:n=>"button"in n&&n.button!==0,middle:n=>"button"in n&&n.button!==1,right:n=>"button"in n&&n.button!==2,exact:(n,l)=>M3.some(r=>n[`${r}Key`]&&!l.includes(r))},z3=(n,l)=>(r,...h)=>{for(let u=0;ur=>{if(!("key"in r))return;const h=Nl(r.key);if(l.some(u=>u===h||I3[u]===h))return n(r)},Nn={beforeMount(n,{value:l},{transition:r}){n._vod=n.style.display==="none"?"":n.style.display,r&&l?r.beforeEnter(n):fo(n,l)},mounted(n,{value:l},{transition:r}){r&&l&&r.enter(n)},updated(n,{value:l,oldValue:r},{transition:h}){!l!=!r&&(h?l?(h.beforeEnter(n),fo(n,!0),h.enter(n)):h.leave(n,()=>{fo(n,!1)}):fo(n,l))},beforeUnmount(n,{value:l}){fo(n,l)}};function fo(n,l){n.style.display=l?n._vod:"none"}function C3(){Nn.getSSRProps=({value:n})=>{if(!n)return{style:{display:"none"}}}}const _c=cs({patchProp:o3},qv);let Ho,W2=!1;function Wc(){return Ho||(Ho=hc(_c))}function Xc(){return Ho=W2?Ho:dc(_c),W2=!0,Ho}const Yi=(...n)=>{Wc().render(...n)},qc=(...n)=>{Xc().hydrate(...n)},Yc=(...n)=>{const l=Wc().createApp(...n),{mount:r}=l;return l.mount=h=>{const u=Gc(h);if(!u)return;const g=l._component;!Sc(g)&&!g.render&&!g.template&&(g.template=u.innerHTML),u.innerHTML="";const v=r(u,!1,u instanceof SVGElement);return u instanceof Element&&(u.removeAttribute("v-cloak"),u.setAttribute("data-v-app","")),v},l},S3=(...n)=>{const l=Xc().createApp(...n),{mount:r}=l;return l.mount=h=>{const u=Gc(h);if(u)return r(u,!0,u instanceof SVGElement)},l};function Gc(n){return Xo(n)?document.querySelector(n):n}let X2=!1;const $3=()=>{X2||(X2=!0,b3(),C3())},A3=()=>{},B3=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:Wd,BaseTransitionPropsValidators:J0,Comment:nn,EffectScope:D0,Fragment:Zt,KeepAlive:Aw,ReactiveEffect:ns,Static:ar,Suspense:mw,Teleport:uc,Text:Fl,Transition:qn,TransitionGroup:Oc,VueElement:Ba,assertNumber:rw,callWithAsyncErrorHandling:zn,callWithErrorHandling:cl,camelize:In,capitalize:fl,cloneVNode:Xn,compatUtils:Nv,compile:A3,computed:X,createApp:Yc,createBlock:Ca,createCommentVNode:kv,createElementBlock:wv,createElementVNode:ih,createHydrationRenderer:dc,createPropsRestProxy:Zw,createRenderer:hc,createSSRApp:S3,createSlots:Pw,createStaticVNode:mv,createTextVNode:e,createVNode:t,customRef:Dg,defineAsyncComponent:Sw,defineComponent:mr,defineCustomElement:Bc,defineEmits:Tw,defineExpose:Rw,defineModel:_w,defineOptions:Ew,defineProps:Ow,defineSSRCustomElement:a3,defineSlots:Vw,get devtools(){return Lr},effect:ng,effectScope:Jr,getCurrentInstance:nl,getCurrentScope:F0,getTransitionRawChildren:xa,guardReactiveProps:fc,h:Hn,handleError:fr,hasInjectionContext:lc,hydrate:qc,initCustomFormatter:Sv,initDirectivesForSSR:$3,inject:he,isMemoSame:yc,isProxy:E0,isReactive:dl,isReadonly:dr,isRef:ke,isRuntimeOnly:Iv,isShallow:Fo,isVNode:Ol,markRaw:ls,mergeDefaults:Gw,mergeModels:Uw,mergeProps:o,nextTick:pe,normalizeClass:ss,normalizeProps:ew,normalizeStyle:os,onActivated:th,onBeforeMount:hs,onBeforeUnmount:Ue,onBeforeUpdate:nh,onDeactivated:eh,onErrorCaptured:Zd,onMounted:Te,onRenderTracked:Ud,onRenderTriggered:Gd,onScopeDispose:ln,onServerPrefetch:Yd,onUnmounted:ya,onUpdated:Ia,openBlock:ds,popScopeId:cw,provide:ye,proxyRefs:W0,pushScopeId:dw,queuePostFlushCb:G0,reactive:Ye,readonly:no,ref:Pt,registerRuntimeCompiler:zv,render:Yi,renderList:jw,renderSlot:Lw,resolveComponent:Nw,resolveDirective:mn,resolveDynamicComponent:Qd,resolveFilter:Hv,resolveTransitionHooks:Wr,setBlockTracking:Fi,setDevtoolsHook:Od,setTransitionHooks:cr,shallowReactive:R0,shallowReadonly:Bg,shallowRef:_t,ssrContextKey:zc,ssrUtils:Bv,stop:lg,toDisplayString:nw,toHandlerKey:Co,toHandlers:Dw,toRaw:ne,toRef:Bt,toRefs:rs,toValue:jg,transformVNodeArgs:vv,triggerRef:Ng,unref:He,useAttrs:qw,useCssModule:h3,useCssVars:d3,useModel:Yw,useSSRContext:Ic,useSlots:Xw,useTransitionState:Q0,vModelCheckbox:uh,vModelDynamic:Ec,vModelRadio:ph,vModelSelect:Tc,vModelText:qo,vShow:Nn,version:Cc,warn:lw,watch:Vt,watchEffect:fn,watchPostEffect:Vd,watchSyncEffect:Iw,withAsyncContext:Kw,withCtx:U0,withDefaults:Ww,withDirectives:Ce,withKeys:y3,withMemo:$v,withModifiers:z3,withScopeId:uw},Symbol.toStringTag,{value:"Module"}));var H3=!1;/*! + * pinia v2.1.6 + * (c) 2023 Eduardo San Martin Morote + * @license MIT + */let Uc;const Ha=n=>Uc=n,Zc=Symbol();function Gi(n){return n&&typeof n=="object"&&Object.prototype.toString.call(n)==="[object Object]"&&typeof n.toJSON!="function"}var No;(function(n){n.direct="direct",n.patchObject="patch object",n.patchFunction="patch function"})(No||(No={}));function N3(){const n=Jr(!0),l=n.run(()=>Pt({}));let r=[],h=[];const u=ls({install(g){Ha(u),u._a=g,g.provide(Zc,u),g.config.globalProperties.$pinia=u,h.forEach(v=>r.push(v)),h=[]},use(g){return!this._a&&!H3?h.push(g):r.push(g),this},_p:r,_a:null,_e:n,_s:new Map,state:l});return u}const Kc=()=>{};function q2(n,l,r,h=Kc){n.push(l);const u=()=>{const g=n.indexOf(l);g>-1&&(n.splice(g,1),h())};return!r&&F0()&&ln(u),u}function Ar(n,...l){n.slice().forEach(r=>{r(...l)})}const j3=n=>n();function Ui(n,l){n instanceof Map&&l instanceof Map&&l.forEach((r,h)=>n.set(h,r)),n instanceof Set&&l instanceof Set&&l.forEach(n.add,n);for(const r in l){if(!l.hasOwnProperty(r))continue;const h=l[r],u=n[r];Gi(u)&&Gi(h)&&n.hasOwnProperty(r)&&!ke(h)&&!dl(h)?n[r]=Ui(u,h):n[r]=h}return n}const P3=Symbol();function L3(n){return!Gi(n)||!n.hasOwnProperty(P3)}const{assign:Al}=Object;function D3(n){return!!(ke(n)&&n.effect)}function F3(n,l,r,h){const{state:u,actions:g,getters:v}=l,b=r.state.value[n];let z;function C(){b||(r.state.value[n]=u?u():{});const S=rs(r.state.value[n]);return Al(S,g,Object.keys(v||{}).reduce((A,B)=>(A[B]=ls(X(()=>{Ha(r);const P=r._s.get(n);return v[B].call(P,P)})),A),{}))}return z=Qc(n,C,l,r,h,!0),z}function Qc(n,l,r={},h,u,g){let v;const b=Al({actions:{}},r),z={deep:!0};let C,S,A=[],B=[],P;const D=h.state.value[n];!g&&!D&&(h.state.value[n]={}),Pt({});let E;function Y(q){let G;C=S=!1,typeof q=="function"?(q(h.state.value[n]),G={type:No.patchFunction,storeId:n,events:P}):(Ui(h.state.value[n],q),G={type:No.patchObject,payload:q,storeId:n,events:P});const et=E=Symbol();pe().then(()=>{E===et&&(C=!0)}),S=!0,Ar(A,G,h.state.value[n])}const O=g?function(){const{state:G}=r,et=G?G():{};this.$patch(st=>{Al(st,et)})}:Kc;function H(){v.stop(),A=[],B=[],h._s.delete(n)}function U(q,G){return function(){Ha(h);const et=Array.from(arguments),st=[],rt=[];function ht(xt){st.push(xt)}function dt(xt){rt.push(xt)}Ar(B,{args:et,name:q,store:_,after:ht,onError:dt});let Ct;try{Ct=G.apply(this&&this.$id===n?this:_,et)}catch(xt){throw Ar(rt,xt),xt}return Ct instanceof Promise?Ct.then(xt=>(Ar(st,xt),xt)).catch(xt=>(Ar(rt,xt),Promise.reject(xt))):(Ar(st,Ct),Ct)}}const W={_p:h,$id:n,$onAction:q2.bind(null,B),$patch:Y,$reset:O,$subscribe(q,G={}){const et=q2(A,q,G.detached,()=>st()),st=v.run(()=>Vt(()=>h.state.value[n],rt=>{(G.flush==="sync"?S:C)&&q({storeId:n,type:No.direct,events:P},rt)},Al({},z,G)));return et},$dispose:H},_=Ye(W);h._s.set(n,_);const tt=h._a&&h._a.runWithContext||j3,nt=h._e.run(()=>(v=Jr(),tt(()=>v.run(l))));for(const q in nt){const G=nt[q];if(ke(G)&&!D3(G)||dl(G))g||(D&&L3(G)&&(ke(G)?G.value=D[q]:Ui(G,D[q])),h.state.value[n][q]=G);else if(typeof G=="function"){const et=U(q,G);nt[q]=et,b.actions[q]=G}}return Al(_,nt),Al(ne(_),nt),Object.defineProperty(_,"$state",{get:()=>h.state.value[n],set:q=>{Y(G=>{Al(G,q)})}}),h._p.forEach(q=>{Al(_,v.run(()=>q({store:_,app:h._a,pinia:h,options:b})))}),D&&g&&r.hydrate&&r.hydrate(_.$state,D),C=!0,S=!0,_}function O3(n,l,r){let h,u;const g=typeof l=="function";typeof n=="string"?(h=n,u=g?r:l):(u=n,h=n.id);function v(b,z){const C=lc();return b=b||(C?he(Zc,null):null),b&&Ha(b),b=Uc,b._s.has(h)||(g?Qc(h,l,u,b):F3(h,u,b)),b._s.get(h)}return v.$id=h,v}/*! + * vue-router v4.2.4 + * (c) 2023 Eduardo San Martin Morote + * @license MIT + */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-b0552666.js"),["assets/FullLayout-b0552666.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-e25eb9fa.js"),["assets/DefaultDashboard-e25eb9fa.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-134b32c8.js"),[])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-25c22b8a.js"),["assets/ConfigPage-25c22b8a.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js","assets/axios-21b846bc.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-e25eb9fa.js"),["assets/DefaultDashboard-e25eb9fa.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-64b013bc.js"),["assets/StarterPage-64b013bc.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-cf6c4112.js"),["assets/TablerIcons-cf6c4112.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-5aa79b4a.js"),["assets/MaterialIcons-5aa79b4a.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-8db478a1.js"),["assets/TypographyPage-8db478a1.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-4627a05c.js"),["assets/ShadowPage-4627a05c.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-ed37a0a8.js"),["assets/ColorPage-ed37a0a8.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-d60a3667.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-bfc811c9.js"),["assets/LoginPage-bfc811c9.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-f5bc57b5.js"),["assets/RegisterPage-f5bc57b5.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-cf3bd987.js"),["assets/Error404Page-cf3bd987.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-cf3bd987.js"),["assets/Error404Page-cf3bd987.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} +Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function pl(n){const{h:l,s:r,v:h,a:u}=n,g=b=>{const z=(b+l/60)%6;return h-h*r*Math.max(Math.min(z,4-z,1),0)},v=[g(5),g(3),g(1)].map(b=>Math.round(b*255));return{r:v[0],g:v[1],b:v[2],a:u}}function A1(n){return pl(zh(n))}function ja(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,u=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;u!==g&&(u===l?v=60*(0+(r-h)/(u-g)):u===r?v=60*(2+(h-l)/(u-g)):u===h&&(v=60*(4+(l-r)/(u-g)))),v<0&&(v=v+360);const b=u===0?0:(u-g)/u,z=[v,b,u];return{h:z[0],s:z[1],v:z[2],a:n.a}}function zu(n){const{h:l,s:r,v:h,a:u}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:u}}function zh(n){const{h:l,s:r,l:h,a:u}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:u}}function Iu(n){let{r:l,g:r,b:h,a:u}=n;return u===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${u})`}function yu(n){return Iu(pl(n))}function Os(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Cu(n){let{r:l,g:r,b:h,a:u}=n;return`#${[Os(l),Os(r),Os(h),u!==void 0?Os(Math.round(u*255)):""].join("")}`}function Su(n){n=y5(n);let[l,r,h,u]=l5(n,2).map(g=>parseInt(g,16));return u=u===void 0?u:u/255,{r:l,g:r,b:h,a:u}}function I5(n){const l=Su(n);return ja(l)}function $u(n){return Cu(pl(n))}function y5(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=p1(p1(n,6),8,"F")),n}function C5(n,l){const r=bu(xh(n));return r[0]=r[0]+l*10,xu(Mu(r))}function S5(n,l){const r=bu(xh(n));return r[0]=r[0]-l*10,xu(Mu(r))}function o0(n){const l=_n(n);return xh(l)[1]}function $5(n,l){const r=o0(n),h=o0(l),u=Math.max(r,h),g=Math.min(r,h);return(u+.05)/(g+.05)}function Au(n){const l=Math.abs(C1(_n(0),_n(n)));return Math.abs(C1(_n(16777215),_n(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,u)=>{const v=typeof n[u]=="object"&&n[u]!=null&&!Array.isArray(n[u])?n[u]:{type:n[u]};return r&&u in r?h[u]={...v,default:r[u]}:h[u]=v,l&&!h[u].source&&(h[u].source=l),h},{})}const Wt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Pn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return pr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,u){const g=Ch();if(!g.value)return n._setup(h,u);const{props:v,provideSubDefaults:b}=D5(h,h._as??n.name,g),z=n._setup(v,u);return b(),z}}return n}function At(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Pn:mr)(l)}function Gn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return At()({name:r??fl(In(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Wt()},setup(h,u){let{slots:g}=u;return()=>{var v;return Hn(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Bu(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const Uo="cubic-bezier(0.4, 0, 0.2, 1)",A5="cubic-bezier(0.0, 0, 0.2, 1)",B5="cubic-bezier(0.4, 0, 1, 1)";function We(n,l){const r=nl();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function kl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=We(n).type;return ir((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Hu=0,qs=new WeakMap;function on(){const n=We("getUid");if(qs.has(n))return qs.get(n);{const l=Hu++;return qs.set(n,l),l}}on.reset=()=>{Hu=0,qs=new WeakMap};function Ih(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?H5(n):yh(n))return n;n=n.parentElement}return document.scrollingElement}function ra(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(yh(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function yh(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function H5(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function N5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:We("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function j5(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Lt(n){const l=We("useRender");l.render=n}const Zr=Symbol.for("vuetify:defaults");function P5(n){return Pt(n)}function Ch(){const n=he(Zr);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Fe(n,l){const r=Ch(),h=Pt(n),u=X(()=>{if(He(l==null?void 0:l.disabled))return r.value;const v=He(l==null?void 0:l.scoped),b=He(l==null?void 0:l.reset),z=He(l==null?void 0:l.root);if(h.value==null&&!(v||b||z))return r.value;let C=An(h.value,{prev:r.value});if(v)return C;if(b||z){const S=Number(b||1/0);for(let A=0;A<=S&&!(!C||!("prev"in C));A++)C=C.prev;return C&&typeof z=="string"&&z in C&&(C=An(An(C,{prev:C}),C[z])),C}return C.prev?An(C.prev,C):C});return ye(Zr,u),u}function L5(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[ir(l)])<"u"}function D5(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Ch();const h=We("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const u=X(()=>{var z;return(z=r.value)==null?void 0:z[n._as??l]}),g=new Proxy(n,{get(z,C){var A,B,P,D;const S=Reflect.get(z,C);return C==="class"||C==="style"?[(A=u.value)==null?void 0:A[C],S].filter(E=>E!=null):typeof C=="string"&&!L5(h.vnode,C)?((B=u.value)==null?void 0:B[C])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[C])??S:S}}),v=_t();fn(()=>{if(u.value){const z=Object.entries(u.value).filter(C=>{let[S]=C;return S.startsWith(S[0].toUpperCase())});v.value=z.length?Object.fromEntries(z):void 0}else v.value=void 0});function b(){const z=N5(Zr,h);ye(Zr,X(()=>v.value?An((z==null?void 0:z.value)??{},v.value):z==null?void 0:z.value))}return{props:g,provideSubDefaults:b}}const Pa=["sm","md","lg","xl","xxl"],s0=Symbol.for("vuetify:display"),B1={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},F5=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:B1;return An(B1,n)};function H1(n){return Me&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function N1(n){return Me&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function j1(n){const l=Me&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),u=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),b=r(/chrome/i),z=r(/edge/i),C=r(/firefox/i),S=r(/opera/i),A=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:u,cordova:g,electron:v,chrome:b,edge:z,firefox:C,opera:S,win:A,mac:B,linux:P,touch:Kf,ssr:l==="ssr"}}function O5(n,l){const{thresholds:r,mobileBreakpoint:h}=F5(n),u=_t(N1(l)),g=_t(j1(l)),v=Ye({}),b=_t(H1(l));function z(){u.value=N1(),b.value=H1()}function C(){z(),g.value=j1()}return fn(()=>{const S=b.value=r.xxl,Y=S?"xs":A?"sm":B?"md":P?"lg":D?"xl":"xxl",O=typeof h=="number"?h:r[h],H=b.valueHn($h,{...n,class:"mdi"})},te=[String,Function,Object,Array],a0=Symbol.for("vuetify:icons"),La=mt({icon:{type:te},tag:{type:String,required:!0}},"icon"),i0=At()({name:"VComponentIcon",props:La(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var u;return[n.icon?t(h,null,null):(u=r.default)==null?void 0:u.call(r)]}})}}}),Sh=Pn({name:"VSvgIcon",inheritAttrs:!1,props:La(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),E5=Pn({name:"VLigatureIcon",props:La(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),$h=Pn({name:"VClassIcon",props:La(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),V5={svg:{component:Sh},class:{component:$h}};function _5(n){return An({defaultSet:"mdi",sets:{...V5,mdi:R5},aliases:{...T5,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const W5=n=>{const l=he(a0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:X(()=>{var z;const h=He(n);if(!h)return{component:i0};let u=h;if(typeof u=="string"&&(u=u.trim(),u.startsWith("$")&&(u=(z=l.aliases)==null?void 0:z[u.slice(1)])),!u)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(u))return{component:Sh,icon:u};if(typeof u!="string")return{component:i0,icon:u};const g=Object.keys(l.sets).find(C=>typeof u=="string"&&u.startsWith(`${C}:`)),v=g?u.slice(g.length+1):u;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},X5={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},q5={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Vl(n,l){let r;function h(){r=Jr(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}Vt(n,u=>{u&&!r?h():u||(r==null||r.stop(),r=void 0)},{immediate:!0}),ln(()=>{r==null||r.stop()})}function ee(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:A=>A,u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:A=>A;const g=We("useProxiedModel"),v=Pt(n[l]!==void 0?n[l]:r),b=ir(l),C=X(b!==l?()=>{var A,B,P,D;return n[l],!!(((A=g.vnode.props)!=null&&A.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(b))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${b}`)))}:()=>{var A,B;return n[l],!!((A=g.vnode.props)!=null&&A.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Vl(()=>!C.value,()=>{Vt(()=>n[l],A=>{v.value=A})});const S=X({get(){const A=n[l];return h(C.value?A:v.value)},set(A){const B=u(A),P=ne(C.value?n[l]:v.value);P===B||h(P)===A||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>C.value?n[l]:v.value}),S}const P1="$vuetify.",L1=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),Nu=(n,l,r)=>function(h){for(var u=arguments.length,g=new Array(u>1?u-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function mi(n,l,r){const h=ee(n,l,n[l]??r.value);return h.value=n[l]??r.value,Vt(r,u=>{n[l]==null&&(h.value=r.value)}),h}function Pu(n){return l=>{const r=mi(l,"locale",n.current),h=mi(l,"fallback",n.fallback),u=mi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:u,t:Nu(r,h,u),n:ju(r,h),provide:Pu({current:r,fallback:h,messages:u})}}}function Y5(n){const l=_t((n==null?void 0:n.locale)??"en"),r=_t((n==null?void 0:n.fallback)??"en"),h=Pt({en:X5,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:Nu(l,r,h),n:ju(l,r),provide:Pu({current:l,fallback:r,messages:h})}}const Kr=Symbol.for("vuetify:locale");function G5(n){return n.name!=null}function U5(n){const l=n!=null&&n.adapter&&G5(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:Y5(n),r=K5(l,n);return{...l,...r}}function Ln(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function Z5(n){const l=he(Kr);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=Q5(r,l.rtl,n),u={...r,...h};return ye(Kr,u),u}function K5(n,l){const r=Pt((l==null?void 0:l.rtl)??q5),h=X(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Q5(n,l,r){const h=X(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Xe(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const Zo=Symbol.for("vuetify:theme"),ce=mt({theme:String},"theme"),ko={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function J5(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ko;if(!n)return{...ko,isDisabled:!0};const l={};for(const[u,g]of Object.entries(n.themes??{})){const v=g.dark||u==="dark"?(r=ko.themes)==null?void 0:r.dark:(h=ko.themes)==null?void 0:h.light;l[u]=An(v,g)}return An(ko,{...n,themes:l})}function tm(n){const l=J5(n),r=Pt(l.defaultTheme),h=Pt(l.themes),u=X(()=>{const S={};for(const[A,B]of Object.entries(h.value)){const P=S[A]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const E=P.colors[D];if(E)for(const Y of["lighten","darken"]){const O=Y==="lighten"?C5:S5;for(const H of il(l.variations[Y],1))P.colors[`${D}-${Y}-${H}`]=Cu(O(_n(E),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const E=`on-${D}`,Y=_n(P.colors[D]);P.colors[E]=Au(Y)}}return S}),g=X(()=>u.value[r.value]),v=X(()=>{const S=[];g.value.dark&&Jl(S,":root",["color-scheme: dark"]),Jl(S,":root",D1(g.value));for(const[D,E]of Object.entries(u.value))Jl(S,`.v-theme--${D}`,[`color-scheme: ${E.dark?"dark":"normal"}`,...D1(E)]);const A=[],B=[],P=new Set(Object.values(u.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?Jl(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(Jl(A,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),Jl(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),Jl(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...A,...B),S.map((D,E)=>E===0?D:` ${D}`).join("")});function b(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function z(S){if(l.isDisabled)return;const A=S._context.provides.usehead;if(A)if(A.push){const B=A.push(b);Me&&Vt(v,()=>{B.patch(b)})}else Me?(A.addHeadObjs(X(b)),fn(()=>A.updateDOM())):A.addHeadObjs(b());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=Me?document.getElementById("vuetify-theme-stylesheet"):null;Me?Vt(v,P,{immediate:!0}):P()}}const C=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:z,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:u,themeClasses:C,styles:v,global:{name:r,current:g}}}function ge(n){We("provideTheme");const l=he(Zo,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=X(()=>n.theme??(l==null?void 0:l.name.value)),h=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`),u={...l,name:r,themeClasses:h};return ye(Zo,u),u}function Lu(){We("useTheme");const n=he(Zo,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function Jl(n,l,r){n.push(`${l} { +`,...r.map(h=>` ${h}; +`),`} +`)}function D1(n){const l=n.dark?2:1,r=n.dark?1:2,h=[];for(const[u,g]of Object.entries(n.colors)){const v=_n(g);h.push(`--v-theme-${u}: ${v.r},${v.g},${v.b}`),u.startsWith("on-")||h.push(`--v-theme-${u}-overlay-multiplier: ${o0(g)>.18?l:r}`)}for(const[u,g]of Object.entries(n.variables)){const v=typeof g=="string"&&g.startsWith("#")?_n(g):void 0,b=v?`${v.r}, ${v.g}, ${v.b}`:void 0;h.push(`--v-${u}: ${b??g}`)}return h}const h0={"001":1,AD:1,AE:6,AF:6,AG:0,AI:1,AL:1,AM:1,AN:1,AR:1,AS:0,AT:1,AU:1,AX:1,AZ:1,BA:1,BD:0,BE:1,BG:1,BH:6,BM:1,BN:1,BR:0,BS:0,BT:0,BW:0,BY:1,BZ:0,CA:0,CH:1,CL:1,CM:1,CN:1,CO:0,CR:1,CY:1,CZ:1,DE:1,DJ:6,DK:1,DM:0,DO:0,DZ:6,EC:1,EE:1,EG:6,ES:1,ET:0,FI:1,FJ:1,FO:1,FR:1,GB:1,"GB-alt-variant":0,GE:1,GF:1,GP:1,GR:1,GT:0,GU:0,HK:0,HN:0,HR:1,HU:1,ID:0,IE:1,IL:0,IN:0,IQ:6,IR:6,IS:1,IT:1,JM:0,JO:6,JP:0,KE:0,KG:1,KH:0,KR:0,KW:6,KZ:1,LA:0,LB:1,LI:1,LK:1,LT:1,LU:1,LV:1,LY:6,MC:1,MD:1,ME:1,MH:0,MK:1,MM:0,MN:1,MO:0,MQ:1,MT:0,MV:5,MX:0,MY:1,MZ:0,NI:0,NL:1,NO:1,NP:0,NZ:1,OM:6,PA:0,PE:0,PH:0,PK:0,PL:1,PR:0,PT:0,PY:0,QA:6,RE:1,RO:1,RS:1,RU:1,SA:0,SD:6,SE:1,SG:0,SI:1,SK:1,SM:1,SV:0,SY:6,TH:0,TJ:1,TM:1,TR:1,TT:0,TW:0,UA:1,UM:0,US:0,UY:1,UZ:1,VA:1,VE:0,VI:0,VN:1,WS:0,XK:1,YE:0,ZA:0,ZW:0};function em(n,l){const r=[];let h=[];const u=Du(n),g=Fu(n),v=u.getDay()-h0[l.slice(-2).toUpperCase()],b=g.getDay()-h0[l.slice(-2).toUpperCase()];for(let z=0;z{const h=new Date(F1);return h.setDate(F1.getDate()+l+r),new Intl.DateTimeFormat(n,{weekday:"narrow"}).format(h)})}function sm(n,l,r){const h=new Date(n);let u={};switch(l){case"fullDateWithWeekday":u={weekday:"long",day:"numeric",month:"long",year:"numeric"};break;case"normalDateWithWeekday":u={weekday:"short",day:"numeric",month:"short"};break;case"keyboardDate":u={};break;case"monthAndDate":u={month:"long",day:"numeric"};break;case"monthAndYear":u={month:"long",year:"numeric"};break;case"dayOfMonth":u={day:"numeric"};break;default:u={timeZone:"UTC",timeZoneName:"short"}}return new Intl.DateTimeFormat(r,u).format(h)}function am(n,l){const r=new Date(n);return r.setDate(r.getDate()+l),r}function im(n,l){const r=new Date(n);return r.setMonth(r.getMonth()+l),r}function hm(n){return n.getFullYear()}function dm(n){return n.getMonth()}function cm(n){return new Date(n.getFullYear(),0,1)}function um(n){return new Date(n.getFullYear(),11,31)}function pm(n,l){return d0(n,l[0])&&wm(n,l[1])}function gm(n){const l=new Date(n);return l instanceof Date&&!isNaN(l.getTime())}function d0(n,l){return n.getTime()>l.getTime()}function wm(n,l){return n.getTime()1&&arguments[1]!==void 0?arguments[1]:"content";const r=Pt(),h=Pt();if(Me){const u=new ResizeObserver(g=>{n==null||n(g,u),g.length&&(l==="content"?h.value=g[0].contentRect:h.value=g[0].target.getBoundingClientRect())});Ue(()=>{u.disconnect()}),Vt(r,(g,v)=>{v&&(u.unobserve(e0(v)),h.value=void 0),g&&u.observe(e0(g))},{flush:"post"})}return{resizeRef:r,contentRect:no(h)}}const oa=Symbol.for("vuetify:layout"),Ou=Symbol.for("vuetify:layout-item"),R1=1e3,Tu=mt({overlaps:{type:Array,default:()=>[]},fullHeight:Boolean},"layout"),lo=mt({name:{type:String},order:{type:[Number,String],default:0},absolute:Boolean},"layout-item");function xm(){const n=he(oa);if(!n)throw new Error("[Vuetify] Could not find injected layout");return{getLayoutItem:n.getLayoutItem,mainRect:n.mainRect,mainStyles:n.mainStyles}}function ro(n){const l=he(oa);if(!l)throw new Error("[Vuetify] Could not find injected layout");const r=n.id??`layout-item-${on()}`,h=We("useLayoutItem");ye(Ou,{id:r});const u=_t(!1);eh(()=>u.value=!0),th(()=>u.value=!1);const{layoutItemStyles:g,layoutItemScrimStyles:v}=l.register(h,{...n,active:X(()=>u.value?!1:n.active.value),id:r});return Ue(()=>l.unregister(r)),{layoutItemStyles:g,layoutRect:l.layoutRect,layoutItemScrimStyles:v}}const zm=(n,l,r,h)=>{let u={top:0,left:0,right:0,bottom:0};const g=[{id:"",layer:{...u}}];for(const v of n){const b=l.get(v),z=r.get(v),C=h.get(v);if(!b||!z||!C)continue;const S={...u,[b.value]:parseInt(u[b.value],10)+(C.value?parseInt(z.value,10):0)};g.push({id:v,layer:S}),u=S}return g};function Ru(n){const l=he(oa,null),r=X(()=>l?l.rootZIndex.value-100:R1),h=Pt([]),u=Ye(new Map),g=Ye(new Map),v=Ye(new Map),b=Ye(new Map),z=Ye(new Map),{resizeRef:C,contentRect:S}=el(),A=X(()=>{const tt=new Map,nt=n.overlaps??[];for(const q of nt.filter(G=>G.includes(":"))){const[G,et]=q.split(":");if(!h.value.includes(G)||!h.value.includes(et))continue;const st=u.get(G),rt=u.get(et),ht=g.get(G),dt=g.get(et);!st||!rt||!ht||!dt||(tt.set(et,{position:st.value,amount:parseInt(ht.value,10)}),tt.set(G,{position:rt.value,amount:-parseInt(dt.value,10)}))}return tt}),B=X(()=>{const tt=[...new Set([...v.values()].map(q=>q.value))].sort((q,G)=>q-G),nt=[];for(const q of tt){const G=h.value.filter(et=>{var st;return((st=v.get(et))==null?void 0:st.value)===q});nt.push(...G)}return zm(nt,u,g,b)}),P=X(()=>!Array.from(z.values()).some(tt=>tt.value)),D=X(()=>B.value[B.value.length-1].layer),E=X(()=>({"--v-layout-left":Xt(D.value.left),"--v-layout-right":Xt(D.value.right),"--v-layout-top":Xt(D.value.top),"--v-layout-bottom":Xt(D.value.bottom),...P.value?void 0:{transition:"none"}})),Y=X(()=>B.value.slice(1).map((tt,nt)=>{let{id:q}=tt;const{layer:G}=B.value[nt],et=g.get(q),st=u.get(q);return{id:q,...G,size:Number(et.value),position:st.value}})),O=tt=>Y.value.find(nt=>nt.id===tt),H=We("createLayout"),U=_t(!1);Te(()=>{U.value=!0}),ye(oa,{register:(tt,nt)=>{let{id:q,order:G,position:et,layoutSize:st,elementSize:rt,active:ht,disableTransitions:dt,absolute:Ct}=nt;v.set(q,G),u.set(q,et),g.set(q,st),b.set(q,ht),dt&&z.set(q,dt);const wt=Lo(Ou,H==null?void 0:H.vnode).indexOf(tt);wt>-1?h.value.splice(wt,0,q):h.value.push(q);const gt=X(()=>Y.value.findIndex(Ft=>Ft.id===q)),It=X(()=>r.value+B.value.length*2-gt.value*2),$t=X(()=>{const Ft=et.value==="left"||et.value==="right",Kt=et.value==="right",Qt=et.value==="bottom",Rt={[et.value]:0,zIndex:It.value,transform:`translate${Ft?"X":"Y"}(${(ht.value?0:-110)*(Kt||Qt?-1:1)}%)`,position:Ct.value||r.value!==R1?"absolute":"fixed",...P.value?void 0:{transition:"none"}};if(!U.value)return Rt;const ut=Y.value[gt.value];if(!ut)throw new Error(`[Vuetify] Could not find layout item "${q}"`);const pt=A.value.get(q);return pt&&(ut[pt.position]+=pt.amount),{...Rt,height:Ft?`calc(100% - ${ut.top}px - ${ut.bottom}px)`:rt.value?`${rt.value}px`:void 0,left:Kt?void 0:`${ut.left}px`,right:Kt?`${ut.right}px`:void 0,top:et.value!=="bottom"?`${ut.top}px`:void 0,bottom:et.value!=="top"?`${ut.bottom}px`:void 0,width:Ft?rt.value?`${rt.value}px`:void 0:`calc(100% - ${ut.left}px - ${ut.right}px)`}}),Tt=X(()=>({zIndex:It.value-1}));return{layoutItemStyles:$t,layoutItemScrimStyles:Tt,zIndex:It}},unregister:tt=>{v.delete(tt),u.delete(tt),g.delete(tt),b.delete(tt),z.delete(tt),h.value=h.value.filter(nt=>nt!==tt)},mainRect:D,mainStyles:E,getLayoutItem:O,items:Y,layoutRect:S,rootZIndex:r});const W=X(()=>["v-layout",{"v-layout--full-height":n.fullHeight}]),_=X(()=>({zIndex:r.value,position:l?"relative":void 0,overflow:l?"hidden":void 0}));return{layoutClasses:W,layoutStyles:_,getLayoutItem:O,items:Y,layoutRect:S,layoutRef:C}}function Eu(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const{blueprint:l,...r}=n,h=An(l,r),{aliases:u={},components:g={},directives:v={}}=h,b=P5(h.defaults),z=O5(h.display,h.ssr),C=tm(h.theme),S=_5(h.icons),A=U5(h.locale),B=Mm(h.date);return{install:D=>{for(const E in v)D.directive(E,v[E]);for(const E in g)D.component(E,g[E]);for(const E in u)D.component(E,Pn({...u[E],name:E,aliasName:u[E].name}));if(C.install(D),D.provide(Zr,b),D.provide(s0,z),D.provide(Zo,C),D.provide(a0,S),D.provide(Kr,A),D.provide(T1,B),Me&&h.ssr)if(D.$nuxt)D.$nuxt.hook("app:suspense:resolve",()=>{z.update()});else{const{mount:E}=D;D.mount=function(){const Y=E(...arguments);return pe(()=>z.update()),D.mount=E,Y}}on.reset(),D.mixin({computed:{$vuetify(){return Ye({defaults:Nr.call(this,Zr),display:Nr.call(this,s0),theme:Nr.call(this,Zo),icons:Nr.call(this,a0),locale:Nr.call(this,Kr),date:Nr.call(this,T1)})}}})},defaults:b,display:z,theme:C,icons:S,locale:A,date:B}}const Im="3.3.14";Eu.version=Im;function Nr(n){var h,u;const l=this.$,r=((h=l.parent)==null?void 0:h.provides)??((u=l.vnode.appContext)==null?void 0:u.provides);if(r&&n in r)return r[n]}const ym=mt({...Wt(),...Tu({fullHeight:!0}),...ce()},"VApp"),Cm=At()({name:"VApp",props:ym(),setup(n,l){let{slots:r}=l;const h=ge(n),{layoutClasses:u,layoutStyles:g,getLayoutItem:v,items:b,layoutRef:z}=Ru(n),{rtlClasses:C}=Xe();return Lt(()=>{var S;return t("div",{ref:z,class:["v-application",h.themeClasses.value,u.value,C.value,n.class],style:[g.value,n.style]},[t("div",{class:"v-application__wrap"},[(S=r.default)==null?void 0:S.call(r)])])}),{getLayoutItem:v,items:b,theme:h}}});const le=mt({tag:{type:String,default:"div"}},"tag"),Vu=mt({text:String,...Wt(),...le()},"VToolbarTitle"),Ah=At()({name:"VToolbarTitle",props:Vu(),setup(n,l){let{slots:r}=l;return Lt(()=>{const h=!!(r.default||r.text||n.text);return t(n.tag,{class:["v-toolbar-title",n.class],style:n.style},{default:()=>{var u;return[h&&t("div",{class:"v-toolbar-title__placeholder"},[r.text?r.text():n.text,(u=r.default)==null?void 0:u.call(r)])]}})}),{}}}),Sm=mt({disabled:Boolean,group:Boolean,hideOnLeave:Boolean,leaveAbsolute:Boolean,mode:String,origin:String},"transition");function yn(n,l,r){return At()({name:n,props:Sm({mode:r,origin:l}),setup(h,u){let{slots:g}=u;const v={onBeforeEnter(b){h.origin&&(b.style.transformOrigin=h.origin)},onLeave(b){if(h.leaveAbsolute){const{offsetTop:z,offsetLeft:C,offsetWidth:S,offsetHeight:A}=b;b._transitionInitialStyles={position:b.style.position,top:b.style.top,left:b.style.left,width:b.style.width,height:b.style.height},b.style.position="absolute",b.style.top=`${z}px`,b.style.left=`${C}px`,b.style.width=`${S}px`,b.style.height=`${A}px`}h.hideOnLeave&&b.style.setProperty("display","none","important")},onAfterLeave(b){if(h.leaveAbsolute&&(b!=null&&b._transitionInitialStyles)){const{position:z,top:C,left:S,width:A,height:B}=b._transitionInitialStyles;delete b._transitionInitialStyles,b.style.position=z||"",b.style.top=C||"",b.style.left=S||"",b.style.width=A||"",b.style.height=B||""}}};return()=>{const b=h.group?Oc:qn;return Hn(b,{name:h.disabled?"":n,css:!h.disabled,...h.group?void 0:{mode:h.mode},...h.disabled?{}:v},g.default)}}})}function _u(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"in-out";return At()({name:n,props:{mode:{type:String,default:r},disabled:Boolean},setup(h,u){let{slots:g}=u;return()=>Hn(qn,{name:h.disabled?"":n,css:!h.disabled,...h.disabled?{}:l},g.default)}})}function Wu(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";const r=(arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1)?"width":"height",h=In(`offset-${r}`);return{onBeforeEnter(v){v._parent=v.parentNode,v._initialStyle={transition:v.style.transition,overflow:v.style.overflow,[r]:v.style[r]}},onEnter(v){const b=v._initialStyle;v.style.setProperty("transition","none","important"),v.style.overflow="hidden";const z=`${v[h]}px`;v.style[r]="0",v.offsetHeight,v.style.transition=b.transition,n&&v._parent&&v._parent.classList.add(n),requestAnimationFrame(()=>{v.style[r]=z})},onAfterEnter:g,onEnterCancelled:g,onLeave(v){v._initialStyle={transition:"",overflow:v.style.overflow,[r]:v.style[r]},v.style.overflow="hidden",v.style[r]=`${v[h]}px`,v.offsetHeight,requestAnimationFrame(()=>v.style[r]="0")},onAfterLeave:u,onLeaveCancelled:u};function u(v){n&&v._parent&&v._parent.classList.remove(n),g(v)}function g(v){const b=v._initialStyle[r];v.style.overflow=v._initialStyle.overflow,b!=null&&(v.style[r]=b),delete v._initialStyle}}const $m=mt({target:Object},"v-dialog-transition"),Da=At()({name:"VDialogTransition",props:$m(),setup(n,l){let{slots:r}=l;const h={onBeforeEnter(u){u.style.pointerEvents="none",u.style.visibility="hidden"},async onEnter(u,g){var B;await new Promise(P=>requestAnimationFrame(P)),await new Promise(P=>requestAnimationFrame(P)),u.style.visibility="";const{x:v,y:b,sx:z,sy:C,speed:S}=V1(n.target,u),A=rr(u,[{transform:`translate(${v}px, ${b}px) scale(${z}, ${C})`,opacity:0},{}],{duration:225*S,easing:A5});(B=E1(u))==null||B.forEach(P=>{rr(P,[{opacity:0},{opacity:0,offset:.33},{}],{duration:225*2*S,easing:Uo})}),A.finished.then(()=>g())},onAfterEnter(u){u.style.removeProperty("pointer-events")},onBeforeLeave(u){u.style.pointerEvents="none"},async onLeave(u,g){var B;await new Promise(P=>requestAnimationFrame(P));const{x:v,y:b,sx:z,sy:C,speed:S}=V1(n.target,u);rr(u,[{},{transform:`translate(${v}px, ${b}px) scale(${z}, ${C})`,opacity:0}],{duration:125*S,easing:B5}).finished.then(()=>g()),(B=E1(u))==null||B.forEach(P=>{rr(P,[{},{opacity:0,offset:.2},{opacity:0}],{duration:125*2*S,easing:Uo})})},onAfterLeave(u){u.style.removeProperty("pointer-events")}};return()=>n.target?t(qn,o({name:"dialog-transition"},h,{css:!1}),r):t(qn,{name:"dialog-transition"},r)}});function E1(n){var r;const l=(r=n.querySelector(":scope > .v-card, :scope > .v-sheet, :scope > .v-list"))==null?void 0:r.children;return l&&[...l]}function V1(n,l){const r=n.getBoundingClientRect(),h=Mh(l),[u,g]=getComputedStyle(l).transformOrigin.split(" ").map(O=>parseFloat(O)),[v,b]=getComputedStyle(l).getPropertyValue("--v-overlay-anchor-origin").split(" ");let z=r.left+r.width/2;v==="left"||b==="left"?z-=r.width/2:(v==="right"||b==="right")&&(z+=r.width/2);let C=r.top+r.height/2;v==="top"||b==="top"?C-=r.height/2:(v==="bottom"||b==="bottom")&&(C+=r.height/2);const S=r.width/h.width,A=r.height/h.height,B=Math.max(1,S,A),P=S/B||0,D=A/B||0,E=h.width*h.height/(window.innerWidth*window.innerHeight),Y=E>.12?Math.min(1.5,(E-.12)*10+1):1;return{x:z-(u+h.left),y:C-(g+h.top),sx:P,sy:D,speed:Y}}const Am=yn("fab-transition","center center","out-in"),Bm=yn("dialog-bottom-transition"),Hm=yn("dialog-top-transition"),c0=yn("fade-transition"),Bh=yn("scale-transition"),Nm=yn("scroll-x-transition"),jm=yn("scroll-x-reverse-transition"),Pm=yn("scroll-y-transition"),Lm=yn("scroll-y-reverse-transition"),Dm=yn("slide-x-transition"),Fm=yn("slide-x-reverse-transition"),Hh=yn("slide-y-transition"),Om=yn("slide-y-reverse-transition"),Fa=_u("expand-transition",Wu()),Nh=_u("expand-x-transition",Wu("",!0)),Tm=mt({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),fe=At(!1)({name:"VDefaultsProvider",props:Tm(),setup(n,l){let{slots:r}=l;const{defaults:h,disabled:u,reset:g,root:v,scoped:b}=rs(n);return Fe(h,{reset:g,root:v,scoped:b,disabled:u}),()=>{var z;return(z=r.default)==null?void 0:z.call(r)}}});const Dn=mt({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function Fn(n){return{dimensionStyles:X(()=>({height:Xt(n.height),maxHeight:Xt(n.maxHeight),maxWidth:Xt(n.maxWidth),minHeight:Xt(n.minHeight),minWidth:Xt(n.minWidth),width:Xt(n.width)}))}}function Rm(n){return{aspectStyles:X(()=>{const l=Number(n.aspectRatio);return l?{paddingBottom:String(1/l*100)+"%"}:void 0})}}const Xu=mt({aspectRatio:[String,Number],contentClass:String,inline:Boolean,...Wt(),...Dn()},"VResponsive"),u0=At()({name:"VResponsive",props:Xu(),setup(n,l){let{slots:r}=l;const{aspectStyles:h}=Rm(n),{dimensionStyles:u}=Fn(n);return Lt(()=>{var g;return t("div",{class:["v-responsive",{"v-responsive--inline":n.inline},n.class],style:[u.value,n.style]},[t("div",{class:"v-responsive__sizer",style:h.value},null),(g=r.additional)==null?void 0:g.call(r),r.default&&t("div",{class:["v-responsive__content",n.contentClass]},[r.default()])])}),{}}}),bl=mt({transition:{type:[Boolean,String,Object],default:"fade-transition",validator:n=>n!==!0}},"transition"),Wn=(n,l)=>{let{slots:r}=l;const{transition:h,disabled:u,...g}=n,{component:v=qn,...b}=typeof h=="object"?h:{};return Hn(v,o(typeof h=="string"?{name:u?"":h}:b,g,{disabled:u}),r)};function Em(n,l){if(!fh)return;const r=l.modifiers||{},h=l.value,{handler:u,options:g}=typeof h=="object"?h:{handler:h,options:{}},v=new IntersectionObserver(function(){var A;let b=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],z=arguments.length>1?arguments[1]:void 0;const C=(A=n._observe)==null?void 0:A[l.instance.$.uid];if(!C)return;const S=b.some(B=>B.isIntersecting);u&&(!r.quiet||C.init)&&(!r.once||S||C.init)&&u(S,b,z),S&&r.once?qu(n,l):C.init=!0},g);n._observe=Object(n._observe),n._observe[l.instance.$.uid]={init:!1,observer:v},v.observe(n)}function qu(n,l){var h;const r=(h=n._observe)==null?void 0:h[l.instance.$.uid];r&&(r.observer.unobserve(n),delete n._observe[l.instance.$.uid])}const Yu={mounted:Em,unmounted:qu},Oa=Yu,Gu=mt({alt:String,cover:Boolean,eager:Boolean,gradient:String,lazySrc:String,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},sizes:String,src:{type:[String,Object],default:""},srcset:String,...Xu(),...Wt(),...bl()},"VImg"),gr=At()({name:"VImg",directives:{intersect:Oa},props:Gu(),emits:{loadstart:n=>!0,load:n=>!0,error:n=>!0},setup(n,l){let{emit:r,slots:h}=l;const u=_t(""),g=Pt(),v=_t(n.eager?"loading":"idle"),b=_t(),z=_t(),C=X(()=>n.src&&typeof n.src=="object"?{src:n.src.src,srcset:n.srcset||n.src.srcset,lazySrc:n.lazySrc||n.src.lazySrc,aspect:Number(n.aspectRatio||n.src.aspect||0)}:{src:n.src,srcset:n.srcset,lazySrc:n.lazySrc,aspect:Number(n.aspectRatio||0)}),S=X(()=>C.value.aspect||b.value/z.value||0);Vt(()=>n.src,()=>{A(v.value!=="idle")}),Vt(S,(q,G)=>{!q&&G&&g.value&&Y(g.value)}),hs(()=>A());function A(q){if(!(n.eager&&q)&&!(fh&&!q&&!n.eager)){if(v.value="loading",C.value.lazySrc){const G=new Image;G.src=C.value.lazySrc,Y(G,null)}C.value.src&&pe(()=>{var G,et;if(r("loadstart",((G=g.value)==null?void 0:G.currentSrc)||C.value.src),(et=g.value)!=null&&et.complete){if(g.value.naturalWidth||P(),v.value==="error")return;S.value||Y(g.value,null),B()}else S.value||Y(g.value),D()})}}function B(){var q;D(),v.value="loaded",r("load",((q=g.value)==null?void 0:q.currentSrc)||C.value.src)}function P(){var q;v.value="error",r("error",((q=g.value)==null?void 0:q.currentSrc)||C.value.src)}function D(){const q=g.value;q&&(u.value=q.currentSrc||q.src)}let E=-1;function Y(q){let G=arguments.length>1&&arguments[1]!==void 0?arguments[1]:100;const et=()=>{clearTimeout(E);const{naturalHeight:st,naturalWidth:rt}=q;st||rt?(b.value=rt,z.value=st):!q.complete&&v.value==="loading"&&G!=null?E=window.setTimeout(et,G):(q.currentSrc.endsWith(".svg")||q.currentSrc.startsWith("data:image/svg+xml"))&&(b.value=1,z.value=1)};et()}const O=X(()=>({"v-img__img--cover":n.cover,"v-img__img--contain":!n.cover})),H=()=>{var et;if(!C.value.src||v.value==="idle")return null;const q=t("img",{class:["v-img__img",O.value],src:C.value.src,srcset:C.value.srcset,alt:n.alt,sizes:n.sizes,ref:g,onLoad:B,onError:P},null),G=(et=h.sources)==null?void 0:et.call(h);return t(Wn,{transition:n.transition,appear:!0},{default:()=>[Ce(G?t("picture",{class:"v-img__picture"},[G,q]):q,[[Nn,v.value==="loaded"]])]})},U=()=>t(Wn,{transition:n.transition},{default:()=>[C.value.lazySrc&&v.value!=="loaded"&&t("img",{class:["v-img__img","v-img__img--preload",O.value],src:C.value.lazySrc,alt:n.alt},null)]}),W=()=>h.placeholder?t(Wn,{transition:n.transition,appear:!0},{default:()=>[(v.value==="loading"||v.value==="error"&&!h.error)&&t("div",{class:"v-img__placeholder"},[h.placeholder()])]}):null,_=()=>h.error?t(Wn,{transition:n.transition,appear:!0},{default:()=>[v.value==="error"&&t("div",{class:"v-img__error"},[h.error()])]}):null,tt=()=>n.gradient?t("div",{class:"v-img__gradient",style:{backgroundImage:`linear-gradient(${n.gradient})`}},null):null,nt=_t(!1);{const q=Vt(S,G=>{G&&(requestAnimationFrame(()=>{requestAnimationFrame(()=>{nt.value=!0})}),q())})}return Lt(()=>{const[q]=u0.filterProps(n);return Ce(t(u0,o({class:["v-img",{"v-img--booting":!nt.value},n.class],style:[{width:Xt(n.width==="auto"?b.value:n.width)},n.style]},q,{aspectRatio:S.value,"aria-label":n.alt,role:n.alt?"img":void 0}),{additional:()=>t(Zt,null,[t(H,null,null),t(U,null,null),t(tt,null,null),t(W,null,null),t(_,null,null)]),default:h.default}),[[mn("intersect"),{handler:A,options:n.options},null,{once:!0}]])}),{currentSrc:u,image:g,state:v,naturalWidth:b,naturalHeight:z}}}),Cn=mt({border:[Boolean,Number,String]},"border");function On(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{borderClasses:X(()=>{const h=ke(n)?n.value:n.border,u=[];if(h===!0||h==="")u.push(`${l}--border`);else if(typeof h=="string"||h===0)for(const g of String(h).split(" "))u.push(`border-${g}`);return u})}}function jh(n){return kh(()=>{const l=[],r={};if(n.value.background)if(S1(n.value.background)){if(r.backgroundColor=n.value.background,!n.value.text){const h=Au(r.backgroundColor);r.color=h,r.caretColor=h}}else l.push(`bg-${n.value.background}`);return n.value.text&&(S1(n.value.text)?(r.color=n.value.text,r.caretColor=n.value.text):l.push(`text-${n.value.text}`)),{colorClasses:l,colorStyles:r}})}function rn(n,l){const r=X(()=>({text:ke(n)?n.value:l?n[l]:null})),{colorClasses:h,colorStyles:u}=jh(r);return{textColorClasses:h,textColorStyles:u}}function Ne(n,l){const r=X(()=>({background:ke(n)?n.value:l?n[l]:null})),{colorClasses:h,colorStyles:u}=jh(r);return{backgroundColorClasses:h,backgroundColorStyles:u}}const Re=mt({elevation:{type:[Number,String],validator(n){const l=parseInt(n);return!isNaN(l)&&l>=0&&l<=24}}},"elevation");function Ze(n){return{elevationClasses:X(()=>{const r=ke(n)?n.value:n.elevation,h=[];return r==null||h.push(`elevation-${r}`),h})}}const Ie=mt({rounded:{type:[Boolean,Number,String],default:void 0}},"rounded");function Be(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{roundedClasses:X(()=>{const h=ke(n)?n.value:n.rounded,u=[];if(h===!0||h==="")u.push(`${l}--rounded`);else if(typeof h=="string"||h===0)for(const g of String(h).split(" "))u.push(`rounded-${g}`);return u})}}const Vm=[null,"prominent","default","comfortable","compact"],Uu=mt({absolute:Boolean,collapse:Boolean,color:String,density:{type:String,default:"default",validator:n=>Vm.includes(n)},extended:Boolean,extensionHeight:{type:[Number,String],default:48},flat:Boolean,floating:Boolean,height:{type:[Number,String],default:64},image:String,title:String,...Cn(),...Wt(),...Re(),...Ie(),...le({tag:"header"}),...ce()},"VToolbar"),p0=At()({name:"VToolbar",props:Uu(),setup(n,l){var P;let{slots:r}=l;const{backgroundColorClasses:h,backgroundColorStyles:u}=Ne(Bt(n,"color")),{borderClasses:g}=On(n),{elevationClasses:v}=Ze(n),{roundedClasses:b}=Be(n),{themeClasses:z}=ge(n),{rtlClasses:C}=Xe(),S=_t(!!(n.extended||(P=r.extension)!=null&&P.call(r))),A=X(()=>parseInt(Number(n.height)+(n.density==="prominent"?Number(n.height):0)-(n.density==="comfortable"?8:0)-(n.density==="compact"?16:0),10)),B=X(()=>S.value?parseInt(Number(n.extensionHeight)+(n.density==="prominent"?Number(n.extensionHeight):0)-(n.density==="comfortable"?4:0)-(n.density==="compact"?8:0),10):0);return Fe({VBtn:{variant:"text"}}),Lt(()=>{var O;const D=!!(n.title||r.title),E=!!(r.image||n.image),Y=(O=r.extension)==null?void 0:O.call(r);return S.value=!!(n.extended||Y),t(n.tag,{class:["v-toolbar",{"v-toolbar--absolute":n.absolute,"v-toolbar--collapse":n.collapse,"v-toolbar--flat":n.flat,"v-toolbar--floating":n.floating,[`v-toolbar--density-${n.density}`]:!0},h.value,g.value,v.value,b.value,z.value,C.value,n.class],style:[u.value,n.style]},{default:()=>[E&&t("div",{key:"image",class:"v-toolbar__image"},[r.image?t(fe,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},r.image):t(gr,{key:"image-img",cover:!0,src:n.image},null)]),t(fe,{defaults:{VTabs:{height:Xt(A.value)}}},{default:()=>{var H,U,W;return[t("div",{class:"v-toolbar__content",style:{height:Xt(A.value)}},[r.prepend&&t("div",{class:"v-toolbar__prepend"},[(H=r.prepend)==null?void 0:H.call(r)]),D&&t(Ah,{key:"title",text:n.title},{text:r.title}),(U=r.default)==null?void 0:U.call(r),r.append&&t("div",{class:"v-toolbar__append"},[(W=r.append)==null?void 0:W.call(r)])])]}}),t(fe,{defaults:{VTabs:{height:Xt(B.value)}}},{default:()=>[t(Fa,null,{default:()=>[S.value&&t("div",{class:"v-toolbar__extension",style:{height:Xt(B.value)}},[Y])]})]})]})}),{contentHeight:A,extensionHeight:B}}}),_m=mt({scrollTarget:{type:String},scrollThreshold:{type:[String,Number],default:300}},"scroll");function Wm(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};const{canScroll:r}=l;let h=0;const u=Pt(null),g=_t(0),v=_t(0),b=_t(0),z=_t(!1),C=_t(!1),S=X(()=>Number(n.scrollThreshold)),A=X(()=>en((S.value-g.value)/S.value||0)),B=()=>{const P=u.value;!P||r&&!r.value||(h=g.value,g.value="window"in P?P.pageYOffset:P.scrollTop,C.value=g.value{v.value=v.value||g.value}),Vt(z,()=>{v.value=0}),Te(()=>{Vt(()=>n.scrollTarget,P=>{var E;const D=P?document.querySelector(P):window;D&&D!==u.value&&((E=u.value)==null||E.removeEventListener("scroll",B),u.value=D,u.value.addEventListener("scroll",B,{passive:!0}))},{immediate:!0})}),Ue(()=>{var P;(P=u.value)==null||P.removeEventListener("scroll",B)}),r&&Vt(r,B,{immediate:!0}),{scrollThreshold:S,currentScroll:g,currentThreshold:b,isScrollActive:z,scrollRatio:A,isScrollingUp:C,savedScroll:v}}function xr(){const n=_t(!1);return Te(()=>{window.requestAnimationFrame(()=>{n.value=!0})}),{ssrBootStyles:X(()=>n.value?void 0:{transition:"none !important"}),isBooted:no(n)}}const Xm=mt({scrollBehavior:String,modelValue:{type:Boolean,default:!0},location:{type:String,default:"top",validator:n=>["top","bottom"].includes(n)},...Uu(),...lo(),..._m(),height:{type:[Number,String],default:64}},"VAppBar"),qm=At()({name:"VAppBar",props:Xm(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=Pt(),u=ee(n,"modelValue"),g=X(()=>{var H;const O=new Set(((H=n.scrollBehavior)==null?void 0:H.split(" "))??[]);return{hide:O.has("hide"),inverted:O.has("inverted"),collapse:O.has("collapse"),elevate:O.has("elevate"),fadeImage:O.has("fade-image")}}),v=X(()=>{const O=g.value;return O.hide||O.inverted||O.collapse||O.elevate||O.fadeImage||!u.value}),{currentScroll:b,scrollThreshold:z,isScrollingUp:C,scrollRatio:S}=Wm(n,{canScroll:v}),A=X(()=>n.collapse||g.value.collapse&&(g.value.inverted?S.value>0:S.value===0)),B=X(()=>n.flat||g.value.elevate&&(g.value.inverted?b.value>0:b.value===0)),P=X(()=>g.value.fadeImage?g.value.inverted?1-S.value:S.value:void 0),D=X(()=>{var U,W;if(g.value.hide&&g.value.inverted)return 0;const O=((U=h.value)==null?void 0:U.contentHeight)??0,H=((W=h.value)==null?void 0:W.extensionHeight)??0;return O+H});Vl(X(()=>!!n.scrollBehavior),()=>{fn(()=>{g.value.hide?g.value.inverted?u.value=b.value>z.value:u.value=C.value||b.valueparseInt(n.order,10)),position:Bt(n,"location"),layoutSize:D,elementSize:_t(void 0),active:u,absolute:Bt(n,"absolute")});return Lt(()=>{const[O]=p0.filterProps(n);return t(p0,o({ref:h,class:["v-app-bar",{"v-app-bar--bottom":n.location==="bottom"},n.class],style:[{...Y.value,"--v-toolbar-image-opacity":P.value,height:void 0,...E.value},n.style]},O,{collapse:A.value,flat:B.value}),r)}),{}}});const Ym=[null,"default","comfortable","compact"],Ee=mt({density:{type:String,default:"default",validator:n=>Ym.includes(n)}},"density");function sn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{densityClasses:X(()=>`${l}--density-${n.density}`)}}const Gm=["elevated","flat","tonal","outlined","text","plain"];function zr(n,l){return t(Zt,null,[n&&t("span",{key:"overlay",class:`${l}__overlay`},null),t("span",{key:"underlay",class:`${l}__underlay`},null)])}const Tn=mt({color:String,variant:{type:String,default:"elevated",validator:n=>Gm.includes(n)}},"variant");function Ir(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();const r=X(()=>{const{variant:g}=He(n);return`${l}--variant-${g}`}),{colorClasses:h,colorStyles:u}=jh(X(()=>{const{variant:g,color:v}=He(n);return{[["elevated","flat"].includes(g)?"background":"text"]:v}}));return{colorClasses:h,colorStyles:u,variantClasses:r}}const Zu=mt({divided:Boolean,...Cn(),...Wt(),...Ee(),...Re(),...Ie(),...le(),...ce(),...Tn()},"VBtnGroup"),g0=At()({name:"VBtnGroup",props:Zu(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{densityClasses:u}=sn(n),{borderClasses:g}=On(n),{elevationClasses:v}=Ze(n),{roundedClasses:b}=Be(n);Fe({VBtn:{height:"auto",color:Bt(n,"color"),density:Bt(n,"density"),flat:!0,variant:Bt(n,"variant")}}),Lt(()=>t(n.tag,{class:["v-btn-group",{"v-btn-group--divided":n.divided},h.value,g.value,u.value,v.value,b.value,n.class],style:n.style},r))}}),oo=mt({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),so=mt({value:null,disabled:Boolean,selectedClass:String},"group-item");function ao(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;const h=We("useGroupItem");if(!h)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const u=on();ye(Symbol.for(`${l.description}:id`),u);const g=he(l,null);if(!g){if(!r)return g;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${l.description}`)}const v=Bt(n,"value"),b=X(()=>!!(g.disabled.value||n.disabled));g.register({id:u,value:v,disabled:b},h),Ue(()=>{g.unregister(u)});const z=X(()=>g.isSelected(u)),C=X(()=>z.value&&[g.selectedClass.value,n.selectedClass]);return Vt(z,S=>{h.emit("group:selected",{value:S})}),{id:u,isSelected:z,toggle:()=>g.select(u,!z.value),select:S=>g.select(u,S),selectedClass:C,value:v,disabled:b,group:g}}function yr(n,l){let r=!1;const h=Ye([]),u=ee(n,"modelValue",[],B=>B==null?[]:Ku(h,Bn(B)),B=>{const P=Zm(h,B);return n.multiple?P:P[0]}),g=We("useGroup");function v(B,P){const D=B,E=Symbol.for(`${l.description}:id`),O=Lo(E,g==null?void 0:g.vnode).indexOf(P);O>-1?h.splice(O,0,D):h.push(D)}function b(B){if(r)return;z();const P=h.findIndex(D=>D.id===B);h.splice(P,1)}function z(){const B=h.find(P=>!P.disabled);B&&n.mandatory==="force"&&!u.value.length&&(u.value=[B.id])}Te(()=>{z()}),Ue(()=>{r=!0});function C(B,P){const D=h.find(E=>E.id===B);if(!(P&&(D!=null&&D.disabled)))if(n.multiple){const E=u.value.slice(),Y=E.findIndex(H=>H===B),O=~Y;if(P=P??!O,O&&n.mandatory&&E.length<=1||!O&&n.max!=null&&E.length+1>n.max)return;Y<0&&P?E.push(B):Y>=0&&!P&&E.splice(Y,1),u.value=E}else{const E=u.value.includes(B);if(n.mandatory&&E)return;u.value=P??!E?[B]:[]}}function S(B){if(n.multiple,u.value.length){const P=u.value[0],D=h.findIndex(O=>O.id===P);let E=(D+B)%h.length,Y=h[E];for(;Y.disabled&&E!==D;)E=(E+B)%h.length,Y=h[E];if(Y.disabled)return;u.value=[h[E].id]}else{const P=h.find(D=>!D.disabled);P&&(u.value=[P.id])}}const A={register:v,unregister:b,selected:u,select:C,disabled:Bt(n,"disabled"),prev:()=>S(h.length-1),next:()=>S(1),isSelected:B=>u.value.includes(B),selectedClass:X(()=>n.selectedClass),items:X(()=>h),getItemIndex:B=>Um(h,B)};return ye(l,A),A}function Um(n,l){const r=Ku(n,[l]);return r.length?n.findIndex(h=>h.id===r[0]):-1}function Ku(n,l){const r=[];return l.forEach(h=>{const u=n.find(v=>kr(h,v.value)),g=n[h];(u==null?void 0:u.value)!=null?r.push(u.id):g!=null&&r.push(g.id)}),r}function Zm(n,l){const r=[];return l.forEach(h=>{const u=n.findIndex(g=>g.id===h);if(~u){const g=n[u];r.push(g.value!=null?g.value:u)}}),r}const Ph=Symbol.for("vuetify:v-btn-toggle"),Km=mt({...Zu(),...oo()},"VBtnToggle"),Qm=At()({name:"VBtnToggle",props:Km(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{isSelected:h,next:u,prev:g,select:v,selected:b}=yr(n,Ph);return Lt(()=>{const[z]=g0.filterProps(n);return t(g0,o({class:["v-btn-toggle",n.class]},z,{style:n.style}),{default:()=>{var C;return[(C=r.default)==null?void 0:C.call(r,{isSelected:h,next:u,prev:g,select:v,selected:b})]}})}),{next:u,prev:g,select:v}}});const Jm=["x-small","small","default","large","x-large"],Ml=mt({size:{type:[String,Number],default:"default"}},"size");function io(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return kh(()=>{let r,h;return ea(Jm,n.size)?r=`${l}--size-${n.size}`:n.size&&(h={width:Xt(n.size),height:Xt(n.size)}),{sizeClasses:r,sizeStyles:h}})}const tk=mt({color:String,start:Boolean,end:Boolean,icon:te,...Wt(),...Ml(),...le({tag:"i"}),...ce()},"VIcon"),be=At()({name:"VIcon",props:tk(),setup(n,l){let{attrs:r,slots:h}=l;const u=Pt(),{themeClasses:g}=ge(n),{iconData:v}=W5(X(()=>u.value||n.icon)),{sizeClasses:b}=io(n),{textColorClasses:z,textColorStyles:C}=rn(Bt(n,"color"));return Lt(()=>{var A,B;const S=(A=h.default)==null?void 0:A.call(h);return S&&(u.value=(B=wu(S).filter(P=>P.type===Fl&&P.children&&typeof P.children=="string")[0])==null?void 0:B.children),t(v.value.component,{tag:n.tag,icon:v.value.icon,class:["v-icon","notranslate",g.value,b.value,z.value,{"v-icon--clickable":!!r.onClick,"v-icon--start":n.start,"v-icon--end":n.end},n.class],style:[b.value?void 0:{fontSize:Xt(n.size),height:Xt(n.size),width:Xt(n.size)},C.value,n.style],role:r.onClick?"button":void 0,"aria-hidden":!r.onClick},{default:()=>[S]})}),{}}});function Lh(n,l){const r=Pt(),h=_t(!1);if(fh){const u=new IntersectionObserver(g=>{n==null||n(g,u),h.value=!!g.find(v=>v.isIntersecting)},l);Ue(()=>{u.disconnect()}),Vt(r,(g,v)=>{v&&(u.unobserve(v),h.value=!1),g&&u.observe(g)},{flush:"post"})}return{intersectionRef:r,isIntersecting:h}}const ek=mt({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...Wt(),...Ml(),...le({tag:"div"}),...ce()},"VProgressCircular"),Dh=At()({name:"VProgressCircular",props:ek(),setup(n,l){let{slots:r}=l;const h=20,u=2*Math.PI*h,g=Pt(),{themeClasses:v}=ge(n),{sizeClasses:b,sizeStyles:z}=io(n),{textColorClasses:C,textColorStyles:S}=rn(Bt(n,"color")),{textColorClasses:A,textColorStyles:B}=rn(Bt(n,"bgColor")),{intersectionRef:P,isIntersecting:D}=Lh(),{resizeRef:E,contentRect:Y}=el(),O=X(()=>Math.max(0,Math.min(100,parseFloat(n.modelValue)))),H=X(()=>Number(n.width)),U=X(()=>z.value?Number(n.size):Y.value?Y.value.width:Math.max(H.value,32)),W=X(()=>h/(1-H.value/U.value)*2),_=X(()=>H.value/U.value*W.value),tt=X(()=>Xt((100-O.value)/100*u));return fn(()=>{P.value=g.value,E.value=g.value}),Lt(()=>t(n.tag,{ref:g,class:["v-progress-circular",{"v-progress-circular--indeterminate":!!n.indeterminate,"v-progress-circular--visible":D.value,"v-progress-circular--disable-shrink":n.indeterminate==="disable-shrink"},v.value,b.value,C.value,n.class],style:[z.value,S.value,n.style],role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":n.indeterminate?void 0:O.value},{default:()=>[t("svg",{style:{transform:`rotate(calc(-90deg + ${Number(n.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${W.value} ${W.value}`},[t("circle",{class:["v-progress-circular__underlay",A.value],style:B.value,fill:"transparent",cx:"50%",cy:"50%",r:h,"stroke-width":_.value,"stroke-dasharray":u,"stroke-dashoffset":0},null),t("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:h,"stroke-width":_.value,"stroke-dasharray":u,"stroke-dashoffset":tt.value},null)]),r.default&&t("div",{class:"v-progress-circular__content"},[r.default({value:O.value})])]})),{}}});const _1={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},Wl=mt({location:String},"location");function Xl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,r=arguments.length>2?arguments[2]:void 0;const{isRtl:h}=Xe();return{locationStyles:X(()=>{if(!n.location)return{};const{side:g,align:v}=l0(n.location.split(" ").length>1?n.location:`${n.location} center`,h.value);function b(C){return r?r(C):0}const z={};return g!=="center"&&(l?z[_1[g]]=`calc(100% - ${b(g)}px)`:z[g]=0),v!=="center"?l?z[_1[v]]=`calc(100% - ${b(v)}px)`:z[v]=0:(g==="center"?z.top=z.left="50%":z[{top:"left",bottom:"left",left:"top",right:"top"}[g]]="50%",z.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[g]),z})}}const nk=mt({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...Wt(),...Wl({location:"top"}),...Ie(),...le(),...ce()},"VProgressLinear"),Fh=At()({name:"VProgressLinear",props:nk(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{isRtl:u,rtlClasses:g}=Xe(),{themeClasses:v}=ge(n),{locationStyles:b}=Xl(n),{textColorClasses:z,textColorStyles:C}=rn(n,"color"),{backgroundColorClasses:S,backgroundColorStyles:A}=Ne(X(()=>n.bgColor||n.color)),{backgroundColorClasses:B,backgroundColorStyles:P}=Ne(n,"color"),{roundedClasses:D}=Be(n),{intersectionRef:E,isIntersecting:Y}=Lh(),O=X(()=>parseInt(n.max,10)),H=X(()=>parseInt(n.height,10)),U=X(()=>parseFloat(n.bufferValue)/O.value*100),W=X(()=>parseFloat(h.value)/O.value*100),_=X(()=>u.value!==n.reverse),tt=X(()=>n.indeterminate?"fade-transition":"slide-x-transition"),nt=X(()=>n.bgOpacity==null?n.bgOpacity:parseFloat(n.bgOpacity));function q(G){if(!E.value)return;const{left:et,right:st,width:rt}=E.value.getBoundingClientRect(),ht=_.value?rt-G.clientX+(st-rt):G.clientX-et;h.value=Math.round(ht/rt*O.value)}return Lt(()=>t(n.tag,{ref:E,class:["v-progress-linear",{"v-progress-linear--absolute":n.absolute,"v-progress-linear--active":n.active&&Y.value,"v-progress-linear--reverse":_.value,"v-progress-linear--rounded":n.rounded,"v-progress-linear--rounded-bar":n.roundedBar,"v-progress-linear--striped":n.striped},D.value,v.value,g.value,n.class],style:[{bottom:n.location==="bottom"?0:void 0,top:n.location==="top"?0:void 0,height:n.active?Xt(H.value):0,"--v-progress-linear-height":Xt(H.value),...b.value},n.style],role:"progressbar","aria-hidden":n.active?"false":"true","aria-valuemin":"0","aria-valuemax":n.max,"aria-valuenow":n.indeterminate?void 0:W.value,onClick:n.clickable&&q},{default:()=>[n.stream&&t("div",{key:"stream",class:["v-progress-linear__stream",z.value],style:{...C.value,[_.value?"left":"right"]:Xt(-H.value),borderTop:`${Xt(H.value/2)} dotted`,opacity:nt.value,top:`calc(50% - ${Xt(H.value/4)})`,width:Xt(100-U.value,"%"),"--v-progress-linear-stream-to":Xt(H.value*(_.value?1:-1))}},null),t("div",{class:["v-progress-linear__background",S.value],style:[A.value,{opacity:nt.value,width:Xt(n.stream?U.value:100,"%")}]},null),t(qn,{name:tt.value},{default:()=>[n.indeterminate?t("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(G=>t("div",{key:G,class:["v-progress-linear__indeterminate",G,B.value],style:P.value},null))]):t("div",{class:["v-progress-linear__determinate",B.value],style:[P.value,{width:Xt(W.value,"%")}]},null)]}),r.default&&t("div",{class:"v-progress-linear__content"},[r.default({value:W.value,buffer:U.value})])]})),{}}}),Oh=mt({loading:[Boolean,String]},"loader");function Ta(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{loaderClasses:X(()=>({[`${l}--loading`]:n.loading}))}}function Th(n,l){var h;let{slots:r}=l;return t("div",{class:`${n.name}__loader`},[((h=r.default)==null?void 0:h.call(r,{color:n.color,isActive:n.active}))||t(Fh,{active:n.active,color:n.color,height:"2",indeterminate:!0},null)])}const lk=["static","relative","fixed","absolute","sticky"],ho=mt({position:{type:String,validator:n=>lk.includes(n)}},"position");function co(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{positionClasses:X(()=>n.position?`${l}--${n.position}`:void 0)}}function Qu(){var n,l;return(l=(n=We("useRouter"))==null?void 0:n.proxy)==null?void 0:l.$router}function ps(n,l){const r=Qd("RouterLink"),h=X(()=>!!(n.href||n.to)),u=X(()=>(h==null?void 0:h.value)||w1(l,"click")||w1(n,"click"));if(typeof r=="string")return{isLink:h,isClickable:u,href:Bt(n,"href")};const g=n.to?r.useLink(n):void 0;return{isLink:h,isClickable:u,route:g==null?void 0:g.route,navigate:g==null?void 0:g.navigate,isActive:g&&X(()=>{var v,b;return n.exact?(v=g.isExactActive)==null?void 0:v.value:(b=g.isActive)==null?void 0:b.value}),href:X(()=>n.to?g==null?void 0:g.route.value.href:n.href)}}const gs=mt({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let ki=!1;function rk(n,l){let r=!1,h,u;Me&&(pe(()=>{window.addEventListener("popstate",g),h=n==null?void 0:n.beforeEach((v,b,z)=>{ki?r?l(z):z():setTimeout(()=>r?l(z):z()),ki=!0}),u=n==null?void 0:n.afterEach(()=>{ki=!1})}),ln(()=>{window.removeEventListener("popstate",g),h==null||h(),u==null||u()}));function g(v){var b;(b=v.state)!=null&&b.replaced||(r=!0,setTimeout(()=>r=!1))}}function ok(n,l){Vt(()=>{var r;return(r=n.isActive)==null?void 0:r.value},r=>{n.isLink.value&&r&&l&&pe(()=>{l(!0)})},{immediate:!0})}const w0=Symbol("rippleStop"),sk=80;function W1(n,l){n.style.transform=l,n.style.webkitTransform=l}function v0(n){return n.constructor.name==="TouchEvent"}function Ju(n){return n.constructor.name==="KeyboardEvent"}const ak=function(n,l){var A;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},h=0,u=0;if(!Ju(n)){const B=l.getBoundingClientRect(),P=v0(n)?n.touches[n.touches.length-1]:n;h=P.clientX-B.left,u=P.clientY-B.top}let g=0,v=.3;(A=l._ripple)!=null&&A.circle?(v=.15,g=l.clientWidth/2,g=r.center?g:g+Math.sqrt((h-g)**2+(u-g)**2)/4):g=Math.sqrt(l.clientWidth**2+l.clientHeight**2)/2;const b=`${(l.clientWidth-g*2)/2}px`,z=`${(l.clientHeight-g*2)/2}px`,C=r.center?b:`${h-g}px`,S=r.center?z:`${u-g}px`;return{radius:g,scale:v,x:C,y:S,centerX:b,centerY:z}},sa={show(n,l){var P;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!((P=l==null?void 0:l._ripple)!=null&&P.enabled))return;const h=document.createElement("span"),u=document.createElement("span");h.appendChild(u),h.className="v-ripple__container",r.class&&(h.className+=` ${r.class}`);const{radius:g,scale:v,x:b,y:z,centerX:C,centerY:S}=ak(n,l,r),A=`${g*2}px`;u.className="v-ripple__animation",u.style.width=A,u.style.height=A,l.appendChild(h);const B=window.getComputedStyle(l);B&&B.position==="static"&&(l.style.position="relative",l.dataset.previousPosition="static"),u.classList.add("v-ripple__animation--enter"),u.classList.add("v-ripple__animation--visible"),W1(u,`translate(${b}, ${z}) scale3d(${v},${v},${v})`),u.dataset.activated=String(performance.now()),setTimeout(()=>{u.classList.remove("v-ripple__animation--enter"),u.classList.add("v-ripple__animation--in"),W1(u,`translate(${C}, ${S}) scale3d(1,1,1)`)},0)},hide(n){var g;if(!((g=n==null?void 0:n._ripple)!=null&&g.enabled))return;const l=n.getElementsByClassName("v-ripple__animation");if(l.length===0)return;const r=l[l.length-1];if(r.dataset.isHiding)return;r.dataset.isHiding="true";const h=performance.now()-Number(r.dataset.activated),u=Math.max(250-h,0);setTimeout(()=>{r.classList.remove("v-ripple__animation--in"),r.classList.add("v-ripple__animation--out"),setTimeout(()=>{var b;n.getElementsByClassName("v-ripple__animation").length===1&&n.dataset.previousPosition&&(n.style.position=n.dataset.previousPosition,delete n.dataset.previousPosition),((b=r.parentNode)==null?void 0:b.parentNode)===n&&n.removeChild(r.parentNode)},300)},u)}};function tp(n){return typeof n>"u"||!!n}function Ko(n){const l={},r=n.currentTarget;if(!(!(r!=null&&r._ripple)||r._ripple.touched||n[w0])){if(n[w0]=!0,v0(n))r._ripple.touched=!0,r._ripple.isTouch=!0;else if(r._ripple.isTouch)return;if(l.center=r._ripple.centered||Ju(n),r._ripple.class&&(l.class=r._ripple.class),v0(n)){if(r._ripple.showTimerCommit)return;r._ripple.showTimerCommit=()=>{sa.show(n,r,l)},r._ripple.showTimer=window.setTimeout(()=>{var h;(h=r==null?void 0:r._ripple)!=null&&h.showTimerCommit&&(r._ripple.showTimerCommit(),r._ripple.showTimerCommit=null)},sk)}else sa.show(n,r,l)}}function X1(n){n[w0]=!0}function xn(n){const l=n.currentTarget;if(l!=null&&l._ripple){if(window.clearTimeout(l._ripple.showTimer),n.type==="touchend"&&l._ripple.showTimerCommit){l._ripple.showTimerCommit(),l._ripple.showTimerCommit=null,l._ripple.showTimer=window.setTimeout(()=>{xn(n)});return}window.setTimeout(()=>{l._ripple&&(l._ripple.touched=!1)}),sa.hide(l)}}function ep(n){const l=n.currentTarget;l!=null&&l._ripple&&(l._ripple.showTimerCommit&&(l._ripple.showTimerCommit=null),window.clearTimeout(l._ripple.showTimer))}let Qo=!1;function np(n){!Qo&&(n.keyCode===c1.enter||n.keyCode===c1.space)&&(Qo=!0,Ko(n))}function lp(n){Qo=!1,xn(n)}function rp(n){Qo&&(Qo=!1,xn(n))}function op(n,l,r){const{value:h,modifiers:u}=l,g=tp(h);if(g||sa.hide(n),n._ripple=n._ripple??{},n._ripple.enabled=g,n._ripple.centered=u.center,n._ripple.circle=u.circle,t0(h)&&h.class&&(n._ripple.class=h.class),g&&!r){if(u.stop){n.addEventListener("touchstart",X1,{passive:!0}),n.addEventListener("mousedown",X1);return}n.addEventListener("touchstart",Ko,{passive:!0}),n.addEventListener("touchend",xn,{passive:!0}),n.addEventListener("touchmove",ep,{passive:!0}),n.addEventListener("touchcancel",xn),n.addEventListener("mousedown",Ko),n.addEventListener("mouseup",xn),n.addEventListener("mouseleave",xn),n.addEventListener("keydown",np),n.addEventListener("keyup",lp),n.addEventListener("blur",rp),n.addEventListener("dragstart",xn,{passive:!0})}else!g&&r&&sp(n)}function sp(n){n.removeEventListener("mousedown",Ko),n.removeEventListener("touchstart",Ko),n.removeEventListener("touchend",xn),n.removeEventListener("touchmove",ep),n.removeEventListener("touchcancel",xn),n.removeEventListener("mouseup",xn),n.removeEventListener("mouseleave",xn),n.removeEventListener("keydown",np),n.removeEventListener("keyup",lp),n.removeEventListener("dragstart",xn),n.removeEventListener("blur",rp)}function ik(n,l){op(n,l,!1)}function hk(n){delete n._ripple,sp(n)}function dk(n,l){if(l.value===l.oldValue)return;const r=tp(l.oldValue);op(n,l,r)}const ql={mounted:ik,unmounted:hk,updated:dk},Rh=mt({active:{type:Boolean,default:void 0},symbol:{type:null,default:Ph},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:te,appendIcon:te,block:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:String,...Cn(),...Wt(),...Ee(),...Dn(),...Re(),...so(),...Oh(),...Wl(),...ho(),...Ie(),...gs(),...Ml(),...le({tag:"button"}),...ce(),...Tn({variant:"elevated"})},"VBtn"),dn=At()({name:"VBtn",directives:{Ripple:ql},props:Rh(),emits:{"group:selected":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const{themeClasses:u}=ge(n),{borderClasses:g}=On(n),{colorClasses:v,colorStyles:b,variantClasses:z}=Ir(n),{densityClasses:C}=sn(n),{dimensionStyles:S}=Fn(n),{elevationClasses:A}=Ze(n),{loaderClasses:B}=Ta(n),{locationStyles:P}=Xl(n),{positionClasses:D}=co(n),{roundedClasses:E}=Be(n),{sizeClasses:Y,sizeStyles:O}=io(n),H=ao(n,n.symbol,!1),U=ps(n,r),W=X(()=>{var G;return n.active!==void 0?n.active:U.isLink.value?(G=U.isActive)==null?void 0:G.value:H==null?void 0:H.isSelected.value}),_=X(()=>(H==null?void 0:H.disabled.value)||n.disabled),tt=X(()=>n.variant==="elevated"&&!(n.disabled||n.flat||n.border)),nt=X(()=>{if(n.value!==void 0)return Object(n.value)===n.value?JSON.stringify(n.value,null,0):n.value});function q(G){var et;_.value||U.isLink.value&&(G.metaKey||G.ctrlKey||G.shiftKey||G.button!==0||r.target==="_blank")||((et=U.navigate)==null||et.call(U,G),H==null||H.toggle())}return ok(U,H==null?void 0:H.select),Lt(()=>{var dt,Ct;const G=U.isLink.value?"a":n.tag,et=!!(n.prependIcon||h.prepend),st=!!(n.appendIcon||h.append),rt=!!(n.icon&&n.icon!==!0),ht=(H==null?void 0:H.isSelected.value)&&(!U.isLink.value||((dt=U.isActive)==null?void 0:dt.value))||!H||((Ct=U.isActive)==null?void 0:Ct.value);return Ce(t(G,{type:G==="a"?void 0:"button",class:["v-btn",H==null?void 0:H.selectedClass.value,{"v-btn--active":W.value,"v-btn--block":n.block,"v-btn--disabled":_.value,"v-btn--elevated":tt.value,"v-btn--flat":n.flat,"v-btn--icon":!!n.icon,"v-btn--loading":n.loading,"v-btn--stacked":n.stacked},u.value,g.value,ht?v.value:void 0,C.value,A.value,B.value,D.value,E.value,Y.value,z.value,n.class],style:[ht?b.value:void 0,S.value,P.value,O.value,n.style],disabled:_.value||void 0,href:U.href.value,onClick:q,value:nt.value},{default:()=>{var xt;return[zr(!0,"v-btn"),!n.icon&&et&&t("span",{key:"prepend",class:"v-btn__prepend"},[h.prepend?t(fe,{key:"prepend-defaults",disabled:!n.prependIcon,defaults:{VIcon:{icon:n.prependIcon}}},h.prepend):t(be,{key:"prepend-icon",icon:n.prependIcon},null)]),t("span",{class:"v-btn__content","data-no-activator":""},[!h.default&&rt?t(be,{key:"content-icon",icon:n.icon},null):t(fe,{key:"content-defaults",disabled:!rt,defaults:{VIcon:{icon:n.icon}}},{default:()=>{var wt;return[((wt=h.default)==null?void 0:wt.call(h))??n.text]}})]),!n.icon&&st&&t("span",{key:"append",class:"v-btn__append"},[h.append?t(fe,{key:"append-defaults",disabled:!n.appendIcon,defaults:{VIcon:{icon:n.appendIcon}}},h.append):t(be,{key:"append-icon",icon:n.appendIcon},null)]),!!n.loading&&t("span",{key:"loader",class:"v-btn__loader"},[((xt=h.loader)==null?void 0:xt.call(h))??t(Dh,{color:typeof n.loading=="boolean"?void 0:n.loading,indeterminate:!0,size:"23",width:"2"},null)])]}}),[[mn("ripple"),!_.value&&n.ripple,null]])}),{}}}),ck=mt({...Rh({icon:"$menu",variant:"text"})},"VAppBarNavIcon"),uk=At()({name:"VAppBarNavIcon",props:ck(),setup(n,l){let{slots:r}=l;return Lt(()=>t(dn,o(n,{class:["v-app-bar-nav-icon"]}),r)),{}}}),pk=At()({name:"VAppBarTitle",props:Vu(),setup(n,l){let{slots:r}=l;return Lt(()=>t(Ah,o(n,{class:"v-app-bar-title"}),r)),{}}});const ap=Gn("v-alert-title"),gk=["success","info","warning","error"],wk=mt({border:{type:[Boolean,String],validator:n=>typeof n=="boolean"||["top","end","bottom","start"].includes(n)},borderColor:String,closable:Boolean,closeIcon:{type:te,default:"$close"},closeLabel:{type:String,default:"$vuetify.close"},icon:{type:[Boolean,String,Function,Object],default:null},modelValue:{type:Boolean,default:!0},prominent:Boolean,title:String,text:String,type:{type:String,validator:n=>gk.includes(n)},...Wt(),...Ee(),...Dn(),...Re(),...Wl(),...ho(),...Ie(),...le(),...ce(),...Tn({variant:"flat"})},"VAlert"),vk=At()({name:"VAlert",props:wk(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{emit:r,slots:h}=l;const u=ee(n,"modelValue"),g=X(()=>{if(n.icon!==!1)return n.type?n.icon??`$${n.type}`:n.icon}),v=X(()=>({color:n.color??n.type,variant:n.variant})),{themeClasses:b}=ge(n),{colorClasses:z,colorStyles:C,variantClasses:S}=Ir(v),{densityClasses:A}=sn(n),{dimensionStyles:B}=Fn(n),{elevationClasses:P}=Ze(n),{locationStyles:D}=Xl(n),{positionClasses:E}=co(n),{roundedClasses:Y}=Be(n),{textColorClasses:O,textColorStyles:H}=rn(Bt(n,"borderColor")),{t:U}=Ln(),W=X(()=>({"aria-label":U(n.closeLabel),onClick(_){u.value=!1,r("click:close",_)}}));return()=>{const _=!!(h.prepend||g.value),tt=!!(h.title||n.title),nt=!!(h.close||n.closable);return u.value&&t(n.tag,{class:["v-alert",n.border&&{"v-alert--border":!!n.border,[`v-alert--border-${n.border===!0?"start":n.border}`]:!0},{"v-alert--prominent":n.prominent},b.value,z.value,A.value,P.value,E.value,Y.value,S.value,n.class],style:[C.value,B.value,D.value,n.style],role:"alert"},{default:()=>{var q,G;return[zr(!1,"v-alert"),n.border&&t("div",{key:"border",class:["v-alert__border",O.value],style:H.value},null),_&&t("div",{key:"prepend",class:"v-alert__prepend"},[h.prepend?t(fe,{key:"prepend-defaults",disabled:!g.value,defaults:{VIcon:{density:n.density,icon:g.value,size:n.prominent?44:28}}},h.prepend):t(be,{key:"prepend-icon",density:n.density,icon:g.value,size:n.prominent?44:28},null)]),t("div",{class:"v-alert__content"},[tt&&t(ap,{key:"title"},{default:()=>{var et;return[((et=h.title)==null?void 0:et.call(h))??n.title]}}),((q=h.text)==null?void 0:q.call(h))??n.text,(G=h.default)==null?void 0:G.call(h)]),h.append&&t("div",{key:"append",class:"v-alert__append"},[h.append()]),nt&&t("div",{key:"close",class:"v-alert__close"},[h.close?t(fe,{key:"close-defaults",defaults:{VBtn:{icon:n.closeIcon,size:"x-small",variant:"text"}}},{default:()=>{var et;return[(et=h.close)==null?void 0:et.call(h,{props:W.value})]}}):t(dn,o({key:"close-btn",icon:n.closeIcon,size:"x-small",variant:"text"},W.value),null)])]}})}}});const fk=mt({text:String,clickable:Boolean,...Wt(),...ce()},"VLabel"),uo=At()({name:"VLabel",props:fk(),setup(n,l){let{slots:r}=l;return Lt(()=>{var h;return t("label",{class:["v-label",{"v-label--clickable":n.clickable},n.class],style:n.style},[n.text,(h=r.default)==null?void 0:h.call(r)])}),{}}});const ip=Symbol.for("vuetify:selection-control-group"),Eh=mt({color:String,disabled:{type:Boolean,default:null},defaultsTarget:String,error:Boolean,id:String,inline:Boolean,falseIcon:te,trueIcon:te,ripple:{type:Boolean,default:!0},multiple:{type:Boolean,default:null},name:String,readonly:Boolean,modelValue:null,type:String,valueComparator:{type:Function,default:kr},...Wt(),...Ee(),...ce()},"SelectionControlGroup"),mk=mt({...Eh({defaultsTarget:"VSelectionControl"})},"VSelectionControlGroup"),hp=At()({name:"VSelectionControlGroup",props:mk(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),u=on(),g=X(()=>n.id||`v-selection-control-group-${u}`),v=X(()=>n.name||g.value),b=new Set;return ye(ip,{modelValue:h,forceUpdate:()=>{b.forEach(z=>z())},onForceUpdate:z=>{b.add(z),ln(()=>{b.delete(z)})}}),Fe({[n.defaultsTarget]:{color:Bt(n,"color"),disabled:Bt(n,"disabled"),density:Bt(n,"density"),error:Bt(n,"error"),inline:Bt(n,"inline"),modelValue:h,multiple:X(()=>!!n.multiple||n.multiple==null&&Array.isArray(h.value)),name:v,falseIcon:Bt(n,"falseIcon"),trueIcon:Bt(n,"trueIcon"),readonly:Bt(n,"readonly"),ripple:Bt(n,"ripple"),type:Bt(n,"type"),valueComparator:Bt(n,"valueComparator")}}),Lt(()=>{var z;return t("div",{class:["v-selection-control-group",{"v-selection-control-group--inline":n.inline},n.class],style:n.style,role:n.type==="radio"?"radiogroup":void 0},[(z=r.default)==null?void 0:z.call(r)])}),{}}}),Ra=mt({label:String,trueValue:null,falseValue:null,value:null,...Wt(),...Eh()},"VSelectionControl");function kk(n){const l=he(ip,void 0),{densityClasses:r}=sn(n),h=ee(n,"modelValue"),u=X(()=>n.trueValue!==void 0?n.trueValue:n.value!==void 0?n.value:!0),g=X(()=>n.falseValue!==void 0?n.falseValue:!1),v=X(()=>!!n.multiple||n.multiple==null&&Array.isArray(h.value)),b=X({get(){const A=l?l.modelValue.value:h.value;return v.value?A.some(B=>n.valueComparator(B,u.value)):n.valueComparator(A,u.value)},set(A){if(n.readonly)return;const B=A?u.value:g.value;let P=B;v.value&&(P=A?[...Bn(h.value),B]:Bn(h.value).filter(D=>!n.valueComparator(D,u.value))),l?l.modelValue.value=P:h.value=P}}),{textColorClasses:z,textColorStyles:C}=rn(X(()=>b.value&&!n.error&&!n.disabled?n.color:void 0)),S=X(()=>b.value?n.trueIcon:n.falseIcon);return{group:l,densityClasses:r,trueValue:u,falseValue:g,model:b,textColorClasses:z,textColorStyles:C,icon:S}}const wr=At()({name:"VSelectionControl",directives:{Ripple:ql},inheritAttrs:!1,props:Ra(),emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const{group:u,densityClasses:g,icon:v,model:b,textColorClasses:z,textColorStyles:C,trueValue:S}=kk(n),A=on(),B=X(()=>n.id||`input-${A}`),P=_t(!1),D=_t(!1),E=Pt();u==null||u.onForceUpdate(()=>{E.value&&(E.value.checked=b.value)});function Y(U){P.value=!0,Ur(U.target,":focus-visible")!==!1&&(D.value=!0)}function O(){P.value=!1,D.value=!1}function H(U){n.readonly&&u&&pe(()=>u.forceUpdate()),b.value=U.target.checked}return Lt(()=>{var nt,q;const U=h.label?h.label({label:n.label,props:{for:B.value}}):n.label,[W,_]=br(r),tt=t("input",o({ref:E,checked:b.value,disabled:!!(n.readonly||n.disabled),id:B.value,onBlur:O,onFocus:Y,onInput:H,"aria-disabled":!!(n.readonly||n.disabled),type:n.type,value:S.value,name:n.name,"aria-checked":n.type==="checkbox"?b.value:void 0},_),null);return t("div",o({class:["v-selection-control",{"v-selection-control--dirty":b.value,"v-selection-control--disabled":n.disabled,"v-selection-control--error":n.error,"v-selection-control--focused":P.value,"v-selection-control--focus-visible":D.value,"v-selection-control--inline":n.inline},g.value,n.class]},W,{style:n.style}),[t("div",{class:["v-selection-control__wrapper",z.value],style:C.value},[(nt=h.default)==null?void 0:nt.call(h),Ce(t("div",{class:["v-selection-control__input"]},[((q=h.input)==null?void 0:q.call(h,{model:b,textColorClasses:z,textColorStyles:C,inputNode:tt,icon:v.value,props:{onFocus:Y,onBlur:O,id:B.value}}))??t(Zt,null,[v.value&&t(be,{key:"icon",icon:v.value},null),tt])]),[[mn("ripple"),n.ripple&&[!n.disabled&&!n.readonly,null,["center","circle"]]]])]),U&&t(uo,{for:B.value,clickable:!0,onClick:G=>G.stopPropagation()},{default:()=>[U]})])}),{isFocused:P,input:E}}}),dp=mt({indeterminate:Boolean,indeterminateIcon:{type:te,default:"$checkboxIndeterminate"},...Ra({falseIcon:"$checkboxOff",trueIcon:"$checkboxOn"})},"VCheckboxBtn"),Qr=At()({name:"VCheckboxBtn",props:dp(),emits:{"update:modelValue":n=>!0,"update:indeterminate":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"indeterminate"),u=ee(n,"modelValue");function g(z){h.value&&(h.value=!1)}const v=X(()=>h.value?n.indeterminateIcon:n.falseIcon),b=X(()=>h.value?n.indeterminateIcon:n.trueIcon);return Lt(()=>{const z=jn(wr.filterProps(n)[0],["modelValue"]);return t(wr,o(z,{modelValue:u.value,"onUpdate:modelValue":[C=>u.value=C,g],class:["v-checkbox-btn",n.class],style:n.style,type:"checkbox",falseIcon:v.value,trueIcon:b.value,"aria-checked":h.value?"mixed":void 0}),r)}),{}}});function cp(n){const{t:l}=Ln();function r(h){let{name:u}=h;const g={prepend:"prependAction",prependInner:"prependAction",append:"appendAction",appendInner:"appendAction",clear:"clear"}[u],v=n[`onClick:${u}`],b=v&&g?l(`$vuetify.input.${g}`,n.label??""):void 0;return t(be,{icon:n[`${u}Icon`],"aria-label":b,onClick:v},null)}return{InputIcon:r}}const bk=mt({active:Boolean,color:String,messages:{type:[Array,String],default:()=>[]},...Wt(),...bl({transition:{component:Hh,leaveAbsolute:!0,group:!0}})},"VMessages"),up=At()({name:"VMessages",props:bk(),setup(n,l){let{slots:r}=l;const h=X(()=>Bn(n.messages)),{textColorClasses:u,textColorStyles:g}=rn(X(()=>n.color));return Lt(()=>t(Wn,{transition:n.transition,tag:"div",class:["v-messages",u.value,n.class],style:[g.value,n.style],role:"alert","aria-live":"polite"},{default:()=>[n.active&&h.value.map((v,b)=>t("div",{class:"v-messages__message",key:`${b}-${h.value}`},[r.message?r.message({message:v}):v]))]})),{}}}),Ea=mt({focused:Boolean,"onUpdate:focused":tl()},"focus");function Yl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();const r=ee(n,"focused"),h=X(()=>({[`${l}--focused`]:r.value}));function u(){r.value=!0}function g(){r.value=!1}return{focusClasses:h,isFocused:r,focus:u,blur:g}}const pp=Symbol.for("vuetify:form"),Mk=mt({disabled:Boolean,fastFail:Boolean,readonly:Boolean,modelValue:{type:Boolean,default:null},validateOn:{type:String,default:"input"}},"form");function xk(n){const l=ee(n,"modelValue"),r=X(()=>n.disabled),h=X(()=>n.readonly),u=_t(!1),g=Pt([]),v=Pt([]);async function b(){const S=[];let A=!0;v.value=[],u.value=!0;for(const B of g.value){const P=await B.validate();if(P.length>0&&(A=!1,S.push({id:B.id,errorMessages:P})),!A&&n.fastFail)break}return v.value=S,u.value=!1,{valid:A,errors:v.value}}function z(){g.value.forEach(S=>S.reset())}function C(){g.value.forEach(S=>S.resetValidation())}return Vt(g,()=>{let S=0,A=0;const B=[];for(const P of g.value)P.isValid===!1?(A++,B.push({id:P.id,errorMessages:P.errorMessages})):P.isValid===!0&&S++;v.value=B,l.value=A>0?!1:S===g.value.length?!0:null},{deep:!0}),ye(pp,{register:S=>{let{id:A,validate:B,reset:P,resetValidation:D}=S;g.value.some(E=>E.id===A),g.value.push({id:A,validate:B,reset:P,resetValidation:D,isValid:null,errorMessages:[]})},unregister:S=>{g.value=g.value.filter(A=>A.id!==S)},update:(S,A,B)=>{const P=g.value.find(D=>D.id===S);P&&(P.isValid=A,P.errorMessages=B)},isDisabled:r,isReadonly:h,isValidating:u,isValid:l,items:g,validateOn:Bt(n,"validateOn")}),{errors:v,isDisabled:r,isReadonly:h,isValidating:u,isValid:l,items:g,validate:b,reset:z,resetValidation:C}}function Va(){return he(pp,null)}const gp=mt({disabled:{type:Boolean,default:null},error:Boolean,errorMessages:{type:[Array,String],default:()=>[]},maxErrors:{type:[Number,String],default:1},name:String,label:String,readonly:{type:Boolean,default:null},rules:{type:Array,default:()=>[]},modelValue:null,validateOn:String,validationValue:null,...Ea()},"validation");function wp(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl(),r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:on();const h=ee(n,"modelValue"),u=X(()=>n.validationValue===void 0?h.value:n.validationValue),g=Va(),v=Pt([]),b=_t(!0),z=X(()=>!!(Bn(h.value===""?null:h.value).length||Bn(u.value===""?null:u.value).length)),C=X(()=>!!(n.disabled??(g==null?void 0:g.isDisabled.value))),S=X(()=>!!(n.readonly??(g==null?void 0:g.isReadonly.value))),A=X(()=>n.errorMessages.length?Bn(n.errorMessages).slice(0,Math.max(0,+n.maxErrors)):v.value),B=X(()=>{let W=(n.validateOn??(g==null?void 0:g.validateOn.value))||"input";W==="lazy"&&(W="input lazy");const _=new Set((W==null?void 0:W.split(" "))??[]);return{blur:_.has("blur")||_.has("input"),input:_.has("input"),submit:_.has("submit"),lazy:_.has("lazy")}}),P=X(()=>n.error||n.errorMessages.length?!1:n.rules.length?b.value?v.value.length||B.value.lazy?null:!0:!v.value.length:!0),D=_t(!1),E=X(()=>({[`${l}--error`]:P.value===!1,[`${l}--dirty`]:z.value,[`${l}--disabled`]:C.value,[`${l}--readonly`]:S.value})),Y=X(()=>n.name??He(r));hs(()=>{g==null||g.register({id:Y.value,validate:U,reset:O,resetValidation:H})}),Ue(()=>{g==null||g.unregister(Y.value)}),Te(async()=>{B.value.lazy||await U(!0),g==null||g.update(Y.value,P.value,A.value)}),Vl(()=>B.value.input,()=>{Vt(u,()=>{if(u.value!=null)U();else if(n.focused){const W=Vt(()=>n.focused,_=>{_||U(),W()})}})}),Vl(()=>B.value.blur,()=>{Vt(()=>n.focused,W=>{W||U()})}),Vt(P,()=>{g==null||g.update(Y.value,P.value,A.value)});function O(){h.value=null,pe(H)}function H(){b.value=!0,B.value.lazy?v.value=[]:U(!0)}async function U(){let W=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;const _=[];D.value=!0;for(const tt of n.rules){if(_.length>=+(n.maxErrors??1))break;const q=await(typeof tt=="function"?tt:()=>tt)(u.value);if(q!==!0){if(q!==!1&&typeof q!="string"){console.warn(`${q} is not a valid value. Rule functions must return boolean true or a string.`);continue}_.push(q||"")}}return v.value=_,D.value=!1,b.value=W,v.value}return{errorMessages:A,isDirty:z,isDisabled:C,isReadonly:S,isPristine:b,isValid:P,isValidating:D,reset:O,resetValidation:H,validate:U,validationClasses:E}}const xl=mt({id:String,appendIcon:te,centerAffix:{type:Boolean,default:!0},prependIcon:te,hideDetails:[Boolean,String],hint:String,persistentHint:Boolean,messages:{type:[Array,String],default:()=>[]},direction:{type:String,default:"horizontal",validator:n=>["horizontal","vertical"].includes(n)},"onClick:prepend":tl(),"onClick:append":tl(),...Wt(),...Ee(),...gp()},"VInput"),Ge=At()({name:"VInput",props:{...xl()},emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h,emit:u}=l;const{densityClasses:g}=sn(n),{rtlClasses:v}=Xe(),{InputIcon:b}=cp(n),z=on(),C=X(()=>n.id||`input-${z}`),S=X(()=>`${C.value}-messages`),{errorMessages:A,isDirty:B,isDisabled:P,isReadonly:D,isPristine:E,isValid:Y,isValidating:O,reset:H,resetValidation:U,validate:W,validationClasses:_}=wp(n,"v-input",C),tt=X(()=>({id:C,messagesId:S,isDirty:B,isDisabled:P,isReadonly:D,isPristine:E,isValid:Y,isValidating:O,reset:H,resetValidation:U,validate:W})),nt=X(()=>{var q;return(q=n.errorMessages)!=null&&q.length||!E.value&&A.value.length?A.value:n.hint&&(n.persistentHint||n.focused)?n.hint:n.messages});return Lt(()=>{var rt,ht,dt,Ct;const q=!!(h.prepend||n.prependIcon),G=!!(h.append||n.appendIcon),et=nt.value.length>0,st=!n.hideDetails||n.hideDetails==="auto"&&(et||!!h.details);return t("div",{class:["v-input",`v-input--${n.direction}`,{"v-input--center-affix":n.centerAffix},g.value,v.value,_.value,n.class],style:n.style},[q&&t("div",{key:"prepend",class:"v-input__prepend"},[(rt=h.prepend)==null?void 0:rt.call(h,tt.value),n.prependIcon&&t(b,{key:"prepend-icon",name:"prepend"},null)]),h.default&&t("div",{class:"v-input__control"},[(ht=h.default)==null?void 0:ht.call(h,tt.value)]),G&&t("div",{key:"append",class:"v-input__append"},[n.appendIcon&&t(b,{key:"append-icon",name:"append"},null),(dt=h.append)==null?void 0:dt.call(h,tt.value)]),st&&t("div",{class:"v-input__details"},[t(up,{id:S.value,active:et,messages:nt.value},{message:h.message}),(Ct=h.details)==null?void 0:Ct.call(h,tt.value)])])}),{reset:H,resetValidation:U,validate:W}}}),zk=mt({...xl(),...jn(dp(),["inline"])},"VCheckbox"),Ik=At()({name:"VCheckbox",inheritAttrs:!1,props:zk(),emits:{"update:modelValue":n=>!0,"update:focused":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const u=ee(n,"modelValue"),{isFocused:g,focus:v,blur:b}=Yl(n),z=on(),C=X(()=>n.id||`checkbox-${z}`);return Lt(()=>{const[S,A]=br(r),[B,P]=Ge.filterProps(n),[D,E]=Qr.filterProps(n);return t(Ge,o({class:["v-checkbox",n.class]},S,B,{modelValue:u.value,"onUpdate:modelValue":Y=>u.value=Y,id:C.value,focused:g.value,style:n.style}),{...h,default:Y=>{let{id:O,messagesId:H,isDisabled:U,isReadonly:W}=Y;return t(Qr,o(D,{id:O.value,"aria-describedby":H.value,disabled:U.value,readonly:W.value},A,{modelValue:u.value,"onUpdate:modelValue":_=>u.value=_,onFocus:v,onBlur:b}),h)}})}),{}}});const yk=mt({start:Boolean,end:Boolean,icon:te,image:String,...Wt(),...Ee(),...Ie(),...Ml(),...le(),...ce(),...Tn({variant:"flat"})},"VAvatar"),_l=At()({name:"VAvatar",props:yk(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{colorClasses:u,colorStyles:g,variantClasses:v}=Ir(n),{densityClasses:b}=sn(n),{roundedClasses:z}=Be(n),{sizeClasses:C,sizeStyles:S}=io(n);return Lt(()=>t(n.tag,{class:["v-avatar",{"v-avatar--start":n.start,"v-avatar--end":n.end},h.value,u.value,b.value,z.value,C.value,v.value,n.class],style:[g.value,S.value,n.style]},{default:()=>{var A;return[n.image?t(gr,{key:"image",src:n.image,alt:"",cover:!0},null):n.icon?t(be,{key:"icon",icon:n.icon},null):(A=r.default)==null?void 0:A.call(r),zr(!1,"v-avatar")]}})),{}}});const vp=Symbol.for("vuetify:v-chip-group"),Ck=mt({column:Boolean,filter:Boolean,valueComparator:{type:Function,default:kr},...Wt(),...oo({selectedClass:"v-chip--selected"}),...le(),...ce(),...Tn({variant:"tonal"})},"VChipGroup"),Sk=At()({name:"VChipGroup",props:Ck(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{isSelected:u,select:g,next:v,prev:b,selected:z}=yr(n,vp);return Fe({VChip:{color:Bt(n,"color"),disabled:Bt(n,"disabled"),filter:Bt(n,"filter"),variant:Bt(n,"variant")}}),Lt(()=>t(n.tag,{class:["v-chip-group",{"v-chip-group--column":n.column},h.value,n.class],style:n.style},{default:()=>{var C;return[(C=r.default)==null?void 0:C.call(r,{isSelected:u,select:g,next:v,prev:b,selected:z.value})]}})),{}}}),$k=mt({activeClass:String,appendAvatar:String,appendIcon:te,closable:Boolean,closeIcon:{type:te,default:"$delete"},closeLabel:{type:String,default:"$vuetify.close"},draggable:Boolean,filter:Boolean,filterIcon:{type:String,default:"$complete"},label:Boolean,link:{type:Boolean,default:void 0},pill:Boolean,prependAvatar:String,prependIcon:te,ripple:{type:[Boolean,Object],default:!0},text:String,modelValue:{type:Boolean,default:!0},onClick:tl(),onClickOnce:tl(),...Cn(),...Wt(),...Ee(),...Re(),...so(),...Ie(),...gs(),...Ml(),...le({tag:"span"}),...ce(),...Tn({variant:"tonal"})},"VChip"),ws=At()({name:"VChip",directives:{Ripple:ql},props:$k(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0,"group:selected":n=>!0,click:n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{t:g}=Ln(),{borderClasses:v}=On(n),{colorClasses:b,colorStyles:z,variantClasses:C}=Ir(n),{densityClasses:S}=sn(n),{elevationClasses:A}=Ze(n),{roundedClasses:B}=Be(n),{sizeClasses:P}=io(n),{themeClasses:D}=ge(n),E=ee(n,"modelValue"),Y=ao(n,vp,!1),O=ps(n,r),H=X(()=>n.link!==!1&&O.isLink.value),U=X(()=>!n.disabled&&n.link!==!1&&(!!Y||n.link||O.isClickable.value)),W=X(()=>({"aria-label":g(n.closeLabel),onClick(nt){nt.stopPropagation(),E.value=!1,h("click:close",nt)}}));function _(nt){var q;h("click",nt),U.value&&((q=O.navigate)==null||q.call(O,nt),Y==null||Y.toggle())}function tt(nt){(nt.key==="Enter"||nt.key===" ")&&(nt.preventDefault(),_(nt))}return()=>{const nt=O.isLink.value?"a":n.tag,q=!!(n.appendIcon||n.appendAvatar),G=!!(q||u.append),et=!!(u.close||n.closable),st=!!(u.filter||n.filter)&&Y,rt=!!(n.prependIcon||n.prependAvatar),ht=!!(rt||u.prepend),dt=!Y||Y.isSelected.value;return E.value&&Ce(t(nt,{class:["v-chip",{"v-chip--disabled":n.disabled,"v-chip--label":n.label,"v-chip--link":U.value,"v-chip--filter":st,"v-chip--pill":n.pill},D.value,v.value,dt?b.value:void 0,S.value,A.value,B.value,P.value,C.value,Y==null?void 0:Y.selectedClass.value,n.class],style:[dt?z.value:void 0,n.style],disabled:n.disabled||void 0,draggable:n.draggable,href:O.href.value,tabindex:U.value?0:void 0,onClick:_,onKeydown:U.value&&!H.value&&tt},{default:()=>{var Ct;return[zr(U.value,"v-chip"),st&&t(Nh,{key:"filter"},{default:()=>[Ce(t("div",{class:"v-chip__filter"},[u.filter?t(fe,{key:"filter-defaults",disabled:!n.filterIcon,defaults:{VIcon:{icon:n.filterIcon}}},u.filter):t(be,{key:"filter-icon",icon:n.filterIcon},null)]),[[Nn,Y.isSelected.value]])]}),ht&&t("div",{key:"prepend",class:"v-chip__prepend"},[u.prepend?t(fe,{key:"prepend-defaults",disabled:!rt,defaults:{VAvatar:{image:n.prependAvatar,start:!0},VIcon:{icon:n.prependIcon,start:!0}}},u.prepend):t(Zt,null,[n.prependIcon&&t(be,{key:"prepend-icon",icon:n.prependIcon,start:!0},null),n.prependAvatar&&t(_l,{key:"prepend-avatar",image:n.prependAvatar,start:!0},null)])]),t("div",{class:"v-chip__content"},[((Ct=u.default)==null?void 0:Ct.call(u,{isSelected:Y==null?void 0:Y.isSelected.value,selectedClass:Y==null?void 0:Y.selectedClass.value,select:Y==null?void 0:Y.select,toggle:Y==null?void 0:Y.toggle,value:Y==null?void 0:Y.value.value,disabled:n.disabled}))??n.text]),G&&t("div",{key:"append",class:"v-chip__append"},[u.append?t(fe,{key:"append-defaults",disabled:!q,defaults:{VAvatar:{end:!0,image:n.appendAvatar},VIcon:{end:!0,icon:n.appendIcon}}},u.append):t(Zt,null,[n.appendIcon&&t(be,{key:"append-icon",end:!0,icon:n.appendIcon},null),n.appendAvatar&&t(_l,{key:"append-avatar",end:!0,image:n.appendAvatar},null)])]),et&&t("div",o({key:"close",class:"v-chip__close"},W.value),[u.close?t(fe,{key:"close-defaults",defaults:{VIcon:{icon:n.closeIcon,size:"x-small"}}},u.close):t(be,{key:"close-icon",icon:n.closeIcon,size:"x-small"},null)])]}}),[[mn("ripple"),U.value&&n.ripple,null]])}}});const f0=Symbol.for("vuetify:list");function fp(){const n=he(f0,{hasPrepend:_t(!1),updateHasPrepend:()=>null}),l={hasPrepend:_t(!1),updateHasPrepend:r=>{r&&(l.hasPrepend.value=r)}};return ye(f0,l),n}function mp(){return he(f0,null)}const Ak={open:n=>{let{id:l,value:r,opened:h,parents:u}=n;if(r){const g=new Set;g.add(l);let v=u.get(l);for(;v!=null;)g.add(v),v=u.get(v);return g}else return h.delete(l),h},select:()=>null},kp={open:n=>{let{id:l,value:r,opened:h,parents:u}=n;if(r){let g=u.get(l);for(h.add(l);g!=null&&g!==l;)h.add(g),g=u.get(g);return h}else h.delete(l);return h},select:()=>null},Bk={open:kp.open,select:n=>{let{id:l,value:r,opened:h,parents:u}=n;if(!r)return h;const g=[];let v=u.get(l);for(;v!=null;)g.push(v),v=u.get(v);return new Set(g)}},Vh=n=>{const l={select:r=>{let{id:h,value:u,selected:g}=r;if(h=ne(h),n&&!u){const v=Array.from(g.entries()).reduce((b,z)=>{let[C,S]=z;return S==="on"?[...b,C]:b},[]);if(v.length===1&&v[0]===h)return g}return g.set(h,u?"on":"off"),g},in:(r,h,u)=>{let g=new Map;for(const v of r||[])g=l.select({id:v,value:!0,selected:new Map(g),children:h,parents:u});return g},out:r=>{const h=[];for(const[u,g]of r.entries())g==="on"&&h.push(u);return h}};return l},bp=n=>{const l=Vh(n);return{select:h=>{let{selected:u,id:g,...v}=h;g=ne(g);const b=u.has(g)?new Map([[g,u.get(g)]]):new Map;return l.select({...v,id:g,selected:b})},in:(h,u,g)=>{let v=new Map;return h!=null&&h.length&&(v=l.in(h.slice(0,1),u,g)),v},out:(h,u,g)=>l.out(h,u,g)}},Hk=n=>{const l=Vh(n);return{select:h=>{let{id:u,selected:g,children:v,...b}=h;return u=ne(u),v.has(u)?g:l.select({id:u,selected:g,children:v,...b})},in:l.in,out:l.out}},Nk=n=>{const l=bp(n);return{select:h=>{let{id:u,selected:g,children:v,...b}=h;return u=ne(u),v.has(u)?g:l.select({id:u,selected:g,children:v,...b})},in:l.in,out:l.out}},jk=n=>{const l={select:r=>{let{id:h,value:u,selected:g,children:v,parents:b}=r;h=ne(h);const z=new Map(g),C=[h];for(;C.length;){const A=C.shift();g.set(A,u?"on":"off"),v.has(A)&&C.push(...v.get(A))}let S=b.get(h);for(;S;){const A=v.get(S),B=A.every(D=>g.get(D)==="on"),P=A.every(D=>!g.has(D)||g.get(D)==="off");g.set(S,B?"on":P?"off":"indeterminate"),S=b.get(S)}return n&&!u&&Array.from(g.entries()).reduce((B,P)=>{let[D,E]=P;return E==="on"?[...B,D]:B},[]).length===0?z:g},in:(r,h,u)=>{let g=new Map;for(const v of r||[])g=l.select({id:v,value:!0,selected:new Map(g),children:h,parents:u});return g},out:(r,h)=>{const u=[];for(const[g,v]of r.entries())v==="on"&&!h.has(g)&&u.push(g);return u}};return l},Jo=Symbol.for("vuetify:nested"),Mp={id:_t(),root:{register:()=>null,unregister:()=>null,parents:Pt(new Map),children:Pt(new Map),open:()=>null,openOnSelect:()=>null,select:()=>null,opened:Pt(new Set),selected:Pt(new Map),selectedValues:Pt([])}},Pk=mt({selectStrategy:[String,Function],openStrategy:[String,Object],opened:Array,selected:Array,mandatory:Boolean},"nested"),Lk=n=>{let l=!1;const r=Pt(new Map),h=Pt(new Map),u=ee(n,"opened",n.opened,A=>new Set(A),A=>[...A.values()]),g=X(()=>{if(typeof n.selectStrategy=="object")return n.selectStrategy;switch(n.selectStrategy){case"single-leaf":return Nk(n.mandatory);case"leaf":return Hk(n.mandatory);case"independent":return Vh(n.mandatory);case"single-independent":return bp(n.mandatory);case"classic":default:return jk(n.mandatory)}}),v=X(()=>{if(typeof n.openStrategy=="object")return n.openStrategy;switch(n.openStrategy){case"list":return Bk;case"single":return Ak;case"multiple":default:return kp}}),b=ee(n,"selected",n.selected,A=>g.value.in(A,r.value,h.value),A=>g.value.out(A,r.value,h.value));Ue(()=>{l=!0});function z(A){const B=[];let P=A;for(;P!=null;)B.unshift(P),P=h.value.get(P);return B}const C=We("nested"),S={id:_t(),root:{opened:u,selected:b,selectedValues:X(()=>{const A=[];for(const[B,P]of b.value.entries())P==="on"&&A.push(B);return A}),register:(A,B,P)=>{B&&A!==B&&h.value.set(A,B),P&&r.value.set(A,[]),B!=null&&r.value.set(B,[...r.value.get(B)||[],A])},unregister:A=>{if(l)return;r.value.delete(A);const B=h.value.get(A);if(B){const P=r.value.get(B)??[];r.value.set(B,P.filter(D=>D!==A))}h.value.delete(A),u.value.delete(A)},open:(A,B,P)=>{C.emit("click:open",{id:A,value:B,path:z(A),event:P});const D=v.value.open({id:A,value:B,opened:new Set(u.value),children:r.value,parents:h.value,event:P});D&&(u.value=D)},openOnSelect:(A,B,P)=>{const D=v.value.select({id:A,value:B,selected:new Map(b.value),opened:new Set(u.value),children:r.value,parents:h.value,event:P});D&&(u.value=D)},select:(A,B,P)=>{C.emit("click:select",{id:A,value:B,path:z(A),event:P});const D=g.value.select({id:A,value:B,selected:new Map(b.value),children:r.value,parents:h.value,event:P});D&&(b.value=D),S.root.openOnSelect(A,B,P)},children:r,parents:h}};return ye(Jo,S),S.root},xp=(n,l)=>{const r=he(Jo,Mp),h=Symbol(on()),u=X(()=>n.value!==void 0?n.value:h),g={...r,id:u,open:(v,b)=>r.root.open(u.value,v,b),openOnSelect:(v,b)=>r.root.openOnSelect(u.value,v,b),isOpen:X(()=>r.root.opened.value.has(u.value)),parent:X(()=>r.root.parents.value.get(u.value)),select:(v,b)=>r.root.select(u.value,v,b),isSelected:X(()=>r.root.selected.value.get(ne(u.value))==="on"),isIndeterminate:X(()=>r.root.selected.value.get(u.value)==="indeterminate"),isLeaf:X(()=>!r.root.children.value.get(u.value)),isGroupActivator:r.isGroupActivator};return!r.isGroupActivator&&r.root.register(u.value,r.id.value,l),Ue(()=>{!r.isGroupActivator&&r.root.unregister(u.value)}),l&&ye(Jo,g),g},Dk=()=>{const n=he(Jo,Mp);ye(Jo,{...n,isGroupActivator:!0})},Fk=Pn({name:"VListGroupActivator",setup(n,l){let{slots:r}=l;return Dk(),()=>{var h;return(h=r.default)==null?void 0:h.call(r)}}}),Ok=mt({activeColor:String,baseColor:String,color:String,collapseIcon:{type:te,default:"$collapse"},expandIcon:{type:te,default:"$expand"},prependIcon:te,appendIcon:te,fluid:Boolean,subgroup:Boolean,title:String,value:null,...Wt(),...le()},"VListGroup"),m0=At()({name:"VListGroup",props:Ok(),setup(n,l){let{slots:r}=l;const{isOpen:h,open:u,id:g}=xp(Bt(n,"value"),!0),v=X(()=>`v-list-group--id-${String(g.value)}`),b=mp(),{isBooted:z}=xr();function C(P){u(!h.value,P)}const S=X(()=>({onClick:C,class:"v-list-group__header",id:v.value})),A=X(()=>h.value?n.collapseIcon:n.expandIcon),B=X(()=>({VListItem:{active:h.value,activeColor:n.activeColor,baseColor:n.baseColor,color:n.color,prependIcon:n.prependIcon||n.subgroup&&A.value,appendIcon:n.appendIcon||!n.subgroup&&A.value,title:n.title,value:n.value}}));return Lt(()=>t(n.tag,{class:["v-list-group",{"v-list-group--prepend":b==null?void 0:b.hasPrepend.value,"v-list-group--fluid":n.fluid,"v-list-group--subgroup":n.subgroup,"v-list-group--open":h.value},n.class],style:n.style},{default:()=>[r.activator&&t(fe,{defaults:B.value},{default:()=>[t(Fk,null,{default:()=>[r.activator({props:S.value,isOpen:h.value})]})]}),t(Wn,{transition:{component:Fa},disabled:!z.value},{default:()=>{var P;return[Ce(t("div",{class:"v-list-group__items",role:"group","aria-labelledby":v.value},[(P=r.default)==null?void 0:P.call(r)]),[[Nn,h.value]])]}})]})),{}}});const zp=Gn("v-list-item-subtitle"),Ip=Gn("v-list-item-title"),Tk=mt({active:{type:Boolean,default:void 0},activeClass:String,activeColor:String,appendAvatar:String,appendIcon:te,baseColor:String,disabled:Boolean,lines:String,link:{type:Boolean,default:void 0},nav:Boolean,prependAvatar:String,prependIcon:te,ripple:{type:[Boolean,Object],default:!0},subtitle:[String,Number,Boolean],title:[String,Number,Boolean],value:null,onClick:tl(),onClickOnce:tl(),...Cn(),...Wt(),...Ee(),...Dn(),...Re(),...Ie(),...gs(),...le(),...ce(),...Tn({variant:"text"})},"VListItem"),gl=At()({name:"VListItem",directives:{Ripple:ql},props:Tk(),emits:{click:n=>!0},setup(n,l){let{attrs:r,slots:h,emit:u}=l;const g=ps(n,r),v=X(()=>n.value===void 0?g.href.value:n.value),{select:b,isSelected:z,isIndeterminate:C,isGroupActivator:S,root:A,parent:B,openOnSelect:P}=xp(v,!1),D=mp(),E=X(()=>{var gt;return n.active!==!1&&(n.active||((gt=g.isActive)==null?void 0:gt.value)||z.value)}),Y=X(()=>n.link!==!1&&g.isLink.value),O=X(()=>!n.disabled&&n.link!==!1&&(n.link||g.isClickable.value||n.value!=null&&!!D)),H=X(()=>n.rounded||n.nav),U=X(()=>n.color??n.activeColor),W=X(()=>({color:E.value?U.value??n.baseColor:n.baseColor,variant:n.variant}));Vt(()=>{var gt;return(gt=g.isActive)==null?void 0:gt.value},gt=>{gt&&B.value!=null&&A.open(B.value,!0),gt&&P(gt)},{immediate:!0});const{themeClasses:_}=ge(n),{borderClasses:tt}=On(n),{colorClasses:nt,colorStyles:q,variantClasses:G}=Ir(W),{densityClasses:et}=sn(n),{dimensionStyles:st}=Fn(n),{elevationClasses:rt}=Ze(n),{roundedClasses:ht}=Be(H),dt=X(()=>n.lines?`v-list-item--${n.lines}-line`:void 0),Ct=X(()=>({isActive:E.value,select:b,isSelected:z.value,isIndeterminate:C.value}));function xt(gt){var It;u("click",gt),!(S||!O.value)&&((It=g.navigate)==null||It.call(g,gt),n.value!=null&&b(!z.value,gt))}function wt(gt){(gt.key==="Enter"||gt.key===" ")&&(gt.preventDefault(),xt(gt))}return Lt(()=>{const gt=Y.value?"a":n.tag,It=h.title||n.title,$t=h.subtitle||n.subtitle,Tt=!!(n.appendAvatar||n.appendIcon),Ft=!!(Tt||h.append),Kt=!!(n.prependAvatar||n.prependIcon),Qt=!!(Kt||h.prepend);return D==null||D.updateHasPrepend(Qt),n.activeColor&&v5("active-color",["color","base-color"]),Ce(t(gt,{class:["v-list-item",{"v-list-item--active":E.value,"v-list-item--disabled":n.disabled,"v-list-item--link":O.value,"v-list-item--nav":n.nav,"v-list-item--prepend":!Qt&&(D==null?void 0:D.hasPrepend.value),[`${n.activeClass}`]:n.activeClass&&E.value},_.value,tt.value,nt.value,et.value,rt.value,dt.value,ht.value,G.value,n.class],style:[q.value,st.value,n.style],href:g.href.value,tabindex:O.value?D?-2:0:void 0,onClick:xt,onKeydown:O.value&&!Y.value&&wt},{default:()=>{var Rt;return[zr(O.value||E.value,"v-list-item"),Qt&&t("div",{key:"prepend",class:"v-list-item__prepend"},[h.prepend?t(fe,{key:"prepend-defaults",disabled:!Kt,defaults:{VAvatar:{density:n.density,image:n.prependAvatar},VIcon:{density:n.density,icon:n.prependIcon},VListItemAction:{start:!0}}},{default:()=>{var ut;return[(ut=h.prepend)==null?void 0:ut.call(h,Ct.value)]}}):t(Zt,null,[n.prependAvatar&&t(_l,{key:"prepend-avatar",density:n.density,image:n.prependAvatar},null),n.prependIcon&&t(be,{key:"prepend-icon",density:n.density,icon:n.prependIcon},null)]),t("div",{class:"v-list-item__spacer"},null)]),t("div",{class:"v-list-item__content","data-no-activator":""},[It&&t(Ip,{key:"title"},{default:()=>{var ut;return[((ut=h.title)==null?void 0:ut.call(h,{title:n.title}))??n.title]}}),$t&&t(zp,{key:"subtitle"},{default:()=>{var ut;return[((ut=h.subtitle)==null?void 0:ut.call(h,{subtitle:n.subtitle}))??n.subtitle]}}),(Rt=h.default)==null?void 0:Rt.call(h,Ct.value)]),Ft&&t("div",{key:"append",class:"v-list-item__append"},[h.append?t(fe,{key:"append-defaults",disabled:!Tt,defaults:{VAvatar:{density:n.density,image:n.appendAvatar},VIcon:{density:n.density,icon:n.appendIcon},VListItemAction:{end:!0}}},{default:()=>{var ut;return[(ut=h.append)==null?void 0:ut.call(h,Ct.value)]}}):t(Zt,null,[n.appendIcon&&t(be,{key:"append-icon",density:n.density,icon:n.appendIcon},null),n.appendAvatar&&t(_l,{key:"append-avatar",density:n.density,image:n.appendAvatar},null)]),t("div",{class:"v-list-item__spacer"},null)])]}}),[[mn("ripple"),O.value&&n.ripple]])}),{}}}),Rk=mt({color:String,inset:Boolean,sticky:Boolean,title:String,...Wt(),...le()},"VListSubheader"),yp=At()({name:"VListSubheader",props:Rk(),setup(n,l){let{slots:r}=l;const{textColorClasses:h,textColorStyles:u}=rn(Bt(n,"color"));return Lt(()=>{const g=!!(r.default||n.title);return t(n.tag,{class:["v-list-subheader",{"v-list-subheader--inset":n.inset,"v-list-subheader--sticky":n.sticky},h.value,n.class],style:[{textColorStyles:u},n.style]},{default:()=>{var v;return[g&&t("div",{class:"v-list-subheader__text"},[((v=r.default)==null?void 0:v.call(r))??n.title])]}})}),{}}});const Ek=mt({color:String,inset:Boolean,length:[Number,String],thickness:[Number,String],vertical:Boolean,...Wt(),...ce()},"VDivider"),Cp=At()({name:"VDivider",props:Ek(),setup(n,l){let{attrs:r}=l;const{themeClasses:h}=ge(n),{textColorClasses:u,textColorStyles:g}=rn(Bt(n,"color")),v=X(()=>{const b={};return n.length&&(b[n.vertical?"maxHeight":"maxWidth"]=Xt(n.length)),n.thickness&&(b[n.vertical?"borderRightWidth":"borderTopWidth"]=Xt(n.thickness)),b});return Lt(()=>t("hr",{class:[{"v-divider":!0,"v-divider--inset":n.inset,"v-divider--vertical":n.vertical},h.value,u.value,n.class],style:[v.value,g.value,n.style],"aria-orientation":!r.role||r.role==="separator"?n.vertical?"vertical":"horizontal":void 0,role:`${r.role||"separator"}`},null)),{}}}),Vk=mt({items:Array},"VListChildren"),Sp=At()({name:"VListChildren",props:Vk(),setup(n,l){let{slots:r}=l;return fp(),()=>{var h,u;return((h=r.default)==null?void 0:h.call(r))??((u=n.items)==null?void 0:u.map(g=>{var P,D;let{children:v,props:b,type:z,raw:C}=g;if(z==="divider")return((P=r.divider)==null?void 0:P.call(r,{props:b}))??t(Cp,b,null);if(z==="subheader")return((D=r.subheader)==null?void 0:D.call(r,{props:b}))??t(yp,b,null);const S={subtitle:r.subtitle?E=>{var Y;return(Y=r.subtitle)==null?void 0:Y.call(r,{...E,item:C})}:void 0,prepend:r.prepend?E=>{var Y;return(Y=r.prepend)==null?void 0:Y.call(r,{...E,item:C})}:void 0,append:r.append?E=>{var Y;return(Y=r.append)==null?void 0:Y.call(r,{...E,item:C})}:void 0,title:r.title?E=>{var Y;return(Y=r.title)==null?void 0:Y.call(r,{...E,item:C})}:void 0},[A,B]=m0.filterProps(b);return v?t(m0,o({value:b==null?void 0:b.value},A),{activator:E=>{let{props:Y}=E;return r.header?r.header({props:{...b,...Y}}):t(gl,o(b,Y),S)},default:()=>t(Sp,{items:v},r)}):r.item?r.item({props:b}):t(gl,b,S)}))}}}),$p=mt({items:{type:Array,default:()=>[]},itemTitle:{type:[String,Array,Function],default:"title"},itemValue:{type:[String,Array,Function],default:"value"},itemChildren:{type:[Boolean,String,Array,Function],default:"children"},itemProps:{type:[Boolean,String,Array,Function],default:"props"},returnObject:Boolean},"list-items");function Or(n,l){const r=tn(l,n.itemTitle,l),h=n.returnObject?l:tn(l,n.itemValue,r),u=tn(l,n.itemChildren),g=n.itemProps===!0?typeof l=="object"&&l!=null&&!Array.isArray(l)?"children"in l?pr(l,["children"])[1]:l:void 0:tn(l,n.itemProps),v={title:r,value:h,...g};return{title:String(v.title??""),value:v.value,props:v,children:Array.isArray(u)?Ap(n,u):void 0,raw:l}}function Ap(n,l){const r=[];for(const h of l)r.push(Or(n,h));return r}function _h(n){const l=X(()=>Ap(n,n.items));return _k(l,r=>Or(n,r))}function _k(n,l){function r(u){return u.filter(g=>g!==null||n.value.some(v=>v.value===null)).map(g=>n.value.find(b=>kr(g,b.value))??l(g))}function h(u){return u.map(g=>{let{value:v}=g;return v})}return{items:n,transformIn:r,transformOut:h}}function Wk(n){return typeof n=="string"||typeof n=="number"||typeof n=="boolean"}function Xk(n,l){const r=tn(l,n.itemType,"item"),h=Wk(l)?l:tn(l,n.itemTitle),u=tn(l,n.itemValue,void 0),g=tn(l,n.itemChildren),v=n.itemProps===!0?pr(l,["children"])[1]:tn(l,n.itemProps),b={title:h,value:u,...v};return{type:r,title:b.title,value:b.value,props:b,children:r==="item"&&g?Bp(n,g):void 0,raw:l}}function Bp(n,l){const r=[];for(const h of l)r.push(Xk(n,h));return r}function qk(n){return{items:X(()=>Bp(n,n.items))}}const Yk=mt({baseColor:String,activeColor:String,activeClass:String,bgColor:String,disabled:Boolean,lines:{type:[Boolean,String],default:"one"},nav:Boolean,...Pk({selectStrategy:"single-leaf",openStrategy:"list"}),...Cn(),...Wt(),...Ee(),...Dn(),...Re(),itemType:{type:String,default:"type"},...$p(),...Ie(),...le(),...ce(),...Tn({variant:"text"})},"VList"),_a=At()({name:"VList",props:Yk(),emits:{"update:selected":n=>!0,"update:opened":n=>!0,"click:open":n=>!0,"click:select":n=>!0},setup(n,l){let{slots:r}=l;const{items:h}=qk(n),{themeClasses:u}=ge(n),{backgroundColorClasses:g,backgroundColorStyles:v}=Ne(Bt(n,"bgColor")),{borderClasses:b}=On(n),{densityClasses:z}=sn(n),{dimensionStyles:C}=Fn(n),{elevationClasses:S}=Ze(n),{roundedClasses:A}=Be(n),{open:B,select:P}=Lk(n),D=X(()=>n.lines?`v-list--${n.lines}-line`:void 0),E=Bt(n,"activeColor"),Y=Bt(n,"baseColor"),O=Bt(n,"color");fp(),Fe({VListGroup:{activeColor:E,baseColor:Y,color:O},VListItem:{activeClass:Bt(n,"activeClass"),activeColor:E,baseColor:Y,color:O,density:Bt(n,"density"),disabled:Bt(n,"disabled"),lines:Bt(n,"lines"),nav:Bt(n,"nav"),variant:Bt(n,"variant")}});const H=_t(!1),U=Pt();function W(G){H.value=!0}function _(G){H.value=!1}function tt(G){var et;!H.value&&!(G.relatedTarget&&((et=U.value)!=null&&et.contains(G.relatedTarget)))&&q()}function nt(G){if(U.value){if(G.key==="ArrowDown")q("next");else if(G.key==="ArrowUp")q("prev");else if(G.key==="Home")q("first");else if(G.key==="End")q("last");else return;G.preventDefault()}}function q(G){if(U.value)return na(U.value,G)}return Lt(()=>t(n.tag,{ref:U,class:["v-list",{"v-list--disabled":n.disabled,"v-list--nav":n.nav},u.value,g.value,b.value,z.value,S.value,D.value,A.value,n.class],style:[v.value,C.value,n.style],tabindex:n.disabled||H.value?-1:0,role:"listbox","aria-activedescendant":void 0,onFocusin:W,onFocusout:_,onFocus:tt,onKeydown:nt},{default:()=>[t(Sp,{items:h.value},r)]})),{open:B,select:P,focus:q}}}),Gk=Gn("v-list-img"),Uk=mt({start:Boolean,end:Boolean,...Wt(),...le()},"VListItemAction"),Zk=At()({name:"VListItemAction",props:Uk(),setup(n,l){let{slots:r}=l;return Lt(()=>t(n.tag,{class:["v-list-item-action",{"v-list-item-action--start":n.start,"v-list-item-action--end":n.end},n.class],style:n.style},r)),{}}}),Kk=mt({start:Boolean,end:Boolean,...Wt(),...le()},"VListItemMedia"),Qk=At()({name:"VListItemMedia",props:Kk(),setup(n,l){let{slots:r}=l;return Lt(()=>t(n.tag,{class:["v-list-item-media",{"v-list-item-media--start":n.start,"v-list-item-media--end":n.end},n.class],style:n.style},r)),{}}});function bi(n,l){return{x:n.x+l.x,y:n.y+l.y}}function Jk(n,l){return{x:n.x-l.x,y:n.y-l.y}}function q1(n,l){if(n.side==="top"||n.side==="bottom"){const{side:r,align:h}=n,u=h==="left"?0:h==="center"?l.width/2:h==="right"?l.width:h,g=r==="top"?0:r==="bottom"?l.height:r;return bi({x:u,y:g},l)}else if(n.side==="left"||n.side==="right"){const{side:r,align:h}=n,u=r==="left"?0:r==="right"?l.width:r,g=h==="top"?0:h==="center"?l.height/2:h==="bottom"?l.height:h;return bi({x:u,y:g},l)}return bi({x:l.width/2,y:l.height/2},l)}const Hp={static:n6,connected:r6},t6=mt({locationStrategy:{type:[String,Function],default:"static",validator:n=>typeof n=="function"||n in Hp},location:{type:String,default:"bottom"},origin:{type:String,default:"auto"},offset:[Number,String,Array]},"VOverlay-location-strategies");function e6(n,l){const r=Pt({}),h=Pt();Me&&(Vl(()=>!!(l.isActive.value&&n.locationStrategy),g=>{var v,b;Vt(()=>n.locationStrategy,g),ln(()=>{h.value=void 0}),typeof n.locationStrategy=="function"?h.value=(v=n.locationStrategy(l,n,r))==null?void 0:v.updateLocation:h.value=(b=Hp[n.locationStrategy](l,n,r))==null?void 0:b.updateLocation}),window.addEventListener("resize",u,{passive:!0}),ln(()=>{window.removeEventListener("resize",u),h.value=void 0}));function u(g){var v;(v=h.value)==null||v.call(h,g)}return{contentStyles:r,updateLocation:h}}function n6(){}function l6(n,l){l?n.style.removeProperty("left"):n.style.removeProperty("right");const r=Mh(n);return l?r.x+=parseFloat(n.style.right||0):r.x-=parseFloat(n.style.left||0),r.y-=parseFloat(n.style.top||0),r}function r6(n,l,r){j5(n.activatorEl.value)&&Object.assign(r.value,{position:"fixed",top:0,[n.isRtl.value?"right":"left"]:0});const{preferredAnchor:u,preferredOrigin:g}=kh(()=>{const D=l0(l.location,n.isRtl.value),E=l.origin==="overlap"?D:l.origin==="auto"?vi(D):l0(l.origin,n.isRtl.value);return D.side===E.side&&D.align===fi(E).align?{preferredAnchor:v1(D),preferredOrigin:v1(E)}:{preferredAnchor:D,preferredOrigin:E}}),[v,b,z,C]=["minWidth","minHeight","maxWidth","maxHeight"].map(D=>X(()=>{const E=parseFloat(l[D]);return isNaN(E)?1/0:E})),S=X(()=>{if(Array.isArray(l.offset))return l.offset;if(typeof l.offset=="string"){const D=l.offset.split(" ").map(parseFloat);return D.length<2&&D.push(0),D}return typeof l.offset=="number"?[l.offset,0]:[0,0]});let A=!1;const B=new ResizeObserver(()=>{A&&P()});Vt([n.activatorEl,n.contentEl],(D,E)=>{let[Y,O]=D,[H,U]=E;H&&B.unobserve(H),Y&&B.observe(Y),U&&B.unobserve(U),O&&B.observe(O)},{immediate:!0}),ln(()=>{B.disconnect()});function P(){if(A=!1,requestAnimationFrame(()=>{requestAnimationFrame(()=>A=!0)}),!n.activatorEl.value||!n.contentEl.value)return;const D=n.activatorEl.value.getBoundingClientRect(),E=l6(n.contentEl.value,n.isRtl.value),Y=ra(n.contentEl.value),O=12;Y.length||(Y.push(document.documentElement),n.contentEl.value.style.top&&n.contentEl.value.style.left||(E.x-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x")||0),E.y-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y")||0)));const H=Y.reduce((st,rt)=>{const ht=rt.getBoundingClientRect(),dt=new _r({x:rt===document.documentElement?0:ht.x,y:rt===document.documentElement?0:ht.y,width:rt.clientWidth,height:rt.clientHeight});return st?new _r({x:Math.max(st.left,dt.left),y:Math.max(st.top,dt.top),width:Math.min(st.right,dt.right)-Math.max(st.left,dt.left),height:Math.min(st.bottom,dt.bottom)-Math.max(st.top,dt.top)}):dt},void 0);H.x+=O,H.y+=O,H.width-=O*2,H.height-=O*2;let U={anchor:u.value,origin:g.value};function W(st){const rt=new _r(E),ht=q1(st.anchor,D),dt=q1(st.origin,rt);let{x:Ct,y:xt}=Jk(ht,dt);switch(st.anchor.side){case"top":xt-=S.value[0];break;case"bottom":xt+=S.value[0];break;case"left":Ct-=S.value[0];break;case"right":Ct+=S.value[0];break}switch(st.anchor.align){case"top":xt-=S.value[1];break;case"bottom":xt+=S.value[1];break;case"left":Ct-=S.value[1];break;case"right":Ct+=S.value[1];break}return rt.x+=Ct,rt.y+=xt,rt.width=Math.min(rt.width,z.value),rt.height=Math.min(rt.height,C.value),{overflows:m1(rt,H),x:Ct,y:xt}}let _=0,tt=0;const nt={x:0,y:0},q={x:!1,y:!1};let G=-1;for(;!(G++>10);){const{x:st,y:rt,overflows:ht}=W(U);_+=st,tt+=rt,E.x+=st,E.y+=rt;{const dt=f1(U.anchor),Ct=ht.x.before||ht.x.after,xt=ht.y.before||ht.y.after;let wt=!1;if(["x","y"].forEach(gt=>{if(gt==="x"&&Ct&&!q.x||gt==="y"&&xt&&!q.y){const It={anchor:{...U.anchor},origin:{...U.origin}},$t=gt==="x"?dt==="y"?fi:vi:dt==="y"?vi:fi;It.anchor=$t(It.anchor),It.origin=$t(It.origin);const{overflows:Tt}=W(It);(Tt[gt].before<=ht[gt].before&&Tt[gt].after<=ht[gt].after||Tt[gt].before+Tt[gt].after<(ht[gt].before+ht[gt].after)/2)&&(U=It,wt=q[gt]=!0)}}),wt)continue}ht.x.before&&(_+=ht.x.before,E.x+=ht.x.before),ht.x.after&&(_-=ht.x.after,E.x-=ht.x.after),ht.y.before&&(tt+=ht.y.before,E.y+=ht.y.before),ht.y.after&&(tt-=ht.y.after,E.y-=ht.y.after);{const dt=m1(E,H);nt.x=H.width-dt.x.before-dt.x.after,nt.y=H.height-dt.y.before-dt.y.after,_+=dt.x.before,E.x+=dt.x.before,tt+=dt.y.before,E.y+=dt.y.before}break}const et=f1(U.anchor);return Object.assign(r.value,{"--v-overlay-anchor-origin":`${U.anchor.side} ${U.anchor.align}`,transformOrigin:`${U.origin.side} ${U.origin.align}`,top:Xt(Mi(tt)),left:n.isRtl.value?void 0:Xt(Mi(_)),right:n.isRtl.value?Xt(Mi(-_)):void 0,minWidth:Xt(et==="y"?Math.min(v.value,D.width):v.value),maxWidth:Xt(Y1(en(nt.x,v.value===1/0?0:v.value,z.value))),maxHeight:Xt(Y1(en(nt.y,b.value===1/0?0:b.value,C.value)))}),{available:nt,contentBox:E}}return Vt(()=>[u.value,g.value,l.offset,l.minWidth,l.minHeight,l.maxWidth,l.maxHeight],()=>P()),pe(()=>{const D=P();if(!D)return;const{available:E,contentBox:Y}=D;Y.height>E.y&&requestAnimationFrame(()=>{P(),requestAnimationFrame(()=>{P()})})}),{updateLocation:P}}function Mi(n){return Math.round(n*devicePixelRatio)/devicePixelRatio}function Y1(n){return Math.ceil(n*devicePixelRatio)/devicePixelRatio}let k0=!0;const aa=[];function o6(n){!k0||aa.length?(aa.push(n),b0()):(k0=!1,n(),b0())}let G1=-1;function b0(){cancelAnimationFrame(G1),G1=requestAnimationFrame(()=>{const n=aa.shift();n&&n(),aa.length?b0():k0=!0})}const Ys={none:null,close:i6,block:h6,reposition:d6},s6=mt({scrollStrategy:{type:[String,Function],default:"block",validator:n=>typeof n=="function"||n in Ys}},"VOverlay-scroll-strategies");function a6(n,l){if(!Me)return;let r;fn(async()=>{r==null||r.stop(),l.isActive.value&&n.scrollStrategy&&(r=Jr(),await pe(),r.active&&r.run(()=>{var h;typeof n.scrollStrategy=="function"?n.scrollStrategy(l,n,r):(h=Ys[n.scrollStrategy])==null||h.call(Ys,l,n,r)}))}),ln(()=>{r==null||r.stop()})}function i6(n){function l(r){n.isActive.value=!1}Np(n.activatorEl.value??n.contentEl.value,l)}function h6(n,l){var v;const r=(v=n.root.value)==null?void 0:v.offsetParent,h=[...new Set([...ra(n.activatorEl.value,l.contained?r:void 0),...ra(n.contentEl.value,l.contained?r:void 0)])].filter(b=>!b.classList.contains("v-overlay-scroll-blocked")),u=window.innerWidth-document.documentElement.offsetWidth,g=(b=>yh(b)&&b)(r||document.documentElement);g&&n.root.value.classList.add("v-overlay--scroll-blocked"),h.forEach((b,z)=>{b.style.setProperty("--v-body-scroll-x",Xt(-b.scrollLeft)),b.style.setProperty("--v-body-scroll-y",Xt(-b.scrollTop)),b!==document.documentElement&&b.style.setProperty("--v-scrollbar-offset",Xt(u)),b.classList.add("v-overlay-scroll-blocked")}),ln(()=>{h.forEach((b,z)=>{const C=parseFloat(b.style.getPropertyValue("--v-body-scroll-x")),S=parseFloat(b.style.getPropertyValue("--v-body-scroll-y"));b.style.removeProperty("--v-body-scroll-x"),b.style.removeProperty("--v-body-scroll-y"),b.style.removeProperty("--v-scrollbar-offset"),b.classList.remove("v-overlay-scroll-blocked"),b.scrollLeft=-C,b.scrollTop=-S}),g&&n.root.value.classList.remove("v-overlay--scroll-blocked")})}function d6(n,l,r){let h=!1,u=-1,g=-1;function v(b){o6(()=>{var S,A;const z=performance.now();(A=(S=n.updateLocation).value)==null||A.call(S,b),h=(performance.now()-z)/(1e3/60)>2})}g=(typeof requestIdleCallback>"u"?b=>b():requestIdleCallback)(()=>{r.run(()=>{Np(n.activatorEl.value??n.contentEl.value,b=>{h?(cancelAnimationFrame(u),u=requestAnimationFrame(()=>{u=requestAnimationFrame(()=>{v(b)})})):v(b)})})}),ln(()=>{typeof cancelIdleCallback<"u"&&cancelIdleCallback(g),cancelAnimationFrame(u)})}function Np(n,l){const r=[document,...ra(n)];r.forEach(h=>{h.addEventListener("scroll",l,{passive:!0})}),ln(()=>{r.forEach(h=>{h.removeEventListener("scroll",l)})})}const M0=Symbol.for("vuetify:v-menu"),jp=mt({closeDelay:[Number,String],openDelay:[Number,String]},"delay");function Pp(n,l){const r={},h=u=>()=>{if(!Me)return Promise.resolve(!0);const g=u==="openDelay";return r.closeDelay&&window.clearTimeout(r.closeDelay),delete r.closeDelay,r.openDelay&&window.clearTimeout(r.openDelay),delete r.openDelay,new Promise(v=>{const b=parseInt(n[u]??0,10);r[u]=window.setTimeout(()=>{l==null||l(g),v(g)},b)})};return{runCloseDelay:h("closeDelay"),runOpenDelay:h("openDelay")}}const c6=mt({activator:[String,Object],activatorProps:{type:Object,default:()=>({})},openOnClick:{type:Boolean,default:void 0},openOnHover:Boolean,openOnFocus:{type:Boolean,default:void 0},closeOnContentClick:Boolean,...jp()},"VOverlay-activator");function u6(n,l){let{isActive:r,isTop:h}=l;const u=Pt();let g=!1,v=!1,b=!0;const z=X(()=>n.openOnFocus||n.openOnFocus==null&&n.openOnHover),C=X(()=>n.openOnClick||n.openOnClick==null&&!n.openOnHover&&!z.value),{runOpenDelay:S,runCloseDelay:A}=Pp(n,U=>{U===(n.openOnHover&&g||z.value&&v)&&!(n.openOnHover&&r.value&&!h.value)&&(r.value!==U&&(b=!0),r.value=U)}),B={onClick:U=>{U.stopPropagation(),u.value=U.currentTarget||U.target,r.value=!r.value},onMouseenter:U=>{var W;(W=U.sourceCapabilities)!=null&&W.firesTouchEvents||(g=!0,u.value=U.currentTarget||U.target,S())},onMouseleave:U=>{g=!1,A()},onFocus:U=>{Ur(U.target,":focus-visible")!==!1&&(v=!0,U.stopPropagation(),u.value=U.currentTarget||U.target,S())},onBlur:U=>{v=!1,U.stopPropagation(),A()}},P=X(()=>{const U={};return C.value&&(U.onClick=B.onClick),n.openOnHover&&(U.onMouseenter=B.onMouseenter,U.onMouseleave=B.onMouseleave),z.value&&(U.onFocus=B.onFocus,U.onBlur=B.onBlur),U}),D=X(()=>{const U={};if(n.openOnHover&&(U.onMouseenter=()=>{g=!0,S()},U.onMouseleave=()=>{g=!1,A()}),z.value&&(U.onFocusin=()=>{v=!0,S()},U.onFocusout=()=>{v=!1,A()}),n.closeOnContentClick){const W=he(M0,null);U.onClick=()=>{r.value=!1,W==null||W.closeParents()}}return U}),E=X(()=>{const U={};return n.openOnHover&&(U.onMouseenter=()=>{b&&(g=!0,b=!1,S())},U.onMouseleave=()=>{g=!1,A()}),U});Vt(h,U=>{U&&(n.openOnHover&&!g&&(!z.value||!v)||z.value&&!v&&(!n.openOnHover||!g))&&(r.value=!1)});const Y=Pt();fn(()=>{Y.value&&pe(()=>{u.value=e0(Y.value)})});const O=We("useActivator");let H;return Vt(()=>!!n.activator,U=>{U&&Me?(H=Jr(),H.run(()=>{p6(n,O,{activatorEl:u,activatorEvents:P})})):H&&H.stop()},{flush:"post",immediate:!0}),ln(()=>{H==null||H.stop()}),{activatorEl:u,activatorRef:Y,activatorEvents:P,contentEvents:D,scrimEvents:E}}function p6(n,l,r){let{activatorEl:h,activatorEvents:u}=r;Vt(()=>n.activator,(z,C)=>{if(C&&z!==C){const S=b(C);S&&v(S)}z&&pe(()=>g())},{immediate:!0}),Vt(()=>n.activatorProps,()=>{g()}),ln(()=>{v()});function g(){let z=arguments.length>0&&arguments[0]!==void 0?arguments[0]:b(),C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:n.activatorProps;z&&a5(z,o(u.value,C))}function v(){let z=arguments.length>0&&arguments[0]!==void 0?arguments[0]:b(),C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:n.activatorProps;z&&i5(z,o(u.value,C))}function b(){var S,A;let z=arguments.length>0&&arguments[0]!==void 0?arguments[0]:n.activator,C;if(z)if(z==="parent"){let B=(A=(S=l==null?void 0:l.proxy)==null?void 0:S.$el)==null?void 0:A.parentNode;for(;B.hasAttribute("data-no-activator");)B=B.parentNode;C=B}else typeof z=="string"?C=document.querySelector(z):"$el"in z?C=z.$el:C=z;return h.value=(C==null?void 0:C.nodeType)===Node.ELEMENT_NODE?C:null,h.value}}function Lp(){if(!Me)return _t(!1);const{ssr:n}=Mr();if(n){const l=_t(!1);return Te(()=>{l.value=!0}),l}else return _t(!0)}const Wa=mt({eager:Boolean},"lazy");function Wh(n,l){const r=_t(!1),h=X(()=>r.value||n.eager||l.value);Vt(l,()=>r.value=!0);function u(){n.eager||(r.value=!1)}return{isBooted:r,hasContent:h,onAfterLeave:u}}function po(){const l=We("useScopeId").vnode.scopeId;return{scopeId:l?{[l]:""}:void 0}}const U1=Symbol.for("vuetify:stack"),bo=Ye([]);function g6(n,l,r){const h=We("useStack"),u=!r,g=he(U1,void 0),v=Ye({activeChildren:new Set});ye(U1,v);const b=_t(+l.value);Vl(n,()=>{var A;const S=(A=bo.at(-1))==null?void 0:A[1];b.value=S?S+10:+l.value,u&&bo.push([h.uid,b.value]),g==null||g.activeChildren.add(h.uid),ln(()=>{if(u){const B=ne(bo).findIndex(P=>P[0]===h.uid);bo.splice(B,1)}g==null||g.activeChildren.delete(h.uid)})});const z=_t(!0);u&&fn(()=>{var A;const S=((A=bo.at(-1))==null?void 0:A[0])===h.uid;setTimeout(()=>z.value=S)});const C=X(()=>!v.activeChildren.size);return{globalTop:no(z),localTop:C,stackStyles:X(()=>({zIndex:b.value}))}}function w6(n){return{teleportTarget:X(()=>{const r=n.value;if(r===!0||!Me)return;const h=r===!1?document.body:typeof r=="string"?document.querySelector(r):r;if(h==null)return;let u=h.querySelector(":scope > .v-overlay-container");return u||(u=document.createElement("div"),u.className="v-overlay-container",h.appendChild(u)),u})}}function v6(){return!0}function Dp(n,l,r){if(!n||Fp(n,r)===!1)return!1;const h=Bu(l);if(typeof ShadowRoot<"u"&&h instanceof ShadowRoot&&h.host===n.target)return!1;const u=(typeof r.value=="object"&&r.value.include||(()=>[]))();return u.push(l),!u.some(g=>g==null?void 0:g.contains(n.target))}function Fp(n,l){return(typeof l.value=="object"&&l.value.closeConditional||v6)(n)}function f6(n,l,r){const h=typeof r.value=="function"?r.value:r.value.handler;l._clickOutside.lastMousedownWasOutside&&Dp(n,l,r)&&setTimeout(()=>{Fp(n,r)&&h&&h(n)},0)}function Z1(n,l){const r=Bu(n);l(document),typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&l(r)}const Op={mounted(n,l){const r=u=>f6(u,n,l),h=u=>{n._clickOutside.lastMousedownWasOutside=Dp(u,n,l)};Z1(n,u=>{u.addEventListener("click",r,!0),u.addEventListener("mousedown",h,!0)}),n._clickOutside||(n._clickOutside={lastMousedownWasOutside:!1}),n._clickOutside[l.instance.$.uid]={onClick:r,onMousedown:h}},unmounted(n,l){n._clickOutside&&(Z1(n,r=>{var g;if(!r||!((g=n._clickOutside)!=null&&g[l.instance.$.uid]))return;const{onClick:h,onMousedown:u}=n._clickOutside[l.instance.$.uid];r.removeEventListener("click",h,!0),r.removeEventListener("mousedown",u,!0)}),delete n._clickOutside[l.instance.$.uid])}};function m6(n){const{modelValue:l,color:r,...h}=n;return t(qn,{name:"fade-transition",appear:!0},{default:()=>[n.modelValue&&t("div",o({class:["v-overlay__scrim",n.color.backgroundColorClasses.value],style:n.color.backgroundColorStyles.value},h),null)]})}const vs=mt({absolute:Boolean,attach:[Boolean,String,Object],closeOnBack:{type:Boolean,default:!0},contained:Boolean,contentClass:null,contentProps:null,disabled:Boolean,noClickAnimation:Boolean,modelValue:Boolean,persistent:Boolean,scrim:{type:[Boolean,String],default:!0},zIndex:{type:[Number,String],default:2e3},...c6(),...Wt(),...Dn(),...Wa(),...t6(),...s6(),...ce(),...bl()},"VOverlay"),wl=At()({name:"VOverlay",directives:{ClickOutside:Op},inheritAttrs:!1,props:{_disableGlobalStack:Boolean,...vs()},emits:{"click:outside":n=>!0,"update:modelValue":n=>!0,afterLeave:()=>!0},setup(n,l){let{slots:r,attrs:h,emit:u}=l;const g=ee(n,"modelValue"),v=X({get:()=>g.value,set:It=>{It&&n.disabled||(g.value=It)}}),{teleportTarget:b}=w6(X(()=>n.attach||n.contained)),{themeClasses:z}=ge(n),{rtlClasses:C,isRtl:S}=Xe(),{hasContent:A,onAfterLeave:B}=Wh(n,v),P=Ne(X(()=>typeof n.scrim=="string"?n.scrim:null)),{globalTop:D,localTop:E,stackStyles:Y}=g6(v,Bt(n,"zIndex"),n._disableGlobalStack),{activatorEl:O,activatorRef:H,activatorEvents:U,contentEvents:W,scrimEvents:_}=u6(n,{isActive:v,isTop:E}),{dimensionStyles:tt}=Fn(n),nt=Lp(),{scopeId:q}=po();Vt(()=>n.disabled,It=>{It&&(v.value=!1)});const G=Pt(),et=Pt(),{contentStyles:st,updateLocation:rt}=e6(n,{isRtl:S,contentEl:et,activatorEl:O,isActive:v});a6(n,{root:G,contentEl:et,activatorEl:O,isActive:v,updateLocation:rt});function ht(It){u("click:outside",It),n.persistent?gt():v.value=!1}function dt(){return v.value&&D.value}Me&&Vt(v,It=>{It?window.addEventListener("keydown",Ct):window.removeEventListener("keydown",Ct)},{immediate:!0});function Ct(It){var $t,Tt;It.key==="Escape"&&D.value&&(n.persistent?gt():(v.value=!1,($t=et.value)!=null&&$t.contains(document.activeElement)&&((Tt=O.value)==null||Tt.focus())))}const xt=Qu();Vl(()=>n.closeOnBack,()=>{rk(xt,It=>{D.value&&v.value?(It(!1),n.persistent?gt():v.value=!1):It()})});const wt=Pt();Vt(()=>v.value&&(n.absolute||n.contained)&&b.value==null,It=>{if(It){const $t=Ih(G.value);$t&&$t!==document.scrollingElement&&(wt.value=$t.scrollTop)}});function gt(){n.noClickAnimation||et.value&&rr(et.value,[{transformOrigin:"center"},{transform:"scale(1.03)"},{transformOrigin:"center"}],{duration:150,easing:Uo})}return Lt(()=>{var It;return t(Zt,null,[(It=r.activator)==null?void 0:It.call(r,{isActive:v.value,props:o({ref:H},U.value,n.activatorProps)}),nt.value&&A.value&&t(uc,{disabled:!b.value,to:b.value},{default:()=>[t("div",o({class:["v-overlay",{"v-overlay--absolute":n.absolute||n.contained,"v-overlay--active":v.value,"v-overlay--contained":n.contained},z.value,C.value,n.class],style:[Y.value,{top:Xt(wt.value)},n.style],ref:G},q,h),[t(m6,o({color:P,modelValue:v.value&&!!n.scrim},_.value),null),t(Wn,{appear:!0,persisted:!0,transition:n.transition,target:O.value,onAfterLeave:()=>{B(),u("afterLeave")}},{default:()=>{var $t;return[Ce(t("div",o({ref:et,class:["v-overlay__content",n.contentClass],style:[tt.value,st.value]},W.value,n.contentProps),[($t=r.default)==null?void 0:$t.call(r,{isActive:v})]),[[Nn,v.value],[mn("click-outside"),{handler:ht,closeConditional:dt,include:()=>[O.value]}]])]}})])]})])}),{activatorEl:O,animateClick:gt,contentEl:et,globalTop:D,localTop:E,updateLocation:rt}}}),xi=Symbol("Forwarded refs");function zi(n,l){let r=n;for(;r;){const h=Reflect.getOwnPropertyDescriptor(r,l);if(h)return h;r=Object.getPrototypeOf(r)}}function Un(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{scopeId:u}=po(),g=on(),v=X(()=>n.id||`v-menu-${g}`),b=Pt(),z=he(M0,null),C=_t(0);ye(M0,{register(){++C.value},unregister(){--C.value},closeParents(){setTimeout(()=>{C.value||(h.value=!1,z==null||z.closeParents())},40)}});async function S(E){var H,U,W;const Y=E.relatedTarget,O=E.target;await pe(),h.value&&Y!==O&&((H=b.value)!=null&&H.contentEl)&&((U=b.value)!=null&&U.globalTop)&&![document,b.value.contentEl].includes(O)&&!b.value.contentEl.contains(O)&&((W=Go(b.value.contentEl)[0])==null||W.focus())}Vt(h,E=>{E?(z==null||z.register(),document.addEventListener("focusin",S,{once:!0})):(z==null||z.unregister(),document.removeEventListener("focusin",S))});function A(){z==null||z.closeParents()}function B(E){var Y,O,H;n.disabled||E.key==="Tab"&&(fu(Go((Y=b.value)==null?void 0:Y.contentEl,!1),E.shiftKey?"prev":"next",W=>W.tabIndex>=0)||(h.value=!1,(H=(O=b.value)==null?void 0:O.activatorEl)==null||H.focus()))}function P(E){var O;if(n.disabled)return;const Y=(O=b.value)==null?void 0:O.contentEl;Y&&h.value?E.key==="ArrowDown"?(E.preventDefault(),na(Y,"next")):E.key==="ArrowUp"&&(E.preventDefault(),na(Y,"prev")):["ArrowDown","ArrowUp"].includes(E.key)&&(h.value=!0,E.preventDefault(),setTimeout(()=>setTimeout(()=>P(E))))}const D=X(()=>o({"aria-haspopup":"menu","aria-expanded":String(h.value),"aria-owns":v.value,onKeydown:P},n.activatorProps));return Lt(()=>{const[E]=wl.filterProps(n);return t(wl,o({ref:b,class:["v-menu",n.class],style:n.style},E,{modelValue:h.value,"onUpdate:modelValue":Y=>h.value=Y,absolute:!0,activatorProps:D.value,"onClick:outside":A,onKeydown:B},u),{activator:r.activator,default:function(){for(var Y=arguments.length,O=new Array(Y),H=0;H{var U;return[(U=r.default)==null?void 0:U.call(r,...O)]}})}})}),Un({id:v,ΨopenChildren:C},b)}});const b6=mt({active:Boolean,max:[Number,String],value:{type:[Number,String],default:0},...Wt(),...bl({transition:{component:Hh}})},"VCounter"),qa=At()({name:"VCounter",functional:!0,props:b6(),setup(n,l){let{slots:r}=l;const h=X(()=>n.max?`${n.value} / ${n.max}`:String(n.value));return Lt(()=>t(Wn,{transition:n.transition},{default:()=>[Ce(t("div",{class:["v-counter",n.class],style:n.style},[r.default?r.default({counter:h.value,max:n.max,value:n.value}):h.value]),[[Nn,n.active]])]})),{}}});const M6=mt({floating:Boolean,...Wt()},"VFieldLabel"),Io=At()({name:"VFieldLabel",props:M6(),setup(n,l){let{slots:r}=l;return Lt(()=>t(uo,{class:["v-field-label",{"v-field-label--floating":n.floating},n.class],style:n.style,"aria-hidden":n.floating||void 0},r)),{}}}),x6=["underlined","outlined","filled","solo","solo-inverted","solo-filled","plain"],Ya=mt({appendInnerIcon:te,bgColor:String,clearable:Boolean,clearIcon:{type:te,default:"$clear"},active:Boolean,centerAffix:{type:Boolean,default:void 0},color:String,baseColor:String,dirty:Boolean,disabled:{type:Boolean,default:null},error:Boolean,flat:Boolean,label:String,persistentClear:Boolean,prependInnerIcon:te,reverse:Boolean,singleLine:Boolean,variant:{type:String,default:"filled",validator:n=>x6.includes(n)},"onClick:clear":tl(),"onClick:appendInner":tl(),"onClick:prependInner":tl(),...Wt(),...Oh(),...Ie(),...ce()},"VField"),fs=At()({name:"VField",inheritAttrs:!1,props:{id:String,...Ea(),...Ya()},emits:{"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{themeClasses:g}=ge(n),{loaderClasses:v}=Ta(n),{focusClasses:b,isFocused:z,focus:C,blur:S}=Yl(n),{InputIcon:A}=cp(n),{roundedClasses:B}=Be(n),{rtlClasses:P}=Xe(),D=X(()=>n.dirty||n.active),E=X(()=>!n.singleLine&&!!(n.label||u.label)),Y=on(),O=X(()=>n.id||`input-${Y}`),H=X(()=>`${O.value}-messages`),U=Pt(),W=Pt(),_=Pt(),tt=X(()=>["plain","underlined"].includes(n.variant)),{backgroundColorClasses:nt,backgroundColorStyles:q}=Ne(Bt(n,"bgColor")),{textColorClasses:G,textColorStyles:et}=rn(X(()=>n.error||n.disabled?void 0:D.value&&z.value?n.color:n.baseColor));Vt(D,ht=>{if(E.value){const dt=U.value.$el,Ct=W.value.$el;requestAnimationFrame(()=>{const xt=Mh(dt),wt=Ct.getBoundingClientRect(),gt=wt.x-xt.x,It=wt.y-xt.y-(xt.height/2-wt.height/2),$t=wt.width/.75,Tt=Math.abs($t-xt.width)>1?{maxWidth:Xt($t)}:void 0,Ft=getComputedStyle(dt),Kt=getComputedStyle(Ct),Qt=parseFloat(Ft.transitionDuration)*1e3||150,Rt=parseFloat(Kt.getPropertyValue("--v-field-label-scale")),ut=Kt.getPropertyValue("color");dt.style.visibility="visible",Ct.style.visibility="hidden",rr(dt,{transform:`translate(${gt}px, ${It}px) scale(${Rt})`,color:ut,...Tt},{duration:Qt,easing:Uo,direction:ht?"normal":"reverse"}).finished.then(()=>{dt.style.removeProperty("visibility"),Ct.style.removeProperty("visibility")})})}},{flush:"post"});const st=X(()=>({isActive:D,isFocused:z,controlRef:_,blur:S,focus:C}));function rt(ht){ht.target!==document.activeElement&&ht.preventDefault()}return Lt(()=>{var gt,It,$t;const ht=n.variant==="outlined",dt=u["prepend-inner"]||n.prependInnerIcon,Ct=!!(n.clearable||u.clear),xt=!!(u["append-inner"]||n.appendInnerIcon||Ct),wt=u.label?u.label({...st.value,label:n.label,props:{for:O.value}}):n.label;return t("div",o({class:["v-field",{"v-field--active":D.value,"v-field--appended":xt,"v-field--center-affix":n.centerAffix??!tt.value,"v-field--disabled":n.disabled,"v-field--dirty":n.dirty,"v-field--error":n.error,"v-field--flat":n.flat,"v-field--has-background":!!n.bgColor,"v-field--persistent-clear":n.persistentClear,"v-field--prepended":dt,"v-field--reverse":n.reverse,"v-field--single-line":n.singleLine,"v-field--no-label":!wt,[`v-field--variant-${n.variant}`]:!0},g.value,nt.value,b.value,v.value,B.value,P.value,n.class],style:[q.value,n.style],onClick:rt},r),[t("div",{class:"v-field__overlay"},null),t(Th,{name:"v-field",active:!!n.loading,color:n.error?"error":typeof n.loading=="string"?n.loading:n.color},{default:u.loader}),dt&&t("div",{key:"prepend",class:"v-field__prepend-inner"},[n.prependInnerIcon&&t(A,{key:"prepend-icon",name:"prependInner"},null),(gt=u["prepend-inner"])==null?void 0:gt.call(u,st.value)]),t("div",{class:"v-field__field","data-no-activator":""},[["filled","solo","solo-inverted","solo-filled"].includes(n.variant)&&E.value&&t(Io,{key:"floating-label",ref:W,class:[G.value],floating:!0,for:O.value,style:et.value},{default:()=>[wt]}),t(Io,{ref:U,for:O.value},{default:()=>[wt]}),(It=u.default)==null?void 0:It.call(u,{...st.value,props:{id:O.value,class:"v-field__input","aria-describedby":H.value},focus:C,blur:S})]),Ct&&t(Nh,{key:"clear"},{default:()=>[Ce(t("div",{class:"v-field__clearable",onMousedown:Tt=>{Tt.preventDefault(),Tt.stopPropagation()}},[u.clear?u.clear():t(A,{name:"clear"},null)]),[[Nn,n.dirty]])]}),xt&&t("div",{key:"append",class:"v-field__append-inner"},[($t=u["append-inner"])==null?void 0:$t.call(u,st.value),n.appendInnerIcon&&t(A,{key:"append-icon",name:"appendInner"},null)]),t("div",{class:["v-field__outline",G.value],style:et.value},[ht&&t(Zt,null,[t("div",{class:"v-field__outline__start"},null),E.value&&t("div",{class:"v-field__outline__notch"},[t(Io,{ref:W,floating:!0,for:O.value},{default:()=>[wt]})]),t("div",{class:"v-field__outline__end"},null)]),tt.value&&E.value&&t(Io,{ref:W,floating:!0,for:O.value},{default:()=>[wt]})])])}),{controlRef:_}}});function Xh(n){const l=Object.keys(fs.props).filter(r=>!mh(r)&&r!=="class"&&r!=="style");return pr(n,l)}const z6=["color","file","time","date","datetime-local","week","month"],Ga=mt({autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,suffix:String,role:String,type:{type:String,default:"text"},modelModifiers:Object,...xl(),...Ya()},"VTextField"),vr=At()({name:"VTextField",directives:{Intersect:Oa},inheritAttrs:!1,props:Ga(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const g=ee(n,"modelValue"),{isFocused:v,focus:b,blur:z}=Yl(n),C=X(()=>typeof n.counterValue=="function"?n.counterValue(g.value):(g.value??"").toString().length),S=X(()=>{if(r.maxlength)return r.maxlength;if(!(!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"))return n.counter}),A=X(()=>["plain","underlined"].includes(n.variant));function B(tt,nt){var q,G;!n.autofocus||!tt||(G=(q=nt[0].target)==null?void 0:q.focus)==null||G.call(q)}const P=Pt(),D=Pt(),E=Pt(),Y=X(()=>z6.includes(n.type)||n.persistentPlaceholder||v.value||n.active);function O(){var tt;E.value!==document.activeElement&&((tt=E.value)==null||tt.focus()),v.value||b()}function H(tt){h("mousedown:control",tt),tt.target!==E.value&&(O(),tt.preventDefault())}function U(tt){O(),h("click:control",tt)}function W(tt){tt.stopPropagation(),O(),pe(()=>{g.value=null,bh(n["onClick:clear"],tt)})}function _(tt){var q;const nt=tt.target;if(g.value=nt.value,(q=n.modelModifiers)!=null&&q.trim&&["text","search","password","tel","url"].includes(n.type)){const G=[nt.selectionStart,nt.selectionEnd];pe(()=>{nt.selectionStart=G[0],nt.selectionEnd=G[1]})}}return Lt(()=>{const tt=!!(u.counter||n.counter||n.counterValue),nt=!!(tt||u.details),[q,G]=br(r),[{modelValue:et,...st}]=Ge.filterProps(n),[rt]=Xh(n);return t(Ge,o({ref:P,modelValue:g.value,"onUpdate:modelValue":ht=>g.value=ht,class:["v-text-field",{"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-text-field--plain-underlined":["plain","underlined"].includes(n.variant)},n.class],style:n.style},q,st,{centerAffix:!A.value,focused:v.value}),{...u,default:ht=>{let{id:dt,isDisabled:Ct,isDirty:xt,isReadonly:wt,isValid:gt}=ht;return t(fs,o({ref:D,onMousedown:H,onClick:U,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"],role:n.role},rt,{id:dt.value,active:Y.value||xt.value,dirty:xt.value||n.dirty,disabled:Ct.value,focused:v.value,error:gt.value===!1}),{...u,default:It=>{let{props:{class:$t,...Tt}}=It;const Ft=Ce(t("input",o({ref:E,value:g.value,onInput:_,autofocus:n.autofocus,readonly:wt.value,disabled:Ct.value,name:n.name,placeholder:n.placeholder,size:1,type:n.type,onFocus:O,onBlur:z},Tt,G),null),[[mn("intersect"),{handler:B},null,{once:!0}]]);return t(Zt,null,[n.prefix&&t("span",{class:"v-text-field__prefix"},[t("span",{class:"v-text-field__prefix__text"},[n.prefix])]),u.default?t("div",{class:$t,"data-no-activator":""},[u.default(),Ft]):Xn(Ft,{class:$t}),n.suffix&&t("span",{class:"v-text-field__suffix"},[t("span",{class:"v-text-field__suffix__text"},[n.suffix])])])}})},details:nt?ht=>{var dt;return t(Zt,null,[(dt=u.details)==null?void 0:dt.call(u,ht),tt&&t(Zt,null,[t("span",null,null),t(qa,{active:n.persistentCounter||v.value,value:C.value,max:S.value},u.counter)])])}:void 0})}),Un({},P,D,E)}});const I6=mt({renderless:Boolean,...Wt()},"VVirtualScrollItem"),y6=At()({name:"VVirtualScrollItem",inheritAttrs:!1,props:I6(),emits:{"update:height":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{resizeRef:g,contentRect:v}=el(void 0,"border");Vt(()=>{var b;return(b=v.value)==null?void 0:b.height},b=>{b!=null&&h("update:height",b)}),Lt(()=>{var b,z;return n.renderless?t(Zt,null,[(b=u.default)==null?void 0:b.call(u,{itemRef:g})]):t("div",o({ref:g,class:["v-virtual-scroll__item",n.class],style:n.style},r),[(z=u.default)==null?void 0:z.call(u)])})}}),K1=-1,Q1=1,C6=mt({itemHeight:{type:[Number,String],default:48}},"virtual");function S6(n,l,r){const h=_t(0),u=_t(n.itemHeight),g=X({get:()=>parseInt(u.value??0,10),set(nt){u.value=nt}}),v=Pt(),{resizeRef:b,contentRect:z}=el();fn(()=>{b.value=v.value});const C=Mr(),S=new Map;let A=Array.from({length:l.value.length});const B=X(()=>{const nt=(!z.value||v.value===document.documentElement?C.height.value:z.value.height)-((r==null?void 0:r.value)??0);return Math.ceil(nt/g.value*1.7+1)});function P(nt,q){g.value=Math.max(g.value,q),A[nt]=q,S.set(l.value[nt],q)}function D(nt){return A.slice(0,nt).reduce((q,G)=>q+(G||g.value),0)}function E(nt){const q=l.value.length;let G=0,et=0;for(;et=ht&&(h.value=en(rt,0,l.value.length-B.value)),Y=q}function H(nt){if(!v.value)return;const q=D(nt);v.value.scrollTop=q}const U=X(()=>Math.min(l.value.length,h.value+B.value)),W=X(()=>l.value.slice(h.value,U.value).map((nt,q)=>({raw:nt,index:q+h.value}))),_=X(()=>D(h.value)),tt=X(()=>D(l.value.length)-D(U.value));return Vt(()=>l.value.length,()=>{A=il(l.value.length).map(()=>g.value),S.forEach((nt,q)=>{const G=l.value.indexOf(q);G===-1?S.delete(q):A[G]=nt})}),{containerRef:v,computedItems:W,itemHeight:g,paddingTop:_,paddingBottom:tt,scrollToIndex:H,handleScroll:O,handleItemResize:P}}const $6=mt({items:{type:Array,default:()=>[]},renderless:Boolean,...C6(),...Wt(),...Dn()},"VVirtualScroll"),Ua=At()({name:"VVirtualScroll",props:$6(),setup(n,l){let{slots:r}=l;const h=We("VVirtualScroll"),{dimensionStyles:u}=Fn(n),{containerRef:g,handleScroll:v,handleItemResize:b,scrollToIndex:z,paddingTop:C,paddingBottom:S,computedItems:A}=S6(n,Bt(n,"items"));return Vl(()=>n.renderless,()=>{Te(()=>{var B;g.value=Ih(h.vnode.el,!0),(B=g.value)==null||B.addEventListener("scroll",v)}),ln(()=>{var B;(B=g.value)==null||B.removeEventListener("scroll",v)})}),Lt(()=>{const B=A.value.map(P=>t(y6,{key:P.index,renderless:n.renderless,"onUpdate:height":D=>b(P.index,D)},{default:D=>{var E;return(E=r.default)==null?void 0:E.call(r,{item:P.raw,index:P.index,...D})}}));return n.renderless?t(Zt,null,[t("div",{class:"v-virtual-scroll__spacer",style:{paddingTop:Xt(C.value)}},null),B,t("div",{class:"v-virtual-scroll__spacer",style:{paddingBottom:Xt(S.value)}},null)]):t("div",{ref:g,class:["v-virtual-scroll",n.class],onScroll:v,style:[u.value,n.style]},[t("div",{class:"v-virtual-scroll__container",style:{paddingTop:Xt(C.value),paddingBottom:Xt(S.value)}},[B])])}),{scrollToIndex:z}}});function qh(n,l){const r=_t(!1);let h;function u(b){cancelAnimationFrame(h),r.value=!0,h=requestAnimationFrame(()=>{h=requestAnimationFrame(()=>{r.value=!1})})}async function g(){await new Promise(b=>requestAnimationFrame(b)),await new Promise(b=>requestAnimationFrame(b)),await new Promise(b=>requestAnimationFrame(b)),await new Promise(b=>{if(r.value){const z=Vt(r,()=>{z(),b()})}else b()})}async function v(b){var S,A;if(b.key==="Tab"&&((S=l.value)==null||S.focus()),!["PageDown","PageUp","Home","End"].includes(b.key))return;const z=(A=n.value)==null?void 0:A.$el;if(!z)return;(b.key==="Home"||b.key==="End")&&z.scrollTo({top:b.key==="Home"?0:z.scrollHeight,behavior:"smooth"}),await g();const C=z.querySelectorAll(":scope > :not(.v-virtual-scroll__spacer)");if(b.key==="PageDown"||b.key==="Home"){const B=z.getBoundingClientRect().top;for(const P of C)if(P.getBoundingClientRect().top>=B){P.focus();break}}else{const B=z.getBoundingClientRect().bottom;for(const P of[...C].reverse())if(P.getBoundingClientRect().bottom<=B){P.focus();break}}}return{onListScroll:u,onListKeydown:v}}const Yh=mt({chips:Boolean,closableChips:Boolean,closeText:{type:String,default:"$vuetify.close"},openText:{type:String,default:"$vuetify.open"},eager:Boolean,hideNoData:Boolean,hideSelected:Boolean,menu:Boolean,menuIcon:{type:te,default:"$dropdown"},menuProps:{type:Object},multiple:Boolean,noDataText:{type:String,default:"$vuetify.noDataText"},openOnClear:Boolean,valueComparator:{type:Function,default:kr},itemColor:String,...$p({itemChildren:!1})},"Select"),A6=mt({...Yh(),...jn(Ga({modelValue:null,role:"button"}),["validationValue","dirty","appendInnerIcon"]),...bl({transition:{component:Da}})},"VSelect"),B6=At()({name:"VSelect",props:A6(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Ln(),u=Pt(),g=Pt(),v=Pt(),b=ee(n,"menu"),z=X({get:()=>b.value,set:wt=>{var gt;b.value&&!wt&&((gt=g.value)!=null&>.ΨopenChildren)||(b.value=wt)}}),{items:C,transformIn:S,transformOut:A}=_h(n),B=ee(n,"modelValue",[],wt=>S(wt===null?[null]:Bn(wt)),wt=>{const gt=A(wt);return n.multiple?gt:gt[0]??null}),P=Va(),D=X(()=>B.value.map(wt=>C.value.find(gt=>{const It=tn(gt.raw,n.itemValue),$t=tn(wt.raw,n.itemValue);return It===void 0||$t===void 0?!1:n.returnObject?n.valueComparator(It,$t):n.valueComparator(gt.value,wt.value)})||wt)),E=X(()=>D.value.map(wt=>wt.props.value)),Y=_t(!1),O=X(()=>z.value?n.closeText:n.openText);let H="",U;const W=X(()=>n.hideSelected?C.value.filter(wt=>!D.value.some(gt=>gt===wt)):C.value),_=X(()=>n.hideNoData&&!C.value.length||n.readonly||(P==null?void 0:P.isReadonly.value)),tt=Pt(),{onListScroll:nt,onListKeydown:q}=qh(tt,u);function G(wt){n.openOnClear&&(z.value=!0)}function et(){_.value||(z.value=!z.value)}function st(wt){var Ft,Kt;if(!wt.key||n.readonly||P!=null&&P.isReadonly.value)return;["Enter"," ","ArrowDown","ArrowUp","Home","End"].includes(wt.key)&&wt.preventDefault(),["Enter","ArrowDown"," "].includes(wt.key)&&(z.value=!0),["Escape","Tab"].includes(wt.key)&&(z.value=!1),wt.key==="Home"?(Ft=tt.value)==null||Ft.focus("first"):wt.key==="End"&&((Kt=tt.value)==null||Kt.focus("last"));const gt=1e3;function It(Qt){const Rt=Qt.key.length===1,ut=!Qt.ctrlKey&&!Qt.metaKey&&!Qt.altKey;return Rt&&ut}if(n.multiple||!It(wt))return;const $t=performance.now();$t-U>gt&&(H=""),H+=wt.key.toLowerCase(),U=$t;const Tt=C.value.find(Qt=>Qt.title.toLowerCase().startsWith(H));Tt!==void 0&&(B.value=[Tt])}function rt(wt){if(n.multiple){const gt=E.value.findIndex(It=>n.valueComparator(It,wt.value));if(gt===-1)B.value=[...B.value,wt];else{const It=[...B.value];It.splice(gt,1),B.value=It}}else B.value=[wt],z.value=!1}function ht(wt){var gt;(gt=tt.value)!=null&>.$el.contains(wt.relatedTarget)||(z.value=!1)}function dt(){var wt;Y.value&&((wt=u.value)==null||wt.focus())}function Ct(wt){Y.value=!0}function xt(wt){if(wt==null)B.value=[];else if(Ur(u.value,":autofill")||Ur(u.value,":-webkit-autofill")){const gt=C.value.find(It=>It.title===wt);gt&&rt(gt)}else u.value&&(u.value.value="")}return Vt(z,()=>{if(!n.hideSelected&&z.value&&D.value.length){const wt=W.value.findIndex(gt=>D.value.some(It=>gt.value===It.value));Me&&window.requestAnimationFrame(()=>{var gt;wt>=0&&((gt=v.value)==null||gt.scrollToIndex(wt))})}}),Lt(()=>{const wt=!!(n.chips||r.chip),gt=!!(!n.hideNoData||W.value.length||r["prepend-item"]||r["append-item"]||r["no-data"]),It=B.value.length>0,[$t]=vr.filterProps(n),Tt=It||!Y.value&&n.label&&!n.persistentPlaceholder?void 0:n.placeholder;return t(vr,o({ref:u},$t,{modelValue:B.value.map(Ft=>Ft.props.value).join(", "),"onUpdate:modelValue":xt,focused:Y.value,"onUpdate:focused":Ft=>Y.value=Ft,validationValue:B.externalValue,dirty:It,class:["v-select",{"v-select--active-menu":z.value,"v-select--chips":!!n.chips,[`v-select--${n.multiple?"multiple":"single"}`]:!0,"v-select--selected":B.value.length,"v-select--selection-slot":!!r.selection},n.class],style:n.style,inputmode:"none",placeholder:Tt,"onClick:clear":G,"onMousedown:control":et,onBlur:ht,onKeydown:st,"aria-label":h(O.value),title:h(O.value)}),{...r,default:()=>t(Zt,null,[t(Xa,o({ref:g,modelValue:z.value,"onUpdate:modelValue":Ft=>z.value=Ft,activator:"parent",contentClass:"v-select__content",disabled:_.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:dt},n.menuProps),{default:()=>[gt&&t(_a,{ref:tt,selected:E.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:Ft=>Ft.preventDefault(),onKeydown:q,onFocusin:Ct,onScrollPassive:nt,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var Ft,Kt,Qt;return[(Ft=r["prepend-item"])==null?void 0:Ft.call(r),!W.value.length&&!n.hideNoData&&(((Kt=r["no-data"])==null?void 0:Kt.call(r))??t(gl,{title:h(n.noDataText)},null)),t(Ua,{ref:v,renderless:!0,items:W.value},{default:Rt=>{var bt;let{item:ut,index:pt,itemRef:Ht}=Rt;const Nt=o(ut.props,{ref:Ht,key:pt,onClick:()=>rt(ut)});return((bt=r.item)==null?void 0:bt.call(r,{item:ut,index:pt,props:Nt}))??t(gl,Nt,{prepend:ft=>{let{isSelected:J}=ft;return t(Zt,null,[n.multiple&&!n.hideSelected?t(Qr,{key:ut.value,modelValue:J,ripple:!1,tabindex:"-1"},null):void 0,ut.props.prependIcon&&t(be,{icon:ut.props.prependIcon},null)])}})}}),(Qt=r["append-item"])==null?void 0:Qt.call(r)]}})]}),D.value.map((Ft,Kt)=>{var ut;function Qt(pt){pt.stopPropagation(),pt.preventDefault(),rt(Ft)}const Rt={"onClick:close":Qt,onMousedown(pt){pt.preventDefault(),pt.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:Ft.value,class:"v-select__selection"},[wt?r.chip?t(fe,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:Ft.title}}},{default:()=>{var pt;return[(pt=r.chip)==null?void 0:pt.call(r,{item:Ft,index:Kt,props:Rt})]}}):t(ws,o({key:"chip",closable:n.closableChips,size:"small",text:Ft.title},Rt),null):((ut=r.selection)==null?void 0:ut.call(r,{item:Ft,index:Kt}))??t("span",{class:"v-select__selection-text"},[Ft.title,n.multiple&&Ktn==null||l==null?-1:n.toString().toLocaleLowerCase().indexOf(l.toString().toLocaleLowerCase()),Tp=mt({customFilter:Function,customKeyFilter:Object,filterKeys:[Array,String],filterMode:{type:String,default:"intersection"},noFilter:Boolean},"filter");function N6(n,l,r){var b;const h=[],u=(r==null?void 0:r.default)??H6,g=r!=null&&r.filterKeys?Bn(r.filterKeys):!1,v=Object.keys((r==null?void 0:r.customKeyFilter)??{}).length;if(!(n!=null&&n.length))return h;t:for(let z=0;zh!=null&&h.transform?He(l).map(h==null?void 0:h.transform):He(l));fn(()=>{const z=typeof r=="function"?r():He(r),C=typeof z!="string"&&typeof z!="number"?"":String(z),S=N6(v.value,C,{customKeyFilter:n.customKeyFilter,default:n.customFilter,filterKeys:n.filterKeys,filterMode:n.filterMode,noFilter:n.noFilter}),A=He(l),B=[],P=new Map;S.forEach(D=>{let{index:E,matches:Y}=D;const O=A[E];B.push(O),P.set(O.value,Y)}),u.value=B,g.value=P});function b(z){return g.value.get(z.value)}return{filteredItems:u,filteredMatches:g,getMatches:b}}function j6(n,l,r){if(l==null)return n;if(Array.isArray(l))throw new Error("Multiple matches is not implemented");return typeof l=="number"&&~l?t(Zt,null,[t("span",{class:"v-autocomplete__unmask"},[n.substr(0,l)]),t("span",{class:"v-autocomplete__mask"},[n.substr(l,r)]),t("span",{class:"v-autocomplete__unmask"},[n.substr(l+r)])]):n}const P6=mt({autoSelectFirst:{type:[Boolean,String]},search:String,...Tp({filterKeys:["title"]}),...Yh(),...jn(Ga({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...bl({transition:!1})},"VAutocomplete"),L6=At()({name:"VAutocomplete",props:P6(),emits:{"update:focused":n=>!0,"update:search":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Ln(),u=Pt(),g=_t(!1),v=_t(!0),b=_t(!1),z=Pt(),C=Pt(),S=ee(n,"menu"),A=X({get:()=>S.value,set:bt=>{var ft;S.value&&!bt&&((ft=z.value)!=null&&ft.ΨopenChildren)||(S.value=bt)}}),B=_t(-1),P=X(()=>{var bt;return(bt=u.value)==null?void 0:bt.color}),D=X(()=>A.value?n.closeText:n.openText),{items:E,transformIn:Y,transformOut:O}=_h(n),{textColorClasses:H,textColorStyles:U}=rn(P),W=ee(n,"search",""),_=ee(n,"modelValue",[],bt=>Y(bt===null?[null]:Bn(bt)),bt=>{const ft=O(bt);return n.multiple?ft:ft[0]??null}),tt=Va(),{filteredItems:nt,getMatches:q}=Rp(n,E,()=>v.value?"":W.value),G=X(()=>_.value.map(bt=>E.value.find(ft=>{const J=tn(ft.raw,n.itemValue),lt=tn(bt.raw,n.itemValue);return J===void 0||lt===void 0?!1:n.returnObject?n.valueComparator(J,lt):n.valueComparator(ft.value,bt.value)})||bt)),et=X(()=>n.hideSelected?nt.value.filter(bt=>!G.value.some(ft=>ft.value===bt.value)):nt.value),st=X(()=>G.value.map(bt=>bt.props.value)),rt=X(()=>G.value[B.value]),ht=X(()=>{var ft;return(n.autoSelectFirst===!0||n.autoSelectFirst==="exact"&&W.value===((ft=et.value[0])==null?void 0:ft.title))&&et.value.length>0&&!v.value&&!b.value}),dt=X(()=>n.hideNoData&&!E.value.length||n.readonly||(tt==null?void 0:tt.isReadonly.value)),Ct=Pt(),{onListScroll:xt,onListKeydown:wt}=qh(Ct,u);function gt(bt){n.openOnClear&&(A.value=!0),W.value=""}function It(){dt.value||(A.value=!0)}function $t(bt){dt.value||(g.value&&(bt.preventDefault(),bt.stopPropagation()),A.value=!A.value)}function Tt(bt){var lt,at,ct;if(n.readonly||tt!=null&&tt.isReadonly.value)return;const ft=u.value.selectionStart,J=st.value.length;if((B.value>-1||["Enter","ArrowDown","ArrowUp"].includes(bt.key))&&bt.preventDefault(),["Enter","ArrowDown"].includes(bt.key)&&(A.value=!0),["Escape"].includes(bt.key)&&(A.value=!1),ht.value&&["Enter","Tab"].includes(bt.key)&&Nt(et.value[0]),bt.key==="ArrowDown"&&ht.value&&((lt=Ct.value)==null||lt.focus("next")),!!n.multiple){if(["Backspace","Delete"].includes(bt.key)){if(B.value<0){bt.key==="Backspace"&&!W.value&&(B.value=J-1);return}const kt=B.value;rt.value&&Nt(rt.value),B.value=kt>=J-1?J-2:kt}if(bt.key==="ArrowLeft"){if(B.value<0&&ft>0)return;const kt=B.value>-1?B.value-1:J-1;G.value[kt]?B.value=kt:(B.value=-1,u.value.setSelectionRange((at=W.value)==null?void 0:at.length,(ct=W.value)==null?void 0:ct.length))}if(bt.key==="ArrowRight"){if(B.value<0)return;const kt=B.value+1;G.value[kt]?B.value=kt:(B.value=-1,u.value.setSelectionRange(0,0))}}}function Ft(bt){W.value=bt.target.value}function Kt(bt){if(Ur(u.value,":autofill")||Ur(u.value,":-webkit-autofill")){const ft=E.value.find(J=>J.title===bt.target.value);ft&&Nt(ft)}}function Qt(){var bt;g.value&&(v.value=!0,(bt=u.value)==null||bt.focus())}function Rt(bt){g.value=!0,setTimeout(()=>{b.value=!0})}function ut(bt){b.value=!1}function pt(bt){(bt==null||bt===""&&!n.multiple)&&(_.value=[])}const Ht=_t(!1);function Nt(bt){if(n.multiple){const ft=st.value.findIndex(J=>n.valueComparator(J,bt.value));if(ft===-1)_.value=[..._.value,bt];else{const J=[..._.value];J.splice(ft,1),_.value=J}}else _.value=[bt],Ht.value=!0,W.value=bt.title,A.value=!1,v.value=!0,pe(()=>Ht.value=!1)}return Vt(g,(bt,ft)=>{var J;bt!==ft&&(bt?(Ht.value=!0,W.value=n.multiple?"":String(((J=G.value.at(-1))==null?void 0:J.props.title)??""),v.value=!0,pe(()=>Ht.value=!1)):(!n.multiple&&!W.value?_.value=[]:ht.value&&!b.value&&!G.value.some(lt=>{let{value:at}=lt;return at===et.value[0].value})&&Nt(et.value[0]),A.value=!1,W.value="",B.value=-1))}),Vt(W,bt=>{!g.value||Ht.value||(bt&&(A.value=!0),v.value=!bt)}),Vt(A,()=>{if(!n.hideSelected&&A.value&&G.value.length){const bt=et.value.findIndex(ft=>G.value.some(J=>ft.value===J.value));Me&&window.requestAnimationFrame(()=>{var ft;bt>=0&&((ft=C.value)==null||ft.scrollToIndex(bt))})}}),Lt(()=>{const bt=!!(n.chips||r.chip),ft=!!(!n.hideNoData||et.value.length||r["prepend-item"]||r["append-item"]||r["no-data"]),J=_.value.length>0,[lt]=vr.filterProps(n);return t(vr,o({ref:u},lt,{modelValue:W.value,"onUpdate:modelValue":pt,focused:g.value,"onUpdate:focused":at=>g.value=at,validationValue:_.externalValue,dirty:J,onInput:Ft,onChange:Kt,class:["v-autocomplete",`v-autocomplete--${n.multiple?"multiple":"single"}`,{"v-autocomplete--active-menu":A.value,"v-autocomplete--chips":!!n.chips,"v-autocomplete--selection-slot":!!r.selection,"v-autocomplete--selecting-index":B.value>-1},n.class],style:n.style,readonly:n.readonly,placeholder:J?void 0:n.placeholder,"onClick:clear":gt,"onMousedown:control":It,onKeydown:Tt}),{...r,default:()=>t(Zt,null,[t(Xa,o({ref:z,modelValue:A.value,"onUpdate:modelValue":at=>A.value=at,activator:"parent",contentClass:"v-autocomplete__content",disabled:dt.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:Qt},n.menuProps),{default:()=>[ft&&t(_a,{ref:Ct,selected:st.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:at=>at.preventDefault(),onKeydown:wt,onFocusin:Rt,onFocusout:ut,onScrollPassive:xt,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var at,ct,kt;return[(at=r["prepend-item"])==null?void 0:at.call(r),!et.value.length&&!n.hideNoData&&(((ct=r["no-data"])==null?void 0:ct.call(r))??t(gl,{title:h(n.noDataText)},null)),t(Ua,{ref:C,renderless:!0,items:et.value},{default:yt=>{var Ut;let{item:Dt,index:St,itemRef:Ot}=yt;const jt=o(Dt.props,{ref:Ot,key:St,active:ht.value&&St===0?!0:void 0,onClick:()=>Nt(Dt)});return((Ut=r.item)==null?void 0:Ut.call(r,{item:Dt,index:St,props:jt}))??t(gl,jt,{prepend:Yt=>{let{isSelected:Gt}=Yt;return t(Zt,null,[n.multiple&&!n.hideSelected?t(Qr,{key:Dt.value,modelValue:Gt,ripple:!1,tabindex:"-1"},null):void 0,Dt.props.prependIcon&&t(be,{icon:Dt.props.prependIcon},null)])},title:()=>{var Yt,Gt;return v.value?Dt.title:j6(Dt.title,(Yt=q(Dt))==null?void 0:Yt.title,((Gt=W.value)==null?void 0:Gt.length)??0)}})}}),(kt=r["append-item"])==null?void 0:kt.call(r)]}})]}),G.value.map((at,ct)=>{var Dt;function kt(St){St.stopPropagation(),St.preventDefault(),Nt(at)}const yt={"onClick:close":kt,onMousedown(St){St.preventDefault(),St.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:at.value,class:["v-autocomplete__selection",ct===B.value&&["v-autocomplete__selection--selected",H.value]],style:ct===B.value?U.value:{}},[bt?r.chip?t(fe,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:at.title}}},{default:()=>{var St;return[(St=r.chip)==null?void 0:St.call(r,{item:at,index:ct,props:yt})]}}):t(ws,o({key:"chip",closable:n.closableChips,size:"small",text:at.title},yt),null):((Dt=r.selection)==null?void 0:Dt.call(r,{item:at,index:ct}))??t("span",{class:"v-autocomplete__selection-text"},[at.title,n.multiple&&ct(n.floating?n.dot?2:4:n.dot?8:12)+(["top","bottom"].includes(S)?+(n.offsetY??0):["left","right"].includes(S)?+(n.offsetX??0):0));return Lt(()=>{const S=Number(n.content),A=!n.max||isNaN(S)?n.content:S<=+n.max?S:`${n.max}+`,[B,P]=pr(l.attrs,["aria-atomic","aria-label","aria-live","role","title"]);return t(n.tag,o({class:["v-badge",{"v-badge--bordered":n.bordered,"v-badge--dot":n.dot,"v-badge--floating":n.floating,"v-badge--inline":n.inline},n.class]},P,{style:n.style}),{default:()=>{var D,E;return[t("div",{class:"v-badge__wrapper"},[(E=(D=l.slots).default)==null?void 0:E.call(D),t(Wn,{transition:n.transition},{default:()=>{var Y,O;return[Ce(t("span",o({class:["v-badge__badge",z.value,r.value,u.value,v.value],style:[h.value,b.value,n.inline?{}:C.value],"aria-atomic":"true","aria-label":g(n.label,S),"aria-live":"polite",role:"status"},B),[n.dot?void 0:l.slots.badge?(O=(Y=l.slots).badge)==null?void 0:O.call(Y):n.icon?t(be,{icon:n.icon},null):A]),[[Nn,n.modelValue]])]}})])]}})}),{}}});const O6=mt({color:String,density:String,...Wt()},"VBannerActions"),Ep=At()({name:"VBannerActions",props:O6(),setup(n,l){let{slots:r}=l;return Fe({VBtn:{color:n.color,density:n.density,variant:"text"}}),Lt(()=>{var h;return t("div",{class:["v-banner-actions",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}}),Vp=Gn("v-banner-text"),T6=mt({avatar:String,color:String,icon:te,lines:String,stacked:Boolean,sticky:Boolean,text:String,...Cn(),...Wt(),...Ee(),...Dn(),...Re(),...Wl(),...ho(),...Ie(),...le(),...ce()},"VBanner"),R6=At()({name:"VBanner",props:T6(),setup(n,l){let{slots:r}=l;const{borderClasses:h}=On(n),{densityClasses:u}=sn(n),{mobile:g}=Mr(),{dimensionStyles:v}=Fn(n),{elevationClasses:b}=Ze(n),{locationStyles:z}=Xl(n),{positionClasses:C}=co(n),{roundedClasses:S}=Be(n),{themeClasses:A}=ge(n),B=Bt(n,"color"),P=Bt(n,"density");Fe({VBannerActions:{color:B,density:P}}),Lt(()=>{const D=!!(n.text||r.text),E=!!(n.avatar||n.icon),Y=!!(E||r.prepend);return t(n.tag,{class:["v-banner",{"v-banner--stacked":n.stacked||g.value,"v-banner--sticky":n.sticky,[`v-banner--${n.lines}-line`]:!!n.lines},h.value,u.value,b.value,C.value,S.value,A.value,n.class],style:[v.value,z.value,n.style],role:"banner"},{default:()=>{var O;return[Y&&t("div",{key:"prepend",class:"v-banner__prepend"},[r.prepend?t(fe,{key:"prepend-defaults",disabled:!E,defaults:{VAvatar:{color:B.value,density:P.value,icon:n.icon,image:n.avatar}}},r.prepend):t(_l,{key:"prepend-avatar",color:B.value,density:P.value,icon:n.icon,image:n.avatar},null)]),t("div",{class:"v-banner__content"},[D&&t(Vp,{key:"text"},{default:()=>{var H;return[((H=r.text)==null?void 0:H.call(r))??n.text]}}),(O=r.default)==null?void 0:O.call(r)]),r.actions&&t(Ep,{key:"actions"},r.actions)]}})})}});const E6=mt({bgColor:String,color:String,grow:Boolean,mode:{type:String,validator:n=>!n||["horizontal","shift"].includes(n)},height:{type:[Number,String],default:56},active:{type:Boolean,default:!0},...Cn(),...Wt(),...Ee(),...Re(),...Ie(),...lo({name:"bottom-navigation"}),...le({tag:"header"}),...oo({modelValue:!0,selectedClass:"v-btn--selected"}),...ce()},"VBottomNavigation"),V6=At()({name:"VBottomNavigation",props:E6(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=Lu(),{borderClasses:u}=On(n),{backgroundColorClasses:g,backgroundColorStyles:v}=Ne(Bt(n,"bgColor")),{densityClasses:b}=sn(n),{elevationClasses:z}=Ze(n),{roundedClasses:C}=Be(n),{ssrBootStyles:S}=xr(),A=X(()=>Number(n.height)-(n.density==="comfortable"?8:0)-(n.density==="compact"?16:0)),B=Bt(n,"active"),{layoutItemStyles:P}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:X(()=>"bottom"),layoutSize:X(()=>B.value?A.value:0),elementSize:A,active:B,absolute:Bt(n,"absolute")});return yr(n,Ph),Fe({VBtn:{color:Bt(n,"color"),density:Bt(n,"density"),stacked:X(()=>n.mode!=="horizontal"),variant:"text"}},{scoped:!0}),Lt(()=>t(n.tag,{class:["v-bottom-navigation",{"v-bottom-navigation--active":B.value,"v-bottom-navigation--grow":n.grow,"v-bottom-navigation--shift":n.mode==="shift"},h.value,g.value,u.value,b.value,z.value,C.value,n.class],style:[v.value,P.value,{height:Xt(A.value),transform:`translateY(${Xt(B.value?0:100,"%")})`},S.value,n.style]},{default:()=>[r.default&&t("div",{class:"v-bottom-navigation__content"},[r.default()])]})),{}}});const _6=mt({divider:[Number,String],...Wt()},"VBreadcrumbsDivider"),_p=At()({name:"VBreadcrumbsDivider",props:_6(),setup(n,l){let{slots:r}=l;return Lt(()=>{var h;return t("li",{class:["v-breadcrumbs-divider",n.class],style:n.style},[((h=r==null?void 0:r.default)==null?void 0:h.call(r))??n.divider])}),{}}}),W6=mt({active:Boolean,activeClass:String,activeColor:String,color:String,disabled:Boolean,title:String,...Wt(),...gs(),...le({tag:"li"})},"VBreadcrumbsItem"),Wp=At()({name:"VBreadcrumbsItem",props:W6(),setup(n,l){let{slots:r,attrs:h}=l;const u=ps(n,h),g=X(()=>{var C;return n.active||((C=u.isActive)==null?void 0:C.value)}),v=X(()=>g.value?n.activeColor:n.color),{textColorClasses:b,textColorStyles:z}=rn(v);return Lt(()=>t(n.tag,{class:["v-breadcrumbs-item",{"v-breadcrumbs-item--active":g.value,"v-breadcrumbs-item--disabled":n.disabled,[`${n.activeClass}`]:g.value&&n.activeClass},b.value,n.class],style:[z.value,n.style],"aria-current":g.value?"page":void 0},{default:()=>{var C,S;return[u.isLink.value?t("a",{class:"v-breadcrumbs-item--link",href:u.href.value,"aria-current":g.value?"page":void 0,onClick:u.navigate},[((S=r.default)==null?void 0:S.call(r))??n.title]):((C=r.default)==null?void 0:C.call(r))??n.title]}})),{}}}),X6=mt({activeClass:String,activeColor:String,bgColor:String,color:String,disabled:Boolean,divider:{type:String,default:"/"},icon:te,items:{type:Array,default:()=>[]},...Wt(),...Ee(),...Ie(),...le({tag:"ul"})},"VBreadcrumbs"),q6=At()({name:"VBreadcrumbs",props:X6(),setup(n,l){let{slots:r}=l;const{backgroundColorClasses:h,backgroundColorStyles:u}=Ne(Bt(n,"bgColor")),{densityClasses:g}=sn(n),{roundedClasses:v}=Be(n);Fe({VBreadcrumbsDivider:{divider:Bt(n,"divider")},VBreadcrumbsItem:{activeClass:Bt(n,"activeClass"),activeColor:Bt(n,"activeColor"),color:Bt(n,"color"),disabled:Bt(n,"disabled")}});const b=X(()=>n.items.map(z=>typeof z=="string"?{item:{title:z},raw:z}:{item:z,raw:z}));return Lt(()=>{const z=!!(r.prepend||n.icon);return t(n.tag,{class:["v-breadcrumbs",h.value,g.value,v.value,n.class],style:[u.value,n.style]},{default:()=>{var C;return[z&&t("li",{key:"prepend",class:"v-breadcrumbs__prepend"},[r.prepend?t(fe,{key:"prepend-defaults",disabled:!n.icon,defaults:{VIcon:{icon:n.icon,start:!0}}},r.prepend):t(be,{key:"prepend-icon",start:!0,icon:n.icon},null)]),b.value.map((S,A,B)=>{let{item:P,raw:D}=S;return t(Zt,null,[t(Wp,o({key:P.title,disabled:A>=B.length-1},P),{default:r.title?()=>{var E;return(E=r.title)==null?void 0:E.call(r,{item:D,index:A})}:void 0}),A{var E;return(E=r.divider)==null?void 0:E.call(r,{item:D,index:A})}:void 0})])}),(C=r.default)==null?void 0:C.call(r)]}})}),{}}});const Xp=At()({name:"VCardActions",props:Wt(),setup(n,l){let{slots:r}=l;return Fe({VBtn:{variant:"text"}}),Lt(()=>{var h;return t("div",{class:["v-card-actions",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}}),qp=Gn("v-card-subtitle"),Yp=Gn("v-card-title"),Y6=mt({appendAvatar:String,appendIcon:te,prependAvatar:String,prependIcon:te,subtitle:String,title:String,...Wt(),...Ee()},"VCardItem"),Gp=At()({name:"VCardItem",props:Y6(),setup(n,l){let{slots:r}=l;return Lt(()=>{var C;const h=!!(n.prependAvatar||n.prependIcon),u=!!(h||r.prepend),g=!!(n.appendAvatar||n.appendIcon),v=!!(g||r.append),b=!!(n.title||r.title),z=!!(n.subtitle||r.subtitle);return t("div",{class:["v-card-item",n.class],style:n.style},[u&&t("div",{key:"prepend",class:"v-card-item__prepend"},[r.prepend?t(fe,{key:"prepend-defaults",disabled:!h,defaults:{VAvatar:{density:n.density,icon:n.prependIcon,image:n.prependAvatar}}},r.prepend):h&&t(_l,{key:"prepend-avatar",density:n.density,icon:n.prependIcon,image:n.prependAvatar},null)]),t("div",{class:"v-card-item__content"},[b&&t(Yp,{key:"title"},{default:()=>{var S;return[((S=r.title)==null?void 0:S.call(r))??n.title]}}),z&&t(qp,{key:"subtitle"},{default:()=>{var S;return[((S=r.subtitle)==null?void 0:S.call(r))??n.subtitle]}}),(C=r.default)==null?void 0:C.call(r)]),v&&t("div",{key:"append",class:"v-card-item__append"},[r.append?t(fe,{key:"append-defaults",disabled:!g,defaults:{VAvatar:{density:n.density,icon:n.appendIcon,image:n.appendAvatar}}},r.append):g&&t(_l,{key:"append-avatar",density:n.density,icon:n.appendIcon,image:n.appendAvatar},null)])])}),{}}}),Up=Gn("v-card-text"),G6=mt({appendAvatar:String,appendIcon:te,disabled:Boolean,flat:Boolean,hover:Boolean,image:String,link:{type:Boolean,default:void 0},prependAvatar:String,prependIcon:te,ripple:{type:[Boolean,Object],default:!0},subtitle:String,text:String,title:String,...Cn(),...Wt(),...Ee(),...Dn(),...Re(),...Oh(),...Wl(),...ho(),...Ie(),...gs(),...le(),...ce(),...Tn({variant:"elevated"})},"VCard"),U6=At()({name:"VCard",directives:{Ripple:ql},props:G6(),setup(n,l){let{attrs:r,slots:h}=l;const{themeClasses:u}=ge(n),{borderClasses:g}=On(n),{colorClasses:v,colorStyles:b,variantClasses:z}=Ir(n),{densityClasses:C}=sn(n),{dimensionStyles:S}=Fn(n),{elevationClasses:A}=Ze(n),{loaderClasses:B}=Ta(n),{locationStyles:P}=Xl(n),{positionClasses:D}=co(n),{roundedClasses:E}=Be(n),Y=ps(n,r),O=X(()=>n.link!==!1&&Y.isLink.value),H=X(()=>!n.disabled&&n.link!==!1&&(n.link||Y.isClickable.value));return Lt(()=>{const U=O.value?"a":n.tag,W=!!(h.title||n.title),_=!!(h.subtitle||n.subtitle),tt=W||_,nt=!!(h.append||n.appendAvatar||n.appendIcon),q=!!(h.prepend||n.prependAvatar||n.prependIcon),G=!!(h.image||n.image),et=tt||q||nt,st=!!(h.text||n.text);return Ce(t(U,{class:["v-card",{"v-card--disabled":n.disabled,"v-card--flat":n.flat,"v-card--hover":n.hover&&!(n.disabled||n.flat),"v-card--link":H.value},u.value,g.value,v.value,C.value,A.value,B.value,D.value,E.value,z.value,n.class],style:[b.value,S.value,P.value,n.style],href:Y.href.value,onClick:H.value&&Y.navigate,tabindex:n.disabled?-1:void 0},{default:()=>{var rt;return[G&&t("div",{key:"image",class:"v-card__image"},[h.image?t(fe,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},h.image):t(gr,{key:"image-img",cover:!0,src:n.image},null)]),t(Th,{name:"v-card",active:!!n.loading,color:typeof n.loading=="boolean"?void 0:n.loading},{default:h.loader}),et&&t(Gp,{key:"item",prependAvatar:n.prependAvatar,prependIcon:n.prependIcon,title:n.title,subtitle:n.subtitle,appendAvatar:n.appendAvatar,appendIcon:n.appendIcon},{default:h.item,prepend:h.prepend,title:h.title,subtitle:h.subtitle,append:h.append}),st&&t(Up,{key:"text"},{default:()=>{var ht;return[((ht=h.text)==null?void 0:ht.call(h))??n.text]}}),(rt=h.default)==null?void 0:rt.call(h),h.actions&&t(Xp,null,{default:h.actions}),zr(H.value,"v-card")]}}),[[mn("ripple"),H.value&&n.ripple]])}),{}}});const Z6=n=>{const{touchstartX:l,touchendX:r,touchstartY:h,touchendY:u}=n,g=.5,v=16;n.offsetX=r-l,n.offsetY=u-h,Math.abs(n.offsetY)l+v&&n.right(n)),Math.abs(n.offsetX)h+v&&n.down(n))};function K6(n,l){var h;const r=n.changedTouches[0];l.touchstartX=r.clientX,l.touchstartY=r.clientY,(h=l.start)==null||h.call(l,{originalEvent:n,...l})}function Q6(n,l){var h;const r=n.changedTouches[0];l.touchendX=r.clientX,l.touchendY=r.clientY,(h=l.end)==null||h.call(l,{originalEvent:n,...l}),Z6(l)}function J6(n,l){var h;const r=n.changedTouches[0];l.touchmoveX=r.clientX,l.touchmoveY=r.clientY,(h=l.move)==null||h.call(l,{originalEvent:n,...l})}function t7(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const l={touchstartX:0,touchstartY:0,touchendX:0,touchendY:0,touchmoveX:0,touchmoveY:0,offsetX:0,offsetY:0,left:n.left,right:n.right,up:n.up,down:n.down,start:n.start,move:n.move,end:n.end};return{touchstart:r=>K6(r,l),touchend:r=>Q6(r,l),touchmove:r=>J6(r,l)}}function e7(n,l){var b;const r=l.value,h=r!=null&&r.parent?n.parentElement:n,u=(r==null?void 0:r.options)??{passive:!0},g=(b=l.instance)==null?void 0:b.$.uid;if(!h||!g)return;const v=t7(l.value);h._touchHandlers=h._touchHandlers??Object.create(null),h._touchHandlers[g]=v,pu(v).forEach(z=>{h.addEventListener(z,v[z],u)})}function n7(n,l){var g,v;const r=(g=l.value)!=null&&g.parent?n.parentElement:n,h=(v=l.instance)==null?void 0:v.$.uid;if(!(r!=null&&r._touchHandlers)||!h)return;const u=r._touchHandlers[h];pu(u).forEach(b=>{r.removeEventListener(b,u[b])}),delete r._touchHandlers[h]}const Gh={mounted:e7,unmounted:n7},l7=Gh,Zp=Symbol.for("vuetify:v-window"),Kp=Symbol.for("vuetify:v-window-group"),Qp=mt({continuous:Boolean,nextIcon:{type:[Boolean,String,Function,Object],default:"$next"},prevIcon:{type:[Boolean,String,Function,Object],default:"$prev"},reverse:Boolean,showArrows:{type:[Boolean,String],validator:n=>typeof n=="boolean"||n==="hover"},touch:{type:[Object,Boolean],default:void 0},direction:{type:String,default:"horizontal"},modelValue:null,disabled:Boolean,selectedClass:{type:String,default:"v-window-item--active"},mandatory:{type:[Boolean,String],default:"force"},...Wt(),...le(),...ce()},"VWindow"),x0=At()({name:"VWindow",directives:{Touch:Gh},props:Qp(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{isRtl:u}=Xe(),{t:g}=Ln(),v=yr(n,Kp),b=Pt(),z=X(()=>u.value?!n.reverse:n.reverse),C=_t(!1),S=X(()=>{const W=n.direction==="vertical"?"y":"x",tt=(z.value?!C.value:C.value)?"-reverse":"";return`v-window-${W}${tt}-transition`}),A=_t(0),B=Pt(void 0),P=X(()=>v.items.value.findIndex(W=>v.selected.value.includes(W.id)));Vt(P,(W,_)=>{const tt=v.items.value.length,nt=tt-1;tt<=2?C.value=W<_:W===nt&&_===0?C.value=!0:W===0&&_===nt?C.value=!1:C.value=W<_}),ye(Zp,{transition:S,isReversed:C,transitionCount:A,transitionHeight:B,rootRef:b});const D=X(()=>n.continuous||P.value!==0),E=X(()=>n.continuous||P.value!==v.items.value.length-1);function Y(){D.value&&v.prev()}function O(){E.value&&v.next()}const H=X(()=>{const W=[],_={icon:u.value?n.nextIcon:n.prevIcon,class:`v-window__${z.value?"right":"left"}`,onClick:v.prev,ariaLabel:g("$vuetify.carousel.prev")};W.push(D.value?r.prev?r.prev({props:_}):t(dn,_,null):t("div",null,null));const tt={icon:u.value?n.prevIcon:n.nextIcon,class:`v-window__${z.value?"left":"right"}`,onClick:v.next,ariaLabel:g("$vuetify.carousel.next")};return W.push(E.value?r.next?r.next({props:tt}):t(dn,tt,null):t("div",null,null)),W}),U=X(()=>n.touch===!1?n.touch:{...{left:()=>{z.value?Y():O()},right:()=>{z.value?O():Y()},start:_=>{let{originalEvent:tt}=_;tt.stopPropagation()}},...n.touch===!0?{}:n.touch});return Lt(()=>Ce(t(n.tag,{ref:b,class:["v-window",{"v-window--show-arrows-on-hover":n.showArrows==="hover"},h.value,n.class],style:n.style},{default:()=>{var W,_;return[t("div",{class:"v-window__container",style:{height:B.value}},[(W=r.default)==null?void 0:W.call(r,{group:v}),n.showArrows!==!1&&t("div",{class:"v-window__controls"},[H.value])]),(_=r.additional)==null?void 0:_.call(r,{group:v})]}}),[[mn("touch"),U.value]])),{group:v}}}),r7=mt({color:String,cycle:Boolean,delimiterIcon:{type:te,default:"$delimiter"},height:{type:[Number,String],default:500},hideDelimiters:Boolean,hideDelimiterBackground:Boolean,interval:{type:[Number,String],default:6e3,validator:n=>Number(n)>0},progress:[Boolean,String],verticalDelimiters:[Boolean,String],...Qp({continuous:!0,mandatory:"force",showArrows:!0})},"VCarousel"),o7=At()({name:"VCarousel",props:r7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{t:u}=Ln(),g=Pt();let v=-1;Vt(h,z),Vt(()=>n.interval,z),Vt(()=>n.cycle,C=>{C?z():window.clearTimeout(v)}),Te(b);function b(){!n.cycle||!g.value||(v=window.setTimeout(g.value.group.next,+n.interval>0?+n.interval:6e3))}function z(){window.clearTimeout(v),window.requestAnimationFrame(b)}return Lt(()=>{const[C]=x0.filterProps(n);return t(x0,o({ref:g},C,{modelValue:h.value,"onUpdate:modelValue":S=>h.value=S,class:["v-carousel",{"v-carousel--hide-delimiter-background":n.hideDelimiterBackground,"v-carousel--vertical-delimiters":n.verticalDelimiters},n.class],style:[{height:Xt(n.height)},n.style]}),{default:r.default,additional:S=>{let{group:A}=S;return t(Zt,null,[!n.hideDelimiters&&t("div",{class:"v-carousel__controls",style:{left:n.verticalDelimiters==="left"&&n.verticalDelimiters?0:"auto",right:n.verticalDelimiters==="right"?0:"auto"}},[A.items.value.length>0&&t(fe,{defaults:{VBtn:{color:n.color,icon:n.delimiterIcon,size:"x-small",variant:"text"}},scoped:!0},{default:()=>[A.items.value.map((B,P)=>{const D={id:`carousel-item-${B.id}`,"aria-label":u("$vuetify.carousel.ariaLabel.delimiter",P+1,A.items.value.length),class:[A.isSelected(B.id)&&"v-btn--active"],onClick:()=>A.select(B.id,!0)};return r.item?r.item({props:D,item:B}):t(dn,o(B,D),null)})]})]),n.progress&&t(Fh,{class:"v-carousel__progress",color:typeof n.progress=="string"?n.progress:void 0,modelValue:(A.getItemIndex(h.value)+1)/A.items.value.length*100},null)])},prev:r.prev,next:r.next})}),{}}}),Jp=mt({reverseTransition:{type:[Boolean,String],default:void 0},transition:{type:[Boolean,String],default:void 0},...Wt(),...so(),...Wa()},"VWindowItem"),z0=At()({name:"VWindowItem",directives:{Touch:l7},props:Jp(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=he(Zp),u=ao(n,Kp),{isBooted:g}=xr();if(!h||!u)throw new Error("[Vuetify] VWindowItem must be used inside VWindow");const v=_t(!1),b=X(()=>g.value&&(h.isReversed.value?n.reverseTransition!==!1:n.transition!==!1));function z(){!v.value||!h||(v.value=!1,h.transitionCount.value>0&&(h.transitionCount.value-=1,h.transitionCount.value===0&&(h.transitionHeight.value=void 0)))}function C(){var D;v.value||!h||(v.value=!0,h.transitionCount.value===0&&(h.transitionHeight.value=Xt((D=h.rootRef.value)==null?void 0:D.clientHeight)),h.transitionCount.value+=1)}function S(){z()}function A(D){v.value&&pe(()=>{!b.value||!v.value||!h||(h.transitionHeight.value=Xt(D.clientHeight))})}const B=X(()=>{const D=h.isReversed.value?n.reverseTransition:n.transition;return b.value?{name:typeof D!="string"?h.transition.value:D,onBeforeEnter:C,onAfterEnter:z,onEnterCancelled:S,onBeforeLeave:C,onAfterLeave:z,onLeaveCancelled:S,onEnter:A}:!1}),{hasContent:P}=Wh(n,u.isSelected);return Lt(()=>t(Wn,{transition:B.value,disabled:!g.value},{default:()=>{var D;return[Ce(t("div",{class:["v-window-item",u.selectedClass.value,n.class],style:n.style},[P.value&&((D=r.default)==null?void 0:D.call(r))]),[[Nn,u.isSelected.value]])]}})),{groupItem:u}}}),s7=mt({...Gu(),...Jp()},"VCarouselItem"),a7=At()({name:"VCarouselItem",inheritAttrs:!1,props:s7(),setup(n,l){let{slots:r,attrs:h}=l;Lt(()=>{const[u]=gr.filterProps(n),[g]=z0.filterProps(n);return t(z0,o({class:"v-carousel-item"},g),{default:()=>[t(gr,o(h,u),r)]})})}});const i7=Gn("v-code");const h7=mt({color:{type:Object},disabled:Boolean,dotSize:{type:[Number,String],default:10},height:{type:[Number,String],default:150},width:{type:[Number,String],default:300},...Wt()},"VColorPickerCanvas"),d7=Pn({name:"VColorPickerCanvas",props:h7(),emits:{"update:color":n=>!0,"update:position":n=>!0},setup(n,l){let{emit:r}=l;const h=_t(!1),u=_t(!1),g=Pt({x:0,y:0}),v=X(()=>{const{x:O,y:H}=g.value,U=parseInt(n.dotSize,10)/2;return{width:Xt(n.dotSize),height:Xt(n.dotSize),transform:`translate(${Xt(O-U)}, ${Xt(H-U)})`}}),b=Pt(),z=_t(parseFloat(n.width)),C=_t(parseFloat(n.height)),{resizeRef:S}=el(O=>{var W;if(!((W=S.value)!=null&&W.offsetParent))return;const{width:H,height:U}=O[0].contentRect;z.value=H,C.value=U});function A(O,H,U){const{left:W,top:_,width:tt,height:nt}=U;g.value={x:en(O-W,0,tt),y:en(H-_,0,nt)}}function B(O){n.disabled||!b.value||A(O.clientX,O.clientY,b.value.getBoundingClientRect())}function P(O){O.preventDefault(),!n.disabled&&(h.value=!0,window.addEventListener("mousemove",D),window.addEventListener("mouseup",E),window.addEventListener("touchmove",D),window.addEventListener("touchend",E))}function D(O){if(n.disabled||!b.value)return;h.value=!0;const H=o5(O);A(H.clientX,H.clientY,b.value.getBoundingClientRect())}function E(){window.removeEventListener("mousemove",D),window.removeEventListener("mouseup",E),window.removeEventListener("touchmove",D),window.removeEventListener("touchend",E)}Vt(g,()=>{var U,W;if(u.value){u.value=!1;return}if(!b.value)return;const{x:O,y:H}=g.value;r("update:color",{h:((U=n.color)==null?void 0:U.h)??0,s:en(O,0,z.value)/z.value,v:1-en(H,0,C.value)/C.value,a:((W=n.color)==null?void 0:W.a)??1})});function Y(){var _;if(!b.value)return;const O=b.value,H=O.getContext("2d");if(!H)return;const U=H.createLinearGradient(0,0,O.width,0);U.addColorStop(0,"hsla(0, 0%, 100%, 1)"),U.addColorStop(1,`hsla(${((_=n.color)==null?void 0:_.h)??0}, 100%, 50%, 1)`),H.fillStyle=U,H.fillRect(0,0,O.width,O.height);const W=H.createLinearGradient(0,0,0,O.height);W.addColorStop(0,"hsla(0, 0%, 100%, 0)"),W.addColorStop(1,"hsla(0, 0%, 0%, 1)"),H.fillStyle=W,H.fillRect(0,0,O.width,O.height)}return Vt(()=>{var O;return(O=n.color)==null?void 0:O.h},Y,{immediate:!0}),Vt(()=>[z.value,C.value],(O,H)=>{Y(),g.value={x:g.value.x*O[0]/H[0],y:g.value.y*O[1]/H[1]}},{flush:"post"}),Vt(()=>n.color,()=>{if(h.value){h.value=!1;return}u.value=!0,g.value=n.color?{x:n.color.s*z.value,y:(1-n.color.v)*C.value}:{x:0,y:0}},{deep:!0,immediate:!0}),Te(()=>Y()),Lt(()=>t("div",{ref:S,class:["v-color-picker-canvas",n.class],style:n.style,onClick:B,onMousedown:P,onTouchstart:P},[t("canvas",{ref:b,width:z.value,height:C.value},null),n.color&&t("div",{class:["v-color-picker-canvas__dot",{"v-color-picker-canvas__dot--disabled":n.disabled}],style:v.value},null)])),{}}});function c7(n,l){if(l){const{a:r,...h}=n;return h}return n}function u7(n,l){if(l==null||typeof l=="string"){const r=$u(n);return n.a===1?r.slice(0,7):r}if(typeof l=="object"){let r;return lr(l,["r","g","b"])?r=pl(n):lr(l,["h","s","l"])?r=zu(n):lr(l,["h","s","v"])&&(r=n),c7(r,!lr(l,["a"])&&n.a===1)}return n}const Do={h:0,s:0,v:1,a:1},I0={inputProps:{type:"number",min:0},inputs:[{label:"R",max:255,step:1,getValue:n=>Math.round(n.r),getColor:(n,l)=>({...n,r:Number(l)})},{label:"G",max:255,step:1,getValue:n=>Math.round(n.g),getColor:(n,l)=>({...n,g:Number(l)})},{label:"B",max:255,step:1,getValue:n=>Math.round(n.b),getColor:(n,l)=>({...n,b:Number(l)})},{label:"A",max:1,step:.01,getValue:n=>{let{a:l}=n;return l!=null?Math.round(l*100)/100:1},getColor:(n,l)=>({...n,a:Number(l)})}],to:pl,from:ja};var cd;const p7={...I0,inputs:(cd=I0.inputs)==null?void 0:cd.slice(0,3)},y0={inputProps:{type:"number",min:0},inputs:[{label:"H",max:360,step:1,getValue:n=>Math.round(n.h),getColor:(n,l)=>({...n,h:Number(l)})},{label:"S",max:1,step:.01,getValue:n=>Math.round(n.s*100)/100,getColor:(n,l)=>({...n,s:Number(l)})},{label:"L",max:1,step:.01,getValue:n=>Math.round(n.l*100)/100,getColor:(n,l)=>({...n,l:Number(l)})},{label:"A",max:1,step:.01,getValue:n=>{let{a:l}=n;return l!=null?Math.round(l*100)/100:1},getColor:(n,l)=>({...n,a:Number(l)})}],to:zu,from:zh},g7={...y0,inputs:y0.inputs.slice(0,3)},t4={inputProps:{type:"text"},inputs:[{label:"HEXA",getValue:n=>n,getColor:(n,l)=>l}],to:$u,from:I5},w7={...t4,inputs:[{label:"HEX",getValue:n=>n.slice(0,7),getColor:(n,l)=>l}]},hr={rgb:p7,rgba:I0,hsl:g7,hsla:y0,hex:w7,hexa:t4},v7=n=>{let{label:l,...r}=n;return t("div",{class:"v-color-picker-edit__input"},[t("input",r,null),t("span",null,[l])])},f7=mt({color:Object,disabled:Boolean,mode:{type:String,default:"rgba",validator:n=>Object.keys(hr).includes(n)},modes:{type:Array,default:()=>Object.keys(hr),validator:n=>Array.isArray(n)&&n.every(l=>Object.keys(hr).includes(l))},...Wt()},"VColorPickerEdit"),m7=Pn({name:"VColorPickerEdit",props:f7(),emits:{"update:color":n=>!0,"update:mode":n=>!0},setup(n,l){let{emit:r}=l;const h=X(()=>n.modes.map(g=>({...hr[g],name:g}))),u=X(()=>{var b;const g=h.value.find(z=>z.name===n.mode);if(!g)return[];const v=n.color?g.to(n.color):null;return(b=g.inputs)==null?void 0:b.map(z=>{let{getValue:C,getColor:S,...A}=z;return{...g.inputProps,...A,disabled:n.disabled,value:v&&C(v),onChange:B=>{const P=B.target;P&&r("update:color",g.from(S(v??Do,P.value)))}}})});return Lt(()=>{var g;return t("div",{class:["v-color-picker-edit",n.class],style:n.style},[(g=u.value)==null?void 0:g.map(v=>t(v7,v,null)),h.value.length>1&&t(dn,{icon:"$unfold",size:"x-small",variant:"plain",onClick:()=>{const v=h.value.findIndex(b=>b.name===n.mode);r("update:mode",h.value[(v+1)%h.value.length].name)}},null)])}),{}}});const Uh=Symbol.for("vuetify:v-slider");function C0(n,l,r){const h=r==="vertical",u=l.getBoundingClientRect(),g="touches"in n?n.touches[0]:n;return h?g.clientY-(u.top+u.height/2):g.clientX-(u.left+u.width/2)}function k7(n,l){return"touches"in n&&n.touches.length?n.touches[0][l]:"changedTouches"in n&&n.changedTouches.length?n.changedTouches[0][l]:n[l]}const e4=mt({disabled:{type:Boolean,default:null},error:Boolean,readonly:{type:Boolean,default:null},max:{type:[Number,String],default:100},min:{type:[Number,String],default:0},step:{type:[Number,String],default:0},thumbColor:String,thumbLabel:{type:[Boolean,String],default:void 0,validator:n=>typeof n=="boolean"||n==="always"},thumbSize:{type:[Number,String],default:20},showTicks:{type:[Boolean,String],default:!1,validator:n=>typeof n=="boolean"||n==="always"},ticks:{type:[Array,Object]},tickSize:{type:[Number,String],default:2},color:String,trackColor:String,trackFillColor:String,trackSize:{type:[Number,String],default:4},direction:{type:String,default:"horizontal",validator:n=>["vertical","horizontal"].includes(n)},reverse:Boolean,...Ie(),...Re({elevation:2})},"Slider"),n4=n=>{const l=X(()=>parseFloat(n.min)),r=X(()=>parseFloat(n.max)),h=X(()=>+n.step>0?parseFloat(n.step):0),u=X(()=>Math.max(u1(h.value),u1(l.value)));function g(v){if(v=parseFloat(v),h.value<=0)return v;const b=en(v,l.value,r.value),z=l.value%h.value,C=Math.round((b-z)/h.value)*h.value+z;return parseFloat(Math.min(C,r.value).toFixed(u.value))}return{min:l,max:r,step:h,decimals:u,roundValue:g}},l4=n=>{let{props:l,steps:r,onSliderStart:h,onSliderMove:u,onSliderEnd:g,getActiveThumb:v}=n;const{isRtl:b}=Xe(),z=Bt(l,"reverse"),C=X(()=>{let ut=b.value?"rtl":"ltr";return l.reverse&&(ut=ut==="rtl"?"ltr":"rtl"),ut}),{min:S,max:A,step:B,decimals:P,roundValue:D}=r,E=X(()=>parseInt(l.thumbSize,10)),Y=X(()=>parseInt(l.tickSize,10)),O=X(()=>parseInt(l.trackSize,10)),H=X(()=>(A.value-S.value)/B.value),U=Bt(l,"disabled"),W=X(()=>l.direction==="vertical"),_=X(()=>l.error||l.disabled?void 0:l.thumbColor??l.color),tt=X(()=>l.error||l.disabled?void 0:l.trackColor??l.color),nt=X(()=>l.error||l.disabled?void 0:l.trackFillColor??l.color),q=_t(!1),G=_t(0),et=Pt(),st=Pt();function rt(ut){var ct;const pt=l.direction==="vertical",Ht=pt?"top":"left",Nt=pt?"height":"width",bt=pt?"clientY":"clientX",{[Ht]:ft,[Nt]:J}=(ct=et.value)==null?void 0:ct.$el.getBoundingClientRect(),lt=k7(ut,bt);let at=Math.min(Math.max((lt-ft-G.value)/J,0),1)||0;return(pt||C.value==="rtl")&&(at=1-at),D(S.value+at*(A.value-S.value))}const ht=ut=>{g({value:rt(ut)}),q.value=!1,G.value=0},dt=ut=>{st.value=v(ut),st.value&&(st.value.focus(),q.value=!0,st.value.contains(ut.target)?G.value=C0(ut,st.value,l.direction):(G.value=0,u({value:rt(ut)})),h({value:rt(ut)}))},Ct={passive:!0,capture:!0};function xt(ut){u({value:rt(ut)})}function wt(ut){ut.stopPropagation(),ut.preventDefault(),ht(ut),window.removeEventListener("mousemove",xt,Ct),window.removeEventListener("mouseup",wt)}function gt(ut){var pt;ht(ut),window.removeEventListener("touchmove",xt,Ct),(pt=ut.target)==null||pt.removeEventListener("touchend",gt)}function It(ut){var pt;dt(ut),window.addEventListener("touchmove",xt,Ct),(pt=ut.target)==null||pt.addEventListener("touchend",gt,{passive:!1})}function $t(ut){ut.preventDefault(),dt(ut),window.addEventListener("mousemove",xt,Ct),window.addEventListener("mouseup",wt,{passive:!1})}const Tt=ut=>{const pt=(ut-S.value)/(A.value-S.value)*100;return en(isNaN(pt)?0:pt,0,100)},Ft=Bt(l,"showTicks"),Kt=X(()=>Ft.value?l.ticks?Array.isArray(l.ticks)?l.ticks.map(ut=>({value:ut,position:Tt(ut),label:ut.toString()})):Object.keys(l.ticks).map(ut=>({value:parseFloat(ut),position:Tt(parseFloat(ut)),label:l.ticks[ut]})):H.value!==1/0?il(H.value+1).map(ut=>{const pt=S.value+ut*B.value;return{value:pt,position:Tt(pt)}}):[]:[]),Qt=X(()=>Kt.value.some(ut=>{let{label:pt}=ut;return!!pt})),Rt={activeThumbRef:st,color:Bt(l,"color"),decimals:P,disabled:U,direction:Bt(l,"direction"),elevation:Bt(l,"elevation"),hasLabels:Qt,horizontalDirection:C,isReversed:z,min:S,max:A,mousePressed:q,numTicks:H,onSliderMousedown:$t,onSliderTouchstart:It,parsedTicks:Kt,parseMouseMove:rt,position:Tt,readonly:Bt(l,"readonly"),rounded:Bt(l,"rounded"),roundValue:D,showTicks:Ft,startOffset:G,step:B,thumbSize:E,thumbColor:_,thumbLabel:Bt(l,"thumbLabel"),ticks:Bt(l,"ticks"),tickSize:Y,trackColor:tt,trackContainerRef:et,trackFillColor:nt,trackSize:O,vertical:W};return ye(Uh,Rt),Rt},b7=mt({focused:Boolean,max:{type:Number,required:!0},min:{type:Number,required:!0},modelValue:{type:Number,required:!0},position:{type:Number,required:!0},ripple:{type:[Boolean,Object],default:!0},...Wt()},"VSliderThumb"),S0=At()({name:"VSliderThumb",directives:{Ripple:ql},props:b7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=he(Uh),{rtlClasses:g}=Xe();if(!u)throw new Error("[Vuetify] v-slider-thumb must be used inside v-slider or v-range-slider");const{thumbColor:v,step:b,vertical:z,disabled:C,thumbSize:S,thumbLabel:A,direction:B,readonly:P,elevation:D,isReversed:E,horizontalDirection:Y,mousePressed:O,decimals:H}=u,{textColorClasses:U,textColorStyles:W}=rn(v),{pageup:_,pagedown:tt,end:nt,home:q,left:G,right:et,down:st,up:rt}=n0,ht=[_,tt,nt,q,G,et,st,rt],dt=X(()=>b.value?[1,2,3]:[1,5,10]);function Ct(wt,gt){if(!ht.includes(wt.key))return;wt.preventDefault();const It=b.value||.1,$t=(n.max-n.min)/It;if([G,et,st,rt].includes(wt.key)){const Ft=(Y.value==="rtl"?[G,rt]:[et,rt]).includes(wt.key)?1:-1,Kt=wt.shiftKey?2:wt.ctrlKey?1:0;gt=gt+Ft*It*dt.value[Kt]}else if(wt.key===q)gt=n.min;else if(wt.key===nt)gt=n.max;else{const Tt=wt.key===tt?1:-1;gt=gt-Tt*It*($t>100?$t/10:10)}return Math.max(n.min,Math.min(n.max,gt))}function xt(wt){const gt=Ct(wt,n.modelValue);gt!=null&&h("update:modelValue",gt)}return Lt(()=>{const wt=Xt(z.value||E.value?100-n.position:n.position,"%"),{elevationClasses:gt}=Ze(X(()=>C.value?void 0:D.value));return t("div",{class:["v-slider-thumb",{"v-slider-thumb--focused":n.focused,"v-slider-thumb--pressed":n.focused&&O.value},n.class,g.value],style:[{"--v-slider-thumb-position":wt,"--v-slider-thumb-size":Xt(S.value)},n.style],role:"slider",tabindex:C.value?-1:0,"aria-valuemin":n.min,"aria-valuemax":n.max,"aria-valuenow":n.modelValue,"aria-readonly":!!P.value,"aria-orientation":B.value,onKeydown:P.value?void 0:xt},[t("div",{class:["v-slider-thumb__surface",U.value,gt.value],style:{...W.value}},null),Ce(t("div",{class:["v-slider-thumb__ripple",U.value],style:W.value},null),[[mn("ripple"),n.ripple,null,{circle:!0,center:!0}]]),t(Bh,{origin:"bottom center"},{default:()=>{var It;return[Ce(t("div",{class:"v-slider-thumb__label-container"},[t("div",{class:["v-slider-thumb__label"]},[t("div",null,[((It=r["thumb-label"])==null?void 0:It.call(r,{modelValue:n.modelValue}))??n.modelValue.toFixed(b.value?H.value:1)])])]),[[Nn,A.value&&n.focused||A.value==="always"]])]}})])}),{}}});const M7=mt({start:{type:Number,required:!0},stop:{type:Number,required:!0},...Wt()},"VSliderTrack"),r4=At()({name:"VSliderTrack",props:M7(),emits:{},setup(n,l){let{slots:r}=l;const h=he(Uh);if(!h)throw new Error("[Vuetify] v-slider-track must be inside v-slider or v-range-slider");const{color:u,horizontalDirection:g,parsedTicks:v,rounded:b,showTicks:z,tickSize:C,trackColor:S,trackFillColor:A,trackSize:B,vertical:P,min:D,max:E}=h,{roundedClasses:Y}=Be(b),{backgroundColorClasses:O,backgroundColorStyles:H}=Ne(A),{backgroundColorClasses:U,backgroundColorStyles:W}=Ne(S),_=X(()=>`inset-${P.value?"block-end":"inline-start"}`),tt=X(()=>P.value?"height":"width"),nt=X(()=>({[_.value]:"0%",[tt.value]:"100%"})),q=X(()=>n.stop-n.start),G=X(()=>({[_.value]:Xt(n.start,"%"),[tt.value]:Xt(q.value,"%")})),et=X(()=>z.value?(P.value?v.value.slice().reverse():v.value).map((rt,ht)=>{var xt;const dt=P.value?"bottom":"margin-inline-start",Ct=rt.value!==D.value&&rt.value!==E.value?Xt(rt.position,"%"):void 0;return t("div",{key:rt.value,class:["v-slider-track__tick",{"v-slider-track__tick--filled":rt.position>=n.start&&rt.position<=n.stop,"v-slider-track__tick--first":rt.value===D.value,"v-slider-track__tick--last":rt.value===E.value}],style:{[dt]:Ct}},[(rt.label||r["tick-label"])&&t("div",{class:"v-slider-track__tick-label"},[((xt=r["tick-label"])==null?void 0:xt.call(r,{tick:rt,index:ht}))??rt.label])])}):[]);return Lt(()=>t("div",{class:["v-slider-track",Y.value,n.class],style:[{"--v-slider-track-size":Xt(B.value),"--v-slider-tick-size":Xt(C.value),direction:P.value?void 0:g.value},n.style]},[t("div",{class:["v-slider-track__background",U.value,{"v-slider-track__background--opacity":!!u.value||!A.value}],style:{...nt.value,...W.value}},null),t("div",{class:["v-slider-track__fill",O.value],style:{...G.value,...H.value}},null),z.value&&t("div",{class:["v-slider-track__ticks",{"v-slider-track__ticks--always-show":z.value==="always"}]},[et.value])])),{}}}),x7=mt({...Ea(),...e4(),...xl(),modelValue:{type:[Number,String],default:0}},"VSlider"),$0=At()({name:"VSlider",props:x7(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,start:n=>!0,end:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=Pt(),{rtlClasses:g}=Xe(),v=n4(n),b=ee(n,"modelValue",void 0,tt=>v.roundValue(tt??v.min.value)),{min:z,max:C,mousePressed:S,roundValue:A,onSliderMousedown:B,onSliderTouchstart:P,trackContainerRef:D,position:E,hasLabels:Y,readonly:O}=l4({props:n,steps:v,onSliderStart:()=>{h("start",b.value)},onSliderEnd:tt=>{let{value:nt}=tt;const q=A(nt);b.value=q,h("end",q)},onSliderMove:tt=>{let{value:nt}=tt;return b.value=A(nt)},getActiveThumb:()=>{var tt;return(tt=u.value)==null?void 0:tt.$el}}),{isFocused:H,focus:U,blur:W}=Yl(n),_=X(()=>E(b.value));return Lt(()=>{const[tt,nt]=Ge.filterProps(n),q=!!(n.label||r.label||r.prepend);return t(Ge,o({class:["v-slider",{"v-slider--has-labels":!!r["tick-label"]||Y.value,"v-slider--focused":H.value,"v-slider--pressed":S.value,"v-slider--disabled":n.disabled},g.value,n.class],style:n.style},tt,{focused:H.value}),{...r,prepend:q?G=>{var et,st;return t(Zt,null,[((et=r.label)==null?void 0:et.call(r,G))??n.label?t(uo,{id:G.id.value,class:"v-slider__label",text:n.label},null):void 0,(st=r.prepend)==null?void 0:st.call(r,G)])}:void 0,default:G=>{let{id:et,messagesId:st}=G;return t("div",{class:"v-slider__container",onMousedown:O.value?void 0:B,onTouchstartPassive:O.value?void 0:P},[t("input",{id:et.value,name:n.name||et.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:b.value},null),t(r4,{ref:D,start:0,stop:_.value},{"tick-label":r["tick-label"]}),t(S0,{ref:u,"aria-describedby":st.value,focused:H.value,min:z.value,max:C.value,modelValue:b.value,"onUpdate:modelValue":rt=>b.value=rt,position:_.value,elevation:n.elevation,onFocus:U,onBlur:W},{"thumb-label":r["thumb-label"]})])}})}),{}}}),z7=mt({color:{type:Object},disabled:Boolean,hideAlpha:Boolean,...Wt()},"VColorPickerPreview"),I7=Pn({name:"VColorPickerPreview",props:z7(),emits:{"update:color":n=>!0},setup(n,l){let{emit:r}=l;return Lt(()=>{var h,u;return t("div",{class:["v-color-picker-preview",{"v-color-picker-preview--hide-alpha":n.hideAlpha},n.class],style:n.style},[t("div",{class:"v-color-picker-preview__dot"},[t("div",{style:{background:yu(n.color??Do)}},null)]),t("div",{class:"v-color-picker-preview__sliders"},[t($0,{class:"v-color-picker-preview__track v-color-picker-preview__hue",modelValue:(h=n.color)==null?void 0:h.h,"onUpdate:modelValue":g=>r("update:color",{...n.color??Do,h:g}),step:0,min:0,max:360,disabled:n.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null),!n.hideAlpha&&t($0,{class:"v-color-picker-preview__track v-color-picker-preview__alpha",modelValue:((u=n.color)==null?void 0:u.a)??1,"onUpdate:modelValue":g=>r("update:color",{...n.color??Do,a:g}),step:1/256,min:0,max:1,disabled:n.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null)])])}),{}}});const y7=Object.freeze({base:"#f44336",lighten5:"#ffebee",lighten4:"#ffcdd2",lighten3:"#ef9a9a",lighten2:"#e57373",lighten1:"#ef5350",darken1:"#e53935",darken2:"#d32f2f",darken3:"#c62828",darken4:"#b71c1c",accent1:"#ff8a80",accent2:"#ff5252",accent3:"#ff1744",accent4:"#d50000"}),C7=Object.freeze({base:"#e91e63",lighten5:"#fce4ec",lighten4:"#f8bbd0",lighten3:"#f48fb1",lighten2:"#f06292",lighten1:"#ec407a",darken1:"#d81b60",darken2:"#c2185b",darken3:"#ad1457",darken4:"#880e4f",accent1:"#ff80ab",accent2:"#ff4081",accent3:"#f50057",accent4:"#c51162"}),S7=Object.freeze({base:"#9c27b0",lighten5:"#f3e5f5",lighten4:"#e1bee7",lighten3:"#ce93d8",lighten2:"#ba68c8",lighten1:"#ab47bc",darken1:"#8e24aa",darken2:"#7b1fa2",darken3:"#6a1b9a",darken4:"#4a148c",accent1:"#ea80fc",accent2:"#e040fb",accent3:"#d500f9",accent4:"#aa00ff"}),$7=Object.freeze({base:"#673ab7",lighten5:"#ede7f6",lighten4:"#d1c4e9",lighten3:"#b39ddb",lighten2:"#9575cd",lighten1:"#7e57c2",darken1:"#5e35b1",darken2:"#512da8",darken3:"#4527a0",darken4:"#311b92",accent1:"#b388ff",accent2:"#7c4dff",accent3:"#651fff",accent4:"#6200ea"}),A7=Object.freeze({base:"#3f51b5",lighten5:"#e8eaf6",lighten4:"#c5cae9",lighten3:"#9fa8da",lighten2:"#7986cb",lighten1:"#5c6bc0",darken1:"#3949ab",darken2:"#303f9f",darken3:"#283593",darken4:"#1a237e",accent1:"#8c9eff",accent2:"#536dfe",accent3:"#3d5afe",accent4:"#304ffe"}),B7=Object.freeze({base:"#2196f3",lighten5:"#e3f2fd",lighten4:"#bbdefb",lighten3:"#90caf9",lighten2:"#64b5f6",lighten1:"#42a5f5",darken1:"#1e88e5",darken2:"#1976d2",darken3:"#1565c0",darken4:"#0d47a1",accent1:"#82b1ff",accent2:"#448aff",accent3:"#2979ff",accent4:"#2962ff"}),H7=Object.freeze({base:"#03a9f4",lighten5:"#e1f5fe",lighten4:"#b3e5fc",lighten3:"#81d4fa",lighten2:"#4fc3f7",lighten1:"#29b6f6",darken1:"#039be5",darken2:"#0288d1",darken3:"#0277bd",darken4:"#01579b",accent1:"#80d8ff",accent2:"#40c4ff",accent3:"#00b0ff",accent4:"#0091ea"}),N7=Object.freeze({base:"#00bcd4",lighten5:"#e0f7fa",lighten4:"#b2ebf2",lighten3:"#80deea",lighten2:"#4dd0e1",lighten1:"#26c6da",darken1:"#00acc1",darken2:"#0097a7",darken3:"#00838f",darken4:"#006064",accent1:"#84ffff",accent2:"#18ffff",accent3:"#00e5ff",accent4:"#00b8d4"}),j7=Object.freeze({base:"#009688",lighten5:"#e0f2f1",lighten4:"#b2dfdb",lighten3:"#80cbc4",lighten2:"#4db6ac",lighten1:"#26a69a",darken1:"#00897b",darken2:"#00796b",darken3:"#00695c",darken4:"#004d40",accent1:"#a7ffeb",accent2:"#64ffda",accent3:"#1de9b6",accent4:"#00bfa5"}),P7=Object.freeze({base:"#4caf50",lighten5:"#e8f5e9",lighten4:"#c8e6c9",lighten3:"#a5d6a7",lighten2:"#81c784",lighten1:"#66bb6a",darken1:"#43a047",darken2:"#388e3c",darken3:"#2e7d32",darken4:"#1b5e20",accent1:"#b9f6ca",accent2:"#69f0ae",accent3:"#00e676",accent4:"#00c853"}),L7=Object.freeze({base:"#8bc34a",lighten5:"#f1f8e9",lighten4:"#dcedc8",lighten3:"#c5e1a5",lighten2:"#aed581",lighten1:"#9ccc65",darken1:"#7cb342",darken2:"#689f38",darken3:"#558b2f",darken4:"#33691e",accent1:"#ccff90",accent2:"#b2ff59",accent3:"#76ff03",accent4:"#64dd17"}),D7=Object.freeze({base:"#cddc39",lighten5:"#f9fbe7",lighten4:"#f0f4c3",lighten3:"#e6ee9c",lighten2:"#dce775",lighten1:"#d4e157",darken1:"#c0ca33",darken2:"#afb42b",darken3:"#9e9d24",darken4:"#827717",accent1:"#f4ff81",accent2:"#eeff41",accent3:"#c6ff00",accent4:"#aeea00"}),F7=Object.freeze({base:"#ffeb3b",lighten5:"#fffde7",lighten4:"#fff9c4",lighten3:"#fff59d",lighten2:"#fff176",lighten1:"#ffee58",darken1:"#fdd835",darken2:"#fbc02d",darken3:"#f9a825",darken4:"#f57f17",accent1:"#ffff8d",accent2:"#ffff00",accent3:"#ffea00",accent4:"#ffd600"}),O7=Object.freeze({base:"#ffc107",lighten5:"#fff8e1",lighten4:"#ffecb3",lighten3:"#ffe082",lighten2:"#ffd54f",lighten1:"#ffca28",darken1:"#ffb300",darken2:"#ffa000",darken3:"#ff8f00",darken4:"#ff6f00",accent1:"#ffe57f",accent2:"#ffd740",accent3:"#ffc400",accent4:"#ffab00"}),T7=Object.freeze({base:"#ff9800",lighten5:"#fff3e0",lighten4:"#ffe0b2",lighten3:"#ffcc80",lighten2:"#ffb74d",lighten1:"#ffa726",darken1:"#fb8c00",darken2:"#f57c00",darken3:"#ef6c00",darken4:"#e65100",accent1:"#ffd180",accent2:"#ffab40",accent3:"#ff9100",accent4:"#ff6d00"}),R7=Object.freeze({base:"#ff5722",lighten5:"#fbe9e7",lighten4:"#ffccbc",lighten3:"#ffab91",lighten2:"#ff8a65",lighten1:"#ff7043",darken1:"#f4511e",darken2:"#e64a19",darken3:"#d84315",darken4:"#bf360c",accent1:"#ff9e80",accent2:"#ff6e40",accent3:"#ff3d00",accent4:"#dd2c00"}),E7=Object.freeze({base:"#795548",lighten5:"#efebe9",lighten4:"#d7ccc8",lighten3:"#bcaaa4",lighten2:"#a1887f",lighten1:"#8d6e63",darken1:"#6d4c41",darken2:"#5d4037",darken3:"#4e342e",darken4:"#3e2723"}),V7=Object.freeze({base:"#607d8b",lighten5:"#eceff1",lighten4:"#cfd8dc",lighten3:"#b0bec5",lighten2:"#90a4ae",lighten1:"#78909c",darken1:"#546e7a",darken2:"#455a64",darken3:"#37474f",darken4:"#263238"}),_7=Object.freeze({base:"#9e9e9e",lighten5:"#fafafa",lighten4:"#f5f5f5",lighten3:"#eeeeee",lighten2:"#e0e0e0",lighten1:"#bdbdbd",darken1:"#757575",darken2:"#616161",darken3:"#424242",darken4:"#212121"}),W7=Object.freeze({black:"#000000",white:"#ffffff",transparent:"#ffffff00"}),X7=Object.freeze({red:y7,pink:C7,purple:S7,deepPurple:$7,indigo:A7,blue:B7,lightBlue:H7,cyan:N7,teal:j7,green:P7,lightGreen:L7,lime:D7,yellow:F7,amber:O7,orange:T7,deepOrange:R7,brown:E7,blueGrey:V7,grey:_7,shades:W7}),q7=mt({swatches:{type:Array,default:()=>Y7(X7)},disabled:Boolean,color:Object,maxHeight:[Number,String],...Wt()},"VColorPickerSwatches");function Y7(n){return Object.keys(n).map(l=>{const r=n[l];return r.base?[r.base,r.darken4,r.darken3,r.darken2,r.darken1,r.lighten1,r.lighten2,r.lighten3,r.lighten4,r.lighten5]:[r.black,r.white,r.transparent]})}const G7=Pn({name:"VColorPickerSwatches",props:q7(),emits:{"update:color":n=>!0},setup(n,l){let{emit:r}=l;return Lt(()=>t("div",{class:["v-color-picker-swatches",n.class],style:[{maxHeight:Xt(n.maxHeight)},n.style]},[t("div",null,[n.swatches.map(h=>t("div",{class:"v-color-picker-swatches__swatch"},[h.map(u=>{const g=_n(u),v=ja(g),b=Iu(g);return t("div",{class:"v-color-picker-swatches__color",onClick:()=>v&&r("update:color",v)},[t("div",{style:{background:b}},[n.color&&kr(n.color,v)?t(be,{size:"x-small",icon:"$success",color:$5(u,"#FFFFFF")>2?"white":"black"},null):void 0])])})]))])])),{}}});const o4=mt({color:String,...Cn(),...Wt(),...Dn(),...Re(),...Wl(),...ho(),...Ie(),...le(),...ce()},"VSheet"),A0=At()({name:"VSheet",props:o4(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(Bt(n,"color")),{borderClasses:v}=On(n),{dimensionStyles:b}=Fn(n),{elevationClasses:z}=Ze(n),{locationStyles:C}=Xl(n),{positionClasses:S}=co(n),{roundedClasses:A}=Be(n);return Lt(()=>t(n.tag,{class:["v-sheet",h.value,u.value,v.value,z.value,S.value,A.value,n.class],style:[g.value,b.value,C.value,n.style]},r)),{}}}),U7=mt({canvasHeight:{type:[String,Number],default:150},disabled:Boolean,dotSize:{type:[Number,String],default:10},hideCanvas:Boolean,hideSliders:Boolean,hideInputs:Boolean,mode:{type:String,default:"rgba",validator:n=>Object.keys(hr).includes(n)},modes:{type:Array,default:()=>Object.keys(hr),validator:n=>Array.isArray(n)&&n.every(l=>Object.keys(hr).includes(l))},showSwatches:Boolean,swatches:Array,swatchesMaxHeight:{type:[Number,String],default:150},modelValue:{type:[Object,String]},...jn(o4({width:300}),["height","location","minHeight","maxHeight","minWidth","maxWidth"])},"VColorPicker"),Z7=Pn({name:"VColorPicker",props:U7(),emits:{"update:modelValue":n=>!0,"update:mode":n=>!0},setup(n){const l=ee(n,"mode"),r=Pt(null),h=ee(n,"modelValue",void 0,v=>{if(v==null||v==="")return null;let b;try{b=ja(_n(v))}catch{return null}return r.value&&(b={...b,h:r.value.h},r.value=null),b},v=>v?u7(v,n.modelValue):null),{rtlClasses:u}=Xe(),g=v=>{h.value=v,r.value=v};return Te(()=>{n.modes.includes(l.value)||(l.value=n.modes[0])}),Fe({VSlider:{color:void 0,trackColor:void 0,trackFillColor:void 0}}),Lt(()=>{const[v]=A0.filterProps(n);return t(A0,o({rounded:n.rounded,elevation:n.elevation,theme:n.theme,class:["v-color-picker",u.value,n.class],style:[{"--v-color-picker-color-hsv":yu({...h.value??Do,a:1})},n.style]},v,{maxWidth:n.width}),{default:()=>[!n.hideCanvas&&t(d7,{key:"canvas",color:h.value,"onUpdate:color":g,disabled:n.disabled,dotSize:n.dotSize,width:n.width,height:n.canvasHeight},null),(!n.hideSliders||!n.hideInputs)&&t("div",{key:"controls",class:"v-color-picker__controls"},[!n.hideSliders&&t(I7,{key:"preview",color:h.value,"onUpdate:color":g,hideAlpha:!l.value.endsWith("a"),disabled:n.disabled},null),!n.hideInputs&&t(m7,{key:"edit",modes:n.modes,mode:l.value,"onUpdate:mode":b=>l.value=b,color:h.value,"onUpdate:color":g,disabled:n.disabled},null)]),n.showSwatches&&t(G7,{key:"swatches",color:h.value,"onUpdate:color":g,maxHeight:n.swatchesMaxHeight,swatches:n.swatches,disabled:n.disabled},null)]})}),{}}});function K7(n,l,r){if(l==null)return n;if(Array.isArray(l))throw new Error("Multiple matches is not implemented");return typeof l=="number"&&~l?t(Zt,null,[t("span",{class:"v-combobox__unmask"},[n.substr(0,l)]),t("span",{class:"v-combobox__mask"},[n.substr(l,r)]),t("span",{class:"v-combobox__unmask"},[n.substr(l+r)])]):n}const Q7=mt({autoSelectFirst:{type:[Boolean,String]},delimiters:Array,...Tp({filterKeys:["title"]}),...Yh({hideNoData:!0,returnObject:!0}),...jn(Ga({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...bl({transition:!1})},"VCombobox"),J7=At()({name:"VCombobox",props:Q7(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:search":n=>!0,"update:menu":n=>!0},setup(n,l){var bt;let{emit:r,slots:h}=l;const{t:u}=Ln(),g=Pt(),v=_t(!1),b=_t(!0),z=_t(!1),C=Pt(),S=Pt(),A=ee(n,"menu"),B=X({get:()=>A.value,set:ft=>{var J;A.value&&!ft&&((J=C.value)!=null&&J.ΨopenChildren)||(A.value=ft)}}),P=_t(-1);let D=!1;const E=X(()=>{var ft;return(ft=g.value)==null?void 0:ft.color}),Y=X(()=>B.value?n.closeText:n.openText),{items:O,transformIn:H,transformOut:U}=_h(n),{textColorClasses:W,textColorStyles:_}=rn(E),tt=ee(n,"modelValue",[],ft=>H(Bn(ft)),ft=>{const J=U(ft);return n.multiple?J:J[0]??null}),nt=Va(),q=_t(n.multiple?"":((bt=tt.value[0])==null?void 0:bt.title)??""),G=X({get:()=>q.value,set:ft=>{var J;if(q.value=ft,n.multiple||(tt.value=[Or(n,ft)]),ft&&n.multiple&&((J=n.delimiters)!=null&&J.length)){const lt=ft.split(new RegExp(`(?:${n.delimiters.join("|")})+`));lt.length>1&&(lt.forEach(at=>{at=at.trim(),at&&ut(Or(n,at))}),q.value="")}ft||(P.value=-1),b.value=!ft}});Vt(q,ft=>{D?pe(()=>D=!1):v.value&&!B.value&&(B.value=!0),r("update:search",ft)}),Vt(tt,ft=>{var J;n.multiple||(q.value=((J=ft[0])==null?void 0:J.title)??"")});const{filteredItems:et,getMatches:st}=Rp(n,O,()=>b.value?"":G.value),rt=X(()=>tt.value.map(ft=>O.value.find(J=>{const lt=tn(J.raw,n.itemValue),at=tn(ft.raw,n.itemValue);return lt===void 0||at===void 0?!1:n.returnObject?n.valueComparator(lt,at):n.valueComparator(J.value,ft.value)})||ft)),ht=X(()=>n.hideSelected?et.value.filter(ft=>!rt.value.some(J=>J.value===ft.value)):et.value),dt=X(()=>rt.value.map(ft=>ft.props.value)),Ct=X(()=>rt.value[P.value]),xt=X(()=>{var J;return(n.autoSelectFirst===!0||n.autoSelectFirst==="exact"&&G.value===((J=ht.value[0])==null?void 0:J.title))&&ht.value.length>0&&!b.value&&!z.value}),wt=X(()=>n.hideNoData&&!O.value.length||n.readonly||(nt==null?void 0:nt.isReadonly.value)),gt=Pt(),{onListScroll:It,onListKeydown:$t}=qh(gt,g);function Tt(ft){D=!0,n.openOnClear&&(B.value=!0)}function Ft(){wt.value||(B.value=!0)}function Kt(ft){wt.value||(v.value&&(ft.preventDefault(),ft.stopPropagation()),B.value=!B.value)}function Qt(ft){var at;if(n.readonly||nt!=null&&nt.isReadonly.value)return;const J=g.value.selectionStart,lt=dt.value.length;if((P.value>-1||["Enter","ArrowDown","ArrowUp"].includes(ft.key))&&ft.preventDefault(),["Enter","ArrowDown"].includes(ft.key)&&(B.value=!0),["Escape"].includes(ft.key)&&(B.value=!1),["Enter","Escape","Tab"].includes(ft.key)&&(xt.value&&["Enter","Tab"].includes(ft.key)&&ut(et.value[0]),b.value=!0),ft.key==="ArrowDown"&&xt.value&&((at=gt.value)==null||at.focus("next")),!!n.multiple){if(["Backspace","Delete"].includes(ft.key)){if(P.value<0){ft.key==="Backspace"&&!G.value&&(P.value=lt-1);return}const ct=P.value;Ct.value&&ut(Ct.value),P.value=ct>=lt-1?lt-2:ct}if(ft.key==="ArrowLeft"){if(P.value<0&&J>0)return;const ct=P.value>-1?P.value-1:lt-1;rt.value[ct]?P.value=ct:(P.value=-1,g.value.setSelectionRange(G.value.length,G.value.length))}if(ft.key==="ArrowRight"){if(P.value<0)return;const ct=P.value+1;rt.value[ct]?P.value=ct:(P.value=-1,g.value.setSelectionRange(0,0))}ft.key==="Enter"&&G.value&&(ut(Or(n,G.value)),G.value="")}}function Rt(){var ft;v.value&&(b.value=!0,(ft=g.value)==null||ft.focus())}function ut(ft){if(n.multiple){const J=dt.value.findIndex(lt=>n.valueComparator(lt,ft.value));if(J===-1)tt.value=[...tt.value,ft];else{const lt=[...tt.value];lt.splice(J,1),tt.value=lt}G.value=""}else tt.value=[ft],q.value=ft.title,pe(()=>{B.value=!1,b.value=!0})}function pt(ft){v.value=!0,setTimeout(()=>{z.value=!0})}function Ht(ft){z.value=!1}function Nt(ft){(ft==null||ft===""&&!n.multiple)&&(tt.value=[])}return Vt(et,ft=>{!ft.length&&n.hideNoData&&(B.value=!1)}),Vt(v,(ft,J)=>{ft||ft===J||(P.value=-1,B.value=!1,xt.value&&!z.value&&!rt.value.some(lt=>{let{value:at}=lt;return at===ht.value[0].value})?ut(ht.value[0]):n.multiple&&G.value&&(tt.value=[...tt.value,Or(n,G.value)],G.value=""))}),Vt(B,()=>{if(!n.hideSelected&&B.value&&rt.value.length){const ft=ht.value.findIndex(J=>rt.value.some(lt=>J.value===lt.value));Me&&window.requestAnimationFrame(()=>{var J;ft>=0&&((J=S.value)==null||J.scrollToIndex(ft))})}}),Lt(()=>{const ft=!!(n.chips||h.chip),J=!!(!n.hideNoData||ht.value.length||h["prepend-item"]||h["append-item"]||h["no-data"]),lt=tt.value.length>0,[at]=vr.filterProps(n);return t(vr,o({ref:g},at,{modelValue:G.value,"onUpdate:modelValue":[ct=>G.value=ct,Nt],focused:v.value,"onUpdate:focused":ct=>v.value=ct,validationValue:tt.externalValue,dirty:lt,class:["v-combobox",{"v-combobox--active-menu":B.value,"v-combobox--chips":!!n.chips,"v-combobox--selection-slot":!!h.selection,"v-combobox--selecting-index":P.value>-1,[`v-combobox--${n.multiple?"multiple":"single"}`]:!0},n.class],style:n.style,readonly:n.readonly,placeholder:lt?void 0:n.placeholder,"onClick:clear":Tt,"onMousedown:control":Ft,onKeydown:Qt}),{...h,default:()=>t(Zt,null,[t(Xa,o({ref:C,modelValue:B.value,"onUpdate:modelValue":ct=>B.value=ct,activator:"parent",contentClass:"v-combobox__content",disabled:wt.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:Rt},n.menuProps),{default:()=>[J&&t(_a,{ref:gt,selected:dt.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:ct=>ct.preventDefault(),onKeydown:$t,onFocusin:pt,onFocusout:Ht,onScrollPassive:It,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var ct,kt,yt;return[(ct=h["prepend-item"])==null?void 0:ct.call(h),!ht.value.length&&!n.hideNoData&&(((kt=h["no-data"])==null?void 0:kt.call(h))??t(gl,{title:u(n.noDataText)},null)),t(Ua,{ref:S,renderless:!0,items:ht.value},{default:Dt=>{var Yt;let{item:St,index:Ot,itemRef:jt}=Dt;const Ut=o(St.props,{ref:jt,key:Ot,active:xt.value&&Ot===0?!0:void 0,onClick:()=>ut(St)});return((Yt=h.item)==null?void 0:Yt.call(h,{item:St,index:Ot,props:Ut}))??t(gl,Ut,{prepend:Gt=>{let{isSelected:Jt}=Gt;return t(Zt,null,[n.multiple&&!n.hideSelected?t(Qr,{key:St.value,modelValue:Jt,ripple:!1,tabindex:"-1"},null):void 0,St.props.prependIcon&&t(be,{icon:St.props.prependIcon},null)])},title:()=>{var Gt,Jt;return b.value?St.title:K7(St.title,(Gt=st(St))==null?void 0:Gt.title,((Jt=G.value)==null?void 0:Jt.length)??0)}})}}),(yt=h["append-item"])==null?void 0:yt.call(h)]}})]}),rt.value.map((ct,kt)=>{var St;function yt(Ot){Ot.stopPropagation(),Ot.preventDefault(),ut(ct)}const Dt={"onClick:close":yt,onMousedown(Ot){Ot.preventDefault(),Ot.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:ct.value,class:["v-combobox__selection",kt===P.value&&["v-combobox__selection--selected",W.value]],style:kt===P.value?_.value:{}},[ft?h.chip?t(fe,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:ct.title}}},{default:()=>{var Ot;return[(Ot=h.chip)==null?void 0:Ot.call(h,{item:ct,index:kt,props:Dt})]}}):t(ws,o({key:"chip",closable:n.closableChips,size:"small",text:ct.title},Dt),null):((St=h.selection)==null?void 0:St.call(h,{item:ct,index:kt}))??t("span",{class:"v-combobox__selection-text"},[ct.title,n.multiple&&kt!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{scopeId:u}=po(),g=Pt();function v(z){var A,B;const C=z.relatedTarget,S=z.target;if(C!==S&&((A=g.value)!=null&&A.contentEl)&&((B=g.value)!=null&&B.globalTop)&&![document,g.value.contentEl].includes(S)&&!g.value.contentEl.contains(S)){const P=Go(g.value.contentEl);if(!P.length)return;const D=P[0],E=P[P.length-1];C===D?E.focus():D.focus()}}Me&&Vt(()=>h.value&&n.retainFocus,z=>{z?document.addEventListener("focusin",v):document.removeEventListener("focusin",v)},{immediate:!0}),Vt(h,async z=>{var C,S;await pe(),z?(C=g.value.contentEl)==null||C.focus({preventScroll:!0}):(S=g.value.activatorEl)==null||S.focus({preventScroll:!0})});const b=X(()=>o({"aria-haspopup":"dialog","aria-expanded":String(h.value)},n.activatorProps));return Lt(()=>{const[z]=wl.filterProps(n);return t(wl,o({ref:g,class:["v-dialog",{"v-dialog--fullscreen":n.fullscreen,"v-dialog--scrollable":n.scrollable},n.class],style:n.style},z,{modelValue:h.value,"onUpdate:modelValue":C=>h.value=C,"aria-modal":"true",activatorProps:b.value,role:"dialog"},u),{activator:r.activator,default:function(){for(var C=arguments.length,S=new Array(C),A=0;A{var B;return[(B=r.default)==null?void 0:B.call(r,...S)]}})}})}),Un({},g)}});const ts=Symbol.for("vuetify:v-expansion-panel"),n8=["default","accordion","inset","popout"],l8=mt({color:String,variant:{type:String,default:"default",validator:n=>n8.includes(n)},readonly:Boolean,...Wt(),...oo(),...le(),...ce()},"VExpansionPanels"),r8=At()({name:"VExpansionPanels",props:l8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;yr(n,ts);const{themeClasses:h}=ge(n),u=X(()=>n.variant&&`v-expansion-panels--variant-${n.variant}`);return Fe({VExpansionPanel:{color:Bt(n,"color")},VExpansionPanelTitle:{readonly:Bt(n,"readonly")}}),Lt(()=>t(n.tag,{class:["v-expansion-panels",h.value,u.value,n.class],style:n.style},r)),{}}}),o8=mt({...Wt(),...Wa()},"VExpansionPanelText"),s4=At()({name:"VExpansionPanelText",props:o8(),setup(n,l){let{slots:r}=l;const h=he(ts);if(!h)throw new Error("[Vuetify] v-expansion-panel-text needs to be placed inside v-expansion-panel");const{hasContent:u,onAfterLeave:g}=Wh(n,h.isSelected);return Lt(()=>t(Fa,{onAfterLeave:g},{default:()=>{var v;return[Ce(t("div",{class:["v-expansion-panel-text",n.class],style:n.style},[r.default&&u.value&&t("div",{class:"v-expansion-panel-text__wrapper"},[(v=r.default)==null?void 0:v.call(r)])]),[[Nn,h.isSelected.value]])]}})),{}}}),a4=mt({color:String,expandIcon:{type:te,default:"$expand"},collapseIcon:{type:te,default:"$collapse"},hideActions:Boolean,ripple:{type:[Boolean,Object],default:!1},readonly:Boolean,...Wt()},"VExpansionPanelTitle"),i4=At()({name:"VExpansionPanelTitle",directives:{Ripple:ql},props:a4(),setup(n,l){let{slots:r}=l;const h=he(ts);if(!h)throw new Error("[Vuetify] v-expansion-panel-title needs to be placed inside v-expansion-panel");const{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(n,"color"),v=X(()=>({collapseIcon:n.collapseIcon,disabled:h.disabled.value,expanded:h.isSelected.value,expandIcon:n.expandIcon,readonly:n.readonly}));return Lt(()=>{var b;return Ce(t("button",{class:["v-expansion-panel-title",{"v-expansion-panel-title--active":h.isSelected.value},u.value,n.class],style:[g.value,n.style],type:"button",tabindex:h.disabled.value?-1:void 0,disabled:h.disabled.value,"aria-expanded":h.isSelected.value,onClick:n.readonly?void 0:h.toggle},[t("span",{class:"v-expansion-panel-title__overlay"},null),(b=r.default)==null?void 0:b.call(r,v.value),!n.hideActions&&t("span",{class:"v-expansion-panel-title__icon"},[r.actions?r.actions(v.value):t(be,{icon:h.isSelected.value?n.collapseIcon:n.expandIcon},null)])]),[[mn("ripple"),n.ripple]])}),{}}}),s8=mt({title:String,text:String,bgColor:String,...Wt(),...Re(),...so(),...Wa(),...Ie(),...le(),...a4()},"VExpansionPanel"),a8=At()({name:"VExpansionPanel",props:s8(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=ao(n,ts),{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(n,"bgColor"),{elevationClasses:v}=Ze(n),{roundedClasses:b}=Be(n),z=X(()=>(h==null?void 0:h.disabled.value)||n.disabled),C=X(()=>h.group.items.value.reduce((B,P,D)=>(h.group.selected.value.includes(P.id)&&B.push(D),B),[])),S=X(()=>{const B=h.group.items.value.findIndex(P=>P.id===h.id);return!h.isSelected.value&&C.value.some(P=>P-B===1)}),A=X(()=>{const B=h.group.items.value.findIndex(P=>P.id===h.id);return!h.isSelected.value&&C.value.some(P=>P-B===-1)});return ye(ts,h),Fe({VExpansionPanelText:{eager:Bt(n,"eager")}}),Lt(()=>{const B=!!(r.text||n.text),P=!!(r.title||n.title);return t(n.tag,{class:["v-expansion-panel",{"v-expansion-panel--active":h.isSelected.value,"v-expansion-panel--before-active":S.value,"v-expansion-panel--after-active":A.value,"v-expansion-panel--disabled":z.value},b.value,u.value,n.class],style:[g.value,n.style]},{default:()=>{var D;return[t("div",{class:["v-expansion-panel__shadow",...v.value]},null),P&&t(i4,{key:"title",collapseIcon:n.collapseIcon,color:n.color,expandIcon:n.expandIcon,hideActions:n.hideActions,ripple:n.ripple},{default:()=>[r.title?r.title():n.title]}),B&&t(s4,{key:"text"},{default:()=>[r.text?r.text():n.text]}),(D=r.default)==null?void 0:D.call(r)]}})}),{}}});const i8=mt({chips:Boolean,counter:Boolean,counterSizeString:{type:String,default:"$vuetify.fileInput.counterSize"},counterString:{type:String,default:"$vuetify.fileInput.counter"},multiple:Boolean,showSize:{type:[Boolean,Number],default:!1,validator:n=>typeof n=="boolean"||[1e3,1024].includes(n)},...xl({prependIcon:"$file"}),modelValue:{type:Array,default:()=>[],validator:n=>Bn(n).every(l=>l!=null&&typeof l=="object")},...Ya({clearable:!0})},"VFileInput"),h8=At()({name:"VFileInput",inheritAttrs:!1,props:i8(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{t:g}=Ln(),v=ee(n,"modelValue"),{isFocused:b,focus:z,blur:C}=Yl(n),S=X(()=>typeof n.showSize!="boolean"?n.showSize:void 0),A=X(()=>(v.value??[]).reduce((G,et)=>{let{size:st=0}=et;return G+st},0)),B=X(()=>g1(A.value,S.value)),P=X(()=>(v.value??[]).map(G=>{const{name:et="",size:st=0}=G;return n.showSize?`${et} (${g1(st,S.value)})`:et})),D=X(()=>{var et;const G=((et=v.value)==null?void 0:et.length)??0;return n.showSize?g(n.counterSizeString,G,B.value):g(n.counterString,G)}),E=Pt(),Y=Pt(),O=Pt(),H=X(()=>b.value||n.active),U=X(()=>["plain","underlined"].includes(n.variant));function W(){var G;O.value!==document.activeElement&&((G=O.value)==null||G.focus()),b.value||z()}function _(G){nt(G)}function tt(G){h("mousedown:control",G)}function nt(G){var et;(et=O.value)==null||et.click(),h("click:control",G)}function q(G){G.stopPropagation(),W(),pe(()=>{v.value=[],bh(n["onClick:clear"],G)})}return Vt(v,G=>{(!Array.isArray(G)||!G.length)&&O.value&&(O.value.value="")}),Lt(()=>{const G=!!(u.counter||n.counter),et=!!(G||u.details),[st,rt]=br(r),[{modelValue:ht,...dt}]=Ge.filterProps(n),[Ct]=Xh(n);return t(Ge,o({ref:E,modelValue:v.value,"onUpdate:modelValue":xt=>v.value=xt,class:["v-file-input",{"v-text-field--plain-underlined":U.value},n.class],style:n.style,"onClick:prepend":_},st,dt,{centerAffix:!U.value,focused:b.value}),{...u,default:xt=>{let{id:wt,isDisabled:gt,isDirty:It,isReadonly:$t,isValid:Tt}=xt;return t(fs,o({ref:Y,"prepend-icon":n.prependIcon,onMousedown:tt,onClick:nt,"onClick:clear":q,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},Ct,{id:wt.value,active:H.value||It.value,dirty:It.value,disabled:gt.value,focused:b.value,error:Tt.value===!1}),{...u,default:Ft=>{var Rt;let{props:{class:Kt,...Qt}}=Ft;return t(Zt,null,[t("input",o({ref:O,type:"file",readonly:$t.value,disabled:gt.value,multiple:n.multiple,name:n.name,onClick:ut=>{ut.stopPropagation(),$t.value&&ut.preventDefault(),W()},onChange:ut=>{if(!ut.target)return;const pt=ut.target;v.value=[...pt.files??[]]},onFocus:W,onBlur:C},Qt,rt),null),t("div",{class:Kt},[!!((Rt=v.value)!=null&&Rt.length)&&(u.selection?u.selection({fileNames:P.value,totalBytes:A.value,totalBytesReadable:B.value}):n.chips?P.value.map(ut=>t(ws,{key:ut,size:"small",color:n.color},{default:()=>[ut]})):P.value.join(", "))])])}})},details:et?xt=>{var wt,gt;return t(Zt,null,[(wt=u.details)==null?void 0:wt.call(u,xt),G&&t(Zt,null,[t("span",null,null),t(qa,{active:!!((gt=v.value)!=null&>.length),value:D.value},u.counter)])])}:void 0})}),Un({},E,Y,O)}});const d8=mt({app:Boolean,color:String,height:{type:[Number,String],default:"auto"},...Cn(),...Wt(),...Re(),...lo(),...Ie(),...le({tag:"footer"}),...ce()},"VFooter"),c8=At()({name:"VFooter",props:d8(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(Bt(n,"color")),{borderClasses:v}=On(n),{elevationClasses:b}=Ze(n),{roundedClasses:z}=Be(n),C=_t(32),{resizeRef:S}=el(P=>{P.length&&(C.value=P[0].target.clientHeight)}),A=X(()=>n.height==="auto"?C.value:parseInt(n.height,10)),{layoutItemStyles:B}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:X(()=>"bottom"),layoutSize:A,elementSize:X(()=>n.height==="auto"?void 0:A.value),active:X(()=>n.app),absolute:Bt(n,"absolute")});return Lt(()=>t(n.tag,{ref:S,class:["v-footer",h.value,u.value,v.value,b.value,z.value,n.class],style:[g.value,n.app?B.value:{height:Xt(n.height)},n.style]},r)),{}}}),u8=mt({...Wt(),...Mk()},"VForm"),p8=At()({name:"VForm",props:u8(),emits:{"update:modelValue":n=>!0,submit:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=xk(n),g=Pt();function v(z){z.preventDefault(),u.reset()}function b(z){const C=z,S=u.validate();C.then=S.then.bind(S),C.catch=S.catch.bind(S),C.finally=S.finally.bind(S),h("submit",C),C.defaultPrevented||S.then(A=>{var P;let{valid:B}=A;B&&((P=g.value)==null||P.submit())}),C.preventDefault()}return Lt(()=>{var z;return t("form",{ref:g,class:["v-form",n.class],style:n.style,novalidate:!0,onReset:v,onSubmit:b},[(z=r.default)==null?void 0:z.call(r,u)])}),Un(u,g)}});const g8=mt({fluid:{type:Boolean,default:!1},...Wt(),...le()},"VContainer"),w8=At()({name:"VContainer",props:g8(),setup(n,l){let{slots:r}=l;const{rtlClasses:h}=Xe();return Lt(()=>t(n.tag,{class:["v-container",{"v-container--fluid":n.fluid},h.value,n.class],style:n.style},r)),{}}}),h4=(()=>Pa.reduce((n,l)=>(n[l]={type:[Boolean,String,Number],default:!1},n),{}))(),d4=(()=>Pa.reduce((n,l)=>{const r="offset"+fl(l);return n[r]={type:[String,Number],default:null},n},{}))(),c4=(()=>Pa.reduce((n,l)=>{const r="order"+fl(l);return n[r]={type:[String,Number],default:null},n},{}))(),J1={col:Object.keys(h4),offset:Object.keys(d4),order:Object.keys(c4)};function v8(n,l,r){let h=n;if(!(r==null||r===!1)){if(l){const u=l.replace(n,"");h+=`-${u}`}return n==="col"&&(h="v-"+h),n==="col"&&(r===""||r===!0)||(h+=`-${r}`),h.toLowerCase()}}const f8=["auto","start","end","center","baseline","stretch"],m8=mt({cols:{type:[Boolean,String,Number],default:!1},...h4,offset:{type:[String,Number],default:null},...d4,order:{type:[String,Number],default:null},...c4,alignSelf:{type:String,default:null,validator:n=>f8.includes(n)},...Wt(),...le()},"VCol"),k8=At()({name:"VCol",props:m8(),setup(n,l){let{slots:r}=l;const h=X(()=>{const u=[];let g;for(g in J1)J1[g].forEach(b=>{const z=n[b],C=v8(g,b,z);C&&u.push(C)});const v=u.some(b=>b.startsWith("v-col-"));return u.push({"v-col":!v||!n.cols,[`v-col-${n.cols}`]:n.cols,[`offset-${n.offset}`]:n.offset,[`order-${n.order}`]:n.order,[`align-self-${n.alignSelf}`]:n.alignSelf}),u});return()=>{var u;return Hn(n.tag,{class:[h.value,n.class],style:n.style},(u=r.default)==null?void 0:u.call(r))}}}),Zh=["start","end","center"],u4=["space-between","space-around","space-evenly"];function Kh(n,l){return Pa.reduce((r,h)=>{const u=n+fl(h);return r[u]=l(),r},{})}const b8=[...Zh,"baseline","stretch"],p4=n=>b8.includes(n),g4=Kh("align",()=>({type:String,default:null,validator:p4})),M8=[...Zh,...u4],w4=n=>M8.includes(n),v4=Kh("justify",()=>({type:String,default:null,validator:w4})),x8=[...Zh,...u4,"stretch"],f4=n=>x8.includes(n),m4=Kh("alignContent",()=>({type:String,default:null,validator:f4})),td={align:Object.keys(g4),justify:Object.keys(v4),alignContent:Object.keys(m4)},z8={align:"align",justify:"justify",alignContent:"align-content"};function I8(n,l,r){let h=z8[n];if(r!=null){if(l){const u=l.replace(n,"");h+=`-${u}`}return h+=`-${r}`,h.toLowerCase()}}const y8=mt({dense:Boolean,noGutters:Boolean,align:{type:String,default:null,validator:p4},...g4,justify:{type:String,default:null,validator:w4},...v4,alignContent:{type:String,default:null,validator:f4},...m4,...Wt(),...le()},"VRow"),C8=At()({name:"VRow",props:y8(),setup(n,l){let{slots:r}=l;const h=X(()=>{const u=[];let g;for(g in td)td[g].forEach(v=>{const b=n[v],z=I8(g,v,b);z&&u.push(z)});return u.push({"v-row--no-gutters":n.noGutters,"v-row--dense":n.dense,[`align-${n.align}`]:n.align,[`justify-${n.justify}`]:n.justify,[`align-content-${n.alignContent}`]:n.alignContent}),u});return()=>{var u;return Hn(n.tag,{class:["v-row",h.value,n.class],style:n.style},(u=r.default)==null?void 0:u.call(r))}}}),S8=Gn("v-spacer","div","VSpacer"),$8=mt({disabled:Boolean,modelValue:{type:Boolean,default:void 0},...jp()},"VHover"),A8=At()({name:"VHover",props:$8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{runOpenDelay:u,runCloseDelay:g}=Pp(n,v=>!n.disabled&&(h.value=v));return()=>{var v;return(v=r.default)==null?void 0:v.call(r,{isHovering:h.value,props:{onMouseenter:u,onMouseleave:g}})}}});const k4=Symbol.for("vuetify:v-item-group"),B8=mt({...Wt(),...oo({selectedClass:"v-item--selected"}),...le(),...ce()},"VItemGroup"),H8=At()({name:"VItemGroup",props:B8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{isSelected:u,select:g,next:v,prev:b,selected:z}=yr(n,k4);return()=>t(n.tag,{class:["v-item-group",h.value,n.class],style:n.style},{default:()=>{var C;return[(C=r.default)==null?void 0:C.call(r,{isSelected:u,select:g,next:v,prev:b,selected:z.value})]}})}}),N8=At()({name:"VItem",props:so(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const{isSelected:h,select:u,toggle:g,selectedClass:v,value:b,disabled:z}=ao(n,k4);return()=>{var C;return(C=r.default)==null?void 0:C.call(r,{isSelected:h.value,selectedClass:v.value,select:u,toggle:g,value:b.value,disabled:z.value})}}});const j8=Gn("v-kbd");const P8=mt({...Wt(),...Tu()},"VLayout"),L8=At()({name:"VLayout",props:P8(),setup(n,l){let{slots:r}=l;const{layoutClasses:h,layoutStyles:u,getLayoutItem:g,items:v,layoutRef:b}=Ru(n);return Lt(()=>{var z;return t("div",{ref:b,class:[h.value,n.class],style:[u.value,n.style]},[(z=r.default)==null?void 0:z.call(r)])}),{getLayoutItem:g,items:v}}});const D8=mt({position:{type:String,required:!0},size:{type:[Number,String],default:300},modelValue:Boolean,...Wt(),...lo()},"VLayoutItem"),F8=At()({name:"VLayoutItem",props:D8(),setup(n,l){let{slots:r}=l;const{layoutItemStyles:h}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:Bt(n,"position"),elementSize:Bt(n,"size"),layoutSize:Bt(n,"size"),active:Bt(n,"modelValue"),absolute:Bt(n,"absolute")});return()=>{var u;return t("div",{class:["v-layout-item",n.class],style:[h.value,n.style]},[(u=r.default)==null?void 0:u.call(r)])}}}),O8=mt({modelValue:Boolean,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},...Wt(),...Dn(),...le(),...bl({transition:"fade-transition"})},"VLazy"),T8=At()({name:"VLazy",directives:{intersect:Oa},props:O8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{dimensionStyles:h}=Fn(n),u=ee(n,"modelValue");function g(v){u.value||(u.value=v)}return Lt(()=>Ce(t(n.tag,{class:["v-lazy",n.class],style:[h.value,n.style]},{default:()=>[u.value&&t(Wn,{transition:n.transition,appear:!0},{default:()=>{var v;return[(v=r.default)==null?void 0:v.call(r)]}})]}),[[mn("intersect"),{handler:g,options:n.options},null]])),{}}});const R8=mt({locale:String,fallbackLocale:String,messages:Object,rtl:{type:Boolean,default:void 0},...Wt()},"VLocaleProvider"),E8=At()({name:"VLocaleProvider",props:R8(),setup(n,l){let{slots:r}=l;const{rtlClasses:h}=Z5(n);return Lt(()=>{var u;return t("div",{class:["v-locale-provider",h.value,n.class],style:n.style},[(u=r.default)==null?void 0:u.call(r)])}),{}}});const V8=mt({scrollable:Boolean,...Wt(),...le({tag:"main"})},"VMain"),_8=At()({name:"VMain",props:V8(),setup(n,l){let{slots:r}=l;const{mainStyles:h}=xm(),{ssrBootStyles:u}=xr();return Lt(()=>t(n.tag,{class:["v-main",{"v-main--scrollable":n.scrollable},n.class],style:[h.value,u.value,n.style]},{default:()=>{var g,v;return[n.scrollable?t("div",{class:"v-main__scroller"},[(g=r.default)==null?void 0:g.call(r)]):(v=r.default)==null?void 0:v.call(r)]}})),{}}});function W8(n){let{rootEl:l,isSticky:r,layoutItemStyles:h}=n;const u=_t(!1),g=_t(0),v=X(()=>{const C=typeof u.value=="boolean"?"top":u.value;return[r.value?{top:"auto",bottom:"auto",height:void 0}:void 0,u.value?{[C]:Xt(g.value)}:{top:h.value.top}]});Te(()=>{Vt(r,C=>{C?window.addEventListener("scroll",z,{passive:!0}):window.removeEventListener("scroll",z)},{immediate:!0})}),Ue(()=>{window.removeEventListener("scroll",z)});let b=0;function z(){const C=b>window.scrollY?"up":"down",S=l.value.getBoundingClientRect(),A=parseFloat(h.value.top??0),B=window.scrollY-Math.max(0,g.value-A),P=S.height+Math.max(g.value,A)-window.scrollY-window.innerHeight,D=parseFloat(getComputedStyle(l.value).getPropertyValue("--v-body-scroll-y"))||0;S.height0;r--){if(n[r].t===n[r-1].t)continue;const h=ed(l),u=(n[r].d-n[r-1].d)/(n[r].t-n[r-1].t);l+=(u-h)*Math.abs(u),r===n.length-1&&(l*=.5)}return ed(l)*1e3}function Y8(){const n={};function l(u){Array.from(u.changedTouches).forEach(g=>{(n[g.identifier]??(n[g.identifier]=new r5(q8))).push([u.timeStamp,g])})}function r(u){Array.from(u.changedTouches).forEach(g=>{delete n[g.identifier]})}function h(u){var C;const g=(C=n[u])==null?void 0:C.values().reverse();if(!g)throw new Error(`No samples for touch id ${u}`);const v=g[0],b=[],z=[];for(const S of g){if(v[0]-S[0]>X8)break;b.push({t:S[0],d:S[1].clientX}),z.push({t:S[0],d:S[1].clientY})}return{x:nd(b),y:nd(z),get direction(){const{x:S,y:A}=this,[B,P]=[Math.abs(S),Math.abs(A)];return B>P&&S>=0?"right":B>P&&S<=0?"left":P>B&&A>=0?"down":P>B&&A<=0?"up":G8()}}}return{addMovement:l,endTouch:r,getVelocity:h}}function G8(){throw new Error}function U8(n){let{isActive:l,isTemporary:r,width:h,touchless:u,position:g}=n;Te(()=>{window.addEventListener("touchstart",O,{passive:!0}),window.addEventListener("touchmove",H,{passive:!1}),window.addEventListener("touchend",U,{passive:!0})}),Ue(()=>{window.removeEventListener("touchstart",O),window.removeEventListener("touchmove",H),window.removeEventListener("touchend",U)});const v=X(()=>["left","right"].includes(g.value)),{addMovement:b,endTouch:z,getVelocity:C}=Y8();let S=!1;const A=_t(!1),B=_t(0),P=_t(0);let D;function E(_,tt){return(g.value==="left"?_:g.value==="right"?document.documentElement.clientWidth-_:g.value==="top"?_:g.value==="bottom"?document.documentElement.clientHeight-_:jr())-(tt?h.value:0)}function Y(_){let tt=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;const nt=g.value==="left"?(_-P.value)/h.value:g.value==="right"?(document.documentElement.clientWidth-_-P.value)/h.value:g.value==="top"?(_-P.value)/h.value:g.value==="bottom"?(document.documentElement.clientHeight-_-P.value)/h.value:jr();return tt?Math.max(0,Math.min(1,nt)):nt}function O(_){if(u.value)return;const tt=_.changedTouches[0].clientX,nt=_.changedTouches[0].clientY,q=25,G=g.value==="left"?ttdocument.documentElement.clientWidth-q:g.value==="top"?ntdocument.documentElement.clientHeight-q:jr(),et=l.value&&(g.value==="left"?ttdocument.documentElement.clientWidth-h.value:g.value==="top"?ntdocument.documentElement.clientHeight-h.value:jr());(G||et||l.value&&r.value)&&(S=!0,D=[tt,nt],P.value=E(v.value?tt:nt,l.value),B.value=Y(v.value?tt:nt),z(_),b(_))}function H(_){const tt=_.changedTouches[0].clientX,nt=_.changedTouches[0].clientY;if(S){if(!_.cancelable){S=!1;return}const G=Math.abs(tt-D[0]),et=Math.abs(nt-D[1]);(v.value?G>et&&G>3:et>G&&et>3)?(A.value=!0,S=!1):(v.value?et:G)>3&&(S=!1)}if(!A.value)return;_.preventDefault(),b(_);const q=Y(v.value?tt:nt,!1);B.value=Math.max(0,Math.min(1,q)),q>1?P.value=E(v.value?tt:nt,!0):q<0&&(P.value=E(v.value?tt:nt,!1))}function U(_){if(S=!1,!A.value)return;b(_),A.value=!1;const tt=C(_.changedTouches[0].identifier),nt=Math.abs(tt.x),q=Math.abs(tt.y);(v.value?nt>q&&nt>400:q>nt&&q>3)?l.value=tt.direction===({left:"right",right:"left",top:"down",bottom:"up"}[g.value]||jr()):l.value=B.value>.5}const W=X(()=>A.value?{transform:g.value==="left"?`translateX(calc(-100% + ${B.value*h.value}px))`:g.value==="right"?`translateX(calc(100% - ${B.value*h.value}px))`:g.value==="top"?`translateY(calc(-100% + ${B.value*h.value}px))`:g.value==="bottom"?`translateY(calc(100% - ${B.value*h.value}px))`:jr(),transition:"none"}:void 0);return{isDragging:A,dragProgress:B,dragStyles:W}}function jr(){throw new Error}const Z8=["start","end","left","right","top","bottom"],K8=mt({color:String,disableResizeWatcher:Boolean,disableRouteWatcher:Boolean,expandOnHover:Boolean,floating:Boolean,modelValue:{type:Boolean,default:null},permanent:Boolean,rail:{type:Boolean,default:null},railWidth:{type:[Number,String],default:56},scrim:{type:[Boolean,String],default:!0},image:String,temporary:Boolean,touchless:Boolean,width:{type:[Number,String],default:256},location:{type:String,default:"start",validator:n=>Z8.includes(n)},sticky:Boolean,...Cn(),...Wt(),...Re(),...lo(),...Ie(),...le({tag:"nav"}),...ce()},"VNavigationDrawer"),Q8=At()({name:"VNavigationDrawer",props:K8(),emits:{"update:modelValue":n=>!0,"update:rail":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{isRtl:g}=Xe(),{themeClasses:v}=ge(n),{borderClasses:b}=On(n),{backgroundColorClasses:z,backgroundColorStyles:C}=Ne(Bt(n,"color")),{elevationClasses:S}=Ze(n),{mobile:A}=Mr(),{roundedClasses:B}=Be(n),P=Qu(),D=ee(n,"modelValue",null,It=>!!It),{ssrBootStyles:E}=xr(),{scopeId:Y}=po(),O=Pt(),H=_t(!1),U=X(()=>n.rail&&n.expandOnHover&&H.value?Number(n.width):Number(n.rail?n.railWidth:n.width)),W=X(()=>r0(n.location,g.value)),_=X(()=>!n.permanent&&(A.value||n.temporary)),tt=X(()=>n.sticky&&!_.value&&W.value!=="bottom");n.expandOnHover&&n.rail!=null&&Vt(H,It=>h("update:rail",!It)),n.disableResizeWatcher||Vt(_,It=>!n.permanent&&pe(()=>D.value=!It)),!n.disableRouteWatcher&&P&&Vt(P.currentRoute,()=>_.value&&(D.value=!1)),Vt(()=>n.permanent,It=>{It&&(D.value=!0)}),hs(()=>{n.modelValue!=null||_.value||(D.value=n.permanent||!A.value)});const{isDragging:nt,dragProgress:q,dragStyles:G}=U8({isActive:D,isTemporary:_,width:U,touchless:Bt(n,"touchless"),position:W}),et=X(()=>{const It=_.value?0:n.rail&&n.expandOnHover?Number(n.railWidth):U.value;return nt.value?It*q.value:It}),{layoutItemStyles:st,layoutItemScrimStyles:rt}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:W,layoutSize:et,elementSize:U,active:X(()=>D.value||nt.value),disableTransitions:X(()=>nt.value),absolute:X(()=>n.absolute||tt.value&&typeof ht.value!="string")}),{isStuck:ht,stickyStyles:dt}=W8({rootEl:O,isSticky:tt,layoutItemStyles:st}),Ct=Ne(X(()=>typeof n.scrim=="string"?n.scrim:null)),xt=X(()=>({...nt.value?{opacity:q.value*.2,transition:"none"}:void 0,...rt.value}));Fe({VList:{bgColor:"transparent"}});function wt(){H.value=!0}function gt(){H.value=!1}return Lt(()=>{const It=u.image||n.image;return t(Zt,null,[t(n.tag,o({ref:O,onMouseenter:wt,onMouseleave:gt,class:["v-navigation-drawer",`v-navigation-drawer--${W.value}`,{"v-navigation-drawer--expand-on-hover":n.expandOnHover,"v-navigation-drawer--floating":n.floating,"v-navigation-drawer--is-hovering":H.value,"v-navigation-drawer--rail":n.rail,"v-navigation-drawer--temporary":_.value,"v-navigation-drawer--active":D.value,"v-navigation-drawer--sticky":tt.value},v.value,z.value,b.value,S.value,B.value,n.class],style:[C.value,st.value,G.value,E.value,dt.value,n.style]},Y,r),{default:()=>{var $t,Tt,Ft,Kt;return[It&&t("div",{key:"image",class:"v-navigation-drawer__img"},[u.image?($t=u.image)==null?void 0:$t.call(u,{image:n.image}):t("img",{src:n.image,alt:""},null)]),u.prepend&&t("div",{class:"v-navigation-drawer__prepend"},[(Tt=u.prepend)==null?void 0:Tt.call(u)]),t("div",{class:"v-navigation-drawer__content"},[(Ft=u.default)==null?void 0:Ft.call(u)]),u.append&&t("div",{class:"v-navigation-drawer__append"},[(Kt=u.append)==null?void 0:Kt.call(u)])]}}),t(qn,{name:"fade-transition"},{default:()=>[_.value&&(nt.value||D.value)&&!!n.scrim&&t("div",o({class:["v-navigation-drawer__scrim",Ct.backgroundColorClasses.value],style:[xt.value,Ct.backgroundColorStyles.value],onClick:()=>D.value=!1},Y),null)]})])}),{isStuck:ht}}}),J8=Pn({name:"VNoSsr",setup(n,l){let{slots:r}=l;const h=Lp();return()=>{var u;return h.value&&((u=r.default)==null?void 0:u.call(r))}}});function t9(){const n=Pt([]);nh(()=>n.value=[]);function l(r,h){n.value[h]=r}return{refs:n,updateRef:l}}const e9=mt({activeColor:String,start:{type:[Number,String],default:1},modelValue:{type:Number,default:n=>n.start},disabled:Boolean,length:{type:[Number,String],default:1,validator:n=>n%1===0},totalVisible:[Number,String],firstIcon:{type:te,default:"$first"},prevIcon:{type:te,default:"$prev"},nextIcon:{type:te,default:"$next"},lastIcon:{type:te,default:"$last"},ariaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.root"},pageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.page"},currentPageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.currentPage"},firstAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.first"},previousAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.previous"},nextAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.next"},lastAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.last"},ellipsis:{type:String,default:"..."},showFirstLastPage:Boolean,...Cn(),...Wt(),...Ee(),...Re(),...Ie(),...Ml(),...le({tag:"nav"}),...ce(),...Tn({variant:"text"})},"VPagination"),n9=At()({name:"VPagination",props:e9(),emits:{"update:modelValue":n=>!0,first:n=>!0,prev:n=>!0,next:n=>!0,last:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=ee(n,"modelValue"),{t:g,n:v}=Ln(),{isRtl:b}=Xe(),{themeClasses:z}=ge(n),{width:C}=Mr(),S=_t(-1);Fe(void 0,{scoped:!0});const{resizeRef:A}=el(q=>{if(!q.length)return;const{target:G,contentRect:et}=q[0],st=G.querySelector(".v-pagination__list > *");if(!st)return;const rt=et.width,ht=st.offsetWidth+parseFloat(getComputedStyle(st).marginRight)*2;S.value=E(rt,ht)}),B=X(()=>parseInt(n.length,10)),P=X(()=>parseInt(n.start,10)),D=X(()=>n.totalVisible?parseInt(n.totalVisible,10):S.value>=0?S.value:E(C.value,58));function E(q,G){const et=n.showFirstLastPage?5:3;return Math.max(0,Math.floor(+((q-G*et)/G).toFixed(2)))}const Y=X(()=>{if(B.value<=0||isNaN(B.value)||B.value>Number.MAX_SAFE_INTEGER)return[];if(D.value<=1)return[u.value];if(B.value<=D.value)return il(B.value,P.value);const q=D.value%2===0,G=q?D.value/2:Math.floor(D.value/2),et=q?G:G+1,st=B.value-G;if(et-u.value>=0)return[...il(Math.max(1,D.value-1),P.value),n.ellipsis,B.value];if(u.value-st>=(q?1:0)){const rt=D.value-1,ht=B.value-rt+P.value;return[P.value,n.ellipsis,...il(rt,ht)]}else{const rt=Math.max(1,D.value-3),ht=rt===1?u.value:u.value-Math.ceil(rt/2)+P.value;return[P.value,n.ellipsis,...il(rt,ht),n.ellipsis,B.value]}});function O(q,G,et){q.preventDefault(),u.value=G,et&&h(et,G)}const{refs:H,updateRef:U}=t9();Fe({VPaginationBtn:{color:Bt(n,"color"),border:Bt(n,"border"),density:Bt(n,"density"),size:Bt(n,"size"),variant:Bt(n,"variant"),rounded:Bt(n,"rounded"),elevation:Bt(n,"elevation")}});const W=X(()=>Y.value.map((q,G)=>{const et=st=>U(st,G);if(typeof q=="string")return{isActive:!1,key:`ellipsis-${G}`,page:q,props:{ref:et,ellipsis:!0,icon:!0,disabled:!0}};{const st=q===u.value;return{isActive:st,key:q,page:v(q),props:{ref:et,ellipsis:!1,icon:!0,disabled:!!n.disabled||+n.length<2,color:st?n.activeColor:n.color,ariaCurrent:st,ariaLabel:g(st?n.currentPageAriaLabel:n.pageAriaLabel,q),onClick:rt=>O(rt,q)}}}})),_=X(()=>{const q=!!n.disabled||u.value<=P.value,G=!!n.disabled||u.value>=P.value+B.value-1;return{first:n.showFirstLastPage?{icon:b.value?n.lastIcon:n.firstIcon,onClick:et=>O(et,P.value,"first"),disabled:q,ariaLabel:g(n.firstAriaLabel),ariaDisabled:q}:void 0,prev:{icon:b.value?n.nextIcon:n.prevIcon,onClick:et=>O(et,u.value-1,"prev"),disabled:q,ariaLabel:g(n.previousAriaLabel),ariaDisabled:q},next:{icon:b.value?n.prevIcon:n.nextIcon,onClick:et=>O(et,u.value+1,"next"),disabled:G,ariaLabel:g(n.nextAriaLabel),ariaDisabled:G},last:n.showFirstLastPage?{icon:b.value?n.firstIcon:n.lastIcon,onClick:et=>O(et,P.value+B.value-1,"last"),disabled:G,ariaLabel:g(n.lastAriaLabel),ariaDisabled:G}:void 0}});function tt(){var G;const q=u.value-P.value;(G=H.value[q])==null||G.$el.focus()}function nt(q){q.key===n0.left&&!n.disabled&&u.value>+n.start?(u.value=u.value-1,pe(tt)):q.key===n0.right&&!n.disabled&&u.valuet(n.tag,{ref:A,class:["v-pagination",z.value,n.class],style:n.style,role:"navigation","aria-label":g(n.ariaLabel),onKeydown:nt,"data-test":"v-pagination-root"},{default:()=>[t("ul",{class:"v-pagination__list"},[n.showFirstLastPage&&t("li",{key:"first",class:"v-pagination__first","data-test":"v-pagination-first"},[r.first?r.first(_.value.first):t(dn,o({_as:"VPaginationBtn"},_.value.first),null)]),t("li",{key:"prev",class:"v-pagination__prev","data-test":"v-pagination-prev"},[r.prev?r.prev(_.value.prev):t(dn,o({_as:"VPaginationBtn"},_.value.prev),null)]),W.value.map((q,G)=>t("li",{key:q.key,class:["v-pagination__item",{"v-pagination__item--is-active":q.isActive}],"data-test":"v-pagination-item"},[r.item?r.item(q):t(dn,o({_as:"VPaginationBtn"},q.props),{default:()=>[q.page]})])),t("li",{key:"next",class:"v-pagination__next","data-test":"v-pagination-next"},[r.next?r.next(_.value.next):t(dn,o({_as:"VPaginationBtn"},_.value.next),null)]),n.showFirstLastPage&&t("li",{key:"last",class:"v-pagination__last","data-test":"v-pagination-last"},[r.last?r.last(_.value.last):t(dn,o({_as:"VPaginationBtn"},_.value.last),null)])])]})),{}}});function l9(n){return Math.floor(Math.abs(n))*Math.sign(n)}const r9=mt({scale:{type:[Number,String],default:.5},...Wt()},"VParallax"),o9=At()({name:"VParallax",props:r9(),setup(n,l){let{slots:r}=l;const{intersectionRef:h,isIntersecting:u}=Lh(),{resizeRef:g,contentRect:v}=el(),{height:b}=Mr(),z=Pt();fn(()=>{var P;h.value=g.value=(P=z.value)==null?void 0:P.$el});let C;Vt(u,P=>{P?(C=Ih(h.value),C=C===document.scrollingElement?document:C,C.addEventListener("scroll",B,{passive:!0}),B()):C.removeEventListener("scroll",B)}),Ue(()=>{C==null||C.removeEventListener("scroll",B)}),Vt(b,B),Vt(()=>{var P;return(P=v.value)==null?void 0:P.height},B);const S=X(()=>1-en(+n.scale));let A=-1;function B(){u.value&&(cancelAnimationFrame(A),A=requestAnimationFrame(()=>{var _;const P=((_=z.value)==null?void 0:_.$el).querySelector(".v-img__img");if(!P)return;const D=C instanceof Document?document.documentElement.clientHeight:C.clientHeight,E=C instanceof Document?window.scrollY:C.scrollTop,Y=h.value.getBoundingClientRect().top+E,O=v.value.height,H=Y+(O-D)/2,U=l9((E-H)*S.value),W=Math.max(1,(S.value*(D-O)+O)/O);P.style.setProperty("transform",`translateY(${U}px) scale(${W})`)}))}return Lt(()=>t(gr,{class:["v-parallax",{"v-parallax--active":u.value},n.class],style:n.style,ref:z,cover:!0,onLoadstart:B,onLoad:B},r)),{}}}),s9=mt({...Ra({falseIcon:"$radioOff",trueIcon:"$radioOn"})},"VRadio"),a9=At()({name:"VRadio",props:s9(),setup(n,l){let{slots:r}=l;return Lt(()=>t(wr,o(n,{class:["v-radio",n.class],style:n.style,type:"radio"}),r)),{}}});const i9=mt({height:{type:[Number,String],default:"auto"},...xl(),...jn(Eh(),["multiple"]),trueIcon:{type:te,default:"$radioOn"},falseIcon:{type:te,default:"$radioOff"},type:{type:String,default:"radio"}},"VRadioGroup"),h9=At()({name:"VRadioGroup",inheritAttrs:!1,props:i9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const u=on(),g=X(()=>n.id||`radio-group-${u}`),v=ee(n,"modelValue");return Lt(()=>{const[b,z]=br(r),[C,S]=Ge.filterProps(n),[A,B]=wr.filterProps(n),P=h.label?h.label({label:n.label,props:{for:g.value}}):n.label;return t(Ge,o({class:["v-radio-group",n.class],style:n.style},b,C,{modelValue:v.value,"onUpdate:modelValue":D=>v.value=D,id:g.value}),{...h,default:D=>{let{id:E,messagesId:Y,isDisabled:O,isReadonly:H}=D;return t(Zt,null,[P&&t(uo,{id:E.value},{default:()=>[P]}),t(hp,o(A,{id:E.value,"aria-describedby":Y.value,defaultsTarget:"VRadio",trueIcon:n.trueIcon,falseIcon:n.falseIcon,type:n.type,disabled:O.value,readonly:H.value,"aria-labelledby":P?E.value:void 0,multiple:!1},z,{modelValue:v.value,"onUpdate:modelValue":U=>v.value=U}),h)])}})}),{}}}),d9=mt({...Ea(),...xl(),...e4(),strict:Boolean,modelValue:{type:Array,default:()=>[0,0]}},"VRangeSlider"),c9=At()({name:"VRangeSlider",props:d9(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,end:n=>!0,start:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=Pt(),g=Pt(),v=Pt(),{rtlClasses:b}=Xe();function z(G){if(!u.value||!g.value)return;const et=C0(G,u.value.$el,n.direction),st=C0(G,g.value.$el,n.direction),rt=Math.abs(et),ht=Math.abs(st);return rtG!=null&&G.length?G.map(et=>C.roundValue(et)):[0,0]),{activeThumbRef:A,hasLabels:B,max:P,min:D,mousePressed:E,onSliderMousedown:Y,onSliderTouchstart:O,position:H,trackContainerRef:U}=l4({props:n,steps:C,onSliderStart:()=>{h("start",S.value)},onSliderEnd:G=>{var rt;let{value:et}=G;const st=A.value===((rt=u.value)==null?void 0:rt.$el)?[et,S.value[1]]:[S.value[0],et];!n.strict&&st[0]{var ht,dt,Ct,xt;let{value:et}=G;const[st,rt]=S.value;!n.strict&&st===rt&&st!==D.value&&(A.value=et>st?(ht=g.value)==null?void 0:ht.$el:(dt=u.value)==null?void 0:dt.$el,(Ct=A.value)==null||Ct.focus()),A.value===((xt=u.value)==null?void 0:xt.$el)?S.value=[Math.min(et,rt),rt]:S.value=[st,Math.max(st,et)]},getActiveThumb:z}),{isFocused:W,focus:_,blur:tt}=Yl(n),nt=X(()=>H(S.value[0])),q=X(()=>H(S.value[1]));return Lt(()=>{const[G,et]=Ge.filterProps(n),st=!!(n.label||r.label||r.prepend);return t(Ge,o({class:["v-slider","v-range-slider",{"v-slider--has-labels":!!r["tick-label"]||B.value,"v-slider--focused":W.value,"v-slider--pressed":E.value,"v-slider--disabled":n.disabled},b.value,n.class],style:n.style,ref:v},G,{focused:W.value}),{...r,prepend:st?rt=>{var ht,dt;return t(Zt,null,[((ht=r.label)==null?void 0:ht.call(r,rt))??n.label?t(uo,{class:"v-slider__label",text:n.label},null):void 0,(dt=r.prepend)==null?void 0:dt.call(r,rt)])}:void 0,default:rt=>{var Ct,xt;let{id:ht,messagesId:dt}=rt;return t("div",{class:"v-slider__container",onMousedown:Y,onTouchstartPassive:O},[t("input",{id:`${ht.value}_start`,name:n.name||ht.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:S.value[0]},null),t("input",{id:`${ht.value}_stop`,name:n.name||ht.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:S.value[1]},null),t(r4,{ref:U,start:nt.value,stop:q.value},{"tick-label":r["tick-label"]}),t(S0,{ref:u,"aria-describedby":dt.value,focused:W&&A.value===((Ct=u.value)==null?void 0:Ct.$el),modelValue:S.value[0],"onUpdate:modelValue":wt=>S.value=[wt,S.value[1]],onFocus:wt=>{var gt,It,$t,Tt;_(),A.value=(gt=u.value)==null?void 0:gt.$el,S.value[0]===S.value[1]&&S.value[1]===D.value&&wt.relatedTarget!==((It=g.value)==null?void 0:It.$el)&&(($t=u.value)==null||$t.$el.blur(),(Tt=g.value)==null||Tt.$el.focus())},onBlur:()=>{tt(),A.value=void 0},min:D.value,max:S.value[1],position:nt.value},{"thumb-label":r["thumb-label"]}),t(S0,{ref:g,"aria-describedby":dt.value,focused:W&&A.value===((xt=g.value)==null?void 0:xt.$el),modelValue:S.value[1],"onUpdate:modelValue":wt=>S.value=[S.value[0],wt],onFocus:wt=>{var gt,It,$t,Tt;_(),A.value=(gt=g.value)==null?void 0:gt.$el,S.value[0]===S.value[1]&&S.value[0]===P.value&&wt.relatedTarget!==((It=u.value)==null?void 0:It.$el)&&(($t=g.value)==null||$t.$el.blur(),(Tt=u.value)==null||Tt.$el.focus())},onBlur:()=>{tt(),A.value=void 0},min:S.value[0],max:P.value,position:q.value},{"thumb-label":r["thumb-label"]})])}})}),{}}});const u9=mt({name:String,itemAriaLabel:{type:String,default:"$vuetify.rating.ariaLabel.item"},activeColor:String,color:String,clearable:Boolean,disabled:Boolean,emptyIcon:{type:te,default:"$ratingEmpty"},fullIcon:{type:te,default:"$ratingFull"},halfIncrements:Boolean,hover:Boolean,length:{type:[Number,String],default:5},readonly:Boolean,modelValue:{type:[Number,String],default:0},itemLabels:Array,itemLabelPosition:{type:String,default:"top",validator:n=>["top","bottom"].includes(n)},ripple:Boolean,...Wt(),...Ee(),...Ml(),...le(),...ce()},"VRating"),p9=At()({name:"VRating",props:u9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Ln(),{themeClasses:u}=ge(n),g=ee(n,"modelValue"),v=X(()=>en(parseFloat(g.value),0,+n.length)),b=X(()=>il(Number(n.length),1)),z=X(()=>b.value.flatMap(E=>n.halfIncrements?[E-.5,E]:[E])),C=_t(-1),S=X(()=>z.value.map(E=>{const Y=n.hover&&C.value>-1,O=v.value>=E,H=C.value>=E,W=(Y?H:O)?n.fullIcon:n.emptyIcon,_=n.activeColor??n.color,tt=O||H?_:n.color;return{isFilled:O,isHovered:H,icon:W,color:tt}})),A=X(()=>[0,...z.value].map(E=>{function Y(){C.value=E}function O(){C.value=-1}function H(){n.disabled||n.readonly||(g.value=v.value===E&&n.clearable?0:E)}return{onMouseenter:n.hover?Y:void 0,onMouseleave:n.hover?O:void 0,onClick:H}})),B=X(()=>n.name??`v-rating-${on()}`);function P(E){var q,G;let{value:Y,index:O,showStar:H=!0}=E;const{onMouseenter:U,onMouseleave:W,onClick:_}=A.value[O+1],tt=`${B.value}-${String(Y).replace(".","-")}`,nt={color:(q=S.value[O])==null?void 0:q.color,density:n.density,disabled:n.disabled,icon:(G=S.value[O])==null?void 0:G.icon,ripple:n.ripple,size:n.size,variant:"plain"};return t(Zt,null,[t("label",{for:tt,class:{"v-rating__item--half":n.halfIncrements&&Y%1>0,"v-rating__item--full":n.halfIncrements&&Y%1===0},onMouseenter:U,onMouseleave:W,onClick:_},[t("span",{class:"v-rating__hidden"},[h(n.itemAriaLabel,Y,n.length)]),H?r.item?r.item({...S.value[O],props:nt,value:Y,index:O,rating:v.value}):t(dn,o({"aria-label":h(n.itemAriaLabel,Y,n.length)},nt),null):void 0]),t("input",{class:"v-rating__hidden",name:B.value,id:tt,type:"radio",value:Y,checked:v.value===Y,tabindex:-1,readonly:n.readonly,disabled:n.disabled},null)])}function D(E){return r["item-label"]?r["item-label"](E):E.label?t("span",null,[E.label]):t("span",null,[e(" ")])}return Lt(()=>{var Y;const E=!!((Y=n.itemLabels)!=null&&Y.length)||r["item-label"];return t(n.tag,{class:["v-rating",{"v-rating--hover":n.hover,"v-rating--readonly":n.readonly},u.value,n.class],style:n.style},{default:()=>[t(P,{value:0,index:-1,showStar:!1},null),b.value.map((O,H)=>{var U,W;return t("div",{class:"v-rating__wrapper"},[E&&n.itemLabelPosition==="top"?D({value:O,index:H,label:(U=n.itemLabels)==null?void 0:U[H]}):void 0,t("div",{class:"v-rating__item"},[n.halfIncrements?t(Zt,null,[t(P,{value:O-.5,index:H*2},null),t(P,{value:O,index:H*2+1},null)]):t(P,{value:O,index:H},null)]),E&&n.itemLabelPosition==="bottom"?D({value:O,index:H,label:(W=n.itemLabels)==null?void 0:W[H]}):void 0])})]})}),{}}});function ld(n){const r=Math.abs(n);return Math.sign(n)*(r/((1/.501-2)*(1-r)+1))}function rd(n){let{selectedElement:l,containerSize:r,contentSize:h,isRtl:u,currentScrollOffset:g,isHorizontal:v}=n;const b=v?l.clientWidth:l.clientHeight,z=v?l.offsetLeft:l.offsetTop,C=u&&v?h-z-b:z,S=r+g,A=b+C,B=b*.4;return C<=g?g=Math.max(C-B,0):S<=A&&(g=Math.min(g-(S-A-B),h-r)),g}function g9(n){let{selectedElement:l,containerSize:r,contentSize:h,isRtl:u,isHorizontal:g}=n;const v=g?l.clientWidth:l.clientHeight,b=g?l.offsetLeft:l.offsetTop,z=u&&g?h-b-v/2-r/2:b+v/2-r/2;return Math.min(h-r,Math.max(0,z))}const b4=Symbol.for("vuetify:v-slide-group"),M4=mt({centerActive:Boolean,direction:{type:String,default:"horizontal"},symbol:{type:null,default:b4},nextIcon:{type:te,default:"$next"},prevIcon:{type:te,default:"$prev"},showArrows:{type:[Boolean,String],validator:n=>typeof n=="boolean"||["always","desktop","mobile"].includes(n)},...Wt(),...le(),...oo({selectedClass:"v-slide-group-item--active"})},"VSlideGroup"),B0=At()({name:"VSlideGroup",props:M4(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{isRtl:h}=Xe(),{mobile:u}=Mr(),g=yr(n,n.symbol),v=_t(!1),b=_t(0),z=_t(0),C=_t(0),S=X(()=>n.direction==="horizontal"),{resizeRef:A,contentRect:B}=el(),{resizeRef:P,contentRect:D}=el(),E=X(()=>g.selected.value.length?g.items.value.findIndex($t=>$t.id===g.selected.value[0]):-1),Y=X(()=>g.selected.value.length?g.items.value.findIndex($t=>$t.id===g.selected.value[g.selected.value.length-1]):-1);if(Me){let $t=-1;Vt(()=>[g.selected.value,B.value,D.value,S.value],()=>{cancelAnimationFrame($t),$t=requestAnimationFrame(()=>{if(B.value&&D.value){const Tt=S.value?"width":"height";z.value=B.value[Tt],C.value=D.value[Tt],v.value=z.value+1=0&&P.value){const Tt=P.value.children[Y.value];E.value===0||!v.value?b.value=0:n.centerActive?b.value=g9({selectedElement:Tt,containerSize:z.value,contentSize:C.value,isRtl:h.value,isHorizontal:S.value}):v.value&&(b.value=rd({selectedElement:Tt,containerSize:z.value,contentSize:C.value,isRtl:h.value,currentScrollOffset:b.value,isHorizontal:S.value}))}})})}const O=_t(!1);let H=0,U=0;function W($t){const Tt=S.value?"clientX":"clientY";U=(h.value&&S.value?-1:1)*b.value,H=$t.touches[0][Tt],O.value=!0}function _($t){if(!v.value)return;const Tt=S.value?"clientX":"clientY",Ft=h.value&&S.value?-1:1;b.value=Ft*(U+H-$t.touches[0][Tt])}function tt($t){const Tt=C.value-z.value;b.value<0||!v.value?b.value=0:b.value>=Tt&&(b.value=Tt),O.value=!1}function nt(){A.value&&(A.value[S.value?"scrollLeft":"scrollTop"]=0)}const q=_t(!1);function G($t){if(q.value=!0,!(!v.value||!P.value)){for(const Tt of $t.composedPath())for(const Ft of P.value.children)if(Ft===Tt){b.value=rd({selectedElement:Ft,containerSize:z.value,contentSize:C.value,isRtl:h.value,currentScrollOffset:b.value,isHorizontal:S.value});return}}}function et($t){q.value=!1}function st($t){var Tt;!q.value&&!($t.relatedTarget&&((Tt=P.value)!=null&&Tt.contains($t.relatedTarget)))&&ht()}function rt($t){P.value&&(S.value?$t.key==="ArrowRight"?ht(h.value?"prev":"next"):$t.key==="ArrowLeft"&&ht(h.value?"next":"prev"):$t.key==="ArrowDown"?ht("next"):$t.key==="ArrowUp"&&ht("prev"),$t.key==="Home"?ht("first"):$t.key==="End"&&ht("last"))}function ht($t){var Tt,Ft,Kt,Qt,Rt;if(P.value)if(!$t)(Tt=Go(P.value)[0])==null||Tt.focus();else if($t==="next"){const ut=(Ft=P.value.querySelector(":focus"))==null?void 0:Ft.nextElementSibling;ut?ut.focus():ht("first")}else if($t==="prev"){const ut=(Kt=P.value.querySelector(":focus"))==null?void 0:Kt.previousElementSibling;ut?ut.focus():ht("last")}else $t==="first"?(Qt=P.value.firstElementChild)==null||Qt.focus():$t==="last"&&((Rt=P.value.lastElementChild)==null||Rt.focus())}function dt($t){const Tt=b.value+($t==="prev"?-1:1)*z.value;b.value=en(Tt,0,C.value-z.value)}const Ct=X(()=>{let $t=b.value>C.value-z.value?-(C.value-z.value)+ld(C.value-z.value-b.value):-b.value;b.value<=0&&($t=ld(-b.value));const Tt=h.value&&S.value?-1:1;return{transform:`translate${S.value?"X":"Y"}(${Tt*$t}px)`,transition:O.value?"none":"",willChange:O.value?"transform":""}}),xt=X(()=>({next:g.next,prev:g.prev,select:g.select,isSelected:g.isSelected})),wt=X(()=>{switch(n.showArrows){case"always":return!0;case"desktop":return!u.value;case!0:return v.value||Math.abs(b.value)>0;case"mobile":return u.value||v.value||Math.abs(b.value)>0;default:return!u.value&&(v.value||Math.abs(b.value)>0)}}),gt=X(()=>Math.abs(b.value)>0),It=X(()=>C.value>Math.abs(b.value)+z.value);return Lt(()=>t(n.tag,{class:["v-slide-group",{"v-slide-group--vertical":!S.value,"v-slide-group--has-affixes":wt.value,"v-slide-group--is-overflowing":v.value},n.class],style:n.style,tabindex:q.value||g.selected.value.length?-1:0,onFocus:st},{default:()=>{var $t,Tt,Ft;return[wt.value&&t("div",{key:"prev",class:["v-slide-group__prev",{"v-slide-group__prev--disabled":!gt.value}],onClick:()=>dt("prev")},[(($t=r.prev)==null?void 0:$t.call(r,xt.value))??t(c0,null,{default:()=>[t(be,{icon:h.value?n.nextIcon:n.prevIcon},null)]})]),t("div",{key:"container",ref:A,class:"v-slide-group__container",onScroll:nt},[t("div",{ref:P,class:"v-slide-group__content",style:Ct.value,onTouchstartPassive:W,onTouchmovePassive:_,onTouchendPassive:tt,onFocusin:G,onFocusout:et,onKeydown:rt},[(Tt=r.default)==null?void 0:Tt.call(r,xt.value)])]),wt.value&&t("div",{key:"next",class:["v-slide-group__next",{"v-slide-group__next--disabled":!It.value}],onClick:()=>dt("next")},[((Ft=r.next)==null?void 0:Ft.call(r,xt.value))??t(c0,null,{default:()=>[t(be,{icon:h.value?n.prevIcon:n.nextIcon},null)]})])]}})),{selected:g.selected,scrollTo:dt,scrollOffset:b,focus:ht}}}),w9=At()({name:"VSlideGroupItem",props:so(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=ao(n,b4);return()=>{var u;return(u=r.default)==null?void 0:u.call(r,{isSelected:h.isSelected.value,select:h.select,toggle:h.toggle,selectedClass:h.selectedClass.value})}}});const v9=mt({multiLine:Boolean,timeout:{type:[Number,String],default:5e3},vertical:Boolean,...Wl({location:"bottom"}),...ho(),...Ie(),...Tn(),...ce(),...jn(vs({transition:"v-snackbar-transition"}),["persistent","noClickAnimation","scrim","scrollStrategy"])},"VSnackbar"),f9=At()({name:"VSnackbar",props:v9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{locationStyles:u}=Xl(n),{positionClasses:g}=co(n),{scopeId:v}=po(),{themeClasses:b}=ge(n),{colorClasses:z,colorStyles:C,variantClasses:S}=Ir(n),{roundedClasses:A}=Be(n),B=Pt();Vt(h,D),Vt(()=>n.timeout,D),Te(()=>{h.value&&D()});let P=-1;function D(){window.clearTimeout(P);const Y=Number(n.timeout);!h.value||Y===-1||(P=window.setTimeout(()=>{h.value=!1},Y))}function E(){window.clearTimeout(P)}return Lt(()=>{const[Y]=wl.filterProps(n);return t(wl,o({ref:B,class:["v-snackbar",{"v-snackbar--active":h.value,"v-snackbar--multi-line":n.multiLine&&!n.vertical,"v-snackbar--vertical":n.vertical},g.value,n.class],style:n.style},Y,{modelValue:h.value,"onUpdate:modelValue":O=>h.value=O,contentProps:o({class:["v-snackbar__wrapper",b.value,z.value,A.value,S.value],style:[u.value,C.value],onPointerenter:E,onPointerleave:D},Y.contentProps),persistent:!0,noClickAnimation:!0,scrim:!1,scrollStrategy:"none",_disableGlobalStack:!0},v),{default:()=>[zr(!1,"v-snackbar"),r.default&&t("div",{class:"v-snackbar__content",role:"status","aria-live":"polite"},[r.default()]),r.actions&&t(fe,{defaults:{VBtn:{variant:"text",ripple:!1}}},{default:()=>[t("div",{class:"v-snackbar__actions"},[r.actions()])]})],activator:r.activator})}),Un({},B)}});const m9=mt({indeterminate:Boolean,inset:Boolean,flat:Boolean,loading:{type:[Boolean,String],default:!1},...xl(),...Ra()},"VSwitch"),k9=At()({name:"VSwitch",inheritAttrs:!1,props:m9(),emits:{"update:focused":n=>!0,"update:modelValue":()=>!0,"update:indeterminate":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const u=ee(n,"indeterminate"),g=ee(n,"modelValue"),{loaderClasses:v}=Ta(n),{isFocused:b,focus:z,blur:C}=Yl(n),S=Pt(),A=X(()=>typeof n.loading=="string"&&n.loading!==""?n.loading:n.color),B=on(),P=X(()=>n.id||`switch-${B}`);function D(){u.value&&(u.value=!1)}function E(Y){var O,H;Y.stopPropagation(),Y.preventDefault(),(H=(O=S.value)==null?void 0:O.input)==null||H.click()}return Lt(()=>{const[Y,O]=br(r),[H,U]=Ge.filterProps(n),[W,_]=wr.filterProps(n);return t(Ge,o({class:["v-switch",{"v-switch--inset":n.inset},{"v-switch--indeterminate":u.value},v.value,n.class],style:n.style},Y,H,{id:P.value,focused:b.value}),{...h,default:tt=>{let{id:nt,messagesId:q,isDisabled:G,isReadonly:et,isValid:st}=tt;return t(wr,o({ref:S},W,{modelValue:g.value,"onUpdate:modelValue":[rt=>g.value=rt,D],id:nt.value,"aria-describedby":q.value,type:"checkbox","aria-checked":u.value?"mixed":void 0,disabled:G.value,readonly:et.value,onFocus:z,onBlur:C},O),{...h,default:()=>t("div",{class:"v-switch__track",onClick:E},null),input:rt=>{let{inputNode:ht,icon:dt}=rt;return t(Zt,null,[ht,t("div",{class:["v-switch__thumb",{"v-switch__thumb--filled":dt||n.loading}]},[t(Bh,null,{default:()=>[n.loading?t(Th,{name:"v-switch",active:!0,color:st.value===!1?void 0:A.value},{default:Ct=>h.loader?h.loader(Ct):t(Dh,{active:Ct.isActive,color:Ct.color,indeterminate:!0,size:"16",width:"2"},null)}):dt&&t(be,{key:dt,icon:dt,size:"x-small"},null)]})])])}})}})}),{}}});const b9=mt({color:String,height:[Number,String],window:Boolean,...Wt(),...Re(),...lo(),...Ie(),...le(),...ce()},"VSystemBar"),M9=At()({name:"VSystemBar",props:b9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(Bt(n,"color")),{elevationClasses:v}=Ze(n),{roundedClasses:b}=Be(n),{ssrBootStyles:z}=xr(),C=X(()=>n.height??(n.window?32:24)),{layoutItemStyles:S}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:_t("top"),layoutSize:C,elementSize:C,active:X(()=>!0),absolute:Bt(n,"absolute")});return Lt(()=>t(n.tag,{class:["v-system-bar",{"v-system-bar--window":n.window},h.value,u.value,v.value,b.value,n.class],style:[g.value,S.value,z.value,n.style]},r)),{}}});const x4=Symbol.for("vuetify:v-tabs"),x9=mt({fixed:Boolean,sliderColor:String,hideSlider:Boolean,direction:{type:String,default:"horizontal"},...jn(Rh({selectedClass:"v-tab--selected",variant:"text"}),["active","block","flat","location","position","symbol"])},"VTab"),z4=At()({name:"VTab",props:x9(),setup(n,l){let{slots:r,attrs:h}=l;const{textColorClasses:u,textColorStyles:g}=rn(n,"sliderColor"),v=X(()=>n.direction==="horizontal"),b=_t(!1),z=Pt(),C=Pt();function S(A){var P,D;let{value:B}=A;if(b.value=B,B){const E=(D=(P=z.value)==null?void 0:P.$el.parentElement)==null?void 0:D.querySelector(".v-tab--selected .v-tab__slider"),Y=C.value;if(!E||!Y)return;const O=getComputedStyle(E).color,H=E.getBoundingClientRect(),U=Y.getBoundingClientRect(),W=v.value?"x":"y",_=v.value?"X":"Y",tt=v.value?"right":"bottom",nt=v.value?"width":"height",q=H[W],G=U[W],et=q>G?H[tt]-U[tt]:H[W]-U[W],st=Math.sign(et)>0?v.value?"right":"bottom":Math.sign(et)<0?v.value?"left":"top":"center",ht=(Math.abs(et)+(Math.sign(et)<0?H[nt]:U[nt]))/Math.max(H[nt],U[nt]),dt=H[nt]/U[nt],Ct=1.5;rr(Y,{backgroundColor:[O,"currentcolor"],transform:[`translate${_}(${et}px) scale${_}(${dt})`,`translate${_}(${et/Ct}px) scale${_}(${(ht-1)/Ct+1})`,"none"],transformOrigin:Array(3).fill(st)},{duration:225,easing:Uo})}}return Lt(()=>{const[A]=dn.filterProps(n);return t(dn,o({symbol:x4,ref:z,class:["v-tab",n.class],style:n.style,tabindex:b.value?0:-1,role:"tab","aria-selected":String(b.value),active:!1,block:n.fixed,maxWidth:n.fixed?300:void 0,rounded:0},A,h,{"onGroup:selected":S}),{default:()=>{var B;return[((B=r.default)==null?void 0:B.call(r))??n.text,!n.hideSlider&&t("div",{ref:C,class:["v-tab__slider",u.value],style:g.value},null)]}})}),{}}});function z9(n){return n?n.map(l=>typeof l=="string"?{title:l,value:l}:l):[]}const I9=mt({alignTabs:{type:String,default:"start"},color:String,fixedTabs:Boolean,items:{type:Array,default:()=>[]},stacked:Boolean,bgColor:String,grow:Boolean,height:{type:[Number,String],default:void 0},hideSlider:Boolean,sliderColor:String,...M4({mandatory:"force"}),...Ee(),...le()},"VTabs"),y9=At()({name:"VTabs",props:I9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),u=X(()=>z9(n.items)),{densityClasses:g}=sn(n),{backgroundColorClasses:v,backgroundColorStyles:b}=Ne(Bt(n,"bgColor"));return Fe({VTab:{color:Bt(n,"color"),direction:Bt(n,"direction"),stacked:Bt(n,"stacked"),fixed:Bt(n,"fixedTabs"),sliderColor:Bt(n,"sliderColor"),hideSlider:Bt(n,"hideSlider")}}),Lt(()=>{const[z]=B0.filterProps(n);return t(B0,o(z,{modelValue:h.value,"onUpdate:modelValue":C=>h.value=C,class:["v-tabs",`v-tabs--${n.direction}`,`v-tabs--align-tabs-${n.alignTabs}`,{"v-tabs--fixed-tabs":n.fixedTabs,"v-tabs--grow":n.grow,"v-tabs--stacked":n.stacked},g.value,v.value,n.class],style:[{"--v-tabs-height":Xt(n.height)},b.value,n.style],role:"tablist",symbol:x4}),{default:()=>[r.default?r.default():u.value.map(C=>t(z4,o(C,{key:C.title}),null))]})}),{}}});const C9=mt({fixedHeader:Boolean,fixedFooter:Boolean,height:[Number,String],hover:Boolean,...Wt(),...Ee(),...le(),...ce()},"VTable"),S9=At()({name:"VTable",props:C9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{densityClasses:u}=sn(n);return Lt(()=>t(n.tag,{class:["v-table",{"v-table--fixed-height":!!n.height,"v-table--fixed-header":n.fixedHeader,"v-table--fixed-footer":n.fixedFooter,"v-table--has-top":!!r.top,"v-table--has-bottom":!!r.bottom,"v-table--hover":n.hover},h.value,u.value,n.class],style:n.style},{default:()=>{var g,v,b;return[(g=r.top)==null?void 0:g.call(r),r.default?t("div",{class:"v-table__wrapper",style:{height:Xt(n.height)}},[t("table",null,[r.default()])]):(v=r.wrapper)==null?void 0:v.call(r),(b=r.bottom)==null?void 0:b.call(r)]}})),{}}});const $9=mt({autoGrow:Boolean,autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,noResize:Boolean,rows:{type:[Number,String],default:5,validator:n=>!isNaN(parseFloat(n))},maxRows:{type:[Number,String],validator:n=>!isNaN(parseFloat(n))},suffix:String,modelModifiers:Object,...xl(),...Ya()},"VTextarea"),A9=At()({name:"VTextarea",directives:{Intersect:Oa},inheritAttrs:!1,props:$9(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const g=ee(n,"modelValue"),{isFocused:v,focus:b,blur:z}=Yl(n),C=X(()=>typeof n.counterValue=="function"?n.counterValue(g.value):(g.value||"").toString().length),S=X(()=>{if(r.maxlength)return r.maxlength;if(!(!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"))return n.counter});function A(st,rt){var ht,dt;!n.autofocus||!st||(dt=(ht=rt[0].target)==null?void 0:ht.focus)==null||dt.call(ht)}const B=Pt(),P=Pt(),D=_t(""),E=Pt(),Y=X(()=>n.persistentPlaceholder||v.value||n.active);function O(){var st;E.value!==document.activeElement&&((st=E.value)==null||st.focus()),v.value||b()}function H(st){O(),h("click:control",st)}function U(st){h("mousedown:control",st)}function W(st){st.stopPropagation(),O(),pe(()=>{g.value="",bh(n["onClick:clear"],st)})}function _(st){var ht;const rt=st.target;if(g.value=rt.value,(ht=n.modelModifiers)!=null&&ht.trim){const dt=[rt.selectionStart,rt.selectionEnd];pe(()=>{rt.selectionStart=dt[0],rt.selectionEnd=dt[1]})}}const tt=Pt(),nt=Pt(+n.rows),q=X(()=>["plain","underlined"].includes(n.variant));fn(()=>{n.autoGrow||(nt.value=+n.rows)});function G(){n.autoGrow&&pe(()=>{if(!tt.value||!P.value)return;const st=getComputedStyle(tt.value),rt=getComputedStyle(P.value.$el),ht=parseFloat(st.getPropertyValue("--v-field-padding-top"))+parseFloat(st.getPropertyValue("--v-input-padding-top"))+parseFloat(st.getPropertyValue("--v-field-padding-bottom")),dt=tt.value.scrollHeight,Ct=parseFloat(st.lineHeight),xt=Math.max(parseFloat(n.rows)*Ct+ht,parseFloat(rt.getPropertyValue("--v-input-control-height"))),wt=parseFloat(n.maxRows)*Ct+ht||1/0,gt=en(dt??0,xt,wt);nt.value=Math.floor((gt-ht)/Ct),D.value=Xt(gt)})}Te(G),Vt(g,G),Vt(()=>n.rows,G),Vt(()=>n.maxRows,G),Vt(()=>n.density,G);let et;return Vt(tt,st=>{st?(et=new ResizeObserver(G),et.observe(tt.value)):et==null||et.disconnect()}),Ue(()=>{et==null||et.disconnect()}),Lt(()=>{const st=!!(u.counter||n.counter||n.counterValue),rt=!!(st||u.details),[ht,dt]=br(r),[{modelValue:Ct,...xt}]=Ge.filterProps(n),[wt]=Xh(n);return t(Ge,o({ref:B,modelValue:g.value,"onUpdate:modelValue":gt=>g.value=gt,class:["v-textarea v-text-field",{"v-textarea--prefixed":n.prefix,"v-textarea--suffixed":n.suffix,"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-textarea--auto-grow":n.autoGrow,"v-textarea--no-resize":n.noResize||n.autoGrow,"v-text-field--plain-underlined":q.value},n.class],style:n.style},ht,xt,{centerAffix:nt.value===1&&!q.value,focused:v.value}),{...u,default:gt=>{let{isDisabled:It,isDirty:$t,isReadonly:Tt,isValid:Ft}=gt;return t(fs,o({ref:P,style:{"--v-textarea-control-height":D.value},onClick:H,onMousedown:U,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},wt,{active:Y.value||$t.value,centerAffix:nt.value===1&&!q.value,dirty:$t.value||n.dirty,disabled:It.value,focused:v.value,error:Ft.value===!1}),{...u,default:Kt=>{let{props:{class:Qt,...Rt}}=Kt;return t(Zt,null,[n.prefix&&t("span",{class:"v-text-field__prefix"},[n.prefix]),Ce(t("textarea",o({ref:E,class:Qt,value:g.value,onInput:_,autofocus:n.autofocus,readonly:Tt.value,disabled:It.value,placeholder:n.placeholder,rows:n.rows,name:n.name,onFocus:O,onBlur:z},Rt,dt),null),[[mn("intersect"),{handler:A},null,{once:!0}]]),n.autoGrow&&Ce(t("textarea",{class:[Qt,"v-textarea__sizer"],"onUpdate:modelValue":ut=>g.value=ut,ref:tt,readonly:!0,"aria-hidden":"true"},null),[[qo,g.value]]),n.suffix&&t("span",{class:"v-text-field__suffix"},[n.suffix])])}})},details:rt?gt=>{var It;return t(Zt,null,[(It=u.details)==null?void 0:It.call(u,gt),st&&t(Zt,null,[t("span",null,null),t(qa,{active:n.persistentCounter||v.value,value:C.value,max:S.value},u.counter)])])}:void 0})}),Un({},B,P,E)}});const B9=mt({withBackground:Boolean,...Wt(),...ce(),...le()},"VThemeProvider"),H9=At()({name:"VThemeProvider",props:B9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n);return()=>{var u;return n.withBackground?t(n.tag,{class:["v-theme-provider",h.value,n.class],style:n.style},{default:()=>{var g;return[(g=r.default)==null?void 0:g.call(r)]}}):(u=r.default)==null?void 0:u.call(r)}}});const N9=mt({align:{type:String,default:"center",validator:n=>["center","start"].includes(n)},direction:{type:String,default:"vertical",validator:n=>["vertical","horizontal"].includes(n)},justify:{type:String,default:"auto",validator:n=>["auto","center"].includes(n)},side:{type:String,validator:n=>n==null||["start","end"].includes(n)},lineInset:{type:[String,Number],default:0},lineThickness:{type:[String,Number],default:2},lineColor:String,truncateLine:{type:String,validator:n=>["start","end","both"].includes(n)},...Wt(),...Ee(),...le(),...ce()},"VTimeline"),j9=At()({name:"VTimeline",props:N9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{densityClasses:u}=sn(n),{rtlClasses:g}=Xe();Fe({VTimelineDivider:{lineColor:Bt(n,"lineColor")},VTimelineItem:{density:Bt(n,"density"),lineInset:Bt(n,"lineInset")}});const v=X(()=>{const z=n.side?n.side:n.density!=="default"?"end":null;return z&&`v-timeline--side-${z}`}),b=X(()=>{const z=["v-timeline--truncate-line-start","v-timeline--truncate-line-end"];switch(n.truncateLine){case"both":return z;case"start":return z[0];case"end":return z[1];default:return null}});return Lt(()=>t(n.tag,{class:["v-timeline",`v-timeline--${n.direction}`,`v-timeline--align-${n.align}`,`v-timeline--justify-${n.justify}`,b.value,{"v-timeline--inset-line":!!n.lineInset},h.value,u.value,v.value,g.value,n.class],style:[{"--v-timeline-line-thickness":Xt(n.lineThickness)},n.style]},r)),{}}}),P9=mt({dotColor:String,fillDot:Boolean,hideDot:Boolean,icon:te,iconColor:String,lineColor:String,...Wt(),...Ie(),...Ml(),...Re()},"VTimelineDivider"),L9=At()({name:"VTimelineDivider",props:P9(),setup(n,l){let{slots:r}=l;const{sizeClasses:h,sizeStyles:u}=io(n,"v-timeline-divider__dot"),{backgroundColorStyles:g,backgroundColorClasses:v}=Ne(Bt(n,"dotColor")),{roundedClasses:b}=Be(n,"v-timeline-divider__dot"),{elevationClasses:z}=Ze(n),{backgroundColorClasses:C,backgroundColorStyles:S}=Ne(Bt(n,"lineColor"));return Lt(()=>t("div",{class:["v-timeline-divider",{"v-timeline-divider--fill-dot":n.fillDot},n.class],style:n.style},[t("div",{class:["v-timeline-divider__before",C.value],style:S.value},null),!n.hideDot&&t("div",{key:"dot",class:["v-timeline-divider__dot",z.value,b.value,h.value],style:u.value},[t("div",{class:["v-timeline-divider__inner-dot",v.value,b.value],style:g.value},[r.default?t(fe,{key:"icon-defaults",disabled:!n.icon,defaults:{VIcon:{color:n.iconColor,icon:n.icon,size:n.size}}},r.default):t(be,{key:"icon",color:n.iconColor,icon:n.icon,size:n.size},null)])]),t("div",{class:["v-timeline-divider__after",C.value],style:S.value},null)])),{}}}),D9=mt({density:String,dotColor:String,fillDot:Boolean,hideDot:Boolean,hideOpposite:{type:Boolean,default:void 0},icon:te,iconColor:String,lineInset:[Number,String],...Wt(),...Dn(),...Re(),...Ie(),...Ml(),...le()},"VTimelineItem"),F9=At()({name:"VTimelineItem",props:D9(),setup(n,l){let{slots:r}=l;const{dimensionStyles:h}=Fn(n),u=_t(0),g=Pt();return Vt(g,v=>{var b;v&&(u.value=((b=v.$el.querySelector(".v-timeline-divider__dot"))==null?void 0:b.getBoundingClientRect().width)??0)},{flush:"post"}),Lt(()=>{var v,b;return t("div",{class:["v-timeline-item",{"v-timeline-item--fill-dot":n.fillDot},n.class],style:[{"--v-timeline-dot-size":Xt(u.value),"--v-timeline-line-inset":n.lineInset?`calc(var(--v-timeline-dot-size) / 2 + ${Xt(n.lineInset)})`:Xt(0)},n.style]},[t("div",{class:"v-timeline-item__body",style:h.value},[(v=r.default)==null?void 0:v.call(r)]),t(L9,{ref:g,hideDot:n.hideDot,icon:n.icon,iconColor:n.iconColor,size:n.size,elevation:n.elevation,dotColor:n.dotColor,fillDot:n.fillDot,rounded:n.rounded},{default:r.icon}),n.density!=="compact"&&t("div",{class:"v-timeline-item__opposite"},[!n.hideOpposite&&((b=r.opposite)==null?void 0:b.call(r))])])}),{}}}),O9=mt({...Wt(),...Tn({variant:"text"})},"VToolbarItems"),T9=At()({name:"VToolbarItems",props:O9(),setup(n,l){let{slots:r}=l;return Fe({VBtn:{color:Bt(n,"color"),height:"inherit",variant:Bt(n,"variant")}}),Lt(()=>{var h;return t("div",{class:["v-toolbar-items",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}});const R9=mt({id:String,text:String,...jn(vs({closeOnBack:!1,location:"end",locationStrategy:"connected",eager:!0,minWidth:0,offset:10,openOnClick:!1,openOnHover:!0,origin:"auto",scrim:!1,scrollStrategy:"reposition",transition:!1}),["absolute","persistent"])},"VTooltip"),E9=At()({name:"VTooltip",props:R9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{scopeId:u}=po(),g=on(),v=X(()=>n.id||`v-tooltip-${g}`),b=Pt(),z=X(()=>n.location.split(" ").length>1?n.location:n.location+" center"),C=X(()=>n.origin==="auto"||n.origin==="overlap"||n.origin.split(" ").length>1||n.location.split(" ").length>1?n.origin:n.origin+" center"),S=X(()=>n.transition?n.transition:h.value?"scale-transition":"fade-transition"),A=X(()=>o({"aria-describedby":v.value},n.activatorProps));return Lt(()=>{const[B]=wl.filterProps(n);return t(wl,o({ref:b,class:["v-tooltip",n.class],style:n.style,id:v.value},B,{modelValue:h.value,"onUpdate:modelValue":P=>h.value=P,transition:S.value,absolute:!0,location:z.value,origin:C.value,persistent:!0,role:"tooltip",activatorProps:A.value,_disableGlobalStack:!0},u),{activator:r.activator,default:function(){var Y;for(var P=arguments.length,D=new Array(P),E=0;E!0},setup(n,l){let{slots:r}=l;const h=wp(n,"validation");return()=>{var u;return(u=r.default)==null?void 0:u.call(r,h)}}}),_9=Object.freeze(Object.defineProperty({__proto__:null,VAlert:vk,VAlertTitle:ap,VApp:Cm,VAppBar:qm,VAppBarNavIcon:uk,VAppBarTitle:pk,VAutocomplete:L6,VAvatar:_l,VBadge:F6,VBanner:R6,VBannerActions:Ep,VBannerText:Vp,VBottomNavigation:V6,VBreadcrumbs:q6,VBreadcrumbsDivider:_p,VBreadcrumbsItem:Wp,VBtn:dn,VBtnGroup:g0,VBtnToggle:Qm,VCard:U6,VCardActions:Xp,VCardItem:Gp,VCardSubtitle:qp,VCardText:Up,VCardTitle:Yp,VCarousel:o7,VCarouselItem:a7,VCheckbox:Ik,VCheckboxBtn:Qr,VChip:ws,VChipGroup:Sk,VClassIcon:$h,VCode:i7,VCol:k8,VColorPicker:Z7,VCombobox:J7,VComponentIcon:i0,VContainer:w8,VCounter:qa,VDefaultsProvider:fe,VDialog:e8,VDialogBottomTransition:Bm,VDialogTopTransition:Hm,VDialogTransition:Da,VDivider:Cp,VExpandTransition:Fa,VExpandXTransition:Nh,VExpansionPanel:a8,VExpansionPanelText:s4,VExpansionPanelTitle:i4,VExpansionPanels:r8,VFabTransition:Am,VFadeTransition:c0,VField:fs,VFieldLabel:Io,VFileInput:h8,VFooter:c8,VForm:p8,VHover:A8,VIcon:be,VImg:gr,VInput:Ge,VItem:N8,VItemGroup:H8,VKbd:j8,VLabel:uo,VLayout:L8,VLayoutItem:F8,VLazy:T8,VLigatureIcon:E5,VList:_a,VListGroup:m0,VListImg:Gk,VListItem:gl,VListItemAction:Zk,VListItemMedia:Qk,VListItemSubtitle:zp,VListItemTitle:Ip,VListSubheader:yp,VLocaleProvider:E8,VMain:_8,VMenu:Xa,VMessages:up,VNavigationDrawer:Q8,VNoSsr:J8,VOverlay:wl,VPagination:n9,VParallax:o9,VProgressCircular:Dh,VProgressLinear:Fh,VRadio:a9,VRadioGroup:h9,VRangeSlider:c9,VRating:p9,VResponsive:u0,VRow:C8,VScaleTransition:Bh,VScrollXReverseTransition:jm,VScrollXTransition:Nm,VScrollYReverseTransition:Lm,VScrollYTransition:Pm,VSelect:B6,VSelectionControl:wr,VSelectionControlGroup:hp,VSheet:A0,VSlideGroup:B0,VSlideGroupItem:w9,VSlideXReverseTransition:Fm,VSlideXTransition:Dm,VSlideYReverseTransition:Om,VSlideYTransition:Hh,VSlider:$0,VSnackbar:f9,VSpacer:S8,VSvgIcon:Sh,VSwitch:k9,VSystemBar:M9,VTab:z4,VTable:S9,VTabs:y9,VTextField:vr,VTextarea:A9,VThemeProvider:H9,VTimeline:j9,VTimelineItem:F9,VToolbar:p0,VToolbarItems:T9,VToolbarTitle:Ah,VTooltip:E9,VValidation:V9,VVirtualScroll:Ua,VWindow:x0,VWindowItem:z0},Symbol.toStringTag,{value:"Module"}));function W9(n,l){const r=l.modifiers||{},h=l.value,{once:u,immediate:g,...v}=r,b=!Object.keys(v).length,{handler:z,options:C}=typeof h=="object"?h:{handler:h,options:{attributes:(v==null?void 0:v.attr)??b,characterData:(v==null?void 0:v.char)??b,childList:(v==null?void 0:v.child)??b,subtree:(v==null?void 0:v.sub)??b}},S=new MutationObserver(function(){let A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],B=arguments.length>1?arguments[1]:void 0;z==null||z(A,B),u&&I4(n,l)});g&&(z==null||z([],S)),n._mutate=Object(n._mutate),n._mutate[l.instance.$.uid]={observer:S},S.observe(n,C)}function I4(n,l){var r;(r=n._mutate)!=null&&r[l.instance.$.uid]&&(n._mutate[l.instance.$.uid].observer.disconnect(),delete n._mutate[l.instance.$.uid])}const X9={mounted:W9,unmounted:I4};function q9(n,l){var u,g;const r=l.value,h={passive:!((u=l.modifiers)!=null&&u.active)};window.addEventListener("resize",r,h),n._onResize=Object(n._onResize),n._onResize[l.instance.$.uid]={handler:r,options:h},(g=l.modifiers)!=null&&g.quiet||r()}function Y9(n,l){var u;if(!((u=n._onResize)!=null&&u[l.instance.$.uid]))return;const{handler:r,options:h}=n._onResize[l.instance.$.uid];window.removeEventListener("resize",r,h),delete n._onResize[l.instance.$.uid]}const G9={mounted:q9,unmounted:Y9};function y4(n,l){const{self:r=!1}=l.modifiers??{},h=l.value,u=typeof h=="object"&&h.options||{passive:!0},g=typeof h=="function"||"handleEvent"in h?h:h.handler,v=r?n:l.arg?document.querySelector(l.arg):window;v&&(v.addEventListener("scroll",g,u),n._onScroll=Object(n._onScroll),n._onScroll[l.instance.$.uid]={handler:g,options:u,target:r?void 0:v})}function C4(n,l){var g;if(!((g=n._onScroll)!=null&&g[l.instance.$.uid]))return;const{handler:r,options:h,target:u=n}=n._onScroll[l.instance.$.uid];u.removeEventListener("scroll",r,h),delete n._onScroll[l.instance.$.uid]}function U9(n,l){l.value!==l.oldValue&&(C4(n,l),y4(n,l))}const Z9={mounted:y4,unmounted:C4,updated:U9},K9=Object.freeze(Object.defineProperty({__proto__:null,ClickOutside:Op,Intersect:Yu,Mutate:X9,Resize:G9,Ripple:ql,Scroll:Z9,Touch:Gh},Symbol.toStringTag,{value:"Module"})),Q9={name:"PurpleTheme",dark:!1,variables:{"border-color":"#1e88e5","carousel-control-size":10},colors:{primary:"#1e88e5",secondary:"#5e35b1",info:"#03c9d7",success:"#00c853",accent:"#FFAB91",warning:"#ffc107",error:"#f44336",lightprimary:"#eef2f6",lightsecondary:"#ede7f6",lightsuccess:"#b9f6ca",lighterror:"#f9d8d8",lightwarning:"#fff8e1",darkText:"#212121",lightText:"#616161",darkprimary:"#1565c0",darksecondary:"#4527a0",borderLight:"#d0d0d0",inputBorder:"#787878",containerBg:"#eef2f6",surface:"#fff","on-surface-variant":"#fff",facebook:"#4267b2",twitter:"#1da1f2",linkedin:"#0e76a8",gray100:"#fafafa",primary200:"#90caf9",secondary200:"#b39ddb"}},J9=Eu({components:_9,directives:K9,theme:{defaultTheme:"PurpleTheme",themes:{PurpleTheme:Q9}},defaults:{VBtn:{},VCard:{rounded:"md"},VTextField:{rounded:"lg"},VTooltip:{location:"top"}}});/*! + * perfect-scrollbar v1.5.3 + * Copyright 2021 Hyunje Jun, MDBootstrap and Contributors + * Licensed under MIT + */function Qn(n){return getComputedStyle(n)}function pn(n,l){for(var r in l){var h=l[r];typeof h=="number"&&(h=h+"px"),n.style[r]=h}return n}function Ts(n){var l=document.createElement("div");return l.className=n,l}var od=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function jl(n,l){if(!od)throw new Error("No element matching method supported");return od.call(n,l)}function Tr(n){n.remove?n.remove():n.parentNode&&n.parentNode.removeChild(n)}function sd(n,l){return Array.prototype.filter.call(n.children,function(r){return jl(r,l)})}var Pe={main:"ps",rtl:"ps__rtl",element:{thumb:function(n){return"ps__thumb-"+n},rail:function(n){return"ps__rail-"+n},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function(n){return"ps--active-"+n},scrolling:function(n){return"ps--scrolling-"+n}}},S4={x:null,y:null};function $4(n,l){var r=n.element.classList,h=Pe.state.scrolling(l);r.contains(h)?clearTimeout(S4[l]):r.add(h)}function A4(n,l){S4[l]=setTimeout(function(){return n.isAlive&&n.element.classList.remove(Pe.state.scrolling(l))},n.settings.scrollingThreshold)}function tb(n,l){$4(n,l),A4(n,l)}var ms=function(l){this.element=l,this.handlers={}},B4={isEmpty:{configurable:!0}};ms.prototype.bind=function(l,r){typeof this.handlers[l]>"u"&&(this.handlers[l]=[]),this.handlers[l].push(r),this.element.addEventListener(l,r,!1)};ms.prototype.unbind=function(l,r){var h=this;this.handlers[l]=this.handlers[l].filter(function(u){return r&&u!==r?!0:(h.element.removeEventListener(l,u,!1),!1)})};ms.prototype.unbindAll=function(){for(var l in this.handlers)this.unbind(l)};B4.isEmpty.get=function(){var n=this;return Object.keys(this.handlers).every(function(l){return n.handlers[l].length===0})};Object.defineProperties(ms.prototype,B4);var go=function(){this.eventElements=[]};go.prototype.eventElement=function(l){var r=this.eventElements.filter(function(h){return h.element===l})[0];return r||(r=new ms(l),this.eventElements.push(r)),r};go.prototype.bind=function(l,r,h){this.eventElement(l).bind(r,h)};go.prototype.unbind=function(l,r,h){var u=this.eventElement(l);u.unbind(r,h),u.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(u),1)};go.prototype.unbindAll=function(){this.eventElements.forEach(function(l){return l.unbindAll()}),this.eventElements=[]};go.prototype.once=function(l,r,h){var u=this.eventElement(l),g=function(v){u.unbind(r,g),h(v)};u.bind(r,g)};function Rs(n){if(typeof window.CustomEvent=="function")return new CustomEvent(n);var l=document.createEvent("CustomEvent");return l.initCustomEvent(n,!1,!1,void 0),l}function ia(n,l,r,h,u){h===void 0&&(h=!0),u===void 0&&(u=!1);var g;if(l==="top")g=["contentHeight","containerHeight","scrollTop","y","up","down"];else if(l==="left")g=["contentWidth","containerWidth","scrollLeft","x","left","right"];else throw new Error("A proper axis should be provided");eb(n,r,g,h,u)}function eb(n,l,r,h,u){var g=r[0],v=r[1],b=r[2],z=r[3],C=r[4],S=r[5];h===void 0&&(h=!0),u===void 0&&(u=!1);var A=n.element;n.reach[z]=null,A[b]<1&&(n.reach[z]="start"),A[b]>n[g]-n[v]-1&&(n.reach[z]="end"),l&&(A.dispatchEvent(Rs("ps-scroll-"+z)),l<0?A.dispatchEvent(Rs("ps-scroll-"+C)):l>0&&A.dispatchEvent(Rs("ps-scroll-"+S)),h&&tb(n,z)),n.reach[z]&&(l||u)&&A.dispatchEvent(Rs("ps-"+z+"-reach-"+n.reach[z]))}function Ae(n){return parseInt(n,10)||0}function nb(n){return jl(n,"input,[contenteditable]")||jl(n,"select,[contenteditable]")||jl(n,"textarea,[contenteditable]")||jl(n,"button,[contenteditable]")}function lb(n){var l=Qn(n);return Ae(l.width)+Ae(l.paddingLeft)+Ae(l.paddingRight)+Ae(l.borderLeftWidth)+Ae(l.borderRightWidth)}var Fr={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function vl(n){var l=n.element,r=Math.floor(l.scrollTop),h=l.getBoundingClientRect();n.containerWidth=Math.round(h.width),n.containerHeight=Math.round(h.height),n.contentWidth=l.scrollWidth,n.contentHeight=l.scrollHeight,l.contains(n.scrollbarXRail)||(sd(l,Pe.element.rail("x")).forEach(function(u){return Tr(u)}),l.appendChild(n.scrollbarXRail)),l.contains(n.scrollbarYRail)||(sd(l,Pe.element.rail("y")).forEach(function(u){return Tr(u)}),l.appendChild(n.scrollbarYRail)),!n.settings.suppressScrollX&&n.containerWidth+n.settings.scrollXMarginOffset=n.railXWidth-n.scrollbarXWidth&&(n.scrollbarXLeft=n.railXWidth-n.scrollbarXWidth),n.scrollbarYTop>=n.railYHeight-n.scrollbarYHeight&&(n.scrollbarYTop=n.railYHeight-n.scrollbarYHeight),rb(l,n),n.scrollbarXActive?l.classList.add(Pe.state.active("x")):(l.classList.remove(Pe.state.active("x")),n.scrollbarXWidth=0,n.scrollbarXLeft=0,l.scrollLeft=n.isRtl===!0?n.contentWidth:0),n.scrollbarYActive?l.classList.add(Pe.state.active("y")):(l.classList.remove(Pe.state.active("y")),n.scrollbarYHeight=0,n.scrollbarYTop=0,l.scrollTop=0)}function ad(n,l){return n.settings.minScrollbarLength&&(l=Math.max(l,n.settings.minScrollbarLength)),n.settings.maxScrollbarLength&&(l=Math.min(l,n.settings.maxScrollbarLength)),l}function rb(n,l){var r={width:l.railXWidth},h=Math.floor(n.scrollTop);l.isRtl?r.left=l.negativeScrollAdjustment+n.scrollLeft+l.containerWidth-l.contentWidth:r.left=n.scrollLeft,l.isScrollbarXUsingBottom?r.bottom=l.scrollbarXBottom-h:r.top=l.scrollbarXTop+h,pn(l.scrollbarXRail,r);var u={top:h,height:l.railYHeight};l.isScrollbarYUsingRight?l.isRtl?u.right=l.contentWidth-(l.negativeScrollAdjustment+n.scrollLeft)-l.scrollbarYRight-l.scrollbarYOuterWidth-9:u.right=l.scrollbarYRight-n.scrollLeft:l.isRtl?u.left=l.negativeScrollAdjustment+n.scrollLeft+l.containerWidth*2-l.contentWidth-l.scrollbarYLeft-l.scrollbarYOuterWidth:u.left=l.scrollbarYLeft+n.scrollLeft,pn(l.scrollbarYRail,u),pn(l.scrollbarX,{left:l.scrollbarXLeft,width:l.scrollbarXWidth-l.railBorderXWidth}),pn(l.scrollbarY,{top:l.scrollbarYTop,height:l.scrollbarYHeight-l.railBorderYWidth})}function ob(n){n.element,n.event.bind(n.scrollbarY,"mousedown",function(l){return l.stopPropagation()}),n.event.bind(n.scrollbarYRail,"mousedown",function(l){var r=l.pageY-window.pageYOffset-n.scrollbarYRail.getBoundingClientRect().top,h=r>n.scrollbarYTop?1:-1;n.element.scrollTop+=h*n.containerHeight,vl(n),l.stopPropagation()}),n.event.bind(n.scrollbarX,"mousedown",function(l){return l.stopPropagation()}),n.event.bind(n.scrollbarXRail,"mousedown",function(l){var r=l.pageX-window.pageXOffset-n.scrollbarXRail.getBoundingClientRect().left,h=r>n.scrollbarXLeft?1:-1;n.element.scrollLeft+=h*n.containerWidth,vl(n),l.stopPropagation()})}function sb(n){id(n,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),id(n,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])}function id(n,l){var r=l[0],h=l[1],u=l[2],g=l[3],v=l[4],b=l[5],z=l[6],C=l[7],S=l[8],A=n.element,B=null,P=null,D=null;function E(H){H.touches&&H.touches[0]&&(H[u]=H.touches[0].pageY),A[z]=B+D*(H[u]-P),$4(n,C),vl(n),H.stopPropagation(),H.type.startsWith("touch")&&H.changedTouches.length>1&&H.preventDefault()}function Y(){A4(n,C),n[S].classList.remove(Pe.state.clicking),n.event.unbind(n.ownerDocument,"mousemove",E)}function O(H,U){B=A[z],U&&H.touches&&(H[u]=H.touches[0].pageY),P=H[u],D=(n[h]-n[r])/(n[g]-n[b]),U?n.event.bind(n.ownerDocument,"touchmove",E):(n.event.bind(n.ownerDocument,"mousemove",E),n.event.once(n.ownerDocument,"mouseup",Y),H.preventDefault()),n[S].classList.add(Pe.state.clicking),H.stopPropagation()}n.event.bind(n[v],"mousedown",function(H){O(H)}),n.event.bind(n[v],"touchstart",function(H){O(H,!0)})}function ab(n){var l=n.element,r=function(){return jl(l,":hover")},h=function(){return jl(n.scrollbarX,":focus")||jl(n.scrollbarY,":focus")};function u(g,v){var b=Math.floor(l.scrollTop);if(g===0){if(!n.scrollbarYActive)return!1;if(b===0&&v>0||b>=n.contentHeight-n.containerHeight&&v<0)return!n.settings.wheelPropagation}var z=l.scrollLeft;if(v===0){if(!n.scrollbarXActive)return!1;if(z===0&&g<0||z>=n.contentWidth-n.containerWidth&&g>0)return!n.settings.wheelPropagation}return!0}n.event.bind(n.ownerDocument,"keydown",function(g){if(!(g.isDefaultPrevented&&g.isDefaultPrevented()||g.defaultPrevented)&&!(!r()&&!h())){var v=document.activeElement?document.activeElement:n.ownerDocument.activeElement;if(v){if(v.tagName==="IFRAME")v=v.contentDocument.activeElement;else for(;v.shadowRoot;)v=v.shadowRoot.activeElement;if(nb(v))return}var b=0,z=0;switch(g.which){case 37:g.metaKey?b=-n.contentWidth:g.altKey?b=-n.containerWidth:b=-30;break;case 38:g.metaKey?z=n.contentHeight:g.altKey?z=n.containerHeight:z=30;break;case 39:g.metaKey?b=n.contentWidth:g.altKey?b=n.containerWidth:b=30;break;case 40:g.metaKey?z=-n.contentHeight:g.altKey?z=-n.containerHeight:z=-30;break;case 32:g.shiftKey?z=n.containerHeight:z=-n.containerHeight;break;case 33:z=n.containerHeight;break;case 34:z=-n.containerHeight;break;case 36:z=n.contentHeight;break;case 35:z=-n.contentHeight;break;default:return}n.settings.suppressScrollX&&b!==0||n.settings.suppressScrollY&&z!==0||(l.scrollTop-=z,l.scrollLeft+=b,vl(n),u(b,z)&&g.preventDefault())}})}function ib(n){var l=n.element;function r(v,b){var z=Math.floor(l.scrollTop),C=l.scrollTop===0,S=z+l.offsetHeight===l.scrollHeight,A=l.scrollLeft===0,B=l.scrollLeft+l.offsetWidth===l.scrollWidth,P;return Math.abs(b)>Math.abs(v)?P=C||S:P=A||B,P?!n.settings.wheelPropagation:!0}function h(v){var b=v.deltaX,z=-1*v.deltaY;return(typeof b>"u"||typeof z>"u")&&(b=-1*v.wheelDeltaX/6,z=v.wheelDeltaY/6),v.deltaMode&&v.deltaMode===1&&(b*=10,z*=10),b!==b&&z!==z&&(b=0,z=v.wheelDelta),v.shiftKey?[-z,-b]:[b,z]}function u(v,b,z){if(!Fr.isWebKit&&l.querySelector("select:focus"))return!0;if(!l.contains(v))return!1;for(var C=v;C&&C!==l;){if(C.classList.contains(Pe.element.consuming))return!0;var S=Qn(C);if(z&&S.overflowY.match(/(scroll|auto)/)){var A=C.scrollHeight-C.clientHeight;if(A>0&&(C.scrollTop>0&&z<0||C.scrollTop0))return!0}if(b&&S.overflowX.match(/(scroll|auto)/)){var B=C.scrollWidth-C.clientWidth;if(B>0&&(C.scrollLeft>0&&b<0||C.scrollLeft0))return!0}C=C.parentNode}return!1}function g(v){var b=h(v),z=b[0],C=b[1];if(!u(v.target,z,C)){var S=!1;n.settings.useBothWheelAxes?n.scrollbarYActive&&!n.scrollbarXActive?(C?l.scrollTop-=C*n.settings.wheelSpeed:l.scrollTop+=z*n.settings.wheelSpeed,S=!0):n.scrollbarXActive&&!n.scrollbarYActive&&(z?l.scrollLeft+=z*n.settings.wheelSpeed:l.scrollLeft-=C*n.settings.wheelSpeed,S=!0):(l.scrollTop-=C*n.settings.wheelSpeed,l.scrollLeft+=z*n.settings.wheelSpeed),vl(n),S=S||r(z,C),S&&!v.ctrlKey&&(v.stopPropagation(),v.preventDefault())}}typeof window.onwheel<"u"?n.event.bind(l,"wheel",g):typeof window.onmousewheel<"u"&&n.event.bind(l,"mousewheel",g)}function hb(n){if(!Fr.supportsTouch&&!Fr.supportsIePointer)return;var l=n.element;function r(D,E){var Y=Math.floor(l.scrollTop),O=l.scrollLeft,H=Math.abs(D),U=Math.abs(E);if(U>H){if(E<0&&Y===n.contentHeight-n.containerHeight||E>0&&Y===0)return window.scrollY===0&&E>0&&Fr.isChrome}else if(H>U&&(D<0&&O===n.contentWidth-n.containerWidth||D>0&&O===0))return!0;return!0}function h(D,E){l.scrollTop-=E,l.scrollLeft-=D,vl(n)}var u={},g=0,v={},b=null;function z(D){return D.targetTouches?D.targetTouches[0]:D}function C(D){return D.pointerType&&D.pointerType==="pen"&&D.buttons===0?!1:!!(D.targetTouches&&D.targetTouches.length===1||D.pointerType&&D.pointerType!=="mouse"&&D.pointerType!==D.MSPOINTER_TYPE_MOUSE)}function S(D){if(C(D)){var E=z(D);u.pageX=E.pageX,u.pageY=E.pageY,g=new Date().getTime(),b!==null&&clearInterval(b)}}function A(D,E,Y){if(!l.contains(D))return!1;for(var O=D;O&&O!==l;){if(O.classList.contains(Pe.element.consuming))return!0;var H=Qn(O);if(Y&&H.overflowY.match(/(scroll|auto)/)){var U=O.scrollHeight-O.clientHeight;if(U>0&&(O.scrollTop>0&&Y<0||O.scrollTop0))return!0}if(E&&H.overflowX.match(/(scroll|auto)/)){var W=O.scrollWidth-O.clientWidth;if(W>0&&(O.scrollLeft>0&&E<0||O.scrollLeft0))return!0}O=O.parentNode}return!1}function B(D){if(C(D)){var E=z(D),Y={pageX:E.pageX,pageY:E.pageY},O=Y.pageX-u.pageX,H=Y.pageY-u.pageY;if(A(D.target,O,H))return;h(O,H),u=Y;var U=new Date().getTime(),W=U-g;W>0&&(v.x=O/W,v.y=H/W,g=U),r(O,H)&&D.preventDefault()}}function P(){n.settings.swipeEasing&&(clearInterval(b),b=setInterval(function(){if(n.isInitialized){clearInterval(b);return}if(!v.x&&!v.y){clearInterval(b);return}if(Math.abs(v.x)<.01&&Math.abs(v.y)<.01){clearInterval(b);return}if(!n.element){clearInterval(b);return}h(v.x*30,v.y*30),v.x*=.8,v.y*=.8},10))}Fr.supportsTouch?(n.event.bind(l,"touchstart",S),n.event.bind(l,"touchmove",B),n.event.bind(l,"touchend",P)):Fr.supportsIePointer&&(window.PointerEvent?(n.event.bind(l,"pointerdown",S),n.event.bind(l,"pointermove",B),n.event.bind(l,"pointerup",P)):window.MSPointerEvent&&(n.event.bind(l,"MSPointerDown",S),n.event.bind(l,"MSPointerMove",B),n.event.bind(l,"MSPointerUp",P)))}var db=function(){return{handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1}},cb={"click-rail":ob,"drag-thumb":sb,keyboard:ab,wheel:ib,touch:hb},ks=function(l,r){var h=this;if(r===void 0&&(r={}),typeof l=="string"&&(l=document.querySelector(l)),!l||!l.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");this.element=l,l.classList.add(Pe.main),this.settings=db();for(var u in r)this.settings[u]=r[u];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var g=function(){return l.classList.add(Pe.state.focus)},v=function(){return l.classList.remove(Pe.state.focus)};this.isRtl=Qn(l).direction==="rtl",this.isRtl===!0&&l.classList.add(Pe.rtl),this.isNegativeScroll=function(){var C=l.scrollLeft,S=null;return l.scrollLeft=-1,S=l.scrollLeft<0,l.scrollLeft=C,S}(),this.negativeScrollAdjustment=this.isNegativeScroll?l.scrollWidth-l.clientWidth:0,this.event=new go,this.ownerDocument=l.ownerDocument||document,this.scrollbarXRail=Ts(Pe.element.rail("x")),l.appendChild(this.scrollbarXRail),this.scrollbarX=Ts(Pe.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",g),this.event.bind(this.scrollbarX,"blur",v),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var b=Qn(this.scrollbarXRail);this.scrollbarXBottom=parseInt(b.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=Ae(b.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=Ae(b.borderLeftWidth)+Ae(b.borderRightWidth),pn(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=Ae(b.marginLeft)+Ae(b.marginRight),pn(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=Ts(Pe.element.rail("y")),l.appendChild(this.scrollbarYRail),this.scrollbarY=Ts(Pe.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",g),this.event.bind(this.scrollbarY,"blur",v),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var z=Qn(this.scrollbarYRail);this.scrollbarYRight=parseInt(z.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=Ae(z.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?lb(this.scrollbarY):null,this.railBorderYWidth=Ae(z.borderTopWidth)+Ae(z.borderBottomWidth),pn(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=Ae(z.marginTop)+Ae(z.marginBottom),pn(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:l.scrollLeft<=0?"start":l.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:l.scrollTop<=0?"start":l.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(C){return cb[C](h)}),this.lastScrollTop=Math.floor(l.scrollTop),this.lastScrollLeft=l.scrollLeft,this.event.bind(this.element,"scroll",function(C){return h.onScroll(C)}),vl(this)};ks.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,pn(this.scrollbarXRail,{display:"block"}),pn(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=Ae(Qn(this.scrollbarXRail).marginLeft)+Ae(Qn(this.scrollbarXRail).marginRight),this.railYMarginHeight=Ae(Qn(this.scrollbarYRail).marginTop)+Ae(Qn(this.scrollbarYRail).marginBottom),pn(this.scrollbarXRail,{display:"none"}),pn(this.scrollbarYRail,{display:"none"}),vl(this),ia(this,"top",0,!1,!0),ia(this,"left",0,!1,!0),pn(this.scrollbarXRail,{display:""}),pn(this.scrollbarYRail,{display:""}))};ks.prototype.onScroll=function(l){this.isAlive&&(vl(this),ia(this,"top",this.element.scrollTop-this.lastScrollTop),ia(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)};ks.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),Tr(this.scrollbarX),Tr(this.scrollbarY),Tr(this.scrollbarXRail),Tr(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)};ks.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(l){return!l.match(/^ps([-_].+|)$/)}).join(" ")};const hd=["scroll","ps-scroll-y","ps-scroll-x","ps-scroll-up","ps-scroll-down","ps-scroll-left","ps-scroll-right","ps-y-reach-start","ps-y-reach-end","ps-x-reach-start","ps-x-reach-end"];var Pr={name:"PerfectScrollbar",props:{options:{type:Object,required:!1,default:()=>{}},tag:{type:String,required:!1,default:"div"},watchOptions:{type:Boolean,required:!1,default:!1}},emits:hd,data(){return{ps:null}},watch:{watchOptions(n){!n&&this.watcher?this.watcher():this.createWatcher()}},mounted(){this.create(),this.watchOptions&&this.createWatcher()},updated(){this.$nextTick(()=>{this.update()})},beforeUnmount(){this.destroy()},methods:{create(){this.ps&&this.$isServer||(this.ps=new ks(this.$el,this.options),hd.forEach(n=>{this.ps.element.addEventListener(n,l=>this.$emit(n,l))}))},createWatcher(){this.watcher=this.$watch("options",()=>{this.destroy(),this.create()},{deep:!0})},update(){this.ps&&this.ps.update()},destroy(){this.ps&&(this.ps.destroy(),this.ps=null)}},render(){return Hn(this.tag,{class:"ps"},this.$slots.default&&this.$slots.default())}},ub={install:(n,l)=>{l&&(l.name&&typeof l.name=="string"&&(Pr.name=l.name),l.options&&typeof l.options=="object"&&(Pr.props.options.default=()=>l.options),l.tag&&typeof l.tag=="string"&&(Pr.props.tag.default=l.tag),l.watchOptions&&typeof l.watchOptions=="boolean"&&(Pr.props.watchOptions=l.watchOptions)),n.component(Pr.name,Pr)}};function pb(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}function gb(n){if(n.__esModule)return n;var l=n.default;if(typeof l=="function"){var r=function h(){return this instanceof h?Reflect.construct(l,arguments,this.constructor):l.apply(this,arguments)};r.prototype=l.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(n).forEach(function(h){var u=Object.getOwnPropertyDescriptor(n,h);Object.defineProperty(r,h,u.get?u:{enumerable:!0,get:function(){return n[h]}})}),r}var H4={exports:{}};const wb=gb(B3);var Es={exports:{}};/*! + * ApexCharts v3.42.0 + * (c) 2018-2023 ApexCharts + * Released under the MIT License. + */var dd;function vb(){return dd||(dd=1,function(n,l){function r(T,s){var a=Object.keys(T);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(T);s&&(i=i.filter(function(d){return Object.getOwnPropertyDescriptor(T,d).enumerable})),a.push.apply(a,i)}return a}function h(T){for(var s=1;s"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var a,i=S(T);if(s){var d=S(this).constructor;a=Reflect.construct(i,arguments,d)}else a=i.apply(this,arguments);return B(this,a)}}function D(T,s){return function(a){if(Array.isArray(a))return a}(T)||function(a,i){var d=a==null?null:typeof Symbol<"u"&&a[Symbol.iterator]||a["@@iterator"];if(d!=null){var c,p,w=[],f=!0,k=!1;try{for(d=d.call(a);!(f=(c=d.next()).done)&&(w.push(c.value),!i||w.length!==i);f=!0);}catch(M){k=!0,p=M}finally{try{f||d.return==null||d.return()}finally{if(k)throw p}}return w}}(T,s)||Y(T,s)||function(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function E(T){return function(s){if(Array.isArray(s))return O(s)}(T)||function(s){if(typeof Symbol<"u"&&s[Symbol.iterator]!=null||s["@@iterator"]!=null)return Array.from(s)}(T)||Y(T)||function(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function Y(T,s){if(T){if(typeof T=="string")return O(T,s);var a=Object.prototype.toString.call(T).slice(8,-1);return a==="Object"&&T.constructor&&(a=T.constructor.name),a==="Map"||a==="Set"?Array.from(T):a==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?O(T,s):void 0}}function O(T,s){(s==null||s>T.length)&&(s=T.length);for(var a=0,i=new Array(s);a>16,w=i>>8&255,f=255&i;return"#"+(16777216+65536*(Math.round((d-p)*c)+p)+256*(Math.round((d-w)*c)+w)+(Math.round((d-f)*c)+f)).toString(16).slice(1)}},{key:"shadeColor",value:function(s,a){return T.isColorHex(a)?this.shadeHexColor(s,a):this.shadeRGBColor(s,a)}}],[{key:"bind",value:function(s,a){return function(){return s.apply(a,arguments)}}},{key:"isObject",value:function(s){return s&&u(s)==="object"&&!Array.isArray(s)&&s!=null}},{key:"is",value:function(s,a){return Object.prototype.toString.call(a)==="[object "+s+"]"}},{key:"listToArray",value:function(s){var a,i=[];for(a=0;a1&&arguments[1]!==void 0?arguments[1]:2;return parseFloat(s.toPrecision(a))}},{key:"randomId",value:function(){return(Math.random()+1).toString(36).substring(4)}},{key:"noExponents",value:function(s){var a=String(s).split(/[eE]/);if(a.length===1)return a[0];var i="",d=s<0?"-":"",c=a[0].replace(".",""),p=Number(a[1])+1;if(p<0){for(i=d+"0.";p++;)i+="0";return i+c.replace(/^-/,"")}for(p-=c.length;p--;)i+="0";return c+i}},{key:"getDimensions",value:function(s){var a=getComputedStyle(s,null),i=s.clientHeight,d=s.clientWidth;return i-=parseFloat(a.paddingTop)+parseFloat(a.paddingBottom),[d-=parseFloat(a.paddingLeft)+parseFloat(a.paddingRight),i]}},{key:"getBoundingClientRect",value:function(s){var a=s.getBoundingClientRect();return{top:a.top,right:a.right,bottom:a.bottom,left:a.left,width:s.clientWidth,height:s.clientHeight,x:a.left,y:a.top}}},{key:"getLargestStringFromArr",value:function(s){return s.reduce(function(a,i){return Array.isArray(i)&&(i=i.reduce(function(d,c){return d.length>c.length?d:c})),a.length>i.length?a:i},0)}},{key:"hexToRgba",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"#999999",a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.6;s.substring(0,1)!=="#"&&(s="#999999");var i=s.replace("#","");i=i.match(new RegExp("(.{"+i.length/3+"})","g"));for(var d=0;d1&&arguments[1]!==void 0?arguments[1]:"x",i=s.toString().slice();return i=i.replace(/[` ~!@#$%^&*()|+\=?;:'",.<>{}[\]\\/]/gi,a)}},{key:"negToZero",value:function(s){return s<0?0:s}},{key:"moveIndexInArray",value:function(s,a,i){if(i>=s.length)for(var d=i-s.length+1;d--;)s.push(void 0);return s.splice(i,0,s.splice(a,1)[0]),s}},{key:"extractNumber",value:function(s){return parseFloat(s.replace(/[^\d.]*/g,""))}},{key:"findAncestor",value:function(s,a){for(;(s=s.parentElement)&&!s.classList.contains(a););return s}},{key:"setELstyles",value:function(s,a){for(var i in a)a.hasOwnProperty(i)&&(s.style.key=a[i])}},{key:"isNumber",value:function(s){return!isNaN(s)&&parseFloat(Number(s))===s&&!isNaN(parseInt(s,10))}},{key:"isFloat",value:function(s){return Number(s)===s&&s%1!=0}},{key:"isSafari",value:function(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}},{key:"isFirefox",value:function(){return navigator.userAgent.toLowerCase().indexOf("firefox")>-1}},{key:"isIE11",value:function(){if(window.navigator.userAgent.indexOf("MSIE")!==-1||window.navigator.appVersion.indexOf("Trident/")>-1)return!0}},{key:"isIE",value:function(){var s=window.navigator.userAgent,a=s.indexOf("MSIE ");if(a>0)return parseInt(s.substring(a+5,s.indexOf(".",a)),10);if(s.indexOf("Trident/")>0){var i=s.indexOf("rv:");return parseInt(s.substring(i+3,s.indexOf(".",i)),10)}var d=s.indexOf("Edge/");return d>0&&parseInt(s.substring(d+5,s.indexOf(".",d)),10)}}]),T}(),U=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.setEasingFunctions()}return b(T,[{key:"setEasingFunctions",value:function(){var s;if(!this.w.globals.easing){switch(this.w.config.chart.animations.easing){case"linear":s="-";break;case"easein":s="<";break;case"easeout":s=">";break;case"easeinout":default:s="<>";break;case"swing":s=function(a){var i=1.70158;return(a-=1)*a*((i+1)*a+i)+1};break;case"bounce":s=function(a){return a<1/2.75?7.5625*a*a:a<2/2.75?7.5625*(a-=1.5/2.75)*a+.75:a<2.5/2.75?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375};break;case"elastic":s=function(a){return a===!!a?a:Math.pow(2,-10*a)*Math.sin((a-.075)*(2*Math.PI)/.3)+1}}this.w.globals.easing=s}}},{key:"animateLine",value:function(s,a,i,d){s.attr(a).animate(d).attr(i)}},{key:"animateMarker",value:function(s,a,i,d,c,p){a||(a=0),s.attr({r:a,width:a,height:a}).animate(d,c).attr({r:i,width:i.width,height:i.height}).afterAll(function(){p()})}},{key:"animateCircle",value:function(s,a,i,d,c){s.attr({r:a.r,cx:a.cx,cy:a.cy}).animate(d,c).attr({r:i.r,cx:i.cx,cy:i.cy})}},{key:"animateRect",value:function(s,a,i,d,c){s.attr(a).animate(d).attr(i).afterAll(function(){return c()})}},{key:"animatePathsGradually",value:function(s){var a=s.el,i=s.realIndex,d=s.j,c=s.fill,p=s.pathFrom,w=s.pathTo,f=s.speed,k=s.delay,M=this.w,x=0;M.config.chart.animations.animateGradually.enabled&&(x=M.config.chart.animations.animateGradually.delay),M.config.chart.animations.dynamicAnimation.enabled&&M.globals.dataChanged&&M.config.chart.type!=="bar"&&(x=0),this.morphSVG(a,i,d,M.config.chart.type!=="line"||M.globals.comboCharts?c:"stroke",p,w,f,k*x)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach(function(s){var a=s.el;a.classList.remove("apexcharts-element-hidden"),a.classList.add("apexcharts-hidden-element-shown")})}},{key:"animationCompleted",value:function(s){var a=this.w;a.globals.animationEnded||(a.globals.animationEnded=!0,this.showDelayedElements(),typeof a.config.chart.events.animationEnd=="function"&&a.config.chart.events.animationEnd(this.ctx,{el:s,w:a}))}},{key:"morphSVG",value:function(s,a,i,d,c,p,w,f){var k=this,M=this.w;c||(c=s.attr("pathFrom")),p||(p=s.attr("pathTo"));var x=function(I){return M.config.chart.type==="radar"&&(w=1),"M 0 ".concat(M.globals.gridHeight)};(!c||c.indexOf("undefined")>-1||c.indexOf("NaN")>-1)&&(c=x()),(!p||p.indexOf("undefined")>-1||p.indexOf("NaN")>-1)&&(p=x()),M.globals.shouldAnimate||(w=1),s.plot(c).animate(1,M.globals.easing,f).plot(c).animate(w,M.globals.easing,f).plot(p).afterAll(function(){H.isNumber(i)?i===M.globals.series[M.globals.maxValsInArrayIndex].length-2&&M.globals.shouldAnimate&&k.animationCompleted(s):d!=="none"&&M.globals.shouldAnimate&&(!M.globals.comboCharts&&a===M.globals.series.length-1||M.globals.comboCharts)&&k.animationCompleted(s),k.showDelayedElements()})}}]),T}(),W=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"getDefaultFilter",value:function(s,a){var i=this.w;s.unfilter(!0),new window.SVG.Filter().size("120%","180%","-5%","-40%"),i.config.states.normal.filter!=="none"?this.applyFilter(s,a,i.config.states.normal.filter.type,i.config.states.normal.filter.value):i.config.chart.dropShadow.enabled&&this.dropShadow(s,i.config.chart.dropShadow,a)}},{key:"addNormalFilter",value:function(s,a){var i=this.w;i.config.chart.dropShadow.enabled&&!s.node.classList.contains("apexcharts-marker")&&this.dropShadow(s,i.config.chart.dropShadow,a)}},{key:"addLightenFilter",value:function(s,a,i){var d=this,c=this.w,p=i.intensity;s.unfilter(!0),new window.SVG.Filter,s.filter(function(w){var f=c.config.chart.dropShadow;(f.enabled?d.addShadow(w,a,f):w).componentTransfer({rgb:{type:"linear",slope:1.5,intercept:p}})}),s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)}},{key:"addDarkenFilter",value:function(s,a,i){var d=this,c=this.w,p=i.intensity;s.unfilter(!0),new window.SVG.Filter,s.filter(function(w){var f=c.config.chart.dropShadow;(f.enabled?d.addShadow(w,a,f):w).componentTransfer({rgb:{type:"linear",slope:p}})}),s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)}},{key:"applyFilter",value:function(s,a,i){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:.5;switch(i){case"none":this.addNormalFilter(s,a);break;case"lighten":this.addLightenFilter(s,a,{intensity:d});break;case"darken":this.addDarkenFilter(s,a,{intensity:d})}}},{key:"addShadow",value:function(s,a,i){var d=i.blur,c=i.top,p=i.left,w=i.color,f=i.opacity,k=s.flood(Array.isArray(w)?w[a]:w,f).composite(s.sourceAlpha,"in").offset(p,c).gaussianBlur(d).merge(s.source);return s.blend(s.source,k)}},{key:"dropShadow",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,d=a.top,c=a.left,p=a.blur,w=a.color,f=a.opacity,k=a.noUserSpaceOnUse,M=this.w;return s.unfilter(!0),H.isIE()&&M.config.chart.type==="radialBar"||(w=Array.isArray(w)?w[i]:w,s.filter(function(x){var I=null;I=H.isSafari()||H.isFirefox()||H.isIE()?x.flood(w,f).composite(x.sourceAlpha,"in").offset(c,d).gaussianBlur(p):x.flood(w,f).composite(x.sourceAlpha,"in").offset(c,d).gaussianBlur(p).merge(x.source),x.blend(x.source,I)}),k||s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)),s}},{key:"setSelectionFilter",value:function(s,a,i){var d=this.w;if(d.globals.selectedDataPoints[a]!==void 0&&d.globals.selectedDataPoints[a].indexOf(i)>-1){s.node.setAttribute("selected",!0);var c=d.config.states.active.filter;c!=="none"&&this.applyFilter(s,a,c.type,c.value)}}},{key:"_scaleFilterSize",value:function(s){(function(a){for(var i in a)a.hasOwnProperty(i)&&s.setAttribute(i,a[i])})({width:"200%",height:"200%",x:"-50%",y:"-50%"})}}]),T}(),_=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"roundPathCorners",value:function(s,a){function i(Q,ot,it){var vt=ot.x-Q.x,zt=ot.y-Q.y,Mt=Math.sqrt(vt*vt+zt*zt);return d(Q,ot,Math.min(1,it/Mt))}function d(Q,ot,it){return{x:Q.x+(ot.x-Q.x)*it,y:Q.y+(ot.y-Q.y)*it}}function c(Q,ot){Q.length>2&&(Q[Q.length-2]=ot.x,Q[Q.length-1]=ot.y)}function p(Q){return{x:parseFloat(Q[Q.length-2]),y:parseFloat(Q[Q.length-1])}}s.indexOf("NaN")>-1&&(s="");var w=s.split(/[,\s]/).reduce(function(Q,ot){var it=ot.match("([a-zA-Z])(.+)");return it?(Q.push(it[1]),Q.push(it[2])):Q.push(ot),Q},[]).reduce(function(Q,ot){return parseFloat(ot)==ot&&Q.length?Q[Q.length-1].push(ot):Q.push([ot]),Q},[]),f=[];if(w.length>1){var k=p(w[0]),M=null;w[w.length-1][0]=="Z"&&w[0].length>2&&(M=["L",k.x,k.y],w[w.length-1]=M),f.push(w[0]);for(var x=1;x2&&$[0]=="L"&&N.length>2&&N[0]=="L"){var L,F,V=p(I),Z=p($),m=p(N);L=i(Z,V,a),F=i(Z,m,a),c($,L),$.origPoint=Z,f.push($);var y=d(L,Z,.5),j=d(Z,F,.5),R=["C",y.x,y.y,j.x,j.y,F.x,F.y];R.origPoint=Z,f.push(R)}else f.push($)}if(M){var K=p(f[f.length-1]);f.push(["Z"]),c(f[0],K)}}else f=w;return f.reduce(function(Q,ot){return Q+ot.join(" ")+" "},"")}},{key:"drawLine",value:function(s,a,i,d){var c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:"#a8a8a8",p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:0,w=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,f=arguments.length>7&&arguments[7]!==void 0?arguments[7]:"butt";return this.w.globals.dom.Paper.line().attr({x1:s,y1:a,x2:i,y2:d,stroke:c,"stroke-dasharray":p,"stroke-width":w,"stroke-linecap":f})}},{key:"drawRect",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0,p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"#fefefe",w=arguments.length>6&&arguments[6]!==void 0?arguments[6]:1,f=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,k=arguments.length>8&&arguments[8]!==void 0?arguments[8]:null,M=arguments.length>9&&arguments[9]!==void 0?arguments[9]:0,x=this.w.globals.dom.Paper.rect();return x.attr({x:s,y:a,width:i>0?i:0,height:d>0?d:0,rx:c,ry:c,opacity:w,"stroke-width":f!==null?f:0,stroke:k!==null?k:"none","stroke-dasharray":M}),x.node.setAttribute("fill",p),x}},{key:"drawPolygon",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"#e1e1e1",i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"none";return this.w.globals.dom.Paper.polygon(s).attr({fill:d,stroke:a,"stroke-width":i})}},{key:"drawCircle",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;s<0&&(s=0);var i=this.w.globals.dom.Paper.circle(2*s);return a!==null&&i.attr(a),i}},{key:"drawPath",value:function(s){var a=s.d,i=a===void 0?"":a,d=s.stroke,c=d===void 0?"#a8a8a8":d,p=s.strokeWidth,w=p===void 0?1:p,f=s.fill,k=s.fillOpacity,M=k===void 0?1:k,x=s.strokeOpacity,I=x===void 0?1:x,$=s.classes,N=s.strokeLinecap,L=N===void 0?null:N,F=s.strokeDashArray,V=F===void 0?0:F,Z=this.w;return L===null&&(L=Z.config.stroke.lineCap),(i.indexOf("undefined")>-1||i.indexOf("NaN")>-1)&&(i="M 0 ".concat(Z.globals.gridHeight)),Z.globals.dom.Paper.path(i).attr({fill:f,"fill-opacity":M,stroke:c,"stroke-opacity":I,"stroke-linecap":L,"stroke-width":w,"stroke-dasharray":V,class:$})}},{key:"group",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=this.w.globals.dom.Paper.group();return s!==null&&a.attr(s),a}},{key:"move",value:function(s,a){var i=["M",s,a].join(" ");return i}},{key:"line",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,d=null;return i===null?d=[" L",s,a].join(" "):i==="H"?d=[" H",s].join(" "):i==="V"&&(d=[" V",a].join(" ")),d}},{key:"curve",value:function(s,a,i,d,c,p){var w=["C",s,a,i,d,c,p].join(" ");return w}},{key:"quadraticCurve",value:function(s,a,i,d){return["Q",s,a,i,d].join(" ")}},{key:"arc",value:function(s,a,i,d,c,p,w){var f="A";arguments.length>7&&arguments[7]!==void 0&&arguments[7]&&(f="a");var k=[f,s,a,i,d,c,p,w].join(" ");return k}},{key:"renderPaths",value:function(s){var a,i=s.j,d=s.realIndex,c=s.pathFrom,p=s.pathTo,w=s.stroke,f=s.strokeWidth,k=s.strokeLinecap,M=s.fill,x=s.animationDelay,I=s.initialSpeed,$=s.dataChangeSpeed,N=s.className,L=s.shouldClipToGrid,F=L===void 0||L,V=s.bindEventsOnPaths,Z=V===void 0||V,m=s.drawShadow,y=m===void 0||m,j=this.w,R=new W(this.ctx),K=new U(this.ctx),Q=this.w.config.chart.animations.enabled,ot=Q&&this.w.config.chart.animations.dynamicAnimation.enabled,it=!!(Q&&!j.globals.resized||ot&&j.globals.dataChanged&&j.globals.shouldAnimate);it?a=c:(a=p,j.globals.animationEnded=!0);var vt=j.config.stroke.dashArray,zt=0;zt=Array.isArray(vt)?vt[d]:j.config.stroke.dashArray;var Mt=this.drawPath({d:a,stroke:w,strokeWidth:f,fill:M,fillOpacity:1,classes:N,strokeLinecap:k,strokeDashArray:zt});if(Mt.attr("index",d),F&&Mt.attr({"clip-path":"url(#gridRectMask".concat(j.globals.cuid,")")}),j.config.states.normal.filter.type!=="none")R.getDefaultFilter(Mt,d);else if(j.config.chart.dropShadow.enabled&&y&&(!j.config.chart.dropShadow.enabledOnSeries||j.config.chart.dropShadow.enabledOnSeries&&j.config.chart.dropShadow.enabledOnSeries.indexOf(d)!==-1)){var Et=j.config.chart.dropShadow;R.dropShadow(Mt,Et,d)}Z&&(Mt.node.addEventListener("mouseenter",this.pathMouseEnter.bind(this,Mt)),Mt.node.addEventListener("mouseleave",this.pathMouseLeave.bind(this,Mt)),Mt.node.addEventListener("mousedown",this.pathMouseDown.bind(this,Mt))),Mt.attr({pathTo:p,pathFrom:c});var qt={el:Mt,j:i,realIndex:d,pathFrom:c,pathTo:p,fill:M,strokeWidth:f,delay:x};return!Q||j.globals.resized||j.globals.dataChanged?!j.globals.resized&&j.globals.dataChanged||K.showDelayedElements():K.animatePathsGradually(h(h({},qt),{},{speed:I})),j.globals.dataChanged&&ot&&it&&K.animatePathsGradually(h(h({},qt),{},{speed:$})),Mt}},{key:"drawPattern",value:function(s,a,i){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"#a8a8a8",c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0;return this.w.globals.dom.Paper.pattern(a,i,function(p){s==="horizontalLines"?p.line(0,0,i,0).stroke({color:d,width:c+1}):s==="verticalLines"?p.line(0,0,0,a).stroke({color:d,width:c+1}):s==="slantedLines"?p.line(0,0,a,i).stroke({color:d,width:c}):s==="squares"?p.rect(a,i).fill("none").stroke({color:d,width:c}):s==="circles"&&p.circle(a).fill("none").stroke({color:d,width:c})})}},{key:"drawGradient",value:function(s,a,i,d,c){var p,w=arguments.length>5&&arguments[5]!==void 0?arguments[5]:null,f=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,k=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,M=arguments.length>8&&arguments[8]!==void 0?arguments[8]:0,x=this.w;a.length<9&&a.indexOf("#")===0&&(a=H.hexToRgba(a,d)),i.length<9&&i.indexOf("#")===0&&(i=H.hexToRgba(i,c));var I=0,$=1,N=1,L=null;f!==null&&(I=f[0]!==void 0?f[0]/100:0,$=f[1]!==void 0?f[1]/100:1,N=f[2]!==void 0?f[2]/100:1,L=f[3]!==void 0?f[3]/100:null);var F=!(x.config.chart.type!=="donut"&&x.config.chart.type!=="pie"&&x.config.chart.type!=="polarArea"&&x.config.chart.type!=="bubble");if(p=k===null||k.length===0?x.globals.dom.Paper.gradient(F?"radial":"linear",function(m){m.at(I,a,d),m.at($,i,c),m.at(N,i,c),L!==null&&m.at(L,a,d)}):x.globals.dom.Paper.gradient(F?"radial":"linear",function(m){(Array.isArray(k[M])?k[M]:k).forEach(function(y){m.at(y.offset/100,y.color,y.opacity)})}),F){var V=x.globals.gridWidth/2,Z=x.globals.gridHeight/2;x.config.chart.type!=="bubble"?p.attr({gradientUnits:"userSpaceOnUse",cx:V,cy:Z,r:w}):p.attr({cx:.5,cy:.5,r:.8,fx:.2,fy:.2})}else s==="vertical"?p.from(0,0).to(0,1):s==="diagonal"?p.from(0,0).to(1,1):s==="horizontal"?p.from(0,1).to(1,1):s==="diagonal2"&&p.from(1,0).to(0,1);return p}},{key:"getTextBasedOnMaxWidth",value:function(s){var a=s.text,i=s.maxWidth,d=s.fontSize,c=s.fontFamily,p=this.getTextRects(a,d,c),w=p.width/a.length,f=Math.floor(i/w);return i-1){var f=i.globals.selectedDataPoints[c].indexOf(p);i.globals.selectedDataPoints[c].splice(f,1)}}else{if(!i.config.states.active.allowMultipleDataPointsSelection&&i.globals.selectedDataPoints.length>0){i.globals.selectedDataPoints=[];var k=i.globals.dom.Paper.select(".apexcharts-series path").members,M=i.globals.dom.Paper.select(".apexcharts-series circle, .apexcharts-series rect").members,x=function(N){Array.prototype.forEach.call(N,function(L){L.node.setAttribute("selected","false"),d.getDefaultFilter(L,c)})};x(k),x(M)}s.node.setAttribute("selected","true"),w="true",i.globals.selectedDataPoints[c]===void 0&&(i.globals.selectedDataPoints[c]=[]),i.globals.selectedDataPoints[c].push(p)}if(w==="true"){var I=i.config.states.active.filter;if(I!=="none")d.applyFilter(s,c,I.type,I.value);else if(i.config.states.hover.filter!=="none"&&!i.globals.isTouchDevice){var $=i.config.states.hover.filter;d.applyFilter(s,c,$.type,$.value)}}else i.config.states.active.filter.type!=="none"&&(i.config.states.hover.filter.type==="none"||i.globals.isTouchDevice?d.getDefaultFilter(s,c):($=i.config.states.hover.filter,d.applyFilter(s,c,$.type,$.value)));typeof i.config.chart.events.dataPointSelection=="function"&&i.config.chart.events.dataPointSelection(a,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:c,dataPointIndex:p,w:i}),a&&this.ctx.events.fireEvent("dataPointSelection",[a,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:c,dataPointIndex:p,w:i}])}},{key:"rotateAroundCenter",value:function(s){var a={};return s&&typeof s.getBBox=="function"&&(a=s.getBBox()),{x:a.x+a.width/2,y:a.y+a.height/2}}},{key:"getTextRects",value:function(s,a,i,d){var c=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],p=this.w,w=this.drawText({x:-200,y:-200,text:s,textAnchor:"start",fontSize:a,fontFamily:i,foreColor:"#fff",opacity:0});d&&w.attr("transform",d),p.globals.dom.Paper.add(w);var f=w.bbox();return c||(f=w.node.getBoundingClientRect()),w.remove(),{width:f.width,height:f.height}}},{key:"placeTextWithEllipsis",value:function(s,a,i){if(typeof s.getComputedTextLength=="function"&&(s.textContent=a,a.length>0&&s.getComputedTextLength()>=i/1.1)){for(var d=a.length-3;d>0;d-=3)if(s.getSubStringLength(0,d)<=i/1.1)return void(s.textContent=a.substring(0,d)+"...");s.textContent="."}}}],[{key:"setAttrs",value:function(s,a){for(var i in a)a.hasOwnProperty(i)&&s.setAttribute(i,a[i])}}]),T}(),tt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"getStackedSeriesTotals",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=this.w,i=[];if(a.globals.series.length===0)return i;for(var d=0;d0&&arguments[0]!==void 0?arguments[0]:null;return s===null?this.w.config.series.reduce(function(a,i){return a+i},0):this.w.globals.series[s].reduce(function(a,i){return a+i},0)}},{key:"isSeriesNull",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null;return(s===null?this.w.config.series.filter(function(a){return a!==null}):this.w.config.series[s].data.filter(function(a){return a!==null})).length===0}},{key:"seriesHaveSameValues",value:function(s){return this.w.globals.series[s].every(function(a,i,d){return a===d[0]})}},{key:"getCategoryLabels",value:function(s){var a=this.w,i=s.slice();return a.config.xaxis.convertedCatToNumeric&&(i=s.map(function(d,c){return a.config.xaxis.labels.formatter(d-a.globals.minX+1)})),i}},{key:"getLargestSeries",value:function(){var s=this.w;s.globals.maxValsInArrayIndex=s.globals.series.map(function(a){return a.length}).indexOf(Math.max.apply(Math,s.globals.series.map(function(a){return a.length})))}},{key:"getLargestMarkerSize",value:function(){var s=this.w,a=0;return s.globals.markers.size.forEach(function(i){a=Math.max(a,i)}),s.config.markers.discrete&&s.config.markers.discrete.length&&s.config.markers.discrete.forEach(function(i){a=Math.max(a,i.size)}),a>0&&(a+=s.config.markers.hover.sizeOffset+1),s.globals.markers.largestSize=a,a}},{key:"getSeriesTotals",value:function(){var s=this.w;s.globals.seriesTotals=s.globals.series.map(function(a,i){var d=0;if(Array.isArray(a))for(var c=0;cs&&i.globals.seriesX[c][w]0&&(a=!0),{comboBarCount:i,comboCharts:a}}},{key:"extendArrayProps",value:function(s,a,i){return a.yaxis&&(a=s.extendYAxis(a,i)),a.annotations&&(a.annotations.yaxis&&(a=s.extendYAxisAnnotations(a)),a.annotations.xaxis&&(a=s.extendXAxisAnnotations(a)),a.annotations.points&&(a=s.extendPointAnnotations(a))),a}}]),T}(),nt=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s}return b(T,[{key:"setOrientations",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,i=this.w;if(s.label.orientation==="vertical"){var d=a!==null?a:0,c=i.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(d,"']"));if(c!==null){var p=c.getBoundingClientRect();c.setAttribute("x",parseFloat(c.getAttribute("x"))-p.height+4),s.label.position==="top"?c.setAttribute("y",parseFloat(c.getAttribute("y"))+p.width):c.setAttribute("y",parseFloat(c.getAttribute("y"))-p.width);var w=this.annoCtx.graphics.rotateAroundCenter(c),f=w.x,k=w.y;c.setAttribute("transform","rotate(-90 ".concat(f," ").concat(k,")"))}}}},{key:"addBackgroundToAnno",value:function(s,a){var i=this.w;if(!s||a.label.text===void 0||a.label.text!==void 0&&!String(a.label.text).trim())return null;var d=i.globals.dom.baseEl.querySelector(".apexcharts-grid").getBoundingClientRect(),c=s.getBoundingClientRect(),p=a.label.style.padding.left,w=a.label.style.padding.right,f=a.label.style.padding.top,k=a.label.style.padding.bottom;a.label.orientation==="vertical"&&(f=a.label.style.padding.left,k=a.label.style.padding.right,p=a.label.style.padding.top,w=a.label.style.padding.bottom);var M=c.left-d.left-p,x=c.top-d.top-f,I=this.annoCtx.graphics.drawRect(M-i.globals.barPadForNumericAxis,x,c.width+p+w,c.height+f+k,a.label.borderRadius,a.label.style.background,1,a.label.borderWidth,a.label.borderColor,0);return a.id&&I.node.classList.add(a.id),I}},{key:"annotationsBackground",value:function(){var s=this,a=this.w,i=function(d,c,p){var w=a.globals.dom.baseEl.querySelector(".apexcharts-".concat(p,"-annotations .apexcharts-").concat(p,"-annotation-label[rel='").concat(c,"']"));if(w){var f=w.parentNode,k=s.addBackgroundToAnno(w,d);k&&(f.insertBefore(k.node,w),d.label.mouseEnter&&k.node.addEventListener("mouseenter",d.label.mouseEnter.bind(s,d)),d.label.mouseLeave&&k.node.addEventListener("mouseleave",d.label.mouseLeave.bind(s,d)),d.label.click&&k.node.addEventListener("click",d.label.click.bind(s,d)))}};a.config.annotations.xaxis.map(function(d,c){i(d,c,"xaxis")}),a.config.annotations.yaxis.map(function(d,c){i(d,c,"yaxis")}),a.config.annotations.points.map(function(d,c){i(d,c,"point")})}},{key:"getY1Y2",value:function(s,a){var i,d=s==="y1"?a.y:a.y2,c=this.w;if(this.annoCtx.invertAxis){var p=c.globals.labels.indexOf(d);c.config.xaxis.convertedCatToNumeric&&(p=c.globals.categoryLabels.indexOf(d));var w=c.globals.dom.baseEl.querySelector(".apexcharts-yaxis-texts-g text:nth-child("+(p+1)+")");w&&(i=parseFloat(w.getAttribute("y")))}else{var f;c.config.yaxis[a.yAxisIndex].logarithmic?f=(d=new tt(this.annoCtx.ctx).getLogVal(d,a.yAxisIndex))/c.globals.yLogRatio[a.yAxisIndex]:f=(d-c.globals.minYArr[a.yAxisIndex])/(c.globals.yRange[a.yAxisIndex]/c.globals.gridHeight),i=c.globals.gridHeight-f,!a.marker||a.y!==void 0&&a.y!==null||(i=0),c.config.yaxis[a.yAxisIndex]&&c.config.yaxis[a.yAxisIndex].reversed&&(i=f)}return typeof d=="string"&&d.indexOf("px")>-1&&(i=parseFloat(d)),i}},{key:"getX1X2",value:function(s,a){var i=this.w,d=this.annoCtx.invertAxis?i.globals.minY:i.globals.minX,c=this.annoCtx.invertAxis?i.globals.maxY:i.globals.maxX,p=this.annoCtx.invertAxis?i.globals.yRange[0]:i.globals.xRange,w=(a.x-d)/(p/i.globals.gridWidth);this.annoCtx.inversedReversedAxis&&(w=(c-a.x)/(p/i.globals.gridWidth)),i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||i.globals.dataFormatXNumeric||(w=this.getStringX(a.x));var f=(a.x2-d)/(p/i.globals.gridWidth);return this.annoCtx.inversedReversedAxis&&(f=(c-a.x2)/(p/i.globals.gridWidth)),i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||i.globals.dataFormatXNumeric||(f=this.getStringX(a.x2)),a.x!==void 0&&a.x!==null||!a.marker||(w=i.globals.gridWidth),s==="x1"&&typeof a.x=="string"&&a.x.indexOf("px")>-1&&(w=parseFloat(a.x)),s==="x2"&&typeof a.x2=="string"&&a.x2.indexOf("px")>-1&&(f=parseFloat(a.x2)),s==="x1"?w:f}},{key:"getStringX",value:function(s){var a=this.w,i=s;a.config.xaxis.convertedCatToNumeric&&a.globals.categoryLabels.length&&(s=a.globals.categoryLabels.indexOf(s)+1);var d=a.globals.labels.indexOf(s),c=a.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(d+1)+")");return c&&(i=parseFloat(c.getAttribute("x"))),i}}]),T}(),q=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s,this.invertAxis=this.annoCtx.invertAxis,this.helpers=new nt(this.annoCtx)}return b(T,[{key:"addXaxisAnnotation",value:function(s,a,i){var d,c=this.w,p=this.helpers.getX1X2("x1",s),w=s.label.text,f=s.strokeDashArray;if(H.isNumber(p)){if(s.x2===null||s.x2===void 0){var k=this.annoCtx.graphics.drawLine(p+s.offsetX,0+s.offsetY,p+s.offsetX,c.globals.gridHeight+s.offsetY,s.borderColor,f,s.borderWidth);a.appendChild(k.node),s.id&&k.node.classList.add(s.id)}else{if((d=this.helpers.getX1X2("x2",s))w){var M=w;w=d,d=M}var x=this.annoCtx.graphics.drawRect(0+s.offsetX,d+s.offsetY,this._getYAxisAnnotationWidth(s),w-d,0,s.fillColor,s.opacity,1,s.borderColor,p);x.node.classList.add("apexcharts-annotation-rect"),x.attr("clip-path","url(#gridRectMask".concat(c.globals.cuid,")")),a.appendChild(x.node),s.id&&x.node.classList.add(s.id)}var I=s.label.position==="right"?c.globals.gridWidth:s.label.position==="center"?c.globals.gridWidth/2:0,$=this.annoCtx.graphics.drawText({x:I+s.label.offsetX,y:(d??w)+s.label.offsetY-3,text:f,textAnchor:s.label.textAnchor,fontSize:s.label.style.fontSize,fontFamily:s.label.style.fontFamily,fontWeight:s.label.style.fontWeight,foreColor:s.label.style.color,cssClass:"apexcharts-yaxis-annotation-label ".concat(s.label.style.cssClass," ").concat(s.id?s.id:"")});$.attr({rel:i}),a.appendChild($.node)}},{key:"_getYAxisAnnotationWidth",value:function(s){var a=this.w;return a.globals.gridWidth,(s.width.indexOf("%")>-1?a.globals.gridWidth*parseInt(s.width,10)/100:parseInt(s.width,10))+s.offsetX}},{key:"drawYAxisAnnotations",value:function(){var s=this,a=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-yaxis-annotations"});return a.config.annotations.yaxis.map(function(d,c){s.addYaxisAnnotation(d,i.node,c)}),i}}]),T}(),et=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s,this.helpers=new nt(this.annoCtx)}return b(T,[{key:"addPointAnnotation",value:function(s,a,i){this.w;var d=this.helpers.getX1X2("x1",s),c=this.helpers.getY1Y2("y1",s);if(H.isNumber(d)){var p={pSize:s.marker.size,pointStrokeWidth:s.marker.strokeWidth,pointFillColor:s.marker.fillColor,pointStrokeColor:s.marker.strokeColor,shape:s.marker.shape,pRadius:s.marker.radius,class:"apexcharts-point-annotation-marker ".concat(s.marker.cssClass," ").concat(s.id?s.id:"")},w=this.annoCtx.graphics.drawMarker(d+s.marker.offsetX,c+s.marker.offsetY,p);a.appendChild(w.node);var f=s.label.text?s.label.text:"",k=this.annoCtx.graphics.drawText({x:d+s.label.offsetX,y:c+s.label.offsetY-s.marker.size-parseFloat(s.label.style.fontSize)/1.6,text:f,textAnchor:s.label.textAnchor,fontSize:s.label.style.fontSize,fontFamily:s.label.style.fontFamily,fontWeight:s.label.style.fontWeight,foreColor:s.label.style.color,cssClass:"apexcharts-point-annotation-label ".concat(s.label.style.cssClass," ").concat(s.id?s.id:"")});if(k.attr({rel:i}),a.appendChild(k.node),s.customSVG.SVG){var M=this.annoCtx.graphics.group({class:"apexcharts-point-annotations-custom-svg "+s.customSVG.cssClass});M.attr({transform:"translate(".concat(d+s.customSVG.offsetX,", ").concat(c+s.customSVG.offsetY,")")}),M.node.innerHTML=s.customSVG.SVG,a.appendChild(M.node)}if(s.image.path){var x=s.image.width?s.image.width:20,I=s.image.height?s.image.height:20;w=this.annoCtx.addImage({x:d+s.image.offsetX-x/2,y:c+s.image.offsetY-I/2,width:x,height:I,path:s.image.path,appendTo:".apexcharts-point-annotations"})}s.mouseEnter&&w.node.addEventListener("mouseenter",s.mouseEnter.bind(this,s)),s.mouseLeave&&w.node.addEventListener("mouseleave",s.mouseLeave.bind(this,s)),s.click&&w.node.addEventListener("click",s.click.bind(this,s))}}},{key:"drawPointAnnotations",value:function(){var s=this,a=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-point-annotations"});return a.config.annotations.points.map(function(d,c){s.addPointAnnotation(d,i.node,c)}),i}}]),T}(),st={name:"en",options:{months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],toolbar:{exportToSVG:"Download SVG",exportToPNG:"Download PNG",exportToCSV:"Download CSV",menu:"Menu",selection:"Selection",selectionZoom:"Selection Zoom",zoomIn:"Zoom In",zoomOut:"Zoom Out",pan:"Panning",reset:"Reset Zoom"}}},rt=function(){function T(){g(this,T),this.yAxis={show:!0,showAlways:!1,showForNullSeries:!0,seriesName:void 0,opposite:!1,reversed:!1,logarithmic:!1,logBase:10,tickAmount:void 0,forceNiceScale:!1,max:void 0,min:void 0,floating:!1,decimalsInFloat:void 0,labels:{show:!0,minWidth:0,maxWidth:160,offsetX:0,offsetY:0,align:void 0,rotate:0,padding:20,style:{colors:[],fontSize:"11px",fontWeight:400,fontFamily:void 0,cssClass:""},formatter:void 0},axisBorder:{show:!1,color:"#e0e0e0",width:1,offsetX:0,offsetY:0},axisTicks:{show:!1,color:"#e0e0e0",width:6,offsetX:0,offsetY:0},title:{text:void 0,rotate:-90,offsetY:0,offsetX:0,style:{color:void 0,fontSize:"11px",fontWeight:900,fontFamily:void 0,cssClass:""}},tooltip:{enabled:!1,offsetX:0},crosshairs:{show:!0,position:"front",stroke:{color:"#b6b6b6",width:1,dashArray:0}}},this.pointAnnotation={id:void 0,x:0,y:null,yAxisIndex:0,seriesIndex:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,marker:{size:4,fillColor:"#fff",strokeWidth:2,strokeColor:"#333",shape:"circle",offsetX:0,offsetY:0,radius:2,cssClass:""},label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}},customSVG:{SVG:void 0,cssClass:void 0,offsetX:0,offsetY:0},image:{path:void 0,width:20,height:20,offsetX:0,offsetY:0}},this.yAxisAnnotation={id:void 0,y:0,y2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,width:"100%",yAxisIndex:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"end",position:"right",offsetX:0,offsetY:-3,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.xAxisAnnotation={id:void 0,x:0,x2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",orientation:"vertical",position:"top",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.text={x:0,y:0,text:"",textAnchor:"start",foreColor:void 0,fontSize:"13px",fontFamily:void 0,fontWeight:400,appendTo:".apexcharts-annotations",backgroundColor:"transparent",borderColor:"#c2c2c2",borderRadius:0,borderWidth:0,paddingLeft:4,paddingRight:4,paddingTop:2,paddingBottom:2}}return b(T,[{key:"init",value:function(){return{annotations:{yaxis:[this.yAxisAnnotation],xaxis:[this.xAxisAnnotation],points:[this.pointAnnotation],texts:[],images:[],shapes:[]},chart:{animations:{enabled:!0,easing:"easeinout",speed:800,animateGradually:{delay:150,enabled:!0},dynamicAnimation:{enabled:!0,speed:350}},background:"transparent",locales:[st],defaultLocale:"en",dropShadow:{enabled:!1,enabledOnSeries:void 0,top:2,left:2,blur:4,color:"#000",opacity:.35},events:{animationEnd:void 0,beforeMount:void 0,mounted:void 0,updated:void 0,click:void 0,mouseMove:void 0,mouseLeave:void 0,xAxisLabelClick:void 0,legendClick:void 0,markerClick:void 0,selection:void 0,dataPointSelection:void 0,dataPointMouseEnter:void 0,dataPointMouseLeave:void 0,beforeZoom:void 0,beforeResetZoom:void 0,zoomed:void 0,scrolled:void 0,brushScrolled:void 0},foreColor:"#373d3f",fontFamily:"Helvetica, Arial, sans-serif",height:"auto",parentHeightOffset:15,redrawOnParentResize:!0,redrawOnWindowResize:!0,id:void 0,group:void 0,offsetX:0,offsetY:0,selection:{enabled:!1,type:"x",fill:{color:"#24292e",opacity:.1},stroke:{width:1,color:"#24292e",opacity:.4,dashArray:3},xaxis:{min:void 0,max:void 0},yaxis:{min:void 0,max:void 0}},sparkline:{enabled:!1},brush:{enabled:!1,autoScaleYaxis:!0,target:void 0,targets:void 0},stacked:!1,stackType:"normal",toolbar:{show:!0,offsetX:0,offsetY:0,tools:{download:!0,selection:!0,zoom:!0,zoomin:!0,zoomout:!0,pan:!0,reset:!0,customIcons:[]},export:{csv:{filename:void 0,columnDelimiter:",",headerCategory:"category",headerValue:"value",dateFormatter:function(s){return new Date(s).toDateString()}},png:{filename:void 0},svg:{filename:void 0}},autoSelected:"zoom"},type:"line",width:"100%",zoom:{enabled:!0,type:"x",autoScaleYaxis:!1,zoomedArea:{fill:{color:"#90CAF9",opacity:.4},stroke:{color:"#0D47A1",opacity:.4,width:1}}}},plotOptions:{area:{fillTo:"origin"},bar:{horizontal:!1,columnWidth:"70%",barHeight:"70%",distributed:!1,borderRadius:0,borderRadiusApplication:"around",borderRadiusWhenStacked:"last",rangeBarOverlap:!0,rangeBarGroupRows:!1,hideZeroBarsWhenGrouped:!1,isDumbbell:!1,dumbbellColors:void 0,isFunnel:!1,isFunnel3d:!0,colors:{ranges:[],backgroundBarColors:[],backgroundBarOpacity:1,backgroundBarRadius:0},dataLabels:{position:"top",maxItems:100,hideOverflowingLabels:!0,orientation:"horizontal",total:{enabled:!1,formatter:void 0,offsetX:0,offsetY:0,style:{color:"#373d3f",fontSize:"12px",fontFamily:void 0,fontWeight:600}}}},bubble:{zScaling:!0,minBubbleRadius:void 0,maxBubbleRadius:void 0},candlestick:{colors:{upward:"#00B746",downward:"#EF403C"},wick:{useFillColor:!0}},boxPlot:{colors:{upper:"#00E396",lower:"#008FFB"}},heatmap:{radius:2,enableShades:!0,shadeIntensity:.5,reverseNegativeShade:!1,distributed:!1,useFillColorAsStroke:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},treemap:{enableShades:!0,shadeIntensity:.5,distributed:!1,reverseNegativeShade:!1,useFillColorAsStroke:!1,dataLabels:{format:"scale"},colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},radialBar:{inverseOrder:!1,startAngle:0,endAngle:360,offsetX:0,offsetY:0,hollow:{margin:5,size:"50%",background:"transparent",image:void 0,imageWidth:150,imageHeight:150,imageOffsetX:0,imageOffsetY:0,imageClipped:!0,position:"front",dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},track:{show:!0,startAngle:void 0,endAngle:void 0,background:"#f2f2f2",strokeWidth:"97%",opacity:1,margin:5,dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},dataLabels:{show:!0,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:0,formatter:function(s){return s}},value:{show:!0,fontSize:"14px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:16,formatter:function(s){return s+"%"}},total:{show:!1,label:"Total",fontSize:"16px",fontWeight:600,fontFamily:void 0,color:void 0,formatter:function(s){return s.globals.seriesTotals.reduce(function(a,i){return a+i},0)/s.globals.series.length+"%"}}}},pie:{customScale:1,offsetX:0,offsetY:0,startAngle:0,endAngle:360,expandOnClick:!0,dataLabels:{offset:0,minAngleToShowLabel:10},donut:{size:"65%",background:"transparent",labels:{show:!1,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:-10,formatter:function(s){return s}},value:{show:!0,fontSize:"20px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:10,formatter:function(s){return s}},total:{show:!1,showAlways:!1,label:"Total",fontSize:"16px",fontWeight:400,fontFamily:void 0,color:void 0,formatter:function(s){return s.globals.seriesTotals.reduce(function(a,i){return a+i},0)}}}}},polarArea:{rings:{strokeWidth:1,strokeColor:"#e8e8e8"},spokes:{strokeWidth:1,connectorColors:"#e8e8e8"}},radar:{size:void 0,offsetX:0,offsetY:0,polygons:{strokeWidth:1,strokeColors:"#e8e8e8",connectorColors:"#e8e8e8",fill:{colors:void 0}}}},colors:void 0,dataLabels:{enabled:!0,enabledOnSeries:void 0,formatter:function(s){return s!==null?s:""},textAnchor:"middle",distributed:!1,offsetX:0,offsetY:0,style:{fontSize:"12px",fontFamily:void 0,fontWeight:600,colors:void 0},background:{enabled:!0,foreColor:"#fff",borderRadius:2,padding:4,opacity:.9,borderWidth:1,borderColor:"#fff",dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]},image:{src:[],width:void 0,height:void 0},pattern:{style:"squares",width:6,height:6,strokeWidth:2}},forecastDataPoints:{count:0,fillOpacity:.5,strokeWidth:void 0,dashArray:4},grid:{show:!0,borderColor:"#e0e0e0",strokeDashArray:0,position:"back",xaxis:{lines:{show:!1}},yaxis:{lines:{show:!0}},row:{colors:void 0,opacity:.5},column:{colors:void 0,opacity:.5},padding:{top:0,right:10,bottom:0,left:12}},labels:[],legend:{show:!0,showForSingleSeries:!1,showForNullSeries:!0,showForZeroSeries:!0,floating:!1,position:"bottom",horizontalAlign:"center",inverseOrder:!1,fontSize:"12px",fontFamily:void 0,fontWeight:400,width:void 0,height:void 0,formatter:void 0,tooltipHoverFormatter:void 0,offsetX:-20,offsetY:4,customLegendItems:[],labels:{colors:void 0,useSeriesColors:!1},markers:{width:12,height:12,strokeWidth:0,fillColors:void 0,strokeColor:"#fff",radius:12,customHTML:void 0,offsetX:0,offsetY:0,onClick:void 0},itemMargin:{horizontal:5,vertical:2},onItemClick:{toggleDataSeries:!0},onItemHover:{highlightDataSeries:!0}},markers:{discrete:[],size:0,colors:void 0,strokeColors:"#fff",strokeWidth:2,strokeOpacity:.9,strokeDashArray:0,fillOpacity:1,shape:"circle",width:8,height:8,radius:2,offsetX:0,offsetY:0,onClick:void 0,onDblClick:void 0,showNullDataPoints:!0,hover:{size:void 0,sizeOffset:3}},noData:{text:void 0,align:"center",verticalAlign:"middle",offsetX:0,offsetY:0,style:{color:void 0,fontSize:"14px",fontFamily:void 0}},responsive:[],series:void 0,states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"lighten",value:.1}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"darken",value:.5}}},title:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:0,floating:!1,style:{fontSize:"14px",fontWeight:900,fontFamily:void 0,color:void 0}},subtitle:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:30,floating:!1,style:{fontSize:"12px",fontWeight:400,fontFamily:void 0,color:void 0}},stroke:{show:!0,curve:"smooth",lineCap:"butt",width:2,colors:void 0,dashArray:0,fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]}}},tooltip:{enabled:!0,enabledOnSeries:void 0,shared:!0,followCursor:!1,intersect:!1,inverseOrder:!1,custom:void 0,fillSeriesColor:!1,theme:"light",cssClass:"",style:{fontSize:"12px",fontFamily:void 0},onDatasetHover:{highlightDataSeries:!1},x:{show:!0,format:"dd MMM",formatter:void 0},y:{formatter:void 0,title:{formatter:function(s){return s?s+": ":""}}},z:{formatter:void 0,title:"Size: "},marker:{show:!0,fillColors:void 0},items:{display:"flex"},fixed:{enabled:!1,position:"topRight",offsetX:0,offsetY:0}},xaxis:{type:"category",categories:[],convertedCatToNumeric:!1,offsetX:0,offsetY:0,overwriteCategories:void 0,labels:{show:!0,rotate:-45,rotateAlways:!1,hideOverlappingLabels:!0,trim:!1,minHeight:void 0,maxHeight:120,showDuplicates:!0,style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""},offsetX:0,offsetY:0,format:void 0,formatter:void 0,datetimeUTC:!0,datetimeFormatter:{year:"yyyy",month:"MMM 'yy",day:"dd MMM",hour:"HH:mm",minute:"HH:mm:ss",second:"HH:mm:ss"}},group:{groups:[],style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""}},axisBorder:{show:!0,color:"#e0e0e0",width:"100%",height:1,offsetX:0,offsetY:0},axisTicks:{show:!0,color:"#e0e0e0",height:6,offsetX:0,offsetY:0},tickAmount:void 0,tickPlacement:"on",min:void 0,max:void 0,range:void 0,floating:!1,decimalsInFloat:void 0,position:"bottom",title:{text:void 0,offsetX:0,offsetY:0,style:{color:void 0,fontSize:"12px",fontWeight:900,fontFamily:void 0,cssClass:""}},crosshairs:{show:!0,width:1,position:"back",opacity:.9,stroke:{color:"#b6b6b6",width:1,dashArray:3},fill:{type:"solid",color:"#B1B9C4",gradient:{colorFrom:"#D8E3F0",colorTo:"#BED1E6",stops:[0,100],opacityFrom:.4,opacityTo:.5}},dropShadow:{enabled:!1,left:0,top:0,blur:1,opacity:.4}},tooltip:{enabled:!0,offsetY:0,formatter:void 0,style:{fontSize:"12px",fontFamily:void 0}}},yaxis:this.yAxis,theme:{mode:"light",palette:"palette1",monochrome:{enabled:!1,color:"#008FFB",shadeTo:"light",shadeIntensity:.65}}}}}]),T}(),ht=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.graphics=new _(this.ctx),this.w.globals.isBarHorizontal&&(this.invertAxis=!0),this.helpers=new nt(this),this.xAxisAnnotations=new q(this),this.yAxisAnnotations=new G(this),this.pointsAnnotations=new et(this),this.w.globals.isBarHorizontal&&this.w.config.yaxis[0].reversed&&(this.inversedReversedAxis=!0),this.xDivision=this.w.globals.gridWidth/this.w.globals.dataPoints}return b(T,[{key:"drawAxesAnnotations",value:function(){var s=this.w;if(s.globals.axisCharts){for(var a=this.yAxisAnnotations.drawYAxisAnnotations(),i=this.xAxisAnnotations.drawXAxisAnnotations(),d=this.pointsAnnotations.drawPointAnnotations(),c=s.config.chart.animations.enabled,p=[a,i,d],w=[i.node,a.node,d.node],f=0;f<3;f++)s.globals.dom.elGraphical.add(p[f]),!c||s.globals.resized||s.globals.dataChanged||s.config.chart.type!=="scatter"&&s.config.chart.type!=="bubble"&&s.globals.dataPoints>1&&w[f].classList.add("apexcharts-element-hidden"),s.globals.delayedElements.push({el:w[f],index:0});this.helpers.annotationsBackground()}}},{key:"drawImageAnnos",value:function(){var s=this;this.w.config.annotations.images.map(function(a,i){s.addImage(a,i)})}},{key:"drawTextAnnos",value:function(){var s=this;this.w.config.annotations.texts.map(function(a,i){s.addText(a,i)})}},{key:"addXaxisAnnotation",value:function(s,a,i){this.xAxisAnnotations.addXaxisAnnotation(s,a,i)}},{key:"addYaxisAnnotation",value:function(s,a,i){this.yAxisAnnotations.addYaxisAnnotation(s,a,i)}},{key:"addPointAnnotation",value:function(s,a,i){this.pointsAnnotations.addPointAnnotation(s,a,i)}},{key:"addText",value:function(s,a){var i=s.x,d=s.y,c=s.text,p=s.textAnchor,w=s.foreColor,f=s.fontSize,k=s.fontFamily,M=s.fontWeight,x=s.cssClass,I=s.backgroundColor,$=s.borderWidth,N=s.strokeDashArray,L=s.borderRadius,F=s.borderColor,V=s.appendTo,Z=V===void 0?".apexcharts-annotations":V,m=s.paddingLeft,y=m===void 0?4:m,j=s.paddingRight,R=j===void 0?4:j,K=s.paddingBottom,Q=K===void 0?2:K,ot=s.paddingTop,it=ot===void 0?2:ot,vt=this.w,zt=this.graphics.drawText({x:i,y:d,text:c,textAnchor:p||"start",fontSize:f||"12px",fontWeight:M||"regular",fontFamily:k||vt.config.chart.fontFamily,foreColor:w||vt.config.chart.foreColor,cssClass:x}),Mt=vt.globals.dom.baseEl.querySelector(Z);Mt&&Mt.appendChild(zt.node);var Et=zt.bbox();if(c){var qt=this.graphics.drawRect(Et.x-y,Et.y-it,Et.width+y+R,Et.height+Q+it,L,I||"transparent",1,$,F,N);Mt.insertBefore(qt.node,zt.node)}}},{key:"addImage",value:function(s,a){var i=this.w,d=s.path,c=s.x,p=c===void 0?0:c,w=s.y,f=w===void 0?0:w,k=s.width,M=k===void 0?20:k,x=s.height,I=x===void 0?20:x,$=s.appendTo,N=$===void 0?".apexcharts-annotations":$,L=i.globals.dom.Paper.image(d);L.size(M,I).move(p,f);var F=i.globals.dom.baseEl.querySelector(N);return F&&F.appendChild(L.node),L}},{key:"addXaxisAnnotationExternal",value:function(s,a,i){return this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"xaxis",contextMethod:i.addXaxisAnnotation}),i}},{key:"addYaxisAnnotationExternal",value:function(s,a,i){return this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"yaxis",contextMethod:i.addYaxisAnnotation}),i}},{key:"addPointAnnotationExternal",value:function(s,a,i){return this.invertAxis===void 0&&(this.invertAxis=i.w.globals.isBarHorizontal),this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"point",contextMethod:i.addPointAnnotation}),i}},{key:"addAnnotationExternal",value:function(s){var a=s.params,i=s.pushToMemory,d=s.context,c=s.type,p=s.contextMethod,w=d,f=w.w,k=f.globals.dom.baseEl.querySelector(".apexcharts-".concat(c,"-annotations")),M=k.childNodes.length+1,x=new rt,I=Object.assign({},c==="xaxis"?x.xAxisAnnotation:c==="yaxis"?x.yAxisAnnotation:x.pointAnnotation),$=H.extend(I,a);switch(c){case"xaxis":this.addXaxisAnnotation($,k,M);break;case"yaxis":this.addYaxisAnnotation($,k,M);break;case"point":this.addPointAnnotation($,k,M)}var N=f.globals.dom.baseEl.querySelector(".apexcharts-".concat(c,"-annotations .apexcharts-").concat(c,"-annotation-label[rel='").concat(M,"']")),L=this.helpers.addBackgroundToAnno(N,$);return L&&k.insertBefore(L.node,N),i&&f.globals.memory.methodsToExec.push({context:w,id:$.id?$.id:H.randomId(),method:p,label:"addAnnotation",params:a}),d}},{key:"clearAnnotations",value:function(s){var a=s.w,i=a.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations");a.globals.memory.methodsToExec.map(function(d,c){d.label!=="addText"&&d.label!=="addAnnotation"||a.globals.memory.methodsToExec.splice(c,1)}),i=H.listToArray(i),Array.prototype.forEach.call(i,function(d){for(;d.firstChild;)d.removeChild(d.firstChild)})}},{key:"removeAnnotation",value:function(s,a){var i=s.w,d=i.globals.dom.baseEl.querySelectorAll(".".concat(a));d&&(i.globals.memory.methodsToExec.map(function(c,p){c.id===a&&i.globals.memory.methodsToExec.splice(p,1)}),Array.prototype.forEach.call(d,function(c){c.parentElement.removeChild(c)}))}}]),T}(),dt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.months31=[1,3,5,7,8,10,12],this.months30=[2,4,6,9,11],this.daysCntOfYear=[0,31,59,90,120,151,181,212,243,273,304,334]}return b(T,[{key:"isValidDate",value:function(s){return!isNaN(this.parseDate(s))}},{key:"getTimeStamp",value:function(s){return Date.parse(s)?this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(s).toISOString().substr(0,25)).getTime():new Date(s).getTime():s}},{key:"getDate",value:function(s){return this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(s).toUTCString()):new Date(s)}},{key:"parseDate",value:function(s){var a=Date.parse(s);if(!isNaN(a))return this.getTimeStamp(s);var i=Date.parse(s.replace(/-/g,"/").replace(/[a-z]+/gi," "));return i=this.getTimeStamp(i)}},{key:"parseDateWithTimezone",value:function(s){return Date.parse(s.replace(/-/g,"/").replace(/[a-z]+/gi," "))}},{key:"formatDate",value:function(s,a){var i=this.w.globals.locale,d=this.w.config.xaxis.labels.datetimeUTC,c=["\0"].concat(E(i.months)),p=[""].concat(E(i.shortMonths)),w=[""].concat(E(i.days)),f=[""].concat(E(i.shortDays));function k(Q,ot){var it=Q+"";for(ot=ot||2;it.length12?$-12:$===0?12:$;a=(a=(a=(a=a.replace(/(^|[^\\])HH+/g,"$1"+k($))).replace(/(^|[^\\])H/g,"$1"+$)).replace(/(^|[^\\])hh+/g,"$1"+k(N))).replace(/(^|[^\\])h/g,"$1"+N);var L=d?s.getUTCMinutes():s.getMinutes();a=(a=a.replace(/(^|[^\\])mm+/g,"$1"+k(L))).replace(/(^|[^\\])m/g,"$1"+L);var F=d?s.getUTCSeconds():s.getSeconds();a=(a=a.replace(/(^|[^\\])ss+/g,"$1"+k(F))).replace(/(^|[^\\])s/g,"$1"+F);var V=d?s.getUTCMilliseconds():s.getMilliseconds();a=a.replace(/(^|[^\\])fff+/g,"$1"+k(V,3)),V=Math.round(V/10),a=a.replace(/(^|[^\\])ff/g,"$1"+k(V)),V=Math.round(V/10);var Z=$<12?"AM":"PM";a=(a=(a=a.replace(/(^|[^\\])f/g,"$1"+V)).replace(/(^|[^\\])TT+/g,"$1"+Z)).replace(/(^|[^\\])T/g,"$1"+Z.charAt(0));var m=Z.toLowerCase();a=(a=a.replace(/(^|[^\\])tt+/g,"$1"+m)).replace(/(^|[^\\])t/g,"$1"+m.charAt(0));var y=-s.getTimezoneOffset(),j=d||!y?"Z":y>0?"+":"-";if(!d){var R=(y=Math.abs(y))%60;j+=k(Math.floor(y/60))+":"+k(R)}a=a.replace(/(^|[^\\])K/g,"$1"+j);var K=(d?s.getUTCDay():s.getDay())+1;return a=(a=(a=(a=(a=a.replace(new RegExp(w[0],"g"),w[K])).replace(new RegExp(f[0],"g"),f[K])).replace(new RegExp(c[0],"g"),c[x])).replace(new RegExp(p[0],"g"),p[x])).replace(/\\(.)/g,"$1")}},{key:"getTimeUnitsfromTimestamp",value:function(s,a,i){var d=this.w;d.config.xaxis.min!==void 0&&(s=d.config.xaxis.min),d.config.xaxis.max!==void 0&&(a=d.config.xaxis.max);var c=this.getDate(s),p=this.getDate(a),w=this.formatDate(c,"yyyy MM dd HH mm ss fff").split(" "),f=this.formatDate(p,"yyyy MM dd HH mm ss fff").split(" ");return{minMillisecond:parseInt(w[6],10),maxMillisecond:parseInt(f[6],10),minSecond:parseInt(w[5],10),maxSecond:parseInt(f[5],10),minMinute:parseInt(w[4],10),maxMinute:parseInt(f[4],10),minHour:parseInt(w[3],10),maxHour:parseInt(f[3],10),minDate:parseInt(w[2],10),maxDate:parseInt(f[2],10),minMonth:parseInt(w[1],10)-1,maxMonth:parseInt(f[1],10)-1,minYear:parseInt(w[0],10),maxYear:parseInt(f[0],10)}}},{key:"isLeapYear",value:function(s){return s%4==0&&s%100!=0||s%400==0}},{key:"calculcateLastDaysOfMonth",value:function(s,a,i){return this.determineDaysOfMonths(s,a)-i}},{key:"determineDaysOfYear",value:function(s){var a=365;return this.isLeapYear(s)&&(a=366),a}},{key:"determineRemainingDaysOfYear",value:function(s,a,i){var d=this.daysCntOfYear[a]+i;return a>1&&this.isLeapYear()&&d++,d}},{key:"determineDaysOfMonths",value:function(s,a){var i=30;switch(s=H.monthMod(s),!0){case this.months30.indexOf(s)>-1:s===2&&(i=this.isLeapYear(a)?29:28);break;case this.months31.indexOf(s)>-1:default:i=31}return i}}]),T}(),Ct=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.tooltipKeyFormat="dd MMM"}return b(T,[{key:"xLabelFormat",value:function(s,a,i,d){var c=this.w;if(c.config.xaxis.type==="datetime"&&c.config.xaxis.labels.formatter===void 0&&c.config.tooltip.x.formatter===void 0){var p=new dt(this.ctx);return p.formatDate(p.getDate(a),c.config.tooltip.x.format)}return s(a,i,d)}},{key:"defaultGeneralFormatter",value:function(s){return Array.isArray(s)?s.map(function(a){return a}):s}},{key:"defaultYFormatter",value:function(s,a,i){var d=this.w;return H.isNumber(s)&&(s=d.globals.yValueDecimal!==0?s.toFixed(a.decimalsInFloat!==void 0?a.decimalsInFloat:d.globals.yValueDecimal):d.globals.maxYArr[i]-d.globals.minYArr[i]<5?s.toFixed(1):s.toFixed(0)),s}},{key:"setLabelFormatters",value:function(){var s=this,a=this.w;return a.globals.xaxisTooltipFormatter=function(i){return s.defaultGeneralFormatter(i)},a.globals.ttKeyFormatter=function(i){return s.defaultGeneralFormatter(i)},a.globals.ttZFormatter=function(i){return i},a.globals.legendFormatter=function(i){return s.defaultGeneralFormatter(i)},a.config.xaxis.labels.formatter!==void 0?a.globals.xLabelFormatter=a.config.xaxis.labels.formatter:a.globals.xLabelFormatter=function(i){if(H.isNumber(i)){if(!a.config.xaxis.convertedCatToNumeric&&a.config.xaxis.type==="numeric"){if(H.isNumber(a.config.xaxis.decimalsInFloat))return i.toFixed(a.config.xaxis.decimalsInFloat);var d=a.globals.maxX-a.globals.minX;return d>0&&d<100?i.toFixed(1):i.toFixed(0)}return a.globals.isBarHorizontal&&a.globals.maxY-a.globals.minYArr<4?i.toFixed(1):i.toFixed(0)}return i},typeof a.config.tooltip.x.formatter=="function"?a.globals.ttKeyFormatter=a.config.tooltip.x.formatter:a.globals.ttKeyFormatter=a.globals.xLabelFormatter,typeof a.config.xaxis.tooltip.formatter=="function"&&(a.globals.xaxisTooltipFormatter=a.config.xaxis.tooltip.formatter),(Array.isArray(a.config.tooltip.y)||a.config.tooltip.y.formatter!==void 0)&&(a.globals.ttVal=a.config.tooltip.y),a.config.tooltip.z.formatter!==void 0&&(a.globals.ttZFormatter=a.config.tooltip.z.formatter),a.config.legend.formatter!==void 0&&(a.globals.legendFormatter=a.config.legend.formatter),a.config.yaxis.forEach(function(i,d){i.labels.formatter!==void 0?a.globals.yLabelFormatters[d]=i.labels.formatter:a.globals.yLabelFormatters[d]=function(c){return a.globals.xyCharts?Array.isArray(c)?c.map(function(p){return s.defaultYFormatter(p,i,d)}):s.defaultYFormatter(c,i,d):c}}),a.globals}},{key:"heatmapLabelFormatters",value:function(){var s=this.w;if(s.config.chart.type==="heatmap"){s.globals.yAxisScale[0].result=s.globals.seriesNames.slice();var a=s.globals.seriesNames.reduce(function(i,d){return i.length>d.length?i:d},0);s.globals.yAxisScale[0].niceMax=a,s.globals.yAxisScale[0].niceMin=a}}}]),T}(),xt=function(T){var s,a=T.isTimeline,i=T.ctx,d=T.seriesIndex,c=T.dataPointIndex,p=T.y1,w=T.y2,f=T.w,k=f.globals.seriesRangeStart[d][c],M=f.globals.seriesRangeEnd[d][c],x=f.globals.labels[c],I=f.config.series[d].name?f.config.series[d].name:"",$=f.globals.ttKeyFormatter,N=f.config.tooltip.y.title.formatter,L={w:f,seriesIndex:d,dataPointIndex:c,start:k,end:M};typeof N=="function"&&(I=N(I,L)),(s=f.config.series[d].data[c])!==null&&s!==void 0&&s.x&&(x=f.config.series[d].data[c].x),a||f.config.xaxis.type==="datetime"&&(x=new Ct(i).xLabelFormat(f.globals.ttKeyFormatter,x,x,{i:void 0,dateFormatter:new dt(i).formatDate,w:f})),typeof $=="function"&&(x=$(x,L)),Number.isFinite(p)&&Number.isFinite(w)&&(k=p,M=w);var F="",V="",Z=f.globals.colors[d];if(f.config.tooltip.x.formatter===void 0)if(f.config.xaxis.type==="datetime"){var m=new dt(i);F=m.formatDate(m.getDate(k),f.config.tooltip.x.format),V=m.formatDate(m.getDate(M),f.config.tooltip.x.format)}else F=k,V=M;else F=f.config.tooltip.x.formatter(k),V=f.config.tooltip.x.formatter(M);return{start:k,end:M,startVal:F,endVal:V,ylabel:x,color:Z,seriesName:I}},wt=function(T){var s=T.color,a=T.seriesName,i=T.ylabel,d=T.start,c=T.end,p=T.seriesIndex,w=T.dataPointIndex,f=T.ctx.tooltip.tooltipLabels.getFormatters(p);d=f.yLbFormatter(d),c=f.yLbFormatter(c);var k=f.yLbFormatter(T.w.globals.series[p][w]),M=` + `.concat(d,` + - + `).concat(c,` + `);return'
'+(a||"")+'
'+i+": "+(T.w.globals.comboCharts?T.w.config.series[p].type==="rangeArea"||T.w.config.series[p].type==="rangeBar"?M:"".concat(k,""):M)+"
"},gt=function(){function T(s){g(this,T),this.opts=s}return b(T,[{key:"hideYAxis",value:function(){this.opts.yaxis[0].show=!1,this.opts.yaxis[0].title.text="",this.opts.yaxis[0].axisBorder.show=!1,this.opts.yaxis[0].axisTicks.show=!1,this.opts.yaxis[0].floating=!0}},{key:"line",value:function(){return{chart:{animations:{easing:"swing"}},dataLabels:{enabled:!1},stroke:{width:5,curve:"straight"},markers:{size:0,hover:{sizeOffset:6}},xaxis:{crosshairs:{width:1}}}}},{key:"sparkline",value:function(s){return this.hideYAxis(),H.extend(s,{grid:{show:!1,padding:{left:0,right:0,top:0,bottom:0}},legend:{show:!1},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}},chart:{toolbar:{show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1}})}},{key:"bar",value:function(){return{chart:{stacked:!1,animations:{easing:"swing"}},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{style:{colors:["#fff"]},background:{enabled:!1}},stroke:{width:0,lineCap:"round"},fill:{opacity:.85},legend:{markers:{shape:"square",radius:2,size:8}},tooltip:{shared:!1,intersect:!0},xaxis:{tooltip:{enabled:!1},tickPlacement:"between",crosshairs:{width:"barWidth",position:"back",fill:{type:"gradient"},dropShadow:{enabled:!1},stroke:{width:0}}}}}},{key:"funnel",value:function(){return this.hideYAxis(),h(h({},this.bar()),{},{chart:{animations:{easing:"linear",speed:800,animateGradually:{enabled:!1}}},plotOptions:{bar:{horizontal:!0,borderRadiusApplication:"around",borderRadius:0,dataLabels:{position:"center"}}},grid:{show:!1,padding:{left:0,right:0}},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}}})}},{key:"candlestick",value:function(){var s=this;return{stroke:{width:1,colors:["#333"]},fill:{opacity:1},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(a){var i=a.seriesIndex,d=a.dataPointIndex,c=a.w;return s._getBoxTooltip(c,i,d,["Open","High","","Low","Close"],"candlestick")}},states:{active:{filter:{type:"none"}}},xaxis:{crosshairs:{width:1}}}}},{key:"boxPlot",value:function(){var s=this;return{chart:{animations:{dynamicAnimation:{enabled:!1}}},stroke:{width:1,colors:["#24292e"]},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(a){var i=a.seriesIndex,d=a.dataPointIndex,c=a.w;return s._getBoxTooltip(c,i,d,["Minimum","Q1","Median","Q3","Maximum"],"boxPlot")}},markers:{size:5,strokeWidth:1,strokeColors:"#111"},xaxis:{crosshairs:{width:1}}}}},{key:"rangeBar",value:function(){return{chart:{animations:{animateGradually:!1}},stroke:{width:0,lineCap:"square"},plotOptions:{bar:{borderRadius:0,dataLabels:{position:"center"}}},dataLabels:{enabled:!1,formatter:function(s,a){a.ctx;var i=a.seriesIndex,d=a.dataPointIndex,c=a.w,p=function(){var w=c.globals.seriesRangeStart[i][d];return c.globals.seriesRangeEnd[i][d]-w};return c.globals.comboCharts?c.config.series[i].type==="rangeBar"||c.config.series[i].type==="rangeArea"?p():s:p()},background:{enabled:!1},style:{colors:["#fff"]}},markers:{size:10},tooltip:{shared:!1,followCursor:!0,custom:function(s){return s.w.config.plotOptions&&s.w.config.plotOptions.bar&&s.w.config.plotOptions.bar.horizontal?function(a){var i=xt(h(h({},a),{},{isTimeline:!0})),d=i.color,c=i.seriesName,p=i.ylabel,w=i.startVal,f=i.endVal;return wt(h(h({},a),{},{color:d,seriesName:c,ylabel:p,start:w,end:f}))}(s):function(a){var i=xt(a),d=i.color,c=i.seriesName,p=i.ylabel,w=i.start,f=i.end;return wt(h(h({},a),{},{color:d,seriesName:c,ylabel:p,start:w,end:f}))}(s)}},xaxis:{tickPlacement:"between",tooltip:{enabled:!1},crosshairs:{stroke:{width:0}}}}}},{key:"dumbbell",value:function(s){var a,i;return(a=s.plotOptions.bar)!==null&&a!==void 0&&a.barHeight||(s.plotOptions.bar.barHeight=2),(i=s.plotOptions.bar)!==null&&i!==void 0&&i.columnWidth||(s.plotOptions.bar.columnWidth=2),s}},{key:"area",value:function(){return{stroke:{width:4,fill:{type:"solid",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}}},fill:{type:"gradient",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}},markers:{size:0,hover:{sizeOffset:6}},tooltip:{followCursor:!1}}}},{key:"rangeArea",value:function(){return{stroke:{curve:"straight",width:0},fill:{type:"solid",opacity:.6},markers:{size:0},states:{hover:{filter:{type:"none"}},active:{filter:{type:"none"}}},tooltip:{intersect:!1,shared:!0,followCursor:!0,custom:function(s){return function(a){var i=xt(a),d=i.color,c=i.seriesName,p=i.ylabel,w=i.start,f=i.end;return wt(h(h({},a),{},{color:d,seriesName:c,ylabel:p,start:w,end:f}))}(s)}}}}},{key:"brush",value:function(s){return H.extend(s,{chart:{toolbar:{autoSelected:"selection",show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1},stroke:{width:1},tooltip:{enabled:!1},xaxis:{tooltip:{enabled:!1}}})}},{key:"stacked100",value:function(s){s.dataLabels=s.dataLabels||{},s.dataLabels.formatter=s.dataLabels.formatter||void 0;var a=s.dataLabels.formatter;return s.yaxis.forEach(function(i,d){s.yaxis[d].min=0,s.yaxis[d].max=100}),s.chart.type==="bar"&&(s.dataLabels.formatter=a||function(i){return typeof i=="number"&&i?i.toFixed(0)+"%":i}),s}},{key:"stackedBars",value:function(){var s=this.bar();return h(h({},s),{},{plotOptions:h(h({},s.plotOptions),{},{bar:h(h({},s.plotOptions.bar),{},{borderRadiusApplication:"end",borderRadiusWhenStacked:"last"})})})}},{key:"convertCatToNumeric",value:function(s){return s.xaxis.convertedCatToNumeric=!0,s}},{key:"convertCatToNumericXaxis",value:function(s,a,i){s.xaxis.type="numeric",s.xaxis.labels=s.xaxis.labels||{},s.xaxis.labels.formatter=s.xaxis.labels.formatter||function(p){return H.isNumber(p)?Math.floor(p):p};var d=s.xaxis.labels.formatter,c=s.xaxis.categories&&s.xaxis.categories.length?s.xaxis.categories:s.labels;return i&&i.length&&(c=i.map(function(p){return Array.isArray(p)?p:String(p)})),c&&c.length&&(s.xaxis.labels.formatter=function(p){return H.isNumber(p)?d(c[Math.floor(p)-1]):d(p)}),s.xaxis.categories=[],s.labels=[],s.xaxis.tickAmount=s.xaxis.tickAmount||"dataPoints",s}},{key:"bubble",value:function(){return{dataLabels:{style:{colors:["#fff"]}},tooltip:{shared:!1,intersect:!0},xaxis:{crosshairs:{width:0}},fill:{type:"solid",gradient:{shade:"light",inverse:!0,shadeIntensity:.55,opacityFrom:.4,opacityTo:.8}}}}},{key:"scatter",value:function(){return{dataLabels:{enabled:!1},tooltip:{shared:!1,intersect:!0},markers:{size:6,strokeWidth:1,hover:{sizeOffset:2}}}}},{key:"heatmap",value:function(){return{chart:{stacked:!1},fill:{opacity:1},dataLabels:{style:{colors:["#fff"]}},stroke:{colors:["#fff"]},tooltip:{followCursor:!0,marker:{show:!1},x:{show:!1}},legend:{position:"top",markers:{shape:"square",size:10,offsetY:2}},grid:{padding:{right:20}}}}},{key:"treemap",value:function(){return{chart:{zoom:{enabled:!1}},dataLabels:{style:{fontSize:14,fontWeight:600,colors:["#fff"]}},stroke:{show:!0,width:2,colors:["#fff"]},legend:{show:!1},fill:{gradient:{stops:[0,100]}},tooltip:{followCursor:!0,x:{show:!1}},grid:{padding:{left:0,right:0}},xaxis:{crosshairs:{show:!1},tooltip:{enabled:!1}}}}},{key:"pie",value:function(){return{chart:{toolbar:{show:!1}},plotOptions:{pie:{donut:{labels:{show:!1}}}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",stops:[0,100]}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"donut",value:function(){return{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",shadeIntensity:.35,stops:[80,100],opacityFrom:1,opacityTo:1}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"polarArea",value:function(){return this.opts.yaxis[0].tickAmount=this.opts.yaxis[0].tickAmount?this.opts.yaxis[0].tickAmount:6,{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},enabled:!1},stroke:{show:!0,width:2},fill:{opacity:.7},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"radar",value:function(){return this.opts.yaxis[0].labels.offsetY=this.opts.yaxis[0].labels.offsetY?this.opts.yaxis[0].labels.offsetY:6,{dataLabels:{enabled:!1,style:{fontSize:"11px"}},stroke:{width:2},markers:{size:3,strokeWidth:1,strokeOpacity:1},fill:{opacity:.2},tooltip:{shared:!1,intersect:!0,followCursor:!0},grid:{show:!1},xaxis:{labels:{formatter:function(s){return s},style:{colors:["#a8a8a8"],fontSize:"11px"}},tooltip:{enabled:!1},crosshairs:{show:!1}}}}},{key:"radialBar",value:function(){return{chart:{animations:{dynamicAnimation:{enabled:!0,speed:800}},toolbar:{show:!1}},fill:{gradient:{shade:"dark",shadeIntensity:.4,inverseColors:!1,type:"diagonal2",opacityFrom:1,opacityTo:1,stops:[70,98,100]}},legend:{show:!1,position:"right"},tooltip:{enabled:!1,fillSeriesColor:!0}}}},{key:"_getBoxTooltip",value:function(s,a,i,d,c){var p=s.globals.seriesCandleO[a][i],w=s.globals.seriesCandleH[a][i],f=s.globals.seriesCandleM[a][i],k=s.globals.seriesCandleL[a][i],M=s.globals.seriesCandleC[a][i];return s.config.series[a].type&&s.config.series[a].type!==c?`
+ `.concat(s.config.series[a].name?s.config.series[a].name:"series-"+(a+1),": ").concat(s.globals.series[a][i],` +
`):'
')+"
".concat(d[0],': ')+p+"
"+"
".concat(d[1],': ')+w+"
"+(f?"
".concat(d[2],': ')+f+"
":"")+"
".concat(d[3],': ')+k+"
"+"
".concat(d[4],': ')+M+"
"}}]),T}(),It=function(){function T(s){g(this,T),this.opts=s}return b(T,[{key:"init",value:function(s){var a=s.responsiveOverride,i=this.opts,d=new rt,c=new gt(i);this.chartType=i.chart.type,i=this.extendYAxis(i),i=this.extendAnnotations(i);var p=d.init(),w={};if(i&&u(i)==="object"){var f,k,M,x,I,$,N,L,F={};F=["line","area","bar","candlestick","boxPlot","rangeBar","rangeArea","bubble","scatter","heatmap","treemap","pie","polarArea","donut","radar","radialBar"].indexOf(i.chart.type)!==-1?c[i.chart.type]():c.line(),(f=i.plotOptions)!==null&&f!==void 0&&(k=f.bar)!==null&&k!==void 0&&k.isFunnel&&(F=c.funnel()),i.chart.stacked&&i.chart.type==="bar"&&(F=c.stackedBars()),(M=i.chart.brush)!==null&&M!==void 0&&M.enabled&&(F=c.brush(F)),i.chart.stacked&&i.chart.stackType==="100%"&&(i=c.stacked100(i)),(x=i.plotOptions)!==null&&x!==void 0&&(I=x.bar)!==null&&I!==void 0&&I.isDumbbell&&(i=c.dumbbell(i)),this.checkForDarkTheme(window.Apex),this.checkForDarkTheme(i),i.xaxis=i.xaxis||window.Apex.xaxis||{},a||(i.xaxis.convertedCatToNumeric=!1),(($=(i=this.checkForCatToNumericXAxis(this.chartType,F,i)).chart.sparkline)!==null&&$!==void 0&&$.enabled||(N=window.Apex.chart)!==null&&N!==void 0&&(L=N.sparkline)!==null&&L!==void 0&&L.enabled)&&(F=c.sparkline(F)),w=H.extend(p,F)}var V=H.extend(w,window.Apex);return p=H.extend(V,i),p=this.handleUserInputErrors(p)}},{key:"checkForCatToNumericXAxis",value:function(s,a,i){var d,c,p=new gt(i),w=(s==="bar"||s==="boxPlot")&&((d=i.plotOptions)===null||d===void 0||(c=d.bar)===null||c===void 0?void 0:c.horizontal),f=s==="pie"||s==="polarArea"||s==="donut"||s==="radar"||s==="radialBar"||s==="heatmap",k=i.xaxis.type!=="datetime"&&i.xaxis.type!=="numeric",M=i.xaxis.tickPlacement?i.xaxis.tickPlacement:a.xaxis&&a.xaxis.tickPlacement;return w||f||!k||M==="between"||(i=p.convertCatToNumeric(i)),i}},{key:"extendYAxis",value:function(s,a){var i=new rt;(s.yaxis===void 0||!s.yaxis||Array.isArray(s.yaxis)&&s.yaxis.length===0)&&(s.yaxis={}),s.yaxis.constructor!==Array&&window.Apex.yaxis&&window.Apex.yaxis.constructor!==Array&&(s.yaxis=H.extend(s.yaxis,window.Apex.yaxis)),s.yaxis.constructor!==Array?s.yaxis=[H.extend(i.yAxis,s.yaxis)]:s.yaxis=H.extendArray(s.yaxis,i.yAxis);var d=!1;s.yaxis.forEach(function(p){p.logarithmic&&(d=!0)});var c=s.series;return a&&!c&&(c=a.config.series),d&&c.length!==s.yaxis.length&&c.length&&(s.yaxis=c.map(function(p,w){if(p.name||(c[w].name="series-".concat(w+1)),s.yaxis[w])return s.yaxis[w].seriesName=c[w].name,s.yaxis[w];var f=H.extend(i.yAxis,s.yaxis[0]);return f.show=!1,f})),d&&c.length>1&&c.length!==s.yaxis.length&&console.warn("A multi-series logarithmic chart should have equal number of series and y-axes. Please make sure to equalize both."),s}},{key:"extendAnnotations",value:function(s){return s.annotations===void 0&&(s.annotations={},s.annotations.yaxis=[],s.annotations.xaxis=[],s.annotations.points=[]),s=this.extendYAxisAnnotations(s),s=this.extendXAxisAnnotations(s),s=this.extendPointAnnotations(s)}},{key:"extendYAxisAnnotations",value:function(s){var a=new rt;return s.annotations.yaxis=H.extendArray(s.annotations.yaxis!==void 0?s.annotations.yaxis:[],a.yAxisAnnotation),s}},{key:"extendXAxisAnnotations",value:function(s){var a=new rt;return s.annotations.xaxis=H.extendArray(s.annotations.xaxis!==void 0?s.annotations.xaxis:[],a.xAxisAnnotation),s}},{key:"extendPointAnnotations",value:function(s){var a=new rt;return s.annotations.points=H.extendArray(s.annotations.points!==void 0?s.annotations.points:[],a.pointAnnotation),s}},{key:"checkForDarkTheme",value:function(s){s.theme&&s.theme.mode==="dark"&&(s.tooltip||(s.tooltip={}),s.tooltip.theme!=="light"&&(s.tooltip.theme="dark"),s.chart.foreColor||(s.chart.foreColor="#f6f7f8"),s.chart.background||(s.chart.background="#424242"),s.theme.palette||(s.theme.palette="palette4"))}},{key:"handleUserInputErrors",value:function(s){var a=s;if(a.tooltip.shared&&a.tooltip.intersect)throw new Error("tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.");if(a.chart.type==="bar"&&a.plotOptions.bar.horizontal){if(a.yaxis.length>1)throw new Error("Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false");a.yaxis[0].reversed&&(a.yaxis[0].opposite=!0),a.xaxis.tooltip.enabled=!1,a.yaxis[0].tooltip.enabled=!1,a.chart.zoom.enabled=!1}return a.chart.type!=="bar"&&a.chart.type!=="rangeBar"||a.tooltip.shared&&a.xaxis.crosshairs.width==="barWidth"&&a.series.length>1&&(a.xaxis.crosshairs.width="tickWidth"),a.chart.type!=="candlestick"&&a.chart.type!=="boxPlot"||a.yaxis[0].reversed&&(console.warn("Reversed y-axis in ".concat(a.chart.type," chart is not supported.")),a.yaxis[0].reversed=!1),a}}]),T}(),$t=function(){function T(){g(this,T)}return b(T,[{key:"initGlobalVars",value:function(s){s.series=[],s.seriesCandleO=[],s.seriesCandleH=[],s.seriesCandleM=[],s.seriesCandleL=[],s.seriesCandleC=[],s.seriesRangeStart=[],s.seriesRangeEnd=[],s.seriesRange=[],s.seriesPercent=[],s.seriesGoals=[],s.seriesX=[],s.seriesZ=[],s.seriesNames=[],s.seriesTotals=[],s.seriesLog=[],s.seriesColors=[],s.stackedSeriesTotals=[],s.seriesXvalues=[],s.seriesYvalues=[],s.labels=[],s.hasXaxisGroups=!1,s.groups=[],s.hasSeriesGroups=!1,s.seriesGroups=[],s.categoryLabels=[],s.timescaleLabels=[],s.noLabelsProvided=!1,s.resizeTimer=null,s.selectionResizeTimer=null,s.delayedElements=[],s.pointsArray=[],s.dataLabelsRects=[],s.isXNumeric=!1,s.skipLastTimelinelabel=!1,s.skipFirstTimelinelabel=!1,s.isDataXYZ=!1,s.isMultiLineX=!1,s.isMultipleYAxis=!1,s.maxY=-Number.MAX_VALUE,s.minY=Number.MIN_VALUE,s.minYArr=[],s.maxYArr=[],s.maxX=-Number.MAX_VALUE,s.minX=Number.MAX_VALUE,s.initialMaxX=-Number.MAX_VALUE,s.initialMinX=Number.MAX_VALUE,s.maxDate=0,s.minDate=Number.MAX_VALUE,s.minZ=Number.MAX_VALUE,s.maxZ=-Number.MAX_VALUE,s.minXDiff=Number.MAX_VALUE,s.yAxisScale=[],s.xAxisScale=null,s.xAxisTicksPositions=[],s.yLabelsCoords=[],s.yTitleCoords=[],s.barPadForNumericAxis=0,s.padHorizontal=0,s.xRange=0,s.yRange=[],s.zRange=0,s.dataPoints=0,s.xTickAmount=0}},{key:"globalVars",value:function(s){return{chartID:null,cuid:null,events:{beforeMount:[],mounted:[],updated:[],clicked:[],selection:[],dataPointSelection:[],zoomed:[],scrolled:[]},colors:[],clientX:null,clientY:null,fill:{colors:[]},stroke:{colors:[]},dataLabels:{style:{colors:[]}},radarPolygons:{fill:{colors:[]}},markers:{colors:[],size:s.markers.size,largestSize:0},animationEnded:!1,isTouchDevice:"ontouchstart"in window||navigator.msMaxTouchPoints,isDirty:!1,isExecCalled:!1,initialConfig:null,initialSeries:[],lastXAxis:[],lastYAxis:[],columnSeries:null,labels:[],timescaleLabels:[],noLabelsProvided:!1,allSeriesCollapsed:!1,collapsedSeries:[],collapsedSeriesIndices:[],ancillaryCollapsedSeries:[],ancillaryCollapsedSeriesIndices:[],risingSeries:[],dataFormatXNumeric:!1,capturedSeriesIndex:-1,capturedDataPointIndex:-1,selectedDataPoints:[],goldenPadding:35,invalidLogScale:!1,ignoreYAxisIndexes:[],yAxisSameScaleIndices:[],maxValsInArrayIndex:0,radialSize:0,selection:void 0,zoomEnabled:s.chart.toolbar.autoSelected==="zoom"&&s.chart.toolbar.tools.zoom&&s.chart.zoom.enabled,panEnabled:s.chart.toolbar.autoSelected==="pan"&&s.chart.toolbar.tools.pan,selectionEnabled:s.chart.toolbar.autoSelected==="selection"&&s.chart.toolbar.tools.selection,yaxis:null,mousedown:!1,lastClientPosition:{},visibleXRange:void 0,yValueDecimal:0,total:0,SVGNS:"http://www.w3.org/2000/svg",svgWidth:0,svgHeight:0,noData:!1,locale:{},dom:{},memory:{methodsToExec:[]},shouldAnimate:!0,skipLastTimelinelabel:!1,skipFirstTimelinelabel:!1,delayedElements:[],axisCharts:!0,isDataXYZ:!1,resized:!1,resizeTimer:null,comboCharts:!1,dataChanged:!1,previousPaths:[],allSeriesHasEqualX:!0,pointsArray:[],dataLabelsRects:[],lastDrawnDataLabelsIndexes:[],hasNullValues:!1,easing:null,zoomed:!1,gridWidth:0,gridHeight:0,rotateXLabels:!1,defaultLabels:!1,xLabelFormatter:void 0,yLabelFormatters:[],xaxisTooltipFormatter:void 0,ttKeyFormatter:void 0,ttVal:void 0,ttZFormatter:void 0,LINE_HEIGHT_RATIO:1.618,xAxisLabelsHeight:0,xAxisGroupLabelsHeight:0,xAxisLabelsWidth:0,yAxisLabelsWidth:0,scaleX:1,scaleY:1,translateX:0,translateY:0,translateYAxisX:[],yAxisWidths:[],translateXAxisY:0,translateXAxisX:0,tooltip:null}}},{key:"init",value:function(s){var a=this.globalVars(s);return this.initGlobalVars(a),a.initialConfig=H.extend({},s),a.initialSeries=H.clone(s.series),a.lastXAxis=H.clone(a.initialConfig.xaxis),a.lastYAxis=H.clone(a.initialConfig.yaxis),a}}]),T}(),Tt=function(){function T(s){g(this,T),this.opts=s}return b(T,[{key:"init",value:function(){var s=new It(this.opts).init({responsiveOverride:!1});return{config:s,globals:new $t().init(s)}}}]),T}(),Ft=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.opts=null,this.seriesIndex=0}return b(T,[{key:"clippedImgArea",value:function(s){var a=this.w,i=a.config,d=parseInt(a.globals.gridWidth,10),c=parseInt(a.globals.gridHeight,10),p=d>c?d:c,w=s.image,f=0,k=0;s.width===void 0&&s.height===void 0?i.fill.image.width!==void 0&&i.fill.image.height!==void 0?(f=i.fill.image.width+1,k=i.fill.image.height):(f=p+1,k=p):(f=s.width,k=s.height);var M=document.createElementNS(a.globals.SVGNS,"pattern");_.setAttrs(M,{id:s.patternID,patternUnits:s.patternUnits?s.patternUnits:"userSpaceOnUse",width:f+"px",height:k+"px"});var x=document.createElementNS(a.globals.SVGNS,"image");M.appendChild(x),x.setAttributeNS(window.SVG.xlink,"href",w),_.setAttrs(x,{x:0,y:0,preserveAspectRatio:"none",width:f+"px",height:k+"px"}),x.style.opacity=s.opacity,a.globals.dom.elDefs.node.appendChild(M)}},{key:"getSeriesIndex",value:function(s){var a=this.w,i=a.config.chart.type;return(i==="bar"||i==="rangeBar")&&a.config.plotOptions.bar.distributed||i==="heatmap"||i==="treemap"?this.seriesIndex=s.seriesNumber:this.seriesIndex=s.seriesNumber%a.globals.series.length,this.seriesIndex}},{key:"fillPath",value:function(s){var a=this.w;this.opts=s;var i,d,c,p=this.w.config;this.seriesIndex=this.getSeriesIndex(s);var w=this.getFillColors()[this.seriesIndex];a.globals.seriesColors[this.seriesIndex]!==void 0&&(w=a.globals.seriesColors[this.seriesIndex]),typeof w=="function"&&(w=w({seriesIndex:this.seriesIndex,dataPointIndex:s.dataPointIndex,value:s.value,w:a}));var f=s.fillType?s.fillType:this.getFillType(this.seriesIndex),k=Array.isArray(p.fill.opacity)?p.fill.opacity[this.seriesIndex]:p.fill.opacity;s.color&&(w=s.color);var M=w;if(w.indexOf("rgb")===-1?w.length<9&&(M=H.hexToRgba(w,k)):w.indexOf("rgba")>-1&&(k=H.getOpacityFromRGBA(w)),s.opacity&&(k=s.opacity),f==="pattern"&&(d=this.handlePatternFill({fillConfig:s.fillConfig,patternFill:d,fillColor:w,fillOpacity:k,defaultColor:M})),f==="gradient"&&(c=this.handleGradientFill({fillConfig:s.fillConfig,fillColor:w,fillOpacity:k,i:this.seriesIndex})),f==="image"){var x=p.fill.image.src,I=s.patternID?s.patternID:"";this.clippedImgArea({opacity:k,image:Array.isArray(x)?s.seriesNumber-1&&($=H.getOpacityFromRGBA(I));var N=p.gradient.opacityTo===void 0?i:Array.isArray(p.gradient.opacityTo)?p.gradient.opacityTo[c]:p.gradient.opacityTo;if(p.gradient.gradientToColors===void 0||p.gradient.gradientToColors.length===0)w=p.gradient.shade==="dark"?M.shadeColor(-1*parseFloat(p.gradient.shadeIntensity),a.indexOf("rgb")>-1?H.rgb2hex(a):a):M.shadeColor(parseFloat(p.gradient.shadeIntensity),a.indexOf("rgb")>-1?H.rgb2hex(a):a);else if(p.gradient.gradientToColors[f.seriesNumber]){var L=p.gradient.gradientToColors[f.seriesNumber];w=L,L.indexOf("rgba")>-1&&(N=H.getOpacityFromRGBA(L))}else w=a;if(p.gradient.gradientFrom&&(I=p.gradient.gradientFrom),p.gradient.gradientTo&&(w=p.gradient.gradientTo),p.gradient.inverseColors){var F=I;I=w,w=F}return I.indexOf("rgb")>-1&&(I=H.rgb2hex(I)),w.indexOf("rgb")>-1&&(w=H.rgb2hex(w)),k.drawGradient(x,I,w,$,N,f.size,p.gradient.stops,p.gradient.colorStops,c)}}]),T}(),Kt=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"setGlobalMarkerSize",value:function(){var s=this.w;if(s.globals.markers.size=Array.isArray(s.config.markers.size)?s.config.markers.size:[s.config.markers.size],s.globals.markers.size.length>0){if(s.globals.markers.size.length4&&arguments[4]!==void 0&&arguments[4],w=this.w,f=a,k=s,M=null,x=new _(this.ctx),I=w.config.markers.discrete&&w.config.markers.discrete.length;if((w.globals.markers.size[a]>0||p||I)&&(M=x.group({class:p||I?"":"apexcharts-series-markers"})).attr("clip-path","url(#gridRectMarkerMask".concat(w.globals.cuid,")")),Array.isArray(k.x))for(var $=0;$0:w.config.markers.size>0)||p||I){H.isNumber(k.y[$])?L+=" w".concat(H.randomId()):L="apexcharts-nullpoint";var F=this.getMarkerConfig({cssClass:L,seriesIndex:a,dataPointIndex:N});w.config.series[f].data[N]&&(w.config.series[f].data[N].fillColor&&(F.pointFillColor=w.config.series[f].data[N].fillColor),w.config.series[f].data[N].strokeColor&&(F.pointStrokeColor=w.config.series[f].data[N].strokeColor)),d&&(F.pSize=d),(k.x[$]<0||k.x[$]>w.globals.gridWidth||k.y[$]<0||k.y[$]>w.globals.gridHeight)&&(F.pSize=0),(c=x.drawMarker(k.x[$],k.y[$],F)).attr("rel",N),c.attr("j",N),c.attr("index",a),c.node.setAttribute("default-marker-size",F.pSize),new W(this.ctx).setSelectionFilter(c,a,N),this.addEvents(c),M&&M.add(c)}else w.globals.pointsArray[a]===void 0&&(w.globals.pointsArray[a]=[]),w.globals.pointsArray[a].push([k.x[$],k.y[$]])}return M}},{key:"getMarkerConfig",value:function(s){var a=s.cssClass,i=s.seriesIndex,d=s.dataPointIndex,c=d===void 0?null:d,p=s.finishRadius,w=p===void 0?null:p,f=this.w,k=this.getMarkerStyle(i),M=f.globals.markers.size[i],x=f.config.markers;return c!==null&&x.discrete.length&&x.discrete.map(function(I){I.seriesIndex===i&&I.dataPointIndex===c&&(k.pointStrokeColor=I.strokeColor,k.pointFillColor=I.fillColor,M=I.size,k.pointShape=I.shape)}),{pSize:w===null?M:w,pRadius:x.radius,width:Array.isArray(x.width)?x.width[i]:x.width,height:Array.isArray(x.height)?x.height[i]:x.height,pointStrokeWidth:Array.isArray(x.strokeWidth)?x.strokeWidth[i]:x.strokeWidth,pointStrokeColor:k.pointStrokeColor,pointFillColor:k.pointFillColor,shape:k.pointShape||(Array.isArray(x.shape)?x.shape[i]:x.shape),class:a,pointStrokeOpacity:Array.isArray(x.strokeOpacity)?x.strokeOpacity[i]:x.strokeOpacity,pointStrokeDashArray:Array.isArray(x.strokeDashArray)?x.strokeDashArray[i]:x.strokeDashArray,pointFillOpacity:Array.isArray(x.fillOpacity)?x.fillOpacity[i]:x.fillOpacity,seriesIndex:i}}},{key:"addEvents",value:function(s){var a=this.w,i=new _(this.ctx);s.node.addEventListener("mouseenter",i.pathMouseEnter.bind(this.ctx,s)),s.node.addEventListener("mouseleave",i.pathMouseLeave.bind(this.ctx,s)),s.node.addEventListener("mousedown",i.pathMouseDown.bind(this.ctx,s)),s.node.addEventListener("click",a.config.markers.onClick),s.node.addEventListener("dblclick",a.config.markers.onDblClick),s.node.addEventListener("touchstart",i.pathMouseDown.bind(this.ctx,s),{passive:!0})}},{key:"getMarkerStyle",value:function(s){var a=this.w,i=a.globals.markers.colors,d=a.config.markers.strokeColor||a.config.markers.strokeColors;return{pointStrokeColor:Array.isArray(d)?d[s]:d,pointFillColor:Array.isArray(i)?i[s]:i}}}]),T}(),Qt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled}return b(T,[{key:"draw",value:function(s,a,i){var d=this.w,c=new _(this.ctx),p=i.realIndex,w=i.pointsPos,f=i.zRatio,k=i.elParent,M=c.group({class:"apexcharts-series-markers apexcharts-series-".concat(d.config.chart.type)});if(M.attr("clip-path","url(#gridRectMarkerMask".concat(d.globals.cuid,")")),Array.isArray(w.x))for(var x=0;xF.maxBubbleRadius&&(L=F.maxBubbleRadius)}d.config.chart.animations.enabled||(N=L);var V=w.x[x],Z=w.y[x];if(N=N||0,Z!==null&&d.globals.series[p][I]!==void 0||($=!1),$){var m=this.drawPoint(V,Z,N,L,p,I,a);M.add(m)}k.add(M)}}},{key:"drawPoint",value:function(s,a,i,d,c,p,w){var f=this.w,k=c,M=new U(this.ctx),x=new W(this.ctx),I=new Ft(this.ctx),$=new Kt(this.ctx),N=new _(this.ctx),L=$.getMarkerConfig({cssClass:"apexcharts-marker",seriesIndex:k,dataPointIndex:p,finishRadius:f.config.chart.type==="bubble"||f.globals.comboCharts&&f.config.series[c]&&f.config.series[c].type==="bubble"?d:null});d=L.pSize;var F,V=I.fillPath({seriesNumber:c,dataPointIndex:p,color:L.pointFillColor,patternUnits:"objectBoundingBox",value:f.globals.series[c][w]});if(L.shape==="circle"?F=N.drawCircle(i):L.shape!=="square"&&L.shape!=="rect"||(F=N.drawRect(0,0,L.width-L.pointStrokeWidth/2,L.height-L.pointStrokeWidth/2,L.pRadius)),f.config.series[k].data[p]&&f.config.series[k].data[p].fillColor&&(V=f.config.series[k].data[p].fillColor),F.attr({x:s-L.width/2-L.pointStrokeWidth/2,y:a-L.height/2-L.pointStrokeWidth/2,cx:s,cy:a,fill:V,"fill-opacity":L.pointFillOpacity,stroke:L.pointStrokeColor,r:d,"stroke-width":L.pointStrokeWidth,"stroke-dasharray":L.pointStrokeDashArray,"stroke-opacity":L.pointStrokeOpacity}),f.config.chart.dropShadow.enabled){var Z=f.config.chart.dropShadow;x.dropShadow(F,Z,c)}if(!this.initialAnim||f.globals.dataChanged||f.globals.resized)f.globals.animationEnded=!0;else{var m=f.config.chart.animations.speed;M.animateMarker(F,0,L.shape==="circle"?d:{width:L.width,height:L.height},m,f.globals.easing,function(){window.setTimeout(function(){M.animationCompleted(F)},100)})}if(f.globals.dataChanged&&L.shape==="circle")if(this.dynamicAnim){var y,j,R,K,Q=f.config.chart.animations.dynamicAnimation.speed;(K=f.globals.previousPaths[c]&&f.globals.previousPaths[c][w])!=null&&(y=K.x,j=K.y,R=K.r!==void 0?K.r:d);for(var ot=0;otf.globals.gridHeight+I&&(a=f.globals.gridHeight+I/2),f.globals.dataLabelsRects[d]===void 0&&(f.globals.dataLabelsRects[d]=[]),f.globals.dataLabelsRects[d].push({x:s,y:a,width:x,height:I});var $=f.globals.dataLabelsRects[d].length-2,N=f.globals.lastDrawnDataLabelsIndexes[d]!==void 0?f.globals.lastDrawnDataLabelsIndexes[d][f.globals.lastDrawnDataLabelsIndexes[d].length-1]:0;if(f.globals.dataLabelsRects[d][$]!==void 0){var L=f.globals.dataLabelsRects[d][N];(s>L.x+L.width+2||a>L.y+L.height+2||s+xa.globals.gridWidth+F.textRects.width+10)&&(f="");var V=a.globals.dataLabels.style.colors[p];((a.config.chart.type==="bar"||a.config.chart.type==="rangeBar")&&a.config.plotOptions.bar.distributed||a.config.dataLabels.distributed)&&(V=a.globals.dataLabels.style.colors[w]),typeof V=="function"&&(V=V({series:a.globals.series,seriesIndex:p,dataPointIndex:w,w:a})),$&&(V=$);var Z=I.offsetX,m=I.offsetY;if(a.config.chart.type!=="bar"&&a.config.chart.type!=="rangeBar"||(Z=0,m=0),F.drawnextLabel){var y=i.drawText({width:100,height:parseInt(I.style.fontSize,10),x:d+Z,y:c+m,foreColor:V,textAnchor:k||I.textAnchor,text:f,fontSize:M||I.style.fontSize,fontFamily:I.style.fontFamily,fontWeight:I.style.fontWeight||"normal"});if(y.attr({class:"apexcharts-datalabel",cx:d,cy:c}),I.dropShadow.enabled){var j=I.dropShadow;new W(this.ctx).dropShadow(y,j)}x.add(y),a.globals.lastDrawnDataLabelsIndexes[p]===void 0&&(a.globals.lastDrawnDataLabelsIndexes[p]=[]),a.globals.lastDrawnDataLabelsIndexes[p].push(w)}}}},{key:"addBackgroundToDataLabel",value:function(s,a){var i=this.w,d=i.config.dataLabels.background,c=d.padding,p=d.padding/2,w=a.width,f=a.height,k=new _(this.ctx).drawRect(a.x-c,a.y-p/2,w+2*c,f+p,d.borderRadius,i.config.chart.background==="transparent"?"#fff":i.config.chart.background,d.opacity,d.borderWidth,d.borderColor);return d.dropShadow.enabled&&new W(this.ctx).dropShadow(k,d.dropShadow),k}},{key:"dataLabelsBackground",value:function(){var s=this.w;if(s.config.chart.type!=="bubble")for(var a=s.globals.dom.baseEl.querySelectorAll(".apexcharts-datalabels text"),i=0;i0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w,c=H.clone(d.globals.initialSeries);d.globals.previousPaths=[],i?(d.globals.collapsedSeries=[],d.globals.ancillaryCollapsedSeries=[],d.globals.collapsedSeriesIndices=[],d.globals.ancillaryCollapsedSeriesIndices=[]):c=this.emptyCollapsedSeries(c),d.config.series=c,s&&(a&&(d.globals.zoomed=!1,this.ctx.updateHelpers.revertDefaultAxisMinMax()),this.ctx.updateHelpers._updateSeries(c,d.config.chart.animations.dynamicAnimation.enabled))}},{key:"emptyCollapsedSeries",value:function(s){for(var a=this.w,i=0;i-1&&(s[i].data=[]);return s}},{key:"toggleSeriesOnHover",value:function(s,a){var i=this.w;a||(a=s.target);var d=i.globals.dom.baseEl.querySelectorAll(".apexcharts-series, .apexcharts-datalabels");if(s.type==="mousemove"){var c=parseInt(a.getAttribute("rel"),10)-1,p=null,w=null;i.globals.axisCharts||i.config.chart.type==="radialBar"?i.globals.axisCharts?(p=i.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(c,"']")),w=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels[data\\:realIndex='".concat(c,"']"))):p=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(c+1,"']")):p=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(c+1,"'] path"));for(var f=0;f=f.from&&M<=f.to&&c[k].classList.remove(i.legendInactiveClass)}}(d.config.plotOptions.heatmap.colorScale.ranges[w])}else s.type==="mouseout"&&p("remove")}},{key:"getActiveConfigSeriesIndex",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"asc",a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],i=this.w,d=0;if(i.config.series.length>1){for(var c=i.config.series.map(function(w,f){return w.data&&w.data.length>0&&i.globals.collapsedSeriesIndices.indexOf(f)===-1&&(!i.globals.comboCharts||a.length===0||a.length&&a.indexOf(i.config.series[f].type)>-1)?f:-1}),p=s==="asc"?0:c.length-1;s==="asc"?p=0;s==="asc"?p++:p--)if(c[p]!==-1){d=c[p];break}}return d}},{key:"getBarSeriesIndices",value:function(){return this.w.globals.comboCharts?this.w.config.series.map(function(s,a){return s.type==="bar"||s.type==="column"?a:-1}).filter(function(s){return s!==-1}):this.w.config.series.map(function(s,a){return a})}},{key:"getPreviousPaths",value:function(){var s=this.w;function a(p,w,f){for(var k=p[w].childNodes,M={type:f,paths:[],realIndex:p[w].getAttribute("data:realIndex")},x=0;x0)for(var d=function(p){for(var w=s.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(s.config.chart.type," .apexcharts-series[data\\:realIndex='").concat(p,"'] rect")),f=[],k=function(x){var I=function(N){return w[x].getAttribute(N)},$={x:parseFloat(I("x")),y:parseFloat(I("y")),width:parseFloat(I("width")),height:parseFloat(I("height"))};f.push({rect:$,color:w[x].getAttribute("color")})},M=0;M0)for(var d=0;d0?a:[]});return s}}]),T}(),pt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.twoDSeries=[],this.threeDSeries=[],this.twoDSeriesX=[],this.seriesGoals=[],this.coreUtils=new tt(this.ctx)}return b(T,[{key:"isMultiFormat",value:function(){return this.isFormatXY()||this.isFormat2DArray()}},{key:"isFormatXY",value:function(){var s=this.w.config.series.slice(),a=new ut(this.ctx);if(this.activeSeriesIndex=a.getActiveConfigSeriesIndex(),s[this.activeSeriesIndex].data!==void 0&&s[this.activeSeriesIndex].data.length>0&&s[this.activeSeriesIndex].data[0]!==null&&s[this.activeSeriesIndex].data[0].x!==void 0&&s[this.activeSeriesIndex].data[0]!==null)return!0}},{key:"isFormat2DArray",value:function(){var s=this.w.config.series.slice(),a=new ut(this.ctx);if(this.activeSeriesIndex=a.getActiveConfigSeriesIndex(),s[this.activeSeriesIndex].data!==void 0&&s[this.activeSeriesIndex].data.length>0&&s[this.activeSeriesIndex].data[0]!==void 0&&s[this.activeSeriesIndex].data[0]!==null&&s[this.activeSeriesIndex].data[0].constructor===Array)return!0}},{key:"handleFormat2DArray",value:function(s,a){for(var i=this.w.config,d=this.w.globals,c=i.chart.type==="boxPlot"||i.series[a].type==="boxPlot",p=0;p=5?this.twoDSeries.push(H.parseNumber(s[a].data[p][4])):this.twoDSeries.push(H.parseNumber(s[a].data[p][1])),d.dataFormatXNumeric=!0),i.xaxis.type==="datetime"){var w=new Date(s[a].data[p][0]);w=new Date(w).getTime(),this.twoDSeriesX.push(w)}else this.twoDSeriesX.push(s[a].data[p][0]);for(var f=0;f-1&&(p=this.activeSeriesIndex);for(var w=0;w1&&arguments[1]!==void 0?arguments[1]:this.ctx,c=this.w.config,p=this.w.globals,w=new dt(d),f=c.labels.length>0?c.labels.slice():c.xaxis.categories.slice();if(p.isRangeBar=c.chart.type==="rangeBar"&&p.isBarHorizontal,p.hasXaxisGroups=c.xaxis.type==="category"&&c.xaxis.group.groups.length>0,p.hasXaxisGroups&&(p.groups=c.xaxis.group.groups),p.hasSeriesGroups=(a=s[0])===null||a===void 0?void 0:a.group,p.hasSeriesGroups){var k=[],M=E(new Set(s.map(function(N){return N.group})));s.forEach(function(N,L){var F=M.indexOf(N.group);k[F]||(k[F]=[]),k[F].push(N.name)}),p.seriesGroups=k}for(var x=function(){for(var N=0;N0&&(this.twoDSeriesX=f,p.seriesX.push(this.twoDSeriesX))),p.labels.push(this.twoDSeriesX);var $=s[I].data.map(function(N){return H.parseNumber(N)});p.series.push($)}p.seriesZ.push(this.threeDSeries),s[I].name!==void 0?p.seriesNames.push(s[I].name):p.seriesNames.push("series-"+parseInt(I+1,10)),s[I].color!==void 0?p.seriesColors.push(s[I].color):p.seriesColors.push(void 0)}return this.w}},{key:"parseDataNonAxisCharts",value:function(s){var a=this.w.globals,i=this.w.config;a.series=s.slice(),a.seriesNames=i.labels.slice();for(var d=0;d0?i.labels=a.xaxis.categories:a.labels.length>0?i.labels=a.labels.slice():this.fallbackToCategory?(i.labels=i.labels[0],i.seriesRange.length&&(i.seriesRange.map(function(d){d.forEach(function(c){i.labels.indexOf(c.x)<0&&c.x&&i.labels.push(c.x)})}),i.labels=Array.from(new Set(i.labels.map(JSON.stringify)),JSON.parse)),a.xaxis.convertedCatToNumeric&&(new gt(a).convertCatToNumericXaxis(a,this.ctx,i.seriesX[0]),this._generateExternalLabels(s))):this._generateExternalLabels(s)}},{key:"_generateExternalLabels",value:function(s){var a=this.w.globals,i=this.w.config,d=[];if(a.axisCharts){if(a.series.length>0)if(this.isFormatXY())for(var c=i.series.map(function(x,I){return x.data.filter(function($,N,L){return L.findIndex(function(F){return F.x===$.x})===N})}),p=c.reduce(function(x,I,$,N){return N[x].length>I.length?x:$},0),w=0;w4&&arguments[4]!==void 0?arguments[4]:[],p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"12px",w=!(arguments.length>6&&arguments[6]!==void 0)||arguments[6],f=this.w,k=s[d]===void 0?"":s[d],M=k,x=f.globals.xLabelFormatter,I=f.config.xaxis.labels.formatter,$=!1,N=new Ct(this.ctx),L=k;w&&(M=N.xLabelFormat(x,k,L,{i:d,dateFormatter:new dt(this.ctx).formatDate,w:f}),I!==void 0&&(M=I(k,s[d],{i:d,dateFormatter:new dt(this.ctx).formatDate,w:f})));var F,V;a.length>0?(F=a[d].unit,V=null,a.forEach(function(j){j.unit==="month"?V="year":j.unit==="day"?V="month":j.unit==="hour"?V="day":j.unit==="minute"&&(V="hour")}),$=V===F,i=a[d].position,M=a[d].value):f.config.xaxis.type==="datetime"&&I===void 0&&(M=""),M===void 0&&(M=""),M=Array.isArray(M)?M:M.toString();var Z=new _(this.ctx),m={};m=f.globals.rotateXLabels&&w?Z.getTextRects(M,parseInt(p,10),null,"rotate(".concat(f.config.xaxis.labels.rotate," 0 0)"),!1):Z.getTextRects(M,parseInt(p,10));var y=!f.config.xaxis.labels.showDuplicates&&this.ctx.timeScale;return!Array.isArray(M)&&(M.indexOf("NaN")===0||M.toLowerCase().indexOf("invalid")===0||M.toLowerCase().indexOf("infinity")>=0||c.indexOf(M)>=0&&y)&&(M=""),{x:i,text:M,textRect:m,isBold:$}}},{key:"checkLabelBasedOnTickamount",value:function(s,a,i){var d=this.w,c=d.config.xaxis.tickAmount;return c==="dataPoints"&&(c=Math.round(d.globals.gridWidth/120)),c>i||s%Math.round(i/(c+1))==0||(a.text=""),a}},{key:"checkForOverflowingLabels",value:function(s,a,i,d,c){var p=this.w;if(s===0&&p.globals.skipFirstTimelinelabel&&(a.text=""),s===i-1&&p.globals.skipLastTimelinelabel&&(a.text=""),p.config.xaxis.labels.hideOverlappingLabels&&d.length>0){var w=c[c.length-1];a.x0){f.config.yaxis[c].opposite===!0&&(s+=d.width);for(var x=a;x>=0;x--){var I=M+a/10+f.config.yaxis[c].labels.offsetY-1;f.globals.isBarHorizontal&&(I=p*x),f.config.chart.type==="heatmap"&&(I+=p/2);var $=k.drawLine(s+i.offsetX-d.width+d.offsetX,I+d.offsetY,s+i.offsetX+d.offsetX,I+d.offsetY,d.color);w.add($),M+=p}}}}]),T}(),Nt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"scaleSvgNode",value:function(s,a){var i=parseFloat(s.getAttributeNS(null,"width")),d=parseFloat(s.getAttributeNS(null,"height"));s.setAttributeNS(null,"width",i*a),s.setAttributeNS(null,"height",d*a),s.setAttributeNS(null,"viewBox","0 0 "+i+" "+d)}},{key:"fixSvgStringForIe11",value:function(s){if(!H.isIE11())return s.replace(/ /g," ");var a=0,i=s.replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g,function(d){return++a===2?'xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev"':d});return i=(i=i.replace(/xmlns:NS\d+=""/g,"")).replace(/NS\d+:(\w+:\w+=")/g,"$1")}},{key:"getSvgString",value:function(s){s==null&&(s=1);var a=this.w.globals.dom.Paper.svg();if(s!==1){var i=this.w.globals.dom.Paper.node.cloneNode(!0);this.scaleSvgNode(i,s),a=new XMLSerializer().serializeToString(i)}return this.fixSvgStringForIe11(a)}},{key:"cleanup",value:function(){var s=this.w,a=s.globals.dom.baseEl.getElementsByClassName("apexcharts-xcrosshairs"),i=s.globals.dom.baseEl.getElementsByClassName("apexcharts-ycrosshairs"),d=s.globals.dom.baseEl.querySelectorAll(".apexcharts-zoom-rect, .apexcharts-selection-rect");Array.prototype.forEach.call(d,function(c){c.setAttribute("width",0)}),a&&a[0]&&(a[0].setAttribute("x",-500),a[0].setAttribute("x1",-500),a[0].setAttribute("x2",-500)),i&&i[0]&&(i[0].setAttribute("y",-100),i[0].setAttribute("y1",-100),i[0].setAttribute("y2",-100))}},{key:"svgUrl",value:function(){this.cleanup();var s=this.getSvgString(),a=new Blob([s],{type:"image/svg+xml;charset=utf-8"});return URL.createObjectURL(a)}},{key:"dataURI",value:function(s){var a=this;return new Promise(function(i){var d=a.w,c=s?s.scale||s.width/d.globals.svgWidth:1;a.cleanup();var p=document.createElement("canvas");p.width=d.globals.svgWidth*c,p.height=parseInt(d.globals.dom.elWrap.style.height,10)*c;var w=d.config.chart.background==="transparent"?"#fff":d.config.chart.background,f=p.getContext("2d");f.fillStyle=w,f.fillRect(0,0,p.width*c,p.height*c);var k=a.getSvgString(c);if(window.canvg&&H.isIE11()){var M=window.canvg.Canvg.fromString(f,k,{ignoreClear:!0,ignoreDimensions:!0});M.start();var x=p.msToBlob();M.stop(),i({blob:x})}else{var I="data:image/svg+xml,"+encodeURIComponent(k),$=new Image;$.crossOrigin="anonymous",$.onload=function(){if(f.drawImage($,0,0),p.msToBlob){var N=p.msToBlob();i({blob:N})}else{var L=p.toDataURL("image/png");i({imgURI:L})}},$.src=I}})}},{key:"exportToSVG",value:function(){this.triggerDownload(this.svgUrl(),this.w.config.chart.toolbar.export.svg.filename,".svg")}},{key:"exportToPng",value:function(){var s=this;this.dataURI().then(function(a){var i=a.imgURI,d=a.blob;d?navigator.msSaveOrOpenBlob(d,s.w.globals.chartID+".png"):s.triggerDownload(i,s.w.config.chart.toolbar.export.png.filename,".png")})}},{key:"exportToCSV",value:function(s){var a=this,i=s.series,d=s.fileName,c=s.columnDelimiter,p=c===void 0?",":c,w=s.lineDelimiter,f=w===void 0?` +`:w,k=this.w;i||(i=k.config.series);var M=[],x=[],I="",$=k.globals.series.map(function(m,y){return k.globals.collapsedSeriesIndices.indexOf(y)===-1?m:[]}),N=Math.max.apply(Math,E(i.map(function(m){return m.data?m.data.length:0}))),L=new pt(this.ctx),F=new Ht(this.ctx),V=function(m){var y="";if(k.globals.axisCharts){if(k.config.xaxis.type==="category"||k.config.xaxis.convertedCatToNumeric)if(k.globals.isBarHorizontal){var j=k.globals.yLabelFormatters[0],R=new ut(a.ctx).getActiveConfigSeriesIndex();y=j(k.globals.labels[m],{seriesIndex:R,dataPointIndex:m,w:k})}else y=F.getLabel(k.globals.labels,k.globals.timescaleLabels,0,m).text;k.config.xaxis.type==="datetime"&&(k.config.xaxis.categories.length?y=k.config.xaxis.categories[m]:k.config.labels.length&&(y=k.config.labels[m]))}else y=k.config.labels[m];return Array.isArray(y)&&(y=y.join(" ")),H.isNumber(y)?y:y.split(p).join("")},Z=function(m,y){if(M.length&&y===0&&x.push(M.join(p)),m.data){m.data=m.data.length&&m.data||E(Array(N)).map(function(){return""});for(var j=0;j=10?k.config.chart.toolbar.export.csv.dateFormatter(R):H.isNumber(R)?R:R.split(p).join("")));for(var K=0;K0&&!i.globals.isBarHorizontal&&(this.xaxisLabels=i.globals.timescaleLabels.slice()),i.config.xaxis.overwriteCategories&&(this.xaxisLabels=i.config.xaxis.overwriteCategories),this.drawnLabels=[],this.drawnLabelsRects=[],i.config.xaxis.position==="top"?this.offY=0:this.offY=i.globals.gridHeight+1,this.offY=this.offY+i.config.xaxis.axisBorder.offsetY,this.isCategoryBarHorizontal=i.config.chart.type==="bar"&&i.config.plotOptions.bar.horizontal,this.xaxisFontSize=i.config.xaxis.labels.style.fontSize,this.xaxisFontFamily=i.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=i.config.xaxis.labels.style.colors,this.xaxisBorderWidth=i.config.xaxis.axisBorder.width,this.isCategoryBarHorizontal&&(this.xaxisBorderWidth=i.config.yaxis[0].axisBorder.width.toString()),this.xaxisBorderWidth.indexOf("%")>-1?this.xaxisBorderWidth=i.globals.gridWidth*parseInt(this.xaxisBorderWidth,10)/100:this.xaxisBorderWidth=parseInt(this.xaxisBorderWidth,10),this.xaxisBorderHeight=i.config.xaxis.axisBorder.height,this.yaxis=i.config.yaxis[0]}return b(T,[{key:"drawXaxis",value:function(){var s=this.w,a=new _(this.ctx),i=a.group({class:"apexcharts-xaxis",transform:"translate(".concat(s.config.xaxis.offsetX,", ").concat(s.config.xaxis.offsetY,")")}),d=a.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(s.globals.translateXAxisX,", ").concat(s.globals.translateXAxisY,")")});i.add(d);for(var c=[],p=0;p6&&arguments[6]!==void 0?arguments[6]:{},M=[],x=[],I=this.w,$=k.xaxisFontSize||this.xaxisFontSize,N=k.xaxisFontFamily||this.xaxisFontFamily,L=k.xaxisForeColors||this.xaxisForeColors,F=k.fontWeight||I.config.xaxis.labels.style.fontWeight,V=k.cssClass||I.config.xaxis.labels.style.cssClass,Z=I.globals.padHorizontal,m=d.length,y=I.config.xaxis.type==="category"?I.globals.dataPoints:m;if(y===0&&m>y&&(y=m),c){var j=y>1?y-1:y;w=I.globals.gridWidth/j,Z=Z+p(0,w)/2+I.config.xaxis.labels.offsetX}else w=I.globals.gridWidth/y,Z=Z+p(0,w)+I.config.xaxis.labels.offsetX;for(var R=function(Q){var ot=Z-p(Q,w)/2+I.config.xaxis.labels.offsetX;Q===0&&m===1&&w/2===Z&&y===1&&(ot=I.globals.gridWidth/2);var it=f.axesUtils.getLabel(d,I.globals.timescaleLabels,ot,Q,M,$,s),vt=28;if(I.globals.rotateXLabels&&s&&(vt=22),I.config.xaxis.title.text&&I.config.xaxis.position==="top"&&(vt+=parseFloat(I.config.xaxis.title.style.fontSize)+2),s||(vt=vt+parseFloat($)+(I.globals.xAxisLabelsHeight-I.globals.xAxisGroupLabelsHeight)+(I.globals.rotateXLabels?10:0)),it=I.config.xaxis.tickAmount!==void 0&&I.config.xaxis.tickAmount!=="dataPoints"&&I.config.xaxis.type!=="datetime"?f.axesUtils.checkLabelBasedOnTickamount(Q,it,m):f.axesUtils.checkForOverflowingLabels(Q,it,m,M,x),I.config.xaxis.labels.show){var zt=a.drawText({x:it.x,y:f.offY+I.config.xaxis.labels.offsetY+vt-(I.config.xaxis.position==="top"?I.globals.xAxisHeight+I.config.xaxis.axisTicks.height-2:0),text:it.text,textAnchor:"middle",fontWeight:it.isBold?600:F,fontSize:$,fontFamily:N,foreColor:Array.isArray(L)?s&&I.config.xaxis.convertedCatToNumeric?L[I.globals.minX+Q-1]:L[Q]:L,isPlainText:!1,cssClass:(s?"apexcharts-xaxis-label ":"apexcharts-xaxis-group-label ")+V});if(i.add(zt),zt.on("click",function(Et){if(typeof I.config.chart.events.xAxisLabelClick=="function"){var qt=Object.assign({},I,{labelIndex:Q});I.config.chart.events.xAxisLabelClick(Et,f.ctx,qt)}}),s){var Mt=document.createElementNS(I.globals.SVGNS,"title");Mt.textContent=Array.isArray(it.text)?it.text.join(" "):it.text,zt.node.appendChild(Mt),it.text!==""&&(M.push(it.text),x.push(it))}}Qd.globals.gridWidth)){var p=this.offY+d.config.xaxis.axisTicks.offsetY;if(a=a+p+d.config.xaxis.axisTicks.height,d.config.xaxis.position==="top"&&(a=p-d.config.xaxis.axisTicks.height),d.config.xaxis.axisTicks.show){var w=new _(this.ctx).drawLine(s+d.config.xaxis.axisTicks.offsetX,p+d.config.xaxis.offsetY,c+d.config.xaxis.axisTicks.offsetX,a+d.config.xaxis.offsetY,d.config.xaxis.axisTicks.color);i.add(w),w.node.classList.add("apexcharts-xaxis-tick")}}}},{key:"getXAxisTicksPositions",value:function(){var s=this.w,a=[],i=this.xaxisLabels.length,d=s.globals.padHorizontal;if(s.globals.timescaleLabels.length>0)for(var c=0;c0){var M=c[c.length-1].getBBox(),x=c[0].getBBox();M.x<-20&&c[c.length-1].parentNode.removeChild(c[c.length-1]),x.x+x.width>s.globals.gridWidth&&!s.globals.isBarHorizontal&&c[0].parentNode.removeChild(c[0]);for(var I=0;I0&&(this.xaxisLabels=a.globals.timescaleLabels.slice())}return b(T,[{key:"drawGridArea",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=this.w,i=new _(this.ctx);s===null&&(s=i.group({class:"apexcharts-grid"}));var d=i.drawLine(a.globals.padHorizontal,1,a.globals.padHorizontal,a.globals.gridHeight,"transparent"),c=i.drawLine(a.globals.padHorizontal,a.globals.gridHeight,a.globals.gridWidth,a.globals.gridHeight,"transparent");return s.add(c),s.add(d),s}},{key:"drawGrid",value:function(){var s=null;return this.w.globals.axisCharts&&(s=this.renderGrid(),this.drawGridArea(s.el)),s}},{key:"createGridMask",value:function(){var s=this.w,a=s.globals,i=new _(this.ctx),d=Array.isArray(s.config.stroke.width)?0:s.config.stroke.width;if(Array.isArray(s.config.stroke.width)){var c=0;s.config.stroke.width.forEach(function(x){c=Math.max(c,x)}),d=c}a.dom.elGridRectMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elGridRectMask.setAttribute("id","gridRectMask".concat(a.cuid)),a.dom.elGridRectMarkerMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elGridRectMarkerMask.setAttribute("id","gridRectMarkerMask".concat(a.cuid)),a.dom.elForecastMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elForecastMask.setAttribute("id","forecastMask".concat(a.cuid)),a.dom.elNonForecastMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elNonForecastMask.setAttribute("id","nonForecastMask".concat(a.cuid));var p=s.config.chart.type,w=0,f=0;(p==="bar"||p==="rangeBar"||p==="candlestick"||p==="boxPlot"||s.globals.comboBarCount>0)&&s.globals.isXNumeric&&!s.globals.isBarHorizontal&&(w=s.config.grid.padding.left,f=s.config.grid.padding.right,a.barPadForNumericAxis>w&&(w=a.barPadForNumericAxis,f=a.barPadForNumericAxis)),a.dom.elGridRect=i.drawRect(-d/2-w-2,-d/2,a.gridWidth+d+f+w+4,a.gridHeight+d,0,"#fff");var k=s.globals.markers.largestSize+1;a.dom.elGridRectMarker=i.drawRect(2*-k,2*-k,a.gridWidth+4*k,a.gridHeight+4*k,0,"#fff"),a.dom.elGridRectMask.appendChild(a.dom.elGridRect.node),a.dom.elGridRectMarkerMask.appendChild(a.dom.elGridRectMarker.node);var M=a.dom.baseEl.querySelector("defs");M.appendChild(a.dom.elGridRectMask),M.appendChild(a.dom.elForecastMask),M.appendChild(a.dom.elNonForecastMask),M.appendChild(a.dom.elGridRectMarkerMask)}},{key:"_drawGridLines",value:function(s){var a=s.i,i=s.x1,d=s.y1,c=s.x2,p=s.y2,w=s.xCount,f=s.parent,k=this.w;if(!(a===0&&k.globals.skipFirstTimelinelabel||a===w-1&&k.globals.skipLastTimelinelabel&&!k.config.xaxis.labels.formatter||k.config.chart.type==="radar")){k.config.grid.xaxis.lines.show&&this._drawGridLine({i:a,x1:i,y1:d,x2:c,y2:p,xCount:w,parent:f});var M=0;if(k.globals.hasXaxisGroups&&k.config.xaxis.tickPlacement==="between"){var x=k.globals.groups;if(x){for(var I=0,$=0;I2));c++);return!s.globals.isBarHorizontal||this.isRangeBar?(i=this.xaxisLabels.length,this.isRangeBar&&(i--,d=s.globals.labels.length,s.config.xaxis.tickAmount&&s.config.xaxis.labels.formatter&&(i=s.config.xaxis.tickAmount)),this._drawXYLines({xCount:i,tickAmount:d})):(i=d,d=s.globals.xTickAmount,this._drawInvertedXYLines({xCount:i,tickAmount:d})),this.drawGridBands(i,d),{el:this.elg,elGridBorders:this.elGridBorders,xAxisTickWidth:s.globals.gridWidth/i}}},{key:"drawGridBands",value:function(s,a){var i=this.w;if(i.config.grid.row.colors!==void 0&&i.config.grid.row.colors.length>0)for(var d=0,c=i.globals.gridHeight/a,p=i.globals.gridWidth,w=0,f=0;w=i.config.grid.row.colors.length&&(f=0),this._drawGridBandRect({c:f,x1:0,y1:d,x2:p,y2:c,type:"row"}),d+=i.globals.gridHeight/a;if(i.config.grid.column.colors!==void 0&&i.config.grid.column.colors.length>0)for(var k=i.globals.isBarHorizontal||i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric?s:s-1,M=i.globals.padHorizontal,x=i.globals.padHorizontal+i.globals.gridWidth/k,I=i.globals.gridHeight,$=0,N=0;$=i.config.grid.column.colors.length&&(N=0),this._drawGridBandRect({c:N,x1:M,y1:0,x2:x,y2:I,type:"column"}),M+=i.globals.gridWidth/k}}]),T}(),J=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"niceScale",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,c=arguments.length>4?arguments[4]:void 0,p=this.w,w=Math.abs(a-s);if((i=this._adjustTicksForSmallRange(i,d,w))==="dataPoints"&&(i=p.globals.dataPoints-1),s===Number.MIN_VALUE&&a===0||!H.isNumber(s)&&!H.isNumber(a)||s===Number.MIN_VALUE&&a===-Number.MAX_VALUE)return s=0,a=i,this.linearScale(s,a,i);s>a?(console.warn("axis.min cannot be greater than axis.max"),a=s+.1):s===a&&(s=s===0?0:s-.5,a=a===0?2:a+.5);var f=[];w<1&&c&&(p.config.chart.type==="candlestick"||p.config.series[d].type==="candlestick"||p.config.chart.type==="boxPlot"||p.config.series[d].type==="boxPlot"||p.globals.isRangeData)&&(a*=1.01);var k=i+1;k<2?k=2:k>2&&(k-=2);var M=w/k,x=Math.floor(H.log10(M)),I=Math.pow(10,x),$=Math.round(M/I);$<1&&($=1);var N=$*I,L=N*Math.floor(s/N),F=N*Math.ceil(a/N),V=L;if(c&&w>2){for(;f.push(H.stripNumber(V,7)),!((V+=N)>F););return{result:f,niceMin:f[0],niceMax:f[f.length-1]}}var Z=s;(f=[]).push(H.stripNumber(Z,7));for(var m=Math.abs(a-s)/i,y=0;y<=i;y++)Z+=m,f.push(Z);return f[f.length-2]>=a&&f.pop(),{result:f,niceMin:f[0],niceMax:f[f.length-1]}}},{key:"linearScale",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,d=arguments.length>3?arguments[3]:void 0,c=Math.abs(a-s);(i=this._adjustTicksForSmallRange(i,d,c))==="dataPoints"&&(i=this.w.globals.dataPoints-1);var p=c/i;i===Number.MAX_VALUE&&(i=10,p=1);for(var w=[],f=s;i>=0;)w.push(f),f+=p,i-=1;return{result:w,niceMin:w[0],niceMax:w[w.length-1]}}},{key:"logarithmicScaleNice",value:function(s,a,i){a<=0&&(a=Math.max(s,i)),s<=0&&(s=Math.min(a,i));for(var d=[],c=Math.ceil(Math.log(a)/Math.log(i)+1),p=Math.floor(Math.log(s)/Math.log(i));p5)d.allSeriesCollapsed=!1,d.yAxisScale[s]=this.logarithmicScale(a,i,p.logBase),d.yAxisScale[s]=p.forceNiceScale?this.logarithmicScaleNice(a,i,p.logBase):this.logarithmicScale(a,i,p.logBase);else if(i!==-Number.MAX_VALUE&&H.isNumber(i))if(d.allSeriesCollapsed=!1,p.min===void 0&&p.max===void 0||p.forceNiceScale){var f=c.yaxis[s].max===void 0&&c.yaxis[s].min===void 0||c.yaxis[s].forceNiceScale;d.yAxisScale[s]=this.niceScale(a,i,p.tickAmount?p.tickAmount:w<5&&w>1?w+1:5,s,f)}else d.yAxisScale[s]=this.linearScale(a,i,p.tickAmount,s);else d.yAxisScale[s]=this.linearScale(0,5,5)}},{key:"setXScale",value:function(s,a){var i=this.w,d=i.globals,c=i.config.xaxis,p=Math.abs(a-s);return a!==-Number.MAX_VALUE&&H.isNumber(a)?d.xAxisScale=this.linearScale(s,a,c.tickAmount?c.tickAmount:p<5&&p>1?p+1:5,0):d.xAxisScale=this.linearScale(0,5,5),d.xAxisScale}},{key:"setMultipleYScales",value:function(){var s=this,a=this.w.globals,i=this.w.config,d=a.minYArr.concat([]),c=a.maxYArr.concat([]),p=[];i.yaxis.forEach(function(w,f){var k=f;i.series.forEach(function(I,$){I.name===w.seriesName&&(k=$,f!==$?p.push({index:$,similarIndex:f,alreadyExists:!0}):p.push({index:$}))});var M=d[k],x=c[k];s.setYScaleForIndex(f,M,x)}),this.sameScaleInMultipleAxes(d,c,p)}},{key:"sameScaleInMultipleAxes",value:function(s,a,i){var d=this,c=this.w.config,p=this.w.globals,w=[];i.forEach(function(L){L.alreadyExists&&(w[L.index]===void 0&&(w[L.index]=[]),w[L.index].push(L.index),w[L.index].push(L.similarIndex))}),p.yAxisSameScaleIndices=w,w.forEach(function(L,F){w.forEach(function(V,Z){var m,y;F!==Z&&(m=L,y=V,m.filter(function(j){return y.indexOf(j)!==-1})).length>0&&(w[F]=w[F].concat(w[Z]))})});var f=w.map(function(L){return L.filter(function(F,V){return L.indexOf(F)===V})}).map(function(L){return L.sort()});w=w.filter(function(L){return!!L});var k=f.slice(),M=k.map(function(L){return JSON.stringify(L)});k=k.filter(function(L,F){return M.indexOf(JSON.stringify(L))===F});var x=[],I=[];s.forEach(function(L,F){k.forEach(function(V,Z){V.indexOf(F)>-1&&(x[Z]===void 0&&(x[Z]=[],I[Z]=[]),x[Z].push({key:F,value:L}),I[Z].push({key:F,value:a[F]}))})});var $=Array.apply(null,Array(k.length)).map(Number.prototype.valueOf,Number.MIN_VALUE),N=Array.apply(null,Array(k.length)).map(Number.prototype.valueOf,-Number.MAX_VALUE);x.forEach(function(L,F){L.forEach(function(V,Z){$[F]=Math.min(V.value,$[F])})}),I.forEach(function(L,F){L.forEach(function(V,Z){N[F]=Math.max(V.value,N[F])})}),s.forEach(function(L,F){I.forEach(function(V,Z){var m=$[Z],y=N[Z];c.chart.stacked&&(y=0,V.forEach(function(j,R){j.value!==-Number.MAX_VALUE&&(y+=j.value),m!==Number.MIN_VALUE&&(m+=x[Z][R].value)})),V.forEach(function(j,R){V[R].key===F&&(c.yaxis[F].min!==void 0&&(m=typeof c.yaxis[F].min=="function"?c.yaxis[F].min(p.minY):c.yaxis[F].min),c.yaxis[F].max!==void 0&&(y=typeof c.yaxis[F].max=="function"?c.yaxis[F].max(p.maxY):c.yaxis[F].max),d.setYScaleForIndex(F,m,y))})})})}},{key:"autoScaleY",value:function(s,a,i){s||(s=this);var d=s.w;if(d.globals.isMultipleYAxis||d.globals.collapsedSeries.length)return console.warn("autoScaleYaxis is not supported in a multi-yaxis chart."),a;var c=d.globals.seriesX[0],p=d.config.chart.stacked;return a.forEach(function(w,f){for(var k=0,M=0;M=i.xaxis.min){k=M;break}var x,I,$=d.globals.minYArr[f],N=d.globals.maxYArr[f],L=d.globals.stackedSeriesTotals;d.globals.series.forEach(function(F,V){var Z=F[k];p?(Z=L[k],x=I=Z,L.forEach(function(m,y){c[y]<=i.xaxis.max&&c[y]>=i.xaxis.min&&(m>I&&m!==null&&(I=m),F[y]=i.xaxis.min){var j=m,R=m;d.globals.series.forEach(function(K,Q){m!==null&&(j=Math.min(K[y],j),R=Math.max(K[y],R))}),R>I&&R!==null&&(I=R),j$&&(x=$),a.length>1?(a[V].min=w.min===void 0?x:w.min,a[V].max=w.max===void 0?I:w.max):(a[0].min=w.min===void 0?x:w.min,a[0].max=w.max===void 0?I:w.max)})}),a}}]),T}(),lt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.scales=new J(s)}return b(T,[{key:"init",value:function(){this.setYRange(),this.setXRange(),this.setZRange()}},{key:"getMinYMaxY",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:-Number.MAX_VALUE,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,c=this.w.config,p=this.w.globals,w=-Number.MAX_VALUE,f=Number.MIN_VALUE;d===null&&(d=s+1);var k=p.series,M=k,x=k;c.chart.type==="candlestick"?(M=p.seriesCandleL,x=p.seriesCandleH):c.chart.type==="boxPlot"?(M=p.seriesCandleO,x=p.seriesCandleC):p.isRangeData&&(M=p.seriesRangeStart,x=p.seriesRangeEnd);for(var I=s;IM[I][$]&&M[I][$]<0&&(f=M[I][$])):p.hasNullValues=!0}}return c.chart.type==="rangeBar"&&p.seriesRangeStart.length&&p.isBarHorizontal&&(f=a),c.chart.type==="bar"&&(f<0&&w<0&&(w=0),f===Number.MIN_VALUE&&(f=0)),{minY:f,maxY:w,lowestY:a,highestY:i}}},{key:"setYRange",value:function(){var s=this.w.globals,a=this.w.config;s.maxY=-Number.MAX_VALUE,s.minY=Number.MIN_VALUE;var i=Number.MAX_VALUE;if(s.isMultipleYAxis)for(var d=0;d=0&&i<=10||a.yaxis[0].min!==void 0||a.yaxis[0].max!==void 0)&&(w=0),s.minY=i-5*w/100,i>0&&s.minY<0&&(s.minY=0),s.maxY=s.maxY+5*w/100}return a.yaxis.forEach(function(f,k){f.max!==void 0&&(typeof f.max=="number"?s.maxYArr[k]=f.max:typeof f.max=="function"&&(s.maxYArr[k]=f.max(s.isMultipleYAxis?s.maxYArr[k]:s.maxY)),s.maxY=s.maxYArr[k]),f.min!==void 0&&(typeof f.min=="number"?s.minYArr[k]=f.min:typeof f.min=="function"&&(s.minYArr[k]=f.min(s.isMultipleYAxis?s.minYArr[k]===Number.MIN_VALUE?0:s.minYArr[k]:s.minY)),s.minY=s.minYArr[k])}),s.isBarHorizontal&&["min","max"].forEach(function(f){a.xaxis[f]!==void 0&&typeof a.xaxis[f]=="number"&&(f==="min"?s.minY=a.xaxis[f]:s.maxY=a.xaxis[f])}),s.isMultipleYAxis?(this.scales.setMultipleYScales(),s.minY=i,s.yAxisScale.forEach(function(f,k){s.minYArr[k]=f.niceMin,s.maxYArr[k]=f.niceMax})):(this.scales.setYScaleForIndex(0,s.minY,s.maxY),s.minY=s.yAxisScale[0].niceMin,s.maxY=s.yAxisScale[0].niceMax,s.minYArr[0]=s.yAxisScale[0].niceMin,s.maxYArr[0]=s.yAxisScale[0].niceMax),{minY:s.minY,maxY:s.maxY,minYArr:s.minYArr,maxYArr:s.maxYArr,yAxisScale:s.yAxisScale}}},{key:"setXRange",value:function(){var s=this.w.globals,a=this.w.config,i=a.xaxis.type==="numeric"||a.xaxis.type==="datetime"||a.xaxis.type==="category"&&!s.noLabelsProvided||s.noLabelsProvided||s.isXNumeric;if(s.isXNumeric&&function(){for(var w=0;ws.dataPoints&&s.dataPoints!==0&&(d=s.dataPoints-1)):a.xaxis.tickAmount==="dataPoints"?(s.series.length>1&&(d=s.series[s.maxValsInArrayIndex].length-1),s.isXNumeric&&(d=s.maxX-s.minX-1)):d=a.xaxis.tickAmount,s.xTickAmount=d,a.xaxis.max!==void 0&&typeof a.xaxis.max=="number"&&(s.maxX=a.xaxis.max),a.xaxis.min!==void 0&&typeof a.xaxis.min=="number"&&(s.minX=a.xaxis.min),a.xaxis.range!==void 0&&(s.minX=s.maxX-a.xaxis.range),s.minX!==Number.MAX_VALUE&&s.maxX!==-Number.MAX_VALUE)if(a.xaxis.convertedCatToNumeric&&!s.dataFormatXNumeric){for(var c=[],p=s.minX-1;p0&&(s.xAxisScale=this.scales.linearScale(1,s.labels.length,d-1),s.seriesX=s.labels.slice());i&&(s.labels=s.xAxisScale.result.slice())}return s.isBarHorizontal&&s.labels.length&&(s.xTickAmount=s.labels.length),this._handleSingleDataPoint(),this._getMinXDiff(),{minX:s.minX,maxX:s.maxX}}},{key:"setZRange",value:function(){var s=this.w.globals;if(s.isDataXYZ){for(var a=0;a0){var w=c-d[p-1];w>0&&(s.minXDiff=Math.min(w,s.minXDiff))}}),s.dataPoints!==1&&s.minXDiff!==Number.MAX_VALUE||(s.minXDiff=.5)})}},{key:"_setStackedMinMax",value:function(){var s=this,a=this.w.globals;if(a.series.length){var i=a.seriesGroups;i.length||(i=[this.w.config.series.map(function(p){return p.name})]);var d={},c={};i.forEach(function(p){d[p]=[],c[p]=[],s.w.config.series.map(function(w,f){return p.indexOf(w.name)>-1?f:null}).filter(function(w){return w!==null}).forEach(function(w){for(var f=0;f0?d[p][f]+=parseFloat(a.series[w][f])+1e-4:c[p][f]+=parseFloat(a.series[w][f]))})}),Object.entries(d).forEach(function(p){var w=D(p,1)[0];d[w].forEach(function(f,k){a.maxY=Math.max(a.maxY,d[w][k]),a.minY=Math.min(a.minY,c[w][k])})})}}}]),T}(),at=function(){function T(s,a){g(this,T),this.ctx=s,this.elgrid=a,this.w=s.w;var i=this.w;this.xaxisFontSize=i.config.xaxis.labels.style.fontSize,this.axisFontFamily=i.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=i.config.xaxis.labels.style.colors,this.isCategoryBarHorizontal=i.config.chart.type==="bar"&&i.config.plotOptions.bar.horizontal,this.xAxisoffX=0,i.config.xaxis.position==="bottom"&&(this.xAxisoffX=i.globals.gridHeight),this.drawnLabels=[],this.axesUtils=new Ht(s)}return b(T,[{key:"drawYaxis",value:function(s){var a=this,i=this.w,d=new _(this.ctx),c=i.config.yaxis[s].labels.style,p=c.fontSize,w=c.fontFamily,f=c.fontWeight,k=d.group({class:"apexcharts-yaxis",rel:s,transform:"translate("+i.globals.translateYAxisX[s]+", 0)"});if(this.axesUtils.isYAxisHidden(s))return k;var M=d.group({class:"apexcharts-yaxis-texts-g"});k.add(M);var x=i.globals.yAxisScale[s].result.length-1,I=i.globals.gridHeight/x,$=i.globals.translateY,N=i.globals.yLabelFormatters[s],L=i.globals.yAxisScale[s].result.slice();L=this.axesUtils.checkForReversedLabels(s,L);var F="";if(i.config.yaxis[s].labels.show)for(var V=function(ot){var it=L[ot];it=N(it,ot,i);var vt=i.config.yaxis[s].labels.padding;i.config.yaxis[s].opposite&&i.config.yaxis.length!==0&&(vt*=-1);var zt="end";i.config.yaxis[s].opposite&&(zt="start"),i.config.yaxis[s].labels.align==="left"?zt="start":i.config.yaxis[s].labels.align==="center"?zt="middle":i.config.yaxis[s].labels.align==="right"&&(zt="end");var Mt=a.axesUtils.getYAxisForeColor(c.colors,s),Et=d.drawText({x:vt,y:$+x/10+i.config.yaxis[s].labels.offsetY+1,text:it,textAnchor:zt,fontSize:p,fontFamily:w,fontWeight:f,maxWidth:i.config.yaxis[s].labels.maxWidth,foreColor:Array.isArray(Mt)?Mt[ot]:Mt,isPlainText:!1,cssClass:"apexcharts-yaxis-label "+c.cssClass});ot===x&&(F=Et),M.add(Et);var qt=document.createElementNS(i.globals.SVGNS,"title");if(qt.textContent=Array.isArray(it)?it.join(" "):it,Et.node.appendChild(qt),i.config.yaxis[s].labels.rotate!==0){var ae=d.rotateAroundCenter(F.node),ie=d.rotateAroundCenter(Et.node);Et.node.setAttribute("transform","rotate(".concat(i.config.yaxis[s].labels.rotate," ").concat(ae.x," ").concat(ie.y,")"))}$+=I},Z=x;Z>=0;Z--)V(Z);if(i.config.yaxis[s].title.text!==void 0){var m=d.group({class:"apexcharts-yaxis-title"}),y=0;i.config.yaxis[s].opposite&&(y=i.globals.translateYAxisX[s]);var j=d.drawText({x:y,y:i.globals.gridHeight/2+i.globals.translateY+i.config.yaxis[s].title.offsetY,text:i.config.yaxis[s].title.text,textAnchor:"end",foreColor:i.config.yaxis[s].title.style.color,fontSize:i.config.yaxis[s].title.style.fontSize,fontWeight:i.config.yaxis[s].title.style.fontWeight,fontFamily:i.config.yaxis[s].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+i.config.yaxis[s].title.style.cssClass});m.add(j),k.add(m)}var R=i.config.yaxis[s].axisBorder,K=31+R.offsetX;if(i.config.yaxis[s].opposite&&(K=-31-R.offsetX),R.show){var Q=d.drawLine(K,i.globals.translateY+R.offsetY-2,K,i.globals.gridHeight+i.globals.translateY+R.offsetY+2,R.color,0,R.width);k.add(Q)}return i.config.yaxis[s].axisTicks.show&&this.axesUtils.drawYAxisTicks(K,x,R,i.config.yaxis[s].axisTicks,s,I,k),k}},{key:"drawYaxisInversed",value:function(s){var a=this.w,i=new _(this.ctx),d=i.group({class:"apexcharts-xaxis apexcharts-yaxis-inversed"}),c=i.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(a.globals.translateXAxisX,", ").concat(a.globals.translateXAxisY,")")});d.add(c);var p=a.globals.yAxisScale[s].result.length-1,w=a.globals.gridWidth/p+.1,f=w+a.config.xaxis.labels.offsetX,k=a.globals.xLabelFormatter,M=a.globals.yAxisScale[s].result.slice(),x=a.globals.timescaleLabels;x.length>0&&(this.xaxisLabels=x.slice(),p=(M=x.slice()).length),M=this.axesUtils.checkForReversedLabels(s,M);var I=x.length;if(a.config.xaxis.labels.show)for(var $=I?0:p;I?$=0;I?$++:$--){var N=M[$];N=k(N,$,a);var L=a.globals.gridWidth+a.globals.padHorizontal-(f-w+a.config.xaxis.labels.offsetX);if(x.length){var F=this.axesUtils.getLabel(M,x,L,$,this.drawnLabels,this.xaxisFontSize);L=F.x,N=F.text,this.drawnLabels.push(F.text),$===0&&a.globals.skipFirstTimelinelabel&&(N=""),$===M.length-1&&a.globals.skipLastTimelinelabel&&(N="")}var V=i.drawText({x:L,y:this.xAxisoffX+a.config.xaxis.labels.offsetY+30-(a.config.xaxis.position==="top"?a.globals.xAxisHeight+a.config.xaxis.axisTicks.height-2:0),text:N,textAnchor:"middle",foreColor:Array.isArray(this.xaxisForeColors)?this.xaxisForeColors[s]:this.xaxisForeColors,fontSize:this.xaxisFontSize,fontFamily:this.xaxisFontFamily,fontWeight:a.config.xaxis.labels.style.fontWeight,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+a.config.xaxis.labels.style.cssClass});c.add(V),V.tspan(N);var Z=document.createElementNS(a.globals.SVGNS,"title");Z.textContent=N,V.node.appendChild(Z),f+=w}return this.inversedYAxisTitleText(d),this.inversedYAxisBorder(d),d}},{key:"inversedYAxisBorder",value:function(s){var a=this.w,i=new _(this.ctx),d=a.config.xaxis.axisBorder;if(d.show){var c=0;a.config.chart.type==="bar"&&a.globals.isXNumeric&&(c-=15);var p=i.drawLine(a.globals.padHorizontal+c+d.offsetX,this.xAxisoffX,a.globals.gridWidth,this.xAxisoffX,d.color,0,d.height);this.elgrid&&this.elgrid.elGridBorders&&a.config.grid.show?this.elgrid.elGridBorders.add(p):s.add(p)}}},{key:"inversedYAxisTitleText",value:function(s){var a=this.w,i=new _(this.ctx);if(a.config.xaxis.title.text!==void 0){var d=i.group({class:"apexcharts-xaxis-title apexcharts-yaxis-title-inversed"}),c=i.drawText({x:a.globals.gridWidth/2+a.config.xaxis.title.offsetX,y:this.xAxisoffX+parseFloat(this.xaxisFontSize)+parseFloat(a.config.xaxis.title.style.fontSize)+a.config.xaxis.title.offsetY+20,text:a.config.xaxis.title.text,textAnchor:"middle",fontSize:a.config.xaxis.title.style.fontSize,fontFamily:a.config.xaxis.title.style.fontFamily,fontWeight:a.config.xaxis.title.style.fontWeight,foreColor:a.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+a.config.xaxis.title.style.cssClass});d.add(c),s.add(d)}}},{key:"yAxisTitleRotate",value:function(s,a){var i=this.w,d=new _(this.ctx),c={width:0,height:0},p={width:0,height:0},w=i.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(s,"'] .apexcharts-yaxis-texts-g"));w!==null&&(c=w.getBoundingClientRect());var f=i.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(s,"'] .apexcharts-yaxis-title text"));if(f!==null&&(p=f.getBoundingClientRect()),f!==null){var k=this.xPaddingForYAxisTitle(s,c,p,a);f.setAttribute("x",k.xPos-(a?10:0))}if(f!==null){var M=d.rotateAroundCenter(f);f.setAttribute("transform","rotate(".concat(a?-1*i.config.yaxis[s].title.rotate:i.config.yaxis[s].title.rotate," ").concat(M.x," ").concat(M.y,")"))}}},{key:"xPaddingForYAxisTitle",value:function(s,a,i,d){var c=this.w,p=0,w=0,f=10;return c.config.yaxis[s].title.text===void 0||s<0?{xPos:w,padd:0}:(d?(w=a.width+c.config.yaxis[s].title.offsetX+i.width/2+f/2,(p+=1)===0&&(w-=f/2)):(w=-1*a.width+c.config.yaxis[s].title.offsetX+f/2+i.width/2,c.globals.isBarHorizontal&&(f=25,w=-1*a.width-c.config.yaxis[s].title.offsetX-f)),{xPos:w,padd:f})}},{key:"setYAxisXPosition",value:function(s,a){var i=this.w,d=0,c=0,p=18,w=1;i.config.yaxis.length>1&&(this.multipleYs=!0),i.config.yaxis.map(function(f,k){var M=i.globals.ignoreYAxisIndexes.indexOf(k)>-1||!f.show||f.floating||s[k].width===0,x=s[k].width+a[k].width;f.opposite?i.globals.isBarHorizontal?(c=i.globals.gridWidth+i.globals.translateX-1,i.globals.translateYAxisX[k]=c-f.labels.offsetX):(c=i.globals.gridWidth+i.globals.translateX+w,M||(w=w+x+20),i.globals.translateYAxisX[k]=c-f.labels.offsetX+20):(d=i.globals.translateX-p,M||(p=p+x+20),i.globals.translateYAxisX[k]=d+f.labels.offsetX)})}},{key:"setYAxisTextAlignments",value:function(){var s=this.w,a=s.globals.dom.baseEl.getElementsByClassName("apexcharts-yaxis");(a=H.listToArray(a)).forEach(function(i,d){var c=s.config.yaxis[d];if(c&&!c.floating&&c.labels.align!==void 0){var p=s.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(d,"'] .apexcharts-yaxis-texts-g")),w=s.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(d,"'] .apexcharts-yaxis-label"));w=H.listToArray(w);var f=p.getBoundingClientRect();c.labels.align==="left"?(w.forEach(function(k,M){k.setAttribute("text-anchor","start")}),c.opposite||p.setAttribute("transform","translate(-".concat(f.width,", 0)"))):c.labels.align==="center"?(w.forEach(function(k,M){k.setAttribute("text-anchor","middle")}),p.setAttribute("transform","translate(".concat(f.width/2*(c.opposite?1:-1),", 0)"))):c.labels.align==="right"&&(w.forEach(function(k,M){k.setAttribute("text-anchor","end")}),c.opposite&&p.setAttribute("transform","translate(".concat(f.width,", 0)")))}})}}]),T}(),ct=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.documentEvent=H.bind(this.documentEvent,this)}return b(T,[{key:"addEventListener",value:function(s,a){var i=this.w;i.globals.events.hasOwnProperty(s)?i.globals.events[s].push(a):i.globals.events[s]=[a]}},{key:"removeEventListener",value:function(s,a){var i=this.w;if(i.globals.events.hasOwnProperty(s)){var d=i.globals.events[s].indexOf(a);d!==-1&&i.globals.events[s].splice(d,1)}}},{key:"fireEvent",value:function(s,a){var i=this.w;if(i.globals.events.hasOwnProperty(s)){a&&a.length||(a=[]);for(var d=i.globals.events[s],c=d.length,p=0;p0&&(a=this.w.config.chart.locales.concat(window.Apex.chart.locales));var i=a.filter(function(c){return c.name===s})[0];if(!i)throw new Error("Wrong locale name provided. Please make sure you set the correct locale name in options");var d=H.extend(st,i);this.w.globals.locale=d.options}}]),T}(),yt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"drawAxis",value:function(s,a){var i,d,c=this,p=this.w.globals,w=this.w.config,f=new bt(this.ctx,a),k=new at(this.ctx,a);p.axisCharts&&s!=="radar"&&(p.isBarHorizontal?(d=k.drawYaxisInversed(0),i=f.drawXaxisInversed(0),p.dom.elGraphical.add(i),p.dom.elGraphical.add(d)):(i=f.drawXaxis(),p.dom.elGraphical.add(i),w.yaxis.map(function(M,x){if(p.ignoreYAxisIndexes.indexOf(x)===-1&&(d=k.drawYaxis(x),p.dom.Paper.add(d),c.w.config.grid.position==="back")){var I=p.dom.Paper.children()[1];I.remove(),p.dom.Paper.add(I)}})))}}]),T}(),Dt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"drawXCrosshairs",value:function(){var s=this.w,a=new _(this.ctx),i=new W(this.ctx),d=s.config.xaxis.crosshairs.fill.gradient,c=s.config.xaxis.crosshairs.dropShadow,p=s.config.xaxis.crosshairs.fill.type,w=d.colorFrom,f=d.colorTo,k=d.opacityFrom,M=d.opacityTo,x=d.stops,I=c.enabled,$=c.left,N=c.top,L=c.blur,F=c.color,V=c.opacity,Z=s.config.xaxis.crosshairs.fill.color;if(s.config.xaxis.crosshairs.show){p==="gradient"&&(Z=a.drawGradient("vertical",w,f,k,M,null,x,null));var m=a.drawRect();s.config.xaxis.crosshairs.width===1&&(m=a.drawLine());var y=s.globals.gridHeight;(!H.isNumber(y)||y<0)&&(y=0);var j=s.config.xaxis.crosshairs.width;(!H.isNumber(j)||j<0)&&(j=0),m.attr({class:"apexcharts-xcrosshairs",x:0,y:0,y2:y,width:j,height:y,fill:Z,filter:"none","fill-opacity":s.config.xaxis.crosshairs.opacity,stroke:s.config.xaxis.crosshairs.stroke.color,"stroke-width":s.config.xaxis.crosshairs.stroke.width,"stroke-dasharray":s.config.xaxis.crosshairs.stroke.dashArray}),I&&(m=i.dropShadow(m,{left:$,top:N,blur:L,color:F,opacity:V})),s.globals.dom.elGraphical.add(m)}}},{key:"drawYCrosshairs",value:function(){var s=this.w,a=new _(this.ctx),i=s.config.yaxis[0].crosshairs,d=s.globals.barPadForNumericAxis;if(s.config.yaxis[0].crosshairs.show){var c=a.drawLine(-d,0,s.globals.gridWidth+d,0,i.stroke.color,i.stroke.dashArray,i.stroke.width);c.attr({class:"apexcharts-ycrosshairs"}),s.globals.dom.elGraphical.add(c)}var p=a.drawLine(-d,0,s.globals.gridWidth+d,0,i.stroke.color,0,0);p.attr({class:"apexcharts-ycrosshairs-hidden"}),s.globals.dom.elGraphical.add(p)}}]),T}(),St=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"checkResponsiveConfig",value:function(s){var a=this,i=this.w,d=i.config;if(d.responsive.length!==0){var c=d.responsive.slice();c.sort(function(k,M){return k.breakpoint>M.breakpoint?1:M.breakpoint>k.breakpoint?-1:0}).reverse();var p=new It({}),w=function(){var k=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},M=c[0].breakpoint,x=window.innerWidth>0?window.innerWidth:screen.width;if(x>M){var I=tt.extendArrayProps(p,i.globals.initialConfig,i);k=H.extend(I,k),k=H.extend(i.config,k),a.overrideResponsiveOptions(k)}else for(var $=0;$0&&typeof i.config.colors[0]=="function"&&(i.globals.colors=i.config.series.map(function(N,L){var F=i.config.colors[L];return F||(F=i.config.colors[0]),typeof F=="function"?(a.isColorFn=!0,F({value:i.globals.axisCharts?i.globals.series[L][0]?i.globals.series[L][0]:0:i.globals.series[L],seriesIndex:L,dataPointIndex:L,w:i})):F}))),i.globals.seriesColors.map(function(N,L){N&&(i.globals.colors[L]=N)}),i.config.theme.monochrome.enabled){var c=[],p=i.globals.series.length;(this.isBarDistributed||this.isHeatmapDistributed)&&(p=i.globals.series[0].length*i.globals.series.length);for(var w=i.config.theme.monochrome.color,f=1/(p/i.config.theme.monochrome.shadeIntensity),k=i.config.theme.monochrome.shadeTo,M=0,x=0;x2&&arguments[2]!==void 0?arguments[2]:null,d=this.w,c=a||d.globals.series.length;if(i===null&&(i=this.isBarDistributed||this.isHeatmapDistributed||d.config.chart.type==="heatmap"&&d.config.plotOptions.heatmap.colorScale.inverse),i&&d.globals.series.length&&(c=d.globals.series[d.globals.maxValsInArrayIndex].length*d.globals.series.length),s.lengths.globals.svgWidth&&(this.dCtx.lgRect.width=s.globals.svgWidth/1.5),this.dCtx.lgRect}},{key:"getLargestStringFromMultiArr",value:function(s,a){var i=s;if(this.w.globals.isMultiLineX){var d=a.map(function(p,w){return Array.isArray(p)?p.length:1}),c=Math.max.apply(Math,E(d));i=a[d.indexOf(c)]}return i}}]),T}(),Yt=function(){function T(s){g(this,T),this.w=s.w,this.dCtx=s}return b(T,[{key:"getxAxisLabelsCoords",value:function(){var s,a=this.w,i=a.globals.labels.slice();if(a.config.xaxis.convertedCatToNumeric&&i.length===0&&(i=a.globals.categoryLabels),a.globals.timescaleLabels.length>0){var d=this.getxAxisTimeScaleLabelsCoords();s={width:d.width,height:d.height},a.globals.rotateXLabels=!1}else{this.dCtx.lgWidthForSideLegends=a.config.legend.position!=="left"&&a.config.legend.position!=="right"||a.config.legend.floating?0:this.dCtx.lgRect.width;var c=a.globals.xLabelFormatter,p=H.getLargestStringFromArr(i),w=this.dCtx.dimHelpers.getLargestStringFromMultiArr(p,i);a.globals.isBarHorizontal&&(w=p=a.globals.yAxisScale[0].result.reduce(function(N,L){return N.length>L.length?N:L},0));var f=new Ct(this.dCtx.ctx),k=p;p=f.xLabelFormat(c,p,k,{i:void 0,dateFormatter:new dt(this.dCtx.ctx).formatDate,w:a}),w=f.xLabelFormat(c,w,k,{i:void 0,dateFormatter:new dt(this.dCtx.ctx).formatDate,w:a}),(a.config.xaxis.convertedCatToNumeric&&p===void 0||String(p).trim()==="")&&(w=p="1");var M=new _(this.dCtx.ctx),x=M.getTextRects(p,a.config.xaxis.labels.style.fontSize),I=x;if(p!==w&&(I=M.getTextRects(w,a.config.xaxis.labels.style.fontSize)),(s={width:x.width>=I.width?x.width:I.width,height:x.height>=I.height?x.height:I.height}).width*i.length>a.globals.svgWidth-this.dCtx.lgWidthForSideLegends-this.dCtx.yAxisWidth-this.dCtx.gridPad.left-this.dCtx.gridPad.right&&a.config.xaxis.labels.rotate!==0||a.config.xaxis.labels.rotateAlways){if(!a.globals.isBarHorizontal){a.globals.rotateXLabels=!0;var $=function(N){return M.getTextRects(N,a.config.xaxis.labels.style.fontSize,a.config.xaxis.labels.style.fontFamily,"rotate(".concat(a.config.xaxis.labels.rotate," 0 0)"),!1)};x=$(p),p!==w&&(I=$(w)),s.height=(x.height>I.height?x.height:I.height)/1.5,s.width=x.width>I.width?x.width:I.width}}else a.globals.rotateXLabels=!1}return a.config.xaxis.labels.show||(s={width:0,height:0}),{width:s.width,height:s.height}}},{key:"getxAxisGroupLabelsCoords",value:function(){var s,a=this.w;if(!a.globals.hasXaxisGroups)return{width:0,height:0};var i,d=((s=a.config.xaxis.group.style)===null||s===void 0?void 0:s.fontSize)||a.config.xaxis.labels.style.fontSize,c=a.globals.groups.map(function(x){return x.title}),p=H.getLargestStringFromArr(c),w=this.dCtx.dimHelpers.getLargestStringFromMultiArr(p,c),f=new _(this.dCtx.ctx),k=f.getTextRects(p,d),M=k;return p!==w&&(M=f.getTextRects(w,d)),i={width:k.width>=M.width?k.width:M.width,height:k.height>=M.height?k.height:M.height},a.config.xaxis.labels.show||(i={width:0,height:0}),{width:i.width,height:i.height}}},{key:"getxAxisTitleCoords",value:function(){var s=this.w,a=0,i=0;if(s.config.xaxis.title.text!==void 0){var d=new _(this.dCtx.ctx).getTextRects(s.config.xaxis.title.text,s.config.xaxis.title.style.fontSize);a=d.width,i=d.height}return{width:a,height:i}}},{key:"getxAxisTimeScaleLabelsCoords",value:function(){var s,a=this.w;this.dCtx.timescaleLabels=a.globals.timescaleLabels.slice();var i=this.dCtx.timescaleLabels.map(function(c){return c.value}),d=i.reduce(function(c,p){return c===void 0?(console.error("You have possibly supplied invalid Date format. Please supply a valid JavaScript Date"),0):c.length>p.length?c:p},0);return 1.05*(s=new _(this.dCtx.ctx).getTextRects(d,a.config.xaxis.labels.style.fontSize)).width*i.length>a.globals.gridWidth&&a.config.xaxis.labels.rotate!==0&&(a.globals.overlappingXLabels=!0),s}},{key:"additionalPaddingXLabels",value:function(s){var a=this,i=this.w,d=i.globals,c=i.config,p=c.xaxis.type,w=s.width;d.skipLastTimelinelabel=!1,d.skipFirstTimelinelabel=!1;var f=i.config.yaxis[0].opposite&&i.globals.isBarHorizontal,k=function(M,x){c.yaxis.length>1&&function(I){return d.collapsedSeriesIndices.indexOf(I)!==-1}(x)||function(I){if(a.dCtx.timescaleLabels&&a.dCtx.timescaleLabels.length){var $=a.dCtx.timescaleLabels[0],N=a.dCtx.timescaleLabels[a.dCtx.timescaleLabels.length-1].position+w/1.75-a.dCtx.yAxisWidthRight,L=$.position-w/1.75+a.dCtx.yAxisWidthLeft,F=i.config.legend.position==="right"&&a.dCtx.lgRect.width>0?a.dCtx.lgRect.width:0;N>d.svgWidth-d.translateX-F&&(d.skipLastTimelinelabel=!0),L<-(I.show&&!I.floating||c.chart.type!=="bar"&&c.chart.type!=="candlestick"&&c.chart.type!=="rangeBar"&&c.chart.type!=="boxPlot"?10:w/1.75)&&(d.skipFirstTimelinelabel=!0)}else p==="datetime"?a.dCtx.gridPad.rightString(f.niceMax).length?x:f.niceMax,$=M(I,{seriesIndex:w,dataPointIndex:-1,w:a}),N=$;if($!==void 0&&$.length!==0||($=I),a.globals.isBarHorizontal){d=0;var L=a.globals.labels.slice();$=M($=H.getLargestStringFromArr(L),{seriesIndex:w,dataPointIndex:-1,w:a}),N=s.dCtx.dimHelpers.getLargestStringFromMultiArr($,L)}var F=new _(s.dCtx.ctx),V="rotate(".concat(p.labels.rotate," 0 0)"),Z=F.getTextRects($,p.labels.style.fontSize,p.labels.style.fontFamily,V,!1),m=Z;$!==N&&(m=F.getTextRects(N,p.labels.style.fontSize,p.labels.style.fontFamily,V,!1)),i.push({width:(k>m.width||k>Z.width?k:m.width>Z.width?m.width:Z.width)+d,height:m.height>Z.height?m.height:Z.height})}else i.push({width:0,height:0})}),i}},{key:"getyAxisTitleCoords",value:function(){var s=this,a=this.w,i=[];return a.config.yaxis.map(function(d,c){if(d.show&&d.title.text!==void 0){var p=new _(s.dCtx.ctx),w="rotate(".concat(d.title.rotate," 0 0)"),f=p.getTextRects(d.title.text,d.title.style.fontSize,d.title.style.fontFamily,w,!1);i.push({width:f.width,height:f.height})}else i.push({width:0,height:0})}),i}},{key:"getTotalYAxisWidth",value:function(){var s=this.w,a=0,i=0,d=0,c=s.globals.yAxisScale.length>1?10:0,p=new Ht(this.dCtx.ctx),w=function(f,k){var M=s.config.yaxis[k].floating,x=0;f.width>0&&!M?(x=f.width+c,function(I){return s.globals.ignoreYAxisIndexes.indexOf(I)>-1}(k)&&(x=x-f.width-c)):x=M||p.isYAxisHidden(k)?0:5,s.config.yaxis[k].opposite?d+=x:i+=x,a+=x};return s.globals.yLabelsCoords.map(function(f,k){w(f,k)}),s.globals.yTitleCoords.map(function(f,k){w(f,k)}),s.globals.isBarHorizontal&&!s.config.yaxis[0].floating&&(a=s.globals.yLabelsCoords[0].width+s.globals.yTitleCoords[0].width+15),this.dCtx.yAxisWidthLeft=i,this.dCtx.yAxisWidthRight=d,a}}]),T}(),Jt=function(){function T(s){g(this,T),this.w=s.w,this.dCtx=s}return b(T,[{key:"gridPadForColumnsInNumericAxis",value:function(s){var a=this.w;if(a.globals.noData||a.globals.allSeriesCollapsed)return 0;var i=function(M){return M==="bar"||M==="rangeBar"||M==="candlestick"||M==="boxPlot"},d=a.config.chart.type,c=0,p=i(d)?a.config.series.length:1;if(a.globals.comboBarCount>0&&(p=a.globals.comboBarCount),a.globals.collapsedSeries.forEach(function(M){i(M.type)&&(p-=1)}),a.config.chart.stacked&&(p=1),(i(d)||a.globals.comboBarCount>0)&&a.globals.isXNumeric&&!a.globals.isBarHorizontal&&p>0){var w,f,k=Math.abs(a.globals.initialMaxX-a.globals.initialMinX);k<=3&&(k=a.globals.dataPoints),w=k/s,a.globals.minXDiff&&a.globals.minXDiff/w>0&&(f=a.globals.minXDiff/w),f>s/2&&(f/=2),(c=f/p*parseInt(a.config.plotOptions.bar.columnWidth,10)/100)<1&&(c=1),c=c/(p>1?1:1.5)+5,a.globals.barPadForNumericAxis=c}return c}},{key:"gridPadFortitleSubtitle",value:function(){var s=this,a=this.w,i=a.globals,d=this.dCtx.isSparkline||!a.globals.axisCharts?0:10;["title","subtitle"].forEach(function(w){a.config[w].text!==void 0?d+=a.config[w].margin:d+=s.dCtx.isSparkline||!a.globals.axisCharts?0:5}),!a.config.legend.show||a.config.legend.position!=="bottom"||a.config.legend.floating||a.globals.axisCharts||(d+=10);var c=this.dCtx.dimHelpers.getTitleSubtitleCoords("title"),p=this.dCtx.dimHelpers.getTitleSubtitleCoords("subtitle");i.gridHeight=i.gridHeight-c.height-p.height-d,i.translateY=i.translateY+c.height+p.height+d}},{key:"setGridXPosForDualYAxis",value:function(s,a){var i=this.w,d=new Ht(this.dCtx.ctx);i.config.yaxis.map(function(c,p){i.globals.ignoreYAxisIndexes.indexOf(p)!==-1||c.floating||d.isYAxisHidden(p)||(c.opposite&&(i.globals.translateX=i.globals.translateX-(a[p].width+s[p].width)-parseInt(i.config.yaxis[p].labels.style.fontSize,10)/1.2-12),i.globals.translateX<2&&(i.globals.translateX=2))})}}]),T}(),se=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.lgRect={},this.yAxisWidth=0,this.yAxisWidthLeft=0,this.yAxisWidthRight=0,this.xAxisHeight=0,this.isSparkline=this.w.config.chart.sparkline.enabled,this.dimHelpers=new Ut(this),this.dimYAxis=new Gt(this),this.dimXAxis=new Yt(this),this.dimGrid=new Jt(this),this.lgWidthForSideLegends=0,this.gridPad=this.w.config.grid.padding,this.xPadRight=0,this.xPadLeft=0}return b(T,[{key:"plotCoords",value:function(){var s=this,a=this.w,i=a.globals;this.lgRect=this.dimHelpers.getLegendsRect(),this.isSparkline&&(a.config.markers.discrete.length>0||a.config.markers.size>0)&&Object.entries(this.gridPad).forEach(function(c){var p=D(c,2),w=p[0],f=p[1];s.gridPad[w]=Math.max(f,s.w.globals.markers.largestSize/1.5)}),i.axisCharts?this.setDimensionsForAxisCharts():this.setDimensionsForNonAxisCharts(),this.dimGrid.gridPadFortitleSubtitle(),i.gridHeight=i.gridHeight-this.gridPad.top-this.gridPad.bottom,i.gridWidth=i.gridWidth-this.gridPad.left-this.gridPad.right-this.xPadRight-this.xPadLeft;var d=this.dimGrid.gridPadForColumnsInNumericAxis(i.gridWidth);i.gridWidth=i.gridWidth-2*d,i.translateX=i.translateX+this.gridPad.left+this.xPadLeft+(d>0?d+4:0),i.translateY=i.translateY+this.gridPad.top}},{key:"setDimensionsForAxisCharts",value:function(){var s=this,a=this.w,i=a.globals,d=this.dimYAxis.getyAxisLabelsCoords(),c=this.dimYAxis.getyAxisTitleCoords();a.globals.yLabelsCoords=[],a.globals.yTitleCoords=[],a.config.yaxis.map(function($,N){a.globals.yLabelsCoords.push({width:d[N].width,index:N}),a.globals.yTitleCoords.push({width:c[N].width,index:N})}),this.yAxisWidth=this.dimYAxis.getTotalYAxisWidth();var p=this.dimXAxis.getxAxisLabelsCoords(),w=this.dimXAxis.getxAxisGroupLabelsCoords(),f=this.dimXAxis.getxAxisTitleCoords();this.conditionalChecksForAxisCoords(p,f,w),i.translateXAxisY=a.globals.rotateXLabels?this.xAxisHeight/8:-4,i.translateXAxisX=a.globals.rotateXLabels&&a.globals.isXNumeric&&a.config.xaxis.labels.rotate<=-45?-this.xAxisWidth/4:0,a.globals.isBarHorizontal&&(i.rotateXLabels=!1,i.translateXAxisY=parseInt(a.config.xaxis.labels.style.fontSize,10)/1.5*-1),i.translateXAxisY=i.translateXAxisY+a.config.xaxis.labels.offsetY,i.translateXAxisX=i.translateXAxisX+a.config.xaxis.labels.offsetX;var k=this.yAxisWidth,M=this.xAxisHeight;i.xAxisLabelsHeight=this.xAxisHeight-f.height,i.xAxisGroupLabelsHeight=i.xAxisLabelsHeight-p.height,i.xAxisLabelsWidth=this.xAxisWidth,i.xAxisHeight=this.xAxisHeight;var x=10;(a.config.chart.type==="radar"||this.isSparkline)&&(k=0,M=i.goldenPadding),this.isSparkline&&(this.lgRect={height:0,width:0}),(this.isSparkline||a.config.chart.type==="treemap")&&(k=0,M=0,x=0),this.isSparkline||this.dimXAxis.additionalPaddingXLabels(p);var I=function(){i.translateX=k,i.gridHeight=i.svgHeight-s.lgRect.height-M-(s.isSparkline||a.config.chart.type==="treemap"?0:a.globals.rotateXLabels?10:15),i.gridWidth=i.svgWidth-k};switch(a.config.xaxis.position==="top"&&(x=i.xAxisHeight-a.config.xaxis.axisTicks.height-5),a.config.legend.position){case"bottom":i.translateY=x,I();break;case"top":i.translateY=this.lgRect.height+x,I();break;case"left":i.translateY=x,i.translateX=this.lgRect.width+k,i.gridHeight=i.svgHeight-M-12,i.gridWidth=i.svgWidth-this.lgRect.width-k;break;case"right":i.translateY=x,i.translateX=k,i.gridHeight=i.svgHeight-M-12,i.gridWidth=i.svgWidth-this.lgRect.width-k-5;break;default:throw new Error("Legend position not supported")}this.dimGrid.setGridXPosForDualYAxis(c,d),new at(this.ctx).setYAxisXPosition(d,c)}},{key:"setDimensionsForNonAxisCharts",value:function(){var s=this.w,a=s.globals,i=s.config,d=0;s.config.legend.show&&!s.config.legend.floating&&(d=20);var c=i.chart.type==="pie"||i.chart.type==="polarArea"||i.chart.type==="donut"?"pie":"radialBar",p=i.plotOptions[c].offsetY,w=i.plotOptions[c].offsetX;if(!i.legend.show||i.legend.floating)return a.gridHeight=a.svgHeight-i.grid.padding.left+i.grid.padding.right,a.gridWidth=a.gridHeight,a.translateY=p,void(a.translateX=w+(a.svgWidth-a.gridWidth)/2);switch(i.legend.position){case"bottom":a.gridHeight=a.svgHeight-this.lgRect.height-a.goldenPadding,a.gridWidth=a.svgWidth,a.translateY=p-10,a.translateX=w+(a.svgWidth-a.gridWidth)/2;break;case"top":a.gridHeight=a.svgHeight-this.lgRect.height-a.goldenPadding,a.gridWidth=a.svgWidth,a.translateY=this.lgRect.height+p+10,a.translateX=w+(a.svgWidth-a.gridWidth)/2;break;case"left":a.gridWidth=a.svgWidth-this.lgRect.width-d,a.gridHeight=i.chart.height!=="auto"?a.svgHeight:a.gridWidth,a.translateY=p,a.translateX=w+this.lgRect.width+d;break;case"right":a.gridWidth=a.svgWidth-this.lgRect.width-d-5,a.gridHeight=i.chart.height!=="auto"?a.svgHeight:a.gridWidth,a.translateY=p,a.translateX=w+10;break;default:throw new Error("Legend position not supported")}}},{key:"conditionalChecksForAxisCoords",value:function(s,a,i){var d=this.w,c=d.globals.hasXaxisGroups?2:1,p=i.height+s.height+a.height,w=d.globals.isMultiLineX?1.2:d.globals.LINE_HEIGHT_RATIO,f=d.globals.rotateXLabels?22:10,k=d.globals.rotateXLabels&&d.config.legend.position==="bottom"?10:0;this.xAxisHeight=p*w+c*f+k,this.xAxisWidth=s.width,this.xAxisHeight-a.height>d.config.xaxis.labels.maxHeight&&(this.xAxisHeight=d.config.xaxis.labels.maxHeight),d.config.xaxis.labels.minHeight&&this.xAxisHeightx&&(this.yAxisWidth=x)}}]),T}(),me=function(){function T(s){g(this,T),this.w=s.w,this.lgCtx=s}return b(T,[{key:"getLegendStyles",value:function(){var s=document.createElement("style");s.setAttribute("type","text/css");var a=document.createTextNode(` + + .apexcharts-legend { + display: flex; + overflow: auto; + padding: 0 10px; + } + .apexcharts-legend.apx-legend-position-bottom, .apexcharts-legend.apx-legend-position-top { + flex-wrap: wrap + } + .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left { + flex-direction: column; + bottom: 0; + } + .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-left, .apexcharts-legend.apx-legend-position-top.apexcharts-align-left, .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left { + justify-content: flex-start; + } + .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center, .apexcharts-legend.apx-legend-position-top.apexcharts-align-center { + justify-content: center; + } + .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-right, .apexcharts-legend.apx-legend-position-top.apexcharts-align-right { + justify-content: flex-end; + } + .apexcharts-legend-series { + cursor: pointer; + line-height: normal; + } + .apexcharts-legend.apx-legend-position-bottom .apexcharts-legend-series, .apexcharts-legend.apx-legend-position-top .apexcharts-legend-series{ + display: flex; + align-items: center; + } + .apexcharts-legend-text { + position: relative; + font-size: 14px; + } + .apexcharts-legend-text *, .apexcharts-legend-marker * { + pointer-events: none; + } + .apexcharts-legend-marker { + position: relative; + display: inline-block; + cursor: pointer; + margin-right: 3px; + border-style: solid; + } + + .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series, .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series{ + display: inline-block; + } + .apexcharts-legend-series.apexcharts-no-click { + cursor: auto; + } + .apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series { + display: none !important; + } + .apexcharts-inactive-legend { + opacity: 0.45; + }`);return s.appendChild(a),s}},{key:"getLegendBBox",value:function(){var s=this.w.globals.dom.baseEl.querySelector(".apexcharts-legend").getBoundingClientRect(),a=s.width;return{clwh:s.height,clww:a}}},{key:"appendToForeignObject",value:function(){this.w.globals.dom.elLegendForeign.appendChild(this.getLegendStyles())}},{key:"toggleDataSeries",value:function(s,a){var i=this,d=this.w;if(d.globals.axisCharts||d.config.chart.type==="radialBar"){d.globals.resized=!0;var c=null,p=null;d.globals.risingSeries=[],d.globals.axisCharts?(c=d.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(s,"']")),p=parseInt(c.getAttribute("data:realIndex"),10)):(c=d.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"']")),p=parseInt(c.getAttribute("rel"),10)-1),a?[{cs:d.globals.collapsedSeries,csi:d.globals.collapsedSeriesIndices},{cs:d.globals.ancillaryCollapsedSeries,csi:d.globals.ancillaryCollapsedSeriesIndices}].forEach(function(M){i.riseCollapsedSeries(M.cs,M.csi,p)}):this.hideSeries({seriesEl:c,realIndex:p})}else{var w=d.globals.dom.Paper.select(" .apexcharts-series[rel='".concat(s+1,"'] path")),f=d.config.chart.type;if(f==="pie"||f==="polarArea"||f==="donut"){var k=d.config.plotOptions.pie.donut.labels;new _(this.lgCtx.ctx).pathMouseDown(w.members[0],null),this.lgCtx.ctx.pie.printDataLabelsInner(w.members[0].node,k)}w.fire("click")}}},{key:"hideSeries",value:function(s){var a=s.seriesEl,i=s.realIndex,d=this.w,c=H.clone(d.config.series);if(d.globals.axisCharts){var p=!1;if(d.config.yaxis[i]&&d.config.yaxis[i].show&&d.config.yaxis[i].showAlways&&(p=!0,d.globals.ancillaryCollapsedSeriesIndices.indexOf(i)<0&&(d.globals.ancillaryCollapsedSeries.push({index:i,data:c[i].data.slice(),type:a.parentNode.className.baseVal.split("-")[1]}),d.globals.ancillaryCollapsedSeriesIndices.push(i))),!p){d.globals.collapsedSeries.push({index:i,data:c[i].data.slice(),type:a.parentNode.className.baseVal.split("-")[1]}),d.globals.collapsedSeriesIndices.push(i);var w=d.globals.risingSeries.indexOf(i);d.globals.risingSeries.splice(w,1)}}else d.globals.collapsedSeries.push({index:i,data:c[i]}),d.globals.collapsedSeriesIndices.push(i);for(var f=a.childNodes,k=0;k0){for(var p=0;p-1&&(s[d].data=[])}):s.forEach(function(i,d){a.globals.collapsedSeriesIndices.indexOf(d)>-1&&(s[d]=0)}),s}}]),T}(),ue=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.onLegendClick=this.onLegendClick.bind(this),this.onLegendHovered=this.onLegendHovered.bind(this),this.isBarsDistributed=this.w.config.chart.type==="bar"&&this.w.config.plotOptions.bar.distributed&&this.w.config.series.length===1,this.legendHelpers=new me(this)}return b(T,[{key:"init",value:function(){var s=this.w,a=s.globals,i=s.config;if((i.legend.showForSingleSeries&&a.series.length===1||this.isBarsDistributed||a.series.length>1||!a.axisCharts)&&i.legend.show){for(;a.dom.elLegendWrap.firstChild;)a.dom.elLegendWrap.removeChild(a.dom.elLegendWrap.firstChild);this.drawLegends(),H.isIE11()?document.getElementsByTagName("head")[0].appendChild(this.legendHelpers.getLegendStyles()):this.legendHelpers.appendToForeignObject(),i.legend.position==="bottom"||i.legend.position==="top"?this.legendAlignHorizontal():i.legend.position!=="right"&&i.legend.position!=="left"||this.legendAlignVertical()}}},{key:"drawLegends",value:function(){var s=this,a=this.w,i=a.config.legend.fontFamily,d=a.globals.seriesNames,c=a.globals.colors.slice();if(a.config.chart.type==="heatmap"){var p=a.config.plotOptions.heatmap.colorScale.ranges;d=p.map(function(Mt){return Mt.name?Mt.name:Mt.from+" - "+Mt.to}),c=p.map(function(Mt){return Mt.color})}else this.isBarsDistributed&&(d=a.globals.labels.slice());a.config.legend.customLegendItems.length&&(d=a.config.legend.customLegendItems);for(var w=a.globals.legendFormatter,f=a.config.legend.inverseOrder,k=f?d.length-1:0;f?k>=0:k<=d.length-1;f?k--:k++){var M,x=w(d[k],{seriesIndex:k,w:a}),I=!1,$=!1;if(a.globals.collapsedSeries.length>0)for(var N=0;N0)for(var L=0;L0?k-10:0)+(M>0?M-10:0)}d.style.position="absolute",p=p+s+i.config.legend.offsetX,w=w+a+i.config.legend.offsetY,d.style.left=p+"px",d.style.top=w+"px",i.config.legend.position==="bottom"?(d.style.top="auto",d.style.bottom=5-i.config.legend.offsetY+"px"):i.config.legend.position==="right"&&(d.style.left="auto",d.style.right=25+i.config.legend.offsetX+"px"),["width","height"].forEach(function(x){d.style[x]&&(d.style[x]=parseInt(i.config.legend[x],10)+"px")})}},{key:"legendAlignHorizontal",value:function(){var s=this.w;s.globals.dom.elLegendWrap.style.right=0;var a=this.legendHelpers.getLegendBBox(),i=new se(this.ctx),d=i.dimHelpers.getTitleSubtitleCoords("title"),c=i.dimHelpers.getTitleSubtitleCoords("subtitle"),p=0;s.config.legend.position==="bottom"?p=-a.clwh/1.8:s.config.legend.position==="top"&&(p=d.height+c.height+s.config.title.margin+s.config.subtitle.margin-10),this.setLegendWrapXY(20,p)}},{key:"legendAlignVertical",value:function(){var s=this.w,a=this.legendHelpers.getLegendBBox(),i=0;s.config.legend.position==="left"&&(i=20),s.config.legend.position==="right"&&(i=s.globals.svgWidth-a.clww-10),this.setLegendWrapXY(i,20)}},{key:"onLegendHovered",value:function(s){var a=this.w,i=s.target.classList.contains("apexcharts-legend-text")||s.target.classList.contains("apexcharts-legend-marker");if(a.config.chart.type==="heatmap"||this.isBarsDistributed){if(i){var d=parseInt(s.target.getAttribute("rel"),10)-1;this.ctx.events.fireEvent("legendHover",[this.ctx,d,this.w]),new ut(this.ctx).highlightRangeInSeries(s,s.target)}}else!s.target.classList.contains("apexcharts-inactive-legend")&&i&&new ut(this.ctx).toggleSeriesOnHover(s,s.target)}},{key:"onLegendClick",value:function(s){var a=this.w;if(!a.config.legend.customLegendItems.length&&(s.target.classList.contains("apexcharts-legend-text")||s.target.classList.contains("apexcharts-legend-marker"))){var i=parseInt(s.target.getAttribute("rel"),10)-1,d=s.target.getAttribute("data:collapsed")==="true",c=this.w.config.chart.events.legendClick;typeof c=="function"&&c(this.ctx,i,this.w),this.ctx.events.fireEvent("legendClick",[this.ctx,i,this.w]);var p=this.w.config.legend.markers.onClick;typeof p=="function"&&s.target.classList.contains("apexcharts-legend-marker")&&(p(this.ctx,i,this.w),this.ctx.events.fireEvent("legendMarkerClick",[this.ctx,i,this.w])),a.config.chart.type!=="treemap"&&a.config.chart.type!=="heatmap"&&!this.isBarsDistributed&&a.config.legend.onItemClick.toggleDataSeries&&this.legendHelpers.toggleDataSeries(i,d)}}}]),T}(),Se=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w;var a=this.w;this.ev=this.w.config.chart.events,this.selectedClass="apexcharts-selected",this.localeValues=this.w.globals.locale.toolbar,this.minX=a.globals.minX,this.maxX=a.globals.maxX}return b(T,[{key:"createToolbar",value:function(){var s=this,a=this.w,i=function(){return document.createElement("div")},d=i();if(d.setAttribute("class","apexcharts-toolbar"),d.style.top=a.config.chart.toolbar.offsetY+"px",d.style.right=3-a.config.chart.toolbar.offsetX+"px",a.globals.dom.elWrap.appendChild(d),this.elZoom=i(),this.elZoomIn=i(),this.elZoomOut=i(),this.elPan=i(),this.elSelection=i(),this.elZoomReset=i(),this.elMenuIcon=i(),this.elMenu=i(),this.elCustomIcons=[],this.t=a.config.chart.toolbar.tools,Array.isArray(this.t.customIcons))for(var c=0;c + + + +`),w("zoomOut",this.elZoomOut,` + + + +`);var f=function(x){s.t[x]&&a.config.chart[x].enabled&&p.push({el:x==="zoom"?s.elZoom:s.elSelection,icon:typeof s.t[x]=="string"?s.t[x]:x==="zoom"?` + + + +`:` + + +`,title:s.localeValues[x==="zoom"?"selectionZoom":"selection"],class:a.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-".concat(x,"-icon")})};f("zoom"),f("selection"),this.t.pan&&a.config.chart.zoom.enabled&&p.push({el:this.elPan,icon:typeof this.t.pan=="string"?this.t.pan:` + + + + + + + +`,title:this.localeValues.pan,class:a.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-pan-icon"}),w("reset",this.elZoomReset,` + + +`),this.t.download&&p.push({el:this.elMenuIcon,icon:typeof this.t.download=="string"?this.t.download:'',title:this.localeValues.menu,class:"apexcharts-menu-icon"});for(var k=0;k0&&d.height>0&&this.slDraggableRect.selectize({points:"l, r",pointSize:8,pointType:"rect"}).resize({constraint:{minX:0,minY:0,maxX:i.globals.gridWidth,maxY:i.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var i=this.w,d=this.xyRatios;if(!i.globals.zoomEnabled){if(i.globals.selection!==void 0&&i.globals.selection!==null)this.drawSelectionRect(i.globals.selection);else if(i.config.chart.selection.xaxis.min!==void 0&&i.config.chart.selection.xaxis.max!==void 0){var c=(i.config.chart.selection.xaxis.min-i.globals.minX)/d.xRatio,p={x:c,y:0,width:i.globals.gridWidth-(i.globals.maxX-i.config.chart.selection.xaxis.max)/d.xRatio-c,height:i.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(p),this.makeSelectionRectDraggable(),typeof i.config.chart.events.selection=="function"&&i.config.chart.events.selection(this.ctx,{xaxis:{min:i.config.chart.selection.xaxis.min,max:i.config.chart.selection.xaxis.max},yaxis:{}})}}}},{key:"drawSelectionRect",value:function(i){var d=i.x,c=i.y,p=i.width,w=i.height,f=i.translateX,k=f===void 0?0:f,M=i.translateY,x=M===void 0?0:M,I=this.w,$=this.zoomRect,N=this.selectionRect;if(this.dragged||I.globals.selection!==null){var L={transform:"translate("+k+", "+x+")"};I.globals.zoomEnabled&&this.dragged&&(p<0&&(p=1),$.attr({x:d,y:c,width:p,height:w,fill:I.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":I.config.chart.zoom.zoomedArea.fill.opacity,stroke:I.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":I.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":I.config.chart.zoom.zoomedArea.stroke.opacity}),_.setAttrs($.node,L)),I.globals.selectionEnabled&&(N.attr({x:d,y:c,width:p>0?p:0,height:w>0?w:0,fill:I.config.chart.selection.fill.color,"fill-opacity":I.config.chart.selection.fill.opacity,stroke:I.config.chart.selection.stroke.color,"stroke-width":I.config.chart.selection.stroke.width,"stroke-dasharray":I.config.chart.selection.stroke.dashArray,"stroke-opacity":I.config.chart.selection.stroke.opacity}),_.setAttrs(N.node,L))}}},{key:"hideSelectionRect",value:function(i){i&&i.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(i){var d=i.context,c=i.zoomtype,p=this.w,w=d,f=this.gridRect.getBoundingClientRect(),k=w.startX-1,M=w.startY,x=!1,I=!1,$=w.clientX-f.left-k,N=w.clientY-f.top-M,L={};return Math.abs($+k)>p.globals.gridWidth?$=p.globals.gridWidth-k:w.clientX-f.left<0&&($=k),k>w.clientX-f.left&&(x=!0,$=Math.abs($)),M>w.clientY-f.top&&(I=!0,N=Math.abs(N)),L=c==="x"?{x:x?k-$:k,y:0,width:$,height:p.globals.gridHeight}:c==="y"?{x:0,y:I?M-N:M,width:p.globals.gridWidth,height:N}:{x:x?k-$:k,y:I?M-N:M,width:$,height:N},w.drawSelectionRect(L),w.selectionDragging("resizing"),L}},{key:"selectionDragging",value:function(i,d){var c=this,p=this.w,w=this.xyRatios,f=this.selectionRect,k=0;i==="resizing"&&(k=30);var M=function(I){return parseFloat(f.node.getAttribute(I))},x={x:M("x"),y:M("y"),width:M("width"),height:M("height")};p.globals.selection=x,typeof p.config.chart.events.selection=="function"&&p.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout(function(){var I=c.gridRect.getBoundingClientRect(),$=f.node.getBoundingClientRect(),N={xaxis:{min:p.globals.xAxisScale.niceMin+($.left-I.left)*w.xRatio,max:p.globals.xAxisScale.niceMin+($.right-I.left)*w.xRatio},yaxis:{min:p.globals.yAxisScale[0].niceMin+(I.bottom-$.bottom)*w.yRatio[0],max:p.globals.yAxisScale[0].niceMax-($.top-I.top)*w.yRatio[0]}};p.config.chart.events.selection(c.ctx,N),p.config.chart.brush.enabled&&p.config.chart.events.brushScrolled!==void 0&&p.config.chart.events.brushScrolled(c.ctx,N)},k))}},{key:"selectionDrawn",value:function(i){var d=i.context,c=i.zoomtype,p=this.w,w=d,f=this.xyRatios,k=this.ctx.toolbar;if(w.startX>w.endX){var M=w.startX;w.startX=w.endX,w.endX=M}if(w.startY>w.endY){var x=w.startY;w.startY=w.endY,w.endY=x}var I=void 0,$=void 0;p.globals.isRangeBar?(I=p.globals.yAxisScale[0].niceMin+w.startX*f.invertedYRatio,$=p.globals.yAxisScale[0].niceMin+w.endX*f.invertedYRatio):(I=p.globals.xAxisScale.niceMin+w.startX*f.xRatio,$=p.globals.xAxisScale.niceMin+w.endX*f.xRatio);var N=[],L=[];if(p.config.yaxis.forEach(function(K,Q){N.push(p.globals.yAxisScale[Q].niceMax-f.yRatio[Q]*w.startY),L.push(p.globals.yAxisScale[Q].niceMax-f.yRatio[Q]*w.endY)}),w.dragged&&(w.dragX>10||w.dragY>10)&&I!==$){if(p.globals.zoomEnabled){var F=H.clone(p.globals.initialConfig.yaxis),V=H.clone(p.globals.initialConfig.xaxis);if(p.globals.zoomed=!0,p.config.xaxis.convertedCatToNumeric&&(I=Math.floor(I),$=Math.floor($),I<1&&(I=1,$=p.globals.dataPoints),$-I<2&&($=I+1)),c!=="xy"&&c!=="x"||(V={min:I,max:$}),c!=="xy"&&c!=="y"||F.forEach(function(K,Q){F[Q].min=L[Q],F[Q].max=N[Q]}),p.config.chart.zoom.autoScaleYaxis){var Z=new J(w.ctx);F=Z.autoScaleY(w.ctx,F,{xaxis:V})}if(k){var m=k.getBeforeZoomRange(V,F);m&&(V=m.xaxis?m.xaxis:V,F=m.yaxis?m.yaxis:F)}var y={xaxis:V};p.config.chart.group||(y.yaxis=F),w.ctx.updateHelpers._updateOptions(y,!1,w.w.config.chart.animations.dynamicAnimation.enabled),typeof p.config.chart.events.zoomed=="function"&&k.zoomCallback(V,F)}else if(p.globals.selectionEnabled){var j,R=null;j={min:I,max:$},c!=="xy"&&c!=="y"||(R=H.clone(p.config.yaxis)).forEach(function(K,Q){R[Q].min=L[Q],R[Q].max=N[Q]}),p.globals.selection=w.selection,typeof p.config.chart.events.selection=="function"&&p.config.chart.events.selection(w.ctx,{xaxis:j,yaxis:R})}}}},{key:"panDragging",value:function(i){var d=i.context,c=this.w,p=d;if(c.globals.lastClientPosition.x!==void 0){var w=c.globals.lastClientPosition.x-p.clientX,f=c.globals.lastClientPosition.y-p.clientY;Math.abs(w)>Math.abs(f)&&w>0?this.moveDirection="left":Math.abs(w)>Math.abs(f)&&w<0?this.moveDirection="right":Math.abs(f)>Math.abs(w)&&f>0?this.moveDirection="up":Math.abs(f)>Math.abs(w)&&f<0&&(this.moveDirection="down")}c.globals.lastClientPosition={x:p.clientX,y:p.clientY};var k=c.globals.isRangeBar?c.globals.minY:c.globals.minX,M=c.globals.isRangeBar?c.globals.maxY:c.globals.maxX;c.config.xaxis.convertedCatToNumeric||p.panScrolled(k,M)}},{key:"delayedPanScrolled",value:function(){var i=this.w,d=i.globals.minX,c=i.globals.maxX,p=(i.globals.maxX-i.globals.minX)/2;this.moveDirection==="left"?(d=i.globals.minX+p,c=i.globals.maxX+p):this.moveDirection==="right"&&(d=i.globals.minX-p,c=i.globals.maxX-p),d=Math.floor(d),c=Math.floor(c),this.updateScrolledChart({xaxis:{min:d,max:c}},d,c)}},{key:"panScrolled",value:function(i,d){var c=this.w,p=this.xyRatios,w=H.clone(c.globals.initialConfig.yaxis),f=p.xRatio,k=c.globals.minX,M=c.globals.maxX;c.globals.isRangeBar&&(f=p.invertedYRatio,k=c.globals.minY,M=c.globals.maxY),this.moveDirection==="left"?(i=k+c.globals.gridWidth/15*f,d=M+c.globals.gridWidth/15*f):this.moveDirection==="right"&&(i=k-c.globals.gridWidth/15*f,d=M-c.globals.gridWidth/15*f),c.globals.isRangeBar||(ic.globals.initialMaxX)&&(i=k,d=M);var x={min:i,max:d};c.config.chart.zoom.autoScaleYaxis&&(w=new J(this.ctx).autoScaleY(this.ctx,w,{xaxis:x}));var I={xaxis:{min:i,max:d}};c.config.chart.group||(I.yaxis=w),this.updateScrolledChart(I,i,d)}},{key:"updateScrolledChart",value:function(i,d,c){var p=this.w;this.ctx.updateHelpers._updateOptions(i,!1,!1),typeof p.config.chart.events.scrolled=="function"&&p.config.chart.events.scrolled(this.ctx,{xaxis:{min:d,max:c}})}}]),a}(),ll=function(){function T(s){g(this,T),this.w=s.w,this.ttCtx=s,this.ctx=s.ctx}return b(T,[{key:"getNearestValues",value:function(s){var a=s.hoverArea,i=s.elGrid,d=s.clientX,c=s.clientY,p=this.w,w=i.getBoundingClientRect(),f=w.width,k=w.height,M=f/(p.globals.dataPoints-1),x=k/p.globals.dataPoints,I=this.hasBars();!p.globals.comboCharts&&!I||p.config.xaxis.convertedCatToNumeric||(M=f/p.globals.dataPoints);var $=d-w.left-p.globals.barPadForNumericAxis,N=c-w.top;$<0||N<0||$>f||N>k?(a.classList.remove("hovering-zoom"),a.classList.remove("hovering-pan")):p.globals.zoomEnabled?(a.classList.remove("hovering-pan"),a.classList.add("hovering-zoom")):p.globals.panEnabled&&(a.classList.remove("hovering-zoom"),a.classList.add("hovering-pan"));var L=Math.round($/M),F=Math.floor(N/x);I&&!p.config.xaxis.convertedCatToNumeric&&(L=Math.ceil($/M),L-=1);var V=null,Z=null,m=[],y=[];if(p.globals.seriesXvalues.forEach(function(Q){m.push([Q[0]+1e-6].concat(Q))}),p.globals.seriesYvalues.forEach(function(Q){y.push([Q[0]+1e-6].concat(Q))}),m=m.map(function(Q){return Q.filter(function(ot){return H.isNumber(ot)})}),y=y.map(function(Q){return Q.filter(function(ot){return H.isNumber(ot)})}),p.globals.isXNumeric){var j=this.ttCtx.getElGrid().getBoundingClientRect(),R=$*(j.width/f),K=N*(j.height/k);V=(Z=this.closestInMultiArray(R,K,m,y)).index,L=Z.j,V!==null&&(m=p.globals.seriesXvalues[V],L=(Z=this.closestInArray(R,m)).index)}return p.globals.capturedSeriesIndex=V===null?-1:V,(!L||L<1)&&(L=0),p.globals.isBarHorizontal?p.globals.capturedDataPointIndex=F:p.globals.capturedDataPointIndex=L,{capturedSeries:V,j:p.globals.isBarHorizontal?F:L,hoverX:$,hoverY:N}}},{key:"closestInMultiArray",value:function(s,a,i,d){var c=this.w,p=0,w=null,f=-1;c.globals.series.length>1?p=this.getFirstActiveXArray(i):w=0;var k=i[p][0],M=Math.abs(s-k);if(i.forEach(function($){$.forEach(function(N,L){var F=Math.abs(s-N);F0?w:-1}),c=0;c0)for(var d=0;d *")):this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap > *")}},{key:"getAllMarkers",value:function(){var s=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap");(s=E(s)).sort(function(i,d){var c=Number(i.getAttribute("data:realIndex")),p=Number(d.getAttribute("data:realIndex"));return pc?-1:0});var a=[];return s.forEach(function(i){a.push(i.querySelector(".apexcharts-marker"))}),a}},{key:"hasMarkers",value:function(s){return this.getElMarkers(s).length>0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"getHoverMarkerSize",value:function(s){var a=this.w,i=a.config.markers.hover.size;return i===void 0&&(i=a.globals.markers.size[s]+a.config.markers.hover.sizeOffset),i}},{key:"toggleAllTooltipSeriesGroups",value:function(s){var a=this.w,i=this.ttCtx;i.allTooltipSeriesGroups.length===0&&(i.allTooltipSeriesGroups=a.globals.dom.baseEl.querySelectorAll(".apexcharts-tooltip-series-group"));for(var d=i.allTooltipSeriesGroups,c=0;c ').concat(Q.attrs.name,""),K+="
".concat(Q.val,"
")}),m.innerHTML=R+"",y.innerHTML=K+""};w?k.globals.seriesGoals[a][i]&&Array.isArray(k.globals.seriesGoals[a][i])?j():(m.innerHTML="",y.innerHTML=""):j()}else m.innerHTML="",y.innerHTML="";L!==null&&(d[a].querySelector(".apexcharts-tooltip-text-z-label").innerHTML=k.config.tooltip.z.title,d[a].querySelector(".apexcharts-tooltip-text-z-value").innerHTML=L!==void 0?L:""),w&&F[0]&&(x==null||k.globals.ancillaryCollapsedSeriesIndices.indexOf(a)>-1||k.globals.collapsedSeriesIndices.indexOf(a)>-1?F[0].parentNode.style.display="none":F[0].parentNode.style.display=k.config.tooltip.items.display)}},{key:"toggleActiveInactiveSeries",value:function(s){var a=this.w;if(s)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var i=a.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");i&&(i.classList.add("apexcharts-active"),i.style.display=a.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(s){var a=s.i,i=s.j,d=this.w,c=this.ctx.series.filteredSeriesX(),p="",w="",f=null,k=null,M={series:d.globals.series,seriesIndex:a,dataPointIndex:i,w:d},x=d.globals.ttZFormatter;i===null?k=d.globals.series[a]:d.globals.isXNumeric&&d.config.chart.type!=="treemap"?(p=c[a][i],c[a].length===0&&(p=c[this.tooltipUtil.getFirstActiveXArray(c)][i])):p=d.globals.labels[i]!==void 0?d.globals.labels[i]:"";var I=p;return d.globals.isXNumeric&&d.config.xaxis.type==="datetime"?p=new Ct(this.ctx).xLabelFormat(d.globals.ttKeyFormatter,I,I,{i:void 0,dateFormatter:new dt(this.ctx).formatDate,w:this.w}):p=d.globals.isBarHorizontal?d.globals.yLabelFormatters[0](I,M):d.globals.xLabelFormatter(I,M),d.config.tooltip.x.formatter!==void 0&&(p=d.globals.ttKeyFormatter(I,M)),d.globals.seriesZ.length>0&&d.globals.seriesZ[a].length>0&&(f=x(d.globals.seriesZ[a][i],d)),w=typeof d.config.xaxis.tooltip.formatter=="function"?d.globals.xaxisTooltipFormatter(I,M):p,{val:Array.isArray(k)?k.join(" "):k,xVal:Array.isArray(p)?p.join(" "):p,xAxisTTVal:Array.isArray(w)?w.join(" "):w,zVal:f}}},{key:"handleCustomTooltip",value:function(s){var a=s.i,i=s.j,d=s.y1,c=s.y2,p=s.w,w=this.ttCtx.getElTooltip(),f=p.config.tooltip.custom;Array.isArray(f)&&f[a]&&(f=f[a]),w.innerHTML=f({ctx:this.ctx,series:p.globals.series,seriesIndex:a,dataPointIndex:i,y1:d,y2:c,w:p})}}]),T}(),zl=function(){function T(s){g(this,T),this.ttCtx=s,this.ctx=s.ctx,this.w=s.w}return b(T,[{key:"moveXCrosshairs",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,i=this.ttCtx,d=this.w,c=i.getElXCrosshairs(),p=s-i.xcrosshairsWidth/2,w=d.globals.labels.slice().length;if(a!==null&&(p=d.globals.gridWidth/w*a),c===null||d.globals.isBarHorizontal||(c.setAttribute("x",p),c.setAttribute("x1",p),c.setAttribute("x2",p),c.setAttribute("y2",d.globals.gridHeight),c.classList.add("apexcharts-active")),p<0&&(p=0),p>d.globals.gridWidth&&(p=d.globals.gridWidth),i.isXAxisTooltipEnabled){var f=p;d.config.xaxis.crosshairs.width!=="tickWidth"&&d.config.xaxis.crosshairs.width!=="barWidth"||(f=p+i.xcrosshairsWidth/2),this.moveXAxisTooltip(f)}}},{key:"moveYCrosshairs",value:function(s){var a=this.ttCtx;a.ycrosshairs!==null&&_.setAttrs(a.ycrosshairs,{y1:s,y2:s}),a.ycrosshairsHidden!==null&&_.setAttrs(a.ycrosshairsHidden,{y1:s,y2:s})}},{key:"moveXAxisTooltip",value:function(s){var a=this.w,i=this.ttCtx;if(i.xaxisTooltip!==null&&i.xcrosshairsWidth!==0){i.xaxisTooltip.classList.add("apexcharts-active");var d=i.xaxisOffY+a.config.xaxis.tooltip.offsetY+a.globals.translateY+1+a.config.xaxis.offsetY;if(s-=i.xaxisTooltip.getBoundingClientRect().width/2,!isNaN(s)){s+=a.globals.translateX;var c;c=new _(this.ctx).getTextRects(i.xaxisTooltipText.innerHTML),i.xaxisTooltipText.style.minWidth=c.width+"px",i.xaxisTooltip.style.left=s+"px",i.xaxisTooltip.style.top=d+"px"}}}},{key:"moveYAxisTooltip",value:function(s){var a=this.w,i=this.ttCtx;i.yaxisTTEls===null&&(i.yaxisTTEls=a.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var d=parseInt(i.ycrosshairsHidden.getAttribute("y1"),10),c=a.globals.translateY+d,p=i.yaxisTTEls[s].getBoundingClientRect().height,w=a.globals.translateYAxisX[s]-2;a.config.yaxis[s].opposite&&(w-=26),c-=p/2,a.globals.ignoreYAxisIndexes.indexOf(s)===-1?(i.yaxisTTEls[s].classList.add("apexcharts-active"),i.yaxisTTEls[s].style.top=c+"px",i.yaxisTTEls[s].style.left=w+a.config.yaxis[s].tooltip.offsetX+"px"):i.yaxisTTEls[s].classList.remove("apexcharts-active")}},{key:"moveTooltip",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,d=this.w,c=this.ttCtx,p=c.getElTooltip(),w=c.tooltipRect,f=i!==null?parseFloat(i):1,k=parseFloat(s)+f+5,M=parseFloat(a)+f/2;if(k>d.globals.gridWidth/2&&(k=k-w.ttWidth-f-10),k>d.globals.gridWidth-w.ttWidth-10&&(k=d.globals.gridWidth-w.ttWidth),k<-20&&(k=-20),d.config.tooltip.followCursor){var x=c.getElGrid().getBoundingClientRect();(k=c.e.clientX-x.left)>d.globals.gridWidth/2&&(k-=c.tooltipRect.ttWidth),(M=c.e.clientY+d.globals.translateY-x.top)>d.globals.gridHeight/2&&(M-=c.tooltipRect.ttHeight)}else d.globals.isBarHorizontal||w.ttHeight/2+M>d.globals.gridHeight&&(M=d.globals.gridHeight-w.ttHeight+d.globals.translateY);isNaN(k)||(k+=d.globals.translateX,p.style.left=k+"px",p.style.top=M+"px")}},{key:"moveMarkers",value:function(s,a){var i=this.w,d=this.ttCtx;if(i.globals.markers.size[s]>0)for(var c=i.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(s,"'] .apexcharts-marker")),p=0;p0&&(M.setAttribute("r",f),M.setAttribute("cx",i),M.setAttribute("cy",d)),this.moveXCrosshairs(i),p.fixedTooltip||this.moveTooltip(i,d,f)}}},{key:"moveDynamicPointsOnHover",value:function(s){var a,i=this.ttCtx,d=i.w,c=0,p=0,w=d.globals.pointsArray;a=new ut(this.ctx).getActiveConfigSeriesIndex("asc",["line","area","scatter","bubble"]);var f=i.tooltipUtil.getHoverMarkerSize(a);w[a]&&(c=w[a][s][0],p=w[a][s][1]);var k=i.tooltipUtil.getAllMarkers();if(k!==null)for(var M=0;M0?(k[M]&&k[M].setAttribute("r",f),k[M]&&k[M].setAttribute("cy",I)):k[M]&&k[M].setAttribute("r",0)}}this.moveXCrosshairs(c),i.fixedTooltip||this.moveTooltip(c,p||d.globals.gridHeight,f)}},{key:"moveStickyTooltipOverBars",value:function(s,a){var i=this.w,d=this.ttCtx,c=i.globals.columnSeries?i.globals.columnSeries.length:i.globals.series.length,p=c>=2&&c%2==0?Math.floor(c/2):Math.floor(c/2)+1;i.globals.isBarHorizontal&&(p=new ut(this.ctx).getActiveConfigSeriesIndex("desc")+1);var w=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(p,"'] path[j='").concat(s,"'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"']"));w||typeof a!="number"||(w=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[data\\:realIndex='".concat(a,"'] path[j='").concat(s,`'], + .apexcharts-candlestick-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,`'], + .apexcharts-boxPlot-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,`'], + .apexcharts-rangebar-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,"']")));var f=w?parseFloat(w.getAttribute("cx")):0,k=w?parseFloat(w.getAttribute("cy")):0,M=w?parseFloat(w.getAttribute("barWidth")):0,x=d.getElGrid().getBoundingClientRect(),I=w&&(w.classList.contains("apexcharts-candlestick-area")||w.classList.contains("apexcharts-boxPlot-area"));i.globals.isXNumeric?(w&&!I&&(f-=c%2!=0?M/2:0),w&&I&&i.globals.comboCharts&&(f-=M/2)):i.globals.isBarHorizontal||(f=d.xAxisTicksPositions[s-1]+d.dataPointsDividedWidth/2,isNaN(f)&&(f=d.xAxisTicksPositions[s]-d.dataPointsDividedWidth/2)),i.globals.isBarHorizontal?k-=d.tooltipRect.ttHeight:i.config.tooltip.followCursor?k=d.e.clientY-x.top-d.tooltipRect.ttHeight/2:k+d.tooltipRect.ttHeight+15>i.globals.gridHeight&&(k=i.globals.gridHeight),i.globals.isBarHorizontal||this.moveXCrosshairs(f),d.fixedTooltip||this.moveTooltip(f,k||i.globals.gridHeight)}}]),T}(),Ms=function(){function T(s){g(this,T),this.w=s.w,this.ttCtx=s,this.ctx=s.ctx,this.tooltipPosition=new zl(s)}return b(T,[{key:"drawDynamicPoints",value:function(){var s=this.w,a=new _(this.ctx),i=new Kt(this.ctx),d=s.globals.dom.baseEl.querySelectorAll(".apexcharts-series");d=E(d),s.config.chart.stacked&&d.sort(function(x,I){return parseFloat(x.getAttribute("data:realIndex"))-parseFloat(I.getAttribute("data:realIndex"))});for(var c=0;c2&&arguments[2]!==void 0?arguments[2]:null,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,c=this.w;c.config.chart.type!=="bubble"&&this.newPointSize(s,a);var p=a.getAttribute("cx"),w=a.getAttribute("cy");if(i!==null&&d!==null&&(p=i,w=d),this.tooltipPosition.moveXCrosshairs(p),!this.fixedTooltip){if(c.config.chart.type==="radar"){var f=this.ttCtx.getElGrid().getBoundingClientRect();p=this.ttCtx.e.clientX-f.left}this.tooltipPosition.moveTooltip(p,w,c.config.markers.hover.size)}}},{key:"enlargePoints",value:function(s){for(var a=this.w,i=this,d=this.ttCtx,c=s,p=a.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),w=a.config.markers.hover.size,f=0;f=0?s[a].setAttribute("r",i):s[a].setAttribute("r",0)}}}]),T}(),an=function(){function T(s){g(this,T),this.w=s.w;var a=this.w;this.ttCtx=s,this.isVerticalGroupedRangeBar=!a.globals.isBarHorizontal&&a.config.chart.type==="rangeBar"&&a.config.plotOptions.bar.rangeBarGroupRows}return b(T,[{key:"getAttr",value:function(s,a){return parseFloat(s.target.getAttribute(a))}},{key:"handleHeatTreeTooltip",value:function(s){var a=s.e,i=s.opt,d=s.x,c=s.y,p=s.type,w=this.ttCtx,f=this.w;if(a.target.classList.contains("apexcharts-".concat(p,"-rect"))){var k=this.getAttr(a,"i"),M=this.getAttr(a,"j"),x=this.getAttr(a,"cx"),I=this.getAttr(a,"cy"),$=this.getAttr(a,"width"),N=this.getAttr(a,"height");if(w.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:k,j:M,shared:!1,e:a}),f.globals.capturedSeriesIndex=k,f.globals.capturedDataPointIndex=M,d=x+w.tooltipRect.ttWidth/2+$,c=I+w.tooltipRect.ttHeight/2-N/2,w.tooltipPosition.moveXCrosshairs(x+$/2),d>f.globals.gridWidth/2&&(d=x-w.tooltipRect.ttWidth/2+$),w.w.config.tooltip.followCursor){var L=f.globals.dom.elWrap.getBoundingClientRect();d=f.globals.clientX-L.left-(d>f.globals.gridWidth/2?w.tooltipRect.ttWidth:0),c=f.globals.clientY-L.top-(c>f.globals.gridHeight/2?w.tooltipRect.ttHeight:0)}}return{x:d,y:c}}},{key:"handleMarkerTooltip",value:function(s){var a,i,d=s.e,c=s.opt,p=s.x,w=s.y,f=this.w,k=this.ttCtx;if(d.target.classList.contains("apexcharts-marker")){var M=parseInt(c.paths.getAttribute("cx"),10),x=parseInt(c.paths.getAttribute("cy"),10),I=parseFloat(c.paths.getAttribute("val"));if(i=parseInt(c.paths.getAttribute("rel"),10),a=parseInt(c.paths.parentNode.parentNode.parentNode.getAttribute("rel"),10)-1,k.intersect){var $=H.findAncestor(c.paths,"apexcharts-series");$&&(a=parseInt($.getAttribute("data:realIndex"),10))}if(k.tooltipLabels.drawSeriesTexts({ttItems:c.ttItems,i:a,j:i,shared:!k.showOnIntersect&&f.config.tooltip.shared,e:d}),d.type==="mouseup"&&k.markerClick(d,a,i),f.globals.capturedSeriesIndex=a,f.globals.capturedDataPointIndex=i,p=M,w=x+f.globals.translateY-1.4*k.tooltipRect.ttHeight,k.w.config.tooltip.followCursor){var N=k.getElGrid().getBoundingClientRect();w=k.e.clientY+f.globals.translateY-N.top}I<0&&(w=x),k.marker.enlargeCurrentPoint(i,c.paths,p,w)}return{x:p,y:w}}},{key:"handleBarTooltip",value:function(s){var a,i,d=s.e,c=s.opt,p=this.w,w=this.ttCtx,f=w.getElTooltip(),k=0,M=0,x=0,I=this.getBarTooltipXY({e:d,opt:c});a=I.i;var $=I.barHeight,N=I.j;p.globals.capturedSeriesIndex=a,p.globals.capturedDataPointIndex=N,p.globals.isBarHorizontal&&w.tooltipUtil.hasBars()||!p.config.tooltip.shared?(M=I.x,x=I.y,i=Array.isArray(p.config.stroke.width)?p.config.stroke.width[a]:p.config.stroke.width,k=M):p.globals.comboCharts||p.config.tooltip.shared||(k/=2),isNaN(x)&&(x=p.globals.svgHeight-w.tooltipRect.ttHeight);var L=parseInt(c.paths.parentNode.getAttribute("data:realIndex"),10),F=p.globals.isMultipleYAxis?p.config.yaxis[L]&&p.config.yaxis[L].reversed:p.config.yaxis[0].reversed;if(M+w.tooltipRect.ttWidth>p.globals.gridWidth&&!F?M-=w.tooltipRect.ttWidth:M<0&&(M=0),w.w.config.tooltip.followCursor){var V=w.getElGrid().getBoundingClientRect();x=w.e.clientY-V.top}w.tooltip===null&&(w.tooltip=p.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),p.config.tooltip.shared||(p.globals.comboBarCount>0?w.tooltipPosition.moveXCrosshairs(k+i/2):w.tooltipPosition.moveXCrosshairs(k)),!w.fixedTooltip&&(!p.config.tooltip.shared||p.globals.isBarHorizontal&&w.tooltipUtil.hasBars())&&(F&&(M-=w.tooltipRect.ttWidth)<0&&(M=0),!F||p.globals.isBarHorizontal&&w.tooltipUtil.hasBars()||(x=x+$-2*(p.globals.series[a][N]<0?$:0)),x=x+p.globals.translateY-w.tooltipRect.ttHeight/2,f.style.left=M+p.globals.translateX+"px",f.style.top=x+"px")}},{key:"getBarTooltipXY",value:function(s){var a=this,i=s.e,d=s.opt,c=this.w,p=null,w=this.ttCtx,f=0,k=0,M=0,x=0,I=0,$=i.target.classList;if($.contains("apexcharts-bar-area")||$.contains("apexcharts-candlestick-area")||$.contains("apexcharts-boxPlot-area")||$.contains("apexcharts-rangebar-area")){var N=i.target,L=N.getBoundingClientRect(),F=d.elGrid.getBoundingClientRect(),V=L.height;I=L.height;var Z=L.width,m=parseInt(N.getAttribute("cx"),10),y=parseInt(N.getAttribute("cy"),10);x=parseFloat(N.getAttribute("barWidth"));var j=i.type==="touchmove"?i.touches[0].clientX:i.clientX;p=parseInt(N.getAttribute("j"),10),f=parseInt(N.parentNode.getAttribute("rel"),10)-1;var R=N.getAttribute("data-range-y1"),K=N.getAttribute("data-range-y2");c.globals.comboCharts&&(f=parseInt(N.parentNode.getAttribute("data:realIndex"),10));var Q=function(it){return c.globals.isXNumeric?m-Z/2:a.isVerticalGroupedRangeBar?m+Z/2:m-w.dataPointsDividedWidth+Z/2},ot=function(){return y-w.dataPointsDividedHeight+V/2-w.tooltipRect.ttHeight/2};w.tooltipLabels.drawSeriesTexts({ttItems:d.ttItems,i:f,j:p,y1:R?parseInt(R,10):null,y2:K?parseInt(K,10):null,shared:!w.showOnIntersect&&c.config.tooltip.shared,e:i}),c.config.tooltip.followCursor?c.globals.isBarHorizontal?(k=j-F.left+15,M=ot()):(k=Q(),M=i.clientY-F.top-w.tooltipRect.ttHeight/2-15):c.globals.isBarHorizontal?((k=m)0&&i.setAttribute("width",a.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var s=this.w,a=this.ttCtx;a.ycrosshairs=s.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),a.ycrosshairsHidden=s.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(s,a,i){var d=this.ttCtx,c=this.w,p=c.globals.yLabelFormatters[s];if(d.yaxisTooltips[s]){var w=d.getElGrid().getBoundingClientRect(),f=(a-w.top)*i.yRatio[s],k=c.globals.maxYArr[s]-c.globals.minYArr[s],M=c.globals.minYArr[s]+(k-f);d.tooltipPosition.moveYCrosshairs(a-w.top),d.yaxisTooltipText[s].innerHTML=p(M),d.tooltipPosition.moveYAxisTooltip(s)}}}]),T}(),wo=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w;var a=this.w;this.tConfig=a.config.tooltip,this.tooltipUtil=new ll(this),this.tooltipLabels=new bs(this),this.tooltipPosition=new zl(this),this.marker=new Ms(this),this.intersect=new an(this),this.axesTooltip=new Sn(this),this.showOnIntersect=this.tConfig.intersect,this.showTooltipTitle=this.tConfig.x.show,this.fixedTooltip=this.tConfig.fixed.enabled,this.xaxisTooltip=null,this.yaxisTTEls=null,this.isBarShared=!a.globals.isBarHorizontal&&this.tConfig.shared,this.lastHoverTime=Date.now()}return b(T,[{key:"getElTooltip",value:function(s){return s||(s=this),s.w.globals.dom.baseEl?s.w.globals.dom.baseEl.querySelector(".apexcharts-tooltip"):null}},{key:"getElXCrosshairs",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-xcrosshairs")}},{key:"getElGrid",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-grid")}},{key:"drawTooltip",value:function(s){var a=this.w;this.xyRatios=s,this.isXAxisTooltipEnabled=a.config.xaxis.tooltip.enabled&&a.globals.axisCharts,this.yaxisTooltips=a.config.yaxis.map(function(p,w){return!!(p.show&&p.tooltip.enabled&&a.globals.axisCharts)}),this.allTooltipSeriesGroups=[],a.globals.axisCharts||(this.showTooltipTitle=!1);var i=document.createElement("div");if(i.classList.add("apexcharts-tooltip"),a.config.tooltip.cssClass&&i.classList.add(a.config.tooltip.cssClass),i.classList.add("apexcharts-theme-".concat(this.tConfig.theme)),a.globals.dom.elWrap.appendChild(i),a.globals.axisCharts){this.axesTooltip.drawXaxisTooltip(),this.axesTooltip.drawYaxisTooltip(),this.axesTooltip.setXCrosshairWidth(),this.axesTooltip.handleYCrosshair();var d=new bt(this.ctx);this.xAxisTicksPositions=d.getXAxisTicksPositions()}if(!a.globals.comboCharts&&!this.tConfig.intersect&&a.config.chart.type!=="rangeBar"||this.tConfig.shared||(this.showOnIntersect=!0),a.config.markers.size!==0&&a.globals.markers.largestSize!==0||this.marker.drawDynamicPoints(this),a.globals.collapsedSeries.length!==a.globals.series.length){this.dataPointsDividedHeight=a.globals.gridHeight/a.globals.dataPoints,this.dataPointsDividedWidth=a.globals.gridWidth/a.globals.dataPoints,this.showTooltipTitle&&(this.tooltipTitle=document.createElement("div"),this.tooltipTitle.classList.add("apexcharts-tooltip-title"),this.tooltipTitle.style.fontFamily=this.tConfig.style.fontFamily||a.config.chart.fontFamily,this.tooltipTitle.style.fontSize=this.tConfig.style.fontSize,i.appendChild(this.tooltipTitle));var c=a.globals.series.length;(a.globals.xyCharts||a.globals.comboCharts)&&this.tConfig.shared&&(c=this.showOnIntersect?1:a.globals.series.length),this.legendLabels=a.globals.dom.baseEl.querySelectorAll(".apexcharts-legend-text"),this.ttItems=this.createTTElements(c),this.addSVGEvents()}}},{key:"createTTElements",value:function(s){for(var a=this,i=this.w,d=[],c=this.getElTooltip(),p=function(f){var k=document.createElement("div");k.classList.add("apexcharts-tooltip-series-group"),k.style.order=i.config.tooltip.inverseOrder?s-f:f+1,a.tConfig.shared&&a.tConfig.enabledOnSeries&&Array.isArray(a.tConfig.enabledOnSeries)&&a.tConfig.enabledOnSeries.indexOf(f)<0&&k.classList.add("apexcharts-tooltip-series-group-hidden");var M=document.createElement("span");M.classList.add("apexcharts-tooltip-marker"),M.style.backgroundColor=i.globals.colors[f],k.appendChild(M);var x=document.createElement("div");x.classList.add("apexcharts-tooltip-text"),x.style.fontFamily=a.tConfig.style.fontFamily||i.config.chart.fontFamily,x.style.fontSize=a.tConfig.style.fontSize,["y","goals","z"].forEach(function(I){var $=document.createElement("div");$.classList.add("apexcharts-tooltip-".concat(I,"-group"));var N=document.createElement("span");N.classList.add("apexcharts-tooltip-text-".concat(I,"-label")),$.appendChild(N);var L=document.createElement("span");L.classList.add("apexcharts-tooltip-text-".concat(I,"-value")),$.appendChild(L),x.appendChild($)}),k.appendChild(x),c.appendChild(k),d.push(k)},w=0;w0&&this.addPathsEventListeners(N,x),this.tooltipUtil.hasBars()&&!this.tConfig.shared&&this.addDatapointEventsListeners(x)}}},{key:"drawFixedTooltipRect",value:function(){var s=this.w,a=this.getElTooltip(),i=a.getBoundingClientRect(),d=i.width+10,c=i.height+10,p=this.tConfig.fixed.offsetX,w=this.tConfig.fixed.offsetY,f=this.tConfig.fixed.position.toLowerCase();return f.indexOf("right")>-1&&(p=p+s.globals.svgWidth-d+10),f.indexOf("bottom")>-1&&(w=w+s.globals.svgHeight-c-10),a.style.left=p+"px",a.style.top=w+"px",{x:p,y:w,ttWidth:d,ttHeight:c}}},{key:"addDatapointEventsListeners",value:function(s){var a=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area");this.addPathsEventListeners(a,s)}},{key:"addPathsEventListeners",value:function(s,a){for(var i=this,d=function(p){var w={paths:s[p],tooltipEl:a.tooltipEl,tooltipY:a.tooltipY,tooltipX:a.tooltipX,elGrid:a.elGrid,hoverArea:a.hoverArea,ttItems:a.ttItems};["mousemove","mouseup","touchmove","mouseout","touchend"].map(function(f){return s[p].addEventListener(f,i.onSeriesHover.bind(i,w),{capture:!1,passive:!0})})},c=0;c=100?this.seriesHover(s,a):(clearTimeout(this.seriesHoverTimeout),this.seriesHoverTimeout=setTimeout(function(){i.seriesHover(s,a)},100-d))}},{key:"seriesHover",value:function(s,a){var i=this;this.lastHoverTime=Date.now();var d=[],c=this.w;c.config.chart.group&&(d=this.ctx.getGroupedCharts()),c.globals.axisCharts&&(c.globals.minX===-1/0&&c.globals.maxX===1/0||c.globals.dataPoints===0)||(d.length?d.forEach(function(p){var w=i.getElTooltip(p),f={paths:s.paths,tooltipEl:w,tooltipY:s.tooltipY,tooltipX:s.tooltipX,elGrid:s.elGrid,hoverArea:s.hoverArea,ttItems:p.w.globals.tooltip.ttItems};p.w.globals.minX===i.w.globals.minX&&p.w.globals.maxX===i.w.globals.maxX&&p.w.globals.tooltip.seriesHoverByContext({chartCtx:p,ttCtx:p.w.globals.tooltip,opt:f,e:a})}):this.seriesHoverByContext({chartCtx:this.ctx,ttCtx:this.w.globals.tooltip,opt:s,e:a}))}},{key:"seriesHoverByContext",value:function(s){var a=s.chartCtx,i=s.ttCtx,d=s.opt,c=s.e,p=a.w,w=this.getElTooltip();w&&(i.tooltipRect={x:0,y:0,ttWidth:w.getBoundingClientRect().width,ttHeight:w.getBoundingClientRect().height},i.e=c,i.tooltipUtil.hasBars()&&!p.globals.comboCharts&&!i.isBarShared&&this.tConfig.onDatasetHover.highlightDataSeries&&new ut(a).toggleSeriesOnHover(c,c.target.parentNode),i.fixedTooltip&&i.drawFixedTooltipRect(),p.globals.axisCharts?i.axisChartsTooltips({e:c,opt:d,tooltipRect:i.tooltipRect}):i.nonAxisChartsTooltips({e:c,opt:d,tooltipRect:i.tooltipRect}))}},{key:"axisChartsTooltips",value:function(s){var a,i,d=s.e,c=s.opt,p=this.w,w=c.elGrid.getBoundingClientRect(),f=d.type==="touchmove"?d.touches[0].clientX:d.clientX,k=d.type==="touchmove"?d.touches[0].clientY:d.clientY;if(this.clientY=k,this.clientX=f,p.globals.capturedSeriesIndex=-1,p.globals.capturedDataPointIndex=-1,kw.top+w.height)this.handleMouseOut(c);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!p.config.tooltip.shared){var M=parseInt(c.paths.getAttribute("index"),10);if(this.tConfig.enabledOnSeries.indexOf(M)<0)return void this.handleMouseOut(c)}var x=this.getElTooltip(),I=this.getElXCrosshairs(),$=p.globals.xyCharts||p.config.chart.type==="bar"&&!p.globals.isBarHorizontal&&this.tooltipUtil.hasBars()&&this.tConfig.shared||p.globals.comboCharts&&this.tooltipUtil.hasBars();if(d.type==="mousemove"||d.type==="touchmove"||d.type==="mouseup"){if(p.globals.collapsedSeries.length+p.globals.ancillaryCollapsedSeries.length===p.globals.series.length)return;I!==null&&I.classList.add("apexcharts-active");var N=this.yaxisTooltips.filter(function(V){return V===!0});if(this.ycrosshairs!==null&&N.length&&this.ycrosshairs.classList.add("apexcharts-active"),$&&!this.showOnIntersect)this.handleStickyTooltip(d,f,k,c);else if(p.config.chart.type==="heatmap"||p.config.chart.type==="treemap"){var L=this.intersect.handleHeatTreeTooltip({e:d,opt:c,x:a,y:i,type:p.config.chart.type});a=L.x,i=L.y,x.style.left=a+"px",x.style.top=i+"px"}else this.tooltipUtil.hasBars()&&this.intersect.handleBarTooltip({e:d,opt:c}),this.tooltipUtil.hasMarkers()&&this.intersect.handleMarkerTooltip({e:d,opt:c,x:a,y:i});if(this.yaxisTooltips.length)for(var F=0;Fk.width)this.handleMouseOut(d);else if(f!==null)this.handleStickyCapturedSeries(s,f,d,w);else if(this.tooltipUtil.isXoverlap(w)||c.globals.isBarHorizontal){var M=c.globals.series.findIndex(function(x,I){return!c.globals.collapsedSeriesIndices.includes(I)});this.create(s,this,M,w,d.ttItems)}}},{key:"handleStickyCapturedSeries",value:function(s,a,i,d){var c=this.w;if(!this.tConfig.shared&&c.globals.series[a][d]===null)return void this.handleMouseOut(i);if(c.globals.series[a][d]!==void 0)this.tConfig.shared&&this.tooltipUtil.isXoverlap(d)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(s,this,a,d,i.ttItems):this.create(s,this,a,d,i.ttItems,!1);else if(this.tooltipUtil.isXoverlap(d)){var p=c.globals.series.findIndex(function(w,f){return!c.globals.collapsedSeriesIndices.includes(f)});this.create(s,this,p,d,i.ttItems)}}},{key:"deactivateHoverFilter",value:function(){for(var s=this.w,a=new _(this.ctx),i=s.globals.dom.Paper.select(".apexcharts-bar-area"),d=0;d5&&arguments[5]!==void 0?arguments[5]:null,K=this.w,Q=a;s.type==="mouseup"&&this.markerClick(s,i,d),R===null&&(R=this.tConfig.shared);var ot=this.tooltipUtil.hasMarkers(i),it=this.tooltipUtil.getElBars();if(K.config.legend.tooltipHoverFormatter){var vt=K.config.legend.tooltipHoverFormatter,zt=Array.from(this.legendLabels);zt.forEach(function(Rn){var Ul=Rn.getAttribute("data:default-text");Rn.innerHTML=decodeURIComponent(Ul)});for(var Mt=0;Mt0?Q.marker.enlargePoints(d):Q.tooltipPosition.moveDynamicPointsOnHover(d);else if(this.tooltipUtil.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(it),this.barSeriesHeight>0)){var xe=new _(this.ctx),$e=K.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(d,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(d,i);for(var je=0;je<$e.length;je++)xe.pathMouseEnter($e[je])}}else Q.tooltipLabels.drawSeriesTexts(h({shared:!1},de)),this.tooltipUtil.hasBars()&&Q.tooltipPosition.moveStickyTooltipOverBars(d,i),ot&&Q.tooltipPosition.moveMarkers(i,d)}}]),T}(),j4=function(){function T(s){g(this,T),this.w=s.w,this.barCtx=s,this.totalFormatter=this.w.config.plotOptions.bar.dataLabels.total.formatter,this.totalFormatter||(this.totalFormatter=this.w.config.dataLabels.formatter)}return b(T,[{key:"handleBarDataLabels",value:function(s){var a=s.x,i=s.y,d=s.y1,c=s.y2,p=s.i,w=s.j,f=s.realIndex,k=s.groupIndex,M=s.series,x=s.barHeight,I=s.barWidth,$=s.barXPosition,N=s.barYPosition,L=s.visibleSeries,F=s.renderedPath,V=this.w,Z=new _(this.barCtx.ctx),m=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[f]:this.barCtx.strokeWidth,y=a+parseFloat(I*L),j=i+parseFloat(x*L);V.globals.isXNumeric&&!V.globals.isBarHorizontal&&(y=a+parseFloat(I*(L+1)),j=i+parseFloat(x*(L+1))-m);var R,K=null,Q=a,ot=i,it={},vt=V.config.dataLabels,zt=this.barCtx.barOptions.dataLabels,Mt=this.barCtx.barOptions.dataLabels.total;N!==void 0&&this.barCtx.isRangeBar&&(j=N,ot=N),$!==void 0&&this.barCtx.isVerticalGroupedRangeBar&&(y=$,Q=$);var Et=vt.offsetX,qt=vt.offsetY,ae={width:0,height:0};if(V.config.dataLabels.enabled){var ie=this.barCtx.series[p][w];ae=Z.getTextRects(V.globals.yLabelFormatters[0](ie),parseFloat(vt.style.fontSize))}var de={x:a,y:i,i:p,j:w,realIndex:f,groupIndex:k||-1,renderedPath:F,bcx:y,bcy:j,barHeight:x,barWidth:I,textRects:ae,strokeWidth:m,dataLabelsX:Q,dataLabelsY:ot,dataLabelsConfig:vt,barDataLabelsConfig:zt,barTotalDataLabelsConfig:Mt,offX:Et,offY:qt};return it=this.barCtx.isHorizontal?this.calculateBarsDataLabelsPosition(de):this.calculateColumnsDataLabelsPosition(de),F.attr({cy:it.bcy,cx:it.bcx,j:w,val:M[p][w],barHeight:x,barWidth:I}),R=this.drawCalculatedDataLabels({x:it.dataLabelsX,y:it.dataLabelsY,val:this.barCtx.isRangeBar?[d,c]:M[p][w],i:f,j:w,barWidth:I,barHeight:x,textRects:ae,dataLabelsConfig:vt}),V.config.chart.stacked&&Mt.enabled&&(K=this.drawTotalDataLabels({x:it.totalDataLabelsX,y:it.totalDataLabelsY,realIndex:f,textAnchor:it.totalDataLabelsAnchor,val:this.getStackedTotalDataLabel({realIndex:f,j:w}),dataLabelsConfig:vt,barTotalDataLabelsConfig:Mt})),{dataLabels:R,totalDataLabels:K}}},{key:"getStackedTotalDataLabel",value:function(s){var a=s.realIndex,i=s.j,d=this.w,c=this.barCtx.stackedSeriesTotals[i];return this.totalFormatter&&(c=this.totalFormatter(c,h(h({},d),{},{seriesIndex:a,dataPointIndex:i,w:d}))),c}},{key:"calculateColumnsDataLabelsPosition",value:function(s){var a,i,d=this.w,c=s.i,p=s.j,w=s.realIndex,f=s.groupIndex,k=s.y,M=s.bcx,x=s.barWidth,I=s.barHeight,$=s.textRects,N=s.dataLabelsX,L=s.dataLabelsY,F=s.dataLabelsConfig,V=s.barDataLabelsConfig,Z=s.barTotalDataLabelsConfig,m=s.strokeWidth,y=s.offX,j=s.offY;I=Math.abs(I);var R=d.config.plotOptions.bar.dataLabels.orientation==="vertical";M=M-m/2+(f!==-1?f*x:0);var K=d.globals.gridWidth/d.globals.dataPoints;this.barCtx.isVerticalGroupedRangeBar?N+=x/2:N=d.globals.isXNumeric?M-x/2+y:M-K+x/2+y,R&&(N=N+$.height/2-m/2-2);var Q=this.barCtx.series[c][p]<0,ot=k;switch(this.barCtx.isReversed&&(ot=k-I+(Q?2*I:0),k-=I),V.position){case"center":L=R?Q?ot+I/2+j:ot+I/2-j:Q?ot-I/2+$.height/2+j:ot+I/2+$.height/2-j;break;case"bottom":L=R?Q?ot+I+j:ot+I-j:Q?ot-I+$.height+m+j:ot+I-$.height/2+m-j;break;case"top":L=R?Q?ot+j:ot-j:Q?ot-$.height/2-j:ot+$.height+j}if(this.barCtx.lastActiveBarSerieIndex===w&&Z.enabled){var it=new _(this.barCtx.ctx).getTextRects(this.getStackedTotalDataLabel({realIndex:w,j:p}),F.fontSize);a=Q?ot-it.height/2-j-Z.offsetY+18:ot+it.height+j+Z.offsetY-18,i=N+Z.offsetX}return d.config.chart.stacked||(L<0?L=0+m:L+$.height/3>d.globals.gridHeight&&(L=d.globals.gridHeight-m)),{bcx:M,bcy:k,dataLabelsX:N,dataLabelsY:L,totalDataLabelsX:i,totalDataLabelsY:a,totalDataLabelsAnchor:"middle"}}},{key:"calculateBarsDataLabelsPosition",value:function(s){var a=this.w,i=s.x,d=s.i,c=s.j,p=s.realIndex,w=s.groupIndex,f=s.bcy,k=s.barHeight,M=s.barWidth,x=s.textRects,I=s.dataLabelsX,$=s.strokeWidth,N=s.dataLabelsConfig,L=s.barDataLabelsConfig,F=s.barTotalDataLabelsConfig,V=s.offX,Z=s.offY,m=a.globals.gridHeight/a.globals.dataPoints;M=Math.abs(M);var y,j,R=(f+=w!==-1?w*k:0)-(this.barCtx.isRangeBar?0:m)+k/2+x.height/2+Z-3,K="start",Q=this.barCtx.series[d][c]<0,ot=i;switch(this.barCtx.isReversed&&(ot=i+M-(Q?2*M:0),i=a.globals.gridWidth-M),L.position){case"center":I=Q?ot+M/2-V:Math.max(x.width/2,ot-M/2)+V;break;case"bottom":I=Q?ot+M-$-Math.round(x.width/2)-V:ot-M+$+Math.round(x.width/2)+V;break;case"top":I=Q?ot-$+Math.round(x.width/2)-V:ot-$-Math.round(x.width/2)+V}if(this.barCtx.lastActiveBarSerieIndex===p&&F.enabled){var it=new _(this.barCtx.ctx).getTextRects(this.getStackedTotalDataLabel({realIndex:p,j:c}),N.fontSize);Q?(y=ot-$+Math.round(it.width/2)-V-F.offsetX-15,K="end"):y=ot-$-Math.round(it.width/2)+V+F.offsetX+15,j=R+F.offsetY}return a.config.chart.stacked||(I<0?I=I+x.width+$:I+x.width/2>a.globals.gridWidth&&(I=a.globals.gridWidth-x.width-$)),{bcx:i,bcy:f,dataLabelsX:I,dataLabelsY:R,totalDataLabelsX:y,totalDataLabelsY:j,totalDataLabelsAnchor:K}}},{key:"drawCalculatedDataLabels",value:function(s){var a=s.x,i=s.y,d=s.val,c=s.i,p=s.j,w=s.textRects,f=s.barHeight,k=s.barWidth,M=s.dataLabelsConfig,x=this.w,I="rotate(0)";x.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(I="rotate(-90, ".concat(a,", ").concat(i,")"));var $=new Rt(this.barCtx.ctx),N=new _(this.barCtx.ctx),L=M.formatter,F=null,V=x.globals.collapsedSeriesIndices.indexOf(c)>-1;if(M.enabled&&!V){F=N.group({class:"apexcharts-data-labels",transform:I});var Z="";d!==void 0&&(Z=L(d,h(h({},x),{},{seriesIndex:c,dataPointIndex:p,w:x}))),!d&&x.config.plotOptions.bar.hideZeroBarsWhenGrouped&&(Z="");var m=x.globals.series[c][p]<0,y=x.config.plotOptions.bar.dataLabels.position;x.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(y==="top"&&(M.textAnchor=m?"end":"start"),y==="center"&&(M.textAnchor="middle"),y==="bottom"&&(M.textAnchor=m?"end":"start")),this.barCtx.isRangeBar&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels&&kMath.abs(k)&&(Z=""):w.height/1.6>Math.abs(f)&&(Z=""));var j=h({},M);this.barCtx.isHorizontal&&d<0&&(M.textAnchor==="start"?j.textAnchor="end":M.textAnchor==="end"&&(j.textAnchor="start")),$.plotDataLabelsText({x:a,y:i,text:Z,i:c,j:p,parent:F,dataLabelsConfig:j,alwaysDrawDataLabel:!0,offsetCorrection:!0})}return F}},{key:"drawTotalDataLabels",value:function(s){var a,i=s.x,d=s.y,c=s.val,p=s.realIndex,w=s.textAnchor,f=s.barTotalDataLabelsConfig,k=new _(this.barCtx.ctx);return f.enabled&&i!==void 0&&d!==void 0&&this.barCtx.lastActiveBarSerieIndex===p&&(a=k.drawText({x:i,y:d,foreColor:f.style.color,text:c,textAnchor:w,fontFamily:f.style.fontFamily,fontSize:f.style.fontSize,fontWeight:f.style.fontWeight})),a}}]),T}(),P4=function(){function T(s){g(this,T),this.w=s.w,this.barCtx=s}return b(T,[{key:"initVariables",value:function(s){var a=this.w;this.barCtx.series=s,this.barCtx.totalItems=0,this.barCtx.seriesLen=0,this.barCtx.visibleI=-1,this.barCtx.visibleItems=1;for(var i=0;i0&&(this.barCtx.seriesLen=this.barCtx.seriesLen+1,this.barCtx.totalItems+=s[i].length),a.globals.isXNumeric)for(var d=0;da.globals.minX&&a.globals.seriesX[i][d]0&&(d=k.globals.minXDiff/I),(p=d/x*parseInt(this.barCtx.barOptions.columnWidth,10)/100)<1&&(p=1)}String(this.barCtx.barOptions.columnWidth).indexOf("%")===-1&&(p=parseInt(this.barCtx.barOptions.columnWidth,10)),w=k.globals.gridHeight-this.barCtx.baseLineY[this.barCtx.yaxisIndex]-(this.barCtx.isReversed?k.globals.gridHeight:0)+(this.barCtx.isReversed?2*this.barCtx.baseLineY[this.barCtx.yaxisIndex]:0),s=k.globals.padHorizontal+(d-p*this.barCtx.seriesLen)/2}return{x:s,y:a,yDivision:i,xDivision:d,barHeight:c,barWidth:p,zeroH:w,zeroW:f}}},{key:"initializeStackedPrevVars",value:function(s){var a=s.w;a.globals.hasSeriesGroups?a.globals.seriesGroups.forEach(function(i){s[i]||(s[i]={}),s[i].prevY=[],s[i].prevX=[],s[i].prevYF=[],s[i].prevXF=[],s[i].prevYVal=[],s[i].prevXVal=[]}):(s.prevY=[],s.prevX=[],s.prevYF=[],s.prevXF=[],s.prevYVal=[],s.prevXVal=[])}},{key:"initializeStackedXYVars",value:function(s){var a=s.w;a.globals.hasSeriesGroups?a.globals.seriesGroups.forEach(function(i){s[i]||(s[i]={}),s[i].xArrj=[],s[i].xArrjF=[],s[i].xArrjVal=[],s[i].yArrj=[],s[i].yArrjF=[],s[i].yArrjVal=[]}):(s.xArrj=[],s.xArrjF=[],s.xArrjVal=[],s.yArrj=[],s.yArrjF=[],s.yArrjVal=[])}},{key:"getPathFillColor",value:function(s,a,i,d){var c,p,w,f,k=this.w,M=new Ft(this.barCtx.ctx),x=null,I=this.barCtx.barOptions.distributed?i:a;return this.barCtx.barOptions.colors.ranges.length>0&&this.barCtx.barOptions.colors.ranges.map(function($){s[a][i]>=$.from&&s[a][i]<=$.to&&(x=$.color)}),k.config.series[a].data[i]&&k.config.series[a].data[i].fillColor&&(x=k.config.series[a].data[i].fillColor),M.fillPath({seriesNumber:this.barCtx.barOptions.distributed?I:d,dataPointIndex:i,color:x,value:s[a][i],fillConfig:(c=k.config.series[a].data[i])===null||c===void 0?void 0:c.fill,fillType:(p=k.config.series[a].data[i])!==null&&p!==void 0&&(w=p.fill)!==null&&w!==void 0&&w.type?(f=k.config.series[a].data[i])===null||f===void 0?void 0:f.fill.type:k.config.fill.type})}},{key:"getStrokeWidth",value:function(s,a,i){var d=0,c=this.w;return this.barCtx.series[s][a]?this.barCtx.isNullValue=!1:this.barCtx.isNullValue=!0,c.config.stroke.show&&(this.barCtx.isNullValue||(d=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[i]:this.barCtx.strokeWidth)),d}},{key:"shouldApplyRadius",value:function(s){var a=this.w,i=!1;return a.config.plotOptions.bar.borderRadius>0&&(a.config.chart.stacked&&a.config.plotOptions.bar.borderRadiusWhenStacked==="last"?this.barCtx.lastActiveBarSerieIndex===s&&(i=!0):i=!0),i}},{key:"barBackground",value:function(s){var a=s.j,i=s.i,d=s.x1,c=s.x2,p=s.y1,w=s.y2,f=s.elSeries,k=this.w,M=new _(this.barCtx.ctx),x=new ut(this.barCtx.ctx).getActiveConfigSeriesIndex();if(this.barCtx.barOptions.colors.backgroundBarColors.length>0&&x===i){a>=this.barCtx.barOptions.colors.backgroundBarColors.length&&(a%=this.barCtx.barOptions.colors.backgroundBarColors.length);var I=this.barCtx.barOptions.colors.backgroundBarColors[a],$=M.drawRect(d!==void 0?d:0,p!==void 0?p:0,c!==void 0?c:k.globals.gridWidth,w!==void 0?w:k.globals.gridHeight,this.barCtx.barOptions.colors.backgroundBarRadius,I,this.barCtx.barOptions.colors.backgroundBarOpacity);f.add($),$.node.classList.add("apexcharts-backgroundBar")}}},{key:"getColumnPaths",value:function(s){var a,i=s.barWidth,d=s.barXPosition,c=s.y1,p=s.y2,w=s.strokeWidth,f=s.seriesGroup,k=s.realIndex,M=s.i,x=s.j,I=s.w,$=new _(this.barCtx.ctx);(w=Array.isArray(w)?w[k]:w)||(w=0);var N=i,L=d;(a=I.config.series[k].data[x])!==null&&a!==void 0&&a.columnWidthOffset&&(L=d-I.config.series[k].data[x].columnWidthOffset/2,N=i+I.config.series[k].data[x].columnWidthOffset);var F=L,V=L+N;c+=.001,p+=.001;var Z=$.move(F,c),m=$.move(F,c),y=$.line(V-w,c);if(I.globals.previousPaths.length>0&&(m=this.barCtx.getPreviousPath(k,x,!1)),Z=Z+$.line(F,p)+$.line(V-w,p)+$.line(V-w,c)+(I.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),m=m+$.line(F,c)+y+y+y+y+y+$.line(F,c)+(I.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(k)&&(Z=$.roundPathCorners(Z,I.config.plotOptions.bar.borderRadius)),I.config.chart.stacked){var j=this.barCtx;I.globals.hasSeriesGroups&&f&&(j=this.barCtx[f]),j.yArrj.push(p),j.yArrjF.push(Math.abs(c-p)),j.yArrjVal.push(this.barCtx.series[M][x])}return{pathTo:Z,pathFrom:m}}},{key:"getBarpaths",value:function(s){var a,i=s.barYPosition,d=s.barHeight,c=s.x1,p=s.x2,w=s.strokeWidth,f=s.seriesGroup,k=s.realIndex,M=s.i,x=s.j,I=s.w,$=new _(this.barCtx.ctx);(w=Array.isArray(w)?w[k]:w)||(w=0);var N=i,L=d;(a=I.config.series[k].data[x])!==null&&a!==void 0&&a.barHeightOffset&&(N=i-I.config.series[k].data[x].barHeightOffset/2,L=d+I.config.series[k].data[x].barHeightOffset);var F=N,V=N+L;c+=.001,p+=.001;var Z=$.move(c,F),m=$.move(c,F);I.globals.previousPaths.length>0&&(m=this.barCtx.getPreviousPath(k,x,!1));var y=$.line(c,V-w);if(Z=Z+$.line(p,F)+$.line(p,V-w)+y+(I.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),m=m+$.line(c,F)+y+y+y+y+y+$.line(c,F)+(I.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(k)&&(Z=$.roundPathCorners(Z,I.config.plotOptions.bar.borderRadius)),I.config.chart.stacked){var j=this.barCtx;I.globals.hasSeriesGroups&&f&&(j=this.barCtx[f]),j.xArrj.push(p),j.xArrjF.push(Math.abs(c-p)),j.xArrjVal.push(this.barCtx.series[M][x])}return{pathTo:Z,pathFrom:m}}},{key:"checkZeroSeries",value:function(s){for(var a=s.series,i=this.w,d=0;d2&&arguments[2]!==void 0)||arguments[2]?a:null;return s!=null&&(i=a+s/this.barCtx.invertedYRatio-2*(this.barCtx.isReversed?s/this.barCtx.invertedYRatio:0)),i}},{key:"getYForValue",value:function(s,a){var i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2]?a:null;return s!=null&&(i=a-s/this.barCtx.yRatio[this.barCtx.yaxisIndex]+2*(this.barCtx.isReversed?s/this.barCtx.yRatio[this.barCtx.yaxisIndex]:0)),i}},{key:"getGoalValues",value:function(s,a,i,d,c){var p=this,w=this.w,f=[],k=function(I,$){var N;f.push((z(N={},s,s==="x"?p.getXForValue(I,a,!1):p.getYForValue(I,i,!1)),z(N,"attrs",$),N))};if(w.globals.seriesGoals[d]&&w.globals.seriesGoals[d][c]&&Array.isArray(w.globals.seriesGoals[d][c])&&w.globals.seriesGoals[d][c].forEach(function(I){k(I.value,I)}),this.barCtx.barOptions.isDumbbell&&w.globals.seriesRange.length){var M=this.barCtx.barOptions.dumbbellColors?this.barCtx.barOptions.dumbbellColors:w.globals.colors,x={strokeHeight:s==="x"?0:w.globals.markers.size[d],strokeWidth:s==="x"?w.globals.markers.size[d]:0,strokeDashArray:0,strokeLineCap:"round",strokeColor:Array.isArray(M[d])?M[d][0]:M[d]};k(w.globals.seriesRangeStart[d][c],x),k(w.globals.seriesRangeEnd[d][c],h(h({},x),{},{strokeColor:Array.isArray(M[d])?M[d][1]:M[d]}))}return f}},{key:"drawGoalLine",value:function(s){var a=s.barXPosition,i=s.barYPosition,d=s.goalX,c=s.goalY,p=s.barWidth,w=s.barHeight,f=new _(this.barCtx.ctx),k=f.group({className:"apexcharts-bar-goals-groups"});k.node.classList.add("apexcharts-element-hidden"),this.barCtx.w.globals.delayedElements.push({el:k.node}),k.attr("clip-path","url(#gridRectMarkerMask".concat(this.barCtx.w.globals.cuid,")"));var M=null;return this.barCtx.isHorizontal?Array.isArray(d)&&d.forEach(function(x){var I=x.attrs.strokeHeight!==void 0?x.attrs.strokeHeight:w/2,$=i+I+w/2;M=f.drawLine(x.x,$-2*I,x.x,$,x.attrs.strokeColor?x.attrs.strokeColor:void 0,x.attrs.strokeDashArray,x.attrs.strokeWidth?x.attrs.strokeWidth:2,x.attrs.strokeLineCap),k.add(M)}):Array.isArray(c)&&c.forEach(function(x){var I=x.attrs.strokeWidth!==void 0?x.attrs.strokeWidth:p/2,$=a+I+p/2;M=f.drawLine($-2*I,x.y,$,x.y,x.attrs.strokeColor?x.attrs.strokeColor:void 0,x.attrs.strokeDashArray,x.attrs.strokeHeight?x.attrs.strokeHeight:2,x.attrs.strokeLineCap),k.add(M)}),k}},{key:"drawBarShadow",value:function(s){var a=s.prevPaths,i=s.currPaths,d=s.color,c=this.w,p=a.x,w=a.x1,f=a.barYPosition,k=i.x,M=i.x1,x=i.barYPosition,I=f+i.barHeight,$=new _(this.barCtx.ctx),N=new H,L=$.move(w,I)+$.line(p,I)+$.line(k,x)+$.line(M,x)+$.line(w,I)+(c.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z");return $.drawPath({d:L,fill:N.shadeColor(.5,H.rgb2hex(d)),stroke:"none",strokeWidth:0,fillOpacity:1,classes:"apexcharts-bar-shadows"})}}]),T}(),Sr=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w;var i=this.w;this.barOptions=i.config.plotOptions.bar,this.isHorizontal=this.barOptions.horizontal,this.strokeWidth=i.config.stroke.width,this.isNullValue=!1,this.isRangeBar=i.globals.seriesRange.length&&this.isHorizontal,this.isVerticalGroupedRangeBar=!i.globals.isBarHorizontal&&i.globals.seriesRange.length&&i.config.plotOptions.bar.rangeBarGroupRows,this.isFunnel=this.barOptions.isFunnel,this.xyRatios=a,this.xyRatios!==null&&(this.xRatio=a.xRatio,this.initialXRatio=a.initialXRatio,this.yRatio=a.yRatio,this.invertedXRatio=a.invertedXRatio,this.invertedYRatio=a.invertedYRatio,this.baseLineY=a.baseLineY,this.baseLineInvertedY=a.baseLineInvertedY),this.yaxisIndex=0,this.seriesLen=0,this.pathArr=[];var d=new ut(this.ctx);this.lastActiveBarSerieIndex=d.getActiveConfigSeriesIndex("desc",["bar","column"]);var c=d.getBarSeriesIndices(),p=new tt(this.ctx);this.stackedSeriesTotals=p.getStackedSeriesTotals(this.w.config.series.map(function(w,f){return c.indexOf(f)===-1?f:-1}).filter(function(w){return w!==-1})),this.barHelpers=new P4(this)}return b(T,[{key:"draw",value:function(s,a){var i=this.w,d=new _(this.ctx),c=new tt(this.ctx,i);s=c.getLogSeries(s),this.series=s,this.yRatio=c.getLogYRatios(this.yRatio),this.barHelpers.initVariables(s);var p=d.group({class:"apexcharts-bar-series apexcharts-plot-series"});i.config.dataLabels.enabled&&this.totalItems>this.barOptions.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.");for(var w=0,f=0;w0&&(this.visibleI=this.visibleI+1);var m=0,y=0;this.yRatio.length>1&&(this.yaxisIndex=V),this.isReversed=i.config.yaxis[this.yaxisIndex]&&i.config.yaxis[this.yaxisIndex].reversed;var j=this.barHelpers.initialPositions();N=j.y,m=j.barHeight,M=j.yDivision,I=j.zeroW,$=j.x,y=j.barWidth,k=j.xDivision,x=j.zeroH,this.horizontal||F.push($+y/2);var R=d.group({class:"apexcharts-datalabels","data:realIndex":V});i.globals.delayedElements.push({el:R.node}),R.node.classList.add("apexcharts-element-hidden");var K=d.group({class:"apexcharts-bar-goals-markers"}),Q=d.group({class:"apexcharts-bar-shadows"});i.globals.delayedElements.push({el:Q.node}),Q.node.classList.add("apexcharts-element-hidden");for(var ot=0;ot0){var Et=this.barHelpers.drawBarShadow({color:typeof Mt=="string"&&(Mt==null?void 0:Mt.indexOf("url"))===-1?Mt:H.hexToRgba(i.globals.colors[w]),prevPaths:this.pathArr[this.pathArr.length-1],currPaths:vt});Et&&Q.add(Et)}this.pathArr.push(vt);var qt=this.barHelpers.drawGoalLine({barXPosition:vt.barXPosition,barYPosition:vt.barYPosition,goalX:vt.goalX,goalY:vt.goalY,barHeight:m,barWidth:y});qt&&K.add(qt),N=vt.y,$=vt.x,ot>0&&F.push($+y/2),L.push(N),this.renderSeries({realIndex:V,pathFill:Mt,j:ot,i:w,pathFrom:vt.pathFrom,pathTo:vt.pathTo,strokeWidth:it,elSeries:Z,x:$,y:N,series:s,barHeight:vt.barHeight?vt.barHeight:m,barWidth:vt.barWidth?vt.barWidth:y,elDataLabelsWrap:R,elGoalsMarkers:K,elBarShadows:Q,visibleSeries:this.visibleI,type:"bar"})}i.globals.seriesXvalues[V]=F,i.globals.seriesYvalues[V]=L,p.add(Z)}return p}},{key:"renderSeries",value:function(s){var a=s.realIndex,i=s.pathFill,d=s.lineFill,c=s.j,p=s.i,w=s.groupIndex,f=s.pathFrom,k=s.pathTo,M=s.strokeWidth,x=s.elSeries,I=s.x,$=s.y,N=s.y1,L=s.y2,F=s.series,V=s.barHeight,Z=s.barWidth,m=s.barXPosition,y=s.barYPosition,j=s.elDataLabelsWrap,R=s.elGoalsMarkers,K=s.elBarShadows,Q=s.visibleSeries,ot=s.type,it=this.w,vt=new _(this.ctx);d||(d=this.barOptions.distributed?it.globals.stroke.colors[c]:it.globals.stroke.colors[a]),it.config.series[p].data[c]&&it.config.series[p].data[c].strokeColor&&(d=it.config.series[p].data[c].strokeColor),this.isNullValue&&(i="none");var zt=c/it.config.chart.animations.animateGradually.delay*(it.config.chart.animations.speed/it.globals.dataPoints)/2.4,Mt=vt.renderPaths({i:p,j:c,realIndex:a,pathFrom:f,pathTo:k,stroke:d,strokeWidth:M,strokeLineCap:it.config.stroke.lineCap,fill:i,animationDelay:zt,initialSpeed:it.config.chart.animations.speed,dataChangeSpeed:it.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(ot,"-area")});Mt.attr("clip-path","url(#gridRectMask".concat(it.globals.cuid,")"));var Et=it.config.forecastDataPoints;Et.count>0&&c>=it.globals.dataPoints-Et.count&&(Mt.node.setAttribute("stroke-dasharray",Et.dashArray),Mt.node.setAttribute("stroke-width",Et.strokeWidth),Mt.node.setAttribute("fill-opacity",Et.fillOpacity)),N!==void 0&&L!==void 0&&(Mt.attr("data-range-y1",N),Mt.attr("data-range-y2",L)),new W(this.ctx).setSelectionFilter(Mt,a,c),x.add(Mt);var qt=new j4(this).handleBarDataLabels({x:I,y:$,y1:N,y2:L,i:p,j:c,series:F,realIndex:a,groupIndex:w,barHeight:V,barWidth:Z,barXPosition:m,barYPosition:y,renderedPath:Mt,visibleSeries:Q});return qt.dataLabels!==null&&j.add(qt.dataLabels),qt.totalDataLabels&&j.add(qt.totalDataLabels),x.add(j),R&&x.add(R),K&&x.add(K),x}},{key:"drawBarPaths",value:function(s){var a,i=s.indexes,d=s.barHeight,c=s.strokeWidth,p=s.zeroW,w=s.x,f=s.y,k=s.yDivision,M=s.elSeries,x=this.w,I=i.i,$=i.j;if(x.globals.isXNumeric)a=(f=(x.globals.seriesX[I][$]-x.globals.minX)/this.invertedXRatio-d)+d*this.visibleI;else if(x.config.plotOptions.bar.hideZeroBarsWhenGrouped){var N=0,L=0;x.globals.seriesPercent.forEach(function(V,Z){V[$]&&N++,Z0&&(d=this.seriesLen*d/N),a=f+d*this.visibleI,a-=d*L}else a=f+d*this.visibleI;this.isFunnel&&(p-=(this.barHelpers.getXForValue(this.series[I][$],p)-p)/2),w=this.barHelpers.getXForValue(this.series[I][$],p);var F=this.barHelpers.getBarpaths({barYPosition:a,barHeight:d,x1:p,x2:w,strokeWidth:c,series:this.series,realIndex:i.realIndex,i:I,j:$,w:x});return x.globals.isXNumeric||(f+=k),this.barHelpers.barBackground({j:$,i:I,y1:a-d*this.visibleI,y2:d*this.seriesLen,elSeries:M}),{pathTo:F.pathTo,pathFrom:F.pathFrom,x1:p,x:w,y:f,goalX:this.barHelpers.getGoalValues("x",p,null,I,$),barYPosition:a,barHeight:d}}},{key:"drawColumnPaths",value:function(s){var a,i=s.indexes,d=s.x,c=s.y,p=s.xDivision,w=s.barWidth,f=s.zeroH,k=s.strokeWidth,M=s.elSeries,x=this.w,I=i.realIndex,$=i.i,N=i.j,L=i.bc;if(x.globals.isXNumeric){var F=I;x.globals.seriesX[I].length||(F=x.globals.maxValsInArrayIndex),x.globals.seriesX[F][N]&&(d=(x.globals.seriesX[F][N]-x.globals.minX)/this.xRatio-w*this.seriesLen/2),a=d+w*this.visibleI}else if(x.config.plotOptions.bar.hideZeroBarsWhenGrouped){var V=0,Z=0;x.globals.seriesPercent.forEach(function(y,j){y[N]&&V++,j<$&&y[N]===0&&Z++}),V>0&&(w=this.seriesLen*w/V),a=d+w*this.visibleI,a-=w*Z}else a=d+w*this.visibleI;c=this.barHelpers.getYForValue(this.series[$][N],f);var m=this.barHelpers.getColumnPaths({barXPosition:a,barWidth:w,y1:f,y2:c,strokeWidth:k,series:this.series,realIndex:i.realIndex,i:$,j:N,w:x});return x.globals.isXNumeric||(d+=p),this.barHelpers.barBackground({bc:L,j:N,i:$,x1:a-k/2-w*this.visibleI,x2:w*this.seriesLen+k/2,elSeries:M}),{pathTo:m.pathTo,pathFrom:m.pathFrom,x:d,y:c,goalY:this.barHelpers.getGoalValues("y",null,f,$,N),barXPosition:a,barWidth:w}}},{key:"getPreviousPath",value:function(s,a){for(var i,d=this.w,c=0;c0&&parseInt(p.realIndex,10)===parseInt(s,10)&&d.globals.previousPaths[c].paths[a]!==void 0&&(i=d.globals.previousPaths[c].paths[a].d)}return i}}]),T}(),Qh=function(T){C(a,Sr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return b(a,[{key:"draw",value:function(i,d){var c=this,p=this.w;this.graphics=new _(this.ctx),this.bar=new Sr(this.ctx,this.xyRatios);var w=new tt(this.ctx,p);i=w.getLogSeries(i),this.yRatio=w.getLogYRatios(this.yRatio),this.barHelpers.initVariables(i),p.config.chart.stackType==="100%"&&(i=p.globals.seriesPercent.slice()),this.series=i,this.barHelpers.initializeStackedPrevVars(this);for(var f=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),k=0,M=0,x=function(N,L){var F=void 0,V=void 0,Z=void 0,m=void 0,y=-1;c.groupCtx=c,p.globals.seriesGroups.forEach(function($e,je){$e.indexOf(p.config.series[N].name)>-1&&(y=je)}),y!==-1&&(c.groupCtx=c[p.globals.seriesGroups[y]]);var j=[],R=[],K=p.globals.comboCharts?d[N]:N;c.yRatio.length>1&&(c.yaxisIndex=K),c.isReversed=p.config.yaxis[c.yaxisIndex]&&p.config.yaxis[c.yaxisIndex].reversed;var Q=c.graphics.group({class:"apexcharts-series",seriesName:H.escapeString(p.globals.seriesNames[K]),rel:N+1,"data:realIndex":K});c.ctx.series.addCollapsedClassToSeries(Q,K);var ot=c.graphics.group({class:"apexcharts-datalabels","data:realIndex":K}),it=c.graphics.group({class:"apexcharts-bar-goals-markers"}),vt=0,zt=0,Mt=c.initialPositions(k,M,F,V,Z,m);M=Mt.y,vt=Mt.barHeight,V=Mt.yDivision,m=Mt.zeroW,k=Mt.x,zt=Mt.barWidth,F=Mt.xDivision,Z=Mt.zeroH,c.barHelpers.initializeStackedXYVars(c),c.groupCtx.prevY.length===1&&c.groupCtx.prevY[0].every(function($e){return isNaN($e)})&&(c.groupCtx.prevY[0]=c.groupCtx.prevY[0].map(function($e){return Z}),c.groupCtx.prevYF[0]=c.groupCtx.prevYF[0].map(function($e){return 0}));for(var Et=0;Et1?(c=$.globals.minXDiff/this.xRatio)*parseInt(this.barOptions.columnWidth,10)/100:I*parseInt($.config.plotOptions.bar.columnWidth,10)/100,String($.config.plotOptions.bar.columnWidth).indexOf("%")===-1&&(I=parseInt($.config.plotOptions.bar.columnWidth,10)),w=$.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?$.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),i=$.globals.padHorizontal+(c-I)/2),{x:i,y:d,yDivision:p,xDivision:c,barHeight:(k=$.globals.seriesGroups)!==null&&k!==void 0&&k.length?x/$.globals.seriesGroups.length:x,barWidth:(M=$.globals.seriesGroups)!==null&&M!==void 0&&M.length?I/$.globals.seriesGroups.length:I,zeroH:w,zeroW:f}}},{key:"drawStackedBarPaths",value:function(i){for(var d,c=i.indexes,p=i.barHeight,w=i.strokeWidth,f=i.zeroW,k=i.x,M=i.y,x=i.groupIndex,I=i.seriesGroup,$=i.yDivision,N=i.elSeries,L=this.w,F=M+(x!==-1?x*p:0),V=c.i,Z=c.j,m=0,y=0;y0){var R=f;this.groupCtx.prevXVal[j-1][Z]<0?R=this.series[V][Z]>=0?this.groupCtx.prevX[j-1][Z]+m-2*(this.isReversed?m:0):this.groupCtx.prevX[j-1][Z]:this.groupCtx.prevXVal[j-1][Z]>=0&&(R=this.series[V][Z]>=0?this.groupCtx.prevX[j-1][Z]:this.groupCtx.prevX[j-1][Z]-m+2*(this.isReversed?m:0)),d=R}else d=f;k=this.series[V][Z]===null?d:d+this.series[V][Z]/this.invertedYRatio-2*(this.isReversed?this.series[V][Z]/this.invertedYRatio:0);var K=this.barHelpers.getBarpaths({barYPosition:F,barHeight:p,x1:d,x2:k,strokeWidth:w,series:this.series,realIndex:c.realIndex,seriesGroup:I,i:V,j:Z,w:L});return this.barHelpers.barBackground({j:Z,i:V,y1:F,y2:p,elSeries:N}),M+=$,{pathTo:K.pathTo,pathFrom:K.pathFrom,goalX:this.barHelpers.getGoalValues("x",f,null,V,Z),barYPosition:F,x:k,y:M}}},{key:"drawStackedColumnPaths",value:function(i){var d=i.indexes,c=i.x,p=i.y,w=i.xDivision,f=i.barWidth,k=i.zeroH,M=i.groupIndex,x=i.seriesGroup,I=i.elSeries,$=this.w,N=d.i,L=d.j,F=d.bc;if($.globals.isXNumeric){var V=$.globals.seriesX[N][L];V||(V=0),c=(V-$.globals.minX)/this.xRatio-f/2,$.globals.seriesGroups.length&&(c=(V-$.globals.minX)/this.xRatio-f/2*$.globals.seriesGroups.length)}for(var Z,m=c+(M!==-1?M*f:0),y=0,j=0;j0&&!$.globals.isXNumeric||R>0&&$.globals.isXNumeric&&$.globals.seriesX[N-1][L]===$.globals.seriesX[N][L]){var K,Q,ot,it=Math.min(this.yRatio.length+1,N+1);if(this.groupCtx.prevY[R-1]!==void 0&&this.groupCtx.prevY[R-1].length)for(var vt=1;vt=0?ot-y+2*(this.isReversed?y:0):ot;break}if(((qt=this.groupCtx.prevYVal[R-Mt])===null||qt===void 0?void 0:qt[L])>=0){Q=this.series[N][L]>=0?ot:ot+y-2*(this.isReversed?y:0);break}}Q===void 0&&(Q=$.globals.gridHeight),Z=(K=this.groupCtx.prevYF[0])!==null&&K!==void 0&&K.every(function(ie){return ie===0})&&this.groupCtx.prevYF.slice(1,R).every(function(ie){return ie.every(function(de){return isNaN(de)})})?k:Q}else Z=k;p=this.series[N][L]?Z-this.series[N][L]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[N][L]/this.yRatio[this.yaxisIndex]:0):Z;var ae=this.barHelpers.getColumnPaths({barXPosition:m,barWidth:f,y1:Z,y2:p,yRatio:this.yRatio[this.yaxisIndex],strokeWidth:this.strokeWidth,series:this.series,seriesGroup:x,realIndex:d.realIndex,i:N,j:L,w:$});return this.barHelpers.barBackground({bc:F,j:L,i:N,x1:m,x2:f,elSeries:I}),c+=w,{pathTo:ae.pathTo,pathFrom:ae.pathFrom,goalY:this.barHelpers.getGoalValues("y",null,k,N,L),barXPosition:m,x:$.globals.isXNumeric?c-w:c,y:p}}}]),a}(),Za=function(T){C(a,Sr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return b(a,[{key:"draw",value:function(i,d,c){var p=this,w=this.w,f=new _(this.ctx),k=w.globals.comboCharts?d:w.config.chart.type,M=new Ft(this.ctx);this.candlestickOptions=this.w.config.plotOptions.candlestick,this.boxOptions=this.w.config.plotOptions.boxPlot,this.isHorizontal=w.config.plotOptions.bar.horizontal;var x=new tt(this.ctx,w);i=x.getLogSeries(i),this.series=i,this.yRatio=x.getLogYRatios(this.yRatio),this.barHelpers.initVariables(i);for(var I=f.group({class:"apexcharts-".concat(k,"-series apexcharts-plot-series")}),$=function(L){p.isBoxPlot=w.config.chart.type==="boxPlot"||w.config.series[L].type==="boxPlot";var F,V,Z,m,y=void 0,j=void 0,R=[],K=[],Q=w.globals.comboCharts?c[L]:L,ot=f.group({class:"apexcharts-series",seriesName:H.escapeString(w.globals.seriesNames[Q]),rel:L+1,"data:realIndex":Q});p.ctx.series.addCollapsedClassToSeries(ot,Q),i[L].length>0&&(p.visibleI=p.visibleI+1);var it,vt;p.yRatio.length>1&&(p.yaxisIndex=Q);var zt=p.barHelpers.initialPositions();j=zt.y,it=zt.barHeight,V=zt.yDivision,m=zt.zeroW,y=zt.x,vt=zt.barWidth,F=zt.xDivision,Z=zt.zeroH,K.push(y+vt/2);for(var Mt=f.group({class:"apexcharts-datalabels","data:realIndex":Q}),Et=function(ae){var ie=p.barHelpers.getStrokeWidth(L,ae,Q),de=null,xe={indexes:{i:L,j:ae,realIndex:Q},x:y,y:j,strokeWidth:ie,elSeries:ot};de=p.isHorizontal?p.drawHorizontalBoxPaths(h(h({},xe),{},{yDivision:V,barHeight:it,zeroW:m})):p.drawVerticalBoxPaths(h(h({},xe),{},{xDivision:F,barWidth:vt,zeroH:Z})),j=de.y,y=de.x,ae>0&&K.push(y+vt/2),R.push(j),de.pathTo.forEach(function($e,je){var Rn=!p.isBoxPlot&&p.candlestickOptions.wick.useFillColor?de.color[je]:w.globals.stroke.colors[L],Ul=M.fillPath({seriesNumber:Q,dataPointIndex:ae,color:de.color[je],value:i[L][ae]});p.renderSeries({realIndex:Q,pathFill:Ul,lineFill:Rn,j:ae,i:L,pathFrom:de.pathFrom,pathTo:$e,strokeWidth:ie,elSeries:ot,x:y,y:j,series:i,barHeight:it,barWidth:vt,elDataLabelsWrap:Mt,visibleSeries:p.visibleI,type:w.config.chart.type})})},qt=0;qty.c&&(N=!1);var K=Math.min(y.o,y.c),Q=Math.max(y.o,y.c),ot=y.m;M.globals.isXNumeric&&(c=(M.globals.seriesX[m][$]-M.globals.minX)/this.xRatio-w/2);var it=c+w*this.visibleI;this.series[I][$]===void 0||this.series[I][$]===null?(K=f,Q=f):(K=f-K/Z,Q=f-Q/Z,j=f-y.h/Z,R=f-y.l/Z,ot=f-y.m/Z);var vt=x.move(it,f),zt=x.move(it+w/2,K);return M.globals.previousPaths.length>0&&(zt=this.getPreviousPath(m,$,!0)),vt=this.isBoxPlot?[x.move(it,K)+x.line(it+w/2,K)+x.line(it+w/2,j)+x.line(it+w/4,j)+x.line(it+w-w/4,j)+x.line(it+w/2,j)+x.line(it+w/2,K)+x.line(it+w,K)+x.line(it+w,ot)+x.line(it,ot)+x.line(it,K+k/2),x.move(it,ot)+x.line(it+w,ot)+x.line(it+w,Q)+x.line(it+w/2,Q)+x.line(it+w/2,R)+x.line(it+w-w/4,R)+x.line(it+w/4,R)+x.line(it+w/2,R)+x.line(it+w/2,Q)+x.line(it,Q)+x.line(it,ot)+"z"]:[x.move(it,Q)+x.line(it+w/2,Q)+x.line(it+w/2,j)+x.line(it+w/2,Q)+x.line(it+w,Q)+x.line(it+w,K)+x.line(it+w/2,K)+x.line(it+w/2,R)+x.line(it+w/2,K)+x.line(it,K)+x.line(it,Q-k/2)],zt+=x.move(it,K),M.globals.isXNumeric||(c+=p),{pathTo:vt,pathFrom:zt,x:c,y:Q,barXPosition:it,color:this.isBoxPlot?V:N?[L]:[F]}}},{key:"drawHorizontalBoxPaths",value:function(i){var d=i.indexes;i.x;var c=i.y,p=i.yDivision,w=i.barHeight,f=i.zeroW,k=i.strokeWidth,M=this.w,x=new _(this.ctx),I=d.i,$=d.j,N=this.boxOptions.colors.lower;this.isBoxPlot&&(N=[this.boxOptions.colors.lower,this.boxOptions.colors.upper]);var L=this.invertedYRatio,F=d.realIndex,V=this.getOHLCValue(F,$),Z=f,m=f,y=Math.min(V.o,V.c),j=Math.max(V.o,V.c),R=V.m;M.globals.isXNumeric&&(c=(M.globals.seriesX[F][$]-M.globals.minX)/this.invertedXRatio-w/2);var K=c+w*this.visibleI;this.series[I][$]===void 0||this.series[I][$]===null?(y=f,j=f):(y=f+y/L,j=f+j/L,Z=f+V.h/L,m=f+V.l/L,R=f+V.m/L);var Q=x.move(f,K),ot=x.move(y,K+w/2);return M.globals.previousPaths.length>0&&(ot=this.getPreviousPath(F,$,!0)),Q=[x.move(y,K)+x.line(y,K+w/2)+x.line(Z,K+w/2)+x.line(Z,K+w/2-w/4)+x.line(Z,K+w/2+w/4)+x.line(Z,K+w/2)+x.line(y,K+w/2)+x.line(y,K+w)+x.line(R,K+w)+x.line(R,K)+x.line(y+k/2,K),x.move(R,K)+x.line(R,K+w)+x.line(j,K+w)+x.line(j,K+w/2)+x.line(m,K+w/2)+x.line(m,K+w-w/4)+x.line(m,K+w/4)+x.line(m,K+w/2)+x.line(j,K+w/2)+x.line(j,K)+x.line(R,K)+"z"],ot+=x.move(y,K),M.globals.isXNumeric||(c+=p),{pathTo:Q,pathFrom:ot,x:j,y:c,barYPosition:K,color:N}}},{key:"getOHLCValue",value:function(i,d){var c=this.w;return{o:this.isBoxPlot?c.globals.seriesCandleH[i][d]:c.globals.seriesCandleO[i][d],h:this.isBoxPlot?c.globals.seriesCandleO[i][d]:c.globals.seriesCandleH[i][d],m:c.globals.seriesCandleM[i][d],l:this.isBoxPlot?c.globals.seriesCandleC[i][d]:c.globals.seriesCandleL[i][d],c:this.isBoxPlot?c.globals.seriesCandleL[i][d]:c.globals.seriesCandleC[i][d]}}}]),a}(),Jh=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"checkColorRange",value:function(){var s=this.w,a=!1,i=s.config.plotOptions[s.config.chart.type];return i.colorScale.ranges.length>0&&i.colorScale.ranges.map(function(d,c){d.from<=0&&(a=!0)}),a}},{key:"getShadeColor",value:function(s,a,i,d){var c=this.w,p=1,w=c.config.plotOptions[s].shadeIntensity,f=this.determineColor(s,a,i);c.globals.hasNegs||d?p=c.config.plotOptions[s].reverseNegativeShade?f.percent<0?f.percent/100*(1.25*w):(1-f.percent/100)*(1.25*w):f.percent<=0?1-(1+f.percent/100)*w:(1-f.percent/100)*w:(p=1-f.percent/100,s==="treemap"&&(p=(1-f.percent/100)*(1.25*w)));var k=f.color,M=new H;return c.config.plotOptions[s].enableShades&&(k=this.w.config.theme.mode==="dark"?H.hexToRgba(M.shadeColor(-1*p,f.color),c.config.fill.opacity):H.hexToRgba(M.shadeColor(p,f.color),c.config.fill.opacity)),{color:k,colorProps:f}}},{key:"determineColor",value:function(s,a,i){var d=this.w,c=d.globals.series[a][i],p=d.config.plotOptions[s],w=p.colorScale.inverse?i:a;p.distributed&&d.config.chart.type==="treemap"&&(w=i);var f=d.globals.colors[w],k=null,M=Math.min.apply(Math,E(d.globals.series[a])),x=Math.max.apply(Math,E(d.globals.series[a]));p.distributed||s!=="heatmap"||(M=d.globals.minY,x=d.globals.maxY),p.colorScale.min!==void 0&&(M=p.colorScale.mind.globals.maxY?p.colorScale.max:d.globals.maxY);var I=Math.abs(x)+Math.abs(M),$=100*c/(I===0?I-1e-6:I);return p.colorScale.ranges.length>0&&p.colorScale.ranges.map(function(N,L){if(c>=N.from&&c<=N.to){f=N.color,k=N.foreColor?N.foreColor:null,M=N.from,x=N.to;var F=Math.abs(x)+Math.abs(M);$=100*c/(F===0?F-1e-6:F)}}),{color:f,foreColor:k,percent:$}}},{key:"calculateDataLabels",value:function(s){var a=s.text,i=s.x,d=s.y,c=s.i,p=s.j,w=s.colorProps,f=s.fontSize,k=this.w.config.dataLabels,M=new _(this.ctx),x=new Rt(this.ctx),I=null;if(k.enabled){I=M.group({class:"apexcharts-data-labels"});var $=k.offsetX,N=k.offsetY,L=i+$,F=d+parseFloat(k.style.fontSize)/3+N;x.plotDataLabelsText({x:L,y:F,text:a,i:c,j:p,color:w.foreColor,parent:I,fontSize:f,dataLabelsConfig:k})}return I}},{key:"addListeners",value:function(s){var a=new _(this.ctx);s.node.addEventListener("mouseenter",a.pathMouseEnter.bind(this,s)),s.node.addEventListener("mouseleave",a.pathMouseLeave.bind(this,s)),s.node.addEventListener("mousedown",a.pathMouseDown.bind(this,s))}}]),T}(),L4=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w,this.xRatio=a.xRatio,this.yRatio=a.yRatio,this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.helpers=new Jh(s),this.rectRadius=this.w.config.plotOptions.heatmap.radius,this.strokeWidth=this.w.config.stroke.show?this.w.config.stroke.width:0}return b(T,[{key:"draw",value:function(s){var a=this.w,i=new _(this.ctx),d=i.group({class:"apexcharts-heatmap"});d.attr("clip-path","url(#gridRectMask".concat(a.globals.cuid,")"));var c=a.globals.gridWidth/a.globals.dataPoints,p=a.globals.gridHeight/a.globals.series.length,w=0,f=!1;this.negRange=this.helpers.checkColorRange();var k=s.slice();a.config.yaxis[0].reversed&&(f=!0,k.reverse());for(var M=f?0:k.length-1;f?M=0;f?M++:M--){var x=i.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:H.escapeString(a.globals.seriesNames[M]),rel:M+1,"data:realIndex":M});if(this.ctx.series.addCollapsedClassToSeries(x,M),a.config.chart.dropShadow.enabled){var I=a.config.chart.dropShadow;new W(this.ctx).dropShadow(x,I,M)}for(var $=0,N=a.config.plotOptions.heatmap.shadeIntensity,L=0;L-1&&this.pieClicked(I),i.config.dataLabels.enabled){var j=m.x,R=m.y,K=100*N/this.fullAngle+"%";if(N!==0&&i.config.plotOptions.pie.dataLabels.minAngleToShowLabelthis.fullAngle?a.endAngle=a.endAngle-(d+w):d+w=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle&&(f=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle-.01),Math.ceil(f)>this.fullAngle&&(f-=this.fullAngle);var k=Math.PI*(f-90)/180,M=a.centerX+c*Math.cos(w),x=a.centerY+c*Math.sin(w),I=a.centerX+c*Math.cos(k),$=a.centerY+c*Math.sin(k),N=H.polarToCartesian(a.centerX,a.centerY,a.donutSize,f),L=H.polarToCartesian(a.centerX,a.centerY,a.donutSize,p),F=d>180?1:0,V=["M",M,x,"A",c,c,0,F,1,I,$];return a.chartType==="donut"?[].concat(V,["L",N.x,N.y,"A",a.donutSize,a.donutSize,0,F,0,L.x,L.y,"L",M,x,"z"]).join(" "):a.chartType==="pie"||a.chartType==="polarArea"?[].concat(V,["L",a.centerX,a.centerY,"L",M,x]).join(" "):[].concat(V).join(" ")}},{key:"drawPolarElements",value:function(s){var a=this.w,i=new J(this.ctx),d=new _(this.ctx),c=new t2(this.ctx),p=d.group(),w=d.group(),f=i.niceScale(0,Math.ceil(this.maxY),a.config.yaxis[0].tickAmount,0,!0),k=f.result.reverse(),M=f.result.length;this.maxY=f.niceMax;for(var x=a.globals.radialSize,I=x/(M-1),$=0;$1&&s.total.show&&(c=s.total.color);var w=p.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),f=p.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");i=(0,s.value.formatter)(i,p),d||typeof s.total.formatter!="function"||(i=s.total.formatter(p));var k=a===s.total.label;a=s.name.formatter(a,k,p),w!==null&&(w.textContent=a),f!==null&&(f.textContent=i),w!==null&&(w.style.fill=c)}},{key:"printDataLabelsInner",value:function(s,a){var i=this.w,d=s.getAttribute("data:value"),c=i.globals.seriesNames[parseInt(s.parentNode.getAttribute("rel"),10)-1];i.globals.series.length>1&&this.printInnerLabels(a,c,d,s);var p=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");p!==null&&(p.style.opacity=1)}},{key:"drawSpokes",value:function(s){var a=this,i=this.w,d=new _(this.ctx),c=i.config.plotOptions.polarArea.spokes;if(c.strokeWidth!==0){for(var p=[],w=360/i.globals.series.length,f=0;f1)w&&!a.total.showAlways?k({makeSliceOut:!1,printLabel:!0}):this.printInnerLabels(a,a.total.label,a.total.formatter(c));else if(k({makeSliceOut:!1,printLabel:!0}),!w)if(c.globals.selectedDataPoints.length&&c.globals.series.length>1)if(c.globals.selectedDataPoints[0].length>0){var M=c.globals.selectedDataPoints[0],x=c.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(M));this.printDataLabelsInner(x,a)}else p&&c.globals.selectedDataPoints.length&&c.globals.selectedDataPoints[0].length===0&&(p.style.opacity=0);else p&&c.globals.series.length>1&&(p.style.opacity=0)}}]),T}(),D4=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animDur=0;var a=this.w;this.graphics=new _(this.ctx),this.lineColorArr=a.globals.stroke.colors!==void 0?a.globals.stroke.colors:a.globals.colors,this.defaultSize=a.globals.svgHeight0&&(R=a.getPreviousPath(V));for(var K=0;K=10?s.x>0?(i="start",d+=10):s.x<0&&(i="end",d-=10):i="middle",Math.abs(s.y)>=a-10&&(s.y<0?c-=10:s.y>0&&(c+=10)),{textAnchor:i,newX:d,newY:c}}},{key:"getPreviousPath",value:function(s){for(var a=this.w,i=null,d=0;d0&&parseInt(c.realIndex,10)===parseInt(s,10)&&a.globals.previousPaths[d].paths[0]!==void 0&&(i=a.globals.previousPaths[d].paths[0].d)}return i}},{key:"getDataPointsPos",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:this.dataPointsLen;s=s||[],a=a||[];for(var d=[],c=0;c=360&&(L=360-Math.abs(this.startAngle)-.1);var F=c.drawPath({d:"",stroke:$,strokeWidth:k*parseInt(I.strokeWidth,10)/100,fill:"none",strokeOpacity:I.opacity,classes:"apexcharts-radialbar-area"});if(I.dropShadow.enabled){var V=I.dropShadow;w.dropShadow(F,V)}x.add(F),F.attr("id","apexcharts-radialbarTrack-"+M),this.animatePaths(F,{centerX:i.centerX,centerY:i.centerY,endAngle:L,startAngle:N,size:i.size,i:M,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:d.globals.easing})}return p}},{key:"drawArcs",value:function(i){var d=this.w,c=new _(this.ctx),p=new Ft(this.ctx),w=new W(this.ctx),f=c.group(),k=this.getStrokeWidth(i);i.size=i.size-k/2;var M=d.config.plotOptions.radialBar.hollow.background,x=i.size-k*i.series.length-this.margin*i.series.length-k*parseInt(d.config.plotOptions.radialBar.track.strokeWidth,10)/100/2,I=x-d.config.plotOptions.radialBar.hollow.margin;d.config.plotOptions.radialBar.hollow.image!==void 0&&(M=this.drawHollowImage(i,f,x,M));var $=this.drawHollow({size:I,centerX:i.centerX,centerY:i.centerY,fill:M||"transparent"});if(d.config.plotOptions.radialBar.hollow.dropShadow.enabled){var N=d.config.plotOptions.radialBar.hollow.dropShadow;w.dropShadow($,N)}var L=1;!this.radialDataLabels.total.show&&d.globals.series.length>1&&(L=0);var F=null;this.radialDataLabels.show&&(F=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:x,centerX:i.centerX,centerY:i.centerY,opacity:L})),d.config.plotOptions.radialBar.hollow.position==="back"&&(f.add($),F&&f.add(F));var V=!1;d.config.plotOptions.radialBar.inverseOrder&&(V=!0);for(var Z=V?i.series.length-1:0;V?Z>=0:Z100?100:i.series[Z])/100,Q=Math.round(this.totalAngle*K)+this.startAngle,ot=void 0;d.globals.dataChanged&&(R=this.startAngle,ot=Math.round(this.totalAngle*H.negToZero(d.globals.previousPaths[Z])/100)+R),Math.abs(Q)+Math.abs(j)>=360&&(Q-=.01),Math.abs(ot)+Math.abs(R)>=360&&(ot-=.01);var it=Q-j,vt=Array.isArray(d.config.stroke.dashArray)?d.config.stroke.dashArray[Z]:d.config.stroke.dashArray,zt=c.drawPath({d:"",stroke:y,strokeWidth:k,fill:"none",fillOpacity:d.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+Z,strokeDashArray:vt});if(_.setAttrs(zt.node,{"data:angle":it,"data:value":i.series[Z]}),d.config.chart.dropShadow.enabled){var Mt=d.config.chart.dropShadow;w.dropShadow(zt,Mt,Z)}w.setSelectionFilter(zt,0,Z),this.addListeners(zt,this.radialDataLabels),m.add(zt),zt.attr({index:0,j:Z});var Et=0;!this.initialAnim||d.globals.resized||d.globals.dataChanged||(Et=d.config.chart.animations.speed),d.globals.dataChanged&&(Et=d.config.chart.animations.dynamicAnimation.speed),this.animDur=Et/(1.2*i.series.length)+this.animDur,this.animBeginArr.push(this.animDur),this.animatePaths(zt,{centerX:i.centerX,centerY:i.centerY,endAngle:Q,startAngle:j,prevEndAngle:ot,prevStartAngle:R,size:i.size,i:Z,totalItems:2,animBeginArr:this.animBeginArr,dur:Et,shouldSetPrevPaths:!0,easing:d.globals.easing})}return{g:f,elHollow:$,dataLabels:F}}},{key:"drawHollow",value:function(i){var d=new _(this.ctx).drawCircle(2*i.size);return d.attr({class:"apexcharts-radialbar-hollow",cx:i.centerX,cy:i.centerY,r:i.size,fill:i.fill}),d}},{key:"drawHollowImage",value:function(i,d,c,p){var w=this.w,f=new Ft(this.ctx),k=H.randomId(),M=w.config.plotOptions.radialBar.hollow.image;if(w.config.plotOptions.radialBar.hollow.imageClipped)f.clippedImgArea({width:c,height:c,image:M,patternID:"pattern".concat(w.globals.cuid).concat(k)}),p="url(#pattern".concat(w.globals.cuid).concat(k,")");else{var x=w.config.plotOptions.radialBar.hollow.imageWidth,I=w.config.plotOptions.radialBar.hollow.imageHeight;if(x===void 0&&I===void 0){var $=w.globals.dom.Paper.image(M).loaded(function(L){this.move(i.centerX-L.width/2+w.config.plotOptions.radialBar.hollow.imageOffsetX,i.centerY-L.height/2+w.config.plotOptions.radialBar.hollow.imageOffsetY)});d.add($)}else{var N=w.globals.dom.Paper.image(M).loaded(function(L){this.move(i.centerX-x/2+w.config.plotOptions.radialBar.hollow.imageOffsetX,i.centerY-I/2+w.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(x,I)});d.add(N)}}return p}},{key:"getStrokeWidth",value:function(i){var d=this.w;return i.size*(100-parseInt(d.config.plotOptions.radialBar.hollow.size,10))/100/(i.series.length+1)-this.margin}}]),a}(),O4=function(T){C(a,Sr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return b(a,[{key:"draw",value:function(i,d){var c=this.w,p=new _(this.ctx);this.rangeBarOptions=this.w.config.plotOptions.rangeBar,this.series=i,this.seriesRangeStart=c.globals.seriesRangeStart,this.seriesRangeEnd=c.globals.seriesRangeEnd,this.barHelpers.initVariables(i);for(var w=p.group({class:"apexcharts-rangebar-series apexcharts-plot-series"}),f=0;f0&&(this.visibleI=this.visibleI+1);var V=0,Z=0;this.yRatio.length>1&&(this.yaxisIndex=L);var m=this.barHelpers.initialPositions();N=m.y,I=m.zeroW,$=m.x,Z=m.barWidth,V=m.barHeight,k=m.xDivision,M=m.yDivision,x=m.zeroH;for(var y=p.group({class:"apexcharts-datalabels","data:realIndex":L}),j=p.group({class:"apexcharts-rangebar-goals-markers"}),R=0;R0});return this.isHorizontal?(p=L.config.plotOptions.bar.rangeBarGroupRows?f+I*y:f+M*this.visibleI+I*y,j>-1&&!L.config.plotOptions.bar.rangeBarOverlap&&(F=L.globals.seriesRange[d][j].overlaps).indexOf(V)>-1&&(p=(M=N.barHeight/F.length)*this.visibleI+I*(100-parseInt(this.barOptions.barHeight,10))/100/2+M*(this.visibleI+F.indexOf(V))+I*y)):(y>-1&&(w=L.config.plotOptions.bar.rangeBarGroupRows?k+$*y:k+x*this.visibleI+$*y),j>-1&&!L.config.plotOptions.bar.rangeBarOverlap&&(F=L.globals.seriesRange[d][j].overlaps).indexOf(V)>-1&&(w=(x=N.barWidth/F.length)*this.visibleI+$*(100-parseInt(this.barOptions.barWidth,10))/100/2+x*(this.visibleI+F.indexOf(V))+$*y)),{barYPosition:p,barXPosition:w,barHeight:M,barWidth:x}}},{key:"drawRangeColumnPaths",value:function(i){var d=i.indexes,c=i.x,p=i.xDivision,w=i.barWidth,f=i.barXPosition,k=i.zeroH,M=this.w,x=d.i,I=d.j,$=this.yRatio[this.yaxisIndex],N=d.realIndex,L=this.getRangeValue(N,I),F=Math.min(L.start,L.end),V=Math.max(L.start,L.end);this.series[x][I]===void 0||this.series[x][I]===null?F=k:(F=k-F/$,V=k-V/$);var Z=Math.abs(V-F),m=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:w,y1:F,y2:V,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,realIndex:d.realIndex,i:N,j:I,w:M});return M.globals.isXNumeric||(c+=p),{pathTo:m.pathTo,pathFrom:m.pathFrom,barHeight:Z,x:c,y:V,goalY:this.barHelpers.getGoalValues("y",null,k,x,I),barXPosition:f}}},{key:"drawRangeBarPaths",value:function(i){var d=i.indexes,c=i.y,p=i.y1,w=i.y2,f=i.yDivision,k=i.barHeight,M=i.barYPosition,x=i.zeroW,I=this.w,$=x+p/this.invertedYRatio,N=x+w/this.invertedYRatio,L=Math.abs(N-$),F=this.barHelpers.getBarpaths({barYPosition:M,barHeight:k,x1:$,x2:N,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,i:d.realIndex,realIndex:d.realIndex,j:d.j,w:I});return I.globals.isXNumeric||(c+=f),{pathTo:F.pathTo,pathFrom:F.pathFrom,barWidth:L,x:N,goalX:this.barHelpers.getGoalValues("x",x,null,d.realIndex,d.j),y:c}}},{key:"getRangeValue",value:function(i,d){var c=this.w;return{start:c.globals.seriesRangeStart[i][d],end:c.globals.seriesRangeEnd[i][d]}}}]),a}(),T4=function(){function T(s){g(this,T),this.w=s.w,this.lineCtx=s}return b(T,[{key:"sameValueSeriesFix",value:function(s,a){var i=this.w;if((i.config.fill.type==="gradient"||i.config.fill.type[s]==="gradient")&&new tt(this.lineCtx.ctx,i).seriesHaveSameValues(s)){var d=a[s].slice();d[d.length-1]=d[d.length-1]+1e-6,a[s]=d}return a}},{key:"calculatePoints",value:function(s){var a=s.series,i=s.realIndex,d=s.x,c=s.y,p=s.i,w=s.j,f=s.prevY,k=this.w,M=[],x=[];if(w===0){var I=this.lineCtx.categoryAxisCorrection+k.config.markers.offsetX;k.globals.isXNumeric&&(I=(k.globals.seriesX[i][0]-k.globals.minX)/this.lineCtx.xRatio+k.config.markers.offsetX),M.push(I),x.push(H.isNumber(a[p][0])?f+k.config.markers.offsetY:null),M.push(d+k.config.markers.offsetX),x.push(H.isNumber(a[p][w+1])?c+k.config.markers.offsetY:null)}else M.push(d+k.config.markers.offsetX),x.push(H.isNumber(a[p][w+1])?c+k.config.markers.offsetY:null);return{x:M,y:x}}},{key:"checkPreviousPaths",value:function(s){for(var a=s.pathFromLine,i=s.pathFromArea,d=s.realIndex,c=this.w,p=0;p0&&parseInt(w.realIndex,10)===parseInt(d,10)&&(w.type==="line"?(this.lineCtx.appendPathFrom=!1,a=c.globals.previousPaths[p].paths[0].d):w.type==="area"&&(this.lineCtx.appendPathFrom=!1,i=c.globals.previousPaths[p].paths[0].d,c.config.stroke.show&&c.globals.previousPaths[p].paths[1]&&(a=c.globals.previousPaths[p].paths[1].d)))}return{pathFromLine:a,pathFromArea:i}}},{key:"determineFirstPrevY",value:function(s){var a,i=s.i,d=s.series,c=s.prevY,p=s.lineYPosition,w=this.w;if(((a=d[i])===null||a===void 0?void 0:a[0])!==void 0)c=(p=w.config.chart.stacked&&i>0?this.lineCtx.prevSeriesY[i-1][0]:this.lineCtx.zeroY)-d[i][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]+2*(this.lineCtx.isReversed?d[i][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]:0);else if(w.config.chart.stacked&&i>0&&d[i][0]===void 0){for(var f=i-1;f>=0;f--)if(d[f][0]!==null&&d[f][0]!==void 0){c=p=this.lineCtx.prevSeriesY[f][0];break}}return{prevY:c,lineYPosition:p}}}]),T}(),R4=function(T){for(var s,a,i,d,c=function(M){for(var x=[],I=M[0],$=M[1],N=x[0]=Qa(I,$),L=1,F=M.length-1;L9&&(d=3*i/Math.sqrt(d),c[f]=d*s,c[f+1]=d*a);for(var k=0;k<=p;k++)d=(T[Math.min(p,k+1)][0]-T[Math.max(0,k-1)][0])/(6*(1+c[k]*c[k])),w.push([d||0,c[k]*d||0]);return w},Ka=function(T){for(var s="",a=0;a4?(s+="C".concat(i[0],", ").concat(i[1]),s+=", ".concat(i[2],", ").concat(i[3]),s+=", ".concat(i[4],", ").concat(i[5])):d>2&&(s+="S".concat(i[0],", ").concat(i[1]),s+=", ".concat(i[2],", ").concat(i[3]))}return s},n2=function(T){var s=R4(T),a=T[1],i=T[0],d=[],c=s[1],p=s[0];d.push(i,[i[0]+p[0],i[1]+p[1],a[0]-c[0],a[1]-c[1],a[0],a[1]]);for(var w=2,f=s.length;w0&&(F=(c.globals.seriesX[I][0]-c.globals.minX)/this.xRatio),L.push(F);var V,Z=F,m=void 0,y=Z,j=this.zeroY,R=this.zeroY;j=this.lineHelpers.determineFirstPrevY({i:x,series:s,prevY:j,lineYPosition:0}).prevY,$.push(j),V=j,w==="rangeArea"&&(m=R=this.lineHelpers.determineFirstPrevY({i:x,series:d,prevY:R,lineYPosition:0}).prevY,N.push(R));var K={type:w,series:s,realIndex:I,i:x,x:F,y:1,pX:Z,pY:V,pathsFrom:this._calculatePathsFrom({type:w,series:s,i:x,realIndex:I,prevX:y,prevY:j,prevY2:R}),linePaths:[],areaPaths:[],seriesIndex:i,lineYPosition:0,xArrj:L,yArrj:$,y2Arrj:N,seriesRangeEnd:d},Q=this._iterateOverDataPoints(h(h({},K),{},{iterations:w==="rangeArea"?s[x].length-1:void 0,isRangeStart:!0}));if(w==="rangeArea"){var ot=this._calculatePathsFrom({series:d,i:x,realIndex:I,prevX:y,prevY:R}),it=this._iterateOverDataPoints(h(h({},K),{},{series:d,pY:m,pathsFrom:ot,iterations:d[x].length-1,isRangeStart:!1}));Q.linePaths[0]=it.linePath+Q.linePath,Q.pathFromLine=it.pathFromLine+Q.pathFromLine}this._handlePaths({type:w,realIndex:I,i:x,paths:Q}),this.elSeries.add(this.elPointsMain),this.elSeries.add(this.elDataLabelsWrap),M.push(this.elSeries)}if(c.config.chart.stacked)for(var vt=M.length;vt>0;vt--)f.add(M[vt-1]);else for(var zt=0;zt1&&(this.yaxisIndex=i),this.isReversed=d.config.yaxis[this.yaxisIndex]&&d.config.yaxis[this.yaxisIndex].reversed,this.zeroY=d.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?d.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),this.areaBottomY=this.zeroY,(this.zeroY>d.globals.gridHeight||d.config.plotOptions.area.fillTo==="end")&&(this.areaBottomY=d.globals.gridHeight),this.categoryAxisCorrection=this.xDivision/2,this.elSeries=c.group({class:"apexcharts-series",seriesName:H.escapeString(d.globals.seriesNames[i])}),this.elPointsMain=c.group({class:"apexcharts-series-markers-wrap","data:realIndex":i}),this.elDataLabelsWrap=c.group({class:"apexcharts-datalabels","data:realIndex":i});var p=s[a].length===d.globals.dataPoints;this.elSeries.attr({"data:longestSeries":p,rel:a+1,"data:realIndex":i}),this.appendPathFrom=!0}},{key:"_calculatePathsFrom",value:function(s){var a,i,d,c,p=s.type,w=s.series,f=s.i,k=s.realIndex,M=s.prevX,x=s.prevY,I=s.prevY2,$=this.w,N=new _(this.ctx);if(w[f][0]===null){for(var L=0;L0){var F=this.lineHelpers.checkPreviousPaths({pathFromLine:d,pathFromArea:c,realIndex:k});d=F.pathFromLine,c=F.pathFromArea}return{prevX:M,prevY:x,linePath:a,areaPath:i,pathFromLine:d,pathFromArea:c}}},{key:"_handlePaths",value:function(s){var a=s.type,i=s.realIndex,d=s.i,c=s.paths,p=this.w,w=new _(this.ctx),f=new Ft(this.ctx);this.prevSeriesY.push(c.yArrj),p.globals.seriesXvalues[i]=c.xArrj,p.globals.seriesYvalues[i]=c.yArrj;var k=p.config.forecastDataPoints;if(k.count>0&&a!=="rangeArea"){var M=p.globals.seriesXvalues[i][p.globals.seriesXvalues[i].length-k.count-1],x=w.drawRect(M,0,p.globals.gridWidth,p.globals.gridHeight,0);p.globals.dom.elForecastMask.appendChild(x.node);var I=w.drawRect(0,0,M,p.globals.gridHeight,0);p.globals.dom.elNonForecastMask.appendChild(I.node)}this.pointsChart||p.globals.delayedElements.push({el:this.elPointsMain.node,index:i});var $={i:d,realIndex:i,animationDelay:d,initialSpeed:p.config.chart.animations.speed,dataChangeSpeed:p.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(a)};if(a==="area")for(var N=f.fillPath({seriesNumber:i}),L=0;L0&&a!=="rangeArea"){var K=w.renderPaths(j);K.node.setAttribute("stroke-dasharray",k.dashArray),k.strokeWidth&&K.node.setAttribute("stroke-width",k.strokeWidth),this.elSeries.add(K),K.attr("clip-path","url(#forecastMask".concat(p.globals.cuid,")")),R.attr("clip-path","url(#nonForecastMask".concat(p.globals.cuid,")"))}}}}},{key:"_iterateOverDataPoints",value:function(s){var a=s.type,i=s.series,d=s.iterations,c=s.realIndex,p=s.i,w=s.x,f=s.y,k=s.pX,M=s.pY,x=s.pathsFrom,I=s.linePaths,$=s.areaPaths,N=s.seriesIndex,L=s.lineYPosition,F=s.xArrj,V=s.yArrj,Z=s.y2Arrj,m=s.isRangeStart,y=s.seriesRangeEnd,j=this.w,R=new _(this.ctx),K=this.yRatio,Q=x.prevY,ot=x.linePath,it=x.areaPath,vt=x.pathFromLine,zt=x.pathFromArea,Mt=H.isNumber(j.globals.minYArr[c])?j.globals.minYArr[c]:j.globals.minY;d||(d=j.globals.dataPoints>1?j.globals.dataPoints-1:j.globals.dataPoints);for(var Et=f,qt=0;qt0&&j.globals.collapsedSeries.length-1){je--;break}return je>=0?je:0}(p-1)][qt+1]:L=this.zeroY:L=this.zeroY,ae?f=L-Mt/K[this.yaxisIndex]+2*(this.isReversed?Mt/K[this.yaxisIndex]:0):(f=L-i[p][qt+1]/K[this.yaxisIndex]+2*(this.isReversed?i[p][qt+1]/K[this.yaxisIndex]:0),a==="rangeArea"&&(Et=L-y[p][qt+1]/K[this.yaxisIndex]+2*(this.isReversed?y[p][qt+1]/K[this.yaxisIndex]:0))),F.push(w),V.push(f),Z.push(Et);var de=this.lineHelpers.calculatePoints({series:i,x:w,y:f,realIndex:c,i:p,j:qt,prevY:Q}),xe=this._createPaths({type:a,series:i,i:p,realIndex:c,j:qt,x:w,y:f,y2:Et,xArrj:F,yArrj:V,y2Arrj:Z,pX:k,pY:M,linePath:ot,areaPath:it,linePaths:I,areaPaths:$,seriesIndex:N,isRangeStart:m});$=xe.areaPaths,I=xe.linePaths,k=xe.pX,M=xe.pY,it=xe.areaPath,ot=xe.linePath,!this.appendPathFrom||j.config.stroke.curve==="monotoneCubic"&&a==="rangeArea"||(vt+=R.line(w,this.zeroY),zt+=R.line(w,this.zeroY)),this.handleNullDataPoints(i,de,p,qt,c),this._handleMarkersAndLabels({type:a,pointsPos:de,i:p,j:qt,realIndex:c,isRangeStart:m})}return{yArrj:V,xArrj:F,pathFromArea:zt,areaPaths:$,pathFromLine:vt,linePaths:I,linePath:ot,areaPath:it}}},{key:"_handleMarkersAndLabels",value:function(s){var a=s.type,i=s.pointsPos,d=s.isRangeStart,c=s.i,p=s.j,w=s.realIndex,f=this.w,k=new Rt(this.ctx);if(this.pointsChart)this.scatter.draw(this.elSeries,p,{realIndex:w,pointsPos:i,zRatio:this.zRatio,elParent:this.elPointsMain});else{f.globals.series[c].length>1&&this.elPointsMain.node.classList.add("apexcharts-element-hidden");var M=this.markers.plotChartMarkers(i,w,p+1);M!==null&&this.elPointsMain.add(M)}var x=k.drawDataLabel({type:a,isRangeStart:d,pos:i,i:w,j:p+1});x!==null&&this.elDataLabelsWrap.add(x)}},{key:"_createPaths",value:function(s){var a=s.type,i=s.series,d=s.i,c=s.realIndex,p=s.j,w=s.x,f=s.y,k=s.xArrj,M=s.yArrj,x=s.y2,I=s.y2Arrj,$=s.pX,N=s.pY,L=s.linePath,F=s.areaPath,V=s.linePaths,Z=s.areaPaths,m=s.seriesIndex,y=s.isRangeStart,j=this.w,R=new _(this.ctx),K=j.config.stroke.curve,Q=this.areaBottomY;if(Array.isArray(j.config.stroke.curve)&&(K=Array.isArray(m)?j.config.stroke.curve[m[d]]:j.config.stroke.curve[d]),(a==="rangeArea"&&(j.globals.hasNullValues||j.config.forecastDataPoints.count>0)||j.globals.hasNullValues)&&K==="monotoneCubic"&&(K="straight"),K==="smooth"){var ot=.35*(w-$);j.globals.hasNullValues?(i[d][p]!==null&&(i[d][p+1]!==null?(L=R.move($,N)+R.curve($+ot,N,w-ot,f,w+1,f),F=R.move($+1,N)+R.curve($+ot,N,w-ot,f,w+1,f)+R.line(w,Q)+R.line($,Q)+"z"):(L=R.move($,N),F=R.move($,N)+"z")),V.push(L),Z.push(F)):(L+=R.curve($+ot,N,w-ot,f,w,f),F+=R.curve($+ot,N,w-ot,f,w,f)),$=w,N=f,p===i[d].length-2&&(F+=R.curve($,N,w,f,w,Q)+R.move(w,f)+"z",a==="rangeArea"&&y?L+=R.curve($,N,w,f,w,x)+R.move(w,x)+"z":j.globals.hasNullValues||(V.push(L),Z.push(F)))}else if(K==="monotoneCubic"){if(a==="rangeArea"?k.length===j.globals.dataPoints:p===i[d].length-2){var it=k.map(function(ie,de){return[k[de],M[de]]}),vt=n2(it);if(L+=Ka(vt),F+=Ka(vt),$=w,N=f,a==="rangeArea"&&y){L+=R.line(k[k.length-1],I[I.length-1]);var zt=k.slice().reverse(),Mt=I.slice().reverse(),Et=zt.map(function(ie,de){return[zt[de],Mt[de]]}),qt=n2(Et);F=L+=Ka(qt)}else F+=R.curve($,N,w,f,w,Q)+R.move(w,f)+"z";V.push(L),Z.push(F)}}else{if(i[d][p+1]===null){L+=R.move(w,f);var ae=j.globals.isXNumeric?(j.globals.seriesX[c][p]-j.globals.minX)/this.xRatio:w-this.xDivision;F=F+R.line(ae,Q)+R.move(w,f)+"z"}i[d][p]===null&&(L+=R.move(w,f),F+=R.move(w,Q)),K==="stepline"?(L=L+R.line(w,null,"H")+R.line(null,f,"V"),F=F+R.line(w,null,"H")+R.line(null,f,"V")):K==="straight"&&(L+=R.line(w,f),F+=R.line(w,f)),p===i[d].length-2&&(F=F+R.line(w,Q)+R.move(w,f)+"z",a==="rangeArea"&&y?L=L+R.line(w,x)+R.move(w,x)+"z":(V.push(L),Z.push(F)))}return{linePaths:V,areaPaths:Z,pX:$,pY:N,linePath:L,areaPath:F}}},{key:"handleNullDataPoints",value:function(s,a,i,d,c){var p=this.w;if(s[i][d]===null&&p.config.markers.showNullDataPoints||s[i].length===1){var w=this.markers.plotChartMarkers(a,c,d+1,this.strokeWidth-p.config.markers.strokeWidth/2,!0);w!==null&&this.elPointsMain.add(w)}}}]),T}();window.TreemapSquared={},window.TreemapSquared.generate=function(){function T(w,f,k,M){this.xoffset=w,this.yoffset=f,this.height=M,this.width=k,this.shortestEdge=function(){return Math.min(this.height,this.width)},this.getCoordinates=function(x){var I,$=[],N=this.xoffset,L=this.yoffset,F=c(x)/this.height,V=c(x)/this.width;if(this.width>=this.height)for(I=0;I=this.height){var $=x/this.height,N=this.width-$;I=new T(this.xoffset+$,this.yoffset,N,this.height)}else{var L=x/this.width,F=this.height-L;I=new T(this.xoffset,this.yoffset+L,this.width,F)}return I}}function s(w,f,k,M,x){M=M===void 0?0:M,x=x===void 0?0:x;var I=a(function($,N){var L,F=[],V=N/c($);for(L=0;L<$.length;L++)F[L]=$[L]*V;return F}(w,f*k),[],new T(M,x,f,k),[]);return function($){var N,L,F=[];for(N=0;N<$.length;N++)for(L=0;L<$[N].length;L++)F.push($[N][L]);return F}(I)}function a(w,f,k,M){var x,I,$;if(w.length!==0)return x=k.shortestEdge(),function(N,L,F){var V;if(N.length===0)return!0;(V=N.slice()).push(L);var Z=i(N,F),m=i(V,F);return Z>=m}(f,I=w[0],x)?(f.push(I),a(w.slice(1),f,k,M)):($=k.cutArea(c(f),M),M.push(k.getCoordinates(f)),a(w,[],$,M)),M;M.push(k.getCoordinates(f))}function i(w,f){var k=Math.min.apply(Math,w),M=Math.max.apply(Math,w),x=c(w);return Math.max(Math.pow(f,2)*M/Math.pow(x,2),Math.pow(x,2)/(Math.pow(f,2)*k))}function d(w){return w&&w.constructor===Array}function c(w){var f,k=0;for(f=0;fp-d&&k.width<=w-c){var M=f.rotateAroundCenter(s.node);s.node.setAttribute("transform","rotate(-90 ".concat(M.x," ").concat(M.y,") translate(").concat(k.height/3,")"))}}},{key:"truncateLabels",value:function(s,a,i,d,c,p){var w=new _(this.ctx),f=w.getTextRects(s,a).width+this.w.config.stroke.width+5>c-i&&p-d>c-i?p-d:c-i,k=w.getTextBasedOnMaxWidth({text:s,maxWidth:f,fontSize:a});return s.length!==k.length&&f/a<5?"":k}},{key:"animateTreemap",value:function(s,a,i,d){var c=new U(this.ctx);c.animateRect(s,{x:a.x,y:a.y,width:a.width,height:a.height},{x:i.x,y:i.y,width:i.width,height:i.height},d,function(){c.animationCompleted(s)})}}]),T}(),V4=86400,_4=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.timeScaleArray=[],this.utc=this.w.config.xaxis.labels.datetimeUTC}return b(T,[{key:"calculateTimeScaleTicks",value:function(s,a){var i=this,d=this.w;if(d.globals.allSeriesCollapsed)return d.globals.labels=[],d.globals.timescaleLabels=[],[];var c=new dt(this.ctx),p=(a-s)/864e5;this.determineInterval(p),d.globals.disableZoomIn=!1,d.globals.disableZoomOut=!1,p<.00011574074074074075?d.globals.disableZoomIn=!0:p>5e4&&(d.globals.disableZoomOut=!0);var w=c.getTimeUnitsfromTimestamp(s,a,this.utc),f=d.globals.gridWidth/p,k=f/24,M=k/60,x=M/60,I=Math.floor(24*p),$=Math.floor(1440*p),N=Math.floor(p*V4),L=Math.floor(p),F=Math.floor(p/30),V=Math.floor(p/365),Z={minMillisecond:w.minMillisecond,minSecond:w.minSecond,minMinute:w.minMinute,minHour:w.minHour,minDate:w.minDate,minMonth:w.minMonth,minYear:w.minYear},m={firstVal:Z,currentMillisecond:Z.minMillisecond,currentSecond:Z.minSecond,currentMinute:Z.minMinute,currentHour:Z.minHour,currentMonthDate:Z.minDate,currentDate:Z.minDate,currentMonth:Z.minMonth,currentYear:Z.minYear,daysWidthOnXAxis:f,hoursWidthOnXAxis:k,minutesWidthOnXAxis:M,secondsWidthOnXAxis:x,numberOfSeconds:N,numberOfMinutes:$,numberOfHours:I,numberOfDays:L,numberOfMonths:F,numberOfYears:V};switch(this.tickInterval){case"years":this.generateYearScale(m);break;case"months":case"half_year":this.generateMonthScale(m);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(m);break;case"hours":this.generateHourScale(m);break;case"minutes_fives":case"minutes":this.generateMinuteScale(m);break;case"seconds_tens":case"seconds_fives":case"seconds":this.generateSecondScale(m)}var y=this.timeScaleArray.map(function(j){var R={position:j.position,unit:j.unit,year:j.year,day:j.day?j.day:1,hour:j.hour?j.hour:0,month:j.month+1};return j.unit==="month"?h(h({},R),{},{day:1,value:j.value+1}):j.unit==="day"||j.unit==="hour"?h(h({},R),{},{value:j.value}):j.unit==="minute"?h(h({},R),{},{value:j.value,minute:j.value}):j.unit==="second"?h(h({},R),{},{value:j.value,minute:j.minute,second:j.second}):j});return y.filter(function(j){var R=1,K=Math.ceil(d.globals.gridWidth/120),Q=j.value;d.config.xaxis.tickAmount!==void 0&&(K=d.config.xaxis.tickAmount),y.length>K&&(R=Math.floor(y.length/K));var ot=!1,it=!1;switch(i.tickInterval){case"years":j.unit==="year"&&(ot=!0);break;case"half_year":R=7,j.unit==="year"&&(ot=!0);break;case"months":R=1,j.unit==="year"&&(ot=!0);break;case"months_fortnight":R=15,j.unit!=="year"&&j.unit!=="month"||(ot=!0),Q===30&&(it=!0);break;case"months_days":R=10,j.unit==="month"&&(ot=!0),Q===30&&(it=!0);break;case"week_days":R=8,j.unit==="month"&&(ot=!0);break;case"days":R=1,j.unit==="month"&&(ot=!0);break;case"hours":j.unit==="day"&&(ot=!0);break;case"minutes_fives":case"seconds_fives":Q%5!=0&&(it=!0);break;case"seconds_tens":Q%10!=0&&(it=!0)}if(i.tickInterval==="hours"||i.tickInterval==="minutes_fives"||i.tickInterval==="seconds_tens"||i.tickInterval==="seconds_fives"){if(!it)return!0}else if((Q%R==0||ot)&&!it)return!0})}},{key:"recalcDimensionsBasedOnFormat",value:function(s,a){var i=this.w,d=this.formatDates(s),c=this.removeOverlappingTS(d);i.globals.timescaleLabels=c.slice(),new se(this.ctx).plotCoords()}},{key:"determineInterval",value:function(s){var a=24*s,i=60*a;switch(!0){case s/365>5:this.tickInterval="years";break;case s>800:this.tickInterval="half_year";break;case s>180:this.tickInterval="months";break;case s>90:this.tickInterval="months_fortnight";break;case s>60:this.tickInterval="months_days";break;case s>30:this.tickInterval="week_days";break;case s>2:this.tickInterval="days";break;case a>2.4:this.tickInterval="hours";break;case i>15:this.tickInterval="minutes_fives";break;case i>5:this.tickInterval="minutes";break;case i>1:this.tickInterval="seconds_tens";break;case 60*i>20:this.tickInterval="seconds_fives";break;default:this.tickInterval="seconds"}}},{key:"generateYearScale",value:function(s){var a=s.firstVal,i=s.currentMonth,d=s.currentYear,c=s.daysWidthOnXAxis,p=s.numberOfYears,w=a.minYear,f=0,k=new dt(this.ctx),M="year";if(a.minDate>1||a.minMonth>0){var x=k.determineRemainingDaysOfYear(a.minYear,a.minMonth,a.minDate);f=(k.determineDaysOfYear(a.minYear)-x+1)*c,w=a.minYear+1,this.timeScaleArray.push({position:f,value:w,unit:M,year:w,month:H.monthMod(i+1)})}else a.minDate===1&&a.minMonth===0&&this.timeScaleArray.push({position:f,value:w,unit:M,year:d,month:H.monthMod(i+1)});for(var I=w,$=f,N=0;N1){k=(M.determineDaysOfMonths(d+1,a.minYear)-i+1)*p,f=H.monthMod(d+1);var $=c+I,N=H.monthMod(f),L=f;f===0&&(x="year",L=$,N=1,$+=I+=1),this.timeScaleArray.push({position:k,value:L,unit:x,year:$,month:N})}else this.timeScaleArray.push({position:k,value:f,unit:x,year:c,month:H.monthMod(d)});for(var F=f+1,V=k,Z=0,m=1;Zw.determineDaysOfMonths(y+1,j)&&(M=1,f="month",$=y+=1),y},I=(24-a.minHour)*c,$=k,N=x(M,i,d);a.minHour===0&&a.minDate===1?(I=0,$=H.monthMod(a.minMonth),f="month",M=a.minDate,p++):a.minDate!==1&&a.minHour===0&&a.minMinute===0&&(I=0,k=a.minDate,$=k,N=x(M=k,i,d)),this.timeScaleArray.push({position:I,value:$,unit:f,year:this._getYear(d,N,0),month:H.monthMod(N),day:M});for(var L=I,F=0;Ff.determineDaysOfMonths(K+1,c)&&(F=1,K+=1),{month:K,date:F}},x=function(R,K){return R>f.determineDaysOfMonths(K+1,c)?K+=1:K},I=60-(a.minMinute+a.minSecond/60),$=I*p,N=a.minHour+1,L=N+1;I===60&&($=0,L=(N=a.minHour)+1);var F=i,V=x(F,d);this.timeScaleArray.push({position:$,value:N,unit:k,day:F,hour:L,year:c,month:H.monthMod(V)});for(var Z=$,m=0;m=24&&(L=0,k="day",V=M(F+=1,V).month,V=x(F,V));var y=this._getYear(c,V,0);Z=60*p+Z;var j=L===0?F:L;this.timeScaleArray.push({position:Z,value:j,unit:k,hour:L,day:F,year:y,month:H.monthMod(V)}),L++}}},{key:"generateMinuteScale",value:function(s){for(var a=s.currentMillisecond,i=s.currentSecond,d=s.currentMinute,c=s.currentHour,p=s.currentDate,w=s.currentMonth,f=s.currentYear,k=s.minutesWidthOnXAxis,M=s.secondsWidthOnXAxis,x=s.numberOfMinutes,I=d+1,$=p,N=w,L=f,F=c,V=(60-i-a/1e3)*M,Z=0;Z=60&&(I=0,(F+=1)===24&&(F=0)),this.timeScaleArray.push({position:V,value:I,unit:"minute",hour:F,minute:I,day:$,year:this._getYear(L,N,0),month:H.monthMod(N)}),V+=k,I++}},{key:"generateSecondScale",value:function(s){for(var a=s.currentMillisecond,i=s.currentSecond,d=s.currentMinute,c=s.currentHour,p=s.currentDate,w=s.currentMonth,f=s.currentYear,k=s.secondsWidthOnXAxis,M=s.numberOfSeconds,x=i+1,I=d,$=p,N=w,L=f,F=c,V=(1e3-a)/1e3*k,Z=0;Z=60&&(x=0,++I>=60&&(I=0,++F===24&&(F=0))),this.timeScaleArray.push({position:V,value:x,unit:"second",hour:F,minute:I,second:x,day:$,year:this._getYear(L,N,0),month:H.monthMod(N)}),V+=k,x++}},{key:"createRawDateString",value:function(s,a){var i=s.year;return s.month===0&&(s.month=1),i+="-"+("0"+s.month.toString()).slice(-2),s.unit==="day"?i+=s.unit==="day"?"-"+("0"+a).slice(-2):"-01":i+="-"+("0"+(s.day?s.day:"1")).slice(-2),s.unit==="hour"?i+=s.unit==="hour"?"T"+("0"+a).slice(-2):"T00":i+="T"+("0"+(s.hour?s.hour:"0")).slice(-2),s.unit==="minute"?i+=":"+("0"+a).slice(-2):i+=":"+(s.minute?("0"+s.minute).slice(-2):"00"),s.unit==="second"?i+=":"+("0"+a).slice(-2):i+=":00",this.utc&&(i+=".000Z"),i}},{key:"formatDates",value:function(s){var a=this,i=this.w;return s.map(function(d){var c=d.value.toString(),p=new dt(a.ctx),w=a.createRawDateString(d,c),f=p.getDate(p.parseDate(w));if(a.utc||(f=p.getDate(p.parseDateWithTimezone(w))),i.config.xaxis.labels.format===void 0){var k="dd MMM",M=i.config.xaxis.labels.datetimeFormatter;d.unit==="year"&&(k=M.year),d.unit==="month"&&(k=M.month),d.unit==="day"&&(k=M.day),d.unit==="hour"&&(k=M.hour),d.unit==="minute"&&(k=M.minute),d.unit==="second"&&(k=M.second),c=p.formatDate(f,k)}else c=p.formatDate(f,i.config.xaxis.labels.format);return{dateString:w,position:d.position,value:c,unit:d.unit,year:d.year,month:d.month}})}},{key:"removeOverlappingTS",value:function(s){var a,i=this,d=new _(this.ctx),c=!1;s.length>0&&s[0].value&&s.every(function(f){return f.value.length===s[0].value.length})&&(c=!0,a=d.getTextRects(s[0].value).width);var p=0,w=s.map(function(f,k){if(k>0&&i.w.config.xaxis.labels.hideOverlappingLabels){var M=c?a:d.getTextRects(s[p].value).width,x=s[p].position;return f.position>x+M+10?(p=k,f):null}return f});return w=w.filter(function(f){return f!==null})}},{key:"_getYear",value:function(s,a,i){return s+Math.floor(a/12)+i}}]),T}(),W4=function(){function T(s,a){g(this,T),this.ctx=a,this.w=a.w,this.el=s}return b(T,[{key:"setupElements",value:function(){var s=this.w.globals,a=this.w.config,i=a.chart.type;s.axisCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble","radar","heatmap","treemap"].indexOf(i)>-1,s.xyCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble"].indexOf(i)>-1,s.isBarHorizontal=(a.chart.type==="bar"||a.chart.type==="rangeBar"||a.chart.type==="boxPlot")&&a.plotOptions.bar.horizontal,s.chartClass=".apexcharts"+s.chartID,s.dom.baseEl=this.el,s.dom.elWrap=document.createElement("div"),_.setAttrs(s.dom.elWrap,{id:s.chartClass.substring(1),class:"apexcharts-canvas "+s.chartClass.substring(1)}),this.el.appendChild(s.dom.elWrap),s.dom.Paper=new window.SVG.Doc(s.dom.elWrap),s.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(a.chart.offsetX,", ").concat(a.chart.offsetY,")")}),s.dom.Paper.node.style.background=a.chart.background,this.setSVGDimensions(),s.dom.elLegendForeign=document.createElementNS(s.SVGNS,"foreignObject"),_.setAttrs(s.dom.elLegendForeign,{x:0,y:0,width:s.svgWidth,height:s.svgHeight}),s.dom.elLegendWrap=document.createElement("div"),s.dom.elLegendWrap.classList.add("apexcharts-legend"),s.dom.elLegendWrap.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),s.dom.elLegendForeign.appendChild(s.dom.elLegendWrap),s.dom.Paper.node.appendChild(s.dom.elLegendForeign),s.dom.elGraphical=s.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),s.dom.elDefs=s.dom.Paper.defs(),s.dom.Paper.add(s.dom.elGraphical),s.dom.elGraphical.add(s.dom.elDefs)}},{key:"plotChartType",value:function(s,a){var i=this.w,d=i.config,c=i.globals,p={series:[],i:[]},w={series:[],i:[]},f={series:[],i:[]},k={series:[],i:[]},M={series:[],i:[]},x={series:[],i:[]},I={series:[],i:[]},$={series:[],i:[]},N={series:[],seriesRangeEnd:[],i:[]};c.series.map(function(K,Q){var ot=0;s[Q].type!==void 0?(s[Q].type==="column"||s[Q].type==="bar"?(c.series.length>1&&d.plotOptions.bar.horizontal&&console.warn("Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`"),M.series.push(K),M.i.push(Q),ot++,i.globals.columnSeries=M.series):s[Q].type==="area"?(w.series.push(K),w.i.push(Q),ot++):s[Q].type==="line"?(p.series.push(K),p.i.push(Q),ot++):s[Q].type==="scatter"?(f.series.push(K),f.i.push(Q)):s[Q].type==="bubble"?(k.series.push(K),k.i.push(Q),ot++):s[Q].type==="candlestick"?(x.series.push(K),x.i.push(Q),ot++):s[Q].type==="boxPlot"?(I.series.push(K),I.i.push(Q),ot++):s[Q].type==="rangeBar"?($.series.push(K),$.i.push(Q),ot++):s[Q].type==="rangeArea"?(N.series.push(c.seriesRangeStart[Q]),N.seriesRangeEnd.push(c.seriesRangeEnd[Q]),N.i.push(Q),ot++):console.warn("You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble/candlestick/boxPlot/rangeBar/rangeArea"),ot>1&&(c.comboCharts=!0)):(p.series.push(K),p.i.push(Q))});var L=new Ja(this.ctx,a),F=new Za(this.ctx,a);this.ctx.pie=new e2(this.ctx);var V=new F4(this.ctx);this.ctx.rangeBar=new O4(this.ctx,a);var Z=new D4(this.ctx),m=[];if(c.comboCharts){if(w.series.length>0&&m.push(L.draw(w.series,"area",w.i)),M.series.length>0)if(i.config.chart.stacked){var y=new Qh(this.ctx,a);m.push(y.draw(M.series,M.i))}else this.ctx.bar=new Sr(this.ctx,a),m.push(this.ctx.bar.draw(M.series,M.i));if(N.series.length>0&&m.push(L.draw(N.series,"rangeArea",N.i,N.seriesRangeEnd)),p.series.length>0&&m.push(L.draw(p.series,"line",p.i)),x.series.length>0&&m.push(F.draw(x.series,"candlestick",x.i)),I.series.length>0&&m.push(F.draw(I.series,"boxPlot",I.i)),$.series.length>0&&m.push(this.ctx.rangeBar.draw($.series,$.i)),f.series.length>0){var j=new Ja(this.ctx,a,!0);m.push(j.draw(f.series,"scatter",f.i))}if(k.series.length>0){var R=new Ja(this.ctx,a,!0);m.push(R.draw(k.series,"bubble",k.i))}}else switch(d.chart.type){case"line":m=L.draw(c.series,"line");break;case"area":m=L.draw(c.series,"area");break;case"bar":d.chart.stacked?m=new Qh(this.ctx,a).draw(c.series):(this.ctx.bar=new Sr(this.ctx,a),m=this.ctx.bar.draw(c.series));break;case"candlestick":m=new Za(this.ctx,a).draw(c.series,"candlestick");break;case"boxPlot":m=new Za(this.ctx,a).draw(c.series,d.chart.type);break;case"rangeBar":m=this.ctx.rangeBar.draw(c.series);break;case"rangeArea":m=L.draw(c.seriesRangeStart,"rangeArea",void 0,c.seriesRangeEnd);break;case"heatmap":m=new L4(this.ctx,a).draw(c.series);break;case"treemap":m=new E4(this.ctx,a).draw(c.series);break;case"pie":case"donut":case"polarArea":m=this.ctx.pie.draw(c.series);break;case"radialBar":m=V.draw(c.series);break;case"radar":m=Z.draw(c.series);break;default:m=L.draw(c.series)}return m}},{key:"setSVGDimensions",value:function(){var s=this.w.globals,a=this.w.config;s.svgWidth=a.chart.width,s.svgHeight=a.chart.height;var i=H.getDimensions(this.el),d=a.chart.width.toString().split(/[0-9]+/g).pop();d==="%"?H.isNumber(i[0])&&(i[0].width===0&&(i=H.getDimensions(this.el.parentNode)),s.svgWidth=i[0]*parseInt(a.chart.width,10)/100):d!=="px"&&d!==""||(s.svgWidth=parseInt(a.chart.width,10));var c=a.chart.height.toString().split(/[0-9]+/g).pop();if(s.svgHeight!=="auto"&&s.svgHeight!=="")if(c==="%"){var p=H.getDimensions(this.el.parentNode);s.svgHeight=p[1]*parseInt(a.chart.height,10)/100}else s.svgHeight=parseInt(a.chart.height,10);else s.axisCharts?s.svgHeight=s.svgWidth/1.61:s.svgHeight=s.svgWidth/1.2;if(s.svgWidth<0&&(s.svgWidth=0),s.svgHeight<0&&(s.svgHeight=0),_.setAttrs(s.dom.Paper.node,{width:s.svgWidth,height:s.svgHeight}),c!=="%"){var w=a.chart.sparkline.enabled?0:s.axisCharts?a.chart.parentHeightOffset:0;s.dom.Paper.node.parentNode.parentNode.style.minHeight=s.svgHeight+w+"px"}s.dom.elWrap.style.width=s.svgWidth+"px",s.dom.elWrap.style.height=s.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var s=this.w.globals,a=s.translateY,i={transform:"translate("+s.translateX+", "+a+")"};_.setAttrs(s.dom.elGraphical.node,i)}},{key:"resizeNonAxisCharts",value:function(){var s=this.w,a=s.globals,i=0,d=s.config.chart.sparkline.enabled?1:15;d+=s.config.grid.padding.bottom,s.config.legend.position!=="top"&&s.config.legend.position!=="bottom"||!s.config.legend.show||s.config.legend.floating||(i=new ue(this.ctx).legendHelpers.getLegendBBox().clwh+10);var c=s.globals.dom.baseEl.querySelector(".apexcharts-radialbar, .apexcharts-pie"),p=2.05*s.globals.radialSize;if(c&&!s.config.chart.sparkline.enabled&&s.config.plotOptions.radialBar.startAngle!==0){var w=H.getBoundingClientRect(c);p=w.bottom;var f=w.bottom-w.top;p=Math.max(2.05*s.globals.radialSize,f)}var k=p+a.translateY+i+d;a.dom.elLegendForeign&&a.dom.elLegendForeign.setAttribute("height",k),s.config.chart.height&&String(s.config.chart.height).indexOf("%")>0||(a.dom.elWrap.style.height=k+"px",_.setAttrs(a.dom.Paper.node,{height:k}),a.dom.Paper.node.parentNode.parentNode.style.minHeight=k+"px")}},{key:"coreCalculations",value:function(){new lt(this.ctx).init()}},{key:"resetGlobals",value:function(){var s=this,a=function(){return s.w.config.series.map(function(c){return[]})},i=new $t,d=this.w.globals;i.initGlobalVars(d),d.seriesXvalues=a(),d.seriesYvalues=a()}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"xySettings",value:function(){var s=null,a=this.w;if(a.globals.axisCharts){if(a.config.xaxis.crosshairs.position==="back"&&new Dt(this.ctx).drawXCrosshairs(),a.config.yaxis[0].crosshairs.position==="back"&&new Dt(this.ctx).drawYCrosshairs(),a.config.xaxis.type==="datetime"&&a.config.xaxis.labels.formatter===void 0){this.ctx.timeScale=new _4(this.ctx);var i=[];isFinite(a.globals.minX)&&isFinite(a.globals.maxX)&&!a.globals.isBarHorizontal?i=this.ctx.timeScale.calculateTimeScaleTicks(a.globals.minX,a.globals.maxX):a.globals.isBarHorizontal&&(i=this.ctx.timeScale.calculateTimeScaleTicks(a.globals.minY,a.globals.maxY)),this.ctx.timeScale.recalcDimensionsBasedOnFormat(i)}s=new tt(this.ctx).getCalculatedRatios()}return s}},{key:"updateSourceChart",value:function(s){this.ctx.w.globals.selection=void 0,this.ctx.updateHelpers._updateOptions({chart:{selection:{xaxis:{min:s.w.globals.minX,max:s.w.globals.maxX}}}},!1,!1)}},{key:"setupBrushHandler",value:function(){var s=this,a=this.w;if(a.config.chart.brush.enabled&&typeof a.config.chart.events.selection!="function"){var i=Array.isArray(a.config.chart.brush.targets)||[a.config.chart.brush.target];i.forEach(function(d){var c=ApexCharts.getChartByID(d);c.w.globals.brushSource=s.ctx,typeof c.w.config.chart.events.zoomed!="function"&&(c.w.config.chart.events.zoomed=function(){s.updateSourceChart(c)}),typeof c.w.config.chart.events.scrolled!="function"&&(c.w.config.chart.events.scrolled=function(){s.updateSourceChart(c)})}),a.config.chart.events.selection=function(d,c){i.forEach(function(p){var w=ApexCharts.getChartByID(p),f=H.clone(a.config.yaxis);if(a.config.chart.brush.autoScaleYaxis&&w.w.globals.series.length===1){var k=new J(w);f=k.autoScaleY(w,f,c)}var M=w.w.config.yaxis.reduce(function(x,I,$){return[].concat(E(x),[h(h({},w.w.config.yaxis[$]),{},{min:f[0].min,max:f[0].max})])},[]);w.ctx.updateHelpers._updateOptions({xaxis:{min:c.xaxis.min,max:c.xaxis.max},yaxis:M},!1,!1,!1,!1)})}}}}]),T}(),X4=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"_updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=arguments.length>4&&arguments[4]!==void 0&&arguments[4];return new Promise(function(w){var f=[a.ctx];c&&(f=a.ctx.getSyncedCharts()),a.ctx.w.globals.isExecCalled&&(f=[a.ctx],a.ctx.w.globals.isExecCalled=!1),f.forEach(function(k,M){var x=k.w;if(x.globals.shouldAnimate=d,i||(x.globals.resized=!0,x.globals.dataChanged=!0,d&&k.series.getPreviousPaths()),s&&u(s)==="object"&&(k.config=new It(s),s=tt.extendArrayProps(k.config,s,x),k.w.globals.chartID!==a.ctx.w.globals.chartID&&delete s.series,x.config=H.extend(x.config,s),p&&(x.globals.lastXAxis=s.xaxis?H.clone(s.xaxis):[],x.globals.lastYAxis=s.yaxis?H.clone(s.yaxis):[],x.globals.initialConfig=H.extend({},x.config),x.globals.initialSeries=H.clone(x.config.series),s.series))){for(var I=0;I2&&arguments[2]!==void 0&&arguments[2];return new Promise(function(c){var p,w=i.w;return w.globals.shouldAnimate=a,w.globals.dataChanged=!0,a&&i.ctx.series.getPreviousPaths(),w.globals.axisCharts?((p=s.map(function(f,k){return i._extendSeries(f,k)})).length===0&&(p=[{data:[]}]),w.config.series=p):w.config.series=s.slice(),d&&(w.globals.initialConfig.series=H.clone(w.config.series),w.globals.initialSeries=H.clone(w.config.series)),i.ctx.update().then(function(){c(i.ctx)})})}},{key:"_extendSeries",value:function(s,a){var i=this.w,d=i.config.series[a];return h(h({},i.config.series[a]),{},{name:s.name?s.name:d&&d.name,color:s.color?s.color:d&&d.color,type:s.type?s.type:d&&d.type,group:s.group?s.group:d&&d.group,data:s.data?s.data:d&&d.data})}},{key:"toggleDataPointSelection",value:function(s,a){var i=this.w,d=null,c=".apexcharts-series[data\\:realIndex='".concat(s,"']");return i.globals.axisCharts?d=i.globals.dom.Paper.select("".concat(c," path[j='").concat(a,"'], ").concat(c," circle[j='").concat(a,"'], ").concat(c," rect[j='").concat(a,"']")).members[0]:a===void 0&&(d=i.globals.dom.Paper.select("".concat(c," path[j='").concat(s,"']")).members[0],i.config.chart.type!=="pie"&&i.config.chart.type!=="polarArea"&&i.config.chart.type!=="donut"||this.ctx.pie.pieClicked(s)),d?(new _(this.ctx).pathMouseDown(d,null),d.node?d.node:null):(console.warn("toggleDataPointSelection: Element not found"),null)}},{key:"forceXAxisUpdate",value:function(s){var a=this.w;if(["min","max"].forEach(function(d){s.xaxis[d]!==void 0&&(a.config.xaxis[d]=s.xaxis[d],a.globals.lastXAxis[d]=s.xaxis[d])}),s.xaxis.categories&&s.xaxis.categories.length&&(a.config.xaxis.categories=s.xaxis.categories),a.config.xaxis.convertedCatToNumeric){var i=new gt(s);s=i.convertCatToNumericXaxis(s,this.ctx)}return s}},{key:"forceYAxisUpdate",value:function(s){return s.chart&&s.chart.stacked&&s.chart.stackType==="100%"&&(Array.isArray(s.yaxis)?s.yaxis.forEach(function(a,i){s.yaxis[i].min=0,s.yaxis[i].max=100}):(s.yaxis.min=0,s.yaxis.max=100)),s}},{key:"revertDefaultAxisMinMax",value:function(s){var a=this,i=this.w,d=i.globals.lastXAxis,c=i.globals.lastYAxis;s&&s.xaxis&&(d=s.xaxis),s&&s.yaxis&&(c=s.yaxis),i.config.xaxis.min=d.min,i.config.xaxis.max=d.max;var p=function(w){c[w]!==void 0&&(i.config.yaxis[w].min=c[w].min,i.config.yaxis[w].max=c[w].max)};i.config.yaxis.map(function(w,f){i.globals.zoomed||c[f]!==void 0?p(f):a.ctx.opts.yaxis[f]!==void 0&&(w.min=a.ctx.opts.yaxis[f].min,w.max=a.ctx.opts.yaxis[f].max)})}}]),T}();Gl=typeof window<"u"?window:void 0,xs=function(T,s){var a=(this!==void 0?this:T).SVG=function(m){if(a.supported)return m=new a.Doc(m),a.parser.draw||a.prepare(),m};if(a.ns="http://www.w3.org/2000/svg",a.xmlns="http://www.w3.org/2000/xmlns/",a.xlink="http://www.w3.org/1999/xlink",a.svgjs="http://svgjs.dev",a.supported=!0,!a.supported)return!1;a.did=1e3,a.eid=function(m){return"Svgjs"+M(m)+a.did++},a.create=function(m){var y=s.createElementNS(this.ns,m);return y.setAttribute("id",this.eid(m)),y},a.extend=function(){var m,y;y=(m=[].slice.call(arguments)).pop();for(var j=m.length-1;j>=0;j--)if(m[j])for(var R in y)m[j].prototype[R]=y[R];a.Set&&a.Set.inherit&&a.Set.inherit()},a.invent=function(m){var y=typeof m.create=="function"?m.create:function(){this.constructor.call(this,a.create(m.create))};return m.inherit&&(y.prototype=new m.inherit),m.extend&&a.extend(y,m.extend),m.construct&&a.extend(m.parent||a.Container,m.construct),y},a.adopt=function(m){return m?m.instance?m.instance:((y=m.nodeName=="svg"?m.parentNode instanceof T.SVGElement?new a.Nested:new a.Doc:m.nodeName=="linearGradient"?new a.Gradient("linear"):m.nodeName=="radialGradient"?new a.Gradient("radial"):a[M(m.nodeName)]?new a[M(m.nodeName)]:new a.Element(m)).type=m.nodeName,y.node=m,m.instance=y,y instanceof a.Doc&&y.namespace().defs(),y.setData(JSON.parse(m.getAttribute("svgjs:data"))||{}),y):null;var y},a.prepare=function(){var m=s.getElementsByTagName("body")[0],y=(m?new a.Doc(m):a.adopt(s.documentElement).nested()).size(2,0);a.parser={body:m||s.documentElement,draw:y.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:y.polyline().node,path:y.path().node,native:a.create("svg")}},a.parser={native:a.create("svg")},s.addEventListener("DOMContentLoaded",function(){a.parser.draw||a.prepare()},!1),a.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},a.utils={map:function(m,y){for(var j=m.length,R=[],K=0;K1?1:m,new a.Color({r:~~(this.r+(this.destination.r-this.r)*m),g:~~(this.g+(this.destination.g-this.g)*m),b:~~(this.b+(this.destination.b-this.b)*m)})):this}}),a.Color.test=function(m){return m+="",a.regex.isHex.test(m)||a.regex.isRgb.test(m)},a.Color.isRgb=function(m){return m&&typeof m.r=="number"&&typeof m.g=="number"&&typeof m.b=="number"},a.Color.isColor=function(m){return a.Color.isRgb(m)||a.Color.test(m)},a.Array=function(m,y){(m=(m||[]).valueOf()).length==0&&y&&(m=y.valueOf()),this.value=this.parse(m)},a.extend(a.Array,{toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(m){return m=m.valueOf(),Array.isArray(m)?m:this.split(m)}}),a.PointArray=function(m,y){a.Array.call(this,m,y||[[0,0]])},a.PointArray.prototype=new a.Array,a.PointArray.prototype.constructor=a.PointArray;for(var i={M:function(m,y,j){return y.x=j.x=m[0],y.y=j.y=m[1],["M",y.x,y.y]},L:function(m,y){return y.x=m[0],y.y=m[1],["L",m[0],m[1]]},H:function(m,y){return y.x=m[0],["H",m[0]]},V:function(m,y){return y.y=m[0],["V",m[0]]},C:function(m,y){return y.x=m[4],y.y=m[5],["C",m[0],m[1],m[2],m[3],m[4],m[5]]},Q:function(m,y){return y.x=m[2],y.y=m[3],["Q",m[0],m[1],m[2],m[3]]},S:function(m,y){return y.x=m[2],y.y=m[3],["S",m[0],m[1],m[2],m[3]]},Z:function(m,y,j){return y.x=j.x,y.y=j.y,["Z"]}},d="mlhvqtcsaz".split(""),c=0,p=d.length;cot);return R},bbox:function(){return a.parser.draw||a.prepare(),a.parser.path.setAttribute("d",this.toString()),a.parser.path.getBBox()}}),a.Number=a.invent({create:function(m,y){this.value=0,this.unit=y||"",typeof m=="number"?this.value=isNaN(m)?0:isFinite(m)?m:m<0?-34e37:34e37:typeof m=="string"?(y=m.match(a.regex.numberAndUnit))&&(this.value=parseFloat(y[1]),y[5]=="%"?this.value/=100:y[5]=="s"&&(this.value*=1e3),this.unit=y[5]):m instanceof a.Number&&(this.value=m.valueOf(),this.unit=m.unit)},extend:{toString:function(){return(this.unit=="%"?~~(1e8*this.value)/1e6:this.unit=="s"?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(m){return m=new a.Number(m),new a.Number(this+m,this.unit||m.unit)},minus:function(m){return m=new a.Number(m),new a.Number(this-m,this.unit||m.unit)},times:function(m){return m=new a.Number(m),new a.Number(this*m,this.unit||m.unit)},divide:function(m){return m=new a.Number(m),new a.Number(this/m,this.unit||m.unit)},to:function(m){var y=new a.Number(this);return typeof m=="string"&&(y.unit=m),y},morph:function(m){return this.destination=new a.Number(m),m.relative&&(this.destination.value+=this.value),this},at:function(m){return this.destination?new a.Number(this.destination).minus(this).times(m).plus(this):this}}}),a.Element=a.invent({create:function(m){this._stroke=a.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=m)&&(this.type=m.nodeName,this.node.instance=this,this._stroke=m.getAttribute("stroke")||this._stroke)},extend:{x:function(m){return this.attr("x",m)},y:function(m){return this.attr("y",m)},cx:function(m){return m==null?this.x()+this.width()/2:this.x(m-this.width()/2)},cy:function(m){return m==null?this.y()+this.height()/2:this.y(m-this.height()/2)},move:function(m,y){return this.x(m).y(y)},center:function(m,y){return this.cx(m).cy(y)},width:function(m){return this.attr("width",m)},height:function(m){return this.attr("height",m)},size:function(m,y){var j=I(this,m,y);return this.width(new a.Number(j.width)).height(new a.Number(j.height))},clone:function(m){this.writeDataToDom();var y=L(this.node.cloneNode(!0));return m?m.add(y):this.after(y),y},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(m){return this.after(m).remove(),m},addTo:function(m){return m.put(this)},putIn:function(m){return m.add(this)},id:function(m){return this.attr("id",m)},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return this.style("display")!="none"},toString:function(){return this.attr("id")},classes:function(){var m=this.attr("class");return m==null?[]:m.trim().split(a.regex.delimiter)},hasClass:function(m){return this.classes().indexOf(m)!=-1},addClass:function(m){if(!this.hasClass(m)){var y=this.classes();y.push(m),this.attr("class",y.join(" "))}return this},removeClass:function(m){return this.hasClass(m)&&this.attr("class",this.classes().filter(function(y){return y!=m}).join(" ")),this},toggleClass:function(m){return this.hasClass(m)?this.removeClass(m):this.addClass(m)},reference:function(m){return a.get(this.attr(m))},parent:function(m){var y=this;if(!y.node.parentNode)return null;if(y=a.adopt(y.node.parentNode),!m)return y;for(;y&&y.node instanceof T.SVGElement;){if(typeof m=="string"?y.matches(m):y instanceof m)return y;if(!y.node.parentNode||y.node.parentNode.nodeName=="#document")return null;y=a.adopt(y.node.parentNode)}},doc:function(){return this instanceof a.Doc?this:this.parent(a.Doc)},parents:function(m){var y=[],j=this;do{if(!(j=j.parent(m))||!j.node)break;y.push(j)}while(j.parent);return y},matches:function(m){return function(y,j){return(y.matches||y.matchesSelector||y.msMatchesSelector||y.mozMatchesSelector||y.webkitMatchesSelector||y.oMatchesSelector).call(y,j)}(this.node,m)},native:function(){return this.node},svg:function(m){var y=s.createElement("svg");if(!(m&&this instanceof a.Parent))return y.appendChild(m=s.createElement("svg")),this.writeDataToDom(),m.appendChild(this.node.cloneNode(!0)),y.innerHTML.replace(/^/,"").replace(/<\/svg>$/,"");y.innerHTML=""+m.replace(/\n/,"").replace(/<([\w:-]+)([^<]+?)\/>/g,"<$1$2>")+"";for(var j=0,R=y.firstChild.childNodes.length;j":function(m){return-Math.cos(m*Math.PI)/2+.5},">":function(m){return Math.sin(m*Math.PI/2)},"<":function(m){return 1-Math.cos(m*Math.PI/2)}},a.morph=function(m){return function(y,j){return new a.MorphObj(y,j).at(m)}},a.Situation=a.invent({create:function(m){this.init=!1,this.reversed=!1,this.reversing=!1,this.duration=new a.Number(m.duration).valueOf(),this.delay=new a.Number(m.delay).valueOf(),this.start=+new Date+this.delay,this.finish=this.start+this.duration,this.ease=m.ease,this.loop=0,this.loops=!1,this.animations={},this.attrs={},this.styles={},this.transforms=[],this.once={}}}),a.FX=a.invent({create:function(m){this._target=m,this.situations=[],this.active=!1,this.situation=null,this.paused=!1,this.lastPos=0,this.pos=0,this.absPos=0,this._speed=1},extend:{animate:function(m,y,j){u(m)==="object"&&(y=m.ease,j=m.delay,m=m.duration);var R=new a.Situation({duration:m||1e3,delay:j||0,ease:a.easing[y||"-"]||y});return this.queue(R),this},target:function(m){return m&&m instanceof a.Element?(this._target=m,this):this._target},timeToAbsPos:function(m){return(m-this.situation.start)/(this.situation.duration/this._speed)},absPosToTime:function(m){return this.situation.duration/this._speed*m+this.situation.start},startAnimFrame:function(){this.stopAnimFrame(),this.animationFrame=T.requestAnimationFrame((function(){this.step()}).bind(this))},stopAnimFrame:function(){T.cancelAnimationFrame(this.animationFrame)},start:function(){return!this.active&&this.situation&&(this.active=!0,this.startCurrent()),this},startCurrent:function(){return this.situation.start=+new Date+this.situation.delay/this._speed,this.situation.finish=this.situation.start+this.situation.duration/this._speed,this.initAnimations().step()},queue:function(m){return(typeof m=="function"||m instanceof a.Situation)&&this.situations.push(m),this.situation||(this.situation=this.situations.shift()),this},dequeue:function(){return this.stop(),this.situation=this.situations.shift(),this.situation&&(this.situation instanceof a.Situation?this.start():this.situation.call(this)),this},initAnimations:function(){var m,y=this.situation;if(y.init)return this;for(var j in y.animations){m=this.target()[j](),Array.isArray(m)||(m=[m]),Array.isArray(y.animations[j])||(y.animations[j]=[y.animations[j]]);for(var R=m.length;R--;)y.animations[j][R]instanceof a.Number&&(m[R]=new a.Number(m[R])),y.animations[j][R]=m[R].morph(y.animations[j][R])}for(var j in y.attrs)y.attrs[j]=new a.MorphObj(this.target().attr(j),y.attrs[j]);for(var j in y.styles)y.styles[j]=new a.MorphObj(this.target().style(j),y.styles[j]);return y.initialTransformation=this.target().matrixify(),y.init=!0,this},clearQueue:function(){return this.situations=[],this},clearCurrent:function(){return this.situation=null,this},stop:function(m,y){var j=this.active;return this.active=!1,y&&this.clearQueue(),m&&this.situation&&(!j&&this.startCurrent(),this.atEnd()),this.stopAnimFrame(),this.clearCurrent()},after:function(m){var y=this.last();return this.target().on("finished.fx",function j(R){R.detail.situation==y&&(m.call(this,y),this.off("finished.fx",j))}),this._callStart()},during:function(m){var y=this.last(),j=function(R){R.detail.situation==y&&m.call(this,R.detail.pos,a.morph(R.detail.pos),R.detail.eased,y)};return this.target().off("during.fx",j).on("during.fx",j),this.after(function(){this.off("during.fx",j)}),this._callStart()},afterAll:function(m){var y=function j(R){m.call(this),this.off("allfinished.fx",j)};return this.target().off("allfinished.fx",y).on("allfinished.fx",y),this._callStart()},last:function(){return this.situations.length?this.situations[this.situations.length-1]:this.situation},add:function(m,y,j){return this.last()[j||"animations"][m]=y,this._callStart()},step:function(m){var y,j,R;m||(this.absPos=this.timeToAbsPos(+new Date)),this.situation.loops!==!1?(y=Math.max(this.absPos,0),j=Math.floor(y),this.situation.loops===!0||jthis.lastPos&&Q<=K&&(this.situation.once[Q].call(this.target(),this.pos,K),delete this.situation.once[Q]);return this.active&&this.target().fire("during",{pos:this.pos,eased:K,fx:this,situation:this.situation}),this.situation?(this.eachAt(),this.pos==1&&!this.situation.reversed||this.situation.reversed&&this.pos==0?(this.stopAnimFrame(),this.target().fire("finished",{fx:this,situation:this.situation}),this.situations.length||(this.target().fire("allfinished"),this.situations.length||(this.target().off(".fx"),this.active=!1)),this.active?this.dequeue():this.clearCurrent()):!this.paused&&this.active&&this.startAnimFrame(),this.lastPos=K,this):this},eachAt:function(){var m,y=this,j=this.target(),R=this.situation;for(var K in R.animations)m=[].concat(R.animations[K]).map(function(it){return typeof it!="string"&&it.at?it.at(R.ease(y.pos),y.pos):it}),j[K].apply(j,m);for(var K in R.attrs)m=[K].concat(R.attrs[K]).map(function(vt){return typeof vt!="string"&&vt.at?vt.at(R.ease(y.pos),y.pos):vt}),j.attr.apply(j,m);for(var K in R.styles)m=[K].concat(R.styles[K]).map(function(vt){return typeof vt!="string"&&vt.at?vt.at(R.ease(y.pos),y.pos):vt}),j.style.apply(j,m);if(R.transforms.length){m=R.initialTransformation,K=0;for(var Q=R.transforms.length;K=0;--j)this[V[j]]=m[V[j]]!=null?m[V[j]]:y[V[j]]},extend:{extract:function(){var m=$(this,0,1);$(this,1,0);var y=180/Math.PI*Math.atan2(m.y,m.x)-90;return{x:this.e,y:this.f,transformedX:(this.e*Math.cos(y*Math.PI/180)+this.f*Math.sin(y*Math.PI/180))/Math.sqrt(this.a*this.a+this.b*this.b),transformedY:(this.f*Math.cos(y*Math.PI/180)+this.e*Math.sin(-y*Math.PI/180))/Math.sqrt(this.c*this.c+this.d*this.d),rotation:y,a:this.a,b:this.b,c:this.c,d:this.d,e:this.e,f:this.f,matrix:new a.Matrix(this)}},clone:function(){return new a.Matrix(this)},morph:function(m){return this.destination=new a.Matrix(m),this},multiply:function(m){return new a.Matrix(this.native().multiply(function(y){return y instanceof a.Matrix||(y=new a.Matrix(y)),y}(m).native()))},inverse:function(){return new a.Matrix(this.native().inverse())},translate:function(m,y){return new a.Matrix(this.native().translate(m||0,y||0))},native:function(){for(var m=a.parser.native.createSVGMatrix(),y=V.length-1;y>=0;y--)m[V[y]]=this[V[y]];return m},toString:function(){return"matrix("+F(this.a)+","+F(this.b)+","+F(this.c)+","+F(this.d)+","+F(this.e)+","+F(this.f)+")"}},parent:a.Element,construct:{ctm:function(){return new a.Matrix(this.node.getCTM())},screenCTM:function(){if(this instanceof a.Nested){var m=this.rect(1,1),y=m.node.getScreenCTM();return m.remove(),new a.Matrix(y)}return new a.Matrix(this.node.getScreenCTM())}}}),a.Point=a.invent({create:function(m,y){var j;j=Array.isArray(m)?{x:m[0],y:m[1]}:u(m)==="object"?{x:m.x,y:m.y}:m!=null?{x:m,y:y??m}:{x:0,y:0},this.x=j.x,this.y=j.y},extend:{clone:function(){return new a.Point(this)},morph:function(m,y){return this.destination=new a.Point(m,y),this}}}),a.extend(a.Element,{point:function(m,y){return new a.Point(m,y).transform(this.screenCTM().inverse())}}),a.extend(a.Element,{attr:function(m,y,j){if(m==null){for(m={},j=(y=this.node.attributes).length-1;j>=0;j--)m[y[j].nodeName]=a.regex.isNumber.test(y[j].nodeValue)?parseFloat(y[j].nodeValue):y[j].nodeValue;return m}if(u(m)==="object")for(var R in m)this.attr(R,m[R]);else if(y===null)this.node.removeAttribute(m);else{if(y==null)return(y=this.node.getAttribute(m))==null?a.defaults.attrs[m]:a.regex.isNumber.test(y)?parseFloat(y):y;m=="stroke-width"?this.attr("stroke",parseFloat(y)>0?this._stroke:null):m=="stroke"&&(this._stroke=y),m!="fill"&&m!="stroke"||(a.regex.isImage.test(y)&&(y=this.doc().defs().image(y,0,0)),y instanceof a.Image&&(y=this.doc().defs().pattern(0,0,function(){this.add(y)}))),typeof y=="number"?y=new a.Number(y):a.Color.isColor(y)?y=new a.Color(y):Array.isArray(y)&&(y=new a.Array(y)),m=="leading"?this.leading&&this.leading(y):typeof j=="string"?this.node.setAttributeNS(j,m,y.toString()):this.node.setAttribute(m,y.toString()),!this.rebuild||m!="font-size"&&m!="x"||this.rebuild(m,y)}return this}}),a.extend(a.Element,{transform:function(m,y){var j;return u(m)!=="object"?(j=new a.Matrix(this).extract(),typeof m=="string"?j[m]:j):(j=new a.Matrix(this),y=!!y||!!m.relative,m.a!=null&&(j=y?j.multiply(new a.Matrix(m)):new a.Matrix(m)),this.attr("transform",j))}}),a.extend(a.Element,{untransform:function(){return this.attr("transform",null)},matrixify:function(){return(this.attr("transform")||"").split(a.regex.transforms).slice(0,-1).map(function(m){var y=m.trim().split("(");return[y[0],y[1].split(a.regex.delimiter).map(function(j){return parseFloat(j)})]}).reduce(function(m,y){return y[0]=="matrix"?m.multiply(N(y[1])):m[y[0]].apply(m,y[1])},new a.Matrix)},toParent:function(m){if(this==m)return this;var y=this.screenCTM(),j=m.screenCTM().inverse();return this.addTo(m).untransform().transform(j.multiply(y)),this},toDoc:function(){return this.toParent(this.doc())}}),a.Transformation=a.invent({create:function(m,y){if(arguments.length>1&&typeof y!="boolean")return this.constructor.call(this,[].slice.call(arguments));if(Array.isArray(m))for(var j=0,R=this.arguments.length;j=0},index:function(m){return[].slice.call(this.node.childNodes).indexOf(m.node)},get:function(m){return a.adopt(this.node.childNodes[m])},first:function(){return this.get(0)},last:function(){return this.get(this.node.childNodes.length-1)},each:function(m,y){for(var j=this.children(),R=0,K=j.length;R=0;y--)m.childNodes[y]instanceof T.SVGElement&&L(m.childNodes[y]);return a.adopt(m).id(a.eid(m.nodeName))}function F(m){return Math.abs(m)>1e-37?m:0}["fill","stroke"].forEach(function(m){var y={};y[m]=function(j){if(j===void 0)return this;if(typeof j=="string"||a.Color.isRgb(j)||j&&typeof j.fill=="function")this.attr(m,j);else for(var R=w[m].length-1;R>=0;R--)j[w[m][R]]!=null&&this.attr(w.prefix(m,w[m][R]),j[w[m][R]]);return this},a.extend(a.Element,a.FX,y)}),a.extend(a.Element,a.FX,{translate:function(m,y){return this.transform({x:m,y})},matrix:function(m){return this.attr("transform",new a.Matrix(arguments.length==6?[].slice.call(arguments):m))},opacity:function(m){return this.attr("opacity",m)},dx:function(m){return this.x(new a.Number(m).plus(this instanceof a.FX?0:this.x()),!0)},dy:function(m){return this.y(new a.Number(m).plus(this instanceof a.FX?0:this.y()),!0)}}),a.extend(a.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(m){return this.node.getPointAtLength(m)}}),a.Set=a.invent({create:function(m){Array.isArray(m)?this.members=m:this.clear()},extend:{add:function(){for(var m=[].slice.call(arguments),y=0,j=m.length;y-1&&this.members.splice(y,1),this},each:function(m){for(var y=0,j=this.members.length;y=0},index:function(m){return this.members.indexOf(m)},get:function(m){return this.members[m]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members}},construct:{set:function(m){return new a.Set(m)}}}),a.FX.Set=a.invent({create:function(m){this.set=m}}),a.Set.inherit=function(){var m=[];for(var y in a.Shape.prototype)typeof a.Shape.prototype[y]=="function"&&typeof a.Set.prototype[y]!="function"&&m.push(y);for(var y in m.forEach(function(R){a.Set.prototype[R]=function(){for(var K=0,Q=this.members.length;K=0;m--)delete this.memory()[arguments[m]];return this},memory:function(){return this._memory||(this._memory={})}}),a.get=function(m){var y=s.getElementById(function(j){var R=(j||"").toString().match(a.regex.reference);if(R)return R[1]}(m)||m);return a.adopt(y)},a.select=function(m,y){return new a.Set(a.utils.map((y||s).querySelectorAll(m),function(j){return a.adopt(j)}))},a.extend(a.Parent,{select:function(m){return a.select(m,this.node)}});var V="abcdef".split("");if(typeof T.CustomEvent!="function"){var Z=function(m,y){y=y||{bubbles:!1,cancelable:!1,detail:void 0};var j=s.createEvent("CustomEvent");return j.initCustomEvent(m,y.bubbles,y.cancelable,y.detail),j};Z.prototype=T.Event.prototype,a.CustomEvent=Z}else a.CustomEvent=T.CustomEvent;return a},u(l)==="object"?n.exports=Gl.document?xs(Gl,Gl.document):function(T){return xs(T,T.document)}:Gl.SVG=xs(Gl,Gl.document),(function(){SVG.Filter=SVG.invent({create:"filter",inherit:SVG.Parent,extend:{source:"SourceGraphic",sourceAlpha:"SourceAlpha",background:"BackgroundImage",backgroundAlpha:"BackgroundAlpha",fill:"FillPaint",stroke:"StrokePaint",autoSetIn:!0,put:function(p,w){return this.add(p,w),!p.attr("in")&&this.autoSetIn&&p.attr("in",this.source),p.attr("result")||p.attr("result",p),p},blend:function(p,w,f){return this.put(new SVG.BlendEffect(p,w,f))},colorMatrix:function(p,w){return this.put(new SVG.ColorMatrixEffect(p,w))},convolveMatrix:function(p){return this.put(new SVG.ConvolveMatrixEffect(p))},componentTransfer:function(p){return this.put(new SVG.ComponentTransferEffect(p))},composite:function(p,w,f){return this.put(new SVG.CompositeEffect(p,w,f))},flood:function(p,w){return this.put(new SVG.FloodEffect(p,w))},offset:function(p,w){return this.put(new SVG.OffsetEffect(p,w))},image:function(p){return this.put(new SVG.ImageEffect(p))},merge:function(){var p=[void 0];for(var w in arguments)p.push(arguments[w]);return this.put(new(SVG.MergeEffect.bind.apply(SVG.MergeEffect,p)))},gaussianBlur:function(p,w){return this.put(new SVG.GaussianBlurEffect(p,w))},morphology:function(p,w){return this.put(new SVG.MorphologyEffect(p,w))},diffuseLighting:function(p,w,f){return this.put(new SVG.DiffuseLightingEffect(p,w,f))},displacementMap:function(p,w,f,k,M){return this.put(new SVG.DisplacementMapEffect(p,w,f,k,M))},specularLighting:function(p,w,f,k){return this.put(new SVG.SpecularLightingEffect(p,w,f,k))},tile:function(){return this.put(new SVG.TileEffect)},turbulence:function(p,w,f,k,M){return this.put(new SVG.TurbulenceEffect(p,w,f,k,M))},toString:function(){return"url(#"+this.attr("id")+")"}}}),SVG.extend(SVG.Defs,{filter:function(p){var w=this.put(new SVG.Filter);return typeof p=="function"&&p.call(w,w),w}}),SVG.extend(SVG.Container,{filter:function(p){return this.defs().filter(p)}}),SVG.extend(SVG.Element,SVG.G,SVG.Nested,{filter:function(p){return this.filterer=p instanceof SVG.Element?p:this.doc().filter(p),this.doc()&&this.filterer.doc()!==this.doc()&&this.doc().defs().add(this.filterer),this.attr("filter",this.filterer),this.filterer},unfilter:function(p){return this.filterer&&p===!0&&this.filterer.remove(),delete this.filterer,this.attr("filter",null)}}),SVG.Effect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(p){return p==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",p)},result:function(p){return p==null?this.attr("result"):this.attr("result",p)},toString:function(){return this.result()}}}),SVG.ParentEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Parent,extend:{in:function(p){return p==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",p)},result:function(p){return p==null?this.attr("result"):this.attr("result",p)},toString:function(){return this.result()}}});var T={blend:function(p,w){return this.parent()&&this.parent().blend(this,p,w)},colorMatrix:function(p,w){return this.parent()&&this.parent().colorMatrix(p,w).in(this)},convolveMatrix:function(p){return this.parent()&&this.parent().convolveMatrix(p).in(this)},componentTransfer:function(p){return this.parent()&&this.parent().componentTransfer(p).in(this)},composite:function(p,w){return this.parent()&&this.parent().composite(this,p,w)},flood:function(p,w){return this.parent()&&this.parent().flood(p,w)},offset:function(p,w){return this.parent()&&this.parent().offset(p,w).in(this)},image:function(p){return this.parent()&&this.parent().image(p)},merge:function(){return this.parent()&&this.parent().merge.apply(this.parent(),[this].concat(arguments))},gaussianBlur:function(p,w){return this.parent()&&this.parent().gaussianBlur(p,w).in(this)},morphology:function(p,w){return this.parent()&&this.parent().morphology(p,w).in(this)},diffuseLighting:function(p,w,f){return this.parent()&&this.parent().diffuseLighting(p,w,f).in(this)},displacementMap:function(p,w,f,k){return this.parent()&&this.parent().displacementMap(this,p,w,f,k)},specularLighting:function(p,w,f,k){return this.parent()&&this.parent().specularLighting(p,w,f,k).in(this)},tile:function(){return this.parent()&&this.parent().tile().in(this)},turbulence:function(p,w,f,k,M){return this.parent()&&this.parent().turbulence(p,w,f,k,M).in(this)}};SVG.extend(SVG.Effect,T),SVG.extend(SVG.ParentEffect,T),SVG.ChildEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(p){this.attr("in",p)}}});var s={blend:function(p,w,f){this.attr({in:p,in2:w,mode:f||"normal"})},colorMatrix:function(p,w){p=="matrix"&&(w=d(w)),this.attr({type:p,values:w===void 0?null:w})},convolveMatrix:function(p){p=d(p),this.attr({order:Math.sqrt(p.split(" ").length),kernelMatrix:p})},composite:function(p,w,f){this.attr({in:p,in2:w,operator:f})},flood:function(p,w){this.attr("flood-color",p),w!=null&&this.attr("flood-opacity",w)},offset:function(p,w){this.attr({dx:p,dy:w})},image:function(p){this.attr("href",p,SVG.xlink)},displacementMap:function(p,w,f,k,M){this.attr({in:p,in2:w,scale:f,xChannelSelector:k,yChannelSelector:M})},gaussianBlur:function(p,w){p!=null||w!=null?this.attr("stdDeviation",function(f){if(!Array.isArray(f))return f;for(var k=0,M=f.length,x=[];k1&&(xe*=M=Math.sqrt(M),$e*=M),x=new SVG.Matrix().rotate(je).scale(1/xe,1/$e).rotate(-je),cn=cn.transform(x),Ke=Ke.transform(x),I=[Ke.x-cn.x,Ke.y-cn.y],N=I[0]*I[0]+I[1]*I[1],$=Math.sqrt(N),I[0]/=$,I[1]/=$,L=N<4?Math.sqrt(1-N/4):0,Rn===Ul&&(L*=-1),F=new SVG.Point((Ke.x+cn.x)/2+L*-I[1],(Ke.y+cn.y)/2+L*I[0]),V=new SVG.Point(cn.x-F.x,cn.y-F.y),Z=new SVG.Point(Ke.x-F.x,Ke.y-F.y),m=Math.acos(V.x/Math.sqrt(V.x*V.x+V.y*V.y)),V.y<0&&(m*=-1),y=Math.acos(Z.x/Math.sqrt(Z.x*Z.x+Z.y*Z.y)),Z.y<0&&(y*=-1),Ul&&m>y&&(y+=2*Math.PI),!Ul&&mp.maxX-a.width&&(w=(d=p.maxX-a.width)-this.startPoints.box.x),p.minY!=null&&cp.maxY-a.height&&(f=(c=p.maxY-a.height)-this.startPoints.box.y),p.snapToGrid!=null&&(d-=d%p.snapToGrid,c-=c%p.snapToGrid,w-=w%p.snapToGrid,f-=f%p.snapToGrid),this.el instanceof SVG.G?this.el.matrix(this.startPoints.transform).transform({x:w,y:f},!0):this.el.move(d,c));return i},T.prototype.end=function(s){var a=this.drag(s);this.el.fire("dragend",{event:s,p:a,m:this.m,handler:this}),SVG.off(window,"mousemove.drag"),SVG.off(window,"touchmove.drag"),SVG.off(window,"mouseup.drag"),SVG.off(window,"touchend.drag")},SVG.extend(SVG.Element,{draggable:function(s,a){typeof s!="function"&&typeof s!="object"||(a=s,s=!0);var i=this.remember("_draggable")||new T(this);return(s=s===void 0||s)?i.init(a||{},s):(this.off("mousedown.drag"),this.off("touchstart.drag")),this}})}).call(void 0),function(){function T(s){this.el=s,s.remember("_selectHandler",this),this.pointSelection={isSelected:!1},this.rectSelection={isSelected:!1},this.pointsList={lt:[0,0],rt:["width",0],rb:["width","height"],lb:[0,"height"],t:["width",0],r:["width","height"],b:["width","height"],l:[0,"height"]},this.pointCoord=function(a,i,d){var c=typeof a!="string"?a:i[a];return d?c/2:c},this.pointCoords=function(a,i){var d=this.pointsList[a];return{x:this.pointCoord(d[0],i,a==="t"||a==="b"),y:this.pointCoord(d[1],i,a==="r"||a==="l")}}}T.prototype.init=function(s,a){var i=this.el.bbox();this.options={};var d=this.el.selectize.defaults.points;for(var c in this.el.selectize.defaults)this.options[c]=this.el.selectize.defaults[c],a[c]!==void 0&&(this.options[c]=a[c]);var p=["points","pointsExclude"];for(var c in p){var w=this.options[p[c]];typeof w=="string"?w=w.length>0?w.split(/\s*,\s*/i):[]:typeof w=="boolean"&&p[c]==="points"&&(w=w?d:[]),this.options[p[c]]=w}this.options.points=[d,this.options.points].reduce(function(f,k){return f.filter(function(M){return k.indexOf(M)>-1})}),this.options.points=[this.options.points,this.options.pointsExclude].reduce(function(f,k){return f.filter(function(M){return k.indexOf(M)<0})}),this.parent=this.el.parent(),this.nested=this.nested||this.parent.group(),this.nested.matrix(new SVG.Matrix(this.el).translate(i.x,i.y)),this.options.deepSelect&&["line","polyline","polygon"].indexOf(this.el.type)!==-1?this.selectPoints(s):this.selectRect(s),this.observe(),this.cleanup()},T.prototype.selectPoints=function(s){return this.pointSelection.isSelected=s,this.pointSelection.set||(this.pointSelection.set=this.parent.set(),this.drawPoints()),this},T.prototype.getPointArray=function(){var s=this.el.bbox();return this.el.array().valueOf().map(function(a){return[a[0]-s.x,a[1]-s.y]})},T.prototype.drawPoints=function(){for(var s=this,a=this.getPointArray(),i=0,d=a.length;i0&&this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-w[0]);w=this.checkAspectRatio(w),this.el.move(this.parameters.box.x+w[0],this.parameters.box.y+w[1]).size(this.parameters.box.width-w[0],this.parameters.box.height-w[1])}};break;case"rt":this.calc=function(c,p){var w=this.snapToGrid(c,p,2);if(this.parameters.box.width+w[0]>0&&this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+w[0]);w=this.checkAspectRatio(w,!0),this.el.move(this.parameters.box.x,this.parameters.box.y+w[1]).size(this.parameters.box.width+w[0],this.parameters.box.height-w[1])}};break;case"rb":this.calc=function(c,p){var w=this.snapToGrid(c,p,0);if(this.parameters.box.width+w[0]>0&&this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+w[0]);w=this.checkAspectRatio(w),this.el.move(this.parameters.box.x,this.parameters.box.y).size(this.parameters.box.width+w[0],this.parameters.box.height+w[1])}};break;case"lb":this.calc=function(c,p){var w=this.snapToGrid(c,p,1);if(this.parameters.box.width-w[0]>0&&this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-w[0]);w=this.checkAspectRatio(w,!0),this.el.move(this.parameters.box.x+w[0],this.parameters.box.y).size(this.parameters.box.width-w[0],this.parameters.box.height+w[1])}};break;case"t":this.calc=function(c,p){var w=this.snapToGrid(c,p,2);if(this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y+w[1]).height(this.parameters.box.height-w[1])}};break;case"r":this.calc=function(c,p){var w=this.snapToGrid(c,p,0);if(this.parameters.box.width+w[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).width(this.parameters.box.width+w[0])}};break;case"b":this.calc=function(c,p){var w=this.snapToGrid(c,p,0);if(this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).height(this.parameters.box.height+w[1])}};break;case"l":this.calc=function(c,p){var w=this.snapToGrid(c,p,1);if(this.parameters.box.width-w[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x+w[0],this.parameters.box.y).width(this.parameters.box.width-w[0])}};break;case"rot":this.calc=function(c,p){var w=c+this.parameters.p.x,f=p+this.parameters.p.y,k=Math.atan2(this.parameters.p.y-this.parameters.box.y-this.parameters.box.height/2,this.parameters.p.x-this.parameters.box.x-this.parameters.box.width/2),M=Math.atan2(f-this.parameters.box.y-this.parameters.box.height/2,w-this.parameters.box.x-this.parameters.box.width/2),x=this.parameters.rotation+180*(M-k)/Math.PI+this.options.snapToAngle/2;this.el.center(this.parameters.box.cx,this.parameters.box.cy).rotate(x-x%this.options.snapToAngle,this.parameters.box.cx,this.parameters.box.cy)};break;case"point":this.calc=function(c,p){var w=this.snapToGrid(c,p,this.parameters.pointCoords[0],this.parameters.pointCoords[1]),f=this.el.array().valueOf();f[this.parameters.i][0]=this.parameters.pointCoords[0]+w[0],f[this.parameters.i][1]=this.parameters.pointCoords[1]+w[1],this.el.plot(f)}}this.el.fire("resizestart",{dx:this.parameters.x,dy:this.parameters.y,event:s}),SVG.on(window,"touchmove.resize",function(c){a.update(c||window.event)}),SVG.on(window,"touchend.resize",function(){a.done()}),SVG.on(window,"mousemove.resize",function(c){a.update(c||window.event)}),SVG.on(window,"mouseup.resize",function(){a.done()})},T.prototype.update=function(s){if(s){var a=this._extractPosition(s),i=this.transformPoint(a.x,a.y),d=i.x-this.parameters.p.x,c=i.y-this.parameters.p.y;this.lastUpdateCall=[d,c],this.calc(d,c),this.el.fire("resizing",{dx:d,dy:c,event:s})}else this.lastUpdateCall&&this.calc(this.lastUpdateCall[0],this.lastUpdateCall[1])},T.prototype.done=function(){this.lastUpdateCall=null,SVG.off(window,"mousemove.resize"),SVG.off(window,"mouseup.resize"),SVG.off(window,"touchmove.resize"),SVG.off(window,"touchend.resize"),this.el.fire("resizedone")},T.prototype.snapToGrid=function(s,a,i,d){var c;return d!==void 0?c=[(i+s)%this.options.snapToGrid,(d+a)%this.options.snapToGrid]:(i=i??3,c=[(this.parameters.box.x+s+(1&i?0:this.parameters.box.width))%this.options.snapToGrid,(this.parameters.box.y+a+(2&i?0:this.parameters.box.height))%this.options.snapToGrid]),s<0&&(c[0]-=this.options.snapToGrid),a<0&&(c[1]-=this.options.snapToGrid),s-=Math.abs(c[0])w.maxX&&(s=w.maxX-c),w.minY!==void 0&&p+aw.maxY&&(a=w.maxY-p),[s,a]},T.prototype.checkAspectRatio=function(s,a){if(!this.options.saveAspectRatio)return s;var i=s.slice(),d=this.parameters.box.width/this.parameters.box.height,c=this.parameters.box.width+s[0],p=this.parameters.box.height-s[1],w=c/p;return wd&&(i[0]=this.parameters.box.width-p*d,a&&(i[0]=-i[0])),i},SVG.extend(SVG.Element,{resize:function(s){return(this.remember("_resizeHandler")||new T(this)).init(s||{}),this}}),SVG.Element.prototype.resize.defaults={snapToAngle:.1,snapToGrid:1,constraint:{},saveAspectRatio:!1}}).call(this)}(),window.Apex===void 0&&(window.Apex={});var l2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"initModules",value:function(){this.ctx.publicMethods=["updateOptions","updateSeries","appendData","appendSeries","toggleSeries","showSeries","hideSeries","setLocale","resetSeries","zoomX","toggleDataPointSelection","dataURI","exportToCSV","addXaxisAnnotation","addYaxisAnnotation","addPointAnnotation","clearAnnotations","removeAnnotation","paper","destroy"],this.ctx.eventList=["click","mousedown","mousemove","mouseleave","touchstart","touchmove","touchleave","mouseup","touchend"],this.ctx.animations=new U(this.ctx),this.ctx.axes=new yt(this.ctx),this.ctx.core=new W4(this.ctx.el,this.ctx),this.ctx.config=new It({}),this.ctx.data=new pt(this.ctx),this.ctx.grid=new ft(this.ctx),this.ctx.graphics=new _(this.ctx),this.ctx.coreUtils=new tt(this.ctx),this.ctx.crosshairs=new Dt(this.ctx),this.ctx.events=new ct(this.ctx),this.ctx.exports=new Nt(this.ctx),this.ctx.localization=new kt(this.ctx),this.ctx.options=new rt,this.ctx.responsive=new St(this.ctx),this.ctx.series=new ut(this.ctx),this.ctx.theme=new Ot(this.ctx),this.ctx.formatters=new Ct(this.ctx),this.ctx.titleSubtitle=new jt(this.ctx),this.ctx.legend=new ue(this.ctx),this.ctx.toolbar=new Se(this.ctx),this.ctx.tooltip=new wo(this.ctx),this.ctx.dimensions=new se(this.ctx),this.ctx.updateHelpers=new X4(this.ctx),this.ctx.zoomPanSelection=new kn(this.ctx),this.ctx.w.globals.tooltip=new wo(this.ctx)}}]),T}(),r2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"clear",value:function(s){var a=s.isUpdating;this.ctx.zoomPanSelection&&this.ctx.zoomPanSelection.destroy(),this.ctx.toolbar&&this.ctx.toolbar.destroy(),this.ctx.animations=null,this.ctx.axes=null,this.ctx.annotations=null,this.ctx.core=null,this.ctx.data=null,this.ctx.grid=null,this.ctx.series=null,this.ctx.responsive=null,this.ctx.theme=null,this.ctx.formatters=null,this.ctx.titleSubtitle=null,this.ctx.legend=null,this.ctx.dimensions=null,this.ctx.options=null,this.ctx.crosshairs=null,this.ctx.zoomPanSelection=null,this.ctx.updateHelpers=null,this.ctx.toolbar=null,this.ctx.localization=null,this.ctx.w.globals.tooltip=null,this.clearDomElements({isUpdating:a})}},{key:"killSVG",value:function(s){s.each(function(a,i){this.removeClass("*"),this.off(),this.stop()},!0),s.ungroup(),s.clear()}},{key:"clearDomElements",value:function(s){var a=this,i=s.isUpdating,d=this.w.globals.dom.Paper.node;d.parentNode&&d.parentNode.parentNode&&!i&&(d.parentNode.parentNode.style.minHeight="unset");var c=this.w.globals.dom.baseEl;c&&this.ctx.eventList.forEach(function(w){c.removeEventListener(w,a.ctx.events.documentEvent)});var p=this.w.globals.dom;if(this.ctx.el!==null)for(;this.ctx.el.firstChild;)this.ctx.el.removeChild(this.ctx.el.firstChild);this.killSVG(p.Paper),p.Paper.remove(),p.elWrap=null,p.elGraphical=null,p.elLegendWrap=null,p.elLegendForeign=null,p.baseEl=null,p.elGridRect=null,p.elGridRectMask=null,p.elGridRectMarkerMask=null,p.elForecastMask=null,p.elNonForecastMask=null,p.elDefs=null}}]),T}(),ti=new WeakMap,q4=function(){function T(s,a){g(this,T),this.opts=a,this.ctx=this,this.w=new Tt(a).init(),this.el=s,this.w.globals.cuid=H.randomId(),this.w.globals.chartID=this.w.config.chart.id?H.escapeString(this.w.config.chart.id):this.w.globals.cuid,new l2(this).initModules(),this.create=H.bind(this.create,this),this.windowResizeHandler=this._windowResizeHandler.bind(this),this.parentResizeHandler=this._parentResizeCallback.bind(this)}return b(T,[{key:"render",value:function(){var s=this;return new Promise(function(a,i){if(s.el!==null){Apex._chartInstances===void 0&&(Apex._chartInstances=[]),s.w.config.chart.id&&Apex._chartInstances.push({id:s.w.globals.chartID,group:s.w.config.chart.group,chart:s}),s.setLocale(s.w.config.chart.defaultLocale);var d=s.w.config.chart.events.beforeMount;if(typeof d=="function"&&d(s,s.w),s.events.fireEvent("beforeMount",[s,s.w]),window.addEventListener("resize",s.windowResizeHandler),function(M,x){var I=!1;if(M.nodeType!==Node.DOCUMENT_FRAGMENT_NODE){var $=M.getBoundingClientRect();M.style.display!=="none"&&$.width!==0||(I=!0)}var N=new ResizeObserver(function(L){I&&x.call(M,L),I=!0});M.nodeType===Node.DOCUMENT_FRAGMENT_NODE?Array.from(M.children).forEach(function(L){return N.observe(L)}):N.observe(M),ti.set(x,N)}(s.el.parentNode,s.parentResizeHandler),!s.css){var c=s.el.getRootNode&&s.el.getRootNode(),p=H.is("ShadowRoot",c),w=s.el.ownerDocument,f=w.getElementById("apexcharts-css");!p&&f||(s.css=document.createElement("style"),s.css.id="apexcharts-css",s.css.textContent=`@keyframes opaque { + 0% { + opacity: 0 + } + + to { + opacity: 1 + } +} + +@keyframes resizeanim { + 0%,to { + opacity: 0 + } +} + +.apexcharts-canvas { + position: relative; + user-select: none +} + +.apexcharts-canvas ::-webkit-scrollbar { + -webkit-appearance: none; + width: 6px +} + +.apexcharts-canvas ::-webkit-scrollbar-thumb { + border-radius: 4px; + background-color: rgba(0,0,0,.5); + box-shadow: 0 0 1px rgba(255,255,255,.5); + -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5) +} + +.apexcharts-inner { + position: relative +} + +.apexcharts-text tspan { + font-family: inherit +} + +.legend-mouseover-inactive { + transition: .15s ease all; + opacity: .2 +} + +.apexcharts-legend-text { + padding-left: 15px; + margin-left: -15px; +} + +.apexcharts-series-collapsed { + opacity: 0 +} + +.apexcharts-tooltip { + border-radius: 5px; + box-shadow: 2px 2px 6px -4px #999; + cursor: default; + font-size: 14px; + left: 62px; + opacity: 0; + pointer-events: none; + position: absolute; + top: 20px; + display: flex; + flex-direction: column; + overflow: hidden; + white-space: nowrap; + z-index: 12; + transition: .15s ease all +} + +.apexcharts-tooltip.apexcharts-active { + opacity: 1; + transition: .15s ease all +} + +.apexcharts-tooltip.apexcharts-theme-light { + border: 1px solid #e3e3e3; + background: rgba(255,255,255,.96) +} + +.apexcharts-tooltip.apexcharts-theme-dark { + color: #fff; + background: rgba(30,30,30,.8) +} + +.apexcharts-tooltip * { + font-family: inherit +} + +.apexcharts-tooltip-title { + padding: 6px; + font-size: 15px; + margin-bottom: 4px +} + +.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title { + background: #eceff1; + border-bottom: 1px solid #ddd +} + +.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title { + background: rgba(0,0,0,.7); + border-bottom: 1px solid #333 +} + +.apexcharts-tooltip-text-goals-value,.apexcharts-tooltip-text-y-value,.apexcharts-tooltip-text-z-value { + display: inline-block; + margin-left: 5px; + font-weight: 600 +} + +.apexcharts-tooltip-text-goals-label:empty,.apexcharts-tooltip-text-goals-value:empty,.apexcharts-tooltip-text-y-label:empty,.apexcharts-tooltip-text-y-value:empty,.apexcharts-tooltip-text-z-value:empty,.apexcharts-tooltip-title:empty { + display: none +} + +.apexcharts-tooltip-text-goals-label,.apexcharts-tooltip-text-goals-value { + padding: 6px 0 5px +} + +.apexcharts-tooltip-goals-group,.apexcharts-tooltip-text-goals-label,.apexcharts-tooltip-text-goals-value { + display: flex +} + +.apexcharts-tooltip-text-goals-label:not(:empty),.apexcharts-tooltip-text-goals-value:not(:empty) { + margin-top: -6px +} + +.apexcharts-tooltip-marker { + width: 12px; + height: 12px; + position: relative; + top: 0; + margin-right: 10px; + border-radius: 50% +} + +.apexcharts-tooltip-series-group { + padding: 0 10px; + display: none; + text-align: left; + justify-content: left; + align-items: center +} + +.apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker { + opacity: 1 +} + +.apexcharts-tooltip-series-group.apexcharts-active,.apexcharts-tooltip-series-group:last-child { + padding-bottom: 4px +} + +.apexcharts-tooltip-series-group-hidden { + opacity: 0; + height: 0; + line-height: 0; + padding: 0!important +} + +.apexcharts-tooltip-y-group { + padding: 6px 0 5px +} + +.apexcharts-custom-tooltip,.apexcharts-tooltip-box { + padding: 4px 8px +} + +.apexcharts-tooltip-boxPlot { + display: flex; + flex-direction: column-reverse +} + +.apexcharts-tooltip-box>div { + margin: 4px 0 +} + +.apexcharts-tooltip-box span.value { + font-weight: 700 +} + +.apexcharts-tooltip-rangebar { + padding: 5px 8px +} + +.apexcharts-tooltip-rangebar .category { + font-weight: 600; + color: #777 +} + +.apexcharts-tooltip-rangebar .series-name { + font-weight: 700; + display: block; + margin-bottom: 5px +} + +.apexcharts-xaxistooltip,.apexcharts-yaxistooltip { + opacity: 0; + pointer-events: none; + color: #373d3f; + font-size: 13px; + text-align: center; + border-radius: 2px; + position: absolute; + z-index: 10; + background: #eceff1; + border: 1px solid #90a4ae +} + +.apexcharts-xaxistooltip { + padding: 9px 10px; + transition: .15s ease all +} + +.apexcharts-xaxistooltip.apexcharts-theme-dark { + background: rgba(0,0,0,.7); + border: 1px solid rgba(0,0,0,.5); + color: #fff +} + +.apexcharts-xaxistooltip:after,.apexcharts-xaxistooltip:before { + left: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none +} + +.apexcharts-xaxistooltip:after { + border-color: transparent; + border-width: 6px; + margin-left: -6px +} + +.apexcharts-xaxistooltip:before { + border-color: transparent; + border-width: 7px; + margin-left: -7px +} + +.apexcharts-xaxistooltip-bottom:after,.apexcharts-xaxistooltip-bottom:before { + bottom: 100% +} + +.apexcharts-xaxistooltip-top:after,.apexcharts-xaxistooltip-top:before { + top: 100% +} + +.apexcharts-xaxistooltip-bottom:after { + border-bottom-color: #eceff1 +} + +.apexcharts-xaxistooltip-bottom:before { + border-bottom-color: #90a4ae +} + +.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after,.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before { + border-bottom-color: rgba(0,0,0,.5) +} + +.apexcharts-xaxistooltip-top:after { + border-top-color: #eceff1 +} + +.apexcharts-xaxistooltip-top:before { + border-top-color: #90a4ae +} + +.apexcharts-xaxistooltip-top.apexcharts-theme-dark:after,.apexcharts-xaxistooltip-top.apexcharts-theme-dark:before { + border-top-color: rgba(0,0,0,.5) +} + +.apexcharts-xaxistooltip.apexcharts-active { + opacity: 1; + transition: .15s ease all +} + +.apexcharts-yaxistooltip { + padding: 4px 10px +} + +.apexcharts-yaxistooltip.apexcharts-theme-dark { + background: rgba(0,0,0,.7); + border: 1px solid rgba(0,0,0,.5); + color: #fff +} + +.apexcharts-yaxistooltip:after,.apexcharts-yaxistooltip:before { + top: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none +} + +.apexcharts-yaxistooltip:after { + border-color: transparent; + border-width: 6px; + margin-top: -6px +} + +.apexcharts-yaxistooltip:before { + border-color: transparent; + border-width: 7px; + margin-top: -7px +} + +.apexcharts-yaxistooltip-left:after,.apexcharts-yaxistooltip-left:before { + left: 100% +} + +.apexcharts-yaxistooltip-right:after,.apexcharts-yaxistooltip-right:before { + right: 100% +} + +.apexcharts-yaxistooltip-left:after { + border-left-color: #eceff1 +} + +.apexcharts-yaxistooltip-left:before { + border-left-color: #90a4ae +} + +.apexcharts-yaxistooltip-left.apexcharts-theme-dark:after,.apexcharts-yaxistooltip-left.apexcharts-theme-dark:before { + border-left-color: rgba(0,0,0,.5) +} + +.apexcharts-yaxistooltip-right:after { + border-right-color: #eceff1 +} + +.apexcharts-yaxistooltip-right:before { + border-right-color: #90a4ae +} + +.apexcharts-yaxistooltip-right.apexcharts-theme-dark:after,.apexcharts-yaxistooltip-right.apexcharts-theme-dark:before { + border-right-color: rgba(0,0,0,.5) +} + +.apexcharts-yaxistooltip.apexcharts-active { + opacity: 1 +} + +.apexcharts-yaxistooltip-hidden { + display: none +} + +.apexcharts-xcrosshairs,.apexcharts-ycrosshairs { + pointer-events: none; + opacity: 0; + transition: .15s ease all +} + +.apexcharts-xcrosshairs.apexcharts-active,.apexcharts-ycrosshairs.apexcharts-active { + opacity: 1; + transition: .15s ease all +} + +.apexcharts-ycrosshairs-hidden { + opacity: 0 +} + +.apexcharts-selection-rect { + cursor: move +} + +.svg_select_boundingRect,.svg_select_points_rot { + pointer-events: none; + opacity: 0; + visibility: hidden +} + +.apexcharts-selection-rect+g .svg_select_boundingRect,.apexcharts-selection-rect+g .svg_select_points_rot { + opacity: 0; + visibility: hidden +} + +.apexcharts-selection-rect+g .svg_select_points_l,.apexcharts-selection-rect+g .svg_select_points_r { + cursor: ew-resize; + opacity: 1; + visibility: visible +} + +.svg_select_points { + fill: #efefef; + stroke: #333; + rx: 2 +} + +.apexcharts-svg.apexcharts-zoomable.hovering-zoom { + cursor: crosshair +} + +.apexcharts-svg.apexcharts-zoomable.hovering-pan { + cursor: move +} + +.apexcharts-menu-icon,.apexcharts-pan-icon,.apexcharts-reset-icon,.apexcharts-selection-icon,.apexcharts-toolbar-custom-icon,.apexcharts-zoom-icon,.apexcharts-zoomin-icon,.apexcharts-zoomout-icon { + cursor: pointer; + width: 20px; + height: 20px; + line-height: 24px; + color: #6e8192; + text-align: center +} + +.apexcharts-menu-icon svg,.apexcharts-reset-icon svg,.apexcharts-zoom-icon svg,.apexcharts-zoomin-icon svg,.apexcharts-zoomout-icon svg { + fill: #6e8192 +} + +.apexcharts-selection-icon svg { + fill: #444; + transform: scale(.76) +} + +.apexcharts-theme-dark .apexcharts-menu-icon svg,.apexcharts-theme-dark .apexcharts-pan-icon svg,.apexcharts-theme-dark .apexcharts-reset-icon svg,.apexcharts-theme-dark .apexcharts-selection-icon svg,.apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg,.apexcharts-theme-dark .apexcharts-zoom-icon svg,.apexcharts-theme-dark .apexcharts-zoomin-icon svg,.apexcharts-theme-dark .apexcharts-zoomout-icon svg { + fill: #f3f4f5 +} + +.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg,.apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg { + fill: #008ffb +} + +.apexcharts-theme-light .apexcharts-menu-icon:hover svg,.apexcharts-theme-light .apexcharts-reset-icon:hover svg,.apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,.apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,.apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,.apexcharts-theme-light .apexcharts-zoomout-icon:hover svg { + fill: #333 +} + +.apexcharts-menu-icon,.apexcharts-selection-icon { + position: relative +} + +.apexcharts-reset-icon { + margin-left: 5px +} + +.apexcharts-menu-icon,.apexcharts-reset-icon,.apexcharts-zoom-icon { + transform: scale(.85) +} + +.apexcharts-zoomin-icon,.apexcharts-zoomout-icon { + transform: scale(.7) +} + +.apexcharts-zoomout-icon { + margin-right: 3px +} + +.apexcharts-pan-icon { + transform: scale(.62); + position: relative; + left: 1px; + top: 0 +} + +.apexcharts-pan-icon svg { + fill: #fff; + stroke: #6e8192; + stroke-width: 2 +} + +.apexcharts-pan-icon.apexcharts-selected svg { + stroke: #008ffb +} + +.apexcharts-pan-icon:not(.apexcharts-selected):hover svg { + stroke: #333 +} + +.apexcharts-toolbar { + position: absolute; + z-index: 11; + max-width: 176px; + text-align: right; + border-radius: 3px; + padding: 0 6px 2px; + display: flex; + justify-content: space-between; + align-items: center +} + +.apexcharts-menu { + background: #fff; + position: absolute; + top: 100%; + border: 1px solid #ddd; + border-radius: 3px; + padding: 3px; + right: 10px; + opacity: 0; + min-width: 110px; + transition: .15s ease all; + pointer-events: none +} + +.apexcharts-menu.apexcharts-menu-open { + opacity: 1; + pointer-events: all; + transition: .15s ease all +} + +.apexcharts-menu-item { + padding: 6px 7px; + font-size: 12px; + cursor: pointer +} + +.apexcharts-theme-light .apexcharts-menu-item:hover { + background: #eee +} + +.apexcharts-theme-dark .apexcharts-menu { + background: rgba(0,0,0,.7); + color: #fff +} + +@media screen and (min-width:768px) { + .apexcharts-canvas:hover .apexcharts-toolbar { + opacity: 1 + } +} + +.apexcharts-canvas .apexcharts-element-hidden,.apexcharts-datalabel.apexcharts-element-hidden,.apexcharts-hide .apexcharts-series-points { + opacity: 0 +} + +.apexcharts-hidden-element-shown { + opacity: 1; + transition: 0.25s ease all; +} +.apexcharts-datalabel,.apexcharts-datalabel-label,.apexcharts-datalabel-value,.apexcharts-datalabels,.apexcharts-pie-label { + cursor: default; + pointer-events: none +} + +.apexcharts-pie-label-delay { + opacity: 0; + animation-name: opaque; + animation-duration: .3s; + animation-fill-mode: forwards; + animation-timing-function: ease +} + +.apexcharts-annotation-rect,.apexcharts-area-series .apexcharts-area,.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,.apexcharts-gridline,.apexcharts-line,.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,.apexcharts-point-annotation-label,.apexcharts-radar-series path,.apexcharts-radar-series polygon,.apexcharts-toolbar svg,.apexcharts-tooltip .apexcharts-marker,.apexcharts-xaxis-annotation-label,.apexcharts-yaxis-annotation-label,.apexcharts-zoom-rect { + pointer-events: none +} + +.apexcharts-marker { + transition: .15s ease all +} + +.resize-triggers { + animation: 1ms resizeanim; + visibility: hidden; + opacity: 0; + height: 100%; + width: 100%; + overflow: hidden +} + +.contract-trigger:before,.resize-triggers,.resize-triggers>div { + content: " "; + display: block; + position: absolute; + top: 0; + left: 0 +} + +.resize-triggers>div { + height: 100%; + width: 100%; + background: #eee; + overflow: auto +} + +.contract-trigger:before { + overflow: hidden; + width: 200%; + height: 200% +} + +.apexcharts-bar-goals-markers{ + pointer-events: none +} + +.apexcharts-bar-shadows{ + pointer-events: none +} + +.apexcharts-rangebar-goals-markers{ + pointer-events: none +}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"Codedthemes",lastName:".com"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){const{username:D,password:E}=P(),Y=n.find(O=>O.username===D&&O.password===E);return Y?C({id:Y.id,username:Y.username,firstName:Y.firstName,lastName:Y.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,q6 as a5,lV as a6,Bt as a7,Hn as a8,Ye as a9,pe as aa,Te as ab,ke as ac,Vt as ad,ye as ae,no as af,fn as ag,jg as ah,Ik as ai,vk as aj,vh as ak,p8 as al,O3 as am,Ce as an,Nn as ao,Df as ap,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; diff --git a/addons/dashboard/dist/assets/materialdesignicons-webfont-67d24abe.eot b/addons/dashboard/dist/assets/materialdesignicons-webfont-67d24abe.eot new file mode 100644 index 0000000000000000000000000000000000000000..22ce412b4560e359cb2cfadc6359f59debc56abd GIT binary patch literal 1280212 zcmeFa1(2TQnr?k1oler-Xt6fp zI`*HM`s>V0?Y*a&TKit#^*+yaht9{IkDg5R3x|xCUk)BG-O@evSNF8GC?v;pD_d!` zzrFq+|7pz2w}-7h+y6-aZnI?N49SienjJD6+a`U}pI4)JH7wimYG5|YNNf~W#>yHz z8gjw6Wb-qsZ&D@zIbMfT=Uo#i#7uu11(vrCb3|ecMzK2i08{tBvYpyzI z&Use7e(>|WK7!Y4Z#H7cb_X6bm|wuC3({?!^@nXUdW*U4zj#2pFZMv1{)=rnbjapI zrdeuV&b|W+Y)R1a(3G>|cffR8j@WV6w`L#n9DN@o+uyUz$jyd4c~-Z5((Q2`Z~wrE zA-irj#l_tYvsei`V|B7_)u~PloyWKP9 zp86dbGiJ;m-Fx_V!`Z+8HTiZXoSSX+VQ+8TEcRnM{`PzL_Y*a_dsp`!-5x}HQ^jfi z;y)+fuG{F;uf7%}?fegi>m`5Hsdm2POQd`M%YhTYyEzA{qx=R`~9!{9{B(I@3a3s``=&xD}Oz@{@%L&dGC4;{Kvlsy8b)m zKmKd{|MEWmNB{l#NB{NxzkKcg5$|?=z5lWQdHqLx&vgBoy52Kg?}4uOK-YVq>pjr* z9_V@xbiD_<-UD6lfv)#J*L$GrJ<#ca5`;YFgukru<{`=3^_s{VA+VyMv*ZkjA ze}Aw4eRlmm|7-p}cm2M0{l0d+2fE$^UGIUe_dwTspzA&GulpY0{|%0x3CU0B(%H)6bzxwb6=(hIQ zfBP~_zE2vyHbwoc%!aR7QD41=uV+zT^@gu$QD6Cn--)7rM;d-^XAx&Fycb@xx71G) zZPF%jw&V3PL~C|P{p{5yeI(9KypuCE$CCO1u+4w}pE$?nKkM(I<~S1PxcIo_HOG@U z$H&JfuQ`FlIUznFdCiF=&WZ7Q7uB3Z;+zzpl)UC-66fUj z?@L~DYKe0id>Zna(@LDv;nR`VoL=Ib0iS`q=8O{OO!!RXHD{JMXTfJ7uQ{v4IU8R8 zWYwHq;+zAYgS_UP66aia{jlAdb4#4_;Pa5zoLAzU51)^`=KK=p0{8;tH5ZgP7s3}J zueq?qxd^@pdCf&7&c*P>$ZIYxaV~)`L0)r7iE}A@De{_2OPtH#%aGUXCvo=2`;*sP zR^nU^Uyi)y0O4oWGMAS)2jT-cQ*#B0b47eb@|r6NKSr6kvc$Oxz6xh*t}1b^hOb6m zb9ISx4SWsqnu8?HHSsmcYpx}6u8prvUUMCZb6tF0@|x>Ooa^K3lh+(9ac+QbKwfi0 ziE|@-Bl4OXOPrhFn~>KWB5`htZ%STsGl_F^d~@=eLnY2F@GZz|4wE>y#J41`Ib7o0 z3g3#n=GGGDHuyH=HAhIC+v3}j*BmKvZijD2UUPfl$2T)~kT^%-^~0-c?kI8YgzrRN zb7zTj7kn4;n!8Gzqw&$?HFuLZcgJ@puepcBxhK9SdCk2f&b{%y$!qQ-aqf%nOI~w7 ziF1E^fAX3KNSp`a2a?x3Na8#gKbXAcArj}I_@U%A50f|##}6m3d4$AyBz`1$&7&mF zqw%B3YaSzU9*ZAKUh_DK^LYGt@|q_|oG0QZlGi**;yf8YnY`vH66dM-spK_JlQ>Vu zPbaT=hQxU$ekOU%vn0;5@w3Tmo+ELdi=Rtg^E`?3eEfX!nioi%7vdL^*StvLycoZj zyyhhm=cV|ivt z66bgLcjPs{mpFgGe;}{rk3*k^0!*bn7N@cE`K(uL3n&B+edq5AvF=5@%1mCwa|Y5@&C`H+juA ziL)JVC$HHdarVLckk{;#ILE@rBCpvqk;FMMJ~4UCNhHom@kz;RP9||qj!#Zra|(%bN_Q=ax9&G{wH1@HyPYc42pE`%>cUUOlIa}j(I@|ufE zoQvU$k=I;Y;#>k>g1qLE66aF*Qsgz4mN=Kemm#m&PvY#4_b0Epti-t-z8rbY0TSo( z`10g62TGhP;46^VTv6g&315l4=E@T1D)=hoHCL55SHo8$uerL!xdy%ldCfr*=bHGM zG4Ca<}U#JMiME_u!MB+m8m^~q}vmN+-SHz2RMp~Sfnz7cuNjU~=a@J+~T z4v{!F#Wy9dxtYYdIlei0&7l(K7WfwAHHS%@TjE=i*BmZ!ZiR0}UUO@Sa~pgc@|q(g z&Ta8+$!m_3IJd*MBd@u=#JK~$19{C+66cQij^s6Wk~nw9cP6j7i^RDrzAJgn(Gurw z_-^Dicb7Q#!1o}pxu?Xr7rqyH&AlbgeeiwAYwjy??uYM3UUPqm^8ow+@|p)qoCo0t zk=Hy};yeUDguLdV66ay~VdOOrmpG5Wk07skq{Mj?eiV7lqb1H`@MFkp9xHJkhaX2? z^LUB#1pEZ@nkPz}C*dcN*F0I`JOw|6yymGA=V|z9n6} zzlFT!trF*L_-*7hZY6Yu+ny-iO~uUh{s5^8x$; z@|q7yoDbm-k=J}!;(P>uguLdX66a(1W8^g-mpGrmpCGUKq{R6Y{uFu5rzOs3@Mp+t zJ}YrPhd)PN^LdH$1^fl_nlDP6FX1nd*L+#xdZdCjjS&TsH<$ZLKpaejw?M_%)LiSq~i2lARfN}NC8 zKatn`S>pT!|AoBfuM+2P_;2Jjf0sD_!2ckx`KQGB7ycJ{%`uXi-6L^!!}%8hXu5Zo zI9u=*@|ry)&Q`pYyk<{{vlrfryk>8Svkh+}uh}kfcHkZ4HTy`MojBkBho<{j5@&-q z59(m32CC&-(3CL?sC~;1NPefjGVu^DSd=m1SlS-VE;ggZq zoLu6Z0-u7s=9CiWRQOcnHTz1OQ{z*U*PKS;oED#!yykQg=k)mW z#5prQGkMKfB+gm!S;=e8CUMS=&rV)*4vBM4d`|M3b4i?Y<8zbOoJZoE7oV5B=6n+8 z{P_IjH5ZUL7sMANuep%KxiG#kdCf&6&PDM>$!jhqaW0N8PF`~fiE~MON%ERYNt{dL zOOw}JM&j&;_am>_U*cRAUzWV)auVkNd;odPu5n%hd8Bk_^sHMf&Ex5u|9uepQ7ISL;| zUUNr@b0>T!@|rtKoV(z=kk{N*;v9{SCa<}h#JM}ZJ9*7LB+fnYJ;`hCC2{VJ?@eBF zABl5cd|&dK`$?SpJV4?+5I>N-=0OtY!T7=CH4l+E55*59uX&inc{qMJdCemv z&Li<7$!i`ZaUP8yOo{gVPUh^D@^IZH~@|x#Koaf``lh?dJ;=B;Q zki6za66eME#pE?FkvK2KFD0*enZ$WHemQx~Dn(Y#22i`$mvya5tiFcCM982PC@P@qR*b?VB_&DS>$CWt8!^b19Ilja>0X_kF z%?TyWiSUWYYfdb2PJ&NDUUO23b25A~@|u%NoKxUakk_12;+zVfio9lDiF0avYVw-X zNSxE+(~{SmPU4&%pPszt3=-#z_>AN=XOcK)#%Ct4Ig7+OD?TfE&DkW*+40%QYtA8Y z&WX=SUUM#qb8dWY@|yEVob%%IlGmJ1;+!9!pSWg5)(9k~kN}7bdT{h{U-l zz9@Ok#U#$f@x{q&E+KI)i7!cBb18{)X?$t&n#)L>{qTO|HTz4P%i_zD*IZ8G9DolX zuerR$IS?O6UULPBb47eb@|r72oGarilh<5D;#?J9mAvL^66fmp>f|-okT?h7gUD;H zDRHiauSH&SZHaRod>!(d>q?yK;p>stTwmfGj1MNSxq-yFA-*Ab&5b0^jq#1iYi=TO z4#9_z*W6U%+zj80yyoT-=TLkodCe^(&SCg4@|s&poWt?qV zL0)rPiE|`AlDy`266f~#_T)8pkT^%-qsVLSC~@wD??hg6XNhwcd>8VXyGop+@zLZp zcau1G$9E^MxrfBLC%z|n&AlYfz45)tYwja)?u+kBUUNT*bANn)@|p)ooCo3ulGi*) z;yf5Xn7rm8@;5&eKa{+(!z8?JS`L?(9f9-xf3qX;Bk{_PlJL4|Ia*?N49@re&5p&7 z#Vb2b!t18xc!}8wIN$#_I}tw-uk0iVubY;WC1$7KeE;9;eg|o0bbDW*6ZXai+41 zCA@B0E|HjBieJi^$}W@ex@oywVs-`2_y5hV#IM9FyGp|ArsZmh*)=%d|2Ml9zZS3T zItj0vmg^;EH{g8#-|R;GM!d3{B)o1~ZkCwcg7f`|7@yc$K@VaTaU1D|z&iDV# z?!@oJE4xd=>!#&yiP=5)J)EiRUJ0+8mir`T_v80-rm_blylz?^l$bq)Kg5~J9+vRB zX?a9q_9*@+XDWM4!t18xaf#UzIN$#_dlG*Vuk0xaubY;qC1%gyeE;9-U&SkXO~UJ@<#mbK8#v$pH+vI* z6R+$o39p-$w!#%s ziP@+4r<|$mGYPMomd_<-U*LTI-|S2LOT4nLB)o1~zLuDMgY*4=vv2Wl@yfoF@VaUF zUSjqG&iDV#e#C#oEBi^p>!#&riP^BLoo0i`tW`E#(|KIFS{7<~H zza+eFTE<8!>k&z1J-SKEy5syG1O^@CZvo^eq zGnKVVc-{2qkeKzs`*5bRP6@A@9%D(&8oc35Wn)Wt-SikoVm2;5E@vtmPr~b_$M_Pn z3GfLxQ`v+PUN=1^l9)}5Pt2LhCXw*E=`pFqY%-kB|7MfpljD_5A>nn?V@iqHR5+ji z&HCbf@ye!_@Ve!UY@DfVb_uVW9&<>{=EUdZOl5OPc-{1vTVgg3J`ZOqn^(f?rpJ5|v-$D) zIaApJ5?(hw7L=GRgfGOI$`+RJy6Lfq#B5QV&;MqN;fvvwEiV4qq#jG)OOV&|B_%#z z3SWx6o-Zx&`7-!2Qr@%d`_YUK5Nb&1c{z}FzJ=Yu3ZUlU)Gyq>Qm@%h^L z+T`_o9f{A^#n&aT=j%y)zCOM_c|9L2@%aY$2ITd8Ly6Bf!Z#wX=Nn6Wz6rhwc|9K@ z@%g6srsVZ}Gl|bP$2TXh=R+kv-vZx)yq*t}_4t& zcg1%lujivBKHm-Bjl7=kF7f#u_#Wi-d{2qb_rmugujhM9e7+C94|zS`SK{;i@cqc^ z`Ti20AAlb~Ue6Dd`1~OJAo6;Cu*Bzw;D?ac^Ft**KMX&Nyq+H}@%a(>5#;s!NQuvn z!jB@a=SNF?ehhvLc|AW?;`8J14L^;%o}Vu9`5E{bNFBK#uqdVaCQ=a=A@kk|7|B|g6lzl^+|UoP?a75Ek8_54bS&#%I-BCqFH zOMHF}ehqm&zgFV&>+tKy>-qH(pWlGrKwi&pl=%E6{3h~xezU~qx8S#s*YjH?KEDmW zjl7=UF7f#t_#Nc+{7#9_@51jQujhA5e0~pp4|zSmSK{;g@cYQ?`TY`~KY%|#Ue6zt z`1~RKA@X|uu*Bz&;E#~k^G78-qN*pZ|dWKwi&(l=%E7{3r5y{=+*YjT`KK~8>jl7=!F7f#v_#fo; z{7;F`|HA(wujgYV^}IC_o;9uAB=x+tyTs=$IG_K0-UIJ}*Yj2h&zjbr5}q}!y(B*G zjrZn!J#Q2L?;Wk}csqHW?T~P;Y3(ENY$x8ynL0a`#Ip^~=YP+RjgO7j*>NPE9Ty*$ zyv~j%;at-?zQnT=;C%k)T+=$C#IqCOeE;9G6XO%(b#@YoXD7ucC9kuSNjTTEPA>86 z6!;XJsk2i`JUbQ6=YP-k#rxuQc4~=dr@^Noud~xiIM=jJC-Lm``1G8qvolCMJ0m_L zd7Yg}!nvk(W{GEK!Dr!2ot;(U+1c>f$m{Iv63#WPb4WZpC(h@8&NZ!bNjy6@J~w%t zokzmCrgdJ4XXnG`<4m2MU*g#X@CC^0?1B=`HLVLtJi9QyFlXxQA`;Ioiu3v3vy0)2 z;dOR#iD#F~i>WoT;+| zB%WO!U!J_q4wP`NXsSH@Q+ud}O2IM=kUD)H=U_-dS~v#U!y zy9T}nd7T|3;at^eB#|M%>=__}zVT~FfK_3`z|>+E0&=bF|H zB%a+6-;gtPb|Z;rH^%w?zh^hWH^J-d5Q%3u#Wy9dvztjc*R*af@$681C}-;I781`6 z!-tXA*)1iUYg&g(Ji8UX6=&+~))LQdgKtA#XGcgl*R*ac@$5)^BxmaEb`sBSk8e+2 zXLpcru4x@5@$8QHj-08pJ4rmdGrlu%H_+I37c5eyin$~?Jp4}JUmos&CKZ$4e$M+|%vj<2x*R&oe@$5nPL7b_x z2TMGA2!058ojp{-xu*3niDwVT59dssJwoEyBk?22>+Dey&NZz^OFVlFehg>o?6DHh z9)}-CUT2S&aIR@RLE_mH@e?^yXHSxN_GJ8I@;ZBpgmX>nsS?kghM&fnI(xdrvuEIE zkk{EWC7f$o&ysldZ2WA_)Y)?+o;?>om%PrNC*fSvdcMT77vL9grp{g{@$5zTMdWq% zVhQJ()=MOwy%fKcGj;YdiDxgzFDI|FS4cS5v|cIk>{U3Q|2fyRUM=zLHTX5;b@o~b z=bF~*B%Zwg@dz&pv=ZKwf7blyI(TeMsWj zhw+CwQ)eHMc=l2JQSv(bn1pjp>*Es7K7sT3pL0#?lM>H9h4cB}vrpqs<8}5KiD#e1 z`TjrWn%3teoNHR2mw5ICoX`K9Yg%8Fc=jcn&;Oo%8GjkCv#&@z`zp@&|2fyRz9!*Z z)B3u^vv1&UaHh__De>%EIG_JL`!@bIUT5Etc=lcVUGh5no`iEv>-!SVet>_#nL7KS z#IqmaACcGDk0qRIT0fC^_EY>*&eYk@B%b{o|D3$eej(vp)B2^vvtQwS{^wlN`nANf z-{9Yn*V%6+oNHRYlX&)f{Cm#S*&igH{Sp6>yw3h4;at=Dv&6H%;C%k)T+{li#IwKQ zzmeD3-zA)DTK^FL9DeJcIN$&G-d{MM|GCq&j*-;8o{`kOp4}vMuV;4&cbc9plDgNk zhs1lWIRAp+y`DIs_j=*I@VeJq;=MM!jlAx)OSseY?2vG$>Dfo(y-u9Z|J-SMjwSJ4 zgE!=LZ)}P8#=*xSuY2Q4yf+>`9(mmxU*f$9@CnH4-h>kGO@#CLpF2&@i6!2f1fPVw z?oBH3-efr6|L0EAb8?CIroj39&z+{{loIbvg-=CZ_xeh_H#I&rdEJ{v;=O6{Y02x} zbQ14PkMsGTJ5A3SB;K15pOL)o%_Q;O%=paYb#E4l_h!XsC9iw4NxU~ZK0A5cn?vHg zIq^Bk>)u=v@6C<#`JX#Y&v_)?n-`y#yzb2>@!tIS{N#0S0g3k(#1|y5dkaatw=mA< zf9^Cr7m;{xQJl~J+-Z6)Ch^|l_~PVsZwZO_mc*ANuX{^Lytg#IG)vt_?+w5Qkk`HCCEgo|4)zTD@2!KcLtgjRm3VJGd_D5I zx4y)CgYm)Sb#DWS_cp{gB(HlLNxZi)zA<^-+eG5MA@~sTy0@vsdz;~#k=MP=CEgo~ z4<)aATS&Y&3?D{b_qLRHZ#X`jyzXr!@!r<>*5q|>8;SQu;3LTE-nJ6&jl@Ti*S+l| z-rFAEp1khuAo1QPd=z=z+fm}Zo$#H=>)y^1@9l!`LSFZFm3VJ7KAODl?I!Ww?l_y#plPI}ksRyzU(& z@!rAs!Q^%C5Q+B=#SbN~dxuH9cQ}4HdEGlg;=LpBBgyODQ4;SRjUP>3_l}Wx?^yg; z^164N#Cyl%$CKB+6C~a{5kHZM<}x_6$$d*|cllh?fqB;LCazmUA{T_o||#rVbK zb?*|1_b$aRC9ivzNxXMCemQyFyF%i)uro?_G^wOX?-q&oZpCjUuY0#iymvc(J9*u^L*l(V@jJ=u z-dz&!-HqQ(Uia>ic<)~PUh=wkpTv9j?^*m=^1An&#Cy-<&y&}^ z7bM<$5r2`q?!6@O-plyQ)uxq?|qGbOy7jMfA6*7ZFt>lmvE=) z)gj?d)2ok!J58@n33r-aV@bT%;0-->Z)}P8#=*xSuY2Q4yf+>`9(mmxU*f$9@CnH4 z-h>kGO@vQGUiT)JcyAJX67sq?sllh?gv zB;M1TNz)O zyzZ?c@!qQVs^oQVHHr6D$5$t>duvF%HwYg@Uia3NcyBFyE%Lgzw#0ku;Omgry>%tt zTMu84yzZ?p@!nv3FnQhEK;pd(@eRrA-bNDdZH#YBUiUVUcy9^l-alDztklGt}Nel&UY9V4;t zSo~P>>N`$i-|_hI-zgINPQ_0pufEeH_MMKOPF{Uy zNbEZkKa;%r&XU-7HhwmF^_?TJ?_B&`^6EQJV&D1r`Q+7ifyBNG@e9eT?;?qP7vmR` zSKlQP`!2;VC9l5AB=%j7Urt_qS4ix;62FqX`mU1LcQt-BdG%c*vF}>^TJq|-tM4X>eK+GblULs@68mn&ZzZq3+a&hgj^9pReRoLgyA!{Yy!!5v z*mpO6H+l8lBeCyZ{9f|vyH8@@{rLUl)%SqJz6bFK$*b=niG2^_50h8lBNF=_#UCZF zzQ-i?J&r$4UVTqU?0XV_lDzt!lGyh&{xo^@JtML2S^Qb@>U&ON-}CtMg}dVqXW|L0)}*B=&XUo#fRw zmV~aRcO#*z={>f@zH#tzIA49^O6(gCACJ8H#+TSP0X_kF^-Uj?@X5%lZ*qx!Q{YpOSKpKp`=-LDBCo!_68omcrzWqyX(aYdi%&~lebY(o zn;xH@y!vL4*f%3SBYE}BB(ZO1d}i|Mn?+*ZtoW?t)i;~OzS;5F$*XS;iG6e8bCOrz zToU`{#^)xlzIi0}&5O@VUVZaP?3*8-pS=1Okl42%z94z^EhMpTVSHio>RUu&-=g@U zDiZrv#aAV-zSSi5t&XowUVUpw z>>Gp+BCozRCHAd_uSH&cYfJ1~2VaN0`qq`$w;sM8dG)O?v2QRwn7sNnkl42&z9D(_ zZ6vX8V|-)s>f1zO-w=EVdG&27v2QbcGxF-&Tw>o)d?>GuTBCoz3CHC!v z??hgGJ4@`_1>c3d`gWDrHyR&JUVXbs?AsmRoxJ+?kl42;z9)J0?Ip2qZ+vg^>f1+R z-@f?1IU{mHBE0EvAE;s=sf-$4@l4#p2Auf9Vh_8p2JN?v`3N$fiuKb*Y! zj*!@QBz`1$^&KU#?`ZsJ^6EQAV&Ad&vE?*xf`C*miPSKmnz`%cDB zCa=CzB=(((pGsbRr%CKP9Y3AC`p%HpcP4%&dG(zovF~jBZ1U$) z^YQb^tM3AdeHY>vl2_kF68kR3FD9?POCyBxoqy!x(?*mosr-HP8z zUVXPo?7JPmoxJ+)kl1%8ekXbL-6gT_Zv1ZY>bpl`-@W*~CS`^l^C0f~JN z;t!Hn-$N4n9>yOguf9hl_C1O}N?v`BN$h(Zf1JGfo{-r0B>p6M^*trA?`iyL^6Gm= z(*0TH--zAM@%lN=RQK}|yI;Wh^FQ=9y&MpZ}q^ z>HWLJ?mzH9$gBHL3B674za(~#!N+ih?zTv(yRDmq-lna)q`KQ$B=k0IJtWoL)+(v) zww@Ato3>sOyL;n&{b-D}|d`G0zwwm}lR z*TmN(ukN)ZcCU@EOZ9xAbW3w#Um>K-PsdrN#v^6DNgp|@$< zN@Dlc_|}}M?rkJ?kHANeSNFCOyGP<9$*X%iiQU`deEzq42Yd&-x<^Uu-VxuCyt;Ri z*u68pGkJCIBC&f{d{^@79xb7_Y1>U=_wM-aoT=_TBzEtK?@3BzB*UpU#=;K0{*nnfRIH)qR%4?z8c;$*cPuiQVVoeEzrl zJp4Soy3d!`eF1&}d39eXvHK$YBJ%3KSYr1j_$B1keW`@rrtLC`-IwE+bEdklkl1}C zekFNzUnQ~oYW!;Q>b^!|_q8~m|LwjGzYeeN>m_#IfZsq~-8V|?z6rmHyt;3e*nJCr z3wd?lDxtS&yG>&E?fC7SsqQ-@cHfELNnYJ|N$kEGzni?e?~&MjFV5$GyYIvA!>jv# ziQNz250F>)gA%(R!XF~9?uR9IKY~9(UfqvM=xy2_li2+@{y1l<`w5BNPvTFKSNBsA zyPw9NCa>;iBz8ZGKTBTS&q?TQ+Mbu#{Q~|1XR7-}iQO;ZFOgUG%M!a^!CxV-?pGyt zzlOg?Ufr)t=xy5Gkl6hu{w8Ot`z?vxZ{u&1SNA&-yWhq6{7-Mw_MXJ<_wo11tNQ~9 zy-nMP61zXbKjKVve=M>46Z{kM>i$$>_h&et|LJYoK9|`21^xwjb$=5_+5V z9+K*AZ;kBz8}WPfK3i(@E%U+NYP; zJp(=iXR3QfiQO~dGm%&K%o4k2!Dk__?pY;v&xX%NUfr`x=xy5Pkk~yZJ|}0YdoGFH zbK`T9SNA*;yXVE{C9m%JBzDh_^ZDQI1@Hy%>RwP{_d@tW+IoAxCnb}xx9$(ib2N@DlY_|oLny^O@}et19f>h3SGds%#0^6FkrLT}SP zKw|gu`0|{o?tv1!SHM>wukIBkcCUo5L|)x1OYB|+UxmE7SC!D)w67+ydv$zu&Q$jr z61xZCgUG9UO^MxW;cJms_u3M>*TL5zukLjv^fvA5N$g%9U!OD8Jy>G*2KWZ#)xDv_ z?v3z`$g6u}iQSvvn~+!c5DC3a`=%1RH^VpMOm%NAv3n>!l)SpPkk~y8A4Xo?TT1L6 zjt?iV?yV&BHtkzW?A`|7hBMVYLSpx}__pNLJyK%#cKCMW)xEvM?j3MG|JywZAB9)< zjuN|f!gnIC?wuue?}G0_UfsJ&>>iDeCa><@B=k1zyG!ie1K)!))xD?0?!EB6$g6vA ziQW6)`;b@nz7o6l!}DEuh$>ONXx_c8b}g~aYJ@h{1%`zr~( zP5ajpyT8G|;Y@XZE3x}K{5$gM{$67D5BLw{)%~Ny?w|0V$gBHj3B67GFA}?d#ed~Y zb^j)@`*-|z^6LIWV)vi;pXAm3m&EQdIG_Kkn~&W^=xsW>NvgY}yM*4RqeW8P9X%xU zHXW^!>h9<%p||PiC9%6V-aE0o4R6D%yIo>;2hL%;``~@>>h6@-Jr+I|d384udYg{1 zCG<8O<4Eit7ay1N)jghs-lk)GiQN<66L6-wCzRMd5k3)lbx$m@dlGyS^6H*cV)tbD zWaQO7xrE-PV+x7gQ{q!{rn;w+*xeWJOJ3bmOYEKopN71;r!yt-$T*gZQwJ9%}_A)&YFm{Vf+T=-m^sqVQY zcF%*)LtfqUO6;BwpO3t{=a<;M0M6%syBEY4#H)KDiQNn13-ey(pPPJoM|9cxJ3GYIGNKRcR^H6`v@3tx-8_N*;&&pP-zlHF@pXM&h0k_z3dav#rEEBk_^swP!ntd$z~7 zC$Bv_NZd0D=kq^1nvNYM?%4_7iM;mgEOE~+_%7tNXIF`PM&qN&YtL>H_w0`EPF{QV zkho`0d{6S)vzNp@d*geP*PeYO?%5aLm%R4uCvngIIG_L7(R3UjanFG`pa0p>bQ~mc z&%yY? z+H;)5J;&pG{%1$iae~A>C*miP*PfFk?l~DhnY{L#B5}{D_^ITz=QN3XPRCCtuRUi- z+;b*=CVA~SOX8lh@w3Tm&p8tJoQt1JUVF}yxaWMF&;RUbIxdj7=R%y%|LkZwE|R$C zV*FzA+H;A-J(uE_lGmQgB<{H!znr}GTp@AKmH3t9wdX2{d#=W>Ca*o$NZfNRel2v2B+v!m&_LE@ep@f*o&&rK5d+>GB$UVCnlxaU^0B9*KMI#qTArJ@-l6b3e}Ke|9t-4@lheAkOE1b~GIiN!;@= z{xEs%c|_u#NAX9=YtLg6_dJe2PF{PSkhteb{7LfK^OVFrPvcLM*Pdr2?s*n}mb~^n zCvng7`19no=LLy-Uc_G{uRSkG-19R2GI{NJMdF@U@mI-f&ubF*ypF$4UVGkfn;+}EvamZ`WxDs|Wea4fxXMCLR z|Ffg%Gl7I1O`i!R?wJUmh%>ckVu^bu!6zZFJ(Eh@GZ{V^dF`28!j7iT6cYDLiSzm2 zJyYRR;kBo)#645vQGn>Rcv*WXq*Pb~f?wJ#xlf3rKC2`N(_}t{RXC8@r=EdhFuRZfg z+%rEuKY8t0K;oVS@de3i&q5OSEQ~KqUV9dixMxv(QS#cen8ZDc+Ov_wJsaa2lh>Y2B<>l4 z4jVCUVFBY zxMu`Dg1q)@D{;?Ad?b18*-qk~?eXo&YtIf6_l&|vk=LFbCGOb?--*2T>@0E5F8D6w zwP#m}dq(4<$!pJU68G$m?@nHO_K>(|Pkc}E+OwC$J$vJOlh>YoB<|T4-?d*0 z{`mgnwdVkddk(}8B(FUON!)WVelU6MIYi=~L-9k&YtLa4_Z*HNPF{PCkhtea{7CZJ zbCkqAN8?A6*Pde}?l~4emb~^HCvng5`0?bm=LCs+PQ*_nuRSM8+;cL1GI{MeMdF@Q z@l(lb&uJ3(oQ|JPUVF}vxaUm#O!C@umi+C1znqPqP2Moik+}a{{9N+df1bqs=i}#- z*ZvD6?!OSfki7O^Bys=6_{HS4{}PG&FU2n;9VdF{VL;{H4FJIQPRT@v@-jo(dP`|pvs|6crF^4fo&#Qpc<_mkKD2PE!) z5Py)o_CF+X|HJshe?#K_H}N;gYyVpk_rHz5O2*ZvPA?*9<~ki7PP zBys=8_{Ze6{}YM(KgB;Kul=7%-2XZLIeG2>LgM}}@h{11|5pYOasQ+^fBuKvP3L41_fL*b zPG0+`kg&VyoKoWcsqm>dQ~Uc$+&?uwHF@oyM&kZy@oC9x|8x>|H=WZ<+&=@(pZ{TZ z(>bHW{WIY+k=Op2CG2iGXOXynR(w{@)c)Bd?w=i>oxJwXA#wkl_?+ame=Z5To6fl< z?w<$e`~U22I_H(Re?FY=|GR&Fe15$4FCcOMg7|{uwSOUr`xnL+Ca?XANZh|Dz9@O^ zUrfU8rgL$L`dV``47PyXjm@;{LVqwK-G!*O9Qh>0DRh{`K(nI8*!Am$-j0KA61r zZy<61hWLi$wSOat`!~inCa?XQNZ8$U4w1NjQ+!j-)c(yR>~1YyXxK_YcSa8wckABxt&2!83Zpp0C_h)nnVXZQHhO+qT_f+qP}n#><-#o7*Q& zd^0ES#%{#F^=f8I`r6-0;{Mj;t?6rj8wuNO$hH#qw{evX#A51=&zV;81u-%3nDslfX@?pHG{lg_} zw;@MJ+&_|hByVc}D2e+=laHpa{bMBVA4@)#zV?rkxPLtPc>3BuLBe($a-zijlgKCW zruI*ku-%57B60sz@~OP3{nI4wpH4oVzV^?MxPK=3O#0eCOXB|7YyU=x`!|tq zqObj%C2Y4Lw@BQ-m3%92YX3F~+il4068G;Q-@%*Ozf8@P{kJ9Vze9e9zV_dhxc?sc zJ^I>zU*i4;TE9r-)@+W%hS{tx6I=xhH+iTgj1f1@!Pl@|~k^iEv{l6vd|3m(VzV`o>xc?vdKYI50q%KnX zV~-$VyNx}fr1r-iNy2s;dt^!Nk3EWn?KbxRB(*>Gs1ml@*rQ2mf9%mEY`3w;khni4 zdCbK9vB-S?yFY|Hgk1Y$OWbedMqm3K68AgFo%FTeC2_x-+)ZEmJrehO$-VTo-zQ1eeF*paerF! zwDh$V*Zvw3_tzw^NniVG zN!(wXyf%I9uOo4PUGlp0wZERk{q@P~)7Sn668ASGZ%AMJ8%f;Xn7lE4?QbG+e^c_N z^tHd4#Qn|5o730+783WjByUMy`&&ue-sfU;8^r+~1kJGkxvvB5{9L@~-r?znjGU-O0Pt*Zv+7_xB|4NniVWN!;I?yf=OA z?;~-4U-G{6wZEUl{r$=N)7Sn1688@zA4p&O2T9yNn0zpO?H?j>|4{Ow^tFGO#Qnp` zhtt>o5fb;0Bp*p%`$tLKKbm|reeEA3asOEIvGlcnoW%X($;Z>z{s|KIPb8m6U;8IX z+&`IoGJWlzB60sz@~QN-f11So)5)jP*Zvt2_s=AsNniVCN!&l1d^UaUpCfVqT=Kc} zwSS(({qxD^)7Sn568A48Ur1m37fIZ|n0zsP?O!5s|5Ea$^tFGP#Qn?3m($n&6%zNa zBwtBi`&UWaznXkCeeGW(aep{@IDPG3D{=oi@^$pJf4#*08^|}%*Zz$X_irNKL|^+i zOWePOd<%W;-zstcHu7!swST+B{X58a(AWN*68G;S-$h^hcT3#AhkOrx?cXbL|3314 z^tFG##Qg`z575{CgA(^2B0of5`wvUpe}w!9eeFLgasM&$WAwHExWxS@$WPGM{*w~- zpCUg+U;9r>+<%7r41MiCD{=oh@^kdH|GdQg7sxNr*ZzwV_g^BvL|^+aOWc2j{0e>T zzbbM6HS%lpwg0-r{Wr*O(AWN(68GOCzeQjBZ%f>Nhx`tG?Y}E=|2^`1^tJ!K#QhJ* zAJEtShZ6TcB7a0*`yWf(|AhPreeHiLasM;&XY{rIxy1c1$Y0Rc{+AN>zaoD{U;AH6 z-2aCB4Snr@D{=oj@^|#L|GmWhAILw@*Zz+Z_kSY)L|^+qOWgm3{0n{U|0;3+H}Y@v zwg0=s{XfWm(AWN-68HZi|3zQ>e@oo|hx`wH?f)xr|3C77^z64tYQK#jVY{^vCAHs1 zlCa&{$dcM`qe$3p?SGQmZ=*`sZf!J4?YGe-Y_~Rs#QibJVB>1)47;(jl=m%jG(@%O3yaU|}KOCFcL_Q#XBKR$VU`r4mB;{Jr>3F&KpB8mGGlP9LH{YfP5 zPfDJYzV;`RxIa00a{AhzLgN0EVYkww*`!kbgrmy{3B<{~jo|V4#XOp-;J9&2c+Mh$>{+#4F>1%&3iTiVt z=ccdyc_i-7OP-g$_UDthKRa+FwKB{+i@9>1%&2iTi7l*QT%ibtLYu zOJ0}0_SciRzdm_=`r6+>;{Jx@4e4utBZ>PPlQ*WX{Y@n9Z%W>jzV1%&4iTit#_olD?eI)MhOWv2h_V<&x zzdw0@`r1E0;{Ji;1L1+QiiTh`h&!(^ab0qGcOFoyr_Ro{Je?Iwq`r5xh z;{Ju?3+ZeBB8mGKlP{*P{Yxb7UrN4|zVn80s7j1 zP~!eWq91Nz$kP~!ea;o|Ihs zlS$m4oIE*w?N1?be@gO{^tC^g#QmwsQ`6V}G!plxB~MFV`_oC-ZXMH0*lry&NZg;1 zJR|RGe|8lej-Sd3O5RpF`sQoa8y_Ykw|@`*V}$rmy{Z zB<{~ko|nG%=aaZUKY4!o+FwB8{(|HM>1%%>iTewa7pAZMMI`PoN?w${_7{`5zc_hu z`r2PY;{KB4CFyH_DT(__lb5Ei{beNXFH2sQzV?@sxW7DkdHUL4LE`?3{@leoV+d3E~QUqj;ln&dU1%%@iTfLqH>R)sO(gDbO5T*d_BWHbzd3nx`r6+@;{KN8 zE$M52D~bDCleea?{cR-fZ%f{mzV^41xW7Gld-~enLE`?7&ul-#l z?(a(8mA>|OleoV-d3XBS-$Ua5p5#60Ykx0^`+Jl3rmy{dB<}A^-j}}i_mjB4KY4%p z+CM1+QWiTekW52mmELnQ7WNnMY`r1E2GRAlOd89;_qsT|` zrd*De=yDAC82%amzxnf62~Mr!IEh}zlaJ@GEw2+KdYwoHTrUVU4mchctfJ&o8&inQ;u&*bbOoqHhnq1Bf+nAyerZ1J@R|J zDaZFEI(|U@fW90*l;GDoK9cD8F`0k=4}PuV6N!$Wl0T&{$Im4AwT{mvI(|Xs`yap7 z@uft^ugG7~m*dwG{94C15*@!Kf6JS4{7$0d_vG*C%kc*Zey!t2iH<*!f8tF!{w&e) z7xFLk<@l=vzt-`aM91IB{QE!gYaM?`bo`V2Cw)2oCBd(C{4LS(AM!uEDaU^$I{rug zj~>U)NbqZ&BS^}zb3_S#t#c$vId+aLDaX!HB>1(?|4GWRb5sd_t#dR1(?F(u{LIhF*!);UC?_c;xYTQ;y?H@N1nDNOYW# zJRxt&aUzM16O$*VFULtFI!;QSl)fA%li=4nCzt3r1$heIl;e~V9j78sMPH6nOYm!* z(@1ojmOL$Q%5gdgeywwQiHC16034X0}Zi$Zbkoouj=r}K#?|=MS=X??!=O@okUych%bX<_U zAbmM5B++qU^1}4xxQGP5*14!e$HmBt@unOXm*}_zc?tS*TvCEx>s(5LU+Y|2qT@2; zWq4nX%Sv=yj=UUwIW8~JaRu@U^yRpsM8}oLE76zZ$`brq=PD8%S0%5?n{r%DqT}l1 z)#=M|4T+9xlGmg!$F(Fnu1)6qAHUYQjzq_G$$bCg*E-je=(s+4efo0TK%(P@A-;Y~SiD$#K>@@DkqxVc2fEy!EYm*bWa9k(KHMPH6vOLW|ZybXOh zZY$AoJMwn)<+!~>#~sK!(3j(m68u`{P7)n=CiDG|U+dgOqT{aQUFpklH;InBlXs^t z$2}xE?n&O0z8v?G=(snT?|=MS=ROi0_a*cFk6-KDPom@gat@A*Mjt7ws z;!QaoEYa~0@*(u)c&J3j!^nrxm*e3Q9giR%L0^tXN_0Gm%=bTjt@CJ!j>nMs{>QI% z9xKuDIP!7y<#@aVzt(wzM8^}!eE;LuI!}`5cry89`f@x)qT{LLQ|Zg`G>MLOju(+H zqA$mbB|2V0zJ$IUFO}$c8Tm5$a=cuk;}zs9=*#g+iH=v1`TobRbzUve@fz|q^yN5Q zf?w;rR-)r|WWN9LYn|6ibi9Fl1ARH(DADmI@=f&Rc(X*uTgbQ2m*cGx9d9GwMqiG% zOLV-0dPe*Yi8 z*7=Y`$A`%e)0g8T5*;5UKT2PYk4bcVocuU_IX)rL@k#QN^yT=J1i#k#v_!{e$bA3f z*E*k-==dD@Ir?&ZUZUd*iR`TobRb-p9f@m=z}^yT=TM925Z@6(s#2NE4WB!5U>jvq;M z{FwYPeK~$2(eYFAr}X9cnMB9W$)D4g;};VATIZJ%9ls*;{f}Sk{92;pH{@^V%kf)@ zj^B~Lqc6wrB|82<{(-(6f0XF>6Zt3la{O7M<1gf2=*#g}iH^UKf1@wQ-zE69&OanN z{z>NhAHUZ5mqf?E$$!(A<3AD||0VxRUylDt%CRdF{94xtl5*@CQG#FV8c9-)T_a2I zYh9yA%CYNzl5*@CRf1pZ8ckA;U876zYh7bV%CT!q34X0>EJ-9prNCl<3$+<}cK-o7_z<#~z7}z2si{a_p1nIFvk;z8w1{Iu4Kr=*w|XqT?{~ zF#2*FM}lAL8dri}>l#m@?|qC15yiH@t1SEVn<)g(HuPF|h99M_QOxF&f``f^-Lf?w-eTcYDSv zxTOTY*0q&H$F0fy{2#y8wT(o_ZOPlxm*aL49k(ZMPhXBZNOathyd!-%?j+H1XY$VU z<+zJP$6d+0(wF0I5*>FZ?@nKidr0tWU3*G&+>6XV|BGMi+FPRIKIDDq%W+?cj{A}K zqc6w(B|08JK7hU)50vP55cwebay(d~<00fj=*#g?iH?Vn52G)~!zK8&t|KHm9!Wlu zH|2PgM8~7aN7I+%F%lh*B_B&)j>k!KJf3_!eL0>W(eXs`iS*@ol0?Uo$tTm7<0%py zPbHs9Uyi3q@M~SCOLRPgd_6p%ke^qju(+HqA$mbB|2V0zJ$IUFO}fex-OIGcscoU-jw4N5*@E3UrAq%S4nid zntU~VIbI{taX5K6eK}q$(eXO+b@b(Uy+p?w$T!fJZzA7BUye6R@M~SSNOZiF zd@FCt@ivK$x07$DFULD1I^IdXlfE49lIVCh`EL4hyhozrz2tl8%ke&mj`x%Ar!U6` zBsxAwevrN#AClnLx*nG3_z3wC-jw5`5*;5SKSp1Uk4toXg8T%1IX)@T@hS3C^yT=p zM8{{y&(N3Svl1PjBR@x9j?YVUe1ZG|eL21;!LN0_B+>C@^2@v_$5$jezDj-tcl z<45F=cvFraOLY8%{0V(Iek#%NGxBHj<@mWo$1lkI{2#y8^`%6|ugG7~m*dwG9ls%e zLtl>HN_6~={2hHcelNkVb^RdG@kjEHyeY?@Bs%^~{+YfUf05|;EBROYa{NuAC5pCiH?7g|D-R+za%>TP5zs{9RHE%_%Hci`f~hFf*-${E-AJ<5|0gNO?olQ9weHa*<=8#C1i#ijhNK+3$CTjLy2p}~WA_k=j$@Pg z{@1aQ8@U`iBszAIJL$`@OQK^pnZJpSJ>(v8Ird6)>?8Nlm*Y^0j{W3*`f?nQ=r~9o zq%X%|68u{CI1>C?_qY-r$0Lu&`*Iv#qT>YQ3FymlLJ5AYdm@RB6O;M*KYp!y5{ZtJ zlKJ^Reyw{liH?(#C#NsRDI_{hNuH9v9H)}#I5l}{`f{8`qT{sWY3a*xI*E?clc%RI z#~CE}weA@uI?hC%i8tjqvqZ;P$g|LwUyid&bew}c2YortDbaB*@?7-g zIJZQ{dC2q7m*cz=9p@v@M_-QfOYm#m3rKWakj&5j@oU`+NpxJ8%+LSvYu$@TbX=6Y zD1A9DCed+m^5XR6xP(NOB|5G|UWvXOSC;6w3V9X!a$HrS<7(v9=*w|+iH>WK*Pt)QH6=Q(MP7@(9M_iU zxDI(8`f^-Xf?w-iPom@cWPbjSU+dmLqT_~Se*TYN>)uGBC15wiH@6+H>EGf z%_KT*PTrip9Ji3@xFvZ@`f}V#qT|-&t?A2g8wq}`ds~T)+mW~9O*w8a(Qyaz4)o=? zqeRD@$UD)Onl_9xu`H1o8>=<#?h* z$CJn>(U;@N5*<$=pF&@br%H4@jeHt?Ii4=j@eJ}A^yPS_1i#jOmPE(1$^85uzt(+@ zM8|W<{QMuk)_tBt$MebO)0g7~5*;rjUr1k$7fE!yn0zsPIbI^s@lx`o^yPS&WQ-sA z^Kyy4SCFsZP5E9a!L@Z?CDHe4^3}X4-)kiL4kr(%FW+k=`d&xAj=p@am*{%~`3Cy( zy-}j?O=Q0Rac$iAk@_jdB_yeZ#1B)GQjJ0<$wMds)KxVG-Q zCHme&zK6bi@0I9#ANfA|^1WZ8?*rrq=*#y(iM|h!AEGbchb8(xLVkq4d>@tI+PWW; z==(VNao&{g6B1lo_mdKRpCUiSoAP~HqVF^0XXwlKS&6>Sk)NY4-{&RzzCeC~zIFRc=*#z8iN4>FzoReT?mTgeCz)XeW|LZ%9Jd9kv<4E)!mpm?g`Hm;Swe^fI z(RTte-~YI_o(U!TPDGxFzI-Q^;M#g7k?1=qc~ah#?_?5vCnxj$k8A6hLV|1SnNosl z>zPWT@6_a}d0)QMNc5eSJS~0sPA9>&^-M3(cLwqdyeZ!qCHl@po{7GEXO`gFdS;R6 zJ1cos-jwfb5`AYU&rV;yb4c`^lg!WmacwuB~SYiM~sc`TobX z^(-aPcWLs{^yRyZMBin}%hH$cauQry&+-y|S0JyzoAO;zqVG!NmFUZNWeKjWXBCOQ ztCCmcP5G`S(RX$7>h$HihD6^r$^85u*VeO^MBlZ^YtxtSIud=?C9g|gzUxVFZ9VHt z^xc5G0dLB8Ly5i{kvF0*-;E`>ww_HS`ff_zlsDzOnMB{s$$bCg+IqH-=({DE?|)od z&sGwBwC>`tC&DiN1Vymf+fYc9H12 zD|uJml<#g5eRn7CPG7!zNc7#4yeED6?j_N8Z}Q&s<-3nW-+jsZ(wFak5?ou){t|r; zARoY+@;y+Z??L2)=*#zD39hZ@5Q)Brk`Lug`5q?G_i!@b|G2iEBP9ABN#^?>*Vc2C zMBk&yN7I+@F%o@`B_B&)zQ;*$Z9T_J^gV%m0&mLqM2Ws9kx!y8-;*V{ww_ZY`kqQY zl{e*knnd5z$*0qo?->$(&m^BoU%qEa^gWw=HhuY?BhmL<^11Zod!7W>)^ol@-wVhW z@TPn(l<0dA`6BxAy;y>4>$yat@1^8Rc~icZN%Xy(d^vsjULn!b=2 z)0gix5`Bl0htrquwGv!g&vg=guP0y6oASLuqVJ958|lmUCJC;s=Vpn%w~%k)P5Is` z(f2m;ZS>`PyF}kR$am0}@0}8T?;_ttU%q!s^u33C4}JOGE5Wt(+$YiZe)9diDc=Vq z`aVd0kiL8$lHl5U9+v3)2>B7-l<%VweIFw~Mqj>Zm z-)G3r(3kJC5?ou)a}s@@CqK`d@_j*~?~CLY>C5*e39hZ@Wr@D8kYC|V`MxUA_ciis z^yT}yMBg{aZ_tU@>lfb`?W;hZ^+-! zm+!X{TwBj~5`DiXf6trp{XwGdkK`Ze%l9V1iN3#(f8kB}{wmS;H}Y@v<@>ut z-#^HI(3kI@5`F(7|3zQEe@pcJhx`wH`Ti@xwe|cbDc{~maBaOKNXoZ&L`nJfjwHdg z^^Pnl-`-IqxVGN^Ny@i(R0*!FcQi@)_Kq&Wwe^l6Dc{~PCAhZUu_Wc&J48~xy<ckjuAIqHhG{D$0d(TU%ul>aBaQgOZ1(9JOOXYcS4E26OkvPFW-qJxVGL&B)GQT zNhSJDM&|c_aBaPlOZ1(BJOzFEPAS2)^-d+xcWUy~yeZ#lB>GNEo|e9Rr<35?dZ(A@ zI|F$J-jwf*5`AYP&qQCoGfVWHg**#=`OYfQcQ*2D^yNFdMBh2cbI_OXoDy7H?_3gn z=O)k1oARAUqVK%qdFjh{J_)X^cYcY!3y>G!P5CY;(RU&8LiFXkuteWQ$o&2fuB~@b ziN1@G`TZYUTkql$eU~6FL0`U0N^otxOG)%yn!Ge`%6A!wzRQxAr7z#*B)GQTqGt4j1;jl3Ft`K~U}cMb9y^yRyz1lQKPmPFsR z$!qhbeAkiayDoWM`tn^*f@|wtU!v~@)lkM z?`C9v{|DFBySYT)Ey!EYm+zJmTwCu}5`DKOZ_S(X-A1DCw&ZQ;%Xd2ouB~@_iM~6K zci>I=?kLfBC-P48<-4;)-(ASN(3kJ75`A|g??zv~yG!)lgS-cQ`R*yfwe{{L(RXk1 z-n=Q_eI)wsOWv2heD{;!+Ishw=z9S90N#}Eff9WWA|FIwz6VS6J%r5f|KQqs50&V9 z7@6Py!L{`sF46Z0@)7jqd!z){)_ash-=oP#^QL@{k?4CY`B?h$Jx+pa>pfng?+N4+ zcvHS7O7uO6d=h>6o-EP#6!Izb<$J0`-_yva(UKpH|2YwMBj_Z7txpR#S(olA@ln`xVGL)CHh`Q zzKp(nFPG?h1^Ej4^1V`mYwNvAqVLt@t9ett*GTjoP99EQzSl}{ZN1k?^u3;ZJ#WhQ z28q5ml5eCh-feMqA3!{mqQ%l8q9zK@b0r7z#d zB>Fy1ew@C1pOE0%dY_c&`xN;p-jwgt5`CW`KSN)>&q{D@z0XPXeV+V0Z_4)tiM}tA zU!*VJmn8bWOn#ZZd|#31`zrZW`tp5EqVMbE*Xhgm4GFHT_f3huZ;{{PP5Hhp(f1wl zJM`uIt_0WC`<_JK_sQ?`rhGq;==&l0L;CXlNTTn@MhL{+Ygff05|>EBROY^8HPs@9*T_>C5*I39ha8Pl>*Nk^kaN`Ti}@_aE{<^yT}n z1lQL4pQL>IBEhxwjUXxCz7Zw3w!V=h<=Z#11lQI#illt|{wKk;^^Gbi-@ef#<=Z#9 z1lQI#hNOJ^#+2aN`o@x!Z{H9}`Sy)1(YKNL{@1sI+(9niPKmx<ycvyf+@FW*@uxVFC8 zB>K)yo}D-4JBLKyImvS-qYUTIxg>bEzPTm3&qL<-fADU7^GbA|kIe7?=srJresZ}l zAklq6@`Ci`zK}%sg~Ko!MpXXE75&D@_O{;zP<$S*0+H~ z_YKJ#@}}H3lIXrMd1Lx=-$bJOrsPfO%Y8G6?wgZ0r!V&{BzU*JEhV~dMc#@x<-WB9 z@7A}CME7mU+w!K|x0C3;J$ZZja^FFMckA0xqWezdop@93J4m~^1-|*_d_JQA4)!yzT6L!=zci)aQbpTLZbVTzT8ic=zb#kMEY_+NrHFlJ6WRpDdbalQ|_lqbU%%J8hyE+ zF46rA@)`8yex^kCv&d)Bm;2cgyj$Nn61-dAxf0#aBcI3naz9_9`vv3+=*#^=iS8GX z`Tp1aV)Di0a=%2P`=#Vd>C62xiSCz^FQ+f}D@8el_`O`f|TUqWf_2 zaQbq;R-*fL3m{d$S+H;`|jFZUZIc(=ZrB)Z>BzL_`Wev3r+TgkW5m-}rJ-ESw~ zPG9bKNOZrGd?$Um-zCxgZt~sq<$jMu_j}3r(wF;v65a17-%nre4@h)>kj(eL?hlb4 zBA5Ha65SsmKSE#bk4kiZjQkjVxj!z^{R#3D^yU7fME9r2PtlkA(-PgEAwNT3?$1he ze~$bdeYrm`(ftMT3-smwq6F{O_mV{Sm&q^lrrckV=>97CRr+#&O``kj{(`>Tzm(|y75OXra{pSQ`#0oo=*#_EiSFN#zoRer z?mTg+<%nd-THo#=>9YLXWo?iFB08IpY-Ma zmqho!$$!(A`#%!h|0VxRU+(`&%AL>LB6zo2N~Nx2UlMS^!5 z`aemz4;@v4cN;pIq}+#&F2TDE9Ya#?L&uch-G+`ODfgj6BzU)>V@t|?Xp`vPLGDO& z?<9AU%e_mYdpEh8zTA5xy7!X#`M>Uc)AklqB@{IK5 zK9fZEnaMNLm-{Rd-Df4wN?-1?N$_q%XP4+c2YC+Ol>3|#-RC0DMPKf7OLU)yJP&=j z&nwY=KJt9@2NRiSApIx8_Z`ZzIutTk^K_<-VOn_wC8s)0g`W65V$s??_+nJ4tlknY=T7x$h#; zeOL0X^yR*rMEBjvyVIBZ9unR6B=1RI?t4k_ZbSE$=)MnmAKsMvz7pN{BkxCF?)yu0 zKY)AyeYqbf(fuIuLGK=*#_9iSD9nQar$z9LZbVV;5kJU2?g{{3(68e;NAKskl@|=CzR+u5qTosm;1yL-6tVWLSOEaN_3x$ zJQ;ntPcG4Y3i1^6KJ(U<$w65XdEPeWhs(@OAe{nJTwpPoEDZ_0fJiS9F! zXQVIpnIyW;OrDv(+-H&KJ}Y@v`f{I5qWkRR+3CxD4vFq_lINr^_qimx&rP12zTD@L z=squbUixyMPl9*rpI@T;0^|jFQ|=2&bYFC1f;iSDbCSEVoa)g-#FPF|h9+}Dukz9xB1`f^`OqWjw9wdu=!9f|JilGmj# z_w^*YuTNf|zT7vE;NAK+l<2+@c_ZGG`^FO8Hz99AU+$Yqbl;4;8GX5LF427p@)q>v zzNJL>t;k!^m;2Td-M1lcLtpOON_5|j%s>B&ckAC?qWccy9q7w_M+x4oeenKSQGXndCF+%l#~g?q`$FrZ4w%B)XqVK9|1S&y(nWKKXq5 za=$<_;w$`lp~O2bB45Oty5nMrcU(fggud>$RKg9d|1ybpTu$ca|J=~}uaJ1hmEyE1=-f=bgYWlk48i{udC-eQ!4XyuLiFaH_=KG%;TL1MD@3?_{1AX0bql6n;|4kC_ zxS4!2Z|aU)B;Ii=`BwV6<2DI5wEo*A-f;){4&KxqcS^kDF7jRUb;sQj@3@D24}INn zuf#jBlG>w4XyuqiFdp}eu2L3cv0dV zFOgrOuRC6ra6{{_|DAhfAFSm`cvXf zf06&9ubcjsc+)@Rf9UI`e|xTg&ak|G=>jyrmvgkk$BU*(aGGxC0xu*>*EAgh~ z$bA2EPa9ZX;!P`%SD>$(R+Mm08(2x=O)Hc6{^y=Hu!@9x+Q6z3Z(5DK8gJ^R)g|7v z26+wox@k>`H?2ipi@t7JTf#kUU>%7!txH~)H+9o`5^q|cygq&1w1LE%HY9IIUpH+e z@urQ*8`IZKn@G5)4Qwj$rp?Hk@uqItT*5tVU<-*iZAspeH+9oi5^vg?%+LS1rwwc) z@uqFb+tSxf+ex^m4Qwy*rX9$9|8q|p*iqt5JCS#yubXz3c+)QAUFhqkT_xVM8+kYS zx@mU__q2gMB;K?qc~9QdO?yeWrw!~a@uq#q{QRGL+Q7aNZ`zN%AAQ}lzr>pkARj52vr2j*xiMk>n%k>!zb5+|ve* zmUz=KWWN8s=~(iycvCl>F7c)_$Y;>kO=n8H=`8YD^mWtO5^p+(d=7oxbgqPZ+Q4}d?r8((OT6g< z@&&xFn=X`i(?w*y|GB3PTrBaXOUQixb59$%RN_sSkuRgKn=Y4dPaC*G;!RhQ`Tpmg zHgJ{1o31AF{m(sZ;2McH4JQw$ubZxwc++*{>*(vI>m}ZF1DWrC?r8%zO1$YN@=f%0 z)6EiZx`liTecg1c#G7s--$q|I-7fK_JIHs?*G+dyxTg)=CGn=a$#?UnZn{U}P4|-T zrLUXrlX%npauP=`HeG^mWtQ5^s8k z{0@EH^sdC4-Xp(9UpKuk;hr||fyA3WB!9@8y6Gc{H+@Y0n7(fMMB+`Kl0T)dn?93x z)8}Nq|GB3Pd?E3sFUfrWb59%iO5#mllllJVo;L7}#GAe)e@kCCeJAmz@5$fO*G)f2 zyy-_W-~Zn96Zt1{-So4>n|>kxLSHxiD)FY@$iLCoO}|UL=@0TB^mWsp5^ws8{1<)Q z^tZ&D{vrQEUpM_L@uvUC|Iu^PU?g?Z;0O}#X@et5>ZZYwB;3;mN0x9;8yrPaHx2$z z!aZ$pR7u@5IGTie+TiGtx@m9>3HP+YF(q}=;8+swX@f%~b<^P367Fe(O;R@vc1XCV z4R%Vrsf*0_zc+Q0yUBG^kHnjL$$bBNQy;mHTsIAscvC;QpT2Gyka*J|nIUf)Mjl44 zo5qoN)41eu>FcKPB;GVWd3^f1X#$BiO-SbZ-!xWW+|vf9m3Y&1j-87rTn`S4^PG2|8A@Qa;$#c@zO>;@O zrwz_6@uqpm^YEr_npfgY^O5JHubbwVa8DatK;lgck{9Gn-L#Ozn-(VX{m(sZa1n_& zElTG5-!u|o-n0~%?|<%TgG)=iX&Ex#|K7ALd0BGZw4B77 zmM1SyUpK8F@un5YE7I3ZD@nMg4X!Nlrd7zR@TP8BRpL#nk@^1To;J9;gnQcH8WL|> zle{Kx>ZY|M-n2G(ZTh-t9f>!sOJ0}0Zdy;mJ#BD(i8pOP-helC(}ogn+K9XneciON z#G5uDZ$e);Z7SiOHn^F@n>HtJ&YQYv3yC*vN#^_Co3kan`nqX*i8t*)=KJ59b|mjeuA6p}c+<}0o$2eQT_oPLD|uJ?x@k9wH|;H+9qA67Fe(`$)WLU-G`Zshjqbc+>vm{pstb10>#bAo)Q0y6GSZ z_q4%-CEj!h`4HaJO@~Un=`iwP^mWtW5^p+!d<1>nbfm@(J{H(}@yqI*EJ|ecg1j#G6hbpF&?Zohsp;Hh7xEn@%U6 z&YQaF42d_LNj{UlZaPciO=pwOrmvgMk$BU&7+(+1C%a8Db&K;lgok}u?a z-E@(}n=U3_OkX!$BJrk6$(PdCO_xc$>2fkZ|M#XV$XAf-rYj}hbQSq3`nu_Ai8ozC zzJ|VT8ZPmsYsuHr*G<<+yy<%K_4IYq4H9p2~t%^mWr667Fe(cS^kJF7jQxshjSWc+)-Pd+6(?dnMjU(<9_Z=2ZlSJwbkgzHWL_;!RJH`T4&$ zJxzX^TsJ)<@up|V&(haT&q=)LdGho0b<+zHZ+emZB7NQTlEj-{CcjKyH@zb9rdP?Y z($`I|NxbQG^6T_<(;E_RdXxMneckky#GBqGzfE5^y(8hCHu$c@o8BY8$D6w8eTg@H zK>mQfZu(H-O&^gzqOY4imUz=Ac+)rJZ|Li$ZzbOJ9r-)@y6Jlf_q4$uB;NER`A6Q=O+QJz>1XoK^mWrO5^wsI z{40Ik^qa(+ekcDZV~MNw}vC8(C5}4I4$mJ#EZW1;XX^aJDjmD_f8O`Lf9_(35N$Ms5JG5(X=n&B4WS{#gp3eELkJ;+ z5JCtcgb+dqA%xIF2qAs;&Xc;0v4?eUD&48l(=eRYEp zp3-9m;U|`!Vo<_U`WglqPiqpdDH%^|5%d0UJf#w+5+^*ZZIJP_4)HqV6Q0&J$aqR4 zP9vZ2w4Oo6)B41`{~J%~#0)i_;>2;{gr^M*GM+Xh-jIC4(?$jvPZ`7+AD#L^Ei$aq>x%=>@e@lw+92cU7-HW4@e@m5VUY1u zNzD5{eq!mz8e}{jM|>Rlgs0;TGM=i4tH>ujonVmhw33+jf8*&y;uDDzo~jKpo=ze@ ziG0G-$p#rurx2e)KH;gxAmiy&V&4Dp6H7nMAmizDV&4Dp6HBi($ap$~nD>AD#L~|+ z$ap%7nD>AD#M0{wGM-iuuOgrDbhbgp(>cWFkWYB3HwZtm^m7d|p3WmakD7$1^9?ed z8i*UnCp=wXknwaO@rC3Qo-Q)Tcxoi({U1NE^otELo-QHg{U1NE^h*sgo|=ex|Hn@( z{W61$r^|_X|Hn@({R)GOr)J`2@(E8@8e}|OMa=uZ@pLuu)x-%;Ee07+*AQPrKH=$F zgN&!^h_54`@YHIM@pL`$_2d(tZZODrx{;XofBeMK+YBr>BUYBA@W|v_ZzxGsMr3Pk8D#$as2|nD>AD#L}NL$as35_<8aPPXh)S zPcIPj{*Rwn`ilk`PcISk{*Rwn`k+DhiKV}6kn!{i@hj9MJiTg=@ias{L_Xo^HG_<& z*NI;zpYZgCLB`WCG4KEQiKV}3kn!{uG4KEQiKV}7knuD^%=-v99vOP?|bKe6<04Kkj-BmRz>gs1NfGM=W1r^zQg{a}#s^ds?) zD!c*Kb z2tTp7ZBW8fJYo=jVsXcygr~S`5Po8D&!B{-xNi`CV)4MBgr|6D5Po9us6h!&@g#%r z6N@Jsl<*W^&7g#*`057XCl-$xl<*W!F$h1g_!_j)5#}1#SJo^HXz=Be8SU)1{qHq z5pP63;VHu)<7ol$0`dt@8yjRiZ9>fZKYn8IOoQ+fi*IU>@w6H7X4E7+ZEle9ltr9H zKH+H#gN&ywiMJ%5@U)dd##1(NHu;37tqn4swjthze8SVV1{qH|#5v>>p0+c{c-o$L zd-4fSI~Zg<ODX*c5C$R|AQZjkY`h4KkjV5HBI0 z@U)jf#?#)!y#M1T7B4agKe6~e1{qKL67Ne*!qa{R8BfK;#pDy7_BY6QI)L~9@(E8% z4Kkieh)c*PJS{WGcsh{yK=KJs2N`5Ml@gbdPk1`mAmix};zP(MJRNF~@l-}!Mn2(b zxk1L$VZ^-u8&8K5A5NU`RBn**bOiAcev(1P)5*jqQB(nK{-m@UHM_OLoV0r(5bw_XMZ}A`rGi`-kQSr6xL4YP=RL-y zJ$qnADy)KjX-OuuNPDFL8hhtKhg6gd)zUsiPz&_z+bHdaRxqMDK zq5xW9TspD~CZ(f#q>2jZ=q%|N>W`_DR#3MB-Ad*hn-4?Maf8zFaUgg6gj7`wy@00^ za-arArIoqR2=mg3>~dl!5LdTJC#6EQbg~1~pThGg)YdSgW?VXz^VAk#*VB5W)3brI zHUrwFGw^vv6;N}=Ak0W-ra>u8N@p?qEb8i*TQ?@HssOakZj#Pn);V~pj{`I7@o+A? zoI53*R|nLe&wWFmbOC)ApnV~8F3JJ48w;e1GocmcrAr#5OVPR%?IwDf$X!+>T`nkw zHXwIJEuh_84g=Da)Lco=mHjX!T@{B)Aa~V}bhQJ_y1E0nZ^2VbBe2gkg@EogbJDdH zFf3iieys_rfS%S->G}Y&p#*B61?ahm=?ZcXt+yO84+{xtBTjmO-D? zMNd~VPBIeMR`_j&XN@?lDPAs5<#9bRO|7pq}XdZ`Zjq(Srt=^3QGdk$?u|ldf?;Wxo!@kTzBjphD+lO%o4&VOpSs2gMMhdh5s--qMUM**}* zA2aV`?mnh}JQI4PPYR_^9l*p5o5>M7hU&Uci z`kMSV#nMy&)PGkbeJ|*M8EG2LY4)2Ql767)hbCagkL>Ydwe(Z6G?N4Pnc?U0Gc`Xq zOTUo&h1y@nrC-tfmAhGXo#p(E{BJ$d@3qn&)csKdBhp+pw8OOYC;t8<{&QaXi@v|Q zrN5c^cMD8P^JvUZNdFW7@xS>nCjCe4f5Wnr0u|6J%SwY<7?)+&z_hFg&yfLHP8?cf zxzxLbvixjWL8`2K%f&F+pw&Lx;ejDTg@rKlFNd1PxvNp6uadYh2jg!!9LpP4Ib(^Me08GCHj1S7IGC%1Vyw9CpuE2|aI-69SJPy-XP zwk(2fSzDz5J8jh=E1UZ43Ye3%HGSLU$=Ws-rex(51NGZw0y}J{1GovUcs1m5(;>DAsPw-MvWGBD5Bb%PL5PAz6zv zf!@XR?U@A)Fe|H&Sxc&9?Uf57vi5G4RYXrwBe3^AXzp78eX{n;05pr4Rop9Ue|Fx# zRn`G1&<@luMQp;!}OQ1{ELF`dVeJL8H%qm6a5Ofczm363qzC(Lt zl~Gg1+%o#hhGi|Me>pRjqkS0p!(t&JX#!URDhnHN>ZqJ1qk$phwo}oVB^K&R~Z#8ev4% znbe+%{+S)J&dPx%7?4$$2Hh|%YZdpa&^tR7N}&tpWSxWlIo#Km13l+*ckYm^^VsQp zYR?~+)j)4UyQ~X1FPM^bAv;_+DeIydptdmsnq*xZKqa7aNj9_qb(ay`K-QxL&@AgQK^e@*>ZSMbV&MLXa-jdoYFT|5 z&?oCDG@hz}c3Dr?$a;qSGjp<@ZGd4}&-KfCJ`K2gp8W<&WxWuW^`ZmhUZVG<0a=6W zJJ>AiRw~U8!15i#t85{Tm;k%&&ztVSk_w! z24%f1p#SX&S-huMBSW&@LGvBrcZOxX%lR&M@0Gx$tkDWt|4W7*S?}iqKcf$FfOD(? z(EO0+kD6dg*2idljQ+>%FfVI-Ox7p$kT_>#eOdsGK>S$-R06f1jmnycLyfG@$$wr1 zOV(5_aQ7{G-=g>JfUNHdfWGhP z`<|X@;vcGD5awk4SS#zNELk&ovVNYC^-BXx%lfrj)@+Zg-!cKM-?{&t+#k%C6YxAo z?;LaICT0DZ1L*!aBI~bgXqNSN3KRl!=38a`(+9J%{w)Ty{wsn$*~)@J*;Y1G1F@Y7 zRnP`wvLl?4DcMd3aPQ_r9gNEMsPj1eVi=Mg6hOc1upGK&N0Wj6=)CNtUfIdqCv&dG z{c1C^S1*Ak*|9WWer!y3N;}NTUZVo2T{8trp`mkp7LBosnQt_5w5)Gyr!SJJ1aDZ&C{b zFe^K=2Fovd6a2eh}KW=qbk=-X;gb~Za^ zb8bz3+hN%`jk34PhcVgPXFwB>-+@^>pq^3iZ_Yv8A7h*4>eo+Uo%OX4%v;ybiR49i&*?V-# z-ZKZ7v*)<%Lgo~*=Ms9C49MOK?Y+3$y8xPH7nK5i`(!|q?0o}hkiB0rP*)s>Hre|# zgLe{pe>4v$hEdr|vte3xNd*kaUPgY|jO+u^IVc(CWS6pcX}|1)^MU?@+5M1G=#YJA zCUna#O9l2`UIPQN532|C52u&!Q0#I%l()-1g7XOKj!Xmej->V|YAVWQAI*-(~|Tx zm!Wrg8gO3GB)d5q#${iL&Q$`muWEo^*;nTQcP;#^T6n&u4$!@}RQ7eXFebaT82V*j z9{|1APszTaS@w-Q-#9C~ZAA7>^|Eh9>y`r9?d7s>Es}j(ne5w>0lg0D@8IrE2L@!{ z)h)Y|pH1hG?7N#}-$Vbsl`t;5i+oqV?EBc^KF<4#Wk0~I2dL#&M!UNl8lgk>gXAA9 zf+pDy^~!#j+K18Zp{|F$9$~*n+hjkM1J%GTy%m7gZfc}A8K#O+-`vvxUu}t<$ z^uNUJgIPe&AUZEo|MIx(S4yB=_N(My9g{tj4{fqvYk^tWulLA)gW5L+We+o#?=tK+ zQ-Jwzq4!p??6;Zu_LS_ALZJSgDwvo3F1qir+k3UZ^Jq4d$^IWR{?{S<{Q&x8e=sR~ ztX1}hX+ZuX=6uu$Xniy;`{Qcaa{RpVIT`sO-VfyJnb^Jx%{~ zx9lI7^#ip(=0X`XLBH&u@__ppG-i1IISc6jh5RpLvVW}xo@Y~m{@(;Gz}@ee!2R#+ z{Rj7du;(Adb7;&F{~3o`n2`M!y?^z{{+s^4$;~s5_XGQ%dYF>^ZzW92{*U~Bbugib zvY`fg6|n+nfDuLPA{bL7k^#*yr-)Mpql&oHyMu~&aUkc>>*oS>L7F0ACZH3ogK{pA7Aaq@$VMuSlG}II}ijuMN@MumlNR z7vPWggviF^Hf~a66Ye)bJF^736xp-_I5*3ORz)^v*5>TOdqE^C8>*ol(8-!sWQ#)R zhB-yHq<6~^MYhU;0Y$RYfck9Wty7^2dKKA*o^6H{*|q>Ub26Ywk?lCQqh`A)MYhMw z_UyF-H9JfwlFOdC1B&d(UOU#nxFS211H0|SZad>?XJ+Tow~$#2$uH!2mmJ`J*COEL zy&|$3_qlIPtaQiw+3pdw4CUoxl2 zUKKE`$ll3N0&PHD5n4r+Fa*@?lLqwcn++|1_I|n0r^x<2iX1?E05cCDUMgTlNxmY> z@_?EHOQ2togQz>G8OZUKVWf0Gk%LpA3WyKMghm)s3gzk>%{Nd|Hvi8WcI4 z`oo!1?m!u!S5EH{)i9$7-(^IOY=vG$juMmueMb!|Qh|O&A+*4>B1b0!8b?!mOdQCs zV3!rtR^|XYmF#dV{l~%a^j6VRRSR8;oIvjhoGYnaN$rUxKz%jwNqI1?$jO6>oKgUt zFr`Qh`IX6Y0N*38K+Gua(V_713IU(ORWRMwF7|W8O%EqoinRpRFSh% zpd8SzqkmN+(06tzpm|O%3@K7iPyL`G=hAl`n&+|m`2~PR1G$DVMJ{MlVW>nX6RGo;zF2E@^k3R1MZ&6fj&i^ z&Vp7&o|#jmpWgmyMV{q+c0!To3IP4*h8209y#`W&o)?(^Vj-aO616WeW3U_s6?r)W z8Wee@Ns(7`p;r;Ui--*IJVftnjf%W3;F<3tB5$-QGEC2Kmm+Vn)0@=1RRBYZyp87D zlZuQm{~hk$8CB$6X1rGcpd z3FZ~~s$G$HBF~ zkr}jRx?oa~pYxy{(D3JnROI&*m{8=85*QI5^}zWjdVit) zH~GKmn~y_}BL5TtGybgu&i@)AmAS%tHGD==dRG;-N{ z$0`_*vs12|g&8m`XO}!6zss1MT}$QUvtxb<49VGzlh1l*cl7zJcNU>vkP5^F^Kuqb zzZf5TaPBcBXHWJj?2xmB`X#e+_G*D%Al^F-%Ag+lVN^~Lvx@Se0npipc%ODT`wGgT z4*KQnR{&jdimBP39rh#dSL#cXdPMs=pM?BWz?1tFUR-tRyl`JdswfW!v(c+%Cn#ps5ye#BiiKfneQCQ z-H{V=j>-VEj~b9ukqYd7G+M``KqIi{3Vt>#=;b>FXT_A9O8P5Dvi<}eEphM0|`d0SJIWY(3<(w1;o=@gHxl7I|+@I1Wrv^@C=BYfN+63sHRxO9m zcIR~F*7nFbBOiw4oXLzc={>6i2IbVTN8Oy9Rqb-l=I-oPn3Qu4^?Y~W)T6<72hO=Q za?UG-F_@Qgeh!dtpss+?WSLa@tDd+|(oIX7p|*e@hL}+g=9Tx6jMDH3P~4 zo!gjo+pwJ5nQ{Ao96rmPI|`u%rsdpOCFiaz;Q21X!Car7Q%$H!;nJdqDAFf8ZEG(hjkc{zQR zz+O+0d%8`|Gs!R{r#}@cU|i0#oX;}jIdq?!lJh+E&(FyjC;;*UvvOW21>zU+@nRix z0QxVL!K9qQS~)M%_evFzf0ez5QlMMTYiYo4uZ_rgJs+m!yb(Y)6aqE8D>%d4zsWQ2 z3eH>X@>ai`w=@BSIn&wD0POYy@ekbnmyQdKp08&xanlK{6D> zu-vdjZq$Khxk-6IE}5A30e5xoR_~V^V`dEflyaDmy9U~8jLKcJ0yx(ylbc!ulXBOl zXKggrNrqaWeqHL<9h93^0O+m9x!!=>^|PT?y}e`3oX7MaJT4^yCwT= zSqJ2{;%=)(n2?*zPT9@S2Xk__$(6e;wK-_z49MNC7)Io7p9j-&cW9TJ3p?fjeLK#} z-Ki4L+PO+@9y{et$z7NY{2UgxK|jpO-L)2GmK%<}= zcwQU;cZKx8kp{U?4XrRLch6)f0qXWlJkQE4%!DFnfF2l=yF|dgOPIY^ zF?7q_o7~>??%gYw_X)SC9Qx$$lLBSH+#g%P>?X8=Fb{U_ue zkPA(6mvXJMSop(QXSx2#$2 z@@%<>7eE{I0vhG{Pyyu1C*&R>sDd83N9F=vk8+?B=HymTU%||y(K@;TX5=2jjAI7n zu1EoND>*BvKNhWHTjd^C43lz?@0VLe-3jG#SE93$omS4vJrRxSLb)fUL8IK0^ML#* zH9&n$5p>HvmHSiM<(`%b!*Wl@@98~qYn$YrQ3>3g=|DZue-`~`&C0FgzHUVBstjP~ zRpWBcE&(*oDT8Ub_2laZ_z5{S?Y?j;RKqJh`y@|V<(7S0~?#=9Xb0sk6=25w~ zpnpp~)BrlSOvr67k$YvJ`x3^yIiMv7i2Ak!+oDAr{Ox-JJ zywU=*a$jZ7SJ`(c2fF3HmIPETyUl~yUK0lZD+kxB%+`!Tv7cgP**9H;&hYCa*)pH;Y@4$A#3ALyMZl>2#|+%Ks6G7qNZPWH(Cirm-C z|GHD|H}!I-QlJSY<$hZU)P2_?_xm(xmOITk-6;2m0OV9dH`zv05?UOspKC^>zf2)=Idoqm4{e$PZa=Cvxzz%=0!(Wqf|L&JNkIuhU zFfaGNA$cl+d3jc+JiAL?qyUEHIYlrc&ux+CB|`-a$n$&U1u0MqQ}V(N7?&62Od_Au z0Q4u*w_2IJ)dke9J}561hc=j#m%_X?cwU40H63V_w^l0j$xF?KIzWHzQkaytP8rO| zTelGU<)vi+`>w~i9?$$4g13IXJl+Mo^bvV+_K(xI0kb#Ef^K;mp|KG?89Zk&Hv_!| zoEuZSG4Un?@-j1_2FB!VS_NoqmIrO}Hm5dgT;3Msw_wJWacF{Bd0Vx}%Vvjcp0{q6 zw+-{QO#%9IsNYUd03GtS=Y9wF+@VWeZaMVIXf%PnnfkR^FBQ9%Z~fS0qx>En2@)BDWH2mqr9cuE$x+8Lat;~-ZDV} zbj#!O*gLQdm~~KxJig=iN*m-IoDb}ONDj=(J9J218TZSZNrN zFYhS!I;u}zMJ7;tH225U%3BdYue{1U7?5{tlf2_nT!ypz#BB_GD*)#L)_sobB&{psvm+b-`6@@I6zsJt`NpiACaaVQ3A z>Z;_eV$Le|Th%Y`>^z|MoNA!Io}PNnbLlykJo;O=_nU*9S3hB}y&cVnZxwp1tr_G}|}6Y)*V=X2BJbJM#;fc7n;^4fEu zOWv)_ytP^0ZRp+B05kIVob)=->ma_9x;qEu-Bk_rb#}_To1ekm^xQ+wJtOk&tp#fN zeDwHz+PjaP?(2nVdH1)-dmv9( zCP1?nt=>s_kF(PgrShKS?#W`{`APD9^!0H*)hO@jB6-i?@fq}Ks08^G%eY0x3>MfzSGkoQt5RLL78H%Q;hXusSd?^Sw+1k8M`5V(82N!}Y- z&<=C*hRF|C%X>4yl)Se(<-MH=UGhfqU_{y1xx|+YHIi;XbED{&v)F*9hotUj>u$cc=z*bDQMv$S(X@y1!Gg{5Gzz&OZ0nI%e=#sxD+Ivz{ zI3a%t9+ptIS38W#-#ZN&U{*e#pMDW{`?Sj6HwD_{@0TyXn4R|Tk48*|lXrUG1p+GxFr0DWHzeRiDpQ|Exjzbtyni9q}skS5ddBO8(j8&!+Aip3kAb zz7rICjV0MP4qR9zpPgN<&`if|B4*wl;7MU|4Q;# zPRhTk0D9zK&E3_#@>@!Q+G~mc@7FfUzm9#cYnI>YK&SlcOXS~>1|9Nm%mn7Pao;vC z|E6mBH{ek&Dve~r#JX}}Is#8d3~EqC8F z$p5}w{xq|HNQHX&KMI=V|AgjGbucY|rW*K}%*@OGnZ93$f5p=*wX?*(P00TpAHUDY z|AQUoi21(S|C2d?q5n5EeCGP|HS+)Im;W!b{%wT;`Tw=SqyptZw*o6yf$b=8GGIi3 zTLBXaymA;+;O7H%K`PY4n1Ya=kh^FmG%836pjkn38uTbwEe@QklV80G(2W%UxfJeF z>RAzhi@fonYr$7~!vE zpl%`Tk^{X8b|ubtpk2XkY0#r!_k5sd_i+V_&{$LkrqflO)>iW=Rzw?DL9}AT3}4UQf4i! zS5Q)_U>P;bh7=r_3}_tKsoR?1cX&wwHIJio|A?O~$euowUbITeOERO>{hf#NU zDpUYF9L{}t3ADkif+I#097+9A)EvcK1sWAy3XUFBa10v9^eR}vPJDg_l}!qc%?0|7 zBY!;F$M-9!La(Y%!3mkb&*+3X1uM}!k)Okf;|i)vVM@VC+?|{T)iA2y6m~ylUO`P6 zpmS;t3@A7)4)qF7N4K^BxI3dw!I|XG>`-u4GH_p4q=3)PU=?>~XTi9Fb6OPC!}+ZW z8qmL>Siyz)K+T1-3NE6rk=jOdE+&8Rq=HMBe<_-m(#P+kK~txK%h>tyG@$PacDSMu z*txk~!Id=%u1bX-1y^%k-L2pnyk9e-;9C0m3=OXBS8(05f>!da)VC5}&w2f-GO50R&Z-FP=8y#g4>C2uZ3|19o*fK2gG+aD7Y&J z5-0kd)ZEPu_n>nRIX)AEdy8R6K^JEi&-YaT^Y}ar?q{$2M-@C!0+R~5TNON5uHYeN zK1BR*nSvg)dfF5`5?Ao3U|PXr?A4nE4S?q3rNE3Q3W2?z>`>50Z(j>={}lR9q5m`* zPjmMS&;6A^?%4w9SMXdKv;+Om=KwPY90e~V=u+?^GhUok@Dk@BI)m)-a-D)#lA%w* ztDLV^0sTX@FreVILItmrf4xD$8|b{jK5xt`7^ePBc6bZkX3j_vOeuJ$Q^C8%3f@Ei zy*UM=?E1f4m{9OOdLK|bhTd4e0={PrJ_?{m0l#kspQb@Ij4Jr7M!^Jk z6Wo1Xui%SJXn=7AUo!v883mIq3cf<`s~!bk3#j{gUconYz&X{b;9L5>omTK&w}S7p zU`)Yuje;NO`;ogJ#})k4q+lik+JU~G>HnGfpC=Xk!cM;wLnHJ7bAQc+YUqS11+(Vd!#tjWDjzuTdDJK^IIZ3=3gYVYC1`74lgaCe_27 z!sIrEt0gO3JptOQ4=9Y~L5ISW425e@yT*{hHPKj;bFE@vMryOdwW;TO*>Ig|pl@CJ z*6mZ6mJ95<9zE+zVLJJA=Eteuz=2Gle*<(jtW>xWb2ge*n9-q-&&Y5AwHvo7+=Ti~ zsLABa99Fn#0SqeKtQbZVZe9)(3bWA2;@qNE;g$kwwrW(EoeBL4x9(K9O+F;fA%)u# zZ`+|TCl35vx8vNdUE%h*!2J&V{BqeNmzg`(E8M97xZi13;m+)pm#lDM0K^NY6z)=~ za95spErS7t`6)o(ZanW^u5b}|i^dfe5HBtTW-gvkxJMkSfu23tbLkjm}&VEx0i}PVn;r_+YtMGsV=u^0~L176x%aVcF z2R6a5!h<>#ma_Z7xe5<)U{c|sBMQs96fSR7cvywP!%GyF(^rnh5rQI^R(NDHu*Xr% zKB`AyMJCX5bSktcJcfD448p9!6?wqjiV=mCc&@Bfcx(o+!*TTrkEiGO0fklcoj}b> zdRI09y(g9fx$0u*Rd^EhC+ENr%qu*l1bTp-YVx5SMirjQUZ>*yH0GRE3Dlon0pkj5 z+Z3J|C_Jkg=&Q?xdYD(ZigOh|hqH?moxMPcugftE4(%bnt(aiIgkw{(4mmuN5fWhTKg1UPt6Ufz}y>a z6}Bv0<`mw}{EiG@M}E%?@2pUGR~&fmtO9a( zrvUYLPb$2p3AnqLd{+*PD7-HpxVxV@4{+ZN4|4Y)`VS2#e3*S69#+^>1Y-&xDFMz$ z%M?B)Xjj`Q0&miy3cI`*yd&5zdh=h3}yIF7w`HpZCxhb%0$*dlmjK8K`+b z9~xjn;RmHa|5zr}0=W;F@nMI;kK)jz@MAQ`1BIWE|71krr_B0vSm9^fe^w9k3MZ(W zm{Rz8F|@-zv%<+Vgq&**aDKz{RGq?a1L#)xT`r6% zoUT&%L!QDPvlad{q>$ea!=DAiFsJaBVqo4c?DZ@2ekDI!2Ga_EtAkO6zjrJAgBf$l z&eoSYomQAoblp7YR5UFP)UVg9D4&hd^($dg(R9vuGO%-eT+s~* zpj*)mv!PwljnK@k4De-3Pv{|#Fn=^a!K1H+8$)a`( zcHfeCs~lj*Z1&rl{;m1>@VOY>wiw9e6v4Ej+qEgm=V5ev;vE_l%}s_LMR%-Fbf-8l zbEj%WcSdvPE=BXu&Es51ejz%$P`9fC*^r2b6wRkLzg^MYV0UINN&(^m&H{S*eKER6 zrJ{S5z_g-;#DxQjF2M`GFGlyKZtofxQM9N9W)itfSee=r&cQ^#jy^pIje z>ySA`53Ph@Ma%Ml`sK`7PVI8`IIIZhIXn~4E@xKxq@qXAe+1`|Q~&R;I;^Nr^yq3u zj~P>R1)9g!0ec*m3-lc~ujujksLF;RMNb%1bS2Lx_A6S=&+eoKMNh6&l+VFv4K=4` zDtelu=;=_K48w|^QLpHk_&Re|(X$$%3q}F$I_A|ecNOQV8AZ>oRrDNsCL>vN$7 zx)nXQ5ZZwH^Gbm|&ZFo2JfQ!4o*Po32$PTV zfHp-hruX7j7*UkZ%;+U$z^<3Zf%{7*6>Z7|G@GUsy{rb%y&SE}CltM+95|bqab+H$ ze^nNsaW#Ec)8B$l%Z#GeaDPp^qSp#aVL;LA(7A3-(N_9f+2MvXMQ`N(MrO2)D|!<% zZ_ZKl7Bt&a6y=`_irz+idzqpgMKGo49d(M{nF)Q0-c_$?X9mnEdN=y_bSio;xi04L zc^JK~S<(9)K>L9)MZ4+iu2J;CJVhU3?n9G`KFo6ub9&HwBpW6aeY8>0$C%rj4Bd)8 zPX6%*VEz;IK0)o1aUj>120TAi3mu9+%?v&hqfd`0`V6(t5I-}cXnz|_EBb6R@cbP0 z&y6bjd@BWUn@Wb~Z@Mc?gI^t}c}N6{K>RrG%uK>qzQV9p0^ijEb) zprRkvEBevAq8~RYI-Uljit>A8^b_hoErk(9KPw0NCg}T|+!qee`(=xwlU0iH`(yNL zdcMh4bSg{HZ{yIb=yyfH`F#p-PIEVn#`KJ$Kh(gmqCXZxm!dzV0(yKe8l9nUrd!dU zv!Mcp75$|YW)=OF-rsT+{hgjaQlJV(6`jj~Mxg&sa(@Lt&tGW%HKpj^X#L#^+|Q#q zk3as5GRp6Z(SND=53T!iYnlGd$P z62JE)rS&Umy<*_xd(ouznUT)CbmpgzD=A(Cy-M0(PDvZ(11FzpNej||{Kn{RLc9rQ zW)=)8X;XSPWB1L5l(cy=ltCZND=DiKdX%(92GqlplD2GC(pE)E$}WUiC2fuFHWf}!ajwL>h+LZyIy^@_ytOV}Q zRz<12ieWR8+R0^0X>Gd2RKf79T!&>F;yyO|pNwpnQLCHz)VrnYm}q z%$zxM=FFMN_U$CS0pV{rO41tAD9=x_%Ey zH-PpVLCZ}@gL#_t)(s@>0v)&y6I#7j(WC@7);%;GNwafJu_>Lb|(7lk~pbB)z|fq&>*@1CNpP zL8SlS4!|*zJ_I^Hg!sD&u!p3v4ghfM#q-|n0MPW|RRCP~l}P#s;y;3XKbivUBk5zn z^|9R~-BVA}$6HDI1nBw13nbl({P*{e^hw~q4{7g1_3-n9|2dLAeUPMsn@AczLDFXkaGIpg?jz}Qc;~@Ek}!@)|8@re^?>=6^m*j*1?2e! zC3wS$mc8DN%|`C{wnf2S^yx;*MR?P zhe&!D;Sb*kc$TEE?<8pw&y%+Sfd7##Bz>a}aEzpHBA;VNNctASzYRLR19)@?N#6yn z-|Hah`@r`Y-hJ#KNk72-4<0A!hg$(>Ncs`*Jst(%ogV||Ph0@t`YG<8XaMXXX$obS zIzZC#0^l){FprX+e2%229wg~!LnQrt14+N|0UjsmY2f?!I>0`Xez^t!ntru|q!T&7 zQzZQw>3nyjN&kuXlaG>gdJjo|xQC=aBJFd) z`=^a0{TccFWj{%04v_Rb(*AcC06Z_q0KD_Joh1FwFiC$$+82@Le-DyWK20+DNETa3 zHfuLx3kp4h;hE z9L780yGd>Wj;4D^jsRx_&&{B#8MvccNRDkMxn&K>aXhyop9JC(he&SQL~=4patidP z@J{MQlG~4v3|TH`5SBq$<}}G2Hv(QD88Th&$^o7uxqAo6Jskkx>D>x=oaDY?0G_j; zHG7QY9O&-f0054G{Uqm80KAufjN}C<+k&S_UWj)Wg#ow@A)m$DNnV09OOSraQzS11 z-U8@2uLp2~rWcl1Bys zc=z&6ByVT{;Qk7PU4eA}awExCf`%&}C3z##z6!Lx>M+T#M&7SR8DEX?t5N{avk7sV zHULm(n3u>`zd-WlBP72D_pbr2EjvlRrU3vvuf_GXxV{dwZ^iqsA0~Ml$~(FWaDe3P zKEOVb-+**)m?Zg)z;P|`Uweq;9Z0+58Is?0gyc69U;_YY-~2eqZ;=6rf6HxvqktDl z-q{1d`#TQ+@ZNR6dEFMkLBJW3uO9>;{q-oz4aoNf;JX27Z+MpE8*_jg0mn$bsUEN% zun+JQ$u}b}j3M&PyGVX3VAmRw--fWa?EoPCEt>$qbIS>m-`)WL9*iw=DFpzI5@>tJ zFyJ=8X_9Y!kmTD20ndWRl0S&J51t|UL&*2;FyJYY$B@?;p7-MY zy^oUo;X%M@lJ{)~yh!p#c9V?xi~Lcf;e&8OG$D@EJNS@eA z@*%_>0^ZMT0z60ZXV(Le?sFXgq6s%A@KhY z^!%t5aG2!BOCM;x>|}>H&y54w{eeCizLEe{z!Kr%+cv3j^)} zJVWx&*8`p<`4`CJ7mtzrG_FtM`QL{D`$_&~4)7?+zd{}TY9Glbh5$(S>n$YzrVfC7 ze{+W9-vZBXUnKb%lK zU=7KClL5f@KS=-gA(CH2_=_a~!u}WO%Lp&OK=Ro=q)-kpNs6ckYy~_;im3x|fD|+0 z%ukR~w*l}tDV8mySnB|HkYd{oI73SPqommJp8Y5(4!q~sO^Q?x08Y6Cc$yStBj6Az zY8Zfb)n`a?t^ph&#nl5iMv5D_J;39=5%3%-K3x4W-~cHB7hpT!1S#4kz_X+@>?9?K z@F3C!k-qUkQbMv0e9*dQrfowj**f^cpCYn5r^?n$)H>vF2Eh6bb`iCr0D{lZiIC|LrM>x zdyzJq0!)&UTLnOPKXCM;J_c3*b^(r(lE-y$11Sse?t;fiSqPdI0q@WbQWoRACBU&% z2CM-bAf?a)0RHpVlX8ANU^gijbN~={!5LD9x014K1psxm{6SJKM18G5{6$E+vW}FC z8%SBz3fNBy<~9n(LFLk&0KB^f_iOOZTD-p&&zAxBI;359m=uhEN)dUCqln+00wC`2@I9o1&z= z8MM6l9#VFK?(6me&X98bRse9`u!9tgPs)v30EoNs8B%U40QLZ$Bjsk?-@G4y`?szE z942KK@a)|0GwEhQr>rjl=maAJu+YyDIW*} zkjDq>0Kog9ouu5IB4rHmW1w|!6mT~wAI9^Ck!~Mo*ay5H*$y~H%12uPxPA=J_xJ#a z`}otOd;-^d@&5k(qMrAG~PWp3;<4yOUn2PQYPvF$oJ4H0Ir`w`9IqLK>d6U@t-?N%7Z-sy#H?-0jEj% z{2hQ7N%_JqQV!Pv_L1@s@_A@0;8{|>i105V{7d(ca-;wNt}j1G%2#eA<*UGX)CD*| z%GVJ0wWmmVcsJk-DPP|~$|Ulhe4La=4wC}gn(~b&NcrYQz!6f8A@0~t0K&e7cfW-+ z-d+Hr2J|pDJMYdi6=<;bqeq}DZkl7%5NVe z<(Vh|dHfEv{B9p9|AFw|?;_>dL!|s?D}b*jNI97!dQ$$xfV6*lij+SW00&9=3-JBrFezt1%kx73l;N+>k@DZG0DAy; z*S~@G|LFicOUmDmlJep%QvSCGaGI3z0aDIxB$es`M@Yq(rJ8(z+ekIzYQCG)xrmHLwM6np6$%H6U&94pJL|yAk<^kY@;SVZ4hmNo~S&WSG=u z;A@^FH5vvSA~lBR*bAh#AZ;sXNVEd(A+;?90M6tP0QgdCNNtw^csJbv*hebHBQ>)F z@HD9%s{n}W%mMIz7vj2h0YGy%^5}k%)E?mI*-vWkK~npWHVZsi+~)=Xps^qC_9M>$ zgby4hH9rJ+oYcY7q%OFF)P+d52zW7XQx`o=>d;2OW27!dy2Ze=>lYtB;X-Dbm9pr>;dh%-z(>HUgd_b=@vf*GB;dNi7ZoCP^JZ-XlnJ z`E8_b=m8+_D|VCmFN1(bNxgCh;54ZlOQgOEdA!;Oc#+hr?f~GuO*fKyb%9ijW9nw) z`x@MDaRDAA^_rcez82|U`xL3KYXxiv90fc>>Q-D|k36>#0Pl@%0h}Rq`!Q1Au#wa^ z0>>LS0iGcB+8hAa9S2B#6Y_iW5a2N2SyJD!ht!=&yAw3;#PfA)0B1x_iqB8n~@&ln)+6h@vYC1x(n~_0*!A&`nNqu>MgAR#J@cUxQ)~j-Y?w& zc$U<6OafjY_0|HQMCv>10K?d`10{~^;{Wz(2;hnnSQ64;*`rkotiaNd4d* zQa^Lx7{CehcZpb&%9=4+0SWofUuwNqrRgKZ<<5yPMSS zA?^3;07&;3^1!&I{s6T65byuU2iQaE<9P4!Go=0);XlFiPm%8vz&VBRsUxHw-$m+^ z$ot8|q&`&-*g@*g@cc92{5h^aNBl1k_ViW&^2J!C{yXA+=>h=PuaM?fsGDCsM(PRV ze*$4Akl(LY0UjjvHw}P2r2e)QfIOZ_0r39s5dOQn0jEj*58%Z7Oa1*lq&}MiJVEMz zt^nYA611KKou|S8#GfWW3GfW5e?Y!}c!AVE9wPO>TmazkZX>6u060TV^AU2^;g=IF__a%G7_b}gA~|ii)+4O`F>>1RYlV&mz%g=S zUCD_#ms8FGkVe6;a4JZzZUh`9rxVZ4C&-C0&FR_%c$A!O;CG)Ur)N9hX>xjz)(gBo z{EDLw&wk+aKTgg7@(X|-Z505|4Tx{RbFdYFYoiNrH{eCmfAKq9PtNcjayE4UkY@yV zu>Rz1-cQab(nb%GGd2uB9xaHA18*zRwmwGAM2Vbjps@|_C$|H3118CtS^;>Fob7dh ztpJ3jfg_DH={o?3%R~W($ccHGvlIDr?k8v02Ea4q>@JbBCr8fSN6DEzLC#zOfV?s0 zIr~$9+W^mz6LT}?z%jrXa^@QVcz5s!IT!3C=R)9G_&7Ni?ExGGpu9sbkaIDvOSY18 zX$RmSISWGoAAIabkDey<6 z(=Y`Z-ary*6axi0S_K+Z;R|T_E|D9^Cu|Ynv)Z&JBG+ay!rO97g)QJS!fY*8U!ZRw z*Jks_TdYi`FR)1T4S>{mt}P?_U*8mqHAS>gNE0so5>o4r=yv=emI4!eB)I@^t08Bf)qO zpHfk=r|pXVRV1>YoP;u7KBJ8PZzX(1B@vfLR*$TXL>iVXU(!&!AgI~ho$Gc-g3Fn5 zeDPz1%ibC!lTPb|7^Qk}1&O|Z&)U+K8_@b9qDjR1b4!GvcwgW0zP@k$2bUJ+w;>>6X z+(Tv^_amYNYf*sELG!u%Kz^W43upn*m^Ucy3nbjWKsE+OaOc|Mu@-Bo!53}nYKrpA2z)Vj+iD(oC1@5%CUC;RU~@i4rk) ztRLw8GqN-1l5NSh7Ms;(Z4%ieb0>4D7%Lwa=@}?5^f(**t^Nk5XL6G-98QJ98IjHy z)EK#zf9I4PR*S{zke#mAa*7n{vQh^pP`?(;Jy7Kd&6dog^5fh@SuI(uZ1IiAohu_9 zrNUI#>h4quO^0fJD6$)2YJpqJ^pw$jI?jqba8Xb%SxZ}Tx@!HZFjukWTQJdynEIBO z`g2|2h~%)pR=NJ+q)~UF^rb`5=+LF>aapjrEfMv))q4D?Zf`Upx)c3vZT*QtB>^t! zg_{>t>iF!}#aRJw2h?$d+QEl5EgunDw#!uO?Uslsn@`%hL^9i=8obGrsB4@0hpkb| zg>O2)xuauAM@RWLd~XE*s(m;m(y3uFDb_YMZW=mo`;sE3S<*3yTO-UD_eG=ls_?K$ zppM9BS`dF&`*RNMuo)d6&oyuf_wx}Of67olFLk>yu zNs^GFZJAJWd7?R#Zi^a?f`l1wLn7a*d1bGR&xl=e`$L&b$nTcynQAM|Y$p$e^xCO# z-y)&qvj)H0sx76V&(?Z}Urdz8-NB%Hq*xrm^=Ly&OHWJ7zOz(oJuwz^pC$B#BKVKo z!QL1W^u(U=PWKINBcl(VLfxpuR8XSA?8uH;p9cx8#`Xo2wlRv|ENjfPl^>cY83JU? zE_wWonM|YKBiVUas1&g(JKhM)5$Yr`MZzEJ=Th*0R)hIi@uO&S8XlHw4$B3&lm`>L_9I8XDw|`R!4~G>n59$MBsV?K+sLS{$ zWoZdr0=frsNoEtDHQtg$$BdYC*2xNjY}O7>7b4?r z^y2f-+;XPPfu{b}#(?Y)XJ?l4Hx;5Uu9d1;VFcc%<`ml{JL|2I-9Ed}D5gH1nMjQ2 zEuX@OU3iHW(uLmK_LI#O0SmySLg2`Mjc^eix z>|U?kfxh%yAydF-Zd0+;hFH1G)zOen%c|^=)X$ki7lh4_G~4(EP|9Q6S=Kq;QIX$% zG!STr`>Yw!($)`!CpWN2;ED#*hrOEE6aG2cK`AwS*>GyikTk{g^st|f`dfUy7JpP^ zI+kQII**{wAYUF^?c|3<;nCF(%_g}-G@EQm+1tHO|u2+ z>ru}$Wke(N%egWlIYX(OUsjyZ8+l%Fp*LntWX#G-)AO2L&YC#JAZf!;iNO+8ZOElc z2@Rq2LT98CpRPz(S7eresz|3SVya0{M%4M)ABbP-a!{jI>Ov{GRXGpzdDfh&HIE?~ z;Z`SjEH_|g=E__B=$RL%2A$_eF3>`$!NF7@8trIq-rd^g3Hg1X=-ug+9g=@?FcsF$ zkDTuuTr-$yMuLv!<9)5+28Z7SnF&QZ(AFRtL#ghmRngKVF!BU6 zlrbXupuBfs(6qHp4@|XWsEN@ z6xkIBt!UJovdwA|XKAcdD3l5rLp<$iWX&fb$Zk_5RdU!f8Hb{HRBOGtSZ8q{NVVCg zI|u4wRmF5hNt%MX|#c$EB%qy$P!-2kaq# zFyNJQ30q@#%v=}YU`3f5TnAk~!wPiz?Hx-yCJOii|A^0fm2AQm?5Vz3!KZoTTx&h! zGe;WwTCJ+$=WNQ42R)@srUX>@o0!NHfw1TaGB0s|XBj>L8Qubo@O&bT3C%)~$IX4v zM7WRJDnkiM%R+rXgOs=0aMPb_OQLFYK2wnt_0*Q^5~n=DQqbcM1iS%@MFRDnpk%S& z>5*VS3pwp}kF#3~mB&L`x6@;{J40F^2%0h(Pf#4U1~=qd+M2s~p3>Fa){@&0wC-)W zEE-qB+1~EXOCwsirKhJQtVJ&E?C#Bmm3Z_r5?mPZh`1gj5s8401wj%*t6StXNJb6Q zDe)z{eO+f{-8x&KZCLAHcW>m_I(t~W!O`egcPw)6`kXf0rqy4zKGM0)u8*m|5KoDF zpc7zzVo3s16&-Lw)+X~j337_0Ccd^EGTEyh0=!t_W_$9KUPztN5!c*xl;$wRQ*Ni&|P14Mvx#m!FC?d4)(sIu`hRkWJ#P zE1OoXj9lE*IW2`U-qxPJo>p(mqUDQPqE|OJr2?tphD=w3w{^(XuGDp{o>`A(v?$jj zk4>l}uTBg`CfuV|HSUG_Bmz9o@kx}7hi`OMeZbNNCL-SEZ?_MiR$DF&H8n&U+<_ok zIeuPacSu3Yeg!f1m={4EsaR0l9C1d9P}``p3v;<+ob4O(|d6wu6} z)Us4#V>H!)SA0?Xj5e33ff5*_SaX{;xW!+(Ov!EYi1U}%hc{uTtptAf&W&mOp zI5RPS<0nAdIxqnD2OifA+h9Frzb&jsRIO~)i7h%r#Rh=U24k5ldt})TC1wrunAxMu z6i0dF>o{u7py;1H!c_7@nNPtM$^7O(eo(_PGG{F@v+%{9BK z_-7YxqI5hX{Bw$A=)RMpq?gBO;6vAld*e30md(R@%7sc_vwz2q{W~T~6B&`g&5r%3 z3`39Sx-fw^?67i?FvrZ^SRNy!4Itf)2-hj(*<#>%6jP(C#|GJ-*i>k{)Dyzx%a z4oL>BAOVg~##tG~Si~laUW~HL@_CFrY%ztEtZyJMZgt9Siii%TvkQ7d?UHMt)8W^F|%Rbqf|R?a4213gzCMYBCSECcEO%G`yGe{)Rk{iwt_3OP{s(!djva z@5VTug&mB|#<0=qh&(sqee62;4AWmrCF`@=s0{whe456h@21qJbadKaX=fPBiH=$R4&(Sdwff%_n1S z9_ujhcZ-&!rW-?0Fs&^auT2EZD5y4Iu68K#HQCh>b+?wwDU5@IQnNSdRnt%cqQoS{t#=hHJ(TTYDbdQJoOvF>+d}4+)K@!#o)_zL|4kXt3%UK)hd+468wB z|5fEL8nObP{oatr6Y@^>-)Y>OD2_t?ZDfGjGm_CIQh}Qdb4JLV zN$|Y}i&87*6CK2L3mwa=Pto18XmVqkZiD^AQZ;pfrS#V27Ot5IYlhG%SoBL7NTK6^ zOi8|4K%~G(56QF>+O^-G@%u-O+0SYtSYR2TT!LJ)GYH%jibcQd;dhW6FY#1qdEclJ zRMAbC{w}Urp?57*B-o6VJj^&T)UeHTF~)0X$5vZEIH7+D=1J4jB0-^q<|`B${S65z zR%{&{E(|Y-7h_VQ!QWUYz(5!>B&`@rgnThuF!Qj*?ud9|g+g;arD>^rbDzX@ z!!SI?e4#{|%ji*9rt5vQ7xLAw&s15IXL}9vRPA=D80Zq1rowy;s#Vbpu*E>X*ld#| z8?0ZC@fC0^ZZcV{qP64dbSvM8c-O)@FunCFqxKnHY_^(B<|RJw5|atHi-T7T z3~XrB+neW(doenv(9#3YFotO*jesk2$t=&71I9RPs9um*5Mg<%tu2{_E)7LGK43$i z%UXS!EgR6fL_W@wYAw!z0Uw*s;%(djm|~!+(a|@VS6EE}uX(}dotqad*u2o=b(thN ztgP|2nl^=%%ar$6tt-st{8HHy>F!?Y>W+Bcy2WhXVm3v(T}!1;>dZRn32Ht`HcMU) zEY>EZ&U506 zD1QuNKCH{U^2QR8*R}eym@_nsZeeXnI>l0vL>F9yMK4HggygHj<5XHwy!N=qmx+ch zFs06mUlugRK~=0CNx1B8(b(*gLQR8-@}wyAY;sB>6n406CfN;}f~P*><9gBMKpGN($AJhH zP%jWg`KtJ@vDdV<1~wd?y><&W>tJC6YcaZjYeva=j7WCI<8Heoxh3iS9sT`Rf#&~MNj&~mhZA3Bbh>W!Dn@!nKK zL<3%@(;ZA@n;Jz^+uP&4z47Lrx;hN5O57QUM|*5mtbMcQS1v1_8|I|Ht5 ze*bmVo66Y4YyD2xYe-Zk&DG^mGmI9{64A+>Jp1v(dkuE_m_MdrWfxt6HCL=47euLC@{5u3`1KZR z$!dX3Ay7UwWvz=w>o8r`_3jGqm|17{;_U>MhS_T(-j8)%tk8^?kEbzPz%nrIikahB zKAt)Euvg|XU>;0e@NL13@qQ9d8BBgMMKR8osqt|!R>VzulE1f&&&0#^HU`gre^u+7N2Iu}7=jM2X{>+tW6>s?nVcLO9Tk31GU_j2;wi=^ z_l_1P@ikT`j2F0%p8ccviTEJq-e@njx+j51zhGL%PZ+cN^-EItN28JT>m$+8X!H8@ z&A7~bnwl@LlB6OFAUj!`5J@)Ea^sIhev_WMOXMTJxob+VV?$(w*m~L3N1zkxiHE&D;{%l-YYpnZGvi^CnRV z(PPVcP?}a=jQmOV{z;b=)>{(pD;QYGh^Zfd_Ic z#pvY9>;n&ESI+3;E}jw3l2u+%3q9x@@iST&LEFuqyp|_1*+IV07c2a11wPF366jdq zMwm!u3&EOMOc3K6ojpIEVPY-<@zm_h5UX3C@x^5|@?;&_iWZ30^3-6Vw6=5$o;yN8 z?Q0eRe-blkOr-TZi_!xY)$)K;xlE3Yjd5n16zi+&>RxSCCaX6WuD^f%`l=m~<)I6G zZgyS4EHt;C&I7a0sipDJ(Hgx5o+hSumJNQEnQR`kGpc6sxjD?Jni6Mb@F&Zt8h>&p z()lu9<jBb!!@>FhbS>d>al*s4wZyy*e(D+2V$Lwd+IJ+jJg6XNyU zr?B#FbXGA@<;kfEm!kL;-mImqbZjwE;mK1KCY{ThiP|6vUb3J|^|^xm>AdBvrX_E?ds3 zC-CL0dV;NQZXJOM=hP55b$0!@V5Nux6O42a21OpCm9u zfZc2}k>+ax4BR3{|9>$`jW=h?FeA^Gkzt(YOEJs$Uy4~wHTkT|uvztlCYV!4^Rvoy z{Z#k_b-^YIgIl!P0wN6f=c0UNY*OKq${3ue3arXleUUL#8$41;vlMHC`Vc$H!}xD5 z;xYXgYC?au^9N~jtOaI zF#kM^IJ^H<#!i?bAeLbS)Ta&x;-s-+Vu+}JGAAh+ z=s8o@)p>7LeWCZytt&{SIW=VrpEKlmh5sxy<^v<+_{IiLrA zzu<{wwCF$-9w%&4hW!E;JVcRgrEXadYJeX(#w|ET>gzDbkF{+scpTG8%mFaT)R&U5 zXpU77>&LjF{R90l{a+l-?2S5P-QJy++)fxcU^E$vMp5s3-(bt#a%~;w9JnsSHVoaT zV=rchPTgLN@_KFgq?U)(ERS_O+5BPrNy3Kg(e`l^M zH{5Hpywu%THD|c?Xa+;~4J4|* zji-!7zjW)On7%k3+Zp*lE7r#i*PfDLY&?roXxN@!WFw`bh?ZizwY`wgmoeM>+usuT zfM{IXRb5n{G)$RnkB3Q{X~y`4T6sjDNBLl{fhJ$^Sg&xqZrsi%<8VLVf3^%^?x2b` zai_7aQa**%3uO$ZLv?dx^_6zmQ+>h4w8vpxTqgw^#3(ytbwtbK#_~m=cxAn#Ubf-m z`i$IQm#Q>Oii=Qhy!u7PWX=}z_e12v{@g!WjJ)SPk)kM0O-)UV@cl@7j8~b!w0hsc zmq5L%6}bd&jGE`V8H?#yIzWxXRcop|=~v$J7R9ey{w|BGx+HQ5KC2?DM9KS^&v+|7 zG?OXr-Fub_lY8-3UDrD<3TW|}_8^`+$6pGthKO|?SSLpOFjC-JDEd)z zyskGtRP29fi`jONsBWKM1nOTRH&m!@pZCN0Pxolz-7&^erv)ku3*UaMD;5F)82^ib z0Q++V0_D9}Cj(btakE&SU=I~BrH8x}iJ1||!!+DhMn+&w8qsg`AeQ@(hu4cw(?;+g z`yIg$kGY_}@O172jP$&eGLT0q*!%Rp;e#hA4A?OC;eXzTIMB7-Bh{JWaErDzxwODJ zw`TZSTU4h7TNdO-SKL$=&|FQnd2iD|u)w9MO;}QM%e`*d-8|m|Otfx)*cEGbh5X)t z-Ho-kCRJ-j@?QC+9+F8!^O&T|hIe2rMBC|OGTK4+3+MeHJP1|?L*vTkP<_h~);qX* zAiDJmvWkg%MX3)2_`5tleQ$(_5j|uql(1VPUVqqXPfS2Sm5dbtNV?i>A<^i@%1odk zDk<*9gkg6x{H9t!Wftp(7tp2XI#>g;WuY==H7s}8^mTfDkpgW4A2ZltwFHmmEZwp? zt(r9tdnoMnXihBKb&CPGUBR(f9O6@Je_yMuUh_AZHB)g@vcBHza+z)Q zcW|>9a+}xwG{e${QgoYGJ%NR}83hdZomh8_L-(#NisO3@yS&?O-!0p1KX54G$}5Y8q&nBW>CxAhb^E4=2Mnql3-xWR<* z5|BYcGMmTZD*vJHV)|Yzl)o?gErTYk31dxJEU@_HhmUr_?Q;y4(D6bEdU|<6aoh`H zK*)U#C0(l7S0^g+tCGLI>H-<4+g2;njF-qCnd9%}@;~*`+3WJ*q<9DFo2^~CEzsDp zr0O{%Krr!#D?*Vbds8#&F)7WS9}M-gEeVpv~~Zx>V;`m;7zXEu3Q|-oFa8Qu!;2 z+a-yMBz-;Eu(vQ?FMNOI?L}r@BFWbJ(syLH`!=`_&+SiGLfU_Qg?Cv7S{NUwgak03 zLnHd;slsUC&GAwz_eaJ#wfFeAz^2>TebgxTX&s*(x?Tk%FF(%PE~kODG%=yhLA-6g zerDiiTDkulxaY;H>7{^2)hxU}=B(!SxxFYwWh}rt1LI~-KH#2DKJltk1-Cz4%3vFv zW6B}R%@Y$`Ib6ZAqddXEqUexMJTz(`|39F6YIF{Zol7@+>DB5REjVw@=&d+UeGC6Q z{b8E!|9`mQDL0o*X2?w4a}qNqcARAM06R`%=Tp|NE9hIQ!-3RV8XFg*Gr29Dp3o;R z({wT}^fm81*m#8HHQT>c`B#pYMklbIFo6Z$xmW{Z%o9dmSr56X+x$oa~P zB}rZ$gU$|{#LRN*i<{VqJe$hnRTm!CV`{vsuT9Tae#^86Qr0r39t7qBtXY(c=T^pX zUFGm|g&6s8eFUH{VW}(uRo!ZfLq*m17W?CswR$k$xnd3?{f!DcCc$kD zGa^Im8DsueeGZ#LZt{m@>|uAa87O=pEdq16$7mPst4a1!P7GxIG2Y>j@3%rrZLz|x zF5p!I#k2{V9pRFNAUKWaCJIqld2xAfN20waEmocew2W9(pQX*77h3w$aT-P(OeNEjs zTN@O`p9p!Kk0oV$fIV-p4>0+d(;G?@*h*%#t{>R`Uh7v-8YE@@<@wl2-PQ=XfE^+) zL)W?azeHAy*QkFkvyS_KQIaQL^{OYW%jYkw zZX>Fci}UZ}dDSbU0fr1X##D_oFHg~EQ~MVebkESU%@Iy(xAMvW=EKaV zY=dLFM>qTnm(mKJ!=sb)1j8MNLvq}UCwO;Q^gwOen^ZHblsPyM>IrHz*CPCxvB}oH zOu3XfH3_HkiLuEBZ~6PMDs?tDYxOd_Hobu({yHm2jE$B0;@GnX7vmy~$T&Dd$*1|9 z&gK@w9m-yW@3Wvv82qCUTxnoEvngOU$;&GCy;Hic1n&=pop##etJ)$7T~@h`BR)`g$P-i*rnbEEtkH07 z6ZPYe{-TuWvrWKkJ7(-l8!@K4g$Wp`Fi~mkn}Dl*m1n1Pzg}H$()V&hMAXCtHt%D@ z6#9t3ex1ysZpf$ZMceS52?WxmzDrdb_c)t+X!2LLwScp6lv1{N+ebZ}ed0FK0 ztw9gA1{wMAS|00YaiT@Kw;NVDIk#D5;0@_8t-)JpY6QfeLRl8};HGC`THlYzD+-Ix zDN!lX8xHqIsxqGUCGUm56Z0$9-i;9nLqz z*JGYw*HGp=HrRe8$52;ranK`qtd4q~p5lYG2DeSQG+Rms`~jGNOo^$zJ$$?20aqj$#p%BRjr^3ed^j0R9N9_#T{f_)uci(WT;l9J8X zZZdl5w;zlTTniaIk-7HrMeBk~gsSuPS@<=UAXz-n<#@N3ZiT9B8C@)3ibBKYS&!2d znXHCqR?f}P%TJ}#8QBh0NGyX$*eVG|+MP>Kk_Suc<;|q7c9|Tdxme?zfWG&=s_aUI%)7y2aDx z*I6CT*I@KE$QGoh~&0>!&aJv`8?3T6xYio}XiX*+)ELsLz+^tQ%2Dh`h zBhUsH;s#$+tGi`Eto)0{LSyj!n6dZ8Zig&u4+Ux8s3*w?_*&>(P+2~I?n_W(4(%;yrx)v?N>cN6nx!u}MK9Zx+ z+Z*YT?M2Gwk98P<7g*~T3WrSuEcIfc zuvtESMZ@i)RBttv_uHTyi7ghpC}XkM&?ODuwHVKf=D78-Z!Esnu`~?p zc9t6(?J7#~kZE$V@AAA|j?>Pl;O~dlu=Q+`W)E=%)CFYd@Ag0)24l;sY7r{{q7~ zrZhRoAb1>tHXPf+KHnV5PT!EUIBH0CxJ0^So6p&7F3O z$y65!e8|?*)}*@4O1LeP3@deRHJl12Os#_nQ=5330hq<`-lq(XK(i}d`W_;EuTd8S ziXL3X@&>QkqF&FQJ^OW>1@nl$#{#1ipO|8-5@ROFJA;{v3PykvasmTg5{CQL-`3UI73fiNgCs|O~W-5 z`SAJ@APAJ#L{_d z=dIq)x!rZ2VF}0EH$Oz)esqZUCpRV=b2lyN3-)1yYc)^SZOs^;?S}m( z0k1r#IJX>eb`u=K@bk_&<#`WGOs6uL%*J!dg}_Q3v0lOF$zixe1;KX!bMjgh;jv#6 z{!~lkyqo>$`yzL7J#Flb>`jT`R6KItO{1CZdfiib{ke)=%Rwt~r1+&^svKm$E|Fw{s8Kf3cd#iR+i<-Wvj;OT>x?%x8A+u1 zaC85M4FOy;30-uW*NpwP7t?y$fZcN2=q)^6>lQ|+P3PRy8nhP0lY4VDovnIP)6#3{ zZ0!9}jjo}oy&(LR_L+6Ls?spVrTlXkP>kFAjn-IIXJqIfb0XE;&om#~8v zu06HduHDp{=iCt8S%UNRSMFfe75OTv!mQ4)%4m#AFRJtqkvG!(7dM2WJh0ZPw}=>$ zT<}&h4b_?SCKhYL=#6VA#o+NX1(KzsDZH3J1cBc>9UpX zJZ2;{zQ=W`WpTK!GG46oxypFLeJ%nk&mc}uT1o5Rw{s1>k#3+8y$5~noTi?82FUc$ z8#VrzW{Yb3)S_xFTuU<@Rn6+$5Wz-Qt_Y*HyP?cicI$M_-j;D*MT{Dk;YzC*FJEN@ z4jF-qjLWjhlhI&$6D!I@rK45aW_n|gD9xT!IwssLaAF8=Rx^~;tkCt)QvZOT^-=#!zgN~ify0=qv3}?? zRvJN+zF1fBu4Ow7JnJ|#>lR~EIv#kD;yT2~d1ea6ah}_vQS3<8L*P9oa1e8KZZzX8 z6;V;1^`!+6%PX2}2(G$C>qn{_g@+y+foC44Qa&|4KF&H53Vo`!chk_$U@~B{fgeyk zvS}K>J1hKq^}h*2CpT(ja&j_SjINBrWa%m6v|HH3}Le$ImH{Jlqru*y=2S!3GZSFAEK& zO*Wgmv86q<%#X+R7E#2}2W~e@0(bd4bynd}aHo0#!d55pO8HsIt30oI92L4w!p5@~ zGZglC#13FvVosHoMhCESjoX3S1>a(HA{xa3C)1n7EBv_^bA4dN3=R{TyvD9NqsQSD zJ%&jMYGnd@FN?+*R;Ul8Gt$EgRbS^!+Sq0Y6&p)lSjFVm+#~ObylyZu^X*gbYTh~+ z;n!#4fG#={hao4}Ya2e?HC!M)9xN0cGto`((U6{PnH`oH`08MF!VW?kmKJ6fWpwno zQJO+`xA4RJak@mtoSnfi@GB-TGiY+?Gm;qyXIMCECDf74ES`bp3Bhi`qpfm&ysY}(IN_g}$cRhB(D_-ez>Vlh_2-#CBi)7Pm|`FJVKUu;~& z*n+<~c#L^c^_+M1HC%)hu?ryk*hfa^Eka0Ywah*U#12QN@2LCwuXA0jn zo_qv020QDlSn$R?o@eynX*k<_#cJ)ddaUU+{x!$fh;6v-vsRv7VLil9R-P?l3de5x zsOkQ=1@*$SM}9V=oXjCyPt|(h8K#~dVSKQU7}MnjhBISfxyl=czlCu^9G}~7w5Pr|9+q0Bm8r#K z)R_G;ogB_|W3H-~f$8P4RA+@l7oLEyjYpD5~e z&Af)WehI8ro)V=geq`R`V(a1Djr76hpX^H)(#7!KT?Z}&JxmjWe&7?XTox_^my2oV zIOZLOYTD|xT2_9C(=r(4LvgD8NM|uF^SJJh!*~1#cGDS+?<)n>`y@9YmkOoKR5}@V zH7+a{x`Z|})(EORRy_v*vX}XU`#PVAAOI{Mn3tIHNu4Cf9-MKY^ExH3OcbtanjKeq`Kl44me~L-b<&Dk?U<%aW1Zcz` z$ePeYt5JIAt1tp28sC*NkY(U=LpGrfjdH-pU>+IEXMzz+5~hZ|efV0XC;{yZ+aD0Z zZ3#lSYZ+ou=Tx*-?T@Pt+7N<}-7D%#EW?Pkt8pAw zp>Ny})=ZpkB-QCdAnMHco8~o^1l*0lO}GK|$91maXXY+2!z+~uTn?tiXmf);erB-g zJ26l$+;jipuzmoSgYTP6DOYO>4_#Atn#MlVve0J@~(X6H3> z!!F3bmC!;c+MM;1%EZ1hLC>|>tP!yUhH&fLm6U$NuGIid3fpErWVc6fkWQp!?xM=1 zVPPm4$8N85wYcrg0D~6feo8Ec-#`cElUG4g>gBni@H(-veAbri#gYK@onC)s zsSFEd{`icE~Mm&xvS`oz_#Lj49pe>k@As6VmK z=5W|nd--9YtrD5C;Ke%Iz<|x}uvnHXwOH#VlXYOgYH~QNbxU>o@^j+b;zKCAldY$D z{8Efz>2I-_v0IK0tl=qK?xPOV^$)>eRE{fu*){qnt3F%&hQrzS5JDn~QvTgrug(0( zs?Q>gxy4!C7lTjvgAUK@EBY5|6VohSOo68))=I%{Q}7(ar>eY<1YbA8TScMFo@D(V zU-0t*hoP-_&0rdD{2yU96!&@XOLs-C?TpNu%k#S*S0bdlOT9MaU=0>>51 znFHAO#=G687WDQkT-ejQAhUWX78_cPGmDyVNL*96VtPOsjrZCAYM%EeW6kHUTX%kQ ztYR4vV|M?J_wDf8r{CxK>JP=A#pl7Pyk5bp*;o-nPt=#puu_NRTfYsf@7R#sk26TZ z!B~5HEEtB9PRpV@wp@7OmgUR!?}F@Hx@xIY)=$9wPBj#9`kdIvL)K5nnz@0R50RUh z1&;e?#5hD3*ejTI{Dn#&Virtix}4j2x(qg~7hy(b(EbvrXJZwlF63nO{;WtiZoSH7ktXeYo)yS92f!*MVWSoy4hx5kFD(cT$ zvPsd4ZMyBt(#zJ)$fEq$zThZa947CXQT_ZYkVYN7D2|HTF<*f_81oby4wr=dWcLH? z;>6nV$0Ikp>(qC92Z9HpN$b{oJ6l(Z+aosz2fXiA>)hXru59hRcdI3(;{pb@&DeR5 z08SRIEM>wNtP5)148{kuiLW$a=JWMMU$>U08rxLGsdhKS`x4?+O;$bB^9{Ik%92m( zi-%CnsCQt)n2tLeW`g=0(~l7}A8+GnD|L5N?=z?qwN zInxx6H^HlgAM`1X?kfb@I|**HqSUNWF=t>a7|w7_YCLAmIIM4xaQA2Zc>w>Kln?`> zzZN4ChIfi#O(~3Kif3t5+&PdgpA>sOR3jqlE%j3G??^tiO$d z8*#cETV42gKx`D`FW$JH)!clXdq1yZPcV{zz9e24-P9BeHsO46_9Mo=F#Lqr2@ymd7Si#Pm3 zeqdZSfCSXtI4aaG2m0FXZ|j>HJ!LFZ7~g@guZ>9xz;9W$xB0?TS)Z!k3h-TG|nEmYG!=o$qA%M5>b8c+UHg;?p&(GU6 zcf{tfm~84tQ-hkXT=HpysZ9lcpjrR@j6nIMvAMfhJXDv7xhz(f-ENV6pB_vF)5=@l zs-%Od!9roIIl#&E5ALe%&ooZJ-jswMkDi4sqxu)dMrH=%%UI^>XJ2wYKv_((+13N^ zN>30L$_$QY_5^LM32P9xIfP-)uBU*#zL<|?f^Il$6&$i|*Jb&~e&UnRU*de)CU~rd z6>H>tV1a%#A2MNc>0$v^F$QXbGhwLKt<`)IC!Z?8#zb3dt1Y-w)BH>Pnih!Q_oVcl zie4>JKbjs5C4zCOt5a^3y1JxzFd;yg>{zaf^45=EQ(Y!3>*tRXOeKUjR zGj`FVMg8zzJh>P6VMDC_4qWEc=(Jom@aui~rLfP7c^|6?Zz1?a#-ieTyyC1%_&i zu>#Car@Chr4xrWjHCcJme*vx#&AEn)<>RkWakza;#Hg(bT|NzmdPW9(Tf^O9eEe-q zu5i!9P;)5x<&%*Xq*woJ)VM+Lt-b+12vqa^B-}mN6LvMV`SBL2hUZ)c-Q1?^zeovq z@ar~eLo2WCU($Ur;P|7jhgdMI!7X`8WVmU|Q@YT`47NPR>mS@(ake+kE=1SVe;Weh z0y+^BgNZ(y=S#&odB@;I_Of~Nai3b=Ql((N-21OuptYX=>SX-Fq7y>Vvn?D3GBj1_FZ&N(PNc>AQmA+?5KH%)vpCr`qUe>Cp@nW<$T>-yt>TE5<3FOU0b!ICzpw zOce2xwYpY_p(QvvJUl);jGr5rUZdl>F~)25Wvzqk)GY&=AEy++`@$Ghw7ePX1%5O! zFV&S?ADdVc$~Yv*ltt-Ky8L3XTfV3m6#kDnMIn^2dS%9+4vA|0c$;i$rW7fuoc2m&Ah9?b)UT75ySZne}csk?1~QcJef zk|W6?9LGtl!?rSpos193j^$XSH{;lroy2iS@7gyLZPbg&hLHiyT3u!uW^-nijKa+bJ857`eN<@ z{158yp#CByb1_|N9EbP(3esaShO^0gS5Cpw7aFB*7&auq|lf@E*L zIg2+Drc|MGZ-}I8y>2*Hsa0}e=~iGI%Vv%p%RprA!hQwoO6aWufRr-!j75%xF~|*T z#LR|SQ5gCLP%*4DtT^yBm5tqaB#ZFz*+`tKQbim+tE7b|*1PNLjK2E{!iwk`qA3R= z!Z(c0w<%PdN+a13RG-ZzVOX_m8||XRYz!@fCt(a0#KXG?sBtMaTP3c75?Q7~G$K+3 z)~Ix(&RVUFpHVZTRlx~BVgM-(8U%W{wYFKRCH?F7mUn3G*HN5eN`lfU136kps2vZfRhGx80!rd;n1k<2QOjE%!XRol5@@uz!^IKH)krH zAqZ+|BNU7mY=9zV|EnL7;QoHNos3YOe*&afZCB}B1|2ut5b3bZY83}8o2 zQ!$gi(g&Q&Cd4$A9Jw?RNtEn)kr5aJM?>X315b}n4#T*!}(;*+bZ7cSrpO~mM^4RAGiD`aVn zaljD$i%e${;jX~fRgfe?g^UHCnG-P!>Yva85$%(3mG0P=-i{H~&4JPaTrtLX29{s2R+lzMVA?=BEhS-@#Y~{c zG`Lb}Kvq<5U{j=^xv_(((k|9g#(cnVo{Fyi>?Lh37e<2KV!9=bVydzDrC)a674n}< zW!`jY*6+P5{cCIYxBiOA!oDV9=Q?~y*;K-gLjSCt zzlNB9(&qN>mBQj5oMGQJU)VVdu>!*2*yP8~)vN1DQK61IfVfn0jy>hFyV(8%D>T=i?2 zR4y8e;YXQP28xLsq?5pm+78M-VTy@Ahowg^TeJB#N6;Ub$c~8&vDt~(cIDPt5@5~gjO9Hy~Eqt0)gi-XzlCS z>c+B3zsDOu;us98{P0@ehVGE&h3w%?SW9qSED`wGC~HFe@_N^L4D@JcO1YlT>7 z#Fpcn+Z?ufi0@j?MOc$M=Mu9pQFKkav09BhuS~(EG3RoGA}+{8U{M$e3T@6v?ImDM z*v1>$oOFaIYq1Hv=8kwBdQghj7E3bE#;RM|QYrjHn>{yHJNV8)$J#(NFs17KZ0)Xb7unLkvpYoWv;Mg2P6u)m{dW9jv;+^B$Q;bX z=j%wSovt~YqUiTNr@<~BDtSIqRQ@t5zmjSXcQ*^)0UwY6fNC!Y91v0>PqNQwTcy}X ziy)knG-#5o`iaS|n^(@&?#emUh$44g6F3AaVbvIQJYz5Uyc>zlZuRpk zeh-IK;uY$AJD?3HlU7+l5LsJ^2$4O5M$+{Pzf(9Tgzq25HhmW+DOF=zZ;I$v1B_Hi={R|ZrQ4> zJpv`R10X@{gWF9h1~ciIu4qcU0VxWzQXnszqU|bZmw}eRcY7Jmru8QAD|2XrlD-7` zKfTKXBPMng31>jG%}Y4Qd|klfyK-M4cU6Qe={UT4FR5B6onXuj1Jp?ofL+Jf&}H3} zTdo4T(&<#`QnBmZ;06W>F$rr(ouR@RB>L^zRkCel-=LN6qQa_qWo~?%VI&er{@$(a z?Lpwvrf(|5{_9dq#=~*VS>sx-IkoCx7h7$g;kEeLz5e)3zQzc;5D&#DwBXJGM6YR{Agi#;Tu$NvSF*4ynm z3F%SV=SIX;m6iO(uBbY7q`omln7<8DQuXUP_F(Fj;?S{xI%*h9eYuP%2D)`-hr|{l zWiZQx=Aq=O2J%_fkboJ)YAso9L!Ix*}tl|?DOrA`H? ziYn%0rc%&!hs)szIy?@Sm~oXH1@A<(R((gc7M<`G93|I`aN%Cifv0q>P{}0U1TqDF z0UuT$cUD6nc!E*zoxZrH#jyeTqCrrG!my9Ua=uVFnHnE=1$3B98(JtHiDHum|$Eo^NPKK8Yc0ZJgFCG!NevwHLUVdnz={oKhS zpa=Y3|2x}l#F3Q=3)c>u&~X3-uyA`Hsn2A$K!Y<t4;fF85b$+?75t6Iv-Zx3TYu+w zZUv)h%5Us8$m}@3dDSkWJ*A0NdM?VMc?D<@4aByXfCDqUnE{f$hlze6m=U$z)@If3 z+2I{|W1Ev$od%KL!X*)wJ_gA~>rKIJeX zb%jO3IZzp92ReWBo509-i@>uDn#la5=PE)rwA}1Fcsl+shR*v9UWcL|7R})ui;kaYXG5h%Zo%4=0=fdaR=VNmh7fOp)7cQpH z2d9%pv{ufY_fHzL=YO!~z*Cb8KN`oi+L6mk_(9{_v!z?&F^3SbmHYp-~OEZsrh@-m9`my zU(3BleIn%d8m;5;hu>{OO9iinb+gW{Wr2zwF+z( zXcRV5wAif2glyvP{G9RfrLSNI@BQ940iA08D3c2i%f=#IPlfn*Q1I7!dbxu?ai{MnU>XN2utxerZz9^XIwoh!I#%YBIWSB<~& zU$O~c1tp0Gxd~wyby0GKfF@ENGySjT*hn~K9w^}Hk&M=(K5hr?$t)P(gw&Fui#AND_Mv zkJHY2?#|DfdRyt=)oSCy1PJHB_+h{XeRj!xlVk{-P>04%6|^xrc&e~{ZhRd7L3vry zyU2IM1OosxX>`&rx6ZHx@L<}uMlqEvlIhCD;$%-+T$Jpo()+9BL$N-Iau;G41)0M1Emk#%ZSB? zY8aHyHe&_du+`kSF&>Asy}Oxv=5+3`9&|QyPv0^m{~%4k@#gGeZyj`l!PiYZnd}eK zcE2ZETPII{B)4_-IW<-t$`qu&1(LsSoc`#<*44iq8Z++a${t(UdlZSWknme>XP`Y` zK|$IE4Um|U7eG5e#j?dzkU*K{vDG3T6I(m|E4+&r=7lo2zXnf0-9QdH6H@Dp%V3L1 zgC&Yj;DZSnA;Mll3D3^hg_#(~V}3%Y&* zM#T+mRQjG7lf|3xekvMvtVCQZq3LKcm|gCDIx-VlaYa@fh!M1s2?|QB@ZS^@_DEoC zYIf`#QhyY}&xxtAK*TOo251?*<+#J~pS-1bE^OoiPH%8|KJcv98OS9JN2+Xh4 z0Vfd0ME$YwxOd85e>!eNb-m#))csT5@vymmI>6H|(!BJ)YE0OfeMvl$>vVFDs3Y>F z@Jmh}3C{}ud{{Ki-*J^K*tyiihld^&lS73Jez$4;4p|%Z$|*Z*efow!Q+0J9laOsB zuG1In{N-ncN^cDP9vxw2kj;DW8(U0n+@Fzs5gz#=Z_C3SvMr!8fF+XR4te*%eb20^ zXRvfo>(_=KvFb^%9++*R5LM69st5}g()JAWXsKS2AS;Dmh{#LpDJ8;$65i7Nh)!Fw zobA>YpkQl983g|N*?OL|V7`8~yrtO9EuRv*q92rxtJsMl><4M7nFQzUk`cB5nJS6B zhZdg6)npk`bIE5yX9Cqk8TOY9MyQPP#J`?Ff`G(CCYDg?>wAB}H1%&p+WP--B$54k zQijDWO~%ndYOz>33pKWGsGs+JrJ zmNGn%)F;pPe@8ero$7@;!`HwEi3h&S6Og$b(V>IKu5|UG9~8fJIuHr;c3_#IV2XA( z%#{p2L8=5yevUf_=?uh4Q|nr6T+s{D1^tS(fuw&)vB}8Ll1d@w!C*gC9_uFm&+^GT zO_;W!(k2qwYLZBFX_eg<+$|s42HJ+E;`#CU@q9dmu(Fidnc3n$v%gWbTnu)Ikj)1o zvG35hqFy%r;`g_5sC_EG4K!DM-6IVQIN-6v8)Q>m_sj9#-vnXC;pid|oG=blYtn@r z7uuneFxxP10Rrz2#|=ioMt23qy@QD2K)>llu%ib4V2vj4DeVTWI+a55wd!oOn8NP{ zb#|KV^(F#EFh0Q{l{zGhTkyrvJ#;Yp5C)bIUSx2YzY(N8vWx66)f>TE3pYs?5(}X& z)~nW5oK|g&yw3?mfTLxH1$Q?XXbM?&o12>m6n5xX!G8! zYYg{JE7$mFj=cV1Q`}n1H9nH-+^|yg8??f^fK$e8O`D3TL>fp*qNP+?8q*H#>S&ML z+==z*`Xe8bG2u?Agy;?E2BE)2xHWYXn>(&;rTCA@XQn4~pEs7(L}6i}Ahc}E z>(eJRA>w0Wad>*6g=mjDa=uJD%MV=0T?%@175G-F&t(X~qRbJ71nEqhj4%flRgO=S zEvVl7$WajJ^{e4`9L511edK07xc-i#*)tu&DQpp#M~Xfzli>5`iGfD!holD$>XrHK zP%mSOQ4()77O`z2?=j3wRU)gi(_=@n*&{SV4P}q$XTmFWTGZ1tdwb^0WjuEF@|l_W zu_HGv(DpPwc4Tb&?&-1I@oUf$wOZS9|3v+?nfGJ&oPc~~(RMSg?2CLiWZopLYhh7K ztM&xgC3%A6bm~OYMRRC~1}-f( zlEN+5qs8)xH z+*jMSsNOzw7xh`RFl8&?)koLXU{s*N046yKM?D-qI8+4ssV?Hq`p|W=FMS-AmUP8F z$;|);VaIJv0IC{Vq=Q-=jYiJ;AHijV26U|Zc+l({c?|8?jhXzt~c;%&cw1%#YzzOqm z!U(co8kF8p)7KmQ@vP{o)SrI#-g}?D_r8gfCnrvvkVmWR8m`~_Y|grjn|(NJLw3GE zn^2XjsH_b$S}6vTu;b%VSZDd$h0nYe#;LK`Wq^)6h?edMq*O}Ll7UbLNn z{9&GY55&Jkm{w&HtHJ<(^`&fCl(Nnvx$LYjH(gtwz5C`u;pV&VQy=Y8y(A`T*^Fc6 zWUVu}&f8pLR{x)%Z)Ly#2$U%$Y>;^jkAwf#*~wh1m78qbF&K^7G3`qQUM+md{l=r# zxF|fN#u$0)vE(n>0x_CObDE0tlBqGlO(s|gTBunLE<5ovtB zEv{MoQL1$B$)!udnWbW`Dr~;W(ao(bgE59Woma-3C+|JJyMo=Et7iHVMZqz1;5(>Jx&9OILVGq-q_ zj^BII*|_pVjng@MA{jZp`Ft|BPT7J5qiy0TDy4=SCGiQ&PzkVmS4Y;@Qwmu3!OYJp zU`4ssUim&?z$Ev|m?;gmoK|BLJfqX}sEyzaeXSI^OVL0R+PzM-)q-mXH)<3A7zkLg zg;*3|sZ89^#r~1Aoj~bQv&WGIlqnS{N~c5utO_urb&@4At`7bxx(EVjlpdkWlT8)_d4Vf`mSUp+rV4I|2DLV9VE9}r;-zCh@0)+7W9as z4fRh=tRWE!`(*K=9TR?}hrFc=CxlWxiC7xLbPbY7wP86X53&Pl5Vs-t>fpWIA3Ugj z&@{7cFJqsRdXN|;i3?(1ng0i5ac9n;pVpj+NqObj(b6DqM(eLcHIDtZGM*TG6tI0*Fho6o*)-W$6HX3m?5npG^3nZcpxSy8 zW{f(l?v*7_1;*8VWf+koF3+ z)H13nd3nU5ei@YHcEcgccL~z7Hb}nXx)Z zE3g_Z<A`p%B3W8$8q!@85`U*X8$NEZr!CnqIj0rmeY&t4+{mWyIT&aBS z$`bx>zfxhS^#6W9HeVKwcWc_a?RI?Hb;rBxj^tQ3Rvue9mdPAjDXijM!1+uTPC0!h zAS#62b=m2>?9kqT6TAJA-3?PCwqL;z>29uBpafXo7NpI~z|7q={Gb-R13w>lge^^V zic2(vs6ha*Gqtod)s$H;WO>)WC;l~X0Og{P3^(9njG?SFfLIO4YE4q!qD-5jR?1zu zk}K7uT}5rFxQ3FeWnL>^17eivG7?O^1}TFopElo{QtAP2y;LWb2W|&Ju?k~-iO^L} zAOw}7P^liXluKg6@OgJ((&iX}tDM)7XiX+p zs=}B^E|_|bPe8mb_sHvA0CIw(hpoF{xAknz;W#XyPGMMq9s_1A<)rlchTD4Av|FOH zb~^I@i@F;IGK6PookW89B9sv**`!NTDw5I-%Y$@HMnQlTwTtxJM16!QBi{1Nl6p^8?xZ!G?HGzlii(wyjrh zPv`V$YHF)yvo@6Zu{Hlnr%5lZ{HwJJybc2qb-g~t_w~p7JS6V`gneUvt%KBK04Pfq zWA&Y}Az!oaFxini-3>b2rL6zpu$$e4pQWsqIM?bMbt)!TX2sc%2JzCD2@4AP#ck6L z+VAnX^^5NZH2vxM-0a(B03?D@)8p4JD!96CyTCi>+b~>Bkk7v{T&Y==Yd3j=e*Jy! zBdGF*9oxx$6!pqFm5(}M30`cF`pLB++4h2k6Ryre3XftO9cWd>^d#C8;YtSm8C0i+Eui zLCf^(vLaf%W?#97SiIE1N);MN$RHJ1bq8xVm&Ur)hT;BBz{f?=_@sOfEDyM;BNQSc z{7q`fBCYtTu>mtri+;!nXk!ZDh&1P08>}4|gNU^kPj|jNHf4Y0BYxy@_qxM@s^$*G zij68`Z0uW8Fu6E=`ju4D1Lu;U%M%WJd@i^=C$i6T&_>tU>w%3S$zzaLts9Qm z&X9C#A1-?>IDuhKosMN3o`X%eijbANTU$E^YZmKPK*UkFRIu`zkb(#s1+I&ORZ1wq za)zr#_h7Xqh;#wJ1G<3v;;_<4gT<j{`*f{&~vt>Xml54v6)jJT+ zwmyFL<45^O*!NqbO@LqKn@n3giB}klkMtmIar2$f)=@b`#ZQe*VbCM=@I=lfTzuM{W=h}0KG{5GY9(xL`OjM z8Ia8TrIId7^BOCt;7H04fLpKVf`@JmoU7Bl-&T$$pSo^K#tUN$RQ|(WTNpq&iR#91 zgPO{V=eo^^hl3tn_XNZ7c86`_8YZo&Y{8*LC>&ywT#>sp=pV6h?bm85Us8w>jr z1i!9r?7)2o;n;r)6@t)%le+P9k}vH2Qh9E3V}e))iXnH46Ohb z%XMzW>|xnOLOh67GPa!3SaMjPfuOEHkYFU>zp<&H`k(h*4PZzh!}SPQIPWTp6|siA zNpi43Gcj1JOb)C1^9`&sS`2}s2dl)qW3Y5D!Z8%f*`!R~>Pty;93Vr%)650cJ=) znMYXUIxp8c!z! z^RT}d7|8+?R@-eOoBV$2WD&>`ayLHo(kO=P?dH)4uw^DpOrri3&>+lFVjJj2r70Ms z7W^DO7Ih1C^-ubtB;-kP5%asavf95bZ15FZx$mv_tvDP=k681$Tzn_InyaqdtC!Tr zGs@>0KE<&B-fvY`MMwS?Wkf={-EIUldm`X+)bMU9lQ%PEPeM5eR;4T?5Nj&$L39%^ zik>k>40W3=WMVlO?Eu#Du}CqYFT%-++d%_fS9M?|9TuNOd?B`^Dqyv~s^awVBK{=a zPBITM;?h>&++J@iw}v;6&2H8uL~!Zc+eM*ZcZrx^bBY3F7}Yh@uy2*?4Q(Dlk6{Ii2!e7zFbrA}qk>Ud5U_1aCUls|HdbjTTS+3_$`A>V zR9gU47ORa{6tX{~J{T4Vxa=WfyFlPUY5b7MIAT*peJzp`D^QxjfSrZ$-jsg0)UPfbv^Gm-ND zg^6Im5iY!vY~Dv(wL2Z;_va7freq6~yT*dCsI%$uUAs2fvd=20p*Oc&mu zX()^;0=G&=lt~eJYQ{wyjg5v(;=L|uK?8y1*VmbRMegc2NGtL^)Ft&jpk?UWuJY8G z`3D$poO%YCWB?l%JTQtfh(x_u0MevRqKI%$W-vo&DbQayBN%lM$w9~&MQXJ{Zme}+zKs~3yEs675m_7ZQ^Vd{rJ0+#kJH|SvAS&yZrj)b zBs&FU$}K^un>J7wSnMiFh5OSs*6CVx7nBSfaJFS+BMVp1m%{2dc1sk-A{ZM-_75Fp z;Rr&`otxu3)?7ewcK=p&bRp93_dn#rJgqJe%8b*rh9p$T_ zJX^@8SetOVwTot>z4Bo8`#S7>6n%?5i%J-aF;Kk1em_aHVo)HPpxQxw4rydkBL^Y0 zqwtPw2T6h^HkN&$IWz}ZMN8F};X{O-41QYJjf3zhD%R)i*w6;X7q`sLx)#pQR%g#I zxCW%?iTyuFA+O;PyTzInP^Io@keWKdFw%+NiUqi%Dzqe19syGhh zT41?|G}#Cf%9XA1pF%1L>RNPtzl^=(mwo0(_r33Z@6~|zpws!F7U)_h=kUTjE8Ial z>w#C|4a#*vyzc_zd|3ItzwC5GwR3nizjDV5w}0$ox4%HR0{*~U5LdaR&sRiRqC<-Y z=W{Ry)S;EIc#!)W;ehly&&jHb*2c!>=H<(md;hQjzlw}J}tPN{fzB?Pc?G5Nkn$0cJgE-m7 znXpN%cV=#-l^=>!RU%YrBFhcTWWF|G4a9P_dOs3zf!ZO!n@&=9Vm9K z+IvsfFv74dP_)1LZHyX4{u*>RIY35vg|s=YIrf+KLbep~#UhcIFH-uG;evZzM0_4k zqzogK7>~jIe!X9lTo)*R6MH-(5y76a1cJPR9!udF5Sl`2L~OtmxFxsuni)_ou8FtB zr^evx-h{V1K46=?1r!Vf45}9>;NPZB%(>?v&;n0FvDQ*CS@~gXgPk=TA z{DQG2#4X0v_*+g+oz9>qGm|x6+*d<}uW~YT?r2RP(`!f1Ws>Dd5J-5z-{W~&U%^%c z<<=N`1^WODucd7QdYhCA78!L6j;a_Aj6SIsL`M>}i6dIcTYe&Mzi_`R>C|cysj_=I zaJ-bS=RI1;p0C^8IzriaisP~A@&W=xdyC#+cw#o2h!m>%)qE-uNH}X=UpyN0dvsT= z-=+>N_+pSIBK5Xjge#DAnuQV{BxYlo@tL-FjN8Kc8KdUBc{SoN zigfhAE_KJloIvYyEtR?>{qEFaYEjr|nSr@CKdQ7_plh;;-?;Bc>j#V-fyo4@I?%2% z872ZIG8Xygt9W4_yqaH~m{`qUW#kIc=@PsET=~^zJ>T7c)eE~K`_n;xI8NvSu!DS~ zOhh$c@EX$Ccz01?tA*H*HJJXQpr&xW=PH1C3879NM9e~5ef#v%^zt;+Jr@2W4@?hK zVk4Vyurz?CBNVgZ79 z+H18Q$7PnQ_D`-e9i@U+U{o^*`;~IHPEpGF#Cqa9Hu62`Uyr@C4cC4%+Z~HAc`?RW zp}lM#o@X~RYgY-Vst)Q!k#>r(gONE&1ZkvRHZ_ok-06###7?u**%|Q^`3Sz%k;zce z*1f+|q&5OG)~Y}#O>pHI2moM4*rX|36J~^mUWM&3X>_(<@mJk``?=!bW{=k2xa~vS zAzC=<%ks|GY|@}|HU2*kP3-@$^6AGrf_t&KzM<(y6v#wUl9!MS39ayn%gMXuW^O;C zSKY_&U%Bb(xT%zT`zI!sOSMvST3@<6-vH9I@coP8XCysHZI3CwlKG*ri&@1ws#hmo zd~xEcq4ay5ovXPQU(8({E<@4MgEC@p)kiavFfs;8MbjK3MTo6yS0_I4iHWP%P>4nQ z(}p1hj{PR|wJ#>1CxOk4O#^p^m?1bJr`}F?FW4efMEs_4jBkX4b=%Vr9IXbG9a8p zdUVC(4x0r3?*qy5;7njV`a{!HW1~Lq8Tm%M2D;%Fu_r@`pHn#_uhm%_6lk7cge1y-0zA%5ucJg zCU$ce%m5RsK*2K7Vi7paXg}~k`?d!jxXt_&&Eapn%Cbn?d{2B1G-6QF@C@L97&NP= z>=i(&28JGvtkMWzDOm^457!4!LIS7nBRwxp#|XA?AQ;_(Q$F{?Lxt5}9v9 z2D*j0kcbuhA#IB+ihVS*N$X?*n{UeFCMT zOx~nL6lCuRoL0A}iR~>yxjLYIQg1nsk$~)6LyY%9-Q>6An1Z@;WW|U6`Wa-Gg*Y3L zydhlSb7~ECP(LVl#w~e zDL4!~zod4qQDE6n0x=e+@UK;7;Z;gKwD{xTIpDHx#`hbo#f&w((>JJ5bjYACfZPrH z&=*4bnjRWM<`Do7a>G{iEAKZ)KWvakM#W}>_4jI2M74| zcVTqEqpv;gZPf)6HV$-%`>fLc_{iljCbCj9LL7ord`JML#Sz6AnO{~{kbVgPuG;7C z?;`tCSHnL)p077soV}5wml3=W(s>W7$_Z@0N5-lI-&}s$lkeIM4jIFI&z`e^m7h2a^ z7uQU-l+Je>2{wnNx2AKw>2_|;J?xyhP8dVHKxt^qntN(5$vG}V z9s)UH8GNr|WcJ_KFu~i|+amub;BV&d{n;TGp*E1QT|0>X42F%7*{n#k9TlgI*V!&b z%OG|U#+Dvv1J4ze*Z3&L$0SS`Zh)H_-xa(u+5Pwa@34ZQHAhEEFSdEy-X-Yr1-XWL zbwE{h=%tQX=0DEy&58uE%RpL^hA{aA+n(g}NTaLa0dyZYfeKt&7<5KHx+6eg!Uoq1 z;HoCqBlRc)4z;gp>z`O`p!r+#!$c;dm6>}r+E z>xSsSc(qSRDmaxmsDR)+2N0mL8~tMnFh-b%rU`?ia^ecs380MLD5SJr?X!F1N>I6k z#r;h~wX$x?LZM-a!SV@$Mnbhl4{YGgucm5+X!a}JJmR_J^I*@Tg<7(f?|vmKMPoyB znacTyUz)2I@#nCvX*tMsP2(_F!X!`4&)>3;c-9zbdeY5j6AQP@&!0+mhfxUH#l48W zs@qtVfP=!k9nsN~Mj{C;fv_rIhoPK>q$%0Jz$hyn80;VdAI!nwGC{ZdjSVAi?{=5& zZFv0Q_mq<9Rym50F%yY&bjn-JLc!v_<;vU>r%ylY@CK3{GaP+%7zqtM8=TF?9?t?2!tTK(;OZ|ck<*fT)3LgZ{fiu`3Q8Wd=fDRAfKDR z$o69-_eS8JF_0=`?OpgpiyQnz2$S`72={wkob0F*#DY8yIVWGgf9A~DvuDoSkAs96 z#_|3<~5b83oBoBOoIUApqE>lwEPsOE6V!tS+x66Ll;%i|eO=Toy| znJbUpm(Dt7jKT+fxujc12`-P&9lns}^ZLirWv>?WI$XK~@&UwE|2m@7`br4{9+r{u zmD}pG)y0LG+0`@ktkH)-%Ie_t0zORfJPk}5rc;Mp0Co;CdOrJr0Q6FX02L0qSdqi9 z0O=0CepT78MB$^6HclRy&cb2^p)W(R)c8~<5)Y>W5s#L|rSW*!t2snyD&RN)|DG(9 zFf<{-&d!IlR6MBp;^|~QH4%y19d3U-U5dwjWlt#N^M?IFpKjNx*gzF;OJ0>yP`LUq zgcbkj;tl;H-}r+k>(_F*JHK}4L=NjNmz&FteEZ4V1n%J)uJiuzH)3sz_M=z*D(a!W zLh_|lV8Ggd2Q^L%)B!vK#1tF0VG{q$nGC}GwL|xGIISE@eX)9G+VvQ6@r@cX-4%#H zG=!|7NX6rctuiQd$R%rIGa# zx(@`~u214LhWUhoP9DI`Gv$j;Iu_DmoQR!#o(5GXmh(v7blgZ8_dAVX@?&9NVeCox zQo_T2e)f&7d~TLc-ElM*5ts7ICuA@9i{5vV#|pLb{hHQ{+&bgUhs3QOgserM=H3{C zj3{^X4n8}Z^UHDlOW@#7Vt=R*zck7fz!p$1U`-kwRkU(t3Gz3Hr(j-#8<64x^T3Bq zN~&;8!R1K_j(S=9i>eplhtBg54*g+#UD%g9Ugb#4JUp6K%#p~(2DWv@RR7;{J5VS6U>3!2Lnoy_HDPF-=w z&sA#WnMx{<8jq*P;!(dFQUBe!?1g+iHzp854lgB7AWcnwGH8AaOqeHZKP|?3e=4bz z7IFkx&vnHSU@H)eGolVqE%5+7H&W|$p1bq~dHBMmKe)7T^lir1^zQ&*67CUc9<+=?{dsIFBDKAex^EE7ZeksE?8Ufe|J9;8NCuF2D$gWk83i zTLC?^0ZC31+!&6%9m@y5qyy5a`oE`=4#R268Q= z4qIQZAur{qg@qc+UGXb`mN?tnfD4{wQ9v(sKm}5qZ9}fZvV5MGU-tM|RJ*+c!Zf;r zK+(@Uqk#aC>lm}ac7~w3UG&2Q8~^Z_`K#$0kd(?9$rp>$aWs zb(G6BNLqri8^$490R99O4WBNshH}%UEf6a?CLEY49aaVuxQ+|Ony8F4WFDm~+z_^) ze{7*X7ql9|fkN$%m*z{JaLD_VFB~e<1n_t$3q!2gOe+3Kt6_p8xW3-aCy;+WANE}E zMZ(?-*fRp5kmO0MeVs5sX^6sS)WYVF0?IUA1wNA!VMOPbgqmV-5&9KaBWG86#f7bO zEb#5Xv9dB={CS1+PYhHm^Wba;7MK@i3Wb^Hlxd;OZ(iGO2~B{M14!6V_zC z+Al8LofOl_yT34KBTe~tvPXhBJwKh-bHO8fMkJh1U>qZeFmCFH5}k!gWnp_1YyS%) zig54<^B$!kiyGrsu+A8Ra1Jyba9b>ql;E)1z-CJPEMqz~%C3HpDd=C2w}LBA(M^q! zF675fjGevnERJG+%53x0ym)Rfir)lCbn$Lp9qxnp#8@<$PA8*d%QN-UX0xlO>oYG6 zrs@hNFCeoZ1@gZ>(iO8W++XR==gcifS-S^!sfG zvw{>Pqn5^lw!BNh{1+8GC${!SQtovIlY<;UQBXK$rm43}13t>Y|4jT5#`ZL#tv+ab z!uI2~4@=rh=XR&TDAznGf^rP1J#S>k0}%#;Q~WK;4{Vh3TRFLO4D<*rPZw#Xs^?&| zxrnWFv5eI)iNbQYiuHm8%`*tvS53JaX;oA@33|1$`hCp^hIFsy_xqrl6E443Aeo}i z`j41kG>?`aK3A;#+Yg5VOm}~Mw#)LDM zOcw3-9Kw_fkI#b|+t*sBN&cGGby{v z6^LRzIy5^BQ;X$LB47kOdT=aOh?kA9JL=XQnS@WXi)b|Nb337>^Q7H&=jR>e#RY>;Q`Rbc-)1-?(H6;K;n=%b*88-spLJ)Kv-{b3_A;SYuU6A@#GCZreDG%3~* zs3*0Dl?iT~0Y8&OsKBT7Wf%?skyrl7Al zbbPc~rN_9EiBjgY2L)oEzMvdZ`CUl~H%NdH>8A@_+b8c7w%s<=e8#YdVnf**UH{MG z52Y?NfjN|(TGAp?+Cw^Ie)NjCe?1WR?ew|yg+Smtf#ToX=`RK@JR#osM4*VvxLU;J z-ha8%@4xd2i{>P)l7`j|vIfPQ9}^%~q{9zf&_M;pwZ27(*iK%zo#K3sO(CV3$NzIo z&ei*`YTp+K-~tGkV&)Xj*w5j#sTeto2W2eW!zurP1RL{WiP|XV#0(?%)jnO@1_mGh z5aLyD61N%S<3{i6ICiA&u-j~QMKfpg{(v{c5d+|(c(XOh=To|+G_a_M00gF|zE@pm zC~PFcZ5f-JYirw#d~5w~TmFu@Ii)15qFPw2fMmtbD~&zsde^FF9uv0gqib7;iqUGW zt!+Nu`@QU=kA8g{ET@ulD%nk*)+w(py#d(#VG6?7a4~K;GM18JtiacD!;yReZ}H*!3Vyu^ z0?c|Az#|K7(AE%I5x9Vh(?I_Y4Q2suS2}yQYc9O3xxJxC%Iy--H)uLiTj`0~CPC&-+xhum%-a^!iuMkKx9_IZQ8pboK5;P20_{TqkV?b4$j>@qKUqDaaI zSC8N+@Nw=yFg-q`u2YlE@Vo9$L&s za`)XvSWrAh0&7C)@PRjw`xuaemuT-n?rJ^5wJrTAMS-+CQ%507i)r;QeN@4p=nQ|P z!UWdH?SZ3_RtJBOYqxWaZ+(lpz!q!|Xdka`_5Nl8w{9X1QEgGU4B%Y?90HFaF8V4Y zonX!&2t<`uxOuU+)&-xadGXD}r_ z`)GX)`ISIC&kKOQ3b+h;j+vBr{9#lm;x+_@`!qdp~{pd5~Q z6^fK^#wf=`iWb0`bb^%PU_j0UoQY@;3no@1rPxVNs%Rki{D(88>_Y{6DXZ%RWL;Vu zUq9k)q{liJ7iVwJ_CD}+TydXVO5wun%zRAPZgs$XxS;FVlD)vxv#F0RdS*|ZyAnN@ z74L@iGICT#= zb%Q!c+H^@#HPERHeYFI*#X<&TLM?a_q9{%u_^^dHEU&KCN~u&f>Tw_UF0H&_{^%p( zMQ~m92af9-Cl@NS&brqVoIbhXKK{T8enD6PeTq7iA2Ib72Idbs1A+As0SE$HLX0FO z`taX{7pYtkM4{A5!lBo;BVWyP=Q`)kwIKEaZf7(uq`g605bT*saRKcf)EE#Sw3JNb z`d^?<#w>wcUiA+)fDFu}5wy=HYo3@>Dg~ zcmZE;dgSaWeayFnRA09uBbPjP>o^q~s}CNVyEyK2mmyP**@b8Ip(h_){p?%(E)NLB z6_?MAQ+L_r!l@b$lO7!CaWKtHsRbu>X>-JL+8((guoQzNVL53a;leIFZIFkd*MU?5 zRxv;*unwZqMjh!IgBJ!%!i-sm+tvgmTB{S92pFCLY9gY*) zfhMpVLZHBwRSqQBAtv! zBS!K_(uhRk$+Vb8o~SI4dIuOi>v228d*@~r49Rjaer>HDW~6wP~PW?uIDVlf|B zHy(f59kF}ff^ag;bo4DAd&K>(#Ft#J=Obx z+^cNxMi#awpM+7BDIc?SEP03Z`#4rEOc=!Sf><7Qf~Erp1k#azi}ty&`%;%o>){4=E+teeL(m42q|TjJ{9ye; zzII+^5BsGk^g&*KC-Kx%t@ZQy>Uoh@4Ie*ytZ08*C;y~bw$=8+VeM8f8w@0>;+Bmz z{?D}8@nqSXDwML%Cnm=CcVRDEO2!>i%jJ9xs6xSs8tVY4PRbww1cR|gBnHMpfWTDL zwyhy=!xg33sXawoHfz|o*4EZ*Pd;hxuU7jx_J@o-K#fUDM;rb}UFB3eI^^3@(JS|D zl%)19;(lsZ&@eWRo6Q0BYi)D0$*B1wetVLbZw<3GL*pF)2SPX*>AwT1ii%Lq0dwk& zkwLh>T&tB&o|H%X$WUCj-Eqg&tGC~N^?8iPV9zz%JX9WNw!uh4Wqf~aVWD>RtUSUj z(W1uEt;?6&ZM?f9Egzk`Fy{_hvO$4_K5T{+z$W%GMUoNn);8ykpExl*cYwRIpPWB& z0+KYg*IavUX?v`+Zgd@mn$;>DjywzjFI6;DGwEGLbnSIa7zz3w%;t?sE)vOA3=lU_ z;4eBm{LJQ#+M~t1^ImdCnD9E3=4s@n?R~t zm@J79&nTy8QIl&^0ux3WHalb`IwNa{-cS415J*2IfFe#@1_L*QN;a$D(2)tr(;Qhs z>-24#O6xyLlrjX9GDF_J6)NL)3>68sW1~GhP4M(tYZKRD&qv#6|G|ja70B>UNn*kx(d-&tF9ZhFT{UXy&K<;fU`xe>CEA8fdPfd95~= zq|CT+Xsi1zm96f#8T=YLK&qG|%ScoIqt(V(ppN?2@_03$HwdmLVepYjN#y!428QNq#+PSVfYJ_qhBwSz}VOrPy3Ka z0@5~d@Y{5It36!S$a*%Ng=%vGVTvK*<e+$E!I#%Ow<#h z%$Z>{>9nCLjDQKLsEZM!VvLE8WiPQVmRn2jW?1=-hJdbV@o2X9qhptFDoQwjWtB}t zQs6TsS9OiQp=612iRyuxkuNwKZKlHYoA2tyZ;_ zLZNHA_wDajg}(pYZ+o)#Ik_j1-ukZiYqZk`_)#%}X(gnCZtJ(YI8>83cKmqm_=y~j zCyrlXeKogTyvKzwDWZmOD6aQ7aqHMIK5+c_w-4!#T-#QiGF~U_l)%53wcfaQHzRF? zEENTxfwoL*xy56HiXZ>wdusO#SH5(EUMsxa6-~5+@F}fkndF6$mB7zIJctmw5RJom z2fI0d$KvT;27P5%fXfKp}!@dW;$YUMMgHVPNWE-Nv|WD&m|+@i0(;=`nLT2><-?+U<_szjbPMNB+q2(~sosLiaevX6Ju+ zZg$+!aXLa#Z?e!h-6$Z2P-cF0J`?jo!RXL8%44Z40_P;+iM-eE(uK{nO!ZuK?rvne60kH9;gE6f%8|

Xs1;<&#b)A|O31!oeIu^?2+sF|vCc+B=*c z$9yWYH0SWRgkvU=N+o8Ty`CeKj7_gh)FBUwpBb~;olalmXnv|tOy{B@htq$?=Z{1~ z{%F$a&>-N~{TUa;8p7xOLl=w}y#YOWHm4;f*O#0QH&nFtb;$OllP=JLBzA%7y6LL9)P?hQCyfvglSaew`D_=|oTn961Q5#Yxol_N)m3s9Cw z8d7bJF4T_{mChZ?5ZE%Vg20(@B$BvIIh*V(1_-|)yi<#^+5qK+*xwkfMLboPfX`S8 z_@`u+(n>HJzq=w<^t3PH@`gRecu;qULM-e`#Gxd2+M{tT6xMv6RKObm(V7e2Mfhc83GHkFep23*Uq{gn(Ds6qVF4@AP>R7z<&C40q-J98hh>`ju^dA7Y(c1XPpR1zgItD$yzO#Btzh(;=ap=vxN+V0>movzK5jmo<^^ zDRBIF5|dh%55l=+emWWPhJ08|u;kTT8ceohbLN#qEa-P@uBty52#4_{=*fG6!I%$5 zk%91-`j*XyeFDxhF$8S$Lvv^NeA|f4=7o)i{H_Coxpj<<$N#|n(CK+}r{UB!hwi%I zf}#-T0bMtF(oO6~j8zC~58+?+`Uc1k8|-e7+1Pmc|B^#7G#>xh(RjU`eVx6LG|@Hq zUengj76ZT_3h_o0I%tF$?V{amD)G{e_%@!g!&ifmG#Ut}2mb~@XbDhZ_b0DF5@hj}^bc0_0kq*rm8;XY#sSFgyAXDp0*XWi#p-ro zq|61jx4zz~_SUXl>oRU#G%&=YDoPkiD~l3sfZJf1x>2dYP&j+3(`}w<|KBXHxgaiO zd!Nc)y!h`vwZ5LHcIV*>jO+3s`(y(FnbaG?cKm1GS^O!n@zKDeo3v?_MvZ+rWf;^7 zegEiBO#hx0;3!CoN}zMnADM5Y|9g9 zH@9~^{_8gXkU%3}$HIc?I}*ig;{#t%pW+w0;Nut%_N47Lz#R8WPHY2U z6~y+mV3fKmtlij<2!_svHL)X2qg7l?Ab87q7&Fu#bNaI@7lxY;)!W0LTlLP)uOEGA??!ERQbW%y`ix38XGJ)amZvemiTyt=O} z;#}tRq7BpnGuV{ipQMH$DIps`#q1+cuG7}svWBOCfkU>GK-Mv->=s6sBh_IP#j&aE z!k9m}8}U8q4Trr`^CfS16{b*4n03iPOGj@>W@pnb?^wuw!5a$uE_h*F%w%nmMOyCV zO&qS;brV`;un~tf4T@0J6sp?Ul2H^P7W~0|4g36?V1GJRnxA6Zo`g~OOBuA|c)w}2 zL}vD4-5(Ca)RS$hORMn^OveG%1Gv$sUxME@aLys44=;hW^^ws>K=0=I#^_9%dzFl_ zDLq3OJ8BffT^61eJ6kjiKr>r7%FvlIfek}s_5mAsOa-x&^D4_Fj6kDt11RYizj5_K z{ep356&(pThgKu^>}&n@Q~thxB_&;!V1F5Gwva1FsU$nJ(m@U$DpFfS2Jv3-pf(tDhm@#b->e@PCly0=7~Go>AMIcBpf3nhhLm?8>fAn92dGmvgq;qU9aOPl z|E)eyQ%|}ngC^BHfj+Q23$-GO6{_NGuhfS0e`eDgJnY^$3-_Om@<>v4| zpPS!bi_f}&d&6)Tk$TPpqYkM%x=>~=Lhj**bCV1= zTZ72(p?mLL!X}bVj!$hG1~{3|EEaNxkt;09t(SBT@X^;1BWV?@D*^gE2uTaMZn`~z z9+!kWDfMI>UrEQSK+TfQ2ZgqpOo;7}TTjFn3qIJyxj~eBbYEdHp3vQ)+#GB?#*(p+ z&#gH$4^U6sNM)*}^4wl>wlZHk0lwRb7ntu8wfV|ya@OOHHKR@t;XZ`=bHn7$9~iH- zV{Q;Fiq2#V?&gW!XNO1fk1!w6FW=AW^w7`H%}g!>+NlT>C}us zI}nFmx4`wKV(rn`8#>MW>fEWf)@pA(HMfdQgtWnRsW&1G8Kdrbxk8so_=RCxk%5&f zK@iHEk4pJhe%$GT`{QptlY8cSKY!(|VZ8qim;B?IAD>R;{4VET;m#vJAAakVpASF& z6Sy|vb4gYYvSh5?Uls3^`MxqTj$oNul^7)&5N$#B15p=*9dsiE1oM500scXY%Fmaw zw-gp{hn;$;^{}@xR&_&q6j_`zQbAN|_W*Y?rzG|fT3AqJ)(=W5iQSrrDB4%R=@}DwUz3W6<};!A z;?xH|S(r~hNt5d?-dSHhJhjx@S(r>!FobFkf%6(*2zEU&q(27i!e|xZZdxC9jxUGi zCZ7f0_2Npi@UExwQ~7nQq*L`RY!mzKUIB6Jis6t-o< zr6KPQbpJkgp!e?{d%X0GiRHI@JWqMDo+rKE)U|Lh7T|^+hy}xQk3E+7%^Ys?p7%)) znNhhgN9JBxW)IDK7iK~I$;PHBYMmW$GZJ+A`rBbROrr0ALg4X&3m>%YP*a;(YBjc_P*U)816Pn86a<5viLvqsYAhiS{fPE{sI6<+$f|r*8k5V@> zTt)#@1Fa^ckiAIa6IQXyW^stU5Ka5v>c_0t5YHg}c*iO_JsJ2BKMf9$UhrJ{?frJD zIsl`?bwF4O>bk$7paYV(#b~UoS~b~72g+=%w3vi;%IpJKYe`8N2CPz;gHy(y`gf&504LbiJ>v({26lXn%g11V6fDe zq2{A_x$9A2Kq?Ci_)s5eEe>DQFlal&URr%n<3-KhzFIkAoaB+Aqg-#fZgq)6hLEx5 zxS?39ZyYlWm#j#R9^#~#Fz~Aq2FTG4^%2q}?7kRYnuv*q?z(FNG4##x|IS@^=GNQ$ z#$4?ILnSmo7tk`oEMu2>QmqoUDHgSGR`;;_sW59)%-?DdvcVSn}JoRi-5!9oHB z4)*|Im|>a0H})jHAz|U0c5S?24%yC=Q|5jS ztuAGE=z{#ymn$4VFo8SDijY#g>$XjIF zJ{IQuL^5!h0T#nv#pqzI!S6Q(AsX`9(lR1g0s7R3s5Pq{IP$@@ueC-a?M`R#8{z?( zZyV5xOf`@?;D-R(<=T3)4e>F8U$>hCy=J?)vBBRBaJ~aj9#T*X!7hI!_1%&-tF5oC zch}Z7Y5?~pxU?qwC}l$b0`qnbZIt{AnXjVcw;D+pD>aau7CzdAI_NaXl2Jv%m_Z2$ zy>LPDKH$are~5Rp_n=1ze=s+>dT}=I(?n}3o^~XI8Ruf}zljgG>@GbR&di40!tRMo zeL&NpANHnm%ahqmJQjqZx(21S=pxT?E`vZQVk$FZgv5NrBka2WSgLj(^nd}~oA5`4 z&lmHAV$qC|j)1*#*gd-67et^GzXzir`*&UZv1npcrZ9)f;z8OWfZav6>Z{T-h3X*Y ziH7=eS+tNM+4}#~TVtt|2pFCqIE7#!lZIdwCfL?(JlFfpL?k}$_xPRewC;3?OgR_y z5$C9V^N#_WK1!B{>xLvt)m@}p3=J}=alS$2{(uLyyHnwG=0N35BigUqory;$0?A|*z~BIDPetiL`j$yBQJ8YXig`X22NxakX@ONtj86-85RJxT z7psiW1Kv8G674r@QBTls7q9rBvlhZIgwWki-z&oI4|<~7o7I@BoC%tg;a~&6pM#(% z!4XogctUicF%Y(G5}ezh4InYAHX#Vz+uN(EP)sIl(tcK!(?B|EU}3tP43)DDwUSK+ zBV#Eo1aoaxHwUGtIoJe0>ENEk4ABh;%+YI%H)9UqGY4H2@Yx28=IgU3XX}&4YE_(X zZ!;hF_BMhsS^Gj4^w}3e3v?f2*5J1ITjjvaKEn z0ojsQuiL^)*0@=H<;eB>G$;aIgBJYI#yKFp9!#umM5Ns%qU}qRo@Dg1wv;^iTRRB* zh#32R&tA*l?GlCecGmnK?gGCf`w=uRiUt6#=dSqwvi2rmlAPt4VE%bTT;~6u4#sk~UdUw48w#P$i-}nC`kE-sLv7fCYGcqDF{`>pCy$z*LSb%hZ{7$R9Ib6IRv+ z<8y5p9WXKY0dHcL=aaldnOq(@VOpe^4GPcZKc{th;F-0FLi*R!A_k_ri&91N21+7s zd1C`tuCW}J+gnEv&`xJ}Ij&(js5GT>0By&Lq3uB0#n8I#W=A!Lg&!irx-k6|xcVysHligc_8j)2`J5!kY~21Ts4I$N?O zikD+NA`eD1CK32}5}w6Tu*ZTOwrFgucbez{@E+@(YwPsX>#WNoe71SQUC%)*etfYZ zpCg|}7zCaput5(WbYs1_DW8J_K1a>LXT&>U@pOnf$UVMK1r|tin_51=5bzM{-SA0= z597snR%nMiKG$-^m1hlZ5`F}Z>G8g_s~Nb-hFqL+qIPlphg&Fi43ps%@wxEWu_$qyk=Eo3fKJno`; z6CIfc&PpaNd4SX*RFv6C0PQ!-v4m7`{{eFnMk5&BA^_C^2M=2Anac+!H9a3cf^D1bN8Av zS~g}D-9JZyb0wbMBp=w{es+VVq_1PU8Suw9MF%n&h#vvZ!_k20JCA$?U`}NE5~y!wromw@6YvLU`~N0>7HH}fTFwCOW9}^( zX#&o*kW-M}5I`;q25R+raGiJ7_d{NzDgu7$^WQ8)^q3aaw70>lIRcOVBJvz)g$O@s z+FNz`7AbsFivuPQLrC^`1Ygl`YfOJDZs&akEg08|ct#YTh9|#?vlG->Nd1ng^LwzD zG3qbm5(x!``z>kG5-13g7}x`3doVe$+>Xr3Niutc3r;3M6B{_a?~HevXsl`PnSHoI zMHc>S-n9pQhnbCmD1yj~b%NOlMipin86Ru7wtG|M*FCn~dR7M;??be3C-ZPv|;w=|8TldBG0h5htSLfmNRmvPv zZeL=fxq0#aY^lD2HsNR5yHclDSX#M_ajvU!nLkeA_+G4BTJPG7hk=?|RKftEFsjCL zXzvs8c~k?7ur?o0BZ}g_*0qcK3dLeNb3D7Eq6a|pz5Un|yQ@^nWO(z%Yps37Vu6{C zNA)8uQ@pc^+3uhxIAW8a0&T<(m=(iBI@pbs)dOV zH1eSUQ?UNy<2D}{FhS*oIhigE) z%1uC_X_jOZ25LY+&Kk?;R*%09_6=6mFLG)(O4|imAS`CNF_^oOD&kcMJ!*W7T>Z;hbKJ;4|*mKxABE0zxJIHma+e% zGNrho(u;o%c~S7UYIfkvk9L5cdEvjwed8tgfcRqAM#01!5gIB-STO16Vw-w_dAvYP zfOA0l)R*eu_^7yZIBR8469&jvHbPb7~6I z1H8913sG63R3D3YLrxjA6ABZlGT|uU7hQle+gm!qvS{ImTNl9Bdr?alQosP(&SM~% z-I1_{V73*P^McbQHjftfW#Z{vB7f0{FsvAo-Xi}kkkeYkxR_7m((%l`VzQpeK&L2q zph2F(EOlWC%!fu9dbgMb{a$+sOeRoNFpw@amRtZn>}*4W3C_R2W8N1GV?CMRexX&O z_N~7~nV?Yj7$LAUFbwo>7QQgve(L(r{#b>jY;PgZki?>PI~`O-(%2i~<>;p)%xjid zB(@yGjbC(@)HT?s`aL~H1_JezUB(_{a5v--UaX@G9hh)vjhrqwyarMlqO-aD=(vbx zccK4Rzhe$T;_jzKPFOa$~72DmbF`Nqcw3x@| z4`(A~%b$w+!%bkZvH#g^QnDfJYCz}7B#_i3Ajs)JR$OY?f+EbaYuI_Z`0sUWk+DS& zW&GK?x<2A+MX>fy<7pEbGel8M30o6n92q+417Oh!U$J)>*FbR_~E zUsMEy&wDfAJr)Q@{3kuWYY1zVYb24k+NF7tjqHhZWg>OR?LKUkulcm&foRx&T!*kM z`v)|Dn7Dz@ypF9iMu+xWBcQfme9L^|6B*m7A0ZFYov&QF^cCTF7J z406_oi)JDcuFe(Qp3k}vCc^82M$zkkwcCyC&+rns*P}(;?rc2rnQEn;$$7og^=8YQ zDSMo$N*1Z9Q=uf>JOYJgH0yEAiOmEg*ZTfgBI1gKsyUHwmJV+_dRql73R2tACcpFT-q)`^@OcoSCf^YJqJ^lAWazw zos7xiKm-$C?tcW03cT7Ib{5>RWXxTF7u>6X{Of-^k;_hIvtLSPvyEI%bfSSj4Mct3 zbL0-rc@bO@AAc)9nIHb4DoW=!j%Z2KmP@n8d#ov+t%t9YMkGi9x3|g&N z_BL!6Dz*^;Spy3VgOLxJZt=LcSnw|0H@9?ov3YhjSf9g2J$1rBBFCj#ElcKm;dwk$08QF&V46&oQ~3L=s;7OjryAR}g&ykfcAW6Yfu4d$KJ+q3xDwHZbp*YnauU3rbRXof z*Bew_a7xP%P@Kkfb|6_&0t^-w?mxe}dj4uSTwH(WlgExd`OfuXIGnbuP6aq60GTQs z%euL%F6-2jZ@Lx^AA7R<a=nArtuc?`%h|qKa3vy zgp(VcfEm$#zP7kn`*|&520B~(hKZ2!ysO4r27fhvE#y}`Hgy^sz-JrahbFPsWR_Lw zm4R@7vMC4)D{J4tgpdt_H`$NT2oMHI{ZD*J!NNgBqSWK+-|rkiT~y4vrp&GiPYKPGtWFDuKu9= zgR9-HLF=teZ%8k*pp|XV8ym_AyB-Zdk}D&tg&h@+o7hk_6D)bbNe@2_QRs(4X1=p8 z8iu`2xbt(VsrH#_0Qkws!pVE*S7w)W;k|S&S}CRcdNlRagYSCRufFSD|6;lxfWpF^ zNxR+2c%s-2`r9V5BPWB^cb^L&8n|#b-j*$BUY}vOgTKJ9{OY?n^^|^tb&gQ~&mCtJ z;DMehO8_rG|702j0#ihkjs_2wzBv6|@H_sopd4T=`rH5NU;O}Vy$7>myg!sZ9FYcP zFtuR5a^*h{&+x)$aTX`lb5YYl-YOuvs1Igv zfsrlR0vgGV5O+(yDp*!-ldB4bbjphV9rO4D(9NYGoj>Au9MO{BiRY`pIEeU-IMhSJ z2HZY369hzaF>(%}k&5d_tSCkY=hZnz+cJ?HY)rc+Wk+L?fN0vd3oZmZr?ncf5RW>= zCw(#aqJ?4!_2%~?*=HcI=!fv`jp?3bwiHM9@Pz9L1`YV6=8u^f_|ExbR!Gwkmj3tj zklzD`)=1C~yMFK|Cf_(&{;fv?`aV}AnJMMX;LGmvgc0B!4#uNGSk{REiirgtei6uld!a-{GZ}0hsAEks zZgL;8m{wyJ4vjbzM z+SzQK5g}Um+pV*3LvAVc;I_1nbLz9RR z8T7m69uQ*grM_s;W#~W`&|CAPLEp7jEO97usOZmLw5HNu^#zfy6Bel(F~~nLVaC$m zSiF1D5@``CHj4pYuozjXimkNMLycXfhlhGo8*55+{uE)=0^Xf z*!mlTsCnbDs1?QEj(U4(e`_)okA@n}MkpFjO^Qv}JZZl0(TLISBDT)j+avg%X(pgH z!&d|9?Myr#K|Y*tIG|zTgDBd%{}JYRkgpAzGs^ee-l3CK{~QtglQ!@lR-{U!Y}*BG zoz;#E`UpVF@O=%^Fb7W(Yx-pJBLC!%I_$1(**8dP&iRGDexWD6Bc8<(XY~~Hl*+g9 zh{F+MoDW%Io36>K5MYD?S;FO+KQ z-Zj1;U}ZM@f+L&lX0vOtQ}`G=CH`@?zmi2}8gVLiZ>tJ#mHy|OwdNX+(S-h1_Rq7Q z%6{q;60xpz@oKLPa^JV%4j+H0P?G(Hi##gIlhJ@ZrcKks}f4v)_oY z`Yqk-+X@Ent!o)9x5JUc;UX@wC^?`01=dCxAEaywm4#g0Sm749EN~ps;aaM9kf5UJ zHM2=?GH>aVnWEbrn`i}6A#27ATal@1)Z-DawE~Ep0RR1fm21`~U($(ILY5IKCl5Y6 zSw|CXenFLa{>LeGpoP*Z^YAy3feolsfm#wWm(;aTS4C~rk5Rw5O3kS|u_Hoag$4!3 zQ=oLh2vyzDiHH_WC49AD3c(9ryd6(GxabUEe>M{V%Y~z(7o3@RB^eCBNd=#SMipwO z!5(v6ycY5UqX?2eYe8kKG(*_yq3ebcH3Gw@A$lYSFL%wkqW(vNN&iDJt=fZG7dEi; zy4Rl!J{|PEHmdtPCwtr5!)O0{@XQkuuLQPhQBf+095P@hWRNn15Omg(gy`#5SvZQ* zEkX`MzTlTUh;gBdt{!l^Jzq){ri(y}hz_`M*v(wEk-gWm~i`nz3*3>Is@c_Jw?fr^)qKGZ!!bdu>hk7wN1RZjj2VF2Dx>QDw z%r2vS6w9S6Q#dML(`O)ES5~SCw+H?&G0&8lfhdjvfKB5uzJ)@sTxvhOn>Pi_2%`EN z5}~8Vyo>Su1$<{i*(ednfu_n=eX#VCs5{mbUcLs|5!y&)6C$n=Tcipz0~;iv*O&n4 z9|uf5wQOfqvI?u6Y;FH#*aa@{zm}y0H6u-$Ko+k z`ULZe*|juqw}e~%o;~j80ugD~iv(7P+G_U30%mof^g*AXMXwG-Ru%pmV4Phc$|Nt= zv)e@)kM&G@=BQvegV6v6nq^ljftjtWg_z+EG+|Fm-z5Fd@6_HtKq>r@O~$<2k!4TZ zxlfHd_Ur0q_x3$&wCb7bcHgRTqZ|rHKCm>q+X6wFZIuWFbhPBXWp4w$W0YH)xhh@g z(TOH{(I9S}Ilrs9o&H+qNBV5uM2x=;T*4hKhB}A1)iv|8`j2G$xUN+D64*OYe!`OC zh@3Vu9vG-SG!S$wBaVY}hB7aGS%O6GqT)nkO0i(}o zg|)~Npl>NJtGYzSq^qt=nfgjJ5c<`}5OojqsGf+uqrGpU!xJvGyBh1c7ZQ5iQd#*QS4@{tZ zpjaeoMe+yI&JE@u@HtP|^SOZib|s{}%HcvsySfsey`>Y<- zB7?^apLgbgPe1U$r_~$+K~OyDB#uCJVD<)?myQ*ZC@^@ZLY2wX2x{9el^%(n2j$rh z#C!)trqFI$Qzxei%SIt{x`91!@gZcuYiDMD7x%2Kfl!&vb^&jeQOp$fUw#d?JIr5M zwh8U~MI6zHf?w=6Y9h}O2`zuY4bDrq-bKT{iHRCmDcm`5QKqVe$S3tH9I@!+#B8?g z@l0f=i?u?bR-De3H5hH%jZQJOuU51YL7&GJ41}gz*&yKR9zTh z%tSE{{}lJI^cmv-oFViFGN0oHx)Wo_A}gkpqFq6OL^ph>TPdy zHzbG{9#FhR!#w@Ju?Js6$rC_eopU_qcmrmvq$-lKr~$G}j~on!YEn_P+H&A5IaVNS z>I)nQbxIK?1fl0>+SlbMLC%(6MM4-;-b$oG1H7`|G7G7EB$2>$vGUPGznh5Wt)gKi z=E}?2WY6vL2V$_$dBbo%@F78q*YC_40nb-lE-$jYMq&{_K!OWxeq5Jc33{$- zdMskavZ*98O6iD87E7kG=~684@jxJJ6%&DQ%u1E!8gEP_LsT7yk_qIR2}P2cmNepC z&$`~2D@_!m-ppbep^YR>#8_~@vTd}Khrw=OV%!o2wY$2uiofxk(wjW7x;efBjr8o- zpnV#TOzHqUn_vSxdoYPyoPYSI7)~rSO0Ez*#CIM4E%@ME2MTCw&5$auYt#-12VbEg zFbLybU4@dP2lu-!XCHKCTb&mCwlM2Ds(qk&*D#lojuO|l?J$lQb!vKmv`~>TsDyBU zHq>*|X3WZ^N(pQ7q$LX$o3P?9+`V`(AJ0}M=BM^w0?UKa@MqHx>iEKtr%AiehY;l{ z(nHZTu-J*st!)4>yRC)(pV-*6*0mmC`@QM{cqN+PhWo_hK&?t?4xX?hSb+`#2+>&r z(4i62#l`-Ave5-i8(JXN?t8F$_Yh#vQTPI*^FLW{Mt9h2u!kJ?^gbddPZpZ~z=+Qb zh&IyGqK05F)A3E)2hrX$0_Z`s&0e+m#>fuPqic9qbbCr?C>%fxLwVg=A6V!Hdv6!x z;FZrA*bo?Bf`zlo2HABqX6u0~l-N|A(qHRtZgy9tT%h(ZFSx5B<&wnUISP3u9|OK) zXv=dg(JDYgPQ`du)h-O4xU^PE|K;Fg+im46ce{i3OAOq4I)3%pXRpT7cJ)#GbD>x) z^jsJHr}hf27dP9{w%S%18HuEe*}x$2{PMXgV8d3&SH-hHPa9*r9LIvZxXOP(3^srb zGDZu;nucE6BU5!dvz_~2aBM6u(SpO#ky2*s{`UQ^6P@i+X=jh3Y_O-TL9XSvDR*MV zH^P3uyl9mh$nPqlbjn&{iYDR(q0XEF^5q7izNk7fw)}h0a+xO<>2cBNl*RTu%(1#P zQs~9h^IB`{g&o!xFE`~A;}I!&TT0BAaJ|tVH8UN7t58uViQ0l zD#E+6Lr@Yt%QbiZ1|x;OnHR{gcX9bfPbj;B()lrFca9pc8nagI z8Q)|z%+Q5FC<*yZ;YC%}wtB2>8SH}p%o1;8I8>W@xgetI}bF;3jCX-BA#ZxsWZfn^K9 zpa=%3Cny~VHkCr)tAV+pL^)W|Z>P_7i%#nO-;swX3QU5XFKdUNu;PbTy1ZNR0k@RD zgf%yKI<=*;JYryE4P1jd4UJzz8~TPUQWn7+L-G?!+1zFAkOd3Q7SMLy+u!E#rZU!d zmATxeq4cXp1gLgdqDL!Al*I0WBS;QO^J(FjJg|Ra?bysofBR(X;5`RV83!h7E5{z3 zo%Eewt{*y7pFcIE_dOi>v0FL>oS-b^6=+K}I#6G`?3{wiGY9s#D;LgP;chIa2w#P< z(-N)o=TYtPsUe3@zR=$QoR#u8EQ{8q!xLA!SlOM8`_f%-e1o-49EzH&FFsT6JV|dq zJ(ceMrr1HgF6Dc}9PM??sRfC8Kz3*#`=HNjXl<}#6-`DKBNC#4_&M!5&g+ZIp2a%S zwqxryOoSSRnqv8F3!T~eyE+TS+R4I{*7Cek;dK6wmNr$$<>V=GkstDT`_4i=%Nz3( z@|HsdoW4tebTmHZmw95gvrwo%Ho6TX!?pFox5U2_zlQYy+s@FV1SWC{jZ09GXu1R) zN%TAG0oqkhY-J)Q;)qh~udKvkKYkM}b26wlH9VaqI$o63GiKTC}j=}dEzFZ_!8<289tK`)u4&A%HBg2r1 zA#GJYcF$(cs1s(uyDr%#0ly^3if&edB|7XLibkTpuW1fiYc;6_s${xyV>ci8JGiE(xTD%@jjw04C~$Y4p`h} zD;Mxl-z}6AY3yiS@AgJAI8$odJPdIRF4S3i2QnE{LOD->I|YX~690jCCRcnD&%Psi z>KI+&Tm2h%#!K~kU0cu1a+!a0+Hufv0^F0*@Qs*CFvGyQs9jd2469f}4og*TkC(@% zf3tkBj6e03FU`!9zRH()06}o0(N{_K^N_^2swE~ihj+^_HSI6pTP1$OjFv{}6I(+k z2*uARz7>A=@cffo3@ZtzHS9Qu?G=%Y{}j0YivLx{}eQ ziRQdfo41k&&qOVck$L>kzL{u#s&#sDwOKAVj~Wq(9sS=9ArAX;xrS)dq&@$y_`LWy zb_sBbwRtKTz@mUNXBbRnYsAG zhu`+L^5x5=G=55#FAw^M__+x zlA$YLA-WO>oJS=Uugv)yMEmQQyQ~!|Bok$ zGGf%@&N%TUkp(C4wMxJ^ny4PjOPKf z8|S;CCFF;^w3ouRr7W6Q-!=+I5(IFR%Dos;;j4j^RW_BW6QR4;I-80WT&wM?96Eid zvabeKY)n2Sx4aKDmhvekrW8x1>JsSE0spLzE>Za1d->VYKL5YzbWZyh3X=y8Oxi)~ zcoNpCPIlL6v02GO-I1#vxOAYSQlW3jGo4Pp!gI-V0;kz_HK%*v=@l~QMQezf-?kdg ztu4`&1*pfX=rT8HcTnqe@O-Y*Q8V{85ego#?W%WfUk<`Q;O};2@qFj+Ssv^j79~4^ ziEdloM+)us;O{ntZV#^ECKPSYS<)mTei$bObGFg|8JI=7S-GmA&mW2+VrR9}*%wb_ z=BkMa*mx`2$H6pVav{t`XP=g=&e5ueS(b>uYN$Ao6Be|24Lz%(h^vS_jF3$P3HCBZ z%0tnM<5_j=;}s__K!q-EfG7yDle;^4Ey~nllY9&82?&_I)#DpLwDyVK7>p8$!*OLD z>NUjpgx|XSus+fiU_)hx0PDy#1-U_@MjBLya_C;&$Mhk(_@ZW8%u~fyh2lwTMgz81yZSktO`s{^!9A$Z)0hncm-<9!J11q9~PNdIud->C*I!r zsag%gSF15o(Fd{sv|Wz`ACUu!LGCoubItTaI2kfM?}EX5qxPz1vo3%L0KC6FB zJ|Y}$<^^tZd(LZq;kw%saNiB@InOi5ck*8Cd?<8AcRIDZLnzdq6QnzcmWeDc&=U{k zf@4CwRf`91kjK6eKzJW<7fj^jzJ0#;VVu?e%I~^~qa}T^U>)1@h}9c6E==uu%W)$55Zox$XJ&8JU^}4e z0g_^C?0B_jQl^DgZyoulp{;^?9I9ifOO)|g_yN-5@R({Nd_c?-%qq@z=+8j6s81oy zEcJigwE*_ehE5Cm-ik??dQhwWXN$A5#hDrTx_z4} zj#tk=7W_Iydm(A)sQ;2pVwPdgD9;vH(Rhq!WAVZnSpwX@9fT>vnH~ z)`QmU>0I{{^C z9tC66F-7suV2r%*1E05+I&(%maLlTDLuM#e+b3ox^PwZ5lDDMcKh(t8W~ijg-%tx~ z&`DD>Huk%{;=W^NFL~Wdx@&Gqj~5(0|e zPHe!@$lw3duqa2bzDhq6`^?wCi=CN0bAP>F0ndUBz+UTM2bGb@NcRZodx|I>9ai{t#M3py!C zq6z4S+De*&oeH{mn%bo=A2e+Ws3~PG$-HYol}I$H6x2}Je)m{IUu`8Ah6jLce=843j49yk<5 z;*oH+84CE^x=V}tpZzEtpLVpbH1tkRj4cV`RHR1iSZV$hw)WW8Pc zrsblZK^z^Q(`{u}j#en;$(OBADZKKQx*m=B)4AG5FX@4!$DtNj89$BYkna8|=I_(c z2{s(382!PvAGM_YMMBb)AxS9)Z2TjH@5bP?il(!S>ynXCw14QlD1J6msbqfEr@geA zerdW|O}`;iIiUju>hu1|?XQFpYP(cT-!o}K3_h# zoQuVB#%w;F&gaCYeF@k5e-(;PB|@2OY9(AbSBzF)ekwBm%7ySj;xy%c=mh8$lmYf( zMgoUXc-*EXDeNjU9gl(HW2^X1hYHCZQhK~7TQg|lHS8%e{$v8XAXe%Ukocg*24tH} zvx6^Oa$eRC`atUI9Kmh`n89N!Ke0?59gE9gLJU_76J~ zSY5OP(+R`!~JO5FoPLUTrq7k@XjI{cl|q9a=E> zu}N6~a}A@>6Tb-VumlbnVPLQuN!i|l?hW&XDiyfwRscNVnZ`1m4u+a2rTp72G@FG| z$lvl+jZ!pa#h$RDg;~Aiu4IhA98(O6XPYZcEtbrb4I^rm>iPU^$jEPvsS8y*Xq)sZ zTOh-Pvuj|Ip|xpX;{`1etqb2Od<*O&V)t@@XkeuA949Yq!c<3oK&g_Ug~W3a!=AV) z+CChhlMTIyf3nPupRe?Km7kZd8*k5UZe~CK4!*K$u$Rc#_uG(yWCUIGD!xQHcCZTr zMAy(yXCFS*n<<>fL)I^44^(SwsO7(0wJg*;|xpd&B_>OoWF)?auty&SLZvp zfWOFixey;DaG2ves5`BAx2rugK4=mYe>D0G9uGgOH3ZKceS3SVL07};(O;T5v4I&`m` zQ|M_0@>Ll0abK#RuQqN>R;!aY8f=~}+sJjSq;Gn;P-DWKOa?5JZbBd} z2}srh&n3#@gJXgV2J4rK0a#h=H(&}z79wOdflj2kF2zZ8AlIytTi6z`HK2ynxh$0x z1EZA02yat+PVy$6* zDn0d(HY+a)mr~S{U=mw3Q9#}^U$8JSdGfVE-eyQg4{cTP9wYpY0Ch&~{_`z!JL;=_<@kDv$8Os2}jz5yc? zoWUYu84y^kVQM=NMhhG}&V|LS6KW2PX)??O=sUo{@BcG~w==?F|?Kv$T(v$6W@Qa0^REY%Yi;!9`rJ6%a=aeGdwy3e!r zQXdB^%kIiGRFjUu+h=!!8VpheYYhaE`hMy6|HOekRXSOo25NQ9Otf%;P7J1WEhPb?XPt8W}}2NsvTKV8@#Wqc^; zD^^z08qmyeWIft<-v0A!sa>ZerGTMrI=y50?(e@AG7pG zI2T@UiiJ>Q!H6sz4{Cv+6P|Z2{Zuv@JvapnHlj%(Hmutr`VY!Mv zv)wLp?}f{h2;ALB10T0I`TX+JV13m80@ z0BMzPg`y_cAZ82W_Y#fbkbC%|ZM$LuQk}c$_zCD6pFGx*juWk8PtxTA$YV^I=Hw~S z!3pVdu^;!W!VN?94i4;jqGWK1+}))iu@Nsyn*h)YvT=Z5fn;G96^>h>FHIm<0jzPSB6&_wMe(+%&6+SHw?Y7ZhLB*|x!~w`Q zbPM2ll*`Jj6ESko79u2(lNC-UtLPe|QHWh%1wRGla;vL4uG__hXrW^Q>P9?^`!#`L>GsP4GmXfTDjIa->J2D{t_%-lIANOm3;;4@a@W= zK-L4(mX8Iy0QWW)a6EZ(dP{-u8%!J=jOC>#D=`1No{2ep`)3XXCalO?pPiKU$F zTBD-aQqB?p z+lByL(Bi#Lf!G*tUHgR5VeL0JWG zMT5a;%);RW_6vIrlfHVPA%ti6*#3Pxml3IGR{lg1$^%?jONwPB6C|;boiU^6uW~#! zb@FGH@-3GMAA@qjIy_gH7yGr_e_|jy=`^k5ZkX zYRLgf2TH5$f|vm)EWHJ3S^!$@(Z`<8o^-2GGqcv+*=@5JyI6&@Nb!JiD*9Spj>ZrS zkfWC=m(OHHrZ^M5=hQw7cFH&jjGgS09qEHl%`-W9T0QH46uldLk%e)}f9HYnp&WI>VUOh^Da4Ym7z*2JiQno! z6O1ER`0Mf7|6ixnk2s9?qn&v0cX$mihwoWfxaUI)3m-ap@+8a=Y7QyCZx8h=GM)~2 zBc*`AEW%KMlI*M(E<9JDcEj)cm0$7s(;Mr>i_aCP@%TOry>EIG?6o4v7@Uf4P_&7b zqXw)-*t22NTw$X)<+^wrH6i{A-_RS-T`zI_ zmFjH1wdINJ?gk)U=DXi*KDqX!VO&GfSi^W(=G-ff9(_kBv=u&gF8s?!7mmIx6ne|r z_kzJR5nkw5$q!Q3nwI@)%t11RJjbXQOYJ(9N$g>XxKns6vE6vJ5knwq-#Z#l#a;E3 zFPOAiM2y9QshM<7i`<{BeK$Sxy(FNUL0?)gC)N0)K^`_r{E1MpNNJ@6Do1LuAtllh zRbQgvge*5U0!m@91R)G5`5T^;`PP^NicUk}K|5?eo?7!T;ejR&Pd^Y*`Q;#QS<7dBbp9fpB zWAj?*4>dQG#a3YeFgK)GNbZlyP){z8{}Qq(^;GNjqtJfu;yyu#IBk$l4srA+q9UMs+m6n*nZ$~Dafs88O;Xc^xaIy-15tf^q zobi~S;Md{OIyet@iswO(1vJt8m$%E8j=Ba#|IWt7>gYT6v#@*PS(x4OS(vZfFM)It za!pFF5^n7>m>t+d*!X3bkS@GC2)1VtYM%3ZY!8%W10pfpQhwC zUI=>1Zl@bNneukq{oDWCo?1qx#XZ29WvKqwVn@8&9n7p`Ok@xk1h9z_)QQmI3m{NZ~^Sl>7&|7=KEaV(Q?36~(KFhj=7$X&WtwM}r5W zLL+`G1k|VGyLa~)qE(lPq9PJ+yzBbE!%`4XU#8{S)rFg|GBAtP__I~^s*w&#rznaH zP30I1;7YeW4tG%Hv^WAyHy+>X@xihem;s~N|85#GCKmhHIIG#M@-7_PU3a9NLj54r z4(H6NQ`;v`vQx(Ax7x3+VXXwYBiJedwcWxd1s~wb5>T6q$%0dcOCDGne!aX>ZB|#x z%~+wqSl#eR&33^6WDw`2SL;k^$B%1Mof<^BD3qxq8pFLOL`_T$2vC?T=}rjUTmxD| z=&lE437Fd&;DC>SMcGVbeDhtXVE!E7y@%2TrW>mkm-6XUB@8vtPIV#+#nijqlEXlr z;)f#c)2BUCM=QnoT%h8tXQEw26VN)glQG7oS-xV+Di9jE;~aG^HDpzE=_G?-w`778 z>PWn?xO8Z#SOs^+(tj<&@Zx49gCdt}wH*|cn=e+5PI*+p?+qY^^ZOCV*?&~_hwK^D z0sA3hw9!Vbu&R@?9+g`vLe~~Lc>@+Ossm4mO*DM0BC7z`zy(HC<5H`2v$&AUEflLq zC$-b3waKIXzriZ(jRxi>5r(wKZ9|sTVD$k%4;(VoU&|I$3pVEmoxRTZ&*Zc?1k78A zP}&20cCWIqwQwbFLi>i)?4}7nO!!=x@u>D`?IQPn7zbd=LPGanGpI3Iuc8F`woo;G zEoz!g#XSt{lB`P@98VU~iovmqhMo}UBna5hLukWVHjtrJRT7tg8Nz(gq{?~4 zIe!YZ3266J79KhjEZr+wC$tIH_Ta}TmQg z{v$dcp}dj+H#=@}!z|>UzeN2G9W2{MO;Z+O5V3RgnhAE0nBq2FT_fFsJF7ryP*pyzQ7=wEMoH86TEECsjQf8fvBA zvfq`BjQwugtT6ke!f*>3NT40zgtLjLk+6^P&6J~pT@Jmo6Hkx1S2X2`K|e8HjEgqv zao=X5?bHy%LzcWuPcc_qESt!QO9Lw;1XvnL{2?O%FCkeQxpsl6qE1=aF|i5S6q_x< zd_h+!+P&C_Rk+RIh8q*?fS;F5+EngLZ&l7sZ&f-8;qCW~&_DV|S|T8hq8`sG|A_I| z?Se0HRL^@a7c;34Z~h0NfuZD*r;S(ASXb}WDV8mZ(4iV#pW;5 zPo%P>%?N7SCcmU*fRVNaNdZP>byK%QuCE` za|={FLY^{#6fTSUK;u}3JPIYl&F0C;YuBXc-rwq7n>;B#=h=6*)s@FgUcqXtr2aA5 zFSo}dfH=UqA$Cn7*;i? zeIC{89E6uBpJAA&`yE+iRKa;Ir8hiCG;&KK8WBVA!{@5=gZMPrE}AD#F`nj}6J_kLVW~ zde!u9sHom58n{?p4U-UHo$ubSV1<2iKmtv!Ztn3?Mz!U5bTOWkNynaz)Lo9G1*i2h z3#+30pMwkmUAc}OS?&e6cMadMW5pOyuE{Db4Yj<;qA9<9dV!=GHcvbwAml@u1E(i7 z7sz`k3WN|GqqafWNtVHSB-^vA0mK}lHHdDur>WZ1-kufF)t?|MV7EinX{;SfkiYDD z3>(2|Jl1Z^W56iJN=C6u2r@KiJY?xryZPM?RBFTaJGNE(YtWX4ok}A*U@Chbxn(?mIPk zX1Obx-PgFAK+Q0Q=T!S8z6Y4?OwEt~fM<9e@UI*qZ)@Yv!ZxaWDf6&NQgwIKdBxts zK43q7+d!r@3~TK0Hz= z6lec<_R3Sps#oO2!#{I)QC=(ZS^;;xVr(4-vGdfht1IJ-GSpBQVAk3J2+X2HL@7Wj zs-+@&V&zMt#n@5N7F6<4d3krtQpgIt1MMI2d&KNf{(|(U(8XE9&e07hA7 zWSqbC*>rHWV7+UhG0RDo#w+yoV~h6SV{1ryVkKv>z}q(pv%!Va=~+XDv+Imju#EMG zy%+sY`W}(?DmX0erKuKXHyI63RvdA5^Pgv7zLNh6xiuap=t^celWD(yb#-ZJ=?^lg zY$_Y_Av~AZ814mNt8RABpU2;;5H8!wrY>zaoz5nLyf(X^ua15g76%+4iIZAW z)UTYt{xm_eb`*S^iEtwLWfVqi!a8j#5R-|5#dL`RZCpp}5&Rl(@TU0 z5sVFo*JyxwQ-*~B;N+9npm4c{P-#-X_{8|9L2ekh7%MuzE!;^Und;(`o<}@U@0Yw$kA*3hv7U!J{`0}0H|=zO$t7MY@aOuH(}{z$ z5MHFlD|&|Cc*OJm?7o0s*WA8v(2Jyoo^&{oTL{QllbWBAB!O(o5g@GgU-B?cdjG)+ zRT~W&RaLF4{jbZF1?ISW^Xk>j0n@V6#n)}x+q1uqt+7TQ)qKP@UHv-|V z-ayHtb>77sfTT|g^R1wCxB#`*)(0{P9*$AnE%MlM{!OW`VN~D=JnJ^3Uh?gb`3G3| zy+Q6i(_C%clzr6SMhD_()O-D%on});xkJ6x-2Iy9%08pj=8mN)t>9SgKhwfw9dpeg zp+U$XITr_XuM57ril-{%_O6L<+@eUt?$lhxw1d79Gj6OTpybhWYPRp1mSg?J_0KG1 zQopFQ;7Y;8Nsl0nx9*oC*#5?voN&;J#t?b;P5}eAp{T=F7`KQ*2X&@bRYci!g6geRc|-H#Kxc!Ai@~> zJ{|RBh{o=ovDgOXi-$`b1Uip@RZio*6P*1qn%9i{O4;E~HM`x+5S>AVhP|?TG!y|I zbj@A24#;T!%V?yE9)RNA;;15M`-3m>*jTSJ9`7EyFlrBJ8#FDq>qkiyC~zQf)SmhC z4Eqa^#oaRps};e2*W1#VqFBpxt%q+fKbVz!oPxI?J5b1R`5EL9{58XGw5TlOlYxpZ`4SO2Q< zgD2CAkKk~@+!7lSL)mJ=ihO7Cj^ssMo4}9ejlCl(Ul+3O3P4RpWN-U8j|Sw(rb(m5 zq`xYIGjh9;91&&%ZI!G5c_J+L9Wnz_ zcgoYlP_8?i)^cV^mf#M=8FO6n2i)say=2}3lBXZ1RyV;ENrr$k9Cg`Epuq|%P7H70 zN?wdc(~nO2yx8ML9;py+uu) zMfJwm8DO|~^RgH#MZ`x3w{W%nodGY+fgKR_H4q9;73Bk~crhJxXi7zTWXv3vHkdcJ zuhZW#44BuP*{X(MD#-7@*!+gWsH~ve{L-;fI1T{-r1TDKh^-q^eBGe#a<>1&YR25SVnY-mK-IWkQTiDPU{I90#qv)XVNDCa$qWDwMHatz&3I{ z@1;$|Pu;EuZdWrIG<8IrUcYDI!RkET8K}l?K4AA6RMBA^VqB|R2GCNfGQkUgi=oC~ z@5o4LvNt{k1Q}wl>Wz`j!`M8=w@k^GaBibJSxL&5TzsRkV$PikV(WC!KVvmu=EuF` zgNT_1V_0Hm+f}2fhaXLhJ!jwIgoRgefIaMF@nj-uG=$?dn$@y#ci-!uzte;yxXSP;cgi-V`;Mq z=>Y!Q5<~YMSaHb>D_?%{!~-Uv4Db{co(43WQm2IaQh8115!RjWVrQYUT3tXwg6?(X zb(AHvw!07kyVqMCDD5i{x6<+6I&{bm1afEn)dTY3|FH-I_St|Gy%pyCU4K8K=*q2mVLS74!d;FXB$R zg1)Z@lG-_!(>dWphT#79M9ia$bpN@Gz^JPE4?Hw6_-%Nhp2aBG8h>cjsorhZFwc}K z0Gi%5^ub|-HbN^#yeO6J`aYb}qDvhpY6Xu4y3{E|qNbFVU`T$XyG_pz~o`J>WMqRLny!Pj!#| z4@EqpET~zwBptOmWcBj!q>R5now_`)OZB=uY#4G@Vh9JSb~&E6K1+T@&V>38LJ2=D z&nAMa;V0hzk!X{FWc9@0LG}}nJl>fV+lkN%4zC#^E+!KzNxB*cB_O-IQGQm3ox!DJ+PQM-1kScl zv^=wcnz->7*Y;^S`((-`2A6XtR?r?!z++E+p{AT$C|Kome~V`J*lb_GSWbB+4ox6ydB3c2&9t0n3v#5qk)x zRv5o(%W$>CrWkRG_s0rmFqA6BZp_mHC@(nXq&L%xDdH_f2iy${5 z21au)rd-inBJkC7Q<@$!^U+Ycsc9E4YFaszGowDYO9LM}q^%pa&nq_TF=YgU9MEh? zmR4f19IL?W+ZYWMn#aei*XR>6Ej z#FpqWjtgA{(e*GbF18Z}D7w|q>j?AFI@!4U!1CpVgReO3JZjW(<);HJ=s`;T=iG&v zO!a`jr8kdMYR9KM$TQZ`!?Ds8BQI&}3(|&=0J6w|$Y+fu4Er*pxdUWNOI5-SM!}%b zm=eRE^+wu9$ z?1cE}+U)A5?Dq+ES|D?&2@9He@1yt3&ffFry{6?0nn*&a!isO0$)veej>e#8k+0iU zGHKa7#;6_hXv1BO3xBUxxKyp%1AvFMzagDMmupE&_PdN(bLR#DQO$Pcun7PR^Lia| z7b5x#4)y-yH0uQi+p?{&Gc6#*QzgqqCn=XzO1UI1WyGgzXtUH8QMZTaAd5Oz5V?q@ zy;)oVg~JMJHg8}d0sRfJnEMn}x9Lq}wprcTA^r`%8Dm@==Eg|=^vG;jB}kz6$UPM> z_+c-B=n$#2zYct=;$dK8vd!4oeHn`iG!i7LjSW}25n?lH)Ug?ZJHqq^vzDKm%fAzq zLHy+Jf^o##??_P6!f#XwqFFc*6T+`Wok0NE!;d~1hPf~3j3Vx-h)pjadd;Ebja+1I zF7jU0aq4wR!93LKFIB7gaU0_}N9KLfOL zqwE=1l7M3aT-2gV)9XY%2|1?iSDoh1`y;{;@%O)r$e62UHW2OqP3q&#sP@W$T^U1{J5&A#PKD587oZ3M{_3w*lXl4SNrZ6_>^y&1MwMH=|JY73HHF z;?F=ERpe%Ae*^VG58;ow$MJ`uC)mPHO{ul#jkX8YUeA)QH4H{gYk57Ml1u*#6IE(1 zWC!;egRGTbe|P`;=*s4LAQ1mR@B`O9G5vt%dK4)v-P$tpF9+8L2`JyJ{mjSCeBtcJ z@BXQiM?Ic<-+j@%IH(^y7i2%Eh*6L?hLs^?KxRk>Pzh8Eo2aVTEqOD0lkaTy-`#xI zaaN{#o2-}S+0+^9>^E5cPu=}-yKg{uIL?DyOVVo^Y$X>4d{oteWHfnZ2&e;wNam*I zYNB3Lt`;B>uEG!kf9HGDn+;IDsBp@!k-mKULy2fSTmxKm|K*+nC$B1emwH`Q=X%n+ zFOkMCJY44PnU!mt{%T#!9EIUY(B|iXZ0o_iL^MLf1znQ|mQ@CufiN>qsRpcv*dg$` zzqZ)}C5G7)mhx<^6pbRML9Av_T?1zxxU=^V>#BFQzBFgWlWC)n$UyZh#|M2x8~}ZL zmmS9(uOO`kodt)^NJw~*XkM`GQrf_23;T}jASEMNCZha6-Y|6p^#M0KD=dJrNQ-P% z4Ae#P{gN-^Y39aVo(mM>$l7UYvM(S`O&8;Zz}&KoOK?Af6YSGMg?s@2zv9UkLIM20 zJP|_v3%};m%wix=G;!bu`;QQ#`EX>qXf?bkOO1n-@;0pEbR?W_$(RQ6<&8$wn{HOU zDbq}OtIf2xddP2ri`9_I(-ScR0W-oQo-zIC2CS_Y#Pb-FFgOB=D>0iLXo;PmZ{y!h zo~YMPOx_DQ199O_+;akqgR=K9kJaCq%Z_TQuB1(PeI8DEhJ+BQz%d*fJWI;!DnG|9 zUJjh1Y6Nz9IE=z;?s9Dy#nrUysBp?9G!yAGK>ro=1EC6$YeR8=x>29d0jCzf?{>cI z_h0VxYnp#>P<`N6A9&zb#fGy|aq4>i-{?AzfVDcLdE4JhrM{OEcKzvNuS0j^K5%Qc_0Eb$-*8;4J+~T-&3_2^f%kWNU>-O;)N%X zDrDi96GFYSuA?<50_{Vg!g2p)1gnZ`i3fjaaPX4z_eCQ2UE_<`h`JJYz5lL+D>^)A zA>8P}uzaz38{*xna;4l2S>a*F$Xh`F6dDcOa8YxRwoI&w0VY=W*uw1KCGCYf>vJR-yuFcnaE;Q4f= zz=wFbl`1WjMCS)!II6-AIJo&8RNeRWuT#AI4$t;~m}-^drRCBO>@|WiuStE9?Uy8p zyA0oBua3;AQ)r{Px!M8WGO@C=2DT6`^j!%$RqG7T=pwc{X|IgE@4_eni@drGD1d~0 z5csTgOB{dR$LJxDHzl@mm|Ggc9}KxLu(tL9!#9`=aD*qlC2tj-&vFB@nMw1My!* ztmjG{Q7!&DJ`LL6O6%g8xSnodQ<#p6L?Ic>#C#De?2D&E$zsAOLf%AF_hTcCPbLCM zh{od)_mYNUZeAewYrXRy4)^Q+XDI8Z`VxVq= zECV&QJ4lxuv`J<8Sc%58DWCku@5OV~YTjk4{-8N+$XdMvH;l@qzJVEWn~Z%1Jzsuk zOt4Lm6uYIi9BhvCVZ*M5W`oyWY+p5tBwI4#X2}f4I|;Gk)g~`ZqF?pZ?_c`9*esfe zjwjWZ0DA|_qLDyE^iTqw+>pI}5_gT$96xqA`W11IR7p%5fU@YsL+723`S@L3$2|D8 z>_@I#y7H0S)8(~G@c5MHV;KHsPM*(x; z_mKF${~Z;hPP{=*IE*x(aU6F?leKHF6M8_Arbg zmQ$*`RZbxC=U`GH;XbRMo|^H6M#tIo*Z$b68$sV1cAdUInL4e{APtxN-gxzoUCRr` zM?*-4fH4Lh@2ezOG_6}o|&r_^s~w2Gs)zGb7y(&*}2H_vYMwTA8pSC zM!o%hWoy7a45*)%FAluxCN^qpU zN042`wlEXSL(%N6V|X83egEpwc{lds?x8|(2GaOy*d0l$BQrzU?9hz5G#zn=SF!wX zU1c9oPKz^Id4>LvDmb~?LBGFpr(mst%$2RQ5Jm3*B#6|@^+y+%A$kx3he0lQ)64dS z1|%)IYy`JAq#^`_9Uqr80`phvF)8Gy(}xPGJhOglo`PJh&CxeCED3 zGAGNA!ezrHb6z`tRWV4xBb6iJV7}pr}uBaOI-+6o! zmlfH$l<9u(aRr5xQlY=>xO!pj@zjM^8dt>&smIsIty#}yOi>7`6;vqyAM+(=IKx<&SBubTZ%?%H)f}HW-(n zEkX&W%kJ|>HzUD`axNavl_!FcUl+ojNH8l| zBm^7*;+Nq7k0|}h-^1tggXlxp+xkJZWzcQJ3)I0HLeVnfx%0!BYgXrDvCM}vtJh%L zhz8xAJFm;kpUV9HhcmI*{57jMh3)D!uGpmZjyu;fr{*(~_j(C(F=I(nG9^7E6oeMT zI#k~mQ^unsk9H+i5d0d4m85U9V{L-}gP}ymCg9LPJh}qVTgb>q30HdHzhmT4W6N-U z6ZcVm_D?+pJa9B>)V?`GcUyCuQ`Urpf~PYZAq*`1({?u6&GSvn34Clc+vnT(Z}y*0 z89gF3`z1{90sInt-WRI;Lq;h44Tea0vDRih-OgK&3H1pMBGU3{@Sre^l|+m zUm%#u$A|fBq>DefYtGY2B>j)$t z@M1DPrPKf`=UQu$O^a7Z@w2ConBG%IUM1U4drvV@+fz`!QsN)3V=qB>!I+{kY5%v> z_%Z?$i2*EPo-FuxsZE6e@a?n$j%L~i9~kX+M<3`YyVSNaaJ_A6oFPuer~2bTtU|Qd5Ukh33Xa zcV}xCuQrSv+fY`ao0QIA?|0PP<7yHe{;Hxin*0UIsv!#E( z${&*A4Lq058i@RCK3v8YHVZ&rhvTz}R%5xPehh`i(;0<}Bw4C-C^Q-@35xPh2UUjL zgZYC8S*ESp)?UtBIGL;V{1fDeplA0Y+LIpDASF!J218|)lz$A$B7_!fEavUd8`;6R zaJ{3xDkZn>Z&a2hMQxA(-&ulL&{Y5!Ux5lF_;7@%k9Snxk4_xbWMAN>q z=b(7dlZZ~HNg4NsM%hJ7h6E|VV|icXYRBNb z1S=+kU-vFvEe7ZTL^&QmaT7m;Cbc8l%Y+2&ZJXEOVmUtgbUO!Zz$?%K&p?@9fhfE} z5O|Y5SV7>?hw$-W9^ru0onW3@kNCmkWXZZpAnD7*%93g!^z_bE<7IK(`bY7%(2-Q7 z-@pON%oQkbz&{dKh&e~7By={5SbU+Mqspf0aiz#DiB2y_>I2w#x81dhVKk@36f!raz=O$7vZ|a2)_}_nDD-%*n%{{3R zPr*H2L;UExUI?8Fh3(#xSf`!t`P%~d;e0lK!Q(Gzna{+JMd%#3T@JGDIJU3bl#F)sV6 z$`7d3@{Q&XxT%dFuMLlm4kOl7Z))uaQAd^-cCQJ^vQ%NsKC z814f)Y4QfD-E2A~BmRN-AR#!IJ54T8TfKGKGB|GNpWX&9!RY+bYc!!i0V87=4~q@( zZiLn@^qT~1H5!TS=AkZz!b=B+EBqgGyHf|Ux#=6GKl%wJG&~VKv3@cVIk|pfi6Ma| z!2l~9%^ydji$y0!ok1B2tiLukJ3BTuGc!i)aIuKGC>r|DC|ih>#v!wZE+l{!0h`hK zw~ceHbLUz=e-Ind?)~GBAfBiQ;>(CKfhkoh}G1VV%cfnfBky;mvzlw@h=#n%UPRA^WCib) z{qG(uEDrIoFA(tdz9f!$0|8&}%l$t8L-6**gxFNR)~n}iO`y(?Mc2J89q)({=|qfu z-=q=LDF!(Fr`Y60?gKc#|hyK4IjR1V&whRG0^X{{~ zi_JD7m%v>NArOqS?|Rph=eynWydBpV^19oYr67+9(~b_tOa@qEuaPq>)r~C>l`ZYb zF@srm#-7xg0^tkTEyhd8lhk>s+vWWfov`i)uJPsX2(>rknn?Sb1QK|z_Kcr$_}p%v zBky)N0kggAi63&fT`ho@a~_AZ%31VXVSSh{lom8b3$`Q~X;Lmx(aTE7WJWSLv8I#| zr?<9%$c3&OITR}h#n@IfWaE4X(OTj1DU%lwGpOVP=F7A2q*w!}5CGYdi?hV~QeKq- zTd3eiT?YYK1Y_x7+Qo*VXg)mk5}ukBTHqmo#U2Wno6garM}M-}+-i!ZDh;lI^D@fP z`((&{$mu-f4!u6;KHzj7a0iEnM@AkfH%E>h9ci*ZP*!#_XaVg|Y>yGzI=)Yv&@qgR zy+DbORl^?)CW67!+uO+KC);Md@>b42*+4jx2%>>ThuJ{GqvzqOV)?@;Y#KAz&Rba3 ztKriaJOtuAqvy2nziQ9<9g2}-pf4v1DI|0Uu^ z01!5iZcu*0%_tL#7b=Cx$rZ!+i}iH|9_6yp`&)V>h$g&(Fc~?DeKHTA&pc4%^(&J_ zO;d}Ef#d`n5?BK-{T1lxna%)h4@nA>!z^-H+A30=JM+u6<@}u;=wpLE zv4JP~Lfrxl9+a81UHQl!0=IjOl5#CW3RGoMNhd{D zP)V}nY%0i~*p;Riv>*Lf*^bf#gDr_M0>-w$Oe%jZEM3qe^E(doAhf~VoF6;2Ev7vp zw2(*_zA>!?JbiJ1AJkw#fd{_zQWrAQS7n*^+lN@@Gqzi7ciSE${iS4HuA>l~)F|ox zlCzXVK|16q>|G76zMFx5mN=K7sCmgKHn6@O|{2{S>b(CGKBb=FBma&>4{3e|L zIxQ$6v3Oy9Yon^DRTo}#ay3UV2H<~y@}-XhBFl3L*;Um>TN&$c62vih1>&`180Ues zG&WjW{0Th;!HpnXy4;b6pbfG7;Scs}|FG?Cw)fdSf;IqO0(oJfp&VFba4g_xq%IMQ z5a5@yQNDnx<%Z|8oiN=D|!&_nAG^j1Zn1^Kp*f>vx z=P|A1c|@a%AzrFHEze#UKNz;Z&K{N_aEH^no*tHwZm)81TrsdIwE+IC)BB~2 zGw4gZ(@td3K$J><(1|a;pfe*<>X=(zAP>3IJT0~ljt@g&X+2Rtu3N>p;-I0J?A|Uo zZR`qd|MzUz;q%zT{;<>Uwuk>YYYl0FdoY=#Na@&{x5W z6OUe&axUkRbYR0+Q!IjnAt>KiHHNRyVbl#{E$E9Dqoni*0J%{#ium6ea07Uux#kNN zi!xX=;3Jq=^?G|S4j{>Z;$KJ?BhW>ZKo=BGOXoQP?-1q~A}%x7xoFa<=nJqYA=-CXZD28)(t4X@~dI_6g(29(3r zWzmkk2$hkb@I^oVcL*V9L!!f%6bgtD1TE-jIOTj@^|)LLEEtfOLB=m zg7w}5A}JN%I47AhDEzn>n~_27P=A2hc_6&Y$e={L9-C@3rj7vxTb_3(@^U!l6YhBq zxO_HRoiqp2WHp-2Pv5wkiAO@ewz>Ihp$PO)^W|t{VRTxJ#_7?8NVGh^jvrQ5)3w|k z3#R6zws1$TmR_yk1nG$6$=_w#E--WZktSh^Zy*tY?yg||FxS@t<__>q3KI_TJHE1T zGC7?*xzPKYQ%kdYb}OsTE}b$XN?x)R+krs4xN}WA^F*MQ$jc1n0a17Ss9%fB<0=;I3}8nkl%-<0S*y@3d1j4HTHmyY-T}5Ckg(J`jP2 zv4z?Ma|eD^6b{6;R`O8Mfn%5`!j?|d5@|5z@+ao+Qj7rEK&CMBM_?WiSx{RS4)v=c z-s4}pt)~2CI??3gnMWV4b!ejEMyG&Cp)X^G&%pjYATL57QjrmQL9&k*8w^WS(lf5SHrr9Pt_ zH&#}gB+1RM<-hSr{>B^O@md#DodFWU$-g)%JlO4Rw- zz}D^k#URo2|L9EwGB4lF;>)~5lk&9n)&{QED#l3fprZ-gE4?HUh;xb4UqQ_h6Xe_peK&%7%?XW zSRznx_n7!*-8&R9>hQauu~4k{(R)ILU_}%6r4F=3SnB?izDKvwKXj3P zDZnv#pxgz@3+^upw+a6qz*?0K2ppWX+Ao;uLAicXv+cp^qbn(bq=cIY}XHlff*_l*0e;u+t_d}Nx3eeQtc zfN+Y)eAzb?_j^l+jvpEkUjGxq1?;-r?)2MT4m-?^cBk73WN#=Q7NJ5o7RLV`uHbMe z?#tMZL4OiP_Ih_fIP7Qa8DBi)k2rn$csgB8yPQstT#F7Fq`$Bav0^|Qq0^vNuZ#B- z)@r9Oq~>FH94s8vZ|MH#q1^iM=)$U&xW3!BQM?!0G&pQ0)LKb@d6Hn}mO!5uU=m#T z_Sn%e{I9Jsb;w&*^N&BCU#&t9WsDuY?&uh^_O9kH;MlIkU(0#WCT)O`%JebEVnTZi zb9!JVStWc+pBG-bD>4~goiJJ9>G+9FameJXuRU0qH5uy@L>MUC-#W$wvCS9^b@pu; zSYD{E8gt+_>O?;_*a#ReW!>$WLx+1TN?RALKr*lx4b|7|_O&{UzW&844!or3?rppx z6srf4!8*Lfy!AC9VMMtGS(rCVYV{V;ehkPT25miFgnmF!xjM8 zF?!foxZ}XsscbR1n4cwz$9sIbc5^!0Y}s#R#_2m2;Kz9&H&oR0q0G&->Ej;nNO^3w z)silViZ<_vPeT6@lyce}dRPrPj5xsAIQZ1wh`X=+ZD3Rau>=(oBaqosT{m&1jlPv;}iD6Z4>KQfoZpwIH` zq5=%G45d++matq|p-s6WH{l*4P^j#LKaU)QV-Cm9e|tb?h5BdlMF)}=dYwOy1$e*j zy3*ZScpYlZpi>5_0_q!J)xqf@YZP=xwi@zLLXlf*H37f^%$J`mB5AH#-@;fwsr_#t z-J3~s!5u;)Sv>+kAnqtZWzB!rYJKp7HQW%M_MbKrxHNgY4@Q?BywmuP+yxuFcVD-Z zqJeLN+Y-V?U0Fa)Gm4MzD$mb-bkk`(OPe}*UL-Nu2Y6DFk&shAs8<;UcZWU)sK41d!}@da%8wa`^ND&7%3Za z(%)7;c-InCyEa9mphxHRBzJqiz?_FBUuf13|9WGC)&uLuqkz&hTe405Rs11%iE+f< zTLHB|T33io$hg5QNmaK8+7c+8u$<^ALNU3PG!7tff@NI-I@4NFL?kKniJ6HsKa&Y} z*n{M$!Js=jm5Jz)x_`{;4!S&HfBa3RIDx1QIVD@Zn9yb>QW^X>m2lae;C_;`{`AEs3PI_qXKi6IS`a&=78t!2 z>CmA50|L=vYt;SFp0vT%Ks}djP2h%!xP^v*>>BjDbx~hX+=x;cfU(0;PtgUsn7KZx zwZB99MbV|zMp`@Q345&;#a)%EjWLgLue!2`^O?0@@c?ZTi4cJl^;D`IQH(fwTR5>h;G%8 zbfZz2I6i^@{K4ef{RLA7RyIo2M}2%2M7T0S#gum0Ewvi>$=+6b{UZK=b=b1TxA-#p zgHb!VS{lf*M1l#^8VF_s)|mN4;5`;}@lFx+-tIc!x)UtjVG;5@<+;}Lq(3D7v-6-+ z-0Af-n*n!k#~*FCqyD!c`JIx@t#Xy=C*Z>J2v#lyw3Yb>#exb^MF^)H{F-G?6Wh0> z0^hu4KJYrXD;$c2WB$OXOA9qanrn18S%{k84y`nM;DOS+4v0G(@Y9W^vLoZO>t}TT}-j%O)Zi}WiB4oBt{lk|f)Gml1)t8k?BIs#agv389i zrIu%5QE2zyKYirLG@u>h$A7*ulS>~k;Hn>s=kqSZDIQwA|Grzir|v!FHIPYc{q$^a zC+9L;v0J7q`OK5~$}}_siVo8jOJ72OnGoSq8t5%$rkrL{f8SvJq46RX6G&dG&Rcl43;Kx|y`7*4ZkobAk?9LL)ap9JJzR*rAGJ*9 zF5JJW>Q2=qTH+QwcdyP|d0A&B7ooBWf)3cd#^p_biJ@rB&iXof4w0#*Z}?5BGh%Fm z-uJp)wgOzYTF9nT)}WP{-j~Uvw~OY$rFb?(MvSDdiVkY5^=(Kt0d~Y;hx)2?5yss(nK-oM-ZP18c5HZf z_^#{MCa0E9zx~YN`wtx%KRNM69v#d6-PGjT^>>|l`|0IF_aB}(Id0Ayg)vEE1Wlng zOKJpL>Qz`Sl^|7>kD+fH_v|w3Uwgn+^%P|Op+sT|1C+=PYTb+z7xrVFE}5QSvz^*1gi-i!MT&oU_6Ag45l9OFZO&U|7)Jkc1E}TN5M@PW%s4+J3kavO{ZnH+S$@vZLx5Szvlf6H_ z*8peQ%naAEnGs*mKJ&n}kx!+JF0|@K3s!Pt3u<=od!+BbC;m$O5>`9rt^zU!Vca}$ zzcp%q__lMTT#;yz9vb1z__{`YY8uwnm&ynPVzncG5@uN3G z>>Il|w6q+)Wo+%t*v;YPr8O1!Wiy^-?3gAl8yGWAcs4K|x9lywQm5jBqIea`PiRAx zB*2+RNkAs@?p@5y4I5CUG{=Vag`#hsLj;kI0VWD3H-^T*U+nSdgEWWQ*E&WibX+ii z=#Y6lkbc+-QtO2PNG1fNQH6!8T*t#%BFL5;#_w^3)`F#|FEgK?ntsdFRQ^b?j30!S^HYCa zo=3EFT+j5#=9))rOqJdT7&cgFz~_@J)~irmd9=KpmKh|Of{ta3hF?hW5|9A^OJnhK z`CQI5(VDzrc1vt+&E7ECnsDWE`P|raZF=k>GEsit%{Tkrkq4zVw1wM`_>AKQ{(VPo zU(k%{3NFpLYc+T7Zj3PJSQP_D(Q9RIljyC>XE+86#8VwAd%~Iqr}T^E`4hg$)%jlq z5NY3%RGS}NS{j}2T!aQv@oT%Nvzr<;>Jl(xTpDb=SkiZQyRai~0I?49^Fu$meaHIQ zv+FmLtZ__#MIdS&_F@@-+{yh_fkSdpFdAx(^p-eZ5O+`w!M> zi(mPV$QQ+|W54k#U}0Xnn-Anq847~oOCUn#D^j=p}T_^W;qm&6;>V_^ZV; z(8U{T#b1e(f-}KsV?)M^#d@IdjIfqqB7mZ>|1A!jFbp|QB+Cs53nC)Hwz}nmZ(8=H zY=yBrD_KB-Udk}IVl(7>2}dhgAW%R~h@-;3%ALXX+!5b}yiUK{aa$90pcVv=gDO(4 ze(GsfC;&_xv$ZRGvu9tE10|f-PRH6LS};dr^WpjlchP;4EiVd<{Onu)@hwyN1O6fZ zkNf??<{v`iiuW>NT>z*WBmzWa02wI&yWh#&zjRIes5twc#r%x=o$7;2Ha~t2wUinY z%Ku8qKv)DhS-5ITSXtTAPyPno0@lu^{0AhT24GANp%JVD(4uMGgAs-IRlMjgLpGFJ zY}A*3w7&ICZb&q!)1K40d#Bc!e*io{Z6YDRS13oTd;Wjo)%|;VDpF<31xs&KFh12y#h*rc|1$N3 zk$msad$-O-dhJKjF@1g(?+=XM_m4WMuq9A}9~e#`fl~fi)3ki@m&%3VKt* z2t`OPnnuOY*0v!o&TlI_X=iiuVrLX&&br6nf(8W1>o=g}0@JDVi!Nfv zEL1D-Bmk-JbcV*nhuoQ9`dW7~bOr#xjng*kVaQ|ApFO!R((4{Wuvm9dE4Y>f?ZU~Yup zZ`PJBs1stQdwG1*_1aV}og2<9!XG{97YW^wbB^jCI$IRi`sKwrckgfV>92pYy3n~T z>h?OPU6EMU<+eLY$*1&O6Aj5V;yV(1ODs8T0|{!}iHLw|YOlhsYPpV*Etn;vt3Ck* zDA~u9@4$4wy^V*@qzfat?7>*xg+e8V$A%tW6W0eN4jXylWe+bud}A^co)MWu$?YFb zKAEk+l*+lf1DnvcY$NzuhXo1&4@{taumY^u5qinC;k|hY4pj5EFCtcI_t-=6FTZtl zX1#Ox;p@WT>mEMb!B}CP$m?}5Qbxfw;7;hoJ@p1?3aKyzqa*OKplIp(+$(9}&9R#Gqvp~jweT-Hju*+Nybb*>=An|sZ)2~UlF)5#`c z0}aq;M5vI+YP5?0HIoX@ic1Ug9c;?7_HN`>t!T$xnfk22N;~c zr549HmFtFClO-_GoLi8<&6*epzFn@ml=a_$;Gk**RUGu~Tv(z@-HbD99F_&z0B9_= z$yzKKQOv&KQB|iuS$RPz=0?wR46}aJjZ${z+C$oWhEbR)3lgM&GP9HjZR)9-&maORtu7LBT5 zZ4T<1;T-ezX0woX&~vKKCLR9Ctdb`>s9k27!#ncpdtGSiB)ZV8tFc|)t63kZ(jVK3 zvXJ6jImVly8Zg0LKF-aQus_susJ@cmOi%TS=UlH`rse1558I_9bzV7DbIJzH`K4&k ze(c%xz@Yd0uwPTzr&W)ocGVZaHkqUKiRJ)NCMKBPeQj{+&#-kb9%wxejfL(#I045GH%SRbG+B8Eq01}`V zIoxN3jqV+jlN}+ZkkG^sUS~ZX_qv_yPPaE6uRFa^!3)RK)lMg3*69np#meL&baQ2g z$9cx#uxnw@L8r^*Jm?8)NX&f3>2Z{=cG?@VPMfj-*Y{=A6Hw6#K%oe-;hqsdt8hxf z23KWx4X7TDGJ07Ro5cb{V{=Y|nT2Jifdlwa>TO&o3r4pq&Pd??!T;x6SDfcO1s|}{ z?Go63)4@x&t@Cp7a?Yr=9jgOv&y}hM7!krdBMEeO6wO% z0)KCcDwyXGi-aW#b-UFQ6B`>7CwBU>&^pp{1)8@{KeW2~(Ddz1)|ax;OW-X@Q&Kj_ zp}^JJp(rKlU21SKxL~NzO(Y2@$zVizpgOc_J|^81A;&@dt$d~?4XOyA1Vs!#x1;$g zF{DFK`0iA)*-8^v;(rf!O|8{lIo!|yme3y5MFL!n=MTiaSu$gTXfhZGpZ8WiNR3eS zwH4>{HdU zXulq>rRAwwvDiI#qPx`Vp2L?DqH_+f=JM1;r`zme!`sPwc2FmdV?>3fyCe7lxfz8NazPA9W0?cXQ^Wj0GDwNd%R>M_(y0&fTd?Iz+a@v{lUh{O_f zPzTPh|0QJv>-HSTcL`uF-D+B-VW@D_|%=5%;v3y=km`zm;Zx6G?Sd0F1QoP z%+ZhEnK_x+NSS9cD?`b+J3l?AWg=`N-1|?&GZ=9;suyXUK;x4!z?)GiAIbloGZeZz zc|tppIFUS=xCeF!mplJ^E|?hZNuDtO?g<86s?E)^0*hSPUp{f<5B8Vq>-fH}G*(?% z9v8h5RbB0}rdKJNtZ`jd_$p;o)izIGrL>H#sC2oO2E;`8%9XpX$c0KtT4Sv(Z^rcqo;s2E7P4?T!VL zw7wMAjr5_pT-ckrroY$whp|E`lJFpWggXU%FkJDR0iTwS#7DGH+!Jxd197h_=(W3o zzEH-C4v>9f)^h=})_q)K3B0i?!@9`o5sO1P6N&=~b!KJy)q^eiDy>82PIn{J37L`V zBCzITLR8ZUe*|^&x&tH0#KLgEm(hyDb3q?iI~?>EV?KAddZ2du)tcz@*-9)JKe$$j zAFy`ri-qIf0Ah9fodCZ@Tp>>+n8-&%*|-g0}L$%-*C)4|9nutvB|b0PZ;gm9qIfi7)Nk6ca=0=DojqwD7);e1M8y*r_FT zdG}ha@>%s5tP*%h`=we}3$(pA;DJHToVr9tXe6u!4UJDSP_QCH)B-@8ZVW{N4U#%1`bCnPV7U&0vJzm8SmLgJ=@?UVpk$b5s*L6^l4XR_+1S|F z*~s=b#OuxS6;h}ua4yB`>VP9l4;v4ov^|0IS z^+ys8=Ty?`6vC50ZcnGrVfTOvBe|dhV!R7E3(|$joGao&Q5?c)N3b^#F5!&$<5<1j z@np&25che!u9%J*IDxthM52M9h=tN|1W%2{e8b^*Iua4VKs17kodWdVt4HD2;Y21* zm&1!nc|8bg2{#Zof(v;(aQblLivZLZbQfnqCgB1CKPZ<|xEwKrQ*p)|2sRf*b_KX{ zr$!K73ky=n?GJeE_=U5S!oy;IZ#e6UB@oQI)J|(RS=MiLD_MdHTY8FPMAcP&C<-fyLqsycy5rg~2sy+EYqSPEKx` z`JHW##c|t8RO-S(5024TbE@VWvZ{0`X!h23b^xVs z!8-tUlN#(M_$ST3^q1m`;-jEoF5D@hRu?^nre};PaOc&988HV;enYaa5RtXtI(g#6 zNzY1TVYPXzerh%x@W1obcYowZ9u%#UCwmu9o_yf&#fx`OPt@L%{WoGF_kKGB$i4D1 zDkuFTz*iz}Is70&z7ycuabLLpOP7b<=FUzFi2oM6EnuocCUzF~YWEO~jvHIx0`)TY zU}l`&PRqIn*OI@4pUX#4ia6}EhcTC$SW8Id+#bSaC7KS*r;eD}poSQK2t+|j3fLv+ zEB+gb|Aa#hIaEwKI4*v2q9Ur}-07fG@al1c|3L)RHLxc~G3ZpzeCgRb^M5Ypo zMWX(&!x8>C8xab~<;l6j!oGCR;ZphZ=m&mj3`ED142W=H#Sr$nYGD?Eb?v{LjD-`z z=W_UCLpP{Kw#H{y^66X|u~x%f1#&rU5Ry+99i$HGY}eWb4WJw{n2Q)UyJA?%In0Q{ zxws(Z6y~eMG6hJj2Us=O{rLgy2zNc0opP&TO{(Lnq+WOb&tK2wis?YWdFc9?fIshS zBwU{9gdYl3donoV2LJ4xPGBwgMSF3kq(~wdF^gq?+J!&I1D%oVo z6HSFmqmjsHDU^z0{z{xy30!+*v>4W6<`G;M)568k2%w53t*iblsx(AlXu;9G86l>yQGezPO5J= zrJkR)f`3^*Qj%u%i_CP~J23Y|( zhZ@Tns4vxm1aAAS*+MXa$8TgSQJ^yCa`Bt#CRF2saYfg|R? zm5)^C=!0p;0E1s7_;RLtgJj(R91T94w40H!$SdJUCS$Jp3U8`4v_cGeIZ^ zSJeacCNOH?G96_HbdBP7KXpU?;cxVQdUA4N@{#dJrqXZz+NW;JKk|**eu zKYaOy)NGu(48&Ax8f)2NP>6tl~Gw<-b*4{wr*7deqT#g6#2aovUoW~Wld!k`` z96=A9v5*7VL><|1)DEMHJr*h0!%dgnF+C*Q2#udzum{A98HK~#4C992!8Ulh&T z`WN*68T(&Wxom6w@x*!f_u}^;r%=X|5f7=OyyKYN0A-<%=+nI zFcTd8T;#)%_`TNA^~;1za7i;eq#z(niq3ik@qAnY+Gs{W^9Krves<3VhuF2t|8EA znT9w1EqZvc%ykB8Cl8c%$o^!mC|m`pM%SuXlSp7eU#+0SpH|dXyHK-s1 z1jv{w5Tq($8@>0G_AXVbXPzlP@gLT`D|dZPl?|noWmEcNKY#B+lxCC;f5HLLOc!5V zaX<6S$YZa4+pzdK`}51jPmZn(-FV~1YrJn8hT_;2df%&`<2}qWP=5rCzgfL~<+w>Z zb?@l@!n}Fz?jzpyb?=e82MUB+sWq2%s$y-U)(xXx##N@Teif3vM2bV;m!?nX+`!jW zSL}`yLbT6_MIu$f-m1ZlAi}2f$g0j4VP zgv;e{IPy`(V?(UL7=Nk{)QQxKnICKwu;@U|LYRQV0M=yB0{!0rb{GAbDzwA5c$%K6 zA|mUoc<=Ar?_F6hPT|NcH{SNtQ@{AsQ@ZDt!#MEe=F!`3JNji_dFU4LIM4jzQ)a&~ zW{A{>Q`KIEs(qtb+ohtNt}PqvI%};~*TEJoK45i4wkHPrzy+!*YM}v1lLuRWux*J$YVFuUsRldy@5*> z^}GvI;L-k*iA93%ijH{V-eB|^e%+*x3IyZrP|CT2gVkusQ+P`HPJ$qs^r$16>=j07 z5HR=%8>AwupNJoFU<@g{5rmp*2{fKGOItX?c&=DhI$f=|rD+!d7)6MtCXxlUVczV> zh^*Fqn9tXTyOi)8iEHF7=mLm!g%%&&xkOMS?;8^>q*Btf^9<=&Ya*Inb8CI8D;*nB zT2o6ko4uFd5t=gf=A63@pwyU$h_R<`;>tyt9B3?s3XuxVMN{!gu9OXlV&Dx%5drpq z<5E3ewsxq|WptgsccG3Oc2I^kBBTQRqi|*^HgfYKJvYU&k^;;CaPMJTsJEd`{4{>N z(S(HtU-!bL_I43K6)#`};Iv}q;Z@R(*6MDw)$V4KItYvc<8)@B0H7i3&!sbHzXJ*3?(Dxbu6w%coJ@0MG}<|hk9VJj9U=f`&1yUM?8_vibmlZz(SbgriUJY=9&Hg9FAySik}of+0qfvMXHo>3Jx@35Q3p`Xfn&$ z&T!Oe4@1Kj9qweyPQPO!)65v|ggc72(HhM(hpR~!cu2P^SRbUHh5if1c8<27!utUyf0e#Kp+GlVPO1h0?eR(vkBQi{sytfIrO05MqH2vB4kN` z3>MuEf4#X0i>Vy5uv1+WZwH6Q$eze_O@kCjf)4hRO63Jjsi&1587qPt3J)wr5Ie{% z=rmkW!`vS}#!R|ej3$D!!9)>aKQxI@9b!|IhoZ%5dglFl_Mw!^|JL+tUZ2<0rN5#W z*QVx$g-xR_6(7yL-LO~N_MFawRdTmRPQNQC&vg2HEcI537qIZf)F&=r24LQqa4HNM zP7-J<(ZBcA@X5z_6aVVSa{nk7_aeI9K zg@7xQn$Pw=`}Rz#;PN0YE{jqaE=K=s_x&4TfFZX0bX-ECsa2 z;zQdP5n7&VK;_@T6acsg7hv=PsM(=AMDKa&H$gv%4$i|%Vu!vI&`0QK!fafn|I5ZtTAr~OxIX~nxq|KAEfzoed z^n;({0%wRAJ>fWW9eAU@co66%mc3oBTHV?vU#+G=B(LSm3J+TZdB@@kkAO{yCuDc* z(UF1Y5SJ$9));_RbscXimtn)jGw>ulPiQ~ngVb|~39;G?V$PIt?0tX|TexAXdMYlNUpSX05NrFQTGN*gNe9;#3$Vl_*{&6#_3`1ZY!>~L^H`m1xXJoiBKxkQG#irHJMxsTf!=b z_y? z1~_NAW~kgPjLTw`NBO6q5R!kAz@NP`a6x5zaBelsEsudVE&%JzVyNI=Nc+@TM?hk{ zFwWqf!VgIa81o_~nurt27Qzc7bDP+-ZGPEqT6!Y#_}2LNf%*qUl0zSSEoYIMOYK_w zk_{i*0Bnoa)w*XB4BOt=rw^ox$cTs#6)=!!fFm%=s4kFOX6BIiIy{eTh9+kl;}WUL z1Fpco9_o$%i|Y!U+XM#)k4O*=ydbIYwJzBblZKGL9eg(I4PD&@21G-guK2Tl$P%bOzVd%#8h^4v@#dTlD!w5>V~`SDRp3sf`4s>LnH>273nsB%i@9;Fg<+o2dd^ysC?U z&YSUIH;98}MI$fCylJ#jk3#NJ*}1@TDbI13-1`m+h1+Q)ais$Vjdm*Eijs}qa4Uhc|PWuV#0S^1BMNO*W?G1 zrqIf=6Z`b1V;BtpTyHDc>HO$0@`I>-^bh$J>adt2Y6$&;^-?N!k|~!;5)6TbLNyp+ zME(RTie745P@zFYAQU1(n-VjL^re zZ=F`pQF)=i&$BqCso5NO=16EWsGbS@UnY^bBma1QJKxF=K07obpPk6?id*s*^3D7@ zqVceO&2gtgyG;ZV4ZizQx8O)lW=151*O9=1fX;0 z&Z}-xpF8v@MvzD8L6pLELErXZ+xb8@C|!6Eg~Zb+>s6Pz-eM}r_1B?dSS_qL&~6u_ z7ov|p&JS^S@7>gZi#Ox*w`XsfnZ9YpfsK9ohMDhGtINxH@0h0pyi~kP%$&XV?2HgI zH{EyBtdL_!$x<_NX4A%OW87IK&Rf`1h`L9CeLy%TM#zP(OhXuH4|L>tjKOFYF3wD_NI+cBVQq|5ylkr@&NpWGPm;%@r9!oS8>YCYK%w zg9N}j`J%_?3;F#&=l1(UKHou?AAq1l48T)Q)P4OevFHse+D#ExCS4dG$sSsKOW5Z* zI(h7*cvgwTy)*nVekecp))>kfI%+wP1r|=YSVbW*Fk&Yp7lH)1%(S;Kw=*y`$#o_M z>43;)IBqB&j=ro2XbfXkoz}m}@q->KS`ah)WgP7WHU&7_@Si zJ+FmiWZT3&Dth+o5<6Ugj6|Ca4W6*N!XB#=m4T2R_A6~>;@sSLdbq-%wxvvF?DjJT z!Y6l4__3#Hj+pSyjyfpAJ9_cDtSP z=ePGgLla!_A>>?kXTh68|0#2h!V3!N+kmoxsDb3rtw$cY{`xT}i94Mqf9pfF*P7)p z=}r<97E3W&9bxye)&NLNoh{^Y5Em1_0;!o9K4maGsspO0a^>;ya_-a(*3S3zRIXUe zrS#sqwI?=^3;fn|w<1Y+e`ja(*l_yz4ad{N$42*d`|YA^(lN-ewgieIQJ}C%*B7#w zG0+pVf_}6{)*q}bedHrcJMD|2nJ5L(6v0yOQ-+x7ebe~fH`&H!-GbmIu(&5E2`Ke5 zS{HS~$U;9WZ>0tZhEfbunS<-L!AAgu`=KM##?+A-bkSeCD|H8lS|^s_xRRP<4C~FA zQ{Kr*Cggw$`c-${fGGRqL)QB`7PW?{5)fMp!rp%{Cw|pbiMuW@fkfIq7Md%_0*nq% zd&f~CaeAN}u=sy8`^Mpl%Pc`TTaEJR4?6Z21Zy1nR?%*slmjs4079yRxqzNWvNjki zFrI=c=?E6`?~i=RfJ{NAu=Uz6efQP9k2#_Nai25#r6b=3%o&zJUG<07FY`&C<{SKDl;P1$QJ+S^=`fuXT5T}h6$_zM{NvyB) zSi88!%7Ly}FqbZ>3CrpS=A~~S17ilQWFrMnBIqbVqFuV@gfU8Hw3IXHQ@wv&UPS(xqt_md7Z#g~g(80` z(n)Ppw~v-Z`VG-oE@mIjip1-Si-puD3cs8__1dMy2bWx5P0z4x6>s_m$s?yhccp=a zfI%5ncMPcN&-GS;6T1Y9g{x@&h8hYEyd##(U#%< zE_b6R=Ad1%p=f%_T|RJVI^~Z0p!Tl;0VE?@BvxR)zzRXc_`05`wY1c_DtG+A!I_k2 zq<&Bjea$R8+k!buxdt)6@j}e7liQHmdxRlRYDw^+GFFw?SYK~-5rFg>M<)K`nooaU zDAN(PaB$P>#n^fk@Nz!=*&w6Is_|>xH!CfGu$cih1bTo$0T$OJ5(G&@@PMAkgG8k3 z+u&T^heWwQ9?v+gLA=xMSC9U?^gVbA4MPl68+=yxh25_Lq~Gh^42F#j;|=$ieTtUe z1%@Ck>p{?G;{Y8xlp%tw6R_Ec?~LR{yZ!RVRegH3_4Qp=!5OluAgk4t%Ya&Acy9+* zm=TP3*cRagA(I<|Itw$g0PPGwVm6?H@U*X1l`m%QQ8l^LuS>{tmAYKIggj@^^kOB) zfUQXO&+3r9{y@}y)bYwHif@0=A9c*xgT6;2p4fR`;&1wUA$4Xq;CqA14N%!}m){e6 z$RB!dC;{L8fp7AHy>?ahGsuv8_IzaYqLx$X0wmW8wv>|A5v+IOy6djfPu*22-F52m z43ZI2q9ip{3b0t_&bhhU4!dr>)pZz|Z=l3P*iNuW=8n0h^O?g~Nr8K;;LbFDN}UJg zCC*N=q70noAz~j89f<{5s9NHb*uL6>*W!`1Hmao~@$R|g@bLKXaQDgrJQ4}|fev^3 zgOTW~dCmB+se5Ocl-~vPa*Tt9Ni5&!hL>pykP+$IhLj;!wnIh)YCnO$$1iV#QA{C> zc&@u0&?#_tuq8A2CXmAIcC&??y}Ren?^^zKl=qpB2R!@B=i@;vKPZOs0`%n-QgzS9 zXEJxDS6Am^u~*2(^JF5?xf3x_=T=uO3IF z@}|zF#LPgZ_#&LlZjPpY7Xt|N9Ruk%&@KmUPoPauWB9k&U$M>ztfJ~n8{&!s7ArgY z&JH(l;y>ZB5JsE^h*~oLmDNbpvmhrMx>kG%jS%(vykx|^awBgyTxiQB)<2^E;A?P&Vw$&G>#m9A2XXeq0SB_pWc>*yz&fMQ-5#dHG3s624M-B52pQKBq4mU7p;=Xa-` znH-^E#_!BJFMmL9cj_5{zl;>jHV)WjxGtM=U>uxD@v3D;koPKLkDH+D%W7~IQSeX` z2!mHX3x<%+6|w47-LMv3rFHZetn~}A{f~&f=J@f~Tz>P~CEM}iXzaoAXE3T?;jV-B zldC+TD`6YbY&qB^=7V6kf%V8*7gZgY1ZvyZ=#DqSkhHfJVKn>w!xG zZ!fKP7?)cp-%Bvlg7)R1waN20{g0$dBR)k2w&*2}Z< z3V=%_pG7HKU5)htjMzqgNY4&M;a%s8`eX5IB#0zS@Q_QXO)!#;$Na!`yWP>DtUi=a z$NZ6i8)==~frvkrj)Z+hZ)7;)E&9Tdp|NxXsV4&PaQ1pa(UZ{-woZQl$0F%5v5|-^ zt=}9zuhT6 z>ZRdk)SZcxN8mb*(2=E5W;~fs1V_q|j62#KEnMnna>Y9 zkKVR2>$|2ld;Czf601ZJ$~Wjw=b;&NOKU8zL3%CdA*hYqpSbS%=I|&Y83Rqz9358w@*9pK`k9S0ww!4zE#`Uk zt(*2t=cML1g^a1`{FFD1ZHB7k49=vzQ(Qk$a$?5lO~O?K>n9wSq$mR&2^q zUaUIiu&PM+XhP5XH59fRs*Avg&DPG=3<(qaWrZDEX~TkQBFe;ug%dLj3n|v?Dlpk5 z<>pPb-=|}nC>JxE(VohY&C~!`!Id0==IfWQJipj43d;t6qTEXKx~X3dOdULKSk9altrO|B%yJK?bGg1}(@$k36T+Dm|xY5V7@7V^q@~h*iQ> zT`(1RN}#&RgKVuWse3amf%~3itmA3@lrh%RDo*EzSSN*1`crY2DJO+NlOQ312a#_* zrUM91#RN#$M}@Y<*GaMXQT`SrT8@{eDZ#^^4a?vGMuZ0TEv1v)1mg)6lC~R-jvvf< z4~}PQAy?Wc#p5L-9gW`QK6rCBo*X}@CvjjJ$DNN3(0nt;p0!5GdCUb;0nso7C2mlI zI+M7;{&(?0ugj3xqKVIMMf^7gB9Xw2{>ZP(Px)PJ6jFN^^}Yy?W&c0%vUm4C%(_9p zN^Mc4QKiibf0}5`y|(q!`A+M{=9>Mzj@1?yfpLWFhj>}QgKA=@1&95nL=DQOk{{+h zVe+6;5B}-{_Y{LSRqaciA}HKK$)SmhyJBOH-tjo*ECN6}5+wwR$LXK#eHmu%HX;S= z4z8bOv`|RjP-lVeNQ)HL98E445x9IRmy9|WAFv`wn~s^ox9CKMw}vCFq3Dc9ADT%; zq$kFfu)E-Jk(wFOJu}fE84(wF1hJ8gM6%uJ5JYy@q$2>H9b$#w7xE%*p$n4yP!xv3 zO?V!tb?~QAHy?REcq&+mM*tF_CRT_A2q(w$uXpHbomLm0}qjo8I3qNS}?!-kY0khS?fuLzZQZw$2~CG?-+#ElX1|tH&H-EuejEGr7hOL*y%4scy6EaSD;jvgUAfYCIhq8MMu&6MD4y^wI}k; z-VR`UkQ_RA8+AqTyY;%c7=3#ksbv_4jc+!QxlXbS8YmyvB&?G#Uqao#?_oe#BSHX{ zdMukznOfF*2oB0@-yC>s^Z(HHCSZ=7=XqfNC;)}~E)iQx8A?A zWFgzf@;6Uz^$)A{bY1-4q6dxv3tS1b8146aG#O+=&-R`}5RDU0hf$zi4 zUbou>{_YR%_IrSVaCgC4m)N#k=c--f%$ayiyFi0La&Y%SG{vB4ItkM2v@L=HQ?ba_ z<|U#=J`Yvuwe3r!M&t3(RAO5j3(;gKl#CXJ&6M=$6`8AKN(lqPAvoY`WJb+2Kt3^~ z2oXhAo6`G0BO!3TMsl3*MZ^B?%7GV=HQk*LIeW@HIN8#(;>1=oVSD+)y z`ftNFbZtBG>$Cy62C%LUZVu>puv<8hP*~$;tvJ)avg$;P3*-7$qfq2;Y{$pe{b7c{ zK+uG9Zy6|QSYyypz5?1z+i67FDQtP5rZdqHCUb-#$(j9kg~G)`;VY-^KE3aS!rpz0 zM}Hs=-hKDozkI6yH>Xa$u>P%m&E{Wn%_v^>3f2rPc2R=+Uuf6*_J*x&ZP)ssVQ7}pwfUeM}&0-QGKT7owqKyAgrOcA=EQyhl2Hx`xZF%s0dj*-NE03^){>|p_5>3M z#$$N$VLXRRw>B_ui1p3H#fwP1{#mc#bHxF^GXV^2UV2UvRrLE#}Vze92TG zh2qM`mG%CPg@rqW*ST|i0@y(=fgku&5)^9NAMqs`}0Sn1k9~CE#Lg_ayy(O_hXL8@4?q6E!$95OffS2*8Tata{rrh z%P~{*opvr(F+ac@R_J_;55{6vTlmQsjf@4YwzLuBW4XmCsKiAHm0!Y1*fL@dhszdH zl9N^kfaJZ7(Z(wf4wFlD$PB#|i0TG3Nu!>Go`5s(4kzJIa%rV!)bTwO^g~g<6<(l? zsv5B6$ecZu|6YclXciv&y(33}28iLPEYun>cxlLIBJDEUC4|d_Kt6}h@jwdc@w*plvuGuxqcgNxp2l8%%=i=jz zOQXRH!57@_TQ#k9AP~#X%p8c!1_9+>?)e$_hMqrm2=0dg8t65vGVTW6XelEP3|z3$u{{-gUTryydqCu+$g;7qA==gk*oJ%y zAF+KLvdYF~d|=75p#8n(UM@b#z{UoDGm(Mt{xPK>WFUYuK;2 zbA4l_j(ge7qK0qtEk^DQs)>xeZsaPS62_?}rXpfTAT=47n@vnhK0QCf|JwM@kTn(D zIo_+ZxYMct4cY3|64h#=re08`PC&(8L1xhkPq5F#SNPq!<=Q+I-?#wjqlMg?$gg9d0>e$EQ$N5P#N* z7&7;F-6CDO$9AKco!aySJ-*Ym-X?8X1xFu46gy_$aMa~=8w?Akn|yMrP0HLfkA9Fb zlydxGvyx-J#97dV(;vyGE0(pA*NKdgxhx}6X{DoY z7*uhwfkG63S#p=%veYUlB`xOEACazUo37OBCi**KE#g6s`>cLqDVe-*c&n{p`UeoaGh*SJ8R~~=VNDd zJrr9}mf7KaT9pxzCE4o3Tl#G{Ys+XAW6DUR6~ShgDNBLsS4=caGVXK6m7B6F(QBC0 z=tBT)Cs7<{xSo1kKWlBn?oc(ydrWBqndZ8~$8r^PEnEPH>Pb$gfxnUUr5F!Q*==6d z`q|PvyNMWOI!hV}v}?-}my`(YY%+JA>7;Bang?Se?$p1A)jb&hB@TIijjduk**5;5 z?pV8h@+AFJT(1^~p6#t$uirjN6Uev}cT-*0U`4X>0y=dISs=Bb5z27Mqv&lC3iMqY z|4^0;kOZ4PbUK`#0Xw)|_McHZ)X8=-3`mx!6jLw^t7AwY2 z-)4`!JX;PmuIzR>Mey(gnnT%D<^O^I zNcjK;dycyc|Dyew`+J|cAJl_7kLcb18U9)ItK|8hSvGyuB-J8nhl#8?J`KhUVC#5B zF@p8JhKOhU)t8L=wQJ%^n{K|OtW7kSqk~*1WdVf+B2ImUGZO!xI~aStjO+qjThU^~ zq&E=|D(^%cil6Y+njIbMb$hi~y_bG+jFvuh!+(oT^h$-;bhmMwwprmC={dRL|f^ z#5U51z@0et+a@}whI5E`SZ-?EDw$q^AT|sh(uRldG5bhfQ5xj=eXM0G{Xe;C^+93Tj`&ZCkgIz;owD)qy9Bsr`txc6QEnMXcZ=Iubo7yBnqx= z$hT_{Sok$qIY9*QVU^<#KFslzctwLLuok&^9z%HkVg$3(fMZ1s zHF|rc2gt+~^!3zF)@n7}3-^FbX0PQmeKl{$>u@Jv2=ckMF}L1E?NmV+-iFWb_X)Y(vM*4bspks>d_83U$gO;D%Wn$HM&VH+sEv3w04Ib^Wfge*Bhl7&?M^`5mpyr+uIrv(mF zu+)4_j{#MM`eJ`Yjz$;T{yU|Q3;d{yPU2x~HZkwef^F>~O=UvA$@ZXa?Ll+aSNlEH zvd!lp9*{!ylC2@83mPSVI|9A1?H>dJPXcB?$Ti;VKb3JTuK~a_`Aean?O>m*4dROV ziV`RMA&^)9YR6bI)C=W8`7E1llD)+KW#4kG@^#qHoh}$T21)&Ku*f0$8{9$xACA@L z_0T>wRt&S|_119(COWIJR$u14>ai(G{~SEy@Yy!|1^45rYW{s)=3UdmFaqsj8pYCsT#v<7mytAT(VoFDwP1u ztl*8;@UTcyw9!!i78Wv+p&qw}VHwv)j4PM>S1zxp^hCA20+)CX3^+FK)mL&r0K_eK=wvH&cS3kctB zPf&9>f3KZAK6lekP%S}z&pe)OEB-#f8qFeJWm?6n0J~&A(AQzlLo%`beCTR$4vmqX z@)O-eXe6n>3(_FqT@H`tOXtqy^My12A^YwMS+p2IRC#u-S}3F!g64vbsrdAD)NEM=uZ$Ajm{r^f zqRHOmD+(IRd=tqqSxOGG7j|ewm>qzbH|$OY4h2$OW8u=trvqSXTcc?igyP? z*hvMWy31AgR>1|}nAOPPVDPZ+{e{lhSjX(ff{zDda)VlMmW4WSpgG$0>mWP=vIJwR zu%3qAUL+T&^xKvUTZNs^4t!?pD8}24VSSPH>L4QmlFCBSxxZ!nN%m5fAt=QrYZYLs z;83yI<7q5Q$L$(EH?3k38-CVaEZSc{lWh97Cf*Aal?1cp1rUUpRkz;(JERFanz3KN zt_2KhVNLJdJ6%6gs~z#@QmI`3l@93gd!|BXA3PhH@-3dZ>&)W+HaZx!i= zuMe9#HcQeTObU(btSl`rixK+_MTcLMpF@{aXV|yx;`-morPDe4?6$hNP5a4f9gxZj z5??@vAW2=wY??OmPYv-8<{}=Vh9}bbAm*YN*|Fp0>_ZQAx_75iR(UGBw&E`)Ye(wS zdz-n`0+8=_?07Q!P_O&rcgOT8Uk)c^bJO+Jm)+bFtZ@V1jQGK$KjB%^2{W0Y&8-3$Xy(enIU>v`e3norI}{loHO;cUc2ar%`})#1B%uBbo!S0`CHQY z0O5!Of1_UV>foNd=(K+{Fvd^hp<^j=ncqt1S#LWiH}W#+JxoWJ^4vApO@9mWND;FQ zJP}jBj70$I+yeG4rDGsu4%1e4JbK!4Mtv^VJE}WwtL~qxHN!?EnJk*-M)ekt&oTbw z*--yCzIb@~qi^1K9}gF$4P_vseNe`!!!`;-hzuknQj1~?1Jcz*8)PadJ4V0|vRPMf zjg)GAy(3Lav9@$9%HnY`BOSW}73<2=D9p~idLx3P_Ty<^5%$wo%Ke!q7# zlC3yrXs(g?E-Ssg>HF_b@4Z$RNrkqcwiZZPB^(Tef?*`O`qQy%d`4{Kx*OUBbjF;a z{kC+b^aB{P34$w`nQYhqQ;&DGL#Q`;8`d>xx>>H*m!*-3T{Fv*^N<#=p78U z`e*k*e}iXuU?sXqKeVCYw`C{vdK)m7z{Jwt^1!eQ)%mzIu0Uhm`e-sIk#T>Qu`-Dr zzjLHLax1V2J0tguycr`0?}pU*q)`fMR@u@xHQ1h}B6d0i8ba;D3yLjvk+uWBhwbXX zQi2}@?$Pq%0$m|hI7OJ-hZh~I93W=3qjf}xvYzgedP&xg)^ObA^y`bdzZURKram%Z zPWrw|00755w+eBqc*l&xF(bY<=?hHk!%1GR|E|eY4Hyf6xweka!bdPH_MUXl9=C9~ z?)4>2GwDqhYvFLMcoI%QKaz1ISUYxtvE!v=q-L72m}%A`Pz=<%TtjT?8mwo~;aad& z4_%#=1;7TDWgs;Wvf&@@ZQ^{OOhDeaV&svxDqq$%kweN8$5QWpck0+V^)k2zGDE>@ z#xVX!$Dm6OR#)3LPWRgIJ_iuCAgtwP{;|jM&1Fkow>(wOYn!*z^5ykKe!ke1EgCIo z!y9S^OyI#i`CRgzu*a)=nkx5!!YZ*Q$X^h00R-vf@RsZUm|H5|@tmC-d@7aCO^(&`fWDKoQsMIk>HT%plpBEn z?=4Ydi0&NR)8HWg;?1#{EG|)c0Y%>KXcvKO82vR-d2@`{t?qpRb>2R^c<;=3+)VvC z1SYi>duSu|9mZEl>7A}_t^t{lhKm!Vcqm=Ne5IsoG2-*ttp?T$?$u28l39Nwl8i*U z>P5UK5EwoMTEJWXIL_+voMhyZdQoGea@a$(ZddFcA|q-owp;)M1*wJ&P36r?QJJk^ z6b3(_=@rs*iB>kT;&vej5(a<6?^E;}6d;xcjiy{LO9l5pzL97eeNlHuLh&HT-grJ7 zIJt%|B}p)npkYedx4;A#T%zU=dWSqU!PxhfJyq$+foD?^avJr((m}5VKo20@2)!dj z{#-6{)EeJk)qLag^W#L#2V_dX&#Y+zjHazo=GIhaFx+68J(dS()SPhSgL#stAhwIS z$czQq3wm`CEs*zAeNfu6U!ix&ZWcxjg;7bjwzP|^MK##&Kp7{;kmrTP_BwGRX^#jUuN#>IRY+4jgTYE;3n z{J!2+mc(_6ISJmwSX|;4Nt6>g_Xd8mtsSn~&kW`ppAkOS!911U=CdJ;Ma^8Pzo9`} zo{EDan=U!~mZz({6@vq3(^CpY=2i#*;PX@ow+$HHW1u!it)o0nmWpxg*s=lSN&DFr z88dscIrK)4#OV*&1x9n^gqLqJt#1AVDF2Ev?ZT9JF4FA2VYBfV%bk_w!8rVT@hz#J z#G#+Sq7SsrVeqiMXX=Zx_E$(uqjD2|`7ZA;r!~;1ykk+kXEDBWXMFL9Y5r(AI9>^s zr@|qpCyFf5z~mE8To@gl42C?3pl}wB-W8a>{Ycf3kEae?ToRAf57uf2>khXD`CQs?4<)F9qW$}c|+ukj@8BCI5T zkZT5UN{Crf>b8;sNmLN3fU*-+P`xA+TIl9DfUF0z3PK2R*sKEUXVH~3Yb`edwI%2@ z*0{1gLN1F`s(K>jlWV!ZL5vQ!;R^*D`vbY%0bO`vjT~SHQsHQP5!5&m&<-U2N^>`+ zoc*sk-1C+OY-TKZX@B*LeaH2@O@sdHpMrNDJ^`T z`XuJz=U%Kmn*c_U_Uesz(%YA#neartE{_)x5o?Z!=Mk^R8TLMcOW@7Rc!RBaGyG(7 zu=-d6#2G`0wa_L>EvIUJr!x|Dy5j*!&Z%3T9S&DgHaJ* z7&?|>oeY6qfE-_&`-hSme*m1|pStt{2CoqCqdEex!ZG#%&v*>DWkF_Mj@D+%yFoy2 zna2S#IP@W?C?*LCUs_2@?@8-oAQVNAY1-gSfNrut-JW#ks!dbx!yLHDlWt)kuR~9P zECn+F3{t2vj7Q~ChoppXV#YZ`CghZo)lB}O&n&s$;hC}jFDA!K(BX}SwVNCxZS%;n{|)dMdet+~(#Jt3WF@IhVHa%F9K`Hza{e{VM_uFBHuU@<9Tu@hLyrdaLwaOeyI1Z{-G6Y1&2BW<>_fUu!cT}~Y@{2A+< zJ;Fi{H{)m&eghlWkVUbLG!QXT6}4aV7=&G1f?^{`S_}ilD{gs)B;@Xcu);|m4TuGu zM)To}-(<*?cJVMdVcxv?y|C}V1kH^i9OKX{o=x&8*{}D+)c&dO+^prIEvmD$S0=n@ zE9kHVDvahfVfifh*KcSz=8R9$8TP*p3nnQ|(Y8A5LS!Y7iWU%92`_<6m8}h|1_)Y1 z5IkciRU9QcUPe{Y&aem@1H$%is2OvwhDb{H6LCLcB+D{FvdQqtr)0?FNf|y_lA)CM z^6;-5@W=BrAKq47W(6aHaL8xMliAu^WL)G=B4qL^!z9-kFnLr3Pp;$O)MVLLd+0Sa zXq4Q}oL0&jW8kVXN*QXdVyVD9puN~e8sNZjZXvRPoD;`^(nVeh4<$iTF=1*0A`Y>%UG(8dWpsa1crE6v}q@gq|O6Ep16vbWH_2#$DJ)X<# zdh_o3>Al5rcD`MnJwKDyq6ghpWA@za8C}F@bIx4}9g<`?8ge>)sE>{!zna6FPr7}& z6BTZ2ZU~2z4_|>D>}O=e-6^bA9Z}9Kn*phZ2@kO3-~my$7}1V$A~8C;)}j&t!{`BK zZr29JYt2pd74{lg2mqne;)OfrfCA%wJF>ubdmN#p$C|hk-j}4OX!!F}o?_fQhH4ys zhYtlg+}=2eZ94rxu3TI!CW_vvLL%@-&Q>52bRKazTul$kX9EQ8Zq4D*)u+W=c{1;Q z*dKO;yzd8Az`K<~+W+}Dpx?$v)m_Nfq~AyU5BNCr5hCg#@1f%Mr^JJcf@v(So zHDApkCZU%rOKV@b|98+54Ws_qd^NwXR;b=(-TBBP(cKDyc=xT=cMlka8oUmaq5eXA zNqkA(Q`w&xSqzj}v?>Bk<}e{5WExu~veLic-}Qh}T_%H*J$3GGv1H1VEr! z!^0vb?)hQ{Va<0_8PU)*@rV3k(sD83Z+t^QJLtWa7DG+NTEZw-Y20fi|A8c z7E55TMK4H4F_w?IEo3C_%#9X9!D=Kvn@-fy`PM}7^un?1%Hacz+C)<|A>uhwE7nS9 zL@!(L`WgZMtUug{`4%0ihmRf0iigaGPqj!K@upOR27Z|m#zWQV*^4y|8ro8vh?cS~ zZ)y_n0Kv>y@g!Pm55Ow0aUh41`9b1+6BAk}9>U-Gi3z9L`-U~^bOGYZ=MuRBDsaoa z9ra2c)f-)Iz*K3u+dnkp3xyJ)&~FWP#LxNM-l)g(=v&q6XFu`wn2vJgE>Ga?>`Ngx zSH%I!`^Y|l*Flm~G}stJzES}a1ZgVYhoF-2{i6L2&SdCpOx*$>k#Pm$z+x&F^u>|U zRSdi(U^qP!=vaKJw_|5^YU$2! zfoQ$4du|&&;=L1qRbJuo22;gK-si=>-+RGx%J>&P)cY0QO!0F&?Di8g7EwzTfN<0R z@2INEAl|p|OyQZq-`ZdYN8}uWj!v0^kwTbOpbYd9m0a*f3FtV8CmZ_mdMMLJFvP(> zIUX@+((9IWc@4=Nig(*7pp*sBv8$kaq(8u)iIx}@1)!P!6`)8W{OF1pSzou?zB;mj z^Q0e)emJqTg0u_URyk;&j7vjo&#;9qP><*jX(d}bY$;`)LKAC>{s}q-TYtm|EpLap)q*eCzkq2=N@Uv-A zK_))~T~KzfjCE2Qb0-T9I1JQ#i!hd4ThgV8shHFY;F@E#xU?O$76Ef2@hbo+hcv{v zk`EPWJRZ4ydY5Pbu*NuKfZ@BMiNGu(Q(W=f#9y1ynZKC&nR4OBx92wY-(+7C7e-$V#)|&m2&Lc(9!5GRutH_l zI(mo!z@#ehv&apyE8)YDjvR<}2t$!xLa{V`_CwH+E;-#v-RtqWJx=t(RpD`JDFExa zTs^a9S{634INgfd*=`a7F9>M~s1g3KM-#PFz}0L!-FCZ(slxdVx-YnfFnyXO1S4S# zp*FE#7e$tGX#lN_N`LJ*sFg2{O61lws3CwhWd7`u*FWv|GIwd>F5nt+oyc5}Ujmj2 zXw)KPLQ}6n7=rW%+$4(C;y-*N9Nl+E?Vk31@o+JJuJR2?KXV>oeWP-2UpRJ8`<~kE z#e6jU4IMT`8ggl;S%c2KCOyUE)U0bjTP|9U31vr>8T>O?K@j z6sBZ!1H`XE5tM-oo3E>YG$A?>v{z`X??^zLdGHZ}N&IS;}}F6WM`+LZ6f z59KdRO$c$dSrJa4giTI_Un!Cz*9LZ2$`imLR%bYjnJtKYrolM-jDe=8e(9Oa{y_ z4BuLDX3_`&={YDM%I8ipJ-AY2N5`anNYUkgD^4kdQ&r0rPX|tnr)@xKXf2wJMKU?K z))5c|g;@TQ^2iXE>TgEF08|8=qzSY{-vmGm6VYVwZLvxWxRetBNx=sJn1j6G=utJo zZw1BgQ;%;ObWAmVpS9x!l%U(so!in#kFWNa-Mlh}$Q|!rGmoj3vEueW%|171UuJ&KZ3Wr1 zlRIbg8ILfv(am0!A4}{fTTV7sc zc)jflW_-09bW6$N5JM3Gts9KkZz5BtB||Y3hr@h?xPkJ4Ea!LSmRowa+|p6$Da*zh^*%7zQQ5xAO;j8FbBQWq-=*^!C{#f z8JjZnbq>1{pcU)~hr{Rg7f-e;l{PjphufR^1Lf1)iHZZ~cJ5qZf0bhyuiFum=U`Lx zyM2y3lrM9cC!O0VebWCG`r8K~O%uV-Vw}@9>$%SG!1)%a8g<`_QC@WMNDGm#^1!@# zQ{<1W5WMe0Ow4$p=u6{OETvNYE7&o#Se@_N7~iF8c*iyrIRTzHgNPPx$R6FJlL9Yo zD{&DoqLkC{auOgSTe0Oh{|9S_F>}y@p%KE;56~;MrV*NgUdCh8Y`WWMforZm`Q+ci z>frU{!jlt~vFFBe(CN3nMdW-fJfDaixA6Hy<2D z6-VI8G*z(%bPGT_1}k(M7wumwq%xTl0(0Y!tChLL{Wy>Qgj%sTu+INpNFO+KAf1oT z%+CbXN*$MPV)BC*)f#5Ir4b&o0BP=K<+CmM^dM2nCRQ$S2b~8(g=wc^y_v07!oP)# zBdG7(i24=Fx`KM_VBD4z`jMB1o?9Zd0t_4f*p;AT_+cBI++fbPu^Oq7KoYOuMjRlFw*C~sgf+hYTg(~HH+mx}ETjK!7uqTI*V{qh=Xw%)O6gBUy$bsSZ#46j>jchN+^ ze@06370_qRcDMWD^76;J-TnrNj$O+WJAIXIv5v~J42DDY#NdZ}sPbh$%hq;`w1!cB z$fMxZSzKlF9|eSyD2IvfDmjKR8mST1(1N^2-i&!FJD!*TWf|XYwov7fV211$Fv(Wx zz~%boSIr%{gq50jJl{R^f_2GCJ(RM3a;*G;rr39e)3!ZdtTm^)`Q<}Dd3~haUcMKS zlHK0#|ZHntm?Ol z#c@=PLM*{#IiCPw>Zs|r?(@YAWNT)On9uhI^dtUUoLWRqKctaulle-e4_cMuI0}R2T9>$DM@YA>fb|@{xG7nkW z85sb?prrB^+a1Pd9ZK(hvWxsO zoG5V_rq0Z^j!WxZBuv8&=p@>(WRJs0T!n^@RT&no+%9tAF_;Q}D`p(d9At~iGT1ou zOGep4e6P#P%LAVF$G8@2&LV>yIr+p~lb&U$lAyN~`VhH;rx}C>G-N0vY zKfb>f@m;AMwH&j1a9VRIo=OJyUYtSSa44|W@tl7Sx?DvB$-Km8gI$bE-3>3;45d#{ z8PFPJxD1c6gqA*-mWcVTFq0rr(mz~3;F-Lw?mckWKe{HatmS-%59kv-Q2#KhjVoF2 z*X&I#yFBWDwO)VKms9WR2@}pTsw8hccMeu~MH68)W=sdA}Ev3WqpAsa?BnP`6rTM;Gr5) zAtw%HcPNX}*`Y-GF+vQ%#Q=?z{VrBu-*BL&a@fp_?<%Ey&NiFWtQ?IdMBAZx{PEO2 zpEn-&BCxsgz13A@jd}fm)CGD~G6EnT7E!_%E<~nM^?D!_i1|amtYr_6YPiNS3A~a4 zz9Z)&^iS3rZ$UW&1)0%|8Hdpnm;1{|~)NXU}QD&0sc=~M5 zy4t(8-GkTf*`L8okNe;UytXIr>611mq7N_wLd_zhRl##?nO7^wN9}JQwQgyt|26Ed z;@grX8NbLBDR3chCH&!v109(1e+k#5IfSfQ-?p;_!=QtdnXAwrtaWVCF(f&|hzC@F zt5+%B0R9eJc@REnn?8{@5tkkaS1>)<6|_~%x=O}^nG~%@=;hDxlEz{amkxRneTnqw za!wfuSBgd4xp&<*t_IxRxk9iH>1^Bw905u>;R&9 zdAa}pjO9v6-RVm1OpT3}lE%^O9!qG#sYf$oli8z2vNS4IE?v8HMfXJe-*)OKZ0PYs zf^k#mPSHY0#w$L;=SDrcYzyni@HsIj-rzYEQ^wQY^m$QDwT(36n>;g*x8-vW=ED+v z*u2{`q5<2;a~p}<0HT|DxUeEg^qZ{#rbB`VL!dIYW2lv?4u7WFS*gn)Qk8uNc!H}} zm+DMZa=zswgPsy0}cpx^3IgF=-@?W z6O=re$2KF}u)x8^UR%s$#WPu}|GjA1@hEdQqUlgK43B;4Y#KiPXt-*Y9935ri7V%Q z;?3Fq$Fg-c%dO`DK>#y;JlIXay&pciiql;S;Sqtngd!u!Xz|FG^r9t)ktE7OtY*%oJ+!evl?1;4pp=G-J4MBx%G* zGdWa60AReq7GV2SWRFtVjtc)BkKmqHTWzvqO7tvZJAdH`Y*9&8>TdDP*8TtjT*Q_ zEs+)Pwdav|fB%120(nlMqVvN`?~O$MvL_zS_McNTM|bZeehg<$vDb+_)a&7qxPAsX zqL?T0epoTUX4PCR+)t|+qvFT1g+TafB;_cIz25#`S>nm@?}&%8{ij9?ULzt38B~h? z^6$#A`*$)PjIl09&_`09Nun4G4F#|SCLql$f-Rs@4&LD=RmrfSshCNg+`@X{oPzww zG}@#Ig7e1?r!N^!R3WxZ)q{o+s85Bx!K&Nk%S4?1Y0NflYO=j=e|us|0|N)8(Z-7p zK3E*rrqBKxpEs5ahSS~<3It@&Wy2voifJIg9s!dhj?Z3y8 z%gGZ!#vu0=Bah~%hhT75A(Vn^fyU#3HtSN!`w)4Ck`s&rW!FH$fOS;e2zB29@7C+F z2pQmx);HQo;Nt=RMnVsCc&qhx5@>mfe-Jl=F^pC4j}AF7VlbHZjztP9HLdyv@I!!o zfn_|*?WP$RZ?M9-mcc%yEKHbve48EsIWweS4AWCsh&BH&xI(U9@Y^qID=RBY$zpLw zv6#fVjt7Gm9|s;<-0yO`bf;SsVZPV>K@_WmMLQn76m;L`bl&F%s))UF%f&BTy!ZvJ zl-z}@U{fjteS1hD_V|KtNhjlGH06u9G@?-Ieg{y+18#4^UrI&d5nBg;ReTJ-tstHp zUL^J?9-@q(4VXX}ao36?bReE|S4x^F0D=CHI9xhX{^R~qFrcryGOnxcK>tbcreAqq zrd&>RAKLZhq)%M(`T8&U09RPr#+#XGWAkS8j*Rw1&l2>XGeq(ha0n1gtS$s>NnEiZ zTi!HLjYNa1fxs%NKJz6QB`k%J_j~=p;&d_SM{OY>jwXUZpU02dRDQ8CJXe0Dj?>Sf zR8`!qCxY>8HXcmqK{J-UPkH`l zYg#xF2(otFx6*RN!6e*s=N`6G7!$d4due_bxWK>P=*@Q*J`2z9%iT;o34Vk$LefPrh|94agT zFf&v(;m21ORZjJ~SgNl+7vc3H-{bbTvp@T@gP0Y>2YwlJ$pTH^jXszImzNwF5{;Z@ zY_R0IU>k5i(idVc<{= z+~LkflLhBbQ--}1OUqEb{_0Cz7FYOA($@G_FTK>2{EKmf&qDj)+)|{3=#uQo{eq2? z$FLr5+-Jpi5(VUfm{kgaS8$40fI`Xt$35ebqd8X0TJ41vQ`-}bDqgq zzULu&2cP#@nP=G6B^0i4B7b#rPup>hXym(!h`hBYW-{X9 z3;B2X56xJ0?M=4r>@wy7G!^KmK-6h8yHB^D7Tq>uBG6YhUAYXJoyO?S;TZH6kyIW# zNqIw}JjYcyhlPkZK5%3@W?N;q)2Mel$HFj_1B~TQu%Zy1n{i9>YX62=Dn~r}ogJ7la;3_`Ct%`E=QP z=>b&N#$#?-6M1SiacLvKphLuvxf^=~;TvR?o@R8%ONbS8 z-kxOC0xwcLtCi@XiJ9e=dRIb-!s^m^XVS%Q*$~Tf{LF~ey5E?S+by8%DGa5^$NOc2_|n? zuk2&%bs*3Y(Ttiz$Mj{vvMt#AVF{N~h-rDNwJ+q~W#Y`L(_fkeSS(=?wjxpSe z&%yQiY0R-P%(5BMkO~X{RbBQt*Qq4%P$_8CVgxklYGbfNixY%LW;cKXl*C)|JM>Hj zRfEcNb4O;ujU!=g=E&UKe@{c5ESJBgUe5KG#FdX}5%0{LC!#Hgk=5#`-#^L-^&Mld zb^1y>u=}a;M!DP=SKDtFzwObrNJR5^KBDAe#`h2d8~Po!9%C+HNG8Z4MAFh@nUFQN2B7HFnPiFzz#BR=QpG1m_Q1l{OQ`%eCUf z+({~&Cnw4{(aeV;@nS4)MPsWD{Y+yK$r}}=chbJG3i*&02lnJVAzDa%p=ioGD*}jc zZM2}qzC>%F6{}vQc~<(;Kyn1~6F`Gyj5r#YhS{gQ=ht8y=(X_Uf|e z9dpqv7?`5z+|fPd6&N0}NClS6&5-tzw!O~C>ph%R6#`j8)zsmX$cY*QzYt-y8J*S; zQ#=3g4|f)pmrvN-7}|;A&u`yZ-MS>NZI3-8$zp7ZUSb|&z%ZX~4vV(D-8ou3Qu-5Z`e zzi;|bB5`YC;!pk}fax(`z6v3BQ*IvIuRKD}{7vo%1K^f>B9s$s#V}uc=l(~sYxd3G zlfAsutKXyr*)_LnL*?CB5$QY$$A*$YUJz}pDlc1r2?%UT;HtfVIyHcOu&n#!4kP~X zqt5RQ&R11o_lRiuo${^j!Q8x^YD!B%8lYp)9s!= zaOfi{-Cy)n^1oGQwjSN?D(nbRt?5~HvKeuQ4u!*q+G#u(qyfJH#b^XVD187otd+sRY`vfs z0!3X!EU?!roLaf^Or@;BQSUPWVCd81J{`eOQ-#sG3nf`c3scc>PWQ!ipYyZHyweN{ zk7rMHVxqdo;}Jm^`jewGE-e%)q}&l-BpC~ZVoB_{Q-x4Sa{+~o{bJ|1wdDMI6s?|> ziX8>ic^M5!oA;JCk}n{d7i^apPY^9gZQVNk%b;U&BAPCoB^3rtN_NBIO}=1>ax7<7 zGe$|@=M8i#S$LoJdV}$r8Aybo7|a9`#du&g5RVj5HC}?dhGM?tX!!cbOsWRJ2!2+S z=e_pyo(SuH*Dqx&h>ZkBntJ`N7DH7+OLrPhU2cM&((#h+9ZkF^8$UG{3p~&6LK{^5hIy$4K$w>I zk(SDRQnsLag2T4X!j_erYKy%N1-5LZdf?Q7DtCL-{}D#Ueg01spaaJO)y$W%^6|Hb zH~6DP(aR)H1ONVlWv_qgiDAS5F^6^}jtEi`O(_LG>@LbDI*svCYk8 z(^%rGith38dqpCXDJc0S#9>eRR3q8N_9)@kO50` z4PNMj%)eB+5du|^$EM`k`NkIaJ=T=+R+->hcx0FWWC+yFPWjH%ajP&IUCbA~fbIu8 z!EJBHVu2z4?O0k^Jda^oW8Nm?J3<*i`kYoD-p3cj({}Muejzqr^cfPUXVzYDYS}d@ zwT`;76XBWGT&~H>;lgsO#tnVKI6TGxjEEbe#8Bo~#*s*g5@55D`?6g7LZRqMN?aNRVSKIddroZ&&{RDxX z@iv?N#Ly>tnK$z=aKy6Z%&&Ed1lScXU9v8pzSRHp=}Y-bmU#cA z)0eGFU$XG#G;=AGoQg3}-{)6R7rJa5P`Mlpef<=__g^nrE2l2;Tc=k382{EK^u`AKZ@7D2$H##IaoNKI@agIjr^wQ}ZcVJu`smFK3k--Z| zCBAaVAHJt!A%+E!<(a}|u+q02x+i>kx5qg>CB)RU)3aNyYvsRAU`>|M3eFOmNTmgj z@(+}#3Q`l8T(US1P_AZcgIVV>fl+cr4GhN%Sxqx`7%q>ax8qp@VCBlo`9){+@&5Xc zWt~1JKfUnmj%RIN#dxPij`n2Ev+jjH(-rrzLTm0kB{-Aa?sbYu2};?;nYuIUGGONqH`m6Vh#-i z7j3XJ^vw@l3$dHU8ZF16ad0{5DOlr9+OG}+~{39T;3kt?4`!;;aOgkIW5Plz$239M+ z9VUqQ#`-#AR^>O;$pd<0pDS&^_ALyYjL9lcZbV&Lox2L!B(KXzWMmNNkf;Fesm@td z-%)&7%`5vEFjcWkAoC2rw7Rw3*5>or?H}GpeRD?OKJqJQI7;~OIq@uGuRwkiI>PYxUpe82N$RTF@`yM=e+Z7@kl{bk7Cmn3^8H%f zo-4{8nE;(c{5_54kQX*1M7Bi(VDZ533;Pp-9i)i>@1%kTv1kK6)4bE zQWr9qEo1vIq(Ho|SdyxPvH;NH2ZuO%7aho+MM;W*6od;XacC$PA*hSXx?Yd_XQZ~z8r6i0KyWYP>9M4ms78rZNuEIJFx-U!c_1Fzy5DA$#DFSNo9y6Okvq2mNe3m@ zk2pm{c_dY6?V1XHG}JqK zKCb@{@vpFUy)xRe3<<75dr2G#!I+aUU}@M3L7}YJuNwRtJYKP1cZqm`vHdRjey?~` zAgv2YhuVJ>CZbFMtfcjSU6?q^-FyBeUfm8y|7+Xz zhcwPU(!Z{0NUCx;e((ASj(T|T;IAW95!DY5+poer@6cS@(gmb0l0HfriMiYZ$CMFn zEjW0a5X6&a6G^8^Bv*ksjKzU@P(}_|Gu2(U+_DQ(z}T#}*vg+iJ@{LjIv$%&Jn-HJ z64SBcf3;a-vHxENXW&%ae?SYV+tSZHj0U5rOd+srx37|<*m^o&=h`AGSN0T^~PPpTvzpj=fRemTGzpqy2N+b{m`~*$j zupIp=f|Kptr&7^CTrVaVy`3C$jU`JRwK9dJ7N!L9k-&4{wOE^9$Jp&azVHFyRgT2f zW6+Mp2uUm*tWz3Q@eAvnv{T?=Tk4sIk1>3(*5FYg3Yjr|XJx@|8SGs3LM8#k6?5>c znQhPY@6;+2J^4V##*(fWyCW5I1iZ08s_HJmj#bGTCHF_=uI+Fo-Jy0icq)~DvW91( zk18yqt)$`-!!rw3(iIL( zBt8C|&jjk$#18}}S^czn5H1jvY?xrmiaI`gv&$#_x}L^x3RnSTClM)A4Yy z5Xu-vBW(nnU1tb)$rs_@ItO!s3w;S|9r%RD_AD~4Z%Dggoswpv{d5aTaU0SIV)ku= zJk~FB&h`ybYlLlOzltm}nR$K17PEODT$iy39?;*U%!wO;GOWB&aipf~XLg(cH3yC% z^}nGAI(*b)d*Elf0<;up=Oaqk@BckByYUAL4dw>qc}X)=KD3g#7@Gl+3oVZ$Qxek; z>wLdwu!pGV0H)!YSH&@=0i~>qzXtL}ODipKbm(AvJxa5pbO<%QSmP znNax*kObrswXOKD`oxvJ)50W!=BrlcK8Mm1_BfQrkYm!}lJsm?gr+>U_08W&7HHL% zmZ;Q8;T}r=y4)8l^X1omLw&ukPDh58x`6tI+UF4P;lvj(4j2*G;J_IWD)7;d=D+Ye z`Hy@g{{?=$DHAh`3pr#I8#Fok?Povz$cHXJ!t|{!GsC0~rOxNrvfpp$^DTYd?mh7Y zdig31YLLs(jsd;6G0#ilP0)@9F?QQOXJKv2e_OPfaW7|?+$dGURycb7H3RkG)bF}| zl9J8;9yRKJ0)3FB=Lcm500`oOkHnOj_$|ax(IZVHBY=9NvV{2E+=3qJpIdf8q49ji z9}-&EnGATm|2z^Bm(sDq3GqN+?R}Bb@#}$*a2~{I9`E%)SUaef4#v{ID(9xUry=iI zLBGoD7eIg-TkeV~2(T5JY|xB|>)NaG9y)LA(+4-+e*&T)8Wj1{<mzFXA?m-ym=dW_g&YILTY+4W?woTQ!(-UkxOk zT}_1ipV55*!?lcC|8wt!0;JJgB&09=_Ggwq^U@LTQSsy9z;&+&XB^Z*f$Ncyeo#xt zKJpU*y%>4lR}P^mpI_*}g+7>L)FA>RMU22!fdx(;T5Z75Wlre=1J?wt-_vLA<>q_2 z62RLNiJeo03bIB4@GcKyb3S#f3Yz2!PDJ;W0RZb`*ru&ds(Youb8ooY)==FacI#;x zDiw0lXJ5A!^)kp6@Q6UOYBy_;l-)oJ)w9#m@xz{ekUIIgeXt|{;`ze-8+Szo=j5pe zZQh?z+;&8RlGYH63zV`U%zPC?53`-?4F{xdcSt!H8q2-qLJUe@GG;?IOe$YF&@Ad-@6wD~j&K3*F zpx-ny<@pzjN#G+S)8q3vyg7#$&)|h^5t&DDY0)|Y7dqt`ELo(F(S<_gCDyC2Vgoze zz?Lk)SYqjQ9v#em+S+2^gNVoi0tkM|SSawpY7bi}kF;PT^SYgmC4jp56Yb`UZ!&_q zTYFq|zuZ3I^CO|Jw-Sm3jpXsxrBo#34?bbjZsHV#RII;>3~c}w6w8}IL*j4@#YqAS zpZ{tg@Ms`ut%zRmuY={_!fyu3!ADR@PudlfJ&1FZc7-v>sX)iH6}c_uts69ci~)o& zxpX0xhY+1B@$R2iFDGBC=Zos@Nba6yDy2`K{hcsj?@@T3+yCRWD*kl99o<{4&$?16 ztZ_AuZ5|zg#R?WntfNf}1XJT$vK5e|TT)X%4-X##@+F`(Ht$kz9+0iL_gu1q`|s)a zWlO{jnJ6C}Q@5X;m`LIbe{xo}mvcnP^_x5m@&`HRz#m0PKytGNBwjIsSS&bFdshIK z*6XyFU}EZ`(k-vExjuF9$t155S2z_7fDuVa29k5b_>%Q>!+g%1x&4ub@WGhWt_zs| zf&BLTgM8C&<60p7=%Xc!Bd!BkZs4t=E+IK9vXm0=eKHd^`-`YE-sK z8R3tMmx3?g@HmdIemty4J;8Dsvh~LY*S;n$$+?!mwFlCt2ID`ZLWtpTb1_GH;+g@lumNG+LO?V=@D;+lGf$QdgCKJ|!PTd)ZXkhSN z6+!s02>T-;eCotGVXq$c=J(dd9gbibK`R>SwfUT`KrXstcgz#!8p3@2J@Gu|Yn1eQ z+l(z}EtlS!afnBPz8z2P@c9n=E`71(oYjA^f3^B!t~sZ8p2xje?-AdzFS_Tn))&wH zSZ!LHm)BMG7d#_5%8o5I1ibUR|c#%%&Byml9SR-z#7-^EUtqtU6#$Eqmj-V z7z?B6j(Uc{y#9{(Cs^s@ST~H6mU81FqYVvUkIGP1X%qr!f-KXj{q9)3H9D6oH3O~H z*-&kFe|1+jf6MzLv6ClG#v@|)Zs$HMtkH6=UT>5^{SH@l-}Bh0|JnKn{U9ewj#hD( z%*&#u>=sfPb~{@x({#6bO;pu!euib%fEN`$Q0(#S;dcg~HrL<-!5<|Exf)~r4y~f? z6E&olHW z0&!9{+JF}aO@Ih9tk;d0N%hf0{&6^0m)7BS?ypm%`BdSFR?iY&&OZ(ZY##h8mR^F2 zX{{eGJZ|+`QqOor{E7Gw)&@1_-Ne07nPk$)ie(`~2?>P{BhBEqwg@v!Z4sga%`LDt z;Jq}wR0c-?3-w&qa=IdkKnBoMpc%+WP88w}5%k0(x-aH;XX0hQr{n#_c+6j}#slTQ zi%q3H<5pT1pN#2gYuuBbVy4=AvX-U+$rjdG#XLcMnXS`0ldm5gefcMttA8w)UFg|vAXUtotXS~7j2^7(U zG^W-fWltj8|FC<>X~pS<>G-<${F2OGe#86njDak&2Atm@^fX9am4O5S|1)%P@&G7| zCL%+?UK#EJz|gV*UjvTR7MonTh!aK(nRN}xs`+BjXL-ksVkBioA2B2OX}#zyXAFyT ze#Nq0sqd+~qlrw(Fd}BLn#)ZG4Wy~d{szTZ6YmFAMBEY7Q+T{FZ{^(~c0;ah9UtGb ze?!G3!;<)Z<1xcpQP&;VlP`-NEE)<8g0dO=irf!rABe`lKWnS4T&=gSv{3@S4mUFX z&~ylF?M~NN5k_~|7SgdKBx6uzu<6F8-ef3kj-+2*yxG`*+E};MRHXy`zNBk)#&Zpn zI;A!uUY{RrJ~Qvbx<<6C7$9M6sTtqAHk|AAwUy4&?)}}rl|tZCyO%mEYxPfb#n?~` z9O?ype#oVWHW@Zf!*xq^=pYPSwThP4)gFS(I0qn6E+ZLZZ7>F^J+F5SAP;Q2Mn^WG zf4R3RaS?5v#%nNITk_?tGCP8e(2yHt^A9X9a~y6E#d{qT1!q5P>MG1vFOnB**95j{ z_$rj-##?NGf2b{^ocj&;+LD02bY*Z~#h=x)BwqV0c#xI>EVk`>#s}*4E6X=tzK5XV z&P|_VEBdD$Xr;V5rU4%gSmh0u|HnLs^7Ya8Puu-qeaNc8oW!)ZVWq&@xoMh>)8>iA z4l2V{Bz>evtOwbFnGG}xnCjBpwnjz{PQ_)282&EfnBcN+%fJ4Tqz%b-8zsd+BoO&` z)t>i5y^i|8Hm&X^(_2@2p8QC5<$`6gLz9YC!mkbb-bP=Fgg&UM&>%fbST zwm;#=Ux%N?1Kl>B3*&`eVSK>mXl210$cI3aqxhAUZcae_ldfTmhW~A0EVsK*^D$2N z>&bz_29c1=22%qE&RgV z_JP~yy6yJCeb|p{;xEO^GV_@d#E44(6BkghB=u6nqhfEO{w_Q`K%6F+JWW955==5m zMG}A6U(DV&lS4g%&*nWo6#fb9>wnjwiTJ#AD3EZS0xoC&FT9wW&>$<~ceD3B(DeFa z>6|;}M|GfmYnnrYfj!{+n9Jo2LhzA_=9cxTI0%v=iDwKSIL1=_GiYzn*8oq0FAEyJ z7y(Mx@|7!y5<$s(kW@(%$z2EYhBU;5l_xb7RJvz`uFj<4mfV_hYk?CXm1)Gf-Lh_< zLWG~S^i8=%75ZNNrIRO5Tsm>$BwkP6a9v_yNn3oERg9g9wQOIDv_?jUGtq8ST!s~|)}Zx>@z}@>=3PjzA%ZaTQFbGSmZU zRfKvVZwd=yYf+r=dMl}8w~C7g%yCaJ8H`qD#q{K8u)BbK&vWhL=RD4)u1(Kb^A3<1 zTTX&Mp4Y8#*3uPu^J~-ZDd!00&DQ-_yq-$>*sYF>`%`5PFj%9NIovV_)E2JL`Uu{i8 z1^%*#VQ4!X?MEMQdA{v&KIp_Bc3cm*`rrJmdmp)ok6R8$Cwo33jDNPffd|7|_3twP2kOwGzO?jn9;M6FK|tOI=WQj5w`*)#CFk(86#tisS(5Z=n zKz0^@L0dYcw;@_;$iU@<^`fFx!E^KumnwIu$~bUBjl3{pij2a-gh8K=W= zm?pQ*48l!Zjymij>agQsWn%dptP1;gKyibPmX3WZ3x?6}HIh-MW8C3mnK_4Z)Q7^* zPDhjnD-OTz%py=F3)l2G3^NK2sEEZo^$n?yUx}ux;;y#pQ_S_QlocQWORA@+U<0{* z24c%VVYY^=mc^RXIGAW6I{np+4Y`;*)LEsJ3E98XgO;iE-WA>h^K~Ha(`rSDpVW0z z{~+A0l=_1Y4y1nTDq?N7O8(Z0y*6joHr6nq8{1){#em2BaZ|ChLT z4{+nI??v|~tu&HGuaPt}dXC=GuC(u6Nw#;rR-APlXC2!KXcOBc-8eDCRss}iH$WQ% zEj=lL3l!D|O4=GYA>f6+Ahf3iDo)91X?ku8ob};c`bbMp>Ght{_V%Qw^daBR_xGF8 zYS-%|^!{;orJ2!aH1m6Yf8XclOMcv2@B_W|YxGFSdA!aY%vu8{C1*LYF^ z6hc#yJjn3m8NSs#WrsG)9MiNOkv~8ZGCcS%b6JJ3hww3!V!*|}48b9shoKIO0;9kg zxXQSzhl0UFE4Kv#w^cO?SV&)QuC=1NS00Hoc*T(4NOQ7Onxr>H{Nt6mKGbDH^;j}7 z=I70Tx%IE?Iq*2}+Al(DAi)rYTn?~G3Z()2<&j(?{mYqO@fWqxkP(2d->~Dy%6h?% zb4J}54LLl{P)vieTJUC6rvNxJVJX-d2Y`_U4>=Mf!DoQuC1yi~|D<_x8;VJj;@{hl9Kd*Ix9eW=s%xw~Dr?<(H>SkNLXck4XG*K>8pjaehP^ADJ7 zS_a{5XojQH;)G%$nu_N))w%Bk+F}}wqOIon3417r)^~_k~JAx z(3j7O2xv?YKB9eKDlG4(T^k_6)5O6&hdn8Z@AZR0`#qc6J(ZVyVQ1cF3sR!QDR!@IN((GUAiok~acu{L0!u1y|0Hp#Tg3OvC7 z^!P+)Zf@?a$3bMao~6Q;L=yXM&q5f@%^%k3yu`z*>fqC?c}Mf#i`v1$vJHn@K)@43 zF-?DpF&l&}d%6w{Y8^g8ZtoT3lHUSFI}aSCuGf9(5&*&QNB*TEK1ha#!CrXv9UeMP zJQpNr@W{ZdfhG{^q-h`^3yBF1z{%M(DMFz}k}#KHlA$>d_DTicug}7^k}sEZa9v1n z*N{k4UTak&qf_OgR)+^pJz|84#ZXd-LM|yfvFam5EU3<0qWBu2-5^F55^e!`CIHF z_}>{=uL&Ok>Wi{Oq9PVFp2y1kfQ;W1n*{ngh`U2(Th6It=mRJEw;dOVBa%WDAK$;- z@#Qw>VW4-9^}aVXbz=3z)YRr|HXU}rT^;$+K=4tX2Spr zfM@1}Z9m(rG+{M>rJ_4?Z@qr+%sQbJooCIJ&b~*E`u#^A*~jliYm10$q^KNlAw@2p zP!EBB=6o|W0ObA)}y@0a!HAKyRb!F^7byH2NI#sU!Oi5NRI^rK_KFP zt?PwlN%3{PxFG)qK?#55^y%POIuH!vGK**U3TQ?YmW+z!HAD+A)yjNh#$u-SX*6HD zs8o<#*$^D8VX7smtvoSz?@tSD!xzzY&?YQpV85O{IXCs{#4?;bn#+mSu7keyocLuLl-3E8?le4oYAHH|4cV%?x zu0tauhwfS$?Vc=GPnA#}qU$2=+5s9s7*Rym(Lmuk;0nP%gMyKXj&rg?&c|fzOFw;> z7pAUH9J{yB`VNfqe~RKgyxj}HTTpz8Zqk!k*OV#n65z!j|bt%-fr>e#pgmW6b+ zkW3b;X(e?`EN$ijhw{<*yv}_N6|B6ZE930D6Ji=g)|K)?EGHpj+goW;NF7&E!tDl%jk^$nrc2Gup11$uNC6W=a^Vf%npW}d@e_sQh1q4lm zG11%W?tkaKKD0Ekbc&usH0A~Hua99S@oWXKh&F($$gyKURPgD&z(iSEx*u=j%$d&~ zGah-K5nu{F@>54Yd)#>RdGlTv?c}p2a>;M!F}CIHLYgaG=pXaH=HhFxJt*4j`fp*ZeFZfk94Ba?bQs|Bl<^38 z6LY8w@zxVIXe>#p0KbC_X*AHeqyv&x`-R$)Gvhe?!w21tyAI);hi3j7B1Siah&P?{p%J zQrsKteQ$*Xzcms9A5zCZ`6ye!+@F`0j(FJ9iE!^zN-VgKjnBVE2!6^#w~mjq$Rprz zzFK8U*W+A**AwxJ-^O@(3P%*aVme8XeV z`vjr^Bty=s(W|Q3dp;3!10-xLf(v_3Be1T@K-*|M6Ri~Mua8@{c#k!}tr4NL1K17o z1X_6^7bBSwdgxt^hJU&lk2i%Lwu5L~LQaPFey&+{?ptuuIMR z-~Z)oZ6@o3Pz zvrK7{A?cR!4^2ErDTNYLqDUz2w?{#3>{z-O&qaKt2{oZAYR(v+9QEf$lLcdBMoTa~ zq%MqC3lHZFS)ME8y#6FRgTTHKz_tVwxUv+y5u*}~*y0&IR*CyUik4Fgo^Yx-7Jfli zT)M9i@+wlyh*P~#QsT)i9++~N3F>v2)*;wIP15w^`QaI{=0n*B2hcyAF*dJ$k3jCvTl(&QY@0cF8g9fBeQ3}Y9Sh@L|kb67T_C^!@f0G?veWufS<|Ey8#K7S9LY^g=nWz&Xlad9s zh&yeg1QY{ml5exV;`1O~=>3f-*cx~yf-L2lvMuVs&5Y}ov5|Pl=P-VWF3Rv>&Y;af zsF5V60r?HuWxbfyQGRa2q7edelt@%t-M1!sSLr!ysP~!2*FUX(=-iqTjj@jc4*OE; zt%=X$0oCr~qu8w>Z66UPK0XDF(}};w{h_lawG-|O2NoRgARoX_kfBV4>Jh`1Bh`Wn zVq^ELBE3aAt2-wbCY^egKK#%<=UL_4+uhzUWKmz(>+Y&!i(|1=sg#Q0;Bk^#C+vy` z%&Xs{fd4Sj|Bx+!H%*4dXXhR!cL9!;>P?@a_NcYWehl}hoVLN{}} zU!UlmUc*gWt^e@-5}&&$&n3_iJIx8o{ff1j;#0bzZAO6-*$QS!B4AG<)sJ6`gf)M7%#Z^>Q?>kPMlac@Hk6eS%a zHqf&004~v?(EA97hIxjC2S{w(XV47Wnk)5vZ^=60^=M$K1nSjWpyOl@8mjvi}kLWln?gdAy>XcE}QjthXtM5-`s?(*zi6Ro$ zG~WI0cjJ<8CR2w_pE{&z$vf{%sk$#6O(u&EK1ltDKK}~%ZV{n3)F|qXtm)g46%9lw zx9EL}9S!vUEAv`>SAZoeupMt~{Lx!R9_4ZBa2xjNKZzMRu;#nK9joBJ7NPsL6r05A zZ9xPQ#V2Gpu8Bc!Vd5hyVy13KuR;99#KS)zw4N2=xcb$rUjWk&qr+k`wK$&|$?DNU z27difJv&^P?5#{z;)U29u|h`#<96DrI0%2R6p-aW>4SPU>dItX(JY$?E{*s8ibcnl zf&huO+s$#^0S$D65@CKKn-rlvfD5x@jx{jLW>s*ZYzQH%C@w4REIAme%5? zcrF)jfTmsM@o^gQ=FkKJq_UxNguyNE5W*ma1rfuOhlQ!IhXY0u(^<;1)e9GDwI=M3 zt3rkFK&kRZ7n1roBZ28uenIt(RVRw$7c#|Ky@Pit!={8D;YjfCLlbt{or?l!D&8FX zSf@(pY}D7E1>LdyePH2&fftK9*sV#*Cq?WEv^R}!?KyXDPxAdE$>hlUV~-wq{Lc;J zz^hI?egKm2RPp^&Q|~XY;Yu{+M3Deimrj=<@^T1ctky+@Dk zjYN`T`*ZnnycmleIdkUrc)YOCJ~bY1oJUo-yaD-VYuzU8I$?jH!w?dL_NG0wlB7)~ z>5H64;B+cHMsiMqm7q1Ehb83IaV_}vpcXfGf4b-R9=uw}xhWy z*L(kaVPW-E)FomLiaf-e^A2Ow(<)0g0_Mn58fe4^As-bX_8BwDT^5pf?+509ol<9Ob4*`Bb z@F^W8i|dLQ>IjFju4~g}58^UD7rWfnWP|4*d^gxE`5#ydG6;i2-YulaVXcc7yH^R{ zo#e(P(oP}}Yv@9z19ldR1!NUipuyuZ=wON85chRqCh)8#XmN2P$IeFpoxYYAdH-<7 z=HO!>o+1~tdE4gTv*63Mc4?sf1Kby9O91AYCusHIYk^Eo7Dm(mx&wblwi^{eS~^x= zQl5@=lsJo)khq0m5z19)B8hV-!=<|{fk4rlB0Ef7YuDv{`aT zi)Ir_MNik#cx|1HWfHk5eiBGS!FQ>Z1?U5l(O@WDTdbuA&gA$BbR>;Ei(bfBb78n( zf?}YusH&Nq7?w7ZZmj8#Kd!HxDMnruF1|gLGO0(b_S|i^J(u|Q)YS1qhs^PTJCVOQ z@nfWOB+M`oYk>(8#@Ha*UTb0s^c5%T%f{o68_TR^t?2ktefADIdB?NXJni4JAG<*l z4)=EuOdD84erUCKUKcd|pF z?xq#0e_uO@5EWEq-9aJBEDV$+XAk9_{^aV_Am3PbzuT zVDB0Mn6mE=iW8*yC0#J-go8oS52r@%G?tSFcvXa+QMG6cigkhXP$`mws9rSwB~mfX zH3o6l&@~d3ldFI^{6YO+#%mERuFN%NpBhc|{ya50nqo$3w3E<+T0VKtN`B<|+mw7L zdhFO!Ti=fUnU+HAS27e$|8dqV1FbCq%={F2+l28X;?POjB1dD2;R9NP_?R`RJ`9Ht zM!*QVdsneFAR&uGwqorGNppj)*l>H1sHAs|G{hQVF1b~czL74R;_iw(XB}MjpjaBv znQ-!K@v3Hm2GAg|;{YK$DP>2p(#ig?d4_mVulESSfps}58S8|j(eU6{6Z~gy9l3PW zH8KO5^PtOlF^n+Gd~`IiVNlgzxMIL!$Vz(iwXZ#W_UviCJ$u&ZzxpTf)yD_UoAsku zVA5s8Fye+N%dY}~5ZrfP03!3pey|o?2MPrr9D%E(&r<-U)hWzSdJxL@1HMRwLNyj@ zDzPSFB?}v*>y058!@<|ktE|hPL)vGeujIA{OD5y`0%7T;w(J|rpdR7LqB$O}N(uu8 zKEitUSHdr1@PhSx`_+h&&`0zHl38{+leR7LX`ZebNq#${_+-iHM2a89YS+)P52N-J zGa>;IvH_)~!ubZOHv62``&aFj)N5S-&m$k=X_T0)xK=E>>ZyNWLn~B2^p7PM5j`!? zD1oE#meVREY@|e|@E6QgY`7Z%HelRQYju!%EiDZv0|1cd5ZtU1{fpPeLLb;p8mqm3 z@hK1vt3Fp%dtg=N1)w=feufl#o<<2UM^Ooy4N{qnG6_iD=o>E1&Vn{kI9<2~(Xc^s zt`469hNzfO@9z*o^}gOyY@%WSA_jSlZpKL0=-#YFT;|l92VTcIL5XwXB-A=nTG;bv5zBL;hSPbZGijq}mI*BsYhvh`?Y+rXx$X+#KUi(JXHgx)78XQEMTihHJ<*WC z!9;{f9PcEPou8-8qw&{1_S!gY*pNVfTs?XC@JV`Kt{*s1$GcDa$Yvvh?&L{}D}3&t z3@Fzd5K2k+&mZcfJ@E+GdTg?Eeho{WmZ4NoI`-w_^bh<-=ipJz=_ z2nX5%d^Z6>AVx-M6cy-co6T;sx%P$LyT9<)7vZ3Rpgc%u*yFNA3gTrOZnqxIXDfxVLM{b7bB{Etr}go|ST2=O$14X% zG-EuG*HeXfG@_*Ab2(p-ts$B&7*6MBCT2$~MnY9bs!_koU3NQCid1ztV{X|7GlgB! zb(^a5weUsMk95_rABWMoz$cIdD<;7oOoyu6PpTQLwJPjadYXq19aHP1u*^HH&456AZ79(VH6QO0X(6#gDuVMPp zq5ydo>vEUtU$-o1Lq!N6L{_-l3@~{}Q^?i1cnopIq;n?QaTa@qp+Hg&bXL{YIyURA zD#pwCX0x~1Y$DpD32~Rxc>(}fUk3o!72=;Ez47sbO$Tcdq(vUILjI5xTB786Y|1(* zrZ>R5n;yORjTo<&pg$r#PY}LV;FeHcs5H>AL|l{?u-F6Y!l} z0lcMm6!+Nv`>o$uzY%)s-{o>Y(MF0{+6V2@K`cr-2@fRPma{N~Dj4utSU^>9FR(K@ zBeiYI512R+%Se_82)1ZG7$4W?{F94%ba66pq<1|8_%0}puV4>)xB_gxttF||qI6VH zgqrR!L%85E()V9?8!gUtv^YC93m8kKmi|75mlEj9waM zj!=4fsadVGy45pHugfpVu})l1Irml??Rcr``p37O-{%N=ZmHPZ0Yj3a+1Wi9bz0LX zI3-`s9SG^;RX98&!8uH@GV~05UjHL>ZSR2A8Z?ENITeK??wS<8-2DzN`NG-+RSK<; zNYAqx9rc_@jaC6lnARiJ#G!QhP@;;=^Yu(}CKQ@st+@Ka?fIDzz-i-LxttqIE++9B z%azOcO*9gTa+>>(OvAImd_XRSTN3>fv>9ognX2}0ny438>4kmatvkdjX4&cY9`5r% zwlZjrK7ox78xLCLkRAc_>+1Yzc9(+s+Nu$#td$c}v%id%F5UJx2j-~E>aNJ>6!a>EadF(kG^Y+`1%j$OMf1zm) z6XpW34xj;4TvGkQ!pE68B2n-rB%g9>Us|9*T(LCvI)CBLMiW`D976&*w=3XIxMCsX z0rY5Yze55@lyCferdXsaZ&e}*9k@~Qu*2;KNecKA6?l9OOLpYH(S9uRQLA5hP9>2y zDuZ(IEYW~R{ETNKXmQ;7lh!KaT? zEeI8Yn)Lno*9s_vEU$_TU(xUbbU;3gGvCL+Piy&qW9@-%HQ<~bC(k7? zm88J~8;*yPGJv(OVpSs8n&kB7I#`>!m6gs0Y=&*{SDQ#Tf?aQe`>j)xn)Uk@Xe~+B z=(R97In(RipaC|b1=SI}*s z5=xvrN<=iC(EoKo+qe8Yh8Wk_^nJa!Y*WM2-~6CMC2vpF{z~hrPZ7RVFE`2&I#KzgKIYhO&*}+oWx9m zNr6~S;%P=iCq9d36HE{>yKm4L)9p5mITDD{aa0^^*zHaX+f@6o#+Wv2N30}$!}wQ{ z9CtF+wkiCG-%Kh9jxH4Ytm2RzA^ULA&ODMmIXs*kc6w~X#bM;}k`Z z>_rR;F(!!?*tz9ms7N+D41+<{sRJE_z-l<7QZJb9K0{Ywb;LQi%56CSt<#*MHJ5D0 z?;vd`?qzE0uqIQd3j$7K%tD;yXbh}P;@pbn_O3zi35rcS4NZdvg1QX-Pg)-$%A|ne zCorrz&t*M}a~!YiX)x!JaQ6}qZLcm@mT>7gtHnB|2(7yGeQCUuj)IKOy+s#54IN z%Jhca9F%X;I8{(xI4MU0E{Mp9ca6lr!81j2U_y7bsz}Fzgo^M7Cuj8@z#qG<_U1~nxzbiaEh-ug z@j>k%tVi(Tq=N_(t=lz&yD*xWHnN?`*trzBk3`8E6Rpc!8s!^a9kl27*f-eEK*vfN zaQGpRsut!jXul^5g?sY%;AQU54II-s+(4AovLTpKvoIKt+)Va^j)*O`l#SbMt3Y6R zxqFZg)Jxu@ca?hQ|9e?LxL>X;82a1G(z>xaKj=NawA(#sehT}L7dBa_B~4#l(c=&p znVEqI3?re@z?s&Jk#jj<1GZ~b)n0@hcrbMC5tx8IcD1VUZ$x{&2wL|fR#-Qlz~L?= zJqv${k1zi2;>S1cV$N5w)`c&BdHtz>`X^j~GFjI{^UN>AHLknZll*(k4^ww$`L@88 zOnMYC9_H#r^rQpP1e7n8q6*NfWD(*q0_+F^n&8L2E`kcIaAhDt5$zUl(Z?tV>5j{Y z^~2q1e(?Y@;;p$*Eo6U=dq~<55Nl{cxQzhvQ3QE-Ya-x`zyQ{;Y=gHegsF6&i`&Xdv*a}aH^&h_cAV-YqAEmlN# zI4#0@g%4`0O>X;bc#O0wZOX8TkFW#KN9!KX;2s)9YKFObv+t`Sl_AG*g9~*g{9UTm zHy<^QitH7wVG{1!+_=|f?as=|kKjA;^$L<7P^tn@O!D_2eur{R1^e<5JXA0yEVdCY zpTb0z$64a(X2YlpdXT?Kv5ExjJjq<+%C$rhiKSW;jMqUR9b)xbU6Jtt4zHV~ILgt9 zmwIcQF(NjSDBSh`$^Mdk2$E0;v#JQaWeuZfY3L0@j}5(J=!u~Z41IX$W9TDGSdfIU zU3O}~IF{fB0a(o(Ay^>MX?bcIp72N$F@+$~JaW90;93pMQN2U~1n{obHTq1NFAW+5 zj7lirAeNK#P6oIVYyosR)c>RkgQCnSmC8JmNL`|G+pOt57l=+=}x=1+> z&k{wC!q@I@c{HX35>eN1%;{j^cPUClo{=MBS8zGv4j11%xc$14=5WZ>XgnT8u6M_H zI+e+!(&M|F3wot&v6z+q!rcG96lRX4*r+<}iY5YYW6r^kf2C)2yuRrSN5iV!ksH4t z`<(VfCX;3?&9}cusn`F6HY~pVs`vPEM%5Qq=hQH~s&a9koKDNW_--fvYfSgVqj8TO zvkr9G?({tn4SUCP4!imZ<{A8mei!rOm)Pe8XAe$?yKz#xHqgP8l>*v6xCPpQji@`R z6QvRx$}RE=CCbIJCs|jciV_V?MceJSj`~uWkk1I}z6@)}_3XX(W(=R#QMHF7v0HA9 zDd98i^Sw)>Z=T8I?@9&TRUgVAWSA~%qBN#W3A!V^%1XJYl;ODFg-PjIcH!9@OiG;Y zinRdQ^*E91$6{hUVl4R9z20?T{L;<`)4O%dPx1PjYYDdv+;9idIqbX(>=JMo-+m_; z^4Dn|p)UQksQ_Jh6Qv>>5;x(KiBNY!{G^o%?Mqt3+yvrF1a>M!4CE2UrKFwh%i9|YMcgnr~yqmTI4#MK$P_Up+m@Kc^s5yH>tV|5&}X~(n;HwpRG5XQUr>t zM&79-19%=J2Acm_97;3z5~K*X2fk1Qy=fQ=4;UEU`%fGD)2G-+7I18w*>6lv=8S+#aycZ%WIwK2 zP5FEasnmW0k%z=n{ZHuOf0lFa=nk_4y7{~^alWPzg;bVk@)|D?IfICT1k%A20qmYW zZJbUS&!`K@fhT(Xsq}*SNdv_}2y`0P8a^MMY@GUg7 zR-wls-&tDtC@VQ!8u}6;6e@fXM5qM!(dI}-o84lf*}*DTiZ?sgRx{RdqL@LLdb5dd zvFi|RDJHnC!=#1utSI?2P^1HtHWZ*lZbje{_#3fOScz|V;ARrOz*t#vM|$eEC$3JB zx6>3o7JtPAuCbmN1s5IpWzTx)78e*ZxH*90DGCin0@x;}ETNVjFs7q6cZq8Ow z9~rd)=R>G)lqc;4`c1R>0&1a*KRq+;-btYT!Td_;kDz!5$+a0U52;-9`^U!18{ zXXKKn;;Yn(Mlxv>>lNRqrzlTXtJ89E+j;+pr})n`{9W=z7o)hUB+o?CQw1ZDFbY%Y zDBWjt_phcsCC{7E>BTfSP_rG{tOGs_em2k$3F{@C{A&~t&B0}fAhPy!u~MAoo3=>* z(?z=Zd+u?~9~HZ}@bVbEr|JI(cM-05z2TNz^xSq!F0Q7`8~5*M@y=9Eie4b!V_}mK zD#!lfLD2wgXiMfziIPqMm48dtt%`zzakbXst^0CM7jEs@<<9n--5tvHUGGo+;e%zT z_JI6mW@^LK-q9lb0nkc9ULS0gsS2qm@!H-la4o>yx7xcZ`jA>?zzV%>X~jMGjjGr;9i|o=KytweGzWs zl=-7Zbn&)DFbv05j-@$2p-du~0tB`#J)o(^?@)rM+jt&Ktoc+0(LQ94i^2M^mn1F3 zr64K>{vQ(N%>a;qj!+sHxnPBd@eB6S2847Xu|&M{WdqQ`&F0LTX0T0Xx!j&jukFFV z2KdFpL=#N|0BoxQw*!v;rkzBZ6%N;kIS~?1t*i<&30&BP-WV-M6pO&*i{-?35+;*ivd4v^&)8tJ({ z90}sH1u=*8+Xo|Yr(hAItQP~2BzMD06fX;n#HGOUlmbh+g-JqrlyS|!u^dtc!3RiZoykArB>v)e6tZ6nJnbTKZl}JfxDAcVh4R z#`L}&4CYPJPYV^kI9knoAyW=&T1L}8EOrcou!YgzqDf^QG;!6lbWKKkLhPtaVjaGU z9c;f1?qJ#g?*xl4iBs_Ar%yHDSc-o_YNvk+Iin;NRc3QY-k_E!7%{&dmO~NB32CqO zPiGA!skr^#R3zw@?5ra>P3$3`E222%h+mUk793H)qxl_fuUnD*1GZ_hACcD9)JYAv zih&Vq!H`?bBlWa7tmbc2IwmX=U+%?OMavVG-`$Vwa0e6~Y`oBV3sJM(pqm za`D1;1ap=cc@0i&j-(+e{;LtzVpn{ zg~aa{esc1GWxjv*p(6(hcz<=@k1W0s@8$V5;-n$@rac=0A+Zqk63R>7;gl7MU}Q=r2$^iTU>_ zjB%{CC?On@XSGXIk$UB_cq$5 z?FbK~dpV&kq|smID#zlEn<8urY02p}(A#a@7@m18+-F-LNR<@4TlH9H4^uth5J7zk z)A%#bupwR>x<<5Vzb~0=d!z|3I>qTx{di$`{meNxP?rNjEC3uEk9r^$ z1YVySfuyYMTIw!ur$HbAv|qnJcs)Q^DB!e(YIMw6?5IP-e2g{sFp6npHTz*PC^xI( z`OpJz?;*5@;7bPTfO$bejeW;W8>j4a(BwA>$803F!6FPfb<5eC+d+KGGj zbyhsv(+*jJM*;yct89k+3|dt7Emr@gIB|TQHWQ137L`izZ)WQ_+53aPsV-t~>Bfk* zQoJP3_aY)D2gXyFJfe84b)&yXs24A;t-~D3tz=)yBx;F_nl-GfqAP8o!qroZM z;|pu+rn?FCKWw6xFds>#zXP+I_`4KvVknC&q&sr5YCxr+o6a&dq3j|wB$7u=*#Ydh z={!OXJ^Z^xwgJijE6hN-kuo_Z1(0880a0;u= z57{S&1D^YQA?7)$I18-8-C5(|J;malaGX1}QWlQHWXK(;#vq2^1%Pqge{dA^pT-{M z2(MQM^@7}b(^{2qZyj)uWLWr!@yF3GG4npzRrL9N>LXBnh#|j^3H}8*K zN7*h<+%}MQfATJahSNJfF4kdz-#c`YxUa!Mjv)==!?y^^g*pSD@I4KBEVMAiVBBJK zW8lL#eQWHK-<0^)9Q^b>TN@bof=Rj8me*W(#T^0U6U zK~o`{RQCP&6V?nsD4f?_rA@m$9QY@5Iy6dgFkWhkro?nb){<4+D7#0IeX|SGNpQn6 zhB+&8`;_FidGQX^|JIkSeT^_qAqT)XN(pCSU?OF!)c_=Iqj7exXG?Opi?d<7!)dcc zVm_M#zvXqM`roW#r{hj|W5!Exy_nNvp%=DC!;SVbf-g&-j(wy{;=#9 z-z0N|nTg`WtqFk1tI_dF!sb={A=xkL@m=<1_7Sq079|WfzYVHmuKj{ml>^#f908G( zJykA8e7=!d4Z+^y^~q#%vOX5@M{2bZpYJbAB^;Cy1@2e%#ANbMl9LHt#V3Ec28VI+ zoNMeN))krfJ3zZCcnoU)Wa|KHjZ7}G@iJTc;um`>lI_=i-NsceLho`F`3NWmQD7+@ zz^%m6EMhwQ_$!z%i2DWOq*5>e&l8VhQUfEri~`y$PpBIEs^sxVz3)i!Njf+wOVyc7 zdMbz5={o=Gy|^gJvb6Y{>}|5t`$c{%OTQ|~IQ{8+-*f8JdrsAAC&cSSjek@7Thvk5 z$i4s`R`B`|07y>^gMj3KTD2%V8&#%OK4TQqy?-pFi)?k`#HkY#)n>D1l#CKy2eAzE zl~~ZL7cj=!u=QeTF2eg*1!Ov{xiDupfPjPA!wrt0uTu=ffs+QD<4hltgvVm760k{; zomO)d+|>k}KA)&Ux0D-!pXBf_(USaREVfb#BA7(>L{snqeF4sz=T$gY29VH%q$1Rd z)@NbAi*vg-`VW#O(5J!SnK}zpO|Uwk%^3H!DlFQ^7P1_zYU0==(t@;rzgLCcsFGbc z27`B{gY;Dh1R|16iwtBs^z0^=9my|tVW^23Lvkcy4Bms(X(VWf`65B=z!U=N2&NZ0 zo!c7#du*{I6p2HHW8KdG;Z+pxQ(onb!GK5cN?vbN_POK{hg*rj0Q#Wf&94Ayok-)4 zlEW&BLu_Qw+xrgrZXJ-Fiq9!KqluY?mg08VY;xEe1b!xk>xR5)TSeIg|GHK7e|x!q zpz{7;MMd*s{WIHGV66UIT9*Bvued!~>lL;l73;<}q?!9~D&Y^(=k0Fy+AA*Q|4(J? z!nOGomr>9l8jIA&cMjdvrX^X9xflNV6A#kz=A|ARM(o8I%$-iv{h=bY@5etd-Uf)*VmTm+TSfp+2|5Mm%O zr1^jVt5E}X64$|2!?WVIYF_*X3E9N;rre4)-|-ya4`B?G-2y3g=s7IcFdEiN z{JLp<#Ci0gc;-6Gp}fQ)(_}9@NCB+BnFB|&Jz|&RyHE0M|94&Mcl2bK?m4MoKS|)z z##i~a%eNeknjY6*Z*PGoVTKS4fJSOYoDzT~x5gGJY7)E^LU8;x_&AcjoNLb^ZuPE0 zqBuU0O{cTi&Gh~qlsW0RpS0zK)Bt7q3=X}`8A?;?^@0b?^T-QjwFw zTqi}js6UN6;+-)ol`J8cp@(~z#gxIWBT&k4tr+j(+9C5QenE%VtM3oa^Mvm72^SJU zUft;%{ys2&JN?50@a2W#0Oi3$zr=nVbX4R4+5>;5W5kgQYh%4!r#Y=rnj^SK`dNuU z9~^X!oGK+c#XT|Mn+KVFg8U}=9_J_iUrLQUTU2{_)qLO>2X1(b))gq3K!y3T?aEYMNyu zn(HFufno!L2Ty=D9Fwrde&hk%t8xG4`Ae-I`&{qqbc2t5-t)0`r%PRnb-}_9gDv1j z?66%i!*+uU<89QxR~h9HkqA&voTq$#|fe5d-k6m)oy zaGQGBI&jQdqBD;;t@kZzrk71^8o&oa?xMpy`{b{Af}OkMK;ToJU{DPPACm(NdqU0R z``&Nkf}rQuaK&rsia_8f4z)nwN5v-(>jdPxI{b=bbY2Vm1k$u%_fGNYu=ufz+q@=# z2dIIAbQjqZ{0V%d=b+k-{#x(kQ7F?Cw+CJ%f#^$E*7 zJm`pqzmO^2YCo!HG837Mj%?q^`CZ%YvP#aT?YDUo(P8)(;6mD@eeMN{n8M~0ySSkW z8uqtXpTL)K+6!X`G~8%yuy>8D1c?8&UYA7l4rQb6txd2;riOK(eUMZRDSc!83;s~w zmfpckBTFb4KXfbd2*R0?YsSc_13`{}f3(fR8@u0qK)7hIkI&{#c|-I0nS2US?izyK zDIDJBnn;O6P;Ut=1i-tU3VDZd$%M-W9XGD1;=)wECPL{>;2J)Muwmde!I8kJ5=Pcp z@WLYL6!J$w@+Zu6uGzr)4?gTWxHgSmS;X~NZ+I~Q*diQnp-zA{0}0E@vx_z;rG)ZE z^cX=CqHY*}V?r1a+S$D zy1-8uv|_?bK;yIznh3rQ)F}EeqQjx4jzfeW1A3Euhtc#;yQ6AQ3wG3~8@uAEH8u9te0_Y)l;~c)f)Yb?if?GqJf7w8n~k0-w2Kr6Vo? zR%CeY33?;#T=CNJ_XAy;5)izpbdu61_?s6BG^|r-*BiybQtXF4KOYO z>2X^Fti5yWony#JVdbp&8Ffsvdl1m`@b(6H2d+bE3ky{LFEoHcA|A-|ksXyMyZY~O z{VQQi5-(4Bf7Zg+gFur~tq8rQN!@er=SLKN%$_ggDv zI$$5D^sXRo9aj_i6};|MV4kS3pJUX7F*=C9;^Vy^e++{ZMMn^?g$M}{BCrGCw815G ziNz9$aQjC_G=f-R9llP{OIwGm<@fUxFXnD7RSUb7srr=S4%bqHA9j?hNVG95x(|*n zP%iTRgt85;U%<^m*{nF}t&(%!w|aL+$wsM+vL~Wx5!u6SVm~J=W9B)idY6zRs9(^E zO>OLJMC@CRj^>G-ZO2g$i@AP-LCCh6v1~S+IsOJ4k2U*k#!JRa`)Qa5wTQ~g^{K7q ztM&`Ui&(KoP%;%14~~uPZLK%hr$yeUySAO)?`6?eqD!fhcWbpD+SX3>h^|NQzM;K% zam+T-0^>8|0orUIXS}U$GS19#C3+Yj##^Iqw}Ez(rrJ5uUZSlmS&GJg=A}kIZzKP% z!+kWLO6BRj^SNvJd4(V&u%YoHbYEhw(U^v<;NLc?U%IDWYJA_c-)=U}Z{COGGx$oz zyV-C+vw69}exEt0UTUNdmIr+YJEg!21}jeGAztJXp?U!#4W2d)s93OSs93{+TROXWxmLTZs_j~>4R{E+lhx`i zRc+O4>oEn%7Vszdg|FZq0+j^x9k;O9QtLj5EFee}Fj0iH?to;msj8RATzQG#R~)uU zzmMo;xWRFR&n7*j$#FiLJWGZcN4(x0JeeYn5c+jd^g(db!n_WtVG;)x^+Og7&DOMYKQX+pw>4-+lSeKi3rVh9CA z-p2etFDw`f`;Gm0Eqt#zy_XIB>HfKT;iPrWSXlVkH~&fXT4#XA^?{Qb1A#wD&ofp#8iWYnhiFvgk{d^wS2?57& z$m#F~i_8%Z*qscC4t;_7dNiy|nX){|ZCKF(%nfw+ELsKX$MfgU_f|T0ER*hV>AUM^ zKgP$w-+^y@508EvMO}IGQ6RCCV2&VS)f|xTdF(ehcZ-vUmhvZiQ(;0Ls($btU z-edCFg|ib2liN?T_wef^1s6J(YQ{uw;bXY&nf-L#A^bKVPMfsGMp%|4SB)bEY6xSy z3?Y`@w2GBIBJ zq28YfhWv7d{z9>p7DuEaAI#;p$W+&@J!z(_Bb=OT>;=r1Jb0ohlx<;X34S#vFo);L zvk(hN>97rG1*)G0g>NGMiUP0lbqO(^vv2{IW;GpAg?XqeoO+&4YCuqgV^fLim>O)= ze!J7Ah3#ha_P!8OaL8U{kqZ}Wt4ZJ8zMpnFZ@1eU2fQIfHysF08lks6WVb(Lw;7Yc z1M;P_^Re8~ZYZWlWUpNghpa$wdonA@nld_;Q^NmobZqQ10C9zGp;FCy%FiXrp6oh5 z@i|X9G5Wo;&1mjUJ|Di#zR#Y9c0xnHR0$~=i1l1ffI1#?jOkfbC%b?H_DdKlVYig5 zBOAix;AW7DxvOmHGp^7 zGw{LNaxydNG2x_NYG^-DFikdOA=ndk|9nJ zFXFIwo+Fle=Q#$A%~)mR)Cjhf@zL^Y%A@12;7qqlcoWrRB9ZKD9m2%XKW(iK6r1fp zuhY5-hF_Zrqnlw7qIlSO(#;`CNB|&~>k^hS5i5gHz?vJ=Z~o6Q#S?bQk{^;+qO{NF z)@Jr7N^9cSeI!p}GjsTGiqK-*Zhzk6I{d+DkE4_*ynba1pgx(iV;1<+#%iXAx9|7hhuVcYvUmJ)zcy+HDQ z?@H`vNVj@@2%1$!9`~!w=3Ur*7*>(Xw1%-J=~Ay;F&&S$cvLrZmRTBeY6JdR0O;Zi z1IOyIoOyLc0^;&I6ySJm_*}gWm(S;70P=0Yn#6|INvV$ag=Jb!uMg3;%PUO#hpV)v z_4Qp?tasC%p~9fkyXw&Xyk#`rYwV^;n_4j%?-6#MzT6F+BVyGWIuv_|N5Q~lpZ@fx zjf<6wPj0X)U&i4DHqraW#or|y94eRaS#XiAlHwV-(F<7V%4~1&THU%wj|8?IzvG&8 zv`rbSKC(#K=!d;;u!#%511a#F^-E@9fY2D^&m*}QIRF(2Q$4HRV_n!=`A>s)!1GwY zoN)DLxOP?{lUi9)Nd4KpXwXl|ZKC&e^LTRmZ+OsQmfPXVS(;>97pm-vd4nC#38M{a zS^gM3iwwSOQrsJgQA7*u{+kBc8wn5jgA}9@F|Sewe~tPGUTqWYU_cUIpt(q?9+1gF zxTV0%M@G!P!wO~M5SD4InOw0$aUf+1W`=f$O?v&#kCG-?t=BrCm@LD$=!=Scfi#GP ziJ~V+>ByT;Iy}k1vfn2>OxH3Q80UV%o)~K_djdgu*%QnFWmU^4(_W}lGG-r(GQvIn zU7s4e*869ij&2O0+sWEtOPH|Z!F=Xw)oibnl~8q$}*L& z7W6F3@KRZpp>Klz5}o!uy9JsSft6jtXD~JRxA+OP7|_?jaENzbwa1?4TtcP`AJ-M| z6xHQr*l;hbtYpmOw@vXqWrBukF+(AlwPm5rqsIz+$0nX_MJklBlI|sbix*&)+l9<6 z=Q2UdXdN)$Wrt-K0euq|NL4(MBK11N+F(sutJhahD!l6T-lkx0n3aHjpoH5>S-Vg% z)sALy$^I$uR0vmXO9!-P=oaot%!kpA^3vk9OR+f=GZ`VM8ql7KlJ~37gw}Pd_*FD) z4^4W}ssbvq$v*-Hg38vfN;?+XBtDHtIfr7kWwf~PGpm~|FY-u>EmcR@OsM^Zzm0J*qXb2vqv9e5P=6`dc#*A zmJtLD0N4<6X)Ht#X@}8=H8c%+7@5I;f}%7zf*ir86Bf30;bpq2R>}x|ytN@xKr7WI zS)*yZlD(KXgCt}JNDg7*0|p%IDe$B}0Aa1r^TM}<)c4@gp(5wrf7@IW*vh&Xc)r}6 zE9cBsvd)}qE;smrqTwtQD-32@*;hrEHY-_jdC69~)&Uh$^s`mgI9ic1mJ(*=F6Bip zLp_iO>jjk88ti!BW#NX2!s_J5B_`9368C=ZqF)_8&a~shs{bNC?p>o})to~&7C2MD z*UQWJS)sdi*fB@umJUd?FXsk#D=k|06*lT%1HN2qW~|oRYDS9>v-*42w(Ixxj`lHo z^ydABp~U$Iiq`;r)@x1)#s~mxKnLHb>!mUTeflS7$$DcNhY~*kyaqW@J0a?6`ZO?r zUQ}ztl>MS{dk~t@#G#QOh?p8zBGNG874vpm(3m%(BZm?xH4?nN5e6_$O;sPvLTK~C z;+6qog~MKX7@$+Y)=o|=j!j1W$ChSBX0k!);fmeia7h_C5cPT@Su0=QCTp73bXwP- zp@+<{3;C$B8&?z7QfsYDcRNA8kx~Q?Wim)RGC8VlHm2b0QKoE8Jk>I>6iuSudtndaX@|tH~_0O)?A`~ zqA0mM*?Y*TZI|MdZ&H*C&kq)5ZMR~y2$;cIaQbXWzYtq(LMQ~JYau-1-MeTOv0cbJ z2yW=cPGZOuFxW?-=IV)&$6ltN&@e5&0B-Ln%g2)Pz6pO2>LoFH1#K2vo`txGZrY`n z5LT#$Vv{@%&=Y(+DLX^GPffK}p5M_^ay_OrP1S8g^}C(!c(s}lE!1x(QKl~Z;YeRe z7~o07ed8YDX6 zhE;f=BaEJFvg{D&36iN%-}bs4Il-%qc% zF5?pLp^%|zZ3#e{n*hqw-9ryxT$OoBo7#*H)jR4fA!V?T@d&XAQ5`S&H6(bce>s+) zG=n;>tT*(AKrzEDoqw8B5;j?ig(TS)N`!n#pMPJmF_p+3%?^B#RD3CKU|*>|naDCV zUMeQs-cTTc{Iy!h`@T#O{Fh-bL?sV$z!t&@kJDWV#sS`DJQ#}v9jZ?|b4x`l&MrRn z65sv1fT{)@5m~E^7maAh=R(#XIWihn)o{iW%~ae@2q2hyXeZLCQ9I2J9emj~YP^C* z_)C!y;N0SQFToDcm?%|fa)Wf zq0F%kDAJn-F#ZvgHrQXliD)TETBs!hitHhJ?vY!?EH!_O$`s0OULSJ0e4(gO9It6| z#37pXz*Z}!;RGmnCBnuGgUZ8my;y=GfOL2i*urtFYjZ`)ZwI$-2pV7*s7NKQj3hs% zIvi*O|IQVZklQ&-KDYe~nVo$jTD)g*_JnVAW@&~EmG|~u1d9MMCj&%Gw~PR*SSYhD zc7tC$n;brH&*GH(mde!9-g5CSAR#~}0s07(Oyu0c#||>XflA?xM9lz8&|FYEZLbs0 z61rQR9Hi9(lpblRb}1owaV~w_Am_~;<(TDP;ahxV(PUZ!2%{3QN61@?m6_}#z~*1? zz1TT*-t9hj8ic&lIqy!m&slSv^j3ECb(wom905HC3R`*61_}l+{nAkI!vd`5^u|Oo?4n*{(77n-qez#vyleH&7 zyDE~ip#;EFlAf_z3hOo{94&W)k-ebUvnT6OWi-|p38nl>(4P#IiyNmW)JXna@FU4h!S>v|HEyF_R31->Qw?V zg}w|ZOxscI2_|TRpRYpsDCjHUV2~#wH4OJZL02?pS>h}ZOV7S_=D`PNy4AI{YWJz9 zw#LbmkXMD?7;*w!^zmELT6V~2sb0OBVOsARPwdWdQ@5T2Ya)M6|5;e%cOR=NTU;7ZUlc8JUc&QB|~2k%NUS#nSAP3}#u;JtU!T}pm^%6;%%fz;Hkp2=VK^WEG0 z0J!IWhz_7VcGXI|+2ZfDCbbLnvFNid+ERyhhg)-Cl+wxcfOU&Nm&y`i(M?|qq0_(L z*jp&Um%uj?+cuTKADU6mK&}_csXDC7;d(_}KRf9)7`8c*<7WjF<#&hg=?=R3tob&m5e_yR$ zs#Ml6UD{@{P4__J%^QvZa>3I%W`elG)(fry$Vq1F%z=T? zX5nZJK)c(V?%`waMr!lD4jU|G4h>1md`8vb@c7wxY`3Yy((qxAXD`gV!^4rsTdmiJ zyoPFLaHH(=c$YXHS&sWr4m$Alm8&R%5c~S_pYU{{5Xo+4{%$1Z5GhJ{OL^ z8Z4!`dv=h2H@SGhN6>g7TsvNd224WzVl>2qVK}r7YSuyZW$)hI?q|1aA<^VmgTc#u zg?$n$@Z!*6w0*8TVFT5NmH_|6-x6C(hEsBS(n*0p|DgBq8>^G8+Ya{5axBuV078^$Ju44+Zh{CpGDY0yM<#&NVN;YPUrBYNG>vy z-)OZ~=~ITd9oU=1-1;_bym8)hbKsU=jk(1KEXP|WV=285vq}OIV68Mb2OxV8K&1#y z3VG#upv`{h&F~f3OAxm*@IuHkwlzzLjL=6aVcW{K?1wq zAFAB%R|B5cy)NdF{r5d2D(O8oT3%6e?Q^_`x16osE4R~ zYFr-z2P9YmVUv;ul@Fk0Lel#4~5KcVMn4t5kVFO=DNSvIDqXEUC%!q(vK3f6R^i)%SF@32<_1$4tpS)i4#zo5=m3KUbo-b`;OZ$`#fG}ITEyJ*MCG` zc{%;0SU5~M9ta8{f~aPLhdbbdHB8vuM#UdAM$_*yMgz3JTQ!V|VX!m3Zp`on5^OP= zGJfsn`SDY_VZ1AaZ!3V@wAKu=BlhVv`5OXV%r>(K#At*7S&KzqA=N)vgODC6OwJ+* z3JghDjLAnqO=?iL@W?rg16&iEEJSb}!E?04Izj$H7}aYOc((|h9H-eYfM%~lZ&*am zF78hcb^b~g4Lli;JFl!DWen=^~m{Y z;(SR{X*ugPgwYgOy>0M%;P$R?EhMG}W&A?4<_dCQTm@PkvN&>XqJ!IFUBtb=!`?U4 z96ACW#A#3$;;E6+hXVn@i$&;I_{vByYGkOzNQavso}bH?0LqM^jcJgE=})D+ZT--# zKEWvWhs4)QmlgtH80_M<3_#pVKy%O7u#1NS3zv#+c(8?jL$W(PK!;kXEGVwte@1jc zP?mpJ?Cur2_4UIG_Bd3Vp+NS6Q}u=7@sLk-UdRSQPvFSglFPVP(dW&Zn8>qqj)eD z57!o8JB=MIY9oQTx}e4bBO2szLsgN?Wqo})8I6-;bUd0otOR1J8Ve}5NARry&rMS& zAb67mo=?laO$_w8k|eqrY@yEnJwcN$WHbB4Zh5)6Tv@x!?g4_nd5U&#LGFgm+M2a? z{2eo(iwc0pKSsUVs9`bG12(K1wBw&tsUb}xxDNk-+XjE39l*dwzs_?ySH}sWd~^XQ z7hQ-R=d20&IpPd1Xw>&OYP2=5VavGVHKBf+~Bcbg-OT7;%n|+oi^7<0RQ4tvdElkDaizk)GMx(Y%x1D_wZ&)WNxxj%;cXW)DQ)cB3cl}cU0tvsG2 z1Pwqn`ULUZU%@vNDZ0tjdHUMt-Y3-6rrC!`4yYsXYS;gnJ;&Y!TD29GI22|Lh?M-z zBvNSO6BhdZdw~rF0o+c1f!_6nh3EEv(ntd%9Usj%^Y*UOG5rPE&|?c<-Tz!VZ5+kN zW%Es>4Ez#!>~~<@7<~E;DU7_FNa_Z?;*#h36=DU%rh~Xt{8{h;CK6@u3R~%}YzkQq z-hFrmtxa3c*pfhRu;0$|aLK{vk?z5Ib`wk@9^RwvcM*KOju@C0{x(RLKwg8}V&SPA zTV<(<5(&BD63Rm{w9^>L7KsuNRy0GUX&ST0E`ssO$2p(ACQkx|`H*1eHR!lY$uUjQ zlhI6A$I1n9U|3S))6;QP8ct2K8l_YoORwUqncHXgrb3B)ZhCa?#L@^kW-9(faq^a1 zCW{Hbf{zy8@ErRn_qQk!b+wa>MbdZ;=*qB8LdyVo7Xt#|!{ovT4FuTPp(Cp{A)4D# z+2OnP8>jDDzCDvmoy=eXF&2!#0{dvB_hIKSiQ>b~|ChNpk8kWe?|b=T-}iH{g8)GQ zB*5WLV)ntzXlA4tNu!OlBrDcPmSuY=$Bylh9Xqxm#apAqPJA!NaUA=qaqGmS<1DqE zCTTulbNlJ$x`~r;Zrn7Dnl^Ph5j%-nm|y#=`;V>n`$;9Jk>F8qnV2E?EP6{ChM)v=VSN^hm`Y9%p4tj~CtEqr5f0BxdgL6xFmTA3F+O^aXby6JV!bw@_Kv>z z!df=S-Z9KSIqop9IF>$hM`nbf<)gm=gU-H(c7WgMpYe&8f0CykK9R^e^4iWI$0S7G z@5-Uj9~-7cv+X<@k~R!Is^>w|4ngf(6%;!$Gwliv8St^PVQ`L?I4S;BQ#MxB6OO?c z9@4A;V7R00B(;yTeaE(xU|8<+ox~Fn%Om9sBob}`o=JH=VeVt+$Rm-MWyK`7fX-*U`7%FWfUmtTs4<-nB8Z>2TH$DIxxWzzrh~0)s1E3 zz*WoPJt~)6VYM0k055THD zIninmDY^F!*+28;i5c^vHt`7SuqJWf*e7nH%kg5|(S_7et7)CLg$)6&=_TZ@6k8J)An95N1>h?wb{bTY zq=Ld#uu7tNtE$%vGl6uOV|kECJ034JtcYjI(1d+Peh@NA3GG;*V8>wIo)20|9%EMWtg>dWXUVeJzT^p&x_nv5kRR=x?|sV(1FVvY4d=HGtEe04(x87}dT z9&CEkY+mk^!^uk>0a`}-?sG_Mv>RP-THQ>Sa z+TuT#q#{k$T@1Wf0?g|s1PBxZvB$h}f7ki-XsRPBAj$XWY?Y=wO_Vi6fy?s;Ao=Hn+f)- z=H)NcoykHz)%zmbU)l=|eqq!!`lUj$_r+AckW_c3@^tb+V6e31-Wz+T6Tw`NGYej1XRBudjc0p1;xSNS;j+*%axt1M~0h%iQXPwI`)J#fEMBJaP(cTf=}O-VfP`B?s~= zK^91iLxTy2kR7$V5VY=?JQEHjr{j3B4?hxFID2^O@Y&tzli~j!KDj%Ud3*Xz0ry?O zJCyVGgPqG_4ZD1GzFz092YpHA4;ObW7Cp2v7GRmiG}b{wEQVz2Wb#^@cyc0;n}in^ zA4+R7*ILmnwsPYgOG`_W(Gyb`G?>MvPDCfI`<95)=dpC3T+7IZX1y$oz0ItZ!|-{h zje!a;aQ!%dl39lq7B!D15+a5z9nfZLL9wBAK2i7hxUyQuKWT(YqZOe9ilFJy>5)9? zg%W0Kz8Me|>{-#3+wCBgVmjnaMSs;jb-386*?zCXX$A8!cPvUwo7-nig#r%ciN&)) zzcYZ|L|(W`J{?4@w|rscxStFiH8<4gxk@bJb1SFQp(6fJGMgQr+V2nO{pVQB<0HG0 zH)933-c z?XcKRMPn`pYMSBzchKch4u1$okJRz6LN3~6wJd7SzIaub?rxs)aHmVRwc75L18POx zK>87f&IX(D4mMG{*HIl-W(`^o8lR6O4GuD@!&k^T&_b`5dFY#3$C;Ff9I=jK4`sf= zCMue$ZUu39X@ihyq9GhtO}iDw=AAe=L$5nh2wCT!I&Xyv5w~}mi58hgmBVqzO1Zoe zu)Wbhb|F7M(X#V-yEQSNU&sccpD>HEzGtp3b}2t&7fY4oXW_ai!tJ3gs-dUZ!TuGB zX=DgxjasL+asJ9QkNcE4M72h(RNF1kQ+(Th8LTq{JeDvM5N*X}q^ddpa1{~48$!XP zCI%4&dda~FO4O=sST{(St=AX5LB+*zhUvP0t!u6A(e=fQCGK;Zdv3bnyzlK?hr*ITu`e69#U+0};UL?q zYF(3D-C>`PjdrvS-s5he*1H|E2G{(KWIpcGbA#vt&*-%ssc5*e@4e9)fyl3#cHJ;A zhziD?XzP-v+VEW9w75IpX_rN5x|*znf)mN{IZvjvSoH*Qm78|NaxLR&>Gb`4(MTjZ zRf4H@a?z2#>4S8+!Fq4XxH9(m*v2aEeBvb9hdfiRYFhKLc(CS=!SxH2A2%C3s^uyFVlSHuo8 zn=1%AZ)9>Zl8Qz5ef*ZOcxj#gMctkQ+32OnbBUm1DiEf_eZX@eGlb`GAHCkzR_~hF zd!#LlZSn?ljIs9%vx$gT^kGhSON)Qs>nh@`%)CoGGN&|K+Z~ZQ@Bq-SZJlaH67Dj| zz0?-~$PcH33FM~?*zp)+QU)3O!VRE#ZM8hVA2JOK3`H{rj$6T|k#k3&$}Df1ajd)2 ze00YQlwmv%)8O{dYZ%Y2n_!+xH+c<5>t}CX(sRGuym4SM1=HC;&Afv0bY4+G_7#FS zaO!7=xp6NR)kJh@Y#64_sLW78f+O}$Qilo-AGk86t+kE!LqPCm*ln86@}|VYy|M94 zUXW$q%$^_FP~DAx%NrGA=e^C3u;p@QZIJa=7=mijD@NBDC%QN_?TG85hq?V{C2eQtAw=o^Gw{pa6!0R+~LMQ_mU z^oOCrek_^v8>HrAlesi@dJlr(*dSfi_qx3?yE>l^J2pEi6|ZKJL7%ht(;dO)b#`$+ zaM5WLMMg3kRctpugGl2Ln-vw*Bi~Z^#=+1ftDmW+vv01QVgi zqjHvxp3n98-Oy`J5gCaX7KBk5A~=->#wENlAQ6%tqb3))K*)h2@N6v`MQ|CQEcSm|K;hGiRC4#*_Xz#CMkK+vv zJU*_E`JB=5#VKF;tjqf`64?GLhu`-bE{DhQHMgiq<@@gW_s4(a)DL;Qeuw&)%juG9 z=`s8ycSj{FC;q-9q0GwufybWu$j|nE`JcZ*J=y!Z`sMq3|7P;tn$PgXKVZy%nwdY! z$SL9pJz%1YHORqRui0&s3sgQ$x(U`^5c+t*@Bm_P!(m3&@)9?|SZcIw5cyDH zTIJIdDs2hR@z#KpGaEO@~OhFe3b9($cMf8 z)Ab*n%lM<^`?4Q;bm4Hg@Z5)v1*~jpC7#YjLwf&5A6+@_E=Hd8S|_XbeuQu5k09Xc z_QX!}r|8y6?t|V0SsCl5F~>>uij*jXESdzY9#z=d=x=qB2XwUvxQoa9Bl~&{Ftd#& z;$ClC7E=WTFZI&Sr`M+bwWTlDHDchUR{|^Wk^(tdEXZ1Ub6-s)-ZoOE5-G&!&HKCj z8*eUG?_aB6-!CC`@YgQ~ahZQB<+y(1Z&n|FOXYZRZ1-9v1wte;X?9N) znd8c(sW-jZD&@{{-071P>2J_Re|vN57Sgx$mH(uE4|yfPN?8FnHCB^V4~P!JA>^;3 z>mov?5i=df9VLghB8w#%Tg3|rarw!nC118$ z*RRtdbX`imhi$FvmLy^yyNn^i$5l$FlK0{W8;Gpf-?91&)eO?N*nJH7iJqe?C6o1; zY|jZ~y<;do_(7v~xwW&?D%)E~Vm2!%ASn)%WY6Q0;yEs|W8AntcgpsqbquhV^r4q+ z84G4^ka|dsO^)>P~mQ9eNV7Mc(?+0Jo z_k;c4t5z%<4DDUvczoXvWSmL68{c(C+uMfL4FFEMzQJ&tN(V=f7D6^@8$1O*Up~z-JKF`+H<(4kswy^$F@-5<@2D*yyoeAPZ$0jvs01HzCg(1d7&`qR-YOMhSuzKrT zkb3Mkfv5Mb0W>jnptQes?_3e;k~k;yLrfOJ{!|?lNLL_tunFN2{MeiP2@dS0vu$y< zfo^jZYY|8Rg)WIMg9d4aiSXY^*I;}wKk_ApDsg;EuVHY||KX1d9!MlY@0twzC#u2F z{9TPe%$HBZ0}1OJ`DHs2o4-@`4(@$S9 z_N%w`%~+c-dJPQTz3x9KeCFR?dEVHry5?nXF6q*Kk~t=g9tey-4UsM%R<3g z((QCMCQ5|abdJ_9*MIE%Jx6}v!le^myt`QVOt+(~ud(wJC-44HXQb}k5)}t_a|I~L zV7~m;8*aaRKKQElzV{37eXsQ!AN-AP%bPE}SBBAWEHSsEeldR!jEvf{!TgGYH?DOR z7WrL^EYa55rqyjpp6OQC+Ei=Av|AgU%S}LQin|ASx+ZQ{CC47cO6@7F!+T0#}Yx|J0GG2wErQt}(`S zeNgTlz21$nIPd+(X_4W7r~ER1*64nB9MjJ%La(7K?_+ z_^9Uz&TFoL1(4tsnQjQ)94x0EuLjlY1+}%i+v#1~jH<<0b|Q;3;x2Fp^0pMJc)!VwhrC*Bv*xDv~5z?9gyv?gZF{kX^|UDibKrAt4j-uVApNv ziRk`&&twUrg=$*|6yab67>zKpZ%-d+b@>|xiq$Ek2#_m!??z|mzgdk%osKDoJLwp_ zxjzQcD|=EZ9&xH^zJh>8?YJlv$1L0AIkFsUc)&{?fX3J zx6jkJWIbRUiw{hUWnz970Sz9;=bwxRj|byVJQ?;rnVZS|%s>0QkfVKGZGG64$A{b> zPus|038X!ZLDwrfj=nU`Tv^hw>JS*JuDDJ=a@v(1uje-4Nge;eQ?9~o1(!N;;KYdo zu4*P<+ug0@Gu1!&fHRSBj?4vaZC4trDFLxK8-mk|V+S4_F|{(@E>w=?cJ%I>t%tl4*u7)3)sfwq=p-ek@~GUGbR9U7kw!ekVOucDrJ6 zSJnPMr_Z%M=I?F!Kh`=ot=2rpNSzw@wKI)IrtORS-QHuKt(gmRuHVn)^SR%5&0U~9 zjLa$X+kkm(EXf?KotkY;@+Z+z{XCs~AzBziX$jHHO45rvc(J>yE0)OIFOK01!L_$WB1syHsFVw9AA?~+KI z{#-5*c2VqrkXD!9xtxCZ;q>xTeiv4<3;t01$q(Kx2D2%a^|=GLrxl>X<@BpxonCJH zL-mGyb^8aOZ0ln~F8^HS_5*qh8=b&lb_Ek8e21Okj0wJvPTgRp#E44UYi<&N99_yQXk&Hb#8cg;PUy|GiK8Uyy*T@8HS6fa?8W(7BvMQ6?Aw`4 zvirM$qU}IF+yCtwT@wYnHs^ZKE=;&)TyuY6m2WFs(~rD+bbrfz;KKAH)AH3RB9TVIDygKQ@#B^hO=gRf#QwI;;bMWBv+uPsTY0A5MU> zL7F`Yj2dUx;6y`_<;FHX{mzx^SElc~)0}roK)dBKrzfuY%FcJ6UNhHd$=(@GX)wfp zj868$L@=KM&v+kb#>dCr$kn8x2fcqdCZwk2!d0p6v<;GIj)=Dgk{vKs=@uG$lGcDG zFQ#>}tU@efT23TDIVnj;z05ACp}OJft(I%Dm~p#fF?XtRwvv)J?o4sg)skSQ@AT#W z;f_{QS=ajl{!(T!Q}W-@ab;6gAVs&_z3Z4fX4Pa6`s$HL-6sRHW*wV!08sc2UwM;} z)#yxi&Uq*hIOJS(W@nCe=O;nNs!`63G^aq1us=%-s|H90r0VEB5w!zap({DGzHveJT80d&DcWpu-9 z%HAt0esMELvdqi6Bj+S=R6o_OS+xyhu}8_wV^bDlQC9^~!=Ijyc9;(b{!r06O}xh# zqQuY}>XZwNC=yaH;#(6cdwB)CwXS(Ac1O6S0U&jI*VtHcM=b^3XwQMQE{FgIFt7mh zE9y&lu1)U1eb-91VNQ_V!llw1Bj^90ot1L=OPywYeni(r3GCh2x^$_Dl)-5c%kaO6 zOcomP^h;*NzM%&x4O11(4wQ<(Mdf{dxSxCSy$=@f`0oPMSd)W!8}xH@`|-%S#GI?ki z9mW*VR`JRJGD^9Z8l;^0v3w`CwUNjM)Zg!Y1K#mOHWr%ded62SRv*asp3I|>)AVDp zVDAsUef`E-?^~m2T(#Q0I>bJ_;du9%k4uxAHRCF>j)z$v z?T(0NmJG|gQo%QCRd&`kH`nM;y=$tu*}ZzTD`SJPU}TtoN}I}@GezIg>Q_JV1)a-_ z1B&sbdyEB4LYLfvkwo$jYKw*7<9^aAchF<3ZoN^0^=a#e2JB@GdI_ro9pPZ z{zq-gi!naXZ*)YRq^e@E*0cs*Z5$GF8Q4;>f3_P=aJ_uDcZ?b%28mcAQo}T-Zc9bu zL>tAUcaT4}bce+n3=cf|50vqezeU26c<_sV?nRJ+={J`5oHYll$Dx%c!q)J{Q*c8;E8fSQaR=7j;u7dc8YxUf$`8NiP19n>dKe#!A0z=N2F)-uUvGSl78 zBwNXJS8WU6rhAQ!k4mtfW@o0WHf0rC>vnhH4SV=uxWpi#AH3VfwWz-wyzU*uJs3O7 zRpw*i-5C>GTVK{EE}r}!D`K!g{?kustu5r~&Q|C8Ruk_G5iPW|*rO9OZDd_Y=Sv__>h8nN~z926fp78VufS8!*}?_VXm}cj*>CN{6`fcz}106GgL# z`FMqpQm>>9NTb87j60TSO&;XjP=Dz0yw;Nn{!%c->+tQfZP$czWyLw+YOB@3+tuIp z+y2jsKjrg-H#?5k6NLN36K;pR*?Ujn_T0<7J;PyR9b<3A#iPHO~{7I*~F#3Ngd;aeyqXP%*tThXkEj?)9uRK3^q*EuA=~e zby6?WzkiGV?I7n0_5ngf#bbg<$(A~!%5YP#Jwe?ej1r}cD#n&N6pLejPeQ%jI9OqCSUjoo6Dk;&-*&-UCX#{8tQ%wW`~H-s`lYo`Zh>L0{N%de8gaRd<=^ zt-p|V9>^c-j40tBu2GLGVm7kUtj*NlitcXk4EG@=gEwmT^2WyH-3}~UJi2C?L_d<% zavS?!r*pZx)nxcKfyBz*W;h<^VcJhRCR{!;b|?Cpl6Y!N8-d~>I$MWEEw3UpAP)gD zC5mCyZAL4rh{m}H@P{{umzEk6j)a++r{hrv*$7Gr?B(hVn|z`~dICqZ_b2recb=&C zu3uT5PN^?lNKLP*3-XKOGpl}kCJ{>-7*jHqn6dr;&Z^mV&8nB}sykh&*DGmv6=U;Y zjS|0#T=Mg%lX)bw8;u0Pn@dhmbiUbw(R z9EzhdR7(cq#_EL&t335JwS8!lwKRinEtU?+X@h>tdUV`yshDOGIg|?$iWl|W{%G#t zZMjtSKlyy`vo>H-vs%sGI!p`dl+Wi#KInZsVR?=nbw)2r3$|`Fn^z^WgFn_oBR590 zb%t37t4!R;NYhIQOr{a8+U2HTmkLmLX zRhCH0Fh5G6ff-6i!}DU|Z$^H<)7oh1O9=e3(~+VX89{JQeP0AY1X3lDzI9 zee&3Bs&&%A$`9Ap#G_|UZ_c61Bsdf8&tNf^vLK{Lq-vZeNdNsmRAZc!$EM`->(9>v zS!IxCaMY=zb)&xDkNX>V9Z`f3T)5)~lebLdOeoljL~ucx>jXmORyp+dE<_SRU$P7l z;gwe3qcRk5x?$f&xx4{=V#Er>TnAdMOGrDI(O5HH{3G={^i5&qmW;#?(w3A-Oob7w zR&`0D$$OcKgqMW3DS6+}(v8Hnlk`api|kwVGBp7=lF4gXJ~;St6~7h%w~l&)sm)R_ zUl3M;*DGcd%kPBzAXv1bA@+rR-e@`$__N2Ka&f~!=gGCCJ9NbFdA&!46Kq2ZF4utv zJ{E9=)a0uZp-KfiX^2S1sLva55Y7T8OfeWF=Em<=b}SL}JBV8GIF&@exSo3a&jR5G zy`GOfa3GL6!r9_sHi^(VN9uu-?o|AK&WPEyQX$}R&wep8cB)?=US?c?e6kSG7~Y1Y zX%=)n(;geTIBI_z-5->gR&Dzq`NAAh>;H=1_s=BSF6@!#ijhd#wv#T~b|r15ut@RT z-RFwo=;+R9xOnc@?R47q2g6o0>`J9v;iwf3s&o5x_&G>z=CU{y>m>YalJ~Ptx5(yl z*+6n+S2B>z-B&n$`{{x=?5+88#bz<*ukn80M>(V~i^=>Y49@h9sIwvDD0Br>g*he; z*^&UbFAS+|pZ6>6Gahd| zlkixc>juIvV-}wcitE0(vBiv}hm5DdX&8)^q63i3x zBqLm=NeM@1$Z)HGCFR_lFFh3uNwR7d#@mi16QM@>8c0>Ec`cpVkmR8oIjcEqmUz14oBmr-3WZW45^P+9 z<_Qrjcr=*cB@sLl$oBr1Ru$0;LYDi(uYdiA-ByU%aw2&0Vi>D1)T-f&Cqq%miQF9C zkJJ~vP1YK13#I^CoS{vac2_Vr&=g}jjEM$rQbAiHv!G$@?skXwVd@>tUDt~(#`Aul zBh$s;9*}|=r_!>Gs!Qhz9nTiW0~9|{upTQ}&A&Ww(5QU5Gx_mQkodrC98w>?8?0xB ztEq$}G^Xe>(uwvhB}3V0Nj!WsiO6WQ%R`zg{Gs6*@{>ja`@z|Bsg;Avry3VyzPyguio1oc)qiYNjlDF=P0=T!~JVV;38z zq?(owuB6V*QtK~QuouUUz59v!+SBdZHb4ADS=mg#GJ3FN?-+B-EP_-hQ;8VKOavdq zc@0ni?4i}i41Oc7T2eW$0@3jm3?}GE+pRF5jrcWb1~wPHKp?;>7+J+!!^bsr|7{OW z2ld&lFX*H{i6s%|g+4hhUu}omyX=MC-R-WvL~m{1l_ic1;|KRAYxm&(#<6{fMDg-> z*~aLB2sOM}=@2s8+~TGKr{37xUF#Q)&W#OyUm?0DPhPu*VUju!C1}tWwpDlRG`5Bd zV;AX_T4x_jYW-Iuzw{?NnqNc;R8rkl`}3Yg3Dp}bcr#X_IE^LWIt+MVu1K-ju|z1f z5OCym+ZPCv<=Pka2K-KkClQ3GFc^;P;_&59bu53F!*-;`_~T{gwT_4{>dkqBz94Z2 zZhs&h3#VKTZ^`$>XY6sSVwdbt$u9Nh1c_x6)>Tjg+9izCS!sankpC*{orGKtaQfBV znN*f3<&V|DSRxv?QO{eKCKnba)tKIPTM`+OZ;e-z7J`r3UYP927i?%t);l)OQh!t? z5q#PX!^w3UrEC-#Y~$iFmI?z%1x8&w5bYK9?3ct45b1PQE-W+AdZWHz5(es2*sCfF zRrNyo5>^GG!^`ilud0=Lb~XlmUJ^cxcr>1=s%rNAa%tvZu78#5JMr9OpSI*5Z8%;v z^B!)qE?@`?jaK#L#y?R1LEC9F^!qv5eXK?cIs^(KFXoc2Qi53a-h1j!XWa>P z3EP7;m#gN|Tj!H?<=D5&DPQ*w{X<2-Y1Hd-c|rgMTn>188EZ%p_wIzN z;=1Ky-r;!3Hw#YL<$TQiV9*!D7bKV)nbi&3tH>X193NuQ8ju_hNnyl030p^>E2mGg zmB>DC%yU<^wvbii+pqVwh8q37#?W`yHM3Uzq52^FO``MS>rc1c>9$vmec%Hh==~2i z>XR?rb5H)4fB7DxpS*y+{g{qcY;!b=KVxfAXzFV6@K z)WvS0(7lM+$Q=o3c>`;-12az9?_s~e557(ZL8(g*ojdoC3i=ZX=&?AA!~FrD6_1{K z=#oJbUNIq1+=0pG_?Wg02~XFse7bmImk~Rl{fbJ4RpRKAx!jZQd@|>=6E9n?R7jmz zT|IGPHR=xCqD*4{+o8@b_3cLzv4X#Yk_`;FgGxhQb4qy~SV@?q262CFy;PbS$q%ZE z*SovL?Bx%fSU8_5c7Ji;`BG!1Mz;GkMRlp*gSU6?Pi2$m7jA#B_Z(}HUc+xL*N|O} z`Z0DbJkG$Ynfa-+L75z=n9|+a{iho17i+XE-<|!gH!qbJqUPmItbi~8h%eEU?9xbS zo?kld%SIQ+&C8z;iZ-;v2!=3bqzjGW95`1{q9l0`y$pvqv!da76%38ckpMKQGU@f2 z1*~g7{WKATK6l3DrFVq`E)PSaTnm=VBhJ&YF2)OzqlM501EEyd7x1~@F=Tzq*PbuS zl&EDMu}#B?WE4VXpS~<7a)gL9{UM4*A_}8;&N{+?pv%$)Wwg1e87Jh$W@mR7F-C{V z5%)yIyWTXj{WbBLdXM&@jHxsF8p>?wVITZUj4kn+sY>$fUM`i5j_|Finqce=dc_0dl_%QV-$DIT50Z+Bj+HGxK zy|K-o!fw~Hc6M%HtP&gE#s)oO#6B)Qtr_A;F9`Rvu#F8FR1Be>34>?37FyULT7Agg zB_<$U9lDkzY>wL5Lu|Z+TaAUhRIrbfI}3%<>_w-jBH{2|Gy(?TLr(Vve>xD0ge$RN z#Btu|bvlEd-!aGRXFn14s`{x6iGDMu>b#c-a1+SR_JkVuy4;>hIpTFCf+c6%=kY3Y zz^HFvaPQ~G?w7e?$W97fjJWnNONj`^#xQU7=MLze%p{T~-d`Jl`dtI5jgNzG|K_*; zAO5!QeE+>48WSAMD{FVL^l21~u%v3H)V)?70(6Gm;;*>*hde=NF%)-uB9$@=ySLBB2JLR_4jTizgPX=` z)ak7fqaZFSWGazWZ3etJvhdy_^*aRye<2Y{x#IEqe2`$}E-}i%`FcF=N`@?#Ys>9) zJZqn_35Jehvhf|RCmZ={u~^MFlJz6LPA3>uPUcI$%b^xJ9fmPu8C%z{X?Y_8Ugj*3 z++*14u{Kh(V2Box1Q0oZ4Y3tFn1Etf*xLl8fikAiaKa+t&TB}7WvSN$<53INvzS#5JmRpXFR5@q zeeQ}1gq6C>@l|gi;Qi_!uLc6EZ?~eswpb#Q&Nn$yMJuxEmux)#)reJ0Io{+8FknC`;{Ol^rCIKlFI-PjpiHRN>6dnSxqNO-xUu^yY_Om#U_Cye{I;X8ry95+6eh z8`8K&Q{vDB!Bic0fGq_~BA!U(dmxn0hM+g}x3@PwaOEB(D@ zkT|g?!k)xLVzX%lf@)(u;PbxuS0*-sYW?(S$*i`ng3UXo*Vn^-xh>=^eQ(_XcA}4G z?pqa6O*Db?jyS1xYHlbndS5^xT#2xjQvAm#G!( z+n;=D_79T&d0#MR)3*Q>p3idipJm_|zLW)~EfY zk#)~-M~|B<#kD?^5<9mZe?nU*s7pdPWE3_e+xp15*q{H^XQR=>et)%kXEkrnr+0^+ za_M<{c3<)gLp1OXbFBT_!(;b;sZQ>3iAmazt}qjvT^x=fgOL)P-7s=VKwzSpB;jhJ zf6@DRk+*mkks#67uv;J;j6$bgRkq6WmNj4gKpA$Xls}jZBO&Y`PIuhVl}EeVY8`OJ z0#+nZ79*P(S3BAcfX{!Asl(XW`g!{h(L|#(sk8)Rff-6$Pb3T1^E)6mr)1-U(6C#^ zTpRdEFRS>vuor6s2YqaZek26x@IymfbD zML1yh3jrtQYVUoZHn-C_(|qfsT6}BsOk@A*-ur)__7om?py2sj^ZdN~`M1u_zV&(c z{Q2e)+FNWkro9ETSr_YPQl?ba67ijwwIr_do8vte7OjD;4qqLD+zO4eW0V4!%m_jl z+up{X%KT-qBfCDGyl0*o6R@Jmq9OaiXO8WHppio)wPmN7nprI`<2KzZk74(?sXT<5 z$%=-{MK1z-w!<1m*>+WsuZ>}OEMkwciu2!m*;aXVCe<7%QAbKlk=91<;>P?v$?0_p zG+6Vf7LCUt@e2~R#21`s719upOr9`%PUdqO?%5;-fDbcy75S3`aqML z;11+g_Uy=3AaogO*HKfl%XuqXvQ;b;icRhqug|*W57{<(uA4y1AGq7|01*c}uf=~I z^<{lQug6VZ2e&_%jw22#U&;Hre_)mDG6Gh(WbN@Ai7a9`P_Zs^cWu1LSX@PS!#jW^ zqNPs>Nomv@EZE31aWw}3Xau5Fl4 zuXl&nLT+y$vKDqfv~6@QwQhI2c5`!7))wsTGw`k8^Q-BGHmd?nZbn0&$BuIJ2k;X4 zl8B^0OV{oZ?R{Av(cg)~!@>^?1_fSkhWdMVdu^~De3^bXL%el|VX%nd86#d%^#x`w zg+G)$I|v|@VvZ0B(m$?LMZQjp8G~hF;fPugU%iy^lc_i;u0$$VpUAfIfyZ;oa%7@E z5fA^M9SD0LYh@;C9ednn0qsT-yir}Mi=u@>wdI<_axMglPUjCt?eGt#{nm#Z?CeBs zyGUjSt7zL%gs{PwUGGP#YV!(nXGLaG5&i`^E`Aqh>&#TIJ9Vbz%zgue&X(kkhx>Es ze5-YS$?x^Wv%PCnwDBu^Q$49I+FCzlibR7oo`iAHYqUQ>!x?N^L>TOjJFvumIFeIA z@*|Ch!gVX#%=uIzJzEaBJu?TJJ}YQV20Y>XTwdj7)j=O=yduF^D$~pmZXcMm%X5zG zc#*q|tNh%-c?n7Fug?(~K`1#g7z~Yzm$CokYE2^xj%zrFN;s-Cd-*fVT&YMp()5j*f%GL z*Bc4|#`_4oXLGSJ3q#XlmhIGS&zI7v*=*=$*{oHX4K1F{&RXpf_~4_gB5i9n3&dB- zVe~E0OY(iY4zo?a&4p{5#@ADftV}I*&LzYms()zL8FHO(6srfPCflxuT^JBuxIr(M zKC)rW`&)&8iHlTz?Pns;?~{SW@u`CgwO~+i-oYSH+^emPPHw_AZ(=3q2T{Ui%@n-* z2K~JsYk=>aKEV8M>IKynu+|bDZe47_#-TQdaLZHOI21kF=pH)9qImR@ea=pvx$m~A zxq7#mP7&{czBAUHSPCsKCmw7g)*YGec8gUAgzLv+tNDE?5@hU ztKjyWpd*|c8`^6v{ek%fJNVVXwTS;V*GkH@1}<^A5=71DtW1a2hPl+n)xp{2GO_UZ zZ~yjqIOf{Bl)lEsMyPbHWa5_1b%a%goSR18N9G{ZcR26sXrJwVp@*eU?0}xxF=g%- zePgrlBQZHoOdff$c9?~dfIX10hEx={7yl;==h$#{Q=QU8-kz?s#>@Gsafi$8+xPh( z^EB=mH5WfRadf7hwL(6ZDosH=;(E!RPa8Ln)ThzCrT<3I`$ez4nO&|iSYEw?nZq3_ z-5G-@)19OmQk_w5IinK(d^j)>OcatKj7k3TTz3k694w8!1Hj(mbHnY3)(n#k&ul=7{( zaTM<~Jnjm9>drzk9$TI4t>^9`8b4F8({X&>sX}I{;p%y80&ajvF5?Q3Ke+ zk*0`f!Brws<;}W*`etXN^9(T4NVPjDQNsTs6p!y-y|%Rm$fwzihkCy#d)2uR^c7;i zFu8E{og2aJR_DIKxx3phIW^4I`_DXjZowa!a^Lc-f(^!)kIX+>B$Isl->g zkADB8+<)^rA);d66$Y}!4dhtjb--g$50KSVm=q1LOj{9Ji>h^X2d0_M&ZNPPajf)D z?dKHqEfG!e4jEoR$g%B5BuLqT?~NQgnrCU~CleQ#5G2ZLO^dE@(ehr$)X4f*^k1?3Ld$33u>Y7!Y| zuU>CeS0+>M36APt*U77th4#|rkn+lVsYiJoeadli4}2wvcKzBu%Y3}k_7gpEkD=1T?f4w%ZHTvM7&kf2Z^*35RwK=#vU0ru{t~gS2 zgL5+g20Ur`=_c9p2$FG5^YzE5!(z`E*?OW4fe_ztaP!^es2fF0ES>gUl z2e7t25_7Z!if2xH&(((DFhkM$ED1MaK_ELGxS;XCY$<;$CW6guO}kQR(N*GFR~ePU z#d3{)f@4t(7*rWL0^%@g`oO(95+uIevQrh$2U@K;PbF2DoGcI(o*WGfr%78~0vDUj zWO}k)Yst4sJ>&;{Yn}0R1l*OBK~R3TuuWjIlZG5bkcrOpa%I!zxs4Iag>*HoIe@6M z%HH?4nseT=5G>~d!C)#F6m5Q+erF=uC9IuFyCiFDt`FZCM0;T;00VhvB!%U%p20{LX+9fieE#Z((~D9=r}-NHCo46%VqZ zm<@S&Jq^p&mP3q(L_M5v;As?w`-UJR>LSkyq(`{011|wym+?AWBh?TAG%n8UnMwsbj9I{6x~Jdv6WzIW-4vP=I3Mbw9?1z-?m!O zTG=w zOnSP@=0&aTeIo~KnLLKq&5K|=xt3ttjP1UFjxdS+-b5n->J~Md+tt2N1|9f?(dpsk z-VbMsF;esB%smrF-l>Bj35o2!Eg&$PwR~4>6Wx4mXR_1uoIL4i zb|#Apg~CFyi`8t<9|qTBwfn2D$4uUznr?mF4sO#{=R03phj_^KWi0-&`aShQ#&n(* zqEPKLW?{RA!Mn=L&J7cQBd9+KtgQ_~EWsllA?UHVjKcS`mx+1^ct0Hk(Y68Orr-Ce zSfuwAW3*k)CdSVfLp$$@Rql8(6mg#9SfBsJFz>vT&tb$R?(%vf`}33q?xFs?ycbt& zasUkE@PTYOz<%F9_NqNgKeLe*N(TH8dTx^WiRZ2M4Zi>De%F%Vz1}+EqgQndxPB|a z;O2k-M{|&T2Re#Br0~Jt$XnU9@1vH<_2NvUh&|<-)DxSXVe-2{@dMdk0f&Ps;kRvMY3H}ciSxhFga)7-5hTE zu+f>Nw^Wc$1}nPenAai@(uhznN`|!>mDOkyrNnDT&y-}1(^ICznDZRFZ~;%{r^Q>T zbFB%12unC}tB`3DUUmIE2h2>AW;j5)ENvtFPF>CPCDtM>Gc>#_+5#g$AMiDVpCmK4 zzv~WrGO(~9mh07WI*BZL(O0+cc-QUe6fWsxn!R#>9+%hE*O-UIcXR*P_i&lPHK|I|agky2b!n!5#mMo&ID^4sSEUs{|(ShLl z!lWgTdg)o5Q^K%xmI5=49&>pl;@jn85mZiz`F1KtOZi+YiGpAMrJEOR)pt z@PXKJuI?-Q>bYg}aVgjEDa(Kk`V;YsV{X?$FR7@V&hsv>vucqT!|OUvRx&H%J?L_O z=WlW3`$~3!*l28VB_9s|lAW(K>Xm|gVy2Tu+d=-@>+@rZ5Co0CNB10P^6Gi~jxTI% zY;J5^MV-0OyRPhw?d|7!TQ>-|AKJk7&ZEylT+ZkjF5LY4a{tE^!K^iVqQMOyNB@uhIZYY9Oczcw=J9rq$f5Xe z`>X{F?xj8X^yd9~8eoiZ^-F@0S~S0Z7F#*W=0L z0}t;51j&ytAg{yQp6 z*Q3b)oL}UQ{_?I}Z`CyVlyTmPR7UO})gAtJ?<|0&MlN*IRr}=^+yYjR`} zUS<KL98R}wUP4i!bdC94 z9#1TnPv=O-K{69hFvk;cB6Cjs$f>*I?nJP#Y*nM-Oth2_M5BRxDVhmKtJZQMm~hAM zK6NCXB>jct{Znp_!`1JbM%NTcXiO{*%r{aqDG#ugC6v7ttj@@80$u`OrfE7v1Hrug zD>LI|HC7&Dv!6yL6q?E7nYOJXmZ(%MRWo2Lkf@QvanRtIQ5{K z@Jvuodx^#b08N)OmD89I9y;+RLck-Y2!b66r*{wr5>4kO4^=V&SI0Q(&csuy<8TtR zlsOjg_cO}$GOs(5onTcOq=2zwxllmFDja)sgs{I82K4z{&c~K&+q=ylb!5@ zS&z+{BbbmeC5rC|woq(^kT6PZBnAn|6+AVg3|W^uGMu%XEPbWU2WfaajUwcgPC`_l zgt?NtM|z6b_2oO_+s9nqOuUe9*fVb?kl{>b;AnmI`skS(~jltGxo#w57Qk72OsnB9Uo+(O0TL*$6|L`Gbc_wc>K7889-q5n?HS^E4g=t z%gTA;Rp(a`oIx3Eh1rJeS3ST&sWx6cnVa3%IsTyhuxmnmx~&t}%{$e7)ro`m`%dLk zbzg*^@#~1Mp33hoRh6`>w2$!3cj=*;ml^+rcE63Xs%aE5ip?@ zK5YHUh3U6<`zEB0{=O{QG7{lhdBrNPNUB>NGBk8Q$IGbM^fg$30fK}jQ(;xlL?#|C zU1iud78u1*Is%=UVJia`hyi4#&787>k+7ARI@q2Lgu|(%)8!AuyW@VBN~Xf$z;yfI zRKf~Jg0{*Djr(-EnhpD4mRP>Hs1zAqy@60HVcAo)WWeunDYbZU8J-JY7$^L+kj(0G zUZtG0JQ_k<3BCBv?(Xj3yKTM`i>gr3atnCnQDT{C`u#+IgNt*wiz1D7Y$a1`LBJ%G9QDw@SZGx6^HGbj;MdrDK(cmJYP0CQ60VwbuFk zv9;&R-L>^Bj1)CBGk&H%9gmTEH(x8C)!#fevvLP3pdPz}oB>tV#nHL7ihj|bSKDal zi1$K^0g=H{`=;4*kb-*lM?7vuFtLa3L!Vmt^iA{RV2ZR{xs|LtL}=oHPp^Dx&_>^& zzxc)^R^vUi(O}AJOHvL`Uxm^h z=x})0$I)Vz`SG};Pd}Ab_uHk?OsVt%NPvqjPc0bnxSU5l$`cONNFH2ry2q6ocRNeU z?W_^jML?9(C0}|t++9|^e-lY23#rr^7^tMfm4PNC9u&AVSWOt;&suUcAq)g`^H85`kE=M@HY zq=t3{0tsWlLXI~VKs;a%|Muv09G<`5X{`iThu2zVAeAeg-|Sz{wlE!7=91}Y-k#}S zRp!CpS6@`0QdqZYUPM$qM`L2dNg*N@|4Z$8GY8u3)dg=|hA*%mnGsn}s?3T^-NcZ? z_2oq`uBX|w$<2ZANdzpR+$BeP0%f~VZ`a%K2duUi$V)=cZ4*i(|AHOjBCAW@Rhu8$ ztNe!SZMr+BSLZNbvov^YNO~w+sxC)B;W5tKhp;z4VU-jtc%F141z2HqnG|un_wcq3 z6(9v~EC^b&t}k`m!MQX#wM~*(erQPnydFxhT8A@7J?AC_$Vz3B%Mle&ArE@G-{J7P zoMED$lrS3ENgtmaa3+D5@DQczb`v@Ty`9_P^*94`@Q~LLB3{bxCrpxz;S-_edCPVx zr2_C9I9;d>KJtw?qpc8O(tdXkexIQ7#(gRli#VNLuTnvWN7>1gmnbP=OY#N03?l3Z zOy@4I z@~DuV&QfXds2UGDmCNUJDYpy2q$BKf`>5S8cf{%aVOJm)^mqeaPUDO^lfED*&A2_` z@W))lar!*LkSAVCDQ9jf7T^}C9^?hwWNxQ-khei(_b80svPy_m9owu4Il?7lkw=^0 zNMs|?;92>YaY5!yfP4}2m?)>B#o@ry@koW#Kh#l4(Lz&&qJBjb{dkbBV>~`e;7_e{0~414PF8{udJt^-rQ!L*A%{+3$+8^Gh3LfEC)*A zGivNg8I5x=(e=JvIq;SP>3YdOMR@%oG|{SMqGb#l^H}*$}pk0dCzPpfl_*QfnJTT zm|7sg;XCQqX3XNwy%{*SOfLr|#+$aR?$6}KcVV@h2SK;$h^|&h<%EqcuLh^#~ zgO9%D(SrvcRhvZnIdjdDl@GX?3IdgEIUfs85V9SL1OT@OU9pvHED>@g8m&X}i|=`~ zJ=9T!TMwB$8LyZQP7Mj{OkmZ-oX_4p%j4QL+&$=qSa^C{T7PV5g-`kgeUN@ql&L}}wt-ZVlt*!RM@kB`UgJ?AVaJ$>h%}pkglXJPQ>i8m&cqlB_ z>MZ-wF#OA%R&sKFaegwn8IFZRnpbk~x*7cEG(uANtF$#pDpp@yw*ZNIbz^wYB?boH z78H8r&TYpJ9rfpebv?ORX;JTk0+yX}_*qeqH;>5?=aqCzqE`o?GeIYC~=# zm%e*u=I(T^H8r`sJUMmh`}+Eyw4Hyf46B0lTwRM2UbQr=&tY5ApG|E_=jMNZjW#P* zsytmur7E4-xk^1*l6x&Bo2A*=iHTG>?D2%lsfmfDpBSxODVjW+rGpkVU>(UfTNBCo zq|e7@;uiJnM~Y+eyH!bt1=NMpRWeehyUw0Cefq@NyJ+S1p~clB^QK+~1(=;$Tbr7d z_B~mubfsI}o{Rlgew)XIgLJL!)H?ASDFnm05*F?X`PT1;EW2`=~HMzfal`8<}D zb~>jDp-9vpRE|V6>34?XDw&LU$S>vaq?4<27U8`C|Ad{Wh8>x(O6T34T6rduA=z&! zl0SV1#h%ke?1KoH_@RzF zSo9jkCPl0PDy_uV5AY^$Em>(|(*UuT(nrc`yKD1zA1M7qrd3HKDy>X;rOZouyw!q+ zRegBeS{2Z{&9Ma+kv%h>l?UeQ=X@MP6C}p*b`8y!hu)cJMiRSM>OJ?9cn{spl$*w-x?dZL5Yt zwIQpKUdqs3aR%{0kdP+&b~j(Mwn)R_4>iH>?`&^(YI$pY9n41y`;z5@vC=BXJnq`@`Y$DNlP79BbvyRHR6d*v zPZ4j_m|Q}-s5w)a@<*~(TD|+upfB;EiNh0C{A+Aycar&Z{7HW#;(zc#v(42KiF)=; zg;WO086nK0ZA_e);NT6Ci5%6;!Qx`r2g8u0jK?KHq^KZJG*t~gR#*QnCNapCe?+Xj zMij9N3r7|T8~Ivy@;{5~cFmZ*cQj^QZ(5qurP$i23Cy~-+r6gsFY&`0E?VKf)VW!V zEZ4`g4~59#Aqk!HkZ+6Ku(cp`Lknl4}gKLLdiy!V2cacJ@(%H*YAInivY1~kr{w3*QL z^hD5L-|O%ku$p2j6`49XpCL6?)Cxrp{#r!ui;nJ_N>#jX_0KP+6Z6@y<<@UW0%c*@ zfx!%08z+fIQqLZoI&iLpD zJw{{9N@B|rD?U}<7+RR{!AVjV-t$$e!I*puhCOCv!^iUF@7b8rQ{&OYPgJ<_BF9Y+>9I=_$LSBp*jp45@JOG zDM)?Gb09j47(Ig7>wU@KQb;+~yKZ+Z{&&g3XWQ$RC1|)o_ivi`!fQKZUExn6G9`+} z%ykl5<`7%WQYG$wDk$Zi;SXEICFp5`viaW4?hd2MD>8izlujIHkK= zB9phU+pM+TymcF&C>RuknfQE4fBTU*qe4jceGQz5Doj zXYU%UfwZHkE2$}Ji8>iAyV$sZLk^JOpfjkOO*tDdjCCljcd4E+`3-fVvA9z2^bg5A zC3b(ZT<-kBFZ4c}|In|fcQ^BD`yc;;n#_OrS6UJXDDsftcek1GL&&7^t2Qf!`5{A% z-CwD`b^yZ6CqZtxIU$`?=7@(=`9f0NDcjEutn{-NCz`e9yFnR#6bDg0 z)%#+yKq|vKlZAn;|B;Kccb>P-TRgx#m~rzLy8fKlU&ruGk^$35%NSpgAS9_<2{IH- z6K*w|BoZ&`$}i?hQxl2PkG-x@sa92Y_b126>ZY4*x^m1eO+5C*J(c)G;jRZD5z^P; z?7v2R-8=U1*jNQaE|Q4Q0*a4}DVRl^3=>>T-r?L4sp^PuvaAZ78wazu-HZDLh(@Ob@_>C$Wv^Vrb2N~z~%P^64`{KS(q(g zz;ovOUVa=6I#e(osuaS$Y$ohW6_ul!eV59I;z4%Hy&D-o`lvAW>&)&NMKg#|s!DV2 zk^kTx))tgwB<}6s6A*2Q3CSj|Z}o2IvCz_Ou-V7jVgeIs64xYCqe<(s-07IcK)vs0 znlmz_@#9O6o1|BZwHoz1N=?hF7`Sy79+YG-UPzDZ{9nPdPe!I=Pro5Jf7aU!uK!k) zw5O$s$%#t@);3+MYI8dL+{inT=~UB z)?J_NC~{hTG7lvEN;vII%!co3wRWdYS1u5_5D3)fI(iObj0t|$&lT}6fPkuMVvhPA zN5`r_vMg||OBh!WLX*fxD*but`=5l~B|?1SRj$zMTO^xFr?R(gTap+po=vKc8%K8< zLXqzLe0Rt9FNt>F)@$@&?t6xLwTLt}I<5r)AS>DaDOLmVg|difu+4XS@VMpN?urYa z+^6;;tv5I62$nmGzYcGldzLSyk1>}pzCH_YXMiitfRZ`JH3b|ZLH7Od1nfxZl_R3w zGgSelCn-XkvCbOA1IK~1J;p9!P6XTW+3A{UOik75QxVe17S)4+ppDfYV|C=i-{e?*ix6Ro;tg>9Mz@t+%xI)@$?_jiecEjm9$?Nw#M^Rvg=jJ&B#fksOl{oHQ?w z67rx4351~X%B#1fEn`aIv;i)(%+Lepl+ZSZLq%UeY42%6XG$OR1p1)0`zxH=a!Wa& z-2by&YR`X|J`{Uh7-m{4N4P*7A&;`2f0B;1v?~#fPha7hXLjV-(at&@Igl71R$;>UCej@XGndGeU z*(GPy&rUS$uBWZ-=92Ta=3XPc@7U=l%Bk3|XQt(*d`irtOy-HxOLP5i*!_EKPdKZI z<00Qu*5<*}nN<0S)5rFua`!al>CC=UG}O4hFB9)D<=aNVjBCjwh1Ke_QoI~H_KsI2l67Y{CL=P_Kd@` z(nV=2@Y%)=Y5c471K*+4b%I>j&l17~9*&|IR% zAedCAy#*yC0o|_8524$X3&g(I^HRjy;~G1FXH_QjruBH~_W z5T4U9NWt@--2KAlK}}PP59wpVzpik9EF?Vq_~bCpRcZYJZ@apw0hgnlZ^H&=s7$f} zv`vnd7A-g$VAK1V>GPk|-p^cd(I z(2CQeN@uh-A}4XD%X7RfF86`N_+0MYzf<}%un%~gXJ%fuIGu5;5>k52=0L9_Ut)rL zV`;?rR)sYpYzw|k;R*sXj1@#uGh5>bJs1-dbr98Z#4`%KMsz*WU!!{}3`vH6i%xX# z#Hf3Um7=FE9?Wz9I&@P}E1qyNDwQfn$a{v;wh)FSj55DN{WTkk+8b5d6b_^A~|BLZ9dVMMKhmw@PQl*^ZUX2 z6t*z!bg-HTX@GO1I2T|YAh8|QtH3A&83IVXMEAHqRNCzH9Xzz?Y-z-dyi&e(u9IkN>xV8b7E#FX~7j9)s(SQTZ z!?CC%ST@#ap|HWrD7fHpft=FY%p_`w4EY1lv6osGTBxb)ac$CF4{>2d@rKp40gw$c zZrCQ)=WZ=xg~FR#-Py|9^2va)e`EXc8+-Deg%e^-aa@u;gdGKf`;ys$d{zez3?Bi> z7Zc9W|K@kf-`P=hma1`iuKdWA)Kwvq&*Qi@XkpO(vPIH71vdL)8^x{Rjzx@brpvCS2Y}_fd7ZMjZ-nt%Oa7+aFP#)2Bb*zAw+hLFHk0AmE;; zk7i%Wi)_S#}39Fd(!{aMt7Zdon-l z*dD3BrEz52*tXK?*67%Z%Dtmwi;$bp*)BW08Kh$5_AeZ{+z1yCNKUmbKgMIg8Y533 zk4<^k@x_&e%Js^FJhRIPA89OArX$hMTr$ef?lQ!!bjUY#>N2BD>(HFPSPR?c?_hjJ zr*LU3GgZ3g$keuxo)5acU_Tj|$Nwv1ZBJ%PrDIo5U2d!;v{I<<9BZMM(fW%3rBNeG zgQR|iPJ}NZSn6cH1AULE7N&NwK&mdOP+ajO^a+piP_P2?TLmjXWIvzIi}zov`aH>* zH_`ci{xqHXFXk%~G_4<2f`LL4`sYR0F`CQE&z?p_r#3SrZdF;9gb& ze%u8!G_x_W;maA0`EbOCqr4>_XbsSM{Wkj!&QIuGTl4oa65)EA$2z}F4%{^=0JheD z1iCRXXHCR{E*BoQXI58V5Hkgg z4O?>W@fTh={Ofi6aS;@8$mgyxb}C{g2k&hj`8$_CH;c!?4zD#I1V}JIK+5Q6B%!sjCvt zPaA&`t(NLt_Q6CslIZ{5Jy#{zN#!rn2j{2CgRv9G(P`|qABlz!o>TIsV2`ek9&{oR zyQ6($D!V^k@BaR0YcJ^Ak3V6bKbM+1mYymf{p_J{fXv1+?DLPI&v=8b(yY1JZQto$ zcww7>_{KNp&ACi*!}IucoP4lhL>kC&LJ*v|Hj#)4X9t20D18fR-gTHuhW+~XX7Y*g z`;BhmkwTa)&Jbfs>H1H+rvL546HjzYhQFKK1go3SC%Rm>Md$-0|2QCs{&C}41zEW| zYtbR^AHV;%W9?XPogb>(EyX|c8K_MB7&t4cAK<1MZs6I2`LTo$S))j$F~=#<D5Z5l88io;BBX4l5HdMHN@Pm67p@} zSEVuxFvD?;2BsUb>p?wnscb^@6sU(m7!{y@)Y3KXNMr*6V7}L>5*HjXXSFm1x>x89 z`fIou<`k{)4VBue^t*86te4u&w5E7mE&2`;-xL&g5^AJrbnqsGTFveN)Fm? zA5;e{kaKlPtK!&B!fr^d5)@#V%t8_5RzRpHioy1fQV_|E%_OrCa95JU3eM}%%#0Oe zp4amEcdKe7;B(>+RGob6{($>6LXho~h}kxQ$rUys)DI1zZBbqW{X-g%$YU59e>c_SxYC3LV98@lu#pN?}y^?d_4XmlY9M#QdjB;Vqg}m5bLUH z1!hKuSZos8n7cPOk&L=kEA;;<`b|EL0Bur7l_me)>)_GheiObnUu55ej_ZWxoWqEk zQOz(Qw16?zx%&f93&04tF@ie08%PbjYHse=3(nAj)8k$BdYp^Ktk<6cSPbQPJA&t| zzgm!;?wgM(ddzjqzZi(vf!W=P$E~y5F^4G{kVV!BxzOcmw#t2Jh^~G7E8}P58TMm+ zaAayBAe^EZ2H{1uI7ZNi}n8XfyrhloZOTA(Z5(? zIWQU;Ea(3vIk6`h&tX%>dc+D^$GP)7Eo5fXzbx?rbxPgy{T>h*taBbT2{9XtlUU%OfvqRp4?9#xb+v)Chf?hBjSVAqH?Kbpa*)^oB(9;*WDwrx4LEPWNNIj# zthdFvLI0(;+{CX&{Xrr=M1>rrAS@;{mgIV~$JTn3hshs7QD8J%Yz-MeM)T5RpfVX8 zN+f6WEV*qFoI%&Y2~WT3xB0I++mFa?af}brHn=C47<=}TWMElSD;Yviw!kPbVF{5! z6!t@Cf`eWRZUm|)8%$H&$YMA}O6yQBl4KoN}PjSKO+& z=Wle3rm!f%!9qb~;hXs?#*3`KJXRrQSr{RbZIsebo@AVM9zG%3Zv^rb^BP%cogs~! zCwCq+6U|xw;-Y_6IZ&w_P>84m*K3qku7n!H8`sbJ7x1O)@ukJd2slSLZ|4uu7l_e+ zlfGQ+?b4P1ANtW-{rAz2_3poqeypzi`{+lv_3xt}tDzjd#m)e~wYK-^ zQt4`T<+74>*n<(VD(q+CKB5f7%eGBmP*CQp6>}P zE(Z2!yGZr!BIG?T%Ho25c4|t!dJ+;H3NrR$ao&byANIe4R55e6bEoKU1POT1Gjo(H zL>4^32p!w5lNb{RU89j*r zRpp6bDo}2ew!dNQEoqhX$wGQY`|+~7>4<(aDmC5Hj|!FG?M=^&E?sC!`t&1OA^lFk z$>9Q#aseD^FOGyqacDd#?Jey^TLI*jG@I^hTU7lh{I`I<%>PJwCOVo2znkLO&xa46WkzR!xDSyaOUA|N~pYLy; zb%h@%t7yRI=uh@8)yBIQsB|-rXv0SewNS+M$Zp(VUqinX#Gba*6#+f-Ag6{JABP1P ztVY<^QWa4}q>`$<<%6VdLD^K*&F)RSVhG;F|2A5Jb_Je9=YQ^R!sEctU*r+%@Ik=u zGC*BGYl8YH;KrQwhnGg#-6Y4OYhm_<$F>o>hCdAByrVOSQM{6;tb;S(>QFCV$-Cg_ zdIa7s_{QSg{%jikHG^BM)R)Z+>?ti1aKRbI-C`N9-|roa%~x;@2$Mp70U3!_1J4`+ z*twb>RCQ1yQLtFntBF&52qqKviP2D0N0YrjajO4i8ggqfQTvk(Hu+x+7DR<^cXMRy z_gb#7oPpL~pM{G7nT<$926YfsbwxTQtT0FzBp*P|<3Xzu%McZZg}lK+#C;JJ#{{Ve z;Wc&}u|HxgYGs<$kpRrcVMq?ilWa3pQA!cYs=7L<^kL?0;9w)b5s<=vOKUhg_^W)jEmp&}St;|YVM%{?c|TgS)x!3a|R9qpNr{&~Y9e?;5Vt|zGR6RFt3I64 zY-i6F{MyTwbh(^%AH3-xeAykd8|j8;U{CJo>hVB%$pCRkxs)m2HaMwtJrWW70-uNf z44e1IvCehO!zs9Uav)X#BQ@=ERh=I38f^H(UJakHPaJiOJAMMUqlMf4?zSIYvY)Uo z6(fHaIfhJIrzAZ=4-SWC0e|27zz0r@jh%S^`|n198T_}2hpln@2Zpx6A+?vJL0+9D z5*hp}B03{6XUm0jJm|j|85^4%8~X$12__5k2WE?LmHC75 zbj~Q}vPm5tx?i{K1Y)`IQoj@!>R^l@9h?&C|450Fu)9Uv|g5jWherzh4 zoEifQhszfZYCcCKsD~A+90&zfuOHm~{s{7%ArpqUiw{CB2*f8Lfz91UCpZPYpoCYT zAQ41Cngg7E@HZgeo8N$WAcRo*oHiBP!j#0OH0Si<^h-_EXtuS|O0#6J=LGO?IXbBd z|AIOh1qK)uXAIh*z?g>@F=ek2izvPy}ygk<(=}9C$OKPbUu^OIHiYa?~Fk+nd{y&@0I$ z>s6_Fyrl>DTj&ps5BX$g`xKeGaEe3Px5ekOjqj+l)H zKBgSinc^E4I?XX12sV?$3Gi8fD^XQ~NTHDNHKgJrbPHZHOT8U_Ag1wP^Pi>bolZS{ z?jP|gqRtz0A_Sd-w<6m$YU5#9f0< z_HV*_>oc1 zIZilr(h8_z29%{VL4%Q~0*7X?0sM&wZ)n)hzLAR_wgC?5JAGoa{W`b(uzf7?y2OF# z9XTcLbFkG~;LcdcuiJmDRC>3^?{?jpsE2+cB>4{2Wrs#V0AZ654qy0ei9MQYtHX>d z@}@$M7ll}Cd_yA#BKYjkC%C?deQtpMtp#;G8;u6a$BabuPoqiW_%pPpfS`V(2aQZX zWd4f2lGVRp95==f==yp7cguo%`ZC_{qgncK5s|Kx-uo$Ek zQ>0AQIb?F6vm(=ESM9pVAi1-ZiM90)`y%1bU_W7VT%|q~75;9%oC&vacSb_xvW{_Q zGM$)>h_tNpBWg87JieQu>xB6}=ojhsbA*<>oOTZr5^4w5aRZB(q8{*f62u&kL_~ks z*-QI!{<#ka4o`U;6M(xS+CduLXF}_1>l>H$rL%G8M44$BSNLxF8bu(&EZXT%AB8`9 zlMzOqu;nnEBqZDttgPOcMNvqgNMM#>M{q181+dSD6_1#&o3;d78X*A3%K6`;gU(yY&2^7qb?=mv&u}vckoRr ziM_z*jEK2;5h2IwCtZIF)DILZ$udxfF@ujSLAcgiwPvmP$Os*6&`b$4&^V(+HPG_6NtS;M!UUoTJ z#Xo?JOtB1FGk?I>49!jKEti{_MM0cU!T5}V!m7K?$xj<=m|Am*!oh;ZM{O5-a}ze^ z^&u5snHm?XXGdQEAG%y$cG$oJN{3ySN4mfMK8KfgqRV>~-K8(x4NVn&;GKf6Vvx7C z#pmfqgpGEphUF^s3n3A@)e!vSl2#--K=$+S3%p~HzCXZwNFBS#RB>w?s9DEpHgN~V z;4&}3U5l6y{+l)Dy)JMI^AujX8+|@vH!M(XaxjErdm@+;v|OF*<6PE2M4E46qkuv| z0!X}Bv69vf6I+F9gD5oR%V3exZU?+owf0=5o-UQs(LC7dw7e^CM{VeE2^v|zj#soQ z^U-v2YPVUtQoO09*)oGG@7lxsyvmlLW(kAN^Ql8I z`Uir3@N$Njy|F5F@(DD)3?yHed7OKk9>#o%vy?7a75R2qu@=%Lr{a6stK6e_{_A6^ z`k2%0J`TKfeo4DWLc;$&+EO0)>Peezprd`2HDMi=fEC?i&L7%~AjE{Zgvmch3g6B7 zx(?nBzk88NPZ^7fKezCOonA%O1Zedx#osb0zHGGo%3b&k`N$~-M&YdkQ<2C#!dqhe zgbiH4kaHo#b7BP%fSAc5%uU7yI>;$-wyGh&#s_w;m@hUS3(N)ZKL$S@NN+|A=f^#6 zw`V+>Ohu;s{^>{xQE)!L%sgE}t5M5Vk&Me59!dCuXNnS}F}JX1(%#LN&Q8-D$z5ip zVCzU<&@uFGr_DZ+33kKwj!{=>+L3N?f%8PzkV|sPauz+rK3$ZsR7nfPE-DoZGFb^2 zBF$$ls&#zC-zKa$84P4A6szN%bd?FvjPxLfO>%mVcUAJj%2<;OCahn%;j+HI|_zz+W=-)@=KIr^M;_ zJLW-FoAk!kaZKHZ+9&2qAP|TPZdB)(hntOX$S4s(+=!&Akq#4k%R*`Y1(8~|_3rOp zQ@w^xNz4O^-OxTx*j0g|C#?yl$SAo_ZsnFe5`VTlw=5ed+!GHlBN$h;{s#KAB~Lg*6dT7J;OiO-K!RumEV8b{&cn7L zH*}KKlFc@d6{p7&*?sl7g9qp8`x1xuXHG7K4q*sRQHzrddUueE4G0Sz9jDBsF4>tjXl3z+KB7F7M=O~*laBsXR9ln&I)d&QpPZr@n;wvIQ28wR)8hv z^S_PRFZeo1uQ6)?HGszDJlAmEnz=I&WXPJ?mX1%>J>7Pzwm|Uf7M}xcx)(HtW<3Rs z>Nc4#F7W!Zrqi^v*@IFu_-mR^coh)dWq$XZ*kj532Ic0n>es%e_Fo!qvf`Q!_gLm- zuvTb~WzXVU8GO6{CDz=&$RuvFLA0L*!VHwYy? z9uK01KpaerV7YD5eXI1e7xS^pKk5ei_e0F!PpnPayNC~Djxx}Abi;(Q2!95WS)hCI zaE8eTLiNv0f-YT!RIfchxtB)uPJJOQ_^}kl-pFg2PWs1VGZT^A!VxN^;yn>ONbA!b z3-v;=h*mlA+7lI!N0c&}+pT4`vPJOiQfDTaKQpo(R7)29Bj*+z-<;z{_%h(%A`8s4 z0(;1{84G$)m@QPC<9Rpj>FIO@<>2X_l7gn@iXnXL35p!#W9Dc0hFE_u!$(Zqu4s>Z z12{NI0*EAtfCg7Vv4_evVY;*C`io~CVpfObe6;(J%^|7U>_oRs8SQiFG6UWDA*Xd} zdRlV4=*<2?xu0^l2$YGj$9(VMLYTAN0#y(#aT|{s;wC4eg(&2#%6YlgV9(ng>OSfO zCm(V+Wf=$cSnx^`HrG6}3EUHtqMh zq_KYaxj@MIqC=YgGJVcrR~ShVLlk?!E5s0IpejODL2zUHaPt|s+a6Hws#4-1N)CMt zV{eyX+XVu<7*Zdb?#ogn>?(uZiCrn%Cd*~X{`rt<=WBrCn`YlA3-dBQn6Pl#Al8fE zZ85mLpANNA+pUKO?Q%p%%5Q6{pZ#BJ?$SkOp&q#(kKJT*{z$6-^7h^y`+oGhTt*8_ zsvVj)9#a@vYho5E2XP_^W-e1d5D*`c~r|SKj_KeSyy*uvcKL zg2bncDw#TxRjoul0jt3VgTHtXWkFEJy1(`~)=PZh#I?1cSE*(nzxUw5VB_ksv8%B^ zmtN~#ycQqe<6^d|yte;*K7Z97>B=i5DDy&A5+2yb?GY?(g!P!}=zi;%f_aR~&k)XkKGZBWpg0cr_+FyV#+;EOFOq z3bN-_DwGNH7uDW2kh8@Tw_Kjy`3nO23R@R25laVqw~(PD?bH1E;d%h^g8h~D@>lE2 ze~qYD)FQR{NbOa6wc2bJmWstC7$n%+v9JFVd(U9L#39uHUI8U0B<6Np2!Xg$RtIHW zfWgG%56H50H`zOGK>L6JQGpS8Pj_Pfcz**L==$W5>km&6FCu+qU>;3QMgS9ez4|dn zskvXxH%pF>b+{m&YL4zX=KgMBQ0wU*4;jpo%1a6u+4I=qvHL*U7m=wA&l|X>TUM*& z^!P*CWWwuECwcTjIbF;}l{iS=_|gc2%5PYA*r9P_<;m!oPX65= zO5^d~iFbd9-5T5rh3FW+$DU3HA?`LmVhvQMdm5f$cwmu2Pdbj7-jc(50$jwl<6UZt zNQZ*ZcZzuAnhjTM?0UPdXOgrV^VcYWv<`N5{1L=}ly=-@^c(RdR^58XXthvu2z5}g zIb61HTsyd=Z?G@7^_cobIN%?qZ{!voc1~+Gw9Ff~-as{`lG!A_M*8!8CbjcowuwyI+M=O_6n^D zyRNymw!^c`x8GHMeA4s24Xn%uF=k143Y(BonBU|oDMFu$0J;Q8$h`zIRn=|?C5zsz zSb0`6&`Ts10L>SB3Fz_>TkgO~s%90~JW7@vrU&j`EM?Mzl6~n+Y4Pp@BFwmO^eCQu zw{Y-8b_|4wz~}4gSoXxhLJMEHdVjLAcTfdzVs9n6|7sj(eE`KD$gl0ZM`Wjsflvls z0F(F#UIe0}mO+ldmB9weZ8r)<5NqqT!cOX=TfljgpLsXY9wlGAr=lHxqW>jgKXNov z;6ws<>`n$GyEK&^lg7b&luz9=tsj2tF`_@JykU%ZkxUu;!}Jl|8ul)X{jFGgr9NJ} z)wvUA0}s4%2cH<}8VfuCL$HfkIWmrf)kuN~VUpXs;2761jN~>22Pbp~z-j6n@P>df z@N96gaKPFiGN6JF$}Y{^vVZ?6rz3Z)Qo@MLo=hb%4gklDrKau#qsrWqXO~N;YUTjT z)V{l~L>Yop`ztp#q>>?xrKhgK*k9496jF25F;aFYPx%(+Go+Zge8knc)EW}4POjvC+GBvco| zdc!Yf#|xk#XZcz!4?^#hCNU=EPcEfAvxQi~YCmnYrxV^d&_>oV@IM5>?aSsrZnf5q z&s+b`c~Evs>|GKt1GCE~m;7!!ll}}2fcWx>v_}Rv_#xuU3xWAU*cTU>fjwm($23|R zW==3VO>8-oA_SxuJ%Y0aj&<^y;(@+4OsdNkXD~G)L3^kWj%6X^I z0DlLzfohkj5V>kFw+NIjJ0!{B_PUxbkD=k48Wo`dQE1cU1-cU-QM6Q5h<1RYr5IR# zN4_xfK9E9yU9gdZ03z1p9pQE;2uua(SMwBzSvc2fNuN4Am8z?$_|fA0nQHY6@pH|e zvbCXvXr%^mtm`vp({r6tu^OyG|*gN}OrFm23;Ma5Pc=zgN zdUpQYp-Pq<^P}yJb8QTDebC+#S^{X0QnkfZ*h=6=b`+0>fPuA##_KoD_4GXDUq6C7 zS6&x+W9=@r?z`sR{au*U8J?XTRF+*x(ayyE-V9)SbiTqC6z7XvBhH6{XbM_y;KZS9 zC)qm^GkX@Om0qF$-$9<#e{*6_*-uBl^T9UGhK=JmgE?loIPlcKvb%JSndkBY&Zsq- zSG&!khk+BaBMA<(hEFAhzZO$RkWCD12l8hWC@ug91hxf$lz@4uFc2oykoAUb4n?DQ z5R9f1&HAhf<7B;b+*eY1O34>bqt=)=;IXRRLfnqpKZ$&^znM?0CGx9kYR=avl^VXe zlxnPE63d~ncp)mM1ZFlC1b--+*||2v)(FL`J9od%YBF$X!1<(y({T`bOPF`R%YTtlx04_@!! z&3Q6>=thZ$`1Ez+C%204{{FUCw~DVEBj2$8J!xUGG`XM(0L10)n?J+{kSCM-<#Jgj zprFuCzY6(4IG6%-=Q;QXfutM6>q&PO@p^MKE{Os;hM$;X4SF_LqIpP`o&h)hz3p+K zm#I`Ga{MNse&N$^A_od;>z2>k5C|zs=@<b8&cW>a2-W~v zD<&_}#2|*qS|iajiZb}fN8Y&rYP9`{4slxy{%`M5)7a=5x16L8i>V_1qah)GMC{0g z*@*}qxTCq@t`~!XmVUfqokz(Jh+fDg0e7xJ^$WB@adQWxJo&d% zu(~W{se#0pdj%XddI)o+9qt^M!w9C!$PBD?jP))nfrtYe8>%35;Tu4ec&6g+Vi$f^ z6rF8#4F)h7*ScXE!1Yxc`X)L!OTj$FaX*kl$T}1r#kzybAaiG)uTzM=$>3RN^)L1= zVxqAFU0Q-&tglpy06qpaC{O`iuWN%o+;Djfpz*|<>aixCi7I=rI$#Wu;L9SW-|h8y z?OC`cafl`?J-!!UT-LGW(r)ZHS=zHcroDBay{bumH z7R)00&-JDY7bD>WX6|H zvXrZoY-zQK`o&gDHPl+-##xafS}m3Jhf}lOi3wXOtp5EvydQjyyMXl3ie7TH?td)@9u;PBBj{&2_I zOf?&(Tv;#`@(qyZe9~Ftl=S&luTHr9zT$`UAEuvNvnePUg!kJ@XiIK)DBqOvjv5*JSY_8)gbkgFSAHg|O z_CK7SNWJC7)G0xOpCt;(SiI8hXFXw$k#9_#y!87-(_$e57Rs^3Kt@YbV3Tk({vELIZkLxw#?tBi$8R{kUp#xU(n@ zjafxeDsl|bmIf8N26rP!tVW5lTC3~pFD;V<nM%|Z^-V)qP0vj zNxkHlTn0CH9M>#HFYHWOAG8k;OJv-VL2KYM*9*2efCv%#1wer;bX1>1x*YuXjhe*H z*Oz;)-+z7cP;c^z|LC{%ep8M0u83qaS9~sfsKw6AJFk8H@&4y;n!G>w^*hp;`@ftD z-k1MJtN*J7Z@FCjizb~CwM|&*AHymsVto<=|6#Pv;|-WT$X&t29tnuxlV;37j} z1d3qdln2ljGDZe#ht?XE(N^j}$QB%e%nL>4bbnm|I|9!j|LG3MxIlpFN46FHvF=T`P6hVnHSB^@bHJdc;OYeYZhAZop#_c1x%TFdn!Z zYv96QSri)%sNK&a)ShoHH}k6(u!i@k;n{IE4bjIe{9SxHK84+Ab!FuNhjL{sHhq-F zNnHPrvb!*1hzkRW00qd;5YvDP#GdNEc=Mx=J@(P}PCs_wvFSLg-2B*Mk4^Iz_$_1s z?w({mcC>+jtlprq?G#9?ei=u6P5(s{AEzeX z`=fYybN|KP-n9)dmf(!hH@1XBKehN9=e~LD=|$R$U#7YR>)2J(mMM%BMatn_fnHI- zUI#*CQF@>#gog_MHz^yMUcX2L2735Ht8l1fi|IiW8F1NEpCcAZ2E89BH(IUftdq6c z?OXjSY+g2gpfD&z;EOm4dQf&WuO4rLzW_AEeEWESwB@2mLu^7`?|%obc`5EsVPZ zCqcbs?{(P^Qrd2(l~3j*M#}b3D{|)gErmS@MgBbs<2&GPD^e5DXsv?pmwUY&Xf*zrNa8 zTNCpf`x)t9{5KAq2E==l(+PH{XVjHD3{B#XJV@>qABihC69IksF z)(>VKSeb~bU@c-%vP%DDu_&2`Rwb*@s(iGvech7`!ddF_Zyl#4`8h28r{H+mvF5|s zAmj-!qZ~T$D66~%M;wS1b{C`!UhXbes6Tw!KTl%i*uKT5(2jZht?PqcV5t!#3-gz? z=v@0fI#)zj#rcbI>S4b1Fy9bK%F{$g&yh`4rOQi86=aAz$M@pM=$rO1;nqoqH|u%A zt}|;M=*R>jL=|>o&KOGX>u5$EJThpsxQbhrY^?vMoescS!wfCZWDAQ%P2^OSfq62FvC%PYDb7ZZgC5XUWcH%J+3mENZQNMK zSTR^;>!T1DvUz!4^sfaZLZ{PiHn;R|!VsCYn@3d;Y?nj3pUM&zP1}D27i8M_KXLv% zRAAZ+M+%Do>Aqr4oyXX_$?qdj`VC5Y73vPO^wrhaBI+uTs{l$XC338D zd@#OEzq8?YxbozdX<$O~Vt{iRz-0}+*KOg)lr~)2>~s(<>Y7Kuu`bRa4npl?ol(vb z$#KQa+3v`iT*bj_I><7=)2_mVi#h;tLC8ZW{aEz_|%v3y!bD2ppv4nNMIihp zj>8OyZmOOQ1%)0S6|~Z?6|Wd~M!(KBgF3i)%XKCQSXN7LORo_9bb^ymC&C^2EfwG< zx&M9kr|jn-@qf>}7N{x&T13lrY}q=}LFo%RA1X?T+x`_skm^({s>WjJU?O9UB6JW6y5`68DG&cqD(qmH zV3=tchHaA}CZc)$cGZQVr~#+VgEzfQaa)z352aBZPA%x1aQM?s+3A-(wm?v}xlu{h z0lbpS8498dYA9-Du}DOAJeRa3UT}JW;f0fZ*!A>xQPt#6z zl)wL~eT7j4DAZ_QZ^GeHx9{ldU-CD9(7ux675l~LQF&iQpLQG?eXagreTA*IV_d&N z!z#AHt&{KZH-FH+!g$&_0=%z(eVK6;&FgDAH+`$)jage!h_Em5m z@Y+nfavqR&j@ucaR^2_W0o{fLg`zK?f0A6986-Cc0=gNeTf&rv?bZN7n zi5G9DHg{?8WlOw3t^M%l35+|PC2Evi+Mqbkmo2Y$q8&8NM|t~sPFO79DMY|@yVU?( zu#|)14xL{3aRH2M(+CUV(6^nGof+B`$EUc@KRU&o89iF zzjA~1@BiM)R$B-@Y;-F{IL3`)rKCsJjfmcHE2WWro-kxC_?NINGz6xt7R-`W6sCwV z!URy**FrHwO4in%(^jfau6$gfiBlN}%_77N&WP9<<{mhEQ z8Bi-in=h6A)Na?NH7b2(n?da}X6XV=hO%cG=#UdOYw>NE^ zh|Gao4^}~IgBw64w%$E|zT1cY0*JNYd_9kK86t0ZSVr<4Prs`ZJud|ssB5bw)d8X! zoSq72dKZD7)#imZLcCZm7jSN^4LUcn4G3>c@r)Qn%kqF=%6)HcluA6ZNwA-6BK@~=geywT(;GW&^Vbpg$=HvGOyl%!AuB5IKkn4=Y|p@2S`sS z6vI?7h9HRq00Jx-(L>b8gRzBZ%&#XW{r<_M%b6`@ovzUrOKzW4(cCuQ^={Om4co&Z z38h`^Ay@})xrtI!ZcVX{d>E4Ofm6a)4)PL$^ZY(FqoiiOq|Bt0%EyXH7&CgJ7}oW0 zF`W zf2n##G&K*b(!5ehdn)_W6(t2IyRgm4cSp88q%vYrtO~%BPBbI%yaSZvvm#c10IL%5 z3LTcADBSkr;uN}r67exL#S= zvM~YwEUb64Wgtf|>Sp^@aV1ay_5i|e5}fBSi4b&4S&QgRgGb?NqDMHTbmhkeBa5?C zW^SO`GQ*z5(ACB4{CpM)&Y+j`o(hKjKHgVchjgX0t*gBAzml7uM=>ZQ>0-WOys!=~ zB2I0^+=Wq(Hc>eY|ziM}hk=aDaUQXs}ltv>l=ufGY;3^2y` zrWxFS3U;CBZHb)N_80fSh_azP+U zLIJ9uOdL1>|5kJS=P_~*dO#B9QyouKs z7-6e(xh|Jh^pz5dZ{Y`Bp{1@3v`}G#k$h4xpWyB1W*pz|VLqY@!>mdqmm=_claM6r>V*um=GB^ddTo8Hu88uFCl?o71IL>@T3~O zlj+H$;gqlcarTp`>sETX|FE2z?j3o}hOaZmUKdW6R+rN0d;MwU<^BVy>u*?1ym=ut zzFNEan@R@(cF3of`&>>FZv#b1d0RT#A?t@({zI;ZL-z3ZrZ>H5{>_Qi)x=@szPt{9 zW}i3M9oXAR@8Q)u;DN@<1O$|;= zQKA6Iymslt31px4dyWUMuKe_wtM49+i8#K@k}2EQ;|%G%JCZ1Kek&Tri6Quf%ss^P)sY*|Zxkt&$ZK3}uC&{| z=BFnIej(H}-uM>6QQVJ?*<5f5q?hReW@#=QwvE@0zR$txv|4L8>%t zwHgQty4}nj`zQ%^%+p?L+#vsH3p_#BkVN`J8NkIdO z?a0|+Bg<407(FP%8z?nSwpppa7H5kW0a4o|A>CqKT8RC>#c>8cKjQnRm_DDo0~95> z$bfgIje<-DQ$TT9Pksit5n**S`TwngVO<094Tx;~(HzA}5PV8z#af=;iX)r&OmG|w zJd8frn*^`fR=D-HrRiL0-Yqcu`uIxfpunPffv(T8M;B} zIzUET#9Alcu9p_Kp*!89Fe0O({rGDsv17M@K$J^a;sQtMtU^^)~2) zafiv%;W=Y)bJAE-s-Q51vH2JXS7E%k-AH=YAM!Z33kdxyz&PBt+=n&dW89%%E99XC zoBueMo)Bs}3QZz_Aj7C5Sq0=K6bD37Ag=^Ol*%C!*@vdi;un<8L;M*)9KfoD9!)vS z!bO9N`w54GfeHYmEYKPv$z(JcQ9|{Q62Y@1imPf?>wH-$OyzR?rBa^%>y$rb{s(!* zSZ!?1VS6&BIsH+m-Tt(5GLh+K#-|*G_wwuTS)0eM`2C6})n+!Q5)P(RSy5y)6$~rD zEVU(n<8@=HWsyp^l+VgZ}q_s z%a`(JENoOsB}r@IM~7-CtyubwlT%_>4JqdX)u#uEK`TUOAg`~ zm)GU<+16!m|CrY+uiJb+yrVv-B7et_JxHVI|FK)s+^mcQ3(Ok=6aVh-(l}tg!vFJL zt|O#@V754j;1e>Zj>750)nkLCq4+4mqX6#It3+RgG)kYt#_U~5le%_hbNF_=Bz@i^ zdF&r|IzMj56Sg_}%6RCZfp7bbtiiQ1c+qJ3ivq)l!!nCozE#Hmh^TXkO#uY zC?mG6B9>)g+!x1*qH(N)$SDTt7I+4D-C}quy+`l3fguKNAi7&htAdKLvAOk z%g@)(N#OG}mdb{Rb3Y#hcbF`LJ1jU7U%=HR+&ge7YfL4m&_HjY*aOFcQ;ukZzG1Yx zYik$V?GnBPT^n~4cfjunv#`-#Z6nZzalre8eID_nu^lUvGIGh8OSc+srt6wJko)gz zx8X(W(*2e`!FdfiNh^Tp_`|+=Njo{bv(t{mu1*?@iW@x^abxRT?cqTIf~jLC1`Y@A zPdE!ZqjCVHuq-cI*5PIbqa9imNoiDfUif1}(37_EjftDa0*(a&jzhiWLWl$r7gdl) z+}I=Bw*$R_N?pzKUa3|360u~n9^?S%Xpw?!bdVz_$d%ws?Ef~pXs{ODZ=f#*R_5Rj z3m9l{N(KNR8o$FIzJPDi@Zic|L@u%>-)AQ9oQS00JA&BcM7G3`Z{`tg?R}k1xMx8z zWj>HsWfOP*Dr$TYCmQN_^ScdU;ID$C9{>MeXfp?r{92*#%54fcy~)p$bXT}-2Jvd4 zyAs|9*P$>kbXN@lgb}1q|I_pHo({^Z&U-xbtjV4I{I1oGR3dG<6JyEu$4~Gqt{Sd1 zuA~8fXT?fpW`+5zq->E+B^m`v&Rp6<7c7Gm*P^;(e130K^F;RnK%R(MWjiFW#pP-B zAn}1GdIuihn0@xR%Nwljo6#LXe=NWfv-{@!Ry+F?Z5PY!i_Z$3c7W3z;IGIIqBT33 z5s&;-?q@;B0NN{VwAv8?06T$rM3|(D%zCnj1=$KzoC zfc5=eJj0AaVob3DIl2VC4*+3E-Nc3iNevgTOn0sw-{$#e`zY;-z*rV5H2!V39XfDR{T#%(ux$4 z#KSr*pe7Gywb#!ruS`FMkIu>RlXzI+A_sE~?UP?rw2y_B$3^G9CWv*2G*m(cS`Ua3 zDDKd*X^+&X^vQUG?C~zzCPkzfDj5Y<%1@Oh`kPO#Naz4HK@UZAYkklOG82sRn$|ft z?4$Ig{P!!%fEkj8hBf^skViYO`F5!!JX6c?+MlwVhUflumLGxlzGJ!H@&@?u-)wm+ zy!cOAp0&K&@*d02T0UTT&ho!oK4$q1%jYfs4J!$zGTG~NgS|X_zVr3}SD)3X;Y)9z z;t2;4N06b(*YIL+4;u((E08<7iq%Sw`~39h^@zV3Vc^wBQ2gyn&|gdwe}~5DFOw91 z$Mf`;%ZR^|lUm4h4NOkz!GA97o7tbv)4x;!YM(>TIi2Z5JmYj`W9+0?@;>I3JdgP# z@1HA@C$C7#b$Bdz9Lh$(8F!t7Jelw&zHJ01 zJ(KxhK2`|iWBFhqUI-RqbenWJCt0As5erXx9Jkv;NuTsON1&w5d)Zl6Qn{VGT7;}6 z{wM=^O}uUarO(o;C*n^E7DF7;Kd6YXOsiM{z^M^|E8(Sdpmzv*4EKwv0kQR*Cm8g6 zz!Q7`)klIJ+2e^SUZ*nY0C{6T_x?!GlWVKp?!)i_Jp(0~f>o`6r~g+}xagoF1-&3s zj3(w5TS1r8YE{CXfPorxE6<*N7FsjD&6CN6FNW|xl$!+K5U-6%{s*e;F1k)pX6_QN zucGcCmk?eg+<8=}&YNDKwM+}bFh~d+t6tX{J{s5w#1%%lB%HYedpo47z}@C|Xg@^L z2KR0gN%PGWh*rThBzy_vQ$S2|-RNvH7YH0=p*SvN&nF>!Xbr#J@{HxD_iR_iZY zK4tke%V#aWZTVx%S1ez(e4p8vhlLr=6|pwtugo>7brl;RNYjcDM1z501U?ZJR&~@X zQi(4^f;CL=wFusUPqz`FFXNZ^jQ)Y12&)SJ$Qwadl^)@L@FVC1;&lF7Y%6FiM-3v4 z0oNb(7Y;HNz6V-?5`vpLtIOgMn>K&Fmnb(}{PbzYcxZPH#)oycxN+FYBvXxm=ho`L`tJP++0l{dE zI2(zi9|TvbTn;vEEWsjqkBwQ!Bk~kuhsT)JrhtzT&|1t$DekUg-*(!hbi@&H9cFgB zRr&;DHk4*=Yy0f;DQ#RktzOe*pJKZ4wZXit`GzWlPztk{x~?0LScc zpU;X8pj8bCV~n8*ugz( zu~;bM2&w@`CZt6|AXVNEhUHM?lZjJjZ0%DCcPzRX1Jg48#}=bF68RHxaI$x#q1Kgz zjtI?&2cn8_jx@;rC(DEONZ6WGY5*a~hKh^_xC>vlbTuBs-zZIa^PiwJi1upJSUz5Q zGMPLHrw9s16mID%8AHXp%f`_5X^*stcpCZb5&Ftgi#CeQn62Uwl}ua2(gD;VOqvdw z1H}_e9)7@gB@!pW`2?gS{%|^`ZMEb0qi3}9_`@^d$6w*6vkv`n*W<%3;rVamgQYrt zoQ257g)hIuHV!j|YKRd%3APO^Qy5HeVYH!|;s3-e%#+|}$c$^p?r!5;ptlF%V0|PD zvt%q5x&V(Wl zTt-9-Qe3T4wz!Jj35j&zeQ#iXh?v!Uk)Xlcr4Xh-8vwnFetkSu@u&PVsa({*IBhiy z>-3_2+L$SpO4f3h{PlM&#Ky0QF(cu}SMBynYTTbN6gP4m-HI`p3HT(n{SgbW)9lsz+Mpq)0p)lcd8_NV8n6(G*w`q}@Csd*v^Xy^&B8G{ zhq-IUV+(hF2`BOjrw|PL=W=Z_<=aj>6eT*H)oaIN&AWbOh#wNV-8yun8P2nN<*T31 z0H!xcAjj~V03*yVIul$a_*)kJ(OhaqTm(H}UWCxX;l<$KMO!!$5Isa{dm@1AV6)M6 zNR|`@N&br4NR5xD3^#wFbm%-<7=sB2&NeioEnn?AtU?jjf#ouQj*~%7aVB_XIPh%{ zwJLq>?NZyBuM^_ zK=RmpB%Jlm6oDQmoP#hUN6#+V0cf0icSxq;%24~_TzPFaIFKOCxVsn5U&``Yfcp_Z zL9|LV2BYZ+DnVS}U0cTiM^CeJ;R1QrwvI2(?^SXR;2Ff(u+olf1Dwt-X$HOXV%=X0Q%7&q>>p@~2NN4oJRL;pREBfdg%#B@)RbIyEDXaop`U<~d9Sn=>k zg5)FiJ#3{oT|=WdI9zoW>^@DgEue768YUF}Am?aI@O>o5;(_Dp1dr=Z`~47VkD|6( zZNc=_kkmt;xzEt_-EhoIE{K18S`T(g)6(LzfuK&rKrAK|He}3f3!h+k2QEWn1N{cI z1o_3(YQ-KK9F17Gjw*eBszryO1yXGlPV)*z*~ z$7F_#Mo2ZR!Y9kemd2Q^o^kDoCY3X^0{J@pMc7ub+HT(@E^au2;hcpJRCBqouWzkL z!4lTOcRCvGCnMMd~&(^ej6IIwIG zovqFdU52=}hz0;UIT8k^+?LY-S1SX!^&=rgmLoUsot_p}vCBB>_aAK^2?UN9#J8Bq z^e{zFN*sl~0f;X+k*fz*#mF^h3WYs;3Wb@BDC|b#x7A-Kyjw}I#gRWaT*BaQF1^_q3aFZj(Gd2ra+zdc2}(?OTls)-v+trE*bv;U-Kb7NtBc*af-@V z{eLzK32Ynm-Kq*CBI+4GOM%H@7#qRAMI)`OC za`BlgDs7E+nRQfcR@j`WF z4FqJmQ0yTaR`8U2LwG!fyX}V<9HTSR zw_STS(xYv?8N{YG*;_34V8vl>%CiJ2;YoUckn{Kl;9a74kVN@xM9+xb6K-5AIkf^J zV=C{(r3A4OY1P@>uHT}XBvk7UsAcwrPy6CdXB7J8xDFJAGw%D8157OkZm#WVr<}fr z>C>1mIzArt#pu&6lc?e)aLAHZl2~`==MQ_ORC~5|%cAW3l*g@j$MrSAKNH1%ic0yX7#>c7(x0N~HNH$MH4j#5#3m=vRU||GAA%JPHAv!3rwMJm_ zdX+{UYZbB{aXU zFs7VdKy?9yJd2ry)5=)E=hqVb&-fIZ$1~C!YU22rTt?5qBrLq&5B+3kr-RC^+^&@{543h6kJg$JhXlz1}iIm1JX$X%f zo@X5Hc=W+^2Cfx7JzhL=YATTa{ZyvCr+j@T6~AJlc=SHM_m~s0JsyMlHsYGkViuDx z7pDmSiqL{+&@hHDJs`F)ZL78G(dj+wC1^p0F?lO{1Wu3lv8Ek0H{O-p6F_PRa#D)7 zKG1|9>i35EE-wv^ABWe#64uGxNGcc(4`-*|a1m(=E|K0q%Qf!Y;VY$f>m;?)EUg~_ zD4W?KFg5@C&)a{x(tTeOGV+02i@ZT2a3sOr-GAO#(cb^bjh~u&zHYDoP^w9vPt&Cz>4y(U6zn)q;my{lZO4}0 z3DBYnO%u*+Q;DICUbK10zqkK&vq6;eyqCGUyn+v)y`s%S)I1RHqN-5GIM0wew$%?) zS0W!4VKG52NZx)Jyu^@8wv4bkaeZI_Lzza^6*@nldb;Yv54XT1*abLyfaJDxGY^~V zm;6QInAnjob4*M_6@>iT54(OI4!%ncj0~ZzaUPSA@tbv?nTOG+Y z@>s5-kffLo;&_*@BMAo$j*IB=7Odj(btKn8;lcg1zX98}hu9KbTW+3lRUH?Xzr4&N z^gC?C@T(NqM-;yjFQ`V^uLaZqzxg#hpSk|*^)msc`js~q;+a|d-x4J8qkpIb0?HqL zlJ0-!opisk=lYqM>-RjXK!xYB=3m%vvS)C{hj2XruSDR3a85o%yWu_N4^%2D&HPq+ zK^g&OVzD+07Zi3eK+tWHsy8&mOy*hg(aK}`A-f}L^#@&6ea;>TNcM@V<)BwSS(tLU ztS-0JEn{o-#7hzA4|b>XxJ_nHd)&9X@{d&>{qrmA)>~XIhu?YnZl~l7IIp=%23Olj zf70Xg#N!UxgF>S$ui8R>5YkF^%_g}ic5u5ZIk;wzvtP!u37*YEy54M&Fj3@t!i_30 zax?s(l|aAPQ5yvqC&=cZI6qF0s6cd7Tw7gV|LwyLo9tClL_pQtPItufEEIXbq7lPz zI{jANVYj>DI8C=TF1r=EnX3k~Id}&g z`fqc(ZGP7iSvmJ#T;?^nz(l_xjmeJ^=Diy9iCDCDcDpG0_{Zpo8gSESqZ>DD>!rgv zPCY^}-|c*}mAy%{Ix*6#D)q|oo74&H)vz_*gZ0BP^2q-qG7usz;ch$$&5)rK#;)__ z!*;jqzsCiRlCax(F76F_duwYO6H@RD2I;l#0O&}FLYLjzGNBxo*A z)gvQu#>y2}2X>z3u7_Zj!w#1mIOoFfV=Px1>#nxdtRZ5bPxUs z%t5L?h<_|&wcVJWRrPc&o2Z6D)kL#fmMyzlmSr5_1+dx}6Oh5i zA!TsPfY<_4Z3tlynXswDB$EswAzJ|xhQu(0Bqf-~gg~|-QYOg|vOFHIJpb>Udu!=M zcIG$TUDdVRd-n64Z~cEvPbD>I=&%dSlx^ka(Vj$fG5>_sxvZ8#5vFBhQ;rFj7KJ?~ zJP~V}FX+u*BGAB>w=86-QV%9S|Gg;3Af@Dc8C9}zFHL0q}YBrrqRpPtN>=e3I zo+!*`Z@V=&j~nz3qhHW7f)^kRGV*0!F&#JEVY&yag)~7ll4PERm7Vxy9;6{;7U~%H zX(l36uGow-c)&0ZUNnra1}|7gS>+sZ{;7P{?eMx+6&KH*l1V>s@qu&(NmTk>EZwlj zlLIduaRYaJ^j{9Xw)l>%HJkBFcB*`6qFS9eR7T3Xc(WOZsJZ;q)Iv>LT-0g{x8GV) zx>Q8O-4_3vWB>FIF%IIay@I{xfb~8_7Nf9nq+4)o!F&g4r64zi9FQ-QmX!{kE5eh? z*F+kKq-t$6FA1k9xt(ohp~>UmP5ssO&v}8b|8s397wG#MokQY$BmJR+aBxcC$Xao7orb^ro>^&~tcL4SJ^gM^G(f zlG|~#kymCl8~ZQYjP=D>=+c!dmw+idGSp-9`x5Ki(%Z2*$NRc%rDA-Ef1#X@!rR?g zQ{(-F=1Zu+#y=iRv#9y|#!?e+jX56FeNoKp;5~+#`izAh?1oLx}MZ@jWo3(vQtxkiIxz~7)ce& zs2O#I<$~~j!IUm=4Kj`!VeJ#=8h4sfWXq;DK$_}wxJx?yQ(*nm)$^;0(*t1!+8y2= zXu|u~tK`~_rz+Rq@uwpHpAQT#zrjskCASmZ9I=kaGNQ#k?Rj{N@Gb z@fI@0;xFwgX3I%-sj$%hY^H<*_t}YJuo(T)BQ@{izGwfy^9J8TPe1bGzQdlcbo_@r zccJgJmxZ34yhGsyu9JK$BB@fZ0BzEY!+~UOKpftn+z}zq8ZvTbPoJ1|rgIa;jec*P zA$Qf}+(Zyxc!N=A`oQU1VrlfWyAF%ScpW+NjNG;kZpC=C$oSE zL>TN5g?6mn{`DW<%`UaG*~7bA6nLiX*5`%fktxz8K;naoCDf+|2Tm&m%aR+`XzdUk zhBghn3xWcSFDSy8^X)RBqG6E5RjgM`#)5a`XY+RiV|LPt*<-;2*6OaR^*}I|EMCmQ z(cPORT(-4Tp^&P%=bQ8H+La{#-nc=(pMabB-FxYBai@L*-Ah9y_B-_@fD>d2mSxje zreuqVIV1fC;(&;fq9ddN!IV|>zT6~L@?^SlG*=7;C#wfCzJT8kF>)Nqx!^5$?v`af%(>}ahGm}IKG z9>C_?-Imrl*}}|k^!gjEUJouFh~S}EW%7}AqdX&{7-fGsfL_C{&lNkEE8tK=>%%8R z>~^9zV)vtd==QNx#lx^$67S7^F+4L{3kQ|PaziNwm8Kl@l`2KYknr?i-?~)2M8+gI z4@0rS&W6I_P>B303qeH*!UMB2%(j7U0ZV-2Qznqgl_0(Fl(d-sY8y^ZU1oO7ZKiYJ%&U=P<`Oi$W4x3 zQk)FNTj2e|GmfMwq`+3ob_Jpe9Ma$?hq0!h0EAdv$gbMbOJ;|^KI=)jiDsLkWuqC$#Y4 zAq;;)ZzGFw!SLpx)iB-$5lulxTd;(9q6Yy2paoFO5i$`hu-xp>s)E%68V~HFctKy` zr=* z8&FSFussSgRM(`C4uj{H7k+T^<%_rfL8<&>S3}`)v-DoznzPQW<@1XP`^l5Pch!zG z;NkwO+TFH3A0qx3)D@@HsGGzBT!m&t-VxRr(y;GF4xcL&&K-`N9EbDi_s%X$XU;hG zoQ1KQj}=O!vYl9$n1#|H{V5p7v3g{RFg|(mq+amLhIJwMqEvae_(qZ69Jznc8X!tZa15}IaozzDO~jYYL{6&~ z%NK}ggYCTEYa3bMW1;8ZM!E_*$u*VOmN5EJSQl@@50E=>ybTRlEV$kX$bm1~h7;-O zTDpe6>GX8}+uJu}%%QEhb949_{T}-!U;7n8=LYA@*FQErjSTvZFf6en_&GtJ(03KV z%p(i#H?;NYb5;DUYpZM3M>Oq`>RPqBCS1n#55$Py-mZz@Jmy zq!*)Y-hiJm5u2~?*YpgiJnM$03buuX|U+C6+} z3`^aBp9Sc{c(Kj?jq3y)fugxy_67Dmv^8fk<+zZ*lUGoP3v5cD1u)t1Fc;(wjKJ~_ z$M}R4wC}Uq-&{a!SmDifybekUglb<^?Dl0TDE$Pr|0nQbuiY+xQsmtrKV4Bzerr9j z?7?z%lZtG)csys@wyxBy&o`SIt4+}9KVXZx+){anta7Tq5g?vDiz5 zA3pHt-fynK#UFeIQ9}SOjQH8BVAt8kdUi&3PcE;_$aec;aeXD0&`zwL&=Ro~f(2UB zrfvL7T#_j++NU*TUtT+*;V-{WY0`EAtw2T#pi zM|`nng(}&0)mEM;TD7q^y?a`Ldmnh<-oRbwtHYPP?7xS;gycmYL8%{eL?6IN_Nrf< zOV7PF{aQSK^A6NTN@W%ZSwV_@150RjNGdp^9Yb6;?fR`;iKh!>@)}KA5h^JobT^B1bCx zRjP6%A|E|{6p@TaZqMhwi4WyUI>-w!+R#NCIL#^1n&lf;-@ZE!gbD`^3RzMXu*kU_ z4xVOliCvC3tZ@2`Y%?}iNscGdCr@UQr$e#uOgJ_XF3H*AyyxZHj?_k0E`@!z>cm9V z_VHM#R;kpuo=ot*moe{Te+QohZc%UykSHO5g7m-`27XvsKr{!m?<6h{@adTeEIMML z6N_heHA1fBoK33$A#`Hb*+sFv033yI=6b0!oqba=I+ONVm0-}kiv^>_H)W@dU|!7M zP+#EyUnyvT(GuikHVeQ%OdPbcDaKWUx_}J5P98EnBA^Ar05V<)fc){?Pu1vzcIfs) zN6NCCOIypb$k5ys5GB1$%8P5VzZ6d17b_HE_r>#O&Fu96*OmO_rn1BHWffx<#0fKl z6;J01wV-0WK;Rds6sOjZh|87X+s0C(%r1!f-yz2DHT5uS-=H#1@Ak+KLc4?uta1iu!ps9F{^b8qG&p>@{*KRZXYm%5I;(lu3jX)g>)> zY=v|xtj2xev#hiG{yifj|2Eu(zkGT!jlVD6?%7p_hmj5E(ks~6h|g`8+_U@8ep-j$ z18rN!Dx4%E;KmEo|ViAQpk^LKH^)ABGYG#r?_k1Zf zrK+zfPv1IoG#hrplPsEj(vI-FkiwG53Dp}9Mm%2bmq9wGZ-F2GS1i4eD zGl)1gg*h<>SymTtevw^jfr9YSeBpScE~%i~X$CsUIU{f*AhQURT9PPe-yQ*Ov;w@z z#$p{8s-Wn05O>x7dk$;Xt0cX9G$8s{ndP|MzH~H;0pGWnb^kvr?r?gh|BHzgS;a@k zckfN~Ka7wx95%--md1)Fl%6@=ShUoW-ZS2W+ZmPF%e|glAv-x$_4unnXDFsls7Dv~ zfqBVhrDKx?S7j}+k~mnz2ikIiP5bQ6;tDVjRW0YLJm#=A)b+`!sca-3#YsNChl#^4 zVI*jil58RwFX(U_`p*h=0CZN>Yi)>sJvcwp!5rFvtVXWq*REBeH1EM}dxIhr=;I(R z7+vqQ2dORy@-MA6V4!VZ;ZL`2Qf0H{FC#d;YX#o@wXR@h1qi#vsrjE5pq$!9<`gTUk2VJG^ zb5SA`{uN({cptWbyGzYU`+-EHOm<6=&%PW<^cD&%UC@Xmh*CP*##&2mq_2)95~97% z84$P?Jq?OT8gsI@E}*x$QO7{I)na-L?O6pK683wnduXqQ;YP!dm)QHF>9orKqUm2; zTYGIat7+NlWeN};*HNA|u1ZJK!R$}dRn*94G%-xEmSh$eW?m2&&+Z zr?hCdDXSg=8PY>1f!yG2(;)Ep+xUvo#=e+7P2hogz)$8b{7=QRu?8esvYP za2W`W%+$Zu9gQ3IfL>#iXsrqX3a7~Uf`lavhE#9`yYGKJJ?(-1LbvwS(hV7i?fMt^ zb|eEf5ECxyG?~sUst2sp&FXyceuL!tb%(`a)42q$<5>Y zQtBq*8%a=aQa3tvlWE1b+s-Wp;zj$-1%GhSFIN3cr&%;$+qo`pY6GO!9X1d%aU@q! z*0y88T6~!KQ*+zRMC*G<+lU9|dMKPG3#__d1!(D+37!K4OnEZ9HQ#wuE z08JJ6df3H;FT+ja2y-SEAqg46=$G4Mp~=P}Luib|L=b0d1avZ!oP8rvSY@F%>~aqW z_|=Oi7L|L>tMHNF_4V0b;VdJ}dX2KQj;$<7_+8g!;Q9EudWjAtjU2AUN8+o_@|<*tyX3#Du2RDyigCCXG&xM)bPlq%y>SlN8sCZ zzJl78LfeR|Fp=NQkWPcQuw$X`(~}d!qXL4m{vJXmaYFPkcn@$vSS{cwxSpbXqjp=Z zcH7J7>A$6?rOEsBw-+-xAj1PUKKE~x3^558=_#YYC>tK_!RIX#DGwUl!~=hyYufcU zEub}doD?02Cy!gn$YC!+lMpP2K4FA!umk%1a?SzDc-<{SG#36TIKSitp8Nz1!=|qh znu0am2{lXx^3j#?jcI6MM-iz&UF~M=&5s2w>y#!g7Rq6 zeuABC3m0Q(r3N9s$fuf<6o`D#_pLBxZ0-FP>PB#HL;U*z9oxqkoPZF774+?<#Xn>* zNaHC2r|=AJ!}PNVt*b@is&Xf%wP?#V_Fl9sLmDTpWrkl9r0F^q9nc{l*U*N5K8zS? ziLf{41SVW#4xadM0_Y$*rzvZ2M#C&nNR?9kPRHs6Ob&l$aJg>7K|pRI@Csq42&8Qx zOb3Bi*>$Vc=D}4~E2KNn9n^mV_CUgqPm;|aD@$k%5yZ{8RcuBvXJ{a3675Ye+=L^A zfLHeKkjV(J{p5Whqg`qLLF|07&`C?xfJ_UQV0MM8 z&=oa5ab_Z~Dwn5j(X?BpYWojrb936k{hSB*OMXA`rt{b@`mJ_Y@u8tBt0a3sIZQ$b z?cFl`q{|jrXhZ^xkw_O$EXS5-ut5Uf919?&UMB{cdtjXlAY1a4eggNM>VU zyk@&JHIYy?NlmySl1u$QU9RnoD*LrWm@dEd5KD%DIvoim*`Zsr;v6Lm5Rq>PJkd?^ z4GH?PO{SqYaZnEpg20wcL;qQ)A0!WpdMM8jD!xgcA*NTfU525usA~HRL;X(-@It6Q zid$PlT~&&|U>HsU&Be;(+7Lp$Nt5ymD;Bzl#u9>pi8Nt~po}b&4=9!{O*I@k*o`Ez z%E)E2mJ8cvvb934penb`9Ii>49Q7$tU;o=g>|f!ECH6H6<+WJFEx7{`+2K9FY&n}v zase7DGZ|G*-G^KAcUpgF^GF9_&Z#KT8;R6HRJI{J^?__*%ee|!c5tp%c0N~Wony`8 z%taUh1jJqoCu#NC)!|`7o;diU^wY$-O$v$WTQJhj7l zi;acdb+a>wM7{yc3ci;!3_KfGiy*K8 zCmktF0QG?!F3RJNcQ)Fx0wZ_sqv&X>dEr9y#-(igUJ2WNt|$~E!?M?KR+PXe(E6d_ zTjsG^q$cOOK#f(@G3J3>0P0QJL?4n56rmST;6Hd(6Y4&$1#p}S>@zTf(|KHxT9OZ9 zn%8wT11^%+YVqQEoo}PPZv*A75+VRRc!)d8k#3TQ%>Wpd_YT}D*9B1kjV_-+DI^#z zXa`Co2gor8K{xvP=zLdoZumf)p85W5~H zazR`Du9ta3%ylkkFS4o{&KwTK!zrj45~*<91Lx>@I0H7<@VMrV2TF-R!b#bvM*C-n z$4FW9FD%-tiuUplloXEwB(Czsd%L-RtwH14FWS*#W8K?8gKyx$8I_mR&F*;jxPDUL z@;ITP21X`yl0dPAW{MbMP?#i=qc4j-paf#Qh?C{+p#XBj?}2k)om(k^Jb9$#x_-P+CsK) zimTztdQgT_+)#<6dQ|TN}_5rVv zwKn^?nZw@xx7+Q$#Tu=;-7A%nl9+KBzQP7y*hamCjsqQFm~>Dw&y5GYJ`rtH$63`n zU;QGdblrlpvtj7RnzYN<#xL2_2=rXY6N-R~RAJXdUF-E$AvF zDErJ{KC@FL!*L>e4e8}j2Wa3;Yx&8a z+^L@9$95Vt?1f=ncEN}8x^6mb=+e%eI{xmRYa7-z+ON9pru}NOZRUuN-|=_vJWaZ+ z@;U4~H^vW4Er}M53M{+zx1PG~nZ+gk%u>F!i@qn`$e%e~xX#2qDvkQcZBhln*APi6 z4X9g_hqcMWaq(RLsnaK)S>Vr1+v{l59sBw7C!g@It@)pL!u#+V^uJU#N+i4uih<21&-j{k}9Kx=Dzkdwsi8DD$2FLteGAw`+xnxLu*y1^R4$}XzWn_ zui_j=WytO$B6kb7zVemV74OSl=2Z}X6?*GiLv)$wR~OgXAgLohx=|@)SgujY@o?YE zpSktc&zx988sH1e#BT=kw1$mr+z%0!_vHbMN*W$^3*1I?0Fkt}nr=6>fYkDGa4R5< z^b3~)ihl=ZUq>g2V8a3msZcIUprbI^i_0K4Lhl4YWyXyEP%}!9bt(-SjiupRo}R6d zF<0tk_Hl~^0qr&v;*uQF9TTP9&1@Ffu~tj%j@=7UMS9kr%uX*ZA6ZKK%u`c}VlKbJ zIqe8WR7bgmAnVG}pc-|SEUvips5h9*P9k`_9R4iwCz|hNW}6+^Q#>v^5L-T2ES}C= zZK%w=ZdJ3%mE9{d^}Q1_PM6PXO$HCy)Gz**ZeWNlSqb=s$U%VxvgxYnD@%pR=(m7IwyJxx>s3GIqvdy@PoUdEfuh z_n$H|>CmA=_Cwe4e9NIjKlA=W?`L(!?zOV%vsUxV*u4PQjhJW6aK!t?@;&rohTVIz zeDc9lcb#H)_kVQPDTEXL+TE3M`By$!{^TFw|9tsm`NCb57T<^8V_!zUc3}mWN;oYG zgy%1VX@i>yM-39S?}-X{T@*ER6OFIec*d0bQxKFwb>s{2%)r+x`k` zEN7zDM4%E)0KnMk@r9L{#ofr8{K>2-BGJn$zrp4vu??3Gg}H!%OGcf7f6$5Zpp^wfZKsEe*6HS*d37L*@@ceTouN? zcs2LftMik~%ai$6V+)Xs_m}MB5Jw0fX$t3>A*K^oi*A2>vcxJA6Q%NmFA(sj*xfF-;+5Q93-j$NGOaLCX24aR zjFr4We*np7ExzcHqf9gJotoRj%*!v^lPla(e9teJtw55BxS21rUt{LEN@h0T^_hPK zsky?;X|uS3@&A7GsL(?p7iJsOiK5)VlQ*zUZRA`4`2iOF8Y_)T5@SJcH?H>AXUe;e z9otRQ%rmsU>TXI&3&CLmZh&~|RjV=*Zr36YJoP}N7P{qc7VqYl;Hkf%UxN#YoQQLV zgOBRA3Y){#xm8I+r@r=lPMB|I+ z?&zD5i}ZCPfy6-C@XUKJn++PYpw5#9)$ewBFDd9yApAS2f zZI~yh=0j6a$guD9halXJzVRZ~@o%Nto|x|koblg-gu7nXzt*hrxUFWX3iN$!mh_tls1T4eF5vehcGl8PvbRiVOd z32i3+5ws(GXs!Z%8bRPBkO?ULo4%s;gf@fD(s~MG9yN^dKGO+!m%+{)hAo+hr>=?0 zsc1d?rf=HzhKe&4hZ25~dxvNgKddQ%9zLTp>u6#*lrAN1eJ^xYY&lWwceixOT1lkS z)p8~Sr7&Pu*wj72*q@}eQYI5k-<7tMSSPWZnh9&SQil`%#OWP-X}4G2J2P`IjK`^S zO)DJLV?V*)7E^bntuPDlbEbzlBht^1e-~Nq^W2{Ux^Ek@Dp>FsI`D)s29*W$3ywYH zL_{gy7s4>EYi5`RWaydkLz)dlj1vYdo_JhI70L_Jc)=px2B4paMPm2>Um*Q>o8t5O z8@Qh4M96R?@4L|&j^Yh|fW&s$0y7(hjFCH^Dp6)?%6I^;s9x8e$Y4#!<4bqX%PT7o z=`^;!+D;~Y_;f1o@SS{QPkX%V(scAli>RR}LSv{}R>h&hHVw*j(ge#aDL2UW# zY`g0ibIGD}mh+oWVpl6zIfsF3GPIZgqz2Rxf%#B%X#|TZSKyUvL&&WD3s+FEoD!v_ zP!&l~QsTRzAa9JGZeI^YqlIYnlD~4O!eZG**5S_0#4Yhq|4*3HKY^6vNc0}?NH|tm zY$5HC?3w)h>Vmy-kL>?=Zci?^=MX)8fC?!@zl%~r4i}0kve}#?6t{dTtd@(a-y@+bW~Y=eG<(B~S)p4!U?mdw-GC5lS>6ib_P z*I+sDOS~i3xYXH0NslAj!jA0NTxvjWQsPW=%NB6ikm7*HQhztOm`P~xk^x%I9`(c3 zYA>7&D`73*4gg@)VP7X7E*g4T>w=b&E*sGeIlz{2iy7I=kSD#KW4-?BMUDJ0W$j{r zm33eSt3rJb5lG};gM6aWMKu($u=mHEXh_!@m0TmxydlmU65 zTKKi`<<{BdB){VyTg`B|`Pas6BV!RTJ&h9bJ~JY-bO-UdB`h=_822*rn3Rz-0u!P@ z1S*5~!=VWH9e7>yi4xI9X;jEr#0C~8*h8#aOs8ZgU`w!v^adaEt5gNcmp_!yI&E$aEgP|v)$?P%F)eW1*aJt(Y?$enH_el zE+|1mR;R`0vQXjU5N%Q1TmcG`zcThA24EOcW>&PP#(FQ&KUwszif^*h+GA zr^Lt$>{k$RWyz-jZtkx1|CIkL);yN{FV8LAUYkuVF5Njj3ys+Q3k&ya^6lr(-wrTD zdOr8ch5Mg4vi9)tV~;*Gs2fll&~s04j9#6=$Mh`}YVh)+Jt%$=YBnH1OAByUgE&-J zAY&bt!xh4+a0M-A75Oce;EmnIbl45}HNTRqj=ruBE^*-owg$gJw@Y?;kZB|znVtxx ze4*;_ZQ?Vb1J!Ab2igU) zdm?^s#F(KLkc9=2w!=oPy+w=0+1b#PZUyUX&*U3K*pOH2FiJa%Mq za`M;{$M?N*@8sNF-_GKDanWbamd~;jzC3d5&f`xUyJK?iEBDRc1%shsqyG+My8t{H z_$W5G*_zA@Coda&l= z5(Ri0(KR`a`Gr7EP#hiDcZoG&{Q%fSAsmmFlX1ibmf~ljZg;tZasuXhIp}sxIvk3mBI7hc36HeRjd>+R6~w57iCqH!T#8w0bE>D93FF3N9X?pwUI%v1(I{hl}>MdME03IWKfC_SJAL_&A;}*T`z^mbM zgXsTAJE+Ulb;^nWb3Ce8#h+e>Cfduj#~J-4&0GjSg@#xqtGoOnr<2D~uS7!3eCa0mun;59gWu{l-UnxN3R# z^cmL&Tc7pe{e+z&W^;6<2;4Bf;B~MtvEGOGk+f;lOT8Mo+nD6hnyWzh8mpVe*axmx z)Qw>lD6L|lf?L(%9-m$SCjFdE_GA6Ah>RT7gX%UBR%&P2QQ zH34izGVyV-7<(J2$-^}Px6+X%F;cdh%9a-3#zu=06(IBm?jrQeG^7JtqQ}VfpvYlT zdyKV)0Q;NGu{Mjf2FoKw6m_v5DQD1N6A3;;;G_`pk|_*r9b8%l&K_GSCTN{VoLdCLJ1ExP$j-5B zs((PSp>-Mb5erJ+OUyJ{8K!ikKa_Ej?=6Fx!|XGhGK{C7?!EDXIaNZdhg}#gldx=f znM7@&Jlb3$odlZ-q*GzX@5U`vth)~3?5jZGyD=ZL)W#X2zP zAwMOzlsPyx#|L0YE;rS%?b_uh>I~bmc8SN>)MS3zZYgt=9)`J>$|#l4Pv6Zu*;vAy z431Z$FJgW=Zr;(uy6BvSr2_P#K1wmRjM3oa9jB?kD=wM?v(qOD5WenG|#5s7KtJqvVZMN}JiR0L@Ed7))xYlhcn9h-mkIe=h z7~oDel{~s9czzMVt!%#`AXbb~FydrxQXb#OP}D-?pmvH!MA^I-y0p|e`+I1lbd+mw zJ;W4`o17rPZoCxTBU$a!oe0lNz4NSG5z)F1(t40kgO zIWWX3!lwvqkUVC)J?!p!!uBNc_5cG3I7m)-(lOJ;rYv@Cm(~zc+#r(0aoFW{yH)_# zOK~Dq1dwQJS1}qb!>x_>HZZ!LNBd;(9@yKkbMgozBmWm^k=39?-XZXqf{$mK0icwq zgTf7d%{AcWcD2i?SS-b4L=_{*m~3NkieCMf{A&JGV#a;d10^{hUrx6+;1`Uz3LDff zSZxESLsTrx7N{#n=@p>{L#9VKSi{zIT{iL_HZ_@55m|v=$^cEJlz1c}(9%PuMZBWr zN$1^YT_ubtXx7%czzCo&;^&5SA&f-Nu?UtL)-}}BrJ6X`zNIFkUu4e=5QZEgIn4Q* z8F(%*jF;edjL6H)AS}ojlD_}`?zmAL4s_`U9^mv=*Rzr3zp$x93AU7h)@}RZM=a+6 z1l*>k5%c>wQK=ZO?fXE+GfCathj%{kKpK8)<6U^?{rBTT%r&hmVV8K(K5Sq7NFVOs zuBMSLEb5istPeKog0#60ltdXrzNr&e`H=nV`atHzEya)Y;RpX$`ap|mb07M@$Gg9& z53l3({j2(5gT`-b@gsfc|HF1QjZ8#BR0`=F7^{SjA>t1x=DI?@`mjrJ1XuFe4I|Q# zwmXDUY(2zr1Hju*hgR@?$G~DmoCPOn*wuj0{M)@95k&qWSb}NiYYY*O{T{!>gpdqv z-#HOS-iE7_(f?mXekt-BIYcK#gPa#vbn6vzH}jZM;W{!;Fv_rWBLN5;Irg&^GslhQ z9{l_X8qTFJ11UnTP0Mdp_wQHn_&wR{w3P_UESGkqJziDIg)&Pki&=BT@6bv%rx%K< z{?!=sMk3SGcx>#C(yh_{x8d3=pE!F$^U7{>D5t6LP)W_F>$Yfo>V)iZ$|Qtx6%(gt zgkkn>_@kTvMc}54g1rK37WA+53(KlBuqEINGFHKaCBYh*VRK|lz%NDdkvWE}Fa%Nv zZ8__Cy}9IMqU^Ps)nv4wrkt)|1nD|*6LGg>wYq)ofXnN)TO1A`;+1nYZ!oPElf_tE z{&{4l3;MGz4^yf^kL#zM&IquiA}*H`3Bsb8+=P}?Sv0jfo(bX9Fq<82>;Gu=Pwq>R6;>=8DOE+ zEQK<`FE{2JGHiH+&&;jP5sCf0KkKwh`2y<5xNP=4vo*YQrJZ(r+2@gBmAUxR`F#GK zMpRMNBd^u8$Br(nE>vC>bVg>(Bb^ZnxccAB-5ae25)<)x!svecE=% zGtb-s3-byb!HL$1JYQz;kR`NN1iBcJsKW6cD~Fro^{|&^#nDWFel#lBdDQPT{!{C`V8oBucOqlc2IM~fSL&vLzx1z z-|36nqq`&jbXE%$1wKX7=~7bBBmme$0k<#a&m``Q`(QJ5<f8MKKC6E}gHQ7NjODg$-1OZX3yGF@PhGgLB<_w0h( z9ScV7_NbE~7pKREkVuQyZ1x2fqh3%Qvl&6YcDvsx`(bML2HZuf+heucrEFB1N#|1@ z_taDf*{)u@YfsS3Y;pTSp;B}VV=hmC?YF=sEEtX@T^@%+ za=P3BzcmDU8N`0@dyqWWrofBT8SvVHc@q!k9D%Si=ns9#9`Z1=*9M1bSpLmLkHj2S zixZi!%r5JS*#<+rWVXQN+GaM}yt36{M(Qq~|J87k2F-<4ADs;l{k2S)ogrVwZ%1k| zX7;Gwz-t2-D6_?Eu~$%AeBU6b6 zw*@W$An*LN$Jq~YgPt^TMv8-j?$>R4u;h^)jZAyQ;|o5Y0dn1o^uusT<-9!y4f19U z=@xw#<&dpI=-7#ff;u2Q0~rw7Blaw+i)=+k*`l^OtP;9Q9$7IU7#bD~V_fMziaa$m zH$qpf&p}^CXBzx*KyS!<46h_RCn5shl!%ZrFhnzx*>8blc0x0?T=I&3z8rY7V8 zxT#bM+QowhUe)4Hy?ejEUd4m<2+n=nMAsJuMqL9EJ&r##8TSGp_u#&L4#S5)~K;wAX6FqP;NWsR#w@wGWXD2Z5iBRZYkU}644)?;*QX&$}fB)6y zXt+B1rY;aa#q&@u-GF}}xF|q#@eW~I!HfkDC=r=TEbTI@kk8$IxSR-fn364U)dLy( z+1nQvPu>SF$MvUz zf&EM|nco*G=If!@u6%Wne?zR{YfK?cH}JmzwvGqi^QaycFw8WCsIcc1`GTypo59%C zrgqs(fWfXHL+>Dfq)W@X9I3|-N5K4Sy)E&vSHc6TFk(I5xb}Yq&@m2_ZH}J;OtFX)}S$; zDeNm-*P)x&x>Y1U&CIzz>Z#qFCsCJVLONZF@2Au7{^&+S*B30lc#6ejRWKv`Grru#dgx{A1pN zC*$#)wDauiKYD7dbk#TSr*He`zjV)IUT+!~_>pK5{@d5y^cv6-v5qMxfyl@~RB0%h zfwQw=6p@n!Q_`eu%=p&rw|g7?b_R`Ju#w=^$Q@2y^xcPanQey?3}<+Zdqt4%tXS$@C#=0{Jw=0D!L zbi!N8mLkr&(_+L-3=%dL>A~_NN{a^bv9mkGnl@{TdSH1+Ct|X^9?gE!3)~wMc>Ms!yBrw^&zc}2R&CaI&u2CTM zwJqJ^G;)5Mk&*ufscdUPa^& z#i=YVg`qbZsAzHiz=iJ5gUB#f11EpW-M56kX1;KXS1A-{XOGX$er*WuAY~T=hu>eS zIr0ZimnLRv6|FeS%->|Qx6Is;p*OW5~fPpX`sBK1{TFY zM~ucGM2mp5IR7Ey``}2rpTS8IVmo);TPRzG%fZ;?Eozd&p=UWnMv8}zO(1OSYutq| z5{n#qjpX%{+u;Yz@|dq*hZ_0B5MdJ$zIPm%m?;YfL|eABu13t92Dn*XtY6(((d2mH z1!7(h153V=gb1}C_|vzW&e3Yo+cxl+gwl{J>##rfv2rd?_@ilvlb8i4C4@$ddnS^! zsqgFhVu@f=i6@YV?vZ@SOk*qM%}T}}OGF(}7o;{<)atf*63{|?lp~n4Y9d<7{aPtm zXtH~Y%|i0?YCIbJPr+!MwXklmda7dSC>g~c^?5y+2|J?xCNeg+#qNvxl}y_~80Xon z3bmKRZSy13_AT&3cI+#7%r&5}0E?^wN|)kT!qA>V8(A*FzwHO} zAD7-^mpv!Howr+l|A7Y(isZeUdEGyBdHd~sPS-JbnsGXhefl(bp*Z;il)y0P0Z9^u zLHEfb?ry=BlhhpRq)(nopTghC^vQP;3)Jt*-q*d(D^tF^2Onh3*YR(~HC@3Eg+Kl2 zFapUjKhV{^@cY1<{{;B1eV_=K8=$rmEDN>(ev#h1&SM&u>iF2tLEOvmKc{U2y&b4-~A=rUI&BH5USL50n$OFDD+bC~6=j(U)c` zy{sk!rxQzbfpsE=OC$b_m3=%HNXkLQZViS!az6MrE$9hmR9{N=gn~{bEGGhc6A#E~ zd^+c$OHw{HgEy5*z<3!E2SLDPC1AJACXgWmIvr0WR$@r~9*CqYHe{2R&3I?`%c@^4 zksM>UNVbyfSLFl(07B6SM$6@J`rQhg(0y*dT|$hq+wXKmqEM3%AKL{s)91lq4Y9Ar zY%!pkK%8V?lW}_S2kZ7Z%Wp8{40*;3^9-Zq$K4iK3wrEkAM74}Xy~Xe5lbs{5c4>n zUZNf%JbHSKhc<7kp{O(;Sy_3cO;61s0O^i;3%06Xj63@6As(r*jy}iEntULQV%gW7F*8| zuvxrVHo6`ELaZ2#7Go@0h~eJ|eICwn0lQ<8Yy$)-`CaB1b z+1ZW$RZ%8dO)`sx$C^M^vE&Q1v4}g5fF8j~fooAPDWoib9!%^s#JKh9OMysG^#!H? zsMq9j>&0{=;FO>r1=e0Dy4LGKd1RKHfk?VNtE4BYh@SDe!rp+dClSa1*MkZkonm!| zIB~k0%(#$j(UDpikf(L;0mDy*V^ddQV!@A~)xt@kztPjkKp<=@UDRQLtW4Mw#KUcI zj1ZPm>`om0L3k}7L-5*mm385*ytyh^A|NRDjI&$B9uG5s@?BXP!GY7Uiy-&UD>kAA zsILKeNy4K;`dXtOdS`(YhYIKc!T^P3uX=Up3&b0`(INN+x*s%>cQRMsP zp8q5#sz^0Kx<)^uZYZR)*tgoQ2$XaYRihgt?zY?2-XLEm1$TR#8*RYS zT&U7LxSl_Y@qYm{jC>(H;3ek>M-KoIaCYG7_i$VoFA!piqhz#GL*QFug+HQ-|Y+3cV7E?l@sdSx!` z;<-mYV`Clb4nMiu8uhq5)eAIdj6V^5Ml=fWCIqS1b$bFqLf;W^WH8{W1rMUr_2K!n z<;1{pLqLW|qDy0t0DEU7I{RAaK1;>OL4FQONe;>trgb+$OxX4{%pJn z2#Eb`danOJQL~(Gu}m-~75?$%-)l}xPk`vUs*69Sy~Co{?TCoFz3w8wm-!{1L?a9u zFV0QMaZEnQbf$p$Rq-GunEtDqXN+>%nlO4T0+PVVKMHBu{~%kXVTG1jyD>VOjN_nk z8**1atEtYBvxTP&gpf*lS0tqvTO~BwqqE!vECtY$N3m4L=2}Me_(5FKa6Mr)h#7~q z4m4!6--5%XoE@goRv05-{NHXQL`#}C84kTI9cm9A+l>n6i$>P^)?Gql4sK^~cF;JF z?G}A}1s@{z8n+y7-ftyZyWkAQOZ&y^*WoO=X|!6{9fIc=mPc6^H_Z)0+b9=1bdrVf zQqe}B7{c4C*BdKav=!=4BNmI!TC(jJ>Zc0l-5_y-TO*7_L`v|Iicpg&Ogq(7-@+p#v_V$kTlt`Y~u`<|0MZBdk zUPhguB{%66rQZ>LH#jtR>fy)uy4kVnF4h!&K*vaqB45fY(3%Q+6b1n&1%a|~j4Dh! z*LFddCu~s_U2uakj0-G)Y;mW6uNE%M7n4j*73K?}kYgJ841s`-Ak?nMc>@RFm3+c6 zUrg1c4}3tXrHb>8M84Yr-u%TSoF8yULtDV-qwX8*VQ8b^0|Y%hX~?!Z7=kaPVmQS}@fZCmQLG_jao*kf~ve9s*R+`&2 zaale*TRq?`AB_i}&e3(bryVPKXxB2+nQDA0Fc&(ZSsSH^UB5GE(;8Z|INl~vCrN1g z$XJ8+k*n{(-P({II?jE<2sWt}Fi~!d3pNvHWa=Bu=2hgT=W75C&A=VK2IXOOZH*{6 zU*nLSiEkiX2F08;&;c+DHDI-ZH-_Pf&;Zi#R79VW>?4Wg#v$^>Ezi8;MEC8FE%7&{ z$JnJr|K-WOWy0J#)c9fZ#N*A!O8m{zV^j~Fkw!g)oIbs^COi2;@(N*(=k-AV29uRX z3&v_byl{7-cKSZ;+`|jI8MUR9i9@44H009MfB(qt4~xcRCg*Tz zJW~>F;%iI;zeJv+SZ9dw8)~pgk_OuKNaV1*g?17 zuLJ^3H!Qw^K>zQ>CgiE0Qfefk@-%Tvbcy1xvTy;7CT0Rlftf@UPNejf zb_Rf8A9NNKdildF|G6%5E-YeK!i>u_+)G}k)PCGFgO?hV&}ulWVm&7KEdc>}MOl+! z`sL@f@Xsb4dmQ`$dFalV4uag&u|jF5=D4E(njHoUO_1 zdNZ0ZTP?J3cW4lI_$z9e__SKHO|B~R_#915u9K=dpSq7 zBs~BK6FP$F;VBOYm52W#hyk6bF^kwfP-sH*gQ82&1<-4)yjTwU%2|KR7pUf%xydSh z;H_l*ac^J}A5?oMXnsoR+hvWZS`bJnwWkp*iq}8`F-N8OL;To6nFR0gk?f z-M)`@I$cZ>6t+a)Uts?O`e7He3`N)`>!4yB5Ubv(nHyN_b$SPG-(DG2jH$y6Z*Xk@ zCk4Yb02Yr-ZU{qG?999{X>nhy_vzW*;uf3s^we8AO}P}c>^ED~GHLxOugRHEZ z(^h1ow>qtHYgwdz8?66zP&X&2QXFkHF-s1nFW8VI$S61n8Y;|9^>6_PQbiUiqjC7& zVAsBt%1YLBBrE>Ck{m&L^Z%k?tt8FUtv#ir!d)_{uj-+fz7?zY%wxi|U_S5~p za_laC=Cm!pn9R&TBSZ9R7*|js&JH_pm_m09e-M7CTsudAV#IweG&UOzN1WFy9w!92 zOY+jSC3&-*aKs6|jeIIds)F1e8l8t|4_ZLj*KX)jd89RI_o2h!L>jC;qzZ6l;vB9A zbJP$v4M?#X0gK^Jxu~3g;sosDRgTMc_3C#=auR-$V#WJi?gnAfdL(n{{YTAVDZwi3 zRXF0a8-ag|1jQ8ZBhyFxec{T)7s$f0>@_-PKj zj|)+hW$`KhfPZyK$f#&9?U&&iC}RzfchiomV4yJ=K!Fc50ykL>HMAHO<2%K_uZn*+ zSr?Z_H5=kJjqR|lg3fBx)`6}|7V2TnM2RDTj@Uu`(AZ-B&ejUD)&z{ zd`&@1X&nTWf=mah`?x`rp}K zu%Ab--6(^+Oi1np?*OG9ba-KKU=6jz{eXri-(Or<(zK;#eym>A>KFKP|2M@)SoMH9 z?_Q{D)%s8IkNO`F-|&y#LEl2(ZM2>815(Bbo*ghO;pHcDj7fMYA?t_8%v69pgf+ip!%-)z?0vhQyc~=LfBvKX|Bopo zul29vnN==dzRa}dEnkg=J|R2qxWieF1^IS`+x~6EW5W zQJ8etkhDOZgw9;VyXjFcFiM%Y@|ta|c437Pk{lPgHKFyu8iU)Lz8{RUe9?3OQ6hI@ z^bN*npl;ggNP#0|h?8c40u~u#VG4wQ_LiGDk4}iL*r{MVoC2`kc(-XaR*wdJ%O~>j zvO93JI(Fqh5-RLe=7eBLaDI-wyFR{1``2of!j#MBuEZ*}cZ^**vbTssE(?9GZ4i2g zZB!Za#Ta3_RD6eX3Pv2Gk2fO)dT+PskUZYnk#jFtpB$|EXt9u{;{ zLue`Im4?wKbwCL~6>!QTr2*%=amxCbZBaOs;^ft%mA*wBtrB=hu(t0QZ`$|O+ort% z^;FHY|B$oAufr!mQe^>3*;^BSU@=D;jYz;B-1l%8j9M8Y zplFlG&+Eq8$bt})4S~}ixP0mDL$c&W5?z7Sjr<5-)K6rj+O7R6w`hKX5PMyo^~ZA~ zCo=m0Dfol2)REujyx zgV9IGhjfpdd#jHK2Nn_@$QPE1U~3!)wR!&=3d_MV71TjAY!iylP9a65p=v7Y2ka|@ zvWUon1ECI&m$e8q(@c#pO*6G~g92Y|e1tEUJSlF8k}FI zl?qN3vVuX($f=m}Cb4EBo(0lZLJ;v!h(U`5+Z2OTrG&E`mp7~^0NYbUH1frs;Bw%J zj|5YCzsP<}xqgbMJ7S~^GLq^5tQ^`YJHm_xVjryIUm)Vls|l<9t6wm$!$S^M2B%ji zp0UtV9_u5BdZUlY`at7HYvo1j!H621-8S`%rE=a7RnXga2X4bG~NLOlF zF%$AJ1txAgoPTv77CSKK-?hvC+gnHScWit2+O(BiZsqCCV@PMizp!txXHiQUXC37( znFhU~2qf}mA$vmsTeC1nuk7UBu!0D>5~KlGDI{dX@dIdHEl3D7MC4=xY3cr0sR7#E zX|BFaGb5DFX+CVRNxy5i|E^@~f1~lt=j!HDZ#Y{yl`O0K4wg^FEG+ocKU{t)$Ub@G zoi<6bJ@X7bf8F7?y~l<>|A9|^>Qg@_eUKI35V>^pH!i>7oW-*Ek%u1o$Ra=1ahiiS zCEFKiv1f3my}|T0({rW`({FLDz?hjC#2liiuJPg`_jp1`9BAVEI+tw8@7=h7)I!AI z7W6;}7(jQv2I_`?Z9PCI$341pJ;~P#^%kZ2)+h5r4!7HJke=!j2vsuE)6))*$5G26 zEXPu@AhhB5Dt&*Io@!b8ph90AZ_#DHOHca!7DW6^;G5UcXUCW6qUGlto`luxi-!~A z?%GTGT?ZYWI2FiCwZ{3U#s{a()`Z9LuwKKKPdBLHqITmuloRKliVyI5^|-})`t<3C zb@`2Ag9*DNM%r6w7l^1pU?<-ha!(|sEkQ5X;C-|NpFIuy+v#(I_)AXhg%Ru7f z;4FC+q-&6-(xR?v!zqu}fn|Ztmz)S5Wf!U6LmeF^7GL@@KQ7 z@;~_=QicxhyU^INF^w(l#>sdio0WHHP<&In0mgDE`;DEN^zeAokz{zom_r0cfHQ}~ zB)q6#gTQ*0f()yB98W;r>FFOn4;Vhs)r8ctjA2e*@kL2k_arFtWhi z(qUh)OAR{wpx`IM1!N8(t{5LsK3TX@&~>as=c;hWxKEb8cTke=>tDMV&&NCB;|{&- zZ|L6m zfQ-H^uq*IZXznYpc6RWBnXd4kZ1#fwAHy-a21}%w9+UCI2>mv5dlJCD%}N8LqLKk< zGu$XQ^YZVBc>UGJQUq?^2y-+mh)hUBSEy;&qS|JezW>jWrAF27h1Xpg0SpS_BF%2! z$N05!gr-U8e7dX&34}O4NXsPUs#1xpWuWa6W`=dsYisF~{jZRt6pYmJ>*)Qdwsx^v zT@(Is;5*PK;sKk8x+SlGMnxzD2n=}mQh1gVNIqC+5)$fgWR!Rsheh~2fhy2lDF&tw zC48v#`Y400#OIb%VKaY`DZz&_5l*CJH+T1qo{5>EWAV8o=Mjn;51%WQ9)xE~vx>CE z;b_QQoX^5TDijM^mYNI+^}=5J%zV)tisF^KI=Je?`gd`fMsx*hSeHX-9W0?&x0p_o z*LGu0NYV>)VljjImWkn@LlmDaLGpnNqpRvjv(J%JfF(;ls}OdCZa;4i*KtJ14VWK5 z@v!pY@8WSfy`GozXBQG3*D73%R;lU2PrnO%0&~2mk?YM;sZ(98_RU#;u&4o%8FvD* z*^LBi^upnFzhm-PEKg^0K6dO**e_5B3#J{DyZv@nni2jx{U0LK_` zbEV8~frA>GFtW?$<6=_UFxhm?Tav-m}D5voV>9WSe^; z0gpVHulvIOm06e^txs7U%vqa>gle-+-20T(Vvd}9?2%)kNMO%xcTH%`0Q)!Q`Lm15 z52_CbR+hurm9*@>7}!;qd+7FvPw&&8V^4n=@(C7w3F-i9Kcbrq;gp%4n|$=qGpW>> zM<1OuW7Oca*nMu2zsIMOkLcPNt^?!i{AqYY7`ZM?EGHNuN(_prG@RQkq@~59j)x5o z7@na`L5kHDxOW5q#_m{MZLZ^|51%I@Rc+$o+gx%$xGMRj!dTNb;_fjy4Esyvc4Fdv z2lXNY>R82~TBsG7DMj59)!pl_gZ{CL{dLelb`h2I|3jy<+NJuN060SRqzMzSW903J zv>FKf1L7a>Wc7X{j-fr;Z|W$bFXak_(_tH67)VscA%Pmj1L1as7Hb;a#u~av_hA>5A;XpMG9oJQye%CHMk4m7# zdnJIDE?-but*cj&7J+N^)-PNT-N7@{OgB)T8|%=};Xn@K9w4~(sVCYu#68U?_%Vw8 zhso$fw4d)Z;c^>hr)L-nHFuFF< z(auN@nLOG#ULW;~--~|Hoko?oZB5ijH?;@bh}t-)5BIQfr6V}a6>)cQ*P%likugbooMa z*dIFIG3NR`7{AfG^i`tYC>Dr*FAYEAV?q2WGy^Y*qkj?R{U&_6K8~RAS5RMtqxR#( zvO`t|*F}tn@k@9ZkXIBtgc%B^R%~_&sI4Ss!YoFSR)DJbNF{4C-vR-zf8A_}7L;-Z zvBy@V{s>qki2)wP;RtB6fl&X4lYXoD)201k??lz>M+SE0s2mJgZSS=pam2*#?5?yw zjO-5{XUZN3xr5etNG`d3f$UG+I?2wPt;I|*WS1({+_3#LULI%xCb+moqAlK95!OctxC4~1VZCOe(>Xtgr0vVQ|QXtb=w z6CP1N!JFwk2vPeQ#Y_Q{ppL50MXE}O{CGvFh~e=ph5?3SsLIGYgFhG&@4{`hT1s3` zl&Y|omlC~1>3Zx@5ylO`C)V^juj5OepB0|1{cHR+0h4oY0cs1a@BdBPo4`ksm3M;q z@`%X$j>uDaDl?@F-BK#6N_Aw{)!lXUo$9J?Xo>>58>ySaLp9iLARB`R)6HNoDs%WK zunk7?^+#}jF!qA+dKp_9Uo+douCJ13>{)1EyOXv5@4bl3h*U~d?C-ad@=z)i z?|awxzVrVHoE|qgVGZls;9fB7GQH3dwh0EFG+yGzJdB4|H->rr8w;0~dC4OLt|HT4 z(~#@WkoiKk_tueTE(CdfCAicsVt98 zo|)LCPHGy$Uvl%=?0hZ-HA>6@)%v0{l~yL@&@$amTDEKwLEyhGrZh5RDOui($iFa-7zN5wB(fd{>s=0?B z&Q&Kii0q@O(=~+r&D=LzJDbpTWRZ6$gKCObStLs)U>y;q-zb~MnaHF)C2VbEUS9-w z1EH(nI&5-^I^C$(cj{br+QIH33OoF-f4~Cs`ZQLQf&(ltY@5c zxBim-1^YC1ogefxFqWqgx&9#Zo+oTi(rTfY2xtRf{&@y|T!lfRT5B%js6cKV{@7?H z5Tuf5Lbe7DQmsKcE&Mxx5}3Evm|!AN)|b#ba5E`@TQ`bs3{ z|7iVU+I_6}Ge^AsXEQmL3M4WgEJwy8&)1)*XOriWzc3#whF+SwTnumIr~Hm+p~{L$R4G#xm1 zK9C*{1pEPVmR*kox_(?%#!DU7T~}cTfa-q@mz+Bn7*7ZAMg5?2^A+|Ay8%DJBBH5a zkDweR82IR9uv4V;aXSyEvXgp(^@{Pt;>G8*HmN{ng1d!a%LVkCo^io`t5|f+o|~#q zott$H-uAwj&&zku*XQq+jW^$ct7ti0(8ay&p?@&`*YpqkKR>O&AOWMrhF~IkKW;(? z64;Yrl67LBE&^)%{#7H<3CAGWfuWJ9NLf;aV2V*gJU=fxfoOP~=g5DfdD|8e>{~>p z0Wk!8pz~5odpPIsq(v8e{`vuzOtCxG{&Ja%QvgoaKPgA_8Fo3&1wln! zm#l|7zrMMN!t^>J`rLfXG6J6m%cS+gZ9jY*+~9*W?z;5VA9Y$JG!0BoGc%1o{Dr99 zS){0C?6mT_mQJ_V(+3x-X!4P?S7_c+iD zVa|p02S^p65GQ~@+C;9fv3B9>YAU*qX0_eszM7{_pMI+Ms*n$2>viDyh#amqStqb) z>bGpCPa}X(oXK13+WHpS7d(Pw;wZ&`jB1;AT!?_yCO=PwHe18(w7KW9wWn{Q(#QUN z)1&#VO+Ls9IR8^0{ANVgDIuuZAPNQgp$wgogK>cIbKDbr$idG;ZXTV`BFOO2VSgC z0_b32F0Y^IUt^!-Ip?$k5OT{8JTm)Xn*oIgdyS$nC^A2BZ|+E#EW6AmNvCtYU#x6O zop!+U&N}-J%(xnvVThPbESbH06(Zbx&>*E!h@De3__B+h3epye1$w&W>BQBxpe z6)A;4ID>(Z1?JT^-jBQ32nZhe45ySWUR9fver zoGPGo;2_bL9Q_mjF2nzcndJN$ zpbR7mbHVX|lU;C+haJuz@&uVbhKJ`3`n!PVy$s;MOv*>2dCBepf@M6Bv8OeOE#@ne z7c)vAQj{I3Xe{AKMPyf0lcQc)N+!e6%v?mP_x?FBJ+?TjHSJQaIO9<=up|T~LIFp> zN!~@~+@SUXu>fzEUMqmjl$=ojEX1QuxXopxk3*uSp%-%LjxLvyt%|au@qlTMjQF@Ed~;H058W+Avy!L+262V!J48t8W9i$rcvV+MG;rQB|o`Fc6Mxu+A`b* za0{^Syc`PWDo;*6lzS*ASH>QwepQM}^YY!_h)+-DgY4vEC$)Se;0}I6`)c*U+_)Q; zJvjN~crG0Lsw~e-k<2$kQlLf#S$MC)$SBGqRuFu=0tIO8x!lLGk&Yf0>7(qlz_%Q8+9 z8(_b%Z6S@~D4>`$fczmKr_W9L@tZ@4Mo0rkngf(TD2D3+Z^;+U#{BqK#TU;+{3Y)< zETBxH0HY`td6gH6JPP=nj?YsFCTdxa+wI9rB!UIcE20bU6Toc8&A2(w@~V;4BOwn! z=A$|^ltD5Dnc!~pgqRHU7Ggjo3P9&JPWZmLr2okQ-68WMH>wq6IH9+|Mv-;ReEJl` zQmI-h6)#llnLKL~1Rd{Caiy4<*oA$v$&FQ-1_L5~w)76s|I|{)1sEG9Bn+Hu(g1nL%W00L#SJb&}Kn9E&AmIb_`7zobM&k5t=htN@|!&`W974 zDZV9vqX8B+>=*i`R9r@#YgDUg+2?Y=11bAoAB%as)MM}K$J11dT7vV+hO(owKdfec z&?Se}@?0Wd-)OOTq@1Lx(Y;@WMq6#rjSw9aKw)2>KuYFd7VC(w0IB- z`h;^4GP|DLu-K^ZwWz|+f~1%M?%G9caRIZ^!KS7iPaD7Y`yn-bJgtUyk)?!G7(ENU z*M;S^pp@eAl2WMi-HoSp4~30kCkvg6;;GkReW9A;6R^u6KMwJ8P*bVyE8Y^#-3qu%>wCM1mUQBN$9Pn-lMew2k5#`Ck%8*>x-jyLUZ8cRZ2B+P|Td2geH)~X)00)4z;_K)Vs^47>%~DZ;+2By&*Pk?RT~pQ9a^dKN>+oUM1Q0NY z-do@0@w*gzLOKMDgd!x0vJE-P7$i2t?;Cw^ASVF97Cd5(#2<$IxiLb!;P%N2%k}ex zU10~T9{r)*g~wg)0unqGfZYM$0xx4@^IvJ4&$IUly}h^lL%H?WI0KCMgb z?0BrcFx~;+B+)0%6Uvz(%8HN^_f}YhhL0jP-1|z_Nbn1AL%44ZTp02#*EiudhJ*kd zTf$E=;&cR>3gkee*docekU@0cMwt7vt?@8=e}(cz*@j5FvPN+$MoUnvhky{*1}zyn z4(Y2D+meG-lVbFS`XQS`>uK2gvFf}19w|IRoF|{nSVV~twZ_Y#dW zA$ldT0;a&3z;KBk5=MC11jP_E@j%QBS#wCU=Ml*urq4f=fd$DU>zGMptEY2QMZ!;^rKrg(vVMd9I@_>v%nu(m~oVX;4rd?y+M zLVDbP4EE0;8XgJ7Iwz*|p*>^LwN8sE&q1t9jE1onuu}Kb8nx^Mvd9~Lx25IL`+;u= z%)`h%!Bf_0k}y*=HzZpd<1;ZlFNSs|qAm>M#HhW&@yW45ur!A!1(U{Ch2FC0v)*O` zYZCdIgB@b+-~Q7f_KDHc+P;%Pd&S)4wS(qjz?Vd=(xO2bjW~szjM^fiVkxrEw}|&JreKEIZ zNtWyPX#X`n=-Uu4v@C9+_tDxGm?ofr+v>QX(lLVFbm1+6uLz+*7A`}OTyP)p_z680 zQ}Fnq^$Qf>;Zba0(elSID^Ynr)>$N}Ql!BepaG%Rj<2UPyUuzyWCl!2%&*4HbPxNjFBpn&vZnc-+WcPc5P~ zptoAtQhSv*wP)aXQ=@pGnfCn`p56n^+L%c~GCFf->y7e^aT2qE;DdEATwxVe5F)5# zqVKEC;lZO23&;W1V#CJpS;lYpBo<*2#)cjq!4oOVF zgTTYua}Mi;xQ7Rjwk|cbX8?CZQ>O9ravj!8`@vh6_u!z-t9Rz0-OG80K6X_58zM8t z4jXFpupz&Hc*M23c}FP%ritrZw+l4Os{E-=w3LH1dRs` zPrGx_$bjgBMrCjoQ2k@l-c1^=(AGzBw$W9PIdj8K+1l9H!fJ*ycz9`<_Gg6Wyb0q3 zod)!PkPL|afdtcqs!E(Y6&>m#O@z_Ro>4@fbe)9S7}DBBpDeR8B=s3>K6C)n+qZSI zKrr=ExR$IR7 ztbMZV1j`yFjoIkl(8O8>-AqVlNZL0qR6&!@8~Zq!1DfE?#Tbv|16qJB77H47+K46CMf0rdnkP%Qzdm+1l%2*}^pFr%a1~ zSky2r>XwzRj-X3l<3U6q=^Cc6pOOFt3JzN4L4TS`ERJ630mXHBb-%?vIFG2^vcA?K zMTr0kZWkI_?ufff`-6PIhc-9_ht<`~sJJnD(GPfwXp3u_d;56cvhVkFsAErLm9DpkPBq?h9u_HzQ0_TF%`#lyCOW#$mPxnl3Tw{~)cGxgFhq@M zKVbb2=0b+&ACf(v3uyhL#=hGbC5vc?INWob;?^d)P9_`|$iUz!I5W%(jq4&-p$d}- zeB~jk>3)MfL-*ryDaH`A?muRn;-T5HELk*lz)CfbkFKYZ>+(~6g!IPmjri?7BR3egzNOgQ2a6PAS#dNuytRWy z5H0dfDb};ry39=LOo9$Wk|{-$%KIo<1ngJu4DW5oi=#wd(>jx|hHWuqdcz@W9W)Yn zku@^B(sp*%*AEykx*y4Yg4Tluic>svd&@#2;tvpY2m4UhxsYdajES`-*4yZzA}I%5 z11OMnw7~fcUFbGr#&s@~O912Jn~63QR-dJ_1J!Ow0Wvo;)I0Nj)pf2BeKPX`>)Px0 zZ2!e~Kj(52{s@`U#OW-8~7Aq~Q`4#^IQb;u!7 zY9kh-xb?^t$#0GZ_N+?tc=qj_{eGMnlHq`Q0%T%dlf&GbgI1{CvF$tD$8PXo>LuSB zSTrLK3_gT=cXF$R1fuP|BWOM|+}s*N;_iq69KD-yQ-m<=8My)fqkD260*%`+W3?_n zLHR-B#XE8HfYBPPyS}ckkiQQd8aY_7)Z=H*slm;)qfXetnPKSqOSS_ex|KGcSV{qas5aMDst3*ni)fCxmg2Un0ud>pZVXW`9PC_V{* z+GGk+fZKwc1i*Y#P$ep_Q1(p&W9kr@3KZf1yd(kwLP{W^+fyn>1P_MtprM3RQ0L~# z3&Et6SLgn|g$x3Ic;Pu5uAZo>DnQ05k+oY`D5sT#FQDcNbN{ZeFrHEqem_ER<{oHW zN0a^C%u2AA&-?5!?!R9ZDTWDg*ZrA%KUHhZU63MgUTx*)WP_A&N%>p-*A{ zx$?DxyalbU4yRIVVE6@ zD$&*d_xIqhP%bbh++Jj~3pf64+a+cNd{s1_*thk+P?wex{6}5dkA`oE3-~jU;Toca zTgPul4P~g(X4#jLTeh7Yfa$;;O=`tJ#^n|HfDt9|xx84Lw>W-~A6#(;`EI9h#yxC% zz3ol5xAF))%H2YS1hOU&foK@dscm6Z#F1sQIRSV-q}w8v-fpXnC-UWTJ~3Wvp9#j}!SWgL^2PE)wwG2h}fi9 z;={-Zz-)klAv?+>v|H+WBI&`%HIa)n6iuYUU|4oxd#x)=mzI_;Jxxzbyax3HXC@}j zeAwt*zW3YuxYWiw+D>O%zZU<{+nPATFUC`0KzrWkHaf%Q88OcuPVYSOpJ|?72hNP( zXE1+ChuLR>2}huz&o>UOMcSa4)&@NWa~I=DG=%a69AnWjKHqQWvvvwo@?K0DW`O1n zFP}P7!en8_%D?~AQ)kYc8BAK$SOT@)kM(DlwP>;w<)U>GOPiLAfgUji)mp-9(mZaR??d zg4XdKfKSK;s-fafG#rlRrnQ-DE|;CrG&dEtb{C7|N-Cv}7hkeJ=e7Tg+hKRT?}r@j zf9++D%}qT&H5ZGOfb?04#d`nf&J1CynUki^c~X6Pg6SCiIMZ^64Qob7U?s9O+1i#WxV)5YTBa53CBPG(po@2u-`!s zzJ_Bu$FYa&h#PAm%}hZCzQp;QG46y2-oz@rqmc(pFJ(B$fVF5WA`Ks1g7(!|%(2^c zq4(Vz0E%OF_K{BK{mdS81#i6X{T=*%`-wnuU(joJ+gCL?`$07hmg$D3Y?5tg|HA{) z-}zJ~2Rx4_&QPp2-`%u#Ob^Zj8fCucJ7eYfiJzaCFXig_Vv!5DB;(TCEp5B=0rj5R z>;tO$z-;Xvb)}ZO|I&TAhs0Dol)LZJ{kfVhV|F21P#(rCt>k_-decBws7X{trO(!p%;J<@^!m<0P{W~0y6t~wf5JWh%FbY}dG42r-9y0W zz=5dl{|;ME>_?>M)sTUQ3^0I402{K#!i9QrIb8JSKPyH3(p7g@zRKTt!fw0?$n?n@ zAPka0)Gtk!7DvwM4sKlO0q#~2g<~~cmT$SnH=nd-hya8|U|3Uex z9EeJf7SAIsyWpF}f4_aQT78_F;ma8P67krOZHZ-2{uBRRY?NvQ1dk`MRB#IVE=Qov zG>Q$*UH&NI3r&T6;h+~OPbh;O^m|gCKukHIMuYA^G!!q^*=Da(%cx=R9~`CXTt}Bu zlS--{3FXz-spC;qjgG6cXVVoFAXx>dgEGlu#7WK+G?6bd3%S?EbWIBiD%bK*?X~FO z3ju|ZD>SYNwk1#nNNb`@e`Z^yX|JMUe3*ce5^)~D9N~*n^w@8!%D>CdO z9qt1KDZ{PG@a&7a7*sWd^d!T`xz^4#Kb#xk#z%40T=S(IUq2#et40|+6_K4~h#muR zWH?8wnSdzITFA-bI@=DHlg)Wqf0im;NWBTLmfPsI8o{4w_?nrG5ujP^Ck z!MbA#u<0p@=U^(jJKgm7L+NMsp#$}s-+;dto-xUYlut?ZU_`!EKMjOKu!)o0*!Gau zF!0b}jg%(jo^#|gGg|Itxj0djvAYQ%;2kI*!u4jr-w$WdYTZjb9l7DG56(M1k?_)NO zXq{SI7elkR;q^7xKJ`*#roKzOP3pTib^+&jCqp2N4CZ*-y)(lUYSJvs@0k*P&7$>} z*{|{3TZ+lVi3Bc0iH!Y<6|lh>%ff-e5F3|0bIGjla({DvUUa*(j*hDy&zQMY(dpjy zR=eMC(N>ir@Nd%^z^N9oEEi)3w0d=i(#l)=w=EXnEgL8>FwAz)-$9KxB(P!D2Np!w zHpo!70z4{!0bnEql9>aCG#%9RKqewB0fJU5yT3>SaoLwm&Uy5`kpn=^&d$!-8m)vc zx&f$0Ru5uiV;+y1GR6e3S{!R>qt&9haOphx*Z8WS%r3$ix6B8@@J9>@0fsmukvM^4 z8Amk<+?MIt-UgzVmeMEa>e|{4!VQ7MZJH)n>+1C`Mc4t?50u^Pv^HV613d$~4B7q1 zadsiIpT=g9%3zt72aHs(g9sMZW{5zcGvTq`KZaE`%shCm=Pq2#UBu6Y+y#Y>1g))x z2Y>%Z<8S!0uz{G*Cdy$NYLLz*AO;C?NYf_fN!FOXClpF+aDsl}*sugZC^ROkVfGh2`Te*NJO~5ARRiFJHKD!WEW||3DSAkt|0x z#16OZBRh|zM_RcgTW~)NQ3^?C5$WS>J3BwttzS=9>z#TveZAgAX6!oBVgYSb$smz` z1Nb*REZZ?0ssr6%9V=ASb521|<@j9a7COU2DCr|xO7Ge{#{?>A0u|3}Qr&%rBJ zCMk*REXZlLBPkzSh?Ekl-C2`kuuNe560xd-!}nBc4)t=jTtm0&hvu^7!Q1yEt2LMY zT1C@ey%V`d=4ebZ6Uo6__F??Faxw|2ytgUd_HM@cSPa%Mp_6_;D;R1W)YXI6E<7Ri z*8Zzj0hSf!1iTmXunU|6l7=ZZkD}EyC_`L)_28AsZl@I-p%__IIPW-PAd((1A45#C~EwP=NB7|_0F16Pf?fC z!L1a-kE%iM<#m<^i?9d+0I>5x0gQL4vJ&{yzzW+q zeD#QF`E~>vo_PM|WU+`N+RTr`h>ajCh;_xHSQL?v;ATBo0AV5GdS#KvMPrDg8` zb&tSUU}^+SFvpO`f)l!zF4Jb3$<79I28AJzyEBT!o@sM+lt^Bu^$Mqys3&>{`&`C~ zqUc^eHgeGgeL85@OBXM~lBBOM;1i+9V31(~u@e`T&t%^Ct~X}FIKkfG*Jsk7Q`5=W z@xu6QGOYpuM-1iM@*Jx!9zD7k@mI$6`K*sua!MpzP}M>>qP!!AI={e_p{gnay8NiA zaR%qQZn}a&qErQ|CI-MEyWoc*{s1%&phu7~0>^%wfV~Kii;5BuG7cAy-VzR|i9k4~ z<=9iiBC=!Yye!B0JZA&`P~7VaV=x`5c~4sJ%9;SAy*Hdo=kOC&^7)sDcDHY43(d4$;_y{P6Qvmx|vWD{0lGfz{jR5WKOJ-VHx0t`1q59!T5mqXMNxN8Rjg2Gi3qzHsAvl0$hUO3>GSt8~lLNN7cKr z(cx9(NUPZGiJDP=q`yZXfkXPnca#0Z33oW*PA1)ni2HTfyQ?~maT{xnp_B@XER-V? zf{3<2b9*E)L+eOYXQobg)QBgUaz_&G`;rEqpf%`ZQO2U>g~$!?))eMbbnMy0G_68R z1BO}e6U8o&eKUg-;%@K)8dw@&zVhe|8L~L7HQMYZ6j@Z1qGBtEs$!^uH3Kfl3xUGS z-xZW@h%H$+=uJEvO&R#I0soPS*AO)G;}>Qfan*J7waa?fwG)k3b*jb7TMeSsS-{So zKd-~izBj>{fp+hdclpspeFI>P4y_-m?783if%;e5ci9NpqPw|CwQPWTyJxY8kKbKy zi7WN-By952w)<>9ZTm&rSFlD1$Y~jmYHgmsaGWms9f~qe1}Px{W{tmr)1VAHJe7RW zzajktGY=Ops07UiT(3k47ju40cO=7Ya~?lpa-LmTwQMc?!t3IG$MWb<_+sUMmC*`&~ zgW+g2owU1LfvDn(fCjtQ;V)N1Y5>6eva?c*SC#PbU<71G{BI2e(gmk~%p38h@K=Y! zZnwwN_UUGo!7>j+zEliGd|`lsx}7cn7sgyAb!^%h_C=V>ZU)#27r7)AfbMCv`^G=L;0yL2~01 zqRe23K0t27I)-Ug3svjwVWkn7aG!2^?Cr7W8?uqybmd^ zdykM$LxeQRT{NatYnW`zW=gEGc%KX3jx5tKUKZ?DGaqy#C^V1YD}uv*ad6;)TFASg z?LQ&Tko=(ysw_sl0Wk+~D1m(;h|8toErQAL8~%uBgG8)BMg8z8F2lw6bn{_{<6)zcZJ zG9WX`xNP^}Kh#jr$8<}+zD4{~9J;2Em2_J)suP2S(*dFqcrBrE&e(%?h>=amAN^xb zBd=t1BjC#_;Z&k^DtrC8YS5mXTAaz)lhe)Q$=pv2f}W^wvD=rr`<`qn;fc4DYuElz znQ|x{`F{DXq_1KrA5_H5j{(GQk^Q{!y|LB;mapyxbYr9`lcGwuvgI+0!-;keU6Ny zG%m2x+HUd+BAfhKLuqHeMvb;(m?5gwOEE}1CdzCShJ_YOjVPd&hhI(21H*h{eT%mb z68b-8D&S~bT_;%fHT@y@AlZ#5#vu)Ueh;*3+9M=kaQk?p40Xs@6bY+Q2@vPBtuc29 zqLi>lOn{9D8bf&*lxr!-RIUY>n_dpI`5Zwu(#k?{G5%t95MBqGhhji%#u9BEWRp7# zw~!=e^%$5DQTghNlm0DCE!PHErj_jGVf z1t1(%$ccTxovG&asJpkeDG1Gad);R78>o#{hL#Tuu^vMX# z@gqV<_7&&js_bsWn+W?^K+wjam`C;$s^M5Y7OoaN^3RpBiCD-7*-r9!L*clR+)a(y zgX`--`&cS5Rh!X{IUxe#OL91mX*0E{`3H_mVc5#=PbI@~D%KkhCqET+I%Ub{@d9@i z5T^mo3%5}Zj1WgWuuBqZ6oNz0ZRDpC;-iR*i|C1I$Jo}!LzTw(VmIK~fJY8b0c45p zbWc8g>TB&bfPs6TrDsnYQzhoBi~Zxoy~&zjTP)WaD~P3DY?9#@>28EZjtn7sh&D0P z?JZy|^}2o!Nk@#D`9#x7nN{n4gKBT!^74(bt)lK#`t^*#yxoL#Ll0rfuETvgH z)Cj81i}Iq#2%*)2S94X5Xts!4K9Nu%2!0l%D-A7u6_nj^$ zbK0HEe(!HR3*i~C)BX7%-Br{I^kIc3$|$+)V?{@-$ZQL5n1BACp5J9VyPxTOrQ6=z z2Ez6_VmfvQyzm9ihtKeuOjd?>0K0=92s=bsfw(|M2uzUzC~NE%MAuVl$-&0;XOiI% z8;368k%RuKOAdzf^HnT_QGpT&Q0V&ns@nsMUCA8|d3;V;4XUXRRH4w4FY6}HI|zY) z@Cxv3*yl&)7?gzP-ag_@dayqU6RE!{T)9$ceW=iC6|QJh6vuRafOYl0%>Rx{@b?=n zb9=5nk{wwEYR3Hs{7}RbM~c74|M{Cn6U6;^(^1}>kAE&2K#;$FfKt;PhQpBycs$pI zFlBASeM3nkn3~X`aE9(0&SZL@KDT`C3hTi9izt{(m;v0ow|%8`g*Q*Ox0{~LYJZ1V8`PPRU1LoS#0`-OHf16 zz?v4$p#0Mo-eh`b0N4kQb-mu(2GTg8gVyV-px1WG)~Gd3cX;8=40{u@6Fd07HlBMs z8ufv0)Is*j_U7rCGmnG((8xZBYzy*xHxMOzjH<_0z>vV_K^*l0Z^&DTlp56IqtB7F zh~Hg!&@0dRp$_3{Udsi3nMJlst%IH|(GPUwZCgN9L}zTg3+T@l`osTAH4f?O3g8|2k*J-81z@_6m;v7ZH zK^qPmvA?c^zleA*@JhXg1C$*e?#1B;`rf33p>S-_>A%CDkT|QOr(^9S>c_gpFm4v0 zcitw}=^w$T=Hke?&>LaJStPe}4bxSV@uJK^Bbj>R8_&P-jVV0;?)l@#KUaLm2a2E5 zHuzU>=e4hWbYbD#0tIRCHS?d)2V|C4zzMLNaSuXS}#eeO@VD zRPHT7IH{NJMI`W6OA9~nKv-*4&bX=%Kiz6Q{cy!~hHfd&LgX1k9?IgR0-`Qu#M20H z36UEG$*P26?r>V8WEujuNsrP)Wj9t=$%nVP3a@o`{=0aF6MJ=SbF<46P*C`Q$}IyD z`Un9%k7X(d`%qfs4mQp!nwL0bNR#amRtK`5&GSRC3VURXM-ea^BE75GDK(PFCJV8| z#2NXe+*_t{Yy+P!+_QLiESf2o<|mi#KQnR5_Tk)Hr;$@`>YKn_IK}5(2)}f&Qx`~H zMu-no%faV5+70whLr^va@h>*ov>-_R!xs{#h!jG)&`tEF5MP5H8DP$< zdMn@)m|d!uA@*MZa=+0(A!gzJsGd?BRP?2WgkNB3nfHy$;5b=`-=ZRCfZ}!DsgX#B zH>_=JQ^elv?1)$%AioSsO>!A};A@8$Vo2*4j5b&(*b*&&@=P{Rj|K?xsH1&g42#y; zpBW*`P4FP9v+)A=6H%>8TPy(%zE=%PG(Av4u+`vDI1W3oNEHE$y#kb<)q&=91ibw1 zECkhTWwQ4@ml^=03f-S#53K&sAVO2iupjTCdTC|l6hl29=qy3y9-~&7K~EMdu1Yqn zeJO&pR~C9C&e0l!gVdl)rj%0^<8PvDg-)3_KKS4k(e{C4?~iLvL7jghwZk50|FD(5 zPd~6u1SXSgV!|H+i2>C$v5h5T=!xQd`MzfC;Mv-Lu5=li?4<^d9hRa6!Gq2|tFedx zJa+bEVRKzmk6#$z*unC&e_ru6$`}sa+hh`iK65a3hmik?_Bcgz(mv+OK4%po6nF?) zj-X{a0$*k*^Ba8vs0!%etZr}T$R;HGvD6k0C=;p_n&s-*L0#3MrN{!d2VTa~XPrTU zr5=bcHRwBGqT4FO)J2yO$D;F0;^Gc70K)(T9ifOY|%_00BnS-Wk*fSvfMHp+4gjG@42^wz z3p{xke}?)x7-Jplrir?KSjU!SWbK#+K#8H-oBBg74Y`fXdvP$fq_0+Z-VyB@F}@H& zO?*noAi5}O?IJ0j7+F!h!gw9s8{(4>O#u>d&D!4I{K`rA%(xQdaTE>VeI-uL_HVQ_DpS{LD=~_3gc|a_* z`M6gCaY&#IOdkvreA;YOHeK>opHSZJK1aOy?? zPY%|XK@Zt8Kn}Uy=-@yY1oRvD9R~xrNHuy67&$@Sb(%M04EL9oV6P=QVWQy&r=hVO zuvK+=lVU!?6lYTLk%b&KF_@?1CIT;@p1{Y&pI|npYUoT}X21R0U$;x1PtF8aj)Z1D z!Mx7i7ZMXb-^5(a@101FCp||mKl#{EPim)k3no*^^}8QQ{raz`KJvSgvzCIj9HqFE z$@%-IryrQ7pe9KR((2zn@VCqse>uiZ@{gkU>@+?z`c66$`P2~B^!@2*w@EX&zP`WM zukidB!xqxQEKqDc&(K2#Pc`7t^AzA!8iB&%6za=GM39Z4x8+{;F&Hk1C`QuoJU<(S(igG}-85 zK>PtphW-qrJA`EYnc$A*F%bP%J?Mmoo+Oa_(vJtAfW<{{Au7$4ikw4PF}SP?=Y~J< z(KNwWL1w#8wlv_^slEs2DVVa5AIIq|S>vusq_0-{o zM;cCPGCwAjhI{b(OW{gJcH{q}wX9pd;O^I_$+KblyRz zf?W<9kz3{9&*z5$to3H=)BrIMa|``ZZ-YF7q&w5Ogonurrr(*Ymu(oO`uF5DV@!7& z=%QirEm|UjVhw}^LSUesjsQLcBiO9R>s@D&JWfZPFD{+k8!@%3dHqK{#E{`A z4hj6y(vl?x2`lg5W=#@pZEirp++GSy(f{ivVoYP$5wR<=h!{aGA{nDe<7#@q&4q|# z;eKmD89;yy9tHi2f@E66@yNv2+cG{D7m*BdRIk>}c?|k5YF3h02=-)>W~r?rxqIkQ zG`z-28(B)QCAI);b{!SfTcXYserqaRp=1l9{hZcpYUk`eRCAR9N+jgPF5)D7;Pn(ugA5OO#(oT5 zRmX9>)Zo|5QOVOWMmA(TMrsnoP^Gs%THuKCg z{_P{rTnGj)JaYsvlf5lp>(b1dPo8}9%%v7P>UW<%l_{M=CQmS~oGWEcop<|(X`v{X zk+dN2BtZ_};kKO|<6z%b&k3Ld!Dk>NzpVG!hI1D^Oi*V5qcjj+Y~6)No6ScT){z5; zAGWpHIkJ8+7`(WCq_c)}$5spXvW_3lmeDjrf$Zy2pq$?qqXzF2joR~~h3)?BX~4X9 zU7n@^o4(w76+3=&bEqxIfcvz?86-p-u#-K56a`QW92>2Dhv`FrIn;6dwsB?}>jE~N zeOkj|N!-lPmJRJ0%LAKkF9C0;%v3z#koP%XI8>$dlzl1rW{%H{2i^d_I3T>~BOK?6)oYy#; zmYv9kgD!t0JCO`V@eA=l`Ya#?m80NVL2xkf@_F%Mb#%X)3a4DDa6Frhhmx+4#~*FG zQX&3p%JrkhTmF|8-7DyMMZ6TmOTXUy%ce1S-(8qDvGN4;NZ@+7)daRtumX1}I?t1%orynU6ADK>+N>47IxN_HA1~FTq%-mg9paz)rF%kXN z!XAJ{fy@awVsZA0<5Zlb3o7Ic=r9i6EH$mm9lDRcMkJxg_j!;}ch-uf$~}UZQZ`fO z#EdKM?3i1TlA!JkKJhMxkkg1!(8a(uTD`M1cs;Yha|BU*wu}q zi@Uj1GU_ih*>(rKqW5>H&Wrw-R!%7Z!nm9&Yccf9vorhngYa-Q%{m^;eH%V5;z z5dCxxBL^i~aAV{$mlJUrf&*4R!d(-xYi_vb8sArWF#1T$jf5|IC}PZ015Q5l?5 zC8fM3$&D|CB2b#5!O}xtaV)1wL2m{!uf5gVY1!3qBIyg1Q_GIGUPv4}rk;vM(vgG% z%hU7c%bt+m)vuP_{%#IR1XKUv-(>wq1Qs%fX7z_N< z)0y7qx4w$i2a-%QQ5-c@U7bTdE%MwcR<9zWgA#P?&9X979I~V&U|IpHJ8W($D_Rd0HD>GF zz;6LxDwP~-L|?Nw=lDHPo5DX_cs#yxBJ+Hv_wA07z#V_KgN_i*gS{p2+aX>fAwvc{ zw~;*x$HeaW+ZFHtscKa@E-AR{**Ioq?Lo_#v#dXM(k&B|g_E_86=aKV- zSVQX6ti{nbxght7<%&_PcAdY;}fpL`>#?PG#%0rzRYZiKlAyY|2+lw%bV{&*<@iR7cdo zIUwwQ71);>!?D-kK2SS=AWUFxCS1PXBzGqPzMC<>ZrK1jD`c!!5T|?tcP4KJMV!f4 z=ruaUMA#;_G69?;@V*9*3HpU}>;!^D$uGy-+g*|`PTYI%#6@|j|ISr&t>l``+={E# ze|LlE=&sx!Ii1g+ir&9+^geobI&%NY^ils(GP&eGI<3D8ti(8Z{l0g=btx(@0nRTg zs3g-s`w0as6_I{|j$eD*+itw=ZU5%^M<0FuQFt6+lJ3w4H{PbP{7r|G>_v*=5Bej$*WLN2{dG$@OqAT{AD4nRl87~;aJJ5elJ_M#5iw+{EF;$t1z?0S{Wtc^R~2W(Dlf}b978Aeq@xzmqu0%grJ*2HW75G zDs4qk*Epsk=DmY?r$qY9DL20dGiF>a{NC$rNY0WqZJO z1^f$1STzx8%(0R=&?yE0O1(mgJ`DoBa8y(>JCw%=G#S%|lr*kbQ5-5=ae_q}v{2z4 z!+&67LFNzzmJ2ed}(-S}rkJAmUX?%4& z755{79-sbLrV{bRB9WLcQem3QDM?CQQPoU19uH?!wYMAe#xzVb@DdcaH|h_Ed@-*F z*GO3KK9_XMCb^L*hA)romY5A6OTB-rreisUz+aSHEDb+8+@!|2e-*#f%6#WhN)q*p ze`7b6V5k(TBn;UYH1UmWH1G-ivJ(W(D87{hhO9{gLf?RK)BhC=th&Uuy{s5ctFf3r zjnpILAo@5UTpVtAOlsoN@#n98Dw^qB;tJC2k^VXO)d>8Tgh}#77qZ-}! za!w=0YaoA7{X!!y9=>7@;^V*;;lM1YZc#scHG{GN8^FzIz{03CrtXC(4%dQ7)(Ub< z*YI6nT_?~S$RuQBQi@R96w_UQBQ5|r5^=!L4K?sz!Zo$9T)>Z73;zV%HE2#hPe_NO zy(kK zwBvBv-lScMC&Zw`;R}wlohDNw(LpvgQNKg*oI1s(!kRO_E(qj1AA9 z{vyuCB)C%r6d^ej#%gG+l!(`8_9Nf>-mo$RF7``ry8G;#&f@3pH=XT$6Ihb@MB)?T zGMW8p=Aoz3aa0&#gm{ zQnYpbu?mM7D!alHp9ybl@Ps8)w^LBG3N`Lje05b--#2vjC#cQt9`mJO zrosBZMN(2`3I1_hJU&hr7Z=wyN0#-?F$Vw}Hz?b`Kg+O^g-{7?y_jh&qhWE0|@Zu25Ph`E+@1X;p+jfiAyiSLN-G-f3L5~{{@(gyfSO(XVWDE$&A(VbXIgSiPquQe5KO^vj z2ME7gbmMj5nWI+CRP^O&V-D`T-yzI7dVX-f?RVO5$Xt+r{t&thRhz63PT>h`0I*i< zLY$N^%<7O0lnv<`iqYD3#8XK7FG)YbG0jsEg79UJx=>I_aX2#0*%zi>&>TR+NmtYH zAJN)k2w1y)%Asls$|_|Y6rl8t$! z7*2j<#p!@rE3Db>h_rj#s&@46cDn3dKmu_>{s4uWRuN=X$=HumI5&X`w`b~SkFK@b z^9UBwa^)E4Av;%>eUWu}UadfD;MJI8LM}vj3pt4?$OVeoaRympzDm{J zxe^b$W$3*QJRm?X{-q3T8rNjm>2o?(B&VaiD7o#ff9GnizaPlDZ_~6F@RGxi3+TtP zSN@*taTG6l>={Quy69z|p!27l*?Rr00ONiC`u~b&7S0{ZJ&3vD*b;(HKO}m}0wv4W zQCkb6mw*fpEeb|1=!^d!$bR*M1+Ujt&X-(qcN#EHcie~VACT=)&xPQ5F94$c&+n^0 z62^T{->%O4g1E1PYuh2Rm;ed|5}7P4c@PuvdjqDTWfy${6R=Dlj3{sSbpumy=Kgo% zZMjhJrtr#Elc>stH;N-lwy^z6-LW4|)Mjf5{?vhKQOZstyE4(z;*a2k6~`QS5xV{N z*nh@e^Wi+Nlm1m{CTNYwHP|Tj^a3WI1~Sd{o{)udg#k&D_u^b`dL}o6pXuE6J3*YD z#sT_~$)Qf(6&&Lq&M4su-aIR?lKC@hS&0Q{C+)KpB3Q$tIA$keX&&GO<~9zBX-r~u z!Jm&{9g(AN9UjvayfS#NPM6#Zk z=Ock%p}*p(P+wiGbGcpEFaLpE0p|{Kt(h!+O#~SW8v)$Wkl&FIfPut8B1{Uf!5ijG z_UhXCf_843Gu%oh9P}vnce2^e&vdeGe{MXHbm^(T?X`1-`neaumhrRYN+!JQ^4)h| zzI=B)7WD+f$PMNff)(m=t3lHwo#7Umnu3rTmIh98;t72chsXgbZhuS(q@R4(lj-!6 zN7F7rorRbyM1#+nTt0DP8S5+@5tNC2eiJr~7j&D}Q9dJ7xCxdM!1Ke^gcMGMun*$@ zagsG;BdVRtHTslM7TBxzUQ-t$mk%AEJG9ZvpMOpd?}t_cv;c}}r`R`<~X9clF2Db%|Iox8BuB^RSHy_m{Ho4+x8-K z%3=R+;1tzECAGWn?%aKMcbk80p*aNEMN_Nrj8M2Se(JYu_4+0btbyH|yfl!uD-fix zDoCzE^rg@%;n)=ZnB@jUEn*{}qi=H&3v5AUFXlDW6wOafH^g!0v zB0Hn`>Yp+oEjrp3M!(=ye04ku8DFK~Q@t7$sprDACzJ6@b z0$phzj36|-A32~B7~8|xLA8QU@o9Jng8J_Znh$Y8Bq#OpggQDo`U?VLXddaDUWeRR zA@o{Q6DKC4PazZsA-5e|qIH`FCY41&S>NxGj?P+p%CfR`5OU6o8P2A`t}sShh5bs- zin;64Ri&&cgRVhMOfF9j(FLaa$ z9xW9{gBFxom+WzlPrwzq1t<;}+OgRH)4$qPS5>d-z3vS-D{6d-3>~l$Vb5R3o+mpu z@QWhcu#3GO*{Iid5Z(qiQypaka2Y39zm{l)O^IJm3MU>^)C%wLZ`WzDuC+Ec82C)5 zOPLJRjMzt_Eg5kQ^xum`JP48mmP=SOk;a3ncpQ&Z6otdxh|5~3)N$DpQI0DS4}^96pkH0kJwRBSB?*gb$j}-%$rw`_QQ}?{*b751 zU{GM&FopjCtPsX#2YgXJrl#yD_|Xu%hl(8H3S5T47gxcufD6<* zq8C6C#v6LgAG1$j{2&6Ju!|yFAqRXnI%IJ3LF~etb8FxE z5SeSE0SQ*u4}Ist+6URSwcJ|oYab#jEXr>IMD;`GKe%>5oLT>fv)~0-YSMaEKd`@K zSV^G^Qo0b}z+o(fjTOjKFnb}cmK^L=) zvY=TPj~h4E*Vx8}T3_9zxzx1XwY6O=+zkLjvCv%n@ElGm|#fV`MHY#9oan}K~4jkurY-`(V8@(GhSW79nu|8hC)>><^HkxG{bJMAvBT{61vcrmaOQ`8cDzPhlD*>nkQ;c?JMom=}bt zkZJ(-%LAN|2}5Av$L%u%KtJ}ZH=u^?;Y7ffOTOfcjpq<+tOR~6rf7D_9#WJs)jpA0 zSss^xDxEBq=88q;S#(8xc32L>z}R&yI^)kq3v#4XbUEGYW2dv4UCqYTpyZl}%If^e za^>ggzvi&j-F)4XU6<q7V5(owZN;IabL0=?_((CQcdjI|4?^Y?kx9j#ql_N^j;|2p=^hqs(hUD++ z{lDmYis$B$cUR-pYWMa6-fmdJM)qXCUf|?HnWcdpj!Z$UzBwRw(4E$Z&e(^w5|p;7 z-|Q2vcVxIfExwP$IV9#~in7RtX9YlZkS7z$y?o7{UXSP`&Db-_3a5Q)AD!(e z8yt~}!%lS{A5X)Wa(c3<`KFlcWT#}u#MG4J{9OF5%EJA@)6+fqtyuw4b!47OmvXxa z$;CvcA6#HYM>i9+E&zmASx(%RWDCU=R8JFB!)@J?e||LSv(>hV^4|Z^;>2%BS5qi4 zxlb3S?uk8^`{!o|J$UDTPyWlmSMwq0g(@rxv#_b0vt71bwLNKDBaIDP07G8Gjy}%% zpl3A$HWJb*7Y=x!FN6m&9P>FMK>`w(DILc_mr4-18rETvo;!ko2&h^rz0x)Wtu z5o=%oh+1FZ?DHui=2iOg;->j}|G8j^q{`=TJDB za?w#_uRq-T)?sfO;j=)gz_;B$@O z>~XxC4Y3#T;qgTB_-v?wNLHN5DB8#-3r8nhhY!0Zj$Rq@?t4_q7Ji`tZ`44O$crRj zJNy&|B_umEQ8<^7l*#Q%ukC*0*O0%|(E#KK>yq|`eoOzhbG>(ysk>ceXJ@NJ%h&KB zP~T1M40;T?Z;`_I>Hb_)$E&HoXsEZ1*mDZ(CE0S&zuvc)dcD(u+0D`x#(CY^R)0*n z|Ho*{=o{PW594!a3rqw?GV0pj^n3Na9gJ*S>x!<~xE}ep&;>q;-S{r7HO@)ljwYr8 zTxJ4o=2*NOx0&7}241LSBu9cD2gw9ZGY<}=)|O!#2et{*0vxsj0Asc|xVx`_3**#6vFT zl~^bmbohgAr}|;LH|mas+-|`50(2!Bjz|4oIK)sv!vhdtr!z67#qzj)u)$1#o-7g36;efSEu-72tb z!HP`wYnW^iTZQ!rBQ70Rl#%tuoL_R;A&;OP%Xf~Kb z_T^)>SSaH->XIZ^qrsoQq{qOBNEpQ_XM+h}GUWEUGGWOpAs1I_^}0k8jS1yViW)&w z_h>*B^cy{)_I6bD5BDpAE)5qh<&sg39@AG>m`6jkF6{)_Ve|he*UiBryehy zUCFs8T4#^s-4g}&aXG0JS?^_q`QnYnk9~IObKW5es@HYz9Q0QN-OQMcnbIGneEI z#u7PjqqatQ;h|!tk{L^Sd^q8Q$hVX6;`Mowz)8&%L+j9s*C43DJ_7pz(IH_S)4bu} ziq#Sr1?ccXf2&n>G6<*!-+eOs1*?GHsM{29xNQl0e!D$P+U5}Pe6EEE{M)Ffdo_5ao5JuUw}nUXLeTmt~y zG^a~VPbFLqR}b+|G+P}lok8q-T618IpDsJ4X`B(RO_yMs9>97+I5G0=$UFij&aF;E z7->RIIzd{P&at!H*vO$dSZa8VA}|qJ3JB6fTS8NyO(7qlM-Zb=yqF&+#5|I2z}?HQ zan2v&CJb0HY*bL{EE9ITgXowkpRb5Gp-YWds3>ah^`^ZD2}F*Zg~SHVGjVpCwphdH z$1qd=5ZRu{zGQfd2~~XsebXp<1NbTon8t#^Ob_lx5wF6ABe2<&?|UmJ2r%ilU|K0v zij{%^kiS-1v`4(w`1{@=obWT5!J=IMRJt-M7az3!nIXONb2h3BX4u_B8NV&J<@#`D z@Ru{g_3rW5kS^Q)1N`Vu$#yl9%gM#T%}w!R4O z8*9MZRDATvbt*pM!Fja%d+fw)Es>F!Kd5H{b}%3ZRY@Po`T*I8X9G6MSp}m~B4O)D zp+G_7-7xsi*@@b0A`@04UVk7H$C;Uc90^ML>`2z#sR!%93^FWWXG^ycOGWK3_^x=K zBz!D)V%>-8czu+9>!oV=*FWC%f!cTL`i=(;NQs@!O>J zm6dsDazKlysj$23AtX;Mduw)mZp@)cKx3*K7oboU`HE7yg_XPwnC$4T?DFU%V;^02 zAgC>@u5PTa+nr6|o8TPies>+uLcX59@9ILHXQ46i-Szpkwe4T!yn7vMF4Z+6l-@Y` zGAiB0mM|cq=pM!clxU%ClH->A{?NVzI1QjmvWYa94Q&!yVaD~ABjffU;&+!7vaC9&DX30utD{ElXAglnL3k zA<{6OIejO14K->TNa9=&zy{_;xb<2{GXhG{IFLoKiY&hy5{5TN4*FvmpJIfrmi7<%*rmlxD0T}wj@0L|SYFp* z!}sH8p&pCXon$7Fi!+~`PeuY-)bAhKUkb+MSUD3aLS}J!>8;Qosd5w85#mj2a6q8* zsC(gjfK83R;sX)PkM`gnde4yIpb~A0+g%6)*?a4z=iv<&4zDMQN&^-iib#gFr=b*w zckcL_=!8yNY^hnr+$0~vxq*uV4}!)LH?`1EgQJ8j>;QR?Sqh^N_G)T&z+gzsp(EfI zWM#)5@VmV# zqXdYouB}DzAy0kEiI4eXL|IbFCvu?wY!_yPh>pyC!AK)Uj+8YM7%7?iM&5DXgS zba?gcPxJYX^@7G^hHTV2h8&Qpn1{0?j1MA|<69JXr8BVc4p0#zvRc(J zTcFhS@MB)3hQ>*@JOhvlIf9p-mFKUp*H$U}#OfM@UB=#|-CYOW5@7fnq=RhD(R&8o zHt=zbgPz`uS&11%cEH`INa;Jb{NQk04#)idAj*fv5eo%X(o9ET zjiC?8Xfl1}N+O~Rr|}j+QgIbrKaEp7iJ*orM1tVssOJ;6Mt42KN`_GEho7*wOvCF8 z*n8MFB7^ryBXHb@eG{~MT#3u53*?i?#sLe7f|6<|(Hi#oZ7gM8&!LEg5K=H_V=z3`vgIpYMFEoY;>B3Przq@oMhGc< zU|0^~kuZ$xARtye2N%kGfoGxK7c&?`!LM@Y;DJabfr?|yjAo+2a3rjm3F(5c7hRAN z;l90{|5xxiCQB3>6vRKpO%TR#3-KZ%h9Upx;9Z!)J;WMWQ@g4t+2eP6zvN;;Q93Do zfOJh8&h_5wc84WbBe^0;O1=AuNCIyKT~`>x+Cyi~o)JRzKed(1D^zi57;^4JS6JXU$kJ@48kdmj85z*z+Cz&nT}z0ktRHben(^UgE* z!sWu#Pva&34AL0RfAVbWv3%?7*;f9s*4a zx0-v+orI<}FXJs{gWemoRXE_0sI_LBoCazrvF?8teV>4)GR(8yHAwCwyLc1&R0DAY z$p$%+2|R-(JK2h|31l->fUzpo*uX)lWNHwbQI}{iJ!VOV7Ur$#NX2hei%MDzwZ3n# zD?@+Fe$6x(V|Z$AGNT?meW=Qw7l!)069!#fLp;HP3da3=*FmBI3!tPX+ccfEJ>YjvY6)t`(5@4 zW63LBF7FM-Q}U4E5|8Rjlcz^HMaT9W`X%ke!>n4JODEoZ*X{At%;7HG?pWXKjrGx+ z_uE#lxsz&V$7OZVZBJvA7oWL7hH%3pXvOguiu#dv#OjJFESSTV<2?0HPqFJPWO zlMi8*Vt~^3`sQc|5-_az=u1A)>1%+m^~2$J%#Y3G0?k312Y26zJy4K;!~L_MS^Q@BA3nf(noy{T{sCLZ{~o@2-MTsgJ}A5I@sGm~@cSVoaz ziDvOM7>g~HMoZE`Ok|tp^-wFMrj_D%uhy>ucnT7BqXFZ)NvUaInc})REF86_1sY^b z7kKmlsW6%?W8?o95~vLX&V_7SIYReRhFdK4B`+;{WC7>cNNyQ`#fMu7cv->qczXN* zl?6O7o}Pn11nr@{1_WPPQzB;?ZG`34+l@031!W+YNV4N|S?E+$w*i2QZRuom1Y*;Z zip5skH(8?F0Z1&Wa=XQMmd#=wa&*3EK1~TIudCbu*zTUvj1q)G9tbKkr9FW0!W+@o z);c5_5w`^>HixqaInct>CK0~@YumOYI>~Lwqopf70#4%oh3(Y!rCVCMju0DkAbb1v zlso;|m&E!?akO3@$$`9>MFZ7XAfNZkfx@Fe5-mZyuG(C57N9(X5&>MjO1U!nkZHF4 z90#MKztQfb*Xp?bFhxaB1!P!Nwp2yL!%_unvb&M#st391g>JC5!?kwpFsUxxx@>pV z?ycPgTce2L!4{?zg!(Y}u(q_xcpBhO=%0og69k*&8l5#;8IZ04Jpo`eQ$VNW#jiQvN7U0sH|?H0bv~#*?@eGVm-gE?oQHe2nZNPh*AnU@JLG z$WOF6k}$#S-Ndpo4W*wO)c{eb!Te#AXqACPLoygdunIZF5aGO0%D1d^+&40!sA&sv zBKBa)@hBdQpHkZ6#J$7AvYN5>D`1v@b!U=JCMO<06OLUJwkLE3P^I0|rpUx-)+Q-63AabUN=fIzE~M-@ z6Lp`>X`S0N$YhDJ$aq6x_e z$9tEfWzbEcbGebY<#x`_PUL;aM~3L^7VKq^Jz!LBmcVtMu5NsbV!0c1- zICY|X|5|m!2&11gpkd@tI4XG*Z-%n!#=QXBQ*TP%KpIA!T|3X;?OYfuiM^U8TQE($ zdqDDf6ki}73q)b(kufaL-LfYf@DeyDWV$=|4HjcDq~w8V2+gkq(Gf#)W(2(_`*|Pw z&5#l=0J2`b%v~c=q1vPFq05biT#*()Z`FdafnR+ ze3B76nT5Emm=f&V)k=bl5M=R|D>GpDjgKH5aTqbXK@~;h1FAV1jm4s)|4E`W#o<7~ z{cQ51o$t&fTYh%Bm7GyK&(bTqaPkq_*ZK96C;!zS(MGk1KY8NFkhNe9Ws{kMnPhe% zc_Jx}wA?-Xs5VrtWV4m>kp5YEc^m9R_4m@g*N1`-a)gX0azasT=4}J7#`E)`MRn%M z$%l-ZWK}0yI`&}QMMRSr&AcJF{j=FXdtqGh*5ZsP`4Y}~4w>v%kjS?W?cJ!mZ?Id<2BQ4%U<6Sn;;<|g3Ism7 zbWsijLt!Q2jfc%SJs9yQia(e~Py<+(-@pN%7BTYuXGnfTyX`!qPe!A< z$$89n(xI{FK=|Or$UGF_*D%07Ir_R*>H(|Rkva9$nELN%2{a&a&ck^IZ&z%9i9hMLB(ZIjJG5XO^LONGIw{p*3zUHMr4;o?i zL~I)HpLYG@GvNR{wqE9`go4ZF%6ex_SVhHacMR>IjbX)wv{U&}XoE&tU#KHq=_L|Z z|50coKTH_5v`NT4n2^vPcC<{bxz%o%u>DQS=2wZ$p;6qn`Sw<$9qpr*Dj!`N=x?3F z-A3z?y47BP%031?Gy&@#OjqbGLX44!lI$f-cO{q^AVM$|xt|?=of;j1wz07K&0>k%B{^h`baC zdK9UqNV%XlVg!;AL(WFb$fdA1kV*xanurE+Y!JD)rF%obfGRPMSA*vw3<#+|nT#cD zIpzz5?tbw8g;+QOG^Q^SzU}zF{U;9_@dx4)T)#ys%8&i&MW%aq2YNKmt1 zX(!Z}C!#ej&&0wW&nUcID0r32CFM|1^Duw7e7=+-oB*|#&?604AP-Px$Cg5NG@78( zE#!UZdZc#UyRFnCA~Zbk>j?mRXV4dwP<$iq&-ktQV5yuPekLbHl$;vT{n-F^4VALP z50`IiWV4Oij)_fqyZZNcYS3TR3>{Y~&6V?NAW)5&?x#0xeT%+a*scb0UkzbKf64U) z5Dx+ZLI@?~V5O)*1s+cNtw05WxDA;G&W~yShPAtHJ7R(4=%oM7cdg>xcNeXZ*S#)b zrH`bo)S*Kg!qXXt&vOGt|KGHV$t2Dg9DESsxs}qiK3$#WG(uvC3-`Rc6368Uv=YYH z45a-Fd6u{BgQKIJ&mWNE%I_))Hu9(C+pT*own_&M+OM6HAeRiFZNQBWhZGcu9bQ}sb{SeIA($QX03{RkKwanXI&c=qY>n1T2}|Szo3Uv> z3RQ1-oz9yNe*yUzZaeHg7vC>P=Jp*j@cm=#1XQZH`dwOwB&yeYk5k9H2_U>qCy zjryv7aK7{3?a%55xr{=-kPiCdNod~tAfo`84uKXv*eVq3uJ5~LmiQhKG6ZKhaU~F@ zAbVgBGScIy>^)({FelGt)tModviIhTmd={F+R^M#G?xs_o*l0q%Z`MT?9>}x{rf>w zl2O&S(Iy&wXAY_Cq|s_=R+U5fy>=>Eid)&CvHM4lj9A%`z4sr9l;-Jtsy{=oU7oNG zy-(u)DzX$qOWhsc4O){pin>VEuJ$hd=AtHjOc1KU!xGLWT*D zZw%&XL}DOWJLWGY3DWwu9gK^mrTXT?#AeoE!OjnU>1D&Q2S*c&iO~nQuJL)ARRU!4J49~Ia6$a^paP2Cwyw~<&iiG-lNIoXO0tZIUa(c8yJ{m zjqWdOb|McAMKZuI%&;o-pdGN+ks$$6@%BoIef^4~H@9j~$Uu_x%HEbcJYa|Um`j8v z!#etn?0VM#C8zp)7(>A1lBvKF^IL)u_0@lbXmo1JKl=W^qp$`;CV#~}q}_jP{QLY#w~N>&H8 zxKGj36aT}SnQK^9V{V3Ol)&4M{#tW!Dj8S|MuEFJhGZ-Y=~m>PhxW$HaK=ze44 zMD$GSi~%zo2lkipCh$5}B*Bn^LEaopOr$Om(-$MHfp@N;M^koPkDM%|^n&gW6_9sg z(=HV7_wExXXc*M%&lwRNkgYK(7C_pcHVVMB^@tPEFFAB;l9T@iv1U(mNh8NIAi1|C zNfJ~5JxF2&xFn-A2oy#ldcjyRFC#3f*?gpM{NqXD8CWA%utt(Ki2Tn;yn$$8@C)!JDAGDi z#<0U;PC}q0LkB)=srHu(h4gqVI%!V~kKg7?rVPal<`aL6vMOFM&cMW5MOQJU^B3Qe za`9Uyez`sIEIW?^T)~o-QXY^bBR(IDdIBA{Z!i}?1Le$;u|6Tf0C*?p(r6BHRc<(} zjtEcSf>|3ep7R@Pbb9}HkaeQ>ovs&}7%g}UnGfAdbT&EIr#_D?0d*uWrE76JJ4ZVL zJ+bYYgx*63z{F7D9l{wmF>iN7l*kpfK~-xQWg&+=x0NmoR}K}nr3UNrY4MB+tX*A- zyI?QsYe2lv+b+3Rdzrwxq^>y*bOcc<&s~Sa^^(FnwWAFXd?TE|5N$@$R)@iZ%tjK+ycnzo*%6R!5blp8=58(T!Lo<8Bqs>e zb@Bt`Sudk=4|x2~g)z_Eq&hWWXYaM{$Vl;{p?EaN4%t=RNQ~7+?Xd_v5$06V3=C?o z?ffsngx-b?IL@~UV`FM#to>+u;(~SRq^2HG13&CWDMj;&OxbpnQ z*8P5`jhKavHKU!aKr^LVb#K|(AdEh4Th3LoJsISsJQK!E$++&B-ifq!yFAh|2+Ka*H5C|_Na=W7sAtD+6NU3FaxVwPcMP;d=f zx`OqeVc_Sc{$m@+^DAh^Om$_UzJcV)^r)Mn^S0d;Qag2`=tGe!k7D5p7$s;np@EY> z58?o2;^0U)p@g&FZd+Kk75$ zW=*IaH-1L&kNKNCBvLCb*zTBFfe*>cS7VS1JO^i4SZ}y4A#BVX(}si>J%)q2Nt=Ls zYLfab&8sn3Pqa+<+gBoi)j(tu)hVL>{gQ89)8>8BTQ#J&bNtcHRR<0|upB=BuKg+W z!+#Hbj1X(UPSZ5QBT-ZjVpvHjs)1pUho4LzTCv7#q*+`>2?~q-k@Z$mkVNdGVo!Je z!iKIzT#pSHR_Au>t@Z|16&~~hs043g$iSQIGmxs{;L`=Ne)jCtNl3CNt`0A4L%f4I z9dy?0D81$pKpMSxJ6Vb?jVqZo1lx zB_F=SmSXHP$pW3M*~jXGFumj4!4V6V?OQ$NN6$n%fACwkE&lBNbJglme-P~gwHBFMU!#dc)CvdM!Egg_JJ%d%89h3Wf74vV ztM~z+Vm=c5&%v-Kir0vvtDSGEx*ZGw9;~aZs_Fo|AX^{O8r16!e(Ot+#~tiI_$KC; zkR86k-T)4a5zs;g5#jlP>yd^5&m~fYN}Hs|f}35Qkf+Aa0C(*1JZnu%yn4^E!v_Yf zFB_3hCWhZ^eC5QxJsC|4WLr)1K$A!|{*p`XiIqE&B2B;`r? zPS2z2=p{tiEDpR5Be9DFhq0cde|R?`fuZ|JsUeRh1^^kD(S(r45;SUQ8d6fj+6+`9 zXyx=jjdjEJG-n%7BY;jSL2qb5qN-J~A20ZZ47i@mo<=A*BHDj({~;9yXhYvW=nU@H z4LCE^L*sCbdUUTZij4k_v*IlB?Lwv~Ii{1Tn$8-6$~-=}F#~(+zKHFsrw?nsCA!{N zo;fCp|D_HL)rR&)9(g3P7jNcL)kMm;T?#4cgva+5j|UgU&%IvnEH=yXzE%J|{nP|Z zc+z{zLG4t|BPluKNSVea$*cbb`Tl+fp3E$*XcFvTh=*+<%p7J=v=W?=)H*1Q1*3*c zZPcRA>@)XfZ^;Kok%cJ7e)a3=iFhum7ILwA@|NOVcfF}F7#Yb~p@g1`l<(11pY1i7 zo$Fj+#}o0vQ{}?s8%EOEBlCAh3e%6-sjwZ04W1<)LbCi-;GG3dd=ysiz6cBvV?pxP z4Rg=xpjiR6-Q))p8zI0VyJVj&Y)^l%j3uR)+yL(}po#nN{Il$2UnT_6Zd`s_0Ov8` zcOiT*a1Ma46|so$`rbNhNl?lNw?k<_z4qQNS*sHw5lQ?;i z-)Ij%(V|Q7@%DZ87tqyc{?ZyT3(T@I3z3p0(`-v_0k8r>VakAm2M^eoX7}FeE4A-< zb=Jjrcg(wV%b>tU>0XXz<>g>)Ng` z_wn1T9`slqq`L<~M)lNyL5t$^K@YNEz`BQA*OUPRs$u7!eMr6ImvaYC9h(Ye58hGA zree_`+-~>Arf0`Y3AzJb-D-$#yj4?@B3dd_zGE&InmUG8*^i*)3l^KxBy((bx+t4t zEd=h1b!Wxx#}LVEgbya84gD)c1)h8QfyD%AgSn##643mzcvhUf4!gPVi{QJJt^k2; zO{<|~EP1B*7na0jI#=kcZXd4jF-|@ee3#}V98LVcRcx*G&fmI5mtLA1G_ytD)7nh- zUBqZZaYq^v8hj=f36tEkLNX;Pk-{KHR^leLKInT&i6_c>$nRy3I`b#@=G6I23|;-N z6S2&^nj77J34)r}AJWT49IMh=K}TGIq6Q-&q`XzL>#rzBnv!#1ZqV!ipCR*g6Q}?&T3GI2M3D<} zEHVfqg5rzomh=jLDjXaQWkL~usO=%rnq)-J=zn%F5`+7*7>;T=|9uig4DRuybt?lD znwk!Lke_Q9^t}%r00Y36s1LwrIImuVe{vSK*dqgHAv?YjeM;yo;IM$11a;J~B5g46 z>S$OuiX2DDy~XYBIH`sx9JDR0z9*;M+j`kuDPy8CXy(*VA*|{X=WLJH=P$$+ zZ|6gWpx0x2m8aEEK7vC4S_ZX{RS3p{0k0NK#^SMMe?STPMiHq;94DNRMtwmg;9tfe zGphZD61}G-Eytv`Pgl(^4NKCnvg8j0LjIhdi(&%B5r-Mgjq?L&H((Sn$H~^I!*kx% zYzAO(!2;4%Uxd=q!=a!p@bKW$JYOOuv=-{Fvj8^7m$LK|V!FS2wUC+36rf=^tE;5+ zwjC@CTL~SOg!yOH&?6x@1~wKtZNo9BKVf4BU8EQE(?uHBk3$;-da-(tvINoyRh1_2 z6+msXY5kl-}n7=|F|@>CC9nq++YOo z-Z#jY`cml>bD9_s_&K2u2w~#N4y*`qQ-ktXgqW_4Gs-yY!3A_+iaWI(v05Di&VSDFE9^k-2cXJ08 z_L^+j?^E@}V6I%0{84XC)+37%UCsq!QgkGrhni3?mUDv%C}e*2)ZxRDg51A>uo9S& z<(eE=h5s|M8jx$@f>xd^`y$p1W<1Vd63r_Q=aZD{#!q&$7P-k`B1VoVv>|t{^he^) zvGuPst%o1BnqL7pr!C?%NCu3PP`Hjmk66uPdzjs_e~zZU00KX7llw3Z5kfvH)GjX3 z%7z7>EFwnlK5HFZ8Z!{dro?T!_W|rdd-ARhVu|QhBwFJ>#P`3;J4}qnxE2L(F+0M0Y^nA@G4q7+cHHp3Jn4+K#9!7g4HW)*t3RHpe}pMyewY?TIl?| zqRB6p<#~L5xvVMk=YbNss3?C43mPh`UO0XFjs(4pM25s3zKKL`z2lD4>*oh5_(_rZ1!-St&%F5bXE-3{E%}WJ!{LXtK@mdGUdfK_C7Bu4CCFir zn9U^e;KJ!o1}273o7v}(alY;#rEllT*X8snNA-@3~CJ>TKc0_x*D`-}d{qlISIj zR`k|Q?mLqo8_SQ6^Viqzesh$j636k1YI?gox@-Gga%D*s5*mCFDD1@(`%^hQLqT|* z0^ZWMMX24%l`E9etlj-Taztfsa12#Fsv74Gs`kEmL~QM_d0xyDtZ0-=NO&5#UmNCK z$Rgkx5HY|e2+T`@N{xgVWGd|rROHbr?Hx3hqcOi^7!Zj=!EE-{hi}zp@*~Fg%ZXmNBmSzvuHJ8yoY!-&Xgw9Rfxba%xz^AK;C*VOA~2)$r}XI2&Fn<1G(Yh zJ;TFq=(GCz$lT8Z6A%CvPm@o9>;9Tm`{wZ8Vf_93oUr@u&5_~P+2m|x0L;fpzu@Ml z9yDqeOqBgJo8X&N$J#-AfoUT2jLiL85ElUC8=ws7Ct!DLAhQWk%hR!RDdxBh;x&}! z<*wRm`@++5+eq33t%yGpbi2`KY+#c-7T}G9GN91-%2l512wLrVj zi)f5d4T3VsP!&FgV5Na^OGJs#P$Q|H>~7G=DULxw+n1Ucd1P~kEDWX%t%E%sQe(*L z6bt1?^{AQ9&8R-QgdlZtonReOpmb{KD`_nni*(x0dz5=sgTC<4Xg*cW3?`FA9x^Mo=byp|4g#CbWrjU$8wG*zd#D=vN@{pLvG=I6x z3i1$o7l8n~?ng)h7GIter1Ko=Ppmh^bdD5kyATO1&}7EsrcdDjTM}WD8AK3hnL_94 zb77o;>2HRdkV$X)KW&Xis^gS_R7dz8tR-Y7By>kt0D)`43qy>wV}uI!hoQ>~&;7MF zo*f?Q&hu|azs8L*vwZ{8atEu^P9$@0pr<0=lSyfmwvWe$#3*(9`r0?(lX^c|G|x4T zagSW9%8D0-{1|-ZIz&z?*hk)TD)UE?db6!*c&g|uvV1DYoC-!&WxpM&BqoAdNdos#W;10zsb|IPVX7)WEwF<}rWF^FLwR0Y=>uS38?#CMUy_hw<9uv6Gy?3Q1?$ zY{7P5Afu59@Eh#Sv+x9<@n=azf?I&NK!YzrieRs>qk`2kw_w=`OD>mVgDpLF;f)t! zdTTINE+;43MjU~cQXT2tBX?}Y%dQL4Pg4!Fi)K8ZNT(C|xLIsZCd=huJRUM*;8vM< z@>N|HH#pVfRc{9});#KEwB^2Mt`<*hKT zV2)10|5%g{bFkZCWPKCNilnNaph0n)67ncUtRQ|N5* zss^uD-qbSkHwOb{^ZVa7%Yi{VNEwZS>G(HgBpeg6KiQkcxh-$U-HPJQTX*ZN`TVYA zqs79Eq;wnI+jp)c^?Ds}#)U2oR~Hh=7Z z7?j+n&z-7D2|z4NFho7JG#*w}t;sxP2|o>PFAQz&W@YnYg*+^Wyix&(!EWEa5+K%q z>U$L%Xj6%|=|tgxJ`%0zvK)!BVZ}(L^TT@xUCKLHi=p6Bw}VCZE;^m(@l8Ybr!sM* z7e}6N3z))vdVJ3?D^P#qd8oFxhoe|{E)a(N7L8BP8B9ya(mm_Y7w%fxDvP_>X5RY~XUCEgp{4Agb?Z}9ShD2QyG=dzNfC@LsgbPdY zlHCT>2&B~S(if3H-j{=Gc+8M|PmVpgZlg58(jj{k0ua$MucsU->kE2KoNyi|bo)f) zu<-LfndGZqR}aN9jXVK}1cC6|mGS}D7AxZxfmJ{|P#D%&5I+A<~D5638!DaCpqTTX5$kQDqESowc8qhj0Jvi;}k)Eo~U) z@a@A?U*{%tiuIr9Oo^F>gqy~W76QZ^!4eX;kI-a;ovc-x{|~7Z(kpoV(11S@hIi|I zIb`cLMiag(qwg3+a@AhzjQf?cQQjRBAOXWW-Eu_4y2StK7ucW{uo z2L(oot>Tl=ywmYzQH+2&YSKG(Z)bCe8JlZR8PW2@{o>KzTWgaY0@oxNcPnNkN#0Mi zxG;BY+dA`rNWxmxzhO%YFhVc(ULbc1`KZmSjh*6HlY0hU?$#T66!(K#hZT>kROnj` z|CI9)z0A}0kwFj3Cu9wvV93+VbtfQEptoZIbXuA7L~J>2h1wr2O_! zw_T(zS;OILz-t#k%Oj9sngxOwUgkC6$GYQu1>ZDapMoY~P`}|Hp-R2?mF`yD>$+ei~#N| z%ghrP%p!Rxh8^M(;iU?xnvwMTw0OqM>&Ock^u$s|9Rij|FJy8l8P{b;JgIPuA$LP4 z_V`paA2)o_oSKvYkV&UT_2Ikr7h_>$N{1;_dLM%5q^#kWysTVB3J|!4Jqq%HC<#RR zAZrK){BX!0hZoFGcc<(k-XH=@g8m4sS>s3_iX5UoAB)S31;SZ`N{tvWb^DRAMfb31 z7|BRwZrb8{GJFXOuqSk@Kx2$R1rk}!MQk8uF2@lPj+FyQz^ss0$TbZ2qBGcfyBt4p zo-*{DKN0_LFrYeL_k~+Sd?gtiYK48TrA*$fayf@Z8pu7zsZQ_|Jrh+pxaw-5#_qV zYt06h2e6)nIy5X~6>>kW;n2Lh3!bh@7H8Q&f8eD0@ZrvH(8pU|gP5FbH>r0)3(tkaXVq9beeQ|KFP+L2z3Ff%6936Fk;vLE;x9W9 zJ`gEIUgiy)dm{XiJM_6yOif3^@iW-T^)i9=p^-_*80a%K1uIDjiU-7DnD7l4^Oa-^ z%%cIHf0An8lIgBQ-OV-+$vK2oRwn8b6>M|zp`AN^1Icb->|DFy3B7MDPM2U%6nqu) zWd+i5o~rMl{RZJLA-iu+y@rAaHJm*DFdUNqh)Y28ORL=M?RuUTWp=YSai!}fmwzt*qK3Poy3e|Eb$<8z}-po*t+3z z^AxoPMv&bIC=#Vh_zB70w zDlljvSf5rWiY4T32+A3SC5K?Pz4*v2Pg$2m-eeD3d)eir&oq2ywFwY@rcj)y&yMn} z#r|;T(*ojL6#TLXta2h09uhn67dvOgW_>t*ECfKqA$e|?Vh8|)4XY-3KY)MnSBTxl zBhF1WhB&q*caZHg1)Dx;qZrH-+y!O|L!{DE(Opj^Y^U64Hm{|h^pEcw_dh9;69C!t zg6LYYn?&0s^0dH?+7@njhnrOSPHJ|(9g@NVl~!#X<;|Kyb1X@BX=b7vO-Jw~$z zX%glgpyQYg)JhN{05W$)0#fL%EWUE*Sy`S^^lyFX?3dVlh%8F@$~^i3F9gxh0ZbI~ z+Mi=BAll0>fpUmr><@`PujKbipf7Znb+2iiUFf54dG*B!szc%vbAJP|f^Wy@=G8yQ zt`FTMi86y*$sWk9(btq{!KvKSm(E^#Iy-*nd46A6@rOeQVs*)RcJ}Nno6kOdAI{1B zy=Vwc_5-dK3E|&uAr)r{8t~kI?)D$qRbH(3NI@jA6zuUu+XBKT=J<=Yhj5}gZkup= zp5cA+Qs_ydMT9f8_M-IYTP{^tS6^h-?TS6?9i*+a1pz)6eODkApB$w%SuNHIYy6Jj-XqyRu)$(eAva zntRkH(Cw~kll~#Rt!+Nw4%q(oxr@ed9iy|`M%^(`xM3UhU4NIhdO_S|m-hPg?yX$j z^f~r(H+qI`!+zT{e6yQ23Hg(@_w*Tl1W}FF*aRk9_j#U%&PijMo@d8krY=d=`tS9Y zZQb6%NchM8`?a?X+CRbJkMcCP*H3L zsg$&Wv1dC!oqc5LZMT8x2Zqa$z(hI!z0SJ>;nI*54o(Do*v+2q{B-W&vB_}YB+l{$ zCgOwNi-iMwUyIBhiHSg@JdAYrV!lvb2g+hT4jEwx;*JV2p$79LzZvQNg6RsBK(#_L zYn2Ey8*Hs!QvCA7_;GUrIw|0rC;gGB$#dsl>5oJ@zhCh9(}-EA+LYq$*f59}8?54H#9v3_IWhKvHOc?znr0tI@4 zM+DJ3%oSJA=aoHXl2E(hZ^RM-V=GUx3C|aJIFDHXWD5sim4~B2e)HUIUL_ezhW(yw zx+bULKJ;ZZ%QI>X$>-v;@jG?>PHfJ_?}@5|k*wyAhEhXb4=Vh!h?WV4Ynq8& zSeut`+dpE&P;j)GN_ryjekG)|KBP(c(r=%O<04I+uBSKOjPz7tq)ue4kO>6kjDpHP zYTSp*N-V79U<*nIuojE4xXv7mcTsm1HG#XeZ3*`SgCzfDOHI`+qx=1}HIZ)V+Q3L* z|A=qj9(iQ{GxZHvLtNd7WJfO~QOdguCI>rKO;@0e^kH4P*ca~*RYx(9fvkpBE|H80 zq#;aH?*F@yyvrv88cIb`gV2;6hVp-oY8(L?#;&X8QQF%0%q;jw1GWvEipZham0>9- z3$i-hLV|3I18$m%7s9b(B#ELX<%-z=5_5rYH!FxF#l|S_J6^AUgu`u6cvvOir+Nn1 zn-u)KPFJ5@;=Gm6J%oIP-RVZpNVc5bGkS@aH@go=+wBk8bXZw6oxVq#Q=z`_M?}?G zdPYg{%AIw`aMwq|87bf;NoX?226Q7jkkkfk4AxKNDEf6|eC&#(KwnDjOA*fcr*BBc zw}Rnd)E^A`QU9a!15nY`nfv=4^6<_2y-N!(kaJzHcPSZc7Gm!BhOd%$Tl3li@fUNk(%z3b|*Zn&dA5d2{gd{s6KH1^s%= ze9d6G6p&(S1~uLjxk%D?ORxP0{s&r4#gL%PZ6sK@f+E3Z*=py)+?+Lcz&e1xIir5~ z06w`p`rG_{{2Iu&!>^*$NNV9%YEjZZs4Os`1J#8*1!B$Ov2dj!I)JDk_g2rU)}U%x z>Y$}s-y7d+UoNN2m_Ha+FBC?GYCqW;H$wTsF{8eZPICY9dUCLA?mZbpjT;%_Pb{me zrIbCD4+SL*bdsrPOi-MM3d=^>rI2e|kcaWG1c2HC#mrO{qPt5G-NmJe&0Zmeo?c$q zQ*GQ1I=0Bb^B`=V3=Qk3Fmz<%=zUw`vAwNr`tJ7mi(<8-axmy=q6U{g8Z$FH2y^a}{Z`Dwo)3Zx0XRsduchGgP^3d; znI=vbC-4C1gjiT1GY1hCg-;EOJ%)oI;x+Mauxew-Q_VzE{%^!zZ9D6i_d6NvXp~TF zDC`{A)4SIFeb=f{bf?%XTOucjuF2K;lSC? z`|btct7&agAfIAJSDFIY-&G!PRf;;oR3gh0WpJRZ?)7%LRe>&8p4l^DDq7%%uNiwXwQ-6;Q&I2|%EDq*H!8(nkG;cj#}skeg)#OKaDr zb(0oc<~qZ!x8u@35(M6;33(f?v+uB9gCs_73HgrZ zI>s{94rrkud@Pra-1?!>!sz=8QS0cL(as;_Qo-3#Ej{x3{Ob;@xv|mo;6pifIGYQXsEqth7U~j@2f^n!b1=$o~H>kCY+MC(Stog-- z^!Xp2VsGsHwsrpSQu}=JgQw`0@RRm1UlHE3yk-JLi4sRc2yqcah=@z_CU6TQ>L=h0 zhXoc1kWU$b=2un_j@st7#RZYA%vo81VU+Lhtnzo5SlCftn&0~@%t9!i{ee0i?zFq- zxzF)-_Il7ly}_Miw7zjjnOF#srv{QX{nBbcel-%{*+5J)v`i#EwExKdp?D;NPci0= z#S&3<>e!STMFnd1`nZu!*D|#{4BIeS=kYe3Hl{pY9eMJKamp$dFCt?eSeW4Ze*?dL z8!c*r>qCRV%0meiMX)A}@K;VsCJgPF(%X73-VPCnj#e6l)n ze=!5)Xjr?$IIC#6;+gYjinY{%{GQ>ij6KVoV!lxs9XixbzA1Zq{wcI#6Rif6 zIJuw!8|gtwx^IN1nhN4)hTsG_bIlb(D07tIRB@4!ZubH0PTQVfnGbG#{#_- z=LNP;KP&K$!;+48DN41bF&hYR5sbEG>XBeDqEq4k{6VeUqL1+EgjuzC?hn#8Y0#o+ zdl7MbR?*DDKb&?*kFpi~)s1z5aiFob8&UPu)eb5;_elRLh;;Kucd1(CL^0%719}iB zi7oPZDj*jt@pb0FN4Ia_RRg~?@a(|nA%jxn3(!oUc7j32129BoUP+=mG2&tXPb zH5Kp%%zf3B0QEXfd{}$n+#-5V7=eGOHESZSv?N1PZp~5_0sK<>s$aqQ@|vUwH+#v5sN6%7^0>8GEf)3uo{l~!wD5Hx;ivDHa7Q~I;vDm zyk^h*9kLviCp=!}4ae1-Q}_QN&}@3-uWhyAEtaeG>g)T?Nq>|oIoh$|A4JONxm&P8KEv^xD6rq(l8~n5?K$x`CJr5vq(uU7PNGETEKs%e{})!6I^)f20}^Lyh-!OoG$S& z3e?&(O-i4(hzdI0`%;dQkHE4>{Fk&#a8)j7lfa;0*C%P0)I3SSd+ukqm`oCz;xU@ElVg*2svK#afk++Uq^l>nk z8+Fw>XfwEP6zwHsiQi+(@Uf8n#Q--UA61Xzk!cD4RLt2`V}bI*d~b;_U1v~$%KGb%E-a)qW zHI577nO(G+f;<-x_sC0J(~8gyoOpU=8E8&IoS}87^*XDtP+^$EHH$c91~536E4$ZH z$u5p6uH8%Mi0*A+9l#a&)z{riy>DX?4nMj$TkBn^v&hWO)d_~@=-!6r2H7$RTS4)B zls}-G;iCb*En1mcx(SpndAF%lG$rhSpvDKPp~J-2e;#nCb>wcNRisyC%SOcCJm0@b zbJn&&m^es59<-ygcJ=BaR3-cnIXs!LOVd{NlL;ao_+ z{5h5pSxsveReO!2_7{}`L)dbiMBvVq4Ne~*0c~WDUfoVz`T(7<(I)bUT1wmD%9n&i z)44nc2fVUFTJR2$@tHD<&`3nNaird{JXoz50Ay|3;cGv7JN=n*F0TSw&1s< zNY!q|%7z!#UOIJGAl=n>C6V)(Yv@z5edOIy2CFJqE)SW29Khv&;{L_nI|aj_7vjSo z<{m9x$+p6v=qkM%f*cW@2HA?6j7kv1NfH3WnCMKhPj|kykUd`HcmBqM+0K7NkV972 z$70i8D7^KcoKE>efw@u8`CkfYHaed?-sb7^Yo(xqF%flxZ>JNRB? zQ!8+OcMbZ%+aci*Hhq-mcN<_ut~nv{jVnnMsZ8jmYK@}%@Mhf8dxunHNwP<t6BQ zW)*`{M*`?=0!d{j>n#gq-hi!IIdSsj<;#y#jDZ7$B<2K7Ll}fzV3yUYn+q;lD^(vE zsShs$l}PQ!_{*2s-PD`Hq_+Olfn)#qK=_^X>duLE_85+14hP_#0X>+H4DA21b=S8$ zA4TLDA|oER?)ux#&+&Ogwui3WHNpLU{e>nd9|5s-*uZvJUvIr~qT?#UVP>Kfyw5kR^F^iR+C9-l17y>(yOdcqrxMSV}i0BB@&B`izUen1G6dL4-e zqzw_y{g9b~?qn0!v5)OJmnxQ1&sbEY$O?KqvU{#&_J0QV@M)#x zjfF?fW7pT#X!W20LjGczYblu9cqBvd7Pqe)Nhl>7Kn&Tdebu)y0_PWC65C?Xd}Sck zOqcE21gRf^z24S`@OQUxqn&+b0`}yzcaDv#$g_p(^^dthvce)|=MAj#Nb(5V(RG*a z8xr?`m!nea4ej!st9UYTPl`Wj;|a2u;{!CiMfeG6E?oaf0)E>hUgt$lX}E*flHmOB zjd;^Zzfw#@BbAqz+8Z18!s6mWHw8Uv*iEDpDP_=`f5yh-axPtR#Ml@2qdaLs<`q|M z(Qt!mbr5k(S|e#t_(UHq&}5lG*Ei!cm6XngickL20f;FsDdE?zug}vhKBQH$MnM_c z`xvVqxD?QynHP&|;_J{_yM6WpZofnhXxMNui|K|&!$A6$Z4n#aUp!f`Pki?M%S#b0 zBH}YX8Ah(HLjA-g9**I8O*c%$?YlKxm*R?G7u_|c2pX_Zjwz~>Z4V?`t`jIK4&U=G z(L?qU*Nx>jxX*y=)0kE#!B{siu5mFj=DKuKR_xtk zp^y?1lcu$U;*I9z%P0fU-io>su}*fmyhK6P;KsO~sCz(o!~+8kKD&L|Q~U`#Ntefb z1YD5bCGm$xz#Y4|$|~7%pn4R+45?r$Js5wy7xaixXh!s<0^)qk!XmGVkPF8=D2otL zJO2+X`B+c3zVK<-Fpy&X5;Cnfn}z=J2tMw2GgWe2{qu2SiuJU)?nDmn3n<)8VPb;NTZeHxeJ1ZJ6X!*O2>v>-9zd*OuF?^)uY z)#*PFk-;Ug`Ta5>S*MvniQ3tM)$o7}kv z-tU1rF*ylTJ5#+GQE$Zb1FQNZHn1Tgo3hy6lvLM{xGaF5;+5L?-$Z{e-nmD=_odKZ z5(E?d#Bs&u<}J;6b2+^t%%PA6cu5J+4?T6)_CE@~-0k}wnZ2&)?SVnXwU%}Xzy2Jz zE6Sp|pK^zZOZ>J^?+}B=eZKA!xwN}=5?#`-4TzECeq0v=%02bp+Ar6StKI{@^l|mn zOX-*G!^-WRfAhFPdId2Hdefmdz-~r==YNYX>dpvvfOY#}_c`n~xtI}K4}i7P)jxdD zSty?oMfZ_5MNrHd!269R)*%3Xuq3WSVcNXxIM`m^aN5u;*)l#}UT#A}a@v=i%a;o< z4(z-pX>~iVi9AWjq=@U{TD@x`?UcPnVr$<;?Rp58eM#3O5;?8?*MtS3z569ergxvc z1o|k@U#$KR5k#m(PcDFwoUHWo$d*FpDa>na>n+5^?K|9KeR4Zlm0r>vD8yvQMO{ z{P2kg=G2wBNN?o0(H(joce9cZ51Encg2E_f0IDKv2xs@%Y>68s5N=o~q8kntCf^#W~mz@ZGklsPb3z(>y`&7nG~}`mBO5usp1!f#reM)v;4XiiAzpmVP@j=_|i8+ zu~_Jxe@d@^`W<@x&L4$THT1)i2zvD;A|IdJKYp6pocQxPNi=;El!6ADLto`M zBgodI+;S)hQdNee2a%ldsKc_kAlnycI|S7LQQ3`5qXmwbAbFDT?H1#FJ@ z&+A`~Q45@5Jd=svGQaSiSDl<6*r2@9%#LM!deUu0wRQAP$L_WQ3$5BA3E92PnXR~ zwqopi(D*}g*>h|6B5*KfTC1n3F_hf;5IC|4T+yFv zQZivK!@|+Wf2oEmWT5`+joYr{=4)*CE+(RjcDdg7c-&L>dSn@P1Btd>uRjmtPxLO@ zpL)^WPO3|*;BQoUZGZ_B4&hoby1B)Sy9qE_dhP-?P?|HolC_2p|6TT0hNys*~Y!tNaf=0>bd*WVn; z1e)V8_wxiru!3+BEOk7CaOrfy+CfX_pC8|EtOS*+%8aYlE~I_)aw9nO>236F za{C>%Hpx`nR)jH1qm>Hg6**lGDW@+C${?9|cz?rwJ zts+&u%U3gzAp5oKo%(EL<4x~)^qpSm%s=HyxBP#sy$O6|SAFMOxAuL%wX0TDl~g6Q zS}K*QH+NUJyS;SVctf(=HqdU2Nm>rZfE_RiuWXi>I13Qe=0Qk2F9`%G3t60nkRS-3 zH ziLy^|M4+8NH*p|xqIe=*0I_I7!}|JxcnnS?$+DM?t%%s*`jg@6#d!9!a>9zmH=0{N zFi}YJZxJH6+kjm0w|3TLwD$Xx6QN`<;ocw5N}B5SDoWY*a5W#%|Cx<_HW$-2^L4dW zefS^d@Z=XnTIIi|Y_`qb{#m7p$M~G)fiq&0W{F=6ex5M?Y`i_dTJy&566NxL#Q8A9G{cLP`yi?757n4xAPlLro(|W1((Qwp%!7I$J$( zUX+_^pJmI+#0T>W`03?hmm#y&`XyzVwVsSc!TH8Dq~F5KyHYN%gNB|va9F|ZO5L`(uKM`Tj91dfBDd*CcE(WFIC1Q;bT9VpP@?sT7AY)Q zF)Q)#&8gJQ;rIuK-^6T?9F39i8Q0rzCa$}2ypsTGPYu04_9Z_cy%N;ztg4;__-wXuv+3`X(4k}JCmdaOgha2rjLR*Bh z<1p0C5}+s*w+-bF+1r!S8GFN{z7T88h-l-HoZsaQHjaO=;JJSM$i4%6Q*AeMV%;8u}$E$_$Y(BkzqMA>|1oG12r^MDS za!O8i??hMpBmi@^1LjO(Ed}e$VN+ugV_vN+-tgF|R^`Ym+SOzGbAnJZKDUGu8~Qkw zL;KX@rz99_v6b6@v?`YJxf)m+{n4KCRpW1rk8x74Ofo&S-ipYC!wbmTs+>baq0g&$y_f*VP9Wi~JZ zCGvYPPbA2e6`_6!v28SEbkw(GBGmmZV`ZlF2S~6+rCpk69(eVE=0xc~`*LO}oi)X} zAB>v0sw?jECL`E+9QKxlWFd$clVz|KaX~ebnM@^DPNvP4Bs>XVIcph-LM$Y>O)(R% z`wT{+W+vz)e|InxJb!N}7B)%69Zx0m31>V~%2qSr#@e0!pgEfVv{87<3A}^xFjW4y z9u`5wuA2r&Ad{V-A8B$Ev>ARqRc#UEZmSDm(d2u0!UYvZ%T2sW2gq+*rCpij-I!r) zwqnuauPIEQ2!;F;b|VxS8}B$f3;CF_n#|{$<40T7cw{r+XN3dhkt92km&hbla>Jc;GpNM*m?{Bz_@oK>^JmXMPsNUp>`tY2PBq=VW z(c0me|NjT+nWzu!D^DO4H|;>trt>M>Z)1&P`Gh^0O_#H!XfoHv`FAFh6qGrU870@F zm-D-;_)=@1SA#E#BIP10DhEJiR1fKJ1~uYV@YX1U;9sf;SaMOhko6Zag~rn1XeL=J z9xhhROd(N@1_jWSKhxn55O+y%6*}z)&BSd23>-*i>vQ7(zD8oD@i_(OKHA6D;9ZIm zV<PRwaHd^} z$1ClOE8NPMCD4gWQ&Y!Mj$$HJ4tmo7_ZWi%6HqpuoH*dV?~N|*-N(Ox$TVhpr;bi# zlG#!#>?h(3$OYNYB!)`!bK0*_5URD;@yNqb^tS4h;ykU%L!@ib(#m_6b#3%rm+N5r zEiRJFRTu+#HWwF%>!T}NCuC)DT_Nl64e$6){cJ2Qj`mj_`zL;uVAoMAr)iVP-X{b{ z+;~@v6_HCJirFPt%6C&P<^k4^qx7+#!Z&=O1i(sbc_HjUq7 z9@)iqR&RC!;%tW}%iX_n_op5>d-j2U_od<8#_|`xsAyAr&y#pLv;=iCfpZ9AsNMAF zp%b^yd5wB345TF$v+LnQ>n1rH44s?aXjW+fuHM1j`h&sa(Ihd1RX%zP$RO;nn> z<28%&>O*%$&%QDdPPCFSPbU9oRx|Etma~y^`PO{A_*I&`cEoJ7|4V)%UQWg)9(cfT_@bG-aauJkS@zAA8?P-#iqo`T=8)!XH;pcQsrHVjC>M!d zCH+t_Ne#=|lQapaVsGhC=y97^+1`l3RCIAcr(L1XwR8sVS?kQQC zb@}V?Oq5??J)0uG%51@fYOOu|_W8B85j?+k-UznW&JVx6O_Tf&WrJ&gQ3LT@27#{1*?t3YpAW1S1$`b$polRY`s$;A8ZF(r1@Bs{rO++c~+`8dZ!PK-rR#RV(afA2|R9xOjlwe;W9&`Hw>;z4Y0IB{9Mws0_Ll3$}6P+k|(pS`+;n`{Rpi^;~_;oBbEe)}(5)bmCf zaO2gD{PiRI5VrOmv0iA4{qkiw3~7%-72^1UZQ4?@B-p)13gk8s8PPYtIT|0XQ~906 zTW&4h%HJ);TN1zg%S6qHYQYGpYx*0T!z%kp&U1y3B&Fen)$||>;G1D7TvUaw3K6i& zI|}_VbvpLV(3{^JGKcF%|G@``>u=ss{JO4EDu*eMVbOC;>?I?fMp;RFEI)ZjY_BBl zainWKVWFSF^51ShPuiuGZo7T)k-vE4kBybhiv-iQH!m9XLy~+*tx=5$p0xb(r`bE? zXcyI&;>0=XB@|o?kt(eHDC%dO*vuufm$NZWm*a8XrrXJJD>?4Jh9YkG0%IZI=$_DR z9kPC>T7%AQArIi>+_SR66Z^y(L`qLc`-ErF`$bmH`#La#qi_>TQ7C|pY#KdWB+aE)TyHJ%f>!uuN^K9`a8yWRHY1v8Z#sarp1w|{PJ|9;ZvEK#=b>t8bdg1u05$#ZJ0?5Rfv$yGdxkVJZ?6Qojw-7f+qMmyw3Ne ziO_Co_0>A;?p`F_LQgElb5E*?OXnohdr)*qcTFxj>aLH+{m(GA>?>+)(@4xk_#usX zQ^UxuK?RjgOZ0I>*~&&Q8x8I^q#D%^W9_@K?xZic8uUq!-|+LuDWu=Lt6VO3c`WcS zY)Sk0*gDn~Y#8FM~QE$rJnC{YVr z7I#{iL0D$SC;Zj$e+;?vb$?(r;Qvb0Km5NnQFqK1W@qLKv(vm5rD|h9Sm!&O6Ei%lzZ^dwJC)$z@FaR?zt^` z34K#M!(Q}$s~;W@OD1D_@?{Y{{Dt>=z3Hnd|JL9V{j1~lF74`H;>fJ6j z=&MHmJm4dLgADnfMSR0AZ_~MNHa|PVqq+>Tl7aBydxxW*w?_Uqf7n<3v>y4RCVGxk zG?nLd`1^=xqdBmyXx#4GgHV|ge`7J>h-pGB{qQ8cg_NTU8ZX(HnV51~vze0_T|dZW zBYcnXi(X&k&lH`o3V}b5Rxd}Y5vyC53$ul{=V$ZsNa9Nj7S$k9_5JW~>S?+Td-4vS zfB2sF`h4$w&Y~K}0qr_qMxR-}^Uke)m9>-KnzuG%@6~hVOt|(M`p^AsI$v}lZ9-jo z_hR~AG1h{HfkV{G9P0}&f2`k$h|W4fXU#hLUo+N;uHtiF{#f^y)YN?WLp}T*#(EjD z)&Bj0@m0?GARZUUjdhc=mrTH%7-lowMPdZu8bxcF zQb)4+Hht_%|4ItQobd9ggatENFNf5Psv>n!+n11YB*(CLcV|w*eg(8)_bUfym<|JC?2Jp=%mx!NRYj@5H z=J{qe{!y22Fx+hJ;}|3sm+eIc7W?9l$?iUB#5yry7RA}W_4tq8SI1EP?JwT((bNvT zgiCQ0Wh5+s9L!2$#CmT@KIzdF?CFEy(h8wm3-$UNdFeJ9@7AAC5n(B`iFiYZn0(Q# zZ^&&6^$|^*$hmkiLXJdK%wa%5BxUOpbGOuh?B%flQhH4{oUN7s`hf==Zf~d-^ttQ{ z0gv+*yO=rR)*E{-;6JaftQZdjQi7zI3M?4LEe;RtLoLf2uh_l=J%{5w)^RRv^9b7C zM7$1wPcaw_Ot2ML&Kf;YbI51%iK5*Buwr9lrQav@6>6|GV?gLJFG}$v-Mv$XG^XtQ zaJFIlwu*;&fUA^N!0ZBJ+ww@eQnj=r@M|BqFA5?C*3%LruTVAZKxf0e0GNz=YF{BU zu3@u~JYC`el_7dZB=?x7gJLj7YTT`4_7VaEyi^f%hedRJmu);5=Gd*b9!w?=s^|IC zkt5TQ$h3MU>4{f1mQUoN*rBdAhzF0|X9 zEE{+VsQY+oudbBOor9MvpBq@2`$*qM{1D4vn^v8ZIj!XE8S=|rPoM2!-}blQN>o~aS-cN+pUz?y}+We*}%%t{VzFVyY&6dS5vHVV)vSa24SIX zVu-<-+x%CKL0^dVjz|{(E_Sc)VI+o|LVc>$u6B5tf6Yq_h{$u|m-WAMUc@BN1aWEP zIgk?r?={)_x+pkc5}7|DHK?SE5#bq?K74z*NPbln4ovhIEB*zhaS_PGjCfmS$Qx2D z0|n0#L68cXEs}uqw`mesGCm0U&A!hL0;7}6IbNr)Zwdyw7?R^?(?>cQv2}_bAdkJa z%l<8zY93@=9!2xBg8;7&CAhpC{is4BiB`mnd2vTocpn{ zAM3x)<*`3h`c402aWMRW6SsKHz*5E?sc>JV{H9?4`ms#^MDcT-+dGfeeaS%mgC`1( z;>>?+ec9zTzA4Src9~7%EVHA81c`Lr>o7lr2stIuSm0V^*0ill%qMAS1d z2|4NEZ#i(V$MIQS4NPUsN1g$UF~HIyyancm9e234u{u~Y%oo;WKEm_;2|Qnz{pl&C z|48F%jv(iexM#)MbkgLL5d9L0XeJZGM(##6S=p`RoZwcA2NK;0R%o$EOIjACik5%l zPm76`j#pbcMRm=enhTUktgR@14O`fB#iNZFztOnM{3##$O^mGZtgpG?G7F|_q3J_a z=Jlc=^Z7!P5jKs;WZ;Qt#*s*x`-<_9#~05={r)ISmUpV}$dogVW78gTx2lUV@}3Jw_YHJiYDVM6|NJCRhNY42m$z!n`dlZ!9h^FDm}+vhii? z%r4G)mH%A~IC9)+Wg6OCak;FC{*EAyq`ZhG)L1^8t=^LT%*Rw!>}g{)^U}}fO3Ta3 zmoD}Bs`xrc;CeRxv6wyGiXS-n+O}vgG!HteQ*%QT*mm}+wJ9m7Q_4|ITIQDaT~%>1 zJ-qa+!?nD8@aHe(^H)_KbUaHQ)8m*V(@y0oX|?&1@(c7RjV!ViLLN<%meI(OQgo~F zI7FIwVz+4wHq&^?G^z{)ob*CrsBmqL1Yv0 zW#8EcYHDK-!w}besqxZfn z548qFr~agpfIBK*@HI5pNbpx^^F^yJoWI*6$Q^s>vA@`M)_!QTGbE0VPgEc72VEb( zw1+m^Y|oC5*3DY6mTHkdRIeS;e{It!zSdpwn!Bc^{o1oiEhynA_oDS5r8lGb;iYrF zgwV_ydpH;G&p6wAP>b4OEf*UMFR3h<{3B~FnrjoxGm?czd$d9n-V=cWCNkaB68>Du z*o~aAd1<*V*_P1+?tw;ead4sanAXv<#-)G04tB;xG8ewy_PFicwjZ_q3^HX8J(h6J z-KGkufNv{eX%h3GT%6~S)*ei0F*I_isl4tvLe+IL7RrU59Oghb@;z_syhu8TCf9}E zLV+O}#zBIhB0Flcl$fsMJO)b=r!lz1W~v8w#6)TGAL=^^04x(1lV89fna_I7M5LT{ zlC9F|$kt=2OgNoMfDQ+)g4aO?^>i$p1~np#+ojitMncI{kUWHf2ML07#Z@{`?)Mx) z*WnwgM=Jm@I+FX#c7x=Cg{9X{MQ7i1lq948F*@xBCz7Z9q3itbY~9$x4Zc|1f5%KD z6!8a*dx`AH_l$USHlOu}^K&F%a2sB)(__X`hsd>^&evvYv7j&P@Om7PbYfyYH4#b2 z(m7n?oMeS|PPUuHd?FPD<`FE$Sm=Zi4Hu1|%TbQRxZuuZrX4P~-51IGBJPC6tF0T4!#%o@k3z~f2hCBfCyq?JUY5Jd z&&XlEc*W~u=TfcbtcRSpnqR!A_&+!69h8-B1+(l30b*Iu+0F|L#Qw~CGW#C~5pB3B zP!JnHL2z)$Jk$2e5S)kX6)L)_4vq*Ke6{K@B*lc&16fRh4J1*?EJ*@Iw*_N{3Q*WL zF>u16iocimdKm*q2O>t)6z7*-@P$Zd>I)4&U#PZ%aWa5KLv6P=60h|Lb76B`G#0th zx9JNGh8s($_Sb{wb6G$%l3{ls7WD^R-b^Gr2JmaEb#XAD-6J_d^e&>)7pp6Rg1GlV zHD2k^qcpo+rD?f3x0%NIVsjd>E&MG)8-M3C7}-sF74B55pd};Z!2-eUYa}wbDt_?& z5gHOBY33>_7!SPRq+g&1{%WLk+=e{;?~rp zj3|QtvUChfoX_G(F(=-z+G`)i1Qv@OR&P&RIy!PHi0mSgmpp5CDpSiaC~pXSJLlwHqG30q!pPaw5mYTI3i$ZQ>(p;;uV!yGi{n_ z^@hZjhi1pp$z)o+(c=t{^;^vEHfO{<+A2J&kyORiEG6!e(ijNtrS8sWpX8`-;GL*7}k_*qo4XaLL86!Tt$ zdqq9(iAvsjzw`Re_pxi-Lqy%y{~B+LprK4hUaj3dJ|(^`smSmdadt^X@7G_xW~VR6 ztM#?t*Dpq+C@PjBz9zMg@D%t6A5UA?)ECy%`K|lTZM`#YmH*?PBattOn@T{Q&Rg#! zO^CH_MP8MB!8&^vI!|^M7b7(a46ubqcAdyeyJ{s>j;@!OjwW!=;sznLx`652S#v)h zSvoE?6Kmmp>)=hp-|g?L`y-hTMzfzT{(tFMB)p^cshj^t_Md6DwnzSZ_zf5PsmK(w zq7|!~GlV6;(A3=2-No}5&(^MV2V4R>LKtLd_6UjlqfgKwDaXaN=0j%8S;ue8EJf?Foi_B&q<^>Gv9?`9Cd}`~A|p8|6-BI=k+U+?lT%#@}YA|1M0>RV(Pr z0@&sb5M&<0b-vd;+XHDgg5pyy6`uJi}DAZMi zJUt_>6YaVvROBP+q}z)dKpu+ZtYYD8Fns*TL4y>wOmOdjRG>>L0cb8dT-7mfORXio zCc0@!^tzfB@i`ZruFl1Y_l@X7D)Zv3UE_$HJu2|pN)sxFRC*S+NkJEiN~SX!mSJ-^GQxPgBx=EUuaweT zZ>rRb2WttG6reNxZW))4UHUK96Fk5rxEQ(lY9Bf6WDQ zg*SVUZx)Q7%y&C)@7$0~`<>^FLHYT3cILL}`_0c0TXOhD1ANa%3%Hgn2aNMh|8<>H z*|>A&!*9Jm_NiN^u}e{*vW}{&tVko{+_p#YD{(no(Yk4CJ?S#V zN5S@DRx3-TcvTfUw03*fw!=DQSt*zbYA$S`cl|8fU7mTlPkfqGZ?Z>oJaJZW@JkXE zbUeZ|)2;fG^?`U&(Z;rgm%csd<2YK}zf>;fZ)lDm&lSseOqCYQVx*a>j};Sh_xXZv zhylH5+zz)}xc!h=hQ9G%#w*4ASTR)e#T5v{!fG1*?a)aPpWA8yD9*ByV0pRC zS~DU~1r-HT%5Pqz8w}i^4KY#D=N-{$ZH~?v@Wn z?TQsu-wF534wYu@h`;yGc2By?t{Wdc5x#>2?H(sWLL!}vf(j3I9sqexcfd?1BA$ZN z<8y^1jk`A*^#;7o@FxQK_}pxK%=G)&A``(xGM#xKe8-p+=)U36Katz#)}6c$*}M3 z1&j)JjOp@}Ug1xT4fMixMy)LJI(gkX0;#Hk%F~jzPoze9xS8V3ira(dvHojzQwW=Q zS;=2I)ie8RW%3s#W?K`pj!--qjm++kM)uD}60tI0M`CDYBS&m^rsE&0I;U_nSat=0eU_CcQF0rEZWAl zv-L*aWLq#}S6@k7br0b8vP+M{v4Gun(n3mOmGS8zZ6_x%B*&+|Mn)URH#M;96#$== zv3U6Ot}jPzUq@E4>}+k`}f_`H_A$@#J7T2UH zBOB8L%qx81@qpK}1@%4I4ba9Q^i;77$j+nW^LakQTrfN-wegUU8v7+1kg*ZZ#X<4$ zw@Gu6JDD{c$9Ut5WGBf+9;nK`|?9M|@qaTu+6Q>>D*P4IF6zL~EX%?cM zM&;L>&gaLb3V?u)O_$yjpZo=f^AgMhe^9q>97m@isNe^MZ?sILtaFi0BmxRLER6!u z#j-i-!Df?O=#n@>ZI^gMw>?hNbb3}6L%z#45xoqXFZ5g@bmq*$!kIIn1hA-}E+saX zobC(m8(vsEBlldAr!z!Pmh1e+!xzH%M4$~(^H+S>ex31Ayg(gIgt!--<%hHNo&;`lSC<+$BYH7{-cM6sMsmx~jH z!fT6}OfiGBBYc&v+riwZpet9l2$_pJYnO~#dr{EecwxH(78gUq|8zACNJZ^!8Wy4G zo!6q{zp+2%*tI9NI1-N59Uc*uS?-vjj$HJIDEH=t&r@tlLyp>?%rCl!tE6#l9BZ`m zuTExbbD^7Rb7xn}F;2R#{t_CGA~)Y|J4;_tdy^C8iYFKWC<53-rVqSRn$u+T z#5u&OlbEXJ!WIzymgv9r##nb$6JybAcp_R)G?Ep2s8TD&%(fZn6_2`FZM*wW=#bCb z$t=V($%g4DH(J$frC10JzoRuC6Pn+?TkB_*Ly>4RlJT~}v(8k!8OtPQGt*xC)RZf9 zpm;1AYNgYO$wV?(9UqT}Cz5S@z}}v61}nv}_*2>|lm#bv0)737?y&eH-5;;AJ!E^t z_Ez}Fm)Ue!lPfw+eN3pRUm#eluwTIlfWOBVCW*$^y>(1&VYh6(S%2xS*|SFnui0M> zxb5CRW;_}&g5i8=DinyPBDwHS?bVUS%FF1o%-+2{{K|a&XesZE2f{IbG@Z_)WsWxD zuuJw0t#ikTNMf4W`jeh>>|2t%!>cs0Q+$&19}U<7ng~&GnmWW(ai2SFvP$1%*v$M` zvru@;I+!zEIY9a=VH&nVvuNZe3+tI=p^%(@;UcWB_6ODXC_dPtL7$8h$d5K; zRmF3Uyi!G@Dab$$&T9Epsyjs`$Cr?4tZezDiorvw(3v?_c2G!w$raUO^KZ88H)``4mwSJucsQ0Q%r++uOd5?t6Oy=0bj<@E`rs!E>H7HLVtLl>%4G93 zB=!qq4STCMiM!5dU)*GlrqIgl7r#QuPJ)vTUaia$t?rh|;Ywn;K@;B-JV6!ZGvZ|> zFk2=RE$bNTWGVT9N$`EB-dKd#;h!gBhl>>yRHN#J*{#>#rwIkhp^c}(I;l`KgR)l5 zXLZ94#S>$*HMzH2UsekA(RnL+qyYW-3U+bJAj_VdMo^GntWIJ%D8bO^PhdF8UL<@A zBEnI$40wvr#SP@+-U6R`MF0-ue&eoz_mBQvVDOaxkN(L2LoScY7j(rufkdJRL+N*s zxzy=PB*|ar4NjzTX>t#S0(PflCcY_7C}omMH)cV*2`4o0QCKU%KeSgbdcf6$?A)dLy%UNKWWYKD{K z1Z)DE8#XV_DRYZm{xj=pjRY$&|;6S8Sw4OP=vd$0*3s+my>Ad2ar zHZYmz9ws>42)YTTyHbitk|ljb%3yzyw36#>VNr!i6)}6~hb6^;o#~^_dt7lut^PTZ z$Mj{%Uv;zfpV~RK9OXCYYxsiE@?oB=`OXa2?YSOY`#b(MEt07|YJ=uGH8)OcYGS3j zc4PXd`zq^AmjnL$QIwVYOXU}B2mlb$0Of3pA*<`M_`c8J=P8Ip1>2<9rtr^T9rP?S zi&h<5%rLviPJgkU>~V|b`RK_tOes@0$A5C9yEao2^CwzB%qg|u>dKK~VIs^;GYyt9 zqC+skj%a96dT~RNO1o=h%VxrY^=K+sVTB) z=Nzu~lT%M+w6g!=uSU}WKL&k%e&2!Pfy3{}JL*qPJ$YG6a*0nyo%f?Ix&Y+B@`#4N zg9ay7iK_UK*O@93duoy5;Y5%~b}c@LvEi_h0H@~Jr>35&%DY$)MSvgv4moL(3QOd_ALUAg>WdxRX*l0*oR0Tw5u1U1! zs0vzSTwKH58sZ!D9+%7O)b|^-PVA^)di0uNiyKL@m|%*A zYed3eZFN=9**N!uzR#}v14FBF!@O`|d3i$`y8#H{Ti*({pOrL9$vnCaFJmuJojcmp zRo60v4Wi`YWIbycl0HrGGv69;JKQ=lvjl1?>Xf#hIs)m2TSdcVE4yxfP5kzAqu zSfcPe3!+&N1ez^yJ47o{@yh;*+h(_e^Cm_hlz3wQ5e+Q1RCkJmwJbo1nRHj_W4!?l zQjb4=A{U6-6aHLkJY7j2;Bm?x4TOL=GX2>^Yyvpl;w+{8Y63J_ku& z%E4#|greYWli~2BPun=OkA;aAz~-{Hf1qnkLMXZ%N;pEYDlHZbH^`=npk5nD{PfDR z&M#~B5)HOsT@D_$+wWc;uBMJF4o#P@^Pee%;kub}SA}T;lBa>Wu7Z7^-ITK&%(+n9 z-S*mzx4Y~id`UeayX)=8*4Ea4F%aUq|A#;7L0pe}KDsP+Em_yPT+v_1-b5LmQQT?Cy#w(q+C_n{>g~Y?mtk8f`O_{zvRA zdDa-7wc?F{BR_3HD~1(AHpm)&Heb)X>i3DHBtibJd?>M&FxstdxqHSm1ARZhf5WdE z%un48_#?5O$B+lGgkp}Zh+nI4njP(jgT5W}w8V?l1m%q55}~#yYIqNzR~;@jj1Nr= z2NPrE6APbOI8pv^t>80*V}epO7G#~)D>F0M=KW;n4#dZPXDlA5N+QLvTieH8pUb`e zSo_w$jt3o%;{GwaGn6Pzl`jbt5^zt!&;}B#u6OIjeAk)BK`(Kly$&^xUIa` zw0%Gn5^iy#ySg2_=^p-xrmm!E{o2n@?svAE6ZcLu+s^&bnUhzw>WXFLkg z)fCXflX6tR#+ftX65PK1%o}wvE5pszOKS&TaZ#6~_rUM6F5bmjV;?~zS0+|j7fdr` zM+8fL1&UUeZ=B0_;_*(tyiiIf+xb(a(y4qqnJz6LnfHx%WlS?uTBv}VIh{XNC>+aA zqdcoDlt2qxS!5g(&qI9|ZTFC;dzJmf0t{3-HY+sF!xUB`uk{_EqnZo_K8TY3MLu=9 z*8etN@~#;>ya_7MG-5xprY!y|DgrS}6Cy5~#!moR=*JT>;&F1m28;Srlu!PxPhRVu z-B)*ha=EQf5w9C`K2P8qQ4VX0wJw*q-rNUhW|MZ)r0*BL%8y!cv(&q~gsxi+r4u`h!bIK~sp%$psCIGYKvIKDscP8`p zLq4w%0V#&ONI#w}FOu){eoRe${g7wYUoB^3#K+6vEv*uPgzw90OP$?+Z@kNR z4r?&NJ1AI3?Tsd@ER}XJBaL_d>fNavs+~Y={7lSUJy?D6wsmiFx{g60njas2<#hIp ztRq(IlW_O})<2O{3EfLt88H&#yKJhR4bxmSO~ukKst^e|F-5Nk|9PoBP<=sJ!XIwi zVc7|QUlX2>4NycjVYa$TMbZ&)XC=@%cq2ZeFc%qG+86y&?d%PYaMC_Jfl=gv090=%7_Og6Z z*ISKZV&s?l~Ve#$I_)zIur72{UGyJls&z(=Zb0d*(jy$DRJ16-b;<%TD?D)X@;Fams9$YbdJVy z{X{F5Yn`aK_UJ*gZ0zpBRE5H&4~v z#8gRJ`V9P)C#y$VK6fJKKRB*5USo~1SR&aif+)E$b=?$SI1ElP7qc7}o;c{hsG99A zhsSA;l_I%VEKr4K9$BF@4>aQEs(W#iikFk^iG9oDh{t2CSySRVo*Qc;CswV*Fl^7I zO8v!1jH&*d(wyK=0F>AEU6@F0o2As_t;YfYSrP{TqsbPm`5EEGWEV!(Q}bI?*CfQ$ zyn`A6_Dj*A8aA5SC`=JYQOJ}NcyA|R%vATx-ZX!3ES|5`_P6F6+y$!P+IIeM%_k<| zT2+39t80;A)}zkQrni{3ZC{fsE1qN&i0a7A&gM*yb8L1_bBKcOc~eJGQk|WgznwfH z+!zbz>odoX&(!nb7$4iqEm-*Nwu=u3{(3U)cCn4ZH7eb>gwF7b@&lC#Zkm7!Uf&LpDIL}t1m=#Mki85NW~S3cfoFh?8EEfKKpK*Q@QxP4QGiMc_8Pw~A9({{Iq)FqAFOVNY z)>e&84i2D;b75M>MUF`YLVeV3e4*Vwy>uG;<@~)1VP7~`&GEc&?>w?AS5LRQ_xJ3{ zcrK7k!&&9xNqg^pik5vuY)=DbvqyPUYF`tvmYU+Ru9QyFm!n_VN>J&k*jId<*Ui|c zW7*oc{Hmu~eSfq3ii>bsu%fN;auaYsw2k9Ce!gA?fpB2SaZ8yQP@o~S_o(wC{<3>lHQd-3 z?boArj){e7s}6~y&<)Z)R?^5$;);q#RW2>5hQZ;YSA<2}YSgHit1X&MtAy25>E%_I zNSpOq9??)y{<|Y}xJ&F8JBiSO&)mW_=}3e^V1z=4;->ec1O-?;TozhTKxB>h7Og_e z?mpk8Nx!1$s?X7kn4M84tZlb@O%yFeqwO`w^gO`DthL>BF&bNaFX5{@{3ALE`av63 zM;)+7otNn0B`}d`^xhR;wuu7+zSHfjT5Gz`9Y|dT@fH!SEE$QkZRIKow&sFJRC>ab zFr~dARZ-!Nwh!n>AqCY_cB8ercNdWLP-s!}ovzr`7ZKS>xB9{*@xvX@wMN_~P2Sk< z`K_jJz%8s@In|V$J8HKFX>*_0Eu`g$A=|BYS*_igd%D3E$kLUhNIz`%gpKCwS;%~k zhr{vgr?;uwz>#${DX{a5reZc$CSORXOh>Xn^md`whU~{9dc{{-d-Zhcqj9QOV}W7X z5VXo=IopuTlI$C{36rQgYoydBB@2~ZXxHu}VKEEN@j z%zpA|3RY~*omzh3g+VHY_T=nj+(Ib@L1_Bh!34|m>_nNG>EuMKm{y~2L~ck#N;1O z-#k6z3yn{RpTJG;d8mi0DsP>>Uxiiu>h#U&8J|+3iE>nYOe*7NRL2X(ry286>=XjE7^%gJk=ciC z6JE@$5pE{V%|xV{dM>c|HHeW*9HT{@(i!PhjJG8#p7GPETW&GWv`?F7c&Yg&rc0&i z2_JdK@eLdIwr9pXwc&StLCkES|72x({dzk2x~cJf`^KkcX7uapvZl8(U-6pR$7PN@ zo=FELXDZ@NXs9qM^LF0 zxh`srF_%ippN$;2_!*~W-n9!Taz`jJ@-tp z5uU3Jzn1c}+(qL(txz*MTq{??6TzQx%uXe0P3P;|gWjRyA!FG|eoyDU1t5XO4^$@H zoyoU{9RYH(G=HYhm<=@FnQX?)LHls=p!ALC!z72|PZPftXFFm7it-AniFBRJM-X^E z{YW)=)Au)gCpsT57(c&wbfrB0Ncn{6>UOVteeGj~;n^QQy0R#GK;aW~SrX@3pfoJ% zB8X918W`)ka#Ze-8$k*-zB0VO@bPYWEI5AQ##Hr@;djgo=o;mfqs8(}!1#FKW98n= zv2NF4o~SN@iqIwXrPu}87uX}#tUba9ZxG>pZ1xEEG*I=X<(&t2vVHA~>wuY~ z9b5UpzI}gav{qJ()*tG3QpBF+AO|&Ltom4|Dero_iunirnJozCPbo$=Biaou1EWuG zx^tEiXNTh9 z#X_N2UucCU{q?|XyFDAI`&*$_S6@H&mP&qwt);qv@&5;G+aFL8QIDj2J)9^6{kZ8V;pC_sEdXOmlf**j z0G2RNOjYD1su}y+?@PV1W8U5N-o5V?x6a({ZQX5l7E|wUUE}(?**@8NQ)=eTzK0(2 zzGWu$=Jv_9xyLm%#@1SV5j!UO4tmWaJ8%bTA)P+#Dq*;@%X;|T#eAh$aa8h)h02$C z6f1eTP*}Xee0WiP_dH+ZEB~PG7^s`SH=Cv+Ck-khN2|w_QvsYrIuc@cQKf8}-zrOG zr-iigj<;73hF$YLSKgxTmNCTdMD^7`=_~5WOZXV5Xl!Zq+K2-o0>?s~aLM^2=Jw7g zuxrN~>nmWP;Gim9;a*KSk=GC(VY-(@U&rfk%{q#1(I?Zbesw_IYF#BNrjHBI<|@fl z6!*Stu{1jC_|?y>&35~OX{M|>$y&Q)`x@=RW~t2YA}8vwJj^4;+Vmvm^vUT~YpR7Q zo#*vJK3{03C_(vQ@&B9bGf9R0gtn|lo6*{J_~XD3uLiuNU>oJ&;2_r;OEHfVHmo-B zZfBr1r_odG@uLlgUr-xGJ2!FI9Sq=ooEPRS`vFnpwF`m>(Lga(BfxE7a#yG6Bn}U> zTyqg4lpZ5#6Z?Ua-6O2xZo9S<;yY@j#eI*IAf7rpNmQ@EGDLc-clmd12+q zDZdf~u2o~Uf>#dSvG`_^BJ*aS515sy{2h1X_C6cq{fC@B*zkJFhcmg1GYsfv&^I14vo%jdSY$&XF2*Bu24^9Urat5Qz zsQQzBmuu1!_NIOT{)#d7XPX`r=<3ITwHJr1P^9~YJicQ2qxS?k}V$x_M152%n`DKMM3^# zPRAuoQ%#1}=rX{e^-qp<;$FiOJT!($*bKzu3yIioM1ziF$!|K`ohj$=Gj{h}+wuGJ zwc7E})WGR1bmGmMVj)j`taKtvsHb5#-3joJ3?f0LQgZJE$sFiPxQX*4Ty>B!!?kE3 z74#v@J?(K8j)pve$dRz;9m!aEf07!@GpV=T@B~H}z2{xspO4y}WIX}|nU%`m@2ks*Cp-7NiRPfP5Cph)7x%Y|!osJH+j#m)DGU)rG{HKO%~ zCze>l`R8XP+m^cdcFXDnqJnaH(z__HP*XL@~! zK#X3C1ro*sv74IlPQmHqv-Gkr>~e5VTgs-hw>p_Y$et*T)jjjUR3Tamn;B%JyRXsH zU#tXWZwS7gumrQ1kS#A!G&9y*{sT3a``E-@X}i~U4!i98WtUa!^{S~VlBVu`7Wp2t zU8Oi=vNy#_`O-5vQG`M9z*6HWhJ%WDU}G{6q~0EZE{r9vE$$@T9J!LNp3gEC(wIG# zf!NjnO z@DP{naE#5xCvJ*{Jmaj8oU9OQHC)P=k!o}-71~+}VQ(OOB;tNYGFslx+Dnx8gR<); zYOUf9IC0_0x_lv5)@u(0-3A+Wz~S~(vQA&fnf2NIqxGW4Ov^TD_|n^LAFw^gdb!5@ zMpR`y*@tFjku)3hHc-?H7&Pf^ao6l2&eGco#tlwUjOQ{gjlH%sxDO1W9N`j)Kl@VC zWcQ9{RIW7yMji7{!Utf0$N$%MtIe*A5AY|q-Bhil?a)|8S{)``yRkPQq{CzZ)Di=cF#)aZ8kKeAQhM1F?8lH;JfP1j} zGOm!%#nkYCYf$mp-9LHdT&Ts%L8rq*o9OAB*zXBKSKHvVDCzNp4LiT9PXAkZ7MO|_Y zzz42@w5P5`u8$R)=1y))b{|>3JGicdI~aFIVn*t!rKkE=mZM&JR{y$R>x(!-HFrGZ zuI=~vTv6YC95P~2JJ%8+kGd97*WPb7i_zvx?a;WvLX>m8mQ{>g!`bL2Jh7lV()=U0 z+wkj2Rmrg6WO2!YyXqR_p?PwV|AJ_{By-rfO`>dOS#M%ZEE+n}3N@f?mr1u{#09dh z#FwQhNrp#KpiQw>uw=Y47X=-Ci^HqeVerm%vYp&{q(DQnZi;`iFdz(b#KgV(j@)$o zJfD7WOa4Qaw(wzfW`a3#_}L7_c)^xI7wo7+U})h1R2@;VYSwcXqq^&ZfC$Lw8S-3& z-?}7+pTQAmT4C_S!h`mrZsMs=ESB8Qld))p8EdW*@j^IG^|A#aB>S1@hc?0a_$f3r zV$DOoPH=R1;G*m$REcB?<^+&FQqIOF?#&hfH|ACM_YnVi51!J_ZNM6 zpZ8f`&i_`w|5-1e{kf^%Dn8#mnLc&>_34wwyZqS7xx3hk+S9XUfIEwRzxP=`|B&-N z3xv0?=s)^frRP6(GIi?I^{JE4ik?N$`ax(t2s+$x^6lNcMXx%lUW{N5;8tK-+1Wth z3Dcg2%hP0^y|NXN=~8shM)-U*>Syiln8Qf|ala!L@Q>x+7&Kn{wrAhwy}E7D(ln`> zt)}_t4AnIMMcuRq{ehSRlR0I@*kXfk%)ggny1N>zdH*Mw`x3K^ZP6u%w4BLJrcn&$ zt5@TViLOSFKRZS*RL$k8S%6JrxsAnKZ24YSGfUuzTx|ku-Oj~UP<#(JNRN(^Tl8Nq zfVU@D0af~uke3vm%fy3G8eFfi8=N#q+dWlHx;uRrQI_|*VzGE3&P3iH^Os^Fe?D6@E?~p!zx!JwU6aO74k!)TI6OOsED|~5{whsj z{h~<64xym3%(P{xm0S&^FBwRqzR-^qy}oBIwHxz|b;0n$DKM7X2YH#12pUK2Lsv)8P9kuUJl8h934lCFf_O#<47}Cn>J$Pa+J+XZ5v+4X{x%Tev37 zDcW_9dpQvVG&JB$g-PmN@P<e=<+TLAHRnEX%fGd1r<$+i!inm8CPK&@haMS zCsy!g!!g=5w=@@mPTIrI1(v*R=$jw=m9t)#v)~6Ti6*M`FZm{R=Da~jPM~NIkhcUH7WK*$!lac48k8W*^ z9572um(=rMsjpDomawyu#C}Mku?r+zmgoMub=N@ejXEEa_*qEIzRgft9J8Y=R4Odc ziq>Zh8hF$baDGW_clzlPHnKJq!45S9Vo`_gN?Hk#k9j!|W{LU?6r^(aEafsH`>I_|}n&nuecV=V(@yZ%5$U1nc|o zy>hxDj4t+7{W3pC{sSrM7i*vBezht4rN|&p4k!ZH7XdDk?iIT$7ru4Gf^PaSWbj!` zjoao&p`(4|tVV7c5H2nIsiq;Ve06Pgz`d9!BpzULWB(xh4TBR9F_@&x4*oh!9nssv zZ3SNKQ&Y}Z zIe?4WSfO01x8653b)coMd&Z}LG#mbLi7z{JhxC#5Q__BU3dLXaYHAu-Q+YJsx(Yy( zNHVe70;aEK94^vy&&P4&X|+;sUYep>wcv4%hnf)9#P#G#6P<+x4jk=248` zt}2zwjOZ}sAy(R^^)*Kd=4e%OOzLEfk-6dmR>!MrC$57~k_#6Wg$7vy!hdLtd0AtU zCq(%&Nltk}J+&RWBcoxGONk7ZG}qXWwb~bmT-MX2OXl*@k(rqzOUs*5=mnXk7#+;T znVCg%%Mb0JvE>fnZmzSPfTv$TL&o+m`#Vp)1=;gaPw*?7ylnRTnmjS?T=noyu|6t3 zm?Ns!{Bq8S1ln8e}J;qe!|rEDrcRxTvMaOK%xERd>%qfUpN)LoH`Ii8&`JPt>} z>2s#0KRxx%DMuiePQ_z^SR!lqoF2P9`oU zOZ>A$7f-*I|ChcKyOWJQ|4B5VI;N)1-mh~}RZtJ85tFpEE=Eh~tr;-_$hvYA$hE~- z*1+n`fUO!N3FC!<#LFO-l@AgDDMtOa*(X+4+4uD{>bFg?@mY0Wd+z9}1g~P0534Jw z=n44QdWC{fl@f(4sZItk))Ypw#uOqvpx=_Gc4}uHIFS(~E0=ATY_MhI z+)l|%+;u9wGviB4A74*v-(NFy`1IkBB&=8IV0ap6BpLm@UY(p|yVmPfbkUL*M*Mk4 z{-h(RWEcL!R$fdMt|z-JPHCRb?#weg03pV9k#tY}aOkU{!#imj4z`oY>^eicKrJy5 z^cd}okr13$uoxT(#iYpjTC3jQf= zlFO>M?7WMMGFQYWg;VeXX96BA;z(vwek|&}c%3o7h}2(NTH|e-^SGr#*O|XEpLWtZ zl1DU3xn+fUX}V=+8aD`@x>^jE3Y2=?~x8hUhVYPphLht`MDMq1NuX)kH0aVVtr_Q@`mI`7ccOz zT@KTQE!W?x-@yDMtI75++p#h4^L;}g|IVe7;ctzIFn7d{HahZYhkLFHC&YSGN@(De0P!*0LKf7 zxQSjpT^%psJYCj2#Al5khtIZ<=<6a(h%ZBzb3&Y0nwV62Y~5T(4QsJdqc_H#sRF7n zQVAQ$_tg6U*u9||%+&+#KsIrhy^sj88+D8RDmGilby8+_tXlXx^AWRW{z3ixR4T#F z6L_WESIaJ05Mo+R6rbEMTxw1F7!wCN2T?oH&&u~zt@19Wc7Ymjn`yyQGO@y>vN3O{ z9U6YAzwzpD)U+E!p1(gKTx8d%`mow!?uHdd znDksx;m<68h~(f@8ujg2<&Eb)ZlA;1e!Nm@kczZa z**ANz<&7AF+M!y#GBI~X&Z#q#RsJFC7z@_R=sw%^Uy8?i`7>woy;!_FJ7b!~IGw-E z)5y6Xal69V@6uI4VCAR*9%!=?7F}?!g6(AIX>@4j*7WeJ>04)bH5%z#|J36#PV?At zAhq^QOzb0V9?yg1z9fIDpVrw!*Lmj?pAftbdT8;to&oP%U$1@iqqWhqvA%Ng;_Xj7 zkzZNS&x#+@Wr#P2WTq`1Px?cAkWfAB>JNv&oAofnsaJ9Bl6+(Gy0cFno$vSOC(q>yg&dEu$;tWt zv7H?TN4VN1r}R&;w}Iuq*j-s(D?1)2ZC|TZExUt_#UzK8E=s1;jc~VpFcawYd;?R zyxhjqH{H(9%MCnz^69y`r(ZEQ_lgrY++f8B2v3S7h(P_KHbHU-duk$+Acyg^ws_K0 zR;E|8>^Zr(+`sqU{_^5d5_h6{I=QsCytuebvt-gCOQz^uyko?9P89=E8;pp!&>5Rc zXFZjPisx*?bmrM1NJkND=lOF-m~w}KF{_2zV(J3Me^EG za$$VDK*{Q*CD+Dr_q6z>P0oW9b6|#*e7)jUMZD3zu>@=i(+I;Tc10Ntt+ybeQ*@|O zw*q$LDj${6TO?H&k8FIUwYVmkU<*^yTPTS#P+3X(*mS-h+b zTOW~Vh3wAqKkJ0%>Wmc|iy$dwpyR(~&^J*V5F z=7^HBE(&L0#I(}fT3&$pEh$cyc50oO@U$SR%2{niuYh~Ky%>RF-&%QxTA;Cy{?Eq$ zN%?xW>sbGB$hukjkvV435fpt&9kH53z3k?s2in>rv6WEU{8BS{^XtwDM?A`)fQthaQYCBpht>1F+x`e7Taos`HSAS)E zjsJstHL4iPB@cjbDTb|5lIo5;aaW>q!C3LB+TxX0|L~hnj_R}exF?oD-On}T&ljmq z_ILjI8T@flL>mi&WmQ~eMLoyDS?HP2E0IN>t{9}%D zVjzu5(HA{yy^?nEwdX_O*A6drX3n>o^%A2UI-hfhDMxh2E(#^I&?Z!}u(D=(F;`(T+b#xs;mDxk1_`9Gu50O=gmrTeD3C3WB1%$Jq$*b%6euA z%z_kW#xuC|=8QyUu6Ag#JkhvtBQ9Pe{pus|(oIf-BNFde?}{c~oXOzZ0j0vb2|ijW zqqXQq--#u)$w82EN9aY|Kn0{zTo~}WmN{>jGa)b=GhwegW?rAi3u&(GaS{$*N=@c6 zlNpkH8ID*hl6JNdV;&%o>a9c}8s0cF6B>^OBX-wV{M7aNGvmbxSIFgV6C$3Q8OyXX z&v{*5hsP0rpT8Un9Czm8>DhSm`G<>%Ts)%owSU16cEDZ$k8GIiI?{{i+`C&UT|{5p zr^Xfz)E0>-12Ep^P1h zX2SjiO&+I0kq+LrRenGWv2!(Xp5QOFLuU9F;}4B@aDM{ z-F>rWl{Q*e(l?^-L0`DlF|k@=G?NXR)gkS3x+~U#R!=BZvYMlMjb7H{=7m$2OfLFl zMme%`2tnf;=%aM7HH3@6e@Sot-QxBb4*CqfUS|W_+Gy-#f45}bEs=0bDYdaB%f{3I z&b?mKI|yfTahKl=!3W3)GPD+&vEF}|;ALZs8$eGwHxKMZ&(i@-D%Z4o$g$w|L<6qL z>J9BhqhIp*6M!-&6T$RX^uN<~8$Gxw=e5SEGAo1jDnUpqOG~D;$D;$3Q@Y18^fcI> zaSRs3)}E|AE|L4e{m+C%lrr{gG<|(DYD604dxA!A=Cs$FGBam`wO}!GDjRj5XhfzW z2eblBjm>;J+DLt_RxhE^SREeVL?TqqM+?*)QERWI= zj|!H3s|6!zSzQR6+a%^`O@+{@Ck!zg+h1mnwAavpSvggx)^%0g#Cb|KgYGU14Y<&< zPCFbTN@kI$D3M|0%++}fcGU4*bXnxHr561Jyb0{__6@_0OQOFSSah@p12uQy&&0+i zm{Xj}#+CI$k^G7&M*dNQk&4w%9#^_sgCH~F`^CMD%y>NQ zb8NNGIAbTiMg#+i?O+U1k|hV`*pT$ZS&nrQj6Y114G&0`EC~@j-okEpguwQYeR)d~ z9uLAa;dpGqdke_>{r&${l6t!B7|83EN>Zs*|NHm<9pB&Y2mA?BfXAtDvZ&FM6yfwG z29>>n$n|#`!X|=CGeZV!8L%v|+=Zkb#BST~4R;YJ(*%EmKU~lF0Ut?U?)(X2hou_q z)s2((m2e9uk#*)A5Px@oCxCGW0pgf&NdhK4p^e>pqD7xcF7nQgK9lX-{gwL)^AJQI zst|jmhaYlah=G`u>^DZp< zX|B?Hnx`8X^cMp0P%jh@IL!RqXGfv9v2lSsy1d8MI33C6ZjZ1qJ%-XYVXM|@eqfEW zT(sNJ0W71wXHa8udjj7>A}5#Tn5hqkCRLEQQUt~X8$#2Q_CnKeDK1QdV|jRsCp2VB z?NYvyE!G@>+mnbj5}I0xrT+{f`~61v@Qtg%`Ll)V^Y6Ech{;h9IvnlI@W4YQ>w zDG`?J?4d>Bqkj^wz&xUt;-6VbcAJ&sDf(*ambsjW+%%ki}WvL2*ljzy0?M==Z|ZLh@*lpTa8CQ|CCZl99o&5Dnjh@YIyje z;oo@m3ukh@Y8L2_xBgDd5X@XgTexLmT*bo=9oZRIub7`hZD=QOZI2X>wdVRbkgqYw z0sy6$4+)iaaBfc`cD!$9YPb45EeR}&J{A1b}rFX01SLv>xy{`Zz=G4@N;_& zb$xGPe!j4eRt!oTKSiR;nFd{6aq<}k|dT9o6aJ~?LRk^-e6{=Yxb-Mo5bZuU%{YiReCgqP5Zf!_Pu(nhQOr;`b0l`&N zWG`NOV^xxnJh2}EUJ^;KGSmLrY8C#e1n)B{xo|`MYqP9JrW>*Rl;5Aq2g*zJV9uV3 zL}5V|1piE3s8YMQZ2Cp`tI;0i0}7dx^<#<*3I2o-K=%p%{>(<`ZvY+&#Iq(m03HI~ z}6NyLesPytI4kf@$SxD`9OP z*Ndfrtii*To8m{jKd;rrL7%ja$UzP!jA|FsD2jRi(xna;ECjD|h`~TyT4TWKzl5;T zeZ-euN~HUJPr-*ex_le)9aGqg5uE}3gU*11Wf@*8;BKH~z-PYXh7RQNAx)5P z>&bHtI^Y;3!W^O)Fj-sa_jRrg!Caws(2`#5(7d5NpYw-f-ewe2nhF~gP!Ulu={%r4 zXQ$Buly{km!AkD+wtBr+0Er9-2-rOspqp5k*hf$%;UFo-9`qJt3IeWejBCTZz$b<` z7)<~&`!YtG;TO=4pt)3mE)LL3r=b&aLuOH+3ktkIJTel5rcZEr^K(TezjEK+G{tr> zm?D??5KS=+3Nhh;U&3Y%atiwzboqQjlrZu@em|qd&}hsn;zt-e^600s!~3#phyi8k z7C;z2%sk<_5F!`AJCHACXZWS8@M3mN&7`83u?@_RH=+Nb*TSm$b-_m6^fUnj0}Gji+&>2F=xOe ze6}geP5(4v!Z&`!YUuJ&BXlHW(BT<;RQ_R7pm0|1yr&Z{-!u>K(|JGpVXk4#$#;q3 z8NdG{`Fu3Lk0%4>m1_cE3sJ6D zt<3i`4&s15$zeWldU;Kspj^hFP)F_W9|X9MPt=G}PUo5)qKtLdR4TwZnckj`VlYse zs*G>h(@!oA;kAqy)rb}_daE)~vjgh1MPkV{727*>tVZzt$7DHZ4qg9RM-Qez%qP+` zMgd=ELhA|e0a)p@1-x=CUnmwGXp4{`IZ-r_eiNqmSFP`VD?Ue=*AbRJsFjRh&_=eK zY>e>Dj0BAPl}nlxMj6jx{d+3_);l)*!v2v43JYq!5?xW}Nu?kr0NRXHGH4sv6xJHE z$5)AkJz;zALILxY2Gx49s1*UPjOemaOvK=ak~L_D0$oKyMOs8cckirtG@X95MLB}0 z9kHw$)a_uVSEYZOCO^|)=a45TM&F(fDnM`rX}1o{l4yCFudHkvbFd~ zZ^zl*#7Y4|;a$=DFTCVH-@thr(gR4$e$DSeVE~XtR>qwW2d#r!^cz=tk92-^r^D~C z>AZB|{;k0_{}J zOrg-LDT$*>Sl`ma%DOY$Eo2+DVmK>FNXhyMpyJm+=zs2Iz!jQy)*2Z(XZ&5e~7`eCjgJ& zKu}e*Vmze79ZSQfkP?0lpTwY|@K5D9oXzM;KfYsgoXd|qzV5Q`Jode7bWy-~aJc@y zW_c|q)IaMB@5HDp*iRw?Da|lt8UL03Y7C9l(3q(h+#B?SX~v>(Pl~9~JWfQz3G-i3 zcPQ?OI8GSuPaXvsITC@BqHy}m8w%!u zV}h^)NjUhk(^fE=Mbwe)X=4LWl>neV!P>DEaZU_I)-%7!dEJjhlDoM2vUOy^C_VuG zBZuv7ZXu{lCGt(RR*0+Fc;qBEtIr!c78>V`FTsXK`LD?n-v`SPZE^6$XSO_s;DTIa zQQQGM5uX_vU8G*GVqquz1?3Ky$G!s=dwlDmt@P9xi3W2k*eI4lNz6%u9s~9Lg)l{le zwNdHU)JPb0+cX#~^CBWa;%C$?mV7{!^zMC{KSZz{RI+KzlD;AdJiRI5znqWz?Hb0!dtyeFKn{!=>dkJm$LaK83Mwnw~-$fV#StCZWijVcik3&irM zA2lPj8UD!wivD3$#DANJ$T9{EXFOaAm<~lT0QXjO__qS+BL#ux7F974m%||i9zqZ5 zwL}ai4>cS&n84TTr0l~>CvUQ15=E?6B{=-ZT3nBXlG$i_-a^#ike-R?VmPEJDrAB< z1avOn{jaER3-x`2?-|+~>oB&%BvZ#qdo3YxDB2AEZJ6t2)?U7eoe&VH`jwhIGBcom z;BJh8q5uHGr}LRi9!u9&GeuOGBE)8-l$?_D>2w}1DJ4U3W9fWawH5n=Mf?p^^i)hj zYZVC*pFsU6+P@-35^h(0jwo?IYieRJ2-}XO_Wo3fPDj<0l#=q%WR{g=Ws}jolnUDH ztDI~~`H10tWkm3mbkZ=U4dY|1n`=|aSO~NA6?>X>Flb0H6o|w^#Dg&29y*^(kS&fw zLwpP3Ot>@TpWR~t(zj9PU-R1gr}s%NpKnz2dFKc4oW}F}+|PVk{Zrd36wluHNdAB) z2sx9xsUKixY@2}Y$D48B$<|=5!D6LUUYm{O`%15W%YC;uo^Y%N-1G(~4*#_C+{v@( zMkY636~2kzi;&!DzGAw{tDyAANe4=gczUFghUy)F1JJ*k@QsTbMd#cgf3|qCRL|#y zfQRpin$hmXbH&EFa|_k^{u40bi%HEx1qI<6$#n$0tQyP0$4djJ!y?we0t;*afT7nE ziOOI{U2{wRH6;rDGDFq-0Ti1kUR^m^JSX!yJm7b6_X|-a5Spw=bgTZ|{dom#=k=k! zi!vLO&w!^X%w}~cC23c#iyYLD#90D}nawjuxoi&KCEU6kjrONk(3#Lj1pY$EuqdeD zQ@%TEI?M9P^oxxu)G?iq{uj_@P(O3pz{@g0&tSJSI1&xcn;11XZ~|*efV2|SKsFdz zrZfSl4!pI~SefoeqsznpMR>+UD(8n2=@;KM{8Q&cGXW?=NF^dX(|B=uMP7DHWQ88? zrW4P+2vGlrX7o@e9q&L@MwQ_7p7ODi)etsgk5@ywITos#tS4ZbOJL&>cgRaP=ViDP zHaozjkdT24XPTSh?otPKH}Bq%2`Gb}%&hdd2SpkdVH5+S!SuT%;X{7$`?fnnmi29S zm+^HF+sPAwEO-PCKZDAq5FrS~tW8r`nd}bbB zyH}toY+mqkDXU10csdvwO6Cf)F1h?I`YeEP6DNx{{eLKQ0S9M!=hBHk^s}h0!iT+^ zqj>0O`lj+z)NJZUUC29oiU(aoJ86t`=C49tqR^Fl7H0DL08axPF61O=env7(d!*fD zP-`}AIy^HSxqa+(;fRA|R$Qa{-}>a>*@w_D)dlbXT~2jz`ZeQFvQ|qTGH&H4hX1T9 zJGcl3eP^4=A@QW)>7K&3+>#*#6S;u+oiRe=2OeEU{6g>Z(p4I>J89pH8c23YP)Ag3yoLNSAs*#9jGhabQ^kC~rEQ9^G!d zmqa0<&0+V3eaTxJn6pe>3DFx=0dflMuiz}eVI*aax&goFy#eNlgIk239saVB%NfE= zI7ZHeqdy!C190KJ`2)_&_jo^F;ea1uD`$*SnKG0EA8IbWi^8Vc#N3 z1Sx5JR~QNako0OUAdMYk$|x9H`q@5G@^nU%mf1XZC=C|M;{AcUU14;{Bn(3pYX^ps zYwu2a71kP}7sBRb3G28&9_S9fE?5y;tSvlm0;i)?hRmc8pAi7q!)}6qs6b@{^TJ;~ zJZpZBIs0(Jx$6(%Ong~@=4}n3%9h`<47dlXN#o|$lkNdS{oZ?^@z>ntGB%sZ+jM$; zy2al6#P-~Wx^T~3-nQo+@9Okeu29tD-wIDavQmkMDDlXGb(@7;uK*O$)`pWc%a}`cVl*!Uzc>PXg6)m zZrjNokpP7#V@(j3*xIusDkp#$BfJ;{l>$N=ksR&q~PoupQy&K`#}IK#_FtBjSzJd{Vh?A_ImW!1R^l zen8wwZG)NIA{@qX|4QCJKv)YrI$Z>1?539>!%Q!(F4D`=k7G;d_f0FabmG*BCB(R3 zdD~yKPNq^Pg-u-0T%1lOrx%;}Rljf~^`hgvXdf+Dt0&Kj5eTeyX zU=CE11WT;L)tyxc^{D`j?-!g+Bn0yrLy?h1l5#A3eVa z7mr4#yL#VxtaKKk{LJX`4Y%E}95q|jm9wQ7Vd|;8FQdE*mWzHW2#x^yD% z$`ur&sZ6#X5+K0&aSJTXaw72*a0%Nb)6XNJ%Lo-p(I^MR*K$VC1S$uSetsK!3$Uuf zHoiqB^DA@#4h|u2kPLHq3i@vD#R8fLTO^gOplsNDSfD4GT$J48TU3L5v55geQJ+4r z9%oYc*U@@2%aK->(Cg-YYi z`ULc5T$Tk2d{Aj379j!;aqLLzpb`b-l_%ZCD;JD3$_^`gv`#i5Q4uGL;Rh@4P7CmD z#Jd4r%?J|a8Y3%-G&KB?KZ%&pTzdV=m0d{l5Tt>5BCusIk?x>9T(6Eu2<*Nr5(wR! zLWuDxNB4y|&+c8v2+~soKgvyYfSsjt5i24@aLA=!VrUBh-@%UVFAkg7gbY6}lQ@U{ zh0zQLwuAEzh`zL^AbfP89YQyi=pY0YYg0UfHiD1txb33Y<D z;K;Ud>&z7T>{Aglg6u?@_+ zU%^OCrC(x29n^CeDtA93{fmr!pY&X2U2L_*7IrNU2GM|9DSr@g8 zQMMFi`q@w9k1QOYU##aN$lx9|ZzxuxA;YYE=p@@~{)g~e;PDXGo>b)QpE;;fMW~vr zcJ*4vk35Q6G-35nf>|!!kVQWCbYW_B{n(9%jpX9|@r5IK^W=w$hJn1VmEsL%5-w=k z#C+#Eo)~5aP?$#35duvFJ0oYPvefe42$VsGo;w@}%a1074cXu}fVa^LM0zHFe_nVS z#^!|YtnW_WgT6;W6)1o*J;)M4s!T8sIO0Kp8BLgEz&qjrV-&12Xkrt5BzsWc&eqyk zGeTfLKfZ?pk00^~HbEL6yG~o7@JtYSCIeC;t}2RdMPyZt$0dY!VP~O`ezk9(g;Ds- z%8C+ArClcwS&y}Em@-V*2{fbE)SjnxWDrK-mu|khRd@kP@W6WVL_qRG;>RD0$03b$ zAsk6RhdE074VX%%8(CfBnm2gKVY#|bk-(P-CO>hC?SP2nj*Fm8X^D2bYdN~`0HP0& zn*!kJK47{5r>FNloW&m;G>Dwwg#`?Q2O$630vgHvgMpAo;288s_UG$;FrqK7vffGV zVH9&eRUZB&Nj^xQ*f?O#Gg?XfEya?$gf)w4R>i;r8xFw-(dwBCB*pq?JTDLnEvP(U zZVf-0PQ1`+yO1>alV} z3Juv7I(j~@ZVfnTh}(#hq8XhKTgkiG{=i!cS*0W*L`wrMm2TR%7db1suN$)iGF zC17tP{JtmX20%adaCcu_esTF4-fmj}wwm+wM8A2w24-jHRtdNp)@|rIFqKK)2u5kg zHAx^Q(ALHV$PgU{o+;w+Lmxl4(Q-aP2iC7V4+_NxD#Drs9&I9K>7M972AeDh*8nwG z3(1Mccbo_b1a0fa=cvGu`!%XD83srwww%_6ws8){?{C+h(q+QI07>g6iJvHN+=R(u z#;v6x8QUCQL))NTd4-}T+V;^=$4!1v{-XvW%MYE%5a^!mgosQaogf9963c{qD-R?J9Ah(w;Uc6*k zy@D0XN_jaGvx))~Toj-(9JO||u%dPP@F4<7zu}mWX5!Ik91_lmU)qND7g7}C|2$V9 znkS^OA;>gwpM>`!#H9B<&UZ)=ybFGEcNdUd@XOBbF4U$6>qg_Oln)kaF~u znWwjx`HjMAwfB)F>T_h?rWwd#>%hEp+|+MSHTK52<x6U0Zz={A_EkdfBzb7+#<4Ekti-TMgZjfh&7uz; zI7426O5d|@;_QjrbL;)CiMg|XI=TGICCpC^HLDO8jM>jRp@pPE-YjJliz&KjrV3l6 zj&&LXs8azIXL$pG7>AVs=P^+*M6RRfCbk7vW+fW~`FQ%Sr9@<<-9vqtN_ejl_)-V= z;k*|4-S9c)6Ivw`Y5A~_BnYZ(ayQA4NpG9`=MXUdSiFJ{77=C#VF#8l@G9H8IR1_N zNT5M9$WD%VOWPIRGovr@J=J=}{Hv~jWNrSRc{Xu$_y_THqy*&J@M;Gn8lhKT_Q}f6 zbcX-&2&u1)a0$r!FGCRJ^=E5@+pN*oUQb+Wvj!PLhjZw(*E7H2pRipMC+Bt0g!vkV z9pdQ5Wo-*Dus+XYT$v=#xfN!ULa&qIh|-?H7_r~I)-1lYY2A09)xQ{)Jz<=<>V@a?x||y(E_L8ZLx0rYoNw$49jqhI-Mbc1%i4)?Ft3= zPN$fBj1nBaz6v~_JdFcV zPMe`{I5hmf#blV;6i$lEARk|m{z~EUA7GVl@(uh#!1R zDqDkiK90x0tY8y_ju?}H>{FyK*4XN+kc3kOV}VI-Qs!D2eGZ=EAWwfRNQ}9U%_}dz~%kqCf#7;XuW#Vu&X&{+66}hNPmJ#8vnZffpn60;T|TDKJ?f zfCY8N$U$tRU?5^ZnL;dJPeBzb&gFN^tEFropO_3i(4;)L1Np^~#Z4_--Dv zvBY1PBP3Gp@K3*>6?JQEwJP~@NDMX=E^7AiV~*^vbxwblyGadqdFaLtxlkg(0YA%W z;g^K}ig;a7*m;Q#b{Ib1YYKweFeQ*zYmPgeXdHyx3GePvTc9#p1%h6+gLi`=dh8KW<_9Nc4R6>%28>{sI$#T#&!!wk!Rqpr{pZ=n;_vjceEp{*tun-W%C_Blx1x>9!44U$R1}_VpbrmlFjk z9XE5vawZSYfJDq+(W14LWeUvik6B7ChJ4A)Gatw#dZVKQ@KWZVoS?jNW@Ack-y54lfGx zn0VhWAg|{()*E2~&-?E2T|nQ+b?OGMgJ2(P!(4@|co@-o1f8{vOh^c^gTAN*Y;+L8 zVvz&Oohr<>Me(UzwW}l>t2KDm!|=y`B78A>Dilv&S9W{J6d%tDhAyolYl^ZiplcAO zbU6frP9_w3v7|)pypf3I6sUObP%@GLWu2%*;+bN7DrH18`7x3nO+5s3wHC@=pNysw ziq~P8^5fazzly|HWz2?kUKYkGemGo|8aN4V@>Glzj0vi$=U(nNCp$`mz zXGNIBF2m#)K+EIT@>XQ6m@E@J%y5v=MByife-t&Lqc2A-Yj_1^o5Nkm_4pH@c!bcZ zA*j9)`Exy))c-tUIDK&Ts08|q?<>3xx@*bcvD3%3V1_2nv3q7|stMT`sO2V}qnd1? z;Ot~=b|JU!?(VHhV`s-1*9Jx#Xij?$&3E(%&#l4HmrQaHAnQ?2?9qvV8wbNoW+T)C zqskCUV~!=gPElOI<{=mi^#U>qOrS9cu7Pg3f^OJEC-8EK|L1$X%Rvcp6B%!-lt>ha z(`(CTyXj`PHT+zwwY}*e!ws<(+$o>Tx5CC+0|Sj-UK2JZH(Q`OQ6|mRml=OSJE>2o zW1W(+fC65+`;*Q1JS6=Y?V`dP7K}tPeg<;WXd^j@m+nF=U>bw9L^Nep z%ycw9xRA`{W^%a?aK}M%#7@Jc2(MG5t$`r%ebF!yiHTAu9F09p7tZ8zb0V-DK8uA3)PdQ*n5Cvad2{7XtMT;mK0$Q0M6oq;=vkTRUMgb&zG0VIigpi{M1C{OW=uC zhz}JP0WIX}H3ax=f#-qgi(FiJL{_sp(m7z6k+J~>4&jUMY$$)7{S0avQs4HO)UjIB zx^I#A-3G*W8ZpS-&^**?p?5m+UuS>qWFjrT?Zs3I>1wRU7wZ^D(o2xmh$%1csgG!h z!>mm_8p}z{Dkh|YR&tFXXePI?a}gEmer1j7L=zXx^H_sNLY(^}$SEKu1Z0P*fh5*M z+5pBC;kp3!pt_xggxjdfg~(q zejQ=?zUojTqY`k;Avib0HB<>na!HzI6(T@48OE5Pk2BQEOgRpfG*RPV<7gtSR8TN_ z@l>2utp9xWyGQ%s6X(2qGashuPwoooFmW6D@OjxC*5~4#E3aNyN zw^qW8WC4UOmu)Q`x8v~-#Z$3ZDt;JGyvxCK`e&pqir07Bq%no?x{m*#YhX4ke{=NKG-`=0Hh>zKM()h)Z(i zXd{-LHjxlTum&`W1DcS7EdXe4IigjU*?tE)O|+IIG8Wl}q+~?4VFyNpNK3E=IhLp! zJ0RMP=ZM^4x#Lt*SNlc^c8!$LN7g0?EB}cLOac-XgF8oftOZ2zBwI$ZBroXrfr2b@ zJEKjA?;oVQ;aa7mlzEL&Kvoe}^ynRv=s{4)>(RE5(vH^#T3r5yq-|t(fklz#Rul70 zKuR(=!AYSlc2vVgyqtW{EXRxiXYw!cn!xY-D#B(7sf2}~qRs&9ZwdBoDVwEZ2>|~= zK8lQw0r(=iEp)?){qklJB)e!Cx#0FTc??bJpDAL>q7Q}>0emT;Ak8L-JYvU|Y$$*u zkONpPWv&Ip!sSbM#d0HZLVdP9ylRGG!FJUS1u>e9sYX#sCoLm&$t+q$0J#vy-BvDKgB%Y||q#ABJ7R~%jaW|ff*}=HFtHlEI5ye#W`=t%u zp^dX-9NkKO$(0q`BzI*RwKntZW^38a99%=V?t7Zedmf|1D#E|a zoH|d3AD*t)r|m+eQW*Xw9c}vj_gXZXR8ndAovI?(X*n5n%)f#(gRhitt zbGd0`^Jv>ejrL-c#}AIWyA>x?&Nx@1u13d4^@{gSnYPbN{kWWjH(Fn@gDn84WL z_e};kJKWGr%=M39o$xq^zp8ocOo)AIq%Z~epRr` z(59$m0NaFAOjiJG5-=&XIZdI+35b$G7lp~0T0_pw_>?Wo#np*R)R64j2L4RA6P6_) z(_!I5(^+~*8awP*1o;yFuT{UUWSrIGt4>DI{i}hf{_uZ(SdTvWyNZf@i~uGF1XcN6 zJ>`!^{Xk56do{oB^ef*Pqta%D5F_=9#r*00_swNy=MK%yX6EiYxXgf{{bIn6zrZhQ zZu#KxF1b7l!@eTe2@;Dym-5XAAAC^Q+S%E8?z!jaTFws=U!k%c{fO@r?dWZj=28=z z9_RZhc{|R)A`8-N5!X%OwMK%qOufe7Z%Cgp`YEEcfRtm*8Yg-}=Sn=CDMXhKv!uJh zU=Nh~S+F{Q((Qt*l?ouhI493H>p zU#Js5Q|~y?41?ZufyJP9k*x0JY&0O9!k#mBMQ;003@S1y2d6X&V?6(h3kD zq}68rL9O;6q-|1PaU0w_ZbgWilOF(K;TQp;cwogPVj)o;0j)nlo~^3 zn^dCg#DsfAMbQ-HNv=9&x8(fPngX{-#vuY$h zq7k!?mjiFHt*Kf7JMeV2U_`O0QH#ZJ z7U(BgMm(mcgXwulkcxnKA4o)>h)gGu7$7ewRJRy|&Wdbq5Pc>50>zhwB_7xaE;M4$ zNHfc=|Esk&XbOCTkQ&0o-Ymg?2GS!25ngRg8dKppC<~RBeZ-H`qC)6k3k-arP=F3t z@O`<_`oW7wB?M|bbH~iO7D;GG7n#w+EiO70IXoJ1tS??%Tl+}<3uaZ4kJnJY?*Af!T?B;k>Il#B&v(|R{iaEOVMJ#`0#HGsT>r8nUT%{-NRJdUKZUCg$! z#R=RVc@=H;ppK#oo<%4f^7SDS$>)w&HrG8ITsjJ+{%8L0V+U+j>;QZxvKwPxaJBnx zaR{c{?RGC;=3_q5Mr@z2&_aS8faz!ZJgCOC4Ky>xo2_ClsT8pz2O*YUTjtLtGKEIL zA2$k?AKq%NOzX9e5LgG7OvZ1B927R?+A@E6E_?QD_RVLr^Yht#<^AYf_6B@&Lw0T+ zz#*SIw+RD4b}5twt>SnfAr-Ue!w9AY=w+R9e)UKdL&grWKaf4@@@Z#r(K*eId#zH= z@XA*2_S<`SGTvi6XI`;Y<8rQT)tipj9H(}i9rv~B$qQ%CUbt{0m^9*X#^s<#4;(k{ zBYkZV&fNO?`r^KuJ0F~1Uq1>k=4-q+bL77E-W|Hhv3>VGacO@27|^-w-rWD1{O4dZ zU>VmY)wUQ5?2IG-Ic$kEPJ~LLKmg_n+^U7XU4_0p^pu7J<+|w@e@g?^?{D?unf^AE zEirXNi^oD6S_~gDQN38yqe74`1O)c)Im+2S%?q+6aST6EXs;KE?t<*qM@0sJTmj3+ zTC4a2;lzjI>btjk7K|Z1LSoa6buEA|Qn-0XzJEBlaG}%T?Ipa^06J}=AzleCLY-3( zATkLc*NO|>%WT?#b!$+B1M=0Pr7H|D3%B`Kpcq|bDrbRA`q$72vWJmv>Q$+fN3L2} zRo4#RHrF}1iF-bh|CxOw+2VmBeuTd~_0inVxH=PWZBcyQgI5>nQHX5@u6S)#CLK7~ zmgK&L_J>+JbziMzXEdX!C03V{_P*uz^^khyW+fCmc~rYORits;ORFp3#SZR;$vV(9 zBcTS>07&B6u2@&>lAl}c-0bVv1!VY`N1~f0o4Kn5{C;51yyi;N`(4LH0QSaP`viG zJ{bIu6M<$-R~GvYzyB`GQ_DZ$YJ%~Yq#+4Hc<-N+whWOHb%5(RvHMu}*xn)P*i78K zw)tjmAy-%lS3>zjes(sWEQLzvvyr*>LT=xf+?!j>ma~!A?9qmqDBhlhMGY0$TPMoN zc|e_@xkEoR_rx+`Tj^UiH#_?Z`W&RZ&ffbT6e9&rVF;v7yV#!lKGkYP7mwTa@x}O_ zI4NJt7mv;cj~oile2^lg?7hDME%m|mcFVBq*Y?~e+)|>geGM3_&xnWH;>mQGQw=EM zu_v=F*>3Nn6@t+$I!>`UU25bTrG0cl@LhS~1w3AOfr{GOK9skAPMS>wWgM4xZR;ZQ z`C2W%Sj^XQwfw%unS=MeZ}8*zLs>)vXsvZnDn;joatL;X5?K}2+MxE}YsP+C06+-+ z51l_5e3-1<*H5e@!9>(5>urtJq`MYx$AHNd487fk^_CP8kk+ww+cp$F_5V>yAp2&b zbm|@NSvdKgceMUIoqVa$c+pD7HXr%G2Oimk0+aT>t1LHj0J{@nXf)daY;*8DF`C8} z0`Ax+8YdQd3q1kKqv0ll|e%EEw71{K^>{+CrSa>@Key3*H~nSRoH`$QHD}TJ9P*^V1R)UV>Xtg z40;t2M9?sN!Lh4Y=ZKsIiKGR>jsQ34le!6?(N&D~+MwJ{AkCK&7H)sXGbQ#;cjjhq zm=_Yowc~3=cKFotvfP=APU$Im&cf^5oSw?cIQgbP+Ki?V#`KVrM`dlh1S|yQ{Udpb$DtxS@HpeyNW0MV z6cM8{AkG{iI5I2lKVv|91B+Q}4OVm(D&rC~Mi6X%6T1jrZs4Ct^M_CO?D;f}llVy~ zj%cq%mF%GS#18C6_|&Bzc@H-c9RKWoBix>e%w;VB6Vk`@GF%6^f~dKaE1L_HCd#7_&Y(4TL@(F&ebVMk|^*shSOk#qu1TwaQXBOo6w< zVW6bx^z~=?9iQZ8w8!>*I?M0)7%$DuJ=f(G;`EgF@hbZEeo#1YF$K(e1lJ;t2H6G> zFqCzzOvJ&ip`R%>2qOV`a;+g23?>P}MBrLbFRZgR$OM_r?KY%)n<$11|I512M3O}# zmMN$6T0)OTX6B&Y4=0R_9f?8Rkx!R1F(Uy_cBgXW%#n%{3oXly-30Xv^0kQP=5XEvoH@Dh$q5dZVG8y5`aUAzr8+~Q)X z^w9L{Utb>n1Mcy4`mGV(q#t>YEup#|mVtgS1|-0E5=p%aFjB5r!Q6DNWWK zDY2#k0TH&BLog==0t(6I2_VMuc52;D9ZlK!cuwfl0md%cR#6LJ@uY=J-AHB;LQ_@+ zjkIQy&o@glW#*Qp-*}0X+b_um`+F2yM;bx*?UEJ3P2#oHL^7_xl0bGN?3vVV2;m$# zLqr4s8p1UIIYU&@eIb1-!D?XQ;iQvaI68%X@V*gVz{HCcEHQxNTp?Boh!&18%c0%$ zF~q+pSacn}2v1&K=n7|IKt!C0Qn2Lc8KE#2qXYlIzQYH6y@2oBOL0BUxfmDTp7Xx@ zd~fu<$@i4+ZQstejlyn?(-L?@a_lGIof(nMQI7=6tVhbhe^QSOFLP|m&vX6fGyKJc z*t;(e^Go)19`8Y~^Qcd$^J3Jetc!U+&lLd5Cp11GY4GNQ{N?BNd~%EDwl=~da$0bN zA+YYibnwaxUceo)5+1WuzMIpsR62d-r(0Qxw>Rf4M=ArAx}uYe1A zd73Ojnr0;pF?Z)QXq zHotx%KI^}z;oqE)k3lOqpH6FwFc{OcraVp&Tw?&-BMe>KzcfHV#bzBAHzZ8=!Vlwh z?7?~~(qutz+cDj^!*C!Sr9MXhfR}xp9{yaO{&OfZ4x0lIxrn4M2P8t}!VZjJiHLA0 zH|yUpVY&X82yDCkS3mf@)gO^RXKIcnY~6#+ZukW?(fG3~*5Av1IMsH??RXvoXsN>*oXC=9el8~`rF ze5daLm4p}m{4B!X&CWL(bB&pMXK>8K>SaA#zO@t%SL(5FdF8&W8H>rGu&oIGcnz7| z^r{^Y4GGYzNHA;`8^L5MIXwkKV7^>aGqFlm*MifB%&A;%szFW<4J)OpwymnEl357& zi`Dj_*mS%K0~w~(C=f%~4{-Q( zALV>T4qd?g8Mc_Td2oaGa;;LF8mu#bq?nN&`$r$M!}CS+kcB*pku0{Wr1Ks>ZSjC} zRZRR7N#T2v!!OK+X3x6M8yni}@GIWwhIg7?hkx|QzkWpM-|@OTLZL?Jgf<&G9%^WK zh8{oQ+>OCqaG;R&A_I7pYPr1 z4`75K9UAPyrpFk^wIZ~zRz+E7rB0~rgaEDA=hs~Dp z2;dMnQjCMO35NvEifU)W_kcJGFd$&4whM%^L59UZ!jL)ShCZb1pq$US-{7=tB*q^` z2pu8pc~HW@t)2NHDXBRulV}$dQ#F}|V4x+XTjmwy>G{myN0aA<{~a!sVUheQJGj4y zIQK}^CUYc@9JB)h!}JiwM@A+$enpP142Fc<3$hdgn1;k7;26)&+!oSYzb3>2>?GjW z`R+_G7>j>zr{J`v#c*7z!u67m6?hZU3#g?3B>f(Ty4OnpbJxL_GekavXmS7p{4iaM z)s%pcw{Rv-e@1ZnN+@m~O(s3)@eGC0tBKm185DcQ8y zwD{&rrfsgkK~seb#Z$3WEq^H4hi`yI*~0pX^jj+DPtVMpp3N=ha*KzSa=E4LTkF}v z`%>oJh-+e5faYI85{a49x1XN*$K28(_cFeB@)!nL^fIkVnJR$?bloxzgt38P6%oy0 zjlmX3LG2BiQ`D2d6n`;WP5po!tre#7Q&Zw>_m#7TmdFl!K(P+xZ4lkX0qwbt?hJ#?e7KFlt*NNNUD6ZEj^breH4do$e z5#gjw3?~RMr?SLA)LEEMP;QcKh!xEvA{3Ab1Q(%ECzv1t#%^{l0`GK-BPhXEEU8Gr z&7haZ4+Q}j zJOo%eFdpXs&!~XOuK1PUIY{fKBzF7@$7lWiDGTSY6iB}{Zj%kE^o_pn^gZo+yYGjn zebDI3KzOo{-%x3heg~BwiPo>yWDL_pi=op*E+5iPU_)wRf5J8lo(1hc;I;>x5&$gi znjIw8uB_DZj|j^ZuIl>qYwNU1I=&j4)AjjSGgDKGN-fij%>@K!KH&eoy*Etk{fK0O z8|NA(>*t-7N`6VYtGwg_>Aw4wdfYT8Iy@grnz?eVR?3-qrF}@ro7s}0;sWEE+x4&c z4DAPv%>cSb4Uy8)u(MWxFPUd{F~t4E{5kGFh9tzUE~IVOF#p>TOhRZo>^A9yY#C}) zxei%c@D1E-;F;;^)#++_N-yfStm=_~Wd)+)k63|-zPcKY2Df08gsc=82W}>}@$atJlU1=6oVa=qxTZh5dKu-$2E>B<{pelow zp!Opr&bO$zSMR}~etLFmYxZ>gwX|U8$amZniQM!ZM<@sVw${0O;qj9vA78k;^LMYI zHJ(nJa&ztFH!F}0KzafQoeN({_N4s06a|4kS9uK1$}VUiLYuMV291mC1+i2jfa7+- z`N3b+XE`QiKIk}G@3^l8gdD-w2g*QbU`N<#^nkSQndEKI=^!?= z@F6mhz<$3&eL(x`*D&XwAN4z`0ox)V=L9=PbkLSCcv^q!Ti>cbE!_OxQ}24$srUY$ z?>Y6JpT?7Z&-Zs8CnZbPT4=1{Y6L?GC^Uo&IJSCtEU8^0wwhrCpbdljci+4S`+{hs z5!EsHvQND64L9zP_|dp@snLz3GHx`Y2?Pgo}d|paO!;of9BhwhvImy|Q5%@=Gc)tYytAzCAx*%>Y zI15e#`I@AE3>c-^*MPn(}N`##}(#yL?jAoiKK$J zg`Tdy>?7lzN@(v&MIo zi9@9u%R*=8>cpM9`X8o?8>u%4=H<)I_}*QV^o~?%W9khP<3yu`sf!TKY%u@=3vLBK z1^{WXSyxE2#a!d~(q-B)Lc9XMx`T98!e--}K}k>~@y?(K0B7(mZ6T~yKpr+5c?fG# za2eF1+Yy5&gOV(Ef}&u)(H~Uxt*r)v5(Ho-c#yh}WAtczDFOi@Zw@o6%4Z_YMpD+n z@uI}=weW%}VY>3w3tKRZM^sx#vaI&aoAay&6*VlhhgX)V=wshBhhI5O6-E+O!FQJ^ zQFT!(uuwt4;1kP1Jw)W%mP$%8s*)WXcWel1oLsgXz$K-TD2sT@VoPP z(fsD0Mn2_(0$`8gQM)*|Bs|JaW6pwvf{ua`PKNm;rwv(ZlfG${yWx=R59ZV&Zw^u( zz%XSc8CIJ3458m|t(imA(kE2jFOfLhQm=n;U<1w@=gSVbkG?{EjvgbsT_)^0THEKCIi z8s+q+!{#Hhz$W3+4OJZ78Zs;_a_r8QEp#ZIJML?mMK!sZREz({IBe9YH8s3>Wcf&= zafCJozAy56g8o(^@hyS?V+Vprfd8?p^{R}8zSf3-AT;+@mKEeQ{DiXh|MxvLb{$<4 zzds<0eZLF;(1~|Aqfjs$wZ_=Y{G0|nSu+M+ZR*LYQWiQi$V%uD?o-{^5}jU zfI5to4`=Ylv2%>3qSI)PRj|v{*bc*`-hF`z#z1{+gx}zSrC*o`nX!4?&dnS;blaim zaluDXr{@Zo>0U?z1ZVuh@hHAMG?TNB6K~*_tFwrQz{0d)3c^N<^+N`MF-J)|{^UG| zuh}>*u#e(I>H0u4hPE=%T-RLPP8Ohr3AsD@U|AC>p~FU zcbEwO9~@khN{Qu!2^WnBB36e{7xam1S5pwpmHdmr@i5l~WWNH*bgRM@=1^v#E~G=2 zCEImsu!L&NLQ%0_7;Z9UgBvv#wQ1cy6+2QBdQ_8GY#W}3cq#7i>hS2ZRH3CtZ9Oin z^Hx#+kley;eIf866vb@G#S*}7Ly106EeMg=##wFFK+GYgkfcI@wl?-4ra5VuEz2%d zfHUwKGcJEqUyV#jU>&E!I}>y1u4zqxFuWTx&n;OFe5jCb)C_W28i z$UVYZ(U`9V@UZgBvHbEoV#j8u8)7PjZpLF9zcW%j-e`@#pl!5wK_X+gRFBKri`s-y zz7lY`Dq3>b6gai)TTeX&78?xoBrLUGd~!IT)y1*b>kE zC#q`-aW3w5M}^Rw`K<6V=v@Ny_h!n_>7u&b;Egb%LEnRI;tdo5lNcNUZmM^7YWZU3<-ToE;mn%@(JpsHp>Ka>-;AlT4I2vR1bAU}x{ z6oN_!v7GjNrO7yrWFLgC@Ni@KGVbTU3mw-B=0q{%uLc9i(jvwK!D>K*KME3DAWwDx zr{jnklE7(yNDkzJ=QtdL(MzxW=U7BRPAx`QX?O*YD(PR|bOKf*@X@!U)darobfKF3 z=e3!}obc3?*Nr^#fQFnv@>38^N2pIu+pf1uBVs0rg*2l^q?xt|>;~-5TN9J_22Zp9 z?iA%=a@OuC0nr|jmHvQYHW5nLEr;X{8n+&(|1G||MrBOQTGotz@w8<%`Qe$h9g=dS$ohHx}*d!VW}`Cwoity&2DVCfkbS^xI59tmqU5%}fX)OKfw z1v>p_Hk`&C=xfj`!UJ)XJm)u>9t?m~luc|SkP;dAiI{>m=|PY+h&J**-|?U7{};Jn z6^!NN;$xX7zBBXavCwQ^z*bLC1^z(1ZSZ*6ywkV?$<9i599m&9%Q(+Y`CU@bDo`C> zsl*Y^PxdOeeNd^NV+fT35I$5tMCIIHtjSrBEe_)G{EmNI_yF`R!urs$Y6kz#SWzA#mUZ*B%5bmAEpbs3hU%!3pv{N?^e!)oP^ce}^0|IuPR%6>vW zBp!iy?yrF!Z8L2q%qFORono+a=#ju*CEUX4j;eo15_`M$8@karbga;V~(9<;wD>cc)iB`hHMf%7#l2t4W~QY z>~CIT`XhFLf&nZw+Y*ubz`5dVyPt5%>7#7y{fxieWb@pFrWf`!=J!Y#ueLXxpa@}k zR80sEY~0;={cUth0QU1HAtl{`0A#UMt$qo?<~va0bSohwkArIoZ|8 zHNc-fvW?@tUAI+8RAaWBnEI3^KF^)94dm{;@k$5Uqh6 zig6_6D8ZUnYh;lwAY63&v16z5-|%6&J~|&2F0P+ChHo=P zyJW+I;@*3w4@b?TjW@010$dVv^$DckLR6$S(?~$9fsTd#2~faH!O%aFEtp6iG%bt- zlaNTE^59W!HoI!XDAtay?8Y|iou!fz}vDoR&GtuZ7 zhi}3H&%N*#L~9Y>LhHXaS1P1G19euve>eRE=#Rx(ZE2}iTPzj`nOP8kSS4KqAxAbl z*<{?*KLUmH<|fk@lfH%fB8uE&iqaY)(i7~%#L|O65lsT-ifKgHyR{Z~jU*+HU=A8r zuk;biYfZJSPz$lU@V*tYY;_Iqk;@2a88C@Ki*&#WK%0hF#_wUZAUi6>x9MOnTlaNf z8NLN^b2nMkAg1tvZw%S}iEd*C92Gp;xkup%9vnEXW*o3jyv0=`0T1|32H&wv*uN>L z1$zoRaypr}(#c(8g7Y_B(f75cr``o1*XRDfYx@Z z>7=Fx{D`=?2{135-k*RuQ^0HS!?d{nA*GGix-9U-Q8`@==9@h=0yB)i3_l2Iz&OL=V1?d4@UF}PrPyEg#KbZP!dPL98d(wG!ZVrTV=5?rXSMjcpb_i}>b>nd z_v9%WNcX(%tE&3H2mP}8Ywy9(dAtymkPM|m*$(H?D_G0iltmO9><{CE$XY-GEI!ks z8F2$!n9bNLF_jyauzpFN1sg!SIBc+9v`Tz&1<5KM0{Czi0qtZlz<_9hpY?UV+cA>> zRL9~4?u2Yb)c-_1C=V|od7xWE4cge3h-3ATsSLdhl0%V#BSHyNA1oY+B{)Y6S}bwm z#x+F279|x-Earl~l$6%%i1Cg`eO+oFjhl9E`3QX;eyT7xSIEqY4?G~w3bBF{(cwsk zNa%BOyVCa+t8c!?uY^@KqJCF>m4*CSt-rezozJkF;SQgiJ3d!V7qKlA;#1m2bR&Qh zTy7`6?(JB=Q%pxk`xSbYdf8*}c;Avz6Iw+RnYB%{fYJ@nvx$I40UCx+qANaxp3racohNWhF|D^yj#R3u*c0@k4AMt+lE?bE+d9=u_HoH z(TBT@PM_uh(e|st^VmyUw5Ead!RCl4>=Y)E;?bl3E$Hhhm0)`f*{fwK?{71Z5-oPJ zKccd9IqEOGTZ~5o0M*2@NVt?zrWdA_loiWlV*uU+qH!@U&K}LMP_&t&v*PoTh87$Ms{b5?{KO9w^qZbuTS78^C zz(Dgh5Qd#ej?l!n+#QtA#mCVS${#|;Q@l`|rIG#&$@@qh5B;IDnY4H8{Qsk%3Ov+|8ZUHF3KkC$Pzpc*RemH!wv=di1=hMP+K;b z64sM!CbuzD+i*UrH$eumBURR9_#ie3!2~a7gug+J+sHjZC#@tQO)3av0>A4EfwPj| zG6F7S?FgKXkSsZ;-)2nvFXZ&|`gKhH_5Uqf50$priC+rUv$I1I z5V#CQJTUo=QvALnjGB_P;*tqc*3%A)=?t0b;4hGak@?kFJ6wViIYPgWa4fA_4MA;S zkP5%-g8c=jmSI9uCsRX&P{e&C4x)3=$sWD|)_-q3$!oHSaq$@}0QA{L+vSf9gsQ$#+9xgybFo!t* zPkA9_U{o?>@o6JzF7=?z5pc)}H|kUDvR=(w2=su;>~uQ)0gF&mb(IU-bm#Dm$ZG32 z7s;)Tb>FD#P$tJRkiNwm$3x((Jh^lKNWz>!djKz)xySJSLNH;_rK_~WS{Q8>Z*s(G9A>A?hCOT>Y5ZvDaOM*Vfw1sMP(pgHU6 ziCQQS0{eEC!~edkBT#wpe{a)zb4mUT&YAoL`=0G0ZovQl?V|g!6+(5r?Rv#feAD%} z?(IY2Ro1yioq}END>P}4~n-wwEx!b zVJPMMx;?BCN1_0IcHy_4oo-t(m{4Wrs7?7d}IjqVn%zKz1t}Q7J^Yx@XW6=-(=nxN$}FQz;)$@A zckgL^=~QNBlmfYG681yPIJ&wL*%{pGqESbT)D>uT$kUM-A8o-YptrufEc-dPyqu|4 z=V^#uUPcZ)IOA%EI$nybUb*SX?avE;gy4H7rKCMsU92M9@~+9rPfr4GTvU)~U`tOD zkoxiwAvu#~5xOS|%td64rNI&l4IRwYKoJf~39h%^m(l`G+F*?p0AaUH?-3?vNsDwx zZXGR*t>Vd_$9cf4I`f=?(&>MZ@h?(VkSa%N9WZPV^N>pb(#}As1R2k8DQ$!ve~)qN z^sFZ^K0&|KSKfL1+ydNF(K!y!$E9=D{)tT4b62o@S1_6>|H1UF#;nJI{)30fO;4@c_CH%mM}v2H3U_(R8JIv6A9xk6fy59b!adedtO&Ug=^M2of)pau zEmQX`J%i-j>r=|{GsPvK!y#=!Z&|*+FPSX@+iWBmFXRj*^!!{KIN-QpQ{9M@EBP0i zCm4?FdORHTXrEHj2ZC%!57sX>LjhiaC_t3Sp}Q1CP!j=Fa0+imW&{xCiuR%CzZ}qK zt?naHbcnSo8&D@MU5ZCC5J)qTct@FcS9TND`vn2+EE8tlBo|;r!%Sh_D$En;I z9&l&{+FGFHpa(l9O&RkAh5~q$v$qDgC-QHhiwkmm4nVFyM!JI}D zrRd1Hwqb6>!tI7>H^Q3eEkl>h7+@t6{vqa(A+6t( z?N3XYP&z0I+(1n`c77lvDkLkHg+-T_0ytB9A z%%O9G50uib_eWEi@cUiq(gVS0?SY^k^1kLZDX%a1vRC;cQJ?(+5>-Te3vvE+yPS@4 z+~0`x9HR8q-{+Vu5>A9n7DI$PsO%TZ*?40AiT#QA{T_eKzjg^LAahAyIzBORd}%`( zY=_GNe%2mkN&Wowl(q^(GVNKIg`1)U&U2&;O_4-Z?z&Kwqo4NU%?mfqZjuDfT*( z9OT>Et4DvB{NtO8xB><;jL&M{?w1pm5iQ_Gw@N|;N)<&KWMOue_%*{en+9KfG(S}A z7m~?eoUNEuT$StT+m;WD$~g(GvW06@m1`RM3i|jf)NXvhX(i1N*vzE?ZXREONrR4m z%N1Z?9gyDGfTW3LixneNDy6dfvM}+5y_rNjlP>5p<1>0L9LpF8Lkq)yS=Rv$0wwTN zn|M*b%ygl5sgO1+g?u49AsiFgf~UsNsWoa$lqthhri@i4Y|XS<89n0jPP!2!Y#`Xs z?f!riGW-1M8uk&MMmVq;FfY#@(1i64y*5t91u)&xFx*5q;^5rmG==*9Wn=MV?@}^8 z7Bvd@#^Q+zfI{vq7|z?UQ;}Xp{b&5)SfbNO#KQivJL+0`WWr{fcx1^Hb$izpsa-|5 z;whEStQ%{j49|~~IMK1~FjN%KX>`TsrcXO!rNJ`*$G!SigYjX}Qs5eS5re`T`y6kj z*88aVA7MweUUXLL`(i<_%KPN$&V%e{)|viN{|ZGw05on4COuZq7W$^dtMs zH&iAkD{nB7*~H?97+%uuoiwIFFjG1Ailgw5i<;7hk2@xSafCmU7-&@EGf0-_5O@a!_ktNyI=_93fS}oWFAcmn zf|w4AmzyQIui}b2$uY;SXnrB+P>6*QjYrDWV& z6dnas)=`jV-zQ8k{-wG~_5P&Y-pJm(Ur+2mxnGaJv9K?E z;_G)uQn39YXIv_BC7LRY`4?}y>NRzuK5=+7Q^i~W&v=z|{eq-x8d0q$6lJhF z4k)WgjXkAMV2zP7`mgXadaQr9Ss!B zUcULmpT*oeYWoN#;1WjVAroALoIm}uHUZ0&Jhhem6fBuR&`2qw*l948NglY|XmFKh z`7zyq6aOs-4u28Tr|{jWca82lf=#P13YednDW1W{GE3vQGIf}N3X9XmaG_@cV z+ARE8wB})fq0F*RT15Axb^wQmAYsXx$FRH7D1ZcP4y=s`@uf);3gHW zBz8SvBE_;}d;%@mO*jdS1lqWnk_~L^P|mmXHu8`=F^#66*6W|S>rw`slKJl-HuQB* z>|dPz&~0;)fh?)vmd+aBcp$(kTNtbnke9JP@@qK=WRvO$`y6DIPdx|a4Kz4h8ZgCT zT|=_Q^U&4pV7DFc`S1|H_Yg859N~FYKAXc|Y^Og1u3<#%px=&gds_Ix)+P+;CqT?W zTKb2m``TDClSz)n6Nz{8DbA1E>FIqXl)UNmP03K~@QK4?A^qTq!!daUeTcP-dZ}k4 z9zcO>SH|`7fYGbXL9Rd*(@Ru}F_)9-Htx$9cUY5|%M(Znis_?T9di?r*g9SaQX@t> z9drXUH|RC^k2qEk_>HgLh9~xFzaOqZBw#O)cT(q;de-X@SKtbvo*Pc?%Qnf5V9YGm z={eUJqIQ223uVkTJ3IWLw>q%6|Gk=l8(brN)CO;AnjhQ;4eN4_Mj-(7^(`In7b(dJ zFzSiwZyEV5QScGrYcOA#j@hMG;a7C%WKNmRiP5%>h-bv>x6H9arKrU2rjac0Jrk~( zE12`O7Q23{9->tj$q8Wjpjenjw$&BWsu%-Rk?p^(!Q`=3)kWx<86<1E0~;$Vk2w5W z)rowk1ACmTOw~pG^NY8MOBx8-d$b82a(lOF9d?wVHnE-;ZxiQ`tZ1(`!58mZZR)M5 z+IaRT9yf^ElrID%!M-3lW3&7opbo;!rLzq(ysCKve3_BHPe9@DxkqJ0kcj@~vQhPy zqld_r8i%~nO9teLwSyO4eQUhBOqA1F-}8Z0{}_(DOf>c|`K5I1;(*ZgeaqGO zt*^eoV`->Grn;}7e)S}hd*(`c9?u7_Wd%Qr@G~=Na=92ml<6_f*Hs%OFE) zIw)L0bE{+pzNgeBjwe0HZ==^TsTeST+!{2ox%9bW*ptUniUhL(uRl8L3;MzyUnCGo z0F+Clfy(4`C6k4e?qhO24+NTtq^^6tMa|=MhkS534Nt(O#urJzo6X@IoKwSj>{Sk$ zo%%-1C|+IJOo@EJTs+vJV*M-;yArw& zRXa>V3u(L8pd(vTj;fN++Cd3!z>y)^One6GE6gO=AA9Sy1pZx;&lom^t#bwZ#ZH>w z*MDuQpm-b>h5I5gU-zO61PBu@7U-nm|7^n^BwiBc71&N!tOxrI^Qw;}KWq~o*>%EE zBZ@9#S4kdm=yltu$;2;vP}Cjfc9@c$e*YLg_2}z~=&K|>5D@qwHJ?Ng(iwTUuvl#x z%`1;PZ2_&f>Gs=Qj|+Fr6%7h7DH}hnMZ8Ek@zZbj;#$Ca6rhgy!#;}ksWMYi`vj#R zVicPV<`;vUmIqu;6)xe8rrl^FReB)mTGqrvF1z0?YOLd-HQ*aSil6oZyhZc9?j5S0 zcRc>cW9CO6xr!5$Rj9EhFG(y69p?k{R*_Ge9T_QNrZ@2@%cF?Kbu3OK{X?oh0?EYi zu@BUuLvSq74+Lh~-Wp^WiGT>BZR)vN?UKBVZ+I4O&>W681WTk0(`$>(-X&a?23(6K z*><81@1m)xOB;P7hII*^%ZeX^ZFFG~?gkPUgtyRmQUa6JXuU{WCr%C~Tzz^Ycn-TI^2-D+09S;Q3<2&dd zzb5?em$)8iE5Rh?+k7T?D{Q(V{Hy+-*6Qn++S#lR8m zrq6cm>d7@%QK#-$FS=&U+B(hvpjq#rgn6%<;{Zg#0j?0O*~Qm8hSHE++THfo>@|j0 zq$$}t?+^`2|Kg_9qA=E@f9%mGQJ!Yhviwt2cfIOh(~h|GQ9Y!`i1Lt%dV~46na|Y5 zKlYHfrssUoX}>2pk!;?QiV&m-Xa73p2(ccS6XX!(c<2oPy^ce&-rzeOMzp3b-|?Cg zPB4l9_?nK2dfske;YvMR-C|F`=5M4D(KsLRD17pV9#==so~}+;8ri8O|AHA!h;R;m z?TMJ*>C&Z%WOS6mZr`*Zqq#Iaw*Xjxjv|r9Y@NeJ17&4zPWHC7N>rhp|sskAk zam<<#!z@VBcp!|v3o ztslS+9}339qLQv<6GtW|CMJ(0aO?VI%PuYc5Oq7j!!q-E1Nos5X@y)Xz#th5*{tAr z8x9$yuG!-%Yzli^{Xg>gL%G~bFKG5zn{C#vU2v&4zmU%#%;#T%k8?KLoZZ!b^GDaX zUvw55jm4U??Q-2I|F@mbHt=U!ALYeo8;gtTO53UKsn46a239FA4B5Eir&@Vp5oXmRQw z3;RPIN^B5uR94MuNyyT2J6_aMAzyPWrRe$%1p4$Krs!8#y&`0}dt@#hItn^K6Q~&U z19^rJ#+c}9BRhE^GHANR3z3U$Vm}s0M`!xHoW+J7O+B58_)t!PS{;7D zOFR2+N}?R?lrq?NI1*)`pQQ$Ys7@;}jz=&72_l+u(?I7AG)udCSF##Pp`@Bb#q#jy z?E@@39SRg0q!@_>h|}7Rk2~fWwJA`q?3`!U(kkuh>3`Wnvvl9?zU{pyU>v#W2%vHI zA8kU|Y#wPMiw~|`ZEc?$%=NezJrqu4rhBR4nq^iZ=)0uuYj>}`sjuydzhz6^wQVKH zj?$Zl_v?WWJdDGBe;6;JfWH556FY3*7a}CJP4ofU)k83l4b*PPgM#FW0I{xXqhd%0 zx2v~$zo#g}fpIR9FTnc?&$HRan4U=J?8#GmbX|9==VE!&T!Q@*YOx)CI83wZ!#!x` zioRAalK6f)&D}lvfJL_v|JgCv0;B@*Z6qBH7(+Amn1sE+_nCIlGbi}5o`vZG=FxbE=0L(me$T>RJKFv1|)3oO2sSsS=Z{8s97LN;1? zn~g;Rg#l&A;fynD!zH5gfNM1{hWHhJLazbXkm+AQT@kdE zO_FY-45ZD0AgM&sU?s=zjC#C2Ps=jM#rTeCXuPO7?KTn3dVk2~n)hX*qH1&DLNc9p zIv2+64%@8l4yVgjO%$qj7a-p}PMeY0^nzM;XpaK=CBE%@(Eit2oPhJ4|%bXx7zM- z*!>7^M(hz=6et=FhsY)zi=fIjCtR_X za5-(o9N0ZA==0S+7Id9Z!Vhj`bc?88nt3U*PDW)nwd4>_+W^-!-4|Gb}jnvV??uPme^rIiq z7_>z=97UAsL}GTk3yHx2q~~M~_VP4}VWWVPh-Y-Nh?nFZ@b}P@yi4*skcr@XV1om} zK1?yBHn(BoLi++dJPNd~xD(7za}hHHIG;3y(JukOft4owIr297n?G?1z>$X{k$UlMD)*);D@*JDlq4Z5O@7=YtZt|y%-Sanr$^VYtm+GGMT=f&HER*}ns zsqEj>HtFGg{@>U>oGq=^b+z$Z;#+duS})#4HH>Vs z5HluDysNR?xFA+1PTaO{a(=9o$&|+CC->cUV&c-u%7yDH8~iu58he!8yjIz(oes+0 z;=ApV%Li{&1{cr|1Z6@Fa`xa!r8f-4NE{s23;6(W_)@x9g?@Pz9Oe50`FsG6*BSfv z8F;{U2jd?3RJgN%N2Sm3X?X_}SM{V(uN&|Mw0tNx#ap5I-O6VO9{@mVAP@`K8d{0+ zsl`WOGT<#DIuQC`0DBfO(9p(6{sg?h*I%2=?)Ur8W%qw2+06Kpm4gqyb~cku`X}-y zzbdax9L)Fc`6Yan%;GEI`rPEauFpR+F`u~k2R}bQpExm}#ru=Lrmio2c79$z0ktXm z4E)~jLl;E!^Q^SE;aHLyHE9Ns`FWtPMB+^Y@@O5%9ftVo<2Fyi6E<-!xC7dUG+$Kw zP}tYou)q3$n?HT`JsHO<5^vrAKWx50`X$(ogT22ACX9ej`0oDf2S4ch`SLgWV?`ZN zNP0*#Am4APCuyuk6m-3jw^6?UX>7)Z^L2ps1XLj9Ep~4_lZ}b9eEzjs?PRrj5?lyh ziZJq|W3kVw7qOa&_kKB+&BVpoSaxc1(m8kf&eLFY-NR0g?g~d(9Ns@ z|2l#BG6oF>Gm_|e8;&JSM=ALAP2Nv#Z zI9!vXIoH_y@!9eZw-)l1nK$JowVLZ6`@g_XL9^1O5`RTm3r3nU2pilceU`!aLG`kT z{SDBz(6gYE&|!>d!WLID>vuOQH)jfy$L1=C>~No&Hg8L%TW#B&t$lYte0Lq@0@GZF z2VOQ)m`bP4*Jf@)9+XmfuHDAP`aN%!k){20wkbY~RYo-CY0N0b^+M@_#fq*2SBt%s zZpiS9mwg7ps;&g%Ex2pJke!-~BqNbzyqWP$j90S-!zd(=emFfENQ9APvycmlw~z@J zE4Qq49*jj&OG`;TX0IW&X1)NJwPdRIN9lm+4QJ1f7Z%=pkS=~!-!SKsLckwkI(!!qo79>(q0*1!o3VWQWVLa3y?*y;_KNgTY`1Yj z;1(PcNN<&|-}Bmg>hNFL?5eqhne)8(z+j)0R^mY_zTK;8a0UKU=qqegm}wI9U30}( zmFJJCoEF}!oO_z;k*+?8``&-%(LfpZ z+x~b84CmR93pQ=YDU#lc*fm2K$1zCn%-=d9=5eU2WIK{5a&NSyK}hNE2LsA?UlFgJ zc}#yJ^RaWOv&ZR(SZJJygb;$^NCFz4$pwPBTrd!jr>9{I>Q_EW)W;yg za;HA#dbADOY@xlsA4u#wH4RF7-)Yp|^8Sg<_mvE-z5IZPH>7f8he_vfj%-UoIFuW^ z1FsV+C3XiZOYP6Jm-ov6Z?LTl_*p{3iT-ZDZ%DEqgFM@kG3}RzNNj$#_Fn2SnHwiQ zLKLK1Mn;gL4CMf`Yxt#!!xTy*tW_0~YNA)6P=-=j`g6%h3@GSimRlN}slMqT0R?hV zKxMJQ;O}*&^J2)o=X}7Ntp&~_S*sU0Vj?N8KlR1c)fQ50=<97H80tSZQW1aL`PTqA zSoiwr$m;jP=Cultp}%&<{m_$MtSzr9Uv?FLGu#fy4*%wsI01i3Z(lf!)^DUWy&n)d z6NXS@ym~`TYOh}Gw4w8*e&@2Z@n?Ylq3|%Ut78o02=@m;`mt8vgTqvU@ExOCKyy{+ zX+nhm*uF)cJ6|4M@aC%vr7JB)eVGfT@l4TgXp4wn%SHWRU&80X@{8()&ttRij^~|o z`SFEIz|6V?$gJ@N-Shz^AneV@T@C?_D1wStyPS{En_&h%FMToT-zc#UMX5hA`nF-o zd_ixa{BbZn8FmDR1VpTYO;tAIT~3(W+!w^sN(i zGgT=3pY?j`C{S{a9!=Hje}W6}7AWKa5c`EMgvN~g?8M=NW;!=hE9|RZtf!aOmX_N0 z982?kIyY@1*y2r$r?GscXbZ{URGEbq_7Gw*Z-$NW4rIQ4`N(TVI>-+GgEISVlYkDe zj?mK%s>~+%V+aoo7{OuB#|Nlqp&-OS86~70)Eh`j0Im?<)MaoDtav2@KS0bD_6Ot% z!nh*Jnqr3z4h@jtC=`W*m#i8ns)=gAz`+JZ^IuaJA2@pS?qkR9R?iCyZ}NKI!yA3o+kzs96kC0 zS-|VECxB~h74P-tw#s|OD{^;lE6<-j5!+emuA6Qi#A-hXK9b>2oIl=r@B{Y;BD z`|n($9Y#8C!?-`}J?D$wQkh#Q-*aNp89B1bBk`+lTNZKc01i9Ixb_?)y}hK>YY~tq<1(cjP;ydRH#eHVy>C!@@a?0%`@8IB7sg z)9r2u?uQtktA7ie{dePcz;;o;YEn7He}FR zIK!8|9Pt;R!HfAxt`froMLyRP)(|!+bS%YDIGWdCKC&LVCZ2cN6H~gwk#WpCIrZc> z;Xi<*jr<26NZ-}o__{;K4IbQ4d1C5`N2qrJl$`v#djsuIXD{o{K(<25kj<)CQ zO7P{-r9#cR0K~{fQ>;(){;$f~u38_+I8bZC?y-R=(Ybr#%->0cPru?{%0jP>++Ftb zAW6}Hdby60ki=othktDqhI{oG)@+0zwj6`8qp7J^tS8l2W-v=gKS!99|16U}bSRxU zbTl5Hn!-cikmO(ABTJZnCBHwEnUdd6#rtDG8Z^*==!<3u^+3gi4SsK002yJ_)lIXa zzM-m``oLZU)q0mIe-Owij(&NAG~w}I)i7*P)!X>HGnPgS&PDyP*@V7;C_C871TuE9 z#stkY^b!Q7(!!`M0wQCQ83M~BU6LwQaZp1vn(L;>Br+Z^dDEU(x_t&RYbM?@{X<{T zw6He-|D1p~EPlczkZE=)-f>5@C6DJp4`9$7r+a^m`^2qoPdu6mBThOIPDRm6{eJpi z;(mA#zGCDN(4-g*$ZH1tx~PnYmP^`}0KQ7~1&;(WYCH)juhY$Xgebm~gu5H~y?BXB)4cXV*6w!LrePDwOu(Yxc*b$c8O=L1r#q1Lhhdno zBL|e*;qt))7->dzBNq=jXKQvOCW#kliwQ^4b_Y5Lz_kIFFRptNo`T)`gTmwRx;(nq zjYZ&G2kLhEup6l$yv`$<(0q=^Z5dnAaCtSC*Y5Tvf&otin@}=hL&97X6t_F{P|{U# zEx`6-OCpnPJQQ`?{0`VUbYSx#myk1X^tem^6zm-SP|g$a_hm}{ zBCUlKH~yVE_QD+#5u(;^|IQp=~MqK);Hq2u)Si@G^@gZ zoso%vMQkRKIBXa*z26+&oO#IafBUp(PA81RiNtj8;rus35BbOaZwn82ZI)x9oFNEX z7FG}0pn`^R86`S#jpu-P`-&SDFEvC&%Xv^wkS?~GM1sI>`R zxFbG_bBu_$$W6yN#2{e?0ZLa{2+Xm*d?H3N<+VyW^&igQu#oWyG4X8g`{m5aN~Zj+ zXv()*Xcu~)x3ZG-bvVSlbA#7b`WxxV2mdxo%TNVcFd3*)F6Y5VLOx+-FJeFF*A6LL z>7g0yCFP~T6>%ZmbX;;Y(}{F0reD@$x%B6=#d0#U`e-FPHWrMh(n|RoP-uBSqO?37 z0y>P2J{og}Lhe|><@N`ob92$4-|b3xJmIL(DCjUF17FkYd|Jhc76_NvD4$mFi8AZb zQ~_N%WXGXT>j->x>k`HSKG_ZM2H+K;;1ftTzr51h1P=pf7_cu01-`t#jyDKyG_&)A zF`+$(IGMH;og?_)#r_%5FTbcL)u|T284iBUN@k?& zLbwbWRMue8Tg%P|;K+dgD8H+y&dC<6OEro$-}~h&pPN1VVygw!E##PMwgwZ9|MzSZ zm@RyXzEk>g)*V6L)u8WM1Ogn<<`_0UG!C#0!RwB41^8LCP(CPJ3|Ln#%z>*hBHjig z)=ex!m$0B`lIdhdU${xlBrO~ct9NTd!}&1)^)8e~llcPv^2t%e3oDIb27l@u^_*CP zTm3~HXG_KtqStnh3nDYg)_jexa|xpEz;2QbACAMaLH8@P}Q#irblW zd8XEO{6hVBQ)>O?Q}3V3zcw`raVqR{Bc{+3P6T~gN<)&szHE#6wuUuA-=G|%2SgM> zn<3V?d&qC0e-D)q)hz zb7OQNi7Nhj9qgu1kVER8X0@o_B5w^^Dprk<2uAfX)apfO(-?eg1gFy6KJ9a zVVR3OE2}c`89-wl!bSALp@@NOZfsBsbf*uYYxVZ*d5MXPK4YHc zfZX{~Bg{Z5^By273!ypmn4-#)XFEo;PE1P`0I#qd_;ryZ50d3J35w~VTSN=kkrWeY zg*R)LYkbcq5k;yEGm%I@(agR^eAXu7jiC(WjqKgEt#mM(%M2QCC(Lda8#QP+jG$2iPu<>%fi zd{+wY*RqzERgv(`EL2e2)j1orhZ zw3fuxLSPA00aP;MY>;k@;OF=X;YgYvfPX-hE5xQc@y@|u(QD2n9U~Fw3^|O61mKZ} z=+Fcb@8AqH6te{|uFvFdL-<70WwRy6Qo;*__R8$op_7M7a}|%r?h=q*G;a!M{beE2 zv$13}+WUX81Nn7-N*c*5R2wmu3&3XXvW4|j)B)wMFX-32xxmt7>ChMgmM512Ij`mq z!W9fYYf(5&c~gLu(SjZ@aml5nI|DHdIap_zhc))QDnEe5e*uL+dN?3+1JisctBlp* ziV)6=veeN_*-Z%I{>xZL|KmFGy!e--~r-vq{>VcXo9x)hl!U?0Ju zD^@o)5-QY;6E4;JApC5IO}1gem3ixnwuIr`nrr=inka6n2G}ZghM;cM(#1qoI#BKy zJ8ME#$AN#3`qrwB=dEfBb+60`hPrev9JxIaA^HXCgyjzZuU)U?QLm$JVu=t-X+#vU zlq^J1+G=3F17`>WG^6g22z}70zu5bGp1A_&ZQ|=wPfU$jYBYQAH?8g!tBLT|O}#7D zO?G?6;Q`_@mOA?ycB8?*62*xq^*FIXHG`Tph>NA>{2txW?$>v)Pr}!rHk-P#V=zQZ z)+vIxOVaQ-?vgj*_gk}IYyAHXbK4HhQc?8_CK3h(oI#O08?^U4SmH*r&mtJmNB~w0 z2_DHA0DfH5GUZ&UQuz3a`<06MeY9}eES!-5!fhg#XAVaJzpZa5H-dK+PS*;j`}GqG zxrO>QoEflf(}dapUr(+cvNP2mQl@T6r8`{9x?S3MLwxyVIJ6wwI#|VS11nkXDz2J6tDVbtBx{i+@lu8 zqDY?5=)c)jUGE>ZJ6`RsmRL;qzuvDMYXG&;Z$Y(BW&z%-_CXsV480f`R;zb-f$b*7 z>VpeAXaXO&t zn&KNJ-RfxTWsk|WXA3TOa$ z_&eK>ivsDNjtSiWB7QRlz`j_*1z-Y1TS%7i4@;Z9y8{93>slI*z-OYxo5WHv`t}0{ z-fsBCy*^*>=lsUoU)_n9O0rz^5Z5m=NMYP%;47d)5#+d#Xb$@ZUVTSGh&39R}3YtYK_B@of`J_OqoW(omcJg)-; zFzoZWy@5bH5D=?_`{eCEl8GY8oE8tnGMQK)t_6%}CZinSZVJYN_`jXj93pO@%M&|k zMaRP-2xL;;0*n!afd(k0laTVd0GG6l$c#|{frb6{Lgjs)U@#gC?j-H0g0UYr@yYSC zkNY$Bfafsr?D3@L)@At8(}&JSPD*I8VhlbzT7w5118^7s0XwcsM@*`L;Bcv_mXlztQV1Fg}u`67loC`j7Kj46)NTe%~pPUgz=}-1gN1J7y~>s5kZp-*{VxVMRpu@ zUvjY32l2U2IfKqm`F!f-_g)v%G5?${rv^(;L0~TV01IhOe&H)RrfGQ%`yX9ajV7h%3^_hGvSSQQxW^n(mH%9-801z1& zsQT*9{R;B9`+fyks-DJ^x!O99&!^P4R?gZ#Qp}X)nkg(_#rEo|8TR&ny&CeJZ&?>Q ziZyGg7fWAhed2hkbA>s!!qO{KA-6#Yk3std*yIL`deV25nJAUyI9QB~S#J(K)=LLU zV!b@4#6Bz0TZmw+iQZo&64Wm1&|M}(7gFKXk&hO~4xKtQW)esB)WRGzWBC7SnZ6GR z{P3sv21Ogum}GqAF1oZj1_2$80imt~9PBPaY5CYr+$!`V`iibE{OUF`|NBnb#^+ml zx2v}lUg|KFpil8_e<9~d44gF9quki_CUaa58}P-*Mr&pH&0~FYy?yq{sV78teXVP} zY1H25>&wax0lT)ru5Eox3%#z`@Tjo zgtmWs8N!0dT==B9w*C_hscTSl({Gu1)hHD~j^I z-p735P^E>l{aGk=NANHUG!hrW-ZS_HPmzK@6!QNaeVhS)((3PB)Kgk@_EDeruCq!z zSA?$A;+gWyct39&>dZtx#}ZlcMuF?M5cZ%xS#yE8+Rn7G&oS)-`_YOUbwmE6{k+ds z!aWOsGMF%E7gsVRQf6!;6de~Xfw=pS#lH#bJsfqGJJ92dO_~6ZHzxrjBejmW2&Yf; z5C5st`KRb{x@zs;&*$UvtYge7F^3I!3pS)SNzF`TzHUOfh!a|2`Jyryf8;5`Aa9;3 z(9NnLsapuV-Jl;@hMAYnY;1&mk9k934~D`UYG4dnLRXXc^P!9v4(o1ss+r|8-f+Zs z#uK*sXpUV|Q1WP>t_a5dh{W+#THrX+yjp9Vb_vNiEEq1Gtc0TU1?S0zwUi)zpmPpy zjAqQrXu0McFXoEbiBCVbbMCAwY+)m5BoFo znp%2qwGTia1~v=Pp)f}+z%_KifXRqms}<4vC0#xdv#N^Cfg1$U9u$##5r5rq%C@m# zONC9l!!Dvm;8=0~gy?T#KSOzW z1?^RQllq+-zl>PFofa5rtx=|6-Y=oI@=^SW?r=f>@r3^LiCJgAIBQ*80UaUml4C5* zfG6W1OhMWZYS`o3H4R(MX4yEJ!X^2GU*6EJ&97cRJV z720N|aI!z=RDE%&Z@^mIS!daRH;8jvV34dBRu*l0?N>*hb8DX#BipI?hy%(x_FJEj zW4Ae+)%`oEnG6MIaJpH0ENQY?qapj!F2|((EdFY0NW?MOdw^i)m`Hujy3FOueXIcO zqW(_Ce26NdTk&7U zM}y(RxlMI382x_GA=ogwWy&Ru$}rW&nN(rH@w(J*5gHrT@KM4qug6xvOw3M?8em2VH?ai+WjRS{uQ6 zOB!VT^j1YyJ?m3F0;Z$BDyySqNZO82HInVfN&s)RW-c>VACkE(Tl))hzqqkN$X_VN z5pt=kG$vD>HYLBoLq)?8Tm?itQQXA30_`^=q0z-cB;>E8W)GRL8Y7@|IVBp(EA+jN z!s4h=3x`q>EqHFB3y!h|=suNenPDEO z3oO)aNo_VSv@UcpWNIE`?XOE71_7Wi$T#I|j3d;f+a{cMq2Ux)kSd%GtwP{IZ6NxeT$uUKaY*FJ57BVZI%ydvv?UkMVwz$R)H zyL^d_q3%}}fDNqAhpFF3naN|X{*lG(?4GM5vbgPi(_xv;ZGE1Q*n)eN%SqIK?C$;+ zavH(?8FOgY2q5sL_ihp8fN9ryS7(7J=D&M@VBL_ zU|na4IqNAT0^YPg3W}kd}&oEY% zC!GQUBIDSm1;3N3bW@Nq{{klK{6*VYz~RK=N^z5H@m)`s?ls zYNs}`fQOmgKbOtUMF4qU_?2IlGq~HHJv?#p_Fph{BW||h#{05!`>h)v0p>jbX7`3dZsPOs^D?(Km2aoWVsc*rJqimphj)V=TkhA?Z1l}$M+8zo zFg453sWaG!9bf8O8zSO@%GvUMY~G!NnkB1I{7(<0D=K>Ll9Xp+u5uBt(C~3&@lX=oHu16S1fs2nGXsG?sv$3^Ex7 z674R$Tden6-%ma^1Vx0|=Hj(aOI$1!;q`hD^Tki_yojtgosi$2oQn8J=U43=`zDx#m zfOvn%$9qCnM0_^XMX`ZPqerM&syt47&hu+Dp z-DS>0274@?jB?p{`N6f?kz{(786rB}Q5*I(i|>72bTQjvutC&uVidP< zPGn*nnN0&QXFz%*zbzjnpg7{eC`x{@+urxx1(&Ir08kj8bW9JwzuQrBND$;9!)%w~ zC}7{!OAVd^nEMzp%A;P`jSy-C)S6U_#q2{e6JY`}H7vJ6$PdG9mNJR@5ry4~6C z`Sac6``6B$JNKst51u=CP>$JEd3GlyXHQE(Nh;~No}i`2$&Ca+$87MPK{nfBwYX(g z*?8z>aFKr5L!N+GWNx`c&~Pk@z#koc%kT6q&xkjDLCs(>@@|jk-2p^l{B|H34g9vt z9k}=2jY~B(U)9*6R@!`tazWebarE>UY!mcns={nVd6etNl2t8*dASa>z6v5lnh9)^ zz)Yat8F;qx4OY-vt%M|l7Y!9Z~Z^CcPat81d=EMmO zi9EdE&)bqcDbZYGa$a0>ZUAK!>kW_2JZ3`;bAmHs9Mn=r_<1@uijf`j zptDxPqEl;*doptyR;XbZ;5rOj`VNU096OnU4_u|xJR_&Z6@`Pm-VZBUYroz*yO4;@ zB{RNs&GbFiK`1(qls`&uG?hNLcO{MQ=aODeu2x&)DK|_*0P95N;n{vN03(p69P5WS znpOW0p7YkJERV7ua8JyPj?PTDQ?nOHr`ST`9bi2pwl0x$kI$Ce1|lO(Q@P}m z7M=^t6H8t+4^9-bS+OJF5}F1f7mh%TtZE2l#2V2Jc`RLI>u`*>BB>R4f}y}#O9^)f zdTu2WtyJ{N8vGrR{{~u(TB3X50_!55qU!RY)wAGvTjVLVDkFwbSrc4}WQCZqggwBK zmIMsl17{v6=Z7u;;#84PlVl|l-DNt5_6Y++260{8u_mdZC#I>xs}%ekG1SfF4S053 z=?;Clo&f0k(C01eq$egvHHk?0oeYG>xhsaDrYTAP>yXizPGNGv9}$4f{Vwd`@cWAXDMHY&bwj+b-^?}>L#&V00iWk91lMmXgeo7D1( zb|GvSVNB;-A(|EiF_jN{!s7{E9A6NH@zH2OFKl>yK5wV@wSYTRh_CR&O6D_6-(q+A zkV@juZOLLnjMfg-1o9S^^3{6CoJbY`98;*5=H|u@hCTzgq;3XWYTTLW#)6e`J>$d& zSEi-;oOVyZulYHr=yQBo@C;=x+*!n?--U?u5ho05Gcb;p0C#8rPzR2TMYuU?E-WYH z0>!HCGaJ=<5cUCtsUt{EM$a`%E(N0q5to5;jE~!KZTo$qlPo*4b2axPwOC9K#RC(w zz0KLlw!;yOIQ1U|)Vjw{6XBP>6lk;>c^xryVF3t3yY2waw`Oz9?{O&s)WQh9w5hvX zh<_{0Pxz9?aht6eb;n}2PEFk!d%_)tGifnqw7KY`{$WZH+`tF4jK91I0jTvQF<4JJRX z+2t3QTlm;Pr0?b?62SFeky!zM)C#QOv~J5lnU-kRx|?g=Zf`@q;#=t-EnnMaTdcI? zjW0+qV&?y~^wwXL&Xr3qN+V967o_iB-=C1C!D~vt*ca>1^ZCPv`~P2*;@9`@#82ct zE%}R!7JsooFa8_lFR-Cd(Rl+*1-h+voty;BMBOgezNB-_qH`WQ^3sh{3Nw!ZXCB0Y z!!J_#BHsYjI@9=`n)e==nK|N}4;?ymeNFiNc>Jk&{MGa4`MdM;p~L9+zTaHG-VyD&K1PHvzT zdZ*KFUmx8++Uc~GIi2iRuR<^tqKWgQLc4ZZ1yd_WD)55fhv01{Z9sX%up=B5wzb8k zvr=s!&(c4hy#Jni?my{rHMEE;J?fu()trAc?TTm(SMN=F%*YqTQcNGq{mzn+NEpZl z>uR`M$&f3!6bdf|TnKRnsvxfVLq;;v3i-#waD7mG@-V-DqkV^zd2pr2mV5)fcluHN zvBGusUg0tQ(bHY_A9%cNYjTmeq&GOyGH?$n5N1}}?K*J-O>o|-=M#~>J`bGn^)*N2 zz3{AoqaIx#fF0AOIuIxsY?{YvUtjj(-gpo=AWO)*aii_zK}sJV3ci3&DUKG-DaVy<45K9B|I5ZMwa-YHCi1=>rNwCiA*#M;Doz%x5@i!tkQ zppPIgF3jC7<;Bmox{vxDp4sFr)3cty_=J)QZ=YL$ROs;wAHu7pJfP}SdxG>qV$FR) z_8N5$$+3o{gUmH)0XBiQCpC~>?HZ-mS~Z=?uC}`7%F3gDn|2NIzLiU-Cwf;YvP8>E*e0l)xLEp`LsnuWLQGw!|D*mr#tf3I_9pK;%P z21MvS-?MeTsXg^Z=?3e@^znymG)!K%CJXZcmQg4Pu8;1|QV=1{)SG-y>fnf^JPwJ2 zY!|c@N+N1N`i8r;<h##?jeOqaK(&D!SmF zN;wRDu0#(&{9kKo6Nd|h!xK1IsXw_qsB-~cvoC$&dL=}J^j4udf-vpPMZCjoRIb8E z9ZSoP@@!VX#(Pq@1k(>qCDQa0@Wvv(Ad($gZ)o?izU*}OY5|Qr2WkGP(fp&;te3&% zmZhV;`lqlz6I&|)&D;n)uTO*k?zL{WT2pVsX@dsf?ga{9?>^UC`A9ZT;? zOhaDIYTb8CKY8@>((-cm>{CTGMt>^4jxs&a`@)`GmWo;;v_j(nhKO#7P~AhhWt9!P zumk!khxpp`ljbij-Lbw7+{ME)Kb>_rpvkg(o|<}c`t!x7&UTlVmulyimL6_CjAA(# z){&EH4cfdh+E&U729@?G6pnJz%N`!%4WjA-jTpXim>Xk=fv-}@0&kP5=oWJJbq3n{ zJ%!4#%G?~BeT2&h*b)=Tp|^8$>%mAAm3I$5ayDppR2M3(a-%ReR|p!}fDxaaOg$X{ z&bASottD~Unx~331Nlxe#B8BP78HZ?tQG`T{ z3DT%DIh49Ae!dh&4nnx@FgUe~hgt4@L9Mo5Pv(sa#%MBj==FbDbgFB=`cueXcs4qp zMc7?A!$+;S_)&#o^0{)n)GEcxv5U3UmX|B@GwzG_ZHjm#2Rv#i5>Rw+x2X@Xr3 zk|Qt+M`aAN0lrv-mfAJ79lhgQi17} z=|DjW5XisrM^=0aCreY6q?B~y`TA{h#dpV>DDVWXjGS+Co-6beC(2q!eHVe=tJ z#BAf~Gu;Ayb5YWK_50$>;%V$8^i8DCLBh~0)fgPA>2ZKb3l{`sNPv~VNpk`4KcpF< ziFcM^K|D|}<_n$PJF^cjyp5HiMP0suy{pYgph5kgFGtE&ce?u>}a$ zkd9LY|LjAvniG;W1?VIBv-wK-)3w^W@kW&IpG##jsW~NE8)3@Up(U5k7Ea1v|LN%2 ze7SPp%HjOk(aMNx8-4V{*$-*%dT1P$`z?AY%UuV(Lz;kM-Xn?sMy>YX^$_oZbvhY2 zM#VttyW1Lq$<6tv{PTz-J3_>C1!e#XpS>}rp{HTQ*-EB;;K9)A4+kpK@QPlw(pSIv z!2`X`*7A~B_qCu#-&H0N>Y-XkfhZi30*9aUjwe`mz|MP}Fv>8b~GwT(f;MeQX6n#g7^-r|UzinmFi{$pR6}Dxo?g;va zzM-;ihOCo6AF9`0wQ2>j3r->m=&JI5&9`q(f9k795bpHvbQoBCjs(n8aX;Y{B3M z=nq_jr$wsW-jGzm21*A_6G8f>iGhOUjMxgtlsm?k3%Zp9f&81AlVNE5z`w;{FXBF( zQ;FopT$rEmnZl4@lDZ^XiTqRrvJIR*uupB==8F3-MN@B&7^zb7VbTSFmsU%Urd~^Q znun(H`^D^S04R@q`|Tn%mNKpmllAG>66@yGrY&E>n<1{%$_D(3StJU+(7`1JI~LMc)9JsOP* ztTjIp!si{j$!~jKdafF8JMnk6a3ikVB z0uCN(+yz3n*k967>N)7+V3M>#9luAHpPR+l>==@&MS=%@s)oNI7lLIh9u?%Mo{^Y) zc<&y>ZdHpxoGWoMJykLZF@!uz&FS*rdbd9d}RI@%+GqL-Uk9d>;S97wPe3i5(;h zY3NyBX;II5VT|p+o0L1*@EBC!6@-bjZ49jN0Hfpr0IXK0aT^V)W80`M))5`Vsr-VY z@d}bLJ??cmCf(zH+g*11SSUJcI(_&`OkH!3@NH%`8fliiS$(k-h~5>9g`)aZ zfu4aI=#DYln)^=df5etiQD~4>FvF|%8ymO&_~6uBxH)y=dPeE99F4C5ohc;_5Bz9$ zE`p&UQODc1HIPO85Kgx}`(I-QmK*K$dyk|}rNroU_w{{8fIF7IW*@7wn7)^G$XGjrR)K8?-<6hdgngHNVaJpoIk^0t zi4&7!`QDcm_UUxta-nNpq^r=fXfa_&7fB%k9v$9e!C+hIx;hsw$URrB*Q6CcYwdSn z5F{D!-cTFg4tOEu>klTt@A0{{b5CNc`^V|0B({*<3y5xRXXFNuIK*{MF#^3S(@#y0 z5iHxDvBLp^>xX)Xi-_AHA|v8<;75S%lR42Eb(p232*m(ah7M_XtZvpCXKH5}wbrFe zUVm-;D>zWZYIkLs(51+Hq3hZ4^==mqNZ5;1pZCkRaz0(F25?|VcYuK?>4do7tFrqG zXU-JNE)nHW=?e8iy>+Wnuw?Kef&tX3oIH-|SA`2SLIifECD9;c!6ySL=GH{J3x-Zy zT4_mE9cKc6qwol=}JN^NZoeo`G~m|5koR^(52)g=)ABoGV$j~eP`YshGa zt9dGHb|wUcXwR^aZ)jcM3X+$h2$Toh!Y$2wpo=WTd^;QzQ~9vxK z0Z&Log3x^UV}KD~SrO*u3c7FwxyA*2PnAqYo>yWq#q{AwFf@&%qC3$k7{m?v4D?~h zVEA=wWpf4pch-%$$0~u4&Y&{j==ZB`Z=zOEa0$O>*Pw2ze3QQca4i1a~`EKrv!CYjEysz*f#J~HHvWNE@JnREE}eKEA%I!R_n~8 z^jv=QbZ^t=6(e4s&|iP>%$b9~)m^!Kd1X!K9*H8i){+M?Y48v)_qi&g90AQZzU@_c zAVNOg=)EyRA?!e+_e(!pm~MT={B=_}AOX3=Ph=9k-vNW!5}}Vx9K5rp(5(L1{C%sA z|0cc%+H>$B#5n+!-(EQpq|mR&of`AgNmVO21{q6F{p^*Ck{d^|0HV%e@7kis^kd!V5LW|)u8(+WlWY4`wqS-y?_SOdLf&3lFWn+KJU zY=xCZ5Yp@*=!img6|69DET!mxu`ek#55XU?3re^}DfkokEcM9@RO+80AlhoC3`cN; zq?={Yk|E#V9(?-p(;By}G*|NU#!dk#1Z|QmhUC1had;$Z8 zOWiiw1vv>VSx39n`P=_WP~ao)&fO^e3hFqN|)Qc;yA3D%&jV*0HWa= zf_G8zi$pwQ;w82jN8i~SNKbs6W~FSUjcBkYMtd$glqvD~}F!sXc^ZAm%A!oD2+qcpd$&2p!O z54KEssmtt_upKgse7#90Bb2eV)l8cBY1KGEhd~vx7#5c6-L2oNrx>4FJu7n<13pZ>GI;MGLnva zwWL$Tg)Je(DYZL^?!LQUd-uMHe8$4qo@}>K&F|Zgjoj;Wq<~UuOF;k@j)KDu|Ee&) zaM+N$JmtWbPLI0o^g0ttAV9zK{JV;I`2^0ULEosJkevd*bQr9FzpJ#;22-M4yA$95 zj$VUO1R=wTW_^J`TH8a0!B&7`qTuwKFguY)N3p*q(9(nrO?D=c$U}Ala+>VyAI*cv z;)>JZcB6Y@wwJ4}39xVWZDk$J#W}b_);@)OE<(Ddd4? z4|(lHhjY+3ia#e`Q^1@7cg9$&2E!j=d4jH@-hd@YqEo=7stE3&3k>C6cXBM7i5`v@ z#%gnu#cVcmI9?o^oJW4TcB{8syAtpvf=9yXK-l!--O+F=h#ZpxUb{n$J^5wuV8d16 zQ%PramFhg7P$4-fM2KVV7c$9EBb?5SP1R~+8AA`Ga*&}RgXg;M?y zR*Bym599y>5e(P5a!*8ko8k>v#YyOuj*-)sVXQLDvnmZqz>1eu4u60y4(3*i!%jef z+vvMyh>fnt8weM}0k3-_91eQ033`IzPegb@e)YU(E}8Xxux6g{=4v_b39Q_BsgfQY zO;<`!@+m&}sNSunkOU)#JumB>o%LoRd7;ZJeLu&?4=#ad4Kw6ow%cU}%NsKpOpM0; zk3IpwqJWhXR*^c8DWG8-HrpKBO4yv@c8ATX1)sM5yKUB-?pC^H$Ta^SX>S7N*j1hh z*U@sXcIisGx>~PxsYV3R5n0=S(RNJfBR5)1(k zR6_^}PU{lDKi_iCx7yPb5G zcIlq)Y~T6T_Y?fmdIXI^zWi(KFN%=>AMVFpNDzf_)LJ>|+$i4yMflJD5=yhf+iD1!a2f)^v&mx8I0J}0raE+z`+61~gDVjT&2^+gq?Em;mH4!S%( zdplmZOTP<{8IAJ+nZ#iN(a>zLa>Z06Mftr@RK=KEZTn#-vf8HWL$C(!!FC$tdEs%R zPzcQ;;k(o%pafU@q@YX+gs~M_(D68$OH_9dW7C8zwi;7G3(ds_Lsk~nXb}1Z**t_e zg9Dj@Zji)?a|GU4(!F@av@Q)|XR{l7=9!N;oD_~@Pdn;}#<48MxQ}E2_w9 zJ7!D*@|`lM)}1Mb#~#CH_wm+*-o43QfMkOxDL8XX<2XH`K`zq40VSqMDUj$Vubnlw zfRmv`cX*p88IxxhexN3aolUqpVcy4cc3E)s`)Q6*TK4yN8Cm}H!4qwGo{viYu+;ns zJexU6p|5AXa&F;>+b`F%N=^#|VRwl;qwE8Mm-qf7oDSq$!2^OJW)=|zeo_jf##rme z@$>-jGu@TOq~z`D6ZXshUe+Rrl0c_0ch}kf3ruE;Icibawki@CFlUHt0--!O1|7&U zOdx7Lg9joe0U>I{4XYaaFZ%KJ#HGZ&`;TizSaannIafSlXvg>8o47RIzC&MZUNG{~ z!pQ|GZ(L|Tq#qAEPZSP$jz8u(4c{AFTczL2fAomrx=u%CeId02v>VG^7z=YBZSw zW<*W{n2~tGP*u$HBR1PfV+=5p75g6VKh-}3cNJWQ>V;62RD_J~ zG8PqQF<6#d)MFn2i@7WQ4IG>*oanX)u^4|U!yW30Ha^oI;Z{A?-v9W4w2V*nl*~Qw zV$6rzL2Jw%HOK1&SWTOwM?Q8}EG&t@GxY8nc;42&!$_JR@{8;di*s ziBPR02`R@GE#hn;duIq9UqpVi2#`u_I@0Zc-9@+|{CFcWP%fnk&p$LjUh9_6^}B;q zH6ZD794%jrm;X}DOV732&mpG{n(uGB?8oTcV<9R&a9>zM1h5~q)9t`GfSRR1g5uux zwGIMDmpXt1s;xnYff2~+?+T&|Cb>ObrRX)V8RF+$dqt%M8MPucg()Rp&hAE529Le1MM?3%~VgGIi ziEU#*o~NA39+^bV(BSSwf>&Vdu&1alOO$&fkd@7s1VQ0|VR6p?e0XQ|+zGlO_rSwY^cP2VN;P3q=RtT2LD(XXM zk%*>63~VZ-s^Uv(yPzAH#!!ulF&I!m436S|8sQ} z+B867FV63KaPefRjRNG*b9sOG@7?GT+3kQ=B*SqG(XM|f)D_3`7BD8yH4YrE)h}5W zeO(tVR-DFnYiF~q)qOLE_gzvNu`5v|pmO;Iz^dI$5}%A8n^TT2ts@*G%!5Q|+UZ>V z2DihY4ag2+_#g|-<7^TJ=;1b)_wEoJh z(r&&pp{jseXkLO+j(H-R2-Pp9dU-NdHIGt^;8;+=S zfj@D*e)shB-Szz#P4u|*m~w9p4zF$x2OgQafT{8m{J1zi-)PJqUq6_heFLo#vY(8$ z&0_&?)%vIh9%O3rUZm_Fc-i;m+R9CcGB`Fezgu0tRD~JGl7nAF3^(a&6q|*4=K~=| zew2_FC5$3$cWm~)nVI_@r@L7gu`5T;(cP63+DZQpY0t8?_Dc7uBS)Ts0T)Oam;`?J zlP9zjC!dWyD{Nt$M-YZ?4!U6*x%(HeqX(F=uzcG1&emYqAYqlHSD7oig!~Ofyvo(> zYDMN+F-7*%CYVR=76s?UG?YBWQOi_*I98JV?D@wc5w{0#raX_8l3LIQU?IlF2+7+Q zilv@)%Ar_s1|jIHZ5CCE@rc)D?|nS}TF53FqL|K-%gfXGCAa@V`i_(xyR_zZ`Mp7p z*Ilc*y`CT-MBGcVjEY5JPq0>tPloIPZ`c?38T|=}F?^qqjcx_jPUszFI+qA)5AF<9 zN#Q~f_O@#I$e8ve61N!~@fj3STH(5^X|PX(KOKe~$>{9?;nz+Z&2%GHgnuDDj4jjeLaJb8~z*@1L=VO4~pPm&b|oXdbR zlyk!GAFK!Jr*plalPe zH|vufg1VKLzP3wS<5Q@&YW}V4Y_#`1>qC4CHi)qsUtxa^-b+~^N$kU_iEGh<^l}V3 z#9hES9V_qd>LK3>O$59d@+_u>=0LzA;)Sp-J1G6 z`$@AuadK|){#@~TqbTN$5X~B51>jK&@x|O@XB)4D*2bdz?jf^Gw2FMGlyF zRnw}A)|ZLZnCI^>y>s9(r(PM&RZFY|&KK;^l~>w_u872R7aMDh-tWJ{{(MoyIj#{x z@AydHXnoSzx`tCW&hr!1R-{Pv47vJ*%rhI=fuM$CtWC$OtX|#lh4t|hxt9nkLvEY;$Ja7%^CbO-9sS}`oN3uB}O4h zk#*N>xbN2D4O{+sSg0%lG=j=$J+3Gd>9Du(Q>AX% z8wz>J0X)kQ6jQcV~zu$hdeiKkH`dzX5 zE%ScArqnHY6~+5IxO=tFKkkdNG*v&@u-cZ zwBKQ4PAL>>RQ{8&?*3zTG7^YIBe6haQb)BIHONA2H4trXWFi&feX(LS(+sV2oDVdk z0f>hw3fM3vv++_gqiLCBDW08tf_@f=A!f{6JJb&!Ea2db6e_?O9?Z51dGFw(TQi4~m*6h$BBD&_Qs2Va`_ov{DM(1;uG=?i=`f9l7e z4nn79?|@w!k3_p4d`Zwwbs7|CJ%li|h^&B9T=#io>~*kFfoK@wAo|Z2sUvlSerRUr zT9pNWlc8&(gE5Ijd%#!nuZdr5`*n5DV#bjZ!8YcLy}Qpg9$1&2NCVC~VxY^EypUZjn)TDHb2tPz*tE^PDn` zQ>Il_PFR%_rZVLPGRv%W{rbx475D4wbzrb+!A7xO*RrrkHA<>b{kmr)hq2PT7Wrbm zu4iKbj}}W58y}m^Wwn4iuEk4@9MMGl>hIWB*!w^ekgFq2vkGaDr|<~ls|=Hz8CfU- zdwGmA-H9|G`qow(ju@#WNwe4B14w-Ttb`X~=^`5kAH1-{9}sb_AZtsU`}>AYsepI8|w$; zkXLdCBT9Em@ac8<>dA&e78EcmR6_$GE`>hAYwRQtB5s_(K}DGcP6WdB^FLGr{x5|s z)>6HP*jrxyWavxB|JX35e-TA@L!H-Bg<&`X*lP{A+9=1uKw4G%c=c5$ppku+2RU{O z`o?^jbSvJk6=;(dmOY&u3lu#N;mKz65IMR2Pvnp$NF0)ay5Vha_ETz*ZUp+_qXPS} z#5@=rx>S*zj0AA_^M43E>U3(Dc!2P^YbQgYllReGO{iU{b+Q#sY^?Cv-+=lL$3%NW zc%<5Opbpk6)jC(uCUX>rh1{<#_AxU8y@XMm6S-dz*&IwLp}%|=!OQ%R7YkTNfMu+UaWofm~N8)Bao61pSs&T z-|=smXI0qEuop-BaO?TTdc@yoCvG|C^po~3YxUpKhw4D1d4+vYEoBQT*DLGD$GMIs zG__%wnWDxi`j^m8`uohmwWK(T?8P_l*9`@0$B(oiF4| zV)_2`lD_1+qF))rNOn!XY6-d@)NGt!bsYSHeS zAMd_7UyCAbhR}WQpwfN_C`vi%&rQ9v_if5n!N14f+(Qdn@V!R111s0S|03lf)>r<0GjIlY?$c5QN2_za;oKZW*mikU}omZi4p<*uC zzDOB{I4Y7V012zYwa#x=LQ|VjERnJa5jxz#q1Yzeb((Plb%};6t9Lj6{W7m`*^R}P zdH92=-;435)?xqJ**@5aO5?umrXZw_CsmEm02D}0MZ3KTv0^(FHC~TS#XT}#5GqVr zU5IDC@h^NnoTlH%90?J1!Du{C{1HeDnh=V29}z32>oSc999hZ>BV!^0x|ohZS%KdQ zQTCL`zHL;v%xlpC?4MBzpabq41sWB&(aotEAtDyt9E`?099~Y)Fdg#8hQ>pS3X=GE z5I%kvC#lGxqd0c*l7Ow>_GoOa!Fj*yNMMa(f!uT$_&8WJkbiur<=YtrtMOe&px^%P z-RJ!mSVmrcl3U&j@)FS^)z(N^WOdMu^#U zaE9sGV|-jD-ipODEgp7aYz$tx+uI3ne)4S2WC*OGm z^ba=R<|l61gQ4BXYTvjS{lv5Wo_&*_AtY@M)@a}Q4!^+da;`Id3%own``z6a>g%)9 zbl~uN)YiNC_T~H6qL0?=E>zvldfiFbu8VdjZF?+T6C0R(%KPAlgr6SqmN-*2co@mh zYefrSHA2rdqh7d;1|E5GxCk%~IvaUS5ZD~(NS>$_#SZ2qtuih&!x)FPT*B4uRO(hn83ZTP-<%8bag_T zoFBQhv|0Y&j@UWCprEF(nuRG-)$DLGQC{p9UROgE2w-enNd05Gc;=m`LZ_;0khxXI z%ZhTXRx3Ygn=mA)qx5obkC@M_;utGU%!qgm%U!N+%Dl>LI4fyHRwP20PL`?@NxIpmZLO`R0Mg=yzKM_mpL>3ymB$ITTuwzoFID}n7#T0&!>&H;Jux{; zw)WvR%u`z?8@rGa=5}ieR%Y~BM&+`#4WIj`T*`~1ZK}$F+S?px7N)0ocxTg2->V;f z_-iBm^U{b8pHnd5&hOf|=%;x!-548f8NC%p(%u~&^w-Pl6%Cz@&fD#`*?Mnl@7@bC zZZQCYmTzKyMgNER-Yw>NnAQEmjxiYKa7e}6YwFFp7wtDk`R;9x#V{qkzu$X6hG~Ko z^``4W?0d29DN5p2D<9er8I@_#+AZ_Z&aIG}bw6~EgHxCnKG@xNhO3@?=sgmGoZ$Kx z>*LChJ>J@jgu2J^9}&uYn``C>lhoo7?u{Tear3Qn&F}w#{Zn88Zb`c3Hag%-W**n+ zt8Q#5ZqE{QdQB>aSNPt$YS%H`W1H<9$vt=7u7f!kOWK3`$Bu2=`~S)@y^U=-JhHd5 zMMno$tV^+9#0t2*9lPt;4sV=oTX^UA4)2~_cJ!{JY}tgY{Vm3Mh~nGbvQQ=g%Ja+l6I3LH!* z>p1Y+8&DyE)I=6}1g)+al&jkuQiZMeEpBvx53v-6cK}658E-Xv=kG8wn&5##TH?)CxH<`#&%?< z@{DiOWCw1>#;S{Q7@_NW!Vhsys|ABK%H{GW^z>{dEH9q^;GGmJ1aFVuh4|OmGJ~ww z2*mfzrXz|H!Ix6;Km!?KtUTL$>j}SmmE@3BUf6)v@^|5LBHy%15y=!KhtOAwje`r5 zo0K7-YL+lVdlGi%;(E6W5{&YGKMxNsCKPWtQAs{^Hv7~WgQ~=>Ljqw1AFqJerUCD! z%J`6`5%?C|en$C0lzCQ$uVWS?bY$$r*uBK%(ZGCbW|m@Btk98WjAT5dmsTNCSE@Qi zxfU0I%_T!XfZL#m_-w#jHzlO(!L%_A$BmUgjj?9!c4+2`B@#OArF)N0oM6mmSB`ii zdi}Yy|6YG=u@+&ruVRV+NXAh0-4ea(t$V5>YqxnA+Ryy~**b@?mxYvozn#Kn7^^_&ee3ujc9 zCwEUwo(|tFe1dm}Pk-p5Yq1ikUA#A6moIkdKno+8O!y=PJvX6cw^ny+#FQn(^+=Yx zdGE|ncf^SyLUz}Fajj*xyjxqmLs)6}t1P-M4v%ecYy#&AT1SS6SjpVQYX;QsHP*w_ zv`FBR=reslsnkqc71Zf5AtDR#$OrjaPx5a(|e2k)#B4cA3z_d{QP%Gos3NlLP z)70G6Tn)G0YHl@m^@65dz)fAoztxqMU+1qbKoPb2OtB?YQ=1TO^28Ebz>Od?tR2PD z;b^WRNsz$k1z1*xAt(dslfRV&k8A~I+sR~mHo&tuM~bw6uFy850|y;Oo412&6OWXz ze`9zK(>Z|(LH$Co_B^3#hT#L7mfe?>I%0B8thh z;fm`~M0F9IXP)Oh+bLfWd|a*4-0_{kO+LWUmJs~CL1j5M5t8MUf(j-{2||BDrRFu( zxcuo){|A)#lbjKkuF%XVx+~(8$j=6P{}}O!3gTu;+{<k zrfa@f9B)NqY|N2x`vNHW8zr?M=BusZ5g)0?j*gEXJ+_Qvk?_OZe(y{9ti9A~2J&wI zbadf;suywh>Q*+dFGQ#P?tGxxDv_Sb`}QEL^I>><44@dF9eWU?$qmm~{F>+zf*Y!4 zC+0<;oMu;w^VE~!u|OITST8^u$%v2es%?E;r5@DUyoXC&(JRqI7ULgjQ9c-YBzMQ@ z8AH^st3~3chB|HV&WOGmynnjc+sF7PYssmg7#HpI@j_^^Y}VSVBXy`VIt1pP`Uv|7 zVm@?OwYW?^)E^syzGNH`*5txq!AGLfnzr>Pw?bhxY=u|-i39F&ZeKknE1rA@8oS%~ zO97upRo?8I-bba)5!8XmzVgu(9`s=-bNi=bQgLp-=6jU$f-d@HSN>NjFKPHe2>pnu z)jPlrEuSgT>K@C%y0So4M3g8LKzqdq7dFiGCe{`qIZ&=FEmBMjP;qu8pF(M&r?@~8 zuhL3$&~f`UbRszAFcMmLrlGl=(Q830qVUt+>HWMXewQp)+9VICECx=MmcS@MRNQ>Vjo z!W056WS&+Pj(9V80p{`5TJ7q-iQu>`@n_jX2x*0DPc?ofYqP0pM}^F0gle+O2qzxS zAenw`Y3cp3XV3jYrj0m!V;N(L{SBRL9k@b-VnzAJ=g02HuAmkv2-$iZdI>>-e2`+Z zgHQ6a?esR7+S@`V%JQY>zge?<|wa6;`%UFf|`ak#0HeROhg*>_&MW+>iLw^F-%8;zsx zgSSyg{<@KPJTeT#hOY!d{$7uNOPoCxJpsr;Q-n$bexc^c5ey-bhK#le z1TFp+=_3&9$OdeBDd2zMSXvMvdmBpP+qm*WdXA(?p;aFzI^~1lchD~$sUfbOz6hn8 z8NYN=pLj_B@nQOiUSV1504$49;Gh^Y%3p}X)=jmdNpA)m3qL=E$9e}<5z7otDfZ+h zR1y7-v3j!Dfd4cRz9i?zi7L*FTl5a{?!pHhV37DQ(I~EiK%@r`=;?Jh)ZP-V^4WvL z-v)G%oIOL@1#Hte+dvF&6-=fIkOfXEF#w8vg(hv{DUOaJ;|ej+(Cr>P-XVf&o3-vv zS}}0zz)J)b#&ZWjW_`6;Y9KmWkp%53TgVU zU_CKzu({<@!sHAv%?FcaEu!uF4$G=(F7jr1=izciC=31Cq_5S?khT9?(W8+k|3?8M_5T(zrl}Kq6}(+1egFX%0XL2x?vz90J40 z2WM!)1XtQZO}^e1A4rhIWjKpBi8aJ=HDB?FnPl!YY$L1*@&_;sZ#s0~PS(&tC$oqHus-;>MKo@%fjlY9gkr}xomlsj2Qyox+?crqt+7B1KN{OG)|3Qv`-NQY8+`dJ z=#%A0I7-PTS#QV|iiCm)-cE#1W%4b3qD2fJrpn1|VIT5m%-jg6t}LerNl@AbrX0GZp~eJxM6SYBQK4&Z!dGs| zFg(Vbtcnx{mxoY5b^{7ypN9n(_3jxMUvIP9y~f6FjNv8jS8-3Z`H-1~&^KDISf9TE zSv3d^F9CZY&~1dBgCfj@r310iaJLr;G6eb&xBH+4m?uaS2HrG)$OP9+^nUA@EBbqn zL|w<0VWL}xwW79E11f}tW=5>Fw}zt^!R9LcN(G!WRSEvL(7^?w>doo6eoH#KoDT3e zJ|2YKW_rZSgs)6YY(6r|aH*7rD9DW==)hjWPa82B043e*Zfuau$0OVOL$m>JJ%mXy zm%qXBFvPg?SU;S{!z>-3mq@opX)Z|?D9=O&3?!IwlK=TZY@(jhn6ny2|B>G2a#$*-`@DhtkW>lSt9a%{jeP!pd7Ra zG)LG*nut?B%qkSiI(Q}H6{(q~sR2fpzWxbJjf%bh{uZ)XJa)gwA=Nx~-&v=#D_(Wo zcAv-Td|S{=4~D|GbOoVE??D;|>gTT7R4Ed&#hlS#&DNHpL0j7y4K3LY%K-ygJQ8w| zodW;9egNNqYz~pftx`XPj!bq!iZxHd-qxU~d_-hoeUQ8dQH3m}O;MEy+XnF-m_B4P z!t@MQMv*E!mZhH&!B&8?-67Cte3KH^4HIEmj5p;w1#vR9V9OedP(~&4h>1+(WK^m=sSg0BCTnd4fF8%I zSdf*6Gh8G{QtAfh$drLh@I5>Q_Pe>5l6Km&v2aSVzh^#U*kf8+%SW_>b-l2T4A^RF zDi(_4t#Ewe_yi0h4p~jk&ZMHUBR$K;V%ccO?TTfAgyUYkR9~d)5z_J0PO7D+Gv8=-3R(~^@F>6B3-VhI1*Eeq5 z_%d)Z-pdXfUKz3^?i+{9!vz(r7%I4n=_yoMs1ale40x`-kIO4g%sB97j{boZC>eEFp!UfMYY4Rn4ZYR5^U^ns`o@H*U@M4 z>oAisM$iPSp%!J^{r4ymh2}5KYtxZoL9#T!aQoVv&qm@eidDKV;z%_=1_8rMzR}sBS+6{d1 zCZ7lJI6p)w2Ms#vLemMP-Kq>cKWNtEZqr&Q?gL$WfoJ(sHz4c?#6AY$0f9zHlj0Fa z3`N=XT)LgskyokYa=G}iG~Q551gI3c3>+Z~PBMmn!h5@s<6j&41;5T^9B24j;T}k2 znObr!@wgo3tO4Xs6H6;pF$Y5W$E?t~wxhoc8t;Z^ z1A%o!w~j6l-JFVJ@dMb5pyUIieTBUXx*PrOb?Ec4IJzr-VE*=_f_juEAsov=XJH$| zPidJ7+dkoaku0TwOSHz?WG|-3G?J)xob_bswCr0j@-(--=HOt|-TnkY$bx;9r>OP1 zBdF1uZwH6)gELqa_r@WwQk|WBV|NmU4b2|- zW1f0~$RY4nC@uUJv7U>wm_#V+9SUa0sX#h~nQuR&Q*;1J!yZAhX9wj0F{QYzQ0k}n zhlppdJ{1kbBFJcuPU&#Sg`!Y0IEoEq1?zj13PS0kG1%4lWdL+DrDFkS;_(a~^r|g+~8KE}~pjTAKm%)vEPYM=TG`>lx@G=zxqHFvh5O9>j}XI&P;fj&_(jn{UE| zFfc@cTFO&_w@Ed6*QviQH~LGx9rP6u@x65*%=uis8{mx3azK=ncDXr=kW$@uoe4 z`;q$9*-d*JgZ5zYd?6DGTL5Ltl9WqIB8h-B8CZsm7-mrAQ$-7yj9UP;DVpl$&NT`C zRH-838zH~!ngt_7kVDr9jOrTFIWFr2vk)24d<`IXvK6QRNXG$8QST?{p1n{5oH!d> zitV}_KiyEsCvD9e^+nh%UAW?5JTdOs@>v<*UrCBq5zG6MXYo{9Pon>Tz-DJX&sB68RbTYVV z#M}+`UkG}jRgDBEH}MhLci=K&4&l|}!aa~@In$v+pFrOw?jp7(kWohW+g4|tVx^FO z1;3j?wN*i4|GnPoV3)xOfjBBMQL0<~2Tc5qwwd|<>gXP`Y!-A*$3geNE{3p$5#6#M zxX>bl&br5ogNII8ZXx_l_r$(LvNi6VL#Fjc&Ff+9j%Bi=ul=8WV;(y#P8EeiA0ZrCe-H9CB1Y@=rL zK5ps&Lar);I&1?O`Xb@S49&;T%)mXiwYIj2aKD%emNuB8uh~>XMZBNur$$@y54Az3 z2iibs5ZaBj|AwA{laS>`iW2Av)4n!xb-3O(KV#cmTT_{7h!U;*lxrD!oKEJ*A$>;F zq!~~>c!rf_hplb<>Ox@}R@=G6Zj5b+>zcBRPHvgKRvDrWY*=J;E`Xt6AYtzr9iU9} zFfew>!MD9Bh+nOe+xt`N-22z&eYru{ja2gk!4iA4iB<^45yQAgn_KIs39xI6#>Vn$ zzcta`Umzdq?a;t)*++p+CIG8;>tmjSk#V=+^jf~HRNj}-j-Z|}Po<87<@CsW5g)u}IVNjCy zZ?KLB&xUx!ZBQ2WTw%3%yKYMhHHad;)93&S964vL< zN^RfhtWa(#-L~M?HP%&i{W5a(a#TH#=3 z+<`q4kzkSiktc4z`hW!ui%QNM+1-ZtY!1VVVK(ipqhtH88rj<)(%YGN8b^M{u0am= zVH^{p8t=e5h=mWiw92zaX(3<{E|_&vG}sbF?!ZE;3_~0g5Hjt4Je$=Y)OG!rg?-o? zdKGM{A9lLVhdvO6H}S-{rm|;#@aQu<{#)_?DZZ*_b$v2%4CrkX=0<7rQ(ldA-w00tGCS!xd-cy6$(yu%v$px5^5(Jj za8_Q0Hca&$u|j~DHDdQB+Xrd$WbG%Zd6nb?Xl*cW8^*Ud1`a@OfQLh-3T`RJ9ju-t zBb$HJgjnNbGl(Kq?iAXDbpQdu^TNBKsXRF$5Aa@(spFpEg;tAGi z6ysHIGP18+-WN%FtMOukL=g8SMJ}(Cm-kV7-4XP#I}*wo`hrrKj3HKP4$uZc#6^Qls}}f0%hLDN^Yg4gl(gJp{v~@a0e(AjOXuuys(Zq8QL7 z7f!`ca{Drl9vbK!@5?xHsxp@j+gLud0N}geVGi_~h8VA3T*;lS<=7gc0x@z}5%kc3 zCt&zxZaH_Rma}BlF4mqKt54V!xvWe6nE7J2+kxh})`8TErB++o+{FGAayG43H#E(W z-_T;=E+_gm*$3u}D+t#{r4OF8$jLC4%xm#NB><#HT*}Bb3&Yn$&J)?%NdlysXaJbo zs<FJwS=pL0|7{^L?-qI9;oj*$Xw8FMy`(>C2l{p`bq9!^wlJk__#$O(B%;) zGu&UC6(hgJF0lGc1e(|Ab_}uJtqXw^+OPtbVX)ubkTk(X_qrlkIpG$;MibZFKtaaA z);CAdyfokVUEaVjy;Spu`pNs+EP|Ic&5_%{m|@;&xYh(+LN^ohN*W%buLi$ufr=__ z@aqy$P4OTMKyYiA^J3D8tD?6NzaNJ$D5i# z1*r_Emvl(bzBiCD0k+GBe{*QlQ7fX2EwtgqSRjI?PbV%$JYaNv505_D!g>%Eckw

s_>X01VK~~3<9khPY?y6@*HUO2#!+`?$W2JY6U@T zg##}4$9;;!>GC`FowFtK2|J42*~9U8xJ$$$!r>ByLEz*Q56~N(528?=&+U{K^$_4% zU2X^KIx^LaX$p*7~29@jF>U-XLL9wHD}SvW5$hgaGx85L)RA zEqn!~8t6TG3(5uird{y?YpU2>{L#f`(I0aA6uZyvD8*GhEQj359DLQGaw4R8Jt*Q8 zlEb8{uuWi5SYGAy}g z^GTmC6^hxNvvCdMjCP@gtR$37!sV9S_;aDuZ$foWX`0IexyIp_UGa1z$MvrVhGYJLV$O2!$~b9>4ys6i_&KA9}mPz8_eKrrtqvs{^N{K&O;7 z3=4Q4C3?~(BS{1CaU$jU5JM?e8C8G5pYAElM%34=uIxL%e}C2M1td7Hx3K!w=6wDO z276=T4zIIpNczF*{{83o8D`Cfa$%zV#*(8-W4A@soQ``7`z=>3xk@GD)Z;y+Vi zkSZlg4-o)E`eS(77O=YiLr@^jj6Zrs?MKYc-L(A=;ripx?Ad(ppG5oManPwLrjlYB zgaoB=e@z*h5@uw#NSoEAw$Ww=-S;*&X#~U_!>sXtI4HaHHVz=f!eF}0bvM$^5k$D4 zC8tQidnN5`?cNO8%mhXm`T5DWHchriAfZy2T}-M{m@VaYMhJNgPH%#bLdYVDji?-? zha0yQ5xYy@L+ma)Q^-v_ogTmAH4lpL+b6&C#AlGS87N-z^Yn$tR>a~D>Hv+Q#=Tp50KVEd|tE81-mGfX-9=1CeBifsBXs#2W zevCWkK`alhGab-?ijx3L+k#VGX;I&}*$-A|xd?5Kiz))vfr=x2No$3zsGz=+7C^6UOc+!m`H^%|sxa zOk+r7X$Xw~Er{|MrUW^ibbTr$MvqS(KmO#U5h_Ueqt-jfN+DX{3O|0FjXkg{4P;9o z>jj~Kj4@L~<>3oLkumWMl>9a-tYEKIVBD{gh(hsR-@hvz&{QB+5hZYa?jVD&Us0Ei zDtAth=NcL(Darr>p!{m`5F@P4i3kw6>Kv_Wz@evj0e3Fvw26{$cu^cM6aqS#~ZMhR#uGVWqdP-3Q=B7O%@v!lwfS+@J=q~ zLwwQ@oiWVWIHIkF=%hqc=pH7eNLIfMGTpX~wQER1CPK-Ywl|q@p)W7D1)b`xXuJWQ z+eLh_i3CenE)Ydw8D~sf5LH-2r9cSrHK?Op<`|^~n%eD9L%7A9f8p^K z6dmIF^DRkQfl`5gmVJZvogX})2}}BU*wXpg0|9213!C#0WN->$z0bFBXrewSYGTub zw&1IRe=d(NsM^SH07`*_&AP%Gj-nWZMnJ`U&S-cmo|?ZlU)IxUy}VHKPk74SS>qXY zt@pk8`DX@S?GB#a5lN*gg%E)EgX$Zyar~s>ZN#%PB|VkWOEcLxU39`9&#Gz`|9*Jr z>vs=57i$({PCghXIG;foJmAYRI!D_@R7s9OF(8L(86HTUN6mp>kxNM`SVX9 zf0jT4<#QnV)LAW3#tIB4bY!4pErD`kjK!;J1+nZcW=F&`0GcXWv=cM+$_N75(K9|}pa^G-by_7>GZ?h^t? zqs_5G$_Kn&+l&iuMGokN^nL;L;VG%PrhE}63p=AmKcwwz{=OvV!^icoX3OU1#$Q9G zGmaVJ#aNTC=1-XDBVoKAL@efgV-KUBSUmx%65Pi#nS)!x7#2`vNbe&EZ2l?B`M!kK zbNMz+?W2I!0Pg46%vb5KRavz6*Ib5JA>fTr+??01W9{l(uAk<42lt41CH>P}fi$Uj z+Mm|JjJ6gqfhb1}Nl8NhJWlgz-~!>Byz^RrPWe=}<$yOv_#obbjiZTpr2D^uNi>W% zo^!iX`=`BiDO~_y2z+`Dw>Fn}ohJ-RR|ql1<)=wJn$IQ#PDnac@Vf-Ih5#WA- zS(CxeWYx?Q%=wg1TusJGRepjH3VMJWPv18h1t!s^5XZZL1-{Ci~#nTUm+6St}4hpD> z4h6HbH3O048&@e@k#5U4@A_9mIO)m?;<&kQMaWt@b|gvgA~&^v6ad)`vKGWI&i|X` z`4Kq=79$vws9__$Pc)%-~Ptgu%c5b@)3%@JHvtwc+n@!fIxK z12wBuPK)@GO68NlcEOzNRCThdQs!F|1Pq?BFBneMKV?^@e={1p0Dkm(*!(wr5$VWt z?FtI6rw!z}&D}p&JMvW7@CT-=Uz&0|&s^Xf=-1$F3Mc%YBfa%@s=P!%eh3=q7|ly_ z?Wa&hiSI|jOH*X;1{Z~yh8PL{SIGljrHK&-CUHRko3_ju|dCm!DxTdEyiPQBv~+U?g}C_7J7{&(tOxAR1~ZG`T*$M=2Y z`X2HNx-eJdp|;GHl$vN&9BeIMRv_|1Zewkc2Dzq1a>y;z((znG*E>!6bJOw1eEoXAd*;c^FQX(H9EA1fnc$Pmd&d!{1Nd#Ve_sw1^~ZUa_$AR=D?1{#IJXLmI43sYh!pRC-5ea|mq7G^dvYU}iSMqjGB^eG}bmuO*%c(Gr zGaAq`j#1lBkvn~A`gPAVUSFQ*fffl)3^@UlTWMNkb3ZZU!EF?lpzFdOuVgDmD*I)Z z?IYvqd?u*41KA%Hw2$vXvte4~JzhmkwWBIB@?0*v8j?j{aw9z$=)7d7P+`R*JB6j2 z6Er9{!(*$VuAGI(4~3oAo1Nzl;LjC-`FXJ3Rj*uG23IpNIbC;!4p}a0tk;Rz^TAX% zcf~LfKM%~N)s^XF>A}9vP3>o3p+KFL-P(sa4KoVg01{(vPRH8SWw7DYyV=++sHv^s zd-dx24w6V7#15r3Hpn#-*4}}8Uxe6KA=+{86v;^BrLrFR&88@mj;3P_YIKw%Cb8Y2KHR|l>pTsbkgWst6V7#6|9c!%U) z#Aj7xQg#BQ`@zg3Lp6X2r4@q*3*MXNywiFE?{UjH!o%3>1DZqed8=u^%~!SC+2amf z*(Z5)CF>0Pym$DSuYz|Ub7aCT*{w^5-~{ox;t8L_9`-yxF-0L?TH0UOviT=_o8mQM z!6<}lYNGlOdpZSTdDHeZbKt^q-0$(dCT+z0 z&YDAxM~wYx5&ngUEpd)?Ip2)q)S{dWGwpRpz!qu;!)OO9K;n*TWX2MA*S6@LQsUZh zKnEqOLJOxe>Vvp8tg{iEu~4D@ZYA~ZPpsU-R+oS6UCS%?nC<@oZ(rcezz+xwbG{;v z$Wc{p1Aw!T$JVsKkrc$=DHS#rR6@B>=*aY0WB+4sdThUOc6#Qpap!$^)(*|om0&0z z3<4eDfZcw;=JX!C*bpY8#>Io)#o)bjwL5G0o4YsYcJ%%hvl1Y`AH|r6x)Kz}N+@{9 z%|TWWvLyhTO4V1{XJah>EUi`=d4EH)Tpn`Hw3y>mtR5t;jjgnAB z{N*5W(>g#|=lb!BesPz62b;}|0#bI%LnH?;bVU?Yn;1VdXSAGk9q4g@{OgG0!;I<1MvZR$2 zW*3QCKn*6F!#MrA()&eb`yv-#4bnX)sEzVH%+~869faC3zK!b&`H*yIiSi#o8z+pY zD))Y#)71MdqKMr;PV~G7)C_2$-vse1NRvP}6ode6QBc9|FPk(Rb3hL5edZ7>xl1&%P3 zTO6@aw@@=3WypqLgqO^Vk6gRAnPkbUMkU!+`Z!&A zZPAQEEJQJ6@S)2J=;Iq>dlJ2Z>+@mh^9Yg4Hi77d6P$PM%xA-SFO}zc zcyo(f(GcQ@hXMJ`5(FartwZE=rNd==b{mqbZK2+;!^#~F2bmlkn7bc3KfR?F`0MFF z*tbiz8-Dvl8{(fWm67aBtG)xzwQ8O2dVeS31%1de1O7yEsUQ9`thZJ_#{jDa1{BV! z5RpK2Sm);e@1eCg_zL-5p7%wgiAdzw>he{}a`9btPk5I7{#DO8^+P^MdRl$URwO}R z>8!4-u3+1(L_Mp1|B7Fs$8zk0@Ruu&H>+>MaxnD`lI6XKu&f~h1F_d67{Iy>v-_Zs zJ4TQa-|^o>ccEe3O|XX#nP+}=2TIUQrF)1wNJwFxff6!%=NyM`DbCd9Do|id3BNRR z^yo~<#BTwQH+3??Zz*6+@R;#`6}as@Wtz>*+{SGZ{sR9EeulrVy|R(EbZxS`1ffG=wbFLti-B7j;71bj_K@05<`_G7 zm~h#;oHC45nG6}*HR65Wr=Kn8Yz3dyj?T7Pvqx#RYfwcibG4Zw>EhNhxG}b(-&KI& zhvt5R*GurjN>iguc^(yvwaE!u=+iR`(+B5PpP8!4?= zilrLG;(=m2mlF^cY7(V{;RRs)Fu{?u^9UmWbgHH>cvewk^$mT|ff1G9!y<3=5r zjqRw1P36wGPeAkx%mQjFEXe?$UhDm2>bS!+I;6BaUpSgjUXa5N=+RaVV_(WCPU!ua z*!baCRyiX@)9f|rwMw#?EUk_#0$P8AhfhNreWqpE+6*?@uP4lI~6|b_7Km< zh`*f~{YVB&vf@%2R8>pPBF%^EIcp?SQ4AYB*7zNqhu}?Jid+zn<_odj{x8qd)}cuN zVjsOFhX-*V1MyrGUqmh-R>_!2wBd+m>p@gc z4@LDHLZvf4$s36HRe$8UVxpr1UrO=@`RjmJ@?{Egv6(9bV?khcu*+Rw`Mgm9j!!Uz zyTF@mil1`QdjC(N81$(jExqU-VUT)3Xf?+b_be+z6Z@T$!GaVh6K^~PhUiidJ` zSqwrl68T$tM|}7fSc8l$@Q&=#`X4uRBeWF&LLEa?n=;`1sLU+CM`8!A%zjYesG^{jwv zdW>~}=wQ8qJ^`hcEfpIpUBM;S7ku=T=fw&g>o?HuLs*l-q6+XO>`|P}Mfjum|Gq_# z)C!!UkbU4DX=&snfx8u&4F5oICbC-d3#mmOhDbXamtkX0r_U2`c_h2X=RoF?2k0D`Ea=E-7RrPpXE(tI3CO*OlrE5_Q)i!N07qnHo1ci;Q+8rKWD6H0E zfn+YM>j2e`MRcFXU!Ds3WT%bAlF681IGk=2igP*)gI+V6Q}zX?%1~(aR4(Mv^>8j3 zh(*WC5f7K)Nse5D2NzaySYL6N;Yh>c;cKMMrfn41!$U2rvJ;($K^nqWokfH-6JRDk z;?NwE$LdEH0*9+{*phRy>`;^5Gd`?m@43>4Jm3)NXeAVnCsj3cT(Hugm2K~dzx7PE z*pyCt3htt&`GYpefLGP)JOAjs{(85^t$7g2`8vV0Eg6T-FOua=jSM)Lu)?%3Z)TDh zoEQ{p3J*Wfi{)Zu5SzQI>%G6%YgxJSYQOG|2BWcbKCLBuweg8^ZT~Z-5$)QwM^C?| zhFWF0ls8Zfc+&@~t5<3tXWI9H4w&Ywb-RhW1LQ+8xcy4#o`nkK4@SV>fdUBBegvh$ z?g#rgq`^uxYa@>5Y}T3fKr|gylPY_wXU+RUB&@{~y%+aS%_^~g+jVwUIqTO0t~Zv? z#FS9)uU87Q33eqAjby@6N91C(_s@~A$D2NT{8Pc0v!xVr9?f_5@*CXFz=a8jPlE6M zIiJ%e;%<&&RRrD)oTa^y%!uVXbUfoB)W zm#_#uF1z&HzC)Q30!EWksG}Y01R|#!HhaYHvb(&_Xxe$e=?fyvwrHF(Ud<4|Lsk-N z-v1VBREBjfN$9_*_yOA~z|){8(1D5hwj?kf69X$06$C}U=S>z@VXw{SOM$@3L?$y) z%&2PScSU6O54q5>sD_;7aLVf%pJq#S_UhvOxl&{*@|5w^%0w}L;Z?beunvDSk*QUl z9JkrVpRCj}3121N>1b7qxv+m&G+L-{JE;VV;T#u(jPL=Nhk^ChfFp%UTw>o@?5!Wg zy@Tqf3ekA)T0B|^Yq0eifGHr8Y;<@<*RlJJ)D?Z?eECn9=t~f`4@Bmdt60bI$7vXI4)?}~oCY7BAnrK?XCwx=W8hI5 zAozx$Qf%C_ZTNfFQXN~P==QZ4)z%!DfqPTmeS_R6g%0KJFY6`sM(Vt`enq9!$>8T4ma9Y z(IuKLt@Ybw>Vs6W#r~+jfJ(eay}wN@*{L6gWGx&RnvyVPiY?unV(k+3B~%WoU+njz zZ1(K4sU@Eq{W%>Tl&z=j zJG;;^wrahXza^b1;{1u{yq<9 z`M-6YNiG}7hGgFnep+rj5v|&b=CunyZC-){?9sUY75f767N{nfaPV8d zUBYkk-2X*#CHLH@QA_xpUzo4bVGej1l7cz1C+%Xq6o>zJ9g>43m5|Tf1*|L!DoLF4 z4lgnT?08s0;aR)Q$yO!DWhUqKlF?~XKn5PldR}6e9nycWGrJ_m5^HOTm<*c(1|NT> zJyn7x0rUbuNWgNcLFfR$C1s`c2UZ6giD{P8P#8oIX=4L<6t)8ReyY}2%-FoHZq4I^ z)IPI_7%HoRo9fn8<9OBi1d?Qc^-?^5WDmpZLH3e6+5v=U*sXH=@6(U(x0NKRe%kOS zo=_=MM(7Xge9n`!E+b}r3X&1XCjn!>WtEKx^8eY>(Ba1#&&_yFq9*${gk^gfd&Rf!~sOr=htiZzNF2WZy35=ApD9R0?2wwsT<@l>| z5nz?50|qw5E)O};l<|vRHC6uU+$nd`UH91|@wvNmo`ffOY0>R|Z6VH7;XeCBITcjk z0KDH-N(Z0Go%DF7ydmj}y4xK*h_AnR|#XYy8X=SSVm&GorHjyoYdSv9+L3k4lrNj-hKj=8CE-`jgy&Qe@;c{uN_s=$) z*SJtU7QS#wIrA!2IbTVgICCtCE2L)0bo_&ELr%-a{!_uZuX>~2+A|Y{Q;wI6^OZy< zsZ|O{PP5kfuVU;3$|Fv9QC;MSDO6+Nsx8%CrAUK$nMI13I8HH_1gXTQXqieZ@Jqj> ze(F<|Pko9#5n{-*_aHhf880OBVXt)Y4D0>y1Han&b=<`HKrsMaSU_eu@&f#8+{?%n zO4G?kCLQWC${>=OPGtkJ@9Dh8ra#Pp^vuI^UTR#J)pc0Ru^rS}dvdaoX{r9)LT)x! z(~cH{QsWLJbubuBpsm3AP|lAx&Qf^y*@*(au7v{rQZ^hhl*pRRb#8890ddPfa7V1I zDNhicMa%4aLR zt!g$uJ-ff=LOkXkgeUA7e<>FMlPIl)l@?Z8s-=W;vvn2ORYkk#!CWr*-zj%ck|se%II z_jV@frhVnBEr7ssYq<^0UF-PvxjV9Zhs|{uosJJJ#KC-)KeKZ_-?n@2hxv*Ezex@j zJc_ddUm=T^HKA}q$gtaxHin}MdkCCZ#_5SUMOZ8aPtuBDU+X=TzAGp;lkAW5{?6}* zB3n`t=`T*A(EaD-#+#;^2Z~3v8kN9fpHAPEOqkor5n+DWuh{2b2hW6Bt26_p!5fmq4)oxpnobe=WW_slgX0d z@e-e;e4Xp;-QbgHXus1Obsjd;a#Swz_$aGLD{K(3k74z}zKE^Xj6$r1HcBTj>=;zh z2RI9b3NL{tzS&q{@AB%wG!?ex;Y6wWv3fmUI#jyhO$NW&``$gNPo$Cy3kjwhI&Rq{ zYPI37lTIe~H>?1VOumkvl@33UOlK0wWO5~yT0zK9N!4>kmgS<}U=Y6&e1T#@sctJ} zP(gpfDMNNXDwQOxftUs|31(0wGCxn5)?|*TqUa`Nt@f_b{SyAdaRja-#n|&c{SA{@ z)=nzdl_bA2=qrYC{W^Hqci*dj|D;a30b2SE=#hkJTH$(Rksr)p^}`qr$S4=K4TLLD z)(~on3O5P{5#p36fpiH97cU)@_%y^hB+ov+iAYftaU(ZKzf{YhR)#><>F{XMRqk0K za!76#=aC&2yd2rUsOkoAJ>a*|a4u7REX9Ub=V716s6Y!7!JHYkvJP}U;DN7hkl5*S zFN+5lyi^EKKtb(xSMfFitN9(v!N~w?8JRS5)V9!B>5L&wsRT;~C=`IILSZcc4WJw7y&Da#O^B;RN+Kz`+Y;r-G@~UVMv`TV zw7kTI56Z7JC5T?>^O;?*G~M!6FV=N*k3cw%r}V>PnIF`UKU5T zXT}4)|J;j01I=zOeoZzSC;)ZO-OfGBf6f7M%@V37&ao{UZ(Ea-7Lm5Hq_3^Dx1-`} zXL7Pr@2sq>^?bD$i$B4-@Z!{SAzN9sL4gej5Q2rLN{)S622K71el(Z>*lV9X@|M}E z{^+xZ-%``=%k0^)=hRL;vomrek~yqtwNE{J=q>TNg~X$^XAeIcJ%zV3_w6(?k;9Q4 znZvPJjhf~9!~bC4WbcI(M>bq)g99KoLH@|y8K3%7H{h5 z70^lJw9bAF;}n3dSpz2|xuPjD&&CV7iR_B**+n_Up;G+N@R9P zn$|}rFtf?0l-Gx%FzfkICbB)gSJ&qEF4)!ns!zzfEATd$@j9}f z;e=F2mUQGOY}H3*dh@*s`nk;mxf%%c1}2RnlMq?C(g(AFIF6yiI48^6j%hiG%p~w( zq{c%N2Dv5-SwamP%#u&9{rr952t_k8*T`&IzxTjJ?&e_s!0PmV0HVOgT5H2D3M37B zNi10)0x^88fBHo0!f({;zj2}U3D&*@kii;$FY*0@fnQ~J!0STU=O~NOu&=K!JaP*S zKt9O%LF5CghYp!|O(!)SNr*0_V3+v?2GmO>Wza(%h7BzR#CsrAr`OAs)Cw2ZZfRN~?Ffw8{aC-pabgZ-*YRXI)S@#{w#-$baKQ@j5A zyaoX<_)MZrrx&nk=E&GooOJJl|XO5Oy~vM$({K+{s72uUFnNy(iD2r=h`U@QoT%VAU4oolTYv9#G8 zrr)3Q1&q8|jH)@^ET-i#zxOrg&K*r8!&*HPQZs<+fwo$f^Z+do$oqmueox%itI?d^ z+&dReD`@}#>#K8Sq&# zQ_|vS#EqAW?WMY9qzk!1c^0Ob-WplPeSAHB*1HYeWiJD|r;bcLiF^a!f6V{HM7uS4 zRL|{rb8Fzc9dHe-;5b}cz`J7GlO2+z=3yqWzR*~*HMOPJDZ50Ns+S;15kwAIuCIR% z87U&QNURPSC6C}*hYwM{d8*6-Zb|2q51W^pxY2?LT#`t`q7}jP(fwoYG0Eq%k#c^e zIyHJIUdIpXRPGpUctfybw;qn&IRQ61Y!pVT)01h)4{JgS=k*!|I>#sL&;>{>!UL+L zxd{{_JhEinHHR7(Z6nHPs=5N3lr8%_AY=dN^r?og7;wuGVS5M8&it&x-fKc%*me{ktz-K! zs?zQr^Z4Zc5X>LVjo+W6F{my$V{q3v5c%tP=ox&(zAYoP->uTAzI zD5--{J=aZ_3F{95!2+U4D)PV@b4@sK5;zMe&5=ouQwV(HP+={6 zU3VU1amJX&JWTfnB<3l4B)`v)+?rd8F&4uU=Fw%p&U#Khgn6gU?g`IMt<#WI7`3N$bBbz-+!{jMtfW& zFm4Y0*<#=I3fT$Egm?s5+%B-O4+%kV^tNaBh6Hb(w=Eddd5Bo32({4rBYJYn3~LRp zhW>v?t?A1k#J?!+bepk8P$Li}a&KG*dANH&3PCk&jO706Fc(Lz%65y!ZkUGwj&Ykj zOl7^sZ()pr`@<6xM9wX;@zoxYLPr(rt{0KL)oDgR3gDFCy}|(su$~EZ&(OD6ZWD>{ zXgD+)PNd_^RHJ4*v&C9_2W;;nq0mS)X~xqm7E33F#%f07ge5@abu3hzcrztJAq}5- z+mX0=@Omcz!x7j&0*YHuz4ew4Et=b`E+}YoP2NS6 zgMg=ci}8f0PzFcP zC}fCYSZM)@#>u?JMTml9M>StA7si)T^Fw=*A|Mu!skme!2ZXrxg z2x$IRedp%q&HV?0=QdXatR({k+{!pOB;D#*2tqMWpv~Dg+^@g2Y~9;8(7gx(K^hNi zE96rGPfBdPiOK=h@2w-*U?3Dz*jRCAajVT#KN#|R6-Cn&FRGdZgUmvaKA2Ok-&gl+ zJBl(ez9f>sScL=vL>{;K=zw(rvPvD=ihFG#z{JLw5(Ts{ho+iQ`~+v;>I;KcjWO;kqFhe2Oc9Ae;b_AHJ zLA`3m)gsKq4LSE#eC1|j-^%PD2u9_7FnNEbOX$fhN=M!G8}yGGt`RNJftC@3m4^^N zupu>JN`tUj#A9_9aR@R>L!v+k#Sa%9w>IK^ely_yKUv^t-g=`2kjERX+J|t#{UqzG zAw-AA@)UQkM5C&P>Kd0(ULzWfeu4*tuJztLyt^pI_`kC6uwTMxM}Q~8C76ht)wr-+ z!01#4%Oe{ieitZe4?r@rb>bgReE#%P6}^$m8~N^kdg^qgVa~$`^G`nCEGolPPn^If zx<5SqRGB`a=idI*>2kwtuyqRBHpd_wTRzhJ+~J`P(MAyi#}UvpO`5+PEfJ^scX zn3#O<7=lrLfAZMG3&(QmclLbl^u&Yg&dJHs$Ks9nv58|7Ib8nhJ)e7U0=pS^!w=6> zMp#XX0i?)u8`n&E3TGxP`K3l2IUQgxLgXp_kX@;XzwF^Xdv-s*1W)qFTi<$o^>xqw zGYTFobs*N9*|U51%+k{O(h|!&`_|Rfx4v$52_~{tY6>RpSFa+Ek-*|pyf@VrAmpd0 zSPL1HVo=F23&%aIfhFCG=Z+_z=s@}}GT`^DTf*N@hG6i^Du;yv2-vDm<|f})V+bx> zt-TM=+pQK-Bf}C*{!2JHYgew+aJlSxg%1%vq9!-x!5ELg>MBle*l7S^As7!~Rk?e!v@|<%d1Q7Z!y}wB zBW=_$j)l+?S#lx%WGCfGA`5@Atu^lT;QLv$W5SzO=iFxK?oKu|wAyb+I4TgAvk>Q& zzXJK1+r3r=4PO;)>j+v$!rU+756Vchz5Vt%VsA9f^$pj{?psSw1749o6MvY%Cu)d>I4)jV!*HsRLOp15Y_6@w5M7Wq-lm!+9_HE8#hBnhn`!Fz~)c6KoFdQ7X7XAx^?-**E0y zjK9@JX3iI8`Sy$FejzA-Oo_PL9zCr1J{FD0=e)+7kRTIQ8!XlAow@MZJ2aaupcc{p zmd?5Ndv(*-4Ts(P!EAz^OO0Lv9DM%6U{q7iQ?%d6WH|#z0SX9o>Q~wk??fl6MDghwT-@XZWCPD%bw!n9^vz>| zsEw1I5I3qCwy^=Iqdi?`TbW}EDSHday1%!`Uw~N@63q2#Y}{e57%*}k098P|1R4b# z0)DqIVhDry{mOv9;J^tu5ZEfY0>W8x1!N~TTmir3cnhlgD_qs%{Q@sR&j_K0+|Y2a zo6NN~``RX3UGD5^-vfg&<`?g+!M8)_6P@}vnF>v+w1^l0?xi754G`lvG}!w>-EW21 zoItAR`jw@+-d*c37nncFE+R!X%EzPL18zxtOyoh>=Q@CUf{*q8HAsWSx^e#D6}7-$ zJJ0DAe@^f5qERJ=!d!LTs2NnD3q@)TJTV|p(4Ts{bxvQ=b+!Ue6#qb-{x0!%Tl$ir zw{#RrH*i7k(I#RGVB3ugA0=!*KrT6_4FkHS7jcMOJ`{igxP@LqStRVoh4q9K@yEkn zUFT5|y6z3f{Shfq_m$j+v5XQ8CANYx-;tE&e-zdHD#V^ERMyY0r6Oj$c19U>FJ+Hp z3?p+SyW}1n7_Tt->R5qbJ9GvCTUL?4Gj}s~v3r$trf+w~A0N-#Y-K!07dqe0jdwdX z9AdOro!k>KtUvMv4c~`Oei~IBM*iVD{yb$HhGT8`wreQ(-D$7V&GEBwf3a48gQ7E- zCa9@9rw5SQh731Q zCU2E=Q>RaalHb%LuTX(E_on*~nTe-z7td_!&$n~9`usB8c<{b9NxH)$h4UR!M(;qR zE&*u@ArS7fjY)9hK3^eXSukooZg-C2%pIJQYiJ#B`gu1$Xm^g;@E{Mit6`2dwM#&P z>*l6=`SQx9o~+d_iAmYGAJsQ4i5V&1WHykfo7J|NjP=?}+f2pK8YN%u;1Vr)`5+Ar z+xgyN&2|5oMhNu&0fu65h_DK1{>2~-kBvp%;^8@gF_hLCv5D))=;uY<)$3O9l@`4r z25V!i6s#mnMj3a)`sH`M*$Rd@#c#E??YPnV3)_v|M%z?N_PV}N-Vv-W(rl0ebkpAa z)JDm+Tzu0)`0l`aXT*{iSYu8jED|0A=ALyN{@M#0a1N-D|p^4Sghl2ZIU+5Rc9Tccxr| z!o%B3BKRgRN%XGMy-gMCKVcwe8>kp*8Zrv@JjG4&YEZ*_1A>ZI1N5a}i zM7WcaYH-z)_4pL2?2$CD;*Ck3vK#dfG9LW*1>LwD3;MhoE=!8vo%Pg_cBY=+pLN@! zA_kY|uCo8m`>mnhXI<@qo^J%ilEWDjPh&s_3`AJ&a;A`O@;NU6WNXq;pyLggs(APD zKoBaDeXq-5xOqT&ISXI*`XpIK{}XQJ#s*|8;r6CwS@L;nZpjl*LCnOk&>My?757N) zHJ;`0j|0+2Da&D4m6h~I;Pi&P>kLsZvth@ZMwK1KU11)#rpNGzq4Id#XiQ26F;;F5 zi|HC3D@bacc1wt+A4rAh)-~?}#grj|BYuRge1(r2a$VW}#X z5p2!K5L@(>v5k4GIsRS~B~x3kx_E~COTvNLT16Bs3=;I?#B_E4C(RxHufd%Or1&2~ z6@3ySD2l!Ha7H+LuE8cka!~U8RZnT_2mL`_`7sc9a(Q)F-i**Zk=zY&S0pZms)yL&2-GLIOF8Tq0sn}};z_J| zxTU@4_;R~y9h~uv-LbrkBxq>WmF?Vx*YYKpm@_E9u?>>SS>juCe5 zpT7S7O*+MJno+pkz}*)`<_kwZoI-@ywn)Mi$u=Bf)YkvK_8(PVUs{*M6w!&SR1X- zo;y=2RHT}8-_NjgcNwuXtcB?R?A>FBFC6TyA#2|%@h_|mial0g>8t=f1J%Ki;~+?j z+g<20 zMV~ODuz@a+nss5hhA9g`Z&-sJbPcCU5Ygw+z8$m#dU_*MXyzezHLzH#b8rJ;$ySjX z#FQ~+Ris&Kt*zm=yVQZQNk7J=e?C4^TpKyA{2qQ^z;kHR^pQ0rwE+rptz)$6Pvb2G zZ>=03v28rZaNw8gFwdbr#T!t6?{U`?uBTn+U2k>$r0Y4?doWWvFcb(S0^?hNMV5mK zxe?Zhx}sx-jvStswHJvs0G;f=>s;HogKn5roC%wMfgiu_8ar0;#glPgr2=@VKimrY zg^iLwHE;!GF6e=tZhAB5`x`z&^guw={txUO1z*j`ebL{Mb7GAvpp6J0kZ6iW2jeb<}mLq52XnZ(%c`wh0fLBs*=HwyZV> zrMDmaF5qDOG*5_#MYuoif~IjtL{M^eDqg{S&+0?%_L}YOC()Jx&%rpwi1%8Nz@pc z6Iyu`@p=86K(*{eK9E48-C$O@&jh1D#9-$T6Qj|_CP#3w=i!kV+kwd=M5M=MG^n;5Pc|A6v)xwNM zD;boCG|@B|K$SxZf;p7D9Y_~P@@jutKL+=ZRR!)IEBnwF~~ zL@HZHbQB8QwK1Wf{Up()H*=$h5;$s&%lB9hbxsF&LQ2g=5zR(XELsldDCuRdejmK{ zeHf=Z5KaH%t_!XYxIT=1IhzOW7r8$T-bKXWo!hwh7r{_Go5fmsj=?Ww@lBSxymy>RsTeMDl7h&yVjchieE6GGC zlt?PNn%Rk$p=3P#fE*0U4}{~%kRHh*<#^E!hwWk^Qz#bjq*VCIL~sOA-z9b=QXDDe za;n$2=+l$w6lyamRvKlj=z1oc#y{L7Z6##7kS&cABa5=qzuNs~B*NY&xjk+<5b}5b z7=<}xypWtLlZyNwWM$I1oMv9X&xaInNcQIQ`MvC$_VdplZ^?dKaeHdGh(fjisU!~btK-h|(~ZW70|$QWz=4Mv zjqWQ0FE;qs+hG?Y+{bYjsy0H)_aq`7Bp7yA`<+;numiA)<|o})IoO<7Rp#uX2QF=R zN&74O9@sSTn$?DwO0w@=}qhJIR zYVZV9ql^)D|4P1@I7(ePs$_D7XOUM8^ATrnk0gs@)AQ3~#biW5QVrfu)F@UmAIi;E zt#^ljR(pQNr^J3$iKXp|{wwZ`!9Np9MC7j{nHn+@K>+1_<}%?W%-??3Q?7TrK7um@ zB%{;}Ho~ME^=b#YJ)3ibTg&(Z`rV?Zv`Z+vkel`v^h}CnpzIttf6c}eS39ADlGhLj z4dU}v2!s5i*jB{(0iVgao8k)YiftyD23yxCaZA`8wF>2;rLxmBTKgp39-FQg;>@UK zwZD$#t*CUrtazjdVwBvfReUNKj|2h{f0QyLN^(&1YseEAj|P!tQI&(}w;W0Y^f!gA zSkRB*R^+`b7*GC8G;1KEM7EGMLcwSx;EsI4sAM%MmNP?t`K0IMq^0 zxO!0veTzJu3qsqcWCdg}=Xw?`4RN^ijgWMXX_rti$K4^?D>Yv~8jW6PR_(5Ob6UP1|91TuDSd-jz z+%gwgfM9@uqX&<#!3%tJK<}n3Sk9-#zQUHJ?T2EYy|2=j=nf*&dH+7W+u<@YAmg4i zmSTRrpnxoJfew->u zYi37OmENSTL-tt3uOs_>8*7+q2TfA;u<|Ut9~H1|@H1}d?~Bcp@u^BW72I;BW6|I) zxhBJUg>`_(fJ0KYVlT%^yMGp~h~<5xl`P&vb1LLAilZVt2G_b^q9BQRFc%869bk~SMLLU2RLCGeDi4x`V8=o0 z;$r%%yg>2VNV8na%0#J~Kz}JrviGgd*IK6qhA>!lGAExC^10>exU$IZZwvvXG2lg;>UNtG1 zBb*Zw*`sNVq4K6dRmmW;nj91|U;Rk=;Pj63`Q~(>81?%C@11Vu&+nK9w%V`21aa`p z($blj{V!+EjZ=6RF^%l+&l23)L`UdNi*dJ$s zB+kzbtW)H-YqjWic!@3{ESO;PxHt9l+mN+ZaZc}oFURFAaD|DmNW4U-*aIY{(q0(; z3y}@~pwUp~4Wtq6y#(_Ed=VGeGu>`(On=t!NtN%w(xtrPQ^>`meCh>y{=!*2f4#?p zWOKId_XU4kmZQOlrq)$04T-jv{i&RO!9@O7Zxb1RH2lV31*2c~Hm^4vRD+3VG=V?i z2XREktf-|%BIbu z&PB^wu0-weyb?@O2G>`t*hf72G7vpTe&Rwg?PdIQ$nuJ_7<}*==p?)PymPXYIno!2 z#z-sDtL88um^r>^q8B-@wxV~%0n!3OE3m=c4-m0Rc0RsG_k3l8*fqdr(}^A|_;&~n z>|lf0+o3`kiDf{MHq(uD13r6&)xmE|kkDOmsxFRwP?ceCrUSVztzu1rK+>5C8=q+c zdcm!Z^tb|aC(*OK3<9n0mvH!!g$?Kz zxaZK!(A|(+YODEJtzU5_;kq_pM!cTNDlrgR4C1$U+CY&RTng0SW!PJAXxo+R+qUYZArH};UTDEF7ZDZ5w`IitDLtna|9kO7TDqA%rCHD@gr5VJLZ|4%$HXRH9U)akHd zUJK_FCcid!f1|MXnM=64IHSnt6UK@vVa$07JdP-Z86}QAh(JYxF!B_obb#fMuxYoA z+wYobq(6b2j~)ABZE1Q}VbOwIh=f1w^zP|h^AF6~3+YcVqrSdt`r_-6vcO2>a(Qd7 zb5;|6nWS>eGsE3wM`UwkCz1-`h$N*PCnFLIA$hINI-SOXPFsYRCVMQb2feXWGGaZp zYNs1%AhT9%8(uCaM-;O0Mv|$RH;90AYt@K{gTXMMV~*@XG>~7$YmuZC_XdryW?j}Pe*;k@ z?14lNRTUKZ@%s7w>3oEjiSQ1j&Eiy~fAJCpcyN#~-mWe*;hr&?j@ZXsJ}+P!5iO{U zpbTs)tb0e4AYO+fdJAwO%Zi%qQ-<=Vr)HHW(Fw?QNYU>OgrY{eI6A$2G87JnPA*T6 z7Sjf@19$)Zk$dl$vJ(k=>W+KgTbQ1IxbU9&cMEG8jVG<6{~P$+4%U%Dd5g+)?1)2> zyqpeM7*IIj#o7hc>_wFl)sCjk1Gx_yRN)~1z1I4AB{7$+w93YWnc+!q)&02^U;_AW ztgfvk%*wvXSaDOEBR6Ri2oYd4jcuFER@?0sArt}cz()#{;J)*Vhc0u z-@^$)?rcr#P_mxRD)%Ubx@XP_o2V{Q3;+M2#pE2+yg4oZ`zExsd$fr4dkyPX;?``c zuFh-dkz7QkHj?{D;HPt(3q}Yi<9fDCYA&r5BtL>xhMas5H7W9iw$=*#Nh^5rTS_*O z$m%|Ax>%ep9##)8A6DsswJE0&lE%?atb^0hZq%%wS6CvW>lu_7pf4n=)6>=J%#6@O z*V!`oor+!W!sG};Z0{tI=r#5fpjF(jOF3#vgnXg&*r7n%kG#Z6RAxp{QzZuPU(X{4 zpB>V@1s;iLS~AWefoQE_&IABlr+x7a$Y!5+Jp)hX&tSC>Yo&~^6aos|mH{yr`Tl*B z@E_+1-!xc3rVixS0@f7aqLI;9u0SxRIv+C$d=j?p9LOa2KS|F7+E~D?cEeni1NOZF zW`Iie7+CNL+-76@^%o<1*&7W+4FeC}SS}k!iTAt`ma@4D5}(<+-=DQipAyJfzJQWI zA!v9zgTX-9lTqWU>Q6`FvK_%`7LWt!tUnMi(^-#)C3CtIibQ6ma42W8U?efC$)6F1 z{zYLfS&@;$#|X%?)vOd&@&+p2WRY&w2QrY?JP`F|y^&&E4SThGC^{03c|3k4uLRst z%^&u9(mB=RjRmZDUDCoiHGt8s1^r4i;ZE8?pE8?>1oeC$qYfdD#^&7 zhd24>Trap@!Y+nl>I^i=?fsF))bvMMT<6DOf4HHp5hLyo`0k-0r>Uh>_H&yjnos-C zOb^9}Rf$>B%INz~m@C?w2qPW}hI%vMlU0Mygc6n|RrN@Tuus~Uj&L9zLy;OWAx1=s zCi+ui82B`%BsnzoZm((#%zcz=*F2Z%-l3^upWB$Aye}Z;N5VJ#5@sjBJZTk0P&TGV z_9_7}KWf5lI`e}HF_@i=Rlu+u1{Xp1C2peN50q^Y|CgLOBpyR&Oq-uEa-hSIl{4&|le8k3GtEN6Zp z)Ptc-C61et^m`jB6f?L4vxF;96G_>A!4nKG6MTM9-COI44Ep8%;VUqK*Dx*{k!&T( z<3Q9oZjQ~$C@BmiFOvEJm4xW%t`o-<+9xDNQlB9u*o5rJ+a70b&u(th?yEN(=QDhq$)_po3eK7z<2A!?zUuod3>G#XgzOYJ;43XT zowyeng??{iwS9e{w1HF8e7g-`^eP(+7X}A!07w7!z?uMWxasZ$mI)foHbeADGKg-! z5m#Gyo6O(?_7^YE7qs)J{xs)I0`s~N=s{-!Kjf?Mp%ozv)BbDB;UGfkf`MRRc4j_$ z&^`w9^g8X#x5e%pN91$qPD7untadtYQ{5kiKcZI({Hc7pdVJR#X*kJ{N*UY6%B=@y zeCfk55akQO&=T=e@$o*rR|m%G0pPE1K3d-D2GG0&ae5x|?f^m^hvqOsy`K=QZ)e?R z`dLL_&ULpp#T1_xXmsWY1X2TVbe;K9J)k=C$O?b!@g9a?yOr`@4fk>|=ozmU&~$-V z_XU08vMkYMNv6w8oHiIAI%ob1c>Rm8rzN;wYY}U!%8gMpYm_-L50PsUFgSkpkc8#K zWa12v5s=9RTmU;wfJnSm5;Epynd==tj9K|YG;W>jJn>Y(ryjZ^olU3ehmmYD4V&LH zUXRE7jAnVv^!t~RZ0b(gHjtU}9aik)VUM-^;WtLY<*8pxXO-#7h?!2LTFWGm(%BFU zB-4Mey!_=mLtzsx2togU8#=4tnY;O3fUAjeKA@ZCB9c4Kp|pOGXcLpkQy^01sJ5oex);ukZBEMiG*PQz-f}bgk2Tq69Ar$ z-blDVoya0rUC%UwqYWZ&rHMU6fHn50uaL-$jARl8-xLs^L7s){nRZ8=NZB@FgT!Wf zCeZ41u!)vXwrQbkqEJMw7LJDTAF*%{{PZ=klVFtnM;vuxJSo1a4UBCTdJUlnxP6GM zLyj5GNreh?1rA-Z#w_q4^5!ggYc@Clb%ag?wuVq+QtaB8$6O1V-6efGs2}ejEY_iP z4TN?&?I09mBN%p)p@)N%P7;!v&C45k-p!hUopJbt19PN2tcQ$T47$ z#wltyVCBvgz#o9(r{9J-MLP}wbijRKdGLBQ6J9i7?*5x6%*Q*O+JOUa|6iEoO8sPq zYST;vf;23<{syfr?ce_y@QEMdO$Y1t>UW3sKiN`mCaJZwrO;Du9h)|uHeU+C_K)XK>W~LuHCMZ5m%*Fq3rwME|XB=abpb&);`rYPf znpd&D$+jVClN4dIM1l}rmxw*+9<1Y;8t16axLX~beEpR|kuN~(JHOZjp6OeAq2)Vmam zHIQtmzVQvK&BpT{+A@3hdSs~t97ai!Jx2jX(JRvBe4vruOCuzhk8C(sN$1G&c9=aJ2P970}qprjMmjv$nuomV^f4SvpFjAoBH!HVnugHqOX- z9M=VX(`j9ifWbxl1GEIDyZ?+KNFIkXTxwSA&)n;5sk_Q{^QP+la7Xw5f^#5*QE0|# ziep1Xd^Xki(|DvD)sAtMx&Dnq2l-?~LK_O7C#}4n;KtQ%uhiO0%ZTc_LJu{1SZ&v@ z7?&WobXw%w!5*)7oN+@uhrr3=tcg>-4IHoqhBz6Vd;FCURAj^n34Tw$MQ(4se7Vlg zJr2oOT->MaxGS5vs|oNG9kgt@XJkdtTFkoEFD-#~IiK&f8^ak#XTOGVBRSaHJ5vxZ zLZ(!HjrKiH(t^(*ii&VkOlzgAJ7yxy9qR8o1Kg=2R<4c_ULq3EI;$^x_w4c3_Z15J zp5wL(GWFshUU%>f6qh6MxE^pz2;^`zG*E+O4vvQU<;!dEESy6Cm%LOXH$oLAeM1NR zz(!!biI^T>lMpjVG69cy_72^njd(KrM^=#DjaKMotu=5ny4Sz*dxZ#*RHl^!jzAlp zoJj)&&F3d3@{^PNapG&v9iQNlU%fZ(-?%Z2@fwmGf4LXSQF6K9qoRx<5PW-1(K%Es zM8Qf>4?{W-2oN*57u4_1{1>11JxBV+)> zs8fy|A-mE`FYKG#NZp{s^?J3jgS|iZM71XA>H|xyJ@v{-w%cpjfai|5gL1Ntkfo>d zPgYTwA|a7IrE>Ca$xfb$_(x92LDsCpT|j-L__0;Yp~~fKL_q2#WH&<79PMeAfDi#X z06G}llpMLhw~!8E2#bLp^IsW{NT;xlG#<^@&aSnme6f_8(-comOKCEcgL-`mwaRVr zv{S3CA~1=PeMIhQ@9HeC#UhrPbK9Dw#Bs_SdOVqo;}0dqz>knOiB2JJ?j}Sr`AxSc zsNoQ<3S0wvwb3bQ5lB`nQy@{lxfOkV>V4!lb~?4ThMZtrhg@O+H9~2K7w(brw`;KxrrAhbKP$GU2njUpLst0o!sdLkR`qLDZY^6zQzfc zi%Nt-la`$)aTuj3sGcM<;qu}N2uH+oE7YK!X6CgFp-G4N4p2>#ZjwO_PlAv6Z@- zsb$nUtLqJ~&*u#W&3xW$=z90JgR&ev_`bKT{gg-7JwJsu(J*-Z1@N{c{FLPLH-T}W zK_Sjb4j4pd#1~=N0g_c#*x54xCDxJ7`^;IU$jzrw3fI^D{t}rPQ1(6)3N9hcw$|CVaHdi=j%ts`!QTilWfhVrB2&3!Pn!qPp^XwEeQEfb zGnv__*UQ)nV_xZW8PVB6n6E9^SypO|Ky^vub|#Dd*w*$WfK19ixlW`@0g zmsljX16(s-7ZgPRNH}~<)dlc+vhpoRv`8u0 z24oB_n!-MX4MaKkB&;QDA$C4qN~=4M?}(&FP{AzlTD9`p2x3IoLd=@nQ~z8LWm7eE z&!n~2Du$xUs+umvVGJLoZ`s_$?a#k9P)=)Xr=`i^<8z&wk;>pp9?#ryY$U7O1|BcM zb3<&Vf1m5{?a+@?orG&7j=1e!_}$CgV+XJJ?R7;rRs@=Nb9ZQ+lTC;41UXuJ6fSV% z;U+XD27LW8Bu6F|OU_wxtXtGGKK2^ly2#no))r(WoPOVc4TGXj=cuL^Bv_zFkO*8y zB{;AET4s*cI{{+a^zIN zPD&@|-BJXJowZ{l3L+5BPN|lgy_h*QA>~H1-W3drH}F*ExUj(g>}vu>w6q{06e;Wu z=V~KL(ef`%c@QimVl4k0=h2Jc&Xgae;yQ##%e$R3u)@n{5tbfn4DySK1InB;^@>So zIhskH)0}Gv;Bu(PNjRS(Gz-i%c9mXQz^w8U^QXOyMiuo1)qol|@?|R#eO>n-byG_x zat}*NC?22iowBOH02`Gg1K8Zi@0fLGr!(f58n4>g!^mTfQ~ak=su8PMJF2lvB&us8 z4>Ap^gl4^8H!Xd_Vm=gKtLyc-!v=Dr7Ejn%mJ>{b;?oXdcSI2UQ&#uYcD=RJ2EqrSV3_I{2B1ef#S(JHJax z%!V96S%hKM+I)9-Bgu0cfj~iv0fR~>A9OuUWJ#E@Bvl#-I!i0iTYyN{z_A5=^R9@k~S^l=uLU&#&4HFl2e= zt4s`vPwwYgVqbg$*_%R&KcY2Gg*}8i%|!k9iDp8E9{{Of?qY`ha`%6tvU4F8jRcjM ze4&_YQMH(OXygfxl23yV)6_0zx(~8FMdVvWO7uj?v@(fu z_+*fmiWyofVemZkMA%y9p~^Lx)Ns60B(E^`#Z)Z%sw-Vq9{Lc-c_FCq42{e`Vg=zn zi+ucp)K;kigD^RtweI%^*Gm{SIS8V(UN|?HBR*Os!wwoV=OmKhiC^+KARUekxHG6i z_JEC3RTD)N;_~tj)YqVBB`0)rlctLAtDCqHj^oz{ff=p~_ zusB!#@XdEUG&E8Ok%U zP5U?%5ypM%gYiJPx$D=*ZZ;yPL(Q}G>qdp-KEWp_I-Vl2jtROb<1ZIOkqHhqOvl!Y zoDfuq0`a&v+sxaww_t{s1JQVSWX7n03DVh4 zefI+m#6$mOVurDv}$MeE#NNijzmXN(Lzd|K+!XlJUifvMv-6_ zyM4|N9%{zE@J=;o8fDc=`cZ@&>z!;F;>@F5?^MsK rhn!NYTB-fWnWvvoXk#jsfAhCiENpn2VHH+fd{4P(#gK)|J|52X@o5|D z(}GM*xVgJF_kx^8MCp{4_))+x(;& z_94nHwQAH_z2L`=ZSOq03s%$JKNcbMtc)q*XQ`MYifu(+GrP9*l z+xtoC+Ahy4w%u@RVL1{=&gU&vyTeF(6}NnbAZ0?|OP7CrOM2L)JSDQ&Yot5;c#$;d7onXWy;_ zEvuNxO#bBl8J}g_6V=(uJL76l#SC6p_RwjX{z~)<9sx9ML#T z+t)MlLJ^q-BzJc7?EbPnK%kxSd!=CN^(-}hXIRzD4N6bG@2+B|Xj%I1$+I)eWB19m z$M=+H+-FlcuN*|=A8bUBK(4SBP8eW3v3CStL}~yUL!V%c;E!_e9nie#9p+jx?7E`( zP)s&eTGH(ro`>AJn)&e|=z`#Ax&Z(G_m@?c$CX?L$( zyH;Pp4_m51XGR#)725C=&xF)r_<7ZJh0ORgRK$}hKIsxhE(Y0LWSSx>dbX&(--lwR z82nNF#$o+=g(orV=PK)7VKqdHAy)f}XnG@*2Mu>G_gdwPi~CtL^t_B+2P-EKL);2O zZV`y95xBh)yzV{VStev=a14ZEQ|<={cqLR4$KePyrfw^UW?JWuD~Y3l(BbsT*rE7Q ze@^ou4}&e=8@p=)4sZnVck&chB_7vCOA!4N+U)38MvHj1v zlZ0;?@GLdKz<7oU@j$36uA0hy7@#i0PmG{V_y)M(%X;po*6wLU2m)-<@hk3ZDW7+; z9=c=3TFiRXJ9<#~rP__rUbP>A$RXF;g`1N*!6Mm(e3CSW3GkUw zUeCG-e*`6yLAE@v6LA1{Yqh8N2q;%+u3E;RRvVDRxL^hmT!)D}4I7NxzQQPTAXv&< zo+<|v2v2&j~D66P;5WzTcb;3N(9!Ynf&eYxMSm6XK?-HElTm`_e6$>9%$D_s{ z=ilkc8(P{oVI1%AVxqSLdNbgP)7Z<{G4TP4uOo`QrNgApRmlfaZ907$B>Ut5eV08? zm4iV+{IzJbbNCNLpN8pX!&L4b=)kU(xGLXX1(2=EEp_b+g)R(mM>*T-3!w*rCB=}^+?fNNQI4#^XY5A#$4h!5_m+&3j_T| zZo)K7IF&|;Qfm;wm{mxdkVIO~=k4?M#fx~zKi^`2cu~=Z7F$_*`DF8%eDmbVX8xJx z$(Qx|3LWW7Xol}ik}YT*L82Wzxg?=CK{msI1w5Ltl#mEVkZAHDAgG3WgF85xJQ*8y zc(+*{F;aRms)cMd$kO?pXB~DmdGC}KSMiwy3&ui7BJO5(F0Pt;3sd(_5*_Fx(IH{? z30`&c_OGqBZqzjAPd9BBIF7&S_a7q*%ezd<<1O_6C{NK#F5}$9TW&t^o;9$P>LgBtM}=B-HBiBedX2R?H#z z}n*N_}V!!8>zj}1x=(Jsd z-7&T>DRv1ZwI*0Gfv%OHp`U4;*_Uu5L%y;ecm^`DNxtTqk8_Lumj>iv+BY z|1Ve0wc4%rxmLA2p8M%Q(39So(0s`FmQEm%zM7hiCdN@oz~l3l@3mB~F&Fg(WzQR# zFCLTwes44!h{S@?fD%JSIFH-Ho!ae+e)nW^jMffTW6zGLLC)C=E8=n2Dc9?uv17Rq zLJ=K?h=}}%u)n}$hOx)lh$E8>zWm5E1$3iYLLRD80%C0mIcUI&D7OP0sQ7#n3TPfS zVI=Mp+86uMZnxe>2A_cHzM5vA_$3^eI40}40xF@XEL*Gnf<2OFA;q0Hqovt@^aakP z%aznQHSqf|ec1NbL}YP!mxN4}z94cRrLU#C5B@Kf)N-Y4l`#u-1aPM6?y0HLE>+3n zG}TOd_U8k>bh%MU2a03%%whY{niFQq*O;)Us`Qk) z;*EGeg)+PcLH@Vi_2VB6DxboYQ~C1UJ3O9;eBrgQFK`evv8Rvh_^2<0mk)V7lQ_JE zeZ*-i0WBUAA*@HR9bqA%l$lAW4h%Ic>3|U78s0%d4je>Pj{iM~nz_{6BX@Uy^=Y-X z=Y#oEoSb0cbpFTRMGlyQ0Zszi+;R7Z-rrLHkB9bj^OJ(IkgxD>=khy_5G`2$U`}7g z`d2{-b~SP>k^_b!YgRLQ_$o=!EB!)r_-PO@UD8XfPFNXu? zmd^#k*N_Ng?t%FPX34LQ9UQ}d2p>>Q>g3|)V||tV7sxXPd7;V_ypBbM{R6hei+#+3 zYk47Z0iuI<=J5(hAliZ^`_-(PAF+?ynY`r9uo#umnALI*b^j+S&IM927K#PrM4-WZ zk|E2#mOFm8iA21yMs6a@Vza2l5z7VN5=h8_Sct_^0l(y#3rM=34};L%iLNAM=))Kn z?(_i}^pBPUrQTS?l)y8!iCSC+qmZ_y`FKVz`&d{t?R}$|C*3PoeQqPJr(q)=?naUK z?w_~n3u{NLx?YW#9^aT3_lU@&d-Rb|q?Q=&U4i$x`_o%@QrK+>V-bRvoGd82L{E7- zK4FJIB&S@FdvRGXp)9~JM_NHYIU*K-fRqtz852ZjO9gWW_>^Op*m?F@E#*O|dP+-V zv(>a4?%;GaoBcopDIF4tiz@$f_YZz>uN3fRv&HM#$PkZ593o@_w6xI~=OYEr-R&pE`u>%`kVk}{@gQ8X<95j?A4`w_v zB#Xee1yTqQzW`Hn&pkl6Cgj}jb*!I-nQy&)<1hx_xpPl9EX~{%dF^k<`&~<*!x1&Y zVxh3_$wTvdF%Uc5-La0E8KA;bb@BAQ=Jf)-OJ)_4No2pmPu8^Ca z10RbM|E8S1P|jiQ>op8jPIZ^i7!ZXzjEu{;`>}J!($Ph<=6;z`wsn3_G;-{GH2wa? zz>%|Xo08l{^2b&7J+7k?t`cn6Y*xV=x$B6AobMH${|$&jZeD~=L;g18v;(db_3Z<3q5t~R# zTF`C-Khn;YO4&(eb}=PsAwi2TSu7@fmUf4ywxi~`L$fj?g7~^mK^B8H&$MOZJFQt| zGF#HDQr7uOuQ!CK5NmUeQ+F6To*NF&MU z$n5)Ne@~Y$INH6tob-FWx%|mkJ&G?&2vdsVoZl6Yq0S#>)6>OWYA6?#Jkg{*8*)2p zeNWHN`h7hd4*42H+!xj>;!t*DrjP?%pEEg1wX=%aclfPAV`A54Gvg}0}>Ukc+@XzeSH=}X{}fy&f_ z=@0+Ax1|+&LB=B5#OM6aWmYSFWt>|A_;?zeJ68KhB$8YEv>)!K28&n3RYVc{?*3i_K=>m(HfMU_UE7)}__Tr^A`W%y_X{ zCD>0Qk;F&q6XD|S*$sQZt3TlOW%5Yfw0$}ZZq#o5^7c(eNb9HmQq0Y*_7|F{1EaiA zyMF{gq*IM)dkTWiM}VKiTyKoM@KkI&^1TR0#EkF*L->OM5jU_HoY`owEoVbFa&_CP z`$zqC%dYG3QLBZF_&>p!f^Vz23A)Ehc8vvZnohMkQ${*lLZW7eCuL+j;@RWNz$R6otF79ze2L(FXpWQ(Sp z5~&{AvIhddq(g-04|)@d9)!<2 z_?z#pg+u)CGJ&$54?9=FG;)#5m|?y(2blWzAeYcyNPC1cQxiP9qpRL_l2amY~o!>T$52a^;=?mXm z**jZlc$h!k{U>h}3GxvNs8!bRrR-P^AdLE*wQO;>W!Utk@$_u)spHT<|LD^P&b{vq zYWD|ecGe$sQ$)4E1GizzCNwalHXjUP2yudO%!IufC=)sf5%hv_2M1OmBv*#^p(1Q# zpCL<`WH$>rz1z{XcZOjSi-bRBz0cp~2JasTYuO`YIr~OoXGwxV{p4MKSk)}~!RPdL zi_T39o}+71{tKcBIJR4)3H$7(wA5E`LI=X%dNjQHm#}f)=C};*qnpz5s{_`%n^5(J zfk-PpXF_+-afX1&!wOS^$)h)O*e)K4Cr0VASEwY#PVWaIwoJS&YJ&*+cn={ z)--(-65YSjY{k!3_3nS(Z3ptQH=vb|Ri4{vE^-s+j-+)mIZ9TV{g^N-dUmb8C+5w2 zG?io=@E^!IBu6RO1Fk{4Dx9_0zjG4O7MpYNxyGPT)u%^BgWcu_;#KoXOCK_+{(Ake zIn}-P2J<{(nz*h+nDsVxndP#{782(+T9_M}s6+zK3fV&_pdNY4c~e6xbct-XIZL;@ z!O_onH2-J(=$`-AP*ml|(6+NaDILIy6#V#rL<}rWAv12!GIC3_ z%r$OCLw)r|?TbZ8I-^*Vw=oU_EAnPE46er;Q8Tm{G4;el#Cl9(cB;;LME#@dmgE+T z(X7Tl;CpXxJ?6_1z8)XQkI-7I&GgsedGihV_x4t!Z5$S>@#u>qYxR1mw-V_b6h6%m zBuUps4Ntg$Wb*d`_C8>EnNQnxdeD?|wXpBn+)H92%$ag>?Pv4$nB4W-i|9Z4i!n* zzab$YYX>^mWG-Hk1m#EYcf-8dXUR2sxa#fO>ZDuSw)LkPIKXvnk;P>Db%F8QX7mni*Uq^s;1RbqM=&yO+X}eH zHjClhQ$0p}l&>aZa^OV|}JI+%NkkYl3*#c7sUVY@623bvR=iZtKSD4@0OwdaK0>yOyK z!bVQ{+Ee5+*d}8;>d6~-T<-QAp(g8UykZKq1cX+EH6FI>He+n?W+pi&?@9wFQO!o>5)Qkf7 z5qcFOno;tSo(Jnk5V*K>L{*Q#x|*NJ=iT10Up;3O?oOR%@xd)_XQxu1rr? z%F`F=(-UBWG=D-?q}raCKjDp`;58n($Ne!?ie-Q!7dwEWqY%IVC(p?K)Sm92Pt^Cn zL_rGngFK9oA}(;&nELKNf!*&VID_7_^L1o=C0W^NM^vuZ+)@=zJc{BYOR`ULn&fyP zLe_&L54ZhA>=65&iTlq_zK4fNz`=kkwRhL|I584}ke#?XKY35>g3VeK5%H#-c9p7i zA$++<7wIyTHz4b}&-EbIRs#`Y4nzcIe3&~ikz|LgVp8Ks4Tf~0yy_x1yy_5>fKvJY zsCyGQ$F8$ZR7cy@b|qb1-Fvm~OO{CI@?AOqE8W|$en%mA-DygVKW%num#`+w)$ ztEHB1+wJ_`?^U;?t1Ic8?|f(b&bRzOSirSONYRxR4B{|~ui(pe&$8{V2=sqG;EE@! zX|JpuDpVia*?HdZICXDIhJS>!A-Q3ab81e*pl5f==XZOY4X4Yx?R*^CWPrqd`7r<; zk`s!N@D{an)ng=plk;D6#3lj9#^=lc&?XZII4f?aLN}|GW{*>& z72<@``?@N)YZ&hn)G z8a;W~_s~X7Y6pLf=)044Epg|d(-WqX3DSUL+nMnsV=d8ztG?Ly{FzI(n zt~Ern`NH9**XuG}(yVj*W3PK9@mwmkR*zsA(Rk9QwR{l;&F1{hAe0ndtZU~meEp## zFm=0*IQ>5K>N$_E+%)zAd-PkYhJ zrujjo+Je-YXt&5a4Ki_)QBkubP^Ygj9fk3qEX*Kd(9%)65>?t);m?wvXA%8Bw zqwFz^#t)ID69WY^pP&%GbED3wYAmiw7Rx$rq~aV-W&>Vay)EI!ya*SlRJo3D+cOrqO>q&Y$Ncm+t#ZKc_QZa`397@hr(KLzU#l6?Z2TUaBa?(5)=!3k8C*FQ`W^H$GNgLf$)) z;Eu$zgUd6k-#i*g#v<=Qs(4B6go;XKDI7u+h8zh2wnLSpNw#AyRWwATjLEVRc5HA7 z`yXOj;JkytItX&);E4!MgUsY2q;;_cIH*n_crjS5R*P!RRY^iT(4yI2NdMSOVJWG; zHO(TPc<|^&uh!DkLLgCS_z`-Ydr$hu65V5FI_$px38>g@Ir>jvGm9Yh8P31(0vY+< zLHl1tN~apq;^+W)1S-i2tt8y{j=&-Si}7zhi2&Xuh$X7W_bCEixU2_ORK*{YeSu^k z8d&lCJ$&q{g}Vx~^3RkipYTZvzKrN@`O`o^xTwp^_);?Fm;HVv-gLex`?_<6re)`T zCSb|l{|U535ofasPg&lRAcji_9Dk%P`~=Z?)NklUh`bbK4tpN1$$JpXACiNFS;UDr zTy#D{Q{Yx;kbI$Y(fre)xT5=vApFkcPkz-MaqE!M=3SDfBF~n~ja)S!%_K?{m&;Yu zBVm`j4)d|9JKHN`gtwf2jU$14T2U7j9Z)Kg?-MV&QIz7109xfEmAR~@CC=TQO#~{8 zxpl;|G*WUTSkZsC86RBRq9N@CZ{QuJ=22%bGw z?6!(I8$;}28@@;npsfg}h9}jiv9SM)nh1AYlAO>;pf&3d+0p%IDAEPZ!*K*R4^iw zcP(5fJ)es&XUswhdBwd>_|Lh$el0y;fA7*E28-{5@#NIWSZF%ohNJVTbe{amkHzH0 zj5i^%q$lVNDk*0=AMgM_(#QPSg`6Bj{=NuOh9_fc^xk%TrmcWSiO(--6{uLS)?d3~ z;kpw@ zfn&1lENKW?jir5&VEz1}94MFk;VB>(t^52`FmH7Y)?UFNA{lL>8a06ii1u!tro> z{DW#qi}9aOVb)LT5*0T5gco+D*IOftsMu%zC&u*=jOjaYdLY~kf;|G*7unyv620Xs z3=R~u?$MY=?_#N@uMq+TT87aN>_m8!l0Jf@Xe?D)#^c6f6waK;Iv38@gArd!RRS@s zRIRx*S*pu{VmTOEI5!oD+MlEVLmBjL_a%U zAN|ZOkbe?NeNr&yStjWvN36`RNk3}CAgb2Q zwe+XBtH4dQ)Eqhzi2k(OdgiriE411-HDdp)e^c#S=MDIv7wJlw}1ggDFl1R&lWgOTt&_cA5Ipxf)B$@vk1!&y3u+dRB_ZI zz*RwT=9!mQX!GSMGI>H~%7e*svOp#C9|oY8{@7*ldNq(s2i%A_3A+R7T!7wr5JnO4 z;N6DM6a0-YV_x;Cl8>TP6%Cm(wPmqZ9-t={yq9ZJ*;65Q>IQJ2FtqtbSpgO~LDx-Pob+El@D?wP7XLe!J&|{`H<89XvSla z!!k#ADConZ(5H#X0)HzS+8cFp0P z&Sj+A@=Kk0_P?8+g*(jVees1$sq|y3E03;v`KJ|pSdBOIq|%`$T}fWzKDeDryznP; zR65$nhV6rp$ut4HO{X6m_sFb82Y?no6;M;NDl7-vv> zBS6HyTo``LHX4UZ_qfmGnn=Q(Z063m?$DLM|4{-I2+QODFd;bnK0)tW{~LSmY-_sS>Gb=ixwf{w z-RtS}O}*FK-d=-L-|u%il)#hAN!Hngd&Rfy>{BY`#(;_+@yk%LAYMu=qOfpc3}GZ; zJc$$;4dllNL;Wkcfzr{XO+k22YgQ^MWXSL$!1kIW9B?~jo+bm8!{ZYy8aq2tzOx+7 zJJ@k>Rvuy_0nN>0XU(7p4WM$+VCH179j=h;({m4bNk!6(9_wylt-@*roOa5}0p*+n zp;*X_#bK~_b^vsMkEwpNA2kAW1X`Rd>2a#!;7OVi7zf3vWu@JM!K93%no+`f1kf$N zGaj#2r;B>v_l8%4?NaW&fnfBCc-djDj9RWFQVqBDYMQD)(xWHa-b3*rCGu&cbjA{P zDw8c+pao?7!b1dCv~i58F1PA*bkZdDT*&J=j&xic<5Q3GT+5F{^1;E=Z07h3W5rND za(u=wyCebhnVye+m{O`e@QBA7)R|Mt&&=cl!?p_=;Q#xIs30%48&LwJtd~j5_J-}Z zL^8Vpt~eOaj*SUcRA@otpg$CDD>V_tj{e8IV^`7dNR-k8)CxKo&zC!tn0u>3`LD5| zlFi)|-Jkp#(z6bI=Kq5I0_rI^rg2tBS7VDbbSy78!SZ*tR5;f zW?w{-ij}cVDUr4Z>l7)5P91DON#SQmjgBxR-0YZ_*VYXPkkK{*z+9%l`SYg~TVHNHeY367v_E6XbFVp
sX+%YY%(=+_`g4ouxnX+&Lmy@MRPGoSm1=!HP-|hI>AC%NT>mY=hncCFmq{ z5v|P>KgV(G$nLd=HqmCHWs;u3wjgF}OANy++uK7z_L)Os92Z+2^pS@6g$|d^M9o7! z37YKnf17ozb_m`;@~h&P;Du>VIEM5_%&|jT8<8&RrMX9u)O=hp%aen4N=m!HzzgJM z;13cJ`Ea1;!JqK~M`LbX_75&oJRC!wMBtlXxe^bm!%0tko_T4`Q6M>NoA4;bIFPnC zHV}1)CxoAMyA9AahEGH~X#N|*0l{)<8L*f+{4V{H{~T4=dm#Bdaikh@xPY>n@Azd6 zKd#fn6{8(eIXcKbP_>#nFinwBYNNM?fMEpZ0_AC~hnJ77t*vWZ9O!D>7zM~jMF%CU z#&{v~l{E$^zZ6COO~a?Dh4xO=Mq8ku<2b=B;52|W1jil{xo872Xd)os^ahuad=l;FbgT#C-cz(=oQAyx;42uUnDZJkhVh){kOM8gW1|KN z99(gLO^V7;734R~-0G1qjOTu@(Z`hQnj_BDCx*nK@&g5BeG8FruBg-rIl=r^n1_Y`FH{-`Ls|A&Q*kAdQlCNT!~6gM^! z>>|g{t6iBjlj^ zhht=%fPKe_nA5ZlaGvrOk46a&x1%va(`jN(!!AEQMraG?V{9}+==Y=XK?RKWrx;_S zu`yo2aAb%gM&p7PGD!#dp=+G};kXztYGPDSag$?06v$(!t#wY!*U|bwywT9I8;=H* ze(+d;Ah&y!7_AXyj)g-t*{jmtS`Qut`_(%d1H+2PM!@*mY|T+?42;Hs=uNRN5YMn= z@HN(2GqBTc|^rQW9wi#M&nBe<`y9nV{A0O?LD_;aYXF7f&Nap@CYjnBy{BAwTTGO972Xr0vicAuNDl*Fh`+loedC@D6XpHs z7_!26$v-yfcwqD3ebAJUwg=K1=`M|Bcm~7jCU}AE*`9o@a_cJ0!oT{%4@9*O?l5>1 zVmsojc&brwyZ`#f!@jQ%o>#uy4MMMl|CrW7p9Fr`b>P≠v)eWq10!$~{M%8S%z0 z^B}rmYO=v-_t5>NF;?uVMH}Our9=8S`oRYoy$$LGgx-=4Z#L-CDOdzaB}l_gfjThg zA)W`$sLiG0Fs5=~#3kU2)cOK|YR5H~e=;`*9M~vgd0Z?Scrp-W8jFVB;W9qtRdPni z`Kf^BJ?~2Er@WqXm~v@V{p+G>7K{*V=|(6T4Sgf5Me=baoGhzfK=#}B#@^wF#cN!5 zCm|DJmQV}erUm2kavLV+Ic9S&PN|o z_!JOp*dH^em6LdkZ$lSC;trX^C=7?7KVg!9Y7Vy0+O~*CdO^eyU8Lk_-r(SOgI*UP zESw&vKNDdqk&GXg&j}WBXt1<;!Q+zLl&aVjh)M2HI2>|IJXfl{ruINj6u4hw8IoZb zgk7Q4#1_MLgq`C`r`H8udE?s@IzB|O(TqhG;0eyt=o|1JPw*dvcM>KXp6q;8@K_pQ zZhCB%4S~~G=3FF)d`_XF^EUTNHJeB(A2D*5$ruLHpr%BnfK*mgx9ao8T|is+1$?pi z{&&;W>PofBR$)6k4)d8{IeYeOBx@|jl9k0^pt2Z!3;}Yvvp~#^B|D--zyH7z$LcYu z?3JoUMIWD`WRw&vhd;63iui>4z`tEOW(l1^<}2<>TIZQl$l;b8F8NI;Org2MW2KF! zHa(LN3Eu!rLHrhhcj!$h>bd=l!W)h}u;zqcu?&3VAmZ2HC5b>jTm@90o2@GHW%m$wj&!V2w|HK**= z>AvojomwcMS?dS2(}flGL9}$AM8@dWNy=YU^MzevtjRy?A8Uy7<+ooL6QIx@mDL$F zNqc!bKp*?Chy5nj{@>zj0ObLrtc$l3(l+qJ$&Z7>FhK<1lY>V<5NectJQXe=!?;h( zm9~9W@Ng3{HYDyUL|S_jI`}SPj6wDeLNv-*Y|EyZEzjNkA@n{HfmMJW4fQ>)2A=?0 zV3#2-C6;8{bZx?(h>?xo)lVB2$UJl*d9seTSB0k#j3W(kMc>1hQA-!te&g*+Va27a zy@$}ki~F^ZgU(tm!q;gCL2aOQlsbtA?y4k$SPud4k6;yAYDNtn{4Hi}G9Hg>S^?Q( zld3xSjZqV?QFK4zLLKJZ-Svi!e*gkKa{5Tw7;ik1%Ay1$jK!b0S|2qPsS56%%dZ-5 zdCSrXTn+y2Jc&W))x{Jryntt#hLPQt1Gi!Kpj_pc=7=#uUqXC93t(gbjy-Vig>10X z@87ccpBEVy6gn`V0fmyvfc?z!4WiTJt%x+ZA8R#vE$~LeS`KLnFp_+_ldq75C=1O0 zu{&5c_?k^s)kx<)%2)W(Qz*s_o|uCVmd1@ zWQmur!ls3HK8yzhF9AH%S3s8UYC2w&en~3Et;_F8C?QoU#8b6eN-udzda+Btf<@gF zuhvVSN@;ZVZ#VfdzozXbZ_roS-rKisx~-7FM(w10(%+%}C2wC_>U-7gJwhTN{Rg1m zO}G5B6G+kQ46ZUU)~umgEqjvWF0s(B&r7xH}5Oz9^PM;(E*MRCukm$1CFRh2U4S;Qr0RQaPm=L0Qii7D>PstKS5D9PI(kF8 z#$onuNa20s2W*UGoXxOe|Oms3Qb; z8xa0NDG^EfBqs*hVzrP7`io(`p7HyT=3-h87yW+@hZGD}{0C~e1rMJn%5coWFN#cu zN<_3lj7h)aD7cD{Lvri}xa5Ln%?bk=)*G>wH;Qev!t=)yiDUDT=c_I;HwSxfbfp)Sl#(hXGXWV(gLn0>Ywe6qr)#a78=Tl=Cv#+XU&rL2s_WHBQ*Ppxgu0IDYKchj3SkMSO zyl6e(O97&V>1-ktLA#cwKX&{0ys^jEFo!}Q6!aR2@r()=({|W{^_?8c!>s#AM6dNCCCGVG-|QMdAzMG;;X({Fyo}h~w)WwfFpM z(O#o1wd*IKnUsuI+QwF7{#YV$d_MdNTQ)UZI(h#=U-W&fEi{&lq888xlq8Dpjig9q zj)3&2g#U5z5;%GCBwHE1r`t=oNBkL`JxBwZ0FFTcD1J-~>`85Jm11IQr17JF7*mu@P5i4bWBa!})v;E68NdtlRsXp<_gI~Eb^QTl~FnQT<%BjbV>I=mU}FBe;|lO!ol@F z)GmszBD9Pp;6fb3*gL~VpWQM9`tVlaJ^iC2y=bC^nm~8!%k$3K%V}ja=y8Xl^DAfP zaw}7fLcU&KnitKLf$}hHuRE-~=lV_lFe{W6=h~UsbFC@3E=IL^(RA50YI(@*{>g(H zkFkWYL-8dPTSmBdFhQtL-U(~b2}(ACh&Ln~0Z{xUh|?YO(qQer{*=&nk?{F*}+li)>m~;CH^svFH{_c4K8)l*!K* z=R7W$k-m^*3-XKv(KHu>)xa^p zr>B2pR=$)|*+#_lJ<77z+~5duL$u6JiFi5-CfUbt1>qhOw&76`c}-RtQa{B(;qi zmg4$~wA7aBdR>P+tMlAZ_mpcMnK@m#aCY%<;-7pmU3I@M_#Qd_V9oPSvx`}8)mbuX zu}CV}Y$o4Z^_hX^lPO$2A;%x6dMLxxJ+2FB-RW}W6NeYG;s5QYt7(7mb?)bksB|IK zMhTHv%_upm-iH5fl7=6u zN3;(qzAbTIH;?`z#S9Ru@8HD@n;E{|yC>5uQ(ox~+@s%j z-UbEl4%E=(qpl_rs!%NMqGg7kMR(DH^>cy@99ckHi)(2WDCVs+jgvGXP4I}K2cddy zTy9Vx2ppa#35$=>1QOv4PN5N&{?o?${7cMFI_ptHO&hD`9)7u6WY9rGO&ehWL*5;O zh{a9wtwp?$0f8?GlazufN^hm5DXE>cC_#l_mBHVO?ljm(Cq!Z~;x}|9xlt%=q@umc zjZ{=8C;tYB#eZ6kX#VZsOuC7y2xee~&QIvb_K2B?Ti{$%V1=mDv5$-s?Bgi?=ZD?t zrnRZZdfQ+gqLe>`4}W$@$O9YjNk)3+OMG)mavj*HPQe-Mk-O`yYuNk{e?g;Z#1Y~Q z&ZmeYqt3LKUe2FMl9139kw$_uh+0svzo!u6%b7Gu- z^0Rih#d(n;qJhy$agH#K6AI9Zu*`u~LNrE{QN1M9T4j;03uZoOD~H_sS|F+fp9(~y zfy!Jp1KaoD^Q@;Qjp$A?7E5ljE8Ebix2n~i5{29HGn5azXd%P-@Yd$pOq=S4Mi6c%EQ5&iP-3_D%o(R54(gUpe+_q$Jz$;jtxRBiL z{E5^{DoXNlQqlBnzT<~HzChGj`RqN}-0C|i$V$WX!MIeCPU+E3b)~{Q@o+4nmrmb{ zZ+s6`O*#XyS4Oxrh3Nc64M>|b00?9aDlr_on(1E-FkeGb!t6)WgP;GUcY0m21oWq0 zmOmKqnO-^A{n0f0pTzik9{Iw0+)&mI^5^l;hBWAB^8ZHcSVkXrCDuI?Uuj`m1x zrG?#F)1iq|5XKMn^_#HDu8Hj?sr-(wym|^C(UWyRVJGSUs5K?E#&#@L`4NP$RmnLj zd%e{%pK*mgM)iq0*zHvGc7I`^KiJaaqDDUFhV7t8G_IW%H361-a*wUinqrLaD#u6) zC%{G8cI`$!HQZpcr_sa@jBTnQz7}-<_F$V!0n|4{-?y=^ zy%DE8%HUUbbZ7(u#ThGVYo!jWv$%#_+7fSoIf2hKym2iVi17y61K#5i!A{sx2vdwb zmCD3RM=Q13bUU4h<#tpVv8k?3QKoY-`cumP`l<|I}0P zXcc8jq1U^#a?Dfo_Ww3e_;!I63WNW{EiqCBJH2jpxKJoi+#Sw99WG-z)V86(?p4M{ ze3cL$;m?B1LE2!0mLk4B@OkzKTFGN1ku4HVHy|DxI7F{D;3;(S*xP-N!^HO+jr#o5 zLsRqhMq{Q?d$fk<#@rO{OwHMM)@ZhGn}pI}X42_QZ*&P*QQ|e`8mD0segl~22%$!O zST8W@D3X^HYBpd1<(9Ms3%1U!=N*I})7h$zc*mu3A15mu)aVlgX7=fWwKY0z;R9X` zexBkI53V zv^#9k)9$iO>pni@?I z3lQhndPl$J*!H>$1-BQGTpaUG?7fDsHeUAj&dxP4Zv;k;Shwf6&!i1BfYQYxz6U6FT$~x=61*h*#l-W6 z*?BdSQ3s#J^RICMgQsP=OMH59V!MCF`kqR^8N+1li*I2J(7tHn!Aj&0DEzXNqHCNI zhP4#&-59_-Sj|hTSno=!2vXky_6P2Etvk3)!^)1+C!I(PS}w}22zi*aB4S84TOz)= z+~f{k*t{g{UG#tt8$A$?i!{|znZ$SEJ`N9n^q@ul1MX7JlhoV|PtIeGUHfzH+~D6} z*<$AACepM5mxdgJ@I(H`Ul0vRf7E8Qv(MhoM-%ls!7}2Xh8Z9-2atve8XRC3w8}ey zKq8)r#!IWGR?G2dCZ4#0QrP=Lp&Lk;!o_`RELUPyXpWA zg~}CP60|E^UgZdw3RXlQpSF4BUf5BYkpYYh=hWIJt!r3?y__J@@4)=-tGC+8Vg{5)62 zAWSdD-tfiBV&a3LVl^L&M57AM{>Y@>QnYB)P3oPG9yakkJ^qG^OJ#ljgW<@ZV#cF^P#@aI3Au%hLH=De1`QgUi;Scu?O=) z5Kf|z$a*jm(WB9K7(IglzvQy{50mqWhV_p`@eMt?DPHs*RIBKBzFxf_Cj%@t$njeq z&RFQrh&N%UK}sBKo>)APjz&V_h7zB*@gxx6g<~eVflno!P!$fYRgVWCX;qBW(yxl`dT-^vbhTI%Qy7pe^exfeZ?WG) zUtFiX(0dM@z4mSID5Y<1wzIclv|6}%@n_CsQRmBR_jPL@wfmdHyu$kuG1hv^=}b^F z>hn#J6Q>HeKRSyNkQ1TPk`ay)L&EhO!K5UrL50DU+<1n6IX%Olo}3`<2)h>ww3oO% z5$B<)%8F-ZF@hkl#Tm~^B@%IRl_RY8fc{Ccr=YU)A{R@Wt{6A5 zzDAaN16@}q^F*Fech|WGEc@cGJ7dX`FPV$QwiJlRa>-lrg<>{m zq^n;@#+)TZEhlrze5#5thIaXQBA2_%y#4SA=;yysN-WPSxnx;7mtQ_+-j&NGj+ddY z=Z9ZleN#RrpfT{;(wbnkRx9c%$JlS4Yj2<8glS&%2LeFJ$6HnHm2 zk((vh0G6Tq7rHRwpHPztS3W-CZB@a@d3-nrdWqPNJDr>AGHD0I>$3WBR#~o8QewdW z-Neh=q7V2({s&^DJxhE2_bd3B@_;0zDwSrHImMvgCPg@mJoXgebnk%fzJsv1$TCRU zJd80hLy@bBdkBoZ$56Cs98TC_hAXyx=CG%npksrQ^O?=%hA*ekyF}S@_{?@77>oyl z0qX_#q4(H6@n+S?SKAdOqMUpEozaL=X;<@x`j$Twd8`I~@yd`0jD9d$Z~Ewa?8YPm z&@pV8LUJs495T#SaZ)fan@B5$<2e$k#B~T8Yg<0w_e=g;3n9Ps{XXB|58;|0C`fbp zXySgwNPOtWd%Yj`MLcIbnue#yztWU!y+Z=0X9k@(%*zG)3=!t|;gyJ{A znU#CCjOyG5K9I_-;h3q^L4XG2=sYdOMHp?(s!az)CvcT|cZ(KMj=p!zvB3`nM8{UY zzfMl|0~|)_W1t>&FLf+B5dXWzjSJAr4cn?f3wjtiWbTHC#v2`%98Zo%mY+)Jx)gbo)~Inu89_-a@VU z;9DPT)(Xggvon2iYU<=Y^z=tbK0n1={c+0RT`-;$X}N21JdFPrb-Jma3aj)^6Hy74 zt`&0q(wU{y-80J%Hk%JF&)l6_TCxg8=}-ZZZkeq_sZ;}k5WSrAhr?<#dV=2RdKK^D z5##_x_GE#b+~<12X`D81gXX-8Tu@Iq-syO+VS;xAM$ynwnvSLE=jglfYv6WiK zArHoyu&BhnE@2eIJ~q4%s}ELeTS?#Ed&mB0lD#t6S}S~uo+z|G5Vno%brsp*Mjap8_e}6QtXLS9IdM=K4v-C+;H_?d{3?g*f zt<>EQ-ksu4U^@P9hYXjjp!&)TgE$7V!eAH ztZVtW4lBKVex`GNj<3z+(Q(Rg7JhsWIo^PrKbOFJdk8n}3o`18<0j51?eW9*FlfVo zlXhE&bhWYspNRG%gDrW;^o~V4Z&FA)+6G>fLoT`06O;j z5Vk5i>B4>BC*Kw!f#Mm(a;*cN8Y9z3M|{|FlW#x*WzYJ3emR4S^#eb_*yT=3e19Y! zl3z^Q(Lo-9d&u)$9nM;NShZk|A9PM#A8jkkhYY#8H5IL}%x63@125(?P zC$(fxY+F}FjLValla1B`&C-$5FW~V)0bHFaATp8w9xsZoUKH!aIq~j9vQ}A&h93_{ zmnyMh$WuG~(Ze<75ZfrX5ywKzSbks`{}FmrDjh*)cH)dKUVaOFqo^7Y$|;L?@5?Ne z)nX`ARLe^dxmBBP;XO)aY)tngV02AgfA05CRR^Kx4N+i)e;>6 zgfxo`E9~TaCgC@gh~yev1`HSo;pEU0r}5qSnX0O)dRU#wS!3+fLbe$-Qy#X-8`EuE zbKr;c9}h@Gotb>;P$q6lZUk}YC=`u-!DPGAi zN9_QXAw)=sPe9}b(_1`lm%ilT4)i$55?g?MYp+oNa-~1wEC1u~-d$|qoS|#z3svp& zTTD~Kx*Dej9-CRDnWkd~;&*)$wnX$QQp8Y~^_{{0HfXTaDsC1q)Ut_07B4tr7yQvM z6hzjVauw_F22N=?jH?!;bwVWPr$*R+iTj-Y=nmLXcoY%EA-Ay}OReKh!YOa%oOQVL z!#N2d$%fa^fcUQ05r-@h5P72!l44dR7E*9_>yn*fJ{VPBypE}uCxxaa3u9jQ6 z&jieP_W4^DbG46|o@{O!P*X?>6ApL-GM$o0RzT*Tj89$wCb`G-%%5F5JCE1ZM?cNK z|7(Op{#T+DDiCeM`3XHl*uyT^+^1~0z8zs??c-X4+Psq_%k~OfTOd&my8_x3cD3JU zS{C|W-;1HR_mETezwympU3$|S{qi*yo-(yPQc_Ng|kI{xT#||LW~6l!-x`Og#{OjMl)V-)K8s)FdB%#IBXHCL znkbyL1Pkz%pENAS)Y~c&8R2kF*%hv`nJ*meRC0?J8`N~&>ls|Jx#M|n`djS~(yht* zRq4}Tc(|EAMZEZ5>AF*}MtX00u+w(yh@=M!r==GlT4FdUHnH!MzZlJX3lE`fw5#>z zFg+aJl2;jG-^b`}ra#~!HmtbuJ>4zU(}RCD_x?FShWqsQGqap~&OCIql%Kab_7mw3 zxMiQ)`DHogtfyOBbAqDKscr91mcPq=jAw= zUwS!Q94EAO16B_8-kZ<|KrPJ5@VOBIeE>3n9s-^v!_x%mCE7!cJp0P}RN~AuM7DDL z%tL45Wm{lBvUq>4`W2xhVUDSM1z$NbYoyc0EQu;y_-RzD9pNq|)-KCdNHjFb7x%_= zxRyXE&WpNg>!OASm>W=bbUt|G{E^`N(Md#(gDD+s)uNgftub@vxM>1rLpZls_6+iS zBhA@G$J-n|$FrCxq%p?EgeOfZ0|5pjQv+&Et1e-=t(TE`8vgaz#o8_81+d1!tNKw} zL~L39*R;iB$tM?aEayFi1>B0y17+lM^v;@HqvLSRd+yO&}Ro_cG zGjAspxJG9xKVm*Y-ESAn0{-{nFx-UVSJ&L$OWw#i`uH+Eo$Frt-IFJ`PM-WBS=~}) z%f3f`3q{&{p^@j3C2eVhKMnT|gjzz5LAE;*$>3RlQ9)w_meY3EA6i_v_r5n%!Hse- zFh6rgV&3C)1%rXVn-NBfncU0_>xKMpzVF_JMO2Suq%LV*zhiFR6ZF(8@V=YDSFG=j z@#bmnX~#38R!dNcPY{8_?j)I2AyAQQ)kKEHA%U#lC`&%?{M;Qnr%U#o^U0iK9BBu? zT5$T3VYJIkl{BYK1PFdg_Rc5nn3;EnJoOs626F28k6$th@QVFMS2*coQ7t)X&)5)#rS7{txs6jjYS8$7e(Evcy@?j$xe2}FYT!s6w z3p}P^@Xy&#r(c|nEgzcKB}FYfz;&V`|02oWQJj0onvNO7Q{WC~rll4=hRy>ahe3xAKVuuloYeYIl@{TE2jXxXu=R>?(Z>*C@C+GMO@uJVK#2Gqu>tJB z2!CgS(wbP+b1MJ=$D4pS@9l_2+{eA?Cir60#QEachZS_zpo59cE^vkQCwbBBBezYX zVRK6BO>*Lc4P==SWD5WFQJ;|P!M&!)LrSHp@Tl5VRretWOcEzFwuV|a_U|0Z_~Kaa zv8^7gp`zwVlE6Xyk(*8{53n+*eX+eSuRz|WOK2(CuO!KnWCpf3 zJ?1Q4)O9k)(M-bZdk$7QZk9{0z-)*6$q(hozl0UY>?ZjmG1oy*1FSh0vq`m-4C62ocktHtN`pwbr_X2#K{QCxxsKqHBK-Vr4#gHYOpRD z6LtN5qMK}oWV`^;-(`_{Y)JgCZ*6T0gCf$$a+&?0z#NaV3G(*L$0#slZIpqF;S z6E~uFg32N7#>my+K)Uxb`)k7U;5xML&+I3JGXjn0Zw=`ud)_4d|_u8pEeu~#@gibk43;e$uwDbVtmblM+_TTjJ~Q}75XMolyQC|;ELs7FcQ{fa zqX}rnZECi8+&KOlZhcmF1@Y5*Z|0dlqz3l+q6ecPZ!wnC)l6xpgc@gr_!t4-Qt>_ArYc!kiO^_gs4ZB zUKhT|sD5f-uYve8B%(6SAN&V#3%7Z*y17!VP|-K62Cw%44&3PW8}!{ZYCiOMTV0Bb z;=iDmnxa<6SWc#31dac`sP$bR_V#h0QCs$lhvZq(p)@`Ue z@E_|s>5yMyFL7Pn-v0a!w0CkfdZqnp%#zSAg!)(9>aWNXP#m z*+6Km;cm|~d@&9w4-pR(Y9WP`NZeC~!+I7Eo`H)dG``3+(i*qoi_Yagrg=;cKHfd8 zvW9_+10z8Kn#sXQxDD9&fD{==+Hvu>25$qp;;h1aY^-6VA}9S8y_<0r1|d}Yn0~;pV;Ta%Q%xo;qgFTB4jVcw1W*A4k93Njtw1HRDq*B{A~C^ zKR4@}#sAeg>FZyY=Cas2U~u}z@Wv`Wqr649*{@{GOoc!7gvABPV#Ryh?1)>OF6cYR z=O%)fp((_SIB0F>n=m*}w)3Hu1w!xm{rd2OzFkvgNl^5U!y6e*kn=^Nm&oJP7cGh$ zqqg9)DT^rhC4nZw5P;uuyUy^hhQlI6NIIjAJyw=qGFUh__(O|lCKu!O(nZig#4h|h@plDs2#nt`Ww3Yz294Umfu~Y#C`k|8s{h*>(*7qxOXZ1z(_}geimK`)a#<}$)S(D z{luq3kNB#6uwo9aAT_;3jWiBg(c6>?jomkPEC-*S?dW5~;|30+^fGqY35;^7>0H8`GBtEPPgMCA z*yoX^3Lo(KlT@zKCs&o^;OfQ(Rku%_(6JeS<|UNZ>(;r^S?hMpD|@SCn398?^?j?f z`+?f1Qf!6QLeIEIf9O`I5jnO%6qb~%o}8m{8qkFzx!xTv;+Ms z$}NoXZlYvq+!AeQP_nf4sb(rOpUKQ0TF7J;yeFf3YMe_i99l^8r~2LXOb&X<;rJT1 z%i`ihScBEB9`7u;^^7-5FpYJ0H_Yy%$+qoR`hIQOQ`N4f?X7j6#_=(NdHM8E!gG)w zV&tubL5NkIq&Rv^!2kY*ZQz{*^d0PMZeG3&(GX{8%tb0&$Qn^tW009{R2s$IBzIT0 zZI^1L|D!=o0r|-;FBV42!5^{v$ANUI8d29}ZXd|;`9+#-Y)?Y&Y-*Glly*D2Wk9zj zZ&hyI#^j?EI&hMPUWBX`yh6-1XfR0N5=R}1fWo7a#G)mQvdM#=g<6Y z`A8Z6yVoh3U|^Bjbf2=Xnl!bxcNIPOW0d`Kd&?#)vrXty!`PLu3ot4a(B18_3&&m@ zJA@(N7+~4ZATgad<#Wf@*SQz|C29_`3SM(yF*=T<+Gf|H-b9PIUXSF>&!F!sC|@G9 z9fTW<_8A+Nt_}F~6Zik*~x0dbZy1B^7Ojnk1PcF&FA9*PE5c|wg zTo#_p$ufP8f7#f{+!}t8donA_t2um!`bMltI@S&`26@&~)FIJmzS?L!lRcX8tgo}) zdNsRRxPU=p`!HUG-{k1j(896VVe6!2&t*v8v{P(g^3!8(QI=*j-n zsp;HG{8m6OJLZpWW*0M=#Um7PR~}qGt6$RlNAu}=Wct*U5hwS;#qiyStS=l{%xs!S zLq+pvjE+3KEGW~_{*-v&Wk$&EwFy@<97;J&`;j!*nL0JKRSs{ANUNXawCyEr318jG zeRPsQ%n$rQU(kam7eXjnh0frt;0$x8jky&fuhqTDc(eA5$6}k3$(t_ zI%?a>PC4!ZhBH~8-h~wv`G{d+FkpA!AQ5DD;4UDPJb^3{(oj)5^cWmoNVYy@cxQNV zosWK)j1bW9mm6fhur>VLKJndw5Q#?ZiI;ye@y_~e-<$u@GK0t={~co%l6ox={5~Oa zjX!tB--zpdZqd+zPbZpXVFKY-Ex%4{VrTWo|?X_pJIwCB$7 zJJ6&PH)6K%DcY>A}SyX)P2nKqi7=r#Yu%N-N%tk3qnNo%hapAitdqCh8-2wn+k zG6)8)-lp9Em`d!A2ajYv@YbhF&pzut{@oWYXs268Q|8f6d{?6RXeG#gHuC}B6B~Em zojQJLaq*Gk?#0yOAC(_9Oh4_Bc5Kxq{5=xrWlMfRGWa&ZB#<2iD?auWM4pn*4^9sh zA@QHj?^6h#8A@9lANMtsNi-ewqj(@eYir69My6?W) zBe%gXqWG7{BVBuYs#C@$X{f4^SXwmD~xDV2a8V&{= zSCP)Q^uKMKZT@M0 zx9dOt$f8%1hYSP{EdFs+ff4^E>lx$Zc=^*dOUKLR%pLLedi3wdXZElM#%p`u(G=m7i$OMC&%MIdOyyreJlrNqN1wFeJm11xX=27` zWrRU#grH1Hns%#Q_Dap#FGhlX4M{dMe=w42H04&OB{v)INd*wl*v(YThu`p&q7yL*!)Lhia@!ub?5 zwffaXg4_W1Ms1+k_Z zjX`NeQXPL&_lOWC0tBO5z*i(cTDDzFVK2juma5S*VdB(^*I$IgiMB5PO32^!%j+7u z6!P;l^N1o?gC7M{tErlz;On*2da6dIAbx=)HAmHqx#^QNa^~1HGwLVlVx0s(OanaA zJmq{|gS7;4q2w_khz!Hx3#x0#wZzH8TDZ4;>m2w|H7+OETnyVUDJK=Ofq=RHYmPWP zhb$m7Gx1^&Ebq`6Yn>b)$m?P~M#fuvzgx#%H;Y&$o2#g7R3R}{Fcc9~gV?yi zp+iU&2v|P64E~4g-}1})mdh~$98c8$Q$ooI$&;ZliNHaCcv0{8{D3uoPg80*)i9IQg@512eqMnm~yO< zEq)5|u_rMHY;k{hBp6=sP9iRm9e{j00Ee>wJ8+#Udsa~KA#@Sm4gO^~rge2yMofaX zrtw$3tHr|1(t%qRZ42aVI~Klp>C(k;%v9xz>+66T8D3c9=_+`m!ioy44;!CG7$>L~ z;af!N8#=$irHfv? z#K~xpD(0%GRf3U(mQAd%?oKQz`#bPJTPpATQYz61`ND`*wp&ZBrD|r# zzlN!st~O-9wvA6hev>A23aGCk|0YBNE){HU(kFT~-GS%Rn)ngQKmmMy?66;l?mdk> zQDn3AV%g&h98dAH%DlEOG~67pmq2Xu;s{BuR$PmYQThHr@e|0swnp{oimP65e#Ty7tCCWkQO zWsg4?4nm&7f4v^TaoUp%xm+}vd!thgaJSncnl{aKuwt@d--wBE89Ad$j= zo4(LCyHTWtp|i=H^EgZuoD(=skF!Doiy-kCD{cIog+nsbg@uBd$bth-KO+`61Eoj2 zddcq(#THWSbX{w?(x&P!CPJJQEF=kD7})?qP@HZ!x`jfY3VNS2v7==w!O(1G>X2L2 z+|i({#66uh|9!HOfV&>b-SDm$*rW^PR(f;^z2Ug;BM+{I9=9l=i|bw^&?-V9fCm%r|E;< zzm}T1;&xV?0iQDiMCwc+;H<9Dl||S6>#{48I3ujXHR)j z=5(!5N$1o;In|&Q9E;}1?#n4^d@33aY1vD;cd@=6e!yIEBkq^-Ah!b_FW1(tLwPI{yF&d9n8{U*4Xw*rWXaF7w z1A(?iS{THVR3;E1%P?ha>fkGFJx_!~nd6yIc+2u@8ouukWCTN+Z>XU|ey!1<@XekU z#6M*A1FEF88{8pl9$EHia;PgduF(xBBq44$IzJTD3O<>B7xae;u;=48L=S-xF2?ex z-INjHUT)KVHEkDWa2pVfC&)0+bOcrLWfI}(+>+4LUT*WRIa+Q>a+_{1;Jh^LcLCG} z>z$^ryn^;$(!8DyFTmps7J@;rKm!{KU2V9geFI~X{6`PdnvT5$29v(mwPG=r}0@t_P8RK*u5#b zjY4KQMm4mt*cE|_M60W<-^Q+jM%3zeTtendoN?^TB~$C;g-RO=7UH5{uFzA zNOmJ0qqU|wl}JGHAAPV17J)ln5Ah5su>!#-i9g0?1cT(&Y9?{s=L;oeFM{l(6S2U5 z)v4`=7FJV6%t)kW?_Lbb1&@jl+_}{SzsJ9D_bj4P!KoK~e!;?IEL>G1uP25Xzd{@< zO^0RxRsnTM5_@%(kP^kd^b*${C=Rj^9m43~-3s%EH0Q*s(_T_Fsg8-*q&`QFlWz%f zFG1|1!2xzGW6LSSrrb5k*(sn<&j2v7ku80EYqPiYY)psnKG-zb+gw5KyJFELx#@;V z-1C9*277<1kM!r-GHto8;MwV z2+1msGv%$IHV-ud2!UC92~Mjd#ld?+YSPRipK=d@S3$7DTTW#g-DdSEM@~Z*vvoO} zmBZQWyBe`bK3jgOkbz?J{fmFUw#GI$XQb-UV8rkHiN@v@;Y(^k=-JV2tjm8BmOXQU zyw;fW)-rS9+UnqQS9;NSIE*RbI=tQJ5L{|3Qc)vHJYryEgXiRXDR?eH4p?+_a56wH z6T2nGF7kG_j1S{Hom^jT$Jp(=YefAoj5T%6pH)&-W-fmDhCODt`Cm-5>E~vN1G7>s z13(s7Q0hkp-@blVTDr5RF;^)noX1Tr*BAK#wG5#UW~3~mEuc=3fvsg2Ch-Qbj6977 z24USkp0Qrst=9?}lSHBd1q!#tp62X|YY5e*h{DBKbB6mCtdr!)* z%7>nQ^U|r;B~HCfQHs$sj~?{|gC#Ygd{u0SLhcabjpEm#!C>QyW~pX%6s`7rsi@n8zg&~UL zf7k~>>czYsO(MIo5|1ULdcL!>17q%NL(2zdeF)+mmnVs~Ll{Fhrp`Y8?52@N$3j9m zm{yKNI!<7(FjGsHOg4o0WfQ9JiQCBx;0MN<>MlP&i zV@>GTB)*f{;thEZYz%W`$wCR&7lj)g!%zOkZ?vZh*x(d$tLKd6?9-+TqtK2})S zm#mAObC<1ZN!&k(vew}9SFTtx(l+SQEW{C>Q$_lZyp#cWI91F;X^if1PYMK_oElSPhc3rFi5P%@xKno?m7~N zAl!1I0mRikR9`IU|4xfm3)NHklLcaR<9Smw;NpIC|Hn`AueZ9@)A{^c3eTb$_<=nP zTC|jobW;=wxh&$Y_MJ%C^Q|kfQ069nQ*zvkB|RDD1-U{;IO`5?({(GXdf1|@+?wS zu{ym%YQcL_xx6xxH-Jj>3W$Dl4}TyVv&%laI2}CdAE#1c9v0OblD*UGF~^PgdJ%s& zU?$Nq+1G?Pgc!T)lVR%!$vW7^+h4|aXS;R`lQ0J-6ag@|$E zHLkA;h-0D2rxUi=&jks{2UmuU;kxx{*K6LMwpGWAH^wWThb#f*`fFI%Xc^eeM}vG? z5pcDCzugVr)edm|_ifl`@4IhvpFX1zJM1=c)EqVq$gWsZHP%0{xb1yMkDy||@o_K@ z>m-{Y)bx7o+P}Xd=L8e4f;Yh7^xN( zp!tSrn(nX4UNwyj&01Z2EA8dF?oj$c@i|m-mj3&ryKj8&?i-(lF1$l)2Yf*-{gbWt z{{M`J*tcLj`u`6PKW+1nE4a z5lGcVdWv_VpK3;w9otnS zHgWK$41EID0a|a4!8B5wq+^VL!N0xLtN-4ky7$&g=#fjT@zyblcE!E)8;Ka)0)z*~ zPGN#J+8h6r{TcfyoF?vcyb*M*P{xHCxvOJo!!xX;l=zv>lfZKqxzNahi1Th4Uc)$j z51+`|SUUmL2YGknn@~!@wMjGvDj`C9LqY8KV@{Xci5anQrJao{fj30>4LGL9rNeh7 zm9R$%`8`G`5Q3+#76|J8(4(g%Z^!G+G$KkT7T)w$ekx!Dq+s%P=&Czj=B2_qR7xcr zioc;7;qRk<=}0)JdP2d7H?F93K!Ljjd@D|S@gpg{)+oVffd6+_xKm6g9E>f}N9Zmg z53a$EMOJBwF{h{W;uM{SWNx zz6&*>Ps`FsZpnJs zmStI%XJmmf!eART7(#*!A%?6q<&4S>fCeBz4tu+=Nuk4QE_T3sNM-*5yAx( z#GK%%vF2w{^#)~$$*Hsl&R!}xLe&&ewaKXcAZ|AHG|ad@H9h(1bOH(U^>}ooQi{Zl z<^zZ;{6~`1CobjQY}>b2t4H;e%?`v7DnWVSL;}BDTxk7GJQ9oH`|Y(XY&hh9T+Frq z0!~3INkCeO??*3sUKC?5S?D8HDeq&D1ot_Lq#X7aYWqI*Wp!JjX zPxcZLwy<*P3^!`P5kO(BkWWQjmzjnw0^7)UmY3hZjGwcGYPDe7Pvr9!|4XpjR_`{_ zUS-vr3hybLDjc@yyRXgXP4~+n6MW>fww$Ua)7a5w5&u`IUaW=QGz5+51phnPx@ccg z;p&NL035O$Ri1gKdfPb%@G!aN$lpa2O_%&0fZw^X< zp)qWzMfpKoet^ z+B`NFiZLQ3jT$2$wTlWXb$YF^WtXUE!kR4ER-;=4ZW@k8Q5Xo^sE zFZC7n2D;V>mT6HEH(k!AtBHC38vLI!PA-n)Ejd0(qlWZk5;J%xfd~R=?99>p#7hSL z``X&Yd}CLB7ydT#ji>RJKF<%^_vahWtwGB4KpCHR!W&^;VUcRM)X>R4(VCy%6F zkX5PI&k}MC)QQZ5%Z0*)9-W=8LA#|GDQc~Yf>A1x5wJRtt4EM~ajAIwk1|M>U!Grg zz4oOH%UoJrEs%J3X%l&X{Hg?q;Gig=btr^M2X>cCBvK$0=~s_G(L*hzQXu(RIo_A% z6i3o~AZ$3);9*4HW+rHAL>laiw+O0Cfha^3ilzRr9H|TBZ#d7py7C9M2)Ae9jP7wc5<#5PMP2AU%Gy;t?~aUFc%lG zmLJESP5J3mJ#;rlK|+Re4#{0e+ku720Y9|{b;Ye=`9R?TE}K5YC`isoq)>a0*p0KH z**to5u{cYjf9A{&J-|4JYiD7kK*XuD4puZ)Zu?(|(NH|?T`yan9cdDF_$S{R_WQ$E z>}Aoc*J&lcOq>>abeC4@H%Ps9_HRQiBpxRP2)t&Z+iQSb6FB>73BMEORTEhWTTo9n z1?`zjoX?{F14+yFe1;#5M$pyaTvj7Sf|>_?8692%<(JoS`itN_j_&GB;B%4JE`9TR z!+}7!36XHNrzM(^czBKYO!_(Tc^SKV8TvVbA&l=n5Csxt*nt882E_=@FTR_LeWs(W zIlIdnm+n7S{Un88i*;p!A>z7g^tY940<9p-L{{1RJ(K!O3_im*4+BMZ@QumgtWU*% zxog*t#SAo}FyaVB@qQG`-93Wyl4A4Jx3BK>Osmhqh@ibuv}ENvW{uQJT5CMJ0_wWU zL9mwe_1Yloe#TaV_k@!#((%oF1C;^auX*#jIhbm{SMfD(r^=mR(i3puFWUR}pFt1| zji5f5i-jIU4e*sjnxcD&)S#*7pOTd`=fp7u4gXByPUlTmhAAhcOFPw{zhUYfo?pip zXvb^)J_hnCfNN+VFdh?W^hq3eyH7pys1OaC55#%Hw`-CUib>O0NKSx}gJw$t3n(OQ zAJz;->L-~Rk!Uh1F7G>4Gdo+yb03;5#zuWs^yJBWaYp$u|5!@Tsj)%Yi~d4)}G;#0eku#h@~zQ$}Pk7+1U@MJvt@$mA33#$5co z-&MEAjcj1gu#vfOt>b9S3-3Edg#ig}U};|jfDDD4na7m!Ny!%zLyXO13HKjjHcvy8 zlhI_pAjVm>BsHwFbD}5B$=m&U)`&lKR*F_n+@-0Nz@QH02reyT+C+SDj5w7}Mh624 z)vL+*SO%c~WC0`3Df)3FJNS+yBF@~cLN7q32aX`j-5@l8eG(@g1xpV2;>^61ma8|9 ztPV$YW?V2IRpr1REq-!j_fXAG`8$|@$0yvx8;luMcyXOAWq{yzTgU($aqJ>yv?Bzs z)Qw%bLU6ooW(t_m zY;yW9q6hIRS<$5~56~NuIv+zQ;U1G?EP2TYoNT08)g~CRwqm|YRs6rW{A2aQtrlm5 z240AD(Dli55h8tjGw_`9y`A=V#9jKnCZDgHjm=HD_IKbe!q2&NPoy4hbjnnb@>#vm z^Jp(RbsT7|3cLtW+DjwOdYm|W$U<-6AJQ9!8mQDl?b@AcxZLQ3{v@1ycvgE}uQi)z z_+P5XV^dFRI;2GM`m+1G&X?9~{GbdIh=+~d^%}#=g&%`If~BxW!B^52aj<5EuqFLjOm} zt7-}JmQ(_TJ_NsM>@^SBqi~5gV2n{RARKZQ7~OpYxc+9~3(=*8T%ceNSb>5v_!9kr zB4*>aHJf?;nx0M-rj(IDcr>KhA$2^U+J1Eu!!AVThgcMu9x}VxoRg=`HHpbyS=wtX z8-F1uwU$4iYjIzC#4C?VzHwEaPy)8<9}W34@QOu~67z==sbMo1)NID@WCSq`?vuI5 z^Q3tdY7}Y2iA3>|Nu;A8IT~>)gsmuLKq9?cH7aleP_i17M7C_(6GOFpO_PFJ&Q4lb zMvc5t$;Ydc6(gET<8YyVDT}Sv*ld1Q8wy93nz8XrzEQPe`HErRmUz`#*bK@Tbp)Vs zI@>R^ufumm)sf5aG~NnHhASCfMip|5KX614(<<|j>Ukj`){RedU13(KlFm{<)u=58Q_BVnNU|F{)!5h{f zs!?8|*C^yfIvUl|qWXqTPgSN4VxEA`hNUV3>ku}TCww4SM<_;A?txe$c>uPZW8`(J z@342y%~=-yJ>z0b^o*B>-+}4RpPG(F3J)HwzK&yBW9P&ZdlUa3)|~04u1r>U$HN?P zFzJo%8!L@ThbD*hzoc&2=$p+S-MJOC&p7?^Jg}Dq`8!Zg1**_g5UCGPH;|vwv7x#n zd4`68f1lfGBzkb-SPG?&c2^${j^%=5Q|m{yDi~qqyQ8`(7Ij7y+e@PwohW;~8NHdG zjSbGU)(>yp+)(9Bvb%dm$5Ydo`{Ko`ni40sPt3_AdS60{7R+;B4l~Z%@q-2Bmp(~IT!t1y< zT$2bb(+n5t+6nqOsm*{tavuz=Ske#Zeiw241J3a}QU}Odqn-;$CeO|6naM3@ORbUr zLS#5llIA7Q#;Y0d2MX-tFMKRn+s>9yuoeW0eU#|)LT?cr-(ZvWC5l3Hgi8P-4H~IC z0#a)@D^PN;m#8(gA_nrA2opsA6Om?YpowDW4qa;kVn92X@I_pP4k>WBA*x|WCAzWi z)euub#%@vVH1I{rAfVUP>hcdg4}EwQku*-mYU`4HrG4Q$4_D#7CN7cg#O)J-SqNc2 zMU4Yq14>+~VO56e4GYaJEJPL%0I)bN;U0^wsE6`s3Iym4^t^Z1Ruh$`eLzzx|WTkL!M4DfQF8P%z~nZ;YAtnA{&!hY9pPW&U8SlEEA{tKAdAzTTfM>^5Nj()^A>-uK;(TLgnV7!tV41 zylOb^w}R13wmOiMqN>CaN+^?)yk4J{*i|SM&@eC&mE_PZS~!-7LG$r?6)*H%Eh7gc zNeldzji0Z`L9dK)Scme+od`}L^ zsc6WIq>{0Sr3S-3Ih^&MfmHIXg+E+@saJ$lU_#(75s$93Z9|n{wrUKiv+B?&e>BKx zy72?%N$Glu{=p5>^O9}_S#b6n8o8>j$dSQ-g=jrU>+ZKYP*67asQ00edUd1BB-*`fPwBx*tAd0BH+8;!;Z)@% zqf70zYor*4ln49DHgpTVQjSVY;FytWNx`pS9N;{zT^k}K7wIEBkpxITsK#RNL=>!v z0CpiaSe=3P&}^^tzFS&c78@cn77??K4rcM4&I>9;PQRvU74`-7eWF_49yYXoR=w^{ zy$+J_9Fort&(3bJaj(#4hmqPR#zoik;_RbZFcb&faOIAcNLOBmlX9<4rf9cFEkUG~ z-8$x#Qfn*47tT>Fp@|OObuJu1Ms_;l{=c#!-`k+tD!Z&97(A7j{&^H-vGYA zyLoD|j4W&mkeQGkRCzjLFqH8C@#GzY^*wQ-Ng$RTIo2&rct7Ry9(&g<8j>&UbJyO zCep_hlG)+P6fw-cG`G59f=-BHqm!>i}B@eBy^5wB$q+>h`-g-2BBCXVJ3!8e9@+6iL;=;x4P&_g zbXeOk%PmTX$5za3A*u_YuyySZp|QZvER+^RHDxPR9Ml52*3+$Au5~=B0ut5R{qSAF zE4|7iqR@0A@n9lh965dZ$dS{`tEMb@1D#lWThK`-9m2Y>SFe)Bg@-bkhu-{9M)6yT zbtKBsJ|zCu&GYj&-#i}*;auzz7)wAr+&$)T><3xWV@gQrMF`LhNCU9b?NtrU5Z>no z>{OnZ#tekhctR1vu#fI8%?%si)R8aG76&HPhaX0x zgCe-mBR^s6ve@BDFk(?q9a<*}g&@=2@>Yi6W~?<>?k9gNJG#2eJbSZ$c<&b=K<|9n zPussiA9^pe?9|?D{nROJNcPX%@6?QO<=#S6##5TXbqUp-gl_Tm3$KIU1MK&TUfK!+AXxNy2ZGL6+ zZ79WNw7>I}<^n(ayXzs3C>E?gonrGy$|pa!ll5d&;O-^{Ll)uvC4*nE6|xI!3bIRp ziuuNG4yN)$*^%Nbkc@Wqr(|t09iLaN6ia9KSXbbiP94cURhP(Cpv_BVcMZmk*%8!k zdcS?5{1%o-2etMuXLnaG%#Nh(;F0X_QlD>0_5;sFbc%Z1RBQ4u_G*m3W+g zeC5d*`?mJqiBR#2rDo}tS$p=DQj^`YpWO8*VH6sAc!4Jt^0dO~v3PXmp6Tg(W+v~f zwf{s&6Vg6wcltl^3IClnyd?Q0UGp;gL-y~XoyTG4K(0Cs>>BP?P^nW^FEWu-s2&Jo z0k8)3cnD#avW|U2wblfVnu^T83i}8BX)P(A965RZ^bz}5-Un^N^DmP0t^7l~@=H$t z3;xAo`k++Of-C0vwd%8Tp#VbPUdHkdHS(mU1KUNkQ7;anO<0I~a3)fhA5W(nL??Jg zz2I@aa9{^$C9{FH(_|FWVKc&*!7a2`0;CjUAnS~h{tz?<#YNP!6UJB=^@aY0-pB*T z?88a6fbtA?$jQ(z`3rNmH=9pP7z-zE`hIfX`eEGamAo*2v_SpYDn!Vqyek;OY7*(J z%cLheyoRih?HmJYEk`>(wp@}{7!=UZsl+a5vrxnU$2|nvMYcb7BAT>@iuS#BamY$W zPdrs<77B+O#+=c3$Pi(@Pn}4nlDSwi8O!0tiKo7cV&RW9;_=2q4~T%Fm}{C*?z=%<5` zn3WzJ9zFJ^H!b8#^KYz|^G^%Xv_b)esiI-ZlhtFNPAK$0l*FfFI%Uy@qkoS7QOT4_ znaWE9sZXPJBk_yQUr~ROWBi~z3auPFD0%zHAVcjAQXrNukxmOO98b@|-9T`>HMpYj zgCo63tu~fjSr@sNRBsnP{;jV`9lEioi>!H(HVL$?!qamEEx~N|y+O0pTIF;L-vQmn z%k!p(_)LRN-slh4b#^VF>fnntRe-2TI&r)DD$?NqS7<>YO4OB0hEZO%?YeBpu@yHlRW%+$Ab@NlM(N^$V@^zlNe<*)7>x7&imgPG+ASm8!32 zxgf6m?rbgMuueLe{rVVK*K?1ckX-D|L_DRUZoUmeaupmxM(x7|exvFmJ$GWe&R3-r z!sG?q><9K&Hr%iM^D76ItrwkpcITh!BX1!Aam0o;NJ0G4C0PA^=IJ~`I|nfyac#=) zqia*xiRLDbqo#!33J%ZE=a91u;#EIGWv9>7Ny<)84w0A>+$7yzb|vk?lH)s~`4`vb z^S}M|Nh<(4t4LiyaUZI$d1ju3;O=JgG6aCU8eE_^-t2r!7|vapGq_|E8fZ&?)k)gW z{VfiQ5xImI={hO@c{J@=Y@x>szwzd^bpGrT#1VY7(S-x^L}!T57Yz8LhOoC#CwKCo zU{t*2F`kj-(jZS2qQ20P(0!TYrE&EGLV<+GJk#zjN$AY*m=d-wP#8ZGRFb1uGbOu*0DbIVeY$DCjf_UNx z=#kH*>i_7G&<9efC9?^L!cs>_AG1$vkkjX_MPuTuw0MfI4OdRL+f@YH<2CSo-H!F` zrnuMEobLJo+;}Q1Pu(a%J1|t>!clh#6KNE&qi|)(K+&Y;4?WFh3*v*_lmdAOU0@K%@TBQahTvVgAIyP7-tD`UU0fqm@R+_k0QSt2!&V2Z=OUXF03Si2))&{$efSq zWmFLK1%2LWGw;t?MZnrKLnE{I&yEab28y}zn37?!0gas#mzWg&s#m5hZzv>t1Bsx9 zZh{FdTJ(BLI$Adbq||u9956G9L{tm;HO(K=GJ}Qjo4nq_&~2n&V3e!yQP7yF?;7cI zlV2z+ZK8U@LAiZ0Ciw=@Wg^CvJ-8`rEGc z6AtGqI8NxdiFHrwCu@To66xINh3{Y)yB=AbI6E4%R6`B0cCMWP*iK;@c4c+3H~?jW zcXD_^D(-38_HyDm+zr7QD%lH@cEk1Hw4>|UaH$!c9`WRd#Wm+}!Lb+El9}vY6IW!O zU+{&x7mfG$Y*gsj(1geYh$mIDU>%<>a*Ds&{!@xcgBR&VsnaxyKG5$w9)PX2xc2E1Oh=2@b*;6n7 zp~s6#F#O``*tgoB&EiHBHyO&d9~+}=2#2rm$$S%h)o_;aUd)a|#zJmrAO3!(r#p5-XSMG05Ze}^>k$W%bz|{BIy%%)Re!TC!*_SrVLhs#Do908<%BK-W8v`==Hds8! z>U852z`F1l1`lb#%QT}P%pqbLNh>LW7i1XW51DaF5!H@o=i%QVJGB0}XmU{r#56yZ z@Ksnm5Rv_{a5|>ROqL`>8X{52cS`a}Uic&fidSYq8K*>2)uMZNmHO`*0VxohNcvR2 zq)K6bWHjyzC->%M$p<&76fVZXWkU@Gbbmxa&0yIt`(%W5G|A^x)yVDkg$uT`9-hIu zDP!gk3nc)%?zI|_GS7WSUWZ@Md5szd?ruXlk9?3@Hc>9b? zp~z*kE8EmUBx3x_{QxwefZ699)1(7mnBwv(}&vMVet>)<%N#EO@97C zoZ_Ma5L}fOk1#;5R>4c2mg}aE!s>!f%EQRCy@--!$TuY|+$etU_BUF!*h?GxrWz}a z!qGQDN2PrWdjFy=EKUA)2>@-@T09h=J1~YXW(Kab$P8`KFIz3Fc>Wgu73rvC7z!Qz z8$2FC(I!r3sUKbNW`bmd8WHfsAfSK=2=@j$$-L=OcILKoRxNQ_P@O+^jGM$ALRWfe zyRvk!Lp1Eo&2&OOC|5{e_p*FPg6>XkF0xW88)?S=0X*de@#790d?-wzwZSTyRIj3l z3ug-+e!e+VKsgz%ivU;uee4Zy_B`%+m*)eXk9t1l`E}3dXg!dN2`imO4p>h2B}cqr zKZF&*y{o{%@pt4CMB2ami);HI&VR;*I;uhE1r89Q(#h@%m@nd!%`bqu9gIg2TZqQv zQInnqk<}Aja-IQ6pkG|t_O}Rx;Oj{8Cilsk#1o^+TzK35qIiC1zbCd@Fk=}N(ic@T zg^UUmep=1MkW(N&?s=U^J72l_Z(`=e1%PV|CBmN-&K>diTlheHyy21KV}2h#yfsIb zrX7q7)!wgTPl2z?YH<0+RQFA1f~i481IwtGFl24w{FUk>`HB3Ks4nnmB8@_TzHt=S zNBL?Ge;P-o)9vYZTrRXP6@<<3zXhfl&03p-d8f+|W+fD8t%9Wilh__uZ6Py0o<4J? zDohsf=&WDbpSnm^kB()*vuYa1A0y+dOh7DP>UhBdZfNfXI;~DMW@!ac8473v@z#7D zUhu(#yNmJ1M4Jr4FI1~*$egU==BP5Zl8JpKUfgpqk2yp_JyPmXasf{(a3_krglHj4 zpDOd!v1$xteZsl~W~k@({JtWA6V##EszV7;L$g2-#Ki;NkV6K=rcnt!8%HV_r-(>e zZlURU`$8h+k^%}ro#uN1ekdXhb;N0l<8)E3OqWMM`d%xKWHQe|84CXIINA8YX{YEdn>>7g_Gake2(!%3O-Xab#ypaP z%XK8>)*E#?*YMFC0^G>ws?&23zfsYYp-$aZ6eJ}Aw~O*5RLoQwHY#Pb-J}HBGN8su z1@BQJnE=wmR4SS8wN?_LZ#qa@MS=Nn|Hba|n8_ z;WtRDoizwWJddala7Q;wfMmn>Gh4UJ`9^)78W`Xcylhyrd%@fqJGz5BniGEi6QcY zYWb4Sl+f?fki3edOR`Ur;e>0I5Hz&plpbEe~!j2rlHc?s8-LXwUf#N&$ZCuK$QqrIu- z^9Kfw^O7&10mP3ASZJf67}elUQC3hS@IE~h z(J&le&|65MMu7b6NKIEYV`vwUUtT%)F<(&i27~fPm=^GPwV?M;x(whXavmteIt4s( zcp!znL}M=#e2Qc+220K10mcH8OZN!|`+>-3Q7~AM!W{;8ukY}9^Yw8#RLb8lfw%?I z6(j@P(P72m(tHY?I|SJWiD}5l#)6RLd^nm9dDSSJ&LNP7x;Wafq=fvE7q;XJfVN@q zl6PEV0Xh6&p_2C^zbgYTVnFuB1B%~kO(4rlsss&HHPq4kul3Tj;F7d9i^+3v+WN+ObCqS(6Ce%Bq07UMl_VN zbtbjjhvyqLYceVQvY@x&yayx(J{RmBQI#ju&~~O{$oMzMET2cKhGDP9B6k zHqJZZ_&ZVJ%sUzOE=^lfBrNM6AfJo|5mFcs^Y%MYo>!es z9mszGiPgxbeleSfXC4zXCzeehm_2gqA3E~%f`!&i_&?DD`KHLM7IGzM9`sO8HX!jD z(5z{p2;byJ$|sq=1KC$vSVFXJduIKUQ6sz+)o2J}-{*X(0bMq4Udl>op7m#D~@TMiw zq3L{D=~PbZkg&^sxcz6{ zr99yU#ZRJ~jgVWPDuUD>oG>)sn-exXQ)76Y=x6CzJ8r!-2eU@Xmu6 z-tD)fTKpF@boA}z<1Bm%*0lYJC%R)}h%Pf{WKwQe+iq-E5ba*#YmVxBJ`OAFM>;mx z0jQLI17idD;d+O*hPr#rZjRxPdTcuPP zL%ZIweTvAt?ukQfX>kr*Mx8r%-f#~5sMZ^WgRXmMzw_Xp^za?mJGSQ^Y^H{fVXNe4 z0@Wd;_(~2qoq6n*$EXh>MF61_@cayDU=nsrAgU>wjhfOa>THFFrg&BXx2!p8(12YH zXe$ndibZ(vGQt7~V67{<&CcwN9V@(h^w3yof6_iO#&^=n6f&)q?{#+5&ej>98%&NR zqU8grmnu?i#MIHkm+;{^UT^Eck<8@s;@F|l;(*sGn-|6Qb3AeD!$H~GM9We&fSnX* zUgyPI!ZGid#iEfvHgqkl#HZw#8YrP)np3^Yk>x9x?<(}WgLFEU;PBxUe4L}fKoG2V z%eCqlrr2!}_Qq(t#|l3`0O3SH92!1(l*}aaSebps?n1@cOY^dy%lGKPs<)7{BH{Vl zH}9@r7=Lp7uae`2H{i|rmVNuQuyat<^Rn-Vv*{Y8lvMGtfEo(++c4ttvm1IT^#O2Nsw4}Xsk1)JBN~cj~xGt>MCMTM4c=I5*P`PaDP zTE)2hkYx|C9_kvrObGwMmVE&J!jw@L+SW|lqJTNA1IE`ijna{(g^BH^E~l+?KPazQ~7kjLW8>ALmpFgz{dxt z6vNKY_!-K~KsxU*gx0OVX3<$mC*?~#4`7^iuDKW-d$CRI$M}#j2DRdPKqZ2xUGAN3OL?x7x>EXu=(DzH8mt);_ z#@r~^XONphyOP7BdAJCB*D$F~6~)_c`NB;~A}(U^6m#MVZyv5F4cYFZsx|P2gmh@nbggQKAzX2F+C>5P>+Hufy}GKN?~#z9|~t_U^w`cJMuUcKH^YYpKf zl6x25X(A8h0Jmfzu+Zyi4Z}FZRPpntGyQNBC|*h%q0_5Up8blMH!Uxa4ma4 z#?l5OADEwB*Ga#{AGe<=QETao?zo(%Vwv z?#}MSjgxJ(_Zu-x_?(aq;mR2yC4WS621&!#eM5%HAM*g(^~)SZ37g!1`3-KHkUe>C zcemZRlZYa&&TdNv^p;z#-f;X_s7lK93v99Q!H7N9r$*49l^>y#Kr=CCtI@QiVf5W$ zKVFW(cs9ePe}= z%@H>2M?Jq#j4H0<^ZNIb_qeb&xEHT?mM?ZalWPmLEh`7p<&fSQn} z6G|qoS_|PQlZwI2{_b28LWIq4J}}z{+Bgoh1FK zM7GQZB>^~&b($2EgpMlJSARn7LF(2~<{k$i$}E-VBH{$1^f=~$mK1?v>*)URn1b%k zVwD@okk21?*7@eyN0E6;DVWpKBeP4>)5Y0HN*OelSvu)+bcG?`Qg`OPFq52h-p3AT ze?MbbTG$*cOivePZ=we@lD0yq&;-_yZx(Y-x+O(VCgGVyJ}`qNNPSAU5$L5fMJIo8 zFa3sEn5_E%X>>e!iM1R@8N6kyUANg(_a$<(s?1K2Pi%@F+HDM@DTYE%%j@3)H`Z#2 zH7fjIhG!TaT4aVI=}*P%&^mQ8E1|^$9Ln2X;#|dt7XLjblr+BjoCWwA+{|occy~OR z-ErT@oXBSr{~nRv|fVy@9Jp{!qbST8sDb{UvEeTP-l@s zI9DqJExP;F%fM0eC_|ey zH~La;+r^|^w~rmM^?^iW%JEVUW>aRUGKHE(TewY{`AL*;K*sarK+}X1As2&aOmZ(Z z_E{E)MMo01j`w&;1n-3&?nOk`;Oh_M)j_A_91;Xo-Nz8Mp{;Ka#qC^KUbhNKWoN&T zoE@7qQdnoZr&b!bB5C}9ylZl%dT10M0XR2O6-$sS=#S{eo{y(SwMi`>qs<|4-aqkP zQo}RV;H=jwnIz^o37v&Vin+^ws@;?YE)MnhhhQU!7zeaV(l7;3kFwWmF#mxB5V&AM z@)3k@*5vUGWSuh)%KxSlhJ8V_3u<3lxfs(P4Mt;u(j=gCR#+8qPu@_a0@5&#!AG@NwA=)RtR;w}%9r*rqXb$xhaQ$EHr%=0lKG8RdSS#ui5D1rc9l@z` zkr%mzZi15Q*!nA6NkkjUz3`;gc~BL5K9y|KzU;CrozpYL=1VwL*x0bS5oh|8^*B)Q5yY+nc*p z@e=R0Rcseg!eTUsSrxfmU-nCXz!`YHkJ8#~8NqWd_mUQB^?qqC!XD-#r&Ei4kAVAL~f#q+w9=WfOA8M>$uO$Y{1I`{}6pBhf9^x>4APA1cOufp?H=dd!3;5!-X(bLLPpYgJi6wq?GKn|5`r4g?$Zp0;d zMAEbz?w7+ar4dPv8{rULR_A-D;F;}ddd_*?M!Ip=^|{{jNlfc{$^ZkPzJr^C7-(3B zx^Z(w6-Y{6%LZ`L3hE#e3RFeeZnM_F8PC&ZP;k&f$YdU0cF{S^<61mgGUTePisBeM zK{;%sQ+-UHU<#N$H62!ot-x1url#maFx4LbP>|Rf&-f&hv4_RzR~&O_PLdu0Q}LIK zMALArp{(v(>thgq(TK}nq85-ipHb$0M3%s2pBEqc5iS9r@yik_fr!bY{aJ!+inGcO z4_+s)5U>a<4j62M{eJs-UY4nSHmfgw?ZNCJc9$r`#O})K?YAvHnB{xCxJHOqKkVcZ z!a?cOdqRl@HZ#TI>x(>nZ4nivUiyl!p$fo;>Q0O72^5w3nEhhA&1+-f93$Ucg0FH| zxhT=o(JZj*py>+mKXA0M71L<(!WO^bFYdYZ+_|;YRsYLc0vu(S$j$t%bE{-LV_$Qw zN%@{ot|&tjwck4$m1UI4Z&w5tD#+2a{l7uW{bI{7S60@}or3~xm{f!V8dB?Jegg&3 z*3RLQv|kE86VXaph<#~Y=Qi3%^Uw5ngEmpWw$9DdbH5}`vm#Cp0&^J~ZmL^c?Qk7c z%PT#%G|!#uy&=$9D@G5?SpD3FTk^H}55Rpsj!JQ+I6|{7h316aziy#* z48jhGrI9Y>Mje1^=2aQ8hmX`z(4Qk~R?hvTo4JLOSQ$Fv+}ouSL3)!;=-5OFm4ait>cNM(m`Ou?XM zk1b?|kEQ>g=7cxaOj=Rp122Bh`rMblge<{}OQJGXk@Zsb(Y7ykMUM|$>_u){g7J-f{^ z15{~B)Wv}9WAG|4UqfHa-y>DS+eE#(_9f(<#nbqEVQDEyYV&0@@X3N08=2C`GfXFz z9G`*M!{S)Clm~_E844uYl%qv;&yZw5o9hEuCHtk>W+r|)o&o&!^5vfKC4llGOd}EtkV{2M zC>e0DO?qw#GYY>X+e+NNQZHT{9YvlJjbvfv1a7{VqSr0&$)y$SPJjWY7TDD2m<=nc z2_3z9IEz*Rcx9iI3_y@e**h_#BELzD--MnwA-qxRXhC^*q6Pni0kaoMvO5hr=DDaM zK3z0qlC+}XlBEStEId~|vBbQ>qzR&PRcbN&+tpFYma4a~)I@91rEeM4wI)t1+f`v! z9YXo_Wf*kX_J5Ve%%;73cEW2mL8~i&ABBwPKr1|ZyrP;2jls20q!McU4=JQDvq+2Q zy6FI;bytU%4QBmZ`O|~53+S6{j~*JuDV#mrXyRw!P?nY69tbAVavp6~o6UGinnDpM zc5<*-J3aS)`=POeVe6gLsj2^n{ z(CCGAWf0g3sJl$R1yyM7-2OfB)h9tN{+c+yP!bG4Z+fCR2W|Weq?!k$JtLP#M}<8Z zDa6={z%O7$$zH6;kb814powMsf`I}n*3eKH`bhg?tA*0n%RneC+pUl`I#jR%1Iy=8 zV8^+>qnnHClO4R}^>O~vZR_N7?ROtaHiLh!&&~MffN*hMi~N5txLu$Me>${&&S<9+ zBpaf0eHeSKf^uoN6{Rim+kG$Jg?6|9jxE7gQ63ty*qYI7;imt{(c$9kMG^3UfK?b8 zwcvk%XUskGsm1}Xce$?eKu4!=>?O=TyrA$hu-@tee=fa1>y`}4fkS(W=T}!(dkYXu z1j4RW^jxC2=g(|x_h*U6-FusuL2$T)F*SsvrKfbo92^`yczBChFRZTi)||i%+5J6w zNAu#@v#(uOf`WyYm)lo*wGX=Y@3SA`+#N*k!ZWxx4*Lqn5s@%s55pp(h&B1JsTwZQ zm5LS0e8PU(W51NKNMXjng27=(yE&9_STJ~`jv?q!(y?NgM^y(8WzkMzaK4b6O(bS> zh55l$GKmHJ1A{4ACmNvOJzLq{sF8kF#HLYB3- zcTi;Gig^*dne)6B_6t@$z~HnskxB&H1g9_QMq9B9IbJw-^c!Z_nY8U6_1o!!ZRn%v zCdzmB<)1%qKXxPhL;E1p%vB5dp@Gr#ZZs6xil4cI+RiBElHcpUQ36$x5v z+>T#&{{tQmDVOBkq+pQ94fgX1@l_lz89Y?>?UN$N^?)h=w9N2!?} z)lmV9h%Qt%QtOPOP+d1G((d%=08A1U>-N8}|Hhu?xkXWKRb^=RFIiNWqt>v1f16@8 zIzk&od}hHt2~+U&{QKTF|K8^tjZgpiym5Ec$PSxdKNNl>S*s;~r4fG5ufF;Af?@_cC&SQVP#d8Pl18v+X0V3V7gulObXUO+d@r@r^ zSol!oMr3$RYR-7?I{#q!J?{yB_c}$iXRIc0m#1Kl;p9Q&)EzIiZ>yv1$PKUTzq$X2 zaaT;0-Ju_xE+4snq)3xFo^jm4*)DhkPt(Of)u{;s>u_pZP0^-y63>yPgMwEl1@x3G*`+NE)YuliNn z9-_-~DS5jAPK^-%_+3`%`h3=Z^F9oBiMZg@v7wlTMs@$VcL3@Fs{YkU8xkH+QpZVU z5$Za8+3aF<>Fin5o#*A+-SCQy=*k5kv8xE9orS&86IG$GnsYD8qYTms-k@tD=8oVA zHRcelLAy7iK4K{QYFC#R7niH-Z2J-}*@>4tSzSTQbdglRMTB^0e-O?O;q!2OJt}-X zqqU9KdC&o@zGe7c;!NvuW{t4OJM}D<=!%W-R-&Xq%t} zd`J90muD)@rWf4m;T_j$8KbLF0XQ9-rPFq~^xvNZ==fBj%uOx4$V$ zXM9&Yt%VPT3^}-Bz^D5M%-%O{C6m_pKKrat6vX3MJFMvr#(?^&DbO{^??4%V6}p>* z)NQyc;dY=$5rqS67XqZ?*CmuS1op+$%BCNh~YbU ziSOwYqdyOSSCx8nVmBB@v%Ct{A@cMaNV_s?CFriat^$-hs{e(<-a@Z2OMDGG1pgXo z3d7hXYiar`~79x zNFuE)i=Qc3ivjTwN6Gd>j}8@+T66ErFJ!a1Diyf}xPbI?m+mo&%5FvXdn1xr zeCUm-R4RJv>Z!ixC85{e7VS?p*H54?{}cN#v;{&n{Wz*9ebRFgpJ8iKROn2EWFuuy z^o#+&Y5$^TF<>)(U4g%mt5y_6qt}=U0gvCuWPFon^1C`W;}HkkYadZrDHA||Y#eHEK_%XX={hiP zD8+y$QIH8>!p3Lc4j6hhf%Y^&FHDaIwTY>SrpU~js3eSl;tPbw&5&mLwUD0ld98?y zQle4I>$8k#$Zu*Pa~y@a+dt=(0|NonR6u|Cl&W}7`g{RXmb?L9z`}octIrI`e!M_w zIJC%l0N<5mRDDkc6_hY|l|Po$^w9+R90t{x?hi9bj|IcA;Y1)}MFa8SSXhhbETW>f zhUD|-SW-(AbS;ShhL@q=k1p#0O_x$Jlrh!Ru$%+1JeCUhwRj+CjztW$G*}q%C!?cg zK#2zYfmFPrXY#&aDvRig*HDo)15~(P%%_6BdL-0j zF~`w3&m{*+GAetJ0QLwQcFnD%X$Im{vLMdu2ZHoEQ6ZtFZj{r zVk^N>l{sh!zx!4O$;nE6B`5GY1yjD2m=usW+;JL0uPdnnk&F4?k1{A~TPJ4qzSbq7-MJkz}7vssUsc%dwb@Cp6%V zCC!)a8ap(WN@n~(-?Mw;R!~d6@s8NsNId38g~+I?XGSu^Gx^zp%6^2~_e)wV9FD1t zhDy(xwBKvRrf2t6k5mV02`>xB!dCogMMqNQcFx3z1ao8uKl zjp|#-YV34@;QB4sYdM~aPHOM zYmJ=~Z6Vg+Y=jq>jf4XTViJDJKsI^+Zsk!k7=l|l6g2S~AKG?qW?%`pIXD`s_BrwY z_=I|0Jj9IjlpbtVxIg8}TP@XDd;&0V#Ho5=iuMx-nD6igdgpU&g zqO9#=MbL_u{f5%%g~1Uy8yGOpUHqIO*l)#9*_EKb8ZXPBy;6;@A5r^D&fw!&BM|J4 zy;OK4%Z^j;l*cl#3tCM86{@C>Yq1;0WeGN3$l?riMqjxl`AD|?micsCdMrFUh!NA$ z>FQvF$I4+X^|XOTR}X{$Fja`3I7nl{<8Y4F>n)gXgeykhKl+4R!&E#k-Tu1MAc5>_ zq2Ey-Fdm0v4%&2UXkmlr~_pph@A{1ffGyMR60$@lX@U3R}x^9YvO5@ghD#zHPcq8n=*MprN!8 z|AP?X2m80fw;jg<2onkkZXOE(llu%M>>!YP@3GTZN&*ti`i%uKkHx-2p)nHF*%=Gv zKJPRZfoASA76LB!8OtzSrq!P7?>G+U2K~mdj9c^_2f}(B27UE&;v$_l&j|-L_ZdhH z{*a#Q?>G(zO5JZ929eu$Aj@d7-{lVRJpIB69L+^R@?}mDo}H?@B|Rzc%FI8 z^Rzz2>fs2>D^&dFu3gPj0iZo6%NeM$f%@oh?_&CtuhcB_DkQsJekzj4l$+U7;8diC zrY!svNpPQs({^;PHIjc%;j-fnpC-{4UC{U!t?k=;hZ(j3#aF z4y4@m?-MO1yy2rjGLyaob*&pnBL$ypa1|a#q}EFf*ocVa6fHpbL%;kx=<$nPG`p(}T$a z<)K0J)i`Sd!}(tJ|C%&< z=FOcmqKc#cyZBeWZSEQkWJJ=j#Nr5hV~i$wehZ;%h4#6FbN9=ndAvt_Xc zy2sM5Nz$jUWAH+sAQ`2eG$W8twd;-UED{vRtU)WH!kNrMf-rmfGeA<){=$v<|0w175#j+6qZt|zv-0`-Py#tunj8tnV!?CB7EmH#m!d}izI614dI;@6 zH4UgVv(6I=qR1+U_wdEZ$LOxVKGbpjean1|KEz#$Yv+ir5hP^9=Hc{h_E7hv*ZZWP zZue1SZD`2MC=h*x_)I7o4HdfcMt(~N6$kn{I@RX02xc3vn9sS0a3vYCv-8X_qv@}9 zg(n_`5w=#+6G_Va-#b2oG=22DKUc8xs2tJN?A|Wpd&9eONhhO!d?*;Br2dXP5nVZf zc*kipvreGs6zm>HTM#xM)Hz)=q4B758ZB<3%!p;&DSf-l9v4hI(~mNt7t-3w@NQ!r zUTvC96b`BPQ`pv4`zi-eNohXl`mPR*RkTrB$e0$}Sffa%3upgcM7Mh-*Cx3=zfuT> z2qRgjYVoK$y7TA7*v`M+N5Dw)9Nm=G?q4I;`%!2CVVo1_2@ZpU*6T3RLST|x@Lh9b zp~2qwzLxU4^Kk6{>R%$91Ft@Db}#$D``&*JW=FjJo##GGpYz5d@PhYTJ0`4;hAPqm zEZ}QY8cGRG+sR<90DYpOg&{Q$U>?6Zc4A6_s{ZP|bUvcfI=nB(sGIy#PM?tzQ}Xnx zv5)r}pC#iDGeTNB{pes7t?7pTrOtqz=$7t?wG<@xt|udlujdaeE_v4~vcr5p01yW!Bo<&ueT=qO;<$3=B&vO#CZ$HbLz#$YGR`IW^jtRZGeYum5z0zLgX9EzC!p7#2 zQ!F5X`Jnr_Ha5;&ww0CbrideiTVyTDtZ`9WWNFuzueeALDh=DcC9Lhm3)9mV+Q6qc zdj+jqVMk;a_^9MV^u*A3wiC;!Rg4n1Pmj z2=o=Xv#HLtW9%)WQ3X_EY&3wfBCCR9R>=j*f!I7!OPOy_pAo99G(_{@i+x;B+($)0 zbMjHOUocVF;cg}Ssd!eo8|!1GkK2j7Q9X{SMP5^4Z%o%?d-<{x@*{fP&Vc&kp3~Pe z0&H{eM8HG9op5lwA&3h2Ce}X<2lZ5FE5I1pj-$#0BhdA<9Zkn$miOkMcJXHTY~yL| zD#nP2zv(*Lg7LH-olx}jL==-6(y?9$^CQL^MHJIQ&Bc2>FY~;DbZ2rv39vEzL!u7~ zMb@vu-v|(;NghYpRT?@GZ2*E{1=)33QRJXWKULFgZR2zdY7fFI7j9n`Wi;2s6aEuh zHWaxkqsaH7vAnpteu6iMfV8hN6-tU)nx=UAtkKH@>Tz$uk2T_X#PcY4K+Z8x3Qj;g z3GR(1x_FPqyX1NuR_K>jajsJ2Q;egfciJsp%Kqx*zT?b9vI_kKi8*zbr@wVepY<=USoNx5}nA96PC*epw}B6 znj2P(CMfCE{bvwCzU_Ke34FG0;)#R8<;f3dth3`<|L1h~=j+{<>8n@|H}S7$=#f7- zPZ{Uz5Nkn$6x@b&z)@N*m9_3!g%*?qw!y;?_9wPk2>rb8KkHtE zE`=ZGlA&!E!zMR;kKHl@6cFJ8u6^$&W&zNGN9!u)@vkupv$N0f$E%pT{h3T=b`}qK zTsL2|S0DA9xE_l8?bQxW8@?Lor#njH`aQb+y&4JDpUskBUB#Gs_vgAZHX0$u*L#*W zaTZ_*Imq>_I8>joy%rC09b!JSz#iXtBz#~~aO*#bvovqVQV?5b zZodI6nIB%EY0AUt`i{A_D&S+J9tq`$6b%aF3>k=c5&4v253_*TB9kTQm<9&9ISFEh zpbpyowo3CQrrt4}-t%A!nk>3|zLgwlm(X8IgcpG_J0M91E&;QbEtRr=b!<4*e6S;X ztMKMho#M8MfnHKT7v*rQ5GiPT&U?NBY1%`N;1~JfI}w1Z0ATD>Yp!771`BlaIL zkCQw)(4h)51xvPSMZ|b@<(DW^JC$49YCRrDfbd5af znYXPuG}f86t+^u%M4B_Q4+U??KDvI({9ZkMhK>k9X@+x3}lrFZX0r?a0CE#@s4F z<8|^7Dow}ZvLg?_)Z>2HnUno|F+vsxd4?mQpf_(E>$VK9vx#(a9I;wE64_d}gWwe4 zyT>Woa+k%TT;nonted_m`?6Jp);_s}ZN3h=bMimvjkko(BMb|>smA1T=Oob64D1b^WxgDov; z?!~!Bn0#fzm#uPGx7R|&p^8N{LhIz=mR;P-^V558sXs7Qo;lZi*@a`rhL>JnskLh1 zJ%_5t*$AOi7N@gAgSFCV`&$n^lsQ%_m*eoF{#A1LNA)L)h`M_y+YWaG!WSrE z6=A>z<+GLve2ashQXP=k$}uD;o>@pLyq<{bz!@NPW6Qlq??B1U~ z=+Xt(DE4BI(yUeZU31~!;gnY@QCVpgbt@i&At@7i35F>;qn;xjkzz zp-tgurk=sXlWUnTYHtQo+!~NO5_AvELA_e2*LS4KcJWe#ho=3VXrq|(gj3_Kca2%d z+eO(wXKD3JTIcBB1aaw|MiV{eg6?{&R4|XKYG~i=11;&D*Y`!kV(npCgQhV$BpvOC zG1)lB6nndhmB8~Jcb?)`ky(=7o|`WxdjwT^op^#%3yS7h2dKdrb6AST*X=`!o|q_kf8v_a4YX&GuRyGUA^4`yoowAsZqcD3Ht%`t z>9nO6hh^@g+cL7gZhPO?Sg7(nJwKp-Q0QBUdn{0s#g*~omFEtHQ2Aq^1uX!L}x zYltCt85NX)SNqV0U4u60M^U4FeJ~sGWOrMLM%V2MVuRLt!`cWb(=>MJ7H1!!0Iy;$ zy9Q39OX^mN(OPRQ8B(_3^`Xxvs1Yql#v88)>60(OIP1$AveEUsegm8-?orJH=8RdBdjSj2k3zB&ny; zzFJNmr?tAeU7<$TCm^s$*k3lHHxSA0Kz;!5=hb>BV%(>aWFaU5+5}IbRwV?90ZeIQ zCCMHb!+GC_1vX|o5{2J_<0+{c4sy#8{&8SQJt6lB6+}S!78G&${An^W9h7e2+_^^| zJ$m%^+ZU&I_X43lmv{pl#7TQ>%!V<*`M~c%i2dQsSUQ5ua2ODRE6#0NEBrPz+ycj~ zv6geIE`IKF31yWJkqQ7gHzUl*W%jQ)PtzPhFl!ln z1_{|q@T$Kkx+#RMVW{32E`B?Z^RH~eu(C^kw)8uO@xMv%A{&{+Y$0La&Z1)1JS6VF zZAFa-UR(TdeSz#3>U(=D;)sg^_fbdlH>&gIJ{D)dE>WDEK14G2OsA|sLqrCK%bg%W zr+;tf6N3LV;LbvQ>YyUiKSPrh6!Dt7_ciy{kO%4Ww!eYI{EUttJfPOLcqicrbye>d zWkBCXyZ;phab6Az) zDexyQNy^@86pV_5#_yPTMzF~eyhG5(w%;v2x=k}s`HZs(edd*b%^y+LRtXrARMAl@ zAskGG^2)8VL1Yl?@vs@R4`^BzMII7fxpJ$+)T4r_U*HZVvVW<6VvARJpl-9L2s2Qc z#-4#Mzowc*Vl`J}1OO*#b|6I*tta+CKF~L9_OR-W&2KEgM=Ao){pWUM;)$-@%{}DQe8%uS#^>>np+QW7ags6! zqXbBZ#QE1p%Ak>8YBc1-`b zsCSH>XB4Ca$Dw!DX1m){Cv@3)abs1F*S3&8MG0ikwJs3#Mem$3+#)J9!OH<5f#1B2 z+Q+}+_4b!klt1=ka)bVf-G-3RMX~;u1$*Cg&E=0trq{SHhI;M2+VhLZ^M~c(?s9yC z+a%J&amvv*YcrIKz;k}K7HWjMk${UUs+)F1c4Ho$`WE6(Ga{oSqa0Mki9;Lg#uZ>1 z5dSk`l2U?wEPfpxpskll&>u5Y2CaOXRiY?ZBBq#2XTxp(pKJCSiFHKwQFk4k;y9E4 zTl;fQsOrXd>3`&*tQ*~>7u_fq$+X~w%4PZup0`4#XCboKjJsb~e2W-s<#UXa# z;LNQmDmLO6SrS)uw&<_A9u*;56f%*a0Es$;ndA$}B>yST@7()dE#1|!Y!j)s+U`B~+;h)8`#IO|oQ60_bSCi9 zPiLIU(5d}Dh|apwq;3%$ba6-nkOwHS;5DE!zdQOO>Fl^51?tI)E*bx)&nNoP9}}^G zb<@rDvtpwC1DOqwHMy+b&&%!tz5U1Wvf7V6KxKNm`swoeQoD!^94wkKQ};4P1p;Ow28WlRC789UpQ5zBc0_GIMLp?U-?VaL{#mv& zHQ=<9u4147mJRA0*A$hq5ctlE!T#11{{+`E#G_@>nL$g?_kn}Y0|zejda6Mlc;(2e zp|uc2Sz2#z-@D4MsqXf)-mWS6POrPL#3g)F6nW8o_ z<+tD%M9j<eHqeC`hnNOsOhHDv2D8F!ZZ;k36-*F8q!i^PqbNK6LyQ!a6Y2;K z?w&v$mi0=l%_FKFjV@5t1U(8HyRq6})y^eWP3Mss5qR0<)J!ThvwJ#~nwGB%?Lv}~ zKvh&n!b5r?`Y11c+Nv6X0N$TZe=Ie<+x$f3rb;q{fGYAkk*rL;Ir6|3MNz`KfM^Op zgKGy|(X2kf?Ugv}RDJ@9ctZM!baxVz-fLorIuw{Y9==1)jpgJ!!ttp7>YAS|%oSBygxub_N1!u<-*0N;;pk~farMfqqYTulQvRAFY8-&g#OqJFKg zHCjbDs0JjNnYuy0J=uC!oeHhPO1r%($0{taaupU?`c@^o?1as5>XsSxniAFM`15$c z<&GpD7H2ywn0402oS}6$<^axWGosPOmp6Esii`vdtmYQZxa-=Q5DM?t;7wW>g z#zm@a=8aN6JwGN^|Do&+q5T*5TGW|areJy|E1C+Ef>h-{WS7I1E_A*b@Yy)lJlQea zTVRs2M1kjo0CA+I^^Rsx>U1V^PW z;e;l+{q9Qi_J;5%Y_?<*u=KXuM(!r*2Z(_B3!Ib-s5v%xe{o|iC$U-`I3n=}6=*Hw z*R4Ogc7B{4q}!m3XB5W>=Ke!~%qh*g{dW7*pt*MP#u>Yv-x6(cR}31;{%4eGZJ!zNfkTYVt)I}#AP;U19MQ#4h-XVPCRP#;eceIdq7LC zrcMMAi!tbyO$x>-oRysweDi{SZlqDqf_fCemS9J{>La`q$kXOkDSpKQJ81d1umj2A z2+Xj^G26K0^hZ9{Uqb}y3wNO`351;6QO5^SCU-(=#s=3*R+6f=hz~+&tX?mNr7Zp}qiiYcTH4PgVsYhnfMZ9;5(i9>2SZ!SKUR zCp=*CEviM=2Hzs>?F}Ps__hgn65z-KK*#PXFm`nor=IA3#o(_E!D!lUc!YOG;1$hI zra9oU&%H!Q%uZz7J`&&?j|r4t>-D?6J0a9~4zrUf!~bCyn*zH!A=Sh00@0JHideV? z_gL~yM>}}vxDTa5HN?P|@DrYXi8q#{CP+Hb7l|%91^b{)XZMLOl_!VUh?8XoZuT1d zVE*KZ`GXLR%Qq(9ATU}*b$92uZ9zO@2g}Lfj*wlGWiT`L8XVfr!ESnnKUu>;8Td^NaL1$|*GA0%mG{kj=^M(9+}ue06{1i#SgkqU{Q zV9`As^fiKlUb2Jo_EdH_I*{aO>12Aa1hl-Xh#zn0p@wBoJBf3jMw#aAE~y1}B(o!u zGMNIu)5z!KP>R6TN(nT(f{YU!BW+(21%8C z1#%SiI47C=O4lZ$vWM4&8MFg5RVb-?bSK=oY#zxaOU{66r#tiFkQy$g{ASu##&GvB z8|rZnMJf8%qB;+n*SL1PJ0IU#{e|L~#95Vi*DFNC)m0oe{4eNeB0){-R9yTu-p#HC zhi$uo4j5Xsp((HEd^y>kG}MM>7!Qsar;?i}rrD^fD9CdkW68FGIt41C8pm#*Je4%* z`f2D2zskFdj)F5B1z)h*@a;ul3ppWjbL2HgD_4YGRO*EVREMXGU>>mw{S9TY5tXOv zW{C%s?uh)hGRc_B#}`#aJfUIr*7t_42!Z<~nz{IvMi$BH3Wtonv0b$NbKT zQt~6n`Fe}Q6*|V+*TlnBw_jaT;`k{0^gkG{T6@>K+Hpg5X`xV(1^qeM<5zt6oZk&K z52cI4(2lrlCe}o9#bNOF8z`@x6-a~vVac;HDu+`@DUU0JRS6j)D6EPV)P!tc3aC+3 z5y$(f#0pU{H6>)g4RR%@9Up2Cu3zUUB|}NNuanu7J8Q#2Jn}7TA4S^(tmHjH$LoAm z-~mXuolx+d2Oq4iyv2C%5Nmk6$x?tSpaszE-G#+?*{O0BO%~qmcQts5F0{Qy16>7O zexQM{(E0v@ANar;RraLwcNw+Rf7`T09>Mv8Piczry(vQpsg$WcK1ycSVaL~y`hn{H z(iHU)W$2z@{V@j-!pwq3X%h5D(b&df)ES?MMQrw@V&oi)p}b3TI9wmima-ppDNfbx z{pt@j_W{3GR9O6-aP__JZ{(G!v7pzbW)+V;8PB`jp&~wcX17*9gON(X z{5x!JRN%%Khpa!Ia-E1N%L$$L@x$wSkHfH_$50J_Y7ZVwvz7 zcNc4tEXs{gHv?L107!u=1LvnkwfppnSbBg((4-EFbxD4dz|RCCHd`p5&m$U$R-A=j z=S}Yv@rEI{`|S>emK=0Wy-$7L#L9|{UqKf~f?Ls6zL}Rj_^69XsK%dwJfpjPSaoo> zOL1I}(3%m?w%{H-^Bcj zthPA}1yKz<_Frs24kUQ&lP7-U9edsp2EwLGJ?43xv7PA;v`)NfM@omKemj+;!n!z5 z;QllR?_0U^92Sl5G>=K)+ouxLO|#K?5_h*3k-;MV>wa{Yn_>WGkF?XIO>TIBZ;Jbk{VdHs* zy@%VpDQ27V2L|Q|j+0@??agt)j%qthgSl4FZvpp=S##ny7HIv70hr*}Kx(*MVbe}kgevsku=)1eTVh|SU^qeF6 zKfzKb4>i8c*{S*k1Wgk%t9ZiRz177BLbon{tOvmX*3zOJGOKg~%K;Gebm(NR2g2nw z)YBu-dUX@%P9nY~@S-7SF9+Y>PxL|4!wgvv`%&}ac$l?{Kt4@?6We)BZ$a#V7Z769 zUGw?iB38*c;;p^q|KsyM&En4P;YaM%Abxh-tryAQEc^`H<VMSGJ&Z5ohO*!l=g%@o_n^RH!BIp?BO2{;uCjC&oxCF8x zki1}?EFBqlh$EslhFz)#--FOn=@uNe4p--Y#g&yWe4a#n;CeFTvFQO;T!-t%GXYb(Q+>v_3EQtERV74AdnqTW4fW8gBwabi_z|VX02QW9) zF3-V7WM2B6X4s8jlFglT zoiOi!Z=s*vui_36Sv#V4JNPbI9`jBi)W@_8y@DEn7gUsng%U-SOUPiqx%V`#vtZ}9 zl=!3CE8X^};@zEMH?2L&+Mlbw;wWHf0611Vp`7mgeo{e+3A9#IM(y@`s`K#LTH*=g zzOMojKOi*s;gWf7XfHDGD|RWg#1TM<*X8cD1cI<5bjhNE&f`7Ae@xs-heyw$`HV%3 z&~WJDA-v~+2$G+}r%)oP(Y+68enAJs_luwdvHzkt`hHfz{9CT12q4&?{r`fXg*~8v z_Y7V}-#mA2lT!dM2yp-uFgkb-b^g8!1Nrs(?_~3oUinV$4;ZwV#|}4hjK}_UdB@P3 z`6)AmkIqI99&r~Ut2888Z#lXHmUPW?^5pL8~rd* z?3}<6$zWNFlMzkw%^6@6f^zBu^*jis`vJngW1j*&e$n}!DZbp;7q}*<2P89xJ$q-D zcU%;-^s)W`G{RR8Hlm{(@@2Z5U$9j{!vm-T?X~72KKR$H};{fzuZiB8~ZrQ zzx2?zwbqP?>$$|9G~*mp&S{ENmEPJ@4hJ`dkfFrH9d+2DAP7p#?4CB_xj1E1w7m0H zfw$YOcCqYapRASNAdmjW8HYU$4%Fc>5mua450-EjmLA3TvD`W(s*5_3PQ*V@Moc$N z)I!+7KB77#EETK`zTE1oReZ*jNd4H*0|Fvdz*k*sLqaEZ%z4q@^qoV}T&OO}P}#VT zGda6WdApm~cM2`)qI-eG55!{or-QXxpu2~?qiE6=@u@$RcJG$P_GPmOx!3}ipfA8{ z!ew6DL+NWfU^`IPUv7tMIBiY#0Y*9z`L9UFL*^&rh6`AChglkkVQ&!U-EPoO!K#-? zlgJM$dL5WEx!xt_5cfjYU~z?MOm%LjnS@eD<<@$plkQx^_h>yh8$0Whq_g((x}B^v zE1c;L(_g#6(u6}XC+BB7&uQtf&o!^P_~BEV`m8xS%}spkYSufzs&-oMSNizpkX3v8 znI`DEH~&?xy`NnUgTY+;mB0`fC=EbD_SSVy$D$(`?*GA#V|^AgD>jky#0|l11`SY~ zR!kpQkyT0@EV$Xwp5Qv;|tH$aemc@{pZ&jk(@i? z)91Y&D%kDyKx&YmS8?VO@i0Dy&w9KR)oI~@dZmQ8-wQsXI(KNJv?^TK$U3J&``ndH ziDn3Hs##%S6-1}-XeSMRBY4m$JRrdAR`??P|8y?l4|^t_!iAOJTc}m0rhZkUFoy

(NE5qwdJf zjb;}z-h@v@3H!N%HwbLxa-(xOwpWBWekvTFD|Ta7DOOv99DE42=9i-``$(jYj?6HX zQEzH$^h{lwQPo(_)53T)DLschtMC`=JUWx==vZi=Xomv1lj;@t04+?qHG{i?ZmokaGh5YAYFxCX0!r zKN|JN3WYD)>|UEAZDX#0TXMTR4t5kiY5!<7k?H&?#dUVtai)1a=qwvV3Q{0kRU(Qz z7@iBclm9sx%lJL10?PEOd+t>9x)#+w9aVyAEUP8MiTqsNj=}92hsTZ1&ThY(*-GIU zqL`}bUAsnSI;-(8ClWd2ZLvxkV~+yb7IUBav^x!6ISyH#hY?E{8BiO zIyh>ZIa%=r&6g&Hhw+lUn4hr4S#vK-YaY$sLz6i61eHPkt2s#=ZX#|>Aao;C6JGl zO8T?*dgi*t0@{wGvkelPu7Ak?1GUo$$H@TEx%)fS>RZ{4QWKVt020x>4)!y;}45KseqI%flbz~`C6LCwKE3!8g{T1Kb@&NEqp z#+WOFp6o(2$$pcp6Oiw0>JR)6z3=_YwsVNgE@la=Ta0pXZrX(H`{>ORRN~rdMnB)# zSaAd#mjEGrIG_gNA1-KeRPoXZ`qRyDPhPXeWc=LQT!Bakrh)(ma2TwCe9wsDpJG;! z`l||yM-~f(Q8l8^9huW3>S&?8cy`a?j8>VRy6Ntlrl!WUnZ-S4&7gIofH&h4;i9ji zQNf^C#ZwIJ``0~ZUw1ZH)NiB@-1L$g^kNcE>;bssclsv|a}Zj~HGml;O5qkVy!VtR zUZK5>qHu}%>;g1TB65NmDAjTDtv|V;1>604H=s}xd4FNfc6#cjDcm`G&MqFD$>x7C zIWfUO&t_G=CRaWlc3e!oJDS8t-1)hJ+wmEEVyu#_0Y2PS+0^9Xu|*F1)WTFYdsHmV zAJ03&@rx;bcL_g81UR2Y*5HT}_9h70#D$5SQ5{OXB!P`h!6JsPT)2eb9>!y&RW8(Y z2|NqYmec{9w~0rHDZbb@vBhuFV${9ctL(`ZbA`C$#?G@YWJ|*LoATIx%8SItpf3!j zH7DKq$00412zg?zP(ZSK9FlCe`#kI;$+mVNr^48lEIFJmm+rXX59|`is}@gXlMcJ< zq{ohi6h3DxD7oj{`7b3Snv_1QBhJui_c%T1O^-@;v`1o%1;|^_EXg>5s0B%t19n+L zB;@=Yc(3>(%WxfuCtMk3PyXglq&-d~qqt<3%@=c`g*(zSop|iDr+(sNI9jpaegCmL zl{-s#qg}Gw+#a9oWDeAFusOhG5phg!>)gfO8GFAM?;{c?`TKi3--jwRjW8T@v+K;f z3Zn#g80-=?a5E7+K~8ptmauf!Y3)1H`>OlWced&3J9g<3TlTrpgJivq=j(O6P+x~E z;P!1S3;mUJoE4n*1Y(O9c%;=xiAMubWZeQXp)gIY8$4A(02V)9;=aN4M0^M}GQdz( ze3Oc~pUq2A_K2KSsdTNHmBA|4(92#^6t9x^`y#$-F?BgrT=wVRy1d+O&%ZWR{FK{> z=*4;|76D_L4e23#z1{1%?D6?Ls+ua|10L_XQ8hM-DOH&Vj)+(FV5fYIeTch1iSu;@ z=m8-Go}e^3qJW33MBfG8MgD+tWgdZ1h2hJ%u!Mhx&x1RwyP9gl{i$N=wQd!$BTL&C z^S_Z~((w3xAp82))JiB=obr<)yH5K~c4yM5SCI8aD=L$p!fB#Zjn=8i%wCi!L1kYs zVnRJ~9$?nyIcG{PV zsn02`bIV1kiERV~f8llfcHj0kK&Gi;`YgaP`TQC)ct0#0&iWRpn04H zEWX(?!tr*~Aax6uX%&|;$SAI~=m%c91PAikC5~S@T-|YJs6IUW2HVGW(wh0$IeM7{ zOVLXQPt&}VH$+q72QqawF*=$09LPw8x$!6K zJ~)FEzYF*3kx@u2E55={is-^;M^K>^DDI;*il?7KOzr{T*}6}GY#~~s2WAf{Vme@Z zxI!(+%y*fPT@cZbe({UVT5zhmzOufe+kGaikBc|ptT!60DF72cf5C#>XXhW$!Kn!P zUlA`8jsZRK>*t9(G7q3P^%Zd!qrtC;J3{V{8+RsT&l7i(1ncv|-6anF3&0&ZmQdxo zE8@=n9Jmvc|JZRSAbXy;;l^gnjo3CNx=?oa~y z`O%%paiG_M*KUIMl3qcUHB+vcCq_d`D}Iu4My!`uEN8Rp9cV@xSujTMLyLF5*leyL zd$ZX@-;gi@G~)_=qu=3DgZ`O3eqbJWkA(zvrI~h|4R;8PgF`1=#y`#veoSlo*3weD z)mmO!+P*e15za2w(!=2n>!M40=z6}twzjdhwtaM31nJ#E29_WT)*wxdP(d`LBv3{x zDJUY{7dHcR6`qYjfmXW?BHEKOFuJ)J5fscoQX?BlmXtfgarCrFXCfMGFX>t|onbcW z#Y)X2<#OVhW5s+Viu_;a?a8k`hULE@4ilp z2Xjsg7LDAI?EKqPp!mT}^sxq?LiDRkPK zs>yKFZeRgkzr*baxg#{vJ? zl~7OJeA_Uiun{FL&<$XKZjVgp_B$MI-S16m{(k$TAHLukuM9m1RZdoNsP}$V`0ayF z>HJZGwLW%boc6=nxs+gutT&*!9S(oc<+gcbr^jt!(HGDH-V5CIY0ARn%X33YgfA8{ znh?JW5X11Fv=y*U1S67WinEV)#jt!$GX;$uH{8A@pJzjNgncRKD;}R=94Q`2Y4!B7 z67~4(F=Pqg4Wtn?K7dA@4v1Us_BnM)DQ1n<8c!ERP^ zN{&=eV#ds9#+5|pk1#ZrOh+BL^>9i*kzin7#Ak%;M!Ege_nq{N0^*%=b;XR`ggI$W zlQE>ej(^lkx!LS&@Uew6h3$`TAa8%EyYDnloa-^qfvsn20k0Ia1#05C!(NyVR9h+@ zh=ww<9JG51PN$!>T_GIhDlw>dc6L66xK(bmLiSiBH9wn0e#p98QUW=*)4}YL7unBt zX0uB;&t5H=KAXkAM%dHvID-vOxIqtp-klGGqigV zx_^x=rt9_eqN7}PbpIMpuQk*4^?f%f*JZQUDL3uw{x#{_6^rfi?VFt3*Zu24daae- zZPFUmL~sMTG-=Z%y&@A78Rmp?MG+vnhVplF2krQ?PLJ@nt->D7JoNg^{qI~@cxR^} zIS=O-WrtIiC7y-_v|{*C{{v)TPs=i;K1 zXwq38owR@CRAzM1?sh4E7>=K$-!Mh+GY=RyS%Y_&9f_dO2ExsFIJJx(v$#l6heMuk zvXEEK>+bhAqUBqV|cv#|Ha*;KKzTcy#0h@0Dq(`t<_5Te$S$-T|MQ zufdWUm58a!g-SWdkdOur14~=|fL$P9j^71oJLnpm2eoW;%fS5>G*U+Y!RmCmU7l{m zJT|+-sAf-`$W{%9-R6lg=Jac!u%5^jZY|^zdN_mvy^M8!E2C#wSD~5-gYlIg3Ir_#pZB(eNM^gu;U+&htuapih4tKojmE1k#WM$ z#ostC~ds^;#b5r6ubKfv0dwaAsMUkZI$=q$@RQ zO)aaCcyzEAE7g;2@cllPN*&|-UCV+F(x3x1HSdqOmDeAS?K7r4ZkxA~p0Ybem2pLz z3I&iK7Yf}n6FG8r!ohU+AJDcJV5}L~Y+IOE?JA7R8T1Y~6tp=r>9mse zxx$ff2+c#iryAM9xRGHo8}se{bzEK;PMj&+e@n3O*^z5F64B@D6h8pfXMVZS!vEDq zl|ixSw5wH^tZ?_y4|Ioz?|1~bz@-i|Ob#ePHXM2?!>Gi9+1bP*gDDS+O1s)p4&x)e zdsc^)>t@1riEM@>T*CFt&3JTA!AMU&5_+0D9JrT+UNGf-)3Y-4b!V=^YVeMS0x?B} z_e51oI76lQKcd+SUgqZh{ZoV|-z_(>;qJ)T);EM(%ko=kT(*+_d`%Ve}r zT-Lp1?oZLmUR{oV7ygWyW?GLQAD_K-X6Dw}@#Aqljbij?_iXTbLF0w}s;116Q#P}Z z9i3G)b^j;ZShok?gs(RPzcMgP5#JO=Yd{7)3R$BzKMHfc3QHFMmhs!JkQ@UU3X%*$ z+EC!SP^+8YNWsE8$js3FCM%o*TXeNbQ6p;*JcShyMPpb4<uzusrdv+FnC`7*`?j za}9en!b>2D&wQWPx`Kv@vG6YXf;&w30m-)A2K=Ng=i!qu`+eq=c_>{7x9*yP>$w_4 zR?`p%Lp}Ey!R5leOAP9LXZ3M!sqqoXdCn=dJ8jmkiM~Q($&&lFK2Kx87ng{Kqds{S9(yKrf)Y{Ibr@LDM6$E` zWfwZ5_K=q41*q3-uk3898iY3sO`Sg%HKj$|I?Y3LrvNi)idRO!dagn{WLoWk8_*LP z6(CFwf0V?8Fmss8J;O2anBiC6;QF$`&hS|oPIk2|7Cmw3kgct$o9m@sEo;}ba(u@P;bqY#OMY$(9HK4$&PSafq)g9HI)@b$<-QqY6^@FTgneMF5M3T2UB*weN zrc!i?utsyETjyq!X}Ac+lOfr0ez0DR)1(pNaWbfP8oE{w6M0mhBNc{(a9+4elt2PV z_5n2)0wVWoanx+UpgvvzI5SD$luvJBUc-qkg9k3DvLjobR<-rbQIsya zqGZzu!MF}z0PR;0XN>BgbG+FB6_5o*0RkcHQNsM~d~vx%e1q4ePq3EH zgBns0DRCItz88`rV>CN!D59d?W*a+vyP(1kzreg0v3@7kPqE}_+!0h&h|?!xi7YLX zAL5#Ih$Al!5pBa4T{mg`6H<@vU-1G^@rRR>HdUO8)peXo;sTxTyZ~GfEl|u^o1a`2 zX9y>^L_7lJ#-ULQubWCJAg!gpN)mM5l}|Ze2JU5X*Ghl+qyIVE*&O?nv&Q%7O!J2W zC5qCcIM}om4t;2g!*a!7!U_9u2FyLqEL%#j< zp*F|c1*$R-_NnEWnR0o0x(tZ{@7;12i7b&cZhER00v_MJi$K4cMZGXPi7UyvFo(e` zZlh-m71EW-mcO~*c*O1etsQ_i@1up2hirF%2A>^S-}DDc!=V;(8PS>@bXFVLFK~-8 z)&Q95xQM%nnvGLo4kEti=n2PB{Ldi2z+}Sf?W}&D1$@$ZiIujuf-{om`Intg>{O2r-Bp=3qtm4 z92vGkdH@r>pMz>-Iu z)1A%3C}TOSC0;isf#giGAjfdBsp~6MeaUX6h=3o%{{?;{T<9*lxn_{u*tS7}tcqKJmb%H!GkpIk z?y?OHDhg~<+&Pp|Atx^&@Xw4q;g_I_fDc}ChS(K5bAp(T(RT-`Rj~4m=JVYDV575X zcjb2-=Y$BgV#7F(aJ7ky<0q~7Bbrm_YAR$9F1?yEGj72`kBymy*yjz_v|td@v!iV4)8T%x?LqV$hCOA0r52rSX{ziP34 z>Jv|Nel9sSsZO$MOG(^SP3?1a_69tobv8>>-luOY(mqpSETjk2Xw&rBiZvu2VbI?- z*uE#KpVOcmc0QFHyM5ya1|PXeJM-`Fe#J`-b^|@V&PS&+D)d4jvzE+zd8oun^WkKW z{#p~fcg^)>)<-h#pT$0ni~(2&s*C|_wS?7c^96P&5^8m*@%50H#Pm3Y$>A-7dZ zv}jPA##+69@;0=Yt;C2k_+^*Kh57g(J<{!|YN`bRty$Co6S}bA0bTuVP!F~bFX=T@ z3vLW4)-^;8?mV`=5EtR(fAF&+b#-9KNE|0H*LKA=>VDU+|JH_A&}tjufcyuh{5GKc zHii_#dTL_Y(UW>j-FIt6E5Xl2PlKzVm4ReTexSC}3hVEuK8$2e4`l8Lx)JmDWZNFy z2n`V0l|WJNdalU5#7m-^+exgJJ_};uS}H&1C;PIQ`iQ5i1AM(76r!K+uz%wAHi}>c z3_?5R91T(nkKo&?oH=HztW)ib(xI~U~v>6bfNS6lOXK{o*`#+TF;d|u?*06DaxQ`krIwwU$!0XaS635-xeNVmO9gF+ zJ5AzJ9_98^D1qm@EbTfxvXEFjr)5NlM9z^vJ&Ar-J)}kEJ?yeYlv4_`Felu8=CONs643q@PAW zjuUhxeCHadInS#>kHA-m{)3Ritjxr{Y_?pn>js7Ia3Ku}I{CZdi-o65Y%Y`vRHSRS zHG6hfI;gY}Kot*vJ>tnd^w2rss`$suL?oa^BU&Ibk@f~dk&rEoWTn3RyhKvxd>_1$y^OzF;#U}VY1$` ziuw*hy;%_QevN5M>hcox&FwDX*S5*^>!POeay2X4wR0M4EorQ85od-<`IbJk0+~k> z`ViTTdq{>i3U>I4Uf2=6>_Qi;cu>nOv>tlsp&?k^?81^u8;ynRJJ0WgO`(rde7LEh zq3`f4ZY^rMfXb0%v&0#x6_nBrcw-Bm$k%DB*V?F_=~!B3&289HLkW?z+Mad-y`9x7 z;pZ9fR>~ci;*r!j;fsWUjC&*DXfgxC5v&BdGY}Sli=Rva+|WT+eVtf~%`SVxvE0}z z$8xc-SGNE9w@b+nxt_G6GT}mvM|J;y;kjf^5k;&<{7O&@MSXr0`3Y%3s7> zF67x(L5@*LGk+jXgJXOI+dV=^Qdn1?=OnSdrRa zF?9s^cZ10AGV!J7;D8fVLG2(s@gKXbGadt3X};~g&Ucdy1asKf?bQbm+&ZmEi&NO#JBKbA2YvDLMx9wav(ntjpuF5wA#xmD6&eVo6K8x?Y8CHN% zXyZhgu=@%oV?qS~vr-4L$Q6lB~a-nsM?ioE=?Q`>HLF;ryVnvi*I zOPx!E5~aLy{(I1x3Z7<_UM>?gz4vAO%qpcS@nbQ3EE@R?j~K z$&j_pE;Qkd_VW4jjdpvD>$$k6K;6VE{G8*HKV-|O5oiiXy&N_+>i8|MENz>B+J-C} z-C4w5Q{UMzER`@9Y`Ia$u}c?<>4ntPHm_6gNq8cUoj?DW@Ibm=Vy=L@As;*cLE#7N zjU5FgAt<)a@6^F7s}`|FUs_)74X;^)8vs}Bn}F4<;raO@AIY1Mm#P5vEJ;BO{Vl|j z!CBvR%CNU2{U+Ahwnqu|55fcTHEZVeWWd&)*p9_sJbwz!C4R=59wgA?%Vc+i2m?)w z0-cpg-3@*$S5y>|EO-7g93M-vU+nzR6YcDIPqG98o)}MdKF;=m&dy^TT7!tEc0=DY z>#!htibMzmv=oTVE{gp9S${)T-R7AHClGbHUtaNFh}4Zu`diBS1uGE1Of295>J zFEX0QL4v$J;m08Zm5>(av^0AveGp;$rQ}i@Wv<=+)@ri}#S2%&Toak|?sphJ)ezas z?8BXF(g&OEWNC>)Z_!Gj+1!w;uBB44-7?Tpq1t$-$d3m~NEXByBYU5))N_k2#8dzR z{ZFWV0F7cU6kHr!_oRRf@$HvXPC|)eS(@xde+RAT*&;F@2Lm1xr?= zg9M5uU;%VS)`CX(-oC|i?E>(`l)>xfxMjXeOfrIO3K2DJL-diX9OwF7p#0ZdV;e!CI0apT^X6|3z1{Xi0 z$fZXx-_^mUs-4x>*j!fyT)=&PgE`oa0AjCte2_e=xC=$rH_z=rUa$^6f|xszs7N`e z>>HiCQw>!|;8yWaVjm**t9S4DDWsTxLaBP$$5M^NAxfjr)x8hjZhYV_B&`3`o=@QB z?eWO~ZWW5s+BOr#K|;;|SI{LpuS5U~9TW;m^rd*zEmJ>%+=c8z)f=YXmgN9sH9S#O zt6RX>gJ*Y5oxgqZhAeAP0{u_z$yTa(QrNx0t4v+ns)az6w7`r=%-G8#L#Xf>{fAEx zQ9Y!Bu?wBc>4}N-Gwq4aH`oY8u0K11U_N6alV!^jX?nH&OnTxRBE4G1QZ_Turyu*l zg+!#hok7B8PNk9^4w0HhP`^r~*et=K0cv zawW|wkQNtY`ivAskfMhAJ9V@QtRs4Ury#Y;9d;{7I%(M=i38c{a7)9E6`*q)@$!b1G)Ikk$ZuiT?pc$G?ghE z;;ASxjL3y5v`{Eom$HV^3u3|bc}`Q%G3daT3uuOcVmC-1KyWbe1dxk1&(7G7*;y=V zUpxbb1Hwrr5>8YE_8*dbFX5CGzPycWvi?-czr+da6+vCfYBMv%xz@}~VJ;ApGTI;e zV$A2Ux#}-j;N&Q0tEw_Sp`k4xNGlMI6}HliF)=F&lyELvCkAXs+(j}4O7nPWTngl|z<~os z@hN&gau-l%14(oXC451^_C~$o_-3M9u9Zq`FUm30%H@O>QSup&g39Nayb{r5k1~_2 z<{&xcs>vC}^KtREuc_$WX|vsiZk1o4k6{GxlOU_Wj&`dI>B0q@V z86u8~e8}*9BH9*Q8~Lx0dx?FM1-DY7wwd#l`h~`EV|j%N5H#8iwuBtZ*X<&y4gXZi z46jxj8||h0ky2vm1Hw0*Cf{@fLsDcezG*o6hP1YAjXLfmc&&dXc!g=Q zGtK7tMq_nwKFW3aGo1BL3STEw3|zzT1J|MYft>LJ7haumt?;8JtGvXFiV`zueR}lX zBS-E%svgeVYrHId_>Macr(b5=n>kz^MU9!M{rlJ_@G9P;p0Qpq-+AU9!!@-yP!wV$G(k9E3!l!_CO6AOui_ha`4@fvOxPRm@v|pcF3;>Ds5vq> z_igd(&wNoW>VrGw)l$@}s@|ydYQwaS3LB}Rl8A!W%-A%N)vfubQ4^y6{GgD_ZnbE?lIsp1OI`02p6_WIHGWyI_0re z3f$O+TaBt`QE4NN)CG_sTE8HuR4>iB=9N;iK{ZSo#kq+2IN>O!(z7XJqBIH;Ma|;b z(PCQOTR}19TG7C%oBOo&$nQ>;kb5x--RVe#*Y|+Tjy>IEBV5iQZ0vWHc@NxcA{JF-X&V^eJf$D68-b1;3)<5wK-X)3=;wOOz zxsTJG0j)Jj5jSRoUy(fv9Z^QI21uP7dBKi&Dgm-Ez_VfK&DLP`Za6~{{vi|9=ab&z^AGaTdlzp@~Rq}*Fp7UNM zRH8nDAN*OLqWB8!qA!%6_6C-+l$VeVc}{pkLHtm%zF^RIG2~-MeM+^e`0kTyIj1KT zJb{LRf(8jLo_$;*O_ru3n%WND6~NMGHTKcF08O$Fy!AoI7+V@1Yu4@ocQfwC1OX?x zh~}uLA?e*q*jI6|H<#HAw5 zQOPMK_^v;3SU=)_gZ}XEK@NxOn6OEVAb}s~<~Uyi&J{cm6=nb%@(aky zhk8vH#&#b{pMNNQsC=*twzGTe;X~<%@bFGPRYJ8vgEn?rAY^Nz8|xtj%*SS7%Q@bUuA(_t=FCnC8$0KH=DI0}mcPWX>sg z{zycyMLs1B@C?Ss<=mRcTm+LoZqSsOi6#dV_vJrhFU++fbq%CLQzNPsCz7r4;l=94 zcC#fuciIF*z>ITkuC>HJPJ$l)Fl9M)C+ma3oEL~%V;2a=AWP2qt%=i^cMz)=FZAKO z_xW|4TTo9szQc@>}R6s9xNDZ<`#;nm&E>xiTP(Q175mQ zshc^mEG`t0hTG^($J%`p3jFle39}yN#IXasR36lt)7nLV-nYY0+$~yK6YH$=Pl;)1 zltvG|7kgW5(gN+NX5p45?U69ZgAjakmx@mwEI)JcBDAr7N-pDmGsmL+jrNaaku!}1 zWFIgox^>*ZIGKqqRU5~Un{g*hf#@ zJttlPct~=xz#%rpPgGRHC;}LZ6@!=?CM{X}Wx~VHBgrA?3(Sl3l5Qi`#fNTe-7X>; z&OSLoS!cpLUl5$2&k-LX!iJAQ=ySAPM90?Ltg#)wv5VGN>o^;LC&$Mrz{OyW0zN|< zHZcEI=&Uh%=c@}5u_>;MV!xiI+p4=Y=l@yUR{gv8P!B&OZ(zSj2NWX+nD|1$?E1Fn z;ud1+jY0SkynPTmbbn%66EkD9Nw~nQ8>aVp!U^&Aew;uT=wTy6`(j;X;?5-;(44dl zbdwSJ^NkV9FPpcBxp?!6G0zOG8S_Dor_WdmE;M@lyvOB7Xci#;^YC+7^Bwuc3E{lS`#K?4M+TBnuLxFvO3PVd9|@MEqw7 z_8_^8eS!T4E;N)&u+bAv{ei9i5M-atEWP9FLBQU*Yqf+jc;QPe_&_wW#UB0I<;0*Cwn&S88;_G(B_*+99W}g z*&2lCMrR#0xRm&6t97;yB4~P)Gmh7hK)%Y~@$5*eg+OY=#o)QPg4E)^_xqsmUE(j% zi*b^Lg&y;1$O$f3rg;4)5kQ836C|WSNTG5Brk0A(9k@EEHo(h0u3)%ETJgSVsG`j@ z>b~&Y`A0oYcWQQY?#5u}yX|)8RuV>pe!0R7>^NmMQ2j+h29yh;OSh)61~ruao8}Pc`xG)G!*mEU zwq;2aWp=q$ij0XADHDsPLQ!52I2uYtW6{DKOoJJ1TIWBf3v=udw4EQV=BsH$(W87z z8h?(a?|_MKG#qmW^h|bI(>(zg|E6cNa|QV61Z>2|DBqv>ie7+5p%!G6OxA(Vxdpb@ z_=<6Jwb5d&Rzqt6r5nxW%F^1}I`B&@0%Jfv7BvH8;xAClz~AM0GJ*kZ$O%G8$+Opm z@4vo^`T9Rl-=EXZcvD+14`d?i)bt-U>gTIKW)!$B+GM#@dXG)Ld)6r4aKe|Sv>HOr)Q>-<0Gb}naEVYcUFDTxk zsusP90gn*Awym8k5WwSnt&2lAiMeT{QpyP{+$NulxiHy2n&vv1kQFnIx_T7nUBrH)zC?lCuk#TK z#D?#CKEkTWbaMGpqcwi8dT?rKYKg(4UR~~Ng2t8^yj%27&?o5^G>)K8?4_OJx_M+b ztMB?VR$h$6aFE>2GG@nhk8!)Mx6 z#OgNI8qCWd8RjDnrHUhPiNICC904ckZkKTuR*>y2?o-ZpAwA&y9A>Ef_XdVdy}eDleJFy;bq6wbP>wT%SrD{U!MiWIXuW+By8h zZL0WJ)n)5XdX{i4;udHP9>gh8zUv%r%M~mR!aiCS%8;$=R^+dImCrf(D#cQV-~vVm z;Dan$gZQ|b=UE#iSG+N=JK{%dzDt%Ld5*_y&rn1{ws845Mg=N&c+8COXgC_hj}nU8 z;VTqDFnTncikOcVx4ix{+we~%XWgoWcZ9#7*SYn`e636KM6;+QO7_D%50-8FLG$WM;^ z^vGLAere?WBma41ZRGKhrwD$!drbxSs{SJ9+g?a%!&X<@1ql@E6RWEXp+o&DpL1U2 z``FXGuDQm`ovWNY)V^mtLy_8f?4`i!n+T_Sx6tJsfw0>X_jn?H2sTFX0jh7+fOmtJ!Arf-T_i$gkVNWiAUPPcDg{DGf zg`JdA09Awt@ESTIN`n19>fp!icGdXB_GEjq`u@(>SqqY=C=|HzRfi*ibZfl&=;Wj0 z>iZkIp@-uM)bdkM7SQs6{VnEnU{29Xn&ztOS`_ob1py%@H#nso0U1oic$1$_V&X~F z>H5|Ri{0OybcOPk@baTyP1)U;TXnp*{Q#yF&6r?a7I&|Rhj8(li}jHP*4t&O6}XTn zRe>94x`&2N4xNWG87L6zfcj+ciA=$XYvwwzB^+XS*M3cs)Vp`@oyKK>FR*u6FaZnY%{~qiQ)ua%=PKroDrt(eVKdPbFdxw2l=Zx+K zAFNG~69;@~5xQr&<_=d0>9PF|v!o=wN0L@oH8@Hj$eV67#I1C`L+&xR+9q8NXc9hg zF$eYB#B&3)4Ajzru!wn3P=uN@kk7M!%D$?wZ{gEw9|i=7a_gTR1z~w>6Z}AlF@Vsn z0vfPE+AT-j)h|J@ znk~aE1o^Z#Zj9u?A>+d6rp#+YMpm`eyWP`U$ClsG*@*4tgZIY1BFq%Jfc)t}n9=(b zEey86yzhC!ynSR2^Y3mQo5Or#AIwh!&rXW2aKcsyb_n|;1Toy$q%>LaX=V2E#aRA^ z_|rfq6bnMO;(c4r-oTUTJn;TY!j0Ma17E1v+e0xnMf-`dDax8^Q0y@JAKksGslDM9 zG5ih8c!%6KK9vnK_mb$9Y7GtBODaM~QTtnvy|KC#(?>{{7yC!!QE$LuzF^pcRePe3Kt{XO{2_wej_vKb%-e}O#*bXnAY%~U82GVz?XDE5YW)QG%o5O@( zOd{~|6^`dCtU-pc5COMDKU?tqmCPh!G3YBZwRI(q%+!?ia(7Q@t{7EJ+Ic-Y%*NOA zgf-xn`S_}|fe8iATfuxn8bD4hI#c0}Eg*GOhb<7n*jN|$@Z%v&RlCY?BO+*`R`^mj zJZkgGv7$W_&Xy3?QBHV#lbQK=#8)Q^CCf%K9?4zJ#yr`GS`Mme&>8h=&HY9);9w)( zXs+Ex+YVDNCm2Lc5+1P%v;CH7Ws>dd6d^kR9=4S%Hq7XsKa*EeHlup;0EDXqQ*b*N z-`4XJi?P_P{m^>MBo?6?k{%v}W;g|{

5!?+2DRigeh&5Lyib7~0%)u|$B<%LuN+ z%e?NRJos`+!CUx$UX_Th5>(xUxfv+t7Z@LafBNr$ViZ92+QLa!UXlGNe_*jxpGoF4 zynveTURzShxl)tXtmoNHqQC!Pj2)?1<#@hhyo|WKHu% zodThM@@ui!;za(35mk+3J+Ul(81yV`E^QNk^Qa?*itJqqv(Pt)92Bj-TI75>ucU|s z2|r3oK}GH$kTadiZgf%LNt8>_^`HfE6qHNZaE4IewT-f3BuNA+u<)`Mu}o7BXz_DI zc>}#Qnx|;!n)rU}f1Ts!C|)Z91#pr znHn1Xm*o8xaPLk2>#dGtG{@*j?>i%@weGgd(RAnQ$yeOgC6d^Clbx^Kx-gd2EE((b zY#lbZ4C3^!0bG>R4SO5uzKHwgH!jKjR6mreT%no)>PqweI4C7u%hOx=53=Y}`W$jr za1M$^IsTrd>Qb_VGP*67za(`ojcU5C9#C~%8&$khQ{JL)a>}dt+-$_{V-2*L@*F&f zz5;Q`OQqyGgjDx>vb5QtPtk|6K70nB^PQlV=q>}an@q&-ku4u!njO0V38_h38f0W- z4vXsQO;nDhH+gqCGtoALr+PT}dsqB|j3z=;1N zBo?j<5tl(bg9=Q(Y}(;)#k{D^8*@1v=`3_Bk+0$FJf2M$M(sKvQC z*pT`AELtLYMcCoVnv0u&Y>swV(8;rS-`4VxkU zA-0p74e_V>8&Pt25`lM3vW@c^?5$Q0LjZ^Wv+lc3;N0oly2ATQFgkIR7A3+eN%)7m z;Q(`5b_^~ylIVzU_Hj=>@ZbGXvgGludOhC=c{*Q3BeFy!a?5OLc6u%~JBi<{9ddhq z7Ll{-UTQVr{q)ax@}G;wBawLYfTm~(RZ;2N^aBWZC_1qU8HRH9cYp{C0mb4gR|(e- z8-ZdVdv(BdKJxSEB{>8_EAQ?S{AuI?%5f-n5jPwb>It2UN1~GNR)v`t4nHcI4|+m6 zlO(ezN>e2_;!7VwkZHLAv~`|dUH!OXC+CWBsk*$J2n`QJtr_4e4FkoGo6U@u?ocS= z@NI0GaOH7_&hXsr=YR_^q4frb2b>eoRR~P>7p1A96&?$~lHtzdmjd=L{e7oX-PlMS zxo35C^{KFZbqC;3Ylr}w&@UMcYU)cm$p-Ih8y(dBxNU&zX;GahN@ojHDP6gw#8vfD z`@X&L{7K5DV{LvLxjxysG#hEep~4dX;dZVy*jN-u4U~~QK{3G;&n2R1pcvP6s=QJU zfTSU_>LnRnm*I2`*dS0Kp|ktfX0ML$=zP2ud;1+~0{thPah1i&j%4Jb5uZDduikhd z+p79wStUMGj4;HBFV2d>$V=C|-FaD=NWS&v#H8}=TM|>shw=w!<3@J>O;sfu^H(Fq znQorU8g4wYqDCN97|6GRToJiSKr5Ezi+q~G%?Q8d=GDTyDsn-R2unACXKPmj`ddWu z2O2Y3D<<(m=wp9{JAm>l$FLSy>PSU~M}SPBbn%L=QFiNLp@fU4K94-)y1tG|?)fzO z&A5H({MdC5_+5~M+VIgH9uHm@9DgmkE-a(fQ|X%MELqZLqt}%1i4K`j-RjDEwR-f% z8%>$rf`Mvl?h`Zs0RZU`rm2mh)DPeS6yX>7au-Z$tw6bKw%K|kDgWa}Wq>B)9_XAU?3Dg2eLb!$B8XFnhT$@&+2~FTMLL=&l7vCY4F>Igz zWu9R3bs;s;$dS6j{czl$`?u_y>;pJS$Oxh+8v4emH}9wwZyGH*GKsX8P4)hKEB?#` z@rt+eHF`Ege-b?tpAzGVni4}sM8>pS**YvAp!2`d|Cs(qHgs?nqSyNDOFptMZL`-3 zX_nLn`p?7ms27=)4~eBK{#YogDA7>NuZ+$PSZG%eX%jDu=3{iP#`2>Dgt(t(-qiQyr z-R|~J##4z@Bo=tL-R_MB>`o{8l7;>5kT(+adBaXusfURp4wv8IvN>EHXQZY(mBguv z11*Uh%%)7MN-gOK$Ua3KwWG+aqQW%`J_T%3oE=3{P$u{YLrR@hFogO(*pV+_7dbA1 zv37mvY`L#vLzr3;EK}d6z39D4F+e=Ms#jEm%9v2q4^%%B@4(wOC6Gz8c6W4p^hsO8*I2NZhYInO}*C2xzvX$#)9T7Y-HMf;D z@tXBc@q8UMzxX@Z2oDS5E|IAoVJ?F2!zEPorvky~RCGxS`g}puujIe(4y61cJi9*_ z4hLhOLuy$tcPjTb^Y?GilQFi`^RrZY$7fwQno1IlbbWvi9zy*%K3*^|!JmI`Pz*K0 zNBTVfIcbhA;zq>&`d}A4JaPkKN?$SZ8f-jR8V{7iF6tEu@)LQrz{ZxpkZnq>vJi~f z`^!Fu2uxTxbyzz&B|~$7ff4ReJV`kxoVszr=5>&ecn@#=esBVby2tkHdlHDuW}>lR zI1q9HS&o}M9$J?kQ9|)#7C0I&W;2rudNkCE(CYUEvSzK~MWV6Z^=wwJ@2<7RPfz3>FV55eyUvcsw^dfJ-!!$0wpl&L8mw z9f%9Q84M??yX5=BQpg*dq_O~u`*&r^ciuGhm5{=riN`n}7r0c&yH`?i8gMnjqFzG; zNFD5x0vO30RLCLb%<9N~8cKF@jC=pl9dG2(Vz(vx2Tnu5PJUK&X79yRS#w0Wbsgg( zA_`nq(cchFa9Mk?&vk4 z$ecWp@ubJlfjqz(;`Z+RSzNg22nOn7%KN03 zD8PUw=}HMu-vkIG!-4xD$rCRN6$n;gGkg$XyCm4rB~HKd_fmhlq|+<^j^xfso>Vjh!vd+3 z@o*b^-IJAFJp1BBKuJ}NpAV!}%1?bh;I^9?+>S z499N|8ZnJ5Hd@ShPqW!vU+=7IurVa6LSnISO6MmB3M6YDsIDt~*ASnLfLpQ{P^f`8 zF_fJ`N4$HuDEVZA0AofAwR!bu%ka6^T>iB-%n}q?hu|HAz?*?()!<~}+_}VL5N#;| z?^ha>!~Z1<9>L=&Plu}Qn07lvW(u++ByoZR-ShLo`F;EU(e^H2j-2J0X#cuYsj5_} zDwV2AYTc!l)ROu#-D=N)({}6t<`!avAtA;lYa4n9fxyJc z#z{9U*^>>~^CX0ZaP|;LHW$)O7S6Nl%{c@zo$O{$o`fWuBcJ#Ce@T5EWA^Oni!P;7 z)%V}N|GT~)^7`wz0Lt6KGt#Lch7HR6W}6yH8v$nABEpJL(4oFc^GN6$gL_oSEKegr``N6@AQU+(~l zcL_^6hx^eZ zrW<;X@ez9W5#tGZ_oD6hOxu?4#G4M3uH3=#4e@m7^@V%yS%}9A9}78V=mC7$HR#JB z*W_Pz4fz)nCp|OTq;I=`JH*`Ww`pwTF5o|1BFoCK4KM(JL_DI>F+v+*A0Xb1M~}8; zgOSz*3`=6-c;{W?Il`uV^Q|B(4m&&R@;NZ}>+iq6*fmXmFl3qmS(3tf#qVW2kG_eGhKS>W>BnJ^1myC>a}>6Jaa?Swv+6s?LEmB&lT@~;54?6 zE-n=Chj7tA(8z`LfEElG#(W@PPWdGT*KbBM?uqnI1!RTa0LQwShw0rrvp3Nh-K1?d zZ#a|u*&V%2bC2xs--E52cW-r>uc7X8rvtf6?_hTU(fk3@Eo{3ZoE&(N`@|3@ zBPkLaG|>sSHz_@Nj+T)TxCq?<`agIj6b(QVB>}{UPXyz1XOVtRhr(cy zTt>is#Qn%N!uPP(a7Qp{y7Q~tczH7sU3-==1*~R?#1PDGnO7Wk zkx_;>Sjyy6C5JSGtxB1kwyk+A35*yX=l~T5$10#N<0C>|htx;s;6MxVVgCpnqf_T` zWqvVUd>Xnm3~>AaS>5<|QFvU;ANGFT)?GQKM3fL?5`5Bf!U^~Tz5vryMM42_)v!#) zv`8Q%VI@RVnA=dDHy93t12Xgbf`K4Y3{$mymSRR!*xCYN=GtLYsSZh6Bo+%hAtw^6 zMU=dj(`;130{pzKnh`@Cje4PoFBFIF-3Z%m$cIwHvK^L#L0`ZxMP!@;vtd{Yn9K@<6j={NrKlQ_AfGuB z(n|e-sFqe!Qm7fzP24sTRVBaV3)ECzgFIkL0Xc{==hq4BA}(vtBmzG^hU&uiU$ zv~Wn%)Vi%}wsqfqW=uEix~e&vs_7vutZYDL*igc~-#K;4j+^(GaprW(bLDPlqr>Wv z(TEz>!(?H{lNhcp4NtZ`NfaYqNLF&)+q>WFI^j z^?Vb>pzH%a{+NSu@T-g6!;jn)iQM$a;qF&G!}L<8n{o(uF2lDiWV*q9JkrVtZ$O^H zeNcm&ZiiG$+!@$pnB3SXP@}pmM|`Y*$F;S!%IWIza`ki~dhnp__e;*0>&M-L#R=c~ z@WzXay;ZG!*VMzOPCYzzSNr|0Wq1LN`Qw#(ET|v=?KHJn$ULjq>q)ygJaQe!Q{&@0 zU{x41KK{dpfno;N51lAOBJdBmaBI&CU}>es0ByUX=N}n` zT_Mz-#hM>QPy@6Q~#ZF>5)1M8Y;YCrkE z(c`cE5k3CVFH>~PUj$}yqvapROTm*-yXE&m%Q!5oBP|dE%^Pfs1OVb%SXEHJxw0nX z6)2>~fuK8FPlI(ecqZ0|SxGPq&GytS)2(}AtpJlkiHK=vIX8s5+%YpL$ssrE$A29u zH#`2FpsBUY(^YKnOVhVZ9iRP>>MCJ15cF$Lf@#_b+wh?R8Oypz*9k1G(&Osa>GA7V zs5s5bO*7zswlakcoZGFw2)kFmjbyhg?AI=^Z*qlXv2iyrBFKiO27sXuo4#gCd5e)| zpGBkaFH1=?mWK4<=1^86k^o|BpcT8Pg+`FAzIxhhX^3vz(O5K|)p3uooAnuJ8d~+F z2Ih~XCRhE?>~ZuT`eCZ_ECi+I%hbFpqN$?UOVsS)SgxX-B-`znS^GB_1L+BV2!R>d zYn8$1UE^8!kecn83vakElXGQ1{?T3wVR?aV1DPz<$5OinwA4P=F1@@ob72O5pWoTm zn`ji#sEef}9IC%VFQ555wdwPh`LOc#eZJH#;g5I%*&)}!2m9@0`wk|bs#{A-7PONL zLqg59MiV;+1RwFK!=B+I8bBx{OcAo|=KT2Qjn9U8gLXAC1&FvL4W`3x+Br!-FB-n& zX0M2L@b-ymds(#g8EW_Mz?qyZU8I-7roRUN=a-P-M_2QN?G@S@c-E#k}?(yEgbi+T(*#Xk2aqC4+ppCf86Hy`^JJq!N#rT18@K*Z8)IQ%DA!Z7s4pRrCpRFOvkUb_#cDCX1P4w2by6N^S-&WNsIB&I5dP4JK}J9kYw z@n`en?6Gnrx|d_zojV6cQJnoGO{1TxeUKK>kJT#l#M}NwKBpYmNA4GGcSv&GVtw=E zC>pZ8YxIDy#={k|a|{RX#k1&vpV+|&#~0#bzcOTlzZGr1tr|?(yElYDWm^{zv!rf# zGPj*8<}+hvpC{h+TV9ggU5&ciH-@#SRrzgdv{+^@)jvsZK3Ja-t7|Y1L~Kcsun_mj zaNrps0RMp<9iA}E0YXW_<^We0X7;Y!itd2}b{dgoQDr*6?d9$?i%$YHHa-^hQpf9G z=PxZUc>-dVn3qIP96klu()OWekP-D-DB}4Sk8dMn+so}V@l=d|wLei?_B21`8MjcN z+J=eI1H47cdz|HrUhm|47Ymsqz285QDXg!t#T)XOBS$ju;!u0IzSqSos$D+m4llAFM{$Pi*l>TmfMzLSm*BpOBuC0 zi*Rj3!}p!=nt4iWoe|>+mIzC?x`E z5gEXB59l9*08mJ;4Wy=M3DdQdK)^CerdcwqkYd$bCmarE!5OfwS;ds-H0 z)gj$Mz@Z)zrm~RUTW_Q30AQ%MdB0N)*;Ssu2@RgtLPPUr`i&R4u&6w?g@H+%EtPrW ziG1vt>_o}7cN87F?sxhTfqvOEH=Z?DCo{!X%89381<6dl$&68@vBw56f~$cK^fnOR z(Vqh%-kNd>IBr6G%>>A<4fFN76Q->t%Dj0e_U z-5{GJpe=#)j}xl&!5^!-uHv2)lPG)~lp#%aUy6(-oKoR@;{a++fLd^^a-drF2?-(w znB)!zz8M?;tr?gl*?JAO9Q>e<5f<4`MWr0p9!8Ila5gZAuvj9$45zH(gN*^%i8s** z<8wAbr-D8>)%x_Qs2brSil1_-2T``*U}VREPf(t3AvzV6OPk24@-SHQq&)){6yPc_ z)RzgQh~DumQnqsF^}kq#M)Of9IOV^|TETj7tX}_KHjNiD{6Z9^ba;Io{`gzykVPk? zGg+Js{qyqt{NH8q?KATi=dtsS0M%kY8mTtNJk@n4e`TLagd7lk6;A99Dk1EU6n8CZ zO(OKy>8_mtwd*Tzu-W^N{3xe3%Re!FvDNw0R^>(nmA-uvFzrJD2J&XPFRsq!<#L2*Kd>x5!%K>^1U z9$p($#6cDaF18tC%a>xC{M(xj`jYkw@tr(o<0QW40YOFvXCaw{m~;{BwS{10PzUx@ zDOXA`PT?JPFVAI{iMaC2LgQctZS%WlT-~nzrd+lc)?QL(agcd!pwvmQmc3T{0A@KOElJ^&;E*i7QPs&h%Uiz zU!klIB8GlF2c$JTvb;&`YpI!p-TQ|O3*7@t5`*oC4j37O-uk4_Z>C@dyN92k8>SO= zO@06;=%(RBvAvLOmi!kY{x*soCq*$>sL;sAhd43@2;)@7kO5r41Go0@VGHq>7(&YV zq3{>>t3KbU|0QZE)(sCEj~;u(c-USvEyZ~0BxAo23N`L93udPgn#fw_9si^liutC`FTMVzh7;Ium${Cq1r5dv%#Y#A6Y;ZM-HJP&mSN!v7;5qyWR zi889TP?^vy8$65G74`)1iYIcpJA2>HFvYG#(&>nvPXAjylhL>Rvk^LJA{*tWX^T5P z)b+RWFX@y}LOPU~J3-1=94dCdWl~eQ!u#AUX5+^+8tQa#?o=y(2$z5##Yvls-qcpJUvFHv<`Uy z+v6o$jhA!Pd}(ylaYjc=`D(6=K*(5X80RSNPdHco`&+mr{5}1s@?n;FtDe$O}_YkQ9L7CUUD zLjZlq_;AvxRJ!Kir?!|%CR24M76Y&{r3x*oE*R0d7IgfprK&&wqz;cX&ZK zOORPyq;hHufej|p0}=u^b;}o5jBLVGWsOBtD+Z&gqPdA!*fJzl_bkmaR3nzN3@3G1 z$4Q22dD&_-jN~gH#1|>6YL*_tWT2!d5nBOk7rPizf+lnE-EdI0qGMspvwU7CtOorG z(}GGZJ(Y;XWyMlsRzS{$t3!|8$G#c!*25~tgv!!>#tbMq+Ww!$(3&PJKP*gs*pqaYwyKoI*&A(ANT zx9u1XHG*7bhM9LB`-5=O_usJ16USPQw~n2tjN1Wy_ROpiHuJ~xX4t@MJz$Sldh1v) zYQ#)g^a3O&47QxYPc0IWbZe7#)J1{gUcV+R#Rn)F;mv@+}p5T!}RbA(F`lNAE>dhJHN*>37L)@oT5JkxaJ1dDaCAKtF*b?N}+VvqsaIGZH7uO z?MMQFLWAbf07`{*9@XbnO!AVOLFh3tH8@>KAti6j3=XEl(C8@l=8XSY#iM6=2BCv(l*k%{*Q zuj{WhK@ar~ysN=!CW`6t`HHADs)!=`Vvvb~Z5u_I!O75hP`0?qhS;4XSHQry3l^n^ z{_N%lK7DTz^^SG3;&Jq-i|8#R6wmek%cL%;a*%c2-VC0aM0XyUXht2tR3D#E`M0uB zgLk6&9MS&Si#MYo@*LCBiW>4?LJ2>mIdKH7n7l67)FzJC>sgY~uxIqgIu4z&IdW>` z9L8G&lfhxJ)f6Z!Q^Z6DZJ_aYJZdTS7MdC^CAA2HCdu#vv0*7DCPBYF#m0na2wZX5 z_;0wt$fDVR^2CGrk>hQeVBO)g5G_J^y+-lpL~DYw8qcW9a({}jk*#U7Mol}86z&nk z>L+|OYhcr@D zfTS<4qH*{fiLH<*fSCfD2intRKMv_aRLq>@y4n%m0++J&F>oLSbZj3Th=oFiAomt; zhv3#U!Wc}}DTd}EMgS-n=7U5>J#GV#74WREZ`R{c9IvUCGPaELfi9A9LDHF2mlF%X z)_5je6&S7c`Yo_#fO_)pZ|UbECNe*e(Fi(+Ak3&6snd98@>(m1UPA9u1QpFG%*ZCm zW@Lcz<1Dt`Ej&~}H*{CJ6cUEKY5c6O)V*rA>WL0yPM4f*bOuhVp#yvC2$pQ!cw=j2 zk(XuZ=WYsHg*>zzaEk@*-N3$vk;jW&^wE3zoG2k^X!HSoFfuC`KS5Isu&eli9RMXJ za9@yCU+MN~>2{Gdjnipb5+CZz`!p~6b?6An?6p#G?YqC)t@|>`KxUr84myyM0cOPQ zWM~?(LE5^vjx=T~)E`Z`vqvWG?va{(OG};QE#deLLos=yU2DU0zNIIV+zuKj8gF>> zzSvGikKM-zClyl$u*|O_qxYruJ39!i6Vf@6(%pK=>Zr2X#u!lSmC(5a9nIHHiJ#+C zHCp27H4*fe9hi)|i+H#OSzS=v!T*T#3UU&lm!8CGr&_jS;N6t-43`GSTB|^B5wbl} z#S#5R;ku=M$TK<(`YRth{>&b==gJ6zK&CSAAyyJm{($I43d5}nm_)=3A#mugZJbt~ zdx*4`)jmEd@Tw8)xeUpRfKkz9+vaU}=mCRVyL~4dsB|)tceJ#j~|}OdCAU9bs8Bv)77!0mzzGcJ>PCc#9`IvI?L$(GnmL}vvs&spB1Y?Y7Yah~&3sVTOKF+)$oiMv0>K@V^C>uuPR)|_COhhAm z`xQ1)JAX8nJ9_>OJi(|o$Uz!CaKblHxT7#(6f6;;dmyiy=PEDcD(6g{E%(2HryBM# z)VLIRONA2$MmLTo5=Ygu=urGUaGjhmOUEqhSjkL)S<<=?au(HV9Ybf6<&?rZB+?9# zFM#wkm`9GoCPBdf-h2tx6ZVB8fK!}}8U-bXppIwZn7cV#vlJzxjG6EHSfqF5?0l_s zI1!D{YKm&Kw1oOBymG%0jl|V4vtg>r^*?K*pISKE*Hyb|Dg7!100hj z-RCm0QlP8_Aw%(66e2wdG6K9**rZ_JL2x|QGi^t} zAwvmuzU>2j&!5Uy@~3h)W|z2~HR|u@W*v^&rZ@grcXDhx|8}y#)-lGs-^BeSp$o#% ziVAp8v3A@T&O)-b_9Yb5Mci@s=GojyeLSoU2HEG@+wQ78#0hzFvio>NeXDOUq*~ao zZKK+L?~o>8=Ma5B_-;E%+1UpW81`#>eRbb<&-495@KCxwwV7gqUTd3iw;#~f^6C$2 z=Lt>&wedf(|NL6US%#qxram(E?c3IWH6=jMsLtHJt$u_c(nJ+H7*@rYi+lf&W4@h| zAJ7lKx{atG)FV&qrH{*<;O3A)VK6JvG_T11J`XR;n1`@-k<+Pwf>bq3<_-{S&Oj~4 z6#P130h0(b1OALl$Ii@d0Gp|vPLzs1n(w==jpc+Y=hwLQGF^Lp*R{za-e&bZ*T$Z> z?b=k^9Fp;_s}C5w#|=}|2)Oh}MTQR=!eki*tGC?|{t*PjMswwQGW&Ho@Uih^J`;4L zu$J3FLtWVSmQ^+CB-@cB>U_(JZ&U?e+>fT+z4-%a+R?+;rfEl?zdB8@ZC{4{mFg-K zA=!@DkQxVZEMy!Y>6PNh2r!pNlHvXKz8!4|mncsn^(T(Nh zyYH6svF^@&UBppiQ@wU>FAoeMVPq?rjT%Wuu92%dx+CVUUj_3T`M15Vi`c$LcZB%$ z=fNiSCks0ZVXmN>1#;&l*cV#IeMcBDfJ>y!5Fs9aL?UDZ)-(Q^ZMIJZEaq+`g0&N4 zs|CaEUAozbzYWsQf!nFS&&^*4$Hq~Ovj%1p&=j8GTd*pZ_M zff2G0$!TzgoWlxtuw#pSn>-Jr<_T1=eU!;F$&4>(E?i7RXk6$Cr?BHs-4R;U9IZy&a$dyyTohT0n_H@H?~ zt{Ns^EcYXa)x>W@(-7-pAX8zN3|4S2IQ?6=C>N~|{RA^Qqy;R}I_1ELOaLUuu`igt zkFZmZ`IhUR84PD`;>%Z(od-+v-Wtf<0dTsn<>~S8&-e2{#`3U#DvwK zr121bxA$RuYPD(i>;X6$Dlv9^ z(y7(n7g(55)VH5qJpJHe?d_62wZK^;>5{_F=3uPHp;3{xP^@rq2htW#Cuw;OijNEh zF@)b$U>}fC@CL$I#SazRb6|stX2wsC&yMFa%7L@zbJh}Ytbl{j$D#RZ{W4IJyY+T$ z6|a`8@tNxB@l4{z^CvS(9P_Wflp>fBe)c-fpwr2ifgz%?*s=!*yfm^&9T2o4xti2# zS{bk@3X8y8Imnf8KsXJ#I}VUBfV6YA*16a`cM-`9TOk(xgt@svq(!YVUAwzd)0L~2 zE?rgh4TxtQA$u>25Q;wkq`4@n<6w;lEOqctejDgleY}bRGQ}m>t$E%aWh%ih#j~bh zs=~aW7zG?fTetLk4R$%QRYU71jk@1F)PNz;7jRk;?C`LM@?y%|jEaNUNl;Y=pbpDz zBxAMzGMZr69^-$~h5rMGma)T9oB~<{nY&#l-Kdzr1nFRL@X!RV4Jn7Ro;s|*)#9wF-@UI!~syzoPGhV>Q+tS;Q`7_&N{bUIj>zYb7pTtcjFo@yNna+m1$E{1h$JG&Ok0H1BH>AMc00?4Y%n|5#k! z&?w7UFEs?{u(00l-+XxJmylVV6UjZ_2jNKB`DeeSA_3b!iO^r*LXPmK9?-T{FJ4>{ zTbg)W=egD^^a#u~JgzYJ;>EtKw!z*Gx_Dk3a<-tkaVZqR3M3FC7GRcS1+pfxcPPq* z$;^cdvRhv8nioEu`N{<)b&Sk!>``@8z3`RHr|+2a7Rp}e_B%3@7nE}XCbvJ2DG$n_ zDo^n4lf=F44#V5Rqnx&8E`+?&g4?|CDY`+@Rxf<`rb6P#gCDoj_g`r8>tDD)*N-NZ z3!l2V5N|)YrDuH!xuu-Pz@IhDu*2Obc#PV^;VlHX%MMs{uJz&esZrws{A0W^{AR9v z!O4%GzU}n*`045vG*~ouvx#`ClSJT-Ua3`^U_AT_#GVEiSr6X3GzF|{t`DvuFNONz zEXUy4zc*$v5>l~Za6AW~h9Y-`9#6nwTn6w`!#ly|_(tTpUTfCz0HWgz_;t zi(h8U^#w+)fS=WUfuIsf1pJN<7==E^A4ph1_zwI5Sx?Axa9ZSqea=ds+0*B*_*u!P zXepeY@`p6vm_J}SmM=Kw)3g+>p2CN|F<;PfbTME1?WTAJsw0_zOghrqX9}PVh>!uY z3Ni^X^XC43Pa9H`v5EIjoaf~lCSrlF?xF2n6Svi$nh2#(?_t6Lbb!!B$)-ry3uMnj zddhy&j{@yxDsWPBDHWk$eTngmoe1Rj(D4Z<#W6QxPaK<=LChHX|g$*TxHF-%$y;C9p(wC=989y9YIY@!xO^@?n{GKBj-p{+6ww z|HdemspXOVi5z#3Xtx$S#5Clf$`#l*Al;%42e(j`e?M)HnY$PHcgGJJr!uGFNh(@P z@iW=%-ySU3*I!VR(e3NId2l@C;Y0)VT5E`&K@1JI)vmGM3@bz z99Qpu2Gm8e%Thm5&h{v{(geJ&$44%rC*L{p)X1|VKRfbE&|3%XrxIG6Eesj$Fhi{G zHby58W|=G|8?t6%vPc~i;RsY;kl>V{MsRTjG7L`5B0Y|xYa~Q6LM9fYHQ%rV#Z?wIL=6m#vg?#poN7Ut$$jy9(6kD@B`wrbA~aVQbPG!KBT0^ zcf8pQNp`@FO0sGk#0x28s3GY#pXRFmNGyUszv^mdw@xxtS+?vzR1UFzf49Uv$S#08 zW&~~GQG7yXeSGqS7q#6~CF*&Ad)fY44*Nr%5e`J&Xm}xiSXLte*9!ztPciaq6lROp z58@mpPUqZ*Ps98?EIdA@#P2DZ4{INhgy>QpSmQ&K1iBe=0qlJuEw|DSLBnYVW9ymg zV$s%oF14Uw)!%T)J6BdipDiD~bkD-S4ob+&tlT?Yo{r}NJ_E_;ekF5VM6xZ#TOd*7 z1}z;&o+_Q5!Rd1L&hiZh&18OTaxOXV0=b@KK@hmcy5L|#D>eh#9DskIWNrOJrCfqU z4>QQ6#YOVFz^L8rZMrZ3(GOh)J_WvqY`+%SSjhbXC60o0i@2iDRvM1OHlXaRwwGXS zgJ@0>Z_t(2)~-@OF@A=2te*yL8e-N+PD3~OA(Tq;yo>k_Ofvxf%}D&2#j{UmCy&)0 zd#rlm{lAO4m(^o4c}F@h`|g>yK8=r9;8+#KF`c|teeAK?vDx>xXWu&W?%4ywJ|H{> z1AB6Y;sY^GP&N=;Om~5z>!&p$?gzV_$1%j@GScRr&Sq=pv#gp;2LAfpqFbGn>Du6e!%J#53hS4dhGk;k5#}9G-aQ zM-k2zDR2nD_n|7zDqGyFR^cZ3UvY|~#gm|H<&Neu~TMO|>CKArad~0) zg~Rkde2a6W3gvREA$8I`*D&;9e8tOo+AU7)@Q!!y+&Y=QC}iTR?3-A#Vd$ce4NF2m z7v2yLwhydWzGb046)XjFgpv(eVyOGSphquH$fcv2VSS=@d9}B^xVW|@dcPxV#*nja z$%oczZR_J#Y5ZS#88KCKKawEE3AtpapK!4Ed9b;ih$JZ z+Bs?FYNpx*Y|i54PmRBQ+NVf9W>t|v51NNI#wD(`6Wt>q4Y8tpi|9W#gZ;fZ1{Wg4 z9&F}BFzdp0Q->Gz3H;CZKBJ_f(Ny%WAaqcA%fuPBw8o(rD2M#=XH>2?D&pxEiQ@=6 z_czdIRG--)OgB=e3||ur6`JBeWCwI^MSeqZ?N>jg)g#^F@;@bk-ASVOpG>@O;(gyq zF2DcNp%YR4jmfutlxng~I05C?@Bx?U#9pjHf})n~v`6sxF_K}(AO-^k58o5Uh@~YM zBf!|cEyXmlziBb)+wF}+6oJnv2-J=VU1t0`?#5mIIL3}VCA>Ckuo&xn5AF9*;BEHecTQRF# zNtKM4QD|CarEI9<*Es%jxrO;rrP^MYPpZ}b`v;%D<2t{o^KXjpQ(L&c$n|p-y^JVu zWS{Y>v)C74u$MhZ@ECRkB`q&kZeLzpzP(#nZv0qv;Z2)hI_v9QxGvUjcyY-=M_|qL z<;w&{s|h3uaA6txKD=rLsmQZ0n*AJ>az((eL1W>ztTH#ba$yni2?z$@2CYsgoU~#{ z2pyGURx%u_OtZ!5f9CMATI9s7CnDN6dk~$|r06e3CJ1yjRhj5lv$p|#VfRe1kTk5lBCfOO`;pBZipd*9$ zkQ4h;vKMI(@mQ2YNHUTHO^%z>VWD=fL0)gO?`Q>=gxmABtJ!3&oYOKY!Ly|Esqq&> z`%?Vx1f5;s1x1!$(ut~SP)qt0I6^(n1Ni;`zs@4$xjD@A>oM11I43JZ5p!2~E{JJ+ z#qF#dwItwMp?wN^5P@$YO^_Hb484Obn5|v8*mmkc%JB^;3OH6SIGv*r&P@k@)8Fd- z*I+tIJT#gP&dsqFc-K7GmvGO0J?C_CzkDB4G)>Xfd(sumtV+7lyw7wqlUc{g9WS-U z##*I|!rV33=Lk2&4<1{VSwlOgD||qAnnHoWGWX`K}euuD7#J-8DMbd zm}$;(8)1Ohb?Wu26ce~pR=SGnfl&GJso*`>iw5^5x%gG?Y!OLRip1IXuI+BSjbbGG z-jQxMu-{z8{itpWMA{Pf$w24=r$)?_OU}u8#1w;L@eIInYX;g<7GdQyI+T=JDdMBz z3?iv%{9u-Ev<3z=hb+mn^9>qT2WPR@DJKQY)rES`R6AlB)z*AX z4$%j-NY2z90B^dI%L2>}1ayq3F4=fvX%M|E^Y2D29;BQbwb7cI^2*o^@;j*K)TJiP6Vac3UYGLblLz5{(ETUntoh0aP{!K9nC@5g#v+slv4391I2go*C{kYddHVjH z0yzb_Fo%+|+&qav0g*9@E%6jjdbkbgFm1;ufCIuxg34Di4w45*6xii?qMOFy!v-Xw?!8u008&de;8|^*<~}{#ZW%5pq5um? z!mT6;2iZ~&0ulnUIEEfyCLMT6hm;8kPEbaBkf4jA#Z!>a_Vx_|z=8v6Vd2Bn1baK2irp7qUB+hh#<9*L$mi*tMu2s)(+02ZXXULiZa|2H$S2Pcqi7MwAVD5wr?< z0kIY|b~f3U_lzDWq=3k45wVeU?6}FG%u0iawMZo>?!5a_)cP@?N_IU)< z<~@`^*4j2<-UC5+*QJ5@xU^?JAU^2Y^8uIKJMjF<`;YV5(xpp$&21mo+&;AK7*`0f z*BC%*!!^gty~LZdYm8te+0!$)8+jbI^$rcj-VQ?FQ)#DNeGN{%=ZbJ|ffb5vjl>6_ zA)?67)?hz|n2w@mC1aW+NsbmvS{g71cC6NKVb97(+zPC8A!W4cMqtn9ZP{9@m~Yn} zn|(>xJ6ey2b+w>HQ#K&g1tsCaHC8E6l#6(RqU1R8ANPzUWxMTW8au`ks}q}u4<-;Y z*yB{lyZaCB$5HlNE2w%{Erdl!$w-U4*5YiZ5F(qSeI68!C#lcSUAx8}yZL_9VSVmH z)Yf2OGCa>m2=>fvqqb|jFgcb|6$}#*fq@$mv3*_A{<6D&1b-(f2w*%uj`FvIwJ(Ns zyKTdlMw4Vf!mgWdN;5Ok&b#lLE6^3MJy-T6Veed7)b$uB(RYl@H6{zE2pIS14^^f9 zsFMG4H&4fIv!_3H%okYCC|eQ=BXM-Hvr{VS{xfE+Ka)XVJEofGuW&)V_LM1cvc{9t zb$oqc#&G>_$j|rNjfq$I_N8gZgjwp(6h3ySB*4dR*Pvm>obRu3qCs@lfRB@3Vww=_ zTCp867#zMX>|>-tAt(Y55*!93qj7LJf^#a;J4~mhNS@~=ZW)F>$Z3_$EwPIPrt$HF zt~&Y=BW{{;GQc3|Gu zz}AQCRWAA)7OX155Q#uEvMM?Aup)4S1_dSn-T-kfqt;rz&f{G!UApw{G4;cf6PXG8 zQNS)QC-Up4dDP?4FA&Dpx}Ey@Xk>6gW)eYqVr_1+DKR# zy94+Ucs21yJQ;nCp59<}!~(>jcOYlnLD)TyGQ(VkxmWfm?S`!)2YBUj^^=zD*MdjO z(gdnJF0Sek6ZbqUo0ZDkHfqgtwR6oHyPV0?%eh>wnakD7c#Ua{ zgskqB>FHDUw*P_sg|06{vP_a*QrdM@bkXpR(E2^ffJ7_V=B|76{%Uah+_`hPdiR-a zH=>(C}b1B*uqwe5MI!r9|t2yl3vh{C!f5!>ysCiv_+{ACoAjy1m>j~2#rOkB9#fbT+gyR+50bC%o6 zU8LLA`7M@ijzn%=I^11{>Eg*k;mI9+MVax}XiWvz1XB|?7+!pB8G)quTgK%nG05F< z4>V))?vtu|^6trpt-_OJx_OfOl{eX!u^tIcw_FjMYQ&F;0|^BRC&3}Pg!Ifl*?Mq( zENAFGUwZm*I-6|WsMyKS!c_CXVgnYk^38=@1+@#z$x`cC1ok6O9B7%9Wzbh zE#&K=_@JdemLreNv%!eDw*ejpzzLzlTF}tR&r4jO?z-!!4dbjL2%kXdmtbjP^(BPu zcf0ka&CV*)`?{;(zS2I|hF-Dv>XlaByT%yL!7j72g^vV~xuYfS?DDG!+ z*g}#~uy!fQ3p;{nX@(K77hxg5$R@J$;Z??HX$U4f_6#Ousa*?x#&uc8nLgU<0Di2y z+{QnL&J`Vb;O!LC~{}u_!=aZXhIzAK^ z{H&N$SS0`aKM)Iv`M2ugI!&Ns&=i!UdZ+O}5DF>cpSSfv7Px>w*W_#C8okiMR1W_C z(i0yI_x>i#p8KEFAFw+A`VZYDV*QGG^0b1poS%bJ_+`$y!6gu#Q}>Z0bLeNLH-cMq z+m~rvQFHS8Nie+c4uV5B5Gjf=>-|4%8^d+VuU+5ykwIMO2N5L7br6b4rMc)r2N@%4 zKaIkU`=aOb@@u%cu24sM^;f4MJkzf4BBM_S)rj%KhUkry$*;?2LyX7q5Ss*-B*_@9 zCPUJGfvS9_Uv@XBFO0aCo6kAj?)siMRrJW;=V~r`U>0|ws*tTh9X}R$rtWIw|9~N@aJPLuB~y)G0&;C(U)SI$KHfw z5{gCwUPc88L6rtN-9e2%r;+T$Q4#xvWbaC@{RsN9Yt?TJf1viqj`Lj*z&?@0?%%!Z zg(Oqk-Hv5JL0hUH`3tm%))~bH55_b-nD5uvkB-X20s<4W#~e>P*yyBI=|e+f@?UG#>(}Ty#xt4;?g=K zGbQfWy;ax!4XxXCV%pU`bU~0VkX(Z2IOCD9Xm z??ii{jk}P@!b7R|+>Nj6>i)NEw-E=$Z_Dp1;#LCKbu!@pGw?AXO2Y=?qt_yH378$c zNU*h$eP<9@1NEM4KSLo70v$AcD4Iwy!E9M?6bi*>t%QqM8$|sm2(jsX@9wfc5`COU zi5;O(vCoz7jD_`k8goSp4%{06w41P=w^I~&la4-*n)f2x$dGP}C*mRQI^_>Pd0QwJ zvpYB35E_BEZV-19;3(<^>>CFWzYIGTwP1*u&OPdA00dEr2XkOZ*iHY?c7@fpvmw6; zhnEW{xt6Vm?QrjFyBm@L$#9{6c6WPz9gRSf+~(L=DiZ$y5|qML|c0<1F^BQsf)`FFhj?y8iw${jB!>PP~1l$#pZ5udlMd0`CYxI}+HL%==jb&e5)3HxDp()IgOa`*j{PfbKULiV{cCHrUk@IJs$;inGwZn7QG zt|BrSsrKgmw4XFJpG>Ltv-KXni=!;wZ^Fz}`rZ{fm z!$$q;{dAGQ7y4G|SE0`1HfwPv^_}oTP>iaKd4@PNSobiSygU!KLS+O#rR2sscGpgC zm2ebq3m?GiTi2JCR=EB38}a2!t8^{e?*yNt*lx;n04gz{r!gl1&0gGfMfOnb>-Af4 zB?cG`nlx850#O_ft_ z%Fwc?(=>gd27`T2&cV*y`?;KqV)U#Yke)^H86CB|89?k{O=%-sMa$$=fYSJ_2}63VA4VUTMRvA|zWk^iS3$cr6`cp!Bgd=9X|!VFYF^MM42Z3+P! zkW^ax_?->7zz~H|Oi)wSfFm~bc-Dm1IXOR2HM!xU!J+$4oDLm4OgO=eN z{Gpgw@Rc-m*}c40dvPwTAdJKRj=l?R=%R)TjnCabft>kyNPG=G7b^1@zaZ(hRQH=_ zYN3#tjE0aS3&D_}-@`od;7p-78?+G%i~?;iD>6V#MR+8D5-^?MA3zoY+Aa*XQ{+ab z^5mF6b4Y_B1IMQ(;W$xQK{12TOxliUZdTL%=}b8ka&iu$^W3jW{&>(-OxN`%&4|qo z`gA0dIGH#L1ky>R^hXfgCAvEpwH1AHVxd}Z4Z zcs?))J_L#ul()vfXXr*Uz!VGuvRbpQA4Aal>hp<%Gii3fWK$N6$CiJXB9h2nKw=<7 zbz)@1-{v6=4%6b`3PB%(i@C6Du@PAAJUbUpd0r}>vpu}Uf<%6NbaXP3OU@;8kx2&A z^exTmOre-e77H`gx$~#TYjn<7Vk6;TGGn4Si1raYUBn%Uh)a%$!ac z%*h(P9ABuG=V}LvM0xQ*ZLW-qtZ2IJw;cx$x<;D`{`zy8WT+tgG$JckChM;(B5je{ zOgSH9>Y-2xs58V&mb^k-aNtp+3I0!uYPC?lrLBdZc z`pQYa`T!tr1&IOQztf{SyZIh5=U(A@JJoeM1j;ziM6nF+&=uge+-=Lnds^9pk{0l# zS5VQUffFgvJhr#S?x(**n-_%##@yb@Uq!=_ZjPd9bEbNh>g(bm7dFlCGZZohTBD0b z&}+xjK{aKZ4f3(vqOJKFs3XCc*b$+ci2A=27F_m2+ulpvm9>|(W^ODs2#op?)X~M> z%KjvNV62-Oa~Fw7D$Lo+6qJoFhbg=)dba3|SY8J4*tE<2$y_AIJ zqa?*+O;S=RdQXphY{5g;Kp$Ddxps{ykBCNe39)3}Q`kM56Wt#BJ)BfzUb%=;<_%kvzUj6$im`hX(f@3$*{wt~< zde}VRIN2fs(pCSy_2^tFZnHxEssC~mwXgeBgdbm9`y+nm&mr2~$;pL7Z)3Hi7ZvMS zit*ftCSu?0^wz}fdA!9dkiDsHH02n=`$@P40Pv-nl!&aRLRp?@=LplIi23%h9}i-K zW_4Nj1%LeA)XQPR2tl1+x08Jn`yTCt#W*k zsMHCuhqi9=reD3Ie#cRMqd4xfD62pEl(^4R?|$To`Y$XEdQB`~jIXq&M zwby~Ge(~b3;6wM;`_E6&=iYSU;gcL!@huNvS|aYC-w%{8gTBN@2024W{bF;4c*lyK zpGP?11CQ^xE%t?P8j2q7N5(W+AQW~+%kN9FBzwl+WT?_?*r@}Vn2DmXrEdbqKde|< zBph`ikvM_(C41lb5K}c&AW*~X0A${{h49&dAC_$3gZyyvnm2?Qs0iHy0yh|IkW>(g zr$Kfg0h=9RHu170WTVvDJ!IHg2?mQY(0A6_s7v48BotG&l!%gAftX@aqQx6P>5Qxl ze6&07i=liicWyy(C%fgf@4mLO{wnuJiJ%%N*pfRJu}7z%-%;)ow|FDp2TW4fzK#s4 zUm`P-#se^rSJE9Y7=jP0X>x?sZoi-sY;O~6&h6zBW9Pa%gS-rHdbYy&V z!hlfZ`^Z){L!QOXu0~sOlKW&c$pf?K|1F-$41j-Z)RxtVIEu_PN20yUR;5kM;D4OvU z$i!(z2XlKg-c^bgTRt+{Y4<*dV$(TLVkAqwkAMUOn<#Z$YIcGJ5YwmZ*I--3|Jaz2|^@ff5{&q}2jhS5>5ZIH3M$LwgFY zRZIx)PemNuJ1C#v)TvXx_M_48Pi;+!=rQx=+&7+zChU0J?(Z;=rK_3dmqi3z2PS4M zb{2tWt6MYU!LiY)CBCM&wdn}3GmzQ#+S=m>)+`xe&~yk?Wb=mFx^t4hmS#O$+o)v< zYj;J%hbMi;57REV8GyC)Mg!4!bxkc~>U&xz+V=|2OCRv8A3^&DLOy0Y&j`i>?!VZA zFQbS@FfpN!lYM2NmLri^1|Np);Rv^fgVzC>xJ3g_mT|7Fvs;C6^?nrK8Be9&DBfKs zE2vJcd`wl$gdO!V6Gq}_!kEYa=^8BO=pQvC#k4EYLmr<{S3S-hHX}_;i$`iYsGd(MWi- zc(^!zGI9pcB~CEoE2W*#i&RUdn2l$Cs%ocvsB}45NE}F*wm)s6YPPHozpWK~vqf!Q zQYHMg#goQfO1&pw%97t7hZ!ps8@Cdp$Tm#Jum3(m`$L(qQ*a}{gta!7&@z8pO(;I3 zfwl^omMu#vkeZ!{we{_IqTthf#o3op3KIfrP&{F8fV_g;Xp{X2_-mclw*e!du7j;$ zjyxdS5S3|9n8%($A@QDc9aGKx=hQ&0-X>Ry7xeB$=$ zE-Lub3b1Jlvp0!cTL7Hgp+BEw`ARF0r{kL3vsZO_s z2s@CuHz0FMkU}7Hb68CgPt8Ww+pN}pxp}V1x@)Ve-OlAj`i>YE@g1_!Bd?!#0YXuL zzQ;qcm)h&=?d7G7x8u8L=h`Zpz4+2gFNq7_#(f)q7?JFl`GW{Ei0l4Bh1^s8m$(=I zCE;2K6=e3K4+kG@hroXnSpbQE6?W3aM#Qq>v4riSdKS_uH85a3WzEF$2zS*Ys8Czj zj)~vwA>B)jj-`sWw@vSufDPe#w12K& zD{eQvFl=q7mJFN~o0O19U*6o|nEgydv*PKR<=DwsA{-0`f+59-&c?^1$zV_lg^ie( z$_KF*-8leP$MXQ{{m|>*z{a8(+f{uq_u9xWlx0l`8_}?#`hzHZV|#8Uo;GZMLS{xE zcpZTHwLT;~(Bf%qxBM@}mnb_Lr~(v=PUai<3=umz1XG8SGk*HRIQ5?X*D$9boA=unf)3$=Yff<- zRq_r9*-nPm09MxGo?b+AZ#5vux4{ON-&+-~%VUS0n@1`>_d&7I)01rvOCyH!g+u=0~6TYsrY0sgDC$>?4dwF`geCW)XLk|r5 z;GWyRI5;TQ3vXK&BUgq8={)8gbZtx|S}~+r@|X-*HgPmhWxIId0VLAk&LNg$?q5Pf z`Ioj?EZ9i9jc^79MfDPz+HSKEKAwDddOHUA@Jyz_$FGo?Im`!ov&MrN{*T}QZYFqr zeU1;M7@xTvqkHha_-yQCiI3rU>11p+e&0bp;yiw1+Z?6JAe60h2s+lQpqqmmK;V?I zT|-Lskeh*xI!OMWO3;I{D7BDj>LE#vdmA|6xb@Z)`xCDe%UYR0AR|fad$E$2vwGLr zWjwJ*y|O+0sMG%{CT@Leju*Vrj9UAQJLM|L`Q-9U$;;OM&4Dr=Z}iFs`k$oc5GaS( z6trTK-2=`}9&GZKZvC?$95a_XaMM5_5hFV|u&3m%ww&%^=SE{xqbR9y+oB)6zv|&=%0ixg( zF;c{Y`i3)9oq_&Lwlsp{A1Y<6Tg;-)Zqz?ME*Ybl(a~f*8 zBKr&Q_7@i9JnJWsaY2U1e^Ori2+IpSe*k?!HWG^R8u$(p-@SB+Oj^PwOpbz$#i2|? zaa|;J5t_PH+H)mfdGQFYZCCr_r6qIcdx@Mehj z0c>A9#XO>$C%xr4m{S?J@_E82ROYqq^@TKcc8hYlB@A>9dLrgs0w1ILLSBrGB%&*1 zrocnDP1AdOEu;Z0WNi{Re=XDisn3CX=6?c3$o*I$oG!Q&(9dK$G?;KpLWe&oIiCnfDGWBR;k-sBS$ks*i{%aWj3_LK9eYkfIuvO&T zr?Dab6(mre)Pf}6AZS8Ljrat4N#s`*#R{;zT5!eap~no_x}@0pbE@f|@zp1utcE|# zH1TfuX&eV9oNkTP9BJg?GUCX1!3qWqQ8UDiV4CBIMlvZZsB+RktTAhcQ4|?|zAG1dYb;UwuZ8UF zyE5#T|EZpgXASnLrTV4d@4FR;^0-s4^VjM#g^c#DOz)oGsR5%EBDk=`; zYPrZLkBX!mwgdnyRUQoh)jQ~UK7e_T1`$sp*L+C*4vk7UAP&a^z{&CZ9AT?_*LT=z zAp@8FYA_iSJ5<~fPAEZ$gu-@Wu$*1`xU()A4Cm`l8veoYxhyW7Jc4hG*a0D^R*u0W*AzMrX$=FkszJ%2pK-I2XUrC- z@grWcrQJ1xx>+xx#J%{~Y;JmHDK|Zx$+|#`brVJ8Aky4f=e&_@qgCwQ&n`68sa+M4F$AmK zp7%}8aIg?C69*C1u(+@;?R``j0l<)dAfE0*9G!}?0V}8;fLGz!@-LTX+sNof*z5)j z0s=Yt%Uiw>$YRDxa-;OW&A9|cyYQ`J1ym7NRXTdP?U5ZfiK=Cg<+j=BVQ-+<_~o5 zLHDh)lyhVm=gWmv_~Lk5$Tvc91zFe{n;eH5{0}x{@`FHe$ATnqlNR3geWn>kc9XvcBltRA7@rC)o6%=x?!{K)rXF6vh z5j-3vWqC5Y)`rCwf9-Ho$)|%;O>caP4or=E|Em!N3PC;9PECg7CVkruJLLlh%B2Gb zN(lPE_t7-owr{Y%hRs~TI3>`wg^}CIW&vpyz^4#)$*6mb6yhu_M^uWKndDnY8cgAvYzJrq2%NJ5b}TXvW@0uCY$iMwc}Ow&;ucVZlaqE z+Xu>%UQS6!)46tjIyj@%6Ow)^)w>jjy_dv1vAIm^8GYoSyQ>xBo^-wN{PB~F4rWo7a7l*1=Ea|i67SJ1ictbKDTNr1) z=eGAsUGY5-nqXQ;hHk4O{E$^;`)DYj{|j`HT~K>hwz|ddPD^T73ROarsSVyS|9E52 zJZf0%xosVU`5^cv&Gm7}ZxrQ=pd_>kIvKF!(G}EiisgmEHtZE_MkK;Pr`+l`O0(x` z+`K(twpatOOh8m27eSwEeOU^mY^!$A&3fh2&S)6Bw~|ybxVC$tJO2z?$PwvW6#ANX2xod&0q#&E*^o+#Wom&ksWXVL%&cbpsX&yzsb^RwAp$n!tDS^0mzbE?$p%ZxAV z_DoBqQgxm0eCO0T-}U|2QQ}s>tH4_Y^IpK~mp#49;^}BjmBjP$n0UDOvq80M);T&T z;g$%@I52}Ac-!hqMlX^Ru&g=pPBH^mnO03r$<7{{y|rGy^{uzo^;MD@Xt_f4{u+da zW>)uPYy7+Vt+T^R_pNqoJt(^P5&l@ww!lfYYehqTustrYYDM=T1#7Dy1riNNf~*fY z8hic7wWsLiZ9AxX8nW2{RW<7}T+94B3GBkDOsNMTQ0)8UFD4u3ZK&jpc&i_$jtRx5 zLXgC=W1u=KI7|;4XEFR0B%ZPFJGg*@nkJ4a;0o?+*W|tJ?<1&!LW640k7^2$+Cd(Hd8S~GU zvYI!m>9c33@D!x2MgMOlP zO%Y;T{X`&c>|{{z6?5kf{NQv!ok)P*5U3(|4F8Yu?7|3qP7 z(J4R_za%L@Rv>ACP3tLcs^4E6AJ!9mkDQ2l-S5qw+sOVFB!1W)LlU>ehlXXop*kXe zM_>N7+5!k>wFPCA1`0Ca-4u7lut0Hj1roQ258(y2NY!FP=Wc@s(mPhDzhkyEs)Qrn z@qB|F%ewsj-lh_ChGZ z%R2o^ZxesWf|A!Kp`HQmBksB`8g@-)>u+!5$BBs15>O-g{6Zs_Sq-{%9-ak~sL%&X zbtXm$qX+PO>J$VjK5^ZsLRWDQ7*;BNhOLsY0}vR}$Z9LS4SoPE4M_vYm%>+sD1omK zd|ZwGLnfq$eO&8Dpa8sh+-AE)A|Oq;at{(I)e>)H zIfDv|Sa!fIlM@hICLVNGbpb7H!twx07HcY}ayj+UfJ$Y?K+yO~dLHRY5d6q!gezQ(DIv=x(rx)S<+s60OAK6=zWcFnjak?@Qi zjV9ieh%$2p;X=owb92$$N~?v}T=ZX~_uLbGAzdz~+nICcGFltc_Q$0Qk^Y>ne<`Ox zSGfDFH>l0XIUN0cs4^kwS{egg^4PIx;@!#UC)+D4FN-W%)A*btzY2M?s)TvDO~l34 z4vk+JOAx|J zRWV>4z`ux)_^IysRlddwd)H<7c}S(TPF^&Ot%EANSIy3NUt@4#vT* zdK;{EVT;aTft<|t5pi~et$_HYsGQ#AEqXVIzQZ%Rpb+L_o+CxI2B>x^W%w>ao<0uD zhpk*Gh}C_6)He5JKWu^mPMT2E3}M|zFu8C5G|PbbhYtWgMA@?Z+gFP7$gUDs_B*;E zl!==r09K94;rs7+H@)l^5>&~brHrWPc_|bKgru%aZ}M5xaG|qHAyo|-UrQZKg@#Y% zAEo#Fso^i+WIWD3&3V(=(+#?=#1#B5NpNTRk08+krPT3iAJq8y&xD|v;KtL`i1B;; zbzGbp{)#o=WP2y97s?%=O6rIbZ5lAC!>fm71M((}PFsp@!b z!-%ca0-iOmA32sZ5&xfjOPIf%gz%CbE-a|!^U3iLaw|!#rB#qDQpJD5C%CuhQ5d9$ zsxjI0@c43wF0Yg-b+*(ECwEhpTOOpWj7aNNF&^HFy5WDZsS~vQDR^}~tW5Bt!L(Y2 z{RmK3upgBvi3(F=f*nB67Zf?28i zKkkw|kx0Yk0XzqDjx#pyWR4nKF^x#XBe_;~e65BuNe9B{$8reKUFCpqn%gxm2Q`P& zdDJC43*c+PDZ7q3VVDZa^DcPow|(t(x%?g%P@I>>9Ldb|JCRAw<*XMN_45R9RNg#v ze(3H!`U*g{t9O+!He}?dL6C=o8=F3)4J4@TOd+|!suEwf_3pIQ5X+7(ipZ8?- zbiQ03PSL0MJ&XsLxt-q8{aAV76`CM6^7w1P$Lpc@{_mSDTJy)7DDBRVJ4sqrEQ6RM zw-3Dqb7Xh_e#{vH%g%KFDH-tQ8Lz7USDqc$?i#*BI~nw9XU5ldO*{>*E(c$8?R8`~ z-(Kx10#V?{n;7drxY)5iywc@^)^O5Wx33?&`}kwdjjOC4uYv_vo*TPY4gi(x;L)p{ z9D6MreE<6%^rs7uZDxlKLC>KST}r8H6tEj-DY9%9p9rKD*rKG$>r_`5Sw{FrdR7xA zG?}Wg(HS8Hu~E0;3MYMTsT}Zz#;Sfz3slEKKBXKB={{ElN}qFVq_wov8X0r$yW{Vj zMf1)(&7zZw9?y;I9-qhUcPj}`P!5JtuStaia?qOqW?jVln~-=;HfJKL8kuRH#Emu% zj#V<5%Gg0J6KkTa`Xh86RV;t6yvBbLEM z1pi?})*#CPYsmJYAqTRC4O&F_Anl~Vj3>GyTAs@Nbt$hd{`=2EmO-W^JGG{D zNAlregAf{o=n`Z1-$&mS66*q^VXJKyyk7MP<2MF_&LKyvWa zd2+)9YN!%4a&~;;DxCS!xG1$sSMqTZG`%w3knjZ237T^A%DnlKO-*)U;%Xdv4<{KH zfqaaY*pD{h_oApGL~4+>DMQ!f`3XFRe@oimApH_Wyq|NVr!$fKyG6YhR$E7PE!I^N z5~Yv(UoYa#uYPY}L#g@3++O!~JckV0x9qxiR(f&hSDkORZcgL-?^r9lum_Qcc@(r` z?rY5ICJ&!(qQsEZ`r1DJ0adt6I^lOqE`^aABSBDi806#*$!X zi(5Zb#3ECum_^NezPHvzF4{kEwT6%Bzj8VhJnuC^n=4_k`m?A{kzBbFP3+0s#6*sU z1^;KRO4-M8nSF6@i@M@2^7z^-@*st0AG#Dh>zG2!*(g8=ugL7{@9(ycUre(vEdS5y zT6r~Ed~msYV!#~ zLR@f2nA>dK@!g)&it$0l)xO=C1T!fj! zs~5gPL_XjZkq@&x00Op33Vqm$d_ZXHT-&fNr_6N>$=OSF)69Y7#Zwgh^Y4THoG;~^*>K04*EfU zEq-7f#m|~M?Lt9E0Qjm%!%>~Cl2bttuY2pXBDuFtTLBaI{%Ws#Z1%>Vhw+mBXLKK3!JM69O`Ca zf)jiEpJL5>686D;kW(FbWX$cBcgH}vrdDIk%N9m_RX(Jap`NGQscp!8^<@g zv!9*q3QHqT_GXhlU+>$&P+rdl_304ve9P~@*B^~j5CUH8F%s*4fJX~suZJBTl4q3i zASyzE~4vLF?R!~`O`qiBj3ut)%&?rF_zWyq2MoeQ@#J@KfZp0!zPOMY*8aEj{SO$ zG#n;k?^F)0!b6mSwo!o_hk)^$8V=|J@`pDE?Yhxz%o-{V&t^wPva`cC*ayWzzMjq2 z^M}P-Vaq=|x^>7_T{5=*7l(?PDkG{3$4newa>=2O0S(`J>u&M3cWLW*JD-!-{b#W@ zgU?(uBWRck@E@S*P&O|QZlK5p0>?nV&`-|xCNUlX=L4+&#o_vK-lYSIw|26sa*9Xm zOi5LJ3x5G1fd-i*& zHysxrkKd8%{hky#OO&;iV!@r!}6>r>N>{QF<0~lk5Aq{J3D*p#Iw5Yc6pZXt^P1|;C|7l`>qeB4!)=H%d?{&{;>6!J}ay4Lti~y zOZ9#?bpXYpK!WEI9@M{_^v-^^>WS5>uW^9lHKOpX>2P!GBj)TiFl?Bn+wJui&C=1lKfr||T zJ+7bfJLOnQd+#}=r8Sfq-wS_$dQd+NS{67;yNH0pl1QQHF{w<^Y#2rSqmcI5xe9Go z{A;9uL-N9A#lNdGC==ScNJlgn1=8)j4Z9Dnv{WGyhdAmChZD(S#Beg#7qoIJ0F*cf zU}lrS2r>`FdB^sv*=cP=PtRsbnX)N|-7W;}Za?8zO64onw4N~(50Z*m#vB>V=;=5B z=e~5sKeF#K@T`x67e^q=BQkD~3kdSt^-(Z^_6;UG(RpKvljo+3Tm3Fq zveV;RA4kU1V|mf-7+2tYm@aVDh0b->dMpvj$EoTwts8x z)4bF%4Z-JliFk46~=p166+&qAR41`E-*`R8*+^^jGec^ENe=;x}SVRm_ z?>{1=LQSl~Bf}56!r!y@$pF3{4j3knK{Yv!!Jjk4X!Gh8=b$~kYv_YR9|9$1EURTJ zhqn%YqlhvQ=@WP;jHV{Ld8IH~K1eu$fJ(N^Aj5xy;u*5hcr4lmFSd;cvMiv|DM{VjNw*f7dB zVR(W;NsI}Vi=mRtkh*bl#=XQ-jQ?C4<9{|@McDn&}8|!Dl`Cs@y$oXLKV!K_G9PXCQ z^uKSnKmEU*WxNj3R^Tl zIehX|uE9F8)9ZAN8s(Ldcom1T?D9Gax$>EjbQ!g>FlkArvvVIb$o#Pcj5QIh8cyQHlJW=G-ao<0_L`;iS2|Vb}7ZE)I$T{VHUnuM?O_b7jLeKhO zrDMLZsvPr%5mEr0RK*_(`RBsK0+QKmnp8;9hbfW>(66+#_TzKx z8s{i+PK5!7v1k#U6d*>cD~QDPJE0IawiP;G+{mSB47HmA>py~hX_@tDHs@2kvbc9r-%>muox}K4^gemOCJKN~3oZm!B)+L6(VEoy$WDX*GH|ELj@)#!_ zxo8ODpunp9j0m(sMY{@;y*o6$M9uLNV<#6+PTHR+c&amY^TO%LC-^+Tz1DFr340kd zf+iL%19AMQXKtf0QjS>#0aI&ZXBN+lcL&3-@bIu|=ZW!~mu?<|Fh@<=v01z59K}2u zB(&0iCSb@^uDnm`%J}KUlVjT`ePaCN!p&pUW$<=8t?&?$E!+wEaN|C`QP9fTPmHfD zo*8>#J5jw&(eqw!unpEGc&nX!joJ*&3%cRACpE1zaL1MLlS?PZw#R>2+}MlWC_)9% z=ja~6XloX^1H1qy8KCI-NHND2V^JO(A!fVjg;jf7pdHsejRsrY8Wlbf#&^(54UDhu zMK9DfIFcqAto}3yY#sxZ4E&|ZF!|6R8*2!B+hm$G8@BfZw;!16R98HMHK)Mu+{m*X z908LWcv_I;he#~8V&~#gOx9cjslXJTg-0o&Zhf<1nrmodOYfsLD93z=@b72@>!rak zL=3KsejxO{X|$=CU3aYVgyYU!L*s0Ns zFI7sr@||<6)F|z`J9h(Jr3qJi1p+&*SO3Dk$vy!+IZyFwFnb0a6OJW^4rLQSUlqKP zJg7r!K{^XZhS5oJffFAlF2V&uS;tr~INEHE^4GVbTxrmqin`ry!<1rLJd!K~d%wTe zS?1U5zrx=_a&&u($w(ZVj%nb}qsUI|J-64{0o}t3YetFcQo1YBgoE@7CjtnJxpLDY znSg9StLTSpku0M-=#}UP`}#+-H`INR$DmAnT;HF06jg75svJp_g3drV$W*9UZntLs zaIcfakEq`I4cW)Y=M>WezDF|)*oRTuUe+5oaxPJ&Tv`6H?Rj}9Z3DeDCp=SA1Qes28gnb2!MklsN-u8;_H+K$Ah%IHto^VCAHfsE z&7@GLpjAQsv9m1m{i7vTs$=dIVB--&7j|%QQ0X6FpMd0g88C*W16B7OKGiuM@FH^? z>F)Gane5&728R)S(n`(zZZJZT7tXPzr85T(4fF2JB87Lyd@csNqIUO^mCHI2q2KW9uAV! zLTm<^{9FRl`$*YP`9;6_XYhcFGbey=9q?h|m=P`ZjaatocZLzABl#oJe>7sr;bd%7 z(6}z%&JEK2zodjR98?RVdQd){jj>qfW@S863`-$TK$0SU=^v!y(Nr>Wlk{(bJpu7n z7jHiyTzTj!*6|_Mg)IwKEWjBd>i`8$bOT;4sbT}+e)?9}s z!k=3B)UkBcb&1uYMvZ>QmsVG6Kux#S@889~kcA|RxMWtR5L(F0T%ab4Cl3~)odM7C z0cH!jPKxfKAQFJp!je06kP=XjDY7|tz>AQY>q3s;r-d^59W7OAud|a9llLP`)?1z# zlav*H`IN5|I3nuQ^ft>$>{OK3F0eao97xJhU80QVk{v-5wGW*3K_9!bFMdPF5M$Rr z)4ztpffJ+%wn@C*E#4-?+bQwJtS_yP)|WM5zft#G|J&+oK_%c@hw%*cWp&Mp@h9QmQ zM5tUl+3;oAPo_qDe}*mKciQba7%{G&{~3s2|9B!^U71^hdr?qt<6$bx?? zN08i|19e4TH3jAU1|#tu#$NLc;p*1b)I~Z@jisnA!*rNfz>uno>1~fFAo(;aR6~fpIh+p$^7%mEJLoip zKVEmr<6)sm^@69|r zCSoN2rr?PL3V&E}y8Kaqq`HAptK?PnuIu8jxo+l-56=gp-ed$gn;zGBAZ)PpGk471 zfq5my=&QV+*a`ZU7FO8@m6-R5f`Nd^w!2fnq6JbjkI-bn55>y9usas>c1ALCpKe)+ z1~b~dtRwo_`wxE?=hQ9Uetmc+b>WcWV}A&m!25x$UgmHvV&J%KgP>c>%Y{oxoYY;+UZrbP z7qAu`Lf1tD7UY&_6up8BV=X%n)PNv?9&^o&Bs1Bbi?IK3Vo(dK3j_ti@tdf$t1F@0 z2w!+cav|t+V%;GWCu9ZvD}}jewZDrT855vyV@D$UY7e{p&0&sVof&TW-J4aWV~uN+ z%Tpq+2X*ejDGU+%@ICgcSmQ|tBmpak+#Cr}44MsrlOVc!nz>B$Az(# zBHt-25qaHp3qph<%@Kt~^AVGluYmLkBhMvnZCz}Vzn)(xR*MUH)ZhU)^2bb{iD?xI zNHH@KmV$V4*lH=&rOJi?uU{{OOqfJ-SqQL-N6qVPFYF5<)ODErFZ}!KjJVD_y28qIX<^qHx8D|2aWpbTzr{DA(1qf zmz#hwS8h`@$;&^Wl-e0ZyB&C8zzyqN67QC6PS7RRkwao;i!g^L44$pCITB^SjJjml-cjB z+_@7W;P+1LJ5gIaw~yVG-5Vz0hu+)kNAAUHY|jtU!3%iOfS4uZ9v*f@8X{>oJl2di zjlG$SvlPqIpz|RHk`Nue?hF?*v+rnRi$NzThR$#yGyBe2=*aXjbKPzk%MIA7nuFb&>VxB z)z9O<@>A2yW68pE^-_-ystF|`)wQcWMO8czo&J0$U7Kp!KvFd-%%D=CWQWCu%{_w+ z+Ee(1FT8)4Rfka~qqa&3IaXFqAj!JP;p*DP2Ib;Fm_hTA1g#C|8~IvHLQ^1{A#7{l zG1uNH_>jU6(IZ-v4P8bKtx#}Kxo|+k`Gj#~e9{{zj?gH)@#a%g0I)d*`M~A>3-p5TgpqsOx1V_DGhBFavdw_-PMKN2e7G#e!IdMdv zbUU01==B7qr%rQPdcSQtfaV1Qa4k8kRrlz^eF14Qeq?OYVo&b9k1)gvWxvMaKY6<{s@!(8BHwj0s zI5l-;zQ4zunlf{GKrysrVdgPY_xk}N2UNK!2=qdZ_+56<8iQ;2zWB;U!FknQypqA# z-L0257OZ}?K8ojHldWKnR~;@@+}N7kfsUF z7kdpqVryiQ>~X_nwMxfqg@%MZU#K;Ih)yTu$pYpQh$3GqW82g@Fx?!0z8?S@!7$OCUnJo@ z;%Dtv>r$r!>niq!RD{#YUvO(aS2uyTLhVozBQhL;TSy_lJjjc$%@q8l3EhH66`o#h zx2JMxO)pmOtQK|6NR+847DM%xOkrNRZl%578x5y|VV|P-!ofsH^^ON-^Z1sUBUxnw z>(SbfLUBis5g{EKOAcTqUe!|%4A1qMTbj*VW;(ll^lK~K{hb?w!5cgKyWii-JFgI5 z(Js&h(XK&$B9i;$3AEcZoYXulNucB<{P4`8VSRlay3i_WTi&_T_rB4mWM!qd<~w-n z_+87(ca7hA@YyRm-SPZkFCw{usuEF!rv~Wb>s|wjqrC-i#SPPN@EsPq0_9a1)-P2c z>LQy1I}7p?_)!%Qh$y_xv1Hb2H7euP>UK$%!>jcRj2R%I(hrT1(&v@%>63(K>ozrL zp+np(2r>X<(?BjM0WI!2rc@_-RPa557&+u9;u{N%4nczvz!oUNE=5@s?V5h6Rb6Yf ztCxVGimy66zOg&_j`#t>xNfxzQ7X!=E09CTXCkthRM*xvVg}4g;Nu42_v5M% z^!HV4UM67nG%_}ZQycB~M`tt7L%OwO!!E|q3u?GT?9L;C6H5#ak8TtULR%$0-5^j( z2H`V_#_>J7xl)2xB4E=1tbJ?n~nU-04Dv&}b3(jk;NI z0Hb5jt_a!(Yr*ateWa!m{Peaq+u*asLz;VQn0w?YK?OsM8$6Ig>L4+p0R4ljZ| zb-+?-M7L1+NjIWJh+V$W_?VPdjl5o%X~T?}(PORTcq%*Xf4ukCWEp6bs#yDI`9m1V zkx(>m+%QvE&lI4zdGEa;Ig!ezdSA4x2uW3>k()i z`If3t8B_bSutVb0Xvn!1aSc%fbVp>7X?o6R8awVu_!YEg97f55Q z->5FJ#q5mt#0l@rHPgP!2>HA0n~~YbwI?kYycbabmsc0U%li4rMCrBkY|}dUebkSl zT$mD|`;%Ip|I!b+kqJcI2o0uCeSYQb)X#y+fvcRy9LWvnRVA6KaHW7JFmZ9o*bDvVd5?hM@*GZBtC+`Wgwf%H)&}GtQmkByENs599VQauD`w)S52b(k!!e|uX zy`!?@=pl^NFu-8Dr#N4Xwt<~Qw!H>eA%(9@KuM8Vu!~;=AU-a6ybh)2fmSBfvJw)r zP_Qo;_Bi|J+&)#xD$Mspqjv7H@b@tbVvrR7%VeUV-%fkK17Z`hzd}KWl0jmboUM60 z?w|+fJVBfrc83*rrs|S!YXIB}j(H29cW0~&MQ}rRpst{&0E8orfxyp9#cZ$XxI@}a%0h;9*gS1=-7X)VfRd^&ud;u z<<1uvKb2@~WEi_?Z8=#i0e@W{b{7qHTS%infAd%_UQA{TBa)`mrs`!bzn2C~FSuh7rFr%Kp{njst#+HFQs>U| zt~yXMJ>L| zMFH6y9XsIlCsXE}soaNBnr**tZ&JH{?~MUml}JNNZNJclHv4L5B7k_>en>C9I!)2| zM%yjDBu!pd^-?yljV9>GkPp|8vq6Yl zf}HT5mjYo$@#g(OHSM|GExQ%pydx3KCY=svDB=BSe!Zqa$yR=PQ9SMS4m<#M9Ko{| z?MS?7zADOTyD|Qms5Yfg5LA1K>a6?qo;avhlGJjS5!G|TxAN;8Kj2l+{ci$OK*(LR zzItHc){wPBvQgiS0{Oyie<(rpBK86xhQD&*Qp47-3HLcghE*WiE-U)ds6=)4!$7QP)wrJpOz)K7^H5l7|kxeJRrUWj^70tS)w) zSSK$emUf|m=Fa!Hj! zv8QNJ@3AG%=;^Ar84W!IZ+GDRq2Yb}1g2UHLEvL8^PgMh{Z6XM8CGTOA3aLy@mxNi zdsG@3j}3?Yp=vqs2|DpmG&bz{AyA}GCQh1OS>k`eW!L|~z6)CGkgrka7JEBSR3@Pn zOI>r05)PU;;(?t!(hCwGwnUv=9*_ZW6y+)yGMYHgto$a3L-^A_NitLh3?vYWB|A_Y zBJIf~^i;-718?8$P54zs&j-VRX7;FwP+Th}M!x&r=?5MNHlp)^;Pix3aiI>Chk2Re zRFZ}sQ57|sU`SU$LY6BKDysgV3kB5FWFGO0VFcKOe6rIohfBIQ%&HGeKaiIKbCD+Q zHI8~#F2(8fA^BbGlZ3@_fn#x$F+wnp!i?KT;eZ{(@&+4aGMz%t))1J!9f;#E=FZIQ zyW?HAFJL3r)ctMq_S?4uUz~R@ylxK3l(VmGy3~F3d%F8?w{sfowl#{++1Wa@76kjL z12h1f*ul+7FzxIle>iT@Q_sjrMuG;lgWQNv` zPP)0-7*8M`79j&uRU5LK9K@NISak}B!9cm=28zy*u!yaZ)|`?sSCDz7aHVzeHy`&T z(g_brx3uilr`CI30A7e?vM<&?Cgjv(WCUC9{YZSmTB(uR4a3)7w4=D%6;M%9YEx68#z3P^|bmKRk+~m?w}!O2|j1%8y*CMCo-b<=h7aMF9B7(EWJK zJ>_{C+*MVP45))p8?frBtRs~i!$w)9((j+Wt#ZqVBcWbf=~l8VpIYc4VkekSeWH}| z`CjAtY%wuEoe3Uuu7}mKG3+QwndzUZeScK;P|#Afn(h5cYClCVMg95IU!_W}*C-z? z1T)j~iQ_NY&mY+aeaLSq((@PPg;dFsMHoUDdi)~JAWD85>;wEWH@n&5M@?U8W8PI? zNEd4@?R-a55hnD$)oN>H6-i}CVs4@2ZmTtFAj7!R>1}3*6BFUPy4~~VSNj5okU_WT z7j7sd$p>B^LR%)TT$ z&hvN#Fa8l@;(|49ip%4B?kYfRz>edlI_ny60xS)br=n1CBuum>vb$lvYqBq3`F~%a z5t|Q$rYDi)m~}cm9_&KBQ>z^Sl5+<-rb`#*0mU5io0_=nx_nmJ}!vIh8Q=ZxiW>gL~pcAyFLt&s_JK7t% z74$2Z0(idM96=nyW(Cg(4;i!_hPw>2^;|IE*Ap{^r%>3!I2YC*B_GJeHB&dYGScuN848$YAoTm@+|r!s3&}_< zMhT>Z#}Pvpp9 z)%h&=vq@U-g$tXjIP^@Cz%he{A!5s}z8DKyAx zs&VTm01g4mg~zbKesmt`nnwv3ED`ylTBVqfklfYpzn^U1=Z~7zqs$ZolpWUBRuMMh zcw5)JuhZS$rWIARvrVi+G_l|*M~hel=y!XQiVHY~QdaJ^VE^CVAnK4=D2D5oF2S@; z{S-bDvOQ2`JM2a!i*Z-Tp6qv@;upy;OU7Z*eYQK3Qm~<`IUSkFq?#l)?B6q$lD$Uo z^v%2i>I9#NvMZC-UG0FTs}ocO%QVnp@d~>&#W$$X4zVgT znBT>8py!(cQ^+sVK!`02P)$0z)}n=>wL-p9 zq@0o-ybgx38YsN z2(SraYj#8GpC&K&R(DeZ3`PQCqy{&V|MzxcAT#y*9Kd)a5Zzu9l|2UtD7dZ0A$-_N zXk+kr-Ri4qwcovTX`M3zTl1#i#{d<;8S>Zks!lA?Y8rh)E=->e^5tn3C-C$@ccmo@ zb#z`fPd0$fxW4%ke0kP9XP&<*Yxp`N{GCp$)5A1VfkTOrpr{~$VhFVxbAV!ku(3kW zF(`@*0NJ*g|fXSrYVN^_!CL)2(ksPHa;8UX{2igxrJ09|I@7NEpbn*vu zU|&GSa_4-uS!-r5Z?zIxUuRey#OBaJOwCq1$gsq$;{6f%8&v5YEm0l?{=qSaYzf*a zWG?p70V&e7byRqA+h=YbUp_Z}`g7mRF3x4+aWhTrj{3!!Xwk?&8UeOilB6m3Nm2>X-B<7fa83GPCwS;8>| ztneT425>CmH>YT2xmr8y4|N~^LA)9}S%$>1g5@a+)4d+9RcbY&2(XFI9Cqq~mH6Xd zfR*K+*-HxPz>PDaB8ow{pOLA-iQ41?JfXlp$0r1DE=&4K5X33 z`_7S19;qBo9z%c>w@X3RA-UD2gEUx}W%eXwI~|xHpoJ#M9`q!)$blOjQgrc?d(p(s z4U%+EU!EqNM98&+bX|e0ZTvx6C0Czdzu1GUK{hRMxfVhzWZaj-u=nkdbBRVVh5}V} zhR03Nh!OYTEy6%rV~OE}q&ow+1$#&fG@O{~as%F2OfC(Pc;}O<=5aYqmz#$6i(ZH6 zmOO~CvWFOQ$TL6bfAnIvv$pnbr*ld2R{U<&Gv{&8K)YP?9@Xu1-e(Ut#(C*R{rK3& z5BGjVx&qNF#@ePA@mHl+OfSXG4~+aPp_`j$Td#=pi~T9V>3^Pm4|Da$q~D$&B%;0| zzMmubTT3N+MZNgLfvMKlF9`oT2d^9~buXn~IJxdYm_5w~`Kn0b6pIrbQy~;9_OWhg zfcMx#y?APP8rp@Tg~NpzXa%Gb;BBVF?hl8rq*O2$6cMN;u3?F5Bsu*lu7q49mE@_y z%=vr6Qr`wfdPNYcYo2m223`1tx&gx9@>(zen+wZpB>yCXgL)={*YKoG_cPQOn7XTK3l8;19LVWU_en z>lAv4ct?NGbAumn|EJQ1W&cwtf}2V(BZP(j zvWw>4KO97(cUd5y5$FJZ?;E%jfoTIj2vobksvA5!iQASe+f0PZNmPRgIGKF^f^i&0 ztLg_}o2^$2+8Su*MExwBgolTS{ROI3b?xap&ZVzimQv@Vr<+l;Rdty~e7W83B{)WY z4U%1VJJ}ng@PW1(MP%*vptlCREUnghwYme=L+p4%YCpfmoYD#_#R={F%bYb$9uFZ6Dlp zyQlS55tsHl)H`iWcsj-YBd}Ge?P=_mKy`?6r!}HZ?C?f{*INPrILbP4t3;nXyAlvAoyi6UjT){x0MZ!CxL7@hbTHl3m$03ydzG1}!Ymg-kmO^no9~ zRHv>w3eR7)lfni=W8;Pu22u@>>`8Q|?F9w~%Z7!?!}k>gZNWV!Y;%YwW9JAs;jxkH zP8Hs+sH#%z78P}J5s|t3X?H;&7{^FxW32SBpIz^VO-l9O96T|@Bg=TS82C){!#9RllEf`;LdZb8_K10Q|bL?>UCx+7mEFQuGDTf$8JkK=Q!Q2mCg8iE|aTH z)6u`CUN_d9uIAEaDfjEKR(qvo-j-rV7agZpTDXN}Yb5)R2K@$6+LWhEY_NxjQtv2= z+-Mfq24yP`BrhZE74CkfQM&T*R{HYSQ9=>yAGo)HIY9RodCFJ1yGT~v>;61jS?%XX zTMY=k_$6qEhmp)zyJ&}}0CA+dNJoE21h;fUVI($`}{n7tpqOCw69zZ?;wtOo5K2)8U6(Tp_n@A(RWB!&9@HYhsS=b?bpH z4Bnhm?-92j8276^58NXKE9{Qv0p{>(YuB9m0lZSy^Zswva|YYW9+ZP4P2u)38vKdd z#h4Z1aieNB8aoHPPLp6oJa}U5rM6ybysdUDXWO>s1hdwut&dTw+ZyC7%TjY4wEGI4 z7tuX%ZrAf-^KQrU!kLE#?6thZb+HOX$?w5ILY(iT+#u|gl8&0>lSY*6`3d}Bf(p|jbMa~Z;*2nk&a$!l@U{qt6qOgFp?~{QYG&# zLF(@oJ@KJD^bbV+?Lm(<7b%{KM8d05L>&25_L3y|rCT>#@}5N5du|7k^e}YqAviYR z_8MHt0V8jFkw`TKI0fSF>ja8+K6$O;%AV=R&_#WOI!nzP?#r?rkYX$`RL zlp4g<0UtMQ<>dKhbL=_czz&!x_6rGht+v4SIefxH9SI;r|CcCYtoH}`WuUy@-`W&qBP@r6|H1LK=_A&~=?bH@lUyn!%A_S^lbqZ=C=E9k+7 zM;`s!;9jEPiM+xd>x3C>=XwGl)LpAd@AvuUy0!Ol{P-*Ft^BULo;7jb9Z#CLG2NGB zrVcFZWMSMnmQ)pvO9;AAnVWEsg@z-fk#!1!oBq4~X{0kQt{LAyBYRRKk!q&um7xaR z;`BImCj+XRHNJnO`?wU9Nsf=4371l`2bV@FX^(uyi7OEtzeQ6Vk@0)c#GkX5L6O$G z^mEF8eQAP*Go6iOb#H0}J%0k5+ejo(ptz8#d5a#Tq2_X9;c_FD1fOtOB63lQ#gJF-l2;N5VY%S@nX$!}~&sMA5i!7jgFb@Gxe6h3u}_;ZO`%tPp*E@xVNs z8%P*MA|2#jl86z{GFyJ?=$a#nRY$Nx4W*`|{-c+y#L+4Ih~&|W=Z3R3$3EnWM#ATg z4d#e;wxw2rb^UexVeBgz#0@Thd%NjF_>W2w=Fva7fGq3Zs} zoVj4fCb8Hjx@G{qPmJz|T;1O0q5AR3LNvLJ#>WQ97xZEU5ty^I^S}qmERPe9#~@FW zo$k<&MTL#Y*aq)noH*jBTM2RzHm@tl}=Q1tXP4Ny+M3)gkFh##ndA?W%R`#$>(#EB4H zqhvda_DA17;C?#5wHO3rQIU}sRRLZTtdK~b!3n4^fEgxhDMD+Xh1m>cwcaa``R>d9 zcD4{WRxTe8oL*Qs6+BulAETpp&HI+d$CrHb>2&`H(0lm9RP=&~wr}B2?>|*OcC36V zu&@|BT|RcSd@8uO@K9#STdR4OGV}BOBbr)R<1wE^%!`R5o2dr*VhH^YS~-u*uxbgi zi@etKST0PVYtX|p`2QhSZVo`bsAIh}R&{+yoTTqis9-L)tqmx7TWvI8z}hCE@aQ1Q z&Ev5`WRb9%I}i>lrPL*|4R!|`uv@)^2bsRa6~Jsm%YrgA#{0K|H}n+v!)uq2IJvrY zUZ?ZTdIjgZIL&=1-{Ss04c50Mo((qS=HbC2|Ai+oBBwdT7*s%Dc}8;k|^Fbou}xqes!AXfu(5z_^s*w~ro*j5lT;vleJNd@x% z(5AIYYNqT`0*ra&rx%`R+-CCkA;C^#7}%#=C-F9MjNx;MZyi7trXip!-`)UU)0 z$O0vrH}G9{*<-ZQ+ZaED^NFx&3dlh#1#FWU1dPLXgI_~u-Qk793&RxdBI~h0(5DjU z4Jvuii4H6^7+p>EnZEG&2ZqebVfT2g)@^87qidQit=2tw5N_xemudcnJFU|;0K9YTgdCXweqUc(=_R0DZnrL+o{!+I0-t05x{#MIG&;KgZ)=^b@wVNIFPIcGTklg=(4>c9d(o9KA^J7%np>*3VeiC)YA~(Y^hg0xNx*W|+bv)T zATKjrj2pf*<&)E%7WBI*Ozi8}Re++&Bo*m^;jphbQSyc7u-CR&r;2RMuI4MJvphr5 zP41wsf$73;IGk86;9_YEDzJl```a*IYF(n7&OUIsmV z2;1zdhhPIlF9hk(!(pYR_T6{v@-C`<2*xpPsUYNhow~<^&fhY+=uQ<-wZ@OIaq2sg zwPwrZelX)U@)^)ayFvHcYlPemF?xt%&|A$B|4h~w0HP?I0BiKuvs*ds4?{+(K|dnY zjDhWbYa|djIH;IZczmM<`w{n)qPpbvj%;$uSuK*#wc?~hzevOJqt1zAD7~S8=O$sK zn(8Ex$91^3IUJs5DVpI38s?=-u$@6*;G+EDZZ@r@1jYnR%qeIjo`N^d3{1IV7E7^Wv*V9$z;l)KEhJ3B`!amfLrHFfdcdOnA;D)ZyEY&(0pdeOOJLaY@}f z)I@J3@usML*TfT0hym4H`x`A@oGGOmk;MFPb=Fm{4L1{!hF|$E@PoBTVqJL(cpx0S zl-4mp=NfyI?{9B}Z1c+ZHAiJ|TZ31a2e!Z$%-;dHlVRvn6MYtE*csXV(%YNgx3#^Y ztj^Z<=4}8kfS@X(I?SYTEs8@F23BZyQ&E1$nTmzP?iL$U9d0+@-9p&i!r0y1?_g5Y zN4r}%;0vL6p1r%hmP4@%Kz0p~8So+oAd>+92xdjjC-CM1tHDPXrMN$cbzBIlF(5Zn zXf)IY3PmKr2!|L}3?rg}3rvHhxRh$O_`NpTWVfiTAV|N45*OvkvZfe-qhzQ3sYg1FG z(m|>F6jcs-@XUk%Yw#xr5W7?%d^HA98`+S+<;0u=!W^G(76zaUqy(gG(aMsCQcx*6n4Vc z@X@24bH-;3lya)!1-BD68sbq1)~qC+ZrbS@GAS##JB(|%{iJ}}f;9^pHZjC{P@8jx z#V>3&l``v&JFJ$mH53!!`F%}h5@!UH%q(XPxb*xv!{;N4d_E${)Mz_zX0quI`4m;d zGmz3yv}sfnY?5`4hs$(-3k<6ZLkh-{WT~MNWM!Btq0dOD2tsw(Wq?;Sh`_nNfyJ;a zE-^NgnZ5SZp+l#xoqeySH}9xa?r7>7<$fW`EF1_l09k{L|5K^Sz-N@18Rav9$+tLP z7%3JnGNac1WV=P?`pGu z>LAc&K5j_G=`r7;Bd%h(s99fIZ@qtEzmz(~T{ITjo7aE(Kk2}H)1qs*D{J%HGKe(X zcCmqHb&bb#iMZe))Ck*dr{u;$wXPyCo>x0(KN~>!yP8aLot?^t4{cn6KGRuQ!BBWZN64*V4bG+OpFnhWjne93xhg4fXK%2A=yU*B3o(`5Mqk2 zOVLkw+1|>VDS{Gsn|`0A^Vs)?#h(gX!vw(5xcG8xY-_JvaMCtl?+du%Jp&EWEidtx zD>be936T%+S-|4+_cpc&L0@edL)6nHD;C*$_C{e60oGVhU;)IVkKpA2Gw6UNF>#Hy zxTsxIwcZ9x>Gn`6+%`=9NugB0|HFr^ccKODlU*bT8`V+RMfgh0>*J9cz~z4cgTojC zD+NZM&wo4#TkmAErfrk}#rRc-2%_)n>(E=gQd)~xAUz^Xt{_%!!~(Yp@Ju8a_@L2tH0%$%*ow8I)RpoyS>n zIk6;19PXlv`IzLO^A5Me$6Q6XBZ6>UB}8}BF}x&e3*OAb7IMeXdGKZt1+syuP=-C3 z;^x5sAhpm3aD(j3GKq%uCi+ciVc;DpT*CMA6y!4X+WxtZp4y;%_di_g^dPl2~n`!!LF;_XL&bEbAO&tMglieu@2E}2E>SSV+8Q#4+iPoK&D1;|4(GpC zt07$tc{{MMb}RlUIvPSDf=X9li2Wsel3mD0g#{M`AT*#sSxSS% zP#QL;;lHERcL)O3s7+1^;=NE*V67I`v~cYbox?AM+Y0+CEeArbvHRceH#9@l>f4J$ zE8;FSs&zttBjgtQZv@Z!f9b5NHHTU+)K&cN-(=l1tESm8&F9U5oAJ7L;-)^#+YQ)F zsV*-e@)Alq#jze3x|S+?v8icGr{-3E9#l&r{SurEa{y6m=$O)kE>43&OBl(O2!i99 z8>D=#u9X{DQDaQQ5;C#4IKki8HPE-Jv56RVTWqNs9pSx;!&Qxa+CgiSL%x1;ZR&d2 z{xG#RdHs9l6S;r&`;TI~>%N}9e{-JY{%Ag)YtH8^*_W_JZS=|^3?0oM{ED5&_We02 zR}%l+Ae60Y7$m5Fw)sI+mtn~E>U0>U7-c?gRh#KyoU2_t-+Q(vwmU511Cg6xO%y@( z48O#f!2*Z8Wzil@n(ehJ(J&g@K*C#frHl4R*Z4O3NA!#O-fjp@X7xx$KE7c>DmT^?MfC8t-AZ^@3$X=yl7o$M@PJijnXh zLA$h<+U;gZ3f{u#n>Ev$!0hlT>nCjf#y5Mgrs5wyM_^&psqCBix-9`lGGcM@; z5iZ2z3(=}w?X3+`B6OQ=;~TZ`5GXvBP#D7Ylv61yoq z8XjA!jU6~JRyD^S38+N(8?0_|s%`m;bQfBu&=D4L)N_vd0Y`n(A(ImX5VD0zgDFbw ze08p&XbKeGPE|R#Hg){VPx*jSv09zkw~j@;w!Uwsy1Lf71i&oI&+{~%f!BZ!n11jt zpw=LV@tdnmlQ_kt+8A^sUPcj$5!GnNzXI7Gkh8|EuOccRmL?dOEZ{u&ir8n|`J}U$ zfN3}cd?G5*?)E4lP0x9BV2zk#%;Nv_>4vnL zYp8*k)69AD@lrGdtBaJ=LxFf`WPcGmv)fS6$<|hp*`yN ze{3rUYIPx-E`PL8aB1|nzG3Tcy>wsxx45rE^La-D9(?C_YS$*;&OVjY-I;Mavd*K#fP)?q@>G`IjUBn<1r zI<1*oHU@4D z1UAv+>UzuW&t)#N@cuMK!W^_>SS%<{LxXz-S-o)SAjiE4t4N0kZX;Rz8fR<0wbE{p zFH@to`JGo*BZ)6BwzPH|eMEmIkg_+}j@2J{;RbI?fCoGK15lrVyI*coyIqu~r4DV~ zy|S%8w2!^O{v7%cRS@O5DA4ASPD%(@&=K64PMD?TCfp}w3{xH*3bCVdz~O$^G}TEg zy-#98j$lNp$&5Ydb_8Trqi-K%ZJ#PX-kqj;jKvRp-n058B_P#2z7Kp}j`(~L`SW}) z6KzLe9m8HmnJ}XD=Csv*iIgyYmIU;fxeCPivJ5oqN}UsN_9pnBCF$UsB=%lO?rl)h zZ*h3qvKnM>b~`>(yZJkukozCH3718rz0kgq28~-{(O@!5IuXN z1aq`>;+UlRnR_|&Rtd^sCNHV)2M#QA&%>AHR6}mypm}DOa%opMB)RlDf7?$L21i`p zpEMU@+0+AxPU)s(JfNr2hgj6zN`1gnj7DyenWDP?4uH$IFQNS z>2b?pkLvO+EM@oe`=Lh8K)?RR@P*%PVQq&XR@PAt1z%M;-?K8CRr0^wH{XO||zuI)nL zEw1pyGOjI8rWPh+OZXI_>m&Y~`zKRGI@I$4`bGY|p#B=@qu22|uRHoch9xH!_`V~! z34PtBy;*4L6&=&hUi$6cq7Fx8ca+*H50^kR#qdH@L@ty~;1i9TzJvH^chU^e*{bQ? z(MgJ7>s{v282n|-shAV^+q|hxo1r>BsiM;d?2|#Lkkh4tUwSTm}u*vsf`yNpq zkI$b!D|JCbVk@LmJa-KQPB#JHfCYv>LwCQn)it7TU-)0O(Ck~|4`vT;w5lDN|978S z1Bv_pzWd98*={`kgY3fk$=Z$QXy_p)a$ny%j(p&TsICaVB4tAX9T51W`3kRkfN)ow zYp|ouPq*7|nCl|D=hFF3tM%C2+_}%`)A{kt{YP$0Kazg!C;kg0XJGXMg|tTIN~};@ zZ75i~sg1l?MF}J=j}SSI>3~6KXbl5}76_=wz@*Y-2%gj`UC}fyx4O{Xk3Lqb-F#s9 z|L5&p;2gQiJJBw^N>WuxDoItPS4(O=yQ}&!(`vQm(KA!FXFMK{$K$cBwvCOM82lRH zH4cmk#v#Ix2QdjTPPZ3A!k7d|x*-s_u-t?s9Rs-+oGcL1eM!hA4x5{7rnAZK?ylLp z_h#k&f9F(5>eqP8FTdL}Evcna)px!+=R4o?{~;IYkB(^|K+CrdXD)#XYev)mC3Nex{Bqb{qpJap`)RdGO=DIp`9@5nfcsD8Qk~S42`etY|WYWW5<<4yZndxb@-5Y7sv#^LP`^DAr?8a0qz$BLntS*fQ=wR8YE>`p_O;ugKYv1ba)uMOQ@y|$@vo0v$+Yg zG4suQJ~Ud9Bjv1~Ja{l+cqS_W(G&C;72WS6->r5Q-H(;v{^T`PsD?%L^z`JZ#}mo2 z?kSf9<4viUni@UX5`~aon;K7h1!*hoCgd}+dEv*k8OnQC1waZgRLunR~7JzncMR1^cO>#dCE-F6>M4M9CqnDG%z3K5O%^woP z*2&S78cX>wBEGgL$7B^!jeEq>$l+hW&P`)0qt+2S3c}%dPPjuUlkP(BtnM33mLu(f zF#xVu@Pxjs!I*jqC=cH-&8PB{d7Js`7p?N4G8I3=cRpG!ABvc{3IbV`C!n~Q-@wtg z+hH8s`xv>^HB`PFx_%*6qd#h~h3gNMzmrM@X7Uuz%1@m)nQYij|EL??hwqGfpF&Ng zj(dKW+%n{K3qgnBT4`v|EF+lJ1I*5Y^xHuNau1j7-epes3m~pJL^+7DKso+{a2$M} zy=~rNUgwwF;;MpBC7vcRP-xt5^_a@tO#sc{3<{r%>+R{6;lvgBVU!e+u*n9$e@pm&{$pA%9R_H-!;4 zPY6n;_scGc+OESu6l@FK0}pJUZeVXZGKgAw&ai;E^C{j2qVX|ylpP|0zc$({m6su(767~V~gQ1zeJIxIW zZQ!uh`XZwkQSts9-^S(j6%hN6V68@+T{ADa(|cD2e-H=mCQHc6?a+#O&DNnGln(KF zPyRLtJC_zM&FD{=aEbQ$yvs8Dv)>S>4^98jX482duoqWag%Rp`!W?a+R}9Mz?v>{~ zRfg8#)_J_=oTxLJhgP5?@AyjFHXpwJL8(4n?=Qa|kRTxKoJF={J_Hj6m{*KBXZx&=P#xMt-$5orf;{HdP|B?+k2c*x(b;AX-6Vq2eq?U zZjQZ6y$1C`6$r^KkVN=RE(nF!QJg8rA&kJ2b@HGk=0xk@$+Ar}AjbbL}kL(-U}wMwO%|KhbjDYd!v6ZBlLJZ!b(Z zUo`OwT`Jj};dr@}HwjCEdb81N**aqo?jn0%^FqUN{j$PWvb9Vo91h(b42LtVn6CbD zw+ooFli@@zm%#fs1tlqX6OJIf4#7vCF`q5@#P~HOnx%=Mb0TSCk4sa}kGa|=yFypR ztdoOx;z2wSNk+7+(B@}fH)3^3oDV889^`rmjXi>Zqh~SLS6)FZbQ!i>8oJs&Bj=I7 zGs1?+vMX_N^r|1A0(%i`hO?Ntj)CDroxGW&SgR9^7b4U1hhZ@=FCowHbN+ya=N?V7 z7~CR%JoypSv<{3PDV&an6iYc%N<|a$J~^r8_w5^VUZ%ztQl$jiejE;rC3BUI99jsB zY1wMRn5adQ^0b_MI}+}rqgpr~5$tsQ8I53qfEfHtJgq^PW9#hwZB+E?J~3*-p``f( zQS17s6%>&%k}xVcI)a`*;|W_TEB;tBtp&7^^#wdbIWuJ00X?f66%fb37@B3oGN>*= zAP~+AXap%0yG04l58e~U><8w@s;PIoy1BZvMELKoyo}tNWoVekN6sK;>J1~0U}ljw zo-`PWDREakUQs6_10FW!l_yX9eCr@MO}usl0=Nfhg?H${e%z`50uEyCilVdQ9|Rhm zU3kzhXAlfe#wX$lNlM@;iO_gP_6rd)GFw3%g+CAqM6H6n?v%uPhlm)+-$hN1_?Batvz7zBIKhAk6?up21 z^ndqCQFM#&CZvQEy_D7iA+R|V(9=4~TEYGxrg;$kBV-gN(0vGsHh)_31$~uTqcP0) zMx$22+g=%P+v5j39v}OEU_6Z`u-_FU6BEUJ$TwNdCsh^q09|#elfF>CIMMqD*{g&C zfso>ri+Vf}N(!o9MBg1D8A`JxLiw*kBpgcI8? z#?;`iy6gf;hpxmbc-Pv%F6TN4*#wmP%Kg}&Xt2-nl3adEugoh1q7WIC`b=@vfE zra=e4>>h&Wy;#P0=F&HgI1=ySIz-`X;2kINm#&6?4v9}(H4pz<_?s;}q^S)xn{=qF zpKo88riKamscH0Bx@L$w{N*m3eB3=cKRqRk4t?W_{B&s@@NNJ$5)?4kUkmPE|$-(N@l`&n9CByYD!~xSchjY@Lv$=U_ zbk2Uh*=Lb&_F0_Ibk4<6%*YOL&Oe*1=Mw}Z7-n*37H&5i(HZ@Q1ECJy3dzY#ZE_(J zPh`^A_}laqn_|kLv09-B&ED%xjh(*t!`SJkBsrU|?0 zS<55=Z|_M#QAuYK@dzKS(DvMV%}&yj>T{LZ z_&$8M)R%Y;*chbYjZ~5U?m>4^fl%q{u11D(KnHBZaw2bTZW=&G5-=ywGr(vhMY==t z$Znys4I?0YB;rX;Hl}hOW4dKrmwy(Dz+|EDbVo3=u{1zqsE&`-&Mjxs*=o0Xx8;pQ z!+zgevPCPEP^a|9be5fA6djOl7>oF?!*{18A8cYHY08Y$gnAR;qbvs~A9SqpVY^6}J5|Z&aQUVsGkV|_U{qLhAS;)zociVF{Cx9eSUV`CKneyKJO6F+ z)o8|WtUC%c)c+-|K9k5%snlrv88xl(G;fj}bYH%M8iMEHmAVEih^zgj8icz6Rh1(5 zP-$n-`xR-K$dYq(WvuaLy_JXkSi*-)8bpx@(?p;};JE=P4oW3RKE9j)A_0E;8(M4yNk)b zF}fe}&F-Kfw|y=Tczx_`AAtX`wO)h1F~8DR*`{31#b}9D5_>JzJxjw8_`X~ zI9V_rj6(JhLi^-SB$+*Q9q83pb0vb<;7%<7{qA|y{DYEH8{;2SLvVGKn#Cay_`AKUVfZ3wDdo5wiz*%Ow$wqeb07vIe5?wDmnzydxk| z5N{B`t3Ws1e|B?_pY}i{J=s|eojMhI$%u!}<rQ5o%JL}OrYFV^_x`_XRviuIr_lu&SS)TiKSOK1 zm`ybr>0gnxyJ~)a?Jh0z-%kcrBc}OT?R~K+hum?Zn|mxOP3ME7U)=^9;EY%e-jccb zoT#!m1=(qTCH$@M(UCD^Da}D+u`!<*{tkewvD%S-;_e(AiwD6Aya5j&ZZZX*k+1@| z2t;y8B|ueJD}ai;WHl`>lm)ZiD92`|v{JH~nUV5xY(dIPGX8$H_bb_lqw!p8Togmf zLnqL5`XKysiPW9{m_I(MXM|tVrlw=1Mjic|luR{I(k2yr^{^`El*A{@B+Io`e+9SJcP zu{8=`UsKd&H7$omvEJ06QkIwH-X)GT)Vy^xf9SEVugU0Mr7A%cYjP9;^kupHD2EdI zmD}@$!;fKY5MR0MBD|w%bh5>c%{uU~(jm8U+CNMcAnXZc9b9xNV`}VNjZ^kC2Rc&t zld#{VQ!|X^wPnLAJG6e0A5dhp3T;jpe|*17x$I@%F{nNc)PIP7{54KJ_eFmPa*VLE zOw5ZB1gxL|lk-4>h6?WiFOuTTV@Tuz*wF3ki7lbLKK01*)K@k#G1ObSiTfAqjSbLjG!=y`NYXJf7AmVqaPN4D20}{UTxN(&6k=7W^_>v zogtOy-!rvumBB)-#OLS}d~PUTS3*<*{!hFWvvV!ld+A!p(Y(U7m@Pp5Ql{B}irudJ zUnD6V(^>tp9!u|eeOpnAxq4>Y&@^K_Q_mH_V(hETM^3mCw_+tjz&PO;Tp6|ONGIq2 zp-JKDm;kQBkYk*P+mB!;hzf9rAwgXujo=seSq8Ar(}p#ZjY|=sS{l1)4F5~jsFaWo z9vn6OXb>2#B(HzliLD=I*f(R|RHN?8H*Y8heMzr3=?fyU!fPejkL4AgwkGmQB$Seb zz%_3?LO!MqAf%rHe|<7y+_66HKRB93hHQ6 zuE<(YQVYIdLXG>yIiL>|Cj4>r${#yjxc92l{OD^s+4gJ25}5@4gJpf5QNBIT4uDpK zZewF4oUjxio`CMrU9xPX+O1jEbqo20@8lOyCV62^SX&Gq$sakAUnunDHl4?S!1`}`+Q2T-zJ zP8)AMai~)()IdP(Sae#3|8usI^D4KPmhDNEkg2$N_b9QE>yAGVKIZHN8SIkOP?im1D76YKBl8}m#Tv3yu$e%(!GeUYHI0lv zz1{8FosQM%{9mci-BMVMj7c{tiT(b_XS7^0c0L|Gq=f&+{!sinuRj+LiUD*JORM)q z#-oydLotHTb43{zpo#LX?+1p#!iO>3gMxTFxFJOnksFn$bcrz| zfB+(zhd3;lh)Dk4SANXr^L#)!hLk|mSu3Z!J`@<;^0TO|eb9e+zsKQB1A_W+rM7+~5wzjM@N@bu+WVu(riL8l1epy zW#ID=W1;dSk@8Ln19%X=X`uKxkWqj*<1rCr%1{ZmVbG&56AbzM9@FD>-u67ed(iv< z-3~WQ6hT_vs5csT;(FWuxqS5QvtjSG4PEtlDxPrAlfxKus4=McJm^j7^He>k0nhrq zo~#t|R^X)MV)-SD#f^aF;PL!{WjvPv6b|4+_`HG8MV_!LVR@!MwDbfK*Fs;k4!?d zEwdOuwpExd5MnJvpOC9c0PI+Si0Z@H0hzlcxKDj zO&?mdn-^PE<=MXqTbXvd{UHy2KGe=w;j?VN zdWrcqs4LVs>DUQ|&chyXJK-=Olbs`Tm&w^jo*3P3)1yD9fVIi0V{qB z9S&IaRS^iw{O8Y4FCZR9j@(0eJO3uks-sLr=a zxJ@h@CMhx-jk&u5WepB(f4{&48l-S>E_R$+*1+lD`IOMD&Gh~j3E@8YHk&n+^`XEr zy-qStXtM@3%#CnYJ~w_dHHg9guq=#xAbu*Tgz$x02AM3LNje@m`G6{f`;N7~aqj0o z3pUmp;SeJ)Hla4)gQIN?SrqW9H#FFitpBS)85Z+UWudP&G5b;Df?x@zxdw{i7{ab- z|CNZnOigd3RZU+bPpmBagW;H`^5njKiCid@iifAi_U%jJrI85Fj0q4xnvPXM-|~p} z+SU1r;7>;4QN3jC+gCKIs*ycreq->G(MTn?W=61E>BQ-?#`2fa1JuqEp2Pv$6QKsDDQp zSL&mAQ&}Ndw3yUt6>}SM5Y7o)u`C!q`IBVDt`bs6X9-avr>~0ULQr*q@^(k3w_;N- z45zUQt@Cx^hp#>^GN5rW_D{$rcHEU$b4M)S8_ZXrVKqLq}!p(niuSI*;D7$OUwFt)mtSfu@ zRN*iO0Ak0z8)KJ4$Pi67A%#)jG6JP!b@_sG!8JI3g%Lha=)VW1{&% zR?Kh*be7HmEfNDlW(?(MZ*747$++jaPe#+<1d4xB?xOqm)`sMxSn5_LW*HvLQtI~Y z+EFx5{FwdBkG=h>ui69sld=yz(CLcZm6Z!yFPYTc9_Z^1SKV>an)5PbNvf1~xrl%q zPg>bFN*kE5v2zTmcxj@AIxdD3+_<_L?9Kt#pN<^9E|rAy}S|o8d6H>h__t**csj(EI3) zvD2I#&I}Na?BoHPxpZ$`8l15s52`NWB5>-W@aKy6_;03>R^jAV^nQQm&GxzJ4>HXUb)h#S9KYkwg0q)(Uwq+WeFN61b@?)b=um+{@O#fLEK85+g zZTceS9HepG`Azg;0rvM{0Yq|Ix0(I5EJRe%3<~cIc!39Cii$U&k?n=eZ5s*z&25U2 z3}36ja?OXX)^afj`qzSuj9$OZ*5Hz>f)WobioyefOFppDHc>S|KX(FqU{MVJ8;p>! z2cCN3%@?ibJ45TL1FagEycEywuPknY!SwM{1~mm2$O7D%0p8}gz^q4CQb)n+llP#n zM6NnrA=K-Ok{TOo4P{0B#!8bgj3tTijGM9WX(<-P1As*admzz6xX(K}2O$d_=stt0 zP{chP;s)5k097aDqEFD;#ttlNBtAI3jIN3Krq-j|@SiziFzA6ih5RC2hw8eSPKA0l zodQ3sb`Y9JVvK|;+0A$}0o_Mfv#MF8_a!CRQJ-1w0Sd4EyLvYA6DxxKR3Pc8&alRQIm99h*nDWRk&0;)4&-#jf;ezSD={)l{3A_!TuOOlqmd!QxqW=zF;GK3h`}~bXpe@0D)(*)b83Nw@D-{~bb)-_eD~|R)rO`8w)6CvvP%~R8RaGsDnoZ<`gKS4R2VRBHs$gCqD*qT= z$ue=T7(;3wVV^kjjPQ^-4&W5a$2dkgasrdJ@RtCC6#8EcP*KQHY#HUbdLs`k4E(9# z1s$6?{ z!DIB~s-;|&G;8}ZQ_+omwdmBBYx~UTB#vcou?KTs&BVuS9rHCaz;W3z0@5m||MwVX zHWQ}9wDmp&P(op313%jc*yt`UqGQjNYjB&tvJ02oOgvIw=wfUc4PWS!Qwvl0zqY)L z6pH1o*SZMlg-;)*PnKyrB>Ciyi*`h+8`v=}5plYHc$N%VcaU3{ud-xO_Rw2##=72wj7IH8K#K1BCs+ z{c!(pA8-G9+h?MH)*6YS-z~%JebYT3PP}z|+bO{Xxz0ftTcmp?ST+S}8weu@KKTBw zM{%o7^@U!D-q}yNUk-@a&C*l}J?)BtVvh-KBS%Yv@p5g+Bb@;N)m|mgN>w z-QByLS_`TjAY4Df>A4kkVYClZSrJFhC*6<#Rjx51=B`6B=4kdJ331owI``l^C@8~! z2){Xs>|w8G-s44X$7np8jSIKnvG+YVrYM%d+#^h}Mp7gXSA8C09Z@TxZBlcTst0{{ zs`Sbf$cIG|lXSb@Wr%Ew@VUQjq;?Pl21EFFUxD8;<}>F3*YyXhbrQUI1LYl1#?Oy7 zKG>vJ!9T(PU3%34zq~uEqBMi;p@GtXcO9&KWrnSo@3I;4`LGn|-(cMSeA0ie2wd@%=LB)qul2{EJ4MNc_H-cr(9!8}B4n>w3yg9;s=|qR-{iRE!=X7VwFX;t2oQSJ< zh30vM`QqEX;=9YU!jm_Z(ueQABxzV;MJyc@K^Aodi6Ei@q!l>go5fgcwu0(0`+i0r z7_sTlN1a+;D}7Yaf7R5zy!vW{-AZ0(F8BG|^dcLpfL#Y@Xt+mpM}>qUMVvAKEJ59j zU>1^QPADD}wm{cp%FMufJP|_Z>@Pk*7HF4|h)TWY`|R&K7SRd$s%PVJ-^ZArezjYFs9)@rM@gs4*OyS=GJ$MT%uT;e zg|WEX@CMTMg5(_B=Ob{$QE>!qTU_04%mT#)Y~?Gb7?2W)BA9e?b}SeOfPvr-7RPKQ z^kyuDlWe^Nql$=QgfM|Fyf|uk3i^vL(gyMpF}(M~%B*nudC_~=SvHKHJP+Il+As^i z&nCJ9F;6Am`iL@Y2)vFOH=oglg!tK3tsWo*455qLcM)rHvcT?`9tZ@-KqcrvH@Sd3 zx%yjP@%i2tW-CINsCbF!dGSTP;IT$uBszOP#G#@R^`2&nhT=l&z+ha3_aXsZjn)js zA2IisdxvW3K?HINU_N4H5Gw)AM!-(Qy}H5P1J&r-MF8Y(%7eKQ0a79c-m0{~SkvU{lp*qbeEC2oee$N#ctj0Zs5woHCX&fgW(-F?re@7N&muf+X8i~Y~SIrRTmE}i#0@5z$~|m zkfD%{MM;TVwu5N~(%ZJQ5vFxb>>+if+g-#uy7OU%&|Er_E<|DlmVm$>pp<|btt;r( zz3C%k%{zfB1N<2y31P6zat@HHFn;24lUypYa0{mhl_yD9Z~MR-?uf)QHP|AdJ0e?Y79qol;%f)I^txOm zG!FyGa>I9)Ny!#1BNFx7Y2QR)5~v4C9--aYrazVR)rkJ|(J?-rh$#F2ezzeohWF6i z1Kcegt_Y!{Gljv7K(E*0ZbMhY zvF&h}b+;ZL*MQ2gg>mtC*cOzx-3yQyQCoTZHP;h z5pOi7JrIRk$RZ1-+g&GE$#b$2R>InVTT?ghs~jF%8K!WlyKJq4RrahB_JKHOW&xjl z-f#I$`z>23-AXIrR*}b*&n%5~zSwJN6AJ;r2xlrcuy+ZJfTO_n@JFRB(@vM-vFuDP zgB89bP(pL?C4V>&WSG8+3MOQ+R!92qKk)nP~vuAb;N9(@J!$ei3fC>xMoln5(_b9UPalr5IF{0r$ zK;yZFkeFE>KU8LBnXvVEg%MqGat#k?@>Dz$i%a@016tiV#rh-KSN8-;*_|W$<{q=m zT`OFtp=?R&O0ky|c6Px15W)sw5FvC+&_%SDkP=K9FU>A%u3X!)JPb)Upq81JQE!*j zBZ1=a-j@r31O7F`B8Q(9B{i9797Va&Py2r(6d! zLG5n4AD}#Uy$i4r_8@#%ginC`K0}v`E!?k_6)E-QokJKF=rgr&Wps%B08f9xOXIm?+W(nOI$2UEQ&#d8?v=DzL zMi7x=dI@Rh!z+DP@>;+l;%fmmG4qsL%^KuW$pU{{}JM^gTa(_J%9c6~eIKy%dYUO^OFvPjzVQ`fMP6H|Q zq&p-Wr6j=<9KI${MUo7F7MHj+q63!+CuLoBHWqhT(*&Z zS=&>xZPhQ)^P0riPL?>z<>CdpPkSkrXqVy4XNvJ~Ib{)^R(}rdvCix6or1&tgbVhi zUzcRvcefBr`{?)KH+Ol+GJ$sWXKa;u4vfB0zq07tIGRcwnTa-=kt^}t!}s2fj-uC_JmzM4+7siAy3HG;r?Up z8`}pz=c`CRh~!4AiRzMBiq5dG8`6%D@xq;CXwSyxRxz8|VjbkdQKfdQW}4l7`}AVK zh|X5@LLe2HE$`b$lkCzgQfK;Jyh3@>Q?-9@St_E~rl2d5p=HXmPXk(0HuN-nzWerV zp`G-iLw!4KV5O1DxQljK4=|796-UwM^~CHgNAhlf#j{WG*h6H+?btN$Fm5A_XJ_Fe)-y zk;JG{P|;j|QVmDJrFellY~cUIiF*CSu}1b#9CMFi7d`B|kGpjbW2HJ8lhXfsQ^yD# zmj6%DQa20$?H0v!%k+A7Om&5VqotQ1-hdVs=E zBRGB7ye%lyW5!rZ=xkWsW_cZZ?mTmNBF1L8~MpXYP_2q3!ivzEanCZikb1iSCDYv8M6^TaIlz&E?*x3 z?>g*vb&PTbtzzk-$w0q7ed1M!BxFJajybJMCyLdda_F6M>V$VE`S*2CA)`lMVw696 zB0QFSheLi5NqqpB>22&Xg7<5pKh$BvU~7fPx(PRjx|dMqp6mNY>JNDnNP%|=yg#6<;>NIP*6{w(-6497uZ8NeWUR4>~G&CrTstk=kE(i-atGO4i_e+ zK=SNK0r~E#M-b0piqIUv`ldc+GHNzzWLdS~Amc$K#6by+AJGm@F`=fh*eKkWniqiz zHVTS30SOIiMXrK^CihhbP*@f^Hguim?SBK~YWr6}3ip3ejN-K1!1lmM0!j$w5;VYX;7|I%~mVqbULsP6R6(#i2gmbiNeLT2dHD-C@ZZM}EQhbxM%_puC+WShQPc zbt81AuZq?dj4(>pVzF@4zxGL|bXCEr?@ z`tb<>X+WoV)u0;NM7a*Q9bw%>PxzHZORc=gOgxr^V~mAb^j|PElhuxAJmt) ze=a}r09E|5dR^ySYwlM!2j|mFVbT2W&Z+p?a?c|{vl?k3UlhsP>^FhlMUYiSt85R* z=yli0qd>oHQ@B9n3aFB}U}GYAh&bRwbnpr?Ghv8cwc360MN3!|Y7aahAb7t@hYWOV zvN^^Pdqjk!%6igb=RshZw@;!>9R8|~{Lp@10JOm)DU}SMjvq)SgxCsH7`y>&6L=s| zEGGPkM+$yOl)U*+KnVm_=`r-DAJV_3AZ-NspC9A>DtliO_1bZxdD}+|U%f4qjfZYi zQxV;t{9GUy4BUA!5Dtr(j0mv!i|1^c_ip5mZ)obrt48p)+X~aSg%jD(Z8t>~p*lP+ z0~s?Ds75(X(tstu>J1TA0ycmqbO_2W>ev7E$3w1NXm#7h#J(=9cBx!n*O4ixX#mXp zFw_`~K+T2|sXr zcr-7@aDNbf#(qcDpmkCn3LdZ>oe(iYSPD>6_{8DZ!cDRLv3DiMwccN5=VuOJybXNFzU){Pb8oTF%*j1Sh%>9R1 z?6$C)t4&-3dnfnBi5l3*LNBz+X6_jVlq4r95GFz)thNp{t=P3sqnZq?FCKmfC{d zzTCFV`8#J1-uJfq4kC$UC0#b}HOuL^p0Ay&j~a2o&QDH1Fg=-(@oUv2}Y z8exs~wxEuxYieG_|24c6gpp7{6ayiTKj8KIeF6WtB;rSU1~`%a+i&-WM3Hn|%uC7> zmvL_iql3pn)IMj`dOy_zX-Ql!6dP(8n*ZRBE_L*6cZ&{MO&l;0M^JTu0&M<5>uq)@ zaR=6SX9;XiCzJQ`Ryl2;%e4D1ArD=82mz32p`L+=F|y0m(US!?SsS7btB15zijy+z zLVDo^PsfJl16q;-hM_+nR?&5(Q)yK<~KD zta#5oBCWaJdWWV*2ZFz9$st{*zv!{IxwdAf>-Dt#!aeuAu(tM6GEHN|P{@v>n&VZ> zl>L-zh}?H-Y!C2UAT{-w+@vWm4=m*|=T+b8N$S9M5Y~8Q4r&6sU^F^X#>3Ix5^k^z zyV6Rl8*19BeB|6Ep74~P3VhWjcH1v_#Bfvt%C>YF9zh|C;)e`En&dtF(MP4Y(S56{=7saSKC==K{2c3wY*AnPTEsDm|`I+n%R?)5%$YqwfX0CnU{qozC*D3bXoo?r} z@(Jbiy17nQ`3}1xq)%@R!59ki(HO|5)ESXb*ABR|Dog_wrov(ZA~!e5`t4W*tB{#I zfIjCNZUqg83@#SuBPsx5twmmRvjVO8BsKP<`^wMH*AHc0;||g6g0}}ATL#3=EF%;( zxwfF!T^oH01Z$(1v1-L^0b7k$p3E0>yN(BR(_{kuJT0G#POP^ER2A6W&iH{?cI6?NU$eB%D$4n= zx@K<%b_>RJHKQWaOY2fLq>WMO9enSZy~YF?j5+jO>~XZ)Q$}FFi>Se5KHLSkO&}G_ z$Hq_SVz^5vooe{qi3ArYyD88PpeO)($Pk`F9TNwHrEJO<>K-~|i1MSdc*y5#p3MorabdBWtC;kK zg!~h4pOM9e=cwr^RZDiMI+3@Xwf*KKS5iHZhZDIMy>foVN(s|Dz~HS739^mugqt(o+a5?Y}?k1KKZab@nnb9OKi2|`R+ z*PlJh);I3|2G%#n&V(1crIPF*xuKQqcBj+cB%C#2q|;l0Na(USHoil(p9&;G4SOC% z*_ca%L^Aau8)FH7^-e^k2BL15Lo?WKuqDCwl*h?l)!%(9G}(&KH&0 zzG0aQ!IeC4?z;^HZrwSXD`&^Gq4#)|1kW;^GWT$~`%|4Cwio#kPi0xJ6;{}NsOCH8Im3;Y74 z0+<^c8iDn7QKDxzzu{g6*Am*!-t!k&*B`-}D6+Z-DDM~oOUlPe&cl0Lb;7lneehkO zM>DdB$lEE_S!Y6YiWmNm-aWbH60%vx%k%!C?Aup5_sWQWR7D>~L(PguAGKcB_KY8h zNO@F4D1iHwgiq#{kTW|~N+_j$-gB2?8c>)uwfHMm`@ndjq>L)4R5--yx%mF|&seub z=p_fK&cG>KB1zAxUEs#Y94iR3P@f_Crv=*5P#jLpMOc0Xxs3-4`p|s`58ihu8k|+6 zh&-LwgCRkP20RDvi^4lMo1OwT^6`n;@pIPkaV+wQx27`=z^>;PWVxWG5;N9*w2KMG zqy$d&etGr=V=CFoBhr-r7*_pBTJ`R}`_Gu0WYL$1yVU^|l zc)%E788LPu?%4Uf3PUpFXl0U58Pn8gv<$fE;p~K}$VI~JJQ{=X zsa>a>e`Nd9gj)18Pn-I)e{j0!d0P=@Us-`dZf%%{b4tM7gNuEqHVqPj7G9Q zETpa4g>E)#b%+MCQ%TPzJjx2J?E|FI0wbPR$&(0zD}yng%Hy^y+JOXxJf#H&-@YqM zZQ?r&M+D*UOpCdLcTPgULcv$C6J$JO7;uXQU|9_Q%xY7^TS7{WGYpZnc-k?H)+^0A zwwLpL^MKL)J>frLO{&p2104Rx0EG?Y#Ng&Tt@?@^(6y9$2{@D^1P}h1xPEy#&JpYhZ?~LZp<|@}B^c6ej zsb(c#>G$I4^W2vE0u+pNGbgE0LUE&^{l`1ibTqA3a-M5lKM&!6c@V`J5xiqaSrZ## zQyAG4HhPyAizd)Bd!!d%q?iwvqx^V3Rn6iX-o#jor!1CjA2C1SdBjxaXe%rA6W2V_56$`C^|@9L0Ib(au>5oVB^3adiII{5o? z>bO@;Cn9&;ys`L(u3G!ez1uW@Nsfj?_dB#)%V>KP z2R@{&lIzW(i|Vl{hlE#RvpQ6)d8Y6r;abBQpud>*OeQr)prJX0H3=LVJZOZ2hfczH zN$&}lic%4X*%3ud6yvdgf*6$4TW33*H76O1UBJ|(e;>a3u2d{ukZ55cBU-(Q7wcSaoo$q|S}k|l^vRcmuC`V*XO z(cgg?0gFT{(=0%6j&3!VCTD9>as9~L>D~*8wCxMEqG$uD*yGlHjhXeLl=)bERJzAjzb3i6kR!Hk#Arz~vF?XCg*b!VZX@CUq=6 zuiEINaiZEE?i#4#URnf(;0t7vQJ{SkmpwstPEtV=sSLYZJ7q>RKzj%yy^R!b8nAk?!|oT28r%de%$}nH1OlMcYHI0t zUj2-w-+|^a!MyKKJ0`rL*LiC`pKP^~_GqsM;d!Vnk0wLv9Z^yGSvo#>JHRaOEG8q7 zq@C~m3#~I;ZTQ;oAY8@O(OG~nY_5Wcsn;bNiTJCN^3Xl;cml;Ju6$hRZun9y4=`MN)4ozmwvWBuySQ|}0?XY-(mk2LI%rM6+6j}js2!0o>U?{E~ z(&C8niPEejN_Ow%AS9io2qmgBwrJ-S(uugHL?Vh7Pi$^RsKs;yb$+M<)a(x2b_nSM zAIqk3d)WR@>yvsvj{w}9WE{LH5OBx5UU&NxKH5DR4nC`v_N&hZ1*uzr6Fi<$RpD{y z7D;vTe}MZ;y*m@wr74=hPYvU@AW*cFGJKACqJs6|_tClE z_pxm6v0t7DMdkQ|g>ZMi&=r0hpWy8HMEJlrCKPnn$re1_!hDz2vw`AG;Tp#SOHq(h zcn3xw7)u_Z<`{cq>~z%?Xiw0pu&&@)W-*Xb4f7p`5JWuUN9@b^7>;RTdpu1T{E)t7 zyy$%^6al(>#8W*1zRb3y9SMPN-ZMoA~>U3-kIuBsg z@xRNgVPXPyiLQ+w+ALfi+HB9EN?J^|G4@F0k2Qr&I`J#)zQTqU>`j-K@JTZ)B*shn zzR}O?qmeXNPX8`v^kYyh=a)Ke?)G}yRePI@iwKBz7J(PP^VL?Gy0Gh4b$Gm zy(hbfJb6Sr0fI27Bc@wzp}QX_fuE4m-+uvrfQDYz+yVZz7$PDY=#W+$P`=26kiWpA zs_*A9);|jU9%94rTWZS?L*&jMCZ44Iw*QzSwnkZ@{dqC6$>#+sJGRj3$O3mx(DPpN zVsqJD7|R_t1@U0_=bZ)Fi`^TMXP92w@8oV*5!Q$ABl_?3r9hwUJcRrfmXpsu)K49sn3dEGzdWHsLhN<5I0Ry$P#V z(>k!i`aE0&59xZl^Kjd!cJgm%aQRXxKiG4I2gvokO0QBKX770|ELj z<~j5ndK{7^OV|Tci$1|saUIetcx;d|1P~sn!bei3z%cX)$ND$)D4>9m)IhC`bvTj{ z0>xml4iJ2YekH6bq5Imm?%OYiP6rj)7n(6{n3@U8)p|%-yz!#;c(JRqr_-lH^8S6d zw(p~)$9h!>&P?B6%!GWh@~0Q|$4__dB736oyLRm=Wq-X&u68zB_T`t1V#e(Ki#L)9eVtQ37zF1n<=9Xy z-4M1MK+rJ|czR&_F#89K8_pB(6x^gGA#^zW*C!+&^X=&IYNM3zu2ZfHvRlZ>LuOCX zK);4aS$)!KuhILa&0=q4*LB(4EP-yCo^96_%!Rvs(vxkw-R@TBtNHo39I+fSXkK9zx??Zmbw7Nt z%hH00R53FbJIb~nS3Jccs(haw~vG=v?JwLN@e<#b<9>qz? zUzmk%hrC$0!uzl!RK|iVsuoTNU&t_ylAr}Y#}+qCQBCh{{2^@D4=RQGC=1HAbixE? zM(XE+E4_^mz;>+~NExC}o%=%93@}ZMVI{!`7W)vHgZtEEi~CeT`QRb*@E=kRwQGrg zE@-VjV^neG4+!Q8Cx+SKI@CxuF2ZAam2t6Q0hkBlbHL@dkL$f`ScQK#RED#Cbl1_~ zChpr(d*jN^4)y}bxB*w;n}h%ZU*YL6Xv%4x7icG80L#?R1K2DfxFjhn0KV2I(fdQe zcn0UAb-dg87?v}~JsLh`!sxBM;MsOk+4tskWO-oI;&Yem+9>YD6y+7WtAu1a1=+l1 zxXCF3(t@lV=$(#aCjDLmjx4d>x##~+oL#|2;8}01Z`Mp!t}{UK?e+WGN;je0l!%ZqM}^MqwZ*i^0`qd^i?o z0-gtdJ_>vLQa}}tMgu|rp+Hhp0~0}Ce1AaD3i>9w1I~BpvAaZ%OBd;JH5mxW{&%Rh znh1)@O^42jiYh)3Jr|Hw@nSTXkOW^1VZp&{lJm81r_{B+jt&^v%E|Wv#HrQ{gdX9Xi;BUs>7um<|G0erbF70b(~1I7 zk3sVswiNX$b#l|GMFLbY=zfU&k`6}Z3=ixGPYGV%T-ECr7d)Y$r!?VH!l8)ocm1B; ze@6mpXs#n{!-Dxtc47bf50G6PCxGp{V2^_c z?L-tQ|Dsm*qb!HQ;#HFLt!^xwmD2Iw5mC#YN=SJz21n;eqW4z`WHVoXQ`uN}K#b+Xsilpi5_RN`5+J1oceXbw=2k?P+eyLI{hPAo?`*~If{JZFdz;Zxp zJOzZVuhlsj!iX>Qo09aKNCQa({9RD;n;~D<8RC($hPltM~%R+ z3K)v0{46D1m7g)!13t|s`f4IQ^?PfC4U3roN0x4;^P6yA zlQ=|ntMduD`w1zVo;BP8*fee3l7%;fWWd#S!Dax~Sx950`%XzWKy_wMP)ATbXcWbnsuLt^PT4mU@xe7hduyYHTwv8GgL;0zc6c|0>i{N z=$obCx9H0-Ny!9p&xe;x>tQu|HtqpSHV(;}9M))e(86dWfMjHPy(Wh&dbUFHCcU{x z53B4G5^6~_^-%&y6QSCwC1l#g;cyeh6eTd^*4VL_5jYpiWk>}BiYg}%1#I)Ayyx*5 zQtjq>zTIX1X7B6Bo~8t9{31mRt3wr~2y(_O90rG8AQVQ5HC}h|i=2mW2s9{o&Fwdi zbCacb(wJj+K__JMl_!v42SLIHk6iJ+m7*WC!@IjYv~*#F9G>yMXzOh(tw+Q6Aaeno zW2zyvgn3+wah;ncZaUsoy_1)tQf!{u9q{Hc^RW>6#>B$hALG(hpjyf8I|z%7!@o#D zQ@BCL5`1nz`RF&0=?A-JQJ6Z|R?ws#`D`TRQ6UqP9uG%jAyAkDrT2uRn6r#JvL&o_ zLsZ~6YMZ?ehhwUAIux5Hgkeb{lILR*^GCmO8GS5i&X(cPJ;u6euxvc!K=DjGgw0VV ziFh(kJL1@qh*D7{J!NyD{=mtXGHA}ygrrIYhOobGo-O1vM~~Y^zHs*Eis|W_5lc3T zr9=0<^}a*Y{yLG!>!cP0$DsHxSjMJ@}Bq!RS#pM6k$Fx zq`bJpfW+g&u)$0LX@u(LYVYzK;4&NL_zA!!EPMrY661+2_D z+rfXdZ8~hK;85q%M|rVccpl2ECWZ3Ta6S0C;G+{uVwvF%F*TmhPa1^f2HyHL#^B_m zt2WEVos&TI5Af&3fWhw$<_Rk)$u`dRoFxd}U(JA;+Oks8> zt=A6ptu#i3g1G8j6EwE?5_MZS92TG{_;*MTvKbH-r~3jX0y8WVbK5)Mk5%Epfe4AB zkxC}9;PI?qxNu4~o+F_{UP8g@bT(n>SXMcbm8*&?bO;^c+?RiZ-kM=Ch$Glb5o2I3V;b;a&?Ha=D6AxU0MaFL zGml!fyJlX4EUJ!x9JGOyN1ztUsoD7lzh^w__4%iKo}f2ZM4=xt^PfSh=#i<)C$RYY zJOV;LtNo}V>E9pn>K^g1;R*WJd_m7U1Crwl`ZLf=I0O{uW!*u^@t`LmZ(4O~u)>{# zTQ{k(CWsflN%){)U)K9)lkcAFp~hrrPeRWO^ViWh+w0BxLQhP-$9xJSA-;0zpah$Y zU%bwZ_(gRQ#4pH<-`<5Z0wKQ_yF%MRG*a<*9S)S zMF_ba?7FZjXfEK~uQoq{V}b~^ZMS!sqO0(S(@a<$Tzbn?!P?;ddAc^m)?s1n+-niL zf$=Otev&ti`mj*w12w2aGt{=wtwdwVBE7E)W|xLGJVPzG?fIp_=*@1IDXy;XZx!BS z6T1vWUI2**M;g<(cwj(p4RyL5zUx$QLy~njIK@g>l{3+*u7El1nq)v z&af|8zbBRK#d9e zMZlY7e!5l@GJ9}}@#&R6fiHL!x{%KGAQrPHEr(JcTg<#*)&yn*(@1v;i&{NF^64W{ z0<0d-YuDzVHJI-6L&3~KFYc52&Uok>y^X0%nqgE&ug%*W!e-ryWmbkINFqg|bjw@~ zJCXyPwXr5P5`x+CV)LNWdk&Bzxj= zHDyLkk1DCkNzvoaUt2mGP|eAPH!dYI$ztfZCkmY}*Z}}O+Czcva=Q0B?}IWDHGLuF zdMOiJXlL%vs*gT3h3^Cv@pn#VB$ksaMvt97&F9=@_?sw~JCC(VH4IvddSNhNU&I{9 z%;9lgl?>oozitrRW<4_~tf~v`&hJKL-g9d5W*}yI8i{R zQ{Bf9lnQBu`C7>%stXr5SHG=JrhU-0txl52Cc$Gx{ z1VbT7Uk#mdSXXPcKRnT(B#6RIGZ_|@fsQB^+z?keZ-qo-f%9ncwHUS-&wnxNVy{{4GCkx z(u5DKOiOf)Fl^ha!U#}Np@U;9>(j@N=NX31@uZ(Y6k=0j-$SY`sm|=Xh!WFZ_&(P| zT;9>%yW>7kzc$zFx6^eDryMh32OA!75L+;5cdp$xe14wCxZ^6Ue<1C`_-)WW?EG%I zV(*_w0HP)bGaNr#?;Ol$CLi%Ig1dzumNU%xNL^!`y`HQeCa#@pP^wjRXwQe9p^F$Z z9RqcZu16Qc6V(k2#%Ylyv`*EN8^9j1sIGkQAstBdZX8SCd+^Cq1*ipic4Xu%dX7?7 z2Erv2sc>P`C{36NW->uYMwc5T&+4^fP_IaSA3+H?J|ZhXLz^AIu;Eiya)VSDR?lI) zIg;|~!DKMm)U*Rh4P|==5& zD6|expry2h5<>?ql(w`ON=u;=sNF?dO6f|v_Z0unyRT%+BO&nb&xs{j`s#b{-o1PG z_QOSCC>{+hZKvexnh!}}31COZI?()EO0z$Zs^yhuZ$nQJQf~?k(!CA)*~#R_(GZ(c*F%5(tO;KoX9K*qDh3r}l>Bi5ZVC>OUgmcUAlO zg=pO1ce{>(#V-I*wu zttd<4!nWv$3J0*q1?`pM_vYLrot;-@ox%k*T82B#_GpPI5KOzU3C3x)2#(Fcj<0s1 z+=(A}3ub5Ul;XdDp2LIyHbmIw5x~a}K|gWq5~?yoz9zy*nSRLcY&QH9#lUF~YU=4n zhUZ=>2mHUR)}&E(fpVCpNNAF39AOnI@rp@8VJ90RiUf+ko|9yfqyXjfu-JzKFmu>s zW0ML{QrbN>dF(Jm6CR#TC0mRdwZds7+gc!?5vdrzn~jUs5+>GGZQ2VaC~4H>^q{L3 zZKC}_3Dl_au{bvZ;_^1(xi0{=hyC(;XgJtL!_0{nqBXI=d(Gx}z1b6cB>wT*jP+kt zb;Mp~UE&z~Gg)Xu|KoMPeiz(3{~t?!PbM>az3sVAt@rx9%=}HPH!0BngLO{sdQ(e` z*_PM$FEiHnf3d$S8>Rn`*ZIVX=IW^Q^Z&8pr&qLJ@1M5S&0e?hGPU;q%e`I^S@=Jo zfh#c)6K04O_iu_Ct}B1Lt8rc_r{;$&YjU~vE(`8Upv&T5ZULhTgK^?l8~F?bXWN+U zdzWR-Nr~&t$(#EEW1n&*n-j?CLZk;Bb|6Gn2mPLsPDn8c0{%DX{=Fzj)nkiDd3VvxRzbChDEypZ-w8b+=hNeTM~vMx=t@Igj#PCq(0 z(Ro(Fbg@S1Fa&)DkixW{-UALv? zDBT?E^V$pS_pqx~8{b45*`AxC5zH^wZ%iAFXaNr^$CUF3;l(gRmsO(SHb-#4;qi`m zJ&vVRiO0@>el`Iug;bR`?Qk8l&K<3Dt{XwvSgHHq_#n!SP|yU8Pde?8sr1rr$JRry zMM5t0i>PfQf_7qrbAxph-YxkKt!~7yP(c8=Zy`)9?4R^`exttbw&ZTej~VHA?{@oT zCvqem-eY~M?8G3}d}8||nDtiG#;I-x99F1seOlAv(3ZnI;Y-N%Uoa7Yk%kr|bt8Ld z>r;!`>!bJrnGQ|kn0bxHreVWQl^RV}07=Sy-ITTwQJYkM!(`D!(zXe%S;5R& zHe8ZzOP8%;FCB}>28VZ^0Nk#C$ksMTUkX2zs=e}L{ua9c!S@K_c&&k@-MDU%bYtQ= z3of_Ec}dK(BJWKMhu7N<(ry4uGmX}_PXZ3SPtj+M+4Tv8qC(my*q6Z|hXn}3)kIV^ zMyWf>%DCw{|M$cVpeQ!t>{;I9+9Q=`kE?rGk8{JFiFd6}z_n)6>K^t0Z08;DLBeLx z(q~MMc0mSO!cxL5Nd#1+03-Eb8KHlg;j;6VH75`i==3(UEUSa72q_hXaP-y0jWqBB zr=RXvJHKTh@Hnl~;Z=I$~?p*t8+L7lkJiT zr=t#khqwsaA96YEGs*GM@pcZ|L(?$4(sEjUE}NjEIF*P=850U6T6mM>ey58*5zM7z zoy33TLb(XZl})5<+ssud+ugofT8|T|w!M)Ri7sWRe+@)UqAP4dm=&JPfj^0^nz_+6 zwwJ}6sFA#eFyfF*rY-4k)^b@>##IfoY7uj4rSYM|QD-hCRH4fEey#s#34@ZqK?Gu7 z*mg>y-zIn&@>K_d+d^L^^Yd&%HbECuaAzhd>*!>k2E=2e!JuG0985K-W%IIK%UT+| zAa762YSVc1MWXOOS7j_5G-3Xy>5fd`706UDJsaz`c*Yt*^iS^Og80>oav3I81OzVk` zTn^>LOBer$uFJKS&Q-EwCJju82gy>^2%N02Vv-?Uk%P$&DI?}+m^*xqCN#l>jIld{ zsrb_R`Snc;JoE zj1w*gs3{;07&lEgjg^Ji4yH*~6yw7+>(FZ&QQ~c4mr((WAQs2`QoaqvmfDUJDpG;a zN#p~ri!%Wqih$);uz8&GYp)O1p#ozj+gpv+^Ct&F>LoH6(hnL*m_A`{*C;$#i2O=% zzJ#$9V~e;<*L@6$*So@DPg7`DYmYY_@%vdGfsy!!CL9%g(CECT9KD^`ALJ|UhgWAR zs|zr~Oa#%$9M{HdVw}}e_1VaLTu}&W5VB7ol1CCRyjvMR3LpS9dJ~rEIyi3IGHa;R zT*vt_RH3R1P>cyhFi~tcg+P#;w8D1nd@Y$D%VbQ=xw1?_GEEv5jAhuzRUzZDq&K0=W@o-`e(;cB@}T5FN5&R1h(oVc_jd`THWV z8hu>_BcX10U?T7xLW;5FuF0^oN!KSz=-9;~*gfH9*O~><`o%Tb6^MmYme$7m z%U0&WOFD~>B2l|9m12I7C_IqG?>dbRKa~Lr2}r_?8{DXnKOL?Vzvp zwb`zi-OgAr7z-KMi+IH-JOhYrnQS~ke2!d1mC+THc-Kt4y0<1=!|t)`h~E4(ZIhC} zIN;N=I59SCmm(duqdREF*9D)Jh22skx!;z{rpAPzHZ>}Rh&6?Kh^@>OVbdl+W95Wq=|Z5<{E|2@U^w1UXGINE1(B!~pa zr4*&2)u0*s7q#u+VP$!lUe*#{*cN7CaJJpl#BX@`W@pc`ZWoI+FHVNr7RHM&Guigz zr(?)&BezSQ!gxz_w&OynJ{IjB8V}@&%nLF`PW}orlm!szJWTT{nO@o&Ul@uyFT!rX z&&aE0z+(6Cw&8p1VMDcb8@L%R!_0s~yGKTL4->A94W3tlN7{Rssti%B0YvsrO)obI zOK+gp1|UW8XFvf(e~>O`k3DE30Kgo5UA6?r^Y<{g%(mq(xPa!HSwnaLKue2zY*@m> zyLXSF)jD~x%YNeT10FwcPnC#3bu66V*d#i4jizl5K0=$ylN|dH>Bf-;+cR3gT@NZeFSe_-Ym!MADtlj#DAXp`pQg z2UZ0?Sf63+zW~m$s$5yr!HlV&djmt%u$?_*2V1p_*o8tb?wAL$hUIDdfpy~$CVhWx z&*(Wm91%#RvejEUn2;fbbEsmRl&O#+L(V5QMcj@hLABGS3|UtSshkRl!~7pn5bM*f|}^4ioD^*Zc(Vn zRk15Lm#T-`RmH$i`g2H}Heo;|lCETOV0Ht%MCrtQXzj84iBGVEGnvd%H8?ofiJKM> zX=Hxr4`A2$&|`tFbT;X8y;Ll$UytJVh)N}nfdBY~7aD8=|Es97pn;bn6ts!=q7LGA zv>(+#fu57Xs8Jvo_3Z!ya@x=UCbH-Uq7oXVC0qebaJ&5PGk}wqntlM_xS0d|)>&A)*0aKQIcL0>3A2@%&j+&p zFXIyQ(5T9cPEG`P2k+X$=Egf@(Km&63pjs0d?O6w^^u(=@Lmts$fS7FxbCHc@(tm5 z1bKP;gZPi@8}7Jm~C^;!aP%Qjb_Zzt4I^S%D`% z%nmI6@dszJfMuURlF2b6OWQRvJtR?D5M;<&+!8?9({vvMnvyn> zwog}5U2^R4SE50WQ)iAqMc+7M!L1jmZ|N$Ob<>0=t)$a6RaLXz;KxAiz=N<+h>(23WImM$$$nm zg<=Vi*AD=jVFQI>z!d#GBBRm3BKm6ayQzq8VM{s@MN32s9R+u;(g{xR3;be+@ebyyzQ&%$o^s1wtY^Q02mT5l3FD&1x`!=XCC1IvH5Rs zy+SxJ_IF~>jqc|X6~_?RX76bmt_>zK;*C+#eyq*@gZ?^e^8Wpu+1}UVw-n2VwJ_)7 zo7_7Uhsge}2|J|X{Mg^+`D^77LVJkL^#8LxRCzY;@3dZLy;$;%&wB4m_gE!5Ch0Z{ zy^|t9=`1SS{BVH6?_-RZc8(3~f9VuiKupb0*gX>7z)JydGK{0Mcor+PWq+Jy^U1zO zomPeebqTLGValSTqGcwNhdY(@1$+MY&tQgTP>O|SE1N|rV6y^Km{sAl09+eIbMc8!n&ZG>G( zuER&sUD>I2)BC%}>3x)rfwdU#c^wlDFTf`nD%)@Dx}U(At)ZeGkgX-7unqa~NQEUW z4V9qD0vB#EnY6aI8=W@>2ZtbT{35udCFFCcjMwjQx!n#=hNm-S6Yt<)EI_8+Ax}I~ z9o3fGiO#N8bqs40%qq@+h=Q$=2th6I_7||?9c<{-)vIIs z10Mx#zgD$+^>_9Tr?CN;oJ{9rU4yEWp|>XE+CZUf64ao8kZQ%y{wq+224Lt2j3&V& zP@DF^)BrhcD4QS7!=wWqqzpY#o+rg6*u9#XY@H$p3sTvDi1K)(xPf+IP^8=Up`+Sh zzBmet`#8uK@x)`sD1t%IhJyw{#5}r|A)~TTz!(_EoV_#-jnWK#5$6wFN4)}34;YBT zlZ}NEPA;f`mhGTG$TF%;827fx^^f+$96d429<=Qu!Roer3eAUDgiNIy7v(oQQ}JL| zTP#?;*-33+p3?%b)CHwX<+oQU=Pu5Zk{p&6`va#rVSmQ0Hz*fay4qE+Th+} z1DZ5Y9|zTH*x)TVB48KYLop4~?3I_z`jGV=CNIKS6ap`nc@k@cF;a`55&=CK6qkWl zhYUyFX9oxWbVzgEz*b;m3_0Zn8&Mw4rVnkd&2PmJ)5a)SQ*$)MUhKCD3ZVL8m^NAB z4U^7|3=QAyz&K`J;1`g!5WB9;XvX{>w#gtE ziUQ-T9u%umEoq-!-wF<7c+l|(ffs%Oh-1+eY#}+t!U*xm_23aAdzz{lkZH_dqkT>L zsErNJb0C#8V-YT60SSK>M`0>>g+-Xl+FBkKvJMIZykJN;tJC!6d^;-|$Q#9N4DvY7 zUMEo@qd8?3taDZE_-0iN%ee3ZdZ{=1X?6uoj7@M^{XNr_x2?=L2cA4>r zFKp2WATYT(pr;`kM=!P9*9&WOKT0&l_6iWbO7yACNL_I zVe-iJUr5W=`^nqQqE&wljHdJI&JFd#DZ-sK5^M49Phcf{_1P;B;q9mwcsnedCBFcT zWplC?MAE=#+Ju_$cK)8(sb-r}-bc1f7`j5Tf2zhWj;T6mfk*`Erm3j49NGshfvV=c2oFglIVPOMlUOe1fffpjKQ zzCZaHOtv!Z#}L(VCh-6)A8DM1^_N)=77cq2F-pBOmu(|cec^Z7du=BIiEu`+?6zVd zL(%{qGNx?rPBem_z}Z8*tvn`maYauGGS%b!nqySkkwr&@Ju>;UqwqDc@X*lM^wAAJ zqTvhXR2t9htQ;Rp7$68>!QW%oK_)nCy`O40)R?F^@N(OQ1+HozgD`Q>WaYN!^L4>f zz8K$F{8e3W-bnmj%&}^C_`Xwub$^X-1YM5Ae`waNbWifTQtwadUP7S=4Xi1e!`?;n z9@sf)Lg_x_%$ek--uPuskmyQ>)tghB^X)Kuj{=t#k!2kwOzN@q3@h~wLq4A2aH zIFDPF_L40Zl)c6_MH{ciWxHW!i271x!0uLDyJg7>`M?A?l_C!yHB@cet4dsM`?xFyxt`ZDiRVncW_nogXeJ3-~!9>DGa zrZB?@WGHySX(Chi6~-G0`RR4ePiU)i9-gDy<~TRU3;FV1nc^>`X#mbSj^na!@B z0YVbqcoJS|Zw~K-h(vTo^=IiUr9HV18bB7sq=|VB8epD^(z7#3VVSWOcO|;;f7+NN z8xlPL2m6u@D~6tv$XQdx;B(OXuV#+_s|?t{F#`*VZnZ@9RSV z>5OA`lUlS$wJ%L3mzLJt9?#}UBth)^yhThiOtUMHaXu&YKVRL~=bOK*ws!d(8{iZg zwVlQ<)0@qo?DeIb)xGWUxn&55-!mqcDHJOBQ<=}c-keBa|S41;M)#>XD%g0f{Y4P_{Qu>}06;f#53}yw*v8LE?P| z&O!m@<%Y!_gZE5>?uJUh%XCo2C9T+8ypSRsONw&3zl)PkOeN4No|^J3XN1B+xTN&> z=EV>U8iAM+I#N60?ZHe##;NOD1Dl0IAQudXe66ab0fB3+&0T!qa^90b z`!UYKBZx=IiU$I0XUNWEOKdHDk8%FKe*i_@ut{hiCRohw#!B7vX@ zdE-PkWKSMPzV0w2ScIaM>Vq5W8OiEY1;Yq$STI!jL2)R4BS!4-ZtPvYIaM35TIWNq z*$IT_Gbk6ndO>ETvwPX*6|z1UZEP7xAoj0vj8@FHDrd}#Xb?)_X46Na@?SV7A%!Bi zkj5K|bT;0|XN{S`BwdYcg&FsW@bXS*F4M=(&^))9;msT=C;4^fXv%KwWsburtu#2- z6lv!69PKg89OuO2)a+~w|JCJUz#J))V|j-iZJqUFEpT8 zIK?_nfTrh|VsjqB5+z!(_3}5cj`n!_UdJmi?%r2%S84eDUPs9L5G)ZoHrE{KX8AcL z>4n8$a*jkR`#;Chc>A2=uW8u5&k-$E@)f+Y7F?*q=(cn165`^~y_!0!6{aH{juPn9_5q;DL9^*5bdK=Uq|rF~7uFeRuU zAq1CgZH;veW6M|UyBIRYmR7CWCqyQO+nmYevymF0?mw8tdrHT2vf3e?Fc7Po_XqH- zIlCKuA%?GnBl$VzL3n+Fy$0SDMXbV+b5JCb0S)tjXpu%d1=;B;jN_pfg`u*n zLb5{Gt|>+l#}&dD=o*ZXgmWWy8lGNR=9vn$viY9s>&qn28F#lYz87_5gDCUd>hk+t z7odXkJuz3kZ)s^&JJI)g(b0V#zrR%GxzF!HZB`#1OixdnUlU9XM$3YXJ0%?gAf*up zWF$izEwEJX3$`1suY@d8;|L~6Tt05L6aDrnsZ%3iXl0|%vhw~`lP7Uj~tXPzfHQtD@qQ*oNiG2Y}!Vum&6*pHx( zT!UD6*bgk~#{~pa`YEE=a?lM)6)=UW*?o(C*1e{;U2t|}f?ek<{v?!%t{6&n`?)tQY`Nz8q${B?DMDL*XN z9#?Gw;G2E=laijiuYC$9=u{~3ocr`+U3OeF8HDH9tsN9%Z5xXr{Z)+n2KMZ}VW`-% z`-Ek3=N>Q}B!a25c0psam^zF~oUkPYBaQJp*@hdi#}+$+;D+us3)9{W3-g2RU5nZ& z!i7Shk}Eo!7J54tXQ8olh7GS=u>8p7a!GS~aTZnW0ZFRfk?(Az3+#R*N}!Ce#)6=3GExQh)HccJBI z=^qMvmtXGQ1&1&~gT~3~hllL=7{X6VKhUeoKX_?mYTG|by)^qMzr#usA)AT|rWpc4 zkkbm8n%cZY@zP|>U6|Gpl+}o$6C?D=Xg`^EOE2jZs?qH6rS+@O`(SZvGS;=BYhl;& z>PRY@2!%qIQaCkgY2bs==6r2K<6)WQy~(DJxY636wyxDFU2fSr5RNWBammVsrXfOd zxx@56NH<(cQP!Dsa=}&jN;v0qu!{xh>$r3ESluee%V7pbe5g zx}GeV({jmC2CkR#@5{82GiiQRrW?fhCoW!mV)w+vn7!H)!^4#+<_Nc?yj=VYCHr8) zE#(**-#_(fp-wpz0e}vhl*w=RfPix}htpv)r++WQV-34D*v%>S2FY;g0$i0@e4+sr z53_)RZy4hjSOIcveN_??05+1T(mdbPZMU=B$+X&*MpB*cLCX4_xl%T*i*RaRc^ipq| zNK;NJ8`P$LZ@}Hu=R$OqnM{3Q!{aj=$M|0KwuLPMyl&KsQo+#S+ZwG@gK)ZO7Hf~{ zo1={kl#J=~iIrBSjBx0|llGDXBV_kc92mG0CPDpRUuQB^ljv8%(HL$R>Rz@r7C&Wx zn{KsUlmpdG_syJ1(nh>;t5Cv`?p)E|zru1ojhQK{CWW%mqkEePwtfB&YHjM{7a;xn_yKG7@&{~a{XbGUYgCeIja$@CbQMmE`dga$m(bh z)YT?^fiNmJP_HwT$~Bc7?608t=W36Z64&~}4y|OZM=EFB!ym zOPnfM^Ut%U_`Tu(hTTt`bRYk%$Yk1u>jCa0bZcE+sqFdnmQ2l?Dj~e zVe4=s)=*bF-2vZ{>@bD;PEIpW+*O`TK33;c(o^FQO1d2?=;c~!gkRTreIs_9maU77 zL6#6E-W=x^1sOmxrt13UPz9QST7XH7+`zMPm?1?8Q#^BdN%mwi;g+5ZSe*m0(Atx6 zSxN2cIoH&7nCiNUROcQlEFSQ>l)Ku6m^-hd-swYq_Ap&ZXWZn)Q+$Sc2X|L(1a1L{ z9jyo+1G7v8moYfCBdn+_h7H{S{B!%}HhH%Uqwot_)}XMF)8;mYj$FvbG7TTD98e& zJ=l()G(}?}slODG)d$-`DQv$j5N%<5;Q86fZ@VuT{T8c2wr&N?egjvW+an92K8 zw!S)xkgPMXXQ>i>f}L>z@pIyX)6-dVGEebV~geO`K>7 z(V$UeI3hL=FYpxAjU3@%RMv|^Qej&~U~zAby>j&Sws2pfG16H4_V%OO`l1V=5u8}_ zRESkOReEDusU9`-n~lF&boBNVT^CNgZTrzk;Ok2yA~iKnhS(}x)s8;9-D)*1E5WlH z@q43?zR339i>f~qJ7L#OB6Hp}tsrfm$LMrd%GsPu!=x!7zRxUp*yb;Id;wHnaN9w? z7urvkCvJz1leLKoRZ%90((sU_gFKtJgL!w^PZq8%uMxpW_30=teF{RG^UQ*CvJTyx z@MQtj*d&b4>>WG<(iDhu07vU-I|@{>1dhGM@w~Ps0%eX#Vo{?L`uXY60mziBNlIrmW}p1!cd4O zHgx|NrgPZfFTxW7vM)>AmSCf}aMltNkQ1|DpQJ^*o($pA?&C5irIAALdaxsfPg)mM~LW4xp+h&A1a{|1~lSOlvJ43(axt zv*8`t^%D;uroBywkD@INRogL}5IQLJ>Fd8wh&JgE_p_?m2Yh)<8+I=|Qaclkz&t;cz+}7nO>gbRE|9duM?ARv#)|dcblVD&5k%8f5^ZUO)pF^F4aQ%c|5*k34Tkx zsBN-GcQcmxym@~~{N)*K|FS52RN^rcYy_0x2DWN(K2zQr0^X3cgSJ9=wCf#3yMe-f z9nRU_?owbfPUIDUjCS>X9ja3`oU^hUMUOJ3iqX3p8c_R4H#Z!=sOPAquFmRX2j*{# zWQLm#KDY_LY;8||ergz%k?K+Gi0UIXqx4a}u&sGsU*};9a_i=&Gx>GRbTzg=fHDtz zs;K`L@&d7Tc4yCCwx@{dCy>|SKN`djuH*K#SR<3Q3Ps0m?~di3{2Ih91Rxkgq=pS_ zkg_`?=q5@x8Zu>K^Al{)lvmA|`(}|=fnt;>E>q%jqqsj=uad}qpjyz#oQEqK)&-cY zNSK4-iZV@6jHz30^+!c0B%=Pi{I%RupUu{Lc&-1gyQ&|1toklAg!7$yuCJ!Xw-y%6 zwZ59nPzFU<%lvedtwfw;E7`14P>0I*CKdv5!W}(`Y*z5~=+-tN3cv`PlTxiRYLW}mU>y_`7UvBY?Wb{l?Yjt^3`D#q63v0lGb_6kvbcMkkh&-v1L5*nZZ$?GDG>AwHcZRU!@Nodka;jM~@uXRmRvDUQJn0 zlP0bQREN_RB`{0&Qw^3uzu?PYbx5ed*ik4N;WQg7@8#0AziTr6iJBzUzDMmvZ0QmN|X=M0%B4__HBf*7#Oh4FEQoarp=Jwyt$_+(Eu6oD!}gX2R*kOVZ{GEwX*zZfc0 zMtLuc!nW^)Z6Ed5Lln9dEuUDSaIcRW%)mD@io_4HN{sEe!JuKu5{8-p#<~Qtf6E0l z_a*o(@j;^l?F6pFVBtNY9az&3UIX> z*`kir(k6CgLu&%Ht>53V2#emdG*unqiPqNq_&B-}W)>w_^U{{)M&26thE^@gv@C6A zD;jyo8*eQ>F*-IjN+6g-i5YOf@3`NPgebM)^}!iI&C~sWh;?td@4gale#;)5h8sj$ z^g%<4=K81%A8c{3tM?+DucZOUQM7kqTgb*uFI(K+3fvUxQ<&_}+85*Frlqak5N}LX z8`NYniyE5;T3ZsVwZ1yEa#5yrpg9jbR@b){M@xvY@iH9-!pr_bVes<0pb%PK7aAKW zSS#X#yV;eX8N2@)>=<@U1rjo7-}RV+zEqEp4Vps2hS!olf=;KCC3?%nd7+S$_s<@7 zD>zCWPO~bUQ%H>l8#T3>bUIa5fKYlaH@~%YbIWG@57tyaysCvY+3CEp#&>n+)u+=3 zbU`Pt{!}8q`9wRNSA>06Wv?b$BRP}oQnx~aX)~T<-3S>|L(nXb36+P$JDv71YchKo z+FUNZ2{&Gqjjf2`e?E@~)=*s&w4q^-m2;UVkXSs1H{)G_(q(kHNL2Gq8@3(g?B;8c z>RiI-MWJH$c4$9Nnl#GRf_F_$y%oL85N>0|Hn)6kbaKv{V;1rn(b%eWb2nL* zX|3%0Qa8C7_l06?&k;5;Iy*|EU=gQ{;*`$vWa&A=W{=4tgo^T2_=15z*|zQSxp^x% zSkp`xD4BxhW*Om*C@9=JZS>L{S;~&vnR}-6+2r|rD^6#06_}zR!r|O=-Rr1x&Ur2v z=AL=C2|~iU+Pd|xVAq$R>}F#Fg$c3+89k_fV5*M5N^UI908%hw<#c%@PX+y zZ;`9c`Vu^f&V#y-94$ES(B}f`2FkTTAvA@+!@2GV4A(2TtpJ9*H=&Yk*D*_wYGk#n zdu~d*vpQ7PY9Qrqu&nzHXRL*XcP}~Z02IO9w502Z9IH?t@1iofOO5t;(v$*7IHcIT zo#2aIWJQ4y8~-BEx=j2vT;*u!JM|B~ebg|fhz-~y5|{@h9-U9(r&&OcZRl9t5v`#= z%RlV0Ks+5rrTk@?`UUluB^Ua`^ih-4;V9y<8~Vdfl`o~|;zT$d58%qovikYi4NDs# zmVnMDVa%XnTpoC=04XpB#705D=0_RP=v)x9dnyOT>k81 zF}z#+clZ;IMx5^H>E(z|md7(`ZghsSm7~ zkB`%QrX!ppuc0+TPojT7G`Ul0Kao?l1q2OWJ)OZ2m7%ADZF4iPdz+_VvtQLj!JZp( zVI6VFl`Exd!LF1r0o zncsp5m_JGnd8nQc$FI<`UP@Hl;r1>KE`lmuo4>vC(h&q~?a5xF1ZlG_}s{+rQLHL3Ms}-!fzqg;N{{TGDRg({bPYQsSSm_0o<0g~q z0b%E@VUBS8`zaW*omlMHE711 z)#eN#oC3+SP7#1Y#&?_J2e35}rwcRTmT7Q-t-=^ZZz1$^e0*?l_Q8@&VdHHxm%utz z7#efIbSbqsnk|aIO&;hDUJX7?{8wDp6SC zpvmQ|>)|l7ig`dWG>n>bKnFtbO1c*H*Q!V6+kv!$us_I%009e9RahhYjYLmaZ~M|I z6M>V1DV36%BaJ+wP1FmdK(nvfav^Xx*j3pG8eX{@0`CnpxY59gTh3tfuI8ZAV#QsY zI{${EiCu|k2z_lW#)NQrYU)~dwbmhUUI?_gfq8FNc8TS$jWu+--JK1wT0~%=(5%yG zp%X50<{ILuc$3f9gr|mDr`uKSuGUVc#*@p<7Q#xjZ5s|f{J>^0Oq@AKn6&bvqiiIM zxfezaEtEdzupqc`O~4Bk6T(=yFAU2_ap!;jQz(Sl(CF~+@OseV#0{|Wl+SCbPwht> zLj>yx%F00~H(B{*|E8r;6)=agI=0h{Y@0@T0*~J_mKolIcxC)AzPx2@U00MHTuLs* z375%_kBw!Ahx-unjB7r#E7S3JJE!z9`Y;bmYneCLv8s0UKx6=x&5TI;L-?-^NDhuA za!Im6^T2@v&E|mu^HH1Sn-r&Ccg(ys` zY&3&iD^zl_43pwhib}e_EK0+SHs$3kj!z2Av)`t7;{CXbVqq5fF=5gVuy$OilA;xgdZ_$S|^kBTo( zf?nD$gm+r z?c^nNB}mrL^$?2?HI{vFWk1^wZ3`nACvlyzqZCN04K<;Q-2{s67l-NVHh!oEzwxzN zqDh2+>pi&SgT*g~LHuJ3?26`#8$AjAm?HO5c#R`+TC6-G-JmWaNC?`@WXuN&VSvV3 z>=+3Ikwj|h0*{vZHWtuav!%yGzk_J98ILDW_cDUU(9g@zb!j|@84vPss+?~tOt=>* z;db00JY@YaC=)#Wz2H;55KeG@GwPa%+kF&)HAIvsveDD?PyA7XXk>(KP?X>W_IS*V zj#UN{1JfWr_jqvScpV}HD&$N*qM(;l9Rw^+Tjda%pHlBBBTnE2V(m4IjbZeqio&I1 zL=2QoOsg75f#}N;Zb3{w!t-a)T~o*L9g#>#qQq+`5~=)SlhfywH8s-fb4FOc@{gG$ z`q{d=l&7^l)86VyO}&iyow0^YL(J(+-r1Z={}~*fP|u14br9h$0js-3F^^ zf_+W2q z%!{94+oEnq$!+dLt%=6*@kV4V+VnNSJ_R@$AwkT714?w|dgr190=)e>_^hz-(_pE4 z(&@H=aRXmNS=}=_IunwIFH#|ooqd7&F&jol<1*-P93F1;2gw#>%QUpV%hlIynfBgF#9qC%JyAv{P~A+J@Pfb#Fo*MO)~ z$?}nzn0Qo5ms59iHv0Xc=zOQE*%$G1f5=ZJ*usR<>BVH|tC^%Ib&aIAh_A?*`r8MF3>C%S0qBH$hW zOD`6Z;MGqLGxxz)q0NTks}DM$o?g@+aL{Tw@2t+wv)>sa;zd>CV1im{M#gR%>71>eQ;? zs_j+hRb5#1wyGIQqhIm~&kUu!S#)3yH>pP|o8e%60fuKYiFm%PdqKaq;p z86@pg{_N{7EC>0z?fn)9{tvD?zUtztcU3)5^#z>B+?IunE(w~2gltkFun%zvz#$Db z0V`FBS>SWK%yNGYyag6sgtrqf0RvI=4r*Svpuj-sdl0>e10giaz7Y4cL;6WphfWKF zBECUXYQBeC;k_KLB@25w{~N`eAiG1-#XyE*5#Kjo)an)H@wSKJVW+FM$!+1s-CXN* zhGR8W(pTfvPTksy22|d#Pl%S{0t2Qvt>zx;fp4jXSAoyM-lgg!?0dIcJ zo3(qEB>Z8|)b0Go;k#;%TY6{Q?^A%UGdTOwB{Qx=(~KDtX!m+LLh+6n(>Q+aahs|u zXHmTz-<*w-4v%-0$FV0WB) zczUGwoQ{!^^x-2zBZp^O4u5r1>j8s9`NH@?_lC#E3slUrP}ov@IiD|`muL}(k&Mog zYRW<5ijuoGP4Px|W;gctZ`(F@{hItY7Z2aG_NJSTCH6t*Ls^celWmqHPtBp|w^EXS z92)|O9u-nNG^f!*0rw-jrF}o*NhLocR8)vUGo^S&+DDl77EFOoM zUxfHxoR|eKusBomAbt&aiD`$YLwzfFM1`mSa~;r)4o#r zp&1}^!`yY-9CI)?rb^=#>P~4QQ|B^8#2_Wyf^s&gsF{NYC?m@sYTQ<&5vDNQPz2Km zPbKT2Um(IDG89HuamG@8XQ}~%F5NI}PGTfAnLtP`hRG2z`koBk7fQ+0oikI(fjFLE z7$8gym&0O^>sgL9>Dqv?p*!F_%ECoMV^_g`(@Wlcdlt0P5rQ0x3up;k`}&Bv9vTbb z8lbiSqaZIL0o<;VK5J2@d-i&Ri5f)!+!WR$O7V!2l%>cMjP{^yCeNu2+^(-5&A{(1zRZW!i0tfUCNR3(ln*k+*&&@nKE9*E5}Nj@5oIzPk+{qF{py zM{+$nw{zx1M5ZOU&|J8dKyLF`E*^3^2{lvn<$y$Ma*P>Lgp59}siy+fN>>pA95KUG zW}RjME=_ZwVloTo+(JtGs{zS;ucy8S(7619^%)l`i(^OjpPub-yJ;C7k5&ssIU z==C4#bcRs*#nZmTC16nFFug>bjMv87>mh5n%nYBLi;C^_vClgXye|VY>G+LJuaeO7 z`#r15ov?WSCsestXgvlh{wcFoSVRq=8*>#m0?hPys+uN2b>GO9WX2MUr zAVuanW6wrw)*2l4;F3+)q2zR2&dKXY=5WTV+xzRg8zSk1zqhTW0LOLz+Gr-1fD5i= z=`CC?Yeyb{Kaq~42XuB*CUb;yQ!bIqkkc`>(%4yS{`P&0n*nB5W8}W&kc-KZP9sCo zK+uh04ise%J0VCM0oeeCqA;g`fx1*y^U-8|DauT>(?BSN;#=H08n$3T%)@#J?S62R zzpdAwXh&{HeSiBO>@0`yCYf1D1*{1A+Nj&vm{mvQH*3W$H1u)|ZOdHBkCy-f8q%SbBTkPp3xLIL*czhnZ$>G?OwUKz zHPV4emBI_sqfATHCRvTl%LC(1RV|ycn|cQl2jtt2sylq~>S#7pE8WWBYpkZ8UD04R zx_a^9bw_pNS0@H~H|=oek>%Hb6^|+5_PB)#pHLqSI(0Ovoxy1R3Foh^UYa-{sMa(u zbFDtXwXP0v@k(pU^0?~OxlUN^TGqVA3a(BptzPRt(Ct1j6pP&+^DFcQ^V_u;Z2mzS zjGbGbguk;B+9CC>Jix{X#9}IJPSGw9Vl}3<41sin2+SS-(s&@+CEo$k1rTzB=SUA? zjv!>w2?Ujm0v4tk-?zlPfk-6gOUz6BCf*oRD&uaPmspD88K=#|i$p>xbgJ&d%Y}`; zrHO>MGMi;rmbFK1bso0Uh-C8~YOe z#)XM_xQhp!j>BYb%4CMhrY$-bj2<_P{I^oqB3NfjiY91*!ara{BjE#bBDO1}ItVve zwks7cPQ+8JFkBd}cCd`2dKigy!%&@&PRb%^Y8@LwXgI}*!_R=jyG&~o1LgpZscuSn zdxb!6bo`Xf6!-&Y52%dH{?K#r2XaQ?1>>5|B-k)>%GmMHF#FbqS_fs9I}**y=dFv! zBb9$29E*Q25lIKFOf5aB?1_P>XlAm5hW{7Z#vookJlW ztH2B!DI6uUp=j3K-fWwEMlL|{@}V|=va`|cs%@akGWI!U!xRQgN#ux;wahkAzz9jD z84#8e?Mn-C#bX&kQG11r1cVWf_4birw=Yo0a_5#yYht^`=LXLZhkt6LV+CuQ=n0-_Lg^)C2s&s%G&vAS5nAu}Pyk0+Rkb}+O+lGfH z#%GPRh5%^WvgJNQhj#5P3s{FW%l4XEh|q#di8NUL~giEu$~klg{M&e ze72PJTMIQq+&DvV%uR?On)T!fZA5o+9H3N)6AFvcx* zxIYp>ceaPCd(vGsQMU}P%QiKZ{72B7Mk1Nq(p|oQg9- zk#I4I9zQ`B$}q}lB?-@@n>R*?uc?beed)Et>+aHP z%Az{3^jcwGzNPfq1>fb#rPpq}e>13^p-vAPHdozSdd*>*|9a`Q!23Tay_QuOCQGla zstD^Uy;fCiY<20it7?dCE4_B({joz&IDhN8r=M^}a`o2pPCxam0KBu_ba z`^9?c27Vbbi-q=bwM}lKJybDZSry()Kf}4y`(&>U`9_Jh$p} zygCDWel`9&4}YCnbr$|w2fONaygIMyaJ+wN)djfb1YEuU-`oEyhYTDvHjS9XdUk;W z&HR2Pd{fY^#dps#-?!&;GQNKz?377Bz5{UgV3y}&FDCJOF7AIOUL9!0q1m5-f7|iS z+2*rtc;_Ts-Bop(`PSKx+2-RP?c}rYPWk#SgPSvLogcJmc(tL@X%F>hLroP7#Y~xE znmL%0xzIk?!@R5-IVye@U_lmQH4NenQuu0F9gDFztA{Tr0qHl%npiVyVXZ91+K@2S z&N`@fBkN@IpjFIg3s^VnVZCf2>tp?>zPN}jW=oKZwiMzdNz{3SBduZwu+?l0JCLnq z2eEbRV78te!VYDJu?=h^dkZ_9ZDL0-_--I99LbJiN3&ztvFtc@JbNqK!cJf(vXh`_ zZ)K;jQ`u?kbheERvoqM4>@2pOoz2c+=d$zI`RoF=gI&ljVi&VZ*xT5p>@s#ay8`u< zu4GrStJ&MxHS8ViT6P_KC%c~Az;0ykVmGmy*}K^->{j+3_Fgu^cCy>p?d%TrK6WR& zi`~uM&pyEJVIO4ovJbHjvyZU**!}FI>;bk5l?)za53!H2kF!s(PqK&Er`V_2BkWQ3 z8TJ_aEc+b$JbRpdfqjuZ0e}9J>?!so_B1+De}z56zRI3u&#|wuud{EkZ?bQ(Z?osw z3+zSq9Y*!jzKfpE-)BEyKV&blAF&@Zs%Q99_6jOFyvlyge!+f;dUwBO6shzZ_FMKl z_IvgR_DA+7_Gk7N_E+{d_ILIV_D}XN_HXtd_Fq zhkJQ7_i;ZD@E{NI8nEIBkMdex$74Ls>v;oD@J62GO}v@6phsGYxA8P@=N&x5v%Hhf z<6V3{U%Vg4!pY5oX*lz)al#y`tH z$3M>>=U?Do~je~CZMzs$eFpW$ES&+_N^*Z9}@H~2UCxA?dD^ZW(=BL5B_ z=M((9{CoWS{0IDp{3ZS){$u_V{xbh5e}(^yzsi5kf5Csrf5m^zck?~`H~hE!cl`JK z5B!h(PyEmPFZ{3kZ~X84AN-&EU;N+vKm5PE$X^px0q|35|XjPT>-6;SpX@ zEquZ+0wO3vqDF+#0V67EMV*L=xTqHmA|V<@65$HXqD8cd6f)}5qFr=|jL3>kF;8@f z`C%}4B zP;r>pAU2A(h{MGuafBEYLt?WyQXD0Y7RQKV#c|?z@m8@#oFGmVCyA5AR&k0rRh%YH z7u&?JI76H%&Jx?j+2R~=t~gJeFD?)}#D(G_ak02WyiHsxE)$oFD?~wDDXtP%i?@qw z#5=^b;yUq8alN=f+$i29ZW1?(cZ*xZt>Qi6y<$Y{6t{`n#U0{(;!bgwxLdqmd_deI zJ}B-L9}*uH9})M7`^87a17epL6%UGs#K*+P#V5ok#lzxL;?v?0@u>KWcuag&d`^5` zJTATL`(Qv6E%TI?2k#BaoJ#qY%L#UI2U z#h=8V#b3l<#oxr=#XrP9#lOVA#ec+qMNzyas~}o&REv_*l1idaHVOy0V21TbudGJ# zHNOnVpbW_x8I}lYAt+&R znA{*Y%D2eFm&+?;L0&1Zl2^;O%WLF2 zBBD@)7x{{EU1|epY@?eqKH< zzaYOTpO9nnN%@rgl6+czS$;)6Bfl!2mCwnq$*;?A$ZyJT$#2W&;RsLN5LjF?zO8#2zmV4xHH0MNjMmlr6FQFEf-3Ydn~V2ZTT#} z6|jO<$f~izsH+#XYOOj5;c=_pYOoSkqm{IptY)jlYPC{Uo0YcOtqv<=WvxzYp4DZ| zw-#94R*%(dEwuWqek*4!vKCuQtO0AOwai*>t+4XeN^6yMfVJ9MV;yL%wGKkh_JghU z)*;rR)?wBLYoqlR>u_t6b%Zr&4OyG5Bdw#Xqpf4CW3A(?(kaF)}z*EtjDa+TA#B%Z#`~(!TO^0gf(V8X+33q$$HxQvh@|~8SAUov(|Ig*Q~Ew z->|-Eearf`^}O|h^`iA1YuuW!zH5EY`o8r8>xb4$){m?oTR*X0wti~8V*Si|)%v;h z3+tEGudH8NyRALeZ>-;1zq5XC{lWU9^(X7k)?ci@T7R?tZvDghr}Z!E-`0Pu|5`=s zHC3gU;z}r~ETv$Na-d+F3tnT7@~Ud(Q+^dd0hW-eQDGHPQB|wzR7}NHy=qVi)u@uH zNj0k$)v8jeO{G=4>QEV#MV*Ivs!PpR3sg7i2K1_hs!#Q+oLZz7t0ihcEmh0ZaSVQ5ouW=vr>WD`HZ`oyP-m*M)OK~YI!B$W&Qs^B3)BvEp}I(2 ztS(V+QK1jYdXIXq z8c{pdZR&P)hkBp7Q{AQRR_|9IQ1_@0s(aOk)Q8na)P3rH^-=YJ+NDO-gX$smG4*lv z3H3?!u=5H}!Y*5A{#=FZFNrAN5~VRIlkO z%{12nMfNP1zctDWI<-r?wMTn(wf1Sh4(Ol`=^7o@5vcaHx=zP*T-PHJAfX#|Qa9;l z-J)A{O1J5>Zr2?;gM_V4Jx_P(`Ferw);;jHFVuayU+459y;v{N1A3`mrkCp#Ib3eHy-pvj*Xu*{q53erL2uM=(TD3z`UpL!hxBHBq&`X?t&h>i>f`kB z`mK74K0%+TPtqsrt@;#wsyF zew)5jU#2hDSLlMiQeUO7)^FF>=y&LA^>zB4`g(nXzEQtR-=uHW@7A~ITlIVNd-aIk zsc+M_>pS%O^qu-HeYbwU{(!zme^B46KcqjbKcer`_v?@92lOsIsvp!3>5u7;>rd!U z>WB5G^r!VB`ceHE{h0o&{+#~2eq4V+e^Ec7$Mlo>Dg7n=wEnXGihf3aRX?kr(_hnH z*Wb|J)ZfzI*3at~^o#mCdR$NF@9OXA@9Q7vAL^I%kMxiAPxQQ5x{flyiK|IDTX)|L4uwJ}?$Bbzofel|vUe9QmxOG>anxOqDzs2{ zcXu~vp)SxOE!1)MZ{A8SNBjNA?#w*5c{B6oZOXQn?I_z>wySJ+*`Bh!W&6tZmmMfO zSazuFaM_Wvqh-g+j+dP%JBc;IPQw~waDEA20V>7HF!UK90)u~$$7qbfSd7DXOu$4; z!emUrR7}Hk%)m^{!a`URtSQzEYmT+RT4JrR)>s?(j!;{y9d-uR9_xUGv5wf8SSPGA z)&=W|b;G)2J+PiwFRVA#2kVRV!}?_%7u_`Q% z&BLm(1XhD3u@siZ=3^Pm!LnEmTY%MK3$Z$E5q3Uy0d^sF5q2?l33e%V8Fo2#1$HHN z6?Qdt4R$Sd9kv)-f-S|CVb^0fU^iknVK-y9V9T);*sa)Y*h*{_b~|Sg_A2%o z_B!?k_9pfg_BQqo_Ad4w_CEFj_96BW_A&Me_9?a+TZ4UueU7cg)?r^@Ut(WjUt`~3 z-(ufk-(x>uKVs{#4cJfE&)7z66Sf)Kg8hR1ifzTVVZUL&V}D?OVt-+OWB*{=u^re> zY!|j0+k@@J_F?<61K2_A5Ox?lf*r+tw2z(?y3LlM+!N=m`@bUNrd?G#xpA4VXIS-$LPsOL<)A1SjOneqT8=r&E#Upq* z9>rt04W50KcoiPU=i$|O02W!3cnh^2EP`+4quEf!I$F8@ayp#@Eh@)@SE{l@a6al{8s!nd?mgL zza75=zZ1U;zZ<^?zZbs`zaM`9e-M8Ne;9uRe-wWVe;j`Te-eKRe;R)Ve-?iZe;$7U ze-VEPe;I!Te-(cXe;t1Ve-nQTe;a=Xe;0obe;@w<{}BHO{}}%S{}f-1ufadVKgZYN z>+mn|FY&MNukmm2Z}IQ&@9`h-AMy402K*=dXM7{R3Ezxw!GFPj#kb{F>+7j)EGl=#?2O>;#B+eu{5uJ%HL|394(Vgf)^dx!_y@@_VU!ot;pBO-#MVw6x zBnAm_f`W zW)ZWAImBEdLX;CxB1YIm1yM;<5piN3QB5R>8X`%gh%_;u$Pf;ZC33_9qLx@l)Deq_ z^N9iN}b?i6@9BiKmFC ziD!ssiRXyti5G|$iI<3%iC2hMiPwnNi8qKhiMNQiiFb&1iT8;2i4TYmiI0eniBE`6 ziPgj!;xpoNVlATCV_<{J5SWj#qej>`x9L&mzwz2aEfD0vP!j2upmAV-p;$kF5&ax6KH98XRlCz6xM$>h1@ zdE^vwDmjguPR<}_lC#L!bMdvVyE6tH?MxkE|vWWDS`lQ)HT)Pi9Dm z%#t~B0a;5fB%j7HMtK@6s>*O2co8(*M+vGdsyX1T1 z`{W1YhvY}($K)sEr{rpK4fz@QIk}cxM}9$mNq$9sO@2duOMXXwPyRsuNUkS0kUx<> zlN-rRz{z3jp{zd*x{zGmjcaS^DUF2?Z54o4zNA4#NkO#>_ zy6i4y!^<|NgD49|y zmC`7kGANU>s1VhJYDzVuno}*PmQ*XMHPwbXooY+9qt2k(Qyr)<)sZ@r>O^&>x=>xI zZd7-w2i246MfIloP<^R>RDWs!bry9tHIN!a4W@=rL#cD9VbpMH1T~TxMUAG$P-Cfa z)OczFHIbS`O{UJJ&ZDMKQ>kgxbZQ1QlbS`%rshy{sR&h0MX4BNQx#MtRYk?Ac~mu( zplYZjm4XkK&8ISyLuIKPwScOn7E*Q8BIUQc5>Q3q|>Tc>D>R#$T z>VE10>Otxu>S5{;>QU-3>T&7`>PhM;>S^j3>RIYJ>Urt~>P6}$>SgK`>Q(AB>UHW3 z>P_k`>TT*B>RswR>V4`1>O<-y_%_2Q)Th*HY7O-n^*ObcT1S0BeMx;qeNBBseM@~u zeNX*B{Yb5+Hc&rNKT{j2P1I&;3-t^2E47u{M*T+pPW?gsN&Q9rP5nb{r*=>~sa@1= zY7e!S+DGlD4p0ZFL)2mF2z8V?MjfY4P$%g|^l5Zsx`-~OOXyO%jK*l3CTJ3_lh8Cn zvor_pY630N5-rmTt>yz3AR_AG$BykM2(opwFVurU%l4=)v?5dMJGkJ&Ybs zkDy1=qv+A}7peNFk=*jfC^m+6YdMZ7Qo=(r8XVSCi+4LNGE*+uE=_nne zZMuT4q^sySJ&&%Y6Lbxoq*HX7o=<0JhtASDdI4QaFQn_}MfCaf1@wjVMfAn=CG@5A zW%T9r74((#RrJ;LHT1Rgb@XC-3B8nFMqf|gK;KB;MBhx`LNBLR(6`dJ(JSdy^zHN= z^qurw^xgD5^u6?b^!@Y$^n>(6^uzQc^rQ4+^yBms^po^c^wab+^t1GH^z-x!^o#UM z^vm=s^sDr1^y~B+^qcfs^xO11^t<$X^!xM&^oR6E^vCok^r!S{dJX*<{W-msUPpgH ze@TBue@%Zwe@lNye^38F|46T=H_$)PKhqoOP4s4Z3;hfIE4`K8M*l|tPX9swN&iLv zP5(o0r+3gh>0R`0dJnyq-be4J56}ncL-b+#2z``3Mjxk7&?lKj%xO$xridwKN|;in zjKLV3A>i&N#n24HunfoWjKGMD#K?@osEo$wjKP?U#e|q9OjD*A)0}C+v}9T_t(i8= z=}cRu9dicLp6S4ZnU2hvOedx@(}n5EbYr?RJ(!+MFQzxshw01oWBM}#n6sF(nSsn8 zW-v2^8Oof)3}c2fBbbrQC}uP>h8fF@W5zQRn2F3JW-@awa~?B=naWIKrZY2`nanI^ zHZzBr%S4!RCd$MZo2g(bnJOmE%wwvV1XIH#nG};|<}(?_VX{n)S-{jX3z<4*5pzCs z0dpa95pywf33DlP8FM*v1#=~H6>~Ln4RbAX9kZBO!YpN$G1oIUFgG$cF*h@}Fw2=0 z%&p9A%t~ezb31bfb0>2bb2oDjb1!orb3gL{^C0sO^Dy%W^C&&)<<6SJAw!u-Pg%4}t} zF~2dtGk-9DGJi3DGygE#nH|hdW*4)Y*~9E*_A&dJ1I$6@5ObJ0!W?CeF~^w`%t^Kp zdm7uAEnd>|k~XJCr?#9mWo4N3bK=QS4}T3_F$`$Bt(wuoKxy>}2*__B?h9 zJC&WrPG@JZGuc_}Y<3PimyNLHY?O_$He10~vQ=!HoyS(Q3ATn!vMDyr&Sx{M!)DnW zyMV1_7qWHiBKCat0`@}oBKBhT682K|GWK%z3ie9&D)wsj8unWDI(9L;gk8!mW3Oj# zU~gn^VsB<|VVAQj*jw4#*p=)m_ICCT_D=RL_HOnb_Fncr_I~yO_CfX`_F?uB_EGjR z_Hp(J_DS|B_G$JR_F48h_IdUN_C@w3_GR`J_Eq*Z_I36R_D%LJ_HFhZ_FeWp_I>sP z_Cxj~_G9)F_EUB>yN3OY{hVFPu4BJozhu8+zh=K-zh%E;zh{47e`MFQ8`z)NpV^J< zCU!Hsh5d#7mEFp2V}E0RXa8XTWdCCSX8&Qgvpd+G>@IdUyNBJ&?qm0}2iSw`A@(qP zggwe0V~?{Z*ppl%?lidRR>T!^C0r?2#$g=J5gf@;9L+Ht%W)jf32?Jb;$(3CQ8|s% zIfFAfivw>|t|`}yYtFUcT5_$p)?6FzbgnJejyr>E&voF!Tu1Iqt`pap>%w*Ax^dmP z9$ZhZ7uTEX!}aC*as9ag+*#b&+(2#+H<%m34du?^hH=BW5!^^_6gQe1!;R&}apSoO z+(d2?H<>$^JCB>fP35L>)43VkOl}r8o14SUg1eHtio2S-hP#%# zj$6zv;g)jCxa+waxEr~fxSP3KxaHgm?pE$LZY8&hyB$8!dM9@mcQe;VJIF9MIi5*~afd5p(-f+u;3r+J2Fd5-6K zffsp+mwAO(d2r3+4IaK}#E1AMd{e#|-<)s3x8z&#t@$?m>3mzh9e)Pjp6|ei`HuXV zd?&s$-v#~=r5oR!@4@%vd-1*bK73!kAK#xJz@NpR%@5=U@q_sx{80WJei%QTAHk30 zNAaWiG5lD596z3)z)$2S@ss&;`SbWG{8WA#Kb@b!&*W$Ev-vsvTt32=^HDy=+k6FI z$yf1lejZ=VC-@pZ$*1@^T3-}B9i};KAOZZFq%lOOr zEBGt-fd|5`HPajK7}0fxnTziN6^>pRk-?!QaZ?#;@d8@wfAL@OSce z@ptq0@b~if@%Qr&@DK72@elKl@Q?D3@sIOQ@K5qj@lW&5@Xzwk@z3)w@GtT&@h|hQ z@UQZ(@vrl5@Ne>O@o)3*@bB{P@$d5=@E`IY@gMV_@SpOl`8E7!{O9~yejWb>|0Vww z|26*&|1JDI!T0`F;F;{s4cFKg1vAkMKwNWBhUc1bVRVSsR!aJDc|7$gi9 zh6qE2bA(~SaAAZnQWzzS7RCr;g>k}oVS+GGm?TUV&K1rRrU+AoX~J}2hA>l@CCnD) z2y=yqP%cD;m|zPPLZwh8#D#f6wU7{MgrtxX(!zWpBRE1<$O#LCT4AA3CoB@q7cLMk z6fP1j7A_Gk6)qDl7p@Sl6s{7k7OoMl6|NH&3rmEh!ZP7{;RfMG;U?i`;TB=JutK<1 zxJ_6otP*Y)?hx)2?h@`6?h)=4?i2189uOWB9ugiF9uXcD9upoHo)DfCo)VrGo)MlE zo)exIUJzasUJ_mwUJ+guUK3sy-Vojt-V)vx-Vxpv-V@#zJ`g?>J`z3_J`p|@Rtsx{ z&xFr~wZb~#3*k%QE8%P58~BU5?}YD#AA}!;^}+_>C*fydqp(TXENl^e5q=f63fqL= zgx`ffgg=G9gujJL_sij+u;jL3?d$cqB}8=WM|q9UrIChG9_3Z`g@A+d?rRBR?T z7h8xe#a3c#v5k1T*j8*Oo*}juJBVSiqj;v+N$d=tmF_Bb6T6E&#GYa=vA5Vq>?`&Y z`-=m_v&6H-f#M)>usB2SIsN^zBVyLg9qr+Almw|I|uuXvw$zxaUop!ksZu=t4hsQ8%p zxcG$lr1+HhwD^qptoWSxy!e9nqWF^dviOSls`#4ty7-3prudflw)l?tuK1q#zW9Oo zq4<&bvG|GjskmBPBYq}+F0K{ViC>6cieHIei{FUfirmJ~^qG)b2X z$&@T9BsGzmO3kF^QVXf2)JkeCwUJJj+Dh%DGo8YwBI zq_i|&%1Dlsm2%Posa9Gj)k%w_^Q8-<3#E&si=|7XOQp-C%cU!%E2XQXtEFqCYo+U? z#nKXKskBVGUb;cLQMyUGS-M49F0FvSZMaQZDXo%jm+p}6lT`bqj(+9++3HcMNiU!-59tH|clj59v?oFX?aTA8EU^L)t0rl6Fgbq`lHU zX}@$pIw&2I4ogR*qtY?yxO74~DK~=8XEuhv`zn@8e_xq}>*JIZIu zo#f7P7rCq4P3|uDkbBC#zS5RF28ETp?G= zRdQUOCs)e}xkgUPDLF0Amou^>XXTu{K(3V+%60N0`F!~T`9k?3`C|DJ`BM2Z`EvOR z`AYdJ`D*zZ`C9opd9l1iUMeq>ua|F-ZhXP5CYPZTTJfUHLuvefb0VL-`~5WBC*LQ+c(#M*d9xTwW`$lfRI^l)sX{ zmcNm|mA{j}mw%9dl-J7}cP_N=Rt}-q6jI=1L2trP4}it+Y{2SK2D= z;1m4ql@3Z+>8PBkbW%DiU6ig$H>JDML+PpXQhFd*Ps1j3br9!Dxs+71gPpMWCN{y0KQc7BxuVfTQ$tpQzfl{k1RO*yP%K6F#%7w~B z%EfTk;8Nu><#Oc;`LFFOkVdW9!QROk^apei+N#!Z!Y2_K^S>-w9 zdF2J=Mdc;sW#tv+RpmA1b>$7^P30}+ZRH*1UFALHedPn?L**moW91X&Q)RWXM)^$n zTv@BEQ@&8XRK8NaR=!cbRlZZcSAI}_RMsmSl%JHJm5s_KWwWwH`9=9v*{W<)ep7x| z{!so@{!;!{{!z9oJCvQuE@ii}N7<|FQ}!zdl!MA4<*;%@IjS5}jw>gWlWHUNG_|o> zq!z0sYAIaq!c<%(R8pnj4_Xk-PG=C54ES-OYN=pQTwX>)c)!K z^(^&lb)Y&(9jp#fhpOkO!_?vG2z8`7N*%3^QOBy|)bZ*Bb)q^+ovfa#o~KSxr>fJ` z>FNx1raDWVtwMvbv^VDiJq1LELHKnH2`D#XW)U29Q7pS%B zLbXm^q@J%{pkAn6q+YCEqF$hW%76 z>dopc>T-33daHVyx>8-G-mc!E-l^WD-mTuF-mBiH-mgBOKBzvVKCC{XKB_*ZKCV8Y zKB+#XKCM2ZKC3>bKCix@zNo&WzO25YzN)^azOKHZzNx;YzOBBazN@~czOR0ueyDz= zeyo0?eyXlk*QlSVpQ~%tb?O)Dm+DvQ*XlRwx9WH5_v#PokLr4LgZh*Dv$|2;q;6KX zsK2Pcs$11<>Tl}r>L2Q#>R;;L>Obmsb%(lB-KFkU_o#c-ed>PofO=3pq#jm}s7KXf z>T&gidQxiy*RvXHMOv{|qLpf88m8eIp^+M;(Hf(%8mIA^poyBK$(o|6nx^TRp_!Vc zg|sGGQ>~fSTx+4V)LLn+wKm%6T3fB1c81no>!5|Tj@p@8C#|#AMeC|{)4FRtw4Pco zt+&=k>#OzC`fCHUv$V6df!ZK#ur@>+s-2?^(}rs!w2|5@}e#%mL_iP|J> zvUaX^o;F3Bs!h|TYcsT&+AM9hHbL*0tI#U7DlM+f)2g+ER-+}gl$O@! zYZ=YavRY1Cpw(&%wK{E)cD{CjcA<8WcCmJecByumcDZ(icBOWecC~hmcCB`uwpd%D zE!CE3*K0RuH)=O&H*2?O%e58St=etcN^O;PyLN|mr*@Ziw|0+quXdkyzxIIkp!SgV zu=a@dsP>rlxb}qhr1q5dwDyeltoEGty!L|jqV|&Zvi6Ghs`i@py7q?lruLThw)T$p zuJ)exzV?Ckq4tsXvG$4fskT~MqkX1*uC3M9Xf|YU{NP z+E3cg+D2`YwprVv{i6MHYNq`dRwf`apeErbY`b2$_K3P8({+@V>K2@KlPuFMYGxb^eY<-SCSC8oBdQ^|;wqBuE>Q#DN zpQl&r3B5*7>M1>~&(|}$qi6M;zCf?l7wUETBK>^*0{ue$BK>0h68%#BGW~M>3jIp` zD*bBx8vR=RI(@OeL|>{e)34WW&~Mal(r?yp(UJ{-FMl{;>Xt{;2+#{{=WW!{-OSn{;~dv{;9rNU!#Aff3C09*XdvAU+Q1!U+dq% zm(ae`zt?}zf7I9O8}y&_pY@IUCVjKMMgK+rRo|*_(|^-{*ZpS$F z`YwI9zDM7y@6-3|2lRvbA^os^L_ew@(~s*X^pi#-<20kOQDhVwB}S=HW?%+x5C&;b z25m3~Yj6f{2!?1#hHNN?YG{UT7=~$BMhGt8HZ__V&5agDOQV(1+Gt~(ZnQPp8D|*n zjSfcG=xCg2bTT>{U5u_qH>11J!{}-BGI|?*jJ`%cqrWi#eFfhbXbdt28$*nt#yQ3? zW4JNG7-@_$MjK;{vBo%KyfML;XiPFD8|ND58B>g@#x!HPF~gW?%ra&hbBwu0#3(nS zM$E8{3Zv4fGUCQOquNLqHAd1%8EIp_kue-2YvhatMy;{Xs52HB=NlIo7aA8C7aNxt zml~HDmm60YR~lCtR~y$D*BaLui;X45Qe&BMy>Wwaqj8gQvvG^D+*o1U3iqg28mo-k zjXR7xjk}DyjeCrHjr)xIjR%YejfaefjYo_}jmM0~jVFvJji-#Kjc1H!jpvN#jTej; zjhBp)pjkk=qjdzT9jrWZAjSq|ujgO3vjZchEjn&2)<1^!PW392y z_`>+o_{#X&_{R9w_|Ev=_`&$mSZ{1FelmVGHX56Z&Bhkv7vooBtFg`a&G_B;!}!zq z%lO;)$JlP{Fm@WdjNQf_W3RE#*l!##4jPAy!^RQgsBz3VZk#YqnvKlU%*JMsS!|Y= zrDmClnYc-qq)C~y$(XFknY<~OqA8iOshFy%nYwA1rfHcWvx(W%Y-Tn$TbM1)R%UCn zjd{A+)@)~}+;1yPDn1?q(0Or`gNwZT2zyn*GfF<^c07^K5gV zImjGr4l#$qRrz7&aC3w?(i~-uHpiG_&2i>3LV>)Km%$WZt zxx&2Fyv>^pE92| zpD~{`pEI8~Uoc-ZUou}dUol@bUo&4f-!R`a-!k7e-!b1c-!tDgKQKQuKQccyKQTWw zSDS0h&&EW3d)z@s?nTmSoA6VyTv9>6T%cmSu&kCRS6c znbq8CVYRecS*@)$*6CJTtDSX*)!yo0g{_Wo@wAiG+3I3-wYpi|tsYiStC!W=>SOh_ z`dR(00oGa8+15a7kTuvEVhy#G>Wl2*z}Tl1}q}0xo2;9yTdd{Q3hP$uHfyD|%DUaU!@ASD%evdT$GX?L&${1wzg%#Cp_v z%zE5!+O(t%X-^-$9mU#&wAhb z!1~bo$okm&#QM})ZLP6Bvp%=hTI;MYtS_yvtgo$atZ%LFtnaNKtRJoQ)&}b*>t}1D zwaMCSZLxl_ezmq*+pOQL->pBaKdry4zpa0)?bZ%!r?t!4ZSAr4TKla1)&c9Fb;vqw z9kGsD$E@Sl3F~C2QRuW#<4{qkI8+iU4V8tk5FR2zWQYpUAtuCzxDX!_LSje?$sr}A zhP03#GD2p^3WY*VLQO->Ld`=hLM=nBLajq>LZ^q?hT4VB2(=G&2!%r(LuZCMg*u12 zgt~^hg}R4&gnEX0g?fkjg!+d1h5CmEgw6_`9U2%K6dD{F5*ivhCp0WHJTxLSGBheQ zIy5FUHZ(3YJ~SaTF*GSOIdpF5ywH@;)X=oh^w5mZ%+RdR?9iOh+)yM`9*TxyAv;tN zsti?y;-Pt=>QEw76H10sp>$||BYFYcFHL2_&iq^?V@r`})OMV3Iu%c5!$~_^o61yE zg~T#IQn_T7_TS-1!p>yL04q-|6bs;RDwj>flXgCKw91ZFGeL}KJQGdWY#vP|7Zhez zZP&5cR4S2;r^9}nd`30#WX|D&lr=dNDPe1;5`qfI{|ZPaa!$Tvzoq$Rq$(=%VSW=( zFQA5pQNnx+GImXBft^PkJCcc3<)b>;NTwu}DUWCCW7Nj8(W=r&Y+laEvXOWu3^$8o z@hn^uwlf6a=B7zT~aCfft}3eBRh677A}uOt5IYr zi0o1!E(*Ybn5u zRq<#wsvqQz!eE>dv9LEpP5zr4O!uaz23Oe&(O3rIg}K5gr2iw=0&j41oz{*_S%7FCrlMU z3o2{<7cnR()G+Xr>euI2P{;cG3Wz~|c*Jqy!1R*Y#*r)$$z~(bsv0|)CCXE&YG6xF zJc>nfXpO}ek}i--CsL6Zj^GS@4xtu{EC^@gHFl=BJW^gqp!HRr%T&VJN1&6AL~RB^ z(8!GKphOTcSzT5Ri#!#xDgPaIqLE}NAPKt;y)t%!jwhq3%48f$2gU?Mr`pbv-V5rJ zNYFl)lBX%60eOU?Sk*$@rKi$%Qq4nQ=nEJ@ zU(%smx{qK8sflE&nE>#GpFHX^8ZM9e119GQ?j-c7ZlzFet_;HF<9LD{3~C1TJ8aSr z(FMKT9ctuau#KlOypMoX6JG?vLnI$Lo^;|doAkpGGY{Y-^a?b<%>=4~q6K-nOg=!I zY+b?*ssTF!)X+_X1Z5I5)=s12Mk=0$Q~foCCQP1KzP_yU+UAcUqC(s>AR zGf3*kaJM?Z;5$Q5K6-^gQb+PQbeW5~(ymm91d9$Tj(12vD4jy(==w*CR`hF zs$kqfvdO}@XR?qJXe|EXg`5CEeJ`M?9tN@8+eu)-qUcT)WC-n0h=0 zvx+T5{blAdrGsFQ^Jcv{Yp#QbTxnL8NrtE^)gC5`m(Q_#V@+tK^2LuQ-JMlNxlWa!RP* z&rlsG0}TS=zjmxXnuiBU$tlr%a*(-tYOtSs0o^wacw^nPK7Ipwke~MNaIZSe{$D_l z5(Wg?1KKZQT&Qs%0YnnvT04?XB}Kp&fMyArTn=_~SD`zVhV}>Plz1+;{@eOkm63$liaMypFvaJr6m`Eby$P&Xvy03#r6qq4p@)LxLEn7C`iELq6skMPx6`$AT2l zI!FOJdL)gcFjR?LOmv^#h7oW_RCq4XTYJx)m|v%jJ7r(b0Q0Dm>6CVLeP$cAwmY? zxzP}SRyb74qx!2DCP=C}j%p1?TRT$}P1TA~kQL)l9aK@j_EsV7)bY^@1CdD~NL37~ zT^dIZFc;c3<3gaZ#2`}Ird>3h%0MmSz?M)n&%RCo>^NxOc2F803|FR|5qNoNw|w3dn4^aV4VOfpdBlU=AZB}3W6_S9BBN?p=muI8(h@C44sVs+GBZwAH z7K9`#VG9XDGP&}4B%7&YVm8R*cCbuKJ(P>t(RdB)ZeUdbX5rX*0tC1OHfDo355`>*3Oj0K*f(I93o~fK(=?- zVrbBAYru97O$1qxh?Ix3XvHNfOJnh<9q#PCx_Gay-m9DU>h8UI5V1H2_-K_v#&IVK zvl|!<1j1}_1W%?fWCd6(z95diC`ttYn)yYsq*EG8!HP?=u~gOx7wDlb9_Wf#u*DR| zGLcFaJsQMCco4S?LTjNhr2j?*DGjX>K^Jo%<+xf_V6G?u(_qqu98w@sEG&&>a%r#w z#K6db#d0;}h)b7%s*tV1-6z`I3alkIh~gzS`s^tWGjD-s&wyEl#8jr90$PcUd1xwA zVk3S-xX&=MB+x$SS#U;~PCJztdb1Yj6o4DwPac`6$4{~%X^wWThIt>t4U z?Hnxne0->eUs^hqN=tdniR2j&n=(N z4GhOqb#2%+Ga#!l0RU_c1WlnKiuzhRb-aQ?FdIf6HfEc&7e*728n^2K29^o?D>S$i zO#i^uitIYO41Opx0^Vq#!2l)Hg8{d|DnQymHWkaWS`;1|g(FTBrVY$7A&3z}$Tfy3#Fa+%_aHRLrGUXMgSrNZg?{Z(9E5rT1*%Ow z7Q_jX__i77EHt{Vyb2|PP=Ov5sfBIizm;LA zG#u{1fni}3*K}M(010$|WNpGd5Y1Z`N+4SlD$%KOLDX0rDG=eRNTLGrf|F;M`sl;~ zit!NFVp3X>fH_}>UNA(Z?w$<&gSKX{7J4!e>!ShJ6@9!im4b?fV;L~)z;UIU#GgtY z;_@j!z*T(^MrjG_0qm734llTTKAM;d+;)+xX z<`g^-D?mMsz`!UANERJkLnA!^`Wt3aBmu($)%9s$sjjiJ5GMo71$I05w00Pn0L&Yy z0Sz6F$1Cdi21KM$3JoZ(iVO93b3=z-P$w4#uYyP>NbRWrFg;P_++Y|rDBdeLh~?2- zt+hccWT*{F_2RgtLYv&Is%$XfWx}0L!MmJ-cRdB~b_(A86ugJhF#kZR3R>V7>+T1q zL=7aeQ=+Cp4vqy;(Q!J+CSD7WS=7yugTA>Y;>B1woefK`#fQ0u1ZWTJYRp>%lPE?6Hbm(iKX}D#3=E zj>K619dsdC8F4`Bb+?>iIPkMeDkC`%+A2XoOVE|D^}vd#00}H%lRk!Ep#b)S0}?Qb zq~isbR92-xwX2N7!I{sYiYnt-y@7V=OXH{#nNkR?%9WFqz{Q<#MIx8AaSyJ^RZ<=V z@nGNaqhxcy$>DsZHZP`?xv^}gq!NjdC6!6=9VzwLH0N_`RJ>~+qXPoWwHliVFxQjG zF&d(v_}0|q;LJI0JL)MxFtt!e#iUc{l`w_VV37f3*7c&0u3Yx)~_wXpg|4>5?~DUrfLFlMpv72n0gS&I${AD*wf1p4G_wIgAp!TO$G?6 zIKUv+xlfb{pNE1Yhq z1-g_|Tm^HBL=X3{C6lCF*xzg+H0=PzNh8keRV$C=;t3>Ev-x1xdYvhPvu`*Og*jgn zUl`QAD4oidROMk+9C z2^fgt5d-lhsE+25eL>PY4X>>Nv0ZNv;O*O>5JYoMlm8on?C#Y1yr+s;X-My&IfE8{Aey4Fbv8T@DabnS-GTN5TA-Nkc|?-06xEdZAU>nnZUokIsuM04)_s z2~?hzu1d4@NL?0A0>K^&;~s?rLfC=QkvgPX24+a`@`KHn0aY=w2uV(vctyfy^Jp3! z#wDbDo1p_hp#nYJv3WG;U_Xo01Pv}tL||*Kf)^ZnJB0T_{IwY5-HNgV@^=Ak&3!}9 z)Vsg12===ZMPVA?NwERySwPAXaX2f;)D>ugFna}8iA5|Yf0oL-7OFxD?&?w?4wmzI zC}=`4h(6UAdZ2nxF5p*;D@0JJ8x1VBNeOIz*`Qm3c9cN$+`?j{AmMo}iO)kpfs{w_ z8dZ`=fpMi2p1`63NmV=W1i`O3k*ir)3ZnuR6x@4-Q^_&}fgVEpZ*PrI0frhbxvlpP zj)DbWR1--P@beBfGkiVh&kC`C5+s5t5+p#4FHD3yX~6vfI62gw&rd$Y*%2Rs3c>j) zoSdU0G{%#7qR=hKVo3sfasSCEoQp%eY!#A8kog{|xzXx0P-IUoIHe7xHDH(mD+|o! z9F89D0hI?K5tndjt{hzEg1I!j9S7DJ?Z08G0COf4V91h~4{|vq8wB|qrV!xu=NkD0 z89SY*%SUiAFt{$P&mJLCkb!I1@pH{*;YvY-%RXHR!81C#AnI|UJ|vhtVgV_T849EM zGgm2yRTq1rTQfaM1`$W?9_98B_n+POg%F82Sk z@PbdxqDzA;Tm1`Tns|6iULd}?_;8)V^P|33>a_|zOeW*i zaW2nD5x;=bwW3r!A)@mdIEsT^paxd1%L+j1tK!|8Gig> zhBTbTLX!|BPkZZK{(;k+*T+a z2rikhp@L$83Wly{5ZN{Dx)KYWM-fnnfvapj%u_KrCzV8cXQU2o%dkg69di!m%GOXv zs2fO2Ufrw$_+LB+DxQxRRGe~YzW9WJ!#>!Fl9gI5?7!eVnS!+jMngCb@YgAp24Ml6 zWB>r(`fx+77=T3nY9K7RG9ZACmw|U0JaLmHu5BH6pQuX#heIL8eS%M_=Ri;SD9jtM zH>C?s?f62(?SwM-fDG;f`tNYp7#)DFOf7+cT!DOnQb{lX`PL*Hi0IfHgu^@pEkq{X zl5{TN*rn;*qD3G!&3Et0klqVoM3Mx^T`};|ftf@hH!$!B3|E2u+4Y(KS1*@LJW3}EYfm{!9W!w>R>G*pPK9f%5|tt zqfKLBwiFPsZW7)L^vh@&{OUkFgAkY{Sx6mAL6TT1m>m!S9Dbatl8jwxFJ$0e5lmNb zOG3x+C>3(2hZl(9He`!-6Eq=!k_L}Dpr998&SU_>^h2RA^C3&naB%mDghMD7h7r6b zT=NhV3dbFgnR~a;Rl6WN2Rut1C?B!_XALMhUJlnSiZf6P3O#~qmx7-dOgkQyEU1Gp zoq_<;ryz|^EP#V>$i+?J7AO@WK@7O^2^M#7)P{pxWdDGo0C$Qqj#CCdcRgfspa^1_ zTr!M~@{1klE8KyKBw(W1d>#t2EOC32ai7RF94zgrno`fvne`@g*sTgoe-h!f?j8@H zvUW{1!NQkLi5f;cyRj21hFiJ`93J3Q0K>=SA#WRu$u0r96P#^guo%J)n5}KWr6z2! zWT$Gt;0C5|u>lFT<(f!BYCwajlY_n7OAB)gOcr)w+JNMx#T*-)m|*Qel{_GDJ}q@z zn>pdV(ClD*&^7oub`XMg3NHjPQRD>xNi(o0DDUN2Fd#9a1-V1@3Q;saAwQRdrm7Dj zHcI=j$F*4>3u+5Kc9r07=Xx^`U}j7E`!BM%*|hr%hPc#oB?|62!IVK=gE?T?h7GL} z=pF#P2UJC%qXh{Z*Qv@?fc=c~-^kjByj)^zK=8SE3H)nwO@u=K-3)#(IaeD*2;5e7 z;t6Owx<$p-gUG$4nk&FzWr6-%K=3mza^f{O{9p`#)080y`Uu`2g+|h}Qw>f6$Xx)P z%TX@oOBlF|Bw^xsk$~whh=X=s;#9-QDC0ii2o>BrVG)%$=qeaI!GMdqPp=eEWTAIR zq|m|}(J&_&NrM#^ssdN$z>;6;q~H#JrWnNE2s|=b-8G&y@VxQc!gwKp8xHHD;PwV` z6xt#^t6Lz&`)MdQl8+D$I#hQ3kx2kS0CW2>fML@~lsUliz&J(vZ&YUl15X7{0NCOH zP9$8*6+}f^avhG|uHlf$LvWWbQez=cBH!KQUz?H=c%FJUP68&t!1e&nn2SPHDG%_ihpsUe!r(3;^bZX{{a~{Vuy7Yh38DVr zL-zGZxC@jFXVoc?KGHDfv%r=hJE&7CT>=lZR?sutr5m{C<=`J0vrv5o4y|PKnhW-HN>0ZMraggIru~V0f66oPgV$21hu|;5f zW{?3om-KiDXd!?mY}I|DQ-xej5+oFmvA~pNXS9FQ%fXu`V~Y&}JZ>R0pn=+vts*=U za>^w=5G1ZjoAY3F&R%7sQ*f!CP+z!w3ehXMAgxzysT&PM2XvDPHh!Pgl%W%0P^h5I zl{oxhX97=Z3PFJ_0ICE_%o}>h7JQ6g@dgCQ7HXO;&PEo-31p)O>lp}ru(n}eb5BTM zNFe|`7+sG|t{x1-QD+Rgs9tRaSCoVU7G9;0RuKWFmxK<;3WelqI{~LmBnaHeIP9*l z6%-@kyU;4>8$k=Ll7U?mM!5_%1I%V+UcOB}Fprc=L#`+qI4Ju)$hZUtQIO5L6ecG~B#ie8T&6@H1+g3)!@QHR zA~-$A(ZwSe?+4dkmmoZf19GXGi#r`?xB!JTUT<0O4KSC} z`kx)4g3phjDGG_aZ;^Pm>j3lHCk41WLw#aCJ?e9m9_;Ua5V}DE*EoE6GFaB=N*S_n zc*9WwSUgz_&l&5$ULd_Pq( zPspV)Fv+-f0Ep!QK~*8IRJy8;@?P+94cObDOhgN!1gOuQ6hG8QgILfWZ~}(7@C18o z0wmW=otOn#0FHN%92Z37eA!zoSk{XcR&Q^7}t636mn_SWp-ug1@l|=92kOq zEbn!yHKfX(W6o%f=wGl1=g6b5*UYMfLBN$D^^VWy2 zIDjBr&!7V`ve*}p%YdW1&L8NDC_eM@TErbBd9?Ffj_fd@vu6y`N2&P^*7;?09A(2X7B(!HyYiR@!sGMV74UX& z8f}d!0bVG?Yd>JZ@Uq;LI-rfE36f(GRgI65epFXhO^za8(Aun!%QOd%q79nyp`-2? z#TUsi(NA(ESl5Elt?nt`{rft(Z{Xy?Zrk&;%%w1?1&rE{Bq$TF4twR3(a zvaguq(n2aP-j?Has26a!7$e>b=Cja4{-}SUt`T5V*tkZ#^4HPmi9tV)W?Q!)y!ZwX zU5#v+fwhcMlIqf-^*449$CR75)CIXf-+h_f?ZRuiGv)aGFS^cIfZVWqk+#+2;Ai?m z&m#(i9ejD2ZooBp+7jzzwCwxOjWo5S9d#UeeIYhfdSCbCF)$nycv-h)ygG^&)Gda$T zU2juiZ3&qQvpCNjY|Z5aeF*EWU!b60bsHVWucZfJ+*NKhoxYZFfu6znIn9ndYlm5tDZl1=7v$-L5zCr~o;BQ}jeH@KIsbw7u zQY<#n?N}_G6H}%U&L9r6DMY_-gJ5#9&Wr+B(hWpSsf`(U6r8pTc#Y}n##h8!JNl>3 zcEChSyKM$nV7&Vk4*mg!70;yw?7o%RC8TKRh3_A4;qod@@a_g&3wMR27gDX`m*(xKHZ*Xm{n~s$=HmB?4 z{qWrqy?x&i(|Z(K#zM3{tP^16655geyY}kG^-9f+^zPg9Wb+j>tL0HzLgih!9lWjW zKSg-XzCk9SpvonLuMqy{;R*IDgco6G;k?=jnHr}$r{J;SYa%sO4dP2|*YFFe`Sp^> zvQuPxhD?KXg%}m$>3Jk;R4#U-jPuMnbY(KW2E_Mtd4XOxcwdrTS*w@49$T5XBj9W0 zqe9oS(07TRJ1gUeRn99hdj5%OZ2(K?PCmz(k09xoQ$|u}^6hah zFhx#HMbji)-HPO@4|96Sy4$k(BacPw%d2ta(g;o{=Am2XiR_dP(LrPv+$S$bW|lVm z^mBIAcfhZm{69MR-!s1<)vA*)tkTrPT!yVx%+cQHi~V}f?O0w@ z0*pDw(-Sh9R5pcuvXJT}sGxDHQHp$cgyKb$kz1-!jzKFf964=4K+u6}|LCh6x?)d$ zu3C$r$bGIVErJ5nj3T?^OS2yrOT=9y#X}BJkg2sIr-uoTkC$MM!^DrA7z_XUm$)#< z3TBf-+khq*!6Iu8N0fu<0gmT4P-Y~Oht7%0VFrr=lOt2cyM)kpyFk=$oX>4;z^>ka z+XArJG~$#6xdl^+t$W#=P|%;o#5AvZ+#MRG->~AqyZO>1nt`L~sq8vZ*CRe|_!tB8 zG4kuc)!(_gS+aQIaedM)oVuWUepR9t({7X32##3vkny85B)G*necqM@HcgyFM9SrXXV^;x{cTy3H{NIN43m}2nQ`bJ^%C9#o5an zEwINMS|NpFa(<;w?W78Mts zp@O_5VX*7`z`lcxOb~yiSLLxM@Z2+3VN20C8lx(TtjHgB)SR?_!=kHN^b&Q*N)3@4 zyr}gF=1O(O&)k=R8n>XtRi{-t2Z{m#WIjw_7oOX78)9(vgcLQDUXiXY8NoNnA2=hh z1DG$5U8)e9MfFb{611bu2@{-IVueKSQb}ZK(2!`D@cZY)c*JuFk5Uc zM5)2%ou%skX_d}eyD}KRkz^8f9;`**Ej{h&qIn@FNG>sS?BD?;3S$_<6gY9j;NWeT zDTKgK@_6e}ec?7bl(2Z2A@?-m$L&i4X-0QA^`9Hf=DU|lFZ$cy8BYr=L%YfAlbzeQ zMT6=ymynoXaeNN^a%ratXE|{YPK+0_cAs?IVhtqcQ@gZ zTAVCEcuThl(ttA8P3}CBZ?7 zg9bxJIF&+B3As2n_x5H()d9h9yeJ@x33%UL0&hw@?VZ23|xIWXS8pShB@9d-O>D%=dE0} zK_zDN4LPSdhD@rbxSAHab?B51R-I-v(t}NN1G3EagwYC}V}ttx=hek)lTnPG73!pH z-?N4+DIXXgV-H4b4X_ZVn1dS!9_GV&T1D86p0&>s zT3-^|va;lB?u*CB#Q=}#p=|#|UMVzV0@yAOuy{gUKKq5`V7}>(gzHG@CUqGw#{&b8 z(nDvTXZGFn<@p_|r#q&N2+Is*N~80{Lt%LhUr%a)tk&^rQG@slTnkqAGyOP)&)OlvtdQ=-jnamE?P}R`=RYCqc6vtq zlQ9Thos(AA|1?^1ys+;=}PGh8+dOiHMGp=BfkItDR;;uVrIBYQt79*tdJ{bbC?KUuV_R z`ZbtpqRe3Mq3a{2-~JQ)P+NN-p&VOy8TnRmwBZ&B88F!j90t=?HSSV6@d(*x%KU_4 ztrq{M;r?_u*BrGvxZx{Fed+&4J-dqk=YQ`{S~LIszgGhl_`m;qEtft0KmU8ha1>r4 z8`_LcYb%vLE1Y@cOrAFE*=%AHE%bWag$)-R3eDIBi^K)o6NPxg1irw$o#Pq{TEC#V zK{t)R7-mwsh>-@^5s~sXjq4!9YId(>!83Z3XSKvQ@#F-Wyf}eqp4`n2gPx5WVav0D z2j(refh*+a9@;NZgbz*&;!sqmh3+lZ9t`>6i9?)|<)EEJB<0)9Fv{F#xIPniBfQN7 zWBHfDSWdD)bCfp!3|2l}?zVMVGmbqI6>vL^mYW=4e+-UtxcQKCT4N0mS7t)dK$Ogw z8&5aTHqBYeTuS^pn-1N{Ou9M*T9w=aY-rRKJrOn0f{eWFZL23!ZxkqD;|mW$&Csyz zf|42M7Nx`B0ok=@v<_N@cEK^G{rD#6iK6Nk;tpqusFZLzl zT1d98oq=7L=IqSR+EUM^C643*T)hOu*}~RY8=|fv7E08yj^eTj(CWqID_R-m+uam) z4W~W@SGi%uj?J;Rm;}?|c^77mnT`cbAG^FU8is7F| zBEFE;z|OYC7r04wN^MDwxu(;Hc7aQGkuN!&4sOTt4UWvq;~R}R{gDsh2ZOx_4XGqN z`MXEyjaq>mVxW+t0*%&SbT?n({uC?$1EGz(yXBXC-?PIRI4!<}wWBSa7)rgTgDk_Z zGsggY4V-6MD#ZMe0aXe2vC?&6g*gWl2yWGps}gDBi<#MV29QyqW)# zwt)QR)6LIa(C3?9x}e|IL4OBSDRssY#T6SoKe4|!whF7A#q}If(>M_j3%8St8Pq1uam(P_{Hrl5eK?n;rhO^mxU;kWnXSi!= zp?CP{G(^lvt{{1F>WHq#-RQhw+Cz$hm6`Mn&x`6wN*g^k3j}pMb>m?+xrbq4dfMQP zub@R=pGFG^-^G*jietU**%@jm_cm9VL?|1NtI29tXsKit&%36hD-?0-i5qh{+9o93 zD-MWvL{3T8944FYfCi4T*zw$gXyD6mMb;{ihA}dD9$Y-8R)zRg<`oDOFmgj(T$CJ$ z5PI>)o|)b2o|j7Y0fGR%K2$9QLLQE4>Ki z#?W<4%wqG)3U3J8$cS{Co;T7(Mxf&saoprEt?oRYU&;EVQVtYTc|{s*NR{6mIqlox za?66HgM>CxnafT|5=Q|K#ImWcuzt*9z_a!--s@nXeS;tao;$s*)PUsb@Phl8P0hXDE)Pa;V^}~Q85}ks~3C_NR zu=F$(#8XrUg~TGN3YTCiGMBQ*jv1GMXHHz%<+(zNUwV@>CiI6q3|i3a1drsXRiSSr z2Zjtgv9#MExMOCX{=}1adhT{!VUmNNvLjG6;UVUI6#ze)02RdI$Ybo~QnakPOw~RVJX8>JuIDsjV zbFGM?YfI=8&_!OaoI7@V5X}^c0MOO28$@w^3TQ zn@m(pc_iIINp3?I$VC;=C?4|FkAruk2uu>+-u$u#`LqW4eA#Uk6Zwvy4woH^y!;gB zEz7)wZkk;XA^{W|61J}GYF}%=(!RCUQDKk zp+?4az$rRhISx2+7%(qDRD7!fk`dfM(YeSWwn2uW3G#2D3*)%ShNv#$OW9WzBk?p& zDSd~WY&ZuGi&oH$Jm9kiAr|DO4AO0W(j;?Yh(B=)-LZ9#0qK0;oL-sS1Xd}kIN6W( z`9+SQY3eB2V*4JosoMpPNx784j)olfB*0b!gdw(Q5$=r?TL*pS+dOqg80Ua`>c?do{EH#Z{Go@}b5(cYY zFdoD!xP9H44{jl>&T2_$F21A2RRJhC8qIhgFzpdN>w{^q@_pHUdC=wioCZ(0-U-Mb zxy#nf((+ldA2u^%^&NzUBUq+wWY6gr1v0;5dQF~2DTs`z!`2V(g7g2~n$SEj9Rs$g zd7RlIw1}p-bOF_Hj+aTl2a1%*7z}ZqV9g|UgB>S9b+BY*YVxNkjqQsI5kjk@Ds5gD zu4{lBEW~|<=?7LM&C)*aNk{Q-8IlAKE}W5^~MFZlJj9r*bz;ID51e|rn~`&+=j zzXklqTfl!-z{^A?eL0k&9w)p&3X82k^7JSrAt7yE_+ZG_eMXgF@H8JZAxndHYwmPc zW9NEAq{43%&&|!(f_M9L^{&ClkqfQt!d8ZzBg$Ww>e4i`!&XyU+ zoGX>ZFzQV1gB>*&+vFer5Nu9}o|J&@@ zX;`~#9J3J?-V5eh=p=bArmoIpKRw}c;>*dih$JrLhIr{5Hm;uITO-hb2clqtCnZ&0 z$92;}{^K~5EvH`Un30pqQ>m-#7RL20I&D749i=sPbIa>vHQ`8m_R)1`N~LYiDnS~x z3IAp=aYqW~PjL8(PbZ{4H=lq14JWGRiWPZb?2(H#h@r9lXW0-pGr#qWP49Rr_n`iv zu2gqMoIF_M-Tpx8VsMlt~zgW(4EEOd9e1G8xcu8Or&l3PwD)CEg}S%WXM$;7R@X&8MJYj-@C3%jxnO zokTejfuSMm+DAZPPSr2Y0&I~Ew^mcJHUfpRkAp$D&?#G_sE15&v@W(|SoxZBxos?O z<<{^=zZQdUV2lFkdgX|M`&kz+A0dr@YBh7dLEY}^jdE+48pFi=6K$V5Wsx;Q;?yat zVL6_-#nC;m<_V5rYE|(C*M`6LT0i*k4F280uNTC~w7Ax~3`C-o+1rM4nt1q_dZ~tYwx(FZ#!Ea`cF34z9q^aCeTe}ds`W1jS7F{$#-$qCWOiC$-rzN zxIs-OYiuLMN1t>=cy%t1#s#IHO@)?hFObuS|C|h+AH=ro8fPY6kTPrRxi1tkXftegUG>ILO;ea z3qv_dK-FeFm4K=ZC_6n(Cb<{c&_28Y%lha^xP(m`xnYzOH6W#GaV4dj4R?hh%J4W3 z*n(N_yNSP{;1R@7-JUptVyAiZhJPWBtLj4}F5;2ya&*KxQ{1w=E0i??Ij-`^T7(>e zty!66vV9ssN;w|g6g(2Lt2xOQqxBL@53FR@BKp`VALxrhoSZ}&ODPU`T-oB}!jT6l z(H?_sx?m&OL)UAN9MdMUl>5=4{bz?DzaebF3Dg5#C~6u9O?U_S%fgUBB9B}i#H>l8 z_HHNwj{dk--EzZLZpRjvVHJ3|S?YvXs zAM4$h#|3KAx*#LQN>?%&ALC=AG}JV-x&_Ek(!lfeGJ zO-J9;p-shx9r<416F(i`%T%9%uR5M>V)2FEke%?eY43JG$P44OU_^A(%H2qYUl(h1 z{YI*9m%w3@*SN)Whr!`TA?bBSQgs_R#(V>(jy zoDfy=q)Fy*AQfSFV?A*wYa{8N$GF()Y_zmIihLV}#1VT}&U{I1(ah(_N-^MR{ zY{K9vBV5HbHE&kTk8BI!(p=G_;j&v)7eloJhE^QMy2LYn;kiss#6=4Sa%PawC`3$O*X9-GwCx!I4ox6=o1# z7Y#r0GuclNlvL1UFEU4Yeesu53gcW@-C`DdDraNA^4_+SUfcSAB9t58UXp8Sjy=Lb z=H~>$>qUm{P^393Iqo}Ym1gmS1kK~UD4vXF*@?v^%39b-p{9BgwUF%L^35K3m>~Lm z8PBr*aA+&H5&`Tj7X;-=0xd=)_sVR3y$*`XyNIB`JlKS?)X@=f z+%Pp`NnJD$ldcE&$kZcfk+XYjfEv#`F-W+C^*aoKF*bj`!gE_92L@&h6J!)Z*eI3l ziy}*LsaoAI!bVMwXh+cr=e;RjL)He9epkLDj3bPM&Dy$C5eu1$U7SruB;DpJ6}Q~ zE_}sw@}D~S&z=0Qo&0Z|{O_1j5PDHIpP9(lMV*>GW&5A9qQj(N!?-4&626S0G|r11zJzHd9%Uk{ zAIlI7yB`>>;UODG`vKv6iOUA0*z`Nnmx0cU(_qTghYk`UW7PRQao)=16W_0&I9Y^o z%yfVW>G*bbV2&}k(WO4O1L-h=&f;R^(8iz2N_Q6m^2JpbkX;>H0UqJ89`~x(YmltF zy?A|wPJP|6&xd|U8p+*`{zTnrQ|ocQ^`{9CHvR+|JkK-TzeG8!<3{keFTI-#_B_DSjvM`y9X1_?^Y?OZ@&Te&_MKh~H)WuHyGg z{ClYaI3eRl();BI}zOb<{CFNu*a*oiA1TYnA?1r7dPk zwEa_XuF1({h=&h|I#L{b#W7kVU6aU&@D+t_a?unvI~5bnxAuoOV7cTQ}I= zf0lhYyTTiMd<&Q@3QrC`n^!M9xdO?$Xpc&}7&Z_BxPs_r=>gI@cBX9mF;_E}peMzy z1pkar;5~O-MsU`-g)Nglel3&z6hln$CSmZyX}XI0$>JtC2uy@a`K^N03!9u{JPc_R z(6jGvR&b!*)WP_rq&}6@=aTxhq<$-@-%IN6CH0Sz`sWtx7-(aZCS~n|mSZM}ea8iG z~@Zgw+Rjhqeee z?Xw%4Bga6LCQtL5uLHb8lta!?yX>}LxD5mJeV&F5C~Kd#i)?v)cmtO8i-JJRe7sA8 zc^iV29T;YkP0MgiPduT;)md@~uCj3gvgRJdD(g_%Rq$9awZ?S5@C~q5nImV>L~f9r zzC*%(R;k#PRlSQ=%VaE7xWkg-nnyThx1KB^@`1*cuQJ~xn!^p#mk|bq!C4`+vErZl z7d%*xT zLwFJ-j*k9;A!ETVl|%eR65a;!B{RLl>2@!XH;g5z5)_VlOk!vlv{@)yaz}$teZz*3 zf|3)LNvhZN3nMqMndiC5B(%W4?h`ga`AWNYiZ~?wuto@QJD)T}g{Tk=9MN^e?=Tj| z9AOKHjLJn-c6AX@&OLecOt4%hLWW=^>AwlzAL5)Y-uK71?IW}J<6Cx;S=jhiiOvqh zm`Dn+H&U#rtb69vj7g*LV`tLMp|pW3eeFGQ?EC~cX_DDP<1sIuc5HV8-=!=JXN5T$ zhQ23bF+^?GlEPQ_E#(!`IeZ=r(JR*fM)B0>ZE9k)5xlHv_+_--g1-O}@a_R#3&e!( zJ#0j<{M(ui?*tCg8LDU87FZBfEdXO zAC@14V-?>@=g&@>SZ+y2eD!i+hf?@BktZO?0W1r!Be;W&Hgy-La(8lUPHW8ZNsOy! z5acozpys@l%kdDiZ%T+mp=1`3%6NrU-tGiNEwn9&-uAQ-P8eJ*7zN~#TKtY}NQ)r-|g@)1X0&o5|}?`ZR_UjA4R9!g=l6%I;KK6GZBR_PpesvK|@rg8$w zEX5@tD4a}y7YpKOji5t1fUHTJ57mqbBTkKO6=E^TJw$0*-F6yuv4ZSAPv{ z$pXzcI_v6;OC)~MRu~ruRfY$%VlI0x`F63=EhdK4ug#a45;@FXx&^f9IdA2%4&s+8 z$VEa+91Crm66vBon8hQ6rOwfusdt$vX{1sOHNadnEng0z%9_2HWa9{s^c*QhpE2*k9k<+6&YN$XmXjw z<&nXFOL+B)g^$=eJ}_v**VU;z1~j2#z7w!QekBY)9uD(E^P-*2TG7&owS+}W{7INX zOtj2w){2%!+9fPn-nCn1Hfu#oBLou`Ez`+rJTtRdD_R=an6PM>mqWD7Y}SgFMr0-| zT4Hipzh`E%RR6BaGg0ZV+9%x0}cYlEobePnax_!(ijE_iIjP1_mS!Yw zxaYQXJWygltxY8+d_#)-WhB0sL|u&)M1B`(zjV z`B;@Sep{pKlWyVa<^4J+AJTG@hH*txvlc=U#UqW%ZT406;SE^!${0|)7Av%H)EGk- zl(oa%eFuZOgtV@$PqTJIIwMgz3o_WES!9hJ5x_Z7N$2T%Lx>4v z`B-r8$XXPU)bubDSP4GNUoYC(d`7Q;6^tGu0&ffj@d`!UWY+7;zjE^o{4|dzN2Nu$ zS#HX4M)C66JnRWIg7Z>axqLv=M?`pQsu7u@sKYlST?~eor6*|FhgCx^6ga9;PfbV4 z<@2^i$m?(=A=WP3M+`qiX%h3xh<867Tx+F$Qn=2GX&;jBh8g_R8zw)`_^e`iEvdbX(e1po~~_6S1$9LIl)W?{V;_*iv?~ zES#M0jG@IjT(VpLy7o0i&r1)Gq(+@Iq#ZQR&@m;RzUPp1?v9OH{~X+1#A_ z9nzVE{gQ`?R;6=T{Q?W_XJNj_-FejoWXq#0_|&bLfVG;RyEPNAR`b_x%>=B~{H#RP$rwDq}{lH@x+8lAd>a)i45wIY(kY>tU-(g zn9h@tr_BgRP57Yq!T)O@<&J&_&x%0IgM11s9@9~|K~h0@S#wKiFSLsW;}rAs305?j z%0^p25aeG3w%7S&ShsNEN!b=1sFtUEgE*R{OF5Qm`1z?I`JC`3S;;t~ZUxD@;b+p& zx9B(wF=|lO4i}U~x*0|(C7<>76D=c{#j&k9!+7GeK}>;yN*BK6C-vOH=Ghdzkap#+ zztcVZ2Pn1xw`bv4wYJ5U2aVW9lR+_Jc5m^c1qWvE&@+Z5Jk|3rEDRH@S!CgX5CQC*XDwudi@UzY5Rz z{Bv0O8Mg_$APmWBYrliA&UleIN9uH$kyz?VeD?($^s*7QkB6g<%=v= zMR(2d&sH{&TcS#x{MgP;Q!I}c*?wHz%Jb?4Smm?1#%xh0$95~#vF2wCVt|K!HoA=pxs#E7cW>lY|DCn-KxB8tl~w zVOay@0eTC(4)Z4NL;YxKrhks`Z(%uH=nb>P^@KO^SB;~T@c;kI&p2*k|KeCy0buq$ zWB6~QBq2RE6qfIv4)iZK{-IQuQRheYg&qHbi_&zL(XpJ(j~nG>kW6`SDi@h%H>T@D z+>6%FV%n zk}rgf#Y5nH>v<*}w;i^Paq->_md_i6IK_1{|D4g#Z<3}^yK8w}^9Ppt=GBhtj8(i0 zNcj1(Rri&d_^|`mmg4MIk19Tm;u2f1JSialq`KIjM3^N7EQ2qfUHOw5c;`tz{y*#S zN2VJ8pWo@Vfp>b{GbW5p|Gx8M3~@cJ(z*8<(-xyu$eNeI*tN#{aSqa>1Zxd@3EWm* ztI&IfB|Bd+XZkaImfI$BugBZ+O?m)wINe^C;2s0=~B5|)YJkb$o zdt55k33+C+!bPm&Tj>jXVQ+{pVq|$>ZF@%7gLUJmxOF}K^7AIL_Ia`TvrE91hxU`k z-nsxvi5!^W2Epz)kGxg1icLSb1Xw_Y32rAYHjO(#jA3J-aC{Js z37CMMxKMl&ydy(2a5ccKVPa6)Lm!qEsoNZl0$6DKq|#aQm9-!p`zZqZFL)O`uTBKt*YMaA0n7=5e>2{hFuqyX9y= zNW4OuY{`r1c+s=-9P>F_U`iK@47iA2w9$xXs)MZ*sqqjGI$ z{F9=f=d27oopN0vxnfg{>a*+T^Xep=j_`1&OX3%I^I|HNTYupH3{#a#En-97KzH;{ z=Rq$%o6isK>3BjOIEJ-kMkffz58Tsy`M%S$a=~mor;RDc+4hW0gMk2nw%l3#&FvWP z^sJ;ig~f85ND12l+e$GCE0VNoPk^`yNs0rdQRE{J0%ncR>P*%+2_T&&Xg@&e|FlYH zc`so8*bG$SxvaD6o)R@-k@C|VCzZO`M!mxO(mWl4WrF##ip>qmu4h@(7oK|d*iWUx zWgF}c)KH)5JG|tvFhqaO<(a2dI!CE!UVICgn!AM|=j7fsfap;^xw4Fk7aH&b>=mjE&<6$3kML#_9tHVl#|0jn1xaV{6| zEg%(^&;cAghi3Dxm1>TE`c2k4!#f&dVoB}0uyjG)BptU2J=x5Pf+I8n4hE+8 zccAYUhB1~vU!dwVlm9RaYETXWE_9^5=G^2bydv8{4M~^DP};S5_&*8!PI(UW;~Vvg z8>IjGtHSI7Ph#9N9JZec*E#$1&&lX|4U%>DvxFId0=WZs1HU~ksjRm-2Z7=4BB;1= zu@K_m!BqdUMmlQ75Ry)q*_b$DbR+fM!XS|qhX${HvQ79~b+Y3?Qs6AXOBeSv8~^^5 zunV3<`FBasttOL|w+WN59N)jb&nVU)#j9a*R&4fv{JxtJsdoQGu^t!^!1Vc1K^hQw z#&9dZ97sJBE zjL{T?p8H*Oi(+}~G}-G2%r@#dD#|w}Pp?lBxifCyrzsf1i+;ds4{qkd@jJ9vV#0f`3_zPwr(NK?zMou-y$ z^LhAyj>fu=ℜx(=SlJr!G7B^?JV2n|ke)@92+Tqp{HX816ib=5~tf7E5VSn_7j) zvva*4c#fn;T4V2_JK#l4mzYMGPwL_#eNoUKr*sQi%(e1?VCb^ zIKjd;Ar7T9#d7w2ao)=10QdBjoU-96wB+&&4I`y)c7qG|dB|1BRsmx{m7&_2XLTk! zCVZv^zDZpLI|@@*p>-~%yUgOdj3rcJ7U_`OMszI~TM<-<8$M?K(6QoVJ>j-XPP{Uk zBRS4p`ei2Mhc_bd&KeOyvmwkel%v-eJX>YB*U zm=$UbKHIlfI;O-LVD?)Z8Ru7}AZ?{TyaCIeO`she>BNC*u4+3Z=Vu4G>yym-QS$o= zb`8J77sp|f*HXAh9W$JsS1(h*zq}1*pS@N4^V?vy;#;+UdmH@w+u*;y4gSa5;D5Hj zAM!0jzpft64jzS(e-Nw0@htm99%w0!u1!S9IHt7!`7Kah8&BrMPj;~)#L$cG$Hoqk zJ3)}Va^})CyTAW&O*kLe<`{YT5ScsJnH{;uC6!&AFP_jW6*g^3DbewnK|_j{RgVo= zn~{3sG$YM={l#?lm0c(;ekn~IH~F|R`s|z$(S35aUv~1@)86v+W%L#8d{hCXkb2go zveZ5PlVO&z5YgX#{g4?8zQ$34f(uM?Bg(F_ETBfZ6V&vfbQ=W{F}`+zdWnY2i<$<+ zO#t;zvv-Ga7JaE;tLaqVk>U2U9%>EK!ElD02WrRN6`=OD}wx*5ZU;OnbDW0 zH6msqE2AOzDZ1UD>IaGsln02(vr)@{N+iG-GdVqP{Qr)pj+VjHGuw9wKFryN4b^Pl z+n^lPRg2YDEzm>L6T|hBduH9ik-za)jxv!w^tfh`mPtK@Pq2Y9)z@ugytpWy_v1IK zatVf_J@WXk(?(O@vRR9`RXUUvXct{5B`ty@e7BO8Y%aW~BA98wX`xFOc=a-j)_6xU z-#IdIO2v)7>H=~AhX~k_(PwrCUiEmn8sdA_xkoNJ!^M>Gl0uFa8*Ue7FGLZwuZu#r z&Sa5`*&(j#5vT5XJbQNQ2*L1hI2kFKb#O%Q9_z!M`e`SxHFNSjLtMh{>?O=I=@0hQD9zbaTAI7)0c-zg2<`|<}(Ym|fhcknaVoy%FB z$0%!Y?9Hs4BMX8yo?uKELnes)4A*2dj3-!uMU!6#GxzzOPP}91+L_x>-dvagal1w2MBDgTX+Gv3W08ej~;^6|WIL1v)xAO(VE>I`U4ILvEL zp;w4)+Ro-1UYk<^7CS3k*6cEu*Y-kxigO5!ZD3k?TD``_Om#DpQKl6?XI&qLsp}*< zNqWN4CN!8!o7``)6vzq)$<$XTW?cWkaMKgFJ~4#^UPV|A{eR zmm%fHaakC-N95mxSo3s>o!ksaNzI0PCID#;UBa^MoGTSXz5 zA9_aa542m&#U#^AtfyzV3UFuaY;G+5^|;2;U%Bk|qTM9H#|50|;q@9M>z>+S7hXQ% zta6yEFl4>r|0igGtco7QeD)0tnaO_j02r5Vz_gB>?WfCaEF%D3{T;e^=z<}mH0MvI z&E-xzSqV#%QYj&wDzVSS(`N(Bo4hYE9Bzp@<=SJi?8Cbfx1$NhBT$XqpqRx;tlZ+r z?8$MAc*7iPuR7|D(4r* zNh|Re6ESZ`JiB{zZ;?*LA9w>%4R33_e6+ylQb%w{ zU3^ofYLQxC0hOqG>GglAMO#Hb%(y`uQeUUZFf!Iur+oGDA8)p{`!KKT9B8|PRad8cKUiF$RE})NH5dqFm zeu(QeNKSjtOs*szL5GcdRt8v^)B4{v2)ZiIUQ;Q-57PO(dd7G0LeVYFzlW(o>~WS! z|AH}av1c+LYSBsA=A$W|XNMM^IE!`?0FzvjJF#oCj9r(YDm0G8e}}jEW%jZ-k|+ZI z^Cc|AP6Bq=@yi+FH5uBJNT_+b!$}f{pYCl``M^_YAHW!v^he5UcBpk=aco!4k-3)% zF}^TXKoBd(t(@IYwzeD0FBow@z75U+xwDpBGtuUwwdnw}1rnvHh;cKlLAULjiRAQQ zxkm`33yQPGMrT#J zJiA{5IsK$>T3BBCI-T=OUUpk`ebJ|VpJkIc*1OFfANS?5lj)Si+x_JqweuP~S z`YBQcm)?6{9{4pmQLlJkskv!exIdq+mM9GAM~5~hYo2r*3r(ObDIIlInH}244Lc)9 z*7s|WGFAWa{i1xx^?H?fj~y|@HCM#vE1tIq*8K1QQOJVYkWt)${$*bulLcBYl`K4g zrZT4k?4fwVQOmxBIXP*vd8 zVmjHZkK36pcf=5e94NqpTOi0u9Y=X)b1o2vRiSSa%9EI03ocm2zZ1`!>z|i5K2A@n zAR>mbwpgM#Q|GcH97MBxX0YWJPbV%};yakyfmA?tvHHe4B`1Jc3HeHsm5`;f6L*rC zA2~i^s;dZ*X@krOUVxl~D<*wba&Z*TMH{!;J>H#zqphn%b}&7|9om?lKf`Z1-&76} zN}W&j$TZ1;NT|OU8(U1&1b(nbm_K{hT&_lW*)5BqdiROEW>5YCZ8XXsDbfWqldS0D zHC4IjFt8=oU6he(*XDF94m$nue9)G2ByVZZYM5XQi5Udh(RUqnu?BC3$P_flGqCUQR4P7Z|BHy0C(N5*LTB_)7cW3J}u z5H3l^{gF$x;|Zt$bvfPRBs$4EtWjRwHD;>z{Q(bOL6=P>r1V*HAD;iO5HQXyONoH-d8rsv5ly+V`V>89cXmhn4F@@6p`4$y@# z&X&>)55~y&t_6$F-gtX)|EGBZ$e4vOn1<77mCiw!-{70C7^Q&u&1c&7ZkJ-9x-=f- zK{*qn@C}){>@V7;A9Tik~+|lm)KE^C2F6>2fp4kcS-xE(@1tu&piqGFl$w z%)Sa2kd2j&%wD8}g0Z*uU2ZRb zAgXpEsgJO;I+IU6fw>vJP!n`)AoZRQ$wVLGmPuIB`eNfGt#2%y*b2F>s{z>#pZWeh7 zYAK1!*;Bvb(=)YS->vRv`}}2ty>wayJEuuzX)(%oCR0pNaXj5UV2Xc990p_;J(PrG zzTlVbHFMP|0`l^RTW? z@`i4h(3Q6+DeY9=qD+S;PfNom<=BP`6zq(968w@2S6t{3A)o|Q#4Qe!F;?=U3&(un z8DsD#DW5O(U}d=qn>Nms^R^m5zQA!^U>oat4N}!jCrq=cT>T8G+ks@=?a_-ItrN6M zEHOXi7`vmHC0ppapW4+5JiBw;x@i~ll`0V+KP%y+LIIV|W*~qdI}JagXZgG@@-Avl z0bd4bRRl|OzD%nk%VfW~l`FHJbbFjj-MiXEbLx43A7jLCLn3a^2@00U?92m;S^rlS zP6aw9Z}Y74p?QZj3*Y~EqpV})dtBSdu?PmQ*K3e`RLgkIm*V@na;(ny0^%^ky>qTz zwNQWh4m_XIa_?l=D0f!Ny;B0S#nzKl%m;f<*=GC_$IeJ8ur`_dLVC9Ie^hRDY*!x4 zp#!*hT&5sGNvCy_6WL@rLN@C{KJ=e_|C36F0^zNZfyBbV7cWs~MXdio?R`FSQzTF` zB6}i2&bbZLS)Iv89X|-~WDyoFNp)UHK#&!WjG@DAGP%*~EQ!wo&vi=JKhd2c2}VOS zybk@E#@n`qS~zQG{iRPkKq2F>Ku~OusdO)lj@$#!VVWShN1R~Gn%bAMWot&&frET@ z5SNN=8&ef)SYGe&2{Kw-bbOXX6s8~F2InLYvKl88w~&dCM@^Db8{)&AYhdYne_9pg zpwQSCkBB^SFDL<0_(_k&e;Gi3e{=e4itOvfr5*NL?U-HSG z{nXBWZfAdOXMbyFf6put66ksOYyAEmzyDzS2>#2@nfMfmPd}eqQTH<2b7eNEqhO{g zy*4HDF}`KAgWVrZy_du6qPp;e8Ak;5yw(lR?}h)73CcKfBN9gBhDg_$eCnpQ>tN4~ zI;G=t(j>D^l&X&?RWeJFx?lknM+z=n$h3-IK-rilvu`}BGuZ}vEXbj1d+i!P2cdiE zu%;zGvWwK>d4)KrAK6Qk)RuT@=nFm?zRx=F0wU^1j^`?i){yZmsOWqmIak6m!;wqZ zCNpfI&DX8k^_b6WhiG3pTf^Sjd4{^ko%3f`dc1)9zBDq(Ijv3+WvP@FTtR)~b@nj8 z_KG1V>Q$B^0p;Z^I7`pHYY0swD&@Nq>t^xj3=q&kXMj|A zVQ@syMuR*DPa@!wFk*srCLp^%eFL_62is!~ix3OEthfKKxswID%Oh>yv=^D+75Zom zqsXS04!fP8yQWJk;b#taGBSbjx*_aKXjBCkduR+{E^=nz6o|tS(|O|H`uiRys8kAr z?pP7=&|DwU(W$p;t=xDfH6C!oQM!xqy-3TXY{wXgo#)YI)I$P-8@?QH^x0kTJNllw zk1V0pmlu{+S6*24L6zm^AuKPq$|?viE3m4d)R!?1IZtZF8?(gim?KNkzez+|j!@ts zm{qHn7^azxLLb&I9iPHBGt*&WO2rHre=24OI|gaHIV}tFDrH#D?A@b><9Z_}O){Sf z=iEwd<-sg(GFc-yr>=t&Xn`|R1H_B>VA^wd!_g9_rf(7>e8T4q$OR^cfZUFz8GWr zgMRuBJZA!*h7!it7aG+1s=;c<-EscmRjbW-j=VRp0UF4Vg?@h(bTB#F57kWkh053~lT*=Rxz>rY$x;NeSuVPwEzlsQd(iZpi7FiBHVYPUVSAwlqu&p^`bRxJH{y zb^^JG!s@H*yCbdPgU|OIjnEoCX_EOSj(6CZ;pUyKWk;p!vj8Byy5sPp{$SQaVYCo%GC!Uud|-;?8oB0vBrlj*ImC6j!<9m<~MXF z!DVk|$dZf^-6#>-cWV>`Et~JM^*qK8{d_%EPJ5Bnyl6n$O1ps!7TyfPd7s zr<>7Vq_bR60z)w&I(OnD(ukulcv{ z734!Iahb^Fn*A*5IX+YsuqAu00=6V5YgfLrrEgX^fIl^ZX~ExUXPk`ew`$jdXFCM? zrpMqHO3H^kmvwN_+_;@nFIOJ0viYW2Ga^}fK|^`(dHs9LiB6hiHtIPjrt7R(T)Lk@ z#!!yN(h*BsvK zHAoI`cZn|yM8wbzB^5nibphF?Uloj}tHos}pY@I#cueJC1F<`{oy~UDNMbiO^&Id< zO-JvlF}Lx(4N#QVJ^k~mTk6(0l40>V(5?;#+F4-5{;*Rct=bkJ7Y>sL56Hb@YKuE* zs4$cJDwMTAUS#^|CmGT!*m|CJizci-Ju9sSe8hQ1 z_#e^6AEeqq(6A2BTNW&`R8|-J65@uk%t?rl;25G(jr40a?YBUvtb+pjw8%@OWAXRD zROwGu`g4{3wMze1rGKx|f3MR2sM7zG{Y5_O=Q{ICo%z&cFhNA2PVtGJwm8gDMt}@6 zc9ESb3${y@GsN@jBaDUSwBBX=$W(RpvL7kkSqF5CvnA9qDL8C0D%)pMnhvkr(3Z4H zuHHJz^iXqFmt2`#2WK!liKXyj*lPk|2)OyCP}=YuA@u#k^&e^bGACVPh2|na=A!!m;1qe|Q6ykGyEg@{H0O|M)gITX}eIESg3y z{u-9dQvAOVg}Ug#;?TviHR}PNb_R2LJl-J)?0S+;3Cm85ZW~Q@f83Zq%gLJV2n(4+ z;?NQZ-nBrWQYsO=6jo{<48~EyzjKk%t3p1a_RU}wv*0jkOy_DBtGPCl+rh>={W3F7ouUTczc;zvVlg&irI$@C5P!IS5~&Uj`%ljle{$57Lh$Z4fmT~O0i zE=SDwfkpbx_vcOCLROIGbdaURreVimwmS~LW&I|;hhM{IqAr^y?3yz5_pQl_`up1TlD)p+IU~MF-NbiZ6ttRH1f%Q> z)RUFyLHDrn+D!5*{U+OpY#V zpn)-X&Kj1<8u1O)_eu0nefNU}h8TQx#V%abx_{cB*+oT^)C(2`)X*^1NpjxGWmB}k zq`w2s4foJcm^q672J(>Qppe6cgL}VgTHX1S5>41`taH3Nncdrsfj_*81 ztLi-9i0-M$%GP(7&K#gfkHp4P1*LS)80y0LT>S zepeu(n+%=+eQatai1w5FujAqJu^3~)$(lZ32fimRnj@|!O){s=OYOYy($>+jV-4WK zA7vujof!ZR0gFm{^6@QTw(utz{_0P1R5m`Jm(qT|^ioS^+e7QPT=^I6Y}WEV?6~wk zS|{hOHPV_rE~#wUGe~m8ℜx1A@yu23lXGv)sp65FsC9$!0Adg)vO6j~bWQc>FTB zOK0Qe5e}0*nCred`h4C8qCsX)SCwYm;Q1D%VEJ(ew>khnd%P*%+OrWoii*`0^l>l(;sKPC%)Je*{+KKwGAL_N5=+i2l{T_0NfMz9f zana6}T61E~aIA&EY2TKf3!g4zqoa$7KIDocKB0V$I@n(;;Z60{)Z*lJaF4nNXv1{W zw`;SxdwXUEpZCHJN|AHa9H+Y?BH??!+{>KN$)3Ulm9SYE@DCAQvgW#hh!Vr%9OF2y z5(ZdDG&?n2F#{GovJY>-@&G<-${L-rk8c69g@;W{1G4gvOKX$hrmt`WXI__hQ#|lM zTN^5URJn+QM>!b=;44(-gsS8DQRCJZtOiA+egiPW%Cjclm^W5H(_}E4$HS(k><5o= zu*2n!rUN==MV%seOA?rH$cn(vUX#aC#j%xFEQZG4*>5CCkCEXGDc9 zk-jC3z%u-$%6mClj;|Qo=QQsHt*l-oMsiHC=R`=X<2}!58Sg9<{`T9q#kMCFTlO12 z&jFoewFz+wtp2yj2ixg#>@h_}GXxZ|{5R#aWWH zpmEBbndC-{ZN`$B6gQNHxfQAK#u9@Eh9V*6UhGiW{4z%8wrBtIvE~aPtlwgeVw7Pc zXmcJeYy1J)h%JDqpAfrMLpby~b_g!qJ?pq@u|EVm%(Omp7dlu? z2Sho(q8dg8JBs7Md89>8VZ|1$L0xkVprvG?1bFBHvSQ}K4ez$?bcN84-<+|QUlm({ zEx#(QW6dR-wFB?GGFhak;D+bSk7?sq1M_(&wh~&GjO%&UIJ7U3_EEbp1~uft1R5G= z;Zg)b*+y?3`c+`CX*WtTpVw#3q0nWlYVwJrDsQ7u?8vO(Pduz3>fb%Zt#A`?i6#+R z{1aJb%5XF{=^8wieZ;Dyld!WPl>>wIPr%W_6S}`g-56%7(1@JKtQwKoj82NkY?jV) zSJSY!aW#$B^m=Q5HE-RXSYTlV)eKHyCt&eudUxQRj==5_G!iHKWg$`zu$7C%xrb?ImSanYt1Q~!c;j&uw=8=!Qy$QIBf(dcp23J z5v8^!Gy^PyQ8{PO2ET7W9}D^kd>7YAll9#K-=9=CjT z`vp!BrZvEP{nZ_?6I&gCSsqvY3$1TMmiQ6)BI$Ph3OOS+m{&YpYO_mU$UWmH+o}1r2 z7Pk}J)DQ<8si`~2Lc8h$vXdiFTgDM?S2+{fo>dJo@=cAU2ess>afG$4w4;n(BsgeE zXQy0`4>!WR>D?1q(wLfa@HeLBx&>kv^pgmT(O-7*Sx=sZZlIFF#NYOvC?(Se!4|cB z>LE2)2W3}syNY`V_@YmKdRo$Yya&B<^jIknfD%azmB$9Kdf8D{TYgswn{8Z3WZbxY zCCy3X%`a8@Qwh@6^(k&SWzVZlZF~$34Q)xV3_E z`yuPF5=4$rlAONE;q&p!NVjz&r3H=BSQ9C20n4m7zZr(-o%@H>?FqVhW^DP$WaVB8 z4vnfru!9?21VFYvPfXDlA^}V;KJvMNK*jOa3Tq;ut~U%HeDz#5hBt=NM;jxm{b-F# zoPY*h^mR&n0Q8E7&BI*vxHc*G2R+Y*l47)mgte|ziOP`t@&8(3Mx7Net^b8bk5E9= z*65M=T2v(;i$7YC0J0Wd9AR3>+ON0*W|KH5B~ZtWVSS*&*K3gMk9ZE^E=xyafQx5j z6Z$<{gK`agd<%Gkj9D$N-zb!$@9F4=wGyI`aPoS)^-i<2^+Yn+BFFfl^xG*U`=5VN zmi_$g`*nQa|Mk5JIYPbncb}A%7)>*q8fi@NX{&dDl(k>UVL9BZ_4+={W(K48e6ohO z)?*e@xA|nVsdtrQtDn`B(4?NTRzZ%k`Pg-znf~|c9h&AjB#rm&2V@OK&^#c4YL)|U z=Av6l)8>1=QJ62#3~{}Z5Ba~#OLS}0`R_k0YcZnr;R4KeX+B-mLWR_6R^578zDYBc zYjylZ)`u8R&-(54ozPAtvc&k3nAUJ+Pul%;;OW4bn>u;)oK|%chHpQ!LmAcjtSCZC z;5Nk(&%JDfrw@AzL{qNVhJ(S$tPgM4JX6Mb*E3yj+!Pt@f8NUFqv!)2D^t-sX_8rb zqPGduIR*M|C@(jEQ-l?&07rO*@^wc+~KFn|5?F3@nFlQvWsPp3y?73~KFq$eh6 zWRD{Fg3(F-jI1Wzo2+KkMiz*nbXxV5@0t{r^_jr)R^JKD=CxT$HV?|iZ?3FpOsu%! zF2dO8#x=dN&+`O3!4{Q!!R(w2aJ~3=-pXamU7?gPQ6C5qA>>j7A0A@~q%(rl>s8`0 zSRom=0RLwk7~r&(KCE5`%zEs;{#zEpbW{Bc11KO=qRoiMLvi# z{qLzeQ28YY{&&2wyo_Zxt_EyhU)nUn(iyRgaU+=(52SGlnQLAp4~)H!y1cXn_KbyW zUErz!Zn7n_-C-HMfiK$GtmPr*YRx5!!3$obfSyq9Zg?EJvSu%z=rQEqP=<*f;c za@zw@-r5hx-X~undyHDiRIn$fb|mi~2AOt_#EXQVblInJ91^|DWj2l?YiS%5?T+W^5~V4T@3WV4L#MkKt|VzVG-JaMJ7wc_HD5;5H$qC7 z%frOye>AgdI%|V-0uDxB^rgY-?-sw*nNR&v@`%>v^Q@P79D+;+O^)y=zqE3nE_oL- z=?7&Vib#m5yXeAQ(dEat!P$yL!G-8w-ICw`H-o!V0-{kG8yvF>#eOopf+2Yr0w`r>SLg*3@ckkA88%?*q8(E}iQBCuTpAr!>1<{;k6C65;d1`2y zI4r#?zj`66N-0gMbQh=DcaQKAo(^R*%iS1JJ6ay9QnZ%ONuP)ILh19+-!4vu9h8<} z`p#y1zUFZ}gbS2Mp{Yt{M@No{G{<)@6_{-ip0{$@sMN6qRO+-=K9&Qn2<Q-wpkr)V{&VWde-qFm~FD-)2eO4yjtseI~a{o zKEyS-lxlYut6R=bFzSQF?7rAo?_0+GtAdA8(Dt=@VE0iRUi*#-q1Cj)*{K*{i1Y^& zL^~v(W(t+JD@{cf)OdPaQn{4~829|LXn8sluP?so-cYhQLo?VKclwMnV>jR@Fg|Yg z1-cULg5PmfG*UE;aJ1wGu03Xz?J5R4hv#`Kmybhr5G8;X{%X#UV1c2h7a9UA*c_d| zI;X>E3%6gKy#!gXogNkTBdbq$TBWlCcznE_ylfwrR4JQ}6fcZBVOO>dqxt=WNWYoN zS{7Anfg}$kbHp_Umoze2!$NH}Kv=l#TFpj45x@p7QK>XW#SAi6AMD~%klkYC-&9E8 zf4Br6gabSjHFC5y;BAiQQn`pJ`Ol_`Ym~oH=YPD8TOqnf(zm+$?^d<%J@BK~Lc8{j zC;jAw-yO-1Uao`ft>#huy+>c>`aq>fz5&v$YZsn=U9Y^pls*+_QZ9rEIYY}Gsq7hc z=Qd}4LLh3>Y3!MtUt6VMd-!&X8Q+==hA1&%qc5KXB`%1%+d@tY19%h5li`TS#1qu9 z&03^`YhHvFKy3NkyFb1S&Ik8WZCzsM$KoQ%a#?5J*s1L3C6e2$FDgZ7U2&3>fNUjB zry;0WfUuzr$eQ?e@B$x0E0=Y)d?_EsijHYJN~2@MD0g5McX(-=-()7+{^<8)L2`29 z0t=u|yd#%Z7wv3z!kwvF@nE8#pvGw4`SNKyvVP;Eem%}a>2f=~Kpe$yDcA(tSd1_M z=D*|{1Q_vj4AH~j&Zm6~hl>_M!1p~myHqH_k?wfpR-``+rh zzwH2(+NKKQT%?>>qrqFC%R-hr!I-U&(NS+h`hu`!vc|sUofP}g$ZDgGEm&ACf_N^3 zJA8V3?wMp4x~P{oLWhVtgMM5_^p*eA(}?J6zEq=qPpg3j@<%zv6NjItZ2feFTVZKC zXlX1J=b|ip$5?XVw=fn2LB2V7FT`&po$t7Z1Tc=5lO~y^J6br>rVA5?J7`U*d1#h; zjgw1q=S{9m4Qc?n!C;EOh`DD{hwxTW9@4QY@6A277-<;^n?p)88Wcf*^^?>~oQ9-*;FPM^o{!KHZDV>CE25Fc@R_u6pA z?8O?+SnE9-wxE!_h8I|4>;1x1^EbWhTiD9WXrei!t{-scdd|n;{y5mvBsD~m+p*rCSF;SE^!+=@u%Q`m~I*q+sPuree^ zS9RC*d^WELh26|jMQ-mW2F~bb>w6+Q=`|V*6rZX6BWYuKyDYDBFb~Aej{l9ARW!Xhp?hRRXRoT)5*b*kb*!$r) zkL!vKoTF9s)U%T82;(E_WiI;xw~9p#28xI(GOD|z3^(JqV^ad&G{rJHj|vX1fOw2B*-txlTwaS1{kC~t9bL>x!1 z>CB~FybczAhL&40>-Qa0&JQy^x~Yi#=(nz?Go`Lq-y=s=e|Cp>7^3Rn$tU-!nsDx0 zxvaBqP$nN;RcwGIsvYmMqa%Q*{)z^_3SvAthY~ljH zx_cj--!?wD_RZrXYTY^ks%^b?Yyh^g^?uda;!mtE9^AB3B`zH|gz4NsK92V7;}f0B z-6uM8`F1`bIvd0JAjsDIHM|&FI%{HTqvgg~Z!tM8+S#nN=inj6i6>1mOJm7mOa()4 zhy+_bMlS0_4->q1MGs15>8`h7wodGmw6G7if3k`9($+VqDBM=7$~4OASM^%$6*krd z*LL1rw6i(DI1A)d)4#@5Q?LDbJko6anPHOh1g`~?w4}3dR2c8aj`m@ks$|)|bza*N zpP!}NwyEvOqY7$(UIkdaoV0R;a>6dbK)(6>@qQ~gc=oVs35}KL3p}yBtT*(H;SFsv zy}sQSRzH@p*Y-E}G37$_23nxLE$VChF!u1u1B3Vm9t|U#vvzF{k{03g0lxviG-K?P zeEM$5=kJ#M+LZj%eomQ*90$gg*h?h)qt0||*c9U%!K$~`Ds+(piC@+vvprl4E7kPE z#VF}4hZABjpJxJIR=KQ`qqMJ;V`%LIOuMXIexb`wK6^S0cw8h{j$vADUI@0JU+(bQ zSnk@E^r|B93|^6Vt$I091LjCuHF7?5%IAF4Cw`XeQ)Rh-Hor%5wsqR%%QW|EzF#ci zi>T2#m|+wkiGZoB6MpA`I01&tWg;hQ*8vU6^rAjKx zqOEGE+A{d+|>xY=Ir63oy}SZNJ}k!hRaSq>($S- z!Pd`hjlO;^1FxT3y+{3ANp$MxnlW6WI@Nfzh1&HRL2u4fbH-m+E!&5D%(=}>ZkP{M z?S$pK*JBk1T93i7*W69shlU?9!s|DQP&ImqQre6kiI%>D4>WvKw?`fGnuCjZ&1{Y} zo}yvJQ|b{0K7qI5m&7M5ovpXr}^rK6rUjenV~_nq4wPM+l8*SPN`pMC7&`Didi z;J1Vrij?g$<1@1aEKH2zFbaBw6zLBS*Da4Ijj2eV?Dz#C9bB**#&p@q=i`tpH1#y! zS6x8XJXzpb#+-tp&xj!P)6Fku9nf#wM4zy_eW-5ni*`19t7_>kuWHp8xOw2M@a@Z{ zvldeao8o-t>cyNSd83B8bBe}>#FY?B#Wldy8!#}0nW=YlD_emb2Or*Q7DVSBPIh4O z>(lhi(69IdY2|Vjicl=86`@!HO3iS!L*NZqp@H85d7*W_<uM>k?qr@kNeOFwe25qgRh^?i^qo%UySCPz|wK&VoBkbosVQRzXCJ?4L zYmjVMo>q^y%#Nd_Wp+H9P0O3xRa4%)b@4QHMA9{NY67pk8|%Bg8|i#bc{d%?WxUE{ zjpA}VaEi-(-42dX-pfz%@?M=oJzG1ksnlw-o{9(GJnf4I-vs37%J_Bam+{wEKvM(s zy{SPa```e_mRcu(8~wWhuYZqgQ?;xi*-G&kr7R*3>K-H9(^*bD>*w2*V#qtvRORg} z_L_2@eAwhP`A1FG=P#^^{SjwxjmMdR&S^1jUyIY?rM9_FthBYyb`7Kr;!z)J{B+04 z7~)YT@(oYZP_bH1{Q~ndjC^Q%vQr2nMs%>q>l@)HceRjIg&s00G8->LPF8!c-wGSc zW!%Z+UTi!_3+4}aWM20 zv%6@s@869uQ$$Y$qd=TNmbCk4+FW3$KH8L_#K=wCd9su#@tc<}SM7YMGj@BWZ{^1^ zdLvUzK)KYVm3D{T750F5c`?8jmq)W*Q8G8O*_3`*@vS^Mgm|5)fOai&c$8XxPpcYd zouGEVyY>(JwF9yK*!u;HwowErvvyKGQeU|6R+a2rQCm1kx*)3>ui#Z_AFojIRw>4| zYTh))Rzd0q2iQ7^2iG908slEoZ_LS~LAGF4Ip#157-r021F&i__*Lu8xiY-ddOECn zd9Cuc<+TdLD#j$Oa2H#D=aO%akxJIQj4=ULtrx@bp5jYIzg8i>Z#K$#icY-`cN-B1 z{Z->*8ascS*d(T3`Kk7U?Xaz6^=~hap{uXGNXTK|MuBwunSyWpf~mw#y!t9lgav#- z6!_3Bg1+^-e_JbveUcTh7HC>Vqw5;x7<82U`+7;IKb(J*!3|f9p6h>A@Pb|?7L|iJ zkoIL}kU67@nK{J!I+X@kIiX6KN%JJJjqcTKK6pHcUju%8^Lge@K+?*g(W>iy}p zTF7K8w^qkds;tvOsmf7o=ulRv(V^l{JJ6i0(?)Y}G9r_8yMpl_QqnmV^tlClY(ytS zF%qP0f^`x=Y%V%2t1A~pIJ65p%Mg*Nv_Zm45hBwnmt7U(hC6v;l{d<=ZTyC^@HRN` zSXR*+l+|^8Xg66=Z^Nrg3FxSEf6w!h`$%r^jL$L3A@%A^4rD*vF6;hFx6JuIg7s_v zV^T!Yz55j{E&?0knXk%ZkJb1^%2)2B%^_WEgDQwmJnq^K8hh^?K-8_GRoqWj2pMG~ z0JV;MofFKg$j%Y$2ur`?{*SH@3ts! zg!iCzF2w!)$G3p_jCH<6bhqBBdd`2Xby*c=*MIwdB|pSDgoL0+Qz<%ycg*7VdOZDO zHGeIBuRWXnZ=+Mi&G5?a@{teLkKZis6LrYq>c-@!L*QqrP-Z3Auy`#I2Cm^>^$(T0);DXvff-U+oqivhqUgCIZu4*!E>WT#)WREgOooHq z5pMt<^X+P%zSmJ8DiRC(npt;g%<*Abi}tjK9p5upH4U zn;iO2b{`mF>;$7MIM!eNXt~WZZ&yR}7N%d_6sG}GI$u{_!o1vf_+e<#;=)#{`DvpX*LY+f3~JEAZ-A)gbr)S>c!*zNO|$Z4A#vy zFwgJz>!5tcox8i`7rnIk&E;-2-FgdupzwWcDd820E)dCVDBqfZ3^6&a(pi4sFvmE~ z>P*&<8LG~xcuj<=ZGhoj>!56Y)h+_+vM8fVBr&|tjLIi6aQ#Hfjnyhh6s;oZL zL8%Pau~#y}qWdN1CqvWHK5kQ4E1{|EU$)6RbL_ZumQ1i7I6h`$vd7{EJ8$LklZnlQ z3awdLO-4AARB%r1)%ojLoyq!##qA@p-|ikS+S#lHdWqwQn*rwpzGQKkKDohahL?~L z0mta|8YEl##dn7bA;0*P%Cd-jBl?YS0{h4|EDj(OxoeoL*w056gaVD=JbusRO8*%@ zd9tP{(VjP!;8==W+OO~cs6VGQcoT<K&zMO?uqwJ5xv;+ z-upSoU`b&l2q8_k=hx3UnR%)zFQ~u3t*or&)~zKg*HSTwbXefxwXvZFLZl4wDj|4T zQTRXqMV=Z!cbW!L+jc=HZA+#9LoN`C{^eHjKYyLAX5a5di&bta=e1?ivcsUZ9d*q+ zz3D&yDpPHChRSQ$-69-J&ljB*4OZT>(_+qirA0@|EhZQQ_YZ42jPk|)cD_O&g8RpV zuP?9$CEKH9ULS+Ho2hqxEPlk%dGmN^jhW?n$F z?3;LCWN`=l$g?}z*5OCKO{%>kUUZwy?yQp*9w>W;6vHyPg%?mz@}U1<3YJMB4o!z* zvKQ~5@#PfkGzcqyxzo&<)8hQF8?3HD^^3lVX};?xE6?0#x9~j(=hhhN@}zR(CS*-) z=9k+bVau0<%`EwnNYgCwzc{}V|EryF2xVwN3n4#WJb}A!?)Sdq2H1L6qyY1B8&vue z?qR$?Z9*9PIPzd*4H=6blylkG-H3FGwSX}7?%AI#4frcZ07fH;zQQ;S?x>&@0PTWl zN~zX~obG^le3`=-oUc3taYSWkvWn0ZFcsQlDcZ3Mv7+yG0ac<0ElackasuAEadko6 z^g4a*EI_+u=A;VJopoRtU4GU{3$JgYnYims+JrD%cw;x+;z9Vz5Hn2phZeBQ?<6P9 zv+|)v27M~L5DcU0qjGteUV~2y1`hZ^xSpF6ASjv%3aSmp#Nb^acD>E7Kb|g!fsov`5| z+aqE}fi1Zi=Oo|l0t}zW&BOg>Lq`JUZ-Qhg^gDLtxY5(3!*jGr_ih(ZZ`;k(o@FJm zZCa!)XRO(~W83V4RMi0o${ZdXmnY?!CtA|R=82XMDF+AW+I`gGp~+c)=XR3~5r6$W zYGwTN`*Gd{sEVT|gWu?^lNMg9N8smWt4EN@gMo~EZf1z|Q{?q2icho*uahgW0oM4(wO3x(E@E z35OB|?wc3~)6J;@dmjTRLU* zhBqTvWhqeK)606X*aH^{^UtlbLzsiZrW4GF4Sm=RR;!o0vb_t3JZ*x^J87O(R3W{B zvc%lb4k3(i2ZY<@@_UIj1VRC19vp;LYQTH~IZZ*IK=!0MexT-HpFe_(oCcwY89@lZ zWebfK2hh*dJ%-GkJxMR}Y6nd9?R^0ob-94U`#9EuSb%9-0DK!b>!ek_7K{~sUJ!Kv zMU6vmNd@7Xfb3j~MX+^Q&@y>wGunEZQYsZ5tw?x;N2^w*aQrm;4}?MU6}DvFL2nlU z39n6rz`h8=gT?jl|N3PV7w)oWoOc0g7CtXPA|iOF-etpkK5pGlCh=!foFGb1f-=E$ z2C4Lb@Q%-mpguN)*{M3;gBP2Zmj}50;-6~m2fND%`#res1P|_zS50GBY&P)e%IjrO zd%~gt6-0k;)Pw^$+oVdJ?itTfz;>jYJWmJ%RzK($G_dJU)~8)df?j-sMaQzli1RsuTwWEB89?B+42ZGO&D8lB|HGY$J2m}NV(LM(D zAc2nT*5fglS?8!p+gN&lB1iB6Juo6?gEQ&~q9*W!Nnx5;^IZ{eUHf3zD8`C&s>*45 z`*==OH30Q#XbqJ4?@ljEQdmb3X-WIZStl(#Xu)hur;t~eNt+PHv4Ex)NVJPBh;YY} z9Ml)Q+y+So)q6z59eiaB_@TnW;rSg%m2XYxX`U*KsAL0v^-3nc&ihyL{KHJUxmMq# z3uQ$hgmMqOhN01vyu91@JoMepCLx@ogO?+FgxGNq#D41z!FTn^XNLyV_PG|*0Rk&i zCk&75+%WYDLpbZC%cxhlK6j&kA&{`E@((9XRsQiQWai9AIgK;C6x{Sv|v6#-LoZC(X0oMS8p#X1x|3m8;UcvZ-`?eNzwo z5K<315*Sy14!UTXQfen$%GeR@2<;JlDCfYSGf$dll^zNfbX`sgtH0rn9v@{Q_9#tl zu(s{~_HGwYC9qN=qK8Q(?E@WmVDO7Ut!pzeH6ccIdy`}up&=7}>3J|QDggW)hs;|Z zH24M(@k35W<)fbM`nJwJMxCEKQCtqNxPBybO>43CQ`Enbim!5XA ze083?K{YiDz~pJXgF=mLa}6zeFtGQXZ1`>NX7~2`Zqc4bqR6fxl)!4Qn((yWlWZU#L;)L6H5Fu95#ppvjKZP zxnYD>A%cJ})#^Uut&_<$(t~o2am|OnsOBblz6FWn1!_%(s*B}mCmm>rVYd8+Aq1O} zafGWq?DMJ#wgQ1#h%zne$;|>mK-H(}+7o*MUhk~ndRlm(4cj_2!kBw6AW0W+*#Gzp zXGBd(CBZlX-EnQ&u`$MAB|pGz9h_t6Rt8eug7ny2cIqRjY;L$teKY{o?Yx@Euzl8f zH7!KA6MdJkUG$+;MIMGl>1Yd50 zc4HeYm$3~b?Bi4sJC3+94aH`!60eS!HcgI`eh6c-1ykMqCn}VH#YQjjaKlj(v1cHx z111-nI4(~rdfo#+CT(zgJ68Wviq3SN#$Gps5kY3!M24M7X^g zWg5;f$OfSHkYBTXkYm0W2#iOB>o!&^4x%#_Xh4!x7bYlmY0UHIW%cXiv}YxEe|kMj zeLU-;1UdWh6}ZYlkPPm(eOlMoBe@6RC(h<>FW&Ejsv^enP?>1^avLOUH~cFaX?Cf( zGV~041>YuC2j5_?;QNI!*PnI;?|o^TE7W_RK&pL`Yx0fZ-7cU?Fz88m-SVbV>k5g2 z`NCXILp-Xi4o^)T9iB=H4=T8J!Ellj3=(DNzTg?bA%%P%yesPl^2@Wz;5I@S2LiVd zJt`OcQ-b`(agC~pg26)>dl6pbei@evwmbPeGS`!)q(q~!d}~K-l_N?LQhfvn;xRW*^jHto-6*Z(a z+VeujzpIZb9l4w+N1p3*2J_ltaX_ArETcD6WZdHUG>=|7&op}J2^ET7`a@ zCn4pA9c|EVINIQ&%9mW&XLxA}fxEfn*helNmCG2_ri8?W4w=S!xS_8=DEq_zA2{r9 z>2iGW1U7KU_cXsS7q51}R4;CIH@F%znmQNW;0D@r*b}KTj)0;J-0tG-@}z?M2EkB6 zx&#Gwg&q2nxzez>ZZHYq4T5hr{BnobYLGtrY(2tK5@(&X@cID<=Y9S%X%oU2=u5aDJ*9+W(HF2;Y*vrhJwee~ z^o156%o2qcs+D-dQA!TWlo;s*j^EHn)BQ6jI6N>z3^2GaKX;PhpO}AA&QS$vxs9G66Q{s4UdLYs9(`}G_ zSE!?btP)e|G$&Qx0P$=v8O(GQ$4irXgwq%b!NjrM=gpTD_ZMWU#OXI_6RI>Kr~9t! zhi%$*jg)seJPCJuQrW$)vzIT3&hCF&0*UMfTjyqxRL2d%zCq$5$1@yZ2nfGHFN`+gikjlEoPkhy)*uGN+8)*Nyv;418qYfp0Oe|358<4cH}(tPut*;C(&8MI*LKjPg+wlZ*n)1fH~wFtIO1RWgPl&J6xx zA(^U$MFDAa#?Dg?;kMCymkA`2*s}KBp)Twzi)US^1dLrf$m{mAt@1|`83`MK=o{i( zckMvbrOFufPbPT%03;#>gxG3GyR=-_+W(U>kIq6Do{yuyDci&w?Kw5z#6@fJUXeAXiC<*wDL6EG- zA{k`fX-N`uEtz*(CDfC?E9^iq`sHROJ$H|HXK#2M8uAX}+d<8e;nKJUM1GkK9{`X9 zU~V@#@cIm;eK&ozm2=(&s18s^1(VP zX`(Qp%6bBV$50=YTZ*(x7NKXM21CdmeqojR!?(xPP0uzi(qOY-qTS$%kBy0kJ`c)A zgv6{H-aaO&S^rjn!^`ZhXJ$DTcBMM)Hu|&9@1)83!{&auIxx0ApIqC5PkMvuFzIfw z#KC*gVZ5<-MfDj2IG>2nWkR)-n@Zz+zT8wAnD8gqjg#glC)m4PK$VzwGi^G&-w9Qj ztze-(<+g%_=9x$%O-M>yKGd_5@H?3-ZY!Z(91Wl2_`cNv#q&k&@?5VOe6@=$h;ZRt zropwBy4(f{`y^#~zpr+{gnw{1f4B$V_33$U_5wFfvyp7YwQrtx0V;}^sdf;fG|ZPV zQJ*iiAi^EDIWEk<+y)6d)od#_)tuIH@$bc6kT0C7t<1hr3+FBe{}HwO?J<{HxA9J` z8$>-V9>>^vT*9x~ip#}3E~0H7CPeCOGeJ_lvDK%3*+G!{m6#*xZFx|owIYBY)Q^@9>|n0e9n8vP$(Z1;WXy))lKSeq zc12RPCrpzKx0oibC@nWtxNNvZ zOXhe;i&2(=NkE$m|MjM{M1IHATFr|cp zphT=qGr#QpJ}Y8ueWJ%OqDnVB-`(s}nVTa%(1US+rzutXP@(>!&>dLPt6tTSzu1D5 z!X-y<6iT7xd!Kg!D(ZR=MRMe~G@J83+QoHOj>=9jk>KtT;j&0lMbmw2Gfwh|JmAN= zz5PX-ojBqoaRs({dqg@B%aEge4$P;~iF)D?Jzg{Yz=IP&4P z3+vSMv#OkN+6Bheq5GU|uV3jG*zOve0}^%D;E^oe+|Zb%XTMM(`|_=4%s_;roFN3s zJuC|C5p(n&Ow$cQombccJ$``e^O{kaH4@$aXY{aZc$OCQp+!k`)g~@l5aHdPf7lJy z=+MS6#f%%wR|vyHffa*JyL`4=r^{!%P*pi_+L>B**Y}UploHOcf#QWvb5d9%DTGL> zHlS4!IN=Z1q)(fdrv)jET&;W8EOAU=(5D&y#^XvmR9hci6 z^#&A4<4yItnNkC(ci0D-rj$yF<>AQ|03;aFv4(flfJ7G6f?$bWTYjfp^@bR21Hp zpzs6c#yth`)07fUjs6*5;>0;+iL-R>Fbg}7GFp+iOEEu~8zr7-5bscP3(Kjwd_#-o z5uxd^BB-+ETln~S^#YNT%}h-PcW8r{nYfxffC2hUq72JhWrko(!Xb>3=ZPG+n-{#~ zZ5X{eYrPG#m(d_XK0B+E7DQkd+}QWr1yqStla+|?xm74r58LH7-ydL+H%{dYlu&gT zqSGH+)CR7uUGB>FUi|cWmP!xty}$CaI=P; zQ28Wga_=sXA+uP_Xgg0Lxqi(H@rogfL|kTyEu&ckKXubsKX3}&5_F^=I9;d;yLW*g eTHL!pB!n?edxC9Hm)js=4;v{SF3^Ab+kXMp96-td literal 0 HcmV?d00001 diff --git a/addons/dashboard/dist/assets/materialdesignicons-webfont-80bb28b3.woff b/addons/dashboard/dist/assets/materialdesignicons-webfont-80bb28b3.woff new file mode 100644 index 0000000000000000000000000000000000000000..425a06d2ccb6bffe1c4c3619f21e7dd47a23cf0f GIT binary patch literal 576748 zcmeFX`(GR9nLg|@aeN?-?icCBf zAjUQ}*v2w*NJ1P=&3YQQ>(;cgTN$uWy55SJbpy$`T~?7tYN|=;taT_tkqm=0@38ML z@8|vDegA>4KG$4GH`mN(o@cK6er|pAz{b~Jn>T;nym?RkF*I+P^mldJlmGoJz5Rc` z%J#ppciz1DPf2l|bbK$TJ-5NQKW~Q=+b4Z~RXV3+a@^A`N_$0z^l`$_G|`gu<+0p`u~jLciGsN%r+ zm-e0RKKhpFt+)R2!)p6(7kTKKSa{P(~8CjWQG zeg6*(t!V%0@!`S|K|5T3^;Y8R#{QiIUlBFu|DyHhON0k;H_+7* z%OO07t?T0!0cxON6@3Y++H3h|oWQ!fx#xfzK*1XN7f@A+;92@Z=+<7#8~9D^P!A^q#({z7>EA-PN-T%*$Jn7hZV8|T z23FB_=)_*je!L5N)XhB)IDvsR^sk^3C69&Q7W z1O~Eb7ZfS6RO15nsE?ZuWCGS_=oV5I%tw_Hm1WJixk&ZikNSjr}v;iQVhw z)&Tv0bq#$JI#Lq*0X~l1>*ZDewSaXs-39sg#=eg`v3ot-dLRl|v*;nnUlKclC$W2d z+(IB5n0|(CgNpaYUdKDIrfzOE&<9LEN8f;oOJZ;0V^~u!w+yHTrk|xdq2ax;H}HO} zsfSw&1c2%1X(u#X5<84Xv8FyQ1JDE0tLP4>d2eh#-iOV0b6J2Jm|jEoL(L_zgLnX& zT}!)(*^t&ep>v` zSHb@uuazkZcF?bbSIaFL{5r9&h5Hy7Q55W=>%gl9OCcU4y3cUu0kxuFI}L$V<(3^d zL3E$vJ^*eg3U<>F*^ajpht6?0(5V>E(C>g-4VD7@0deRocNsXK7}!C-0p2RN z?8I*phg!H#fN{mZF8Y1&mcdelKPDcX;aUN$VqiO637#mo#3!?gg}is@~18CYB%+m3e-P3JfQ=u=E<=o+xt z5G%mPh^Dh#J5a5d-a#J#hs$F-@qVJIh3f(Wis@Z63=SJ&MR=5$J;SvDdd2j1+6Xq6 z$MW$$V)h)@3Ah#0JLy`m*$~s=h;kan1H|lEt^+_6)A@8Ym~P?pP`aISL+SFE7MG0J z!XaR~lM}%-v~YUdIE$sD$lt_G8S;Xc=--1Yt1M69CHT6_+?PO`ykIl^4Y<;1S%fR` zb(c5_D3cewOn(Jlt+Fh~kK*gvx&H=6F>Z>M$1BcE&k{t=K-|xfsOPR;E5{BGW;O^=rZ?TfKxuO zg${!!jFt>shd;W+jRLTIU=z)Pkt$0j-iSYH=lnoYK9EPJz=$z656{30FLJ*JGUe8n z==2YwlDz*Zz#hcnW9}tjFZ>5vquram}&&FpjawC9V zKE0711DmU2%kXM^_A)mPxaHGZ=qQ-Ba{;K?7|X!*`0OQa3_#@5nYai{=i#DidJ`Q0 z(^WAkAfK+rMdh@51y`+qTsGr&-jk^a-C=2xT zVsI;Hk>ksVL+81F1+tU_yXjnTD`eS-8;C=#oCD}o4iwUBz+0dt7vDr2y1@M#a6mb* zhu#U^f-GC`W5l60ZV(t(4iwWXz!RWFiLWIdo##FSw90`3dJA|0vTVW+5|3KB-vLhL zKoPwjjDQw3t|J~@;BEo1azIBHff2}(hc^to^Nv2aB! zyg3&BaV)$p7CsaU7skR(vG9UecyBDMh=qR`3qKnR|8p$7BNn#A!cWJ-<+1R~vG9*# zVOcEvgIIV^EZh(aFNuX;i-lFO@Vl|_^Re*vW8qz~@TpjMWh`733vZ2uPsG9-V&NmP zaB(c$91G8ngz%!cVgi+vG5zQ@XlEH{aAQKEL<52Z;6GE$HMDl;lr_TQ7mkWg%`%cC9$wF z7Cssaua1TH$HMus@X1(sSuAXbg*U~*$712NvGBoISQiV|a=rlVjMC0*%9%|&`zU80 z?X0Gp2wE!wfpqC`s;f!(ut~5t2|Z0hOOuc}ov4n55zg1A`A4|FFSbzjWY?1%&i7N! z_ZH{-3+H==^P!yYpE%!_oNpWF`!(nL3FrF<=X;9tUF3Wq=c72^OPufLobNr(_jk_s z0_Xdf^Zg6w`)|&-oAce}e5X0z6VA7Y^PT5>`#9f!Na@GCd>rR{j`MxM`M$^b z{>1q-obL|jtLJ=i&bOTNUEzEcobQjEZ!_onCFlDw=L>PZb)2u8^Bv-Rk2qf;=ex)G znmFGq=UedP7_p=p?atdbnx&d(N2f~Z=^t`Ub(Y~p1=VD3YT^Mp^$tC4;hLD?$Nl(AaHJ!8!FD?k+-L<8oPSu1DojOiWpW>PtEyD{70$6u+-zcn_7(%BG z)6*xoCfG8ZQ4k=yqot!s)r5df+34wJt_iU;&nwWQ-P!v_GgT99=u`1e-dVjP`1Mo+)b z%{Ew?7Z$j&?!dm$TGfOTojOQQALnLIS(-Bn+(dVvbTq1(NTO4X^t6qeZMLN66(DH0 ze&1-eYN7+3Dx;^5aG=gB+KucR)vG4@&?zH5UBk_uw4@go zh+mQ=7M zolziW7KnKTVs?Q@EEyGNri*`ic1phF(>cnWXu+m_PftI?HG!7m=L)hv>CS8s-A6CJ zO|#!n>^C&KiegvMEJm>y&Av{tuhZ;T6#Es;Zl~DoH2WKh{SD35QEVN}PEzb7%`T_&>+NVC77*k91BnPSZ}%Tp{*voBKYi!^(UVz1Hcn-u#d z&3Y-;OS1(OTR^h|6gxn(R*JRK>@>wr)9hl3T}-nVDE0!)mQrjf&HjO6|3I_36q`%4 zKcm>6(d;`E`wq>1OR?Y5>>7$)L$e=J?1wb_2F1QXvwx=8Khx|^irq=GzoppU((L;b z`##NnN3q}0>wbN`R#a7bn7Zm#i&2FLCEj0Tpiv1PM9;evjG#jSaFwL%~ z*!48qL$N(HdzfMm(=1D|EX@{CY!S`6DAq-@Hj1^;Y>Hx2G`o;u7t(AC#kSCF3B{Js z?0t&8PqRvjRnqKrioH&=M=ACw%?2qpNVBUcb~Vis6id+Teu~{svkxiuAeL%CDD0UOg-lW)@G<%F3dqgWr!>L^x6vqKa+M6-<)+eotl#R@c=L9rP$+eWc% zG+RcoWi&fNu_H9ArdT!2-k{hUG+RTlH8eXxu@f|#MX^~l+exvVG<$$z576v5#g5ag zmSVLu>!esG&B7E5(`=GrlQf%2v6(d6L9rb)You5s&5lv*7|rHUY#z<_Q*1xY)>3RO z%|{;30snxmZbj4qcnX)X6t%|A|1zkly9EZRcAB`92i!zCD8LcsS?_&yHb z$Kd+}tVCfY4l6NONx;`p_&N?>$KdM(d=!O`;_y)nK1#qr6b|BW5QBpRyc&g9 zUQNIR3KKX?U@$?z`%!p54)4d{{RI3Fg&*SZLkxaM!1*YgkHh&GoKL{FQTR3v-^SqE z1bh;OPvY=N3_eM~Qz$%z!&4YMMZn8Yco_~a!{B8E+>XNSINXlG?F4KU zycUJm;_zAwUQ57TDBOj^T^QU&zz0$IAPyhI;DZG0Lt!5d`!Lu?z&aGx;jj*abp$+w z!b3Pbguz1u+=#-BINXTAjRY*9uz0 z1nfj%Ck{I?*h#=J3d1-IV=zp>Nfb`va1w))1e}S&nK+z@!I=cyfx;a)+=0Oz1Z+fM zBMuue*hs)*C_IM4V;DR}z z6oaD#oQ=ZSIGl~a*#z8&!hJa0hrxXWT#drjI9!dv)dU)wTty-B?yT__sV%4gw+UKp>T~_T%t9GkZyTPh0wrb~FwQ{R=l~udls$FW;ZnSD& zv}y~i+Qn9Fu2s9ns@-YTuCQviShee|+9IoVp;fE2YFAse`Bv>Rt9FxByVk1JS+yBf zt=g*1vTC(fZKhS5XVqp~wR)>_p4FLSbv|QtZnHX{vN~U~I$y9lcUzr{tWLn{e9r3B zSe?tQ&dpZmI;*qL>Re!TDy+_DtfB>>F0ndQR_F6p=Ps*rrPaCB z>fB&;7F(V3txmbsxytI?ZgnoTIyYLKFIt@iR_Ee$@%KuOUvmG~v7i464Ez^ayOwco z;eA)*$Bi?ma%?($xCac3lC@cka})2g$HP@Ki5y!aKI{SmezG>3apv*9j(FHOvogn) zfe*KUf!~wSXBhY;UUwzFzG~)bj;#zIz77VyBBL)b@Md0jHNM_BQ$v&Va?W=3;tHTdvtFyJMl>lk<|uj`2S7-zQT*s}29b};YXz=v;wfj^T`83S+OhpxsC8)r`B*tGa?7Z~`0j6To6oA@DnoUNLP>}n(5848S&v8VBjGceUV9S<{PiZ zi;Ocza%_3{a3>geKt|Uv$(Q*?d)!qu&J^d^vhm># zFfc+!S2M|tyl^FMtC|_ku~p;4{a|36jIL#pTX^AWJY|okdg3)MHG09pcxrrAfRn<&7$0o{cVy;b8+7RZIK(+ph49%C?c+MRCbdKJdqrc42 zGjoKJwJ$MR4ZpTEzQQoms7~Tj5J|JsfX0$u`uGV;^VdgWX z?IAJzA{e+r)~Xn7KHqgA{zduByGq+_Vz>Ydbd$AP8LgJ@YKwninE9L1Hbo3C1_S5F zS~=s~#veQ%-%>vFywcWA4CjIYoUGl*I5qsi*7z2~%tuPw17dg$7`RN<<}%J5{J{(H zUzN{%UunBZ4DSR3pOCd%80RkjU|alGhME6T+8z_bE5JZ2S*v86+j-yl`0?_YT}oRQ zF}wu~d_>l6Vw^j9Uu*ohVdi&An~xY?4+gH1wQ9zh&-*UK!{sxll(r#axCjjNlC^n^ zQ_K6>;$g!~LTM9-;e}w}EE&yV;BCC_e0+WR%u1!LjTlyf0gQ~k#K0O}*BW1Mn7OL7 zjS$1D!N4Ul3NY{vUUwnhQ$ACrwA~Sw>t~c%-ROhk;7NMc!b7W&VQ?!Qf z{iNPlGI%4GeTYSPD7l<$e2pnu&G%lbAKN=vlgr-5B3>xDj%=)Ain93LuKKZ(!HHaU z3X4ob$pvKNtBmUz{>aDmd3y)5a@lq)@&_pSEZGP#uIKn8pVa4-40h(S53tC$Q1WTA zv6OK=%OAN`-@kY8KrVX|i~Jc%%E-n_#`QdZq^rKaWN)kU_YT6j><|`V zq2va#(a5;6cz;)Yv}7=u%L-T|1tsT`!YhpJ8NT@A`s}@fnYnBm7P${4SCIn9*q-By zKdH|y8SKbqN3ci`N-iaZeT?l{zW7>w-`+uEE_(xuJcN=jl0pSzd!8@us_!cq9Lr@V zu*ejYTucgk8QUs;_~ZKOy@PqVY$q0Z043LuLOEkw!w-K_UtKcTpUaM8k;hPS1u4A7 z*jDqy*Xjd%2WxX#Cl>KR$@QdA#n`g=;ja2X$zU{>O=1xNN-iXYSDDl^eDlZk`n`kM zxoig(8G(|kNdaO~&+*Nl)ay$I`*PVaEHVKlmytp#lX{kKzEXDK` zcP<;iB5nypBnl-nNui8Mt>)9$>czc-;;VxqG$@u1ij{*%uJi>V5`dD~q@X7SHz^>b zV3hqm{aF3v%#y*j_2=j4gE_h~N8NLDZjSIdx?G=GIoKv=@8gkgz~n#3#zjn#g5Pkd zzN2EWOwL}%BVU2Zzmtv2nIaXxp}oGNa&Sb>2Jy%wn0!JuE?|n}eDB42W5u9a&JuWp z29q4w_%u_L%lBTcH&zbbkh2f*2oEOXWaAR1NXhqJsvoNutdX;~@rV~phRDX1Op%)J zZLc4z9GsA|Q+Q+=OwN*x^BGqTf8=6)Ud3RRoNdP=e*lwzB^#GAE`UFBxjwIQuv5-H zz$4#+$r#zVm~koiBbVy?D+Uk9*_(Le&tUR@$i@|nOT`~)ukWuM9GA0?@yK^za)xYN z$hhRZ|6+Y@#h_NscHxmPz~tY^#$}8vm-k<;udN((%2^*C34_T5*_gq&l)V2^eY9c_ zma{{6gawlkvN4l!sd;~UeYA2gDQ5*dk^+-yQkcisa`@tl_1P7JnR2!bkK6~7-;lyn zj1Az6FV|;R4tB`d5j+wElar*dh_Na7;!E{?6@x}OdjpR=1d}`|EN5&gzPP=Eh#+B*mC*d%k|ZjgZ*-L9FIH(li!iT z62_+FhcDF!Dh6xitP_v;z+{*dRx&mnjKQk696(xmCCY8;ks+p9YNvT)V zi{IUDd}Seff5qN8Dxag*=BR3pUY#Roj!FmHRP22;@-~$G3E6m>DO$j9!0J2p4VJ0c z>uBV4DES`QSkDwK;WrTV9i@XKDmI8l>Y(IlvayLNn$P#5^~QaJY86YM5eQ0}$VLlO zw3zS3>y4#@H&pCHG-8I5^<-lMQ?!up#p=iQ4c4gG+i2uXDEVWu@f1^(!S@pNW2J)= zDt78Gdf)vo45$94)J+jRi>c9brW(29_BQXE=R=#zPd%^HwG%zL)F^JM+32{f@xIv_ z+H5%Wky7`7=vhOJUN+U_I&SaqzIh?^%kop-SL$vOJv*to)7)F{M0U`u8Zi|LXCc8s@deYz0>P$4gJ_~>UT<=kLX!X zjb1g?s2#WSz1|CZ(#VLiDVrMlYEr0LRH4-hvCE?($Pr zO5F{jC!ZRL}S zZj9*3qDI?I6Saou-LRj;WpA>DEw_;nc8Fhe%NC0z^+XHQHgCP&=mb zz0(&$vn`=nA~f3`n(YeBmY-@?>fA(+o*G3Y(4!(X+Nb&T)VMJ`e?@4y{;4^7X^vi) zquq0~XpVq6dTx$1-WOX#%MGVmmAd;x&njy4qNxUOT zsb;eyf0y^gw$K&BDUVVYBzl%oqvuUE3P=8S@3r%xitm}*{jZ(M4j&J}^-K5fgHiDZ8mcxXYI6iF zp6a5~Uzo(_9mpoH+a3y3C89Y3jHiaEG;0z!IFLNAyCW1ZCbDycOgz;_rSF@>RSxkb zFLEWMuS)dg2u3`0gGxU%i7z_D&0gecNN-G3=LmUts*_4TFo|m%;>%vd9&%SD0y#o0 zo^n!YpGjQr5Vv}fj*#1!(B}x*c&dX+kC?>O4soMbyb?mH67C$K8c+38>2Z^|)*){3 zidRFTJtX#o5Mu(#5%hSfk4lf3#4LxH=@5+$G0!2^I>b%hIaO6c%n?MnAm$39Qb3r` z)7AR^49&0g|DH2PKb@nu=IAeT^voQgbM#Mh^yM6Fo1?cxYDt*U<>~ZLeynSawV_>32A>vb5O~@{XUgzy=35`LC359Ty zNLi`$Jrh#w(CfX`XF_>kB1<7GBT}VQ`d>}Rc87bnxB6Tt4@z_@1Ot(Jhe|t4NP)v$ z=&e2*>IV}C6v8GV^#+yxHxshc;ojq|ZVB~6iE)K+j7Ystr3Xz&k;7f=4V($pf(flc zSWBcTsq|+iB;VmK@CMF>YN3QvAsi%9$Eo!1Oo-0mF7gJ>hN55sRtP#Gb(l)uG9g-r zTjve5grZO)sSp~8l#NOcn-IOjt@rBBgtEazrb5UdQYBRSQH5(^zj zvDbYjR1GHb6han}GEnKCnZz9qq`>Pw7pjI5{R-g#kvc}De`^x=IFKT*`)nuxCTbOe zmPj3>(!Vl^yBvtl>uw1JphQ$5z(lH%O1n&Au>;Y2kuxDZn8;QLnMA6LN?$jL+a2O= zFLExVhZ21X!APWPsPt`+8%$Iygghd3fJ)yqi8~$Q9xu`oazlxLLZ~HD zFqIxMiA4^v*ejk1Az(tU5VDDskxJh%iTMt(z$=~$AyC4t5UPn(EtPhfM4dy_Iz-qZ z7J0?9ArVX<3PDe#s;RVI0-bhKX*ZqjH_fSZUa=)4wuQvbkk}Ctp@jmHA~$^bdHQ0@ z|B{pn7hArXqlXfe%*9IPVkL92lDXLZx!8R?^$nH&hY4Ba&?~&zmqHyCi88rx9Z!8l zrT=b1mOJz+Z+3gAqcSlf7lL?dl1e`@AqyOOxwr3P$XJn3%LM{Y(Nvlx!%6Z zA!B9YhFo}vr+6wIHz7+LdZoATQfRCqQ6m>_<0&td4w;aZ4!zpj*B%^DopRv;p8A$b$4tm#hg;#T zz7*=ONF0z0H}TY;sr3JtkQENM%3IwY>aR?U%Z0~y>N_euV?q`>+;VT=VyLzvp_L0= zcmNaV?dPCWI1N`Gq-pLQU*Uialtb!DPoE{x-;$5i?|leolzD824Wp+H5VRxUX4 zl#fb>P2x%iqV~GmLxIXfR4yd(lt86ZCUL$)%<&=@L;8wDwp{4IQzKM5XcCt?M8Jz& z4(TfseR5$8PfbwiDU-O^Au7DcrI5QKQ7sqx@zgk#erys~I7F2fX%D$869Ksp#ZyTt zEttfG4pHtEFNTncgkCQ6;i)kyJz)};ImBGAcsYbrCfsr%fTyBVIv{~gCrx68LsWXj zOChl$fk>5Is_%dxDg;p_xbc*vikjvYf^3Ia?GW`2QN1E0ewW|y%0fXYb@>vN&(Ujh zR5eGh&XJTJ$`z$^R5?c_b7V-gDTVt)Y892fXhHyoeup>vLa3uWQKl5G6RGV~`ePHa z*`eR%&29^I7!o5&AxNZ_Qt9(1MB&hH_x7C+8OsxDr9cp=ja2#r6Y{b{zth{-8ZsIZ zH72??Py-JW-<*ZWE~jD&1{DwmS4$Z(mzz%#fH+3R6UCF_k`N zLgWtjHgEO$P+oZ=ODVJysaz_Jn~;qTx5iuD8p<;yI+el$BDID}Up67R4)+dk^@UJ> zdE$UlxJjgTQt3}j$QFltm$$kt)Ne?PD}~2IY6X>UH6coed%HJqK2%$t&?<#4BDIA| ze`G>7IovzFf!0v1A>mXCJ|eZAN?$c0YKJ@D8@LdPmM37PFhrz^sC2Ih$#b~1-auO@ zYDgrNf!X$2Vh#D`_8qymQ zeM(`BNM%v!c9WRv5O;Wy3n6!TqFO2R6Dci~?lOs69O5o7(iU24X4^|E>e6C{e&xUmGe9>-A z6-5VjAGPNv-t?u~XlXr4mC;gGrbcM#-co8>YQ<7FXlX%8)zDH}rY30V=2BU-)QhD$ zX=z1D9iXMWOpVjh-KDg&)QqK^w6r9pU|LGdRFY0*zIRt&xCi<9H|dMNklz0AN3uxA z$E~e`^0S{wA$~5@Fc&&2h2ABl(6zbHyB6em3-Wynvde;;vLGuh$f5x~{wTXN(xFO@ zpu$l)RmY`ITaX0-q)ta@ zL#28zv|*C#g)&qq!-Xj*bcsp1PaFv<5q4Jy>& zLJcN0JHiAim3(0WlZ-E9p+dGisV|QpS00JG{l~Wdbv5}dL4LcJv8?j%-2T`7j&%yFi))n!gCV}?j$F5M0Tn49`E&99UM|1lBE z+^M^`fh0_+4BG%>p`XhtE~gu;H3@L0j% zJ+iKt*{wGpI-}VN%CZ#pWrU{`4E`%wx1G7W+kEJpW-BD?RM-uK=N&NUAnOX4yM^XM zXEnD#*#U)p6XAIS4E`Hgx0AWM$9$+oa|@Drcn*WXTV$P< zxvMijYSBa>SyEwdBs?}SI84^*nY(&(;Tg>aP?o8%XAqteF!(7sxs5r!+gx}~vjLKI zDC}i~=O`Hb4LP}+IbCQjJgeyiWk!WvO?dW$!C#P*8s_vKb77077m|%B>@|evBp4hZ zCkvU=#pZiwG|lHV%^zr*uV|XPHO=QV&A8?WD9cmW`y{CBS%k*`25Tfh!3i)p0R?|X zPVQiyEM}gRGEZ`uC+{#%)-X?`r@xbV@;-CAzWFcKw%F^P}vU&*9B zG=4}HRoL}%yFS;hSK9SzyF1732JCKy-L0~_<#u2wajU~x#^6i7?foz?4sN*=GsN2J(KX1fx+wK z$D2fj#D?7R@ju z3n=VT)=T4+@?9FKl<8+$J>MvIWdG>BbvxIruwVb|vrp^(q>+sN$w#f8*B^fM&UuA=5>&)4D)v5 zz}yYW)R>1R>z+1u6PnRd*@VhIg?g+|u!*c|X70{2A3`--_sOzU_IA`$3I%^i*3~h0 z7nu*?nysa>PL=%u>UjqWTF5#pb9aIH5T?1cPj*0MzlnO@fPz0F>)vPXE-@b>G`C7+ z<0|`O)bl>aFim8i3|85PP|sl~c!I2hnY$V0M}#I)Dod*D0_w3r!Dg}!VNTC87owUC z`(&9admHL0fr4+7lRsfjFESV6nhmA04wZcb^&EwQb>!q}=JWz{A*SiwCo`(-H&D-h zC}<`p>zUI_%!P!ew^TN!vQMC%lTgq~PBt;8r2_nvdG;mq>UUA(D+Mb$X*#zE<;|EAyqQuRT%=w5GhzGLrP?b zL57sc5Ti_dMJ9qWai2`AkVRGYBrE#9+!;Xd$!f{RX!t$RFY_{LK3|>C)y;5YLxcdgr@)uKE>?D zHCGk(>rn6oX7@*$t4ezi3NB)HW11?3oq&SRF}u~~?sm;+rEEfOpTa%UU~rbKo6p?M zF(109*;*mXlH1#H&mX|xU&*?q%w52I=(1*OrL0qKe}H?w1%olNZZUILVLo(8bE`sj zKyJT@d;Sat|A(ww!Q54u54CGZQyRh&e5_Bo{T!mo?3wXpU6K^5phD3Ay$@rM*vW@5DV1z+jdHDA)-G zJE5Rd{iLTq4hF}e;J4)D)6A0<%#%vybgucHbd7dR^V+})&CHLO#ua>OC7;^LyFQ8^ zDQj>`Fg75sG$3F@zuKim{n?m5oA9rNqLpOwU8Zpv@A@$Af32Zb?SfIi4vHQolWH<~ zgG|RSn{+4I{IxU^_uwAYrU=h z?fH`I-Pa`1ANNV3YjdJylIYzz(U0duJ@L_38_G~WM#9hW>nj^ZQ2%d8cpbmq*q}!J zmq_?ozNez$2I?<>qK8QM1f$F3dphHzWepQ**D}<<7>e#C;kTKgr})Dk#J9fIkfnAR zP=78I{bv$3GegVy!ym=BmNj&$U7Jw<8Yo&$!tXFcPxFUAjNf{#;egt84E67XqCX(v zJwXerNr5I^x+gI4W2i2Aoc(eIP+F=l85&wdm? zQP$v8yL703Jru1X;TmRW8P9$gkG$3Zt6hz#zX*yRA>mqPD3fP9@;v32uI@B&{9#%t9h)kN8#;5tB z597VBH5k>d8q}W;Mc*WoKV}+N@-bb5@A@EqcIFLD4tJq~rx3nfyN)AX)of`fnwYop1c>r*P;`lAU{6Tm8Rz$b6|gwMX)N zm9ZrH-!H!R_w_oZB&wMc{c%ooK@#1b6YY{jqg4$PIW8p_1sUDt_*IqbC>Z@0M%uf0 zRqa|0M)xtgOYtg|Yd;w6CgH7&PRsYS#YYVd6H3<<;a?0!&yld48QR7lJ|Ev&-jJnq zwG;kaFp87#MrKIEA8w6rH8gZ8T@MKV8Zdg9gmamp9sJ=7@mu8$2b8XxgnuU({e*oMV90Y+O%Sjh}+=h^e|6XgwBrK^kZZvmqpk?S4mjS4CV9eg?OaA0am((2!9b6?IqznW=PAkZSjbqA*pl;gnuCzJxeBY zn8s~<(fRm>@`g;MtBvqW(}0o5mzYKkU(_1kU})%2x<&}UG!K`^B)~N8;EOKAd&?V) zO4kj-pASZ_k;%&uLS|$OCj)2h-D5?gdQn|Z8CKZgZkrB*H z<96P4KHl6KZ~iFWd^O(O8$VLskf(H2=eVi?SGB@bt#Vb%UDdg+YAL98brSwfU{oss zihf8YUuJ|YjBuQ3+{wG7YqZ6iJL5+T4gE@2K!Vz(&vEGi*SJ*r!DxpBC~7B@DyA`? zcU_44%NuHyE+^sFfzci^xs?%CGs1pG$Y+F;jI^Uc+QlR7ToaBl!dgZ+$Ot+{Xk?_# z4AKT3Y15ie!!&AnS6e)NA)c026GKB(=|Uu^U1E+)1YDxRC8}IW!k+;~TgarG5waPf zni2Gju#LB!j~ACWWGh`#S&$}$Ad}K`Xn0#|yx7ptr*w@G{wy%sP9}31VFz!!5FajY zs8+iA3BNSNdKYhNiw_$b0!mku@MlWaK4P8zwAEj?|En)`Cw?T^xw51rdeMh#7j0Km192Ye_?AuImBj{}zfqO~R$j(6jvEYw=rq8xH)8FP<&Z zpV-L^?=e@m-06qD9#@2q5sCLfVUV;HF~h~?z?nO>;MZD3crB5r1clE?TRt;fU=EzS zQwx3VRD=%_iQ}N~JJP0OhKtOBvv;E4*RUe2BNB%};TCDrGQ&D^pyf^!`Z}oyHxdaO zC=8P}Ju|E~>(AWD2EWc!gfoal2`GF@rnWK7yUqG@ce0_cI~3tEB5@QHenX~qGtGr& z{n4Ux=Q-o`X#7R&XAX9}*bFtZd<_>cH4)Vbr z77jaeWtmsm!vOC%10!mr5GE~Z&$cDLLKKwn1{VZA)8&kgI9VZA!+ z&I!ALuv-y!tHN%1*qs}8E5mMe7|97EKp0Vk5mgu_5{;lxEddf-WU81+Yne36q%)bc zkxAz<=~|{)Z${4C(Su)SE5f2YEarwqWjK>al!3x^GPRva?>0-5qKCfjQ-qB~LYj!% zWU7Ek7n+f?ciiCD)rxQ)kvISfH_4PV1AENU*xk_A0Y$i$NJ!%yB2&^xi_PMh*2FhE zlhT*rZ2g)Q;oyzWKDEtiGe+{=09Iy2KVY-GB>L)#3C8gkP_zW+pL{)w__qS}9=uzwj}y zM%$QBURgvH3lg8~iY9g#L5Qf5Ly>Eewx-r_ujGE3O23wG{Wmhg^ zC`#7*F1VMxc7+c^ zNvDkrN;;O3o=I`QP#iKStk(PHIO+u)6~FOIr^qw?XXxj3pTj`|r#)y7flan!pw>NbwbfupA5s17*lFphe2G@1i- z$cj2tM78GJPM~6Ph=!J=QrQ(14292n-xf!uRRI=MOg53W0$#E! zv}@P4-ltu4(C7g>DkhgmyV7ad720mV;C|hBf*?tjwj0=wt3vses{{<1#YGv9ww*+IwPXI|A?tl!T$Jr- z+bPs^0WsK=R4={q6-!yM-e<=}S&p`Gqo(tTt0tto(ksna$~WtM5nPnRXd54Dx{$bP zO4^oQ*~e0-*86lgs?lilNt9t8QPhOQA-$4-rF2>EbKaX#ss{OTB5USm9||-Dsn*znJBQlI4bn%R8LNpBsc(3&N}nVb+H*%S)JbAaOB+QBsW>ugbufDX%zO?<`w05j;3{6Cvow>Zjhx`d9%tjMt=?JsNgjsRI ztRd7B)0cLL73RnkPR9tRX9%Zbh0`;I9WcTU8Nv=&VTVlNVT|x_hVU>}csNs71tY97 zitZYoktUG63FK1*@Isecz8Y2Hg4F3?8hJ632^8X>;e<=GO`lmwvA$A%%ZQO-V zlI+8uhhRSf>I9;h6DVj2q{#A66i3L)|!L`{Tv0wJD3h^G;v9zr~d5G4>I7eZ7= zh%5+E0U-(^#B&Id0U^pDL|%jlAVhYAsEiOr5TXG>q(g|}2$2&Zsv$&XgeZ>?1rXv{ zgm@ewN+ZNm2vG|mvLQqzgeZ&<^${XHLX<>^+z3$vA+jPwMT97X5OonEBSMr#h0% zXgvgd6hTWMXf6b;j-Xi(v;u+_M9}9DGy{T`LD0Mi8bHwO2wE9Iiy&wN1Wku*auUeT zAh@R&pPmVpiWM4I1D;lZrx_5H9Joibu7;qQkxc;txfX&Kdhx@VU~UGOiv_*J3fruJ zsHDI>b!3wk880CCb1%Mzb~qDs#emba!!%2@VGcy41n$w!tA(K1kWE^!G(&J51cyTK zb}xQ46EqYnjHaE@0r+MFP!j|9XlIl}(A)@G13|MQXhj4qgrId1G$VqRMbLc6CO3gx z0l~w)_|i5?!~uff`>E_Z8pt6n!*s-Jc4YBA)6aj(TDf##ryW*7kcpveR#fJJYOF^w-=w=hj;D8yY}Hf_u@bI;kA45+I{%? zUVMEY{%$Y+ZXbTT7r)(y=kWWoIU~9J-!&Ll<@ZGsqW04Ny&N>+f98K7hbD476CHh_`^pkxmy83Rhz zfRZ_&1OiH?fRZhsWC^kO>fE0|Z$BLH0n9F%V=81epUtAP{5<1la;XmOzjL zuwn$PSOF_$z=|EPVgjt#04o;2iaoGm46IlKE9Sro2&|X_E4ILjC9vWE2pa*yR)DY> zAZ!N+n*hQ#fUpH1Y!3(<1H#sTusI+M0>Y+%uq_~L2?#p?#YRA}6;Nyj6x#vCCP1+b zP;3Dd+XKbMK(RGYYz`EIK(Q%MYzq`y0>uu1rx6ep7q};fY^o8+vk**+0*4Hck2bJi zsYIax2zc57o+dz4eBj<0Wb-V6yaB=G5bO=Xe7$&;4A4uWu+0vLdK|c?fNatV=n@3a zLGURE*6zgzXMnD>fd!{&BAO-IFa@F#0{3W1s)V40kxg1<-G^X~Uc6`q_&F2Q#(;(r zh0%7vH!I+q8Sstv!UXtc1AMapzS#rcjDc^~z&CS%O7mDA+0-DA7a&-r7w?q;w$rA8 z0F~yY60)gFAa6skXfNI{1B{Ud1KlnYKW;2xMjg*_uF>Cy-GDGOcu6B9Lio za*sehP9U2T$p2S2iQ4&cjuz)xOeU!Dxo1?S|0rr_=jZv zq5Oa7pX$;-1pGtAG_>$f#i=aXMmTn;N?v4D+c_U0e;1TUo$~n45*s{ z>S96NOt2XPHfMm%Sg<)0jKqME8DJz9jLZc0G2ng%xQ_+*GeJfS$d~~#VnN1CFaZN5 zWPk}+Fd-AP#DJC=pd}Wx%mjNdU{40vg9UpsL0Jqan*qvVLD@{O0s~fLfE8GyI*Xu>Bb&6ljY0^{ zhTw}3Tu)0GT8qg9KhwGlO==5x(uO4vl^(cffNate$O#a<1;K0(oK8y_TE1j}+E`FK z6RgL8^%-D27Oc+%?_$8a8Q@(kXeeG7Z39qg9-l=vSqbD^2(F> zCL@8I4#B0gWT8#X1h+9@jCkPzE$3{3ZQC@>-;Fd{iHq98CLJ}@FDFd{85q9iclVPFI{ zFd`{1B0n(VabQGtU_@$QL~&q5Y+yuYU_?q_L}6e=LSRI0U^f`M;Z` z{N#A>0v>-2&O*_W#@qcLO8bW@Xh`56viOIRXvpWE>e4^t@(-o{L;qA~|Dj`Sh4?2@ zg%()wSsz{vg53zH(}-qCV1W?;N)^gr!OT9qJOmd(um=QBLa-hLw?OcH2>uJfMAlMy(Nf3Mvf}0>X0)qD-m;r+0A=m%_#Fg`L-11wz6QZF5X=d|SO`83!6Oi?2ElJ2_!b2JfnZvLO@d%+2=0Sm zc?hn8U=#$CAy@!{^C9>W1S1f9R&(yxAw5ICs!Dj#%U0Gr$%Ttz?(J8`BVI^l+YFCB zb62Q)E(%w>1Vo5@^KSP2Q1WI0`v%et%lLEER9!vE^sm(;HSgM=-i2|;x7KZb>|8#2 zQ(B7k)`OE=0vR3PRh0pAVP%h;lQ-K2ihZ^T%khsn42JX<4qxChn!a)X-<y*t7bI3Rq(d?hx&{<(5DoW1(#MwsVrH|gN zqL(kPwYn+_qFR((&&)&enOLj163B}GAWBmty}xPf-aHtTIt#oaQD%uP)>E7%nY)4Q$v$fMHbKfCoZ2ZZ!nObzQ1+T zPnI#LWnkh%j3=v?t8K66`Yz?(CHtF2Q?ws9#ANa1xa1x?8!8yU&e)Ruhp$%tqwx|+ zQurpr>qnA`Nevawmpn6FpbW|P9~K$JiwK0<5#HvPT3+i+UTQHqr|9eQy;iX*1OJY$ zHY7jDXIHB63~}c{OFz%Zch$W2XI!$%H&VK$e%$-6?>?(?(c@ZQZ_(ySN}--GP!a7yZxr8Zz9QpbtaSZTu2z~N-{b4_1iqm6XI;mW z-R1v?Ol3-jp4w;M$Dk9MaXtgknwn*=t;*gGoTh01y zMmp=%9g9;}QJvo}AMw)WJNoiRKUWPvXTkEQPPvNrb>C|5a8dRGTh#0D=qmS%a(P}E zrH_f2G^5bJ^0DeeFpiN^+5EE0^U52alEr@zZwKX=q%|zNAt9PBd~}jyO1F-A+_Lq4 zJus$RB*$a#(ZFrL;9CEZ0Z+e^y7mFN0SoEEcZzt&s558h8+h4O}Wb->*{YVvjsIuFO_<Nwn4*&Kt$~{>n@kquKx9<)+e-9d_9sWK}>Wb+_kHAx>|fx z#s3Y|cvkWK(Kko#ldiOj`DiLhvP9STY-O~TmU+aR^mMn)n)y!%99@6*&SxSaRGiFq zH_q9{uiiaKCr0g(g0Osc^gM(1qW&nztgXY(s?=d7XH^H}ozp)MdIG|6;GIRc2g zvv!<{Uv@lQW?;`X%Cr*d7t~}#dQ5Z?XdBburz1yD&#P6VP-=_YKZsX>kuu@ngd*>o z59x7oDeoB`EByU@>4NjG-xyPwPgj{8>HE8GlVh0Weaq6`XYxMLN$3$u#&6UWj=!9a z0`%)0*DMB{q7U9Sn7Mb)%*S4nzvFD8&Qi5e?LM@${h0brAXp-UeWy)4``J`yr$h#UcQ1q2RBulv)PWWzrHv4QiJx`iR%K;p!?rczzc;k>&a(X&ir|V*fRUf zr*?gkE5W%(l^o?%cjuwzM94)|CFGAjaiFH}M_=|dB5K(68US;UpRx#@rhTVoN%)Gu#wlE6Y%K5E z!`E3Qo+>g?%EjjsFPIelVqbV-n4?GD_;CG-=#%nxSWDOd_I&It6ulYWd!OLK8h7-3 z%rA|PgG!fVf8Jq>`44`sQ8Fu^8J+UUxOcf*Ur_#{V8`0aSHiMvHr8ZkEs038q95!} z7AJ(>KKHahx!3(6dMPHBhqp-aCIanGQ9PDKM317&twl^c$9-Kn=c7Vne+sv-%vEcR z%Wz)I|M=$l-v_=`fms@RhNY+jyLjSMQ}_vdH}W@Qfv&MBV9+O2slNBn&Sz)1s(w#1 z;O6x^^+$9Xu9mi2+Ko!(XV|n@>v6t&nP04S^87jf1YI3}*4yHjrC<5Ky*kt{I2+nz zAm!AQX4bE*t&#a%I>}*h&~7AAb1fIvG^ta|W`vW2N9+wS9-ls*#y&|RNV!jl|Kyjk z7Qx%(ouM0RYJL1NE5-xE_q|q5MY*3_y1;yVCTT1AtSeP~ci5+~c2XkeL~F8lcouW- z3(arbGI@(;Km8-j`12Q@TXty=)LZ2*jyxMTd#YMGY^dAJHI#U(a%4ZicY%8S&`(S8 z+nMRp1`&TMa}xOGH<}e|5u5|sDEq;Py>o_Cah1Y_5V_w8jmLejI2GDT*-1qo{UO5> z9jZknic4$fbTYmZyP$JEw5F!{g{)oCl%zgJ?70VhgC0M%V<_GVg+20%n~Qi}MzQ0A z^3l23Aa3}V)`RW}Mb z*Ecx#e$1Qh-Pcmj9H{xxyhiWUS!$*XAi#7Seb28`!mIkq?6uy-y6=iRu@85|rPq(i zpflC08(o#SfM|EKQRzPqUic3#_BVwZyVvHMNp&;}cZ+qe{Au>R-qmjGB$OznUXL#i zd9bb1%l0bZSJTsgCwfs*spx7u9Tm~_guezg_}xeE{CYKJ0~;p|tXTd`{i$_lQ}dMl zx+7`BHPZ{O2b}#G+n1<#*%PfJ010GS>Z#2H+6k_l|r?eEjZd zcKr`u@>N&pg|;qY_#JL*)0wH{v(RrG;#~d}NM-tg%jna-#<&?kIDxg`M>EhvVv{R}{{9s>?9O z!hOo$^R%G<0u0Z!pPhzhIMx#W`k!%A*{G77;28Rg^Sc@v#t`!>D^szy#L=<)=Zt81 zSv+0FAosr!}sSIPE({ai^;3#a)XORpA-_g`uir?kQ$bVDc=Q zozKdLPLpTYWKE%?s!Tbf)vw>m{Joh(PDnG=ao?|hHLUB~Kvi58b7bqtT1J+@ZwOZ& zGPcC#i!)dn%qy0UH(w}O85Lr&QN8SS#l1ny78%7#mcNwp za&vQkSA7Sud8^y(_5wZ!eP;0`Q78+nT-r?y})E<3!i>4@f^hI zT`RNsS?|Cwx6$MFw&%AS$5f7Z`%bTS@R`}x`&*fF-0z+(q}L9n7w5+MYIH>&&Ja|D zH?G*<&&atW{A=h!$Z?HIXXhJ|^Yu@e%;_8xZgnusJURGeR7rI2_A_S0o5dzp{bIWs z5D?e=ZrthUj9Yut(3{O#k0X#Mo{f%#5;C#Js9R(`aW(VHjm_;pqS^V-%~;^!;zW`8 z6PMKzMLm90l-Im}{QVvO`R6+Ip=9T}h{e%~)2J???Xjipj)0(9vxvDvxt6C#N(Z>N zLg=N2A|B+?7k7%f3mwyP`B}rueK{UY=^*I^T>NRux-;q};!*tHMegBB5&Ja8rn9U? zqs;s>s=-Y&17DNsyL;`w9RoehoR1Q>JIqh_$=SuF{0z8T@mt(~y=3gN@dq!xLm9m@ z_#B_vKS+7j?H1>A(Zmo1^ye#Te3G~`!!ED4S9zXgKg?%-bj4x-UO59=%_eC$XB{ zwZ6uY-B{gdvC^Z_=w_gdyXoYzS|wXveqw~KA%C&T|D0##$1aB-$7`xzMJxAZUrRIj z7&Is(pRnD6E0B}xJWVJ1r=#ug*x2nIFHSn0eyuI`-+$G|R@65Sa8Ht2Am*M&?~UAx zvS5R+9Ui<)X7qF_s%m@>)ANhG8Fu6Z!+AtK^=t$)HJ*5uOyYOuW7m0{*|ZjamvIX+ z#)t_o{|?oSsy1z!v|`-k;hVo+d6;IKC!vsiqB+d_ zs$*(KYpYxIZI1&;5e0Vleb{>9nVNV3yuP)>9XrqGv-|Fo<8>Aln=PMM?~9RZy9uJv z2Qwuja3V$ZN;=w(iIwqtd@gHeaqX`srwSji>-k@4)PL|^Hr^|OS7=N)EYVis1w>d)Bl1h@E0yyx4hB;x5~;yc|k^@Q1-AK^lXE?!{|Do3JUuxUm(Ec`IG@#}iYI3^_P z6Xs1M!_GYOsLG?k{YDH%w-^>XUrWXcO68q?O^<1H%$DIOPN_4#s67*bYqg!>+e^|= zI%6#vPsiVrL~V->T1kF&*S(r|Ky*H)Xd$Ge_dN4DlfT@g!fiLOPVT!0BljVfd=-~> z)6;9J1B#Ny9n5Um6Gf6D>-F^5-AAgrr(Ldz=q(QSjJe5eswK?Ua0|%)IuXIuvC7A? zAh@c#(!^M^u}koh8?^LEy1_2fGc4PsVQ_ct*?r}_od&rn!6zrysQ12mZowrpBFzF@ zBO=)x^s1`?9^B=pE{ORZZM=0^+nf3QHJ*5cQ>}tY7?7}LyRKUO&SX}pYq-|-w)5u) z`kLQai%p3J($=YNGJ-?hd#S!(-q*VeUyXrxj=!y_Rx=iP0hsn&6_e{n12ni(6oWQqob!WQub1y~45gCG18%+M55FG_Q?6>7X97VzF8>$`_&g z?arfhep!{gpl2&1Hp9X8U%-{WTn(d_mDEnYPgpzmm&wbZb@ZCGOz@*EFSA~*b3`c? z4QSoy2akaCS>_F`kRFi|liTz@&)&G1HP~HBUW#zH%b~uXSRPS|3h+doqR!#+CbrxN zMc1-&&;$A5SO=8X?Z~Lx#LA^zpNkpKhgx3oJtGV+9c1MENcm&e7@wNN02UB!a~`%O zJ3E!z40_{B1U+wN)R`Z>?qA+*T5T%D;nl{pCF^>xy|nbt?!l4aHEQyYkOqAy?BIZO z=E_O$KY1z34QWaTi7LxNQRiffMJl=)In#r5PKVr64;?0vzM)9d^fn7Tzm_B?1w;5R zPhNV(rgiz^lAMz47rjBe-hXaJodqIoWfKo`87$l{&0ZTE*T0oiBa1U1b#|=G;jy#p zJ|Bg5mckQ)K0S^{#^0U zkdgBhchZwHeIugL9pw8RWK1sY6J7^LXvOk^)1+v~-i?tPd92XfAn&~xle|I|<~P$t zg{6mC&e=}2Mit2hTQ3C0U6)7Vyf&)x8=v|pl!biU)m^{m7lTFR-kM{Rmw2_OxhSUb z^I_da)|e_HJ`4YNDpD&(b^c=6t!hl;`}3{V_hN5f82=Ne&AXX9+B16m z>V!0_m;amZXIJ}vIW^t3UB{Mh>K>mdCYJ|C3?IMY#c^z+WvU)o+c}gjjgJ^_1d9xh zT(HI4JN;3;)c9s%Qmk^}vhg2={1)$U1*fN%e(2kW=P{jiKDpkTa6Cqn_qoMUgLFf| zCm)WkF>{I&vyz}2PcH>a@uWf$;_X%@(eIYT4}9rux;d?KjxnyvfDjnS2#dMi7t=dM!=9{ofg`6a?{&bTQEFNMpOJoi!IgtM^%(~+>JV{lReM3$F z^@bQSbQ?N-zT_pGQ{~28q01>`e)+&EDWZ0?`z%^ui=Ks(hr>a4K(bmZ_s=O2@gw|S z=@-S1#kN0W6c1ODR?XIZm=xsqHx1_W%(vaqV}C#t%ax3)Y*W=#X#h#0DZAg}F?L@h z<4%hhJpbdTu|4hqCh$<6p#`Ui=@i3d+WG4r7j57h}?caorhtF!Ah7t?ux4%u-&`G*7C z9?fSijvY7WY>96Fz8w?ZHqzi58Y+HSPLuVqZ(>+s&XBE|_*1Dwllhw?Y4};rsv?=- z$+Y7V(J@kvXOm}tRi3cZxIa~_lylq3=feui-Xl)&EO}my4Z3vQtT>^UO_vV8o*z9^ z*vhcZFdHm&flldYx+%jze@NvSS8pe)?#^rC7poUWrCfKTNcKnK&n% z&d40G%cZmrskMCnyZBqqQAXI0n^CVpQsj0PukZ^Yc1$Fb(+>C`>CWSfTl~+}t(xz1 zpG^fZRfR^O&SC~)+fF&NVpLnFmdzG)i%wfIPjGVLkGa=8%sfpK?}=9!VlL?^>&IBz z{ZM!r`YmPB`TpyWJ35?=GRf)geDjlWD=c?pdlW66ZT0JjK&3Wtz)JF*%<*hfh$v!t` zy-plXt(^Ec$Yge>tZmwG!?MjoQ;=os=5F8krr zN$bdljl8cn!Y8}^q~jy$(_c7-+_P(olrlZ0#`x5YH<|5cURHekQXAykaG4(URCn_6 zi=4NY3$yB4@MpTtsC@rr!5MdO<*_bXoM^Rq*qY`SMEo1C$JkzY%Uccku5ej@qaeUS zi~j^;v&$)lm2aLOiCz2yh6h;Z$ICqG@s1pEf!rVUoUNC(n~T{wpUMbxHtLP81mAU! z(m{ttS@x(!%(iD3${g}WoY-Tn`>g<(If&(qaH9qEtIU>pe(J7fu@;*geAL}|+}Hfh zIBCAvn)N}LgtoDBi8vj(fBF?$i6prDb(l@=iR@I0@u|v?&-vl0eV$%2hBn?;ny%AH z=Cvg%utm5yZ&W=01aV0?l;qY-zNyxi_ZoS-%Ku}AWy(w3hb8J9&brGWO7Hn_N){iZ z9P0_y$hw}Nd|p|ilEp%k&%(Fl>JL4+6JsgJIG>k?zU?_`?G~Tc%hI|TuVec+AGy3Q za2{$(|BK#y+vYI)b=C2b?-K`+rnm31FG6LDi<+FLt0b8cc0<`Os@03lzB5qwA%}jr z@zi0!?#|=$`A&K#iav3@>l5N1%ht0_RInNqvx3zxAMkw>-%g3%7+Vc%cKee3-@=gc z=R*B=ZK1d3KRQg^TacB#daCfzDHW}X88o-pK2KKIx#FmEJDpkV(I#M+(OckC(WKWS zHcbZJdBKrN&S*gCZ=m~5zN}0%aOUsd`1^AdW%J?RE2W)Xr&`+AC2arWFf_mLY9xWT zZL9a|$!XfH4_QuHpH-GoCMWIIoy}L*TLXUlEJ?z_4VOgdgpRD{Cygv<3C{_Hqebl~kL1@{u z^T5Dvj=gh0{l8fzt#MALqmM)|D^l~|_Pb-FX(8Wp1=uy;OI&oZRZ>q?zOXtzw2eRS zE$CYCa_a<_H$L{0%#!V9m!r2K+pPR*$5)M@G$#J5tmMBc;{6XbpJeZ{XujNF>0M9# zY}F<6{n&rwS6H7fcV*5ehSR;ZlC0LaI&g5tOSHi5<2&z^tNC}ff&$q~!hJLIq+Z4j zw?zrHZLj>fzvEJnF5zYumqh#Xq^rL*r|bCHhs=OKm_}G%5Pig6cKC!ddx7qI`jdZ* z_ROT7$77ZSUP$6n25QdT+g?a#gNBp;b zH_xQJz13x`S-w;`#p4uXdSUgIea8)kph`>kasCUM4+6cFJ2brMH;+X(#IzA=F=k~(+9@UTYYyMUjOWV zM(V}iD17zmKd5qM5xS6FK>LF8J!U9G>w~@6<1T9(x2^~5j~0XolMhz42RF3B{QrJg z{INKpK71%Cy7ij7F;yRR|DzsvTJhX;!rkFBk!5SV!}gM2-`_dHDazM5z6E-eztCQC z@=SfobR2i=cZ^)N$7BI(@Z%Sk7hZXNt|6xzJU?9A-B=}m_NUH-g3XjKH*PePwHhC* zzIP<=xz#v3*K=LK$bgPc{}?(WSJ3&maf1u1g}IEVvhbmnp4?{15t;hX2Devpwa4ee ztBQu_W}x!hlV9En><$RlWzJZ{Cm(e*Ld4USBd)5SL`JJnB*{x3qP>@7BLhcjfXEiB zT&a}wUcJ0v{z#saT`e5|pP|IoepO?A%?MFE4Ywg=W3ZA3pMZ_1FlMc9vq zKj*~yEpEN?uMO9DQ>;*5_`EC)X{Oo z&t(R~*13k+Qo@?O1u7@*epxp!3tfE@EYr~?yG}M5T@qblzxixQfwMn*R`UXnkQ~re z4`&$e7&n@`$G-dT^M|Fd>Xa9Dvs>pF=^7I3ns_Xto|PA)ader z?d$zEI#;IS!7QIK%hB@kUCo4~lbkF=naR~lOia76H$6(?#C#;*-#o+B)ITh$gFtFO<;Ib_$on_(R=Y`(Wp>a}HZ|3I)fim9X;+ zYwAN0on%%G zR$1SrWT(<%aA>e7^x*c>H|hh!R@XnupLKT~%NOvK`tj4(Ko$Qr5?!6^um0aDTlUi? zAmn(fQQPi;I^C+idw-PX$?emj$6B{zN@d@9wN493EtQ0S7x?x`;63wR+wTpAlC6kR zw(woU&EtKo+i&ga@lkt2a-LrJJ+RM1Jtq&J^g8)F*U1-;+=F>T_ZV;RNfB}k{#qEJ zMMICZ;8xf$q4oSbqkMb`F{Vus;PeRF_o9T>|5j%WJb-zxwc`OFD*sMFyWoeDj@6+s zj|RKE*RzY^{F0;iR;8zorM9cdXyeJT zws}6QhJgPL6`&>2XmL5SzdwQY>Q)9})2diYEO)Ne;ZKbKXqFg1ba25(IIJ@&VE?StZ`>4ODIC=Oux`LaXjp{il_pLMEo|>I zv>Ay_FNueo?4X-|ozRDyW4*sr&OY!r(s9*z;o_1$UGT!SwJBZxDKovRdiQJAUkR%k zoPOJAbp49eBh+jA<6-<~vW#Oo1icR~J!>{SM+x+=D;c^uy4ZYTYyDfU(8t#eKKl+X z<42Q6$Xhp$yxv|Y_$6XhapmiM$qZLi@WFSAP3jw2l36qPhfh#bPIC_Pu-QJDv}wF@ zH(d#{_*-5Fb4=rb&|3=qjociGFw42CLR=jxPgi)iPC7p@FYkO?nHR9dm~r;V7^qe{ zFgsRs{aj+awPJ-UI%WCIhXa?%p8ca|)wms<|6E;@n;A!f zPgmD7W2W?*ARGQyhAyh4`-8`tg5Lfo}W zc?C_{Si+hOqIuWNQ$oxs(gIMnz%R#)2_3m)V|BbGeQzLtMuey59{nrH01i*|it2cr z+sE$CnEx1Bn29ac;q;55aX0b_Y3}Oj3m@we41VrDLizPv`pf&`>x;2~nB4>(EfGGI z3%Y5?pO?NN9gF%Hd8HAThP;&ZcWCI2D))aWJ$)Z8Y$KnIa%1!0p1Y90vo&rUWYa%y zWxdg_wfJ-1puO$;dia0tHBZAVD1#RTrne#j-#)I4HEr$Ts{aslyWaheQb?XcYFTBs zng6#LeA4Kb0yOkW@eLoP*(uq*-mtlhjV-9AG?_i}TeLdx*FvJyt9PM1|40Eq6*JgL zNRk>|5mf9Cv4j&xM&q*H+&EUKb^n^U*Y$bFDHo*ziK2W4W{lqAevl2fso%F5XLa0f zk4!GPs<(+(zTU~^YAi2u0|!J#h2JKrO^VmfcyyAPiUg7DdhpP3^Nhfy`qJQHc5Iqofj3X+*!Y<>5d<5B;z&9Ieu&$+?2_uA(j zt`R>IdXM#SmK1De7<8=faDA#MpZ)y3QkqNa#+*rF&&_#LK9>_?A1tdIbCGNN4N^{_ z^)`3PODy~nz1=DIcKH9pb2(t94GjKf$mn6j+rwFvBzRl-!MY1`HykY*cdq(`uST}T zIOpi9-amIL6+d`;PbQsVld4k}79jG8AzNwgr&ZLa_`lo#DfOgvyvN?qT1-w&4{OBHoR<{@neQ(aALpB?g50uFW=J~MMb#UK_9YqDQW6IJ^&AM=tef>7H z$De)sGkAM^*+FHGHe7y3AQ5szubF(SlbXi>ArUawmJ67I2RZ-H{`@UIc!1qq@ zvAbibEizvmKKqXG`4kVf=>X@eVzbd#MllN`$-utD)<+5H!N*l z4KACg7YFp$>sw5Nv`u9b zF0~ptRY(kp!- z<5z+qM{tMfqUc|IqSPraWpp7q_lE>eD;nlL@Z#l~ z)$)nu_p9UQ#`%~IabNl6u|x9BuDg4L?Kf(*VQFV>jDh)lOPewELXihg_}NWLnY-N7 z?O2qPtCQwb(uh1!IcXWo{iUbX9b^rExbVrHuBLKHIQYNvBaG}Tuc zXug^eX#eau{3`gFGh1fq7W;oaK}Q=f^gh!>$FQ_A zuFFKdr0|r@()*dxiY@fwyu?P-pL59qWi2YzI)vKbji&jDV)kCYD4($R#y`>SGHKaJ z{#J6phdGbZJNImtSo(_3i7+eS%(aTrrh<>e^gBBv&J0){oto^N z>)_1y>V0!7BKCf!p7$&K_m1?wV*;;z0;|i`lij_x2Tw~Hlt@i#{N$hcCfX{yYjAxq z{B+mCz3*wg^fy%m49+&jd+Bw*6|m5~^G?T)tY3QRw~_^)%4w*;qmlL_O6Om7j{5~Q zFuGNY^qvTieJUFA$I)FQSIt#QEEs&N>EVT%7-G`xc2rM`j+uLf*LJK7bm@0`elh98 zt@Gzj6>p8Ji&boP88a(IricD!Iy;#iVXmS*N(LT;imS-nIpddB9vsc(H+;*#uhqlk zGp|TmQbcCLY`+Yrnpo_z8|tV_wU%p@NbAwiOkp17yyORTHmpaOcO=*ke)1hvyDPVr z!xvi;0)(sFisZZ5)SBhB)+EfHTeKs8U?t7RRrD^<{6ej9?#X_a3*J4;BZOxr(cPkd z&SZ-9S~xt5+*lErnoI8;XbkZ)XJ@(P^*eFRe*1!TyNB|e#7vQT;kN8t=jigX)4Peg z3Qw*rQhVd&rFjFxuDbkTYhv+^_?9Zc|10hskYrrLX`A!8zb|iwEg7@ferZaAu4bO? zi1a0#f!Ww+KTakVP=sRV%K7o$?1xkpU7dCHtv7k)Zkl9)CvM#*ehTX-GrKnxMQ@H( zS(d)go@dxNZ8mW8dc)+8N59ZMldKLZdcylp z#2O4z$5_8X5!=xT;0f9C1%KOp-ZNC2K5Pm$R0ZeKEcmyLzgo zKiyE->(q4QH2t`3JG=GjZZ}nP?(z0y&#eh}^1!ne^}(BgG0~vlshdHk+7*(F?K!@v zA7($1!zYVgqU=)mHa@zyq$FHy*TL0O0V=)2*V?v~2EJY- zT)g%OC5#wPX^sF_9tiIv$)nP@Q~jC`^KFM&gL@OS~v7O%_Vw%HwQas zxK$tB8vAvWJrP9qe@70pE|0M0Di2XVOqL&B`21D7A?)(!k&T@Xcl)$^H6(?+#sULF ze19#6XD@}MhZuIYrthn6YfQ>E2><@vpmN)5?m%)ITnzTR=jY&6Ibj~?Wpl@?U-9q# z`)WBtN~RUmvzOCxQG9bz=9(NTS$^W0Es4hw@_ydA53CzEWdvKt!8&^7`8T^SQx<%~ zqXRnap!LnOl;)HB4?q7s3#>!`}35FHsFQqpyfrVmY z#F=`#oj3KvYVj}MM{G2cIy61huMO?7_>{%=sKm~3Pp027d`H#&eebvVZ|UE*a))j< z_$a=`HlFPRHHrLSEtiY(-IM&%18wZI=Z`g&ZzOP7ZmnfCg^Cxr%6(2dXJ5*HqTb<& zga%dePYEU#Bp&c+QG@8@_7vd8=xM*LdPpT0yqeA;oSnjjaskt$>I z>83PRRdM#-MDT*lhoR7%@SIS5%#ZAtHZwWvTMhO)WmRt7F^@iF2*0uwxUCX0q{--% z$8VfzI&u1*Cq-d@+41=t#eAxBO0B0z=~euo(k;uzLL*A!;I|(A-qzyCB8>(Pd$X_n zo^~IO2i}U$H+USF!e809edAIv6Y42)JJxGhLJ$;l*;$`KSFr}&*D0d zj00=VN~8|ASFJYBPA6pvW#{ktM}3HfL05$>KjM`tToP<8^V=eT&aS?*5s5gl_UqS6 zpNMN*{Rx7pT3Ep@(#jR=e$l7>9>o89R;bbtPgZrKTc34=i~~5m-OTjPjd!c@Wo^u!1u6Z%LVqo;J7=bTbf*XR z{0i5s&b69cyLy*bbk{`hu}hMsQ_82T5T%-0)-NOA`7hh(;=DI~r{8W%&Y!F3fA;aD zaFBBe`qywAC4Im!#QE)E#A?q*u)c!B0=8)IMqpiaV)pqf=T981s=rTJj^Gzmj{qaT z1Pu(EKl^TUWh=f_zWAeZKx!M&%xq{%Vxc?uJiy8GRG{`^m3`FfUnGSix~ z_1oNYm)0&les=2F`*l+vO2wFuu~DhP#vtEg39{f?eJrCw8~c-)SLeIv75L81Jh*@6 z5XHM79K@D>r*KlqXy4H`^@Ko?(zJhl=fv}>QZ0{JSM^~^z|!Q%Nh?!&2Ti@7;^D3<^oSwAxjd z*(7qI=}Q@ST<+6H@`x^dXjzZ~`mLO^J87qeA?Ou~-Y=A`YkpQ~U*Cg56spu=wI|Mf z4|ALj$Bu`_4Y(cV<)?)z7Y2nCY`w)nFLhmNKgXu~OmHkRmj@7Q2O|STC$YS3j9M~U zB?(FH7Bz50=q%H?Fy_JdL`RazQMAE69y{E&6>`&A7|d zg#Cm8Yh#!lPglFJfBFsTmYrFbVeM12lwjb(@j#*vyLzn5#9%-`>eZOb@~Qt(daWYA zF9Cl<1HM*VRQC&v#M{%xne4OUGPb`s!%74yM@UBd?B zrVV!Z`#sj@tua!xM)2y)#g20p?5txAxYnZ-dx!)KE}-_iCK+eg1<3GvX@W(|1Y7;AI`h=?qCxG-oKx)( zZE2%1V;d?vBa$|H(z04W#)KH>GqXun1L#w1f@@;01hn0sUO(BVR`bYYgDeuy^h!#D z>9vx~i2bL$URe>ma%p-|rOz}B1`E4=Hc}G2dH8bUc!4JYp7S72z6Bt+OpU^psYW0^ zT0X0&%XD#CTo%oxG87#Y+sp1{8l+k&EfJoD3~Vkp)n!~sNJz^PaMbWTOvtT;g#vua zYn7B12xzHFgZRV#WZt}6`x<*rbk~gA?RC#pJzjUvxwPaAhTYXUS19CK{AsCBkkHex zyp~BMGL7=j@ID`ZK881I74u=$4L@}8YiqpM=XP&wx;-;~hi7fgrUr{MIRI|GZ7mgGjKUviqpK(|v)7Tohl3^{ z*J!R8jPq4qEoa8KACSNQIr$w6@`0s%_gVSv^YXs3W?!u=GepP%g=s8G$N^;y_pY_u z-0Lq(V!jTqt1RkTO>EPv!tLgD$m%}l>Pl;{1gMM$QMH#FwA31jH$nv^&{zS2O z;ymeQb5|d^n#+!Zl#-GC)d9cn7xOn?zI=1OShI@viVy$9!=iWmd&H^#NdBJuDqt!~ z#JHLb1i}iK-UOn|DbfhR#Kf>t>6CzTgIXD7L5Lde385lX2@;>>!skPYqLoVTW3uk8+KK@pBbu9Zl1$m**fm$(_GTj(_ z4M;SNUEBak`U^Rbe7=1A%bwvNT?qxlp{1m8(fDxvsN2kCy8zc9$cqt zmV}TR?zLLt_I8JwbDMPk8>9o+m}OcQ^w>X+#t>*rjrKSKhI4P=I(CoRpVB39y>lg( zO67=1?N{5lxZZ9f{gE>29b3z-|Ws>J21TDxa*Z3_5#kp~Cc9&c-WPr9=Xcm3VegkB36>x`|(? zt7A4GeBJI3+^83sr6F2oFt1_KZ2@^u3fX*ZdGW%cKJ41>+ASisU`&Sd8Mqx?jALTp zdj01?k}U$C!o_IlK(%6SMPgdE6&p0fAoD}OZQK|=U>=+7{<~gDka?fm!H0gXdQ^%J zjkt8QdPNr#dAff_VtAc7cjw7VF0B}Gdm>)1I}rb+qt#R`_`^ROtfi_)b-kNUuz0%o zlSF=OtBU(sWY9hq_eIeNJ5ZbY9K#5OEpt&@a*Xmy`lz;z>NP!@5@Et3yL-_TKU?;s zTG14w)oSoC6-DtvO9?@*uKNO1uWQ+`_kn*=Fxn=uO+v4C%L z(-(-Q2Jj>NP4Ft>$<-jR`Q=PeNCn_kcs-C3ip&n(Kbi{<=HOYxUYjF?WX7(po8QB( zySq51*kP9nLG~l*+BKv#8nW3Y*_#|aH`ZyRza`T@!)Q}Qn`eZjiA8T;plobwHho7E zM;h*^D0Vv9^=(a?*pW@!>x}6#%l{Q~KQQM5vYo1Pk>$!9Q}$MyyUW>mqyOf2GSjk1QM|vmn8TB`>%O!X}^!FwR zXoa7SuVEliDgMXVrK3l(kz7TDUvc(&JI(meT)9yc$@Fw!)|eE{^$<6zhx@|;p>e{8 z14^_(f*p2o{R2m93;z0j7@Bl%2(~MP#sqy-&l|0&ve~{-uTVCI`;?k)s|E*^-gwKp zRJwKeS7sd!EdNt)IhH8hx<@N9jngWt0gD;DzY@G%Hx5{GongqRW3I6c1GMYci7|JUm$t21gQ5Okw-(i-az^i|A z`1jjcB}{=UCOobHGRKZ(;EM!Pu&N-Wv|&FYtC}iDsAGV5Jd-|tJe{%j$l4|^1HX$NXf@mu z1L*a5Z&)!l?d3c&r=tOTfrK~J?rvPjNL48##CJ!`(GyHtc=B5R+BNjN_?8g#^BxcH z4+_L@r$0Rw0pkV->=AQWHS5)bdWGrEycP5$+_!(qXscIb&;%xlivnE&YpMoavu6G9 zZ&}ZHYF#R5cUmo|5c<8fX&rW=DTDP4&_;du-B2n7AL2(vF{{rwHU|%MFHUV=ac-xZ zL^f5oOmGh=8uY4OR;YbH2C@kgYA+5Xm#AS%;j{SAhP$Yvsk1$Bsf0~8Bmhid zd%mJL%)Ad2R2)oE6D~a;Ze_}@1qWb_?fUn(RKtd0Eh%2k_A@CMBJ^XM{MHOpMXZt*R#`;noOAoD(>bKL9^Qc4Y@( z1Vc{eeoQbojl@;Wk-Tlfn|Zn8HhWDvgB=7{-8gs7I9Hg2;-hP8=gz^mHx0Eht@cwp zJT8U+%M(OwRWbv%H*x%<3K8T=nT+Y~5H5-sIni_7jZF6ogH`reHL<64p z1ZGpg=TO?E+iSPR?h$0$iaul65gTTV?=&aVeXFr75ZZusT9Nn?-3e6U0o9rbI5kD~ zxH$lbc`j&4aWN>mHlu4ld(pEXM_MgNZc(F{S}cC?#hE+8fsJJPzKin#-yNyXx8K+tfY04EzVvJuIW0d|leFduT2a31|B)?N{EI8%zwVE? z<^$e@H$XUg8eF+@ZKQR8;{fGIqc_$)^v3HI2G!Y9=`1GFz1t|e#RJ!D_k2Xp+?Gyu zb)(&-Yf!kljQc?u#L$ti)^)uz=rN-Vl>U&Oe3{DBR(sKYnrjwSWn|!}*mk?w12hCM~J)M-Ju^9X)-Ac>Bpq%EceTQBqpBc4jle@sZ`CrqMXwM5X z5S@RhfhTTKgjxpc9-l6ox396=hl5ZwGBY#d^>}0N4#s9YzL^=HX9lk!+3WSpM0;1R zbeIV(`(X4ApRt2(-6C51dUyJx^<@6MBg0By z+!(Zr=$^B>iAvl}vPKp2&fS4qXW|?G>BR8wSH^VTPw!>rNnt7@Z3;f7vs$|Okl zn0VV}Rs9O9&$nYA^T*wnXD@Hxb4I&Eb}@)L%w6$raI7-yv*jrJeci-%zxKjvz>6Rq z@hJvStsK>0o}juDQ$?s&*xr*W3#*E|M%0;&ja!^p0t054%Is_zUIYm&meibHUTP&{ za0y3Tj&8TnQQKS?!yPMxl%Z*ZR;!zgiGdkH`Z1}KjKz{&m}I$HYY$(9=>W|JQqi8S z*<{;3jhjeUgm6!Yk+Z*waT#!Dt<|-913H^-anWb|+(qF3Q@eP;aD;uv!ihqvjY)8@ z>>qaNyu#C6myZBMZsRVRJ5Mx^i`(g4^T1WN*|n%}{;3wQnz9 zQpBQAUj-4*#uS|-9e}W*AbsUDsn(SBGWiG^?rOy7 zc2O0gVert0Hrq9LLvGd*Ej>dO&AL9^)lAKZdsK%gxe29O#M?-dhg z6=LlXqnVbcwRT&-4%5js(((ps0cI@I(b4P*I-mJO6E5tpRQzF!ANmt=zZs$A`%#mF zxN1VJK$fZc7S~Yd zo{wBsN~=W=?{qtzA*a{rCUfqxv*^o5wc5iqEt>Zgon`kNal^Ba6W-!IMKvwm$9ytA zX!?EB!oU-Rq9Awr;~q~OCLn(_1S|p(9od-d4@abAF6R#Nz927p!tq$FBF5ulB^HZ^ zJt80U@j-Vkmy{x5zZ}bMFlPz&(R2P_EEr7%e7-;`3YS(KlmW;>sIQB$*ien>a7Ufp zv8=3-THEsVM7#1yxg&_SyU@Qy8mE3s&z^z77Z!CFE$BPnna`*`jl6dy6B>RIgzkX%9_=05IxVjJ9dc_% z4TSgfl?=I=&Bsjl@)XF`PMhcI0T}G8kN35jfWJzu7u!Hj2-iY0a*Eb1=mySQ{2K3j z7pE<&QrUO3kWC#%X!8`rb0B5VJ8DxkkrBTw?2;bvMCO_O^*SApv^q#c2hr3uUB5;z zK<+wQD4f%@bA`fLN&vZWY=L*P77~Wg5*6xk8@(kKmllJ%g-Kl{gKKA3ix-#TznM64 zx10Anw&LE1WBpBMZ*MGoSOwm(L+$pwp0D%H8SgK3YW-HroWszTkf*x`V4NBZ5K#{i zwIMqs1!l6iWCn>4LqsZ3aUX-{ddNLmB<^fG=YL@F_C;sgwe-Tw+1SE`rSkHXr3Wi2YguSR}E&r%PECJ3^)pA!ZF z=j%=K$o<21?XeHtTYmVNCy%`OiC-T6Ux1ze;}0%#frk+t!?-4>FU2SzIO}dWntN+^udLjCrSD$7v%Yd? z!;SH#+{fSi_BS7Q_v?4Aeuq97)$=yQN-td%BYoUR=&o-Qjh#&%^`GD!bKf$Y+RAi! z6TQy8kIRpfU;C?j^6w_xd*lz~Ux51$e)}Fsm2Xv@xG z$v38Q8(fobe?hk8*6Kh)zB2`|ahu(g&eOb9dt+Hf-N|OM%%&SSksn*}9)*seMkk|u z8)dp#5b0S^OiIOyeXpoLk*^HoU+-IR=1XB)sFFGQ&<2Mn-Ql}9rn-!oMr^}U0H}k( z2#9}6e~qTU7A$t+EW?TVQ|r@md}0q#(K&L-8`zf&44j^89qSfnMD)f>46obQn6~L0 zfmVFb)5Sw`?%m)>?SS0J?qyRYI49~Xze25X;s$seQ1||}{O+6OgIZv0%a7kAPqqW$ zjlDZ&37GGqV$w-z+?Y{Ic6K&yepcSO@*&n5!?4P#-Qd1-^KOu#t(AXeg5kS)4dBpzEW8aHoeFiOGWc<=AOqwz+Rn4O)^p2_6H z#mI-qY&Ix3NNOCt<%HAum%egbj)-#5&r#V@ncY0?x*X*YBTS^tuDw_*)Zg*>_~2-Cz&4Y>)N{cI~-+8 zxXYeOK4^QDlx&%df46P@E{2%0>A+GSKlEo-9oy_TNT2v62mbP7w%3{yHMHV)d2x=4 zQH1;$eUW(SX*`GCM(YAx25wwNZlh1%JoQeSy|YP8J%8Q)id9a6Jx5Z*%6XhUw`fU^ zTDQPxQOC+Jk*6_vnF_PsP%T9-F*;P_?6h_O3w8#~An>SX-gB$Hx?=$&_$^AIk2%jHY zt*Yi(Jm9|BPO?-|Xczhp*2Fk;DM%s!u*e&}Oc7nGgyrfn#-iKM&kilaU3M{1|~ zfptLJ&}6)jTg(;WNrS2J%-!NYHeD%AjtN2U%#1fE#J+9DR(pF77MVW|xC@C}rFJqpu7FwvpN)?M5$x!66Oh4l0u^ zNWNN`trl+KcSxCr-npjt4lUFnLO#ifLDOYs1~zVffanF}Be3HGX-t zCq*2s+RQEY>KI7c`6`V@CCje9y{#S6Zo<*gM7Y-iZ#NgBQ7#!r`N|~^T5|I_**K)w zR$Fd9D;tLv%H-qs(Adnn8B>WXTMFm#7Hzg!T{S0nbMH3x5?wYnUu*IeTqYa^|6~h? zEP*Ns$FVq+5%JW4%=v;|sAVXct!AU4kHq0Hw?5|$`Xbp%wVVsXgX6xSoSI3Cvr9KG z&5G%nlpOShyzsvF2PV{Tk7883ipS^k(6y*L+=&oU{!qewnI3;ASFPsG;q!BG$T^%V z$A5^vQ_b^!Uo7Jx#igYp@nm8?KcDvy63=Gigxm@>^x{Gs9&J2b0B{v&Df=FVG3Jn? z&^^L791d`d2H@9^OUORPZ zYi==nQU=jH`|ab zA*t+ww=O(9(QP0ayR;lFEGLfN;81&Y$rncI;+-c%!m}RskF1N)_p;Ev)VK ztJcJ_tJxjl*1~JSEab$BxDy}n6t9F>pVx3VKESS5L98C#oKGL~kZ3E)IAs>f4q4?c zMvOB*q-ndc?e7+$J}bETIANMQ-at+w-Sz)AB9w0&?-F;%R3Mju?U9{M8%3GZpPgoCibFigLGV~v)Pob&jc+SSHQ5n!j1RJd;w`@7i=V%hjVCXYvTAL9b8}wX zm}mUQUqG2Z4jgI<+OvlKO>UKX$D`E_(uQ(f4Vjw=0{6N>EWa^@8IO%Br;<+|{p;mZ z^{UfB?v}|1hQIe4pCSb7@YJ{RUN2T@K9mXMV>Jn@8u@ssd1`r1_s+Q7cgw?fZ+*(+ z_dumu56XNzAYmo>nS3xr>n$oz+u~`D*CM%cMP)UiHna%|*XGddi#PdvOHw9(oGjn9 zv2rmqx1z{3!ui$p?VTObpnu=Wx;E}QvEtQh%cY#N-8xz=e|B3F^@J{(x-n~?C6pyf zz!PEILsLRGWN-?S1BM)W=;VB{0%RlSW8`N)nxw-dk7wH@KRt&|ciQtGqny z?y=rWME}dqPA8x6`xALXtR+P8(dyAw+nFmZ&)wu*IdRv9t9j4cH0;j#lag>^`x!~T zmY*1-G``6`M1l^aJJdJ#u1sLhV+>iRaOP(jvf60iQ*>uyv~D!@s+Rd|%nSg79<^xZ zppU1?XiCRWDz#RtMp|Qs9U|V~v>griCDTUq`YGVRPg*N`=A6OS_|P>MlY2C8Sb84Q5622OkIR$llt65BI^9l(9&EmKJu}ixZ(7zI z^GS3aB!-&Ar72!X`OjCc%3E8ladxCcQ=XX2%{5WqAYK2lYIzJB7-#~*+E55E0@azcLN z|IgaHz&UcAb)q^|s&|#7l2lcCwH~dO)Lqq&=~k=dnVyGcJP&)u_RKhz?6DJjY{z!o zauTx1B+k16A&@w1;>2neLV^k8L5mA4U|_=nN?^ILfh>gE&0Vqx zdpDYUzH_RiQa@~G_jXIFQb{_mI*;%B&iDQQZ+tLsdIx;ziBM=_|E{@z7HF1zhH7wP z@|oCurgq@0p&acKv%}X-aE-+;wo@<*4t|+@ADlD@V|9e^VvNs1W8W9gu3n)=azt#} z&Bq_lyY9!y>%)(Y&HC^YX(T^DTt2Xy1MYe`bQ@uT!Z)G;y%ejuR-nYpBe>g`G zhAIt6u1q3y*P4seVTE!6l^OyGj!*cTOQ>fk^3K%q6g$PmrFi}JirbCBH9=;+;gd3_)PN%m?+c6s_l>=`|Y^1z`$}fRp!U@v&lNEmLgM z7>)h;ZJ7zMW+hDDEjqAw2$3$p^!*AYFq*KM;a;;!tn*{r{QiQ-XI>a?q0rVVm&ZMG z26k#~uUI|5RFmzJ13#!&XqPfj7#agv*;9s#wr%5%uqV%(u1n#F_SBt7i?3GqrY9{P zQsDvE`VXz9+wS|E_oICCV{3wsvq2o{QO%801~8+ z)iwSy&G1&}5`40!{R*JxziQ23>{^G^>!0!;$5|d)vF-ei;Cx3I7k!fFEY=eO>>KqF zONW;yo_K16)Tv~YV6UX(yVRxQ_mg~|9&We6S+zav1I>>QjG(743-0ODJ39`E6yMXH zg;%fXA$2^oc6-|L700O8mVx;5Lvq`sKKh3@DRIl6?4vpAtM`f{!H?SBpY4leuXKNg zH%GV;+`jSf8tPi{^eEx*x+0T+RJ0Gu-K*|~UxvvsdDN5f4;&t4uB4ZRMj20sR=Mu^ z{eqfTC#nqim_qc_p0T6j@^oG}z~kbOT02my!Qjve4{-k-%LRSHNkVp{v5Hmm-Q`&r1f%|f z^)J-hz<+pB`6fMJO%2E!hr8~;v%d~pPoj6w&ZPelMH?4Rp$Q+a5sExo`h}~%;O=3D zk~J-q%{L-C>FM9In#{$tWtrN`wNCb%XA& zw2xol`ST~py+iFuD>@$Z?el^z5bQMW7M@5Mui1I_~H|Ic1OB{kTC+5_!=izXiYP5|} z;Ns|Hj195Y@EIuZWD(%BXj=6K>bXvDn^Hl1mLdN?i+Sh%>pvZBWcMx3zHYk_~q zrtx)3%kU!gm_i|X6i44%8U405!k4FQ5`&ezIU3jCJlnuCm=5cVr^4yJlwUV?H>vOa zty>&APWZ0$#VlaK+r42c*OS%$iv;dzrU|kE;(*nE{!H)fE4hX&Bj=f{|4%ren zPzSHIG^T>=hzD`z$GSC)#SHZU7~P0Tuzu9q-fnpTVxGa9aMiYl9`r_F1o-3J$IVd* zA4&+2v_^5b2`f0%1l+fXDu+gQHLb*P&23$Z5BCsK*NGbi6Tx<&&vzTiM0SKkpQ6yXfqlo4Z{jYkfO)vJCO*AqT$n;^YiD+`;pp zx5o{A0yMH!EQ4GmsMe#Yn7D!w8~5aEd4%OLIe&oyY|@d`aWO9POf1&arMzR8QdcFAvX8hTV<7(?S3Q{z|%KU))&Jthqh zv^|QT7QH&Uzkm?~dzkmLXz_VULFPp+LA4RYnz?|HmgcC*?zk%5jwgT1~YZRvs zF8cGf1w6#OVAaYEq0y|jgA2&!Aj=^XS-J2QR4OqXN~nAol@P;an+C_T9Fn*QrxXzr z=4Gv_$y^vt73JR+tGBbL8{BqsU|R#8awM8u%OGQBhE>#r$ccg^OZa;Tv0+|}a16sK zcp{W|LEvOT=g)vS^RAt7zJRY=GhG>s`(K&uFTvNbCym;n*MqDz30wAPw0d(2++aKWRNp}a8< z6TgQ{hE2?rg@uHa;53n8BC#n(U^zLpnvywIV5VXbh7mOmf4(4;XA*2C_h27>L%hY8HOvtZ661$%T}_Gn$}lMk-;+tQxfpSvIVw%F0$EWoWvfF}#o} z$Xv#mwxV>QvDH)oY&(UN`gbE+RM(50#Tsy?j-^w&Cs861omf7ujKB;jtfPfX*uVlgp4cJVtv1$qhi74j zp$%^!kiqq6Qb>)dsMW9}?WH^^`Y&;a3mAWjXhy|z7G$9Ks(j@zlJQ;%9I9yjW+ zB+%`q9!?Bv*EUWyt@rzQoOW!iYvWg^Pmqm*Yk^;HB7KvJvVQ$aevMfQVKL349@HsL z>#{@698y~>hrMOh0*Z0y)$13}2gGTrp#+t(B) zxfi-Du%F|VL*L&+T{`dhJu%(F3(H>onjo$wk);~-lMGCV{gCls*9h*%$722T=yd3r5H@NtHJ;?;`cBMxu8 zdXYx^cYv=J1CK}WhY&^>0i~{UgKu+w5qd{48EOepc}ggAac2gV#0w;c)n2UK{u)7x3R`?(oy3QHh77%UO*Y zhZX08(jWdu*G0B_a5leu=O^#@#3%0fWGLkGOi=#@i22fqC;AlV1qKjkTSBdZ2TuWk z_pQ*Vc&a*T_j;R~SFc_j{LCUIX2Zhlk|H1%8M`Z34ztvs_(m;#V5_MZHqWLY+@q_?5)4H)}j< z)y~A?s6M!6nl!1Co6kv`g#0U^%Zy={|gs;fe zr;E&`2RSRuJB3tLoYjt3ijAVgN10-S5d{?sUFE67Y;{SM9Jwq3jE|g6RzeMn8fS_4$*JzfTbwKs$ZyV=h!db%!ADfN3YwlXk zW&fIYh^?FVvi{E&Avw-uR#dmtz=bLZTEnkfw1E4mFkZRUzc=4`T zjWPs!-~n{!qtrM`kDXNN&h&dy%c*4)0>2C(_n-$G{1zZIIlzlWydTg+hawP<)V0#@ zO2y}3%K)!~*Nba~!dmeWznU%TxI3TV_{g>$59koeT6Ge>Mss7E;4q zleH4{1dH=(K&aDKPqV4mRxHJyt{>ex`i=J4vuBYz{6s97jG?zV!vPkacH8Zz@a6IP zxk+?U9ohl{pp6ppm*5iWT{Jh$i+Ca5C2|W0HiqGNYL zi=2Jn)vnJF?#oPrQTbuSTcjr(UiN@?2p&KaC49%L7HOP0ZU66}7GD3e0lcG%Q1iyO zPy-Z5(;}h^pt|v;PhYj}UYNV%h+vDyA6&id`jodR_m)pj*DFq?H7l%KU2HCn*Wwq@ zr-(cl;>MVKzz>aAF+W+>zFv6Yg~D~i!`<7yo`2zm{PkcOn|sno7<5CbF-l`13AA`CKs~}QF4dFHFiRDLkN6X-G{xZ8&=~g(+G$+L4SchLv&04H6gIS6eyS=Etc_|W^^BVsC)jQ zht7LP)C#_Xqu)=zg?-{I9MNEdc?F74cA{ z{}2y^6$aFEs;gB!QY}W)nr@d`C41imSI=aoB~cQ2IhtrLh)YZ2LhgWTLA+w%whtkz zlweCJ^uxoy|KV-4g))DRmGv$B6?LSC9>$<`pbe|^Dk%KE)Y~0<9Hqb2hP^P`#Q*fw zwm0zq0Z;?&wii>`nmCNtK`b{D+XSFsHvkZ1;KE=HfdJvpVIK-`3LMBH;7b$zk*Xix z!sWB~a09@8>&Vx@)3->QV(E&_q96YIX9okkSZ|{c7+3tULNPiuidk$x5wV!kEaL*U zFI^%psMT)wy7=k&yi$KC&Wnvq5|$PiU-*IL1}wahr%-MRSyV&q)<&n};CZv_*sTrQ z?6e%CWwf`q+bGoQ_4_@%-of7nVbgO1*tj5-Op{pMMbGDx-Zp@70le~t?=nlQDkq6} z1yes)Lspx#2W&9_k*N+Q6ELAtp3Xm+M)ou`UccQ2Gl%o_A^?`@MJ<8iufuEX=QGI7 zgeLvjQm=pr8|*w^@)p&J&e9v>qOucdmR=#%1Cu{Kf$z7cOVVX>d*o0P-jkR83c2lP z#Xg``?|+5dy*h5}DFnB#4E5Ji=P`@itG9wq58u*XwM`}uBb$G)Y{&omO844}`M!y! zd<~`Dpbgs{`$-80miyfIRPz6kDoi$b{MBpHo#-3;Dm3=xQ3(1+!{26X6i{s$2%z|6 z0RidD+A6}coGNuMJ~-gx{D9}_;kibuEoqHQ<126&%i=qP1HiMmj8OP%LD9$OQQY=w zwRq3s;ypyH`7+GuUiaP^i#h{$XTldGh9#L9BF)x>Cc$9xsJxc_iHa(K#xhm`ncDf> zL*>NLN8kSF(W8$ZJJq~;rP;cXN@a>gBa>1)^9#O*=g!jl&T-+HsdOeco<9cYG(NM4 zH5Rv3bHY+;H2_>v@HJdKXX07^=B<#ZX(9?qTDz^?NqLHqv9;xB;tqUrseQA3Nz{78 zV`ywI@iCMs9Z`ZFh2<1@{vvx<9$cl|6n3*1n#Ix;xYePCJ&j*(=dQ z-?k^broG_${)8SzaG*a#FvLp)jef+yu-CYJ*atnYdxwWxplkuJkUIRU11=&DPSsT< zADPWZqID@w8(a^KWSN~qd5w?K{niFyp!K5=z)|goc0Id)sIux2OV;+Cpf(*G?!;j*(J8!xm##y`BTaW7 z)6oj_X03tf6LO41igC z4d=am%uV#wnP~n=TILbfN9e$EkTO6X)~g&_lslK?an%ftTtDyCT;-grBh!41imuuv9sr9dp#q`3D zzDvhvWIJ14S&>g)TX_1+nfI}>X1Se?d#rnRgyE8($z(dUXknpXq^4Fbtc-M{KCa~| z@lu&!=UGQpJOz|+*3Lo~|8KCOU7>)`;eAHp9wC;_0ua@fV|o zc~YYDU^w)Bn_REAEQL-t zhVhXj_W4iBMI)N1XrdaC!9n=%&)Y{Hs>Fr_Grqin=l%4L;n{t9y$lx?FE4I8mo911 zjHL3cB!@Mrc(h8$SiJ1Xqq`IR9x#wj<+gFYXc58Xj9-I($;QKc6N$~@t- zqgHmRNv}X?=vsZvG64_^sEX;=jHE>fCy7%<4ZS34suGsMipDEZRn*g(8OuiEb}nHk zMue9ms!$MAJ|gn>s*VyXa*{NaE~e&lnQKoxkj}DmM(Kx?yd?@a1x`W&t3-K4R;SWc znUBaUC$L7CXI1Gdg25{l(-4xXKDBzjF>fy~&CRc!ZDfrA&Z$UrY=3EP60ibZz_n?v zHJ54m1z_DFCWOW+sbX!KLiXkXh5jY#zY?EXo=O`hkIZH@4wpfRCQ?%~uAYpgG+pAe z_|jA|Ci5(c&S>lj)TUl6t=#fdb}`DQk`Z1>rmbSCpeGqtRFmmSGO1LhXjGA7YD5tj z-aZ-%#A{?dW+}qeMIz5>pm)=Ya{sk_{;prUtB}XzE}vh>PrUnqd;!19lk0FL_%0~> zK~()3&Ik4@Xe4ZX6kJ2w3E&i(z;szpOdutGAZ$epEEzy}dOUq(J@sY#>@4?WI&Mrl zGTp7|ElG7$$w}){qSGj?-_0Gl(@7+r#A6$^_W=!t1A25OR3xapf=S^ea5Es5cr*!= zvRG&U0cOG&Mel&Y40dDqK&t{5Ied<(QR%2RD)WsN+(SL^LxcGFwICturn7mMPs&loJmYPbY zbIG_WvbcBVvzLmEd=8;IgL@+#5>JNjM~NeG5dR$IhJQ(KC_y2*v3E!WM4X4}P<6+^a^~=O(o6O)=fOX&$_+YhhLfh0v zrbu7?s-!?t-7fX*Q4{>L&+-#-a^MdaCw61%rZXxQiw8^zNanUDEN=ZiI4R-RmhY$o zrR#QYg|;^~LcTBP4#94i!gBpOk)oSKH6)96c@zc2;yWeOI1f8%68YKjV3|-TqUM$w z3lYB%q^0`ksmfwSibdsjDzRu4TmX+pvoe>N&!mz+>K6<_3vO%-ioic#j7gUiJtkkm zYlaq$5}jo1v&<8#0-eub7dDS-zVm9`KN0o_)V+gAOp#;uA@f=q&uYsg;yy`C;$=#$TjmYlVH4tHg%VcnN1pXq))c5` zDXy6nL8zBWEzJ~XmQtA*PqO5{uyl`wX03a^I60+mXOBekLUFbzr$h8hE#59PE?_oJCQqg*E#%(7H7PiXBN@N#;y2u+$9G1*}5LA1Nw9>Zl%*!JXfD< zobh3*&NSv;9N(&I;CV{uaJ1rYOjIS%UsS>vumqN~O0dk$V5^TYK*t0R!TZo37uTL_ z_*DLbEAT|Bj`P+d zPvN5SxLAng3Ti&D7C7d6?fWCEnJ^jzL7uHw==&d|-S=ra0-W5^sOv8s-t`^&?IQi{ zn+?67Mx$y$Hzv4B^PyRo;U{`MNP7hTkCe?Sli3CgOQfj&hkHBzC;0SCn&%U##IG2s zN~*OLgL59P?(O&kAOTP7KyINvQYe)Qjtx$J-qip;NuKPO8D+unQH?zRoe{Eeuhk+J z06##$zlE0Fhs}Ez@HK#A4?z4ot?d?AImVbmJlGt;UQsKbK(Cx|e`^D$x+n47zO%7; zNcx+|q-%l0UyY`knvFGFSPT<`3MqP1mZPMO}LOWgCM#jW83-vd;^?##3 zA@+Y0_DoIRbCLKhvVL%cncA-hGCx#9ey>psO2LPFQ z<_Uk9fo%qSM)U$-?{BQ)UoT?;%>V8>qA?*&!njux%1r~E!P7s>^Kw+=(%E~sg;<>z z<*1$#ITXK_7s5O*M3aS?bX*cdS&7Cn1riCeAP7-WR5Up%$%dX@5*0b3LbvcPjOc*Hd z%DTpcMMXFB<)ufKvwHr4^J9I*^x_LhPq6SU+y&z;>h2Q8v9T?Z#vhE>oJx(d5kLzh zz)C>a-J@Zr_K1`z{m1!kH{blmHwfxbd$`jcf$x}0yPWOZC z%Op!5ZXWG+1_M8afP~3->eHazvRe+FWLiMY1ggte2iirCl6^9$$#^$rLe}R6BD8@o zkmsZp;4HrE=5p@m;03DzB=oXB<|{_ZwF?)n!80`W-*O4BLK*Cv38E4K;WG__9?tQ0Q7#u2%h&bgPD=kLf4Kk^lPMLfBZ z!WZV}7859RJDaWOB|*qmm=aLWrha5unm={nTKqy5y{C;YBoim+j$gPIT@<}B@~7z2 zAt|K8Oj`j=y4optfIx`PS%?%ypIyxV%wxsc7xD|&Xq)`CE?jUgTxi2?F~nimzzq+y&099z zKG+6$B%oGoQ=7=Gzw=_xm;4%nhd9>r@!f!_h;HLzc^K?MctNb5!ZIwDU-8E#3avkO zTe-*~6qRhAn=0YAw>@_5l#o+aSc$z|&^U4~3iuTD)*fD8xI7gWtCAc}Fi2W^2!dNVd!pj zyG9E(a@sW7p1y*E5&qluFxkC4M8d&1w!?xGm;i>@lL$n&2$A(+#DLX#5v*lRurO1T zEX?09cGi5Pa%S3y%X&O3#^l=FM^vReEk$aAX0X)?`6Q8nPws+GO0qV~!zbG`L~KC5 z?OhvvJF3uc<4+DsXFRWd9ko24FTKe%YsmQ3;m3aUSAi@L9IW9hKHp;3^EFC)v6-jo zYKrGO@Y4r}@kZSmZ|eI}1>2stXCIu!uc&q3+}u}HC6Q26`ufjBosk}or(3Ob{BeoV#ebE{W^;~d z7^dU*xjymt0=A%rRSDYa@GX1i@H@Uq4j1djjj=~s$o2JX|My9PQh{d)z!nIIb`U^k zc~6|;J9~W}TeRjwh~T7)t{3YDF-XM5vf(Y}a^wBS?c*2~N@Zt=!Q4y0u-9aQcykSN71n=Jfa z@$*wwRZf*E+2_o{)ZQxWW-C^bovBxgPJlb6Pvo&Au|ZA*yhl+PLda?j3psti$-7R= zX}Qij1CD^9txjjdxpBi=UxRIbKn=hN1A-+d3jWOj4XT|iZ-0ydGFrO?icCk@>Zp&x zzU^0MbF&4g`4e$_M3|pIj+m%_n)H*2`m<#aA8U0ya|+FgMtHF5IMtIU$tyF_6t_Zm z-g*7{9d}%R4!6g6&GpJ0NN;bMA9R+MoO9>Ms~ar$)vMhue(v2f4wgLz_bxFpOaut% zF<=ME9Ss)T^E#Ug$4{IH78v)tb3eLx;>7V#aO{c1_n6N15IR~LH%zkzG7>|!Xoy_o z(X8&eUh_nhhqFbame=)s&A`GFKf}j?S;MtPrggbuK@k0ahO)Q@%SY2)+(Ei8Dj5ISn%Np;KhIHJzd zplIZfW+jb+Te>}TL6vYP+A~XWa)J$tML$1s-D=da0v8xXn>O*VQKi#Ap*Cz!XY$8*w@r2Iu-k&*Zd12Jwy^FMUsM$ogWT(?=PK=Rn0|D}9y>VD zBpRhLIc0vgwYj->s@!y!mfWSuIWj|HWcRO&WEsPc$&x;muU7L*#e6ka%@<$4XJvf; z`N8w}j|}Vm{#1c9_brZ>0NbTLQ?m1RX~qh!jxWBr^CJG6T-W!mCkIM^1RdWZz8RA( zV_Yt*tQ3CoN`84czqf^6zMNlP$zQpWUs=wFMzINfvVRRxp9=($8)83w117On0Y39M zzJd$HfLOi>51_LlEjVm}P&}sYf;SM_K)#DWc@oGv zNcmDJg9Y&70s~5u8ZmJ`I_JS?Lcj*iP{&G0jb7A^nvp}F$Xw?*atzMU5j2K-Zy0~Hz7AhFe*Di5s16z1ex3xcb0XKn zYj^C#i2_L#Kh83dINui0ljDq^`q}%O`+}LT98zoFm%QcmPvSKTBrkxh`0Ab5@UP64CWz$5Hx=;=@&tTBXDfv`O`Nh~>VJaW^E!~l%nn$#)*KtTeZn6A;N zb7E99d|yB>^qfYTHQ_tnh7++f17Z%CIi|~m!omLtV)dyWMl8-G8)E3FkCP^lI#47+ zPKn;fGKJfUttKmlneh7g>64`}!?43Y2=feEJW_wxV?_oD5}TV}eDlKm6zhiBXk4~R z%`?rCAPSkqwZ%+AmV^i^^s2d3mX~-lX%=Ob6A%~HZbMAEqMNB|vzn=7>ABl-6IhM)I zO(mEpY|Qd%CdV-0u%aI=&XmgOd_2mA)w7DK$D?Z83bQ;L76moKi7Y~j{3o2ua1+{lRmEw^k}e&4?C9dv74cZmx2uCCV~E8D2s-Nex?CmOXtJ_gC{34E zO1i3wZ=j*^Mk_o!rAs=;nu*&JCd=tk+$u}w5i5%^)l^ccV`)p7*JPF%P~)X%GY?U$ z9|<38WYq<*#kx4KpA|Pz%Nh21_O@s9px>jC1+jGlhJ@~8Jd_O|OoYU0lGW4#?|k5) zK=o%g#b@mSY+;%-1)-&=wQcuMcW1&yo;b|=`^%JD0i69t zerA&t_gP$C5C>?P{oj5lv>3V!UiMh@8TlU*>*KOPo1S_qQ)oBnon;bs>TL$Xu!e7+ z!WutM=WX&uS5g;eEnSW(creXoHJ;-|HIi8Hu9%64D)OAI=CxQ1zllgiDH2I2BFkv8 z9DSE9#uVhLQX(O8subo7Md=G7FLMHYFW?zW6mZ)}>O&8T5-$m1BP{T&z+K{aa;^!2 zr;~0H+dB`^o?b>mqX**A7GX9v-t~V5@AZdBH0k%&8n3moudz0sZ*rIT+7Um8M7h~( zZFV}ScXNQt?axcw=+BAVER(z6v}$Fcj)n4iMJGQ&Po>jg``ldgY;aA#{9)Al5$%ah@M+a1?36Jt_7CETA--o7&r#sBo&_PkRwzZK%Qs@6N?V9d6@twF&fc04voZc8@(ay7I^nW044V7+57NoOOK# zuu;^cElKOP`a6<(E2IVt8pQ?;iZi<1K0e?#p|LM=pWL;Rq4Qw-#Oo!N@|t5mDj2gK zH>p{tcuglM`;_3h(1IHUNPQ8M0AElnT($`6=Evz~&fAM-EP_uWF|(*gB6`u(HT+i7 z>D!OOcdym^_=(S6EaG3x7oRi>QW$o2!cxJEWq2VI#d2R5JZi&o(TrvUJ~R9;^=mj6 zzmLM+6&|~ZfX+@mdbiy%8g_q-YPlWY$K4_8O`LF!?q^?UmTP+wMZF2)h4=TJaUShS zvW1p2ks%W(E8!j-VJA}B`U3S`u~2^uOWOb`L9i81~YE zW!&1IdiVOpwTtFNi@4WY*Y~8wj_@SYc#dd7yZcRGk)B-z{2X8)F{}X1p3hRgV%BKi zt0QAT+Xy#UZYH~wQzJXNazl>AKmm7Py>axThTlA|%@k{l}% zvNnAgJok#;98SvxvXudaIH+h=c|@3gkRv%-QX_i`_W9Q*vhiGHaR$nEL(yX|W^g%< zkBa7)nfc2NH5OBWZLDB6h>bgnU-V$x^U!Z9)LwSLy>&XBjfvK8wc4$X-el{0YZbxR z)F~?S-h?=Ro<`eSj_cdMDRd?wumOn7QIZazd)od!14%bbcQg*^C8Okf*Dp0L83$(J zl74ewHi3Mg{P_b$lEwLk{W@@|l95BVBwg^*!Rf?U&c1O&a3Z@n6|i?Ct-T!z`jdx^2O=&qn6Hic4(yX|63`?^(ng)- zeev?T)}ka9kp6!_fAz}gH-mhyd(;2J{Nh4>0Y4V=i+giX{15Qs)#oouporp=^H=tO z`K!};Fcie_j+1Ehxlo7$l`cW2!90Z~1ejTxO9d?5Jh<0DIM0V>v?QA8+8ccCNHn8H zhA*Jgnl#*%G<3R@fArD(G{DU|@d$e4{`*((B9gYIW;P82Ycii(F69j)Us@(huO}yd z1wBV%F-!q8?`fiSQ%~?|BC3L^W zL5$`Xs+H-Sm53@L&+-zUdXh#eV^^vRyViVd(K&(j?lAtt%J&Ipu{LkbOJbrG4`U%* zkz`2}IYHH?oNhvtd^r;^lr@T_>7&Er*}l$|38p_K(jhW8+FmKQ$}7(wn?ABI-0fkd zlQ*=kmK3n^*#gjD=ZVCILvRGE1U-c!H-qhmUxbiGOQ3{__<0Hd{;@1djxT0UmzM9C zQpHNcKY4?=Ag1v10bxN%2n*s5;NwYgQ9#8^MO3HmST3Dzj85?P&fq75zw>5cQJfVQ zgnxn0y*Xw`;%`NYdNlF`s?jZAUYH)ooMMe3f@oZBz2W)uV(Fu{dJ?f%u0;@bkVz!8 z<@=5>VJ)AHWzw3Nnoj6pJ;y|Z6B0#RkgmvjQbI@W`!Gi$Ng$wP@t&oUp36l=(-5?@ zS$n-GA}r{)u=HORjiq}Qhr0j}>hJYU#@pg?0?MoqIJRK+Ywzr|gGb~#9!`N1dWE$1 z{s>Fbwo32LqIUTB%>0#B_J#M}^X}}}Zag4*9L(;X%P%FY zsMab?G9-imY)g;hRZ+pRry^>@fA{25mES7V-y%uxl(Nzd`Rf87izGCdhqXi`w(#VW z=5Ocm$MBhaL&}E6n2O^zrk>e>J2k+I^XO(1h;MfrYcr%tNBg&vdod&p@Y?6_0epJ} z|E~K0pcZgGUzL8%p+#2z(ewCzAnoOev za|_&HLT9^5y<+QLa>&KvjQS=O-*so@!b$9@yfk)zC)H1(Z`)%(`@uo^lVJXu z_uId|`|f?48&Yl$N&ALFI6xl>5H^~$H+Ta7P$+lN`M{oq2pP36U1kWD` z+hIS;ZHPz#mjL|d@tf@*+i~Le?R8|>aRW94a16$8celx$<4t7k4t`@3=ewbc73{5n z^IFnl$*~D>C4PGF+9s>2pWe39+iDNSSj^BiV2>1tg$pOQy>!R%K7OJu#69&}0p0$c zBj0bbYiJPv3%r8VYtVpLx!R^)g!I{NT)fn1T)Nok+gtXIZC|{&bMfM+9@jk^U7AGG z(N!2HS=om+Wd*PH=o~-n(SRe39_}7rL2VmPurE=0#ifUrY`a0v0{5j$;_*iqj7^I` z+ayMmJ^uZ{|J_Dc!Sf4+e|jod#qV6->D=-tmQc&KhdXx14(37IOQ+mlO`oTN96>G? zs0#qOg-tq*QU`j!p73-H8vtkxgXd+gJd3mG19`TMLbh$T%+A2jh-z7+!SDsT@swpGcIRJ?W=AOp7Hy3yW+^Fe<+?{$ft zN)LrRDqo|lTXc>ykOB0uHgN}x+o+3YF<7H;+qK8P-$V|<9SBtb!ODQ~M$D^D%XVAa z5PjF~fRlC*Ltx3ty51N7Rar`y74 zA+njX(b*VuIz5MA+z$t>k?rNj@qN2M@Oufq1QxG}zSXpVz`ai5Zc7a;r&Y&6Q=sUS zeGLukXro;(tg)cohb4s6NPc?l@_bR@QF|ttX01pjygd9a`e>Wsgh(ti9}^KH=`$bU z1%?sjbiO{F%_I{MO%nMq!=Qna$mTNz9qXH!IU|Y|bqO(ox}I_#kQGT2WK)eJMM+4} zL_A}pb*x^oj3lT^M2#q_6b<=46@Q9aWE}yPGD=g3B{;0^0;S>_iA({l5_qDc2;Z9a zV~^$i$7kM@NTrZwND-_lM6^uWj76G+mfL>}f7{fPQ>vtf#k3ISP^OxXC}?yq|CHeV zRVMSc{JhJMIpwH7G;>vxaPDF%md@5wdknAYisz%D15|?U|pC&Yk<&$b?ambb>G0prHIO) zmzA(6AY>Q_31V1z88K=^it}#>awhP^hEpRl9qUIyHb?{@8nmGU_d%ZPW7(huky}_$ z*xlW=DHKz{ACsg5bkul`s!gWT?{rXzfRRBe?N%G7vpG&Bh?{0ohUg{%e5TH#boNr98J2pP=_koYQ-=AJD2jz30D;qFG^nf7T-=H$8+uNnG>JB1aP3^$G zNAUM!-5cMZGV2jZ0)RHR_efAwx>RMvL*IpwJ8>9iXpaEc+H_~;|IfTZ%*SFmtg`Ll z_G`+U-IKSUpB_wioWyWv6qn&+`-CbZBoX3wSvDxUw?*h~h~-IbZ%bO+8SbjmZd)A; zUV$h>dJ%V(655_U zJLk@wokd$Np@^9SQNi;S+9bY0Y0ob&1S88g%z2KXfQfFH#h7aN#`a_ zhxWlwq4yJ9(<)(}BL*yRtbtj1?G$)UHYvfHu!zvz@hswxwgmV@rniGUnMxGD%nBuBjUh6 z-CC{*7Kx@Lo2rzYqUzz85&lzfx2I8a$feu+A9dX?UbYsZiGr!f0LmA~eG4o5JH^6$ zVV8Q?Y%E1Rcc!tO@hJ^r>iCStSgY@JyzOxMheA#V7=3yj|IaJq2sfjQ+wb&<8!~{M z;o;#CKS=OT#CI7O9YAu(gI8p=2G0ZFmg{5Jr~QaB`JB04Y%S;ViYENhXsj!h_aU4Ne_QSy`lEPZa_lSGbzJ#QfI38d`=MVWTLWO)FLs(lrD*}FcwY- zY;KDl#u&Q3UH@N%mciP53e|)$(nJA)o?;Q?O{?j@_dkbkR#z*2m`#28kMdDL=VLto zZa&UO1tD7Cb&bzQ;T_LEE09Ap|3`dWMXsLSPRFD8C-{<}3(w-O!}s#M8s`f*jTnA6 zy7))<>NHp_;$uAN58<_pAgp^{roxyVq%pcde#_(Gc4CoqlEo7+;0OsC>f*~sE{OBs zjWsV`ID$U`L)I9Z6V`2mpp~pxba$gcK%6{sk5LALxzd{->pO2wk%2nSAe4Hu(|_!l z>A5mo#UDA8Rn6a@0~wL<$DncI2UG+A`bKqm*Ihm5s(z$GW{jETspY9+<`@n8LS4Ie z_r2L-bsg6U|ILf*Rfq~p)37oBe$&0LB@eaY(0nPVB3-YE*YaAh7@x=WeJZ|OA&pvD zj;Hha{1IpK?j!j^A)Ps$U8m>)$i)rt)MSy0nGAgS?oH=Np^yjM-*NfIoM9e*J|bK4 z1kBL_U*HjuPJIj`y!yZ@B`jNg;2qRE;#2g1di86oH|b|LSFhDQ;A$^KP4INTP2zn6 zoUrHd$iD})Kp$z2n$^~k&!M$!HJ3eYMeuBI9G>OD(VpEm;5lzX^I_#+lk;r2l8piH zkAx4E@Y#4;8@_83udSPHI`zJb9)|zexBCOKq1jiZRy-{$*-8X9>LZn`BB$e6sH5<3 zozZy4uN|MCVvLVjC;Q>NX&Gb@px!hMi<Wtb~@dFP3`}-Y}iw>Cox7Rba@SjyYKFb|F%FP~c;vd-X zvzLo_7|S0gl;Q@Z7ysGnY85})X3K!EEYimRK-$<_Er>5WUPr-nuuMIRSL+b}Z7ow+ z73#fSZB(0N3m14}n``((At_KcHt10%XvPF-57vvTrv;&6C~O$3)?tz3G=*n0LyIxW zyjd{AjL3^hES|nCok_@HkqMgx%ZUhL>ndIx$UPl!z-*s&rdA!D-oJoPf-?p0^1&ALC)}Y~mSf31lDMckiWU zk2-9dlda(TS`ezNikkpm>2C>PLF6ORuz(~XBH~iAXbZ6-IhT+Sjz)M<2$xyrE`~+D zlZ7LhcsiGuy4#2XtQf}%0?Q#3=A*{lQ;A$Uo;gxTRx_FE#Js^$wnxANs+H=7pj$?% z(QMQ}lOd!7wFYZ7%G>>I6v8s|aNE49M(}ttZDLgd>)UV(r0F~!z#0~59DHFn|I5Mp zdw4N=8FJ}wZP^{-i|SJSfqw51{Jj&vYnG^kZ@J|mmr`4U=T*O_#nz|`{@A93&n!IA zRB;{x!?FyAU&E}#rFfZFSs6E6l=m8ukK#s@Srvbh;w1bnM&RHlf-O7-U}|zKC0nIv zHX=)$&Pz(_YD%AMRUKbaBwptvIg*W*EIAdEBX*%QogdYS>W08TPFbvoB>}6*zOLAC zJVg=fvmLzhxcE6}c`Bo05G0u?PbVHC6VLH$!~<}e2ZksxQ)00L>pWPTUZSC&FiK#M zfHDcv7VLCT{ErCQ`?HoPA(@FuEhWKNh!>nzW|o!1<*b{Fg_%f%3CD77wj7q(xpXV- z@ChtrBzWgj0*_2Kp|qqJQjjF>D&i?65|z(#(&kLMm8&H=7&Tn7mOYa$Pp6KB!^f@C zro^9CViEbYpp5O7JH*CLW9Gs4Rj-qM*S!d+j_W#^=bz66P*7XHaplTypwL4P?ZH8% zI`+TxxYJ8mioODK4WI%7ZX^~n0goxqoJ3V{48SuGy-ETZ2s6lNghEUL?qbmOu+CNW zv72y*Lmw@eiD+bIDIey(%rd$tve86bl%EWT6DdRF_{$t04TrPw=$B^7)l5zl=c~43 zE|fSXRn9U@B&8)86j$m6}UyYB(ZA6O0^XmptP{bmbSDPb$ZUAba zmBh;f`k#O2InJpz=FZ!5=U+DymuDp{W~B3_^_3&XZacDi^5}#0@Sh$#TFlN~xc|bO zAuF~77F8)f_4u0~pDG-=b~F_k+m&~)&PR~|L#Q-%x&r{371Qs7#Kp|lyz2f5`pWQQ zxKhfKVuZRrnS|kMevk_MP>wPS;N9hnF10vCjhEL7nNw_Np11+ zzqc-`HA{=G&fQ+yr2<)N=^pEa!Vd0>Y>NQLSAfKU1~f~ zx9?n3t4nyHo;zb?s?|oNk|pZ&IS{v9b@5KS{y<~tYD3HyMC}Yn;Y-iMy5Fb_yf2+w zF9+Hbu(7IMgv%lLSb?^)Xz5ng#!_*M%ANNfir$Dkavb`-0hL7iK}g)mHuI=g7JXC& zf#~`>0iN>tP=lc4j^S|jQvmJ#s5#zx^O_jB9tj84Tz*8ryjY`%+UNwi7JZtdmg>wv;6%$OC)0?mxP+bxO^f2HUI- zs!i4~^XjRu+7Ku7k^p-g(mXzBvV4}8WsSbW7rQORjPjqY)a#Yc@=;T10c{*3Pclu~P^UCFkgPI5eqvd$}2$D4=$ZWOB$N)UIvQnSXE z6F>9ZozG2OM5#N~PkriB=*D;4@7!=*19oi#82(v2S2hWTKT#r*l%`<>cnH8+AfMx< z5{u+{1|s|bg?^-DPPLB2A|hf?cxov%*Ss*Jgjqhia`y7_`r?{^#48tLMeqga|Q3fNaX`mpG`u)XUo&Oe=cjQUpz+wMuU;7Rg>p6Km|L%-9 z2}70IBmo!r@0VdO?DxMEsYbq}Y4ot&>-8GfuV4SG(G@s+8DGU01N$75w+c%@hx1l7 z4&bYD-GjKQY}$|iA6(v#5dVRTp@%|`hu$7~Kgd8n{%$hDj8#F(fKaVPSU}DJ*GNx+ zAAPsH1ZZ1kZNj=obVs8O4$)vW&9nGAY*Pc;FN1ze(ltTQ^aMS~qN?hOQkSvvF6si8 z%ogLxnOuT>3P1yXjF)vYW9hQ2TN*EXRZ@Om&}5F2wWuodysW-;_HDDJUweZh9ATr$ zOmWIoAHJQ7#G@A9*!5}sK3AQpU`ihPvd!53B}3YBG$E=U~;br zr-%^%02_psEPnHwqKs;P`_i+Ty1cgb-M?K{(1sihfAgE+==(nWk|XEkT%+-+4=;~p z;9bNM|@`b9(BYM&pt-H@7}_Zg%$E>rT(G z+tjpMxAau=o@T0sRf&7g&d!{1ba8B7-XXScedNnK<}n$qE2GJ)IfgMTyL2flPcCy5 zz7Tnfm}fI;(|21Qgkfkx7E9o{Wd*Mi?O;>`@q{NMmP&;MJn>S2fx1eQAZx4|L$pkt zNa<^->ZLgeF`qTQiQDA#uIYr*agchS~=HNb1$cr0ec@MD`EUO(KLO~qqc z&8}&&cxo2)RB1>8&R`Q`=$a<#yeEo(XPOBWeh^dW;X*tfHFzZwQFw#!WbMOt^m(%C z)QaG9$&#nHE7A0x;LugugJrx;Kp#6DcXaHyG!l$V$`F%DFM3-LuJ_mq&f4Cd`KSjS0@O$be}Rr{Ij2Ky@T)gAsGS+GNx&m-nR@epoeo%gVdn>T5Ab+}izT=~g^}@& z53T|3bI9)CSHSu)&Ebw|8m&Rw1!~@n7V6{c9sfHm@-ecFetXbz+Qx=G_GfbmhG3TB zof&w66TsSO5Njtxb~~bo`ud~K*QdX)Fe3^M&$NXMU%RZTTkJ~Yc=Vy@i70ZNx8)h$ z5kzTARWDch3?6RBqsJo!{NYGn{Y~7Tz;;b^QwL4^b}|b~SriqL(%e*0FJp^lHYp~j zEMYcN2#57)M@ebcf*G-*b2BlHLr+@@192LRV&&}W?CV;wvSt}tDS7n4*{VH~7igZB zUQ4dN6^bt}PkX=y1O)+X0xM0=>_V(nuc3TPhaY5bwf^0bFGNq0GY%Mf1c zPhq)e3SWTDXyOR*2)o3_Z z#9s-bf$2=;19s*CspTXBC{N;|FIXiMD$F}1$U;(ooePH*0l9(_4s*Yr%Fh?TiMu;r zAYmAqSp8@?qKTpw34b&x)Y66duV43NvX?zS9}S`@E7UpF1BLYT^>t)`O%9!oA}bWPeDv}7CeWWq#t>y z(mix9+_G*Y_N;L~u0+YcUQ}5Je=BxmP5r;y5ReuGmkg6Rp4Q8Y zLYmBYkyaMZSzfUc0aj45^|hy_@1THDhtzjy_~=!1uG%JfPaoc<#-Z)n?zsoItl?BM zJ6_w4F}oaQ00tnSs?1gOJxUDdUtA0aSec%t+yU>I4#qv(3>KI>u@1Xar6|x001&xrt z5lcXO?>aI4F0ZZsiO8u~H{yH}J+hT(`DjLDw#M_xxvZ143TwsON<6-jE3Or+q?0`- z9Yrg#^mICsmL&W# zosO+cA`=d`BWNL+&!wh;&SN^2%O@8CxPT_@xs@e~&$Q;(if(G{C3~=d#x}G+%P#~< zgmZ20&l2S(NT@+3@YX-twozE$Ct4RTMa@y;618S6(85OYuJ((50~d_zN6Ud$7ToT) zN3EReb)U&j&n}VMisdIf?X+Gh#whwz%Kt5Lj9!U(tw9>N)!zrd6aaMHFMaM|Y zrt_1xyx%ixIJFUGNvCx<2khL6kv=o1IB>*9EKTa^T6P& zIgi5(h6B$`rJrYpc{al^sNVhm8zF_1nbl_IdxmYR8 zWl3^kAk2)b?$8A9MY^`mVxy!OY?mF1(stQA0rD&m71D$gWXCY{&TNIN1QkgL`MieL z7ve>sz-L31YQAPv*L8zzd#mMZS~!sih>4J_Ml;b+h)el1ojGqUPiLY_#sC!80<;pA z*q-zxqRm97;aH-I4Rb0L;RG$4i%^CPR#du`xg#YWdF+qVk#JNFtJ%D0vux_jZ)n7D z+0_7y{n#!Z&?6nKHqr;E=cdF#_zPT=`$E`0U5oIq^7~)KM+VM?%Z``f(e0B>J(M+3(S9JT=7$*jtRk=&D%%a6n_g~8at z>>6~DDRwkveq+A4CKYq%8gy-LJw&9@|$iqswB$2E%ej2&D#BaE!Dh`ymL_0F`pND68nB?5L86ClQ~kF6Ap6SIsY! zYQum6Vhiu;*kL7r89;LMB*8uCX$7?$azi9AK(K#&sAf|NWdTB=ugNWh$LfGj;A*Qer~k) zSQs&y*_MI(%1(FF*x4~8%jyrn(}D2_&(P-_%V19nY!5mTtXs%4wHRXs>>gbgx9K)R z`48~SFin$43}Ah@+w0L?h^CD8y*~Q!dWgdOkm#z{?^!)GBHr2}j_uihLA<>r-G$dZ z7d?-8-U@hZj_$necolGL!cwY?Z4@1rZsU$QQNci@%R12hEW7Sw1`r?szF313JP4Kw z4N5DA6uFow#8N3bT$DmQHMCOkf>M%{)N*AlpC0&qp>QJQ4F#g1a4;ASMFSykUJ7%+ z>GK7`u~aM(ONWzUvlB{10cRCw)_{rr?BPVj#c_9%~68TIzA%+AYBqq|Ce72kje>@z{E2UI8 znou(3<;L4m=?I99Bk2?$2t{IPo=;230JkYLmdn*rJdkT;)01?bt)sP#o#?>W8&=xv zn)J^dQ+f*$%&kfKO&G0pi3wyAiyBfhuem3^Z}8<81aE%Q=CRjmN8MW!iEQ3S_D@m zh=;BX^_c}Zq0D5;DP?X$!Gg)w+{S$KuGW!4GOt!w=2x#$lE=cJ<1QIrlp*TcMw}H4 z|G|yaNn6`}j1S%%{<&?Nrr#KVz5ZafX)zVtXrFkkM`YYwt>Q8(5L^c6fGI<+4F98T zU7*>f1*CiL1G9IH3=9lrUmzL(LV0pbdk#Fi=zZjPNrLyT3T(*DL>42MLuYR3BfI+n z`m3bj-RxOQzcJPW48WD!BG$mRF!Ky|L3piij&aYuBV4Tj=Hq-9@Fk#dXfh|d4iC|K zbc41zYm{Nv+S;;ASIpJ`Vw&iPYG$)w%>5Hb@9Nq}m*;DPRsa+^s`NaoU6j(qjt+hde% zW*&39JDs22g;sEYwstW`&jgKJ!H9fz-#Ndwo!f}_X&onHC%$z|fnTzPVRUrO#;nOE zOi$!-)nZ?YayZm05aQJbp)GM&;-wB@znpkk0LDf? z=%YIpTsV4+$@1HD&N;a!obqZ;4SY_W_Uie2SR@t!F^2FHz~4-0J1lk^>wwi6_ThSq zDab9RE_cOj%z#fNT92xXm883iYJ=}SOFVOjSF7EViyNWNhJNJkBWI<Y?(Q3Pg z#(2#Ke*@m}IIIx;>aprIi-*tkt^__P_UmY*7J~BsNy3>i!}L+v-8kwegP7e;IYTX zj}`1a>>K2d$QS8&+;CZ!bbzKjLE1~eC!o<0^0$<@;Dt1!M`;48xDcNYReWF-+d(sY z9Dr{QghGL0wQ#l=2zu2*LG=a$#j}NKQJ{3?M0y|y={+_iFLQoBmsqbRNYXEaLh5=V zv95+ffZ@3>!%F?)LUgCOp+)r_)No);=w)FY zJp#7nDJJ0?6P3(=V zJ3nlVp2m}Ae}Nv#@C`X$9*0lVM@|r47u}k`ICCx^esD}RbVj`ncW&O?)wgT{cFWQ2 zGn@1pt~TqyeWF91AWK4p+0|j_(FPcSB0tFsC%p6}h1L@3)CI~P5*cF1(Ff>EUc8Ww z`@;$uewSY^O0(kIq}QI9n>}z4qv##du*}KR0J;m5O#kicz*>_}dX*EV)*x9c63J zeLtt?qX@2B~ zOL8I=PVpofjE1A>bTk~`c&{(OdA$K45|@i5DVYqXIT8&;@O~&r?|TEhj|2i@TrRzK zb@uOTZ7E6W`FJ#W?A$R`$t5#so)lXrJ5dt!i}BP9C&W`);rqq;|3fN7f@$6x<3q_@ ziuVd$A1C;{L4Tm26`}!&^TvcwDwpJZ0`bun@R1-FC@jscwrld7$P2l;P^_x!syD1> zWi{ZV1X8Q0&iH-4P(Bri_(SD%K_l}Me0m<_e~OI?V*g9F(gpv0%t@1t#U6MiSaMgk z;6jT8HGu4(2Z^rqM%R=ivkPI1iNw@yW0?ogLjj<2I->#1MANpREwf|mV4={rF@>`KDx^VFbSCc^``+7l zop-7sP2aZ~-tBE-VF4_AHdA*;xTB-|>o1dkyXE-T?O%=odRt?^vLM~~XO>rTp>6D2 z-iM2wj`O!qp?%lwu}p)>^vj5o0@g_^KHVtNhcIGA$c||khmxt>@@xu?toe_#!DT=? zpPpULGSz4*`S?h1B97Ley|y@DL9)(}@}{He*w^b`+f~uNF=>1Vd?3&*1{}7x2XK-{ z2?LiI<*v3#?`&$8-qXNu9Y1W2Wd$R-63!{gH!y@q;1T}ha?!Gim&wx36}Y%Entv9# zK;J27qtc+A2?Gaw44yOe&*B*#jkshG(^wUtV_O1SZ?2KwGkhBfLls3$~cI_%gRqx7WX#3O1rXS7wSFcAwKtrA3zYQUX! z0>O#inK%A1kqwg9*cDvPY7diKA{!Im{fT$#AFI`9l_{0=cz*bSyg@rBCO(2Mfq&U$ zE&C8njL6)(bz1Y<PzMmU00VH!6CQ9DAnZ4YhCo}U z*#EWtyyodYjw*B0kTuzm%wg9s$fjX392NvD8}8DUw0}2y(50gv*R|wI)?IR)6di+W zP+wAwd3g!?O~Uxh%cQP=8F7io%*v<@21Q)mwk!sioz=$Z5v8@pzC(y0tc8Na%lUsU z8okJWP~a~{BJ@w6A#^L}F7U%|czt*I{ddt%gnR~X-z9K7C)_1QF7Tu;tc3$&zSH%4 zIj{e-k>~~CqnJfBsuc)*%+FooL&SF%7xv%93104#e!{(%zZ8j_7rb8nt_Ur3q$lcP z6kG^u=XUWSKguV=w_v#63MctT$(djf*MVU0eG{@rKVtnr|1|bwVcxoRd43`r^JedT z?u^E~5*rbh(1w*|!Ki^rUIhlkerZ5K*xbwrIfVYBd_o?W(g+Sv+IC%=0~sFZcDtLV zxnr6j9yjc`-H69xFlp83+PC%)NN2m3)ZH|r0F{83{UrRMimX=D3i+JqsQ$_d3kPG}eV%lryxUTt$_2J-lgdjBg)tjcnuxYr~hCPj{PqgW9 zOCMO)E}i*wt(mGhZChy~g)SzJ8PS+;$kO%x2xti?DY69iaX|kINY_I^ht8VP0U$;f z7^9%#KY%g9jqe2mwaoeR6178QX|51C9w`UPJpGSoG*yd~1^kWZ5h;?E zd8xPR50HCLUbq_Yw*}wwA-(DK9Rqw+gbKxz<@m(Y!w%i209j6`z%Q7DKp5IokFxur z;a@~aC4T*J;e6tAFH&0U{L=aR>UEVaopb}R=lV8&pAwk0lSFOMdMm9MSthFDtN1`Q z@PPQ7|Fhgp@l)LLvQOvlBli`befC1;eY$3KB9Ym%q%?e?UZ12-eKfzLV7Zg1bQm{f z19X7{Fp}ut@(zZY$V4IW&Zlj=PGr;&-tKWhjHR=M*-(=A@s9;7nS4bIXMEV) zfow8U5JPe>$_bIM5`k}=j0HmZ{JWlxgm_;lnn>prIT8;0xnMLHOU9ykEfNm;1s@*| z$+nD|F2kqkPMD_r^9t?nb08aZ$#WV_86+$n=wa}oSgSi9Owpb%Ffh2a#aYQIF(M;*4@drJm4?r_p!@P!Kz|?(rYhsQN8qY# znYHa7LGtM&Gc+AL2qivGr{u_ak^EFnRdYWTN^kum?QuRC^0@aAk?uzYX2Qq@_YOTbLnR_APoC{(U4l zpNi!2nf0i8u@s+u_1W0U>zdIcKkV#>UJv3hDh%tBvsa~xYo#(F(y_}ZK4H@D816_l zOxH};#2a)?MEpsJq(o;bpc(_yLwTDm*`Qn6z_U$LijM7?r>Jx~MtclPvT% z6h~3g1r=icw0#04q!iabLF#r#-!iy~Uz#z*-6Z|4jW*=ssgWj3sfkvKQIVC7scAQm zid-Ik;|f8HO8BT<@r*I_evVRyW%L+fekx#Z-9nlHL@FIX7z4&`i8R*0>0nCu*Dq>X zu^b8M!C9#s&nSsEDDmQwQ1+`i>F->ELGrw|uJMU>jDEz z7YH!n&@>gMZ5oH1ppA3+8^vz`KHb*V$o!62I!(O1HSD7riHVZ87_T@)*#L(~asU-n zB1mWx&(ElXf%-Fe?7cI;wUz(U({OZjGDD2<8exdHDYpMY5D9x1EJiO(O;ma?Ruf26%tEw0lH@4Gku2l=f-pFf^1rbbvO&tPOX+h9iNu)tvO z>%{&O>@btcifzyY0kn=Ds!9cZKAj9-J+(SFlMebrYvudT6jy4cL@XH!rfMavI!C97 zlv=E>&t8Z|SA-*rR}XJgm2@;9(ivOKsl`mb5DRwZ)eHnl^EkG*7CD6)YnU0frRs5UF~hBil>G* zi$?L>xSaoPQs$5hOmoGcH|Sr?U9N+7>~+<>a6s)x(bwItp(eB4?Bu)X42N%obqTgw zdCU_K+90Rc7)}ka_LL6sl$QD5%<9emkhf^AvAljYPpn4qHz7YMZ`E|m%0GVep8R;v zw`kx0K<#Wn-6(ZrIqmFqegA*qT_^H$zw2L&Y&+$Ioq!Cjy^fxc&yWT ztbs=&fscE;erdLGYi@RS?iRrP+wm-z{jZzL^pL5@+$opm66d-mTVuOh4S$Gznlu6) z&?QpSHj$lV7cNqlorZmIT17UvBHfG5~fv?pM-c` z@Jj9rx-xMOa)3o=Ksf5tLf8EvboOiu0A z62R{2d{oi4s#+9-R!}Tf=QiFX2D?GgLer|+sq_lS|5wtdYJio}gAbDPPEHvsE@U%@ z2w@-zKHFTrT2DFEXth}dri)c9EEg=JW@oxHvxSxYYaoHhn7kdp#M+ToE7C3lP>W}b zf1%@wOjno=nzh-oW4x+&Fl3zrgD=_Us;_9|yWPUd%*;xm+s!u~+}<9*d6YWHH|A0C zHQ(U1?tEj-{x~kv!tuO>R%Q$!7%cU{I-hRXHHG0suquG}Dt(BV^n-_8zA+<}a^;zo z){^EQ-aK8Lwd+yMF2s%=s&(_j=ZHSv$SW#eiZ+kYo7z`Ti))nvRA{yCUC>r)W}ZB5 z_x<0K-zPso`P$>4y-#DPOuBD$PLQIPZYFDu4$NVYc0e4rB0)XKk{6U~5GI4URyXRa ze+BS%QZy=Ek~*EaSS(#8!BDE+PF+gf!yj}f#ebGhMuc>ylfIme#pXI4shrP-Qtf)` zaCXGMpGPmbC+MwTZ`x({cN6$iGMXgX2Jj!~i7>K#l-891SQM zb_`|~N7#n#0V)IyebG=KIldEw9Oe>fQS?bkfdpD>fln1zP&2)gRdi6F(P-^MR0;M15f~81jl?F6@_NU-rW9+Q z68W&`_4~X&;cPx0KQhmGiO=UHLUe4)2Xr;`g{L+KYMHQ>TPGt=q6Ra7fbDjS&}SnZ zNjUF&`I=QTnXYLt7Psrns8jFN^17a{jn`r*zl8Sldkd}G{tQ^OFoAJmmpPzYtIo=` z4LK!OnP44Zmuq8~cs%a+_A&dg8ua~ETTz0m$dOegm4d|Xa7-(73 z=o-C|F(;iWT?mdciJx8^#T{(eF;5b$(e}rty-73Pva?KJ0ZztXAkE^fprxq8x1B<3 z6t;)AY~2+EAQh$)h{t&INgW+0^pkG}mkSLWNt-)M44Qy07pwFcbADrMi=7d}|p{Lp6ckvA3LqWHqYcuAgn;X}pE4}GZk@Mh_Q4;SGE zUfS>W;t02zavV&yfC4K-K=vLd9ow|sz_v5ND7#Ti+%zdYWtv2{Si@Oh!yPX+WJ@!~ znAk6p=k2`Jm&v^&w4~1dW$Zw>m;(w5KY#ssdn^EEvW@SG`b!1km$n-Y!q`Zg`cloP zRrthad6RFn>PD?*)aMQ#zIymDvFK&1!P7elzEU$T88sc!uO6PznMxRiXx}n`AsbK{ ztdI~b%}O?!Xw1H_&5ZCH5I9&&6wu?+(zJ;@D+kuw1xmCx?=QtxTtP@sd41|`6HB!kg(a`2!{?1%I;v{LSk8Z?K@v9EhjE~ z$G%4oJ2P8M_)m)uE-ub{ z1H<3uc(SlK?-R&rj(5@QX#3zo$cmB)mpq*6EO4+4?oz38W=3&*B3^>zh0-6)ZCqWQ zU#Y73kxztYO5O$taYy%`?KaGe3y5plDX_lZ+;=?MY>SBMawL?9#3J-B5sEDDw-(r^ zZ-L=aKJ~Wcs+^ORL|hc(358x(mtA%Q&@KgtJMG%P_j4IRLG#$ru@fakN4Bgi(Gkr^ixVXwp^@^8*kd7WNZDQ`5`Mz9AT$!b1mJUm2<8Ol7@kG6iy_c(0 z&gV(4v>3np>>=9O8EGToaqNNnXfrs2$jH!tZr>{RdXQqqfzTK>8-iFib%3!)u<3Ms zCJoM+>6v)Cx^7!se+Ij1wiHRE(P=!Lh?Hi@R`uwaMRmSdP?SP(UR^wMv})SU7`vH< zqBJsTRZIy0{S&2s;k1wvRoh;j*_x&(x3~x+k4Ozde^YGlXOuvLNnM!?wsGJc(k~Bh zX+$dP%v~qPpvM2gM%7~u{G`__4|ge7ULJ1Ob4Z}*xw?g6gz%ta0^V|^y7|acl>W_w zzj@8^sIb-lwKmEg>6BNcnjMe&Uk^ViCX*t0f*yze=REr%$LQgNkraOy?$N`syPM6s zKh$h~Xk%mJoHK@)-#3SGvoPR{V;)-qIvQ4zoz3Fq&lZ8+4+Vem7lWZ}Z?kmevqj(m zz7tOJZ+|n`J^}J4G{d$jhdVL7vp=lQQN^R?|_EPkH; z6eCJ>Y9A}yc^_-H^yND2Uz7`zFqHfo;n2BxlkQ!~rSxmx_1g4O^1^rQbb8p)Jd<%N zTXw`&umM29piZ1129DTJwZ-|4{E&(D0nn|D5Z0u3^QNf-<*EVU3IbQx2TB0wmSx`T z?sL!n08hAeiz6P@9s6`LeyX8^!TCs5+VkwfsHNkR((Ajuo|8_=DM+X5G0}TH_#ewx z4R-G&Y3%fR=J-2yUUc`Sd0BS)2*1?B5TiOHTwGuTD0v9-KY$6b%#pZn$~IjZTY_~a z^FZVD8{>?2tR4N<9rB7IWuSIiTzdq7o|??kdS1VN+w&=3&{y;OKl%M}-dno9_DP?w zPVamQ7$tWhV>-|pJRfI&v-E4{B@8(E% zqVa||b0p`Pu*HY*kYz0>*#A?l*mI(2?7CVK75>xxGTEPQmkNc9{q%H`^c<%NbHBO} zJH{aVcP4YO#xeMa$8=|jrf7P9obd!b2DbAO%iH~K5YS1%H*QZf-SBszgnqw|VYw!n za7#BZn3I2^FVIhXB!d!w6@^j~oE=Td_Bh<3RnC&*LyVU=7!X^&Y(fMKZTRgh^&-OPq%)MjA<3YMtL}VAX!P*f*Ddi&2yqCP~7NtuO zF4@sE{BmV|R-0X~Xo+G2u)4`sEpNegZslu(nlaCxI>pZ$HOgkiXU1|`rss=*B&L=Y zKxNrL=^Ld*ga$t@3lNDL0@R{GwoVGN(kKNRzyJIBqRP)jQ_VbxpD#jVjAcLQm*63Sz2vP`9=p-kM{ZeUdebdpgR zsl&(~^0rd@XuC8^sWT}3i!p!~mt#5B6gwplQJ2&c^BgPqz2R6a{QgiZ7CM3Lfh}X} zmk(0@`2zKRa+B7CqCeVQ(<8KF3gAF%5OY_WZUxs8dh4f zI|+reW9d0p#q zn&mO+@kKM}O>(4tZQ9vuVqX>Rgl-n;{IdrNa@{G0gRI?4#8j$?j< z$|CURVM0RsI=0S=F&xC)9-y_O92B>QpU&m6w%a`sCBatnm2;qW>d3Bps#kecX$5?a8MASVOltGJu-`LoXnz=Lm zD06Q5QQI9OFdRscANdhJ6(%QWJ)U>_GqJyKrI5X1gU#Us4Nu0FUN=B*XL}fdO3H~# zBiJqtU`D7)%1Dg<_U@~$XuklC3~HNSBp_{@`*l8_gqUN=Jb(Oqa=E-vD(#xOM(-_F z^F9G(b#IGHG+m09>u`IaJm&eg=_($BT{ji=N-e>WI70YX${Ory8*?{q;6NO14{pqD zkS}nDF6b5x-X-&!U(hcca(v$*FOav+z`kp*c`AAvwi@c{Nx~LAaFpm2y^@NHTV6R< zr5Rn-YyMCAd+8&875caziexKUR?b2xdLr?`FT6Qh{$sOH_}Dk0{E^J!CizLkR9HZN zO-GA&@Wx(! zJpkcy@;$XF$=O7Y3A&ZQdfgb?q5PyLZcA+&p4IVsKPs&QRclBMx*|4O0tTZ)?`K!- z8rU4AD62v3OSF2{VddvGHoEnkR2J@%A9E_Hv$iQJql!RnPd{)t^L78m7ieXb#= z-DX$&p!9(cNFT(L`~hM;ccpga?%LhY+2;wow#q(M8errC#!lcIffi71&84LsmyR8i zj@zecn6`6jO{IV5?6V6aA%gZRcQnc%rhzihWYjcV8wT-Q$2k>#asuYVg>4aG>-|*j zQ|~1K?3=3uH`dz$MKFXnHxC5pkF;HwOCk~t4Aq;VffLh=CQ*>P*FX8mFiI@1Z|&K* z92+4Ec^FsTElL`v6%}xwDZT!eB0xZ^H(jx}tF-zhzoFvGN0+)u#5&Jc*k>nnwVl#EdL&Ywo-dR+5?Kwor6;!h6l$!aiVU-E$EEVrl75m#)35SSpp+y<;uBSAu&*di5ID zJQV59Q-j_>p%xQxrKYB#;(%|XpxO>t`0L}zXfU(|!@ffglbEFg)|V6XUdYDzYk-|P zSQqn+rXt{QQtW7%ok^U(&84ikR8-#GY%IYb%hKcA#{2}*Uw0|1D(NLU!8^B#OJeg} zc1c1wyJ@UH2jjU%=MdLoPQ=(6!uJF4uX#X|~(# zKgebBnS3N@21U|yM`+r$E?uI3kLRttlFwZ2UAuJY8rXArMzYeIF1})x(eIAK9!g#i zfQS8#_o6;nN8g}7gBv&g?W{_F@u0FzX~)N%|im z#K&=poGN@I!R|FqOy5fu$refGhhNSoy>T^vy7;Pl#l>G}f9O@K%5tVy3GgJ9BbW0@ zV&AkN8yUKfF?s5$ryjh1Z;AhBpMj6No+ZE*md-I470jE=d(XKp02+6~<> zP`>yE_a`Sd3;=EbgdZ4c(#>>x^0RBagFhzPrB&^CMNU{nn_f=!2;!i41F=1f1Uhd!bmdTR zp0q(@8Vvl)Krk4Xj|RD*ob`FroD^U1dVkjb^Ue7PiG+keJCI~g{>wnM+DOIEi$Nt@ z6hmI(m;7;QxjvtaHL|iG1Xm@<05pnwj3TB{J@^UxE#PkHvzfd;W81`wxOtsG*-NmEm>kY{YpSxzl)Xw zfPi{G@Tgs!1n9|Mx!#9Vu(KGKk*2(g3ei8nH+`z0)MP2WEmtwJQ;1GqL~<2G+T&tI zx)Ihk=zX!bb?9CU?rMA5XLxfk(Lw_Z={#z0$FCMWss)f5(~NrXH63huDZ$d$fH&4X z<8?%*D{>K{I-sSJRI?G+Y}^Iga0;Y_Xs^UjqDP##N$0BxE|R+5rIRojjV8CPYyy$9 zvPs?S>o;}qTG7Bst{egU0==6+mpRbSjK|80Hcqj+&n`8EM+1H?6SO}XXxmoWla#+{ z-=zms0F8Yg8NSs5>iK~JpDI&GR3yBvjNa9j6hp5d?iE%5JxEP}yh>7r0Mk(8pqpsM z-JJr#LU^ofg4KyGwcr&!w&C<4GEZaw8Y%l#1SMW>E@<2oI`sM^0^vk!SRU6r2Xr8& zJ=#xFM)|+)ri=5Ty*kPAOkvzHjq5&3J<{!z=RXKP>~or_?;ZdlHr(0KG#f_Dh5O{Q zQHT#LjkS@h_Mg+cy6$q#VI1O3eX>2$NR^DFP2+(t?P(smJ89s@s==T)T_x?nK(|Nx z#ISU=7tH@TjQBTlQD#LVNxt8HIX2txb#cI%CLMB?c@P#`U&Aqpkaqe3xNJVxduLE* z@q^Ze7^cQ50Xu;?)z%iMU(rK0(bcBfe6qb+skqXNQ2s|t&^~RRibPUa>Yi5r7Opa* zMaP;hbKLeBMBi$|{zjJ-_v<4B0{Do3 z4O@MBfO{s!bp}_bgKM^bU+ig>$=)bWG|id49Ww5Zpsfp4nMQtZ2k7WT>|PZBk9TTa zn4G7DJIqsc-?{opsHwTnZ0&Zf$-YcD)Mu^jxcvWsok(X#*D_zG1A!RPtRJxNK*L(w zuO|C<8ZIB^z8%Kw8(yxj61J47H92?o_L(zPP0QVJblPro13!g)vgMO|b>Koij+bHK{H1AU4k3rT_l7H7X}4k>mlmVZXAb}3PW zErKN3*QQ2T-=V~GY?M2#(LkTc`^aTcbRbL+WH6kkMX=Oj6>#9b51nQS8ys=l{n+`c!9i0iYD%-SYdN6aVl^=2nK zme(XLOS5K+`1oS4$Kj4cOGAot)ujssREc+uV*!!Z5$UmJmnPk@PA@;MVPvz4>5SgL z)A+V@3oD45Up7&WCfWXTP+xJbvF_B})A?Vn`7XL^PPgdZIp9=tszvwqxtmu>?dMCX zsN>nlw4V;l*0_(iCuZbi*G|nx&lJxxT9?QH<)rS|f1t@>+zFKY#DNgg9$1lR61+ZT zQ*L_>>aTs)rrJNFW@wi-Zi*+SI%a3GF=#dJGzS?vjEA_p1JJu&@irU#)C;-E!GwB6 zgHf&xTs1pJr=U4am%yMI*G|_b`ik+g9gl&1HL8KMPb&yCS!s_4v{O45pM(et`c!{? z8$&-qog_fR-5vKHSUg%&eb$#GgTWdlv-FFfbGp#ghfbX*VwC=KYD~6R(@pi`R7F|r zQfsO+`?74Ht%01#%9<;N#50r@1!|c2@-Mhz7F37>`9Cr%LE*I%%>mA2r>UB=P2w3^ zHxpTgPp|ha$^u$9bpxZ15hWpB(vzu&jvtOb9AJjhZ3M41xaaj+T`lg3AA_;1v{mby|TR-})2OfCW1NK+msy_f9N4kRdlN)pgSp!U? z8pc`{con70EKDK&6`V-K3iFu-V`hk1I1X6uQf-iTap7nzRgR0%cubm!hPgn1m-8$4 z1_C}I9XM$SlHe1BdzWWqKJb3q!K2VD6q-lj@XKMJPmJ+C;`Ix%&liq`gV6+cFZW%SbqK3YJzEVy&p zB5Dx0Hd`f9^!XAXc1?6n5b}k1^l6S0ME{p53x9AOWLim5q_!6Oy1!MlSPYk{kPV*OiUT@Vagd@YhB?(R- z+2Ln%L~zEx*Mm0r9nW#k1=R3WElbk@!!E$%rO~?w$81;(mYbgCQ}SG{7b&DO$#5y>x6A{HSYuB;oKz zzk_k*3!bLuqUR^jB3(+11oMpvgjHCLAxZ`eur@ksLzmSnqeR4C7^Ms2%Z8+|`%OpG zKKd}37k&jtLj8M@R0uTBGP5H{4*w|_5d8V$c|Mu+3Bg2A@Xe4;ke+CoUkC(?Gj?+R z_e**EGMN(SUHd~u@eAXJj^~9`a{K{u;6ovAp7c|Z+n#_N0lS!7qKxZmIFh2QpP!bW z7Y^|$pFoG5Z-yn%gFa)Y^xzZyOY(>K89OoKBhKv^nw(@$;P-sAypcZiGvo=Iqh4dK zuxZr3*4uW>uNL{t(;I6KbT*#8eEI$l-+$$bzSzFJe7Li6d3ABIdH+srx%_FZl<~NTAwVkZCojfRgrwp#wV9=SerYBxMi4LDJj-Q7+&UUEihPhq1BL;21IvL>JW@spfy#&RV-f%ij8G7 zE?aJhL2$Iv#Nf9o9Ei6>0c#A9DcrxlyV7{A8~eTOri%m1vm@UdEt3_O(820GKM)zS*KJAdaF znz2tzANzz5lcbn%+r!R3$ZOs9z`OLB?TjwTzD!y1fs>R^DQA50B#p<@cSd;;(0Cn1 zZ3!@gaHpG&;z}q91fs-SbRt2F7I)AuquVuicEJ9Pc%}pfWB!xFXjl*l{chY-g~r$n zMjZvrb!ZrMq{hY=%Q3Kdq)QZdgrOTD!azU(4FLcE=_D>JFBg6+iTKIiW-!XXi*`B9 zUzx?z=>#DmKJFFO^=kCdN2AqsRrJRB5Fv?$wWDu5y4IVCEicF3%NmaTwV9a*`}_IX z*+M1V@aOXCQI$OUD50l(&fiE^3bV7Sq$tv)u9NXVo>Zk#;oNK?rPyejDqueJ7E(`B zKBg05jTS0|V#E^*4Zm$!#FX>l`0)GKl%aTdRuqR{H{3iY#D@W|>`q1Tu|VdX1~`R4 zQ;qxWEp&lPf9m?h?!{9y_uDl0f^B9>OOS`(zpm>ar+Lr1%5uE}!zuNUed^EA_fpsj zOnzv1Nq+J=^ZR2lDE^ABjSRUN^=}lTY%W{^TAG_=09+&LnnNh5xqZ8iQ)0W61gSyTL zv3|9Vc#AgZ(RF5-eD{Qb@)dS^Bl_~KMpE%)v{qOttUfqkX2~YA?_x)jr47)rFO{Xg zGb@GVyO(f|-jKW+<`3P~>E?1BTbb?$!WsNMY~X z%Gb*Acp?=})X+`M?DvUb4Tv!uT&TB~m1H_A6;tR|Vz&|K=*!44o%Fm0)@moJE-%QE zA8C-pFym~>AO!i#&HmOFCWVe z#8fQG8a;jmW7&;iQam2Fzl4aC?v$6qxCbUY9LDgP6Rr(oT+NZMFxV-V!LA3_e^$RH z;7ZB1P(rF#g*GK0e&6qX)$hOB8{+wpb1{4WFWrCtFOi;CRlR~R{5?T{s{l`q@`29Z zW-@=9Aub<#0pcZh=&)@8+g)D;&?jh-v?8Yg846lu^&{}DOnXm;f*@gG_h&|xc=f+y z7arHUq#4#q%u9>#Qa;H`nR;(sXkroc{Z=7v?0pZWC_luf9{73Z;uV+fjm7T00SD5H z`%-7#elu;;Z9@0;=mc0}gZr2G<1X>igAi5AX) zRzjuwwhA`f&W_!3E_}|8-Pv>T|B7NTAJ5nP%VW#IWq*w(1%LL2m=tfkWwB}`jVfi< z(U0mWcDle$!HE-jIvy9JwR|`PqYdR*bj*dq`C3$b{cR7h)WmZl`@jR)6J7AmPe$1B zwuhaKiIa^n`3$8`z-XN@`3cASA6>B=7XdcNm^=)? z4DUfOz&pgPg8Wd!$wc!hx3&4iYD*;Dn$BDsPk$(9n`o0IY2$^!OV*5DdfoZ@N)I~T=~>am7++$FAq+Vv(Rc0eEe6ZtdpzR?~{ ziH6h~+eg+q?0kX(kp-Uq`+N&WW_kMmcp%$cj%8X)fxuEL6I*U(zZ)w={dD#6`u$!$==H^BlhJ4} z8Wn<>TquzU&&Yv5G)d`1HunCI?!Oqv67bj@ylp3tJY6Z6$2iwf1eJVM@Ns^h;0^kC zBKX4(79Wv{SMTGKe3KtqU%&eGt3(t0bYrBCg#3YMkb_6k@Cbb(`7Qdyqz*C&yBkVC zL7b#;Km(Jn;=_F7>hKq@euw6W+0&0-rk^HsHd&-?r*$@?+yu}nEjN$#jIArL9$?2cY9Ij{Xv&1^AEX5tbN!N66Il+ZDjl@t2s9!EBdf?@U!r@4YHgW@7dxJhTY5UG_rN<>f*Z`@8w*BC| z^U)xDR}knp_+tLU*REds@XWK7?$s{Y!t?~qQ=7r`{D)tp>2^Q<8hH}&r77zbBnqjG zxbBgE#k0eKMv2F7F^rbqwBsya$J87Mg@2)3SX>T9 zX6K;Q@A|;&J7Vw>z4QnFZ1IA!9Q2F$x%2uD+yxKJ%|?PwoVFJclEojZp-@=vzn$q=T<_;mzIu)R$}Yx*J*v0 z_pRuc(&_i7(~qy*3(wxW5<7OxrU7pw?_WY&k(a4k2V+6rp*p>uX&zjKYrUS)^^n`Q zQGTzZSASJtNKL@6t&Wyfe@Gci7TI>yHMZJSR^0$O`QIlG|!e&-jbdkscIG<8b*Qw~Bt zr~w9mELh90KGdRo!P^gP2)o_cxSL~g{&8vQRAp49tujA4b8>twFWqI=;CmOZOHY=G zH90VsGj}8=niOt?gS|KN5KT&d*-wAQY35#7lMC}*B;Ln-C-A)Mi6NR)BwVWK2GSMX5e3_46K11qQQ(^|HqyI z{rY9Gl*17`eD?a5WL>*tm0x)%o6lzt+2cCS(Q!>jJr`%A{(Dc}ppTWU(R}_v$5qP_ zp&vM|p1<^@eEm-2s(f93@{;A6V?Ns=8Y86Mapd^WfKb;DoJ<#VeRpg4y#q%F36Elh zy35vC=`S;-8)(@4@-^sc+K&G0fpvJ6Vaap1Z{OabW8fJ|u^#oD@N7`-%~LzTgTFRf z-oU50zTXN6w)?20R}t7;n)2}{F*aUi3Y-7~rkr)Jj{iZ{4LUSs)9w8KZ`l*sm^aMh z=;7lE%LK>PYv|If8Skc?NCDEGU+gv%NEPTm-DA0x7}>E5fkUtLNZxU=f&7p3Gt><5S1(z3HyBENQ@>x3X`w= z7xKsC<7lhn8G&je=(Z9CC@4hN79Rd|_SETSB9Z-c_Vg)w?!-mjdiZj-c|Q9`pUx%{ z%~Pkdcs_lKODst5dH7QHd^2nN_gRQJg3)WifJLwoKZz;dl=UB~{?Gtz1u4De!msZm zUcPMm=OYQ&X_o+&fJGif5B&F3e@Nff{okPZFhBcuzuVIEcwE=Mu?+6EE?W`Gp&<5q z2NW#uEA4Fcj7_75hb^PG*`t5Pgv>04lKm;1loZ%3!LI;up;~T;l+S5B!1Fcn(3^xw z8Q##kAYJXcd>$#E3X~}F{7ea~)M0=zaStvSa*M^WucDw9cE2?5fLo3=i}eP5_Qi6^ z#nWFt&T(14FB6YMLxR_rj?XljjfH$R5bzS-=Sz#>a;dT~d#pOsEXQWJ7%x#aV=N9h z^A=@Jc~dYf%Ed&kNZCxKqt_43dp@s;%8rRt+Xo+1FW2FV$xXu6HfY0mRAN;%L0xAg_Q?luC5^x5$0Nn_Cn5q7?ex?PtLy zb@mwB|4DD!(7v~Ay2q#&WLBNFG693LW0{lUooj<@JJVnSlNdPVJ7M7XARNwt5ICk~ z-2nn;_|mm&BY9ERjui@RqqGt#Y&=Gva&bKaZ27jfY)Kh={x9hBL0Y>cJl{gQ0x%%6 z!|dpT8${N2F8$i(V)4?4=+}4kLDw>SYyQop;^hyGe65XIkXOlg=3lCchcu$)FIk;7*ZM zNRQz=PgogayB~-#6=sNw<2Ks5oT!jOXP&y(V00}zm+t1O%^ja`~M?9>T0fD#Q`VJuQ_Q?T(ALC<% zQFhWE8@m4BI9d3v-8*1qp;+iZye!za{*HW?^2-hM8(0ONxkecaf!P((IR~baF*+lV zFq9Y$1_!Y&)@mJrR~kyA1Ajh7Og3fmpSYqDq{L@KIv+Y8(iSLPz9@6ixEQ-$4c$+F z$?IiZ6@=lZ=4CD*KmW1NM_+AbBW$aARIUmoeojjZN>M3Au0^8Wz&W~4`}yVr;o?j& zU%W1aN>cWhlN+&^@YGUq=@ccDM7CWyYtgT{;!`79SB7Q0;58uMYjk#Ry!&f6*knO*M+PyrDxDD zE_2<$;<3d*ms`H5Pkm(dCsV*T+T4aVGdnw@ZOjd~$JaN<@h-eJKf`R}A1noA0Ikp(Y%o(1SSM!CXyO*B(dB!w66+hcO7mJpan_*Gdr4p zACIq<{dCmnIwSg}`k_Ph`tov}!JUt2k?+&G0alRe!|0){lp?e!nPGmRbIrVV&HVgf zdLq5y-@Ufq?~^D!y4Hd^?RC0WC@N}6d?-K~A6CYfKCq7VEkP(WUyGent*t|TjxsHE z+m2_}w&tn(f_{IIlkypkJN{8Flb5*Mafx`jfJmO8oK;B za5y;p?NOiqDW&bfCdAXaL(J9`P5F^{H()CCKc>g5m_G4oQMP20VHnych=u5x^ew?i zJ}KtFFdAG=adzRXI94#+QH>F|dlR@?p&QTzJ)p;QK@+rqN&o3pj2=&!F_Yosu~7+P zC#}m&_q&?a9glH~Aw(0wWd_%nfOZFw$7@Q33Th`SGsWs0F2Hk7Xd1a(N*p~4I?S_2 z6Q#@rongc27cTGEwj8$y$b0z^CkwoNJP^Plb;r^i$WYMNRrW8K{&WGdj66vzu(7VH z>l;UtMdhNt1U7U_`o&8-w>>Cm;YPF~n}Zk?q-K`@k@gxbfMV#N5&%l`BKl06R=`RY6bu7CFEm3yiT8Fvi+qD_W42dYhJ-CsO!L zT$FoL*gjb&PoDfq!`L>6!D>UFvASJam*EQ${)pdygpa&cd%ux3Z6Q0u$Lzz^CvB%aZ-s||vaRdNQK(N0YS04oPBb^{;vr)vX6@Lp|i!ks4 zi@|_chRIT`w6JhO*Z;EH#juBT+ZcWqJQ9c@p<9=PQ3%`Jzuf-eCz z2JQg^m4 zM2V)vrLGP8a5UktqisXjBiI$dzytolJ=wHOhzdXtAi@`^QNm z(Xnsi-RpCQquwXHQG~#q$tX%@29a*}Nu0Ce^{^9Nmf3Q~PQzcx`o&;|&-ld-r@z7%#_Rr8g*tTh`0;Z`&o)c;2`a6w75~fW=^sPONr&0tawRzr2Vt?u-lBbrh;j z0jmUvV8=0c*M#j6&tje%?Y6!%>_dJ4`Zf`WR433roV{7|QOKU6ReaJ&x{)#XA6NHQ41((mnnm7WEr}bf?Z} z*-qmDazQR@f$uw5$YwPI2KdHehVJ8Q!im^wilZtKhv^D-mpt}ycIvIBv?ynH%E z{}cAv`KN5F?e4xkj(T+G!z8_%WC#&c7F3-YeRT+lL5D3jT0}+&l`)Y7%j@{ZBMDa4T@kfNYw*XWRWd`bEcN0rySVa0fvVF%PrJo+$Quuwf6k zAlF^WaM2lJy6X?)z3w@Swgs?O((PKs<+6j`e?r}kK`CK)2#7+(Kv@|wsJB`4fa(1_=YOZV(%ld;He+_>=@kytXT zHPv{mHM_({#N10d`XTLBYC2AF1?gK*Bbsm=hqJ@`R%-NX#Kp6D0$mc?uEm>^3JJV_NlOz z&1&JNvb|HDY1yE5=csW9nUqgSfe@JcC>-u2AhaJj%HlhRZF;neHUJJ4uukXV8P9po zC3+8N0AS8l3~NGvo#l1B#B#W@!fsFZem_$-8-Z-5$_sSv*xn+f zFI5B(bkH<9QHUp#(oz{pn0s8`lK}w|B8Aysg79*cw$vp)_N^S`@lONOz;9+!#^}2@ z=_!J=0?bz%xZb3XlQYBL+Ee62c{QP3aUtDT+GMvo{HJkYl(^IZ?lUXT)=VDv5M zD^*v?e?HFQ&&M^eGji7h>W*3*CUlf+aijhjzM@t5&)BD(R0ivxNsamBu5B9({;H02 zuCeE$M)y0SGY-OZXx>|uI0yYArk#K^6s|{6R%%4uk z9~NJFbMfw%dTKK(ZRjUXBfhxt`^A^uQoQFLA~n_QT=?yqn_CFGZOfo`$!qAlCmoHn zJ94ffbrft&pdZqFo7@1bl;I{le(s%(zXE@hzvlP=xt5H64+LuTU_N{9_jr&v@MC?` z4U{W^%*O*drqORgaN+)PuINWb`G6l{xC0?c6SubAp8y-!8smF|zDFFz#$ihg*&6F9 z24n4p$B`3(4GZx5hmb#oNV(n-K>@)#SW`g9K+X4XT>y;kh-}zrFuY-S zrhi7>gSZ~R0}4^nU>Lv+05JemgA(b)2pVmlAihQ&Y)(p~0X!C8C*NoXaxuN#KDPYI zMt}@=d-1Fw)eb*VD=t4;7jhTY1QL*IZ#hyczWPcm|I{m^QKDbFrrp;*9Vz`|B2trH z<&{_OYoCcEhR;13DTy_SyjouEk*G^|&-_Ezz%Ql7%n;B{bCua`qP<&#$$(CbU2I$K zUIWRtKzAQy+>KH2=-Rxy$)JJqLC2g-aloB&yD(LlbUOpPmg`5t*>@kjkV4Sr8e4N{n&vb=y*{TURa?WE;#FIo0#Ercr6}jU-Eh{wFQ9-t?fy; z#a7w}AR&@yhtpy^#PfmnB|4L|*t&EET<$`& z{u+uQ00>Gm0F}2NaY4^5!Z?m`C-dt~`DRHaE-J^PdBNq%_Xs&WLye=YfO&{Lk8b@=ptk%aFrWy)|ehu9OQ*q2+2ef89 zW_-X5AhiwP^iXdP3^wK-Ufl?o9dN*M9I~9W=_T;|sk$CzF3rW9A={9Q;|Q?XX<8Ti zUv)a~f4_+zXm&cEbQ8GP@VNJ<)*iXf`rl#G9DgoHq-d~QgKL{|xPp>om7kiZq~l0( z$C{`qjZ@em7^ndR&+z@GNOm@ltM2u@WC)haJEKmw*X!zQ#IB>)2`IsZ#Sv|QZx?)S z$TMXHlk(ku|MDAW)0mM8bo%|fn@6s$dHHCG9v!Yvd9@&S7_ey|$-D8}{eEZc<{7)+ zw>zXy{s;QExKCz@#yC)I*FbDSi6CT2GB`dF9iu6%M^oWZ0M9(7 zJSZE;B;;+P4pEq;i#2UU!vt%%HM#HWIDvkpNCxR?mwtes883l;05P)Ctksc@XRKNq z6N5$zNe@1_c>MUH3Gwy6R;?Fvs}@_-#I&ZdRtPu7Y}jI#&UMc%4R?#I z#fn!JtD5?ZR$VNP>!u)<5F#QPlgdm#M_rR7jpy~Y+j^SVi3s(thVNitFJ8bSB8cg0 z_du4z;Xb*rzmI!ElJEs~r|Y+Qo8YQ|r5fT370h?x29um&pwd+8NCF)R0>>^;ZKBtd zpb-z(tEJqV*Js zsn2tLmE>-cd>c{#5hjE(Bof^OPQcG8?EyCdC)OmGobW@R6y^3>TNX2mOZDW8QB8=F zEk{ku&!(V$AB$I}xrzDTlcKCBvY1Y%^+YO#uautbbTCOHbS-fNe63I@T)ks+eqsIG+s_|+@aXZ`Gjnf*qqY2Z7v?wbxO)EW=hlxtcx>*> z>;ztB4v(OPoA{jjp$()M2x)_@Ald4Tg{q#Vd7>6{!W;sM5nI})Xy88bE{RR3cjRsIgNuVZwNUN4)O>5$>TT}2_Ud8KDX%&Co_YJp>)HGQu zHD&jt;;*atr0X-ahkhCNC-pGe81pJ%;9WIAZ`o*4d_p{WfUjz{LH|HSCCOX!?iyXA z#BoiYw-(~^My0Tvkhx5Zi7}5`wdqI0bHq|k-2SfjNlY5rq-1jV?;o%*XKJejGp|lZ zgkb&Q+mfG$KXkS48@3ISu|%f`k`2vY#SL{c=%Kgu;3(-_i(ScT(D+O&)T)A314#? z(t0}X0TZ(Uq0Evr$Ujc*E- zR773T78c*Su%I0mbbLd6U0e9JzGA5&z8yU>ceo+lWX+RVJ z$qwUx(jV7XPDkcXu6zNRlT(tpGPAZev*PUSjWA;XOH2SO8*y)7C8gcOQ~Lh?z#2OJ zejhoG^XSj*+}pi;xqD|I;NnrD8)$&}eV9q`m{u@t(Y0U$zdO`M48-7bSp|6*rvP5J zh?#li!_8A%nLYc4lZneec_Z*H6nH6;kGv}qL5QxO8J&+!U0c89wHxTNi~{e%+@lh~ z7vv+u8+85OywjuncrTKyA$Az^q3CGd`U|ixMhMctU`SPY^n%(o|FGNwSE~Kq3 z6TK*Wp?tn;n$~9d^T~=(7Z$C)Ic9%^=x6v4$b6*x9JtcOcG{+u0$Doa!(5&Tfoajkn@af}!JG=478Vppj~xjk-jQ+V*9Ht;8_pig&; zCpU`SjWQ7q%HKK`YBrgpWT_WBj?*bRbE^dD39nvJv}g1a#o`Hl#vaYtpr_*q-d&&y zw#gNlbv@Ustwof;W4VQPhx-G4W!QDLo#F3f5S9b+Z`X8I9tKa2xeVE_BLA8HH+q%- zOukA~wglq1UB%;*J{0{~a`+DmpPSZ(N8hu3EjjExmJ^kgCH(u@*;l^xq+kmx*QTdu zKY#>sa7i3}zZRYoGvj$7sRK&|kD0y;nlQD!W1+p39cm|awzl@1nH67lM}LiJfB?Kc z_;~yJMHYP54Ul%+{DJT_bxcg^9cQYBKESC$?lvwPKkroY{c{(E$Y4Oj+&co##`>|i zvolre&u~+IIeVm>^1*UkmnK?>L<}B1h^u#;d=;H9t6~pIxP~V_uY^bXnDv6EW0u6# zHGTp=TOz!)Ot^M0Ssr*t;6-)3M6}IhlGh~sct}}iYC>lCJ5XS!ldsm2iruMA!NBY% z-shI*kBwg-{M;g@#Q+8ae*PJPgR3j>Y|J=9z-N;qJP5BR@LUhamG&DGTvjh~()7RE z%FTqZn8~frZn3YCi@9P!ZAm(xjiQXg6hkx02QHVN<01S>W$#&XE zAf7~E@&qn*BX}I4KtFuvTE9P7xu?~-XJv5fqv9&-Ytyw46n z3MWz9Hx1-~An7(FTLU2L#&*kZ$hrA(cNZ+>c>L15(b+M?`*Gg` zKSG&klN;5;gDCTZM@}3377OTS^T({zUs@@2)gL_8%?1r#Jdz*2p|F;+{xW5C#)r+$ zO$SV1+=t1-$nyLsA)5R9Rd70h`7rQw~5p5&9~nqk$!*5L#91Y<3#*F^B6wddTn+HXJ0yTcfVo8XW8*=%6wBY>w)StWi&O zaNlfu{Sqc|CwqieM*<7D1*Ze&0(TH3b+RGL zZBZS0tx2s7)KK0!cA!mbRtkS_g&EqWKV4T%bT4exopstY+_1GZRXvusCYpyEma_5^ zdD^;a(P7|p&E1s5S=4WLKxF3>k)7cU0c}1HD9o8rok>367A7Z^$%c_FJm0td78wd` z8E*E*@t5Ten(ta6)8Nt1P;kHM;H#hCd5dK$J*Ilmhb>fe;4REoYecTk&F zs1_M6zJT$iTA2haII*uvM;W188y$+4@gSlFN zlyX3xB2JmSaj2X-Mgh{=!NT?-kXoZb)lgi_{k|v-n)E%pBXH&A=#asCYFDL!*(Uu5 z(;&(K5mtx?Yl)2rDH#$xBiL^J4B6a4`P`q6=n-KFtiQX~GUwXYnwoNeG9`1z+mtlv zw@%%hF!e2a{(Llge%=n|j;eF4C#!vv%on$hAtV3*E0M!Np1|YLh1}si_YS!Pk}FS{ z40ubIYKkp#4z@VUo!l7n59p*ya5Eo9To1rkWf{0nT+3Aev zoqiG?u`%Bg(t^(Lq4NwAloI@r5X**+@Chl%Fy})&qu=awIPRSuvth5}c6Pw`hzF1j zu8z2*o7k>t0K7&W)lL9*k5MBTs&P|Xe{Drp+K{q3iR6Rs+P*3fy&jcAjK*-)Sb_^N z>r9A?3snvu36+s|N{AmiRUJ=}N;RAVKAa124KA3Bu(J&QH_JwnL3|*T3n#o&(a^zD zzcsGQ>-&MTL6BJ(xXmC>K%OWx7#OGL`u(}n zyZ$4(-QiBmzGv~#lP4ctyvNf~5S`!-$>Fz1{Az>Eh6|aLKn68bD6S`oq#tmn2uOw| zk`O|ITjx|iWfFs`If6GxX$JAEEG`#ztNDD@rbg9q$lmdKKt2zGfXo5+uN;IScJ(v_ z36z3XPNH&X8V7*+fPgqZfNYHa zcdTt|xQ~lKrd`cT)ZP96BJ4VXn4wOuns;p5p=vuJ9d~-YZnxL-^fx;sZ%LeZlJMXX z#WM=R|C^w_M(f(G^H0s6pCA6MhJ^XAJ+3|e5po3Y&_ho>j*oddkPoA4FZ7Y47WW^JUn1t!n1Z8m@T4MYg7P;R7btn<9}=G3ud`I zxORH5HXK~TJExIz4ga&(7v`LSJ-{pf8*^}*U>xg^37`VOIThsmuH*dfjez5z0J13( zrXO3oM{IXv9Oy`js$vn}3uDIZX-5vbTl-KWskS0f6 z?;ODOC3bn>&=eB2D`MF})NKHIv9FV*4In7sOW?S=!GA=%L=FI}9bj#PZG|TqdT?+Wz(FtxGbqj@~!_P z`cw2AV4Z<_5v&uq^V{?XQJRlwe-w(x@6Vo=PG?SM&tzT^*9Df-{)iRy_$#uf-T$u; z1lFY;w61`vFj+rz{EsK=^@o3apf+Axp*}1@BqePPl9t}2YNW+Y(yW`*kv7{seUsYq zzAo3(fVdvMWajo2xrS?v_0~<#I=iE$J+0PsW0F{)=WC63oIT95-9%^nXXrnm{{_!Z8StlY$q~fZFr*0xeMu8C;HszG zl}8_2z!h$wNL5P!@xh0NSJ9KA+8F+WAA7k)(CWMd+PWJtIJtIHxDG6mmK{=NQpH5t zu~6T!vB2v9k)c0PwVl9-zEF%K0I?D4NW^lpXrP^~zBTAmh$D*d)IWTEMm&M=)wr1(7<&G{F6Jhlhe{1;PY9%?D z;Ul3CCnxw&gb#*d5lKs?r=@tBPqOJ)I?M{;AS*=TYB=J}v9z5HENi`zqTe?C#z0$0 z^S~E}y6WqGWBlf|Z`wP++$o$EBrJ;2S`6|vgp6D!n#64jbFt}crcsDRRH>9 z3>5&1h^GO{BnE_~G69xFvmVBQEV=myFl#i5NYF_Xg=k5X@1!U%BpGv$eC#su=QU+& zkT;2cFFAcZP4hzkIF}FiCkh+IPxSCNM)RHPO>o|m0Hx#b7TR}iyAA*Cc&l^g@M=Jm znU2}Tq|YJSF7FJ_Bo$GSt`%1n@YBz z7i(iWr!9B3hk6|WuK@6~X(QIJ9bk%%)vPh9&8Ut_Q@8s4-F|-9N3VD5SEiMFhSW*( zs(9rDvitT{9`!zjEBPHsOXbRqnfdvdqqi#A{B*&Xsz_yX&HUgAcmDVeo@-wSJQn!3 zfZI#Hb`nzoK@8wr!t1L9r4kkKv5%3eakH!*Z~kB$p%DFKoJIJ@r^~AD74*dErLZGU))$};KxCZ#+sLXph59M z6q#4DYw%EVAc+z|MIzNed=~vXCKfHFSS%)^Y>dM)at5<4K@^N|YDzn=rBp70_c&I_ zVA+|AWe|fHHdSQ9Axvr$ESC^M48z94Y!qdMP&AZ^Wvp~eWTGJ<8|5(J2?j&Kc!I~A zMKl!+BgDmXDZUU%&LkrRKBXkMU^tr0FrkHPID`u0nGm0fvrHH_D$Iw22!#;GL_$0tiUv8ngMvJV=`KEt$s`vF zavYZa5zB}S$A(0PMWGZIgs5$KI-US0;W!tKg@gExP({XtiP3N(&x)C7RIV^Vd_5P8 zMS0xAA*4vT6fS}B(u8U;}e_Et>tv&55L(2!gd6SX@Z0 z#bfcYNBmtiF(W2Uur01`#!MlbWRJ!(LIR6<2_X|d$|kb{K3?Zq?1_Y!>0rqYguL8b zQl5%bnM5|8%cx6iD_9Yuk$e(d6O#EzRICJB?2?+v#j^>f8kv%lb7Q$^c!J%p5pOKO z-3CV{TqS@#OQLDw4a;)`$QYRNwuH}siy@YolgMZqu99OKJt~$o+5FAo9d{I$3TiU( zSUjozb5WJGl6Y6Q5J|MA9-e9?B8Bd+Z@leO&%W(bSBkHQruY*}^=_-x?M2FpQjV-= zPEPTu=qrlf*VZCM+2nasE=Jb0u>BkOj%NcSdfvr6Z5}8N@*Ft;XN#yoy)4KYs=~2~ z>vDmaPl-yGF0Oe@6*tqkSDt*&lkOHen#v9duvi*^H`A(yh>P?hU&+qT&u_WgQgBK< zZo5+wv3iNUtU8X%6LC52Kn0Y#Z6JyOBVo8dEUS``0(;oq-R<`~ojv@A`C*6r5g)m~ zL|;U|Nc^wkc-|tjiz4E#2jL8J=SHKBmU*SwCTuGN9{k>!)2Gky8_C8=`_|^!r9>?H z&R5<4!Jl{pbBiMkjSnE6ziYZSz}ZE({xzl)TByuW;#@}Dc1ctYeh30(ZuxhgVdXREc@ zL@JdmqI;q-InKx83`!iCL6$ySL+MmC@rNh&G>XyOk_}mWuoHL1=`7@+&CV7C!VXDl_r+U!3JSd zk#~q?<{h(VfdLdQ=iM<~AaaiCev1tvr)&^dciagOQHRGa2a6hUiRAccV$tAui6mZ~ z=CewZ`}^N67R$L< z=_b4$FBjl1l1MBQkI!>{Pe@~JZB90FgrMSIKx2<+CR2T^>El7q`N?!!ZF1bYdKFWn zOwRUD9!P`UMe04aX~D^~a3et1-pNm%xq9`CDt?ly(Br=TcZ=xx-S{#esfni;9YGgm zdX!k~P`Y9 z0fdNIQFsFSNFrXK(~M;ZYzpE5#xFw`LaMhWD7T^O#N@wuDqKn*Sy?ES7cVa66+WKk zik0&E#T%6(mlilBFH9AB)x4;M-|~%A21$jf*y4pneIo~Fix;{V*UP)}7mAQ)Jh!2j zwfTl0j}H2@Fpb>@Ft#e5zZ;CsG};aHuRn1?d+pbUADW+^n}2Nfv4z}QzV?ZW+GAfg zpL*&#l7{k!zrh}>g@Gljfb-Zk1JLKY8c+w_rGfEwTklE4hpo&ca>2I??_j29|7)d40B!c|0@RJ>NYi2&ypi zndHwW(+^z3$G(SuD0;4YUYNlr-iVKHK0wC8pQHbT-(e)6Q`|98C*LpRqjo=K{8ft$ zsjXmEVg+)z11SqVP0{$+$ZtyxM9uZCO%}EiP({3)%wyTa z9cCGlbOjhX_f!pLK~SShM#iU4ho%?QnaRs3fyWYvgAmKb*l^|-mgIPFCm2_jj#hHf z5DH*9i5HT}R1%bWwiS-Y#dthIoi5++BGv>Vd?JSVs)%JpA(Wg8GnN=jBx0f^r_?w; z9Esxd2|lu8nl|{wq8>a(j9WCo&I=E%6Qwsk{}u6x7hinh*{V@{hkjZARqdJL?gy0*4nJoYBO4sx zUnHrOf*>n5>3?K*x}AO(g1b7Mu8lYB@q1vr1gcncsUz^hMuF$_H@&#N{^FbTOP97D zi9i2*{E;nBNBfd{{S@)*g-8fISSfgp|KZ2 zaTM-n4FzgPw8vO9Q_vSTxaXdme&RK6E1+KqzPN7v+|0(*#f$w{hu>BhUPWyDy{~#< ztPT;9AJS{yL_ID^XCIiEtjt@M?>`>ycEiW-AFI#=O*Kf2?Ad^as|>OFhN4l(zjlL~ zK8uLQe4VioWaJGnxsx=8n7#FIrg>NT;(VxObE&f)zcVx~sWZ0)EA{%xrIk=R^~TWJ zD|5nBEG87h=|n=W@PAnbbhGjU%Cv(2e9-0DGYivFURRmb`pJ5|g3d?lt@~DoU*ckr zs)SGIdLohhMZjY#mt_%dRmR%H6I>#&;8HwjEKDd35)RgY_%}n>kpHD3>DU$C<`>F# z*WL&}=sXzS=$04okt-MPe)ielc=lO^zj6#8__BTC?z>NX8Lm8f1w934e&bm`Z)cb4 zxk1&giw2f6%ze$slMsa1>07UTz)_ zOm+B68};bzE434~jDqP(E^}nIyb_r|*0om7u2@K-e4aC?-^MSkSMBP>5zl+a?2(y5 z^z6dGcJP#?J2t7?w+Sy;AUS>Wz|Td7`w+gl zZzFjUE_Jw{R>5sZO(Q^l9hY{b&Y<6;n_ISzue0T1>Z-&?0ir_3bUAa!PG1h4e5EOkO~D8iC`#IaPoR6 z%FL;@YH=AZg@0COMzsq@mc=|I$7YTENmZZD9SeolmC86Bpmu(e8xe4gN%n(5XKQP( zgBK_O2?$Jz3o*(kOzz3>Wat5Gs;;yLZq7{lhBZ+$Mncxf8#MX)CSWPF&T3@J>w4_tDZB;sf@5BWXf3V7qZDDS(VA5RN2VY z->2jsmD%XixmUklljx3pv+KsXS12OhNGO%s#&Ja9I{;&_MX>_)wdrIjPlD+?9d8GMt;>ayxr~ov z25jGrzxED|`8qPh|9p<-lxgcyn?~|WE^sFJe`X294^Jcdn+dcJFuF@(wq84OTVDC7 zY3}5e74N`~V>@-RJ~ekTF`u}9P2W)d!m{zQF?KZI;(372Oai~rMVLEj$)s5|qe{H7 z{9@Y*348~U0YWO|-I=efQ zfzZPpWOfLmock<>Xu?ytr$><@OCx+_&u^22L3l9{G+II@N@sA!1z12P-kor{+&|nYJ9tEh^!SF>AHvw@H4n9BJwRRzv0zpIt4W$_2 z=6`j}x4d+dIMXrwV_1(zn&Kxp!#%t}6L_&CZ5d$dcf9X=pYXy|zg?j^F!BM5iu>g< z2Yh_@3A%#01^+rW$;INuvZC$nZr1^%?{0UC_!9;u=*U<($P-pYNS&zQA1IgkQM#B0 zl77sBM(y$X%s7l6G101Vk78mCpbPl-UN->~_zh2n>W)g@8FM-gcyi!Z$I35}8XQ9S zn|y0bgEA90eS6ywM1v%%c7sL7wq1`aEb&<$E=?dnaC#tjcgfGGIhhBWh6P}ziPsO0 z9`tXdc_|bL<(WTu$NW3ycMu+*ciw9}2ZcJ8Gu(APiZ5W8d?@k^z5qJpUVNT{1b5sq z1=WbU@A@5MeJ~!M@-ibBCRCPSk2hTma*9okY2!pvKCx@!&c6WxC-4%w-8}*&50qd) z-Vf$hNe|gHMG*AV4(#mMUO(*<`T56qKQzywF4^NbXL@GuMgT8%z;~*1v)8kQ8Me{b zcYJ@X1+Xi+g-yglu`XSKcJuz%2Dn7D@n)C&A3CJzdtK_BYwtsK`ZQ*!Pg~w4Y{{6f z!FbuLHJ#>77>~lLy6EW;y=0Ik)9>(yl->WKW%o!fFFFPSqpz)PR7V|7a2Du-f*`+;1^G8Nr%)_8BApz<-zMHz*4VUi5Gl@=@jN`u02)Kj z6en;s0jUUm_+>COEhq^+Id){&odnVxZXuE{b0m`_Nz}YbznH9l5*Z5EboI7@ zdzF|G+mJ|oXAB0f{`~VhCr_T7dtH0y`R70Kob}wh-}07)g#*w7^qLG@qFL5kUIkjc zaoLvO8@hr4Yq-`}k}MfQ+MlF=7wF6&4&+l9#C2gyzyyQ%n zm0;zuEFr)Mmr$GJMK{_{QfLqqi^s3W^?09PTno2KF9^aD($ijc*f#FCUOe890|0hB zC%+)f;L~p#$7~kyh$w+p?%+${f%o+t{n6JZ-o;?BH5h)2zNW8{_aVmV`}jCMvrS*r z#5_&Qp?RTyNLh-j*&Hi#I_{MzWV31}bFcQ4wxe~l@v`I7r0k3eS6tDa)NHM*1;*Q| z;28rvkiZ~}DG?T)FsTAhg{F>0BQl3W6plornWaS%Z#4!uw}0#kKR?f3IcEAB=Ik0b zH^;5bdK1(3PT?iu;A`Xcll1aGn&UoKN zFx>#@f^Pr{gRU5?JKuWgt{948)!1NgzwM=-Og;4!EYSVKcYy{Ry#+7-VChnQ@lu_^ ztKi~=`u7cEeI5UH-P19+6#W#cUw+_n9ijTAS6*5|E*{Vh$%(S++L#IMtOt}v-8D(% zjgAKnLC6I$3)0>yfH8o1mO7S!8<|5k*O3X}SJ{wIlfSIg1SXPT6Itq zA`^`*fLN|if7}GpUJL0mT&={`A8%ljs6N3jm9I9BW#ovGZ`@yi|{G#jw@p7 z!iIDy$*Q^1>~#KU>#d0he`5aDGw69L5)aSA&G86bj>|0!i6a@qDFwI$K!_&u43=EL zNr12o+hC&XxbqBno4A1+9&h51XZbT`Rji1HY_^C zN#Q_wovul|zg>Fv+r)R6WS~dX;7R;5umtFujSt(*(6!~+T%ih}wiQ*a-E-c`EvyY( zS&|leXxEf-{H8+#fjCukTEhAt9LX zv5<4%$rCw8Ggyjmko*9W-nV<5#~!=mj+%`+j`Pg#eZYK8V1n*saX*+uW2%q@o^FD_ zRahvl{|XifSh6JhC}5l|>a(+Y@$3a}Xlm-I-ep zxl5Xn4OV8ZT#;z0*L2O6!^=G$W#Oz?GXX5Sx3A^N^5ZWkrAJz6+RHCmg%4W1)4RH2@y~Ot}4m3G}Y3 z5@!$AfOy(I5nnEm3d|H1!?OV6er~KD#Nqahg(~aTK+hW~DE$#;vLc>b4c}RW$N_nX zY-u-nAjmwK>F`*Q02K`>Xc7JX@h@Rnr~^!4=QUsY-m8WmVNx;l%24V{$G@kh%?`*O zW(V&ChaZWh81z6aH5yMKi&ij~vkID?1B&F)7ENH*f{B!fA~nb}GR@;d9bB}8pHG&S zsLDfARzKe9YysbvQHI+}29WMdA~?EB%zb0##kOBk#c$wgSoj7BzJQqJ|BU`4`ekCF zR0*PGJ+R_>`I3Q7Suj>XM#i)H0UDZTAS1qzMqB3FV9CZLnpOA@7j<2$v`VEGQncY` zv_B|o5v>|eREukBj#rA&Xi@%VsZ};gACn(g=Zsvvo;y4IoAnmzr%&8=B3)|Ptx_58 zM7gXqqXcJklzT%;EQ-NG9%Wu%Zk6PZl|G$2`Etc5v$vewjYn)d5+^e2xBWb!f*V_- z;XVSJ0Let*;Zqojq^}x`tFcfZzmL@5Bz>$7!Hpmov;9i+htm!B*<@GN$DL zaD9?Fef8*~%%vl@L+udBvt?#BELnowDpT%qTnQr1rN-P@oikd4(43nt3;%qPOHogy6L$&flahH*VY*1OsS5c-TNyAAcdE_hFDW9&RG~*88I=W;rNC9#8V( z^+@JB{#Klx*^fouz;bv7JjF(N@zH4fJ@HIuVvk%f>Q`z%tBu?9+u*G4=>llDfd}e2 zT|>9ue!Ft^YNc}Z>{F^pg+(BtRA3a<`<9pQKE~d47key;$s$4Q#Qc%FF(xAw2u^aK z3ck9YyiZV%{gg`69KT8;bf_;#!x#bR-mKuwbTTK+NV#Nsa4lOX%oYlR!xeZeDMUGz z<)T6|^(we#w&44<_FO+sgW{lhs4nf7?Fuk#Qvl+@;p(U;X8sKR|J1=M5c>)BC3gs> zIN&P+*rwC5dp)~@`knpj*Y`UUbMp_$)vW+9DX$?+Uw%L~o~3kMy)Sq2JUQ|S-60rYpediMMFx;>{Zs@ryBALl7Y!63sBL$`;xR3m)YOd%&0v0S zL;i{h2?C|LQZt)oe36mE!qSK7BzD1l20emCUJ_FlB0Un)!Y#F@zA$hQkpq z#D-%bK~6>^2`QHr*ieXJc^(f}CL9aLSLW8s9P8j)Ct zjVBY~bUq!4W^>7KJi=zvkwlcMu+daBE8!O#5ew-M8_g8bk&Ktm8{+(VR|C4@j%+O0 zFudYg_YY z%Va7NPx2vyZxaAjK&roFkpUfeL*flQg+i)STw|k`FQF~DvsBoXbc}q=CA~k5!X&$5ZQFBuqx@vcrK~sqse46 zuO)Nwq%N%%Vrf>qaB@w|gn}H47zVLiFl2^;(O`%ynw5f`;?$%*Eo8LptXiq4vso=8 zOzTONOWB1=bKLfmAsG&V(}oyO;>1sk39E+QuDLNt?S`AZZbfOMKgm_^-e_Ek&#jzV zK>_3FR;QMNgtc)wJQK0<;18~S}I3?8;e&zeWf+t*$vdM7B^C7_Fk1*(~Pn*O{*20D)wnj z9@yKv`!jRt1Om%kFp-}9j55PcM@=(YuClZe*Lvf=iPWB~jl3*9yCwoGm_{3rw!w>S zltLBD57v{`wdMyxp(+z$UKqC^gZIb_G_BGL9tJho(}RQxRlx7Lk@+D71v=Z^mn+Na z;?n$-FSjel1CQ}zZgrV zqW>K(dzZiP{pf9ie?{{7f!$X^o#oebKBPIFf4Xe@Th7SuUMA=skT|L$q211KfNbJ5 zIO;F=nTX);!$X^6&qU)7_3$-`Cw!yANN8^#^+)t>i{|%1Ooho*P+%XQ{^jA9QGeJ& z_HciE{&c-Dzz0Vs$go)&1+NfXFD{AYa5_OWTO?Q=f8mfd34X{)7Pbq?&Qz+-D^qnj zNg^?}QIO?@q+Fj;_8AWwl{f}?BeEIS7{PpYn zKiZOHt7(Y>xQ8a%3w~cec8irPnOct{ilFnOwtY95eK?!k?*6Df@ZlLzmc^MTds~yX zh$^LT#D+*}3|7#C6($K{S~RhJ1!~#byRM2S`GxX<3YHi6li)&OBN_8PJ=5G0ReWr5 zvQ~@uM(}~^0nFA|A3|MdZkQjrHj3-wuKY-~+NrJ9oZgRAGlGM*v(@wH)jqMugDut? z$2WxJZN4vo-lT3XE+iXSHjzVVe#U&|zB>RlbOSX8IVhkCvZ%lGWE<`6>q~HE7rERx>%~(YK|%vch|k~@;hCt z)3vQwb93B2>|p|Z8##E!z+ZZWXlse1EQFuAHBvm61;E8IIG%(jU?N0)oKXjJ5P4qY zj&t0zIbDXjr5&rgS zEG%Zkt0ilfVB3!BH3Qznhw4Q`kZ)2o9!A&8)Gd|Pv~+5`dRbA@G(1flu3t7+$Yct+ z>_i<)qMS&`V#%*2spq#`KLp?~Fmou~glA+Fi6G>Ii>R!4)>-6W7V8k_xZ;S(Sg-#a zD-gG-_o!;OmMYJeV$oa?bB-wL+#9lc!)+`h)7V+B4n0?o{4#ZDLw@Y6;(K5#M4MeR zZeEKE!|k2WC#hc_=0~#f!Fv46ZY(KM|0hdLUl&-H27KPNkEDp6!sQ1H9s&&;?Pe0` zWMuzCsdQJV^!eMb-f{fhrS;>j(|?O@xq9{LCvPAA_3gL6d-wN`H=BPsn)|+m+Xizw z$G6%XF+1aiEFu7*P%xu_m*5GH$qcMq(Why&(4XfD#aOPM9P)g8;010KOxnWq{unn-mwk-|0}B95v6G<2(Ib^3Rg+bmgYJ zawH^;5@0zUERLGyw)yh)YQIdq_?y%V-qw#%uLBk9kJoG0tC+7>`7?BeVrf#mAW|ir zHHcR=F>yLq&%DR_oT#2bSN*Ni_Yn-XPtnzc-YP}>SB?hG1?~)7^)1oI`HHXYk z8$67O4Wy9dxCU^UHG`v4vC`sKA!{2i0~`w^RaL-12=^Mk55w-HR{Wz8DavNDF>YQ= zq}5z9$rMG6sRk`gvw~Gd6N^kTIi;i%NAdZYXdH8|VmcxIBo=tH88#{nFsq0O$zW0= zzs#~}DaNIx9ljh3i6U3D3bR{A(JFGH7>bqo%}hC3&dtT9W7&#;H*aI5G#8W7?CX;< zeqeIc&jXSNX%+Xg!Fi#zo`wJuN100c`qEKAC#nIO(ReP-&ucLh6r-4j&t#NzE|NyU zSczj9CLNm+qH<2iF+uJe)!xGbMM6hrX0uT&h$D!!jb>+Oj)XKlHx2VQp1z~Uwc?xI zi}51h>%_iFWJa2yQ1=4e2+}Ja7pow};!+^#i6x}tJGi8Ng(psN*K{0i^SAIW^1Wo5P=1c7!)%%OSca$ zENvXQS6q>wL{f3;j=>$XCmX3#UGJUvIiTIXhR_$98lE`DCBb}*%0EsLX!_iTFl}TB z5-82Z1+syG9@0(`4j7i`4zl_JS&rRDN}Qz(Ni9cRi%7ljZM{WnhBG0}1N{ zLE@)=!Me9}!`&L*l5KhisfV=TyY189Je~$7>sF`Vm935>b)1f5<2CA7a@WLjveU<` zx`ZW3$&@jdjIXfCMG{=lcO(;KF|f5 zvC)8(oH7m4@e*f)1PYUj(SVNxLeF`~bq&}6c*EWGU`!~)FJ)$e*9!4F&mPGC>mBJYW!Z_h*oyUflo(` z{M_(6qriJ@GBzzra`yl-5#Ovx0|55fMP|?G_Z^Zn0=~JxLb&=0t!h zIIa;j83BegnuL{y;Btw^U&Io5qmU5Pv@IkGHN1s+RtZ^MbGzH!p6BFvrjXCZWo|yL z-onX=OrelT$lNV>V(Cui_RN4aIy3DXzDY7Ip5)M=<7(_M@$4p1C;R*R$hP(^cNY*% z>2b`f>~G-{mb-VjES5gZ%dkT-{<7|99Xm{QG{mPK7d9MN`=+}qd51;S-0z$FmgVkw zd4>tEnD^1-U*2;S^0(k4GR&16_^#Gqrfl(UJ`Pw9W{xDR`S_6;r`m>%cC}-gmSbdV zwX8u`r>KbCH%-)s3*0O5EpV@Cv7<}z>P~=XwZ{F*k~GsG(kGJ4le8!NM5cLNLc3P> z;p1dtSUvu*gliH?pPQcrqwcJAK5d}D(X+&)d*&E`HXDnxVDVivoDpr=A#vn27=8X* zAA83ZYP#>As6dIjX@v|@JP>VaQ>U-G3!|WyRy$6w*SDoWBIkW zkFO5+J~CU>*PNR8G4r6b8j560^8o8dQmtZ2Nf1!M%?>l$RCPtyBlP$8U@&v&^Da+mS{6#KI z9DkXMN^xc-eSzl_>Aq_|;ru=WkH`wC^{r$5=8syPcLO;{aF!dQHTmrj6l>zzMrbqX zN{bBY9>k`ZvT2RJCkMWtfi1ZmO2@bZH()Ytk9}S}%LGtP+mr)ieA|vIgR4XWUh`z& z<|x+>sWgeJ$x4&e^xkze&{QG<*qv-QN4}!YdyRpjJ>%FI^6Tzd zNG5;SjE#m{GkLd%r!vFu066jsnJLoW`@P;yJ~L~fo=H1;pAHN}j*@?~831Ni)BUN; z3p8(34+#_dI@clP$Ze;CK|~W)Dys$p)w$^ zxPee4l@_iWrO}iYE2N@4DXHyJXINWHg=wef7-`c{AD`}0V*HQdtWzna7kiC!KyLAO zhKVz-(cGNVcQ(uQ%OUkWAT}g8#Q29i&vbaA;@xjUjO_n_p+P>Kj`wYB;dca)WR}&1 z(c^BBm|FGY1+Z@1GwN(_#|AJ1!eSP3g$`-PPzYeo#E0Y@vg4WI z?w;j1J9|5x-C}@lA>Xd=Y3KRaDNRV&bAv?tqd+9y`PL?E?!jWS^U_H61sf3P7n0+}Ie#91yFz5ROP+2;gwB(#*5)SuH8(wo0$f#q6mj*NH2$?jtyL4*(huxI z+(tAOiz2cd+eVHMaiW3{bt1wpS(1I9mUewS%7&-|o(;n5oxxz&9)ep9V7}2`U_55c zy$88(6fka((;0Rg?_e9lANXuRFRAY6F-q5+H!${~d&TVd94g1a655 zgn&DAzuzL{-fy_|fIb;`e#P+Xk&L@t0P-5{b)>FDS10S~PaQ-?mY|&>Q^s+VyR?2dGTr zz<%W*D5YeRjPH?n{CNT!0=vU+xCbH7NEp!%;pMhnI`pUL8RBb2%pG+ExD>vn{NVpWbU0K^KQV0bZPhralB}kQ3^jSj8yox3vWD_Ktug|iv5Ee ziUVXxHv-c3)^K~PPeY&R-?lya5->R!z<3(d^ME7<8TkTj*P*|i*+4Y(gnn)0TLa-o zCT`1BW|45ht;Sg75b-^tj_nZYim&@y6k9ttwH^d8JvOcKVP1#;6wmK>)bnWh@NovN zSI(=QzX>s~PYEZ_O(7;6O+>CERkT@-W9@L935LF5=g%$Q^bG6Xr<}{%BY)2=5_4V+ zEK+|Jj#oAi(dQ-6pF^CY~15NMji81&H75a5aXjLQipg39NfN0Sa>}Dh|_!j z)iggJE#eFE#eBuQ|3WK@+qr@(P+tv=`fZ=&%z;=dEQR2KMAR%sn-a%%vrV&Rd&%Q? z-On6HefE|We&E>Um^!1zHFf38it_X7*_D;EswRNDoAB3krO|_H8tT~Z6Q=z`XL4u@ z?ou_#w;hlBkHMFE{5JTSeUW<10w54cG?9c^x6L%#z#SVWkRP_P@R~cUkQimzH`Nxd z)HarlW>QMYa#>OKYiGmJ;LPI}6T{#7#I4ug_2BUb;BZ+U^#$;aApb$6jx<6^p%a5g z6ku*weBZjkI0({!cy;Y|XiT{+`N`wblA7MeQpEO?6l-7%8w60^p>4N91aq@N?FrM4gHJ>U(VzEdem9K{C zK2k;BSyvx=NL_!)MDjR{orOtRH5pGN;>l`08dK9RL33V8tCM;Go zVjia6n3FCRx2%_lly%)SuTzEYm`uLq@>vVCcYMSY=pIar8)JT(hx@_C62473!EyF& zlKjRVYcL4E&|Iokv&Nf7ViIXS7K$Bz1k3BU1ug|Tf%^jw0u?4`tVkhBDg4d4%n}|N zM8KrPj$pd$#0rX+c(cZX-NQ9?@cz2B3Z{@+y8-VNR(y*@7#XL{1E6i@X#*c;LovR^ z#|$Alm;32iWiI;L000oY|2BkfLvN}FgLU+kxu`IE9A6ZP#O|BR83O7rURbowEphTF znXt?)owM*^GZK{*MUKd2BbhYHoA|ZIq!=9ncq5)ZSCLbOqNLM`Vx$!ByTnp38j!fD zK-&*inqEZJ)fyyL07vQ)YP2_yGs5{mmaa+LlBT<>!3a4-pFNX%`sv)6OLXOx@oij2 zm_$G}D2lJnd%AHjulePiKn91b>rL&^N44g4i#%7K*EMET9HZ&GEjZumkunP<#xIa5 z6(-w7%4~aODl|?3m{q`V)_-RyqFb&VGt-m`zy!uP6SJY=RO71h9_bocOju{Wz8@W#H zk{6JM9}XbJBfL!?3ndVZy0ym5$7MBTN6yDmDLIwu(G_||5d2o)8bHzS$5%OUQchi? zt8rib1Za<|ZV!=ps?}zjGy&2WQYeik^fDvqG)q7Qv}~x)vGH(B)l~_L{e*sF3XoPY zjdqj$#v_gd?zyV?9-d1jGI8+q){?^J0N+G_LuE|ED7SA7X!N%)lfj&t1>g6!J5*t` zYQ!@L&nn<-PN=sB^iUxw3na;bpQDdSrD=RaAnm@b72{Evn1HhvKM z=STfj$OlpaF;wHNe-#s;{pAG{IN{LJM;qwxsYTL}aMpK7NYh&op=m`2nDD zGiXH@Rk^raXw>k86^lCKQ_{$0?%9+G%1N8rl@50}t^XRLUICMR?~hY|M1DK` zQYiGRo2S)(J+G(6rZ-R+ncJwVAc%w$FAVSF7d3io9cpp1sN-PACD3A!ILpAE7E~4)10wcY=$TgL$dOFzl%l*(kIz)&`g}4G3X3co6Xss` zx;qPnxp*R+jiXTM^nJqO-KT0nEt5NOR~J2M-eMTHm_gg#nzHcsF@-P}ffAW;DmGUv z-ub%M&BdcEmx?Ujce-2))=qU7E1kPe}>9;j?%8arT+hZbV!1B=iUp+u zr%f?n;2nOKj5h&uzctA0*wzq4<1dmVY|6{-v?mFMtSkebI?d2AK42x1tOHV5kYpV- zeGrZW3&ErqVe-M`1CakN~NmO`_XEt)K%TB z?p8~hnVy+0&-BcA-ZQo(d;Fpqzi`VB3_Io#u!X?}+YksuO-Kk#2sWfUBy5PuE|4Gy z>=K;ECZQW{NCM>EY;rxjfz4x+>?WFf{&T9NQcv6F?!7xBl}e@Rs#8_x{O5muAN?ij zhb1@apJLeW;UfOTcxP5)ev$L~IX)5XyCeSlIKL;%-G>i>zdVP(;3fSs{AJ4S#y|n$ ziH1F%(5R~y<66+;iHIJb#1nBo#1ZLXIb#xex{H))zN(b5Cn~@fw)pR?BoC+&p8s)0 zO_0aE=jXg^4nMpc9}I?qQ9lm@)IS;R38DZ6l4-44+=m6|u?4&VCOEj>GISD#4Hya> zO)+lbL!yZ1JQ;cdwoMjgOZVBfWa^#&tMar-Af|E%SbXuN!cg}Ch+K?-1k;W~*i8Ok ziPyu`qECqWCU^$AiBR=NJe+@*ZLcbE+x&ztD)@?3KZiR-o7!QVerOVpCivR4bbsdt>?3amJtdh&d7Ci>^+le3XOW5t=| z7x8wdOj{>j1;aIu=a40+J#N-4#&L&CQyo*f*D=#KiSTOLSHqGEFo%Fye+GBdE_chu4Kp!6o(SbEY$Ri_YSf?gVgBsV)1e&cg)_V`SEKP%M~=Ywzw? zQP{1u4DfhPfH{R94j|`U(|pA3($MpVSV3fKHC7bZLu_QM-PbmB@U6qZ8nn0wY(a;8 zcDw)e|3kZ3d!&F00z5VUJKFvGhoITD8Z`S5JBIl;>pB7&$8da4uvEP!%~q+GWwfC{ zscQ=({cwT|e_FgudIPAzu{a(S&Ru3o}UFz4_g6 zV7UVBMih>Y=Ir70%bl1$IQ`;oEk`CQ&w;-(#^JUCcLbKgxViP*^mHz`wWHy#5oRy& zeF#L-3gJK}|YjYJ)6CPaZ-Q4$Gdg%iO0G>Rc- z2~G{@FDwB{RBWdp!ChKHWhXZsw$m4ajj-w|duipTx9m~Fjo^^Ks*CjtNeX==&Ok3> z;vWe~QoKmI2dUckjGecEt(qVE+=RIaJfQ$s!P2B8nsY?*gI_VL>P|;_4dB@4f79Xl6zmfPd~js zUra5S#kup<1S4MOGir0^=FYH4n#*|h##pR8hQ*M_6JXsQU&zb2xvb&~upYO^tN9q0 z#SOQKet~4Pog%qW4MOwo3ll`NW#DxM-eQ&F0T56VtqDd%4e+MGb7DKM8K32^Aw&Q* ztTH@(%e>#?@x751ef#|Gkm5Hg7u*Ob{=6K_PW$tcdeq|%1>J!VZXPGmr+HVVm~Z4` zd2TuvNBAFNB{P5cOP5jZ&v#-KL0NV@a%P4PM@w_NU>M@YIU2@`s81L_QgbAJwX7 zW@pb-=WmeR<$S(0Jy@TQcXYkq@4p-W%M=M%(xSmV@kIYEXYBd(2UsV)Onl4~7Y=-Z zfaL_S0NlZc0;BAO;K>4PhE)C6m$T)JX?D7qBJn*H2mgevL|N89o-Jn&Xu0yO#)bRt z6ZcWqml zDG(uL0?sMn29QD{Xb7YW;Pq4Zs(y0hO?{7PF3~1s-=gbJ;?Fxw6S;JK3UB#uBZq8H z|0Fcqhqu1X#EbH~^uB4wL;ecOA`c$TX_u?e#JYe)!=$u2gM}}E+5iZgrzhGIr_D?A z<*AEn7pKbemrVU^L92CZTH)-y$s|fvO0`^}kgJs{-Bi3*F4y9zQQQU26SG(YSrrc3 z94+k-Y|TC`tCE%ZbUq}MBhp+VrX{k?O8)fX(Nyp7a!sq$X%iy;6)mq7&Y*58#|3J9 za4s0GMFS0Y{NAHSQ|KPG7N9LcD_op5$d1bthCDs{DNoOkB20CD(Foo_aRNsCXbq1F zV4R`#LFnz33KNn-_;tQg@zAxe8gm{m7mNhFD3kN}{A6uLFJ(P~&+B8oekODCJF9_E zC>9ER$zDO93ivqD?|F3Aa_r@s8Ah*}gzi||&+(yd;Ye>WGDH3rCd8ZSEfE}1+ zwK9AUA^N>xeG4NfWrETzJdcpP0<_$SXM})M)_i&X0bcg_E5-1nSM&NauL<%D8w^Q; zhZk?)WuL}Oa5s2(zrU3XhK@?p-I+b9>Gp+i4sd#-x8Imv;V$@v0EhgX5YLyg0S>PR zxf}eaLF`A^I^Fk^w8PKD~mVx6+e)MS)O0nL8-0`LPeFoVOQS>u zFECu~U_9uy+O1KlkAqTR%P`ja>!>?MpE|5D>R3581+gGepqasjfn2CF*g&qWEgO5m zb%kZ#fg^<%EzDg^{S_(Oq?QW-ILXxwivCOcoEY0)9XDNt9 zd=F%j#)_9M;LU)88Jn$5Bm6E6G~j>|WXKb-Spu z-G6=hncw;%^Zw`EA52{OLS^0Ma@1jXiRbdD>t@&85F2V@^|Ta&PNg*uqH+VDzdQ1ly(p7UCAO4>sXd`jjMoe5%{!aTJ0F5Y zzg+r}ddo5=aMIDQxsjiBBZl=O_vtr(oqp4%6RIQx0<6F!7k-uru*g4EUAQU!3&q?A z#%mh~ud$Aa7el$XN#ef|(1J@77P&eep~N$!k)USXinEYK4QjCGNgxMOd&@-+PzVY8ZGy$mx1Mk68x@JOOJ*WvQdt;1vo~Zx7sYn)BW_g4 zBCm&M7@iY?WsY$pPu`7!$P*A#;b=6e80pD!_V^7a-&4p%)vTP(Rg-u!42w!4U!9Ue zksuNfR^>A%VF;D-aHFGbJ?UHsZ4s*t`Qa=%{eW|MYTxO z`C_5S)(o_v%XNOh*JT}@c**G3jr7ulzm1+Gd1f|$PKhA2 zUc*hSTKLc!!3EM-P=^`N(`~RW$|IeDyxT9_n!YW3A$=S2bh{H5PF}cTv8GcJ>AtS$ ze|I5|_sHM&Eggk#J$Yf*YerDKDb}?Ag=hz)zF_{OSt^-$5q0~xrBCCn5y535xOUbjlWuVGm-od4EFxoQdE zeC!%f8>j0nXBL~wVFv;K9n7at4R_6KiYOTaUct{|LvN6E{O3V(jQ+4@WG9;& zsiLs?x}4ly_Pb<#YS>yaJDq3O)}HBf23LmQab#sc%PqE0w?iPdyTgtGYh9YNzM~zk zrlSU<4o3$KaP)2&9i?l+-;OvK;)FvB>w7Ra+uUY=2~bohutJd`V1aO7@FdxcFR$zC zKU8NjF(Y1iFxxrww6SW$?}-~fGf{lJjt-oGZfh>&wfb}?yLRYjuDVQf?T$N!_x^7Q zZvbfzXIZnz;&e8~R|>-RtD3K1j@ zjSX4A*^6cGqLtqzqqn@}Ex6Oq<32o}Ob&i1Nw?k_^9PWOH!mMD=M#x}^U(6^a?{cs zcSbqUg(SH_wHDB&O68$;b+i0!p81c!DQRD9}?ldQr-VsS4Phhbfa={kLP z_^w=eSX{k~`$B8a^#mhf-@=6h+)U{9eMH{QmL~EEWONTD_C4I`b~o{k1V&-{%v|$0 z5yz2m%4O$jwXNsilBjH$D60f_pUjmo@cPu>*i)r)y#$D`9g1)JD{|2f_*(00YxbP> zZIWlIKm~iL83L3u5?S^^K5)HE5Ln=9Y*!=!FH&dS;A2M2JNF*?tj`zpxV>Af-|zE# z4{8TWAFkfCUnmGtyN<7GX$~>Q5pD0q#=C^W@9^`ycgu&|LEnQ1wMbw?J7T!!mhf)% zwiH){{Wn$dy&2u>?_s%Iw)i|qEdc?-R3IV020)^Cloac@>)YD^h+r7pU{x#;S)%Bjpo2Y@`T{Wh!gHLTe9sHrL|1glD z-}IPj(eS+f+_`hMOeCCdwiMBKY{Q;N7n3HG$;i5*+{ALBNKBSvkr2oJ(h$elOD9%5r$W7b z1zW>=Apg2hx1n`N9gHGt)LdI=s1(w{g1nmmh#`eoq;TI+@2U&AeJmeVlaqT3@qovK zCe=$v#27N&j6W#F4+J<#;()v7N1K~1UFU*xbnqkTynppI9(8QYgPe{7I&;%vS7?q!0U0N=z!ebs@>qyZAE{McW4rs(cm!|I z9dQ~Aaj~esC}45RCTJBK=|yt0gs;QVuX@{?-NBVMYPH*gFXQ!1{MTeAl7AUWq&h=j z=8+8y`hUSufzOVuI4}%aSjFDPsDfal``tBtquPBM5dsy9WHiq(x|uk(&`557YE<)un6~Ee?*W}#ClLu;0E6h0DP|KXC2rZ1hM-SuG66n?Q*^A z1b$|>Yc?&k?h$@loAd&(KAJAmbsT*9@{a6$1FOhjIyn=Hh5~U^nRgBITu(Pf)pv%z zy}jMmp&ShsM``T$yY%BZYOYvF$Ec+%JV)sI@IujbMfPz%{K``)L|=KDfN7;+I`|kP zxQ~F$+)rYfBT5kV)kD{g@bC^dqk}@kkpyq4AeI{38+Rh=qtR!KLO2FhNpxEa9_2~L z!A4OD8r(Slpnvri{Ul#Dx2GP`e=}LY;7C zeqa1-A~T;6!)3MLE_*wvlIMH?y*4#?CZ$8Od~8C$gw#eZ`AGzk@gB#yDdV6dBEVq%rCi z0xIl0?7q=sUwmIP+u9sEgG0O`?!C=yd(-8NZ$PCG(J)vCNK~11j2EbbA;qDi@n$0) zpr9BLAblnpibN;@>kP*mWUZWp%71|~@!0A~(HhBk!5`8p)g)H&xDhy-o0lp<+7`z< z;te39vyR%@VOF)|93VfNu2l9`Dqp55UNT)xr>lFasZ{k3D|_XDb_Ub+{RMqZB{=*j}89CKvmq6@}76K-xi7dWf$F> z8azpR4(r=v7_{f)yRFDQ5C$1yJV0NLTIVA&N@KiDd_G2#)9C%F93S3}#NBzcpBwxa z13f(XBDyCvcqE~FaCpe3H8#6s+ z9yn-LrWxAhn92OzcjqUW*|XmXa8X4FC%6zRL{jHc;Sd}0CxTwy>ks%9nD5Uw7owsV zU1*-)N4wj6ax z)M@e2aNXbp9nW5P!9hNuy*`Q!uM^xFnN%6sCFuoqL}k5Cqibc)$4V;Ktk3P z6I)kIr3K{V9RfW-U^=%dm2(@oDa1!XTj3SJa)LSPA=+)_YzAfZUA z7!O3e44_c5K{prh^FA&XEW{&H#InJEh@K%jVS@7FQLG>hsuJpuao3a@3#z2}N(Bbx zqS3-3bhxlm{Pv(N@a&d1>D~76gNM;;KKu4$u^8*zv-k5#0IdcBgUbQMK!vfnIX0S` ztz06)lZ@{%^pGY^KL@@Yl7QW4j%7}bTvRSm*yQ<5ev*d|K?GO|IUD4HLVh+c1Y=n_ zAP6x*2>64+NHBrpws?Jy;VamUZ$=Sge`;xQSAZmAO@9u@+$Ds-*0w0<{E)ecX03p2)4auv){RG3I{^@gj`#rFdw!h zP+Q-8G6Kho{0Nr6mHNeBv~yOjUPYhBa>>9?Zy!GPJf7t#yU9XRw&5AbtP8cNvIxFM zYcP)pNb1EVwpO1%tImX_oDvK`!YkAXW0iY5pPSCrsk#5>*d9XVv&xJwB`P`3&%zwM z8cmQ?y}{Gw0Ey5qJtPh@J`<$w#5BZI93A zX*<`LnR5X1y*KZP_$^NNtG`cjpjfO&Kz4*i0x67l$ODKi8@RzW6+DmX-?D2)Cp)+v za)&wovB9m`x75rZ>Vv;R<|+!Fz_#U|R7sAmETQMKZwVf%8anfuVSY)6qNM<8Pp#g$ zWL`oY6LKOf+w+)#pP*%Oel^~12)u#|b>Mo|hXK90TLFRNab z=g#L_+C8tk0kM%-fa3$_6Gd+IE^i_}J|?mtIVIvFP{BM^NbSZFYS@Jxc*)YbGSF0( zk%g{{hi92obQCY=8#&L-DNiKgnHJnZ-YBIXhC zZZSxe=;RyuQ1p7R!`_hfve6L!o>JA+=Wz#nG~o3H9>pv30oKnwGSB**_8837R!*M8 zlD?vOiS1fY!G85x+qQHQ|G(JYlSy_q zQ=Fe)nZvVjB+OJ-=I8%s0-KY?;+N^ixj`FkJi|n|>byU~EF#xtIUNk9Awzv;!iT$I zVFs^$XtGu;)+Xul8~JbeStb%;{Qh^3>?gp$u30tk^D)(F*n=qvxHKfSw>D3b1K9-? zBzci|VuK4e&gXKFLmy4Zx;bss_RaD5xmPEQgjw_p3x|!82?gUtEnk^G3BvefrHFS_ zv!RHTk4lCZ-E^~OYK=z8EZO`#AUiU|iod+yV`5A>KBMSJ^0r zxXYj(Ctw*&(!)s&(x;-urOyE;gh^+y|ARO?HrEtF8 ze~D?0v#$^?syukE0rwZHu7p8IgT$|T(}^^JruY28AMDAkt(~xDW5b@G-?&HLlkIe% ztoAN_?_hhcewQO)H^ML!@C+(}$E>6kWeQv^*8qnaa#l6DY;`aKE4+0eFdtr83eN`) z%z9$@-9U%6%$720j$8oyb6+@=$wQDPNq}E(0g8`Y53|cE}>(GmKS`!x-aTWeAwWLzgY*5KTKm-BehJb?`^N{5eo- zx04L*(%;4N15{icM9sw}4GfX+0V^wV77;bNtXcK|q2DA41;j4ULRg|UR=7CFArDh5 zJz6R<9>fJyj`svuDZpmJ;&d*pd;MNLotqZJ88#rX0nf*ktVb1)-@jC@RLV~Sz>F2kYXu!i7 ztVi~+WFh#KzHZ2FpNA8?7i7QS^C+Mp;)OoiE98gLRF^P}d+r_&uaZ3N8jb9iNUVL- zi&Y0YpXxyAD=h+C7KMeVp&rD&fjx@;YY_<47Kun~lCKDA>DSg$CHkul0J1v#%_waC z63hst)Ed!g`vfP{gWHZ}V-vV@BzxpbtX9{2#k$g<#XQ9H$J>0YT6;E zX?~dZr}l_hZ!Caf>DVbH^;G`Z)%*$6rW4JeWt#a9yQ?T66<97E`-zlvYCg(8H5?DX z-$410z&wHT5Yy~{RlZ9$TQ&=&2Db>p%SBSamnsp81d3&cRcay1!#cdDa|r5f%gN7| zApfV-u+T6Ff(G7C2KbnqVU7Pyl1q{#HMB0NUbBMnMe4$=6IKausoQJdLYIpz_Z??X z09!z$zfV_z_ zPj6p!;WdXH0$g^0E+c}r+Qf=!_Vf>pui<_03UY0q&N_U}Hv3o2LhgQ5pPSc~uXr$^ z&e|H!84XTV0(FYRQ4c68*TCz8{!9J-OQ>riV_Vd4)$j~?X5_$)24@GYt#^4m2 z?glh2i^SdH_dQ?%uvp!SsjdVJA>w_2ckA_NRNA8eJD)9EWu7mnZ$;u{xIyS1;F4Py&fci2ZArpM)!IlB3T5V${ zRnryY5-C^I6-7)eqz1nyCUm7`wjlgXu&OuAb!;kbnvU4*?)M2R?Bn+dQl22nJj!pw zTMX-de;GYaVk5XW(iy3V%~YZu*U{xwWBv5%;KQd^v#SPrZ1wcIvHF66znoqlJ};Q> z$lt@CYH*BYWF?Yqor1snhgG9@Y8C$KRPWpPZLB)tT&tv}4BH$kHWD495#4(8j#Q=IpJXT& zR>z{=wEkTku66Jw%UBEp-vhi9du5CMZryjHGpv)^vm}Xj0WKsMOm?k;q&mFBHGqw` z!QPR%)uW;Br-s>_U0tV0?nrL8w`hd;M7m!aedHr%yrIn zfp{mV;=&9oj;~p1+HJfxY(I3e7k6>HTP4W5@hbm~r3HF4;z#@NT$ zPh($P&RVV5kS_&`e}@Rb_Y#jp)duRP82eCuU9*$H-xg7mB65jI`~d2Wj?4-8(es>a zP^5O$Ly5>>Ba%!;>{N=E1P=0E$d0mXDvCLZe*v$hkJfXQNN0oLg?nLB1uM7LZnw7Z z8_Tv1mSB)^Znid2+vSiU9h;vB{yGdG;#an|AZN8R+Ih#m$Z-l8@2o=?viG+A{ub|1 ziQEMh_}7tr`c3*bE^GWkzp}1@5=dg5XZS~(&UPE4>)Cl8`j=H?{|VlEi(ZGz=^GsJ zEV#TxQo(q!XBNqRY?{rtKxzc>jgW(b@1F?Dy17l4umzm}4-Ec>H_5>hChEdcC*S+} zSk6@p%gF;YD_3%6h>T?e;K3u;!0RMi`QrE+G0?DDbVbJ}diewqlHK9=hN3L52Yh*7 zV8JwyzN5s^d<`Np?wnh*es=M(OE5Zbmer>rzml+`tL6pQIO2m>>FUhblRz zsLJy>st=*Au?G9B8Qwrp#5R#W;z6XV_U~6+P8>P9bPe_LF7DUR_aqHiZt&bgbd4%v zyBDHqoejF*nlXGq=Ijv}xu*=jZ}5NO#TUNevg=SNHV0TQ&a5V2bOga$1YN&gql_q! zmt+0CgZ{ts&+dcR) ztaurB{Q~lM27h}2A+HB@2fxaA{2m{|d#?Xdk*m&Kqd%SoB9kxD^ zdfv@=nf48Cx0kVHB;nHFX@*;K5vwJnAfY~sO3p~6G~$$FjcR%Cv15C27m!DMi_Prm z)Ap-BeLOlFyX$Rt#b%?&|I3JDaqxGJorZFg+O}!JlxZcqz(Ao0ETd3p&p3Yb3Bx#H zeEw7-bD6+hn~i+F(YHss5kGv}D6eZ|yTW`lN3`sdFc-69;p{pGVUaCNs8l+qDpz(cOpJf0aVGDPfGtf9g-aV_&qu@dl6pp=Ou7? z#|rGPv4xnm`bb>lB{m;}>}_SjJE0U>bTlHv0u&w&&JhOojH}^Vc3n?$^`X&6pjl%7S zN8LOZ<>O^vL8iy?y@#w?0auVa#OYyOmCX@B{ZwJ%qas>stF`zy=CHHVihgs)*G}SQ3X6<Y|}|!=Z|TLMbl7O*bN(`^|{Ur#Ug7_T23G$&?=R<>!*|GN1A% z!|7?Zm=?p)rdL!^q7X-jn~MEdb#Y2&n1mD&B5tNoHyF2%yEjo#-ElD# zILS5>HC<-&ab;Et3%O8ImTL)__jEiVe3oq9&obx2RDbAOxeT^vkuufMe6}nt&OV52 z{wbnzyDW!19=}j?cEB#JL6(<&+pfIcu+(fvzL6ixUxjG-F3E(0oDXf(t2N^ z0v%fu6H7;yiW`0Shg?+IAN&tEJ`{HoXC;tLdWQATJ}W01G)Ks{1$y8j_&{;{AywX- zedwWCb8BsTZEbsd6Bv~qei&P?Tixzvmy}^TYWge0(x>`@i-fOgbs9l4ELbz530VAn z#ETCJfOg#gfh)1XKyGR$EV-%0kb$DZHo1|8LBmg@FaJa)JwtD|H>0+~9yPYeI_mBA z7xc@3?%r+d&cC4RL%ra6is@e>GXr`)`=0k?pZ|LH-S5smKdwI$1|Er+TMT*f<`W;j z@15)SLHSk(D#OUb9mUk)zVEo_j(cr(A9@JiQwx{L3>JyJM+l@B4$b$B;Fca;w_ z*Rh4`qKRK4eUqM3Cg&`He+`bGL*P0aowY`IHdJU(6;IvF56L-LIB|frPkitMRswN@ zBHvy6*c$o(oF#%!%nZ-_YwwOG3b;LambvOWgy=XQKR>MygETxqLGcm2u-sTi7L0V0 z0G?{B)YMc~`ysD*It&U0KgI@l*}H~M{qx)nIjoIlaN`z#>tkylyS&03K_3Y7S2;i4 z<2ok9UyT&l>zG9J-9N>%`N-RU;}CAjCl_0_Q6HnZ#Q7bW#4N>_2MS${z(V1v4;chO z=?+-@C{vg{GaHNTna-8mZUA_{!}{%f{Ad|);)RNMpy&^V0<$A~(#~6+*?G3HqTE+G z^(;6lDRR=sU$zx`5sRw{BD1vJ8pMoUd-=z>db@P;W$(dE_Sy5fg;%~6CA?2|VeI^n z#a(lrzg`^P3c^523UZp>SG+5_bwi3mXd?5#du!SA8-t(T{pM7Q)_q|nf`#|Np5iVy z$o73fE$al~TA|e&iw#mmqR6$7y9sC4Jg+K= z$pyT5)Q2FSfpbMjWuHwICEDzll;N^N{ZE^C(Tyf-UoyfIOEj^yNeJgh@-+&qEt1?M z;Y*lUXxO}2qtF&j(=<7s$K7@_Y%pflpM8xius-HN)cL%5A`tZZecfItBFM_|=4w0= z3JMPm$JIMrA)4z?Gec`lk{1d|L+Egn{~MlP{NxvS{&l=!^iWs$uR>8+{32fz?h^)m zn;X*MSC{~nl;$q(tsNGBotX8crw|DLJ_WkJL_bbmYv-f#zDVZwdOXg~p8a|l@b1HO z`Jb*e@n?CTxWBB=dE;@Kk3EWgL`W6ljv5ukZUxq)n{}H0QX3Wg?<`BHFOyc>aZV}W z^Dni6q$N8mQQk8_Pd`_wD0q*cGDq9%a$U>$CR1D4jz?)U9)P=x327OSjAeAY8#>eu zn{BhT*)gsdyLQ=E#LR&r$RykK0asZXlaoA0Zk0O1@(#$d}dJ5SvWUx;&c zl(UYHgQ)+4W?DBbUe+u^ErMk@nKrscdJ?%hl*~3e#IM)ZMsZzNugh< zv`^s`pGBX8O-%H@DF4i@&+vRk`2F{Wxrkp#OvdH#d(ma#X}oz7Z{K`xm=*m(F@bgK z_u9vP39XX87ISEyOug6yESenFu55Q{$ZUGlwCZV^$f7MCw7Z`WL{a!e*Ez3%>`24d zf&@@2AH@L4b^r~#Z{DmUGnX>TIp2J{)}I8;bpdtqhaM{20|m}Ou6E;Go@%tCc2Zw) zlGMA}o?y5cB-ynFFnNGaL|c2n?|Vb;6gFE<UI4o4IDc0OU>-?c>a(&fvSXzd{WYm?~ki_YsO`Jo_Y0QRw=P#+&) zynqfvGxrJP3pTP)o~8=Q!Gx$t3}W1fQ9~Sq{1Mih2+Io$a=Wo56J`Yu>)|5|o;^A= zgYaGy4n{)wR}TY*5F6&Q`?X28TPPwA!!T}7z~kjJ;>^CNKTKr9kI?U;r*MB230tAF z$L5%(mu*(v=sqDZ^TtpxQ5>UCYUeOzd27WcRY#0`0rb2NmDD8a(Y@3)pR^Bsg;#q+T45*ewfaE zv$8U^aD8oWCYmZv%ug+zTd55C`i^r=z52O^VX2otC&}Y8U+KJ5a?o7rzeS&>5@_u1 z`C=+tYeM1|dNwM&?JaNP`2&3aaX~oymZ(tVA4i|!@kTtQ?B_rFIQ}>r<%P!`@ws(U z9YHW&Nl=G{kd8X6!YtMiDOVkAVY#$UngfAG2;Q_17ELXB4fgR~L_dv3`Xpo@*lJ3H z(q{W;Dl2iB5bu}P)V?{PH`DW(LY;4J&V{sngU!9E?6Jop(UT`mN)fbgpXUG`Sm|O$ z*K0*A{SKG*-F|;M_=NtBAmPdJ4)ZRdE(;=M$4E}KY$x8ZuvFMtM*To?1QIzMtcjgF#)ru`=Q)J&8~qypMB8i zoyr=ZHxBl%NvaOWE=^>9`7`q?TcOjbA^o3Uf( zGG6suHOD}D*>k=?vUFeZymXA&9D~1r$84V9D%l!Dv0jiVs2DaF)f!}!Q4oDdfmu*s zi`J-@1u26q7P3RO=bW_w^;+C&rQmS&pdr zawan?$Qh?k;xURDfFQOH*J)R&VZF9_d~)gF6~j88>oNI$+33;Z+WIWi)QvcC9Zc@3 zk$vq}udlza zgC>S*;P6;os+S^1%5lOwbug9Mp?V&T6BG5?V3y3*w|?8dL2&m&#^*#RjvYC{Qn=<;UC6Y zoW3~18f+(8;E`e=hig`{n1kz7=b#mwMey`*QC4;etZwuPVHhQZ>~v5E@|X7Kcy90m zj@ILs&^J?e-c{#<(L}}<4T_2Afj;AAiiW`lp7DA)0V_Te}{pduyvh zWVAt!hZ}8}2#!CrPuEF3I;k)qiEyfu2l2zA5!d5}_)k8ohyuW@M-8GCNV$YFS!n2NifK)ElHA%>khVhS^Q5!6f67Eh#Y#vYyW>zC71+bb1I>B+J_|fap zP0Q+}Ur+?GG>2xV(n4p^<45Pr}IoH3> z`AdnT*Sl{z7%%#Hl^09%_>>tQGUg0J?~$}QgEZj$vekg<95mn|no>tzE*p>LJLo3} zlJP95u{aMk_y|m(Min)|E0{wHT`mx&iA9w-Na!Z4Q{j!J8e42O=+LeeZjUWuJTQLkxpH_#FG(^UvFJ^p;g)8zyr!w*JvF z(!y@?p;}*2FST!9Dz&uqqxz$d*75tY^&M?4rO2w6Y_8WYkp$flxPj5oO2prgV4 zT`U3^F{v_;!$`xoFP1|x+&ldI6?%UgSbC|XcB(imbkwNZod`4AyQR@#>uUqjY z1)qm;>#Rpidfc*GRblB#`Z{x;=bM?v(Ll` z<$&ZhW1-?DnWJMI(x^}Il8gaX1P7Z}u8_eDiA+?>#JYd0YuI*gZ)kT=eP6LOewwRg z+aCaTOSFFBZd>a&wztPMf1@|DVGK*Z!Q;LjcGp!%RY4~BVY_m>-7~k%HoUD^^;ZZt z1?*2Ek`Ol@y@|nIl#4sFr0a#g9gfyzJOMbEupy=H3RQ|=F`i@olGDcN;!&#)t!8{8 zaQ{&hSi2l|84(FA7eP?6nhBW6XOx0j(2a63n&r$~I3Yyb$LWS(umFbd&!x_&{%X}f zlNOUgz+~A#IGPH04qKa;!q87Z{r=!VtvLLA*w|x9`m-a&U&BhjRBVE3WdvN)okb-iTQ(m#gs3Q&&{}s;iG&jYK*%9dcQI>wiUG z$M-_Q&kHJLG*`?9dRjYmt~!MFZn;;GGA897w+3syb;u0{(DXf%MYHx=Ems`EV- z_R}V@WYZ)I2!yy)tm5Z}KZu4~!qeF@0xBL=V^K%;Uq8*i=RN%N^?q4KuD^_(dDG8? zZoM@Z+lM-BeehEC%$X`u^tNo6-#a_oU0hsz>)C?KaW2^vCzkGR=W432aI$Xq6;5Wz z&a*k~K%P`n>|kD_@J4u45ws&b#GJ5Y&oyLIZftLMIevq8LYA$`veDvQq+psna_TAgB}$%3c6-ZElSb6QDhAj4?Hve8m0nigX*=lW6nE9~{yw)>CV;eW>kf^QE5 zWc=pvdj5~x+t|!h%Tu{TLaFW7_5HP&EX3oyB*x0>j<5fY?gD%NXE_)&gaF3{{+J60 zLZBIxWoOK?OEiLMA`5H+VHLQzwFw(Yq+sPWmKhs9p@6n*;n{E04KcCRs1)MSAj`N> z7h>Phc%ky&ODV|x8gw@a<+QFRz9#Uoh!O@iiLerh@xq`_QWZzB*zcf6vHrW@Y7l$` zAk|?Tg#9o^c&w~1a*UMj?|^EAur1Nfp+v0P`EBnd(1_TmE|Aa1y}#8NI_d|1GdFi` z_1xUtm0BSudA*@%G{L!*tlQ@WOqd`i<7to}+>iy}|F`V<{wpLW8LW{a$?_}$zVr^f z@m{OcD7Ao8Yp73j3B9GU6TjS!LAPB$E^c+#=;~e2S**WZckTaPW;YZ zy!e?j*#}-kZz7wrWYek7oXtM?;%NSZoHfcNKdxhp@pfq-LkNL{974$46%O~$=1R@u z$D5@&)EPON2V0{WiSE>)&~)hbM{mc=L)O^)GVW_%A+e%7c%XnAw+L~wDCI!0!gJS@ANMT-|@&0|(K0 z^egCmhJG0U^t7=7J#vFQ;9*U9cMPinYC0X>4La4@#iXp2^V@V5cW&trc_wC+0ku@R zZVa}Nan;r7bX%=1S%P1A1OiChU|UGvXm3OLX_v~$?_yoxqgL%t7UGy*{Fq4-)KXDY zsdL$~_HwAMG8A4_!#4@=DT?SjgWFOPZpAH;!QZsO@ausQc(*+B{DWve9{Wq|%JBet zE+q{;q=W7NM`vKp|d#S$oUEE(jYH`*}7HWZcogOA^FtiQgrB>ai6WU2CC zKkeIrKkQW$h3twKD`csVEr+HGg(=rH*D!&vqWa3$ppoW-aA9-cKPhHkzTF8p;mlL2 zIy<9Yc(t~E8(KLtL*CDj=8f{-M2Jsd%c1BTYm4AV89uvBqdRnJ99Ui!o7ZPD*Ef-A z*hwW@(ZrQf>DZj_@L}Jab?j&Hn07<{{xVWEN?*eKUafZhqjT}6;&YGo-~H}BBq35P zfUEyE`ZxGK&5)-|N~US=CdE!*3>AG^lX4gk$JRkaP)chHDhriRBySIj+R&L?DLD}n z%CmAx7UhZTOm!+WF_oUoRu+^LQls+z8DsKw#cVLRI61+G(&(au)QZ3fVNos0lYA_z z$7AkfUQOspAu1{p@?=2Dl%}Qc2SvXsOh$Q;O=Oc+UBXw!>Jn_}b&ObZ26DvKKu(o* z!IV&~cXPzNW4{Tf;1!@BGHBfbl&QNMn*Co5J&3w)x%GjK2c#S+vN1Nte20BXaHQK| zJl)pCE&1ywcn+#{_9koVt~EgJ?HZje6RY$lI=1?$Zue6k>2G$sn?rk+j(;Z)*$zp7 zoLB(ldg;1TE)0H18`i@*6G1E;mkuP%xM>F)VIKQBKJQ1#-4B6p0ME)I5H157tyWh{ z1+{L)u%L(FMx;_ktN+&2V4FlSU4vhKZ1b1opT55*#uMo0QpRAt_14s{LqNL!*cATg zp*T6UL&ib0o78htEuK>SHY|*OwoU?NvPz+|3N#ZPP2aqlGmKn8^;P#*eQE)|yyoUL zq~HHI$4l526(pYP%hLy^6Pa>3lfWyFfz>+8hykp;h5{lpj7PnL`Z*km|)DKf-lrE?oks;XRGjV0hCi&#=3jbP6}!MO(DbHDj$ zbnT?~!4!J#mQ+MP|BIj2_0ppv9E{^0N)2x7;e)nXpZw>tjpMOS@X-L-2iuKaYR`2* zrD}CsJz#^{?snIQwi?ue#tBc2&1Oo$n=KU|=!V9E0%eF5)W9M@&*rA3kP?%WkTjhQ zh9gqM9a;T>Eu18Eu<>_lx<8$ZPbM>}nn_N^bJO>RW!UkE9W;0(!dA^lEmIlUk5>o= z6vV$Mqr4B2^s^T76)E7dk#H$`d}E20u+lQiYw;Z5M0`NON;QR9r2~1bPEhIaa@6)eMV}=yh-T_Fi&!Hq z0jDvkdr;wKV(n5R1Ta7*`}5B}`^JBsbl3^Z_PH8Oe~gB8V53YW4?SWRZ1pN z^OUVU*VOtFEoBKYdH(L91B(lAyi|bU`OZ0gq+Ltm~iyGap3g2qF+9J^-~5 zPYixqFul~Zg$9G48a96y8y2qJ3$z?p-QNB@4LTewWezT7Dg`w@nctt!$JK&IuMXN( zJvo^;k(lh#I@NARrYq8i%Hd!zT>g++i2L(-f4qQZBP%n5zee$yl}M1m|E%ZGC2{W% zj891>zztXnV?dPF!9pYYXRBpEHVx{5P73eAiziRElokoa4`V8qNqw9`Dq6s>)S4H)&RqqEuz&+m+E!1Uca#z6wgOV>6p3fBb%fhrV zTbj9)FV!1e{4VFw9Q7j{j~u&umI-nb@r<5Hn$y3~H8w39>od-LxF!U6mkD}h75Jo7 zqG{Ed-`R8j{d>|MsHD@C4pAN_=vLGwi*Ke@NBy5#%A7v6FBaQ(3ea*w z;S}zQ$CHT@7cZ9fy>KFY+h6a`$kN_Zr}oBT>FEO#MJ-uMB#vLaczrTCxxaJkOtQIV z=ctf+czfO^tm=@cfK_K1=4$vX#fUc*tS?9&$s(2x>+puk4$Ift_wx@tkg8Tw4?Mu5O^3%d#QRSkPEDMUW1&z?J~5Fx zeA3TbGUAW%yv`9ezXC<=Bis!!Y>TnQI>8yP0m zm`bBlzleWgn3RY63H(zJYQ(2n?(JcLjqQ)QY-d-Mv}P5tq=%~5a%!r}NMmgc^U5N7 zx^nz@Av5%>AXa;z};JBA(g5bT)bz*3QluM%QHx1XKh2A5B2b%7o=O)*M`b zkWaQ?MJQD~y;2N|_o;ehU4}r35-+4gUCq^V_%+&^$fqXe$VOBXBTvfueqE8%@klgR zKUmK>woH%>*1TZL3t(K4hZ2LOxhb^hOJi-h(NiCLOzmAP#cq^Jk7qKL^hngde)Q zG)~)4^A@RnTSL9w{(c-%&pOr4W7fv0nu?_wX{K82IFcx?*oWMu?apiO(qon!ZG_`8 zb!v#qsJ}~#jNMM;a&S*V7B-+;60kQ5(i&zLm93%v`|i%%qu-NReVVLX%-;R}&3iI; zzwiBbXD{lo^7LK#d&t=Bqc5VTuwFMudLdQ>e6)yFs}~*a;iByx_OhzaD!)~msGgom z$+7>G*gu<6a!OiD=K=yZHTcKu$zWw=Dw95yMNd{TX`k>1rCIR&f-e|+!jTC0hclJa z*^}uk)>ZjaSz9-;aef4Bx~OX#C4eJ*FhZ#b)iJ zQ<=eEWTvJvD4Ut;rj&?MOyArtR$e?R7NhYqXFfXmb?OI7hCxg^8qfV%!GZMxnn;G$ z|BtJkP{SwLUkgL6z0g5~R%ft{mw2Kx=qhU4pMa#f1$%69KvXh#3B15chwwQ$eBn@c zS0bEs#aTjQxkEe;X`LuR0}GjZc#`T}U<;K3dtumZK1IP)jsvP!pP+l8t`v_;&b~(V z&%tJ^*OPk?26W{8kUW3jR<>DwoDMJZ-g|Gm=bqch@}7IL!`E;lUVg%{-ND}tI#B{F z31ImZ0ei(^0MT?RZ_%oys6(v=*zKaRQ0z`F06hrs{SYKHvy+ILV#0*vi7oK;CZaZm z$To>lvBdif@)gq73iZNHkNqg2!HRuTj!SSDp!VoJoC&{#J1E^#;-OrV}s-e*dE*1*ex5lm@x(x zRwg0%Vgd_EPeO2rfdxW~KsLc7n~+3FATP36U~kV&mTcl1xMA;1LSEPV<*}c9&;Oh% zsif{18=y$ zC4BY=W^WPFUs@B~FudRtl8o*iy-uF==b}=G?*qiFnELjE>G%g{iD>?3Sj5Vq5e^vg zz2_uS0VmE7a?c9{dlX*_&79NFJmM-5WZy{KH8ly+=@Koh8k(TzDlJY%m%#z^H%1nH zVDt=H(p7It1a#Yywr!+8A%*piNzt7DbPzpYjQ$2!B8NU;#AG87Hni)1L`O>yp_Y!# z|DYv?f9(uA_G$i6J=}~{Mw>KCKoS47#>xrcX3z$Z)XSna9)u$Yo z#Fui8*sk)fj8)ui6_U@riJVBZGV371WY6?-x&B9C@o473Cmzhe0(mI<chfggpeVXv| z33xlZt}doB4{nr8rIn}fT1l=dCGU+zbQYrUt_j_7{n5D+<>$i{J82XOtL?2|QNoq; zuX;<$jk$>*?5hZ}F&QGCdH@JQ;Y`u2i6)rphnBVb#nF4e_?L@|cP=je41}HGx5vr* zzDO~!QMocEatC>_%EM(To;TYQWvV1I2s5F+E^SYXqq&XuM3Gf=v#JNisF?NG8evpuMce1b%I6$_|Y5{#keM}SKFj0^?0t8OnU~rENRhpe<5kA zHA`oVz_Fi_8G~D|%Vf9IE;Q;76_FJqpA^8$Uj0qAR$H-m4 zVj{_`n7bFZw=V$g=Pfs*-QCgUy^DjRr!S0SD_|Um+xa<7(Z*gU7?@2H3jzlaGEvWx zI#Q=t?8>{_+oQ`nxSv~ATCpkheR= z{EE*8%5Rcv3(mH|g73IQf>vJi*b%ix2S0nppkv_vvSV4J%aHqr&ufqK001x;bUU3r z!iMe{+a>#WPKp5XL!F{)i{zi=ra(rAv5y6JJEC{oUoT+Y73@4Dcc*4sofRhu1*{op zSHGz5?p~rq2hwnO8BdhN06eif(lVxhKlz>W8)~Qi9isQc*tkeCPB%R#@T8=G@&KxX zR$4-uh&y}<=#%S&e1uK5rludTD34Vb#ReNfgSE)=rjpuRj@~$WF`hzTINrl+JRWut zLX#<})9F!rAE;=3rMNN296id+ZJ6*2o&NIq82{U&i=pIA*;qti@t+WhJs|a{+0T$H z*<~jKZjq{Ijv$Q_ahS6uFeI4(v2F*Ri~~}LC~6xxE7W+|f!Xu^(YNpoM%t-wcBQ03 z00Wey)a`bSN<&F>6H0?L39kOz@g2*D%B6Oiu!^8lU^fanp+P53MHbMr-|?ng|#uzJ!m^v=+@ z&k6-1oRIEklstP>H+z}75%~MJ?;K-d!E1CcA5}RnRcao=y-v2&D$9k-d^D~s8b&?C z3jPf-EpYa8{r5!X2~uPozy>5nXl0NXF+D3DySZ zK8=cyB#jHrwyUWA{ISHOgtTtgT_$yhmY zV|^=L?+V`KY@l7H!?Ld;uMTsGuIR4w_HOc;jLTqi&6E2FJvtfjRtR#3QlYAm4fDu3 za0sYh&Batr&adWnta_`KtKxB~Lj$gmm0#jMENN;ix0>(u0G{!~+>%;ZZJc%hGN4_) zgY}PRh;>>A4t51UVFUwEMdn2KClG>@YG@|Dr$)IN-#As}+0p_%;agsbRl{6miPYp0 zmJhz0*RKy8KUIw%FDs=dZ1#%&t-1La7dTd>Rf=84g2CASM{E>1g1PF%kyL2Bbj87D zqHJZHsZnZplT)Z26a6r?ORSXFH)0bbg$SR%cI>DOri$OS*QiM>5#_a3Oe9K9;mKYIVViUJb1ke#RJZJ)OOnn)sS>f3yd~oayw&dsmJeW~`!HAiz%e;}}U|3d!u`xhCXn23oHIp`~UQD|a6rMZgpB!d+&7wlLw zs4kd(n}nZ>hLZz{9SJyJMt0sjvG0AGFQu}jkdWp>K|T=Wvw?Ixl@A4FKEiNeK?yJJ z6l*m&@>(&ORphWB_!&NehoopEtA_>N&-vI`Q2sZ?k2v?0a4J#WsG`H>+afT+Yo^lF zY)W6E^}=i<<GxG^CEPeQ;lUEUS%=isCoPH>UNQ_}J%g z{VeJinXQ8MQnjY$2$~&%1_!J5)M1w(>v)v7u2Id+R!_dtby$mmMHNIJbunOLkb+JK z`6Nfi2(Gx}lL!Wy#GpZt!!&g3fq4GiDz1beoTCh1sl>go0Wpk?f2a^dqAKXx>+Rwr>hJ~rw#14%#U1$K?2(@2nLXD$)rf#nXdG_?kZ_eTP|gG>r`G@MqOFP8!6G!v79GU1PFx7&WMyFR?NU{quF?l|HB>UF&pdU z;*WAib$oqHvEUBp7`ZVv9iOiZ401IG>(!iK{(w1ATWgb?)Or+XHP>hgDo6O93y4)n z(&QGB$4RLsNt#4Onw|KZ4HE>N^$iL_iq9(}Cd>1FMrV+p=d*sVY^}{!a ze8mYF7D?XAG>-VOF}hItXGBI|;y!=Phk~3h=lAFQY|!hk`F-)AAmaUgByf1AKkwrN zU(N5f5BaDkwFW-BSqnK)e84~FGLU;N8YDoqGi8j1XA0Rq<0ruyipJJDf_^Af?3iVI z;~m6Vg2sS)@Zff3KD4__hC5iv#GeFaCVc;OGWL;$PIgTEN%UMxFaK-`O@qA3NqgtE z_3bO2`Gs?!=lWddw(K~Kmv{E7MJ8XRPH#9YK=}$)H1Mb!42F_X2vQaVcaZY;+h#QU z>icc8*12xi!BQR~j~zRjC;0EKw1j4hFsHlr)Jk-u=opeL8M-7{Bv^g4i~7S(?{e3& zx;+Vx7P{Pp==QGEmn2&jr#$Y(D=@fE;k?h1u@f!w7%UDFtqb-yG%cU>_wS-_pbvrH zd<$t?h?r^>fS}cutJT{ox8aw)e%Q4Q>nZ;<;V(MCD=w9Qp9UT=$JjXSTkY@dy;K>A zmnvg)vFq@U{IlwU2kw_Hqd8qh=iudhuVwtoVP&{;=SU>}6jrT5T)~8ahy!=9J993; z__IErY)HP^!jlW`)VW7|S%1(c88Z3CW7`2QqNnj}#1oW)iiQ=Ml8HPY-~64;kMG}t z*jJ*?`Ct9j!88B(kF>8i#{=IP9Egtz+=8Aa-!tQWE4Yw4N<<_hDQPtl%_dfSc2+?j zk?a7HBY-soq$}%s-$^DIU3A$%dieR@qPQy)f{-#%nyI=@a1X&c0@lGM zW#|Rm3WS_6D&+( z-W%8dcKr$ZW#-ZI#XGj?zc6+_c z^$e~@KT{v=I+BqGMz|OM0{uDqQG$i9;L&^0)55*zq~{HuCp=Gjp7MOq^W&b60i&~% zPezq(jg?J}<&-UiN8vIcSYXXxTUlkfW?hq3R@-JpRuXl}Bhjuy0)b`%1uUqz9Nx_l zjU3=OwK^0C7SKALHsNryO~@zK;CmW$t+bVuRSqA=sb~`s0KY~HnBPre8i6EykEo=I zDdkpSJ}pMGsenJtGAQwGQA`RAAxT%&0Fz+?WO4uWadnwt1S6Hnqzr*!77O`eF<)3b zWM3@Am1?yT_icOq`&O{^aU!}BRh-}+SQav5GRD8NSf(eLZ-sPP2}pxQ{E&Ol+|il zFxQq+qL_-Wqjvpj_ntZIpV?x7oo!1GnGbwpdrN` z56DDE#0RigJqMi}cYk+oy{e`+Pj01D^~_U+6v?tk6)JWD{eES=oQ$jK>(XjGSzfO= zoJ2)cg&wP_#dGRBP0pBCTb7-ukCiQaY=S%%FzV%p18CcZM*hRQ zjQ+ERmCosTr7U@uUwdQpb21r&f-XIpavd&t+MeT{Q=XeVXRe@CYaAJ9>IzuMr{3#*wa<6T=PPr5a@0d}tWf)8vKC|yD(PQE8T^M@<#0+-QsLWUv0^d08Y@L( z#h6tr;^liY*=(kjQbLtVNJ%+Z*8dg#1o5V02?BZ{2Uo}1_CWAwkT4ABn?R$g0AxU$ zzn~Kv;jnt|Mq!y_qZ}Uyh2u$lH&u1xUKMxBJTRim@Gk#AQgf+kX9sGh~)ub z_tmdfU!7M!Ep6mnXADL1g$?ObDy~kr5-Q+h)o>V}S-tb`)K5tp>T-aIxG&+j{7H4< z*8%>_B#E7+oTV)i4&-Pzc0xu{YbMPiO1QGptz3^d8S1**+MPIx(&Oy=;+ic5quO`Y-F3Pd}tz-cWwv+Jz0 z*Qi3g=^@2~Xh<=7(Z0Lr(M2e-f6i584e*18V}I#6T&_Ua@CYg#@T5IYc`l#tkB0p| z9(JedK;$Ge5xQEO>z9C}iT^Iq0wDMX{#uiQ=y>|uc>HTYepQVlyuT!*S8LIzA&FbI z(^(}NM1(t$M5U>g32~1A;Dx_JUuqaeL#PM!u->Yvxtv;S>*4ueO;|OIRiQSuKQb4r z{ZkA7T?nT(Q~0R5&`1?ls%kc?R#yrsC};lguU3Qg;F}7C%|c<^4n5ST5xq6Xd%4!8 z_;Qn&(%x!KudR|rj|O`T>+6BrZVRm6Ojj8i<>4;Vj{lqFRL>MiRL`j*snfGQQ=%g~ z_XyV-wUABWhm7HoKs5ABblyBIc11_VMAtQFv4p(QKT~f0Y9;%wRJwkJ@*zIlU3X}Y z+*MkHoZw)qtmucf%ZnZ=%R23C*iqT`54tUGTW>P;aN$dVXB@ah;8;xAzrW z^PMG53 ziNxr?kYFdkF@GI3-;0!9phBI5^J;4Ix=s9()7{erB2S3RSOnsyV!`Mn-iOHP>j)1f zh4Xh|tw5$Za2R3@NoqF~(3GZu1e7xI!#7NPS-8S&ldBL76b8GBrlKB}O&V`%;ANpi zbn{YS_o$N1DsO_t(T#_zYA+qfmFcO~hrx=R=eRc+dW}m8k#q#Vgd`{W{TaWXEZ&$D z_h?ATo|tsWi`T=LXgdHTr9~Y9oMhU560S)Dt~DnSsHI7?ZOs;ELu+7Jg8cr`vqxfz zQdEuzcp)6Y3ng~stbkWV;p`Dnp884_?XUj$E zg~dg6aq%jZ8U3zv5Po^4{2>sbM6g;DP$P0r$5Be;?h%3WbA;NDL;Q0az+k9rQiEXq&Om1jH;U&JfG;9PS6=9>+gcT89! z+pVS(2?yxu@Lws@zz_p@87>r)vsE=6Q4&Ht37n9=)_8YG6>}mV3FVV9p7WtT$J*FK z;XqPkg=9n)0uCHeG$=dqnQbI#JH!P%)ZMtTai|QV;3b+HQZh_7Pnl z0`}+bsEc~_Ojnk>nfe7?0-x1j%Ey<1$c2&(BIG1lGUEYw|3xhB)PV(DhP+#vHrF>m zxFKkaLy4L#?0QacfILX7jQ`PYN9szQY5bpw-`&9-0*l!Ae;RS9LkjRXcDez$oB>l(RF^Zr^tE2jELRD343F!2+2$xefVy1cu;A6=Bt~fgMK;#pC9bBC{5C9O zL8^elp)Y*4_lm92S7CYNKfDPw|HGT!wX+l3*?Fwj>%HQ>n>Vt*U;V-5d$-B@x!2yf zRmJZwAA9rW8}WO4ef_vI*ZwhjhB8VgXyO4#ubPeQJb2=*Z@p`9`Uy~)`**$dt$5>! z)B0da=1ddJ`iT?RAW>0ejU>Ucl9E(Z1i^*ILJh?VdMdV6F5Iq`S5oC?;<2Ujn;xmo z)z#ll6#xA~CZ(i}&*bF0ONkg#Q$IC%{(hQp0TP6LPHPVPulw|;Ux#{wPk(wU=R-ck z#!h`oJ(uP2(><$eO-D(O_ItMP$S#Ye`KmPfp=h+gCAj4W>AqEL5XCYbsL+89ktCow-Av z!|n%1=0V>~p(eft)T0+MDTY{b)IQ|igXZ*uuL+6mQX^oQ-0hYm1CR6U)7e*tixhy z)9q2wYk$>j0~zao{wrgXkfTjd@V(HCN%zAB5m6-9dcuk(J^uLaz)7w6m14G) zEjod8kU{yPXYB0i%ZYF>7*5CoJKV(fJj^RWX?Ry^NH|#!~8=rmS;}Nm4=d(f#W-=G^%*GmJ(82B0%32 z0>eqYI`{aN{n6lE;W!H3A+lAZlW^8d;z+G_B#|LOt-!*OU5@inBTaRkVk@jfPRv&* z7qw%f>*MPxT;-}X>JdMrsz9n_99o@yFk!gPF?fk{_~@W=$T@ZitK4B%3@10fhjS$8 zLx0FQjH{f(F!b-Ct$YL*@UZK!ps2%7BGJZj&e5f|qwlSky;Mhf*_~$6-v?N8KkB&y zq%ZgBX(*6QJcuV%ZBiY8vxV+$IqT2{iB zm&T>#WI+e(vYJscMXdfd!x-;Z1@sod#&q#yR{t zI~>E;nh77ndcDbX*vlaMTH*SybYZW~uzWP0smFc(Aj`02L-aAoxj1ss_Pp}qe<$Pd zHGo?}?W`573{*%!J4a(ns1niOlAt5dPfY-$mgyI*O43#*(8Cf62V>#Qh$ytY2&Iz6 zjFOwn`Po1)BI+m-j7Bzjfe&#_zw>P}k@qtJAtEM^xApCo)n3~?QdCZ66_$}wx0J(T zBq2oTH@R}Pu~b{SHY;(glv>oY-jEoH3lVx9-$B2MK1{5d9B%N4x4w)bl=5(m0NMZu zvzJBBXj(EHo@=#|k;r0uIhR{*FGM5BR%DkXp)Yg6AUFCJC)@!WcLB=A1+>*Bf1?*R zIYHnye;K`9;6|S#+XDA)rzaW#8#LX!SjwN@DYeZ5da=a$aid3MRLtd?3=>-cqo!ZJJ0$@4@gp9T^C=Eg4(j9SwNsA)onKfERCyy?X*8ZP24cEASGQ{Z&%>1b zbUNLw$BGLDA(+ZHu5UbVq~kkM&8kO5ngTQ>dt`{;n|kOQs&`_52B>W!>OlMAx1slq z(;Fp%R<(3`xv!&+0leQmT`z5%Hh>^&`Sg+j1R2}L2D&4}#cmJ_8`c{W6LT8e zZCe4yY6m<^Bt$}KQh!5J;@p`yP&qX0zdt03p=Uzk8)MO+7~(>qln@RGa||ygV@mjb zF;wXesZ0JXG+fmKVq`2d`WD1)Z3(OxW(78tZESQzKH&8ViBQZiEb51odeYcdI;s2j zU+?d!zTaC_J(JjzzKyZ^ebw*}UUvOZ=jB)JkT#^D6#t9cus0lDdfB!7|EZ3{UT^nh z*U>+9k6+=r<@>zP&8vnA`)yNg|?^Q}c zcct9>;e^}J=5G-_NjsX`VO_DASh!XJxy`whgy_?8EE@$w7al)H$xEELx%{d1iuV!e z{Q1iyyn1qdLxRH>B5@OhhZIZk!0STBHmR*X{IJ^A_rW^0zmGgE_}qf*P2FiDJD!c= zXHCigh+c()Q79ae4E652Rl_bwC!dgI6z;yeV04B$Xzj3luue4_6yu6@>f2R9Bu3qd zKb>HV+f3IGu;-z_o=AU?;5~4W^Jnr_o~iVb^#f79xkzG z0mTKZ_I0bTU&cy@fsAe+0;&34&ous~V}(03x)Ea6L4p9p)DFefp%%Xj_z!i-ays(z z!iCYE{pBQH1#(~ucE-*)4Q~sP%)zFURfyUoVdv(PG#xMe5Xl?Nk=($=(f_N^jGdb| z?VP-PW)pG-A(wCt_jn;VwsHJA#Tfx>l8r{#;-two8ZK-aMnR13+iQG>UMLvG<^uPQ z#a}Hf;Jw_>IdvZrzhBO-yQ`F%NRz^b&pmY!yfguP{ri+l2a@!IdeB7@FqyDZg*3)9KW`G zo1r#OQ`Dwdv#d_9*SSnRDag|s?e#j2&&2&(e)3z%{>|Q=eZ20u!g*>FAP$ZE29-_K zbYAq=mTS+roB=8mOdn5zkPb8Ocq)$(;AnJ&uF7QfDY6{@Zs`0D&I~AQ@D!mR1n_C~ z%VaquO9Dr&y6?d?BqJU0g9$z*8NJ%HbFwwULWl=`tsL<(u({+V)^iT*VOXO$vs5Y+ zN_f>6y(e8s7cvpBmIG2lqPo(+n<1+KG^L>s(3g_TO0j-IL5b?}$+QS2axj=H3Dm3*qfl#rAD-@L z?_#=|hS=PJL@{0_c-~Wd5R=3M&Bnw99D<6yM*E|#Zgk)u|Mg+f*(XbUvj>#! zR^PY!J)>hy;nrfcwr1jPfzPl70CHRlz4=~TmU;K(oeQ0R^Yf#xLjfQALhxffCkAJX zA9g5q*rAwVhrxw8IvXuZBN{dIx@8hEL;E2_y}!IOFdDNC!^1kGjkoNxUK>BNzHyqK z|IGU0MrbXSS_^F~+FRjuXpX>mUWgEMoq5ku&j~CO-a#dnJZefd8T6P-LBVQ2O}2A3 zn6c_?BPzLAy~y~m3O=>*W(9rf7lN_=EkZQ<)4^Cwip8D~q6n`6HIuAIzljfs1%Ck_ z@gN)#joyqmQxaFGqhMD#!5ZUG&rS^v41&<~30XescnTCj?_Z z5T)mtn(JATg|Z5H>t+Rz?V2`-(fE2Gev7t)c35cX^TqnLzMGX|aj95T_(&ukiL?#| zoA%xw%BK89_EjSW1$>2}jgAaz(-5?q{Np zH_La1;_H=0C7)Z(%bFU4ba-!IDNl)@-WuJ&a)NPZJmklRECsy4gQaQ)J}_Tt(Nwy# z_!wtQM!3DPM1oo{O*HXrLP@9er88Lbw>hUAx%6B3*aE&Qo1RIoI*F#CDIyfhh0~gw zUWFQHogQdX6QM>iOt3N)K6d}nqxT;(@6MN%n_mO0*h|Ju%k27@vq#zWyB-e+p#WY8 zfy!!SBP6cJZ4b!WVz$0O0(Iw3>SxZhZ)<)Y34!|pp%7jONJ^K>>AV<{q>$*284loi zUWFOcTr*`d_F+BBjy}PynpE0&2F072o1W{Fd`gPRvA&ez@v3&`8E^dNpSU^hJ#*(Y zDc3*?q@L!s)NwD6HNj+osKGbp7 zFcQ(dl6lNb`X+&Q_Kw-Mt5AG!ZBmhOGir9j+5OMmc*r`W^*$p(RU}fcpPn?IG2ME) zFNrH6c}b;uQ>{1McFR|4J7uP=Xsw{Ghqc;0Q|;7FDoPT+544xNjpXQJV=)SgL)z*J z{mgC}T1(E|>kjK^S7@r)o_3YC^1A9(yjt%kZFG1o<}3Mp1>OgGcx7D#s0F<6cqVaW zPM_ZTetY%R@6^@$_Z9EkmHPRW@8ROh?C*BNCFPgw?04CfyIN0o*T;<)9H$Y$go@2n zd;l7(AqO6KIMhzf@9vLbfxF$&K(KCKdiaFx_xU0or;{LmnOYMF8UeLf!gF|Kt=+u* zY^(LGB=uUYUObKU`C+Twk)%$$HAsu16Sr#fgVC%zJiaR~kB(hVYwQXFtaWfiT$ZE@ z;MKc8%B7n(rWx zS;AslMXUVN#)i6aTs@9o8{f57k0Q^X9$#x$?{N018yi3I*q<1e`ct@H1w8j11D{F4 zF-4Np2nxebg#C&W5r;)ftbdwo8Xf@X2P`JQCxzteod-gS=le!s^w%gDlZ%Cguf$~e zcNr!c^&{UYu4Xo6_dy0@}sLUn&^==L?1|$G);qD9SPT`MTGijWYf? z%Y)N7#QI1; zxJiR5?a)fbg)Y(@f3RY23_le6RQQ?1S&;25%c!;Lz}sjbi-Jrnw(c4IUsND}wg`Xm zbhks`pWwaSqfB+f*3&j+U4Zn9=W)NNV3}wI*KNad(sPsNEPjU9v?ica%E~m*3M3pu z`eqYSj)5&iQU&y>i0m#2UpDF|QEH zh0i9c-gCL|t>OQjWpD8L%&kydU0&XbEvxajzt-n_t6YT5bkK47KFudw;L z{sDcGuq70+F0?`r>xrHKC{4J!N=Z_PiBTea9xw?yTV4(?>*ai!H_*vDo|?~(J_Jae z>G-I#c1P3Ldc=ZU14TDgtA;*VltU3~ee_MERz&YM{!&B9czV}ZyM4`iWUC9jz^bXs z9V=U#&Y><4%>if>fxVByHdBub{saLX1afZ1CVg4gr3#7U$J#-h3+X|&$Oap~=n8kU z0B#So#c+@fMg%bv3kPz1BvENtQ&gYG#ZBSjrLfs3CPWl&`RguX%UGuoa zDdU%U$iBoO`_Mqw7xcM1=kQWroY!8X%`d);JwpTVCX8G*o9j7_JT16h z@YsMt0%)5sI!mRsb^>ckc~oj)J*mH_F1|(o4ZIwEonUQ_o(Fw@w3q%6*j8WkB&sV2 zBI(ar)-8DT~C?m)`AX8=ZZ{64=;;SS*2?Jko4$HggoSNaOb`(&Cs)WY>=9o76{^-$pb zu4=wdb?5#Dz~%@%0*craO%5{b(PuvM8TE1f@u&CE-ml`#^Jr=GjmLk-=899mm^h@xNO%9aM zo?XDqc@nq{S|y5-UjkCzWqR1?>u7g;(wX0wfM_66ho5MSOP1Wf9?NQ%iLADU=N zmukTn(2-kDGr?SRI})bOxZPrLH!c2vFT2p$4n||bb}&|y3kA6-u7;w~P|?0uw2sGL zx`q|ITFn-%)g<8)OooS6@#C+-Q*o}gRE2t;7sS}JnS(Wa)SFp2(+b66AwhupwPL|- zAr{38(TRuoD!OLOq6Vmzkco+<&`GKWgJ(6(eos>7zDlHo;;`PTb%9J|d%M@^obPsv zHuIA^BqD^jwn|d+lY5`s>Ebb|%d%m zpY)FjzuywU96qduFQa!%S8%FX5B3aK6|dYa?B@sOzbMIkBX&VlnSOT1ZjUj>AlI5= zbFUFfLW0B($XnOrd)UI~rRi@!FmT-efOP>_*v^5^!cnbyk>1tLKBa&b4XZbr zIjlRh4~an#OXB!80*t&J+XCi$ETa+^?igR{PJfyz(E=Leo!J^j^(pq@X1iC4v)dcM9 zarWL!jYq%tctrA_LGl^D6nUI%k1oNsGHZQ{+Cou5C~^UY@#zmSfnYSQD+~ufG!wN%!)d2g zcN!Pe#1rj7az}tzFx++F2F2IUe}&fK@0`kXTs3jVt^Q$S7PN~q<3rm3ddq<}sgbc% zIb^U$o&DZav;2=v|Jm*NH}_{-r|)iKt;ToOThW z?h@_2bQqya!a`ibx9O0k@$@Vyo?a$#h)2m-7#+1WR$;+~AhRU&hijwh@E77SkW?Ck7yyOtfm3k2@*GzcyR z@U&Z4KeSVQ$F|JZ{b+c$wlE2N7&ukzK{ z=b}7cSSfV>t#NUE-vf=A-b+qUOV&Xv}y?b{pRhhDo=JtA$OAGO$d ztCq`@^u_kw>!WApPR`e?dDddq?{0%%a%sMl&5!+_aNZi0a{z6WoSLE)Yd(A~g<`Ce zDo8ZLIAQ1JP?+foFu(w^0&6GeAgO&@Gkzq9Dkzm86H#axt1pEFDKb3N>5QOPL(hbM$}av!(f^qxT)dwP(n+;HyMZdA+iH19yTg zN!c1Y8tCVniKFq9RANtXH;m(_E~0Ii;fZ;a)41(^=Q;JqI?uNHo!>7EI?s9>E)j|Y zsbUH5xaU^SyiLUc}1%z!lK zPs?J~D{$#JCwSx8csLi19IKft+0xA=*B3c4oDW5h)!WP25|T3YT9yyRqggqhl;fcf z6l+-iQhn7F7xby9n#cxOUXNvXmR0XhCu58hmhZbpmut<CNK&F0OciyW4LY#_eY>5Sz#{SzZDhWTM)*Qm%;9TI!L^DxF_gpCS~Hh( z#bLHq&jj6FUzEm=r1v>scN(-snwn8Y5Ilo}AZUaM=9 zoHrUCx>f^zy9&|ACF=1RlV_0tnlYFrOigV9lkWgg;ZX>EBUQU?vw1c=-#FPo9_{Gp z1uP=q>9`nAhj>8%D9z%4uH0Wdm-BDkwzZU*{WcP6Qs@w_7;5uu_(A(FE6L%u1{S$vYhv=wd?6v7k8Gc3lH@Qx-~4Sof|1(0?GZTVzHS&; z?>F=TJ+GtV^@*Ja5KVy#X^rIQ5&B^oQ%~N6R#bzM31bx39#xMnpI-FGxU=y1>zj7g`YJEV?5Fqj?eD1BfNxm)ztzdjf|%89JspL}Ph^ZIy5m3$}?cgOd| z2-1l`q7o?lBEw{MkQUb7N5d1@Fw7I)ymqE7mxR=V;U*PaaxWz;)?=+v;dMsxVn54 z1eiprC{6`Yj}L@mu?U|O`LH17R@YZ^#@xwQo}5#{aUl_7gZ^MvjwLD$BmGBesah?m z*?j&{%5o<8S$RPWMk9epyilY8H}j`7?bIvhQ*j{@W`#(;DsYWTJdGYxi`{eGqME(# z^mUI?ay5@j=Iw&EQnQ19ffHlQglAj%Z4zDdEX%X$IqA7dqtol)ZLA@+&ih%`e<4{; zHY)p_&N=u*Ow_vbY<&|wi8bXi$-O)7c@=rq2_c0{ouKgALWGT@!YMKf2(6VSg_GLC z0u8Mf9(HBml7##ndq@C8PnNn=E9FNbDW4oj29kKXJd%`5DS0HpN&(rA1x>{#$`KSE z>0!SV=6GLEk15e}ddM4#1Y`Tu2^>$Wa`K1-uWSbOV<)lO^8uzcYd}2y3l$3ZNAu`@b6hD{(A7ui`Xe|-qBmT>b0Fd*N zKN>=dc~)RU+$$G#nP+%0m_?;%I>d@TR*q+sWL6U*nc_;ToGQpMIjAHVUo=(B08pBk zEC5|EA7Mw|;v+&h7-F?#%o)4>Bk@-fv??S5#Tm&d13o|U0j5{{VQh%GRn;Rgb-wU! zbv_E~TP0Q1RTbSg8m857G>bMn1?PIndaXelpNDjX0ZESkM zG{77Le;m^{VI@6TU2ZM|yckN*KKW=C{08+5$(+Oe0N|gOt4Vwuz;kryNDlEqxL5DO zA)5>KnEkw+3tJ<(uniJ1&uO3o5yCP8YfXZpHCt;kH4+ztJZrbF3FkX=C+7=CBsF{e zPolSFTQx8ah89ly&Y%JQ{z4*lK5fjMnoG%rY@t2+Avofb^~{AzapANWGsf~OXb{N0g5)R6Y#dx4h$IDxJ!J!eqke; zz{5huTNJ{06&8wKyvih^8y9N4k45oc;(Tn7^>JN&Lkx_5DfOy=TaGn70sk_*Nf4#B&DO`4N3g1nw*M@hyem2g6ZE&J38cqQxysi_~^#~ znslR7JWf~J+t#+e`z*SxP;_>|>a9TKu)FKb9e;yVtcgUijDH&LuGzwqp%V3KbVWW% zoXM@SbqcNm0mJeZ?%4Rgu9I=D4ZaOLjKKjMB`ToI1Xzz<0-O<+pspNYytg91_i@Dd z9ztGk%jaD}-Y?aCUN6HYr4$mwipVZ--jLUSBO|2d>PP%+NiM}pipT`hbCs6QzcN?O z#Ch~@kuNKjIA17)=ZSA47U7qK-(H5S@M|fEkeBrZBe85m@_OR|F71!R3LIB2E|z4@ zixOBFF8kTJLT!s<#Zb~$;Y86FD2CHafR9Y>`vbULOwS4MXH#@5@ToQN$c}X`ig{I0 zaNm}a99;b>9mT=+4AO-}BdnVW%{Ml1&w=THtq_E;rL(IyW>e~|jY9e8eaA}I%`Y_l zC=dz?!AKw&#Di-n_#^WTV|#glVfi4#ETE*H@i8$8y|#WrD{suPi;F(ad}Xqg*G|;U zRC=|Q_9CC(>tnfa%!r0K#)m!}S~eH69fWv3%=lW2m-E^8y-Q+jDWVx@cfO`?!t*{R zu^4YCTvIdm^*z1K;i7`U9K~o1)4}t&j=zCS(aT6$hp)r@F>0>1oeD7I=(b(+pU_v( zyQlCNJqbimunAZ?2L^4t1yI+{djol5D*cO&UfkID%JEOBg#zq~+HVvZy%@C*i6PGu z8(%*Dl|n(i8Gqci-?qGjpQR^f^3Z2-gTm*nH==d9_kLe zm#MDDkLMoh079>r8dm|-B8`*G7GWxeUgEj&oR_NR-h9b_%W?J9w`|`~Ea&ei z;t53EP@@~@BgxT^vwmnBKl^A&#)lyJ&6P(RUn~CX`f+m1ar^uOeEtw&Re75sze&PIu^R~@tM$ZLp>AEXv+#CyG=}U-ZfIbGc8JV)|Le>b~r(IDQr+wxZ zxumW|@EaZHG(8!?@6q4I7t&m1A;bOGIF~W1TzcVF+v7H)tLsz?eO#IglTsv!6cC=< z3v*Q?gUbkq7pg3j@e3|r?#wls^!g=a7+guw;H0nR)9 z4hpXLWeO7hr7Z4;uf^RkOX^O-g5g(v3jW=pNQ?Ak-4lX)7`n%0pAv{~6{6U;z}7_) zO3JV>r)!)5|0=B;o>jNJ&NEzb1u)!b`clP|&%ALkRqvau_-i8)3-t`f;|%z~p*|m` z*D+jwO(Z5svB+zF!d?H-(CTd`aea}$Af6l0s~H2DPuiHbae$j(xpvY(G(xe7C(Cst za*iE>nM^O6$Tk6p7dO?#g~H~h+Q{b{>b>tv0dGzU31TKw$z;5A_o?ur`Zaa2j5oiA z_n^IgECmPNLYwuHy?@jt&-4F-K97FP&blV-GI&CfB|FKL)69BnGRm2CA3-D5I2n2J zZMj-Dw52mklPxU!r@mNTpewYiNK2Xa`ptOyo@_y8t+{ZiI@+^0aQlQ@{yShSnI~K= zoA^oF_MG)}h`u<3yumq{Q1lTbye)XqHf5z*2T1s)ofiOfEloMe5!x2;X*FS_Zn9k4 zgptH$v+PrQjijlfsA^J#on!Svw7_9)xDb86*IPwM_Iev$uZ&RD>;1`SA;2kYB*H2z zUx+?;@#6IKViBNDI|*5mB{>$%$+4K6T@fS!PxnGH6p2Rgq>n#ZSs^CFF_I``d-^1% z;fq*L2@{_{+vO*xXg$**Vsu<2re9(xs@SfkdWAU7fmwreRW zjXqu5AI=qviLeC=e55; z00Os*_wQLc!2Tz?`UiA#B9~2$zJQm%G)WD9-fgygE|(a6A(_o3(9OxLK1mGrc&>!! zGm9kyNFrdBvF*j3iSe8YDi`$K?Vas|GK}2qerg5(xzFPxF=bVVgn=A~t6nQ{nNXWz z1-I)hhhMBu*Fie9kkQ+}!liC^9)#``8{gY!Nh}`jEp_7kApCa3rC0&&7jhgxFRW}L zw7)7yH&#!DLy38jNeaha6Is3P*xs@0_UEq&e>Z&1{#@$K%A-N%6~c|kcf%2D2P|Pb z7gp-^70X)xo-s3H_;Ya@=}|XZF!bhn$RW_ zK~W<*AE}ZAR!!zP zuTK)PF(wwxMj0j`&4q$q#Ky$5!25z&Z(?~=$|?d@>!m;#d0$yj(=~>bluRiW2{6d# z^P&hJN~F_;xmg)w^zB%T4RCybOG&}sO(c;ZSCdjqNG61YfQ#l6rD({<#^cdsJcQM& zNKnGH@iKu>T*V4)AQI!Fu?0QK_=7@ZE*kTDv6_bP0gT}HBQGCXr)~UeUPL&e^Te}% zXhb`N6hmH;$+Q+x3th(255Y#oi-MKN#^sTPEIc!lpml-zd|)Bqr#gIoxN8`@wD0@{ z(Q&E}g9+BrCfFRMrqUdzJdJ@j=q(zDn&wo2TLr zDuzXG3u_lanTrO~tJ#&ZA!oC)QC`Weri0NByRfBgyA+R~U4o8r&=#dp(kOWxIAF^V zNOD`J2HmbfcqBUDfJ27cN;NQyv!LAm&o5(J+}WscjcKU?3JyFA8(nTxXvdC}AD z_B*ryC}ZHZjg4az6P!|+cBkTdtwj-5N@@p;3!hWXH%(@QH<{|K1L9=grcg}0&D7Ud zO=7Vp3w+Sh{yxP7wCKt;N6ZtfnN6b4K))jMEqHTilhA32Y{?SIHi2*i#@4g}QBtES zK%;HeLA7a^sJF8d;*B=1$iWuDDK>DwSNJyG9t|%IhnG;_`XY5$oa3``Z#>N-<07y> zhXVn;AkI~1TPL@pZ_zop#(NW4F)$u~pCog8+cmRKHi$+5@+%qpX+}E5vXhB*iLGet zHubSQAs0bux{xS^gmR*=%%;>vg$-s(Q#)cAgL+yl+s_w`M51#lZ)B?tuQK()J>Szh zwmkQNr}(Aoc~~_y3ZiQgSE{*c66Ymg1P~7|XX8!NS+zdaM6Y&nu>;pek}iWmK3xkH zu|OD0`9eu&S2bKJgcGo{M)erLpNO0r@n#k{&rlCVD%JrdOvtvJ^luOM1B|EQ1OfD_5K2{uq^uqyyt^G)bITP-as+D^A`R6csb<< z0)(I%wQIVj0}?xOh&PBbG(iUHj7Nx0YtU7uyh4-Ql<8~pn66YPC#lP4Z(GBm)bH<- zmo*sd4+g{Gu-CiXgFmTW(~hCDlK=@`|}? z@<^d@Bw3w%#mdosN_mU6W}3#UZnl>4k{FALQhv$0`BjE#uGukHUJvTxI|TT#EssUL zx3w`qKm%~t$?ydfsZ_hdn$3t8KCBp$amCaP)@`aF%w#WgqntYkYDIf3!<;Sd+P zH<93Jq~^WVj1moTEEWts4qeq-87?MQR+O-J*Fs6Ll1c~x-{@y3xaL01Zt4bvFz;go zmJh!&cWu@O&UQW!7NS9c*L7Y9Mul*I?{Zv-3&w*{T~95 z@iTH1JRGw$d7KLeR4G%ru|#6)0mubBoh493+Q_N^;a#IbTz8p2Bxe~G>qe%Cy2Xr9 zFRI1d+~|MK<%*~WoO;(c<}z1q7a-91Y}N8I5`k-e7*ZvM)^rB zp~P(z5`cV!Fc%h>)X0WXnif1Dt@>fLbo=ckb^i6QPZGku)QJ@HF2}N zqo@-@rW^|H^0`_*ZPb^I#&ylLQw_s7Po^~g#D4H&SPsKFA6yiTxWdw@iSLRDVf{o@ zUDJH{%g^|NtoI?W&+qkrDBz108gqf-b$;$c42OQ#%Ll&Z_p;uvGoU6FZ$10Rn;$&! z!z{;p(TDs#|2T)>L40+%k&#c^LWz>8A^E-cKJxyb9sTleJ%k<{{So@*SB`$a`gSs& zz4&MN_>ba|KZ>86yhp>j1<5id4**xM$tD54(+KFMsjv{CUx#oTu1;tT%{qR73kU*k zOqs*VBC)($nv`?k+AKlJaM&c;EZ)F%)T4+)7B5;)&d^ zd;otZN1o!c*Vcc0ImJhdx2E57&+4&o?&@JKJp+ZT~oQ` z{rKCJ_1Hw;{aY+AChXi^I|GV>w@@h&09go*RXvL2B-ucc-X|j9J{}+6KhtaCamW-8 z^P>SAfjWFRd9d?2cAUQ@cGI}cVt?>V+94J40ln;J51jQeSDntCoImoESF+T&lS9xrt!R`19HQ;1X%)ZgXvHsw zByWgI^5XR&e=3sZrBM2hBWE7{-)<@9$ntZ+6raHFWgv@38DBsYmV-(#f#0RL5{Ona zek=(7X^dU=GE8u_iMWcuF)K%$-{a*Ojj8$TtQJapy*}Y#4l&sf*4i1o3k!g0Ezac< zgdEjp>$w+fBm(fY5t~-YMGUk~b}}F|gU4eKPo?6cJy>?}E1tq4ShwFrRz|!eX2`;T zFAd|;CEOuw+3zyJ!2>^I8}k2<&AR2FO+qdL=ZYmG{Hz4xdJ@w??r%w@tk3a8B98Cz zaq0(+%0**1G>Y;bmc(Rymrr+3tCZ}y02I$6+-#A$K8Hp5Tz53I&XGfRZXCh3{S z`a}n?zM7Od3m^}nvw;%Bm0Kk26Fxc7pj&8V)n>Vc;7|J}Snf+!#v!BjcXbU5tHdLKDoxu#b%4plwtKwm3>Ogi5Nr=~Rj(cj;72_W3j)Hs`q3k%Z%QdVFT^7ZAB*tA?>zjljPb)dGM4&4| zC^9niPDk$!kcWg3A!&5+CV5BR?RGnt?UP%EAxTb|PogJDEVpR;)Jil;L?mn-ST!N# z?CtFsq=ExL{l_)m(2D_tNp*eSIG;)G(&_ zR3~Lca9hemKa?r}d4!)XyF#P^@fGY!Xivf=;XjB2n<{N@3KJ>=kpc+!ajeVGKxy0` z0RIlUMjc?BLD9rL9~|G%Yar#M-BL^>EXL!Zw^hS@xgvyCUZDkJfoxn1#-;CM*W^fS zbGRkZl$#Hwm_QfDA(#fDa_8%AM4pxLe|JGPNTaPtG8r5Zhqr1VVI%% zft!J|nZP5p>B@7TVE-5n31>Y2iTo#aAAkHjH5WbR#I{UvasK<^bG+1!B>*5B7i2~0heaq^VRcptxHtIX|pSbDl`g^y}ZGGW%KKF^f zg`}_JogcpD^m{B<+cS_Aw}nSXt~oZ@zVOfuJ2wfpz4M))d*?f)ul>;1{t-4l_s+2` z2A-u7$pLV@;`SQeCEPXb6u#EJ)B*6&U8!#XAB54Dc2Q?%XHV)`JG!oS5Wf0e4?jAS z@xzb%Re^ZQxmJxlrl#$jQE)FK=6gU4MAkQOmmgi`Lmilk?=wc1L;U4V2+{~XuZQ^2 zemBGq@wY=fU3ZYhhwN+qb>c5ix!59noTL)`c~D6u{2^PNXAUH>BF6g&Sme$v4|$^8NCxj)(cZb;&R0JClhtf@8I z*$d&*1ojoO?H~db(f~C(N06&5g9(H!n`DWGYqvji`x?6a5AGOL*Gt!Z^agMFSXI|8 z!;)lOmSEkNELpbt@|G-b4c6{xHt$&b;#y<$1xB}OA1zm(saZNRZ{TC_QPRJaq$Gr0 zO#nkcyuZeSKCuC)?nr3Ivja03%)Z1f<^(_|bGf-(E*Y0n(fBYPP0^U=Q?PR`_ily_ zhN7`pG!$f+3AO>8BTq8qVYpGu@pKBDRy*IJ=6x%d6cTKnJB{T^{I6GHQJ;6t%Ot$c#w%k{Kf)VH zBu0E_9`8XtDtHVC;?W?M%<)_)@N<3p4=u&!Wj>U}Kfvp7MnW^6$NlzM+_xl(&j@B; z0!xeM1Q5_vgr0p+6gCC%wGW252Qv$q&wu%|0FL%qwD*)hyXcBX7~m&1O=HlVG-|~J z@uZF=SV#;-=l$2d=32i}sAqb;Oug{F6aL)EoF8p1Zf!04E2(U4f4`PZRsQDPzIfa> zg&+C`g`MU-V;lAX z-qpPLM`TK>s_p?l`}>}|OQ}>U6%iR38Sy`VKd>tWY6yf0#v-$=)kOq8A8n65huCI7t<|Ny|!hMOEU2Bm7q5{5<>T=}ad5=j{CXvCIkc zn~%H}(Atzr&V$gK;_39P{{W$kKj|7Cy{?l|2c5PKGWUytSehh+kbhWKF(^!4IyTyh zrPDD3lAikzsq|vN$9H@Y*ZmCEZ)_UpR3V78QPhDnMKZcPAQ0kIFT<+d1kmc@o0rXd z?=_bnlUS@VotKpEBk#Til&2ZItk2KgVj_3r{IYr9edcmkQtB3bb<4XS>5_95R+>-V zGDn_asuR$dU5E)<_E;;Y!9^`RQv%TssD0fwz8Bs4a@XP$CLDwBfci%V+*gRBO9&8c zjIJMjZ1C7ove_-K>9x#-=I_qLM;-hY1{h_Y8pQLa@TdYUGHZ{AA1d3&Kk9O z_L7k;vki9sJ9_bCQJ=m4t<%RHZtnc-{j>1Zaq9b+JPQn&VFO)~Xj2(G%&!l(ufFiY z%*x6gD=W_qhu_+^VegKWz+Nl?0pAxu;VsY-;I?aKr7N_?1&u|P>%&2>=U#o`>g>yI zrRB~*&~CAai+6hH>h=$u=+QbHINB)qF~r}%{r~>JYT$U_Jf1u62|O5h4It6r&h$tB z_?dv7CO#DCZqtaM`aI&x7M?v|nuL2nnnVJcgf9LWta2TC=Loythnv!)-Z29>z-5?={gq!VqV=9xpG&>?1tNj0LK$o!2Cdi^=h4bPD* zfmYxUMbJOM%|_CDbv%s zK;os7L2t=8qc5o`J@$&1y^O^Fa1X!Jk-MvZzl-X7<9_bQjNY9EvZYv(>A}f(SC;VE z-3Rwa08OxOpC#AtGd~hHEa`zRQcHfwC~kMlk~8REX584;Mm!ZlKRf!WgHFa%F=b}- z!S8+-y(=?%B;!Jy6bi)T(O2+Df_@Jh+|1uk;tMvs{HZ3<{43glOainYg}wzS&@Ho# z+&7+Sw5jItwMaakjmJ@Bqf=k5U&Sxym*43aFI?}9zBL_qj691gnM>U1*nb5OuZP+uZE!06qq?HwV|Q4G2!k1Q&fk=A4=RRuV85Qx`TJ zoMwfzT<^9B|KNnYRWE|NqYvsgYp_G~ALr;}zymVt z0T!H``A-5CWC{f%mf=s+lhK1mA9I&4EmPchZw>WrjV5m4JYL_<;E_ZFHHp-3`cb|B zMKZPTM{~kS)=kdez#|pUL%pPCYstYdsX3ZCKtl+)8SE94SU{~y#ptW<@9SL-w5kZXd>(D(2#E1YWWGHdIjzlo{M#N%Y9+X#@Znk z{wQ?GVBnG$2!v$4r~M)l8?56a{C3CDa&lQ)auUJ(Id^yX3EzieJYogMQuFb#NySU~YD)2E8`yQ&KP5S6{&G2?h=m9v7^dM-e|y zVkK~&;V!cT{IPx%fwYg`I#?JbxypbUVRk#@2S#FNW8)9z1kPclwjLFOVjsWa@wS8o zb72mln}3BLi(ZA3&Iybjuk7Zckwj5C4Y(bgaq3`|D4X-x$T znd6X>aZL8km5q%nJFcSx)YgEmk6rpUyaF@qmBE&cA79%e@3zBg82|ZkdcgoXPoCYf zrzuS`K!qifHwb{D9{~r!o9oExaP(=#s|bm6;pq+*FLe|EjD$wx2{jrFhsAt6Q>&p< z5YQCQi{WrEI{KUX(OZw!M=xCM%qGw$&L?I&=sf&lz0r}3Mm(m`FeWV)Zy3^_=rzNr z>Gh&f;mlIKUNX6gF>QaoMtB@*6hG_$%XrHq3A85AE5Hh6q2a0epnhsB`~LTP>z77b zm;S}z{CWHb4#fkIz8jtM=R5c{(ZM$Hcux|3alq5G1e$lcPO((zZ2}n-@1Uc>sCdgO z(<>*_iOOGz;t%T^I-sH1qdw9%&~Z@=YL|ou<2rw2jfq}>JLp`u?Q7Te$Pogr53DnI z)~VnZgP(Rh95|~>sl6MIHLmshu8UmQ>NLq0zXDi$v#-D=Fv&F?PRi?g(sE6(pwSG7 z1{LtU9QggVv*C~`ApCNg2Oabh&liC&9NMK@UB=5=-X0JEbkjzCd&ea)ggx-+(c;JQ z$&mPDNf~$%hqhoL1u|7t{6hMHAEJO??r6*Q=4W44@p%Rh=tiF35A0i>*Adv(D)4Ao z-bB7J7F_TMa6?MbDJnmDJ`$Hjtr$-guR5MbWh}uA!s14;xFLq)5j_-R=N#uUmUeV1 z6Mqf;F}^OJk@ynzkASH#g61iI0p5qH2<&9Q$_V=wk!~QTy$Mhe1vnKyg@D%zL`vk5 zEClhF9ZoRwXgyfB@YJRw2H*`CNsh-1BuR|GC~{7ZD)?Af6r!dQ`nv}oWAO#c%(0%v zDXS9yD38K%yj2!icJAU&g;)hu?~5y?QVL7hXw!^}LL|rr86~RcWSQfFl7x&{T$X|? zi+Bb>1`PYygMSwaUlRDAx;Pg~tm4wtFy6$KGr`2gV_ZVL3zsNKsZvRqwqG;?$G!d# zX!a#61Ux)MK+_D-^&}4yuQ-`!rD*dwTiCa!&g|JYQ(m6YqmTGu^-$yuQkI$h0kekQjye`bppm(&%f9CvYfmh-4WAfg&IO29o>YKW73(Mq&#y* zRtUGe5Ui{nsSFQwnCwZ>?pCvT7?}xeaZ%Tj=x|fFouSQ#<`<2`!lKMiWPO-hYhI?ao`Cq| zN}Fb1EJ4HzWII!)E4m9xAwWt*WNX)wBUt{D*W@^Ui_5E_)aZW^RT19;MdzM=^wFm| zUBS1aEFZfN2HaKE2wym+M1d38-qT+uU2D)pxoG>5!yBZ?0Er{VH`vAktO`pQ6bq?bA%vSB%IXi~b^Gto|1N z@=7~#ripv~W(|8WaOABI)q78LPi{W_>#(x<+>@a1CCRhq1$6jEGMYai@OWia3E5r= z1!(++ib#^)-4_J$GXP@I8x5VXaD$0Rp(eFcxT=H^$~)d`Q(_+m}Z?0SQX4jq5ZXs72j4iE0( zfy*BpJGQ&)kOmG2h@6jcHwc^voC%x{T<~>ve^T?_J%@YS$IB()1v<_A_U1hjB~-WC zon@;XMOf7r+Fh&N)zL64?YKG!r8*XH;C(2D!Vyjs!$L@6f_z+#nNc|$*)hmJkvzJXR^@u+HG_1w8!U0kf90ND;4$c)H1g^H$Q!3PZ&t1f(j zH{%$Er*Qu{piNcU9{iY>yN?x_WrCGmroPIhuAzemqT5DKeF6*t5!Y>>U&a%y5EW%j zNyQUk0hJaj==tJhVxM!1@2q!FyPj&sctOz=HKj(?WCc}H@0{rT*GRmEha8OmV{KTi z(0R`u*boe%I{=MD$KGF}KO=V9Bw;WcmQM`v zu61H2sI?AdVn(oe;ZvFtt}QNVrWnUR%N@TnM*KXt8d-5JN!{XcHTk=Q)`{4@BY zUQ4pNp@_LS{xH@#o+q&!QlL)qjRmcwftq9jHkpry1ydXFy-=_$URcDl7#^T46nMUe zjNaAV6TkFJC*Gi$kp#~QoE$BoO0pal%Bp(2JbQ*kn?FDL4idin*&qJlH)N6tGoCVd z4#i}%h;&&^*0o6HN5a{Z$4Rw|?!iy>O5kMRj==qa*95Kx-Vylmzz11&?L=bpZ z3i4t6q;aFK;vpBw71z`0YB8NiYivF)a%lASI>XeNF4?ZsShmKJE%Qhn1@|3d$d;b^ z6(j|D%EFeq|XsUA;od^~367UP1<#n}>j!@q@K@W8P}2Huzl=%;C4kVsaJ znuqoZW4XHz)OZXE1KvsG_*gk{-#_#$HP2n$+8WTT^DjkJ!y_?8X z0*pPg%V9Yc1>W_pca8oB-k=XXf5#n}-~7!xe5}Un=z%dNP#M$_pMteAwou{$N>Xe= zD;Y<5O=Uu%z=c6JJGc-PgIq+(jaj8lt0?jKIE^2Cm?S}=%lDi)a}ScGc%1bZsB=_TzH5$M- zy*32_tOEB{*L#hdHQkmUNWJ{=R&g;(-(Kqg=6rwBvddGgdA7AKrlLy)`u0t~X;YYA z;XsT^7kjJ~Sc!tHQ#{HdcoNbp%Rcrics?p5{%8W?GccZbLeJDhF3AdbbcI7KkDrTT zO)eIvoTq_7@v2kHgcYm}hLl8D42i5L0dz^G_H5D93#kteBrT#4niCpt@YuG%S4AFC zEMJh|Z9L*!;(#Q6NJCOKH%SI4yczi5UN5jq!{gezkMV`>e!%1)og0yYp+FEoqzNe=0u1 zc#TR`;KTHx09rcG5ugoc$JxAgeTe@d@WATZ+t+(NVu;AkrPAmmq`;_fBgHOmrW%8eYirS!1>6E@t!13k=OdNk0*7*Ngl7`eTV7=bbAyP1eW7V#fZSh z%nV37r2Xf^?YO2*RatD@`5QN-Z+QeuN>kr=3H%8Um}LU_uCz zfakNW<;DB9At(mli>^h?34-ZmCg^00mhn##JOdjt5kcTBR`PyO41PT*{@~m03uQz1 zy)mi>?++FAm>iDlQB{5g((^icg{(&Pcvz0<#nAmhefBa6htS8aqEHy2+k&4JLLuR^ z-{^!woj2)GxeJCzjd^V_k<%j`3D|g~PDIZog0E#XFh+LesE%IS<>WZ~y3c<0b$Ik~ z6Pp3p)H0sEXTMc#!lkkr9H;q1Aj`Cw?YD|f5&zi~IjHFDGk61=%AnmQ^L){r_%!=? zw#-tG{n(|;dGJ#NBEM|a397BfML+r*vXjW3+CG&RWQ+xKXZ$H`E*Q;y6Cec|_(6KE@kclK zB|5furW?QyPA`q0AsQofLo{9uC=A;)R;o=%UYCF+tW#DWQH?mZJTTf`(IJ7*{69de4MZ=J-==GQ%Bzic!fk^>=tY{Wy`z0%)33 zhynWdHT(4J?CFcAZTrmE&YeR)ZlAde4%~Id9zBBoCB3)70DhKbVpo9}g(;b`1hYSJ zFyS?zcGJs4?=8&D<;h>6Ir{8;{m_{+hwz%FPa;p2XHLz`oVo)x|CfJevoO~<8*e6F z^|n_fn(?z=p9GtXhTge&vj>+pLA=W|`=ljCC&&qcMW_sgI%l;319ra>HZRH$2NNoU>O0)3#Ue&(w*2a)X3e z;5UaspjqFORl;)HA#ppulkWVgQo!fPyX6pVjVIz&!=Qij+kIj*oWmeCiBz z-TR?yCmNmN@}=qaP;`$y?SVv2vH%bw$0>}DS{ttj6^MMb#_iGdfs;b1{na|fP9tGY zwaA4Qliwg!8R_k@~OUX;bO3FJDw)# zkC!2C$9;iU23{3-^v11WZfG%H0zhcvW=3P{ds>a>X07|J**P0u1ik{el!+Z#4=Go4 zV~;7BWo~3k)^pix&c;8`ZPeE##V~BVo;p2r@pk^AW82%WV!~onOo_6BQ17MxK z!*f{T1do>(2Iy6AM*$7SmcYj%S{Oz_Sc}BSc>EfXZy|q#FyPcY4>s@ltg(>b2YG6= z(}~0|J_ye9m?}r(wXll!Y@Ir0-sCvD_-})LdXx+I6ix_5dSULKAr-Ju-xv%GdvjXW z-XZpM3vw-LQ;dsVV4sI^$5V1(@&LEmwYG^|tfluo&qGS>PwDS31~zoi)W@iLWBq+F z?D^}#Z{Ts)2y`H;LR&IDh9*y7##I6Tj-U%9PHmo0@?cqw&`x={+Ka1baUIcE$PXpd zR3#Npr0eCBlL?w?MYGyQ; zIpr{^ua5d?3%KJ&L28|IoO3Nn5Y^OZ*Y^DiUq_D+i#E|u{oFGe&EfkKNH~L!V7DG@ zBJ^}5jbzJI3re`Ir|h(d;%2j`aC~FM7Ij&#hWK!1K7-Otv?8K}8Ifa&q@7e!!BEvG z&IeP49KK2wW#(5FGL!Xro5ZCiNF0R%PI93$32ogXKvpf?fj{@6EmpYwGOWV}S z^|ZE9F0W{cP&s`1a794F{^0Oqw?-njK6ZFOS#4en<+m8H|ErryoZo}5|3t4LRGrYdG)I#zE3Yg^Q|foB`%+$UG^Ke3@NNKQ6H^CFStGtGY}v{aZ` zS**!2#CXfHtER3w8*aMHF3?=bg)zk4nEz-4k9RNE0M7!D&jc`J&@U|#GTLe)&kBL( zf2r{5m}U zRSADJ94gE4tft^IbUBexm2zlP0$4f60a!W7p}=#lEEOZBm6b$M%FLLNq7<0MjffED zfMrhy5eOLrp+)f-FuFb`h5($ri^OwC{Dp77;Cjk zoYh*+#Ka)Wha&Yzh-YC34Vt&#*PcIhYQBBn?ahy+6Upu}ex=jhWMUb=J}$CsPznpO zEGja~O<}k7DZ+!M8{}?cS-lR)cilFJpZ0Bw=Ss;6au+o<)~SyA={r#GN-}GhYQ%LD z*<{NSUHx>l=g;w9Cpowh#lmmn0cPRB-Ms-=4*I&g;l5*thLOsk3R%LRR#bK8+U`~l zOWL-rDx*)qQFKO8CwVys%5LAd?CZGf!SF!Q+nWbUo-P~Wk8&P%@r|(DNSz?_PnY{S zT-Ej7zH+bO$|hz1s@UoILzgdE;_83}Njvgcg+Ml3|&{sMqRc&~ZbprG$@-agnr{1=?FLE1Ee zWI9Cj6AJG^vWAKCZi@uh4De>l23pA;B;DCV$Jb@Pk2WEX*Ve}>RlT)}m@r!^$;nf_ zbKo5yQ@l(+vV;FdL+?b}y`O?K!{S@Tl8ycF33<;8qc=ZD+F9d>+fsX~M+f;gn53 z#qEms{K2B$fkcr6!1Cg{b!UqZ%g3)=!B?4@(HlAwVl&L=-_dwS1Cjed1r_H7y%$e? z8LPw$lVPQ|yu<#H!2Vdj`u7!e*ro{$5b`J7G{*12T^lPZa?!b59Na9nuSWuqK0(eI z>k(9!T%ar5_jCXg>!Xg9>n_A9lVFXF{p#eVuW0uBM^5wn=?}UtNN+p){K9ac*YBO? zA0VcOcZ>gp_!7;Yl8sSH4w{{>tjp7#r6hGd-e3_saxcL5G zH>iKyK)crfcn1rum)kD}9H?9zuN{EW??35lfm2l51J|@w$4e@1L5phEQ_#^=+^HfA4(^FW!6^OiqR|#*{u^)H~-#J1$-_+ztG6?ZcMdWZv^CRuw}7Ac5&Y zS`EB@>~hi7izIBeJ;s^F+bO%q29^hWv}=E8dGex3bFpC1d$~Si-qH=9gSuO{js^)F35dDCnhEkOg!BLw7Q77eD4^ei*?O!^@1!&{p1mcD z|Kg^W>J)OPbNH`t@z#4TWV0u;a&@g8WFt8)CmdQ z{KnHY%Y}hJI?S=i3C3giU;N2}{Hq~1e>8icm;qvy=siq4#))x7FcZ;e0$!$|ORZot z5q}ev`SeEb$a-I^d`yf4m=;8;)isXpwr{Qw@Ea5 z@TS0>Cg)FNvTwWF1EJq=f8yq^td;jz>ec7TR={{ zMSelvs1&46ZEauE^7Sm>WiAq)PkL88H&ep17zFX$MyZ6LS)Rq{-oL^t#`>7A?<@E8talO<#`qFii6c67n z@(uK5^lto2XYlpffJ)L9c%w$5fFT}1NI(ciYYE~^YW^S*V0yATxn->I{o5;?u7re- z$PvVBu!bUuAC5&vpP}pSaw=Xpms7Ui9xI)FQHe0e@VTP&Vi@lUrH|o7H>`$Vh^KxP zw6>BoNG6}Wq1=?Cj}X$l`=`gNmY|6jjzAbD@pw+;Im$pI(3lmGiaUK{Ts z&iv9}yJk1@c2{0=X2-LbovOMrK*sY_rzsY~&N!+7({8~Aw zb{9f!$j;Z(U;ak^ZwlV=X1boY@$rSOdXhY+)R#2f=g`+}+|MUH?l8(L*Jh^nyB>pv z??E9FDBdB?la{tuEX1pJe|Ogz^!)ceq2z?;a0trJ1-)S~5}RSa@Koce2I|>^-Qi#` z+M(~HHwI(HrH5`e9Gzv;Oz5rn^l5H$7%e5>oYuyYkS88bF|5@HA!-ysrx8NDO?%7U zq@=M#UJjf;pP!ri2zV>c`)Hcr`k-K%_KSfR&fyap<$MF55TLPwFA}?6%Ci=E)QN3k zfmx^QV=c6)C2x7lS)&?STm;K?r)X+e7QG$CPAn)4*ZfG$!d-CZtHhGfmRJ@w&nY06=f@WB?Vg z7}p^o^@OW!9zhxwVJV=~=nho`^?EsDElqp&DQWidqV;ZODnE+BNDv7_xx}UGfqi3Bf&hr}^n;RR~usU;o z^a3(AhQnt@Ti34-24fr8q#RPpz7o#w{e98<@p$f^{62uDf4M#W-G=uQ{s!$fCoP9p zZGY=GY;^U&1zw;tk&h?KXbQy_`&l2L_)d0cRtM7QxHVyOvIbUYfRu+tBONAo%Li zQgy38{Q7Y`;ptRQ3B+Y3x_rj%$5legSb7!tEv@tk)a_YWG}pcJ%m(^{u^G6^OX zP1N=Nk5eW(O9u`STq*)*EYJWk_`jJ?o0)Ws=UFKhQsbGZ!ZE=h!x{8Vi2|f+Ok#OH zmd=>zd{PZXWnNC>S2U#JIY(VRe!I%W>Coyo+4gxAiL9F{Vl94f&J9-81Vprmcn#+*$2PfC=^kkSZFNO zKU!b9e&xjgeXffIrzm43yzu<87L97l^jReQGI4_AxeO>3HC(jcO@u7Qm=KMblu+Kw zjw(a&6s5uv2&5j`#H|SOf)X{;)kCFZh;^y6?v$E9ZjcdWEqNp)d5kinHyZ;IA!v z(Yvm=fxy&Qfk-~M@jy@u)U=&09+QyfDnJ^iVS-&Bz5`fmR!FMZjAb+)Z`bWAcndNp zShnlSRjE|0nx~6;7Hx*&hpX8{OuO&*^J-j(MuH`WSuBP_LR`%s7c(&_@*~F^#{v^y z@HKB1GQrz1j~M9Az)mrL-0i*E`GAEs2kX^JY@;{&V)4_~9(|&SC9~7hu{newSRY3u zK@4dfj~MESq@KWTt6LGqkwp~p31G*kV|T)3&WnI*YFefGx?YFn$pAy0V$a?5bpVGf zQqv(lcCAv@G(W(Kt0=u<2f+}G^K7T5dzwRqEN@ddMpUnbY?AZfAH*Z7J?6U}yLhZt z9g8|+hY!gj7W9Om`{8Jn@t)^KGdt+=k=Si|#>+2E)u=@PJnHv;6EGy>d-RC-3 zaMq>pR#<|tkGn78l@V>+S4}rJw%0Gg4+k{GXW$%t!9(mB+f{#QYm%)=X*86%cmbTn6#~MP_FcR+9jPl=jv11*fDfpGJZGb-eO$BXauXWBd;nmz$(` zFd7tO3Z*eendj>R`qv2#qz5F79LiAUxPSZhr}f`HKl`SEXF~EIhzXfjJk=|<^JAdS#>RzN@feXm15Y) zR9hn~ld|+eHkpd8saZdM?HXBId|W{+!)SY95L@HK;f>whaafKs08&jq>3%Z74hTxy zM4x^KDZ51Q-Sqt>mnJS~ywqR6b`44<8zgT)z~^~a>+S9$XWB$e;y>MI!`fJW=#vO< zi{@$&+)WZgV380?AR)KVPX0*gp4OZ*Q_g2k)SPpfBfV#fSp7-yj!;95!m0YK8Y|>e znOgBQ`R0K}`|RO8b88Z7zkA{y@l-jUSG#3`wg9jgQKYxJduC6cm$~_qJcplPmMw9I zKHUDuo_W%rB6T+1PH_rbV&^{6{;+?KzDo2D$kllJG~=5&MvzKOAf)O9L&_o$Ql17f zrGO9+Df2)P6oaY_$))7yN05g=h1C}TpbGlGM0Xkad?TNKSCM0LEMJo&Jj<-{hz~0@ zhC_LVDYWg%Um!j@fO1h7B59nFu2UIsc0m{@+~HaVj*sZXM;0b zC>G>fJe!Jq3~I}2$r!_w*q|ig?oUfnkS#GxOu}ce5 zmM_{^b8X}Qd*uu?oi#Z0z<~Nwsh^`Sj&lWd=f%Ka4<6=d;CUPU@wVf|rzZiO0>aKw zt+XBlXkcIbYM@`_R$uYhD^}6Zk1o-@Kcr^eVdw5v>+Z{BTcb9@J>^CTb^|V#gu{UW zORsnpVDSJ<$a>3|t|!R>MGcV~fBgT0E7mTipdZ2O8bZqELs&H-dDS5rJ3|&x&}|E@D9p(nkxZZUO=k zZ?+)&4!@Ae_Jn8}!hh=K^0jaYe@M0x{{CSO{Mt?j9^J zuq@9pf-=UBfahy%Y*h!>5sB7^v{@m+H&NFE+{7ys_%9(!2VfE*1dgh?gjfFXgNL$- zUm#gY(X5S>sDu(}tsqO1Twt0Z9!7vtm zqH(1YkGJyn{PAWLC2Ogq_HHp*n#MK@24aNAqBW0N(_A4~S+?{R;Shy17!?fkgeJ7tEw*&lJY)1VXE zk3DhdwO&VGLLb2O<{+i}h}KqeFp?+ZLhjiL%TARY?5K|p;q1p}>M9#mQn5-jE_1TF^2*n}a%JU}XcL7)Oxn)tnGlDk zf>0?{%*4Xwn#d`UP*{x0Y^b>2; zAU$8zwCa3%fLt*WQI#;%y{08` z6-n*FLl6Csf02`WL@~9!DxugzAuWF6^b9^tyy-8|4*rRqyPZVcM ziA2e5&X?+19@MSK@&y1Dc_)< zCH!2MZrswnw|jq^ZaaPS#EGM)Z^L)FduXY%y0Eta&6!?rrV01=Sia=jlVALA=(Bjv zvjazfMNb2@Bm&|A7GL0*1`HJtEjnY1BavYUIWbK@rgk;>5?H0o4pw$MP4p!tR4Zm{ zoF=IuBQ}dAP(fKJ&mZe{a;A>u1eQB&*|oGN^15y^%uH5^L?syo<55jw!Yb0V2%kZl zLEh9l^Li*Ggru?&uY`liFfub7Un@3}Nka+cm4urssPcM{i|g^U$zoX|9McS0!gWVj zB(Sm`8LuNx<55ON0k9U1oi1P>q)s0&L)9&+H&HhXR-^_yJtT!6y>4M&YpmzhGn`Ile-Qe377wTt3d=9<^@j|C) z;y0UOwgx<#!C#ZuA(f!+b}ev+2|!rh#u}pY%~+wSwYA&wYti$uLiC%tZ$|L}{5g7C zbiEM!=JZ?zmVb@tnq&T;9HKci#2J)BBofkN56aZ^ExneJ6k8!lxNa?@_xpOL<|vY` zi&M`jl$)9^Rj+tLf>-vWNJoh)S8%bU#2zjkf|UAwJ5!soAHEH*oyUnEb_rOG5)@kS zh&N5^G@xZ{XK#<+J4+_9xAVdxo*Tdh;S^&$S6iJNhFIuk~yU{+{yTvaWs(Z=2g%##A4XA`$7*CAv-5;_-Uwwb?{6sGEi9 zJTZ~X#o$*CbSHe~2S^z`U|-AcYSWLVqInoUN%2t$++TKabuqhb;onWG% z0Io=%uy^bDW5#-?RmfMgsL0#lm>7a6X**bDY#R-sS$i8gYe6HepUW5#Q@|2$G!|kb zaV!p+$!92*$5)8#86wuWZr}o-m}=BZpf4tP%R`D<93!@jqf8Ed1!y=G8Z-`TMk`No zEh@VIlV_rdL@tqt%&aUVlhJroSE4Jw7a_-@)5m5KCE*Ry!jc(ZNQHHd>`FpOr>N&h zBR_~Fo?4liJ5$NT4Wp1LCudfkg5$XZhex|fErp9(GDJ=f!(K{DUY_EgBV#}2*|NZj z?=c8c3lnvYS>t09F!^7ytPj3P3WY*%oLRYi$g+Or87X9$6~jWYXP*sAPsq~4>%A)M z{@4%Vf0ReYkKduJ5=UtC)Ls+~Jm=vW2;>=w4350C#=Nfp#eTSr4@3k@F~ef0;X{JKLAGbbRS z5?+pQ;{*?o5p9ops6U{A&1g94Igf9hbOvxB@KSXQNF5*i2h`CYOzQaH;QOh=C3Sr9 zA5e$kPU`rgJE;Rr)d4l=WPY127jz#5GLdK$Ggne^nVTeBd4T%8-e3oiq=tb>UMG|# z!J1_vu=|@`wEf9Xjy{@s&u^o*+8H$bcb`Pn%+tT^WCD{IOYrL`#5*sTUETj7e$?=9 z^FQE>fBjc){0c6h@VYNMUKzji#y$PSdHqy^ZW>)D{p8#1Ucma)CSL0yuc8u|C02Gl z4+vU6jRF}=X8e2vU5+(JvI8tO)qUA$l=3m zh|O@;VD71)y@wM;A&kZ^g@ZugL8edvurNj7XlG6)04!t=0suXZH}>wBr-#<@5;feU z^qUnO7>`eb=-^o6Rw0@n0)Tw^?Yrpx_&e3d5P?N0LO57k=>3%kAG$rSSCYr7WxZ&n zk5^r*pr3y5p?apoSPwl=Nu~l*_yy7NEOvwZ%qipsd`phPAcY%rZz7Y`(5;AI+z8q=$0p{7gB1;(>>)Ql)|hJO8?%ua!y1&X$fC`SJq~-BD7@+1oDO z78uVbzlZC&GjMMpP_n2#Ntc*Pi-c?(#j>3jvD`92s#=Amz5|(bb#k<8d4U~<*&^f< zhOh`8HUML0#^5LKIGi&gNnQ@?xtxCb6Ozn_M463BcsWu+kSH8k5M+koQyEDX`3Quc zBuXnW-q56+#G;%or_aoZilQpY!VhI5Rmb$sxD$)_KQ%*LL0wY+dzu;u<2qK59~%hmE_IbFBe4%(azKXOKX z*%QZY;nbqM*1x4(Egm*6l*7@#u-FPZ0FENYZO&bj6~7ubnRqjNo8#=voG6`7#e1Pp zZQh;EX_KhstOi)JplZ}7m>3-h$s#n5I%MY8ftweZAIJUuTgqEVPXFDk@~G2pyJjMF za;O6-nwrwk2dER;OrXGEVPUW>{=S-mJet6C9CsYgeC2&P1Qi`tvi(!+IEB|4?QXu6 zXVdL8$CcPaA8vnmlD)gRi3fttr8;R=VM|=|!{CkcId?vaK7?iMI9^>2LkzVB!6A@j z@5KbRmO5s86%oZA;DeeZLSBymRGiSIGyqmWslQQ6RM^J1;iI!PWX;Uf>NAm8ESf`? zLb4GSIGD^=uFX6h&&i_WHMVHL~$5r&EU{OME339dC352N7f%MX_-XRGh~)jG@a zLPAE7!n%Wki&kMF7LEjeEuls7aY`?qa_2L6meK9`Gd?ux&YM>@Gf+q9mccO z&qR>fSf0xwv)N4^&%ZWC;^SjAdbi)ENtf^8lq&J zX~FY{SGUbwW9jsgajg&WI-B-rrvgDb_|fw75hl2wGRa4%dm|!3am7Jr(k;-+VWQBM z$Wn#%b1W;8A+RpaRI{vM+*%E7cKDd+n1b|1-vBd>}e}8gQd{3jUQXQ5c`j@=v~h1bu014nWS}ZY%w-1dnAahbS-eJm!ZuQ z>psXE)B*@nRGUPC;3Wa}7yS=vSy+Tizyswwk58PvcLTD$p(3oH=>%jAk3v#&~CR4KHTdDn6m_?-(dx`1>39C8!$N?un0} z*km4?gU}^0K*BoOBUhQ_NKhZkjmTZUdu<*)d|DJDcU+jrinF?vS3M+Mw0ZaX;vEq| zJpC}5UmHxxq-x&MeOz8&_8*dVz!SI>SO=!J{Wxhi!tfk7iP$AuJcv7$4p?8O_6O8- zLmXfh#i#7jw{mKssu912R$X{(hT%h1ahAo~my@kXj_i#%w8x;7c-sf}1$C5wGo!6% zG{skppr`U>M-dU zcz&x&P6p2cw-C3U8m+rE9Rly4Nu~Pr7?xq=P%^i4X6fqH;@}>(=GJG*wBZw-@t7aW zR_p4PzK@MmI2g-@HhR6V^kM*{KopR|ZZXr&6nm7j`uW}qJ>W@}c44!vYhhUqYxaE z$MdxU66=N9=-K8S_ukP&J=bmHV(R$sIMH#M{&jo{eFw`{0>QS!dPD~BZUM;#1OgN| zF=&7LJDtIahx)IrzO4G%J{mM;M}L4ivkhnY>A3oyWioERg}#f+pcW*`tyDnWHZ21H zPg=w?<{0VY-92gKYy>aMw?tf9~Wxs`_-R6=oys zY-4jU82bLy7f5@v`1wCfo)J*VQ4TL=J_tG10w_^4r%zxDTVAC3lHrkHVkJ3+1;2=X z+v98P!Mg|T!wFrSyZh7q*Vd4x%2z|NSg6{pg<>7N7`sC;65>MH=&{V@XU@+y8nb65 z)LmYFk9z<4P&6i=55!mw+{sujKs=MBtOC*2mKrcUY zgD&nB;*r_AZqm!seXQ;4W3PXvyV=eaXYE^0&F<;xWi=GGTL0L-X0s*RK6}gT&H9?h zwbWbt`Mxrh zX&xAx<$vgq%*Bg?VAsnhyKOp=5utUFd=p_Qr`C5b0raLLG_58PKXr!sK= z8l%7eo^#vJk(@ca{+Ya>VQr0pY2hdy52rIuqx|i=&SX9@=lp51W#fVIvzbOBGx~#9 zpUI#L@}CxtF5@A>OqFAjNQONnLHA*`9;_*NjqXerTFs;$>R-&44yQYV|MENS=ght3 zSJ~y);3xKAV5fiUx6%{4An*r- z$dg7w=hqSNjsi7iSs)l%$a(d8D?amvJ2yAx=k2v4$z0K{qFyh0diB1Q_T8J!W;2sW zMpTaXY$0C01|8dgLovztgzJZUOXq)})voi%YK z4S7$s_v?Bh77_8kh^H5Rme@7ogv+Z7p5`vq3Gp*&m=zD%j2KaW$0d!@G3Nh66peW)eOHa6f zHWu1ms%DcRJ&5K1S@=yY{nW}#);yj+9$mR(#qn?jV7z}G{WWgCNI1tKU)}?BGz|!2 z>=5%u0cPJenRj!jv{MBfv!zef#rUeIgg3*AxaKT|qxt6TO{Aj@igPyFtP5i3zO%BK zlFmlgVhPr?%!#jTh#tga7`y=`%_Jstp;c-TTN)aUKK{q$%jqI|$7s|?M%+Q2m|Si+OP-LM%#A3k2bCiY`ec_>;d*`mD*?s*{eC(*^i>#?d|T` zsYiEqoYbQPk#dMf(~$w%v>^wh=j;F`O)BnxivA0BzyP4pVR6N9< z6%rF$8mF%MkN+eX#Y<%c2>Wqp0tX+w7X;Olzz#X&NXkHwoRAE}jz77(>m@{u{_ip8 zjYF_gbf5^=>6RSWa9pZUI@F0wZ8KjcJk4gHhMz*PK<$S}!@`q*FT18wP;MG|ipRBX z3L9g{G^KKFI7IGZbZsrVC?9DykH`R2g74Qfgqq!ZF|c#zVssUsbSFM(Z6=|&5($4U z{XW~G{}Z+4`t}W)^8Z6Swm1KIv|~8<=h2SMEB`#&G3fpCXh+Zf=g|&V|HrnY^iR?b z=SDLKwSWE@X-COx$NYhoz@pqX_q3t}{bNE)02gedCdXp(r)3qzVhhHN>R!X&e%`Yki#`$4bU2^_-fAE4#jxPB1kq9o_M0=Ysyof>z8KH=aVP4$agSxRUjjt@52 zL`H$7Z3#v8_mzLg_Kc#XN;Z)Q2_Yq?XB50Ds+FZ146FqBm_lQjzzQ_5j@c#gZnp;R z4D!P zxV$;{gi$ZNt646iO`WgAa7in;B>YZG!aMegy@HF5l?B~(Lrs(8jb@0OH>zcnw~YCD z8bInAO|X(Siy@a!HX3Qx^>jaw<%c9|eHpAYHx|#kCFr4XI*T77N0M4BbpD`lzC7B! zENO2eL8BDUF`C^zD2)$Z02D>y(I&8tL+aO~v08sY@Yjobc}0ZEgwhggWC9>58yUera4AgoWudPNvJ zE2!c+#V5Ck)g};mY24p+$NY4e%lGt2gjRk z3-N8!z} zixtDsXxMAdALI6fNu~?fFjT)j6F4ADRX0^iiXfP+%w43$napcx<+9GX=tG&iMqhx6 zf>x&eUw6>VZ#qbgr<9O8b-gQrV}X0H)ZbZbTip(cb*Rr1mR23Wh44qLjq!L6!EZ(j zP=t+9;CbMy z@bjbpgv3V1C{i4NU73*J5hZ(_W$OkcG3W!ioRN;l({s8g>e{O(neDr~h|k`UH&Vw= zq~>%bEgRbM=cZHKM^{jPD#zc~04bM1>v{L;Rs4rG2kr|mxKsL6j9NISkp47_7;g53 z`Yt?PynKKa=X0k9j~||_r@JJdPQWE*A!?K6=QA`WkMO6A3m-zf(vV~l9zMBtr*!0= z8C?GMz_HO5Nf@+u7jAD%%Aeqy!*9g4p12^onBJ9UI6|lvh2~j*B7K?_QJ_SR_)%dLLfuTMCXACHX}RL1`9vK z>o;iyvD&~KMlG5U;^yTow@7eEXFQ}2v}`qMycj4n8iml&OGk@FVZ(1mp{scM>zRs8RN{>;zZp3B|-p$|Q( z=XLzY(6>pyeI4PtvFx`3vq4Q?^dR%Wltt$@T=5cx%wP5}>jBWlpzuCpe%yq>yen5%{%kUh1$|BOJPMft%4Xtp|FGn_EIiifF14;S#E;$w46&SM_j|5!GlS7K^ZfN!-QH;(5W3Tc1L11A7k% zGa)0W1rQEEh=OI13gvweDkwmM{$69urY12ZsaZpuTbp~{)g8BQ*jHTJLC?~_zw^l% zo!S@lnPj$F{S=^nYzBN>y8oBAcL8(cs_#T~BvqB(Qc0>RmEMn*s=KONJ>6m+Ch2}umOA)!SU?iV20giQp=4dH{_ zWg*>xmg=DFi4D(*y>zDIuuu}}gld!Xti0~eRgPj>= zDZ6p9(5Ph>Q_)mze`Q}rsb`P4Z^*B~E+s~HxhA<1u3f(7X>3KZHR^5}ma$1(W3=)~ z9~+RTT_K8m++enHtTc`3h*GR&LD?WQ4@?v27tN`xF#4IeTHVB>s!W~De_Ckudac4k z{~10dr8Q%fxu7eiT8W=;!4|Rd>Z4voTh^5G`Ig?wKZFeL?zIRS2H_bA&#Cz_uRGM} z`!-MgJVlC`nir7=41oo(itQ?kuR%&*N}|nRP+M({ej+Ybji`7;KCPU6z^>%z4%k<& zqz;Qw77ct>ncufgD@iNp&daBg<7#3(eW?;rwA*o0NzNw}Z4x8!Gcb?msPz;z5E>X* zAT$J@^1`%vntl!6$*`XNZ6$TgBdUqW`LjFSdjj5L-dyIM%;D61m0&u;k$y9FzZ#D! z-lui_g-|r$zdzH8|3sXR9Bm1lj7|WD`*2{}Y&Dv@GKD8%bKX`M5sQZ|XeGL^RUKNv zaXd#;RFqOG6=e7pF6iFsN z3$r*`r6Tpw6cedg3~x`3KUm~tqt`R;&lWN(NfyCzX-cftQTAReI_oW~7s~dlC{bQZ zx(5}KQRcQ`5Zk10c1U7E(8$HB>vHMEUy2=D2yt^Tuf#`a;*EbcKG+&;UtO2p_Wg5< zL@xRh4?1y336kpdCcd2=8Y7Rf+P9Hs2C1a&en?E?pyK?vM(Nl*O_?RsEw1mJC2?*=iowJY2rNA)DR9H zqjRA2De{~*l~XVbQxRT{g#B*M7uFBu*Vprh*5P%QLdR^kn+H?=U@_trhz!T9GfM3B zDW6-|m81xaGuZTkM&~lEsSsn}1nLYrO|xk}F-<}Ka>q2S#~*jioR3Btk!ehX270tA zVw;_n7}g~Ir`Naev>@|M0U=nId!sEG&Tacj2IS*ZMwJoMfL|u0y{c#ePW%P8kZ7%f ztoET;>}O$m3XtD;-2w^l?)v#J{j4YKS?T(GU81`Eo{wDda~uCdbMV_fo(Vo@fv!|-*A3{=C`tH43?DkvI!dsO zOQpQZePlSgOeFT~8fM5(VK(7Ky59whU@IG^8&=X`n6FSLrmU|}&MaY|D1hvJc9 zF%l2?p_g$|X0Z?qVnTLCQ8L>`JnLIq@&^L`r8QqR&SDovH2w~Gcr_c-Ey+iTHl_kA zU=At^->;PgT&7?T>E%|kvFK+$6OCn8am}ZV$IPkWusRni9CEpw+@nk64Ja|bu`v{nhbWJs>Yo zP90YwjA`TqB&O#{arBb>t#6UmXh>f8)nA1ljJ7C@$#_ma?Fvw|C9S0}&cPbDvPJ>j z?2pTYrUgg}s;BL*B}_9xLcV>z5FwGEPcPKmLE&B@=&luXUoi4)IQWKO=-)pnNl*F$ zfm0!guO5-#!25js8{{KZUJA{7Jhlw<=fniL$$`s8Xu+_suRA#f%-@M|Kf->*j0vKm{B!M|Fjpf^*B^HZTfAXH9e^U0-XbSat7 zrphxo`#C15PHEpWfyn~Pf-Vp{2bv9?y-4is{4V!YT~u1TJ$UM!Ot4#LD~45_=<Xp8g-lMJOD4tn%G{cil8d2m zu$3(;euR`trmERQFdE?esd&Zf)jt(?y9@K-XgV%I3lxjNdOjnngKZ_0aNsN-EEvu9V<6p(Qa_%#{+d7)XnJkoQ%}`T1TvEiZ_{ z@SLm*zF9fPgE~tU2XTTWe;1 z-_t1^f6qBdA3sfp~#o6D#e1E6@a1$e2Ekhh>bWFciyqCAAFgmmQD8l!I{RH zNk8}|jU7^G?5fQJdiClVB_$ZE6QN|CI7tG^UiRb9ohHV`(>p9yMirk3R?V7}Y?J=g z0_IB>t&1%xyclscovoTxzBR7fU(omk*_EMuR}=8S8ADK|4O*Wf%~VdPh$V6wmh+`T z@j<8@Ebnb7^YmqCkB5!4INFY-p^q&c5a}-#Vr1r&<`(z_@pQi`x7mG{+bty^6FB0uuQuNUvDY zlnQi$b#!uQZ8W(rq|jj^*pTkU41*P{AOzT@70xNHck4Qz1}7~ zb-id9r{Q53NLNsVWhHF)|L!ZXeO;B8zbhU8l^7K;1aUe=pF$W;Q7G(;H(%bG$`yyLoQT-OG4Bj-*wVY*9|?;fq^Hv$_={;8wogoa?dZ>jp+8#mD@z=` z35NNMy%q65RxtxDG3_>B_6(MaGlK_${O9Ae7YSzd=BMZPV|(4NtQQzQRxs#oSLI@_ z@UPY7xnyPiIAS4(&x#v3J_8_m$JL}IWc7ER$N=9c{g2~4jx}IDQIC;i^JC;k>wztbiRXE z2UnP3yOwYsZXlEn&t!U-0@`DkwkA{Ei8=V{g~y1S<9%L<>i;JT?=a0Cixhamj6rnpH)%*=al0wyA0*!(ej7eLUcraB45A{eS6YALN|cI^^On}eBzhnp|X){~Rk&An>4;T4jK zsU$m-dX9e6+@p%bg*6I1rQYH3y*@v>GF#h|-%tHBougSysuv`0%zyH?cMz1A2#3H%o$|x?C(AI-0wX* zysrJ-=B+SEtPkMP{IG5qqwjsU{hsUZeHIU(edw>L4M9Yd2U3!hh&%5_=n2poJfQGv z8w5mbjAwfa8YaDd_NJy74mL_pJ-o3Ywr|YkZiMw&e{J~CO*hf6wNfMa+R>-0)f@Kl z*I&=?n~n$eP<=!}3zR(;c~9nrKSHODUcJ@S6LzocPS!%W6K z;zBTpJMZRDIc-adgC9^Lg8=F~ftBd`dUQns?dbj1+`;l_8)oXk{PA0kEg&x9VLMC& z)T8G0J zEHv7r<974DP&6*jXTqE`PrVl`FIJtuq8k!j!6ic{9gYhHBECQ|7Mu26Z1G`WzLE1RdhqiO&&*i@B_C>BE<8UxA}r-%Yb`6v4*JMEYsUciSL~^QjBH z>I)w!!282qxacDsXZ`oItank^hxi^}bA5NS;I7@dxO#ihd~x~^Tf#GZ8% z_NZIphpZc#MaPwsJ8il6mg%|?-Kkv2Zg=aN>|H1)(P&=o)sVf}?>!I*uDBc+>%m?d z1ID%sbC6|F3D7VcxKjpxYU^+o={bI<$s+23j&&IX-(If|LRqh8Y;GF8(e^YKDziIN zN#JU`^F*t|8c&&;x0qgMZf)(dEYsz;KaNxTNAfN5VQ8}~i^i`?%v7S$?0s~|)Tos} zKvr$$E1`SqZkj?2`*B(rlO2%W&c+=Zz1l`iDg|K;3zpDedicRZda+=0^%aWxp$88$ zW9Ryb6R`2mwT-i-oTT95s7Sfe*^OEU4!QAQw!YtH0i4@k&mO!H&NHw>@%O|%LOm@< zW`K`)K|wfbq0wqHaC{D7k2FO`_nzsjNS#V~j>tlwI?*j(N8tLlx0%+NzUf%$?C%G~lfzV8mMu{k9n8 z#ykTOEo}L&g9mT(ag~#G9a?1NTs{kh@dlU6FWg_No2$=UJguK5eXe=?>VXHZ=MCYu zgZ10nyl(Kh!om%3UDx&Mwft%$2UoXn{32oq{SVeJA<&WbKcjwx!wNEe?1Of^*)nF} zqB*x>L)_&EkI3sHEMth@fwn8mOq1IyN7(YlOB#!ZsH~K0#O)^4X0uA%Bro%X@YQoi z@}ZTQnsIy2yS;@>IPDL3-8oSe#c)U@Yae&Jo2S;?|8-3+yLs|n-W?6EoIZCX8t@YS zPkE0gefn%6BzU~sQN+uO$0uX-%Rx&%*}USCFdH4c0dx=O29j4mB67(f0p=(@&G9@J2>VTc$dKVk8A)i2 z5PS{?=vU}1m4Xa3V6wKNO{-#CRAHrQSE$jPsh(5rcEnnc5US`lch{s?tGcpqY$4y0 z^63-W+J#2r0^)P6-R9{cNQB--j8#P{r1KO5$hi>%?{^RZ31AAQ=|Y5j{8z z>XCFoB33vSa!Xb%?G+HB+8pgvGh3NzU&^mW+PdD3tmY-7??LIER@2I>*l0U*2Xoc!!qyybXxIL#4Z~fl z93c!hhzwY>-sGoH9cLI|<(ZkCYp7!2v%@~$!@j+n9sA{(Pj|CJPNHpC`4@hDUY}o= zSOCPe{>>la3+M^+2ZhB&0R#C2+XrOPIG7rZ%U#Dvy2NZOi?^Q^j4; z#2J*=X&}VkNSe2oO1GQIlh^bc-F#cychgy+ecK{Yujwxu%cDEwc_=?l*;LW?W!tm& z0FG@SlLT>{dG>rBz{JNgM?TO;Dkoqw26!Z3+s=?>%E+5#1UXFeMGP2Nvk# zrrAR>?A~R|K=%4h#{wnT=uoK}R0Dh++a@p%mLX4-m<_cgHXPyy?yB_2M$;sq!*@oP zhnF$V=dguC(1P)m?_hwBfd#Ut04wa@#xJ-1VWZz4_I0_oxmVt?*hDnnv zO-xILJ?c}I)q@2Gv^axOqk{@dS(HW9a7|(ldsHi}Q2BLNNw@-`POOwB&I!#yYi=Uw z>$pU+rT&X$T^?;22F37&7t$q?Q!wVr8pbwV0BO!A@&@C1F%8QlC7Q z!7BU8hGqYT?buTG28sm|yaP+XT@9S)+7i3uN26aqwG;s>@ge2S|(U7hBEm?kC% zo8xPK0+SQPy zY>6W9A9MWSG#*HHJj`pzZ?{fr&FL6SW;nJ(TeOL>jS?7wY!Ylm6>p7W(SKact3+Et zhgbWjdgdk!sc2M<(*$v1tyWTrMC5}h4-Pp`>VuI)B2`(nWf*Hqx3*LGKTMcQt87JK7h&bH|s)<%|S1lQz1?EZAstX9p_X0?xY(*sgsrA(Ge2-8gW!nfrG zSdIFdn~!qA>s58>#AHqSD0u){EKDO2Kmdx81`F|g-{`A%zV*o`Kl*{CCl5cllqU5% zpM3JkCHi5kJ3d2hKyL}N%R-Zp(}&*o(05Le8xB2t@;eXhQ3kbwBW*j%iH)zp8DBH{ zDk1c&ANW`B@y^j#e}B(1s*I*VYm*~z>h~S`-G{z&^4UXl9{Fn;k1RkRUO-fiwo;LJ z0pyArjf%3V2Q)T$NLsCe!iKE0E+gE4l6bjOJF0tBMMP!+uN2|bcvcL5XtCYtER}qu z)9v0Jl|bhu<-;|bh#->WYKkau=8a{u+c8N_qWA2tsm}=UdgJK(BdjJ-!c?P%q6yV& zREoIFPS;E&$_vqB(fMPBM@^9*?Xr5sv0j`M_Ns|&ENs{3Hp3V`dG>5%?`pYN?!sTu z`bf}!YOXrQLsy$<`p=UHsZ&}85IviU;GmUg2z9Cn4FNhkLbg%{=1jWI+jW4p@#sgZ z-62y0jYJAB{sH6IJXCt&v6O0=A*JoZx-6>^$y+;8CT4ewsW1P#6urCKm4=3K!`ZX8 zZ2DL9zWFJ339Mypm>WRpUsZVJRn_zVEG>09?Zxm`R$b;N_s_F%wAL9ibw*Dpc#}Vp zBiO#>c>4#|aMEWPr%ITzuj2eCv>DaI_V%{5)#;gC6K(y2es62b<@nQ3{-VF(;6jil zLZJ&Wk(?u?@sFL~P@fj%!KyOX5Ohx34hS3CB*yl3cY9m!^|pGwo&~?gr*8IoCO)q! z7v*gD9W#lyFAoOr+b#I%7W|BuP;Bq&F-hI}Vu_<}{R)gl7?h+wy21t}3E`+DbsUv% zt2Z|HsZDT;MLxI1#F!|73d1tt%4#Euifrs9Ge9segTUD{-7{&X-< zhoSfkEQf~LzUP|UG3k|wJMg1^Up-`5R51sk6%#oIhOM7mqU{#JJCA0W zHgrfkaapLqS%y{ze$1kfdcAGKu$(i%xh^j+yC$(kPt*Aw=7eP;h_D#3tXqK$GWr93 zGege7Y2pz+v#@BAn3);`%onre0m%i(PoNW0opmfeh8R|E~^M8@ntpl3!e zTT-tWiPI{PUd9}K*IZo49QaPs|Uy z{1-%_3e85br8n_7x&^O2hkzUB{qK`+ke`Ja|7Tsl;QA!ArHr{>uuk$7N3;d5|On?(ID=my9Wx8KN3jAu9t#tQdWH7uy3J2NGMwJ zixDv@dkHqA7>*|V5dw+@=Z_Tg`K({${hmt6=i_7klHFYUkh!uFw9cglLZ;T^ET2NDxsusjd(VgNXZ(Q`Rm8 z{ZT%_k)oI&a*@EANz(p+9FBS=zt7`|`8*-m879GiJ19m7adSRd^v!Y6f=}>8g^(vE z3Z8)9>*HjJ_xs`^@AJn~ZlWfW0{3Fplld)Qn2=~PgNv--2~OMOFy<~pV@W_GPf!qp z=?RR18+fz|v_G1uXcxeIMvRPo*^nlam}G2qLS#Oa%p{d)RDrk9yz%nO#F`0}HH^_$ zgVm_IkP*eqf*P$}U6(40PSBX0VAfKIC>wSFNkwD9x#kwD1)H&@pSkIXa^y&AG?B3@oX2SJpL$n?KOvv*$(L(YDhbhLBlIwV&n08%ldSL z4mW!m)mfsvJqS&cy-(vTMD6^fJrdgmdie^SRmU0aGH7-kikUabVz-FCwYk|H&(EKu zwql9lbWJy&2jzYRTW#E4zhdR@y*EE=M;-kax^wEjShSw%9%n3xC6p%wZRV_Tyf6O* z=df3TnU(AW-TwpYN`ozC&Uy#@EPwB=6MmEKe6@9@=+f=0>w4lEb#1)5y3)9!nX`T! zTX6RYhjizwZrAozEkNt~SJ$ZPKfTJj3cKrie6JJ!7k0K+Ti2`4O6%IVMqSx8*m7o< z$W(tFXQaAlR{koHm@mPRM-A6ys)J6BW7_^@J9B>)^MG&Se)^ zz;O^mrsLF8)P6sSZ=*wY1I>#xfVHB~ZaW6K>jncspK$J7u>IggE!*j&s~0h25kuI_ zK#)JjfF*~ubhneP&2UekK6dSrJQYNGDZxt{13Jm+Pzrj9tB=;rE6H)4}YB;P4k8;z2{D^a4SBYMsXzGC$~Ph$iVQGbPl95@;5YN=+D| zTXDEU#@5!0@}_)>=mtxPH9%#B6OUu7w#k38{U2hOXr6m>cwNSH}QuddzH&_IV(>+2F12#Rodk`BXpXNUC7m%H&$2)fbB zaBZD!#}>YA&mAh2L68Y;SNgZsL@Z`y5}?)usbKwh&dEXkynBez#4H}Iyk3d_ij(6V z{vPJ3ZyMu3@kx0K^NCj1;HvjdIp<~ybbo#@kdu=l5p1r@iu8rIH#Z;lh9m-)&Dqk!I^SQ%mN7)Kyr}WW|z5|a-yS%|8bf4MrgHt>-VP__uDMb?)&Z=F4 z<>Yi*gMN>8!OiKkZcFc79#HIxNq=TM?;*ywT@ok0Z{}cR?nRSWL$*Z3ncto|1g$<> zFM5;k3Or@N*5d{+^I-(TG1ocQovsI6Z*jfD^=^z*#moUTQDZCxzeP4z#D5z%ThMTw;+)U*T=#$ZSy1^^`^ zq)9pQK-p62xEGL zV4)t&*B#w_XmhR2QC}2kU{Wi>jFclJAu(V5VS)fF=(lJw;b@v0OLHyYu% zG{7?MSR2wZ$?JNUo0FVdR(n2Qq|u1@e71jtm5Fm>#px zRAY4L$-EnZ5!%!X*JL$-+QlXPz03b}*IZitFJ*`(5v97hd^XERqB!rdK+bK0ejd+8$z22Q=b}{-L9X z@jlz*frdANFxS?2BSZd8=I~(?9_3$v_IPtBrp6-@_s)7lEe8(;$lEfbH`@oid}#Gn zXsGu*=9MF&8V$WO2XlMiP-v=b%oACf#2`#hs7^3~GBszg4GSet-9dw}ENJOpVxs6T zv1x?#S1Xp~%&qz=bwpWAO5L)hQ1^I#3Q`HQN!2*I-nVz#2K!q^r-Oh9&Q!WhKW`1D zr&i})yWy8r)NA1#;T{)U8fs{5iF+06pXFNq;BK5P&k-3YfTBnF*_BPGUOU~(q z$nx2`WnDBcy3nRZ?X#2EhuMhpb&7p?1C1|Wjv)JeYJ1&n+oSC-+ND{mB$*0GC;f4r z;no(-Je0>fh7*=0b@UBqX}PR#!ZDk=W%S_H{;)Z*S&l9_07tQ1*RofRC0@&EjM11> z$@4#$b=e=+^i`%`N{s5a|7w#kng9RGbbPsp%s{*_nNB0WnGE{#YBiHr58qcO{Ze!B z;L=)kE_e98B}Z2J6B?%%V=+k766Zk5knMZlf99v7ym$0x`TUcopUf9Xzxw{uKON0U z>G$KFx90PX3^*d+Ape%ODr2doN)LNh3DX7JG=K}=h)d14hvy3OCldL{=;P$y_ zR(}3;erb68HQSM1j@*+d==~#w!o$%*@XF}X{4KZkGjCtdm;22-zZ2{!E*oEBNd4G; z>TO`<;XhQKxPHDegi{XT@wT_UZSC!uem`@p-|yc8kBQuRpKWiU`K4_t)VEpgUq#p; zFiJfegk8n}gu;#_W!@X==w0%A!E+D&T=3T~>s`24Qdd8FR_}I4L+;Ht)_>~4jStS8 z-!nPCA_=o)w8!U{hWh5FU4k(_{}!kdlQKpxPYUpj=ak(UAmiM|aS~-E>V|@$Pz@y2 zrY1=6HhB&wDV6ZnH#fW8q4}A4`!SW_=pMd6>-?@RgrmjB+r$p0LQ)}!G_J%Uf% z9^0HuVnQnjI5TK%(AAp6ELv9az5}LZSqB~)A9v9?F40f~&|Re=JB*Bvo5e+xC{Gw8 z;AphzAKE!#?^H_0%IgXs6oG3tF~?ULWibfXFix#=uV2`UJ<3crunCA&?r9*=#DC48~jWU=p^nNiib3-D``% z+Crs5KL!`q{wg2MJOAN1IoHgsa-L^Y*%wXuyxwPh^O>SmEH7}i577JYJD!j?7>x!) z`7ZJJf(bD%3BjNs<;6tM=OJA_+P){3Q2joy$1eo@iQGNy7pF>S2jT(A&4)i4^$1eL zEx3a}QaYI2zh61E7?i~MHD5U7&$IFIH&o{hQ~p52#iJ=q2)WW^JqpQ)P(`6m8Lc8K z5{1KSw%QetU?=u7=v%3Gydwqu%eYQx^PoxaZQ(jYf;Vp{);!b%=^b`Uwx0>p$rr0% z{9<(xepqbjiBu|~w?3UpC~h<;tPfZvdP-$;rjK&8wpLDHgF|^?J2*uhZ$JYh#{k#J5stloa)1D|B>Lns!eDog(;+8rzfak*muzvDau8u*u?VXbPN@4s52rpI2BPJ zL`Pij;_1^DEm~2#zD3jSL*F5fKwr;b1Xh(zR(Qh_GH>@J==@k=ttpW0Eq~Y_iFgJ= zcyuxx76zV31olX8mco8w2q7=ekN!9y%K@^;^IqsT7)<;Je=xECe1OUb1>~RR5a1JG z+*i?!EAXCG<{vF%A8of92w!DgaYZ-}@mjphTVCSfBD+4KJRjmi-jDlyANRrr*_r-i zJocDv+kOjaGxoqJ?f#5lc$vT$4G4D&@SkLFq&3;bw^@$z2&`&Zb{3GlYV2Ga2u0Ld z(_kN-7N+O$iTmz55q|%PQ0T<{AHM&7c>m&kCqi?f6QmD&;Pad5r~BZ68;9_S6VCW? za%r4QkLi3K4Kr%&DIB`)m@{dcMy^A8 z)0`r{VH(W`yWO3g9SdJ)2}lPNq*Zs;&8y0(uo%kSF(z$0{siAK=9&yzzfbibicq_a3CA!p?FS5CgLE+&Ag=Df?^p)% zj6Lu&$dyrs4neUIp+~OUxg0`el1DUI`+7T!sn>Z!s|vpSzl`GxG0{#SiVM7KGX=k2 zZB^m_e?pm+4API)Ub#%i08l`$zh7-qzn*GaZfA8>XzAJ-lU?PcP?<&m`pnu|sApM& zwNPk{nAF%$Upn1nJ=w*VDcj8_=-6(uXk>#RQ9DXxbrNx-u%$?o*yM2z)_9B)n8oFk z!j;$dr{qxTz-r!|QQd+!j1kMB&X5Hfy@yG(&!6&##m0eUg%hJ{jAT|0tVZ2l@+lh0 z+`arflWFZZ-6=h2w|&Az?5qL~rB}o=fIg?8&S1Zje#hz%XrWl?eGEELcEctpw$TmDN_(b6gNc#H{@%}ur9z0E)%3@eb!63v?s!y z{1`9#J5hnVn~Qlqej^|Dq&dQwulwBV*0~6mf(2s#&+%?w3TK_f@Nln zt&uWPpOo9Ek6R`a1I)N?)QDbP(C0=w&usGi`)CpPra`p^b|p|vFfPe*@1b!W`DcW` z-#m@M%S-g0|H%{v=(P~Dm^J5|>o(VU*PX6=T(5UM=<2!N8<{iy5Ru4i1& zyIyd;-}N)D54m1+{co<1xqjF61=oK-pOZlKb$qs`ws(L2U-ex}*|n2Bd7+sQDI60B z^ZfV~bRZDFBzTi((#xuHAc~K0h&`G#2tFyY$AJt!RGB@Fmhn-{vd5_^J}O1_I5#iH z=f@94{D<0s<%5MP{^e^R_HjzZ=PP8=MW3&vl5=4`{A8F9JsIJ{e-`9J)gT|d8QyCl zF1Q`@#h#4%qWJvt2p_42h3L)r9uXqj@nHOM_DuYF%oi=i{IQ$hSrmP-mr~)>kEFuN zWAOehIV2b4pnMvhc{wQkO(9x%v;BN29nR#^q4eoYD4orOGyiDB=0o#Uv8vW$RkbSC z(lxQB;&a~bn9E3()@fVBt9C82E>pM3Z;T!UvQrDi^-T0 ze!Uo~bS2Ar+|r<}Zbp4L&_g#PN`nv1SUEe1j5+VtLSlM_tq}6t#CBXtn$t(m( zDN`JZhJ-qDlG-7}X(}GtF!NlXC76MH#fifBrHS|gpN3^{Pb#Dq#tOD23Xt!2c8q}*Z6Og2gcA_*Uf)|5Rb=ufe<)1xfO9BJa}?9d`a9Ny%2tIEh?02WUaMwLVh#rR56COT7NYHm3l;z2L+`N~A z14-YTjzru9ub0Rk0uLx6?D2WsT);=%si4OX#~%B|)9^DlJ~$sI5;-1=ViORLPzo*^ zT%He>qI0|&4U6uuhl>e>3-CU|`LiV8i;)y@`@*vKxZoiiTzuF~BD$CNAmN2O&GP}C zaP9~+3l{-x6WZJx^|+x}LIf|2VJ=RBe3s8==G?wFyCt{-7oyODBoOB#-Uu|0z`^~2 z77sx4@ovI-3UIw{cMM+PFhRx^6-fxh2WV2i?Hl+z(gXcW#TC1P{xyU~vr(9BRsf!; z@ggTmF|HVwlW{q>a&RRl$CIDT+;+j!y)6?^Q-{>tN)GcijG7sAy~U>ZcXZyKjh>Ca@d=PV3} zZ`JOyf<;4uy{C<_?$ezrGsEomP+}EJ^q_CXDHYQyp&&%*uq;$*dXz;J6d#M8@V%ML zxhpP=l!V8WZnf+D(^s_n{NpR3=ij84GXVK<&+~ii{I^RKTd``R+%{}}8;Yt3DuXh% z@!&AU+<@(^E=Wc2Keqxpg7{e~A*l~`5eU~*MMI50Q34eqr^a87s|M!k8dHAHAjPkm zMaKQXW!iYTm-Z~!2G4z^vj1VG?5Pa?S5fv_VS-rs<9k-%k-`MD5(8`ZtcHzk_&poj zkm;${z&4z!Rh?m2%U9QH4;cFov+Bh+PHohr_^&wi+Y{fAR25H#kCvB>=OVIO|5 z4BZ(0t*Mr8%Foty-F2Poxa;Jrs%x9K8>v_w$%nHQ(%&9ng31u&x1DB^T+mFBu*s}ZJbhK}uq#>`akugNIZ=?v{? zTC_J{s1w3`uuesJ@`#IW!yW@}$F_mJ%z~>Cp=PiHFT=uEP-^ou7y}G7gAN99Ri{&R zw@cv|#xawhv~zf|ongkPBYOX?j#8O`xHKDLNu+H{GvoRf{QFYb;Dt%v1q(>LcgK#W zGzKsusj}ano9;*qC9FeZUoFF$v3If<_kGunac|Q-l{L)Wq6bKo8pU_tEAUQ*Rxtxlq z_^m~FWV{r7Q9jJ`#M=G+<6%DEU1{ERNbr3s6bOdP`%0k@35Go0z|u*5t`H(@Z#f(y zfiS4^ULi1_n9m2i^otUF5ro6tf#RHga>?g&O~sxETyYrR^UyjNb6P?HS{b9|v=MOx zQAo7PB*}vuUO7D4f|t$~$Z0+j^1sm^BEF6!%aSDB?_bR5dS=moKaq5l%gpmWm@Uu4 z*ODYp`Ww#8OE3=}bKQij+638-1cxIsNfTR}7);)3P^QkLAR)Q}VHBQRO~VPhy{a_u zwmE?a4QGS0cs5$d1SKobpo^Kzp-g5mmyx59S}u5gy$CWdS{94z=YzRgBr0b{pN#}P zp-|2rjFDV2{5rPuyv2sHXY@dAMw?yx;3CwW@A5pRw0@z1k|dz5C0xEI0A9GMoTJEMm+BoS;Z3 znoZhWN6-|wMM@h=Zc;M{9VyMb z=cx-x9~{q&-b}nOJ;~9ZyX5_;y7fU5Cb&oM)@Xr7?0AN}F#5EyDgWFjw|{ckLd-a4 z4Q6o!KDdiCGL4KwZcwMinrsjnc+rp${uGr(O{suTrHLg1$|K1|ku6uc`A3BdxzgO- zkwhpS)YaTtJXo8nebpFUHb@UMg-D$7>i&P~T>Pg(hi{*E$8$+#E|qM}z3-8^pCp6P z-}%YGk$&9o_}#uq`8Uu5ik|L02zqP;X@{M7O#VBVq36knYf)T}_Rp*7qxqj!kUFOz zImA3U71mQ<<6UVL*0!5*nKSYGrNYGj$9NhTX6h6dGCJ31f)*u^G+XU4f*>yRtV~!A zN8fe|G)CJG6Td|ndG8)q#=x>RrxJOJk6(Sx%r(zRbA)!Ec5rF)itDNq>%Gg9cDpu@B*Q3~<&k{e zY<4=cJd#^z=j%WI_^afRRH&itRq{voTprfZT>h{`c3MxRmmi!I-B@s{Nnk)px3*V4rm@84iZ;zz#{jKzXq`6RynA3uh# z+xu==UcP1D^Fcd?_sTz!&y(liijT7B>b6$HIHw3HAVd;UF-lgd#qmvTo%zgt=L#$vp8?nXfj3+HMJe!trva0difT0?0) z3G##2=R4&Q$g`oqz5eQx^|$`nbzb*fem@uWoqy2B`(nN`HwfW4e=eF0MMCK`CxrZN z52;F?cr+Xkc(3f?1L!-r*PpfT*;C}#U~7(M^PohvqLrgIa}M(L*%1C4ZX7=~gt(xL zbrpeKD?))N?N+Tn82tV*&Le~+wWvsPz!yk{o(Dmm;|cLXrK4_z^LqVhxXge%Ed+vs znRf>abGzaZ8r){|PVT(d6AQdHlnj6j#Le-3KJZ-<@V$q)$-8_3Pt^a;l2G|=zjF_q zdM~hACu%IPpSAxU)z(-Y{}?JF#R4f-jaz4G$@$7yBbaOhzPG!{+gPb{Q?+Vft+>x) zC0HHaPxE54E?1)|RBYf9mR1MF;2e{HRp)ERya6Hl27maua3bJ)C><8V!>z6DIbOT~ z#lJQX^DKK1LYLfaPGo?GY;LE9MniMQSfI;pD!6j6@|b&`g1C-xej)adA1(}Py{Uqr zF&qqBuB+-yK=*)kLl|R>Zn!D-zX$D62AqYDO)3o%%MiH)t}b)*5z{{Rx5@uQegS4F zgKF9}Mr%k#WXg6($pfe>5WhK0cqU6Lr0DkCURaToLbH@<#N&-jsaZ%#tHmeIm)BAm z2{ua|$?Z8?SgmNaVhg^LQiWDgo1a@PK5(|&Tv*;0D$c>jmC_k!Zo|5K7<7e2YB>?? z%CuRLHm!TB&8z{KQCzlbQy__56`foHaTPnIRj5xUwN`%8>t9!@@gy;d>Y{HxV5EwM zl$cjd_eHzUf1WZuPqh}Y151)l~Q?eu~9eH){J`N=F?Sqh(AgOE%s*4 zyxBX)Ywe3PKPTzR(abq#N%z3Ab%bgw6{*cGqFfVf56_D%k}6`hIXSC%+vejeXiBn* zW)YS(8ag%VS|16EV)!H0HaooT@EJ4vp^xR^?@{8oV3ZBV-|sHeDciJObW-JZ6>Jx8 zS!8RBC-p;Lv(ivr@tT8X@dsY?u5x9@SeuyG?if2jh4QN^*KF;$TI?3pFYM9Qn`->= z7hilluJ)!&{qHFAs;iwTbM{*IEOep^voe>iS!R3h-MdQuud^SoDtmL+=V_nC(=<0q zpTDaGDeN@YPM1REj`fNiT9!fm zJBUf#NJtf%>lr>!!|_yPy$#rpnxAJ^9T2RuPh-*XP414(^Ih2=vZ$4t)`z%^(aR3y zvrY|C%qkW36LY(x#tl)m*Qx(VWl5BIH{3$I5_PwQ68+zBH-vW7-5{ZGr7$=5$^CQ1 zT9!OsX^eiOP=y8ez4LS8T*g#x$Rvwr5#cidJxW@8TGefoVaJZres?!WJ@43Jsd=*W20Y z!A>L?a{8A=o}hVUAqW z3uF;(383)_)N<)a-ZZcoZIrlcD)~Q$Nde9mV>w+yR5WO0b`;s3%c|ln<$dK_M3qOY z7q5!fdG-Ce_c~F{&TSUMiA1=FxNN;#rIM=$SIyO6{lzT(-uZ$3djxK#zdnSAvtQaj zz~9d5Ysizlh#VC&OvxUWbH@0RDLw{8G2l_X*6eF}1*+tQymq2ACyERDb%jVQ8ZGQ* zN*-Ag==&Fre>R^AdhT?V&E@FK^Ij-G*3_sv@lpMWp|B=S<(|3^1{5 zd%M%ItYOFKpXtDzA8d~Xo$c)_E<`iI{NB&exC3d-+J)>d*TGfSNtqgURxxx79lLas zjdm8rYCDjGrtNfs=XB;D`9xxQUp*np?e(@iC(5QIMylGJZ#q|dXgsbzj?N^O@k`Ff z6Nz{nqbe(+EQ`@-v_IkX>U4U{a=Xdwx04)#9K{V}_H#R;+cy6?pydp>oaG`<10;_# z*BKt!Wtbi@(i3VpB<5)NC6>JYb^UpJP421j%OZ{ZME_n7J(NGico!k{ID;OR4c7p4QrevOy^U z(ZP4Q+r3!qa`~3q7j5nf<(jELpc(dwN;uov7m9L`r-GT7AZH^Onk;9dLMjvW@nMgL z44x0Z80>aORu}Q;-xUsuDfs!mF#IOmbo(Q%WqLOM9X|T=ROVg5Y)nvK^8s%};6412 z;&Lte2X=0vSJ#1MQ)o0X*6FiN#^h(vfE}1ZnXjOugD7Bibhd$C z(d3D)X>LOM(SIk72N@$=4xhqwR{S`tU2@Xv$2#3bklbn%=U|*qI%dctl?ejBO*XK7 zv1nRWx>ie@nd%i+zted<5|2lkor{)f4$W$2n5kAtW@ws;uoX_2Q`ou*ny>3Lc~VC9 z2sDON5Ra!JmZ3Xd#@4Qvo8`K`*=lCfpd+}D0kOQ|9uD0r<$h`RVznL|OmP z4kJ)E>57xs#**8bD=_p{kQ5k{daVIZ;>s`cN~vHNg><*oP2)yM;g{bd-YcGgC+XL6 zDmtNXFygzKt6gzzZBdM3Zd@*|X+Bq+p(wSZMA2Y)R3sUFEzPw=6L}&2;mqsSZvINO zcF$HkQ8TMAn42c)pRV1xmf_Ew`QjE|HEW5{8?503_YL!p)vI%a5?Xti@s5!GWDfgQ z^4Nt+<-)P#nOzud+vnGXTW|FpJYS#qoblX#mNi`+)1U6fw2&~v_{^Cz_K9CR4RYJ5 z*UumH-FmCA{>QtqgLJ!HFuoW$$L2sAS)7eyBNWS{#^Q4n2gG9vj)7QIa4<*PXzx^) zljjtV=kqu-T81^+wj36CHU0r_Al!v{lA07@Sa!P>1)b(-EZets)nO{0?FZN4RDP+R zufzXRerfd0y(=;k&}Lq{I<$}e9r-%#`x^E2S8O;DDq&F>%f^Xp+Hm=p8NaPE@JRidIFC9l8~mj=yLZzwFyWf?t3q_gD@X9STy%=7Q8R9n@`J9*d^g-kf) z-;#NLT@ZzLU_tMIjYB*y{i;7STTc1vav1LID-^_)(&-YnXIZ&@k;uN>Olj;seub>r zdWUA?b5PVyiQ;t7kUR_|L~xyz{5gC(mtUD|!Rv3#d}YmiH^sw3eHF~eL<1}H?naaL z!~zi;V!MS%zZD6jQS`=t$p^p966v#p}F!!-~66PA|_T%Il;r@__&^ zme(r?fnS|UtGc1SJ1g^7KSw%k1NOpCPSim z56zV@9`cy%zze9!kR~^Axz*OHgo}yZ+{%G{IoRUL8&dJuM!?I(BOIxw({pZ46ul(3 z@8C*yG+<59N!Q$S>BegNU>3vNv&$>dK=Jwwxl|5C)>m{Lel+;!8398N(tRpmx{|$aAAF8S>pM%xl0>r#yHhIWn|P1gazsuOC0?Y4k^s7 z@k@q$xNMv<;Jb`Uk~wO4iAaR-L+hFbjF@|m)z*3zj&d}Z8i^>942S}AAp=iZjj zf{KM5cB;$TuXC$#z{K{CxbkVr^#NU@!l=CA9YeX0uN@P3%Jjy#8%*;hHnbKCehpn;z}OZSQdnKJSm+xccO*|mP=oUJ(89e=?Ny>4^Oi> zr%FxIG)M0TH3SB5V9Ju*fKE>JaKspFk>`^>@9LbK+@o#0f|SnW&zvb_&&AcmazdR? zRHfqFYUp))w$z{~RTB|TpP$#ckE-#yrqvxhF{tzN)Gk=Du{oyk69qJ?qZ2`Hv?a`O zqhxIp+>i_=C08?R=l8ecf$R!rXp&^i??1oh*nTmcxmoQm72iIWTF!^PvM9Ru6EQXS z_TrK;o@%D-6+T$W*<3J*#hW7MOJKFA5@9RI?Iu*~2uV!pWJ3n*GG3(Sjq7i|{&-E2 zN_lThVsZRK22rxT%XqOPMXQPI-D;(x-kmPH4R<&cCoU(NY=Re#JeNhP8)C^=1I^h` zXpj%R$JA9c`3RF+ja+2qKgZhdx8-y$A-yama_P@xOVw1S?+@p4Llz7uVHSF`X7avJ zB))H7JQDKpvfm$zE6siJSSrT5W^{=dv|kw{#3RnC=a_t$iJ(p_Z<2C3J)f7f1CeO8kcrDmKxl-xNdb>RpK(q zX6Kb~T10>ao~~C zQefWB6PPFI4WgkWZK70K0w(SANd-Bc>!iKbgaZ|r(Rn20<-h3j7Q=Eje9%a_iB3E> z@_g$=5gPpPS~2*i8^J_=dGv|QhNQr*8xI`HjD9{WdttG;(c@`vgyQ+-bL}-xGaJ4& zoC*3<5_w%XRH_sg7WGh67yWTnnO9D%9me}!6mD3k1higeBXe{Pb{Oj!vJ~Op3rE1P z){Rm?d(`J`E0-1)7mLYsDzbYFqeSlTkf3fNI2+VDGG!RRk=#L~JBx;A)39qbKA^Fu z82zqyVDjHaunL3iMyAr~{_d1D|7uGUr1stg{$%GBiZrdMcqP2=0cx9pWtoFT3qITw}Sb$MOKEITDY zemQf0scPx+!TbBk_-~s~J92+O5U?IX$3x@P^5@dcqr7qWmHI8;|JPy^9WjR)g=z=sVZgwHjgT9Vvn zYoX$HD~)qu0nxmfov9yJ1O8xmI<5Qt$!R8p1RRi*b^ zs_v?8^+T=J%=ApR=53E>Y|q$gKXC>dV>|)}76!0!hzt${h6Dnu0hT0~Y;5UsAsM%*tLW6c5QI-WbfojTqj3V)#xqX z5p?RM*Q43$56y#1#-Sy9Zo5JFoT!!t(E}7o86Z)c4%NasqY<=VQ3>0L7dsGa4@KT|0i6WhqnhBoq{%#~W8kpvIUj$?ph|OS6nJks) z!gJmsnJX+ENGH9-ma&`g%tD6ugX|kNt~1F0GxW`ym+#W^_L6_dGGgGr`o6jN;@IFZ zZ|P(-FBC;PZktKgkkZnc<5)nl@}$_4Soxwz*~%(_LCYdu?R~|Oo~xVXEcK!47YcoV zye_W=?BDR8H3oeP%LMCfjjTeg5I;pw+@XC9!oy@^l_QE(j!Y8Q_qXq-5q*)(&A;JT zbx!em)86{q=H3SV0N2rV(-p?|c2+eN*3V|x>N9iCcxWsR-5b+AE1m{IYXKnZtox$4x+NQTdfQSW=W7)vMv?JDu4Rv$&SDfT;N8Psx5o3~2Y> zl~RsY@p>i$y(YV~47S=AJ)cn$y#iq3NjN05^VS_{$}WH{4> zyhCcC14=n@@~f4bU`WF95#M-o;X@7efd|4=Bm5K8!>#LDGC~drt(>{EqCIf`CRL}~ z5Tmq(SN6#c9Gt!N8*Z-R7G896&7uN@0-IWwAm?`=?%>+U*zEWFia8u2&*<9F9XAX} z>N(n0=>lqHx?lu78I!D2f;~XCy9RVrooJ4C%D zimm~Oa6qt46yT1n`X(=!yXf1qH?42uaea4%TkrMu(YUXg&X_vDV=CQ|EkShdB-oiy zY?A+EKa`>>0~(_PDrp6DB9BsdGmNlmV|!fWZ9IW*T{^R(-v5BM;;}KU{~FI_fLU(> zOY6i_73foJDtZYoNTE$B1ndnj+28|5!|*-hNBKjv>C7GtX33XzC0xZvWUeJk=Mt!= z=?l6>4)_$GXvdg^Dr^9n_*Kj@_;`;MfzMfb1>`M@^9EW4@w*u}GYEUZr$?;D))W-J zY=6d!Owfdu9ba3bZcwIWVwkAisNY_%-~KW<{Bdqxn0?6lcqw08fYXKIzgP319$bP$ zUX^3*n7ag@XJ@h!&TyNS%Sfq)zv$4MQvo-ffHs#8u` zy0v-Cjd6NCAh@uMBDof8W7r|Z~q9b@H8qdmRL!O1P{6* z4FIm%37o=5tZjIHQY)3}@sy_CW$(LQL+>LzNf0FiU9Ajp46P<^bPWgGxYZSt8K+J$W!Q%Fsm2(UfIiW1)LKsawD=Q34IeQ+$P1xML%s4*naRnPzaQEj~3h{ zfOOy{aSeElC@+}hD;a?mgf)zVb2FH!RP-D%p{rVH=E6)#Q?Jb3YMQss)z^=iOH1al zb&HSsIr2=?o@Lx$tXl!Y5O$|DSbOA{by$Qz->vB+RJukLG@Tb(AJ9^{!?~1}4abhA z{X+PC?RGmISi8_!4}fz*yWlOvl7-AnrjU%`b9BJe(rL{Uw6s4i__cq4%gw_Hb=?Hw zzjooa<0uo2XEO0<1|7exK<5#_)#%#j0Q>L_(eY&$rlGeGP>)@ihJM=`KgM!2%Kp9& z&k(W%?Zz-vqoQ_a7#e-j!3$xnxV0{pWkCD|0>d3_Zh{L%8N4*&B%l)n1$_D0gnI5Fd~4}0?{_&#IF>9Ybv1D#ooyr(j`wko6v{j1 z)p^&vs_#9oI^-S=)Z51M*mj37IBdD*SGr0E`f1SI@x(V6&#`2Yzso$kbo2AcEN$9TZwGKrOw+ZV`u(eD z^J>SmZP#vG2!f*up200^RXDv&<3J!}0d@L)p#9!9Y1kTZvKT#q7df~rJ>qV)X@|7I zZ<`}1Eb7>?24k6V;^Q$PwP;JJ?&jEHOCAlVG(>9I7DZ)S(k8NCf=`OuPQ-ge@X@VO z9v8i_fN?54T+}zdu|Mc3YI&_x{1}$jX4{l3HHY5N0g(L*%PxWfO(kI+()bczH{LtHfC_Hgs;f1 zD#vh{u3BaWe38G0 z)mpQPlUe?yHg0Qp^uSF{i^m$(pfoR(mzM!zR{}0*Z^-{LIg0%EMfeIbv{?Q`G!@IH ztJQQimXdU>yiB;n@#|V36|SbkX|YJSHpk@yUiTU;UySBgqxo%pzonfnU&qOO?zv8qB8Vm#6VPP#q1E-<(xy*ByR6=f%U zEEpBV$5Rqy$1rd~y09w^F=R3MW&V(t#E`jU^=w&`?Hz54FR>8IUP48Kbte==MK;1iiGT=l1z4c z=w}vA$fIxcdL!1GFam)My{e`c{Pr&H7%P<}=r|2v-BOC2Lb&k+h~cH!;4l<5>&QXw zX|gz9jyrQ3dKnu0BB#aMgeO!I)ol5|Ow-)n-VD%vQ`9q+iT z&m6$B*XRb&z*r0@}tn2duXtc#Qt=MVWud z>wSoqhxW?fsanwaVv69D)a7r52VJzgx&*D>YD2|LD$HVL~jYmlR06|o=DMS^GEJD`)q?8k$KqHYWmj6@l#KR zy4}!|Ps)#X$9znHw*fKm7B+^Zv$i-q7voviOruBB^MY_an)IXk%i4eY^MNR!R(vEq z&tNSvB(ZP5|L?@{JPB!q33kpzYIwfnbO;>5k@o-m zZ;y5jQGEOTc?-klSMWS6f`wkEk-O#F9((M%D!=SyvTFAG(YL=nI`%go;%hl#=Wew0 zavl|1dXe08<+Hcl_SrMt7d;m*A`iJ4D^K12_8 z0nf|9ql3oK67P)#a9?j~gxF3~6+E%Elo~j6Xk{zZ7Oxvy8lK&R1qQ#bf=4CbS3qs7 zjz1E5wpO0en>F+ami6HU2TsH<_=NK_)r0Lqf%76STR(rWkx+$q@R`E=%G$}*T#%WY zQ&pz+N^#y7iEF-ECnZPpQxPp8R#|^actVb33bVY(*J8hlp9%9IVmMxu3X-4aSoGma z<&Khm2ux{MsU~4vm5Mc zo)G}^7{Azv*3=h)xe2Tk_zQRk?^6Nz;l9S6V}FK2&#~x&mp#v*V+dVfz2}j1T>ikv zK5&jf!tvwB`Qz8|@z&$V|HB84e*iTRdeDpJ@9{D(Lk}`u6lWG0rq29A?S42}Ko6d+ zoqff*yU(F}N8h{qoQcq{-K*DXzx=7%r~VMXFW1i2F5azoNI(1*`dwVE1Goivs(7|6 z1D?ME5!}!emNXh|Oq_YB1%g0*uOUi1MFN!Z&*17s00bcYxFEy{>K*&h(KYQvjBe%U7?=0qh|iUb1DQnoUmEzA|N^L@?m z3M|LTg@C|t3|sc%e~6XChvzTcT1YA3fRFcc_@AHm1;R?IFjK#yXn>=WQGD%dO0#Qg zv!&Nq`s-hzPau=vBh7gZ0RmbqhlDs7M=Uolyav~rYk;2vCKBR5)WV8-5I_io7E$Fi z8hl;D#s0)>73niG)!Ixj91dmCz5akI3jvu$!2=a!mS<`x8V=1St8ye1_6J!um^gU~ znatt2r9+5Wd)c94`PRyNf2rp6@l95@%?^@FNm9i!@ANlXO2-PjskU8o&Aefl6gX2Q_=DniqW7Y;Kg z?}Wp)VJLIAM(goMo_-`=kKXz>)+P8b8d%rh!{mO1Ozg%Uvad@qxUgEOyIt5OHv>9t zP-xU>u+!Ny+zxpz6U?)~8!t_Is!i+&c%3yZ@aAfcB?-3C?9CTi0}aL5dn&AMtQKz2 zV}7+zSk2Sp(EY)6(ZqTkqLKg=e~q9wQYJgB;8EY#H2^|y5C@bpUE1ji;1B8$t-k?R zm3W;zC*)D0a|yhLeNQNg7q{*Ya;8%GTcLia?pyr0uyC;6gxE)O=XLgnKm0gc9Du6~ ze0UGs;~V?Od4~A;B#Bk!h`p20Xch?sCg;L()o$XPviKNi(@2i~m_|`-QsZsMLTjX7 z4hbSAUafWsivCLP?*AGoA~cO;|hR33Qe+f4wI2OaNbN98qqGTq2hbd=iTHCYKwFD6*m9&Xc4h(WRK0=A1wo@ae8BIq<<+LiC=FnS1l(gQVjK`! ziJ7@WAwa?6g|3Zy$grSWkx71d(F3TU19LRM*V{hEbUhp(3}j<-o5B*hE6Zpj05df( z9<+`2_K;8Kaq~>2R_|R_Ha1|bi>_|=GMOO$cCO?jELM|gS0~fffk=z6ybyM+mP!Qx z+A|TM@G;ff@6Vpp1uh6;hC@rxFq09z@z~?Xjy+z#w;f<&Q7Ue8(~|cUrz~SHAZ?ej zd~_~1S0`>Z^ZBp1OJsuQO`iUM?%r9f2|3kCIeVAOEl%25I=9fb?p?$QU#v3m(slVl z*)35xUj`0w#bkD1M8TUB;=WKlmTEshrti;KOXZ^9+ZiSK=iU@zpb zrgYx5W6~nXF#_=rGyxV>(d$U(Y7U4?12hX&09p!773fF`dbeI{PT0wQKblCC6N$?q z{kV>jg;v2AC@!SfRCM&GNDR#+m1xNC3rhl?R#CE%^9g*uw7l8iTlXuWPZSRoi-(TG z;X{x}Iq^-LO4R4a$yCr{(HBjzpN?s@iWZUtFG8FUjHXi@tAvsvGm%@)R&sIecC9vF z)5yV^4|}-oqqxjtoZ6MBM zI$YS#c^O2)sK1$6$)`;-l2j7;L)uRn#&#?dQ)6a05EcVIAAc20uH)E%YnCnBgOp+u zVC@tzH{jW-g~w2|J=(lvf*+=0UK(wpe!JZ>DE>0V=tQo$6&RC&OixFi_F&M)FGSzk zZL7W8bFc?r7eWj8TIY`Zg$sFj*>^6{kNL0IDR>+_&vy}|gAnc!AgRB--AC{GgXfl4 zo^!43-bFZAJk>nzMjQ6EskP2MYZ-FKKXux%So_=dZLYcqd!CuX1kjdNaYGAY#l5xx zu^Z%psCWrfBk(H#zf&&h7TXPk-Q*DP3c}7!gQ$mf0!1b80BniXLjtD-k>L0$O|_U* zNGk@78J|o83^XDt62l_$GCo$31c6Niy*xs`fDjBNIYAPnSf&(?2SWiQ;B}JM=SM+N zhzQ;Y=M$qM$8a%;VU3g`3SK54203s7kqP$!plAVzMW zU)CZ#TgnxiTtFZF8F{PJCARcSORIO*7qcs?cg-)Np80U2@vy1f`M?8rD)e~YV~vNO zJlTExmeWr>>d3x|x}KnC#=;n&KERFDM!AkOhi_Ma&@yKLT5Sk`BE^>*If{Sr93W2k zBkVn@@-{Yd<6tEh3xs5UNX;1T^QLo&AK!qwv2--xSNxJ1kCx)|Gtq1?YK%{>k>Bt& zj;*1KbGb|y5lRjXFwPF~nTH6>6+Cjlx@*ay4AyF8odz(F3ThN(6NS{zxz)2Lt_p>@&Hj2s1!X z<>na0FZKgL8UN}Jd_j9FqlA<9-4~WaV$V0>lOuWJWZ%;>u>{e|tulVJ4Yo-^U>mUU z(uBDd&d`I!1I6NjV+RU_1MFi5n%XN@SC8Cv`sD2F?CB?OIr7-y*`>R`QNX{`i#~f# z?H-iHKb|~&*DX(;K0kZ-u_McOFL@k)z!&h^F6=4NT5PS*r@4l#M=ZSL7rIgg8@2F1 zVZ;vvm0w1Tm%h`__k*E93dZlZKIg2@i@)*I|hRs;A%U%rbwe}gk{YE_FYA73U*PBrBbz2YV@r^ zuTV2n1+-a6nYBW$keL~MZzfYfT?%(Go2sVp-#w<;_6H(Ly4_AIk$`{J=Tiku6I7qi zTS~y$&f3 zibfNes=BGFh_EiW(>zL^t;Kk0X9zEMOp+I54iw_YKXB*4PxAmfoMnMz0jsHyiPNXM z-P5Nh^2^!vhHDI}YheA>#lKCqDC;Q>q5T-9^#lilet$s1b#~UV234RtHPG!|0|+PA zbEY`xlP(T+t0l#A+AXPU>#2|LCqB@zDOT#CIlj>X3v*+b93|yaCeU|YLb72@$%Zlp zNh<-_xSAQEk3(d#Ccbn=u9+; zseYjejTUW`I?#qF1YZWEbi1po@N!-6gX;nL+MOGK$9L(^is)s|D8p0X#+d@ zsiPST_I~yx#%wQ5VfV7xn!|KUb88WMwr7E8CYDyQTW6b06*P`L)3Rm>_W-#gMQd=J ztQ%W9*{4qsei5pz?A{^pyfsHCjfYALzF3O?cLEh2z- zNB~Pfw7*M>^FlL+kcYTbt7ONk-8IeO(7cjOCbLLMMu0pN_Q5tc(dNIFHcRKy3xO@E zZq+Xtx4`GJ=J9YX(%KxTLucCp%PIoBB6WyHo=)3nUsr72!?vj)LovaZSLuK|lj-mh zn%5zC*`A}_vZ?~<*E?l3i7aJ8R@;$v9)1{q>G{6OuzT{ZGCaJSBv%nuETQ|Afdd)Bv=AUU#-*Q1dW%%q z_g97%3C-KP4FCB5OBvv4?`TV3Cbv!{{dywr`zpik$-CRqcXpHHDnyzJ6$r-a(Bi%c zkeF-2s_MpCjZMTous|azI8o$oELPJBxu6i5e|xx3gUCNJ98#24w4IEMw&~*ZMGrEM z+(+ZcdmWF{4u1t*A$wNGVWuEnh#S`KRg0x0o78n=8DNylr68lwD%oI&ckh@;8LY6s zJ6~6n`n>XXZGBzCuP-aI$W;N$teErVBv~_y(fsPhN`Z-od}fssWjvOQwvtGW$LHtq zYp|YxTN9&iD59jCx#x^2D*+~2G_}HNKD(T2a*5R38ATEmScE!r6TvY1anG9P41S8# zhRy3W;;04x2~M89m%!7_DtscuVMA((_;3Mx#s-C;TZi3Ph^WL5T$YQO*>p|j87-42 zYgy4Bi7#V~ZYC8Fyxu@C5cbOfp7r@qM6DG$Ig-;VnMyLH{4A3Ekx;=eA=QXT{+|%V zxD-Wkzh9I?Y9e2pF*6!UWDlnDQ9Nrfj4$A2I4Kke^P=EQY6UgQvOFjHeh$!sYq+!}*hz(=k&}jI1nI;yi}f}+=2Zqa~HhpzPxBB2TG;;TM1RuPQK1GUwf*t+0b7V@e7f=H$!~D&xhXk zhI@j1AixJ7QW`7uQWPC~)#FDIKhK?i_Sy5xn~jZzy%!HWUkuhE!4rT6y4XQf)bSqd z_k{P*4h%u&<;%T(kDzUIJDqOwozKILZ!+@S@N$80IYeQb-56rEb#w!!8&_MP^1>uK zTz6(OA}GSSBsZF4Mp;l=A^oeJ&Q*wX0hEvHmw+^Oix3n;M*}y1L$0q8C3OAK#DjE;MNJQ%@K&z4q?BNXmU&f!& z#Xuk#N$`9^M2P35ASd`)nPGzAm4u8(9ft9GIi3%RN=T3dIUJ~X1Cp2Lg+fAD$d$5E zU~VpokoR>54n-KmrT9i!uZV5La#G@z^+wz;i2=dqTaILwmQ1~}6g=&dltjF-q6%C* zS}ugMCo8iH2-PAXZ$8Q~oYx=o`laN>M>swZRt=uQwQa4bQQ7%=NMYE^HXaUv`cWqrrTLXIMNWOPU;h zT^Lss!!j((;*nqU3gfj9>oc4Hu)j=hN_(=$DjdlwdC)D2jbb_TdE-Fuv%gH>sqRMVAB zr*16U5q-Nsu==Sjo@9WW46w)^HNitgjn8(Jr#hJ`vD?5dJ5nYK)R`_1V~s%{q)}Zc zPR1LD&Wnr(f)gLFx==cq5Q|r4XUuHDbX%b;x1+!GE}F;Mdru2-jCAMqR66 z;W-kN0$ABAWfJs>bFEW0XuVvuvtG7O%(75aQZ*@Y^lSuzjmIBFAACk<2&`4~UxNgj zYCD#wrsI*)KfH!X#0>X`CPnqD!ta!4l z5f~WVHtsZXIIPA}g>XQ*YPjOm6;H<5*}`oxj}%bk^hlZfC)hW5bwF{<>@nuEc==blTWkH7bU*UDunFG**4;-~$+ zr@Pgy;Bp9l9X;?n_rF$_bNGUgKwO`%z2yf@yB*&kwsDGGKN*r<<_JeA#2=6dYDBv3 zsJA^B^*V#e%`>yJ-7{Tj_K5ATNRY|K2x-$hc99|;9*A~af!V4u{Y0 zZQ>OS+N3hB0n|`7SuHcx`o&H=L0BfHQ+Jh_;u+%+gLqxxak2rx#uE}FFo@x)ux6(7 z&kNoU&ZLVuPT{3MVImI}4s_q|kK!r_rg4b{kxBUl&o1SK0i?Bnb}w%ar1z)F+l4^t zYdea&Yk8+rf64MrNZh-;?mX;M+zA}#1c{+OJmsa!68chnV*|mpPS25-0U4pULOx862a<;WH5l&NA-gg#p>X% z&#jy0`drt7frK&nxA271B_lFK1$ppNCCA{N0TX(Y@Yw4)WI-lTXGm&RYY|+Czla>Y zu@dufmuAs7a}+mQJgQzD{5m=xIHuVF+5(GcJRish86jhR;^4sc%#Pd zaPmVP$dWpS$jFlLv6(qs2;#yQPsWe`pdg39mG8rhGU4mjhfF>>M%XlGPnS6z4#)DeWMuUfC#njIqkXAbKh(ur#E z*Q%Lv8$DQQmouN&Qi;fajwDj3gWC;mJqB$$YF-T`g0hsK;k{mdCeH;}K9~rp`JN9j z&I<)C8Ww#4E)-1`W^;)|Znlt&hEf7AioD=p4s;2Bk_re<$Y#9Jl%mx)fR2mwTMI~> z?jb<{Cxxd#3Z2I`M_Z&voGJJV)n+Xu^YKD7%m;B!5j;Bl2>zF85_GebLg7*X&?Q0{ zpEsy^y|I$tiGybSOjO7hU@!oq+X>G(8rQR5MuhKgiuvr$d_M2?AGKPW<3^gJ z?e5CndGFlZG-U0G{R!D?je@sCO9L1@U0VUJa1+H^>sS>NYE@2=|8e;f!h3l|I{S?h z&;H&ckKEf1$oC>S@Lj(=>KzgNrw0Q%&f|Ux`=BWjxi}6KaxqJRcGuvFf>uQR+}U%v zbNKIU?(BPrA~aOw*S}s?fbZ@VuR!hBlV9oIkm^IR&wM6k_WRUU_u}uN0s17?yN=)y z;T%D22cQz_N*>RnCW&cSZ4zTKQI11k5XKKkp_f=68u&u3#Zv!txI+Q>_ZNel$TO^z z3YWd_$c8o5%ap?@iR1m;@1`GNRV|zq;77&_r$#1xM|u@5@XjRhrSVYSi#|~dXOxJ_ zdm~XvDMj9CMx;ny3uYB58WGi)k`5nEKceLDw@VUSk_~Ek{6W{l^6hD)z-7Lf7{22! z$)AtdKFmYZBUm>w)t8VEfgR@v*VOa|;ETa7Ch`n>>&JSdZ@0}}8_#dCXP-sA9~}K1 zp0Xp~>$NxW|90Euhx+#@jYl7Xt=6!^p&LzT%FD1QRmc&3S|YVXUEh~#^o_di3-qlF zhpOGGwV4mCW#zdQ^P#Fn2!6r4C|BP$tq%be>k3H zIZ;9igFo>hMGGlaSjX_Jz*Uuyrlff>8BN4-ZTWp-D4+&JIT#4>f)J1cA<-XC-~~HJ z_GWIN&%0OvJv(p!i_Ic(vqTPUMVu<-s5jbn=pdo_5w`{K6YRD}n+|v0B=%Jmk6#-% zYln#K9ooFBg+gz?dSm0&Jvg+-0Hk}`EzqWQF+PlXV?0v39eoZxfM=cx8Qa=`dr~Ki zkGx88Y?><^Y@k3};3)+=5WU-qN!d|R8g*ppD*x#%azhLG-XhCdF#6Bw>gd;>@*ixCAnt@n` zgkf9UR?8H$phbJL>tKoP=3x?;og+iOGTQB9}VNqZhPVfh#iSG6`@-U1bhU2;3 zqMDmAl9go8ACtquZ2>?Agz*{-{0PQ4aT6{CV|Z?`*0ZWMb~;8ly%SIUk!DfB)z{rk*szPtX;G$u^RT^b&)uJQ$s#+m&?~F1 z2WDXxHGnXhgHmC6ExcY5@T(8@T03z|{%Al8iG>i(&uwGNB^)wym}H=b`|bn|U=WYf z1SiKKKi7$sfHJqW$Sg^@+=lwHj{nZo@W0#M1;?}RcAXEC@T>mljvwf`H6D2=&WnJ{ zUZ(4hsujK1vW!ntkm+PCFVHng!@^u1uR!8+b8-Co;0e8_pK!ye-=p8J-!lOIB!_7! zORbSN$Q|+cRWMxJ{UDOWmFF=GHJsB;Jr|~GKHbM2+W~;@n|S`iN=_>_TVQJpVZ{kT zI@_b}U|W>_xQ7<{Mt6H4i7M>>b55*znpi29VDE`&F{N=t>Je0Q&K%OQhJ8}SRe+Uc zt*oGb?+pj82g2St*{Awsn5FRdCOFJP1Uma8EK$kF@?@wBmCmtV=Ed&fEq9X9s(_uuob$ zo=U@AsHxxTs0HI6MBEJu!$N^RgRj!J-^XPb!gC@e+Q!u{N*{#p{1JAZe3AlQZ`hAQ zi-kYmzIgGH!+C&@+u$=cQLy3on|r+p$uAif$NJGVGS2|sgoB$2LqA23uzG|thO4GJ zh;!dq2br2NfcLFskto9p4QS6I8`!3~)$6_J0k=0iig(?xoZv~=qY4PG>KbPa? ztK$ZG!|1*FB@pKmWBCL~mjd^ghS@RWuQuc4nNztC2TR9T(D`=?ZkAcVU4lQZOtXQ0 zHMcbSf3ajG*FpJ6QYin^%fHp0nV-RfuHRVs0rTCgCEFLLvgJVKA7Av4OFl&cBzV`n zDOf(pWs3g^Tok(Xu1!BNfd2I0+Uo$21fKcbkfx&#qs<7jaZe0Xd!<`HLCTfD_q`gmd zSb6F1Q!8#AhQxgB=p|6+gXx5KNr|26GdohMLfgff!DMQ`aQ!+ml&RY4II%nKKDcY% zfQy~zh0}Q)ZG*QJejq#Z+J;7moVhmT>>k?z_95c3M1gcH#)3n7MNKJ*a6~GE{3xA2 z_%P}bcy@nO@BkhZuS&CH0_0ytuH-?HEX&bRric}yyL_cv`(E!1iBZcTMIW~95@-s&if*< z@^U4Elx%sq9F6+sbwz2DD5s$$-oO*!bEULzxst65ANr6`&sLUw>C&(dfb**`V~C1p z>=*DjUd=T~L>yR**Qs}0i!c;4gO*kfYLw;KtT%H=Av7dq{mRnGmO zt?JBy-*WjXG(0Pld7?6@GZbM@(3OUhDR8-=s|Te;G9};H*w_T&Z?yCFMv|wEdpAfH zn{Aq@r6c!j5ZTG-6Ets6K(6LCHs){!&8yCO=qkZxjNs9S#Y$8Fxfsd@?euVwdits^zzK%8aQemZ+*9Y=8f&wR>_Ce*IMn`kpsx-^E)N+un;E#Tb4YV z>rY>ukbI(XZ@PZRL*{*tHx42qKA)=JQD2(PuTEy;uU>PX`OqEp^u7P_)dzoyW+p$o zgfC6ys~$H7zd}4m3D&C1f=#iwa5v+|n*!EJ)m6hi(_?{9NDYVE zfp8eVjsBi?LP7Ug8WAk1yq9c@hiX`P_Uh1Ei|XeQDN;nna$I$;*0@DZAwS`l9%R#Z6sZh`!}PB|A= zD2X{T@x9=63i-!3E#OmgZr#*kF%7rJG`S^AA+Jmd-{r#K@)3=j&eaQ^V|ch}TEVT9 zvKwbRMtV2Sxvo%O!bYss1Pf*ek92xVCCG^U7;#iX-L?^vM=zX_V@CTLJ;FD?x4Efw zIvsU$^Y6pq%k<9|_9;diTpZ*xZPbIKK|YWE%hJP3)urX-cjEUofApPE{|P_-BPU+3 zdmfng9PyllRWoS?Hev=~mKLv10B(#K z-pYjHtuu4NV2qQq1G}YJy#7SgmGSR3;aq+hf9$ z&v+G6@rvG*w??Vooc0fVVb;1_1C;s5r1(&$;G#jnyO+%OSx-N-$0e4why|$`M?-RP5;Cqx* zrGvFU#Tl!v50;-L3}KR_Dkz0US_2lZk8FnX@|0WavosE98q;<<;=2H`75 z?>_Jc2R>$9zPb5Ld+q%qiF;x#pOZyE0IA}9PxBEu)`8f5KLXPoYLB*{rVvB}jlM~3 z1OKqc_gKd^WvG652J#!}QWO>Nx8w`*(`C9ko!UpvVoi*CH|^O9cCy+y7J+@5L!Ise z-bLTOy8HgIt6f}iTQ+PDtZ6RS6dq#_xNKdDebTf~T6-4bg`ENld**()TkhYs556Yr zv}2wks^H-S7RGpS23YQd&Z^9)9-gW#G={h)$2X8hX*pp-v8gxU!tESxLpzA zWdgkcta!xnCq}lss>BayJoEkK#Z}W>ef9^MhS|JGj-&rdzoH&x!;4MRX#NQKYV;xc z3;F8Z77)6fci;yE#tFg>7!!)RMtK4IKaMg#zVX(MfsE~UJ!J3iQJsgx#GtY+C?z_3 zX{u1PsF#WqYLaULhA(>mfv2uSl98YNSm=KvmDnP#1Cg(O<;oRgwr~AvGWtoycmBLs zvm)?@k>u@_)2Az^Er0z1iA5t`Lo^o6F|{gXywU@!SRYOw(=?I~^(X2@edc#;lW3JBW7kxu6jBDpfqh$xllny$RAm*@P!fS%Or@1D4F$2dUjxttT+ zgu9VG;fvu?x-|S7o~K-HVfzgQcKLP|NZGSXSrDUbSN01u`((TwKd+K!4zHz7;8ttz z?K^A%nmblYCu~AQ@5Zxi5OFKip_EXrl0o86K%-T|k5bk4-IH1S2krKGIjo(l%l*uZ zKRt_%3khv$GZ$&oOb_6$P$)z-Uv9E8-ddYyYx9@GOS$mU-H8NeRA!HaSyDqDJH~22 z`csvxO(*Q=)rO|%t2G@kaj~ADQd%Uf+_H)rx5A#GWskP|T|F+OL%N}dlweQ^=}IAe z_+LH~!@B)y)wNUP+3fzRUbrnC3Wr1SRx2J3MUFfk!-`sM#a=&Ae%=6X8wKh`X>GY{ ztP?O(qfuXkAK{B*_rvTH`=QFpX$jD2%KZ%B~+9%pgD!s0=&l0aR8gW7)hP35&n z4HD`TK5FFYm$Q(XwbuMc^c5#97Z>ehS}S?bJL=?kpOfHg?62?uGIef731 z6QEOb%;o%&awe#pcgUHba^4}W>Sl6w+w(+f|K4B#`4|EdcdgF9KAKD(T?!pI5c{*IUni zuF0Hx(>?mROiep-tadKRqR7+Vx$<-bed^?UI6>f^eHM7Nlk zj4E%6Uq1C;uDt0!mRlk! zD06YFK?W7e=3eBa^P?Di2n2)pSPO>f^=C?83=oo428UwS3?& zqCQddMgQVJx!NlfI)%b^Fda&8!b;c~!>;0d;2$cD?>YKuOIvZ88WMYHX=C1Up? z?&3nDB{T?N1@7)4qyx6Zm3$(mCL^Y)#uEATTrxSA&L`5R($J1ATz(UE>8tLx{Ar$gtP$_1ay0VQ+Zx;?M+6o)zJTC zG`e;vRZ8{g*L^r04Xoc_fFO6^L!W^3B%_^nTZyDn5#>5T#h~Y=5lt9IB1-1Z7YH{z zK|4aO%@44B2$LVn=s6(xI#Ncxf^&jA&yjzH!bR)dGuZ~KgsIZKIF7BOI%5T%<{1(S zs#`Jr)4Ke7<8sJot;UnV0L!q9no3o3)kfSjaThgr_=NvUe6?kS!vxSEvjV>29z&C(0)nU~Hr|^;L8xkm*js*is zHpY;Xd{v6zlXO-I5O?3ig(QRDgMs)1QY4m&-B+!?qFTMtHUe@imWVQy<$^yLjV2@P zY8ypUv6##+ELWIl0-ps8=c=EweoMh)^pG}eJuhentHeHj2Y79_maN9RL>qGp_NtaF zANgUmPpPw zdoaYK>H_uO8GZL+AaL<2A38Ye%SBREXRqh$=)G9GItnY$at)6&ume>`biEV8?|Pkq zg*6L9Ia`DAT-92DRzM<}iE}Ls@90*B;m`u(WfSq}{6ajI^s;CP`Mj&AqsG0jTh-S~ zOeowo&#v6Ricq^Xn~fLRhvH#LnJqPgvCzh1SwY^Xy*?z?7vj~{7(Y7%*AKO^l=GXL?W_3TsNZhGP}Kt+zUR2qZIk_+o*j2j{H}W*&5~-2 zb`pMo6dQbaFSM2)L9rqCSdU}ukq+s3i>reKqdvM-2oqHxS z>tyoAMBeBc?s=q=@&*aZrn{hhR|%2gE}T;?a&Lg%>AI~uzNzPQBkP{$?R$_*6zYxz zxulHcY);h$phj8cVx78p#HkC*o;p>3x>Fa=Id!hO>wJ?u`v7_Bu7RSn)v+>ngk}>4dk43%Q`&b^KnS+G`xlk<3`y?^ThogarHx*T?fnd1s zBe%_>2N-W9ABpmUZWPD)r`Y{v!U0ET+hPvDMaYmyd_^Kum4KlMJuMWJ?MwxE`J!T6 z&s47CSyGBgMn#Efm5dTgpk5_&9Xux$aP(A^Ol5*2!1Di^lto7);(QUIf#^-D)shw8 zq|8jk!18e7*DINRzvmXK5Rs!BlBnXGb*NL5$Gtv)(XS3MQ&kw?%NDktwVbze-~i>s zRo3kW-xj4UQ8udS>*=Z?N2O|dJ6*k=e1e8?E3$~%vUvSEaVRC8t)pw?oDeL5w}9Qg zDNc_MkAynW<*lBCTcvy)MtUX@ep?7s3d)P`QBAR3N%bt6EU1>EKx;@Wmi7* z>a#(M4M@R)i~O^uv4ATrUA25VhJ=?$qg=Jsu|Rg6v3ZGN%Qks!ne2!+-NAoDN4kD; zmXH)dE^yHRae!uU+m(sYAkew+LA1pmc`!Q5BmdRmo4L!CE2^1WKJU6 z^Y)s7`cvWlEKp|CfI^a9)cWD*hkWN^7UqN`2~rYbeSk z>W|wj%`}@crP6G(Is2RG#aIj6t6H(eba|~*T1(J9vUStEjh=ZdJN+M!dW;h*@)CG_ zxO3~w6AfqF!r3GAQskM!^MrlqT?&M2ej@v$?@~wOhp5}}yrL)&qaME&S7%OW3ND#q zd8cUZl6-r@qZ&`eGbagi`7vcRJ9~2G2K6Ef&82b>h?z^ykM|@8WPFE~xk0?9=z;^x zn~qEJN}Yk-A&vN$;Q>zAy&%GXMy*r|g(lSmpRg40NF;}hTqHsrow772x18-!lP~Bo z^sHmvez;gXeEa51EqB*lx!Mf4RhoyBC-jBe>-F0g^i!I(M!sSBcT#^9f~6D#mm1uC z-1SUBsT)lPoEX@~z^(+>Szf1o!?!K5p?jWz}K_{9VoPLXTZ1Xny|V|USK#w z9uO-jT8R1eW zCmL&!ob(gMxs>ln@uv^@rPri$C@E{{A1y~Jk*AG^j7;K8;^RxPV(2|{_mzW@Q`z&O zfIpq~2SP&Yhia@EWBGFpKSJWlIl&uKz162ze|tUTm-u&74@g0rGd16h2}&p^9jML~ z=a@6GP$l~E@&ogg{4LQ#OB{D56spDJoy-XXh=IcL zdNp4z zzV50@y(li@OU|5;D=8WOv**nh&)91ELbM^$?mxloXzguJJggpJ`Byy2rWN)e9UcIm6sO4YI z?;_u{asb%H_Ds1;4g_ly#JMoqyJw@jwPkK^TN$yQ&HE?v@kxubMR4-r!{Z?2!_vN- zI?%03LA&Ins0et1(Jk$(YppB{0}UqgW4`FYiwFP}jMwm#@%Qgs2Lu)l6oU_8jL$6}((QI})Xf3(R1Pi@|bis9(2v_U_$qf5@ecPWV_r}Cq;ge?EX&6={Wq0lVzh!AA6V0^5);I zRF*&g9wlmnN;{4#fl+IXpiP|jIEc}Jmfg~tHs6Nhc2(UkuBoAwwH*;>$O9m+X;n4M z?$E6MB50ekj5>@YeApLY@**$u;=l*TuY6ejl1#PHpP^2%s9Q@7(p5#BL*2fqrfS!y z^7%5}=i~3a%=`U9Dkb>+{N?lQHvP%cPU-mn0(v7^&wCnaRBn|EFTC(V_Zqr9x-uNM zrLW=oPI-=b?(tlLv6~p735PbQeQJYXPf+eIybu+rzcSe~*XT9$3bL_-HG*}d;q@V~ zMUsskJn$3T6OGam3Y49jgo%CU&{8E8Nhc)C_T431_C-|hGRxF`@PAx}e zNeV|2+R6`PvaN?&r<#lDL}lr&hi7Z^`BpKj#w9NoRpK)%r9&nC_>ANav1R?Xr7DvQ zMb!Aw0wae*6O=13YlG zTXToP#6{4<^CxnnPgS@0UPl(+WS|e_4oTuQQSzS1o!i>lYW2R}xlNSDbN3J(#nLnn z;pAvdxF^!oQG5IPiyoS|D0ezCQt%K*(v-y8I@cjNSFDFdydIV(5V4LRN_#-4hH;M? z8^-IlrtG7K0Vpi_ZEgVb=SU7(`MGzr;tZ zGgh&?aH>xlw9`&*;D`>$m z)~Ls}zH63_3AQSTipDRj9>S=K)yW$)Bp$!|ozW1m8I933qf5e}EMJyyqo2oZ3jAoO zLlo>q5=POMMm0Y{2Rl1Bn5+_zR1N+4=R@IK^_8<1au;$!HG6063w)Gc5>9_PK0lWa zqGR_TGxHJI7yPpMh1&UC#fL9DKl{o`E*$)VAT05b^zVguxloHAd*B$8i_Fi*zih?Y zUPG@TUfdZxmY;!fyt=xgw_t-w(6QDaXsdv(jN7>Y-{El`GFzqw6By))SA!13#?a(+ zGW6kdh;Kv-;47gj=x{Qbi^k*8g=AGe9J)Q1Ef%vmEuB7@l)`Bf_vKAd>h~p4Jtze5 zg{b07Yxtswoa z91Qz&(R#|yRZ_|Fx(3(H=;=|lK;!Q5HM1*$cG70 z+rSh9V~5h#L})Pl*Fz*Z{_E4rc4tWsQdZ3<269H0>pgq5C3dpvaf(N{xiYCWZfZcxxHD++xy z6lJ5Jl;ZJ{QZPvG#)qy5Zeyao&jkL|T@qgnnA%GawU!5cmugvxZWHKoN<#;)Q_Ixp z_V`^(f9ZYc_Wv$t=f6E0lGm2Y=I9SUeJqvKvTrLd>$z9(3wdkT!c2YXy_t49qelI= z*JpTK$A`t3me-E4c-}+dhV)tuYk1Ja@&4yhC@{sS~^e^;0d686BMf7 zSq&`!slY;TiuiRe0@ZTi@C z@`!l9f%*gSb6G&UAoj_#tHy1G8`KV1JN#7c>;s&yFqcP4b}19K;V^!)d0QU6jn>%c z##6cOgI+nbr4|b6BT#+Rr~L&BJBZqJ($JWk_ zsKZ^YH=mn-lko+79Q}S9_1f*x3uKACm3)74u@ZaH6RRvH%gbBK2s|_|w%h0N+lTPb z@mw+zNuqYFvXI)^N-b1k#&V_Ct1MgV0MD3DtVme6rWqFT3SY1z=SbKbScE577ENSq z88*}61kWNtQ!&P5ix#J&;}2uUJ-dTNrU@OV-Cz_Kr{k2<%Oy8M?s!cJzAZV3v5M^| zhv0UtkGV5)!zq#C@}Zxix^YqRnm5K?^QbqOFRL#>JyWjU89d8)s@1R7mx`^xU#A1uzqOnJnMlkK@KfN%cJ+2J{to zkuUA{EXLy!BQY5m;T~=X&Bz3yJ zRfpDkx~j)4*W*41Wyz72HCdKD>((jJ-fetbw!MS;Cb=AmpMK1>P0a3AmxQ4e7(=IO zk_MW4cBw~q`_1gEMTZP_M;%hC?;RCLnZMo7CqQs(C-NTKyY6TS+WXWTElc~R>P;ke z$+7IcY7JbPcB{0_m#nkYE_Jp?jS<@O9Tm1YU0)(jQ+MZi-`WCG?EaOtd6RV&r9NU* z?!+*%TerQ@>DZ&khj-Rok2-3BA?YRRul$l@=8lRS50^WubAlnBb=jxO;77ho+4dPC z$0givd~}s{zrk_0zT6;AcYC!;3jDCMSrVq+M6{KqlTNAYnow|)SO~k{c3Bv@&;4^nIs#wt8b$Ire|Vp zf}nc31~;r8wxbGdifUIKTC?y}Irgqar!@Ob!*;>;j-{Q@G5u86!0o@)0O*dLw9T5; zb%7n*>`d1qCCHv+tEJWGuEX>$eb*x5-mU9`sGXgcigMMTpR8fsdEdY5k`nCKd9A|i z*L&S{$65RyB-(WMYU}iN)Y!n>t+w24jw77J%8ovTCr4#^;djj(Om!O1L_dYJ%61<2 ztDgN;l)=sFClPD)?popgf3&>`oFms+FRG(bZ7OZ0QdMbRTdHnV?`lc2cX>A3Gvl!{ zwq%d(B!d&jPPemhJxREjLm9%=|kn#Cr!5|tefp*#!8VHN@HbGo~Dm@gPdKOsWMMV-Cej7bU*MGnblP% zbyPy+KD(cSo;KizH-_6DdF*)eBafX?c75H?k@?>=yV6X|?w`Z9q>|e|!Cg+HQKn#p z*&Z&m-DY;c10^&?dZhW2Tv*a;9l4O~}(NR?ZW;&PWN{nVeO+RF0Qyj7efMo7Jvi zgu1Ks7{^!Aad(uGcSLfek?(Hh5AI570iuu-V));@We(@$~KMwlVKsk2at zCgyqu3dt#V2~00`YqTWXZ9FtsVbatc?6VooJQPR*#p2|a9#q-O?P-mDPzNEh`lD?f zYf;pJVp4OL6J|0Hn%3gmmsvG9xzYPZ(psII$C=H(pVM2k{C=iqH2%RHsM{WSl=Gl( zv2~yUCKWp@d+8DyPH!GtMwxckC#Q+aDc2mS6OGfw$LQv%G{#4Fhq!Wr=0VsR?bA#h zu5S~aoafmK{z1-XuK9-wVWv%VP!~K!x>anfmB||3BwfVpb|((!u5#u9dquI`_>56a zWUMst6K9tpJg+>Eb(ZFK3mpU}HFFXiTc_H#1>4tSn$AWBqw&Q;*9P;MrMCsi3Ql#~ zn1%;}$;(E2t%#GDp}+Ml#qK=J*5OEMGZzzfre-ctUFFD;h)>WV@j7pc(hI#EbB%U=kg77m`-LW-S)8Qz0>S}UP z^%q0?!==?4tVV88W@OFPtT}D1WE(`3;kD|N1&})#YkE1_Ypw}-nqH*SmU*sHoss(F zvhCY8b!ubaOOyCE?FML)<5(+fG`6?#Yj0K`274NAhXf+Un9vx_egb1Hk~|#0W{!V- zJ7+&1o71%^cW!32P&;G$x7m*cg1BwVpiVY+PV32*)oHi)XWLB#VvPaC@3wn0erU(C zX7p!xX2m7*jEUpcJ(^_V`i#<=w9ms6r2i?iYm1OnPqYkAnqkM+`ea9}IWohNr;g9D zlT5Ue_jzoYXU(#c(ipc0&zNZi8_x{%@C+FNk9baaPLfy~l{k9?vUa7U8hV{@M(e~^ zysks^O&!a}3;_BwhyVepG2LOVkbxv)XKp>Lb9rrbwX`0Jb2)AG?<~uzI)xgER5mM` zw!K}2FxI{NdMT;uQc%m~SO0T#8Jkjo;Hm!wQ@Hy&)(y*hS5|7rSY;^5D@Pg9J> zd%Hi&1U};=+TPuTQpah$T^1j`uE$)7-59n3L3+!#nO?mQ5jibg0t{(QPn(1i+3A1t zm8S0km7J3PYhCD)Q-%0L7ucj@Gxj51q-KoyU+Qf zFFJz#>B;QLcxwL8q5BS9p|GvCc(^}U*W-#yyxxDu_lEI}hvw4>8?JRy|3Esa3FS8X zhc&T(;P3EE=$X<(26h{Vd#>!6$v#)cWyKSW%BdW5zwmDT$t7(H6J7Ps--W-`$I~@$ zBV7u2P5?5erv8`O#)eM*w2f&p{EqJ2qZ1rgc0?9p9lw<{tOMgPO_H0QgM(|=rpaKt zgW!<~*E_)v3J}hfP0uMj$KCJw7SH3Jw-66J@F(7=K-2_ZFHJPD7>#wkMv!lHx3?a# zOOY*YwYGu?d|wk_ymZ$@lR*Y_Jg#Vz2*0t{W6bHfQYoj;8Lcy+SS(aJLrZkqTSm^ZWP%Nwz@xPzPx6&UySSsQhL$P9Mzkl=I#%oG??$X1Ta(d}C2!CJ1 z-`l5qR5e>HW;7vE5PKfd!x`&VB&eE?HHtiSrbkocw&G?WX$eweujV};=hSsx4Gu!cuyq-LX$NHn`-E~m5E^s;FR zKx{1(3Ug{Aq0JSZ_rBfl{V{>@vfugd8R2{U=;77HXBJl#r8xKKTv1Va{~)9a?LtaG z!H}LhnbJeS?_)JKm|b|&d?3in`S+_zao)uP0y3YzO?jzLiKg4A%l#LgW_eEK_}S8{ zbA|t8nl;g95ij0q)wB>2y|mS7K8A&Qq_7&SQHY@_AANDz9D-(F4-mKTtP zNAcmvk-@|0xfwQW8L6@ zSVb*R4qw6u2kX`tK=zpkOW!oq(jJXduu)FFiV)-ddx%SCGxwNhW9XO|U@mYm>Bkkk z*l4LV@*zQga~JY4c#a8(8y~M$gQAan&M%#-_Hn2G7y2@K50>lLdrXM%kC8WGM8I!?JY0DlF9)~> zix+~j78F^@eB_5xc(t}weuN7|IrNmCkQd&R{WyGhjEA4W8zCaR4!^;_5Al!j!6^4& z;d~$(%u6fy*Kb>>R33q3NHgxY0jyg#?T8@qzg90A6@p?*!G38Bs*G1N^+KJr@h{0z zcrhYHLjH)Bs%Vi=Kum~1Mcve*At4wI#|l-n+v^x9E#m(#$AF#d*hXSOO;qJ@PJ693 z7uB@roVIc{Sw>c`UDXomLSlUHIZdJ`3S(@q1%@;Pxh9vXD$^Y>w8A9zRn*X) zT-HuIi>m>JYj3xjkdfBAeiKxw(*yfRhoqYrPnDMoGUdep))cp@ven8q-=CeZjepbA z&NiRV+A*aNvt_^@Z<+4t4D)GIhUDQGEuzXJD9Si92nP1w!9Z3)0ia7!un4)&6Bmy%CSkz;#*|8@BL{8KI+5#lL< z4~E8Dxs6Xp5uM5V!B=%cx}gr}Wa||9%#D_NnJ>&2_+u1a;OQ!=R&8LuQ|o8fhbu;j z#}!Jg)uLevb}(3%P=#nNotnzHbo&z0rT8u6f>p*XB)WlD8!kR;759SjG%3Q=ggw9) z98Vom+_nkG#uDD%YPa`osxepIIg;j5fBjUxy&|BCD7U}ucnKhNYsB0-Rse3>?x#pS zfKMiH3Ui~(&wZ*OrjGmNWpOp0mM-@@=ZiGm;x^8>CW;w%sx-ykez(=n_owVSU$|vz zJT7ybNC73NOGWh-g$s=nEW3I2@Zssw{p^Jcn{0$T@vRkmPv<6CgMe+H;4PX6S}xQd*@pr7 zu%-jpq-a0Amf5RbOIE6#Y9)ECx|dl?Z)esr$g^KgA$5CaCspp@W}8{_cqZ{VCkW4+ zty!zoO%Yb2c7Bx-rJX}otF^P!>9jh#cx3Fz3C+@4DjrC;&3&v)x4Ydc(GT9?oNYOY|uuf!Vqwtios}?(k? zmL!|}^|EQ7{qxxeRzcX*e0=a0y&r#FJ{iYad2g4#?Ol(J^sn_-sxwhoxtVQu8|cHP zw_3H`YIz126m2r%!2V5*-~4y}Zuv4k?#a$m^j1F_hL z1L1HWC#$ObAMmF@ew61BY%zys^&MlK0I*P*3`!ZGPnOF~ZkApNWgQ8_Slok2BDyErYA*LY$Sz3BnNWSdfaUyNbHnnJ@?v-*ZnNvk<5#wZZs?Pe%l}<2Ll1l&hZMB?>i~bu9{N^c_b12 z)#hrvpv9e5hvJf87s^eKSBsLocj%Av{j3h@MJXGVg4&NEBY;A}yLP2`+7SoXyu8D_ z4gw#3Y**KG@(-V4!K3Gn1{v2C7#W@><3|<$=!3w@L%-ENURYQtJWp>Umu6Y_$4L2+ zqO%83(A@wb-(6_mu?*RMD;+&IaDgl@4VTn2OHeW&gQ4?%_|4MN*ce_R9KA#1r$cr+ zTr30hzmY+d_M2^Yk*v~IGB%RZ%O4&T#(U_G?SAtoq~8Fd+fl+74S-AQfUCN$5rbc; z&$g(>c!IPFywQfkKQh3eZW1jQFzSC`Q;6t7JTB<6@Y?j96&uI6g{499s29oWC3&6- z(V}Q>59rGp`M12dDQdD9PYALuT#P4OMdv(Lky17|@*_N7~-r@+Yt>9mtKX1d%zFQ}QfqD0$zwuzr&U|sK z{bY#u{^a&k0u#lwW|u)d9vD3%&duRg2!~!X`iMx#;;(&rf-N6}J&U<7p5$ zr!{gSI9&z-Yb54No#WT&8x=2GLx@mZI`+?7hOTB zz%fi9mhm!$G#`%!d4}b^yw8igz5fSEqE`%frD#aQqNR_deS(hzJj%=inSj8vKO7Z! zCaFoB7e%8nN$?>qEG7i6FBFMJlW{N02BWGZV;Q`DCQzz`wV)ald0)8@tEiC^AsLG; z2i_74CiA{P#xMI5_*;hYdcCovcd1!H$j2bY%N0Vh6!G&(!N)QoUSW$`X2}U%P$lDdb1gu`;bt z-1!-0+8>2)C6=ogFVo@HyoH4B68s7sVLv@2Ewyp}8S%3&K^z7i6!6%97nWhf;o%Ff zG+7P5#j8#H34e)~n7UF2*l~Q7;*jI3yZ1B9{XQQ#qIHgY9T)h`06ucBs|FSSA1Ub#&?BT@cVy86n_RECF!Q;L#+2MhPlhje#qy&%ZvX&MA&!V z^CI+;&4b*q5rrQHjdqk*!5A&;dIg|O374=&cvWovmy#1~Qe$mbY}KaxDAo5UHS$$@ zIzL_$2vv?oGOymy6G837QoQ$95Q<`YJ>=Abc#{@D5}B>vpghU+`1|7(v@DA9v5L9E zE?zzvGFSy;k72!l?Lp@cnF6HL<8_zK;vBYhP=2jfv-(}2%#|% zJ3%R}MiRPpDt+zkm5?{SSX)kc<4eu>$?OjdoSwk{NRSeD-jz=1V$4#nUj0Lj+-Pnr zWx^-3mgDop^yN}Lb42s*ONFN>Vv|*|So&<4RAGB(8xIGwV zZ9Fp7##p}kU3YOzA6VpHo1V0{yGf<569$o8ax|}A9Zp+u`5>92 zX)^^V6W&gF^z2IByy@B5?vnJ~e{LymdT@aNEc=%I8rVKN1Z(p&?k5n_4KCe=s&9?(&BZ;D|(v#cDbPZLJ>OgENddmjcBu1yMOt^>L zR;O;azgOA8+V}Wgc}zyhu*fPf$7x6jm_9C(o=>_>={o6rshdcxAx7k$J;iGUqR2| z)^;4$_+_v=l~h6;sDnZXdLYpzG_a?@-Z@r6i)3HDgmp{!E{AHcw9z#K9A1d->fn*0 zZg~Ajs+u~o9u5n<7F#PwyvPXwffISDuolyJp&o1UTx>nY@rM+V7xR^fQdJ_AyvTo| znAVlBgmpVk^oJucHGU(J@rJgyL*7h6Uo@7@<36kc;(r|DJ8mu;i);6t;35(3#J!1l zBnD)?u}J(QQJ;_JB+)Ml0?P-2b{lUK%tsOTwhWCJ#o2DEwPxQhPVR$`bayV5>vOfe zptuA0-8*6sqMi0mK6&cbTP@rGdLM_Q*y{UI?&0?5BaGVxkEd2L>PHcfAb{bwraE;7 zFPbKPY5Er zQ3b%vMq7C60-dlmi z1d!rFL(>n9Ker$X2wl7gs|^1;SRe9veaL(F zue}K?&*)8_etp2&m2w3F&zxRr@-+z+7^Q$b>#tjT<{zKAfevnbtoN&Xt=)ap>TM&d zcVl!P=nUaxdL>qL+(Xo($i^QIA+@#vJqflKAp(1*as8=yB#h?pT0-PQfeOoqBDuB7 zbYuIT6wm}wiUv3#5*8&NuZ6V4dny%2uf1X0W+!v^U*m57SHPdIP9`2<9@b-3s^v!?!Z{1Y<#J;FJbzBRuK! zb(Ts)iJc;;1Iq4{>YXu7)CP~T-hLzn(LH!hZo@2o(^EIL;=C+2~Alf%Au9p~XVu*a5duV9tr0>6RXN&|8MRGkpCh(ELV zr8qG^kRjFPaxvh-4LcuQnh%_jw{{N_Q9vIgS-|<};{1?r+rWP{oQ)nqdqk$WkF(-r zs8ii1AhhgI-&-LpAg`?V*^;__W@q=gYq-#@D)pn$X7sf#p1WyGa@A??*ZO`h+u6X?1(?pT zM_yAGU;p~^uYY|4AAjroi4&hJJpG=+C(Rx5uXph3S3kJEer|o;V{=^o8O}o-7^ZdD zaFQ(Et=?1YT4vKa+^P~1jDNKQC@jat=k(h3b?@XVi? zucQ|>Sx?9Fiavjae?I%>#Vp#v*Vpf=9nM5krQ+Jc#=U3eZ+hOJealjIC~p*Z;nWDK zjSB*{HUaIXIRz)71+`A#20&Nab_0VD&nUA^nlD}*n!`}BZYY}WFoHr~FEz<7<4@ z^p>5JNxGc_=G?YZas0^JcK^$hSY9_F3uR9!3>bYOA?HJ@uO;IiM;1gDW%qf9*|KSV zT242`UGd<6`tq2a&VXuiWUqbY6^>I7VK#GIGCR`;qn3lCy+_hdkY2VzVtps2s5eDg z*Lo9cYBcx*oSY1`J(TPbJeI!=g|Spe7kb}hwIG%&d~X8X*Z%i|^zl&s{k>f=SU!3R z1p*N)TS&dj;VN_FN#k0t5bnfj5@BtxMAwmc9yO3LkPAE#OImA4vZFA|y#7_M>Vj)M!dS$h#?J41JVQRM<}0hQ*|jyjt|s8v zjY7r1+&2#3ad4YBb~DjC_S<969ttWxn2p^rkUd7`I1(pG`f#ZaD>V`-jR&p{MOhgO zE(bJ~_GCzvp}av_>qDqgHG6qB6R5;Smg!7@ml;Qw!ea?O%*y;A?{UJZQzyXdw52#O z$1si#0Wb_e(5nRMW<-uo-iAJ>zzoP3DFtRIO^U-#p>62P4h38X62$2^?1SV%nCV5) zhom5Q@WGd-7shy;ybUxv3@Xr?1c}!H1lXBvc@QUWW6sV36~OY&tX%+{odqc{hLz~l z<7CvLz1CF3qRw=*q6t`uqgX{Vu>fq8qS<%=4n)z6+z#YWMv$6Z`JIKs2MuW&5+BKW z$DEDDr%Xm`x-C3D8?EWqh z!A{JK9(u!^34q?3jr}z!TZVW-H3m^oE`kX6jApB%BQzTDkB$(eh{>A~NUScd-i|#w zcazG29h2)6VY#gnUSwL~H7AC-Kai2rbPSstlcXG-SzKk;C43Uy+mU&4KZ)28 z*lvlGaRou0wAr>f+;7Hq*7k-w&g6blE)9^(oN_W|6K|-u*-=^}{bX-uKXKzc!mh*y zk*(x#i5e3ER>vUs&<-WF-g8O?pN`?FX;{R4G7EM3tBTG<3_f;D9;Ub}JoXpZI)4z|W*CfrVVB{$tIWrk4pFo6X6l z0~y$sR_m(#%NCB>$9A7E&6|9Cgi43(7 z!Nz6!tZ_D;PZcf|lZE)%`5MSGH!9`0fFCMleM&qL^JPm_kk2iz#~sh+vn_i7)q#p( zq!ZuzN*IAbeKGb~1%*V;xX<9Yb*}w4_x%m>#9mU+NpdNQubsx%M%QS|uXK%ei!g(0 z+cO-YyMuj!17z90^&~=%Fgg}k+(^r6#g2zLj=(ky`!)2{?IKf>l9fumY#{b|*0 z()Cs7s`uXYUQNSSG;MIH zb<=Z$l22Qf3Z@duYmL5a`+{c%yw*s~dLimsJ>fN$y#~kYjb@$a_*$dMYkIR{==fBx z7!c7w&}!7>yGyKa>FAM1mN|Cg{zt6!Y_n`ZY@{dMX+Y8T=RkD zBlq(rf9lC2YnL`yZXuuH%zM`ESSh~?|FW|D?=lN~mCO9QPNxm!&Ds8qJ6NBkaxQ>n z7G==5nB!75jmEN0Yy==8y&m^2NuBW+U zXA0x7GvM)OlY34Ip*hRNBa6#B4TE$hJQ?IO#vde`I~K4TLEsG?PyTnZ zUmGP+5)ID@K!EG>Ln`ZfgD^lgz)K$wATU3W9*d`F-(-;Q$_BP7)v#3JAqX`6rr0SBB#qQ?-8hO}2Ws4+f^_%T&XK;>E1()&Cf{LXfP!BW08cGh^V3v3P!V%66M8!tcW6?EOv@XUKABM zAo5ZeNm@P@4*LDUa4fGWS@KXu3i_l_Nb&_GhNPQ)4ULPX$4n^9t(KQ{g{f8)SRKTDRRfvVBh|bkFvY&Q`ZOz&{(vT$(0x z)3ugD_H(i1^JnHk@@HrY`~Am*=>9t{FM;Swm#vp^kKf%LNvk+DExKakArE7P6s=mY zv0+UuruSI@=V<#y4BAC~YHD>#+d5`yBHGxv0Iw@Am&Hif|8^-7u0VLoR7pOc2L{)C zL_9Ca5&wB9k`IQ%L07DTMMhMcL9;wl4)FXcgC-8P{V$f6=lqd~|0;fN1swK!&k;?$ z)9ZA$^MC`AC+UUpLC%9$biP{MG4}_$D5OpC{i?7k9oV>PHu6KsmIe#i#*2~J%HuuKCyy`0ISPtDxlIqOiE1maHiaYGH^kv~13j)d5NoSu(| zqWA-hfp9Izh16qs)C%DdjGkVkr{Rt6mlKf$n~22H=~y_;L~Pg+7i;*9nY=;;5)$Uzij}&^J~ba*zwF$2dG_c0leuCIzBQc{G%Pmn!=^F>N)N? zhfA)}v`1r2=SzBw$BF}P{W_lOd3JTJ4(+vpdxIWEm1Yf$0Xo+IctDiGi`ga~Gc;K3 zVnwk2i(wfn!qHIi(yua&L^0$~VV&1&^$skr7SZEUu#{*pZ@Hi!KdzmM%1K#gaPt)Z zv>}EAEThXwJlNbJvT3OOG*+A+2#4j1OTmcOFJ={9-~}ZsNW!@! zeZWaDda+=#D8L&XqO<8dX*7`mUbwaT&zFS2UQjW6UDHH+X0rD|;DUW9b)1Px`1+G6 zRNUR|;N{O8uLS?p{N#S8d+?d$!GC=ybwUa$!GC-*)qAn~*?mGyisL!f94sP__yjWC*u0r9pF1%gEb>A}q{xtL%QQc@3h#5L*n%;dfA zOua48i6jy}`P)j0sYf5JtunuhrA^=;TzDjQbTjo# zs`tf?s^cgAcn4=>cz=rGx8pj3fY3VAj~HpKQ39*KbrOrsLjxbCTS>y**cmv+^|iso|8%u++pkteL}4KrJUT zdn4N{R3^`)JeAcFWC?d*cM{FM#UE!2b#5u~{w=dTo~LquivcIg)<~V{B{aeX(CgkZ zQ)78*V$~fgY7@DW;QN(?b9U=2b#Et2qiwHTC%I^waT^Rt*SMU@SM&N&) z!z;5*WbjUUH#Yct=I_3H{vLj#|Bf}-quFLNdz3Z$?_K~o_Kw~wpU&k@MejX&>>|87 zE#G@|=~!SR9^VKYTe9B;k19mGe%?EH)D4r|dlX*PYt1@NUsv&vTGwqkKK0hOzVOz! ze%~_>KKRUo9Y_jw;KB=UH6Mg)@9O9Gf1p1=AF`SA4C3!fbLr%}pF@&o-g*AY+}wku z2l1bM&LxwZNz1|qdOibbzR`69oPWi21DroXvxPNUXN|>>ot6xq*C0M~({m5ed};;( zkG6+=oOi+jl@|n!*EPjTsj}p^%&U0C zznBC0ID&z-M`F|lQF>(G$K`n4fN7dKXF+6K(>4>sW)0D8qP=|@nP-_`)j%E7ja_DT zR84KEsA6`lYUrW)R(lJcy%JK? zM07WrP;YwD!KbJJdj7G@N52CxD*gs9`5p?Jaq5L0H$T*B?b9{D)?VLdvFo|da|JB& zc!fkgjW_y0r?>!k*!v>uIC-Owib~>AGl;Hr@m&-*;3$diYHT984h@yUyKDlqF95ut zJ(2TyP17GrncPFnmNir$u<5Y2s!l201VC33$~s*Pctn0)h|1alSWI zmL)}&6-h25ll5_&T2(bI6^X?nDNXC$2>BHgSF@rZRq#gxk+7urMSKs3TeHM+H$9xd ziyZzZ@&boE_%he~he}e(st~=bW|bu1p$#x#AHyGvl5MvRqyCB#_pGA9t2R$^W2@oM z2Q|shFbE0BfTG}>7W{^ByLTre1>`r7Ir;j8$AogzA2Ti0p?Mwn3mw0BwNNJ@J`C<6 z1em4T+pQjcEY)hE9rNzRy1Bb+))()_s(5Q?4i6Da*XUDpFr_Rb8|X|e7+~ERJoQ&% z6p%xYA$1ew22QZl>{H-@4uO17!73;xYE zHv(CTf4$u{X?XCn2b&LVB8%+xx(O0Y*u=#n&VCY1jgDW_&AuEk5;zE#Bcu#;kpnyM z1X+JvnrJ*8?d`&`jsK!?2*mBQ%~(1;pH4r$cj&%D$V$rBx1F6&)>Tyr9ZKa6)Dx+wqNZI zZsw+HS!yb>vqJ)wRQ!(|s(?qcr)hS-=@QP#!&u5?LYe?*=xQyCbb=|43mXq8_*#7h zYhNmEig@fV;p=J+ZK689t;CnmGvZp&Dz1quEB2e^pWaAu2|0&Qt{6(yQU8;i;8Gh{ z`^ERn&B4uub>Raa5Y`J;J|9W&@ZCl#RLtjP_~7+!r1*rKclI#$`g<6I?S=Z#CdT<| zSFc{XYF@Rj;y<7;+BrDb!OM87A6GHJ5hkHX)$I2>DubvY;fZ%dDD&S`-(A* zbu#JC7UTffQD)20*|u7i3)7gxy{!ydH)!-lpMbm7jXsqWEN9peAFX{R zmMEvxBKKVc(>x&qgfDuK^{I<0!=!vG&n`Y|GHg*xR+6#rGHse!)M}k#G*e~#Oqwa< zTl#xDe@O5~RJ;9suuyzvAodnl*4KEyKfo@Oe3Fkj%K4a5 zjT5}=e`Z_T-+e55?5(ExEIwuNAG@`Mct8J5UStaQh~5+v;42T;y{uN@s{NB9Z&z5pUHYOy) zuOJWm-^zQV;)T$8Kb{Z%?^l!`&g15{tCGCjeJgG|hB~WI#}%Gh^01l+054^=)L`LC zQ`334FoE9gHwLzb@4#Xtx;hIhg|BbsT`r;G|}FekQP0e_NQnu5GY1TKm8i|BlJUf zHZ0&?+VtGvIq$iMTmLd{;T5d=H?*9WK%aRHvQffiy?EN@0ZVNKfv-np6OlcvTC;(* z+bk^jmLXKle%I8EpDopdl24Jp7|k%kt7XMk5*p{{*9*Nbmbhs3P@}@F`^)obuX$yT z4Kl14=22K;W%L0yriBq4-pDFi*vsKVxylrRM=GC;W_*kIk#jL$Mt*VrNJ5Z|zgzmL zbiERYE@UKG7PGN0t1oIwGGTfH{)qPy_aRYW!+tpA`|my?$iw^)Iaic&9~zz=i^#wu zJHPEBiumUL2+DF04!%yOGdy#gmxDhC-{M2Q+HO}{1DovMqbqpi4v|$eSo)gAU>CIs zTt3ALMJuBwg+{$^&O|S7ozI)+_Q`--PDMhZdT%G4?)+FMEd;W2dYrXGe_LDU^3`+C z!Cj4VmyPRwbotIZFJHbhrbNY1Bm?*08^>i@7?Y_<1u>drCWkShFXD(e_kt9P8ce?7 zoo`4c-*7C+Qt5_-xdJjszIbDEvw_=LM5dBC`=omWw*cmjW28oS>Yc=6MQs@?m4n)V z6$NOu{In>rm+!u+t;?4Womf4z)6AWJyY1djXx=Cil<9ym4|K-P=6zx?6RxFAd7nS6(Nr0`#g4n@j*gS?GRDqYh{%6j!5f zb8%qN&~rJnY?X71i#dEUb3>nYsd+a_@t^i4-Qs*|!Hs9vTXf0T_fL0ld4Q9o#+RC^ zTQvjdTYRlVUx3+!U$rKA)$!Bd9)I93CVZ!wxd?k}8>!BT)Z+-jvJ{JfV&{Bo&Q2 zC-d|+)*H(ZZ=mS4349Q>*%Yn&P%w#fWwRpvE|JR`o1D=$7UY~C*Hk)5%cwh@iPbYC zR|TS`9JvN8kdx$Uj0naN$zob>caIT9L}N``wl$UtCwQ%W!c{RM+?sFCEuGKZ=Nue< znP@qlCNK^HN)>+TWEsrY`_cOKCV`f32aK_ zemf`@NUiWY{IhG&EVitj9fZf3&K^WEc>4Xw`F)Z6x>mq1fFxNb%wvEIfz{6eHQ5f8 z9xvND&hO_qaF7cHBYsKpM}pujh14o9txG&)oEK&Fger?X(bsJs;sL@Mj?uf7k=wb3BQ zO6>c-dSUCm=;~H>tM}{g11oGW%K5zLedpi1W%Gyp1Mx5L<8>g7>c^6jJu^IW(oRin ztWBe$lgod1Gbn;IS>#_ZyVf~7WXRY4UNreMZ2H0_ox?;oO!0UwAmm*vecr0+sDgStt|@yIV;*(O&5E6_-t+6xY3H~_*(w_Zl|-W5lwlpPy2gV zw{60D4%JT}x3dRe1sjcJM6iPK$OTISC(@|CwgHf#C%i5|KlCPlP>XmYdQi&7pZ6(q zSy7SI;P)!3>E*m(Rn2JL`NYx29Iq`e#*4+(LIH_2HY$06a>gq~*_to*rf8m*iv`vv zY-diVO|O=YX(5iCkMi2u(MI_v;8&|f2lLS3!AZMNiabh*Ok4HB7+BR5=*1RcnZW~I z+r?A!b;{FsKx+|Mls~64#8GpDL>ldr1~y=OE!N}# z)fNEH0q_pz5f~B)k0S0=LpgfaO6*uw&9F%H$1?sEJbg(KR$UsspsuJ#M~tKYvZ7Xx zs+oWsVnlyh^{+@NiH%5{dUUCO5s8DVD%?NR-W1%kE>5W_m}I79u!+B$p1<)5dkTv` zp36taay=oFP-9QovXAFg%&1ed>T&S;DE3_5j-jrp-~~jODJo!JyMu#rt$IUtU{Sa|@$aX(N8 z&y%ij90qRXfZ2+eocqsGNI)qbFggTQw!kG4TtTJwZ7~>)CZo|{X}zkcS|XyYe~f&a zD#w*-NIhiVMLsI=a>}N01HBj=W64$9_jWIuh~mGe*Gu!8`FN_3S;&;udtV?wBZ>Od z5WN$b12Ix%`{%s_(6*g<<>$$~atPwp2XR<7LVwZTxaL5C0*=^VNK zbj%;ZYBN@yL;l#)(U>HASF%BGBpO71f6VV?Bw6+zLUJUmmTmR|k0)T){kMA}#NOTX z9Pym+oW!%hJ)YO#`hO#^L%4n5RA+y*G`2~qXOUqmLOf95I&WcH0Tuvto<({gn{7%=`WP(~|I)f~0x9TXp=e@q?%EKQsQGvKPH3 zl8{9)lE@|T3D41g`n<%SK++q3O$Y^eJ`j$C@hKSQUlalX;h4mKnwO3Xk|g|K!0Y>9 zqj4YpD->R!Z{|{=wHM~m!XHaYDw|Lwe99%F(&Yyuc!qg)bKnaPIJ16=(^u9D;73Pb zU&zX+$rqRc`j*4JFC6x_S^!zoZdo@yEwsDW?cTueVGU!owr+Z+J#Q1y=h2l`Q|~|T z3;0oZ;n8aEOnDv|hp_J2wNY^GXc?q~6IB@L;r=_mJh(>IW^_%2JR6~vY6opdXOCu$t_A)EuLVAgd*eIt^T|jGIL=}4`!V<;^=F~D&G5fz z`)xI-!w+5;0+cVXs^j&i(EtXLQZbBRD-XiuDWWs@$k*_wO87=_$E02}5Z_JyH*4r8 zcyAsttT!Nq6_FDqF(ic|fk-TtN#qlY5fO>u;>yLd>+`WNi~Jl4M?*{?B>1%Vd;L*C z2@8VH>+{A!(MT*B@cSemLOzkj2cN!ZD!EX^$9NIWQbbLLG=4=8c$Nor^)w=8jkPX_;Ij2*sYcL>k=i`r)k40?3DiU%tjHl0@BKzmDWJ^Jb%cJR`lHX>(fi0F`Ljo} z!n}3%NKTl~qaWnsY610LQjrv^*T47U8=v$)KG*v>^w0UKKX>@_rYYr)oXI)s_Rr$- zDiD+*>YV1)Xm2tRKK zZRUgNPh|Qy&?fGY1FtL-n6<)=+Ck}c*X+ob2H~=Y{ev|;du~)H=JaYZepez{qO10s zp3=Iet(WTFa$qh{IY~Z2Z?)t^GJ*eOz$smyvr6muj)1XVvgUB&LEAs|SzM-m;%Aq% zBSNX3bPiTw3h|vC1}%UKco1Q2mnJxaHwEx&sWsT8qHY!Bd+?Zt)d21{@Z0+Zi9)8} zKNJvpJK#Is>zHWG=PSe_kt?;=hQqM}!z7sA3%GT}+Od6npN8-5z?qszOjU~u64;)= zzN9jRSUCJz_@!E4MEp|=-_cf)=EbR*#C|LEeY06&sdg|yR=`IDkBJqCl`(<}ZZ=nh_iZlmixZak9y^x#17@sY z#F8u${7Os;FO`NeIoo1N>E{|>OSy90w|T<)nIPnpA#|)>+o(5Y&MjcvFRVA3M7jDk zUp1Y#u(BXbp7z@4%JM08@7lE%Udi#XY&agU=M!Gw>3q^PtH+nD0iSo*#=8r_o^oju zm6#f8k}U;vb@7c$KelIKMXkNNyT7+*_HH166||h+?v4Leq53?MmgsNyTHWsOPi>st zmk6&Bc!(_%Z;`$)m>Z*o>F;lshSAB9Lp_d6yqW|cD0{a&onFhx#B=`{C)6*|`y7mk zc*wf}j#BkX*S_({S_ZYK=f3FQh|MW_a1YTh#QYx%IH;f5QCaz4&4 zM3O#Um9CeL7JcZ-R#J*=qPx@ad;m&7wZ9~iQNC8ffAe=NNNk3GQL)FAPu#z-9fNHjhEw(n}8^bHwSTv6i0?gAc&{kJwe zk4R5@u>xP?3Mxb-s|Bt`{27NYe2G>jrm8XQ6R)L_knuYgiUTo7z7Bw~xfPax|kCrkaH57aqL4evv2O5_qFt=b0s!8G)Yk-Po@c&yS^$V#= zxbu5g&wT31RV^lK9qyf-WeHhLUSr7Cz>bZz^wji*h|( zsia$(D_1goABty*SAT;b5}2rAHy`k7wYh8xq_r~xKY9ue>@2L%u1^m)r1i7wQX{PU zDlBzgV1J)N6kTdnO@iFp`tuNORi*Xy5^i0g562m}$iz{Y4qdx#Yl}n)4AyuKhN(_C z1Pb+nfrm?79k~0$aKRfYb(}B(Qm^HPwCHq@3V?m!!63u1_{5p#+%XtQf`)tor?&lwvW9%(*1NRp9CIZ77xN!8Q*8`ek%RL2{-CaPR*zFROBb&dAYCIJ1(wL0#| zhHb9E->NoflWo?>p*5H`>6kk0CcS?TK$jfI2^j`;F|LfB$(Qp{E)Wp}e=w>>Wl8Y@ zDNl&!!tg;4>4}4bSdgDj;J1n-N5goyPvBd;F~5v|5cK15JirOj?Bc{bvbx0CHyoaW z=5;R~-UGe`4)<<$fy3S0w*r@!`6w3+a6T4n9R7fhM^(i6#DGsQ@l?imKP9k|pW$%F z6MPcF?|h8UhabX;e4x$a?|dx&4!?o#1Rui(Wtd4keShpdJ63SPbC{qnjztR^H3#(u zcBNGr`fh>ZumH+JO)Zk?4uaN(J`cwaK5?zIZYJbwa^kw#+gtx{(U6c5@B(ns33-O1 z39qfsQHqS49u1;fFMbJle84mFR2p2;0lO) zc+A=p14uwzJCz@V#WYdEhz@@8z}VlCn)V;q6Zz&mf))*}Nd;fER?8 zrQ5HtTp9&Q?5^flyI42KSMz~bwTjMP!S7Z4KY%>I6crG+^Z9KtVCCWMmGkGX;1488 za`-c>km6MPsWx(pWKl1kul4W0nyLV#S$ zdOnxGnt$#&e8@d-p`F%?uWCM>Yrg7L&D_(?SG{QK9bY5%Wx%0YaaknXU{ES=V?iPE z;p~eaM`a`e$${K2Uz(>rOdBc}rjo(Cq@} z^*k;$DD&qF($kImNV(s4XjsM^VZNLpBkz=&{mfB86EcHHiJ4g5DPOUlZ<$qGz6<-qk?w1G{+L<}1=`uq*5E?KVSb#fxhV5Q+`tIl-1R8LQ1EUPvXD zvh2xrE4v;n3)xD6PlToB%PKl3{ssC;^u>zm5C(^EnCM{516SS2bOIRKgnY0_-wTnc!#o%skxK$wME6e(<$X@jpzv9rOWn zvglLlQ*V}*y(PyBT+_=e*0>GSG_W2Fx*>tGgop&N=e*+jyfIdvy+58@pA-9lJ8f{c zZq`;16%}H@^ko$G;spX0w#2`(KCpAEKG6HJ-3JCdWs*HE(?N=i$apxxHB820T)+75 z#gQ>@;a2U^a6fUZQNGZ&=)h-9YmgR68CUy@L+gi#;}KZq^*ZcjBSXy+b|Y|g2zgUEW3=1!0Sx9>V^%cCY;n>S%ip7nx*Mbp4*^O|a?^`^T2|A`0#e;imt zq$x5vFeR!b1_~T3;KVnQSOzvK46zarTEV?&V)+=*0v=mV9LEX~UOjZWCbAMTAH28L zscKraQ@c0F%ZVNdQ5oTFsE+bB^wSumtCxsDXOz8NE99^qohxY10RZI~Lh*sB9x83{ zet^94^Bbi@s;UJQWr)8aVaIKi2oS0RG?vAw>O4VdQ>H`RY#;OmIFHlMPer`h9uvd_ zdW&0dTiEfW3}xm7_(|Z}84W50MGG`qaP7Kos)Ha>72@=-Uk9uVm!fByzgw+(+;RE} ze*Qc}MId5H81pwHb~oOg@qq_w_q5S5PP;Ml9yA^{9_%_%JcQ{F{9e#@wK`Z$Miae# z;GI-6j;B(lOJi_6?9H1*r+?NHz;y#y$j1qu^&s^jJZn6p;kLq)K3c%n8%=}s6~*xl z$88vSHZIp{m!E{g#=`0O`O}x+@cf)%%;~vODcAcP9Ci47mF&u(j(s~m^t$%__>eEX z=E>KT^xUO~FXhNVCl^rufH;E?`{e}r@Ay~ez{NuNN^;Su(tsk+@?UXIY=#WmcK=VL zjT|CAZ!iuv^#*u;R$%C@0Qn@IR@Nc5m~<8Z0|a4Vmf@F)E`xJfhE1_r9qpHL&1@p- zTUg-3iEJW~HZyU{%X^9G+G|Cb`FSp!%pS^>mM^~g;&Sg-&SuZ1+nt3wwPrS%Ojon< zWHuRP@Xte*7pz55j2|N~5_(%rvm^ zK%Ci{5Ee*%F2Kf}L)5u~<4ZhetisJ3&YgrXc^U4E4Q^Wl6QgFV)|_|;`#xit7=_(; z;;Pox6=JRclO=AO6}x=!_a(Le1caAMUQUuiJ}=KnEFTghQPIbHeO|A9MU$|={<|ZR zmSlLw2kgoM)q5$NI@9?srfW#qIlpkAMu*z#; zDYz2MHZNbf+|1&4Qh2RwEtp_Bkkzmtasj{Wmm@hXDEh)O%lLRv;{Ep3bU_Y#89ovz z94WB@&d&z~-p8Y=ZC<5jhK;&M#bKaAhk=pWpLrs$|XkP z=9Ee#b=VwKHV_|Eh@g52kGcb*9C+rM{rlnO5<(;jyXJ0P`)UBEEsHGTq(F%E@=Ov? zb)yXH6QDL(MogGfDo=1Kw@VF_nugjM01Z9HGG5*%Mk8W~XC)3d3;YYt8xR?A&XF|x z;*m@t65&aK;)3PjYlM`qBT609QT~`+~v8)b3d*-+nv0! zVNi#2SR3Jfu#Dik?T=n06-c7Mp^Lz9(qIAUo&`YKaturkVDaY48xRum(JrhqOs^^I`v=i!JRIsZnu*88dR=l?|r%8PPP z(9fMMX4~0fN>83h>Z$*iwRZuN+^X+H>qsT3R3%lFq>@yxR=poBb$4}lb#?Vj&qHI+ zjAuME9>(J;KgPh=*amkS4482eAfyZ?JWRfXgl?W;S&~5L4spnad<0n1uw;{59sxGp zux!F5B*e*d687!_xqHc1bI<=AsjB*A47)R3FO}+?zoesc{?Fg9Vcu%eZ`$4#@~u)V zS2CGOxu|^xo?aJ@==R%T+sh+idl>(PoIqI7Zw|Z|5D^HAjPB!6)xfI`zI40=ue&9! z?4#LlpMvy}T&$_g>}r4Y%KmNP^6&l5tcE z%Zwm|!Z|g9-|!(Fe-TtR@i=}G*;tKUr-g_i=ek%5A5+}u4>RM^>)M8QJpnk}K zF8-g;Mu7L@kD6Y>79V7Jm;w!RP_inxevt4}s%d-jx;BANtbg6PUv64|g7 zW_RuW#&Z?U{z+s58$!Z%+%&D$WB1}4w}!Hnc8ZNUYsQZ5zcZBUmJw-z`RGPqRDzSf zU;|NyGW`kq0JcLD*s@#zdAnGBIII&|gga;|^&Ni)T|&n){%=v1+V@ zBSn9H_&k{(ns|nMA=X){V0q5hAYFp4XEY3t1p=_!HY9zJjPzp!`V6+iOfX01(0L1T zwuLA|W(U8WDs2c)5jFHslx6uDhG~R?44(S&LV*`(E?kVr{IVEk1g<7<*)S{XqABZq zMmFTD5-TQ?VH8V5#Vi^NNpbF;NRSB%afVfbkVq;zHVHS1r`Nm z>E^SC7tfv4)dm~K4TNvKyx2-a`M7*h3%G6&{zPXvnG;cmbU&=epzrT%zLsdoBa4V&w z;I!wxa+QhHU6@fC9Krxl$E^crcD~@RM(Xh&{O}8RWMDw$Jp3|SUtCr ziZWuW!#$m)v+y9g%eB4oS42X3b6A_bl0!MiIW{rT|NIeN75+dFjzG;Tf6BVYLTm8F zG3TX6dH&;qg1^CEr~}OQbNC+31jYl$h-Q!=xs^5W;Z}AuY#sfeOR+TnUTRKywakHz6zJ82T-SFc(6#Q z6_gslWYz$#p-GEju~~(ua-dzeY0%~n+Q_>7^>K9Ban_Fg+NQmJOar6V>Dcxf!EOMO z%SZb+WnI)6|A@V&9qaV}$@z?S%&)Dx(Z|=~_1JPf3>A+RP-sbc5Cr;Y?7MB0$QD{M z#DM?P03->a)@s)F%&6#>B|$f)FK1$NMU-?7Di`N27^Y>~-)GjlMCPGYoE`TAGjXk=!9C87-++rZ{=u#OZM>Gk)m4({iZ;`zNCG zd5G1~!=nn~Rp2Q;Fuxlp6!Euhl21}QhBkNScVD&7<=QI?)5jL>R%VTBdosMY$I|%g z`b~4n$u7OFv`%4oU9$sk9;vX$YAP&vH6e$fe}6&DA&RCAR^dvo*O;=V9<}YqtSL+B zZBq|Q0dM;b-f+scH|j@&n#@e-}g8#Px zJsjU8wU*g~y8h*5d%Mxt&bTPt|KYDcuO5GJBC(X1cyQRpAL4WAwNVksoKpj2YvL?w zqmR4&AENNc58aVg2W>oq&U$=Y1nq)=Q$fK#1ZB}me;su?)|=mK-3So85xZ-> zgHQGdj;ca1)!=fGq#&BRKWk_@S)7ZI5V?p%TV)#7-m;(%BqxpSQIt+t+M!%I4^Q1b*uy=OssGwQ2^|c z7qX3DEc|>~Md7;@zWlbcFv8A8Y9{2sn6+Unmg3MrB|~#>eW*awZFUZI-6RFrBp+mV z)$Z3?dOjvuQamPSqH#B$zY5H1?#}4&2i$yFiYt-RlBz@==;igi(;JCXo+lg^glV=$ z#xVrf1cI~MByM8w8NdWM-*?y?reC#^mU-38CAGyDl**Hf1Ii01d)&cyv0c_nZYfdG z-jo2(*b;xJpKrLvdZk=Y7^rsd7Y&$HxsUBbJPl^&o4? z!BjcbxT&E=(^aSEWM_^{7&&A1^sEq!go8Xuc0lLwI+}}QDj_ba3es!|?0nc#MH2vh$z`aWLna^aeM>y2tQww zhIYD>6baw30r5io{W&2eGBU zMqfftc`FhiAbH(V{0ZG`6Scx5GMNCQ=7FpbVF)-ax<OsbI$+hNk_sd_FZ5k4`&{`qa%qGpP$kIG6b2q-wEv;uIUNp_d8?{V#uu z%c>_D|Gw9F8r>0(OW~4|6z=CZUG0RUjM(?Cji1j8Yn()F=>oQ;0h_0U0-G+f-5Y@} zIMO%P*E^f*qdCCvo6N{>{D>t?v@M#+?lsZh?ocZ29z4;uh@YKgJ371C%+ZJ`wuk*e zqI=1F1EP3nx4-2gols!gL%1;9awNY48f=Jv1#Ktr+T}~^Cwmc8a*|TyiFG(M2%UxQ@<#e_yT8ylI*a>p5r3uvDU7Uy_czA%XDL;%l;~O!XOBckPkuoJFqu_ zWaU9|4O-s9>p#K+KRfdudev5C3-_6>u6FIs4!wHY`34wa|{ z4)Ll*h*)tRD`K16jet$OgbnImc4iE^zJX6s6{?+W2=Ze4czetb1!p$4djxOtr#nVM z#!ME(1C9~TADw48$WF)UIs+Utz(Tc%XBkg{Z8Bxy^@i9I1KoKHzp{e~2f6FpqJ$JK z_AP}~5S|y6wDg@VSzHt4ZP#_9p+zp(QIt-QdySG#sctCRzwSb9gl}8_2_8%T4r?|E z!uzRvm~arxueA{vMYRfz@Pq3^Db$c-uh}bVO1IFbtk-~nL~9=fXSV-k2isbNdODz6 z{ZrO!oXrk}F~Vl7J>=K?G{Mu#;A^=+kSjgbbVv?r0k&(CzN>I%@uBFTu1fOI%Vz`gUj5~1Qh|AU zpi63P#y|t5)B%Iqs6p(cNlhS*+LcF{<`_ev;q(^CkZ6uli}(+;9+o6clDhvEO(de0 zB=*8m6Tj`>a9v<%?%;=EEV=%_>(^074*!?1#6}s+8H)EOucy^8!L)Dnpvke>m z@IvO||MoI40pJaW4MBCf4t)c?f-nOH+PvvAku)fz3Sfy;u}N#fVL^s+gP)nYxTT~R z=4q?Zc=5uSlSjs^ujulJ6ZN0fzk2K8g|woC(~*YN)F$gJ-!R&BSwG{<@L+9w^@bs$ zYtgfMB5*2jF7Uj-9f2!>tAPgtOM#bp7%+q+lR}&55O4F4@~Me4MY%OfEv%0vVAR5G z2%v_wIS61;6yaICZa7S9zDXdc^%4YR@k(2(n&b)pf^XvoddeUb?eAE;DHdf}U0WP; z#}+l62}WZ#O$8Z-(b!;A*Rj5_>MoJjZo0s^hMTS$?z)C|2!<3+JY)xDCupZmD#2xF zZ!(8m!_=$EBgIZiDf5Nj~OS2GN56#u)2W#{qB3V*mQ;w$}R zBPK++x0l1p`7FZ;S^ac5?A^2f4PUR{4}|d@glB)Q7DctT(MD}3)C2cAP;=vTrUiMp zJe;F8d`6$XCv!X(o+$MK zQx2PYrr$+tn=`k?P&RfO@NI?!v3aZG+}ad{kdo?e*&k>*PHX6s0iWAEu@P&YKN7Mk zc!5&K)(nDTU9Fik9TLWKNjQ#XO@dx5G-;yUJb*|;eQ|63^fYTVGWj|A*!klvAy=BN zvyi0}oe)z|#ZuU@d|fD{GofrDt1{E>sm1#bk^LrboBkE}aQ>J)mml-?&xSH-_mSgd zhq=4(b{08^txw~fmqz3G*`ruop z?3zwrMtCS-t{CB4_NN{HvpC z;@9r(b-TUuHyz95{k$;MTbsZ?GpuwVRSqL2RLNf)DaJJ()gBQgs2v@eaklI(+xP)* zSMfj8CC{|rrwf>!T}sqS613ncKx_VY`)PMpT$}@~2OHrd)fB!7R`T#i;nDK;0WGLj z@Yn5~vO|_0o@Ri2+#xH7|8CP=bJyu&-XjMAZ;`*w5VCUekFGtdc%|J|Q^0@axOm0a z)s%;k>c?h4|D`J@(PvEGB~lyxpwR+J9YUhXAQ@NIAK4!O}p^9$BQJ`%}KSYK!+qSt%9F06M$+Y`>U zLz!XFK;MGX<URf z+-zDw?h2$MT;YONbEwOLo@Ws3E82UtR2Wqna9_eO)p)NIuxwFDUL`C2wK*(C6HC;? zQ=yXXRD*o5iyzeuf?N5Rya}?nDJ+)aE&(ghnl;Aq_kvgN-XJ$-4Qy!Q*M6G#xo8gR zo@%TLO=zkfV=N}hK!!|=si7$p#h;HcRn()P*d=Nj_P-Ylid=}#9y@<#CXzXJp_EC+ zqv3ljbWePCe$wCya4*(Y)P*m0&GGE0#-)+*4^Q6E4~5&XuV1eZ47^~Oq=O%tqgq) zt6p9*`7PX!HSf_bwATmwk9InY4VxsI-ln-mfU(NQP!k*OCE{Aa8gH8f`Qd64u3b|w zo5ZEtg0qjmds0vnWi1k7(W7qX+@Wl&laAv{{cnwUx)aMzEM5gNl~6=0>ndKA*7KSv zw1rq$j;t*AVwsJ2+FspA$2T&u-ttOB4#$LfA*r8P^=nICg5K>_WCN#dgCVuo?J8Vr zs0YD912~87u{5=a`?^)5zH@AmWRJ-LpXcN9m>LZWK~=N37lx8jcp{R98nqq+qO~Y& z%by;T3rtG0(k#QqQsTSGzPb*-d-oCQa);9|46w|mv7E=SPJRjN zjxPegIzB@+aF^>IARdJc-cdzPK!)4YNiI5wo%V#wOC|@<3so~N_fai_#}sTZY2`avibVmS>>Mg^X^RQjmnsjjYaZO zOlw?r7&aKns{-49Pd>~t4l6tri{xbd6>`O}60!2(cvxhWs2Nw|D`vLmFGV?%GeUvNqsyqo>5nnWn6qBZ&oI{aEf$(VIB zqa>CoNLU8|MaOeF zY$n)+a&|0%4YCk=^5jWQKw?;w1aXe%YrME7sfxTN@-->1l&8x<*_y+5Jl+FwzAZwr zZU|>_n-V~`OPr3+AqlRGR^lH;8((c%FL{a8`YHh9XJ5H@6c}ieo!E#y#CJqW_Q54=*|28NY>C2 zLHa%vxCv{<7a<3TWJ&|v6@?%o7)AIZ5IQOXRn!<*5QH(>5B3gd4F}$EDAYx-?(qD* zyeiz$5fuLUJP&LE&*v4PbBCY^_X@&aP*{;Gx7~IjL9tkhbW4$bI&tB`Z5ww8DsF`Q zcE7e(DA0&~;kFAuN0DC~k3Wrm`cwP`y>ETo&JaO~r}&Rh2L(DahxLx4fHh{rWSe-^ zD}jRvIcsb4U+6C*+tm%dzx8!Kb>58yC-F=N7=g=JF_~n9FT3R|3OrzDR#!*+iD1p$ zz&Z-ygQNio%3km+{VfBHg6lrMf1fMxosGH&_xr^?{f_ch9o+9+4oIh_$n#70@BF3y z_xKqt?Y`RE->Dzsj*UNOjE*%jDrGyr&~JyBO;Ke zC(ts99*_mLN;3$&Dg!@fWqz=g$78CiXDWDvN}`Tua9xz}P_1N^m)%MR9LgeoB4AJJ zvS>qLnVqQw0wZ>Hi1_cPpnhr?gK9y!NeODWTG(90DzMqy!GqJrlcgch7(YQPvKSP| z*6R!P`YT4fzQHAbJ~~;$v&gb<*DF@-oApC={P*v&)bD#J3yxoRn-clq$;VASTQFp1jp0zUVp7R`-mVqF+d+SuwqPeo#JEzZOvxd|<5Bs3$cO)PUI140;h z9TKq7sid}2N;EF_d*5b+dty5L;Gv0JvYZ|>&9QVjnVX2|S$s6XiBn3d3qQbm{rxur zAtT`9xAf3kJPbfuM_n6ze*gXVTfLq&^86O^{Qi+=&#wP-eB53;nm`&DdH(Y~ze2@5 zO$SDNg@d*#ZMvcjpHX{HV=p+UtsDPJ_`m(OYDA!sXLSFbU;gXf101nimj~Pldzskq zTH7v;I1Gs2hd^JHng?tj1(>RAmc#f!j4g1%K$G{1^U8nab3Q z{(b(P=wA{S$o$B_w7kLU_7Z0H6+T>$0WeBC$KykEl=|1_8(4RFCqAP&VsT6{e67k0 ztiW3cD`^^5If14RqUS*K2bC@J?b&9l2zwEjHO;i}L{&u}i&PSguu_UKL4K?`$p?QS zoO_aqsbNM#F(r(ikk~jQiVQ0%DHZV2bKzeI@{=hxhF-~7oW$@!vHur(dNMKwQpeQ( zXT)$YCf*SWGcob43FAyC&is!cAB@HsMve8ijdYfmcJhu)llj%3blL(0&LM$}_?ze3 zBtw>9I~&9_CY3q(|GmfdRc<#K$it;Mgr@=9E5kHyPnbGoOixOvWI*ob^# zSTDOlT|cdu*ee)nE|E$la;j12O`GL%SXCoN9M4v1)qG%BiaQt^PY?vc!+@xXR|azg z^2f`KAL8~8itvejU!~)nKD9xTX+IDb6`-x}q>=vd9*vv7)LjC#`&L`eur zq37$Y0<$Nid6!y+wn9lQYCM4~A-mPu1|HfZ%!)d6g*?eeST3(51pnH;C>RTivETzJ z&;yFM*+l+`HXf~MJTFI4UC@)MTzvtuOUVUR;+&xS7nok&CAa@={7YR6CDUpw6k>y6 zOHr-Enz~R&c~4gW{7!~=ya^TvYBo^Q9EC?3WC(h!Z~{=lL3xq>_~R?m~~hF7#QB1yluz1&~h^5g+w(^Z#9KI%^f z91t^5BnW~2R1Yk3;N>i|0rI(I?jn6AHfLw@^&hprj+pVD@%ZEK2Eu29WwY$`8z!EF zXbLO>^-0He#wU9DYn`BhzYYg8!Ri|(pY-ZgzD|6!1{r4#<$5*&$+fBDZU^p;S`*&} z6|ZQd)}A-NCdYg-Z0?;tGw6iR8W|C72E<7 zIxD`(dHsa9?tKsU3zaQ_Htqlx?NR2?<47p93$LF9wQ_qy>mTuv~-_!=@r7f((}sh2TXU_Il7Vtc!|ng;30} zjH36*Pwc;WN30ZB8_68nCg-Vb4tWBJ&v@ImuR{j#raP=x+U|AM*Ed!MNgAWJRgd7? z#|N3O0?mgaL@6|ZmQ*0q++^2TUblzid=>vv$15$iB>d2KyJimFSNykFi$Tkd+i{(h zPDjU!g^oJQhHICz#&U0Isn=WU(AYM9Ngk#5`#+$k(0lQnemSrl=mmZak37KIn3*O_ zCl>N(mIOYB)ldRBO@=|$LtHj%^Hspr;H#}FAx1HEk0S+s79}VUU^dKnd?)jyc-A9S znIH0?%p2ZDJnzCrsF3ydo0~UY9%4~4+nPLjo)20|i8DBsMNx)h*zD0vPH{?3B_53g zxyu|9BRtFSq8L>pTo5rrI1~v+Wg*70L7vSpDDUz@SdOY#AwrBemeExi4?8XrVS}Ma zOwr9yP*KxHPD4BwX5vZR#tIgr<%f1)o?V*W%LloqH;CJgt!pT2qMb~i437-!2`Y?38}7#Wn>8?g}{ad zE*cKWe2||CVv8(0 zKTB%^N$zHi!rW0Z=;Nq4TfgB?+x>b_Y8S~=JyvW>!IuJ( zce`B9iX?N-b*l}6Y163obk~mMYsB8E9@e|oow>W_+((XgZERtUpR9Wy*YQ^!Zxi0HlEIrD zciF{T?E1<6N8sb}M_l{`-7?ID1?*2QP{F#>3}I_6C9u9&GYQtJNhF$wSG_q01Pu74 zZMIR9>}Aelv4k3V*|gbWWaVhK(5&au$BOoC`BvI;%tS6{YezHv_kP9Et>Wt<(pdI* z&Y3!adQzmAVUKEdE|)MJE8WW9W*3j8ta`J62RC|f%E`6A&f4K)mhKGn-v5Dq8|yG} zd=6_6kEtA_<7%Fw2dg1g_Mj#VPw)bs+=Wsb-<)Vat+%U4MY(Nm*nTM;^o&$@4KKKEyZIgSyC_JjU)MCHBw#MDpjFItqK+w z4_K5ul*}1Gcxyn45nx1OyB%D2CAi#Z`zAg+WldEYcB6t{v;0lFH+-Zt>l7DD>j&;I z*swHPDlHc2yh?azA@g~WoWHSs@a{~nO08Oh_)%#zS(w&AgPMUpZsfrO1Zts}Gi1$G zlfbHs^)Y9KMw673X0GRruq<|9r;aFxjl4lk#;qFx$4?@Lh2!5xM(2IN9)swBQc%#2 z^roR0W>YY0LL2M#Xak~H(B%rvSx%{&?p&hPO3b+DWQn2;@MuMc7(pJZ_^Oy0t2|{cd=|Zgq>1ZgQ&p)-b zg*w-Jz3Z+$$j$1KngKs{b_YI})dm0v!Rkcd8QUIdkO%+7?TwT@hb?IRdDqOKp$Cm> z3(u12e4$~_PY~4NkktP;O>r*J`LYm(*-$FdjrY-w^Ymq-uAYgAV&o?NXdUwF8BUO5 z21Gx!NGMc+T~yh9mKUAA4D}B1ohAv#G8xQtH2_ECpi)oJecyhGIL$gr>h+(m{u@az&PYi*`;KA?&PcX$U z;GkSp^GZEOUACZc(E7TbR z;{ypti;X@)9 zk|X%x2^7P71%~HI^-VzvFC#ZQQg3ZJa2o>@(hEiwI3^wHVmmw z{aC5qHVm##dV0e)nTuk9M8GE5Mc`3EyIefAXCK~oCO(%yv5-)`SQW5b-G91t{YQI7 zbU^!@hHm0(m&S?kC$}&C^Go(0#Oy$y5lO{s0Qu5U5@1uV31}co!a^ zbllV~eeBXdUov4d1_$lX<4YcNbkN=;h!+$2+Qk~Q-1+BA+aF%rS7>|4KMZXPq|P`; zP_G3tng>QZi!ULR^R@8`r#Cmdm%3wZZQ)O-+!fyO#`6cX%i7=LFRjB`yGIUTJgD`b zCU?YJGGE8v4mqnS_k4Pvb22)FcbuDdc>{Lz{M_k}&fuV3dXDl3o}-cW_c>S3&`$O_ zU%x%L5&UELrGt)P$FSdV4Bs3xzt*-`!@Xjiu|jEb+W74};6Y-| z>*@Y4W*(k--OZp>)yuNjDCfT4f2$~!ik1{^h(Wv=J=Ook>`Nx6CGi~ID=0S9vG2zv z@z6`BEG5wp<#Jt=23Q?W5CmsHmo5@6&nY~!fVu0lF_1~uldA$cYZU}DnrPiF2_e2Q zb=GKb5GM+q3&}Inm+yE{NS6Db$TOi-6gT6fi~2R0ZzRu7G=dUWtKx4%FS_IM^bGmI zx6ORo>HixWO@+L5;2+RC$QKYR3MRxsnH6k;-|8lO^AMlhpT%!F0sFRSzF?V5Hwez~mP9gU62 z86^~rB#SH~F+n6N>2QS43Q47>@i%_}!Aj_YxjLDi(m$Z6F~a4D^*aJkaQE~~ha zmIm!U1sqh~y zw_+au>krn~DcsVHz<7RfJa~A4A76Z%z3JGFXFDwuy*fg0cLCQ4Yml0-f6fbA1a=hN zY?AcZ66ly6-PM=;$6HwzTk3At1ya;-2X5e4Om}1Y>0>dh)yIrm;MKvOk;Mdg(Q$Y_ z$a!%4FvKo;gcC}t*|wgi^4I@1rWc5AciI90OK@rzzQeAc$#N78M~7>YsS zXY3;Wkc{aucbMPvgqPh@B^b{K9-}aNj4aIMt%DD;<)U)Ta7Pa9Xbf8u*G|N3e61nDY8Se;^R9Po z?uOLrpkhb^SfN_`K(y@j&CPect8*YkHpobPzP}yjP;BbYe;2D`dexAENW7O} z7%?2v5~XN_Ve*K_`dUoO>cL>>SC~k&sH^d?$gs>6rtqJQxF$qRNk!vkG^>RZW;&{H zp;CIxJofpJs0jG7YjNX|u~bRq;<2=u2q&_#89Y8X|AGIG&s+=-2|#WefDqOMNS{S( z{VPY0T1SsqNATZK-9C8)fAThrp7UQNZOnPC2tzo-Hh}&SR2w|M!cX37-oHXL0uoSzJA1~H^u05qka``j5eHeD~{&Jc*RyGcu zizh^x$Ldc!qs2-|XC@a3bNVp%q)X(>f%QTpB>J%cE*2A&cB-HP$n8r6U3fB~`7J-$ z`I&`k^Awh2CBltQuBl+^XpjayzYJU6`^=Vr8Le41hLftnApj^aC~uF%mRg0MIfOL3u2LQ5s46wsNX=1jH`i=PPc*trdBpH1}S>JH`3yW?7Zx|27uyWuo zl56+Opw0$xcL>e_DexUY@sp|}d@K2g3V`Zv_sZ=GHiXJ^3k^e1#0z1`k=98be0MEd zE@#)&*1{C|-jx4b3cGGt8t4~v{z#J80s%l14({u*o2~oqx4u(pRq-ucYO(k;R?{ROk=(?i3PhTcs2zr*jpvBykefs)5>C1TzeX+#52Qiao>ENC= z*Ve9ATa~0Cl)MvoK7_m3v=8iI^xQ>!M2gbDr}ZpnaD^!H`*ugPfBRWFWeH~CchPTQ zO(;Rub6&vuAPwY|a!fmiYNZO`1~ttRai_wB1l$2_6cppxlzien6ZwgE=A+gv7bp6E zlud@`CzRCq%X2R~8Ou&iq{be~qLZ2ISbYNiy)$2a-YsAIL^e4w(Vl!1?^DbE%uNqv zeH&zz#It0QzX(SSE(l`Xm{=Rz=yg_BRvKwL{rUbDvbTG^m6f|2z24>!XXnq*V|Wdb zAa_Wpk!qG&Td(~rdY;u;>Zb1a(RuXB{>Q94PA>QEFyDP1e!>TaIbSllvV=21Bb6Lu zsA&oXEX06=lwOUwD(ivvlnN!C0*ZH5SCy3ABfiBhMJsbxS8XU?#oPO9_bq>ExrSutw)eOrjsDLV_7A(uq z{QQBxCRqCtmZl6A45EOFwAh@TqX>)UaY*o+LOyE_z6+0|9Kv@Z3e4X(UY<_xN;m z{JugO8%K5Jf__O*vIVRN6l%#MxrMr~W6vYEkZV@z^-42W=xs(Tf<9a`Z>|2lLVTpQuWjT_e) zM0h?%YrS?<8SKb*E zd953o91hExM}FQJl`lk)0)Ty;RHA8nWoeg&NLWxRpcICMR6_v7R&#wnq3pG_es^ss z`q!|Kft^yVQAT#hf$TwNRD1#jzU_e4)ZycO2PqK{ zM`+AXnY?o#Y z1K`t^97p&21&osS5iBLjUxjB?zeBtdSE%O?D5Qogm;`eWt@q!YxlJM6%2uZT54!U% z{dKctA`S}ly4@1`+01Q57Iz)BGS_gI`U(~R1W|4Teq?y|t=~V*yPMl10h+@rG}g(9 zl47!OFOWNAAdN{1jCM)$+uX0c3tTCV{?f~E8+vjzxLsnQa9I2`pzpqnw3PZ<`$N8j z4c8dW)%35+%yYOho~*5cM_sEQbd5l~jT?cKil>!>F4YF!Rrix}=$iD0XvM?C)xCPw z!Hh>DtU4ic_RLrZ!E)ZFU_tn_H5gJ$BCvoz)~@AH32Bn5;v+r`_^nHhJ#`vI7&aP; z#m*tbHnl7lY6xLbDAn;D8j>aUb{9GI;&x^i(yafEPknO|7n^)DC2v z;j@DX*|O_GAg@bGRME|9%8NJAwqoE@)`m@JN=a#J!`3&vrhavEX_+>T)(0*1myprF z-ayK*8@M+@oIm$x*|P^2;(<}TM2+Zk`*DL6!TIddu{Q;P-mw_GTA_8< z={fFz7VOjIY%ZpHgy}Wco#3nUhisJ#Eus$YUh$Klv4Xp;=R|CEB{kR0I;vEeAFE7{ z`mV@Vwp`j4OW~ zcrS@)5hmLT0ILc^v=h7(3^K03LMxes0821iq_o3CAMgKVH*>Z?dj7_Pnf`x>5>(~M z`0StMUvrF4B|{PM=meJYzvWYCqLaS$zBQ;<(jUycmFk|$Gc#AO9+$*O$_yTRdoL{I z$$WPM+Xqiz4G(hDC;Uotzg(FZNpKM%yQx}(>OTBtiW$5^rfz~S8k?1nWkPD0S0KZr ze>2Uba!k8z&E4H}jz6+`>$!8+u00Ml2Cm!Ra_B(sZ}^E>R@*kZUba@!9v`>sfb&L% z7Cgp1pfw1HB4=FG8FMc7gj5;pzXHb?0~b??*kTjCkC- z^KbgUMDC+euEPY0nT--nKy5!v>uqzl_w~fq)-T^;jlaU$!)mzh*yM|yoRMRJ0?{`{ zTi?Mm2kROIncv;jh!^(VTU)n`Tetl3-d=k{PwcYuTC&dwR%8hGUjls8K_*zuXWxY) zQ%I(QGAI++;pXv5Pcq$`I)I!YT_7)|dGO5Qkh(5CpfBVruFXvVaON7~r>4s) zYX?)-YuRW#8hmX$#52eiB%ZStWswtXJBbjtNsEXcGSb*~a^Svp&MaI`7Rt%DS-?_c zg&BtT_Or}=w16I;#Yv|XQ9+Ct!#E5z5{Ri%k}ksyYa{I2cm#I3yTk|LlXpnB;B3Y%y1wrY4=sS-tG2wjkz(B zLvo;3o`rG@eNXcvL*i~cm%F<=8u82buXmwZlJ)9OdPK)6(!1L$SpcFMV(-sms|e;g zw%IZTNEW7Z>)T~EWrl=8A}Uv&U+QgcI^CtEt`9-4r^H4okrc+*+}j*{bGcWqy2E;x z9>GbYIxlUtO(FO3#3q!Krb)^tMr6SjBhsOLL!GN6HB>CT{$Gw@HN_J}dilmi2fBEV zQpxCfp?K(3$UbsaRNmI1;v~M_8D6s=5}#rQm=Rzu5NH@Byw42P1INRS(m(0Jg>`4Z<^;tmj*@ zwoFNamk29DR*Ew*IU~pV|F5p^JnE0jn$y$dtF2bA)yj|3BLww9Jv+rWFaw8xnFw?@ z1wRC()biqtc z8sHbe-x>=1W;9-u!UC&Ef*6fkVkCnnOqOMhMoeU7D;&RBl!Btj1;b*57o`Zpam>#6 z3mo%-$GgAe`w8Ol6hOXqj$oyd3U1)s)P*Q35P-{B;!=b^Y_h#J`=NV2WMLyd$l(*g zNJ&m3hsxp49J(d>&KHm!Se|9Xu!N2Hpo0(-jDn?)%1^&@cu#x+y^Z)XVV1AXL1GZ3 zENgz2L#?xjMDf8Z4~prq{2SqPcv2KkU+FC3cd${6BD`S|e>#0-*yfwCZpZ*1B5tn6 z5?z)3QnPvH@ka7Vv+;_RH@#`2zl9AKdr*(HKHxwYdcy{;$GuyYDZAYtd7yCg`^*8D33f&r@ST8&Kq`V8yspq|f3yPOz9E7<9N#dig`M}}2H=L-8^b%14sRQqe1jWtmz_uQMt9kH zB+Lp*Jk}X&l-&u+%Smu^kHxomZ}cnevoAjzn#lcL{G?MjoJc3n{3W&nnLWne+4fhW z_b%r1P3iY)(^kgJSJtN>K`ZFh4ZYiAraeK~ILtxL5AkApsps>g2&PsQ0B(kwGTs|* zSP+7>_|GOvG4Z6DlEn>sLzGkMNl~>Y9! zMbPhUL)7E(jDrm@sEa4h>kubY*4GKA&oD*+KJ9$qG~nE6ylDu{c_P?yL>Lfk>NaYZVhR{xjKQi(5%IfQczfvKd5@&o5)Pa+6R|I$KA>2CtAG;-qUu5WvP8~5`ozO_(kuuy7g(5SE3 zuHhM>HP<#=4iQ17NU+ejl6 zVmh(LNt~}j3fo&vfke4VwN|qYaQ)z%0UUMk5$XAGO8JqS>HlKcsAMYo;Rp3kQb#!c zw`8XjBc<3IF{z&Vo(+mp4}bY!PKs?QDK~>&-QWC*j(=v@2E;Xhh(l>8DPv1ExcZiz zx?~52T&JrZ4k5wjYmgi~s8WS=z%_RR|I>x+MiI}*#>&dd7ZuJ-7%Q0_^KXRY7w9bCeMI}_wPv{Z@g4GQdpL11vi=iakx5eNOyav3P|Og-iIx|n*yz~KCa@(z zxodw%!7GAw+X3FAJ(aG3A(se^b&laV4`Sqi|JOG0<;@{)k*4{&0{TY(O6GRGnqEHq zhW~g|P`vm=tX%-syIeIbhtY3kZrA23n~%NW(KoW(#ed0`j!yj^?pvJ>K~tydun-Q)#|SA`d1Rv{@iyr~tGreW?ZIIf|q^@Z3?)=g%% zzOYcIu)bk6HlXXpTr%zVaZJ?%bO28U}2qa`ymH4USaqDAE)X(In8TQ&`qhS%?D061)b`6 z&TaaI(;kN?%z6U`qCq|rc@%U)a$Wi?p0bi^Z*E?PdHx0#)3$%d8Tp4g0P*agfNSe& zY9*gvNh|%Wcsd<7YL{fFzPlKmehPfd2^vq0z3Ju9OQ-rVcq9qgiI6>kJOg&dxBR&s^F zkZbMUNjH9ylBtuqW{tEop8c|kB=hAcVL@ghFCOv4cS*gtWzD`+n=u*7g{7&yRLCDf0q%bl(YN&lC-w0B3|!rQ z1ru))$XowEM0f`unxygq|3{yUgwxpzNA9qjv4(MSex_0|6OnL`MTqVHSNtSOiF9@1 zNL1C*DJzphuSN`;ES!76dxG&;HdV^i@)av*B>Mjpkus@rwy2tXNK%YUu|B-FKTGiL z#{qK#&CHqxO|2sNknMdXZ7@}V7KdPC)!&XDO^3OVR6X&ItZ;Mr$kf9AQZsrwe`KPX zPDmolBy$-nh0Qe7VOovTlb7Ckc3g`(`^c}bY{yiK*>WmlPS=YWLjlOk5nNZWQ_?Vd zYd)AWBj9%og>?p0XFP~a0gvO;*G}1mBeyxlJR-~1J*_vt`Au{8SaL}| z^3E&P74#v1VzKU-d()fW+`^mXBUkX&kr?+&@%)0d5witnau%Rxb(Yk+#VEfV)QrOC z8B#u)BTR(!tdsP1!-vbLc~`~B)oTkcSg6%=e2yH3E=YFSLdXGxI`` zM#%8q-YM{S$^mhKl+n(USN~3N2<^%Y;bK7Bwh}+_!tCTtvK+26NREw_o5ALMMnP+d zOr};oW*61ib|j4NaC`z19M6Y1fepoqNi8C>tQe8(F*UXsrU+jKoDmF0zM?GD1J$6>s?rg8w%u z4%Jc#4%_-2H=a<;XgrxHS&LRtPiD1zTw0;Zrp~ee;!X&&Zw*I6Azo+j;U`j+*>X;a z#gtrmmcY3W*M%pr#ZDPBaj%5Z22T!nK;jpYo8cg;H+f|MHHx0wo+m}m^WUy7grc#9 zdQ`R5XwoUDYQafzQ9G&U5bkYa;<&+Dnvs`6rX=Q2Z=sGQD<|p;{FRq;c;6}flZ5Gv z>7j{Z6Ujs>XGg=)xDhdOAf7bP=MLg9Bef~8N}1lH=CPH*dv0VqJX(0W+rj^qI~`CA z;92i<`Wyb1Wnh>IbT$aG4*mwe+vw1Lo1M-m-yfAH06KyR41a(c*z2u88t)2P0lRdi z*Bj&x4do~6F9-G1Uc#e`R{E=ekKJ)Lu)@2AY#ZyH#G6X*wQck%f&&|Z>ak`7vfG*{ zaOdyd`N{k4zWcsE`%?c-wEV>{4(;?ONUaQ1?NBq6(FJ~EK7uuLVnO5&~f5}~|{#a%)UQ=P$=&(y<}`HB}AlT>Lw=Qz2@ zrfWMxZs|c@7X*nq`-{q@a^DE5BW0!Y!iPTo?XrES91bje$uLI(#AP9qm zpBt<3BRy=aIPS)VvxHW#j&F~)zT911cHIG1=ex=ED-vcXyi#BT9!kFk9DyyqM3d0K zu5C^+=4j$dv!>&nTj;UO{h9tJ?$6wR*W6um_%A95(QyEP8=t)xoe|JViaQbUb) zf7ppXh~AaIT)6%A{O$7GT`#%2iBI_W$xEl|i_;S)tJ~KI7HZ`2rI*j9kMyYB_!TVY z`>@0l_-=;W5y(^1ardnXEe#!b%BZy9DWjVS?lIO#sqBDlmP4%)IMCXViMV38{WF=m zo=GZ2tx!v!D0z|>AG#dB`wlIt*$G8RX1?Ja#$C01DwfY*$f(vg@gc7t(W}mX&(zg? zLa9G+U(rmGLm8j9Up$j;-4PzIN5i3bGJ|dahiH~HYHrh(NgspeceIU6JiiDvY)YXg_h}rF@p%ocL)#=f zOQ8$^N*lduqPl}>Fb0;0FI#qrG=13yy>4Aq?0o>64L>%E3GZ_v-n%2<_+I) zxJy!KW)5909C5`Mgo+f)l!!8Tz2EJY85ESgnQ%?8<=WK6DP$vv)wCK=flXo_&t&#~ z1z`gkC-?;#S4M9Jwu+1>DtJdVXuu7fjCk}n-`(>C-q|yt{&bKZ!Vm1&L|`mX^`qcz zQrbj(Rtd;rB4tVy{~$_(us2EgtRxH*ua8ln53d;s;TYCl)5+(*^7+Y3v6vxm(j}CS z#9~G~ek~G@8?o5DH0RDq{clGlj+3IOM_)I_CPOnvkIsZ95BqQKisK*oe-A<7u_No8 zR@XRP_TLQrAaEQZ;s=@VQ1I!=E)9)NaxD8D9UwK616xEijg>AKQwX)F$SjM5eZ=KgZ`caL#7LZJ~(Z2xewfzKMp9w+|wAS`& z>T3h%1?iA0;Mr$+q|vvL)zQ`E#~zdQ{swX%c%Z-W*hupmv`gq5D+PhT5TA3%%Sxi8 zQ1;g*K3Tm0#67H8YJ&>>l;iXq=i~ilw9;~%)knYe=>LUQwpUkIZD)HGRSpCB&KfYsg*T2saQE`%E1H8aRB~)iJ_x|JP8}aUEX- z07n<(i_M;G70|GIi|E|_1uwm(}b&Px68H&4&ItT5=Yy}3`!rS znU}a-MP6>Tob4suNcis7&oRvB)~Bb}`)l1E@tWND68e_sOP)R0k1Xst6c6gvFwr^U zF}~T%5RWkdEB~9}!D+LZs#_^p`*?`gMi2MHs$M;Q>v46LOfv_|RHH||*N5HOPo(qs zOmx)r6aL9bnEObyMNdsS?w_s?tKp|c@@!1Ptx@zaZ%R|hD=;HItrnRp1`v@_x^amZSNfKL&7bh> zvNcl6g??Ks#{X+X%v8uF|3*yge`P4=)J$fkfgi7OYEHIm!!%W=lM%57u_j)*8m*8Z8V}}t__7*A??JyLh{-=9a$;3M`p>D#&15ARG;1%v zl7DAzB?qsx-|lol-ir7`|A7j-jn$JM7URR`-Y1Ihdm)fIWdz=OBlUdm{`*Jm3eQe% z)NhY^diM8(qo1L_XpiN5*#~J4OJ_|#O#d49ny1;lw|K9w-}=3N*Y$3|;rXw2uk|L; zb8r1#x4WJ1>{bsyi|=)B?2G<7p66ve69V%w;dArWf!WQons^P?vN*gVYg(}p-TF9# z17O!kdOhlwmqg7Hgo3`jJpPyqvL9`2J1xI}>KWbMaq6dYmRhx(<=+^8L~kPLk3~ zRY|`EMpV@W+9w)zQdr6RvlnLDwJctG*H1r=(5`Bm>D@DGYym$-J)eM?&vgmrdE*MC z&F$IR$62vI-18RkG}wbi3)hrC3ZwfRQX6WB>{Ng1M_yA!{o()k%6%Uj?9J0vPQ{NUH|&%2vB0CTUt6~8rWwfE3Hv^nh8Q3RGZ&Ds`x(X8%J*!S`JxDD1Y zEKZG>oQtr0$B#p;NuOA}_TmG8l$OWgQI8hdmR=v@1jUs_Ho7kH%;hMFlMX&aTT=WQ zIkJgfFPVU(XiDn{U5@c2b{BsTKs%6HvDme^MuTz3>&3CnE`spQKxLpdX}Y*2+!*Zp zTU$3HkR`FRv)OKMUI$jI0fH3XVE`|<--cA6TyN7hB%1k04KPz_U!#b$mr49ubWczmG1ttoqx*Y0syWN`+ zyg^3c?z@kr)5pkm%{+N>A(>ntTht5BiFD88!&C6~XRYv*1wc&`$QlOWJ^-x^cCZ<& z5rG|u`tinz|1Q`bTafY83Nx-@JB?T7@(lwZ(3}1UNJOLgEXIWk)!Va9&T;&Jz)u#} zeg9JqY7=AtvhlYzovT+NL;q?&VD7^kr|mez?utV`cmW+@DA?Jb^>290N3NC zSkr3p;fOwdb|wj%%M^)+P&7|TZES906}-8=M<1quwC#Nvy_{dpm-P&ad|9c_))jQX z^KA6m)v8&m^#Y0onsfOXTTjLXA)eIjq7Tmm?xPcR%HaB}AFRs=bw)2!h$7dlv2li8VzEA;gfGsy^j<8W}1fwAFZ+l?tfB;?M`V0}w#*Yi| ztCC0mW@HOL?l0kPTx1v_1JRZlfnkb{tjlyEB^z~X*1~^##?0#KOka*0Z80juScYR` z0wcB!fR83~p#fN9VXO+}B+5nRz)wUh)xg3$&gN?bQDV(jV-C<$ zI#Y+J0Eh*K=onjVYxbaC&DHCo0txh}z2~l0bDa)E81HRgzYfB*Z)9t}EC#-fPos}u zX^2Gv@er9;LOkS`(o$QErstwho5O!G&lDaJ{@dd}89eY$t)Xajvsx9_3*W|L6}j&p zI8XG;KM(w1D$#ohlU<8jB)pfL2iE5etZss(+2V_cK-QT6<*E&Yf1T(Lj=-m{klL+WO@WEr1VcHSnp&lNK5v&G+T+}n7f zDyF6CPoB-kic9}@{j02i{&q6P<_eZ7z&L9GYCi~J5*SIW-c$`YV2T8@{wTSn5q>b1 zxbmF(6PX{6R&z#~TSB`_0WBon8-9s)?ti3jJ9`X*X?xpNRT+2j0kY zKG@mn50LTFc93iR`&j2o;PL5M%Hp|>2O`j9pmWp+)aUvdAxK+m)jVRlTX}KPlMo}bTuv)67;{Pd) zH9jQT8Yc*xW{ciBYvc`f-4kt<7X)6lMNyec;z1)hCq13Y#PqbWSkx3=)a+C|p2A9& zFyD@4oJ{QW0xzocpehQAR$MgFdMx9oWQM;Y2v>MUPGyyZnnl^$@N<=v>$03m$@nda zpR-mDWy?}rx@zRWU6(Viif=ShjJSG-l8o6}S}C=Q3LbWtRV8H@DP;v8G~`mdq@*=F zmQ?Oo6`7Q=Kerh$9Hy{G0C@zf4K0EPfc!ydKk{!zHhTlW0tgutfdU&VZ{6Nbr`PKc z{p}|DD&hSpP#*R&1#;cT@xs$2j&w7ygreRFyK>q7{3pVRpx_$2zmP5UdcEDtYKK5MPo1tACTeV0=LH%l%dd*ySuwN>lg5y z1OB&B?b5Vh{GeJ)k`z4V*`<-i{&ZycE7moL7VjNaVH!C8@^uc&c1Yy);&kcg7U~`d z0E9hRWsoykmKV}>@57Sq=vAdeg1^-ZaffqEb>(3J&_-Y{0v@Gwh&J==cX4xZ{t4za$H0N zn!Du%5lmJlmV9UcFtAsQUtKx)J!KAE+COsK1^1XGFrzsWg zQgn^7GI(ZdjdT=mJxsU2>klV~p3bei*-XwB3_a;s3=?IUm|a!POv1|OaS?D8gjiCG zTWZ46Bsqa%qJUCKC2h)5j0HSMSwUsCbeq#|#boxx?Uju(6OG2w%T5&WVl3Z%!+dJx zZ5!oQnP*rgdTcg*A+DT?zpH*n-89r_xw=;7S(xm*irsg;}^Pvlnhq{bmZ zV0c3{kC#l<%DGFfDvODjz{ir7KD%blCN0&roKHYd`u+!h2fO}+J+z2{*v@9cYj@~T;XA$X1BPHzzXkHgPW1TS*SdTWFL z(F1h0YXAeWoOv#@{1oc=!##k4*a6BH+Rv!}Qo-{zj1?ris#@kpBSM;MsUFEsEra6? zh)Px()V9S3e1VW^17k@ujP*jedv|0Jftli3_a#w5K3;kazm%`kWla*rl;U$jQgd5A ze#ZQM2NCADJyGrtce=7@Y|GcOwiuVw2~JW|ahVk|NxN_Za9j>YjP$u*$Nk$UzQ$7!S?%%Ta7m~` zNH#@jY*eyVr%|4~5oE%Qsq8-SDr+IBmrN;+*M3+bw>8}EyAB@zUnD@jblHe%uQC_7 zoNAVspN6h^754#hdj>D`fRyUX=2K5@`q!@qOUO~KBF%4ry!I23JMh^3x=0U897+lF zuM?lGiO=j2$0t9lM;!MiKBIRett9??Ee-Ve4G0x6lf&mBa>PtMLce_7WGu*Q>9OCW zZ>UxT6H8G_rQDA~BI`%-?#1BP3fc6DtFuKEN7UR zd9~j~%$2vHD9iEh=)cXtOP0G!XqjVwU(ix7%nu8km`Il95yzslLUe9nVZ?_?%beX; zYLho;xjZg5iAJTeMyoklayysoo`I5MEGN9Z|F+?OY)_W`(acY#?9UbdKTAy}CQ6^b z>tF1DiiE!BKMe53Ji-zS(bL8f!pZ`k`#D^8vjx_pMw61E^J~Po4r2spY!(gRhrq>w z_o$&V)f~&b)B8b%OOrFa z@HdI7Yt&`Y=F4eLVq>Br2};X5(R_zd$gXSvyf(3f!t`LRklczO%fP!=_oH!=$xDO7i|WPxoLdD+RJ;b!nS@HN7dn_O?anzp+_(h#Di_4FJOHtM^H0X zgVr3Gm0Ogxz@-!hR=5}J6p#njSRZuhdu0(%N1f%aQ_S7&&78>=o%`lX>qar@nbks3 zUww@zzgdmq+T4q^-Tb}B!87!i|8=HZ%oS|2n0GoBJ~w3*RlO&R55MJ+L^?Wp)_VlA ze=?pwbTEf_0S2gYW6gmNEac%kVaOpm3(*QFwr?l=o3Kd%97?@IX8(SG0X%_+ArlGa zN!&cN6NRP6%|wjuq(MUM2{LVUno;1n9{$?H&Ge>RHI_+1Vka&^v+-n6&z{6GVIjCG zenH!OG*?X-w))ji)$6wU%}y4}a54)EFW;|noqCle@_Zf*(KeoyZjW>#ua7()iCB33 z}f|G5WL3^PI!p@x(AN1tT8EL!>V2X)E*k#C-+0Ab0x{QugY}Gmmee``*HEBB!Vl$0?e`%c20l zbhs>0ibD=loE5p4A~O=lm@z@*mBbHA(w1ZvbU`cLmP{wacjgPGt{CQ1Ct}<82pJld;_P{X^(pT!U zD=|e&r;;nnspRrXQdjjXgMOJ!Rf>fR_^;qJZQauHcjOCqpG0R^AHDUpI4B0M`L z5Wk48fz=$ilt-?rhZhX4x4pgXU6|Y4oV%dGm3Ky$?RJL)sr}I6_nbZZJ&O;ukwdIX zVGMaM$gj=?_TREv-k%H224k3ohc-R{>qPa*oa^Bi`~4dLyn@%8ZM=4wR2RF~uh-4% z*CCm4oYM^@W+!oJ$?!Gu=VI+CTUgJ4y32SxgwK@iVN^xW6u zeg*jbp;?J{D+Oe^OHo+w7!BSa5&oe6LP()N-(3MM<*4HmxQuMwKs7v}@m*K8+x4+Z@;!|-KHkXWq=2Y>2 zEpa`8SILP{EZ8>sHGF@FE>LY!jDYbP-D*~?4Mec3xDr}lB_B|4viQ!hUvwUPuw0z` z-pBP~=61W7IeX^$i!j~pkdnK5KVEb!%PG$0^KU3-GQ|vD?J%RVW4LdWDI2HTZ0#!@ z7_|M~dOnFpO2ZBg&lAMedoD)-;-jC>mZ1+WRDjz44ORp=ND$zl>kuZe@dnRB_^E@ODsO!RL~kAVfVN{5y^yjKv#F|HOP8Zc z*)6JuZzNmA4Yuw_x#P-lQD|h=wM@EZ#GG2aVwa0~W%w;>@tCFh_Jh_j>XxO?>1nw#GovMD(|%Nn`tyujE*7+B1BNb|4%4Q4 zV?PURkMD{+8hK0P?F2#Qma5)7yybL~_1kKO?70EoFCohXD$4^Pn4=HduiP|;wrKx# z%N2=>3Q}e!B_TPHE6ppCW+tAb|#(Arx#wjF$%H_Ald^PBFI4Jt63VEJRS2njte5$ zqGf(0r9s6+o1o6+p&cip8*yk*Rixjpk6SDCmSE zINcCm4FJ* z!>@H9oTK*RetXk9PpyQSz2mNBSZ=voJfZ6O6>s*oIaE773&dq`ZXdts#BZy++cPJM z&I-q7?3{~N?AHsmXuUNzH!Y)yTV@&J3W1%(z=EmerfW>7G--=ce6AB*j076P+>VUT zMgwi1_xj&E*8!V{hJa{h_@8z4M6tX)E*_NKYW4k8P}IgPcQdlRO~VT`dr-;Qv|`6K zy|CiKxy@>iG(b4t{vol0wj%cc7v`8imZA`V*9klaC9KfUy#yj-5$G)~a3%m=2_X;j zpgMT3Rg3~y10J~_=nKE|e@OjjJ;Snq(vb4g zsg2gm2&ZvQ@x{Dt&#Yk;}fjK{l$BhDjP;3T_{I$nfT&8-*wO8aK}Ay0YZl^ zoNz~aeIM&xXChs|yKw{j7;?iyMU*O|0YFrf(qfT8h96;(hD3a=F*<3(pg2=aciUGf znU6|V`V%`{qJUj$J5Kv4q7l{GS7i}k{0})f*rCCxP742*#hNImoD+C69(!ng&PDEq zjMwkHMntI$>Ol3*;3xPoAeg~NR;GQiO;~T5xFX*JakTBO^Rg9jQltW;K6tmu2Kv_L zqX+>aQ9d#UzNu;h5_MaFn`O%3jz^Knc(E3YaUEwZb$&2=VRrs5?I%JTieW;|A6NnN z`4xA#wRy6bpH1MCmTGiaVr$PD>vsny9A7E;K_2~BmYKk+`*PB-YlL33*1A=xhC3PK ze|t81;}(P~mRd%if5%wFP8iGa68dW_qlD*S7vdDF6@bKCU&GHnfn;utDK?r!d%?Fm zi6Ax^ZL=|R-e8z)jP;+He>OvnPB(rvWl3>c8{mJx88hofEFR0ns?W?nbCa&*^iQRj zN61nRprZmA{szmyL=uq-#7b3hSApEqKolO&2rWXo>W*a5c@KT~+4*P7Ied96MeN%* z27`KN__~3$^N-*XSMxC(I}~c2|f#Sd6R_tocbb6R$78 z#7o#jt@UOjjXT~F;wr@do;sVAQc*pgHD|1{bsK(N zh^8b(5>rOp*40^67t)jAihbuvHl32@V`WvZF*7TE@3vl$C86 zBzKym5VuAuTC;&X@{|qwkUzcoVdkq;y)@{E+kZS7eXuv&GS3hVE#xr)8x%npt{Ns+ z0i~(wdbJIN+olL8sKii*6pizRD0(LwRe0p{N|b%)>A_(8mm~!rkN?oedAwZL_>cEO z{MwrVUZF+CCb0g87oWH`elVjav>U_Mapd%o=cY&F763`l4Gl{ft3;@`Lj7iALz)hH=X7s!;sqXx~>fW z1mXS}8RH=JBPw1GG$FqWa=WOe*`RSa6%yP<05Vps5I(8}Hh6v=C<9HahCVVo?9UdQ zv+KXHe%ASEH!m7;0Z^(6GJa00<)tOtd&DbMB(3n-f+kgfs<3dkfBLa(_Oa9c-G8ph zu~>1r5M>m-H1F)@^CoMm#iDAmQ$Bu(@m~Rsk%LmQEh30V#j;!yy|x}W2kq zn+5*vMw_^#Nqhn~A%jkE`ewm*cWC|=$k75sAt;-72@sFP6N#oIQNhD~17E*w)a&hS z2)%_>YJFOqVIOt7`1>|Q9<>dS{5n3f9zI)u?MY)gu*Qzp>TXL9SWSEF%}$57)Y0Zk z+bFU%+#`wl%*5{$iUp`Q_(rS=kWog^&RH*6X+L+NRJxG!(^hF6C=k%Q zGlr2Vt(R+FWg&MupFf>jsCc#VdTF@b+3Z9j6F%mLA|H=zfyPSF^D1o~Jip3Cx|hOx@zI`; zJnZP?9?J!LNr7W|iI@H|B~6}G!iV_LUXsV}Tzx+EKR;0}rWqjx-?AJOgWriL_^fA( zqQHo7dOWWCOpF75?2e^bvOaO5T1n(cHP z8$Hs;osYg?i=RI?i!w9zbz6J#g%_UGY)Hg=3BPXCyY=h!=`jgpqDTTq%F^&)ZEUq% z!ft<<1S@1ff*EfM|2ss0Zg;EOMfLh{t4^M|zeDdvFA$b#K*8FG);!$nOe+RFpzr$C z2hA+9(vmuJN#!cXD$l%XTksaD@wk}E%?!VG(Y_SSXU|{_U!vNJPFsi?BSxkPfXLc0 zjE-Rtm9|4tBw)q_yCTHz`Ta>Azp)>dSYe3H$GgOI0LoUA7!(>+s%}BF808JY%0+b< ztzB4M{j3j#bYQ)J>Ui*iJ@{;_URXoRcdl;IZ{T>}hp&h|tuw|LdWPhqQl65Nu7Xu2ISCpz(JzjEFSkAU{6}-ysgD$x+e=6a3C zXK)a*L=qzRA0h8+HO?Rxp<$TbIz$8z3PQLl^iA}Fh&5!XDkV`S^S~P)$YfAbs`3Jl z6cK-eN{c0AN)p|RIa?5t3*W}MN^A;hL5q&BPGt^e=8D~mXFQX zmzL`D$7F+*R)Fv?jxVajfqT(=nrB&FOhlsz(JGg$C!e%RB}nm!WV0n%+~ z)8PlpM3LFkGw0raZszpt>VbAEno(=A<%$;BMF%`&2Gh)U*UBO=F0#N&ynJ93538*Ef!ahoERA$hMizf8ui zQskb1 zDVbGOse*Op&2sCCG)kh&1(r^OV%~W!`Mz03gR!jyj2I~Lf>~;Jk}B@%FA(d- za0k@5X_E21lKE8qNy(WnZ4Y;_q8XXg;S6erqW6L{=?c{yCXvff1Xs6~pEp%2pK)|+ z_I#S?Ww?1(?p!-o&~mQ3Twkl2%KuH8yEF-0D9BZ<_;5mE? z7~aUPtYi(IDXgs4LrGTeY!FE*D|2i2lHl@!n#fg`&YW4Q<`OEAU zgAzJ!EMp^(kvtlBj|?M#Z3Ah^UVb5?r&4-mArBCbOO+*(kG$%fsnu{Ftzo$#1D2C& z0-NW=c?3LM&5O+wj-jfCa{_2b%X+|I#l(EhLeR%VN?>NW3j5 zsnRH(2<)uT)_J0<9MaaKz)y<;s1i)T?fngWevXoZe74wV6dP;BHT-v=b@6?_O0&Cu zzPQ#1&z$5nfEdU_?>Ik^PI$=eeNCfLT3aiT?O`|d9LPgYSqrgZzKpu$*>Y(BYSS%7 zE#gW996*3`*odMp`~Jo5Mc+qj53eW0M7EN}+x3Un@Y)q0z34X|X+_goR!Un~v&w4e zXzP*4IPaC_ffFw(i8TRlsR0q|#OP$T#{Xd`NrJ}&?QHdjTib^EIn{P&;6K^8)n(7Q z=LXiauqs-gaXc5&A3HM>|Ng`=`V?z<#M6|dv80n3p|>PMkP_NHS`eBOdMmPoe3}_D z%1qc)_Zg(EgV-x>n^K=3VlRfl(N_DgA$TkSGYavXcEhg`1fAluNHi=SO#4C1Tqr~F zWh9^w+J}^Rqux29sNv2|I9`Wk6u`qYDuWHkG{P7wqEzbp3J#0xc73W(`>NgVjLRRD zy;aB6#qt3tMbU{IL^(ZF5=YUsgafkpSRABH z2{Ya1l~-zW_lR~MfT5*xWXpFt{e5kpfvB#d%c5S%(dut?{g5(uaSM0*M2|nb;F}Q$ zV5s+Ttta|-46nNKFo%Lw);qek;caLJ3yidh4By{5q@UA1-UXA;PJQd}Ca^Uk3+eBX zeQlA1k#yV#T7=*Is5>5kD(@U}pLejfFxcPKMmVb!yA?ba8?@%l$=b6)ZAX1Ch_s_` z`$d6v7`H?O7esp@?(bS6q1m4sOSe7`>QC|CLBxG_VC_l)ha7@d)n@N~9qjiT+e+t9FvF_;=G19>|%nXpYBc6`3!k1))> zMlj4IqVcR#Y#!Yu+Dy%A5U)NLdiR?Fb1EVKgWlg*Cs?sAXZButsc)+Gb^A)+R!xBD zz#H0(cp!%oQ7xz1CaM{Ablp}}yRF)*GX|V#Yi+Q=ZrN(ChF~-DhkSvoSI7(tf&8s? zSkV(Zg-d7<3B@buXS{`*7uI?|X5F>0Bq}qr5GQcwbC0%U5n?77@mH~?`t^motR<0= z$+6a>&)o?p&CV#|U3e($hqg`Jd!8cv?kspB0cHHfC!VOkgoHcq{Kjy1GxPy{4bQ>U z2joHiLDK`5Lj^C7II@~R1bD(gM&gcow|++ge~OwZbS-5Lhu!YnXA&BWzgprmDqdKg z>O@9${u|mgxJNY(pro zl?B6o3i`-X8B3a5Dnm3OA_-LFEfV@>q7i(bD2H66Wq^wVcQr_hYp#O3qqc+_%4&Lh zGnZG7Z{RiY=H`8Go7EZ{-`(Hb?0i#arA0Nru(`SUVDq-uoVYz{v^O`~oiXn)A17p}v;g>}*ANsch}J3~CMOTsOhqZ|k?;Qv7`bo6E(J)LuW<{L(K zNzdhK`F#HP>yMq9y?yS@cRX&Rw?YPzlQq7<`2P=lS{&_2*9EEG0Mfo;tmMLD?r3*A>1Dg9)0dDmGqt8QxnfN zKAA_q(An5@X5QkQHP~kJ)MM@^^1~}Xwz1jaB4a+rkC8mre89&@qrohrWmQSEZmS8g zIG%yNHhd)i$);0~XRhC2R^BrFmXXmnW}MB9qO&BSPv$@2w3bdcn=#{T<%!?Y6?MMK zb;y@`B(!}Ff-yqGa}My00xdxj5Fjl=P=NZ2i~fym-@mc6RNwsI;^G%keRC7lzeqnt zj=B!vHNa23+VIHOGj*B2$3MnH(B^RWi}X`q)9s^naE-`m_$pa#G@zzU3L9_m zK%W6iH-jhR#%W|3bPd^rAVho=;1|hQ^}37IVm@E2uGf{hcvV{Q{S~PiuPgN?J$~^g zoA}@F;>qG4=a*-SxmE5BfEq+kXoA2=`DJt!+VTs*)(-(~)!F)2_Oq z2EvaR#aWntVEk-^xdsy-g0DQh9(Ij#vl^PT1_6(IJrHOROhuRJ%yf60z6D3cn~^r^ z5BIjV`hB9k_X3q>l6!n|i=R#3zit?2&?mt+ANdC4a#d+&9?85Rp7#@|i3SUE-Xq@J zLcKm;pM7{1Z@2TgT;4bF75owIMi0KDv}TWQ}@& z6Uf3f_QvgwkG9r4V%Vy={FsvJ1enQ3eq!K8XRszqa#w3>FzIt>N8p_knQVqh2n-{O zGpb>`d=gY-L=YFXBtpmM_&Aq{pMgpa_n=QU3l_%;aUmLGV=NP6<08l9ldWNW?^;`o;xmHjD7x#dkHHjpAgJn#61_^SH}Xj2TI9PUZy`Q;Am4z1cz+~O`wWwBXx^Qw!dDBWv-av8s|Yci&N5MCyEYW+<4%O446Abt zLe=$ZKVu}^RNjTmr*5ZDxW(MbKSoGebK@Ey$fP2|=2L4;8h~Oq^<8B+S?mJ zXZKpS)RXlhR#14XQbT|%IM0^gCxF!3T3*EID%t!d=JR2ei3rEKr?DlIsgJ|9E_F|DpH8p$KLuA z*olhbvdb$v=PJ>ZDn^xMF~!0$PSNnOSW+X$lIPT-XH05aF#5pbJE3*yoUCz46`2Pf zJ<`78M=xk!?hRrxrnsD@aPG1wvMF&{iHd3}ijV0EPmU$Yu@4wtG370}$7f)agn8Yy zi6U2HYE7M2WiILc4#%N5?NsFqOCK(H;0_!c>Ezo4JH#N&VKXGlW@R6GGastnu}}-d z8wk_zfMhsa1xA9r6{=qmbo7yiSFK_N?`p$tWUqnA&=1bTn*aj>8KDyQp8K*3+BLlQ z1Ecld7$2506RZNV9wLetB-^Apo+d6(EzO!#NBJXn07QT!g~PUp^{rianh>4>jUWvk zZ+ZkchHTohNHUu626cioW2#kN4pq%b2%*qEw1;-khXQ1n1~4ry0`O!aT0(ftA%xA) zhJ>w|^iYzjQ?V!qB6!5JWX1BjpaT3^zE-ja-ozuv=X9- z_kT9ZsWB!d%JG;g#S6K&%IFR6`0zV~gLO-l7Luc?iDFQ-_zhaMH^wD37MDeQEfo*3 z@>_H7!8! zhyNL3>(?mqRJClBt57DX${MUpAmD^RWf@lB-T|5ev^DHQrM}!&i-P$4u3uZLZ3Bjv z@AuX09)3@%qAcz00bS)D)G`~`WL`pFLO&I`7>UrRSP~LJl26x3i0m4Pv$9NlobHj8 z5dFKf%V7@0 zEGNZS6pIohA4Xt-ecWV4POQwikKMOaLn&Sk#vjn*2N4I4kHCNi*_0Kai%45W==g4o zK0(`hwb%j61>ljkj5JR$J?Kd!l9!CwR}Dol1!W+M1|El2YoDgs{l7-vG>A*; z<5Oa>Ip>(Owv=g7G;kO|yH#NPm(?}+H?nmZF-k%``tD{b?esq zb<}AOyKQv6J-h+i_I7Yqf07Rg%A?qWfpb@PrvbEL_!&e77%{rL#Lr7My9m-o5jf~Z zU^Bx$s*h~1d&Jiw2l2(kYdE?k`jkn`3YqDQot-wGx>_?cuL=Uad=-GO@RSwl40mT* z@Ez)ml9wX=kZ&$14{Y7z?E9%g0Da!#M>x#5KsGG4Jua+1-1+9o8&rmmZR4q#GT@C% z1g!5957SAr-)WQb$397jUCsru%Z8_q|A0ajERFzlMDq9fL&_r=%=%$Py8J{?J9ufm;OotC$tsk&OPDLJ2=7jx_35FQ{D#44w9S%6z5M$2jdJRI7AXSEFwxeyJ$YxKG& zmzGX;dwXzE!nU&I`$lJJsbh@d(EbU10r&j|)*8-YoqoNw7LM;QDXhbo-y#QKkf(VR zmI3jmE=(JMkd3Gkfz^HGGpd|mVl1y_%gLmWvak{x z=VLOTs+wX7b@7iOyLjOZ`1iqh7|f|+kW&Nqk8)9!o539eT3VL8(;HeQH}n*OV;$8- zTll7RyIW`r7_jgT9!Bt;gdKRK!Kv>X?Ox9({(X8Q+r9yPCn)>qzEd9eoq!Lk$?tpb zkiJ8Tq-Ol#R=>MD^+raPy-_DJus~P)(%4@^IdSoX0)+M7ADq!2O;C8dU74G!O!`)U7Y5>aSND}Xh5s<(N_4{y7G4iF zrkQ6Z03ixfB0W?+p?qCAF)7oqKZd28nnRm&mC9TsxJQ#Y5`YK*h~Hthfg0u?uwh1m z5oS*4l#`NvO>rQD5E1+YZj$5!NJAKYiF_pa2+&s`CI!!e*CE)09L4u`bVi>fCPZuv zPsRf{hG*J3T|X%YWDVCN6s0`y!o0HFA-5A5p(Z}_6Q7TeAB)lj@Jc|G+4te_s%#PD zSOT@<)9oQ`9w2Uhr?S72j4vlq%RJywUy(Wj`nM@iAg?LnT8ze3Lvd>G2~ zet|}TC!!=~e-!$A@B>!=khRHAq$ zuWN?RF;-=!q^D92olCxeehljn0TO)`784N5(5w-MDSiQ=Cs1x#t&t8h%1*f7%rk5} zF@pz*=c?_hQ+;zq&Q>K(vh@=b2J#MCqd!$w^4W%I*o8{|Z;ZDXE#tSU*XB(fk37<= zDbiy%fDns~{FVuVM;;-tZnPy^G&h3M%d$Ys3Qz-hbp?1z23CwrTNM;v8U9{-=e3EH z5k-cren1B;QvU#MAF8YG4Ypq`SM+{<#+=B9q~*;VU7m-hO7Pd>QaOHKfj`sxNHqG} zxX_e%XpwhZ{iI>yVw1+Gyk~LUmIyBAh>$jboDVJ))J+D+=Tsc-3lBn++V0`d2|uKCI`4XIfH=la%>gs#%SzW#7?CrM)zIo6|GY~UFco&FY2QNKfO#-nZ zMq|)9&pVXt&f(8@dhLfFZudIfw1rnzR=V5ibvnJsh?~}gXtAmX!E@v?2GBVGse^&` zx>xw}Y?;5(ZU-N>J8eCa(c4?}Z5(?@uTwbUN+Yste93eC;_*fPT)Q270ED&~+s0SU z&&=fUmC0M3qSQu0eF?BJOu|Nb9N0)lNYpe_RxMM7!*Hhq_Qx{=^^Hy8=(a)U->i4G z3G`eKo>f5mxI<0@{knq1$VQ}iTdg2il((7_=ITa1 z#!}h$Z1tgJ@m2Ymv#<4sU-!{{Si)Y)M)xri7Cu^uW^WJV|5!e%a6t|J_N9mL0>d_E z^3k*CY8$uq51Og_qSc(lRQ{7@Uk%AZ(C8V&ngLR$C=b!*uuC4H$mDs6$OO}2b8RC! zei)sTuNpmh#{o+{{9Poten2P^{Ni|Uau{yse{SWC z_b+ZYUUO1S8c+P_6Gl=!`I=DnKCN>VR)&H6c;-O;lDk1`vEi1sFCROllQQ*F$H?#g z6n%r>>)<-`Fk!|)omNhU$a1hd8;(Ivz5Q(3%uWae^hCZT>svP3B^ zrmh6tKaApvddLU%$tol~@Z%w?*#fJH z>!G_UkX>H!{os9X;xoL5p9~rLH3dASXnGpO%B5fH9?gx_kfpm#Cd}Bha;Cfy3 z6h*z(2}f5$1xTPBu!!I#E&JBt?($nv{ryhY3C{1KO94)GlPBTt_=UACc;U*x3m=DT z0D%MrzNc^X`nP=LwhQu!JFz(%T3C1Dr|v!)8pLfs~OI!ehmeEe4;dZItS;rj?E#S9}mx8R6c)uLbA zz{i3g%+GJkk76%@Zxq%9iva@a6cjr2e1a+sD8RuTz(W^J&_&PF6={OL{Ze5ipQ&V{ zmdcmYGpl#qtv>W%{209&%7Y8LX3}T?~gmGbcV@l){5r6_;^vzYDqG#{WBgzz`kk%J4p@b zQh*1f(Hxm{@zVGB9A8+!&Fwe=?^OR!6a3uqRWrF**zF8AN1(uAoNPZ>JAvgnTt+lU zv&R_a*!R;GL6h&&Rm3|+*Ow4Mm9Nt^gE_Hg_-FJ*^e#NJS%9!cGL9`0R!j2Gsqkbf z3ybLBHSW(9w^LQE`6n{0uT?gXG2{GL! z>eH#TKN7Rkq|d?MbjEV_+ve!rMF!!$YmL{uqb1?!k=q%qWmQTC@EDc1pU7l2Hf|_* zo~Ho+0iR$n{&ul0tKxT#U#HwWSiNZR4ITMeFUo7_6vw9|cCK=}-$Ct?7}q5vr*+x- z8XCuj_9J^RUsIeaqulqmfM~YcHAZFhVU`BaR=x(ogC0R_ZNamL4<%5I`zHm-rA*XL zS?9bIO4gi*WF#+L6a>@AT#;S5n7Lr5xU;q7d~&Avpj=TF?i2)`<0j^jXGs5>uE&8| zwV_t3forA4ajgn=EhgYymLt0te0&QhDtVgVuzKB>xsx(`*jG)3OvIiB8jIogW zByY+FTPheuT9YYLM4JP{Noz7oieTB->zk91aeE!VJ|HP{WP>98o$;6UNq;aHajHbd z*vR9u7bu%SbAMzsNib~f!#ssKm+~4+l=1C)2e?e_PzZ_%G64y_v+MhT2*9ZV8AxM( z;(%THU}QGMr3P0_hy`eCA)mzlaO>_?chavx{dQ!w1<#W1xqJyV@clJHlL7H*keGO2 zukQ3aZQ-Ydz8ROha@-Ui72htr*MJP-x@j2Kd$QQ=igGWAcNT*+9`&gK$~Q0^1voh* zuZ&lTRa%|o9}DRrLbnD0&Fs`s7q=vFWB>uh4xzarrZ;eP^@e+c0W#Vn!yo7akw|)U z4;eg~fCSUFaj?D~BOZv`BNrq0L>{24pGGV6QqtF2jh#NwWCLS5yMG^i=Z&e8@lEOx zGc5hHhd<>L1}lHqhuc5g!8^D*g#QA%1UU^HYb4{D{3Beb;3g&Y1(zoI41_-vTbmjm z$NWb$?-4NlfU(bVTO;4yh~BDYj7dNO!(I{{a7#DQT6wD&ghl^A@D|X6^cQ1lycbtv zK5;+y$rd@6E?tFy`S5RZOh?k)>p?6`k3?x325ci^zT5#}Jv)W(1fE%gi0_e4m$>@y zrU5&kl{V7A(*)g}8ZX%&(dA=z ztuYICmd+JFL`iE=n?`$6d~khZW?@Edm9sU4)pM4?R_w<$8E=Bp?13!lNVxy0WJfxR^%mtGk;U8e*c z>d~AUa^{ece{As?k>8t%Oo%|{(6<0Q9{v(gX`y552> zAT%@zYLf*d%Xo>h9w1w8CUau36thgckg1|-j)vv^sa;!;YJXwR&Ss*C(yQv6z|@xA zSRs=zO0t*~V*`b(_R_#!7Ki$pCb@9I%6(uoKPZbN%Xr>se zEPG7eDkPG4fsash)K%zf$`=$6l7`C4 zAcRB3(h(XBR~?6Qz<|)flm5jgH5*U!J5OGOgo;x@gh@j-uqyX~_DjQF7`pLNJG6t+ zawcL_4v!aMalv5o2;)R(4#AdB^~GLqv)4N!NMyK;+QaSbFh*n?2U#ZL-n7kltUwSH z!5~&;JZUDa&tP=R&95?V{LW8np#ipirkC!T({P0aA^-u z3Xp|hT0EW|%ofKtYCNQlA6U(dm|ZuJm*yMmo@>HSI1l$3JPm)o!Sjvij4vql&zg0G zKcUBu$932|jdz7_PZ6)IzWPdAtz2H1J3o7Wl>9JXH|O~WS@!m5^yiAjWbslio2=E6 zcK*{j$N2;N`baIA&HY~!tCmkLT&}3?E3aOiJwKOB;@|X>wfs}?TSx%oM%eHa8-)6` z;dyMTfN&A6->V}Y7q1o2!}0;1SqCp3s80gl`l)e$8v@xj`~6|J-`}Af8*p3v3Q1@kcf^v zn+F-|_6ZfEnoMs>HnJd$ggVxN`*n+L1rmi(XGgac$h7Id(yb#B86kJz0h!L->fJLM z9%YM4ClQz^8$hGBL6hMM=x8Zla2y{G>I#?A9GzDZ)n@Hw<^6{9JTR{-DUp%NI>T5B zBj!>N-z-hHD_v>2WMsSuevd$UFQ^VWq!wjhm>^tNUch~ohS25$f<3IJ(A2&jt%(Ud zj|UVa8;@E~I+9asRuc-ZJ6eiU@Qk`m>+(ffGt`;B2annIV@==)hI*uOBBNLgqn9N{ zOhH{ky(AhToZ;ZjkFVq!sEsetukZFAZGU2?O|Q`PKY8_$&Ful1OMf4I6ZNpp2Y$-i zB9XFX;%TO}PHa9U#0Ok@jnxw32oy8v3RWzf;YUg#>eU48gdi)MiY%P;hkK=5z2?X{ zjuVP%p`4%nGpRSl0$SsR_-pQxEL*(GZ|8tfk3p)%h`h;L3Oc@z>NBY84dme-01;9E z2we%{8cBYz7esE8uy)8B17-9T&p{tb7@163i>t|mkifc9QZiIMW2I7JGOGwmLe&$p z1xMf$hT9H%*8~Gi!q`gIci*CV!VX+;)47<-eVa-pnDZnQplN6yeEy< zwiI7?C362kTNEG4e4tukt*reA8dE<>ATXMZrk+1dVX-A#nLX8yc;Se1P4@nKo5SBAP3^!G;PFNm>9?Mxaxd7pNPlV7$4>5@hjc0NmbPdW5WsYg3_ zCCq$c#$=MY;UoFMjDBg!Fk&eq%G6G+vhysHIGOztRU>~ck>0~+Z<)szb?3EM|H$L% zZhnyw3Rel19b`ib(5@*2yY{R{RQ0%0%|$ZvEa3VNJ@@} zpUB!eJU*OPYguN?1D}c7pq(~lG;Mh zLo4`a9zjBcU*VC2vuLgoJa*(Ki|8MNnqVCZSFH97k8A1Zze*c~OByMSJ&@g%<$A40tnU^tb0wQ?fGcw#13sXcJg zuU$t~8=RLx|viR;#r(%souGVxwnGk?b} zMpZ8^G7GgoqJE#hAvWnMa9h*hZ!)Hzh*DCDFq1aOY=^vFxX&vb89u_e6s&Xzf-b9) zpl~e7MrRm!irIw9%W)wQmtU{cw3Hz5qO9sP zOWF&js!DMsn^0IeE(s!D6R36=L-j>0ZxhS=hRD+dgS|=dQh^=o79eo|Z6?6Q;cH*W+)^nH*H++6JS^g-!b88nCbXcbzDzt3IYVL@Mm18V*!wFX`Tx`QE?|ya z^_^%PmFlHZNvbMUmEO;ms=KP+YDqmaJ>BwnW;~wpb8N{^j17LaaDae~15OZd!!y8! zxCaP%I0T1}7A(0*U_%muvLCz2hI>OuwwvtD-az(l65RkLLJ9&>~-D1cT2-bpIqLJPUOEJLI1|Vys|MX2e79-GBO+ zWO6yDlFPY2f?qTE^%n1Q>z~zMRJd^Cqq$>VlW{64ppX@fqFPf|VG%Vz-~lSHj@qFYy@(ca9e1DP2v`&TGMP*Aa) z^7^#lt_Z6$FF2K!nrwxXze;K?-$v=z<>!ESIe$$HUp1=bdNOJlLQNSN*VKH;3taECgrKI&4kIa&57?yj`<#=Le| zC+HG=Ej30v=8DAhHbH4v4lw=Jkg&cT9E@n-TCNKoyq@d3D+zAd)o-9b_1as0iT3)i z(9JRG)MUFGi;KC%h1>%ETRf%*UtGXnduRBzELtzHic~$0zM^rM29U+qjhn362z(v2 zO~a?R`+9(2nWCSYsNNNoo+1A91Zkf;RXsPlMheMSfh{Np@hKurh-G9X}a|$nlnNGliN#NSEq@VFT$bL8-s(+`J@H$FnTW zpZoRwZr9v>(L^oNd~p~3(yE)DV9DdtuKW0zGj|jU*|ZXgC~ToH%29^Q1)5I<93_NF z)Hj^~@MzO}x%Gm9c6YBBSm|#$&XsN#x%;0l3`}!C49Z=GnZ{oOj*>d~Y!2%&SoOxU z0@hPtwZNl{C5*U0#~#az{*LYMpkEmNik`{n=q9|4TntBlEE>KjivG?YQdz!B$9bOy z{GgqTKK|8<7sL3(lt|xl^vbQ%xD$oGF_W2_14{&fP*ux^6G4p{>b9W7QTY&}((O^|8W*5&{YtJf zsMBS}`hOQ+Lz1&=Pn1e-;8Dv_zwh=&KyuFl9Zzd?(-NP@9?)R9?s$&dC-aa&A_gH6 z;%Mok-oSi;I+HbQv`7_u?qn4^q%V{=VO)nmv=ByTYt5Qf!}3Gff+e{A*N@B@KWNN7 zqPcf{eb__0sC$)ZG!V1$#+A0)J6eWzxQu%Fa4EaabTO^&G389RML1l_Tc^r+XRGUa zzyDeET7vY5Wr!k07PKt_yFlEJ%lGEKnE#Djd40)wWgcs$`ETdGi2wik`s3QS^Gi3y z3lI41_*L|%UrxoKsW#0eL{tdDM*jx?=r?k|HvZZFcP}YuW_@|?fkOPI#ll~E@rE=8 zI)uwfz`Y@mE`dPSEUWlGXTvBP=v?8E1-+{;{LJj^-{I?nd)FF%7llywU}>q{?Y_5# zLc{Mq-Ev%ar0YEDl?#ZibsOSF0binqg{E2y|EjaS-3Ru!LE(}4_;!5$r)Ov1Ps$vR z_2uQB&f=+@d4tG19 z-u^!RLy!pC^>0@4__f_p#Eai<@JDDg)1?AZVtwk7C~u)9fV>p2qLN2j#O6X>Szse+ z$LHtc__dKvpFD|Q2ZM<)r2+XW9^W8eolKK!`2XUuemA}oG-4OQvd$)??=B*&nPEK} zcC5ufB;Zk`Q#T#wFJ@0Cd{RLT)CufsI&dkOt`)=v|iH;QGx8bo({b9Nrp z`I2qurAQ#23#@Ji))oU`w!wFDorc%1<^qH2S{47b+V=f+JGqQ?n3<)uC3su@5MB~` zJ;O{bZ=Ky*P93BOZ~F`8nMC3Y>fjSJ>|_nE`Z$5?k-}METsKL?(5$BI(M#_ z(~{S9I@cw&+=xfC?{VmmnC0?x_6`6pQCuuSm@{2h%(oc4hy z#z${ZlP*NwxcK|*RmRI=VMld~)Q{2hi`Kt)Gawgxk5=^?$F}3bRi^K`514B;Ww5`` zP~Gg$Q4jqj!JdvFFmg7{n%UGFG@V@lyC*Mvhj(Wrjgxi0B-HpsVn#4RazG9niQrr% zCj?lw!1Gm9DjO;gHRTXKq9^<{l-gd8!Dj{gLAgrdP{3%@w4m+=QFg(=I%QV9GZ>VD zA%&e0BH@^B>+wt*njQD3dpmt2Q^bZJf!gPCv0~*@MjJU6V3(Kf^GAeMf z4-t#hNv;z0q;ODWa~z_8K4<1hOd4zoW<+c0!_TP6HlS*3Ye_W7n=)aSCmY$!8#?f8 z=_a0)d+nsQ4VsJZzZ$oL=1BjOTQiC0@I6{K*unq${g>6iwrjY?*hh-zfDd``AOsg1 zauV&)D*_P6V@O@}#XCM&!RnjA$mgvA=)Nf|6QEtqZ}HT`k#S#xWB1x7FHi zwRXtU*`Daps4@`R*+cbxk1GTL!SML+YWONaZND0Y+CE9DI&S2~b}lMcMv3Lgu(^7Z ztK(HKiVU>3-M3OOw z6FfWRlHH)#sL_#wZWGzQ_YOj)ckWWOTsp0Wtw2C4_UYM(x zd9X_uscL1`!cQnleJ-AkDx93sOQtB!Jo~xa$;HiuB|8^Uuqb5QP$)-3x>5e<8M4;= z58S@D!Sn0U@im$x+Y1_EQC>b^<7)*1yd+08vx{pmN`)KJC0S19vuhitZ#<#Lmlie` zPv(p>A1&y*5RR4$HyCkA4#^Yud)M>H1FuC{uepe=*>Ml{tnTk1V9r2mxj!w3PtNXn-px2SKWk zNlpS&Ynw!r+$2Dd^~TsT0>OR(k|z}nV0{EHf^dB-8F2%mX4A8ctTm|RjX2mnxF~}oOs=)bLuAdV88A-~gdeNfHeCfh zASy1TDfC>#D5B~1$bJ_eC8$y^Oegq_0EU@<^!bjcINm=+G$;bcpxd2T_g}{IUh!wl zqqFkxuR-&Hbc$o1c`{c9JS-{TH!MIFBo=8&3|P~qDUg8mKM^E|j6g8_SW&MKRFyAEjCe0$>kLMdeT~3v+(Pu%tb8~ zm483?6F-sriF|S^8Q1xkHvENT^4<+J$VQZGR*6JvR-#r*Sh0YvC$|z`qbJL;WPD{Y zs`1GilJ{&d%s5AgFs;?}8oTqUg->}x-lUAGA1C4I)6(6auDq~vNVe-EXVO+r@fwJq zeUyxBTO@wOBY8)AW5j`-OPBC81e?Jarr@&|FV)@8!Db5g0G=Lulo@>tIuMO0ZDKVU z?w4yo0%`5`rLRDR*Mb2;g}Ph6BwxB%caQ1UGzvwNu-E$}@yu~un5<^p+i9P}%jlbZ z&8jB)_VdTqI@!5{i584)*_wwYcbeo#7L6Lo1oXCJy?=yoXyaAh_JcNQ&?pHbHBrAi zJOD+k2g=xRhuQ%Cp1zgp?(++|9z0R9*)cEW7Ld^cAigxby6>Y%0d)JmdcB^TpFcfs zn5Hp5Z37-f!5_X`xn@l;nl)4r%FVh^MpFzI!;iX8JonWnhQEV4WCyKJCt9`L=T3cf z_&W-`q4i1GyFZe%>IAQ#OxZ#4Oh{ymBFzbC3KRAq0s{(Q4>{^58no;6P&gD3L)!sX zlyzjZ+uy0<>GsO@_7&6Y=FM1|&k3oRSwQ`k3jmejsJSPHMY)A%=1#BIb6f)}3u-i~ zVg+I(F98nUk|+Q9I!l?X6%=#IN1!U#%f^IGL-GR-u!whX;1Hk(_u#-KNAO_uy&WvA zK_(M{Fgu`pY6l*VAwxOHInTaNv-ys3aqP8$hi{xd2Q1|M{c*lrzsF4D8UjaOiDY_@ zIqLA(9wl3W9E@@99)X4Msq$K`+a1%VCI7&6+I_-OM;PD61c|-gG*@5W+4V>%u~Opc zLz5hEp0}r>7FBdD7P#6qhXM_Td!#+n6mSP^$HV>eC^OrHgSc}X1Dw;}8xv>l_NM0$ z7E634!G(eQkU~z-*`spJWXs+0Byp8Fl55!-&oL{9QY{bRwowgw0_(zKB_2^Jxm{kI;M0=5oF1Dd^}rf}_sP8ra!;*K_9*e5t|XqTYDoh3kU@Bxmsh|)|p zy;c`b%$=SC^rFLkym8?32&1_BQtKeO`zCSlj@*gE7kv!8!}sKHpMvm>YuhW3l?y=2*Wz$qs+GgrOc&RW`D z@A}JR2EF49UQOCx&-p4`wEe~IoVn&xi z!>Qm44B`eb*9s)3zJ6S$KOnOd5#uYK?!i>P%Z|H^;70Tz8GG*Tgua2N;Nd>w%c_4! z<{5Y@mq8Y562Pc6!pGFC+GH@AN5aQpGH8%^fG7fsi@W>w*-UXGS6EoiSKV}ecPe)L zTgJQ*l!9rN{p#E1dkgK>oF$l|C>CNUB&)_hOa+f$FkFLW)4>q?^xK@bkJrT?!q+ZG z_!=oc=OU$~0Amy7qUQ-Z2-rD53-sL|BOs5F%WDiy(v|}uP15JmvYcJXCPIOb8P%8a zVWoUB6TX{bHWukym_jhR^wTfO1;uQvRro+=C0osg3$nF&+7$xT*10dyG^ybM{Xxqk zIG{)AT=>W6KjHNw$|T4<*dp=qeph(Gs!|IOZ6l34o#>p|n9S}T^#zVJEgs#WhM+&; z>`LSdY)}rY(G<@2yejjv#+7W6ak@sC4oFZU7_*>T zELghW0#e5tIj0HaGPd9w)^s14*7kPIwk!2V$m}iD^1b%XdYRpRY*dtwcY$L1Fd$r7R!g(q~(4D3LDTizgy3 zbK!=h7Ds(OT-I|5ZFy#OWk!zb>6-dDnajB5C4llA~a!+R^_dOU&FFPA3tvp z3wW8ihj|c>jbOtt_ybg3LQT|Y+61-Ij^M#s$)Sc_;_+BiS&Kw%!q5rctwMZT^|g`N zl^682Djt}IPJe>_D1A1hCa)`bqhxSTq>--hYrLk28wd}LuCK0y6j@G%LN64>sFl;T zSVlA>=ngT(BM#^SB5JB&XA^ov79I!f(NIF6lq`qR*TP$YTy$FvPdf%8Z9>jM(! z33xg%?M>U7@a%{_SMRn*_N8vW|DF2Y$fk7Q`+K~6|CiEpJ*%6aj6SXBes+5sAWVR& zbZ2MUR?`Nm6~~>zvX>_CH9W1$24eI>63^i}iRhV+wJ2US+V-DkG+?NB&ZY$CbZ~=x(n~@G=;GU7>AIrtq)Ftssu3qb;$#Rv42l*})a3 zCtGuX_11%f>83b)d+xY3t!~S0yIpqz2b`UZ`#@ONs~nMFjG|5OW3ZqJSG7;WJ;nh_ zAm?E*&+U<_+i)$WKx1%Q_VF-uobh#do43|`5)=|@meH&Lk*K8~CqXf8r(GX@rC#rM z+`*U`foA)oOAUvhjW`W->8PzP;PLESAuB0^Z1PZ2+)QtMvWV=qg~l*h=#$HVAge2> z`DnM$$fqL8Q|?nU8$CJ?p~7-R=J|+b>4ipNwp(9t-8aQ|E{*0BcB0M#iAsFQT0y)2 z9yJfPw_7h+dBN?Bsy~ufA0>C0>Lc;M{}$@Cd<-6f!$V!+1H&{ZjsbV14Bfv&)S^8B z4na_a+VJZ(0rTJY?tx*iji)2GJEcF1BM&sAm&s+us>N8i!}`T&AvsQ#ZUYM{SPU9k zG+~yFWKaGFyez$*s&>IcFf3Pu{&&s^%A=vy1s^Y3=SLf2DM} zP*$?16DN{pF*1{}GNpEACQ>w$ClaT#O1W^kv|P%Nd{LjDS|wOLfFFY8P;QA8M#17X z5V2$N$0pSFG(>1*bEs2e18@TW(K{URZ_{7IEe%O;{bJ&DHEQ0sM1bG1`VLpD1D)tq ztD$$e!r!KU^Ng0{-ugl!u~bFo6H7LUXzvlL5iwrgV~^$%mw1~f!pRxWHaLYsPyIQ* z^`pGn@R3cL*DxajDm~5ZC(!ettwM~eOQ735+Z9DLLhcxuUM^_K{iFskeRsId2qw!g zdWHdZM4F#>fX6e0=Y$4xlJI@m6qZZC<2Z6VS+#M4AXE_?V?@y>zOz%*I9{`0Rz^YR zl$I3B`^02(RwWJVeI)&!u->MPSZJr$U3Ygj;NV#lH&2$zszCq^9z91}_ll3C-yL~} z^BK~QcKT!P9dqs|KH{DDncc*4@NHNkdKJ?ptf_Vb2-xXkitl~_tD#;xGXMn{5k$9R zC6!V`QC#y8Zlo{t>!bAJqZoxZnXwETNW~UQrKJ)|M-0s@E*A|gkhQ27lVr({>Ly>p*{{pmlD_08a=$7120G1UsD~5TgDM0 zo(Urt&8a3UD_9F%M16977f5M{nPR-mxiGh42?}sY_D?yn^o+5MB@dJ8h2wBVH6175oFymBM?YMaY-!x}H_(6fm!m8PM=8+2zq5(db81 z!vb9Z2nn-?(}>5YvQ~{C3+}BNzTeQE9Fhc?5ABex6xP*J{2`+h(+5<#zd~Cw7z|%5 z%;!-;GqnVA2Uz?q@}Ur)PQ$jy>)}Bz8V<5-FdY34Q!LBB(kb96yI|^>V80I;LzDJr zKujTd-U!Qx5n}O$#IBlJv;ZChd94(v6_6N+sNH@H?B5^0XoOZYGyu~z7a-4cx#v2dF-Zzy%y=T0b8^ANTPGSA ziV4Apu7z~PXtj0;)oxg7zla-Gg0;33eWl+*kZ7kFXf@NHUX%JB3Ks*YPL-#ej42hdCBEf%Ybxc z=xwv)F_U^Ui*WxlYxmS@_dE`pwYjsivu7{E=Er7id&bI_%lYA#VQazXe~_cmxR^)^ z?~p`fC53o2`r$+@my0dqg+a~bR6L`jo>v&&4EtVbcvC1p@c08|D}VXk%XzY~$bmgP z7GfeHiU^rW0T?~BTvo5HRmoeu;>BwKmzxZdFV<>pa=n@c5L5_;Rj=)JAUC5kXyb`_ zadrjo_F5~mkG(4QC%IRRu<-$pcNRPy#AIj`0ik4(+#xVbgyPlT#mWH$m$-e9aQ9tK zib(>SKAjEo#x0dR-^XRlr|puTjz~66s`>i6J8z;7#B+G)O9I zK47kre0$kG z2L1xwN$|_@+yuG`p@)QP=Y@Qs|7R_rh$(k%bInbON??tRDv$i`BTDqC-xDRo23R0% zl*Hdt5`kzm0Ce8oJwnT!xpv9;sx(KK71ylh&+or)J~cPLK0lY5zwh`uStS1w8^HhA zUy_-T9mmI6C9$t%a3wK2J3HTf=%I(u&febM``-6Hh8f4pLJk(J=qCw&6w@@|UaH~y zipu>!-cDx-JfE3{2d_1Tyo0`NQts)>=%)f;n8Fowwz{abuO?IZ=*kHKa~TW*JHxXS zBu0~i(HxaJhQFU($+)v;=USCL2mi9w-5Mm-_bHh~hM;P4356OcdNe$KFR*BXJY%=q z%nC5^wOi@R*w1#w^Lv}%&l#tq_-u`W(L`OW+WJh5pX|8EnPO?|_ga&2ofIR_E=LhW zh!R%Ge4w@!z|tPphT3@M?YZGsISzz90y?|%?ESNSL`d#B`<*V#>U)EM-#%Jq0!x(D zNuMKKVz!V!$mM#oCP01g=9|enatP~{x4s?kf31^oa|=DP^+C*9A(_9GYQitxv(akf z*QA_7>s;_O;fc&yik2ww<)+cBfmHxht$MRe-v%MMGj?{p{Z>H?oq2A!i-g=lC)0+F zA%|LHZCy*=%J8P;W9(j-2NWt_xfartjhT;=6pQ061NfM*IWBFLi5tHwJ8E)f*PV1g5_-$u;0$17u>*s$R>ykGaBphWR|$;&Gogi47UTX@EN%_oZ1X zSE*fr(u3nJkkoX3gdM~ZuOETi2BPsYjEXVEcTxe9HJO|#!MGQITcRKqMC#6=X0=Wq z(sIe>eFZOWnH3mUN(m3-Lp;HY#p?kNA|$R4G3kY9fE9S8RE=mh9N_stATqOshX%i8 zrC3E zMbvCysd!6ubtb?GfzopQ@f?eb)53V_&T=6^2n#G4eksUCxRA0n&ju0CR+}Lq7!Cxu zpBI&&6pOHuu`n0p@wJ$lHR5a_Cf;PzF@UvPt zCfWCwvoZ?er67~PT*Q^S_$z$EnV`UC*R(X^cutR5nQ)0;K8rs#bT{d$!l?BDpIG7AM03-I}TzSV6Z<{M7^N4HP$ zhLJpf$Lxk2(PUGKrIc`;s!jzO9u1tF+l|J@b6+zmyl~q3SKt_kWDQLcCSo}r!ZXAy z{|UG$+>4v2N|48yTYA}S?-nb7f~i6ysVuZMW&(y~7bG4Z zCQR$7TIr()@4j&1ZaJiD+{{L6K}j|WAqlU}W>md!_k)Bmw)*+Wyh3PC%44ea+k+(> z9u^&Z*8`~Pwc8S~HXco-9)0G~lw|71HpC30%|@fuYD9y|p(c#+G!^2ttsc&Prn$+& z2x8$aDL}Wrf~Ccoxd`lzHlM^h70M1h4hj7J}{rY0e^Et zdVV22zL$Q>^GoHA%ZOErO{)ypa5iv$b;mAz3aP()&Rtq^&ynr4SIQmk?{sg!y^CLm z#`BuJ8rO5US5IzMUAMYPwnuvP)Pol;Jow;^Hy*xjNAmLhdxPXiAFjfk-`Ln#I#Rg% z;f0NjQ%f(qY?8=*xa<}ba{5TwTUQn~PM;phX8VNyD^KvizemOzI|inJY5^p}Mm?({ z#iF67WxN5do0k6fB!aHD(^XTwe!(onq)W0I3tf_9_(LkH6becd1!=1s=&X35=gZ49 zh972Vzo!;KcdFW>D%mDUUM0O118i9PIaPYsPS-TtZWki4p^0W#?wnkOJ&-CF?a=TU&`+M;^Cthot?R#Zc_bDf#9^fjKgtlnJxZaicKV2Dr^4RC%_{ z_~D`05Uu#_rKPwLQiTdHOAD?li${i|DoTU%f*8q15+}vC)UJMm4rz7*t z#mtc*xHq$uE~O)}xl@jz6>d+P$@CI)WUaf_yhcnyN9MIRb~>#i6@3M3d9Ck_kzxx? zdkeuTHdXG^^?Gz^)3P>~)G3^lZ{-T7=7J~JgR>t7q?E($&R(P4ULDqv>Hc$GEz$as z4h%MCxf4xpb|ZJRp3?F4M2UfmTqgo!fA}&b#rbqDQGKAApPM;xq{3enlLZ}rnRbq> z$%W%*4J5!?NtQ~hd1S6YdadBPh1yKf$vMR%^8{k{pMM_zJ^%dC{uQp(zlr(|_b#%K zt5$PMg^n$$O=dhze17bO9CF(WZu>Q+(93`d?xq^ zc)72ic#@Fe?z!e$o%&?D7VXD?=oQ3=-xMs5e3AgF0JDSrKZ;swx1|-&zWv>cXWsqx z`d=pFpLCoT%w(+d=yT6K+L`rj8*eAJA_XusYE72l)|B;{zSHWotSx72vAftsJ3BkW z4hhG>JssuKeuQZdY&@m{tc5l#np>!0SLuI&1eFOypU28Nmf5Q|FuPiw9}!GQWV)+a z-aBfCLLpv`&&9>sJVu(bz@L!YKj>W!|3+6zqv^E6nB2^h6SV*8k>y**?eJTMQF`Ovr0mkH}U)Y zypl)@_~4Ul(ugJ#;>tY>W(9Uqsg!+vBk%pL(AX*zVg)v*iO&TTITye?&*mC|@Tph~ ze?fSWh+VKh;sU2QRNx05GoIN;NP9*{$|KUUYah{V;xVf?kV{Q;S7=P?m#Kbp1O4hY;h7ifu()7m`lxwemXGq$s?;jz6R&j|!~1fG3}n`zbnB4mXOtw1apRlvq<5UgUu zXL*HV1ilHMi)SzVoHcC{c8gyo%#b+%4FY(lnx4}1SgMrF$(j<4%+7~oDXi%!D-w%n zaxPg)#dIyDm)!En^C!!0Fc{1gN@^w}^QA%o@hF!$a-?3s@0oCr4FpOe9}31qK2T1i z)MzejAeIlsLcCZC1lV9We&-rV?pa*B^Ixly>n5iGMU-JQnC1|nODBDH2j~qjBmsDdbk5;`+seE%%yLo z`&lpq9-B z<$`4vWEMX>NtCkncp9ZtK|(TE%_d)O;00jj7WjYrNm$4~Dd^ zT3yrPst5#gV?5Lw{m2=(y=~93N~RJ2jZj!YKdsS>=||d-L$&cY=y`nO#quV{;_ZAs zR%SU9Zv#AmGQb~0^ozU+=ix8Hlc(p~=zMHGkIqK{EIE1}<>zCtp&!V1dGht5|It4- z;*^5^TxRZL9%i0oo@U=i_YPvw zJhYfLNwhE^e-L|X0MCw#2xunqsAOXi!}AQWczzrQ=uhT0F;gKgZ=&gFW?bho>t{CS z#6%iTP@*PsoNk#$KnD%)zPfhr576_Q9_a`}6AtKh2U6X{%=M>d`BdZjO{0c?E#p#_ z#Qep)m*(`Icga8aVfu>!rEemA{>J~ZKKrPsc#ZfM_W6|)0IC0?j(>MTKc4dQK@7$W zWjY^)Td-4s7&Nz2AQy0)MY=f7ExpxgxxJp-GA0uJdz0y}tuFrO$@E_#ar_p^Y{u&= z%R^Ld84uPHYL-=@W`D;Bu;??KEF2ei-F&WS^zm;AVL!-RfDiGkT6>k zv{oenv<-`XZ;>qgg*p3vdv3vT=AGGlXYn=_vr9_2bZapjF59tiY4yIe5sL|-uqC2^ zTD8=oQn6T0=dDmM5)2y!Cm2t}XR;Al$(5>7DppP_a&Ttd$YwHG2a+BfGa*TqB}s{* zk!J&iN^?CnldCtvruq%dVuO6{hE!tB`SS<}P@z8y$IW_)Y(?b7A7E;h#MEuO3CcJ6>@|DCC5;JR z9mg|tNv^yE(SC5Fl6+&sbxC4^+u!dwBQB&ae#&oVo?_m@ybF&<2_E7Sx!wlhH~^Q8 z$1pPbfcNVB=tT09GTE(+Qy@tOq%C-%E)5!2OOv3-wquAx!jcsUzHd%uMfUR$Wur<0 ztLXv_xq%M}D=6eL-UobG(6#Z0QG^Z(`x%sm9Fot!mygRXVG?bVph{wl7|3z{mIW~; z1;04>K>XtHzg2iO%t2md3zyGv0;}`O0*&Mmf)wbw=5=~T2F?tIQ094ok41C^ z)T3N9d|~#sknH6(xg_H<9C}wO7>ubu)XKZ{87{2y6<$$Cu^$5x&#_4DdoM{f1n@Od)lLEf=RvZPjOU>0b;%*P+^A|@(}@sQL?2avLe zFNj!BxHzY$mrn7SVz%bQBih{ZdZc2kRP_j7yDg&C5p&@}ZOIDXcJpF=L*(6uE2SF? zLMj%yZ8c%oE0vZJOeyL@Dkth00c9h`#!|94_O*Q%eVq7dXYg~lMj~e*;nIRMu_zkv zTP3nXB~^~CG$%i!hE)=To6MV4^-Y!{2#OU})ju@#XRJ2?RjnD;hrhXvoR+DVtdeMm zWwWHCpToPRaI{l+WMCSG5Fo=StatWe)=JYE3*WwqTS63&^I8n(2W%OfJjl!NS?tnw(pY_Z+8Z z0$W&5OTMvu`P}U6xw*_zCbP7@oXITrZ?)6;A5R!}JFa1xZP(dPs^;vu+t1DZV`h2X zJB^vZFi2Cc1Si;pam(gOB7i{Qvv3RRb`$ba0n}cHd&(s99QvblCGjIxw3^T6vRQ7f zeM{>xTTi3s#aCRvJN)dkA?fmEDTL>s5I*mR6HzgN&#NrD#@W|ek3|!DdU)mR!-{*> z9S(waHAo1f#y&W}^*RfA&;V6kr#>#DNrW%_l+sxi1PCv7EssF{2eB-NwkX~%i6OBd zOc1%9PHVf}YTe=@F<6hqMLyUG@}jP;1x4fr5Ic|10*eCpYpyPem-2JmQqHRIcjJRC z_tGV|RmU&qk1w)pz)-~XAjbvQMFmSL?8TtKma(W-4v4{vSX(!Et`%6^oC^f9CO*bc z`_{Nm7S>81W`2Nq6Z1Cay(G`OZV7dWi?*AFO|u%B6SS=_)n#F-$5jwJs~~vdU7-lYBl#LS}9Xg*KfSMK`STKwb;C(EW~Q5s#FlGsakBF zMeYI{`2Fbuwds#-Ji-?pgN*auYB{&e-&I=n0_k3Vtr0hji2=`r;zp)atrjyzPHe7= zIU`*ZC47Q@sJPyt&%~}uIl^TojwRt7eiCMx1>zSIzz}3@22P_9U1!q*A)pz-R|Jed zO|S`B0-j+68_SxA8F*~qshOFznMyLN6qH-mln85@Y&86FlZ_~AYvCx{&c!lO)bEVh z!0(u;&EUUHm*;gZY{hO~jHIQvE=CjKUQkL!yAH>B_YrL?+(i|}A$H&sglBn7V9r95 zZPNPY%WSyc?!mx5H@CAhcg}t}J=hzQnRkYLxpnvA6KBpmv3PguzrT#$_%?0e=9-o_ z%M`hft*K=T@<2U)UcuY1P=LJh0iFZf?ExV-aJI?YRYr)o5uuGGzu^I5OxJ*;Eq4b} zHX)UmiFkQ4hwIFbm>+9|Zwc4U)_}-?A}$aT^?m~;Uch_<8L4&k-9OJ2g_l^T!gbIWlWp&lm)p42@ z7BPBBt%sZ*Z~}C(aNji`+o09D$|TW8!9}u*zw!Oi-@^CNN5=V@$RL~pbqG7R@e2*! zq&)M?Gs>IL&F?w;&Uc=D&wqaR*?0d8evRW*C{9Y6U>JJTASB`(s0>H(SbVbxk~E1C z*e9&LJ!4xjL!6#WM3TX)40q$JZzRw<&Xp@pJCaCwXp%dXm6geO)Q{k2lj33!Jq~Dd z0$_=4Yv^E`a>)CS@@ zi|(T9L~}gBu2E$#PEEPAQ`ta z6M2ATt4RT9Ju+8NNjUEv68CoNmoC=vU>pFsG;m5ggjc5BZe6;B<>&t7jWZpOOY^)K ztE|?F_{9pv?5+ZzJ5q>qzv~1g@~3r*73bVqHO9MY_sB>>*+#r9Hg5m8#sH{^lh( zvJaa}?H50HHeI<~7{&HphxZ7l2T-p!50xr_gi6ddsI~XvM9FRC>&e2U#H*39yX%h2 zZsVHXo+w_*zItK|U<6h`=A{pV4eFwo=>$lwI?);_^Sl2l5%>nQH|#j5<9s*BBa!Fs z400mkgKuo2uvEs=L&wQsRg4d=;Mt$8mOc*kDY2Xga77{fsO{I5P?5yfHfvT<@Sk2ldZMj$5p8|#<{W83Sqh`(aDN4=KK)%| z_|0?B;5K-M@8Wo9?ipx27eoeak0J#F4?iTvf^5g#!|irE?hc%U7xNY;jCA-b$Kg{0 zu)`sI>Mluh)lva~bp8NAbl&LoJPcGH%$WdGvs2~1B+jbsVIFv;Q@m(e_;2)j{o??z zM|jkp&pys zWI%~4vdVI@h$6873Lq3nWemI{$Jh`jV*v~WRDf<#6tuHbC`=(Q4nK}0MGBxqdJazr zk`!PA_;g(lg!u5>h763K2vRgY20zynZ(g_#_X$`LMj4YHtsFsxpds!6sO4x$B_eVG zWOhsx;KYcsM-xOfC6+hSmg87yGfx7JX}K+OKQa~IaPo`BdTYJWBqf^`Y5~c*11m*A zig)5t;V1PIdKC(-;+;oVPCCxXm61JxwiB$EByET+&_00VC}s~56&g(d{jW_omQ>_A z0f@2={I{tVdx@^v9}K`_9|=t8Zmd@$UV{%I72-vhK3vELEIf=UXF7d%xC4*^z*909 zAeZtMd#uIyAB~-xTw_JN%2de;Gd4(1-CyHCeY_BUhXPAKKLMH1*|ajV>+83zM>i1z zU(V;JaLI;W+l=CG*Jm@<<^;~QLJ$ufV2~gSZQa937)g}J0497VW3A=ZXlW)?l>a{t z!;p2O_zbT>JIA$V4^6LoB4a?j_b3jaNs@i)R4L{N%2Ry}#=sUllyBZZuZx+{s2O|Y z#H&tHK-}SA1rQL0L}IJX3lh))hr)e12Iqya`o2e0_+NAJIf(>U(u`O_j_|A!p0Y=X zj7GANu*BngiSU%^HO2QDlj~ta_?$HYC#u9uTvhBBhn-2(SlpWW{n^;bD(XT@VzIsq zt&SD;XmcoLBQ$8)scxwJ2JO{29)#LR;snKP*^4Fc_(qC^&;u{yq%{o)=i7w8CgByt z_X@F`)Q!4n70Zq0$n7;|@dEHjv4`4wv`pW;wF_%GBresL zvZmv&Y{4qC6Kh#-#O-B1{dAAO@JxoK_6ko82kr=aZ?gPR{Q9BtA-1+?9a}|zr+bw# zj#lDsAGAl6z&-ONbQND84d1^v14E}i1>RVLU|}Gj)9~ZQawS||;4VCH-C%~}LV-$<)i{|`*{~|#YJQOQktK0hbrRxw_?e^N=k6uIYb*tUG%KY>C930_CQat+X z)LljM$L-16c7oNa4oEm0Y})TxV-4YxJ�yh}LI|2T6K)1JC-@rqyj ze)hiK$HMdXt?%w00XqF>cAO>gKvz6}xHBPdjKb}}L|Mbj2-Xr!FFdpX_Ky1JsLau$ zEB@2H|0v|myuK1&dOY>oA4olRIyBcqJCjTpJ;%kOS32i9cNFiwyLiX?symLk1%8)= z7pZ@(8b?umg1^&0uGX(mvJH#254De})}SKD4h`b*^Nv4+o+I)P6eIUxc zek3$x95qsH_mIoQP5OnPl7!)tsd^rWa_ zE$?RZBSBsaa_cc(y!Rf7kF87LK>oS=HcyBmdzx2%J;U>vUk?i#Sea!{Y~J^rXMbWS zkEw>Qw4cp)2pow#Z20|9`VIIbC>WayC{68Qr`NeM0cGtV9}216?z#JJe+*zv$S1kc zJtmTwbOHQnm61$43N7_GR1Kl*0TENY{$`!#zt$j9(z_6;YPDXe{PFhol~(K0rFMDM z!Ji*|F!>jv;wnAQI|`@Nt2=JXIq{0_YMCJOKXXA%US$+XQkW6j&bMV&Vwhx zOAyDyLe*h!NVo|!ViJVjGerff-eQNonH0P3z;!P<&P5MpN=rJ54n4+=QiKQOT-W$u$LB9=}6j~VOVw2bn#OPSms7)IML2Bbu~KV7a@I&EJM z0kWWm_plyc7VPpwL5P7x&M;bDFK;=acmXq32L@!iNt!C!as-#NcRNT%-lM&tw z$2itS)pUdlNFl3wU6?PW71n7bVuq~nQd*59OY{6(Tj zh{cMc`bzG(SnOQqd^CFArHe44_J%idfX)KXe|5f?Pkyo2>-Tzh!%tMDwN$MxFITHe zg**fo=8;Hk5rjOim5!^1@^LNM?{qreGvnnVax`NKXbmk7#EF=^JlH!As)0apP_cQbZANq~ZQ}e~;+9B;UG)*Rl1C`{0cwy(Jyr(4f0>e#okITHIc4y~^QCQCHI?(3Ek<8A<6h36VS9s126#_M z#&c#eexSre&NO*ZlqEq(Y7|Gq(2{`*QFFM%@jOQkT*B`L$3IUj_(1>MswCsG#0F%J z@9=z(4~2^Je2*8fWA|R1- z_)3h~xbfmtrq7&FTWiz~D5mxSmW!9r#=$|K3OYSC*-C17&d1t;K{2|2`Sq@4TRqhE z#JQ)Fs+t_YNh809*Ost{-GAML9mG~^Dob)@s^vQ6x2YXnRs~|3fCbEBkgHcwo3^NR z;Evk_#0!u(p?dJ)xb+8vaKua%)=KtQX#2i0+(F&p0sLYBO*OnccG}^6+!xmsLLosi zmZQE6XF%*}Dl-SOhCXhU?-Q?i!%98vD%==Fb*;fo1$#9QW=N~bw2hBlDX+Ro^@^H& z(H#y}QF$UH3o%oW<_D`Y6b$hy@{HY}UpTU42{pP!`W0*1KD#f$}jS}#I%af3n z1W>a)dU)XTDKxPJ?GOv93zFBB4yCcdivz4Y?J-&<{$jsF(KNjU2=|jn<=u!<%~ZnzK6=2v zrBHdpJpnN+NfGIF_8NiwS+n0&j4q@|Vff?c=Qrm|$pT&$@@iJT6urda13u0xU>_TJ zgqKOy7SklQ)WfOe9v82H%7W3T5xN0*)hH)Vtyyf=eqm;@5{kt_PswVm(!zQhs_*p; zGrg1vM_vrCwOZ!zYrW653y?lAnP#p;qY9GySjU`CaiL7?B`7{DN`Vs*cBvgXU#v)9&xj>TyDZ#@I{zu$cI32eiy^B+$Y*0k8bSh>h z#F@nzF=571=@=4&Y*gh`ZthfyK+&d7&2b;$WxT>FVIhoCLNKI?a@rInGqNboF6Q%# zv*KdJlteQvi)tt+Bu}|g^vB>~|FNj#p4t{=MPfOb#{zU<n-ox`3Shl$p)^bZr zTd}2__LhfP_F*=VTZ(PTKi9_-s}+~StgLJP#KC5Yf^4dD^CeaP!rc7)r>$8lIfIp} zV#xk?X**QxlLNmTveR=z&lcs$z>qr%_%3iD08xVMyif3HtL&@PA9RO|HXt##gY~t9lG(G$O|^ zD0Mb|_8)Widy^RC5Vz`CaGRqNff2>7(Ta3jw2fbFuT-}$Un2Fqmy}LR{foUls0JW* zJH6i6U)&=Yk0u`JCL(ytFv2i+xZpf8Y&VS_Nf+eUE^e*y*X{{(+pK>X-IgAHES(P} zwXeROsJ37JvLDOimlr2L7p-4|ZibAQ17;6+l!MEPHR;l3|B zuLbed_A__`?#m~k9%GU^dQhUr9=C>G!D z3Wh&)m2q5(^11Kr?2=!##~fjbha2#}zF#EgmZng>+B+4d-uZ==~W}!AjC1L zL|y|7AoAdVT1y^%tPNOL)hSYdW5YUDl0$9WydA9P4LiF@ZD;s57mS>t=I8S;p>5;M zp0fu5ad@Wiupk^6m^EY>t2V%3-}Z7isBGr*%&B;avLU2Mu<>J!fT+>1&=*e)|MJ_{ zSvw28GA)=-CNkP zuKPB!PW^$iexcoSL+FKcZ^yjOJ&E4@==zPl4QKr991wdCVPwJ63?3xFV+556t|YKl zB2j$Z1@U872F^3$m1lmn-^WvL5C0$T>^OT^0~*;Bz}Hj)JW>*UhRY&|FGL%t@j`Qo zrC5B%8Hmqd!R&S78$Kpl$>=@ge(pM08FW7!2)qVY5K9?Hc#6MA9aBujN9y>g3Dk>2 zHOYs#ipTSlN)eUp^0bpq@PodZ7V7ui-e{(}9q!BSHfp&OuDKn&=ykk2w^6wU#RoZD zGVpB(^-;3kbm?SXzJjaR?z+=eTxIqKq>_%mp3rNO@EK!h6w@bBJ<+Ud&N+1Z_Iw=Y|U_BDQFZzei> zb}n(pxScz0-{bT4a0UQN=?uYbq2?%+#z}#%J8q2(VYT`y4W&{k5{c!76?^tqh!eE1 zA~KVVhs7X5K`|Up&X^Ic&~ArA=G5T~u^6@XwZ+b&hWY{*;za@2B>500IHsjpt|FQa zJ&wHN2S(4p(!+aY+2>^Qpo-m$o>1k~^=yb?9XFHv=ZLfeMy3;YrJkRHZQ{51#tRXLP4Nrfeh^9r}KSxyS zIlEymIL=*jbDx<@#u2J6PufWoYKNziKyws~B&bEf80Q{Sp`eY3iDLNW6zX(ZSTv>p zguS*;&XPi@uIr@;kFdk85LTTPxC2S-d;@IFltq-J8u>u>_%aKV6nS-EVx!gwBmREt z#)TzGnVE&y(O2Jjd3jY4FX7GxrB9GpsP)-&MY=0exhtZjEC1KRjnloq*5D%>Si(whI=UJW3ESCsRzHH)~hY6Jmbx~+n3nFhuc zX};YEJq50xi*~gHLJ4iyA@3hbWQuVMF^PB~Yf%CI7uu)?C+yP`@yeC>mLNr9al?qm zB9ibas(rL6cPX`9A}lNTxNCrVR>ZAQajS}0y;TyJoEuBAkK@(gIGcEE9(vaHa)K7DL?eip%~4mOYXHjcP}1GC+tL8)$7#T{5-J& zPP7Afie|_NO*$aSOhHDcN!kX$$2B}`y5AH7)oGm{n`p)!X&dDCqQu!zTV&e*`ktKFw(G>K z=z~r;5Q~IjPaD~E+^QQ|jvMZAS=^z>1LYL|oR&<-p5s&H2O^sDK*WfK9(ybqk|VEp zSXMQeeegj=SLM|>`~&sNvk|?X@Xwm#c@78_J*r56dO|IH7iZ$;`q_0ee!moU!u?%P zNOz4h*UipecV>?`Y$wY~99tHJh9`7Uk#qu&qb{3WT3^btE1u!_6o&0v60U=in6_ATNd7^_-+zrR##`j%%ltn^DU7ffkv(7Ns(B5A_C+ai)ZvFU63Gu zxV^LaBOpJ%v51dg0WyX^Pv#s#Y+vedNp{_`@s3qLro=z60!t|@S8wJfiv6`j;w*=T@cEILMe4sOV7bhb ziO>j?XVhS?t3^s1X3@SDDOH#k*Fe~unDXlCdFsc2ZWXF-sxaIwq}*yDSIEqw;B2NK zIgmQl2a5@HWw_Lpu>*vy=~gRksB&md6ivY*T&^D;$B_}++uJ;@R;Du1CX0B1@XEM~ zg>K>)ZrVqO`xT{lVz`@#mo%$zuO2t6W?a9wU~#vNk_e&ozZj0`X18nVv2aDy_%pAW z4FqOibB5Q%(113zM;kuP3kM#oHHg`7;%Ns`MNJD>098P$za++l2z405CSZ`mw*tWh zr3PFphxApCU9Ch&*EZ3Ajs@*nk+W-SdL+aLgM27b^>;p?bH$n+EYu!LU(Oau%xp1x zIeqd~C(bRe-MzMa?!>FUo@yrIYxwo)Aj<{iuqexdA_amR8~l}Ub1k00ufN@Lmv22g zH+S~dWp@kcN7mfeRp;iauXES#sZHSS(TG+ohk}|h%`0H}((s9yUOB9);olC&VsD}L zFvn5D!!O{^VRS=S9rX6ykV zG_Kwy(&tUgoy?ux{`2hGCrFWnp(8AG`izS=k?_L3jQrKi)1c4Mbv$}HWlA@yq zY<2NrlC<3s?N|L5&p;2gQmI#HdHs!A%oA62E&tMzC-x~jX?Ewx%R-96o! zcF)+J9(z2trHr2$8{*h4XAL-G5}bhSIDudSF`!|S@Nh^Vq#G__vk6=_z;juFdEE^IoFU|eFbE>3Lch3uUnQ4_urBa>moH}*RcfQB}FGeC-Sqw+f zp%e{^Wi1jB%kfxFipB9zJSOFc$K=Ohuw~ysm|*yW1DFxh&}|D^yH@C7RC{~S>rg&9rvH3_{13|aopVfM zbQoJ%4O3)>z!enH3r!$VA#YJQmFqG>p23Q$P2+|rddP?3ci(?J86EsdySue5uVPzs&HrIS8*Uy{2$W@mA zO}&mo$x8brbB>mN6J+>6)-mHhc0*Zvq)kJeg)gLTPsbEkolK@;s``{EcY-Bv7$h+! z`IRe67;mlMN{YGwQ}9-w`ChXgE{Dav7j(oZvKmIj44;={1Y=_wb(N*ph-GvAz%%!A zxlvE5F6vPJx#VA7jDI(AK#yDHqW-QwI{53(o6!*Yp=8`6F*wmTd@T9KOW*xT=zFW& zk3$DshnhZNm^ci>xmH0|Ae?KNR)G*$WyZ&&3eNH(qv#RK)Js*!)0uZoR*ycubjQ(^ zUx)6K{j2HsPAnXQK`T2U!{=$7gV&PllW=5u1rrq(XZ|Wnj!$IaH^&wxO4D%2G0KXU5NvL3|)+`El}N|`kE-0I-33|T=h$DHVKO|F_= z2Sgkqy=Xihwd1aK+pQfrHZ6Pne32-O;&kwJqivXT>`>MW&3&1LIpX-Wq#eTHiLk&# z)!cFlP?%m>rSdbHlEy))KgPUNk6%KQBnrE$7(7;>f?*>E1UDl^DfjSI2X&&$ExB!A zMX*96yWB2a15Q)^yZzRBq`)iCXe^l#@zG!n77D{WUNi~@mlu?PrNP#@3T0g#ivF5` zK^I5@imq6AJhti9c61!AMN0j}fG}yC0D=vo zr{5;sm-6vsGMB99_8|EwM?ZC4bLq^uOTwLAxI5zbi2?DEhJAv z1;w?sg+4m%9k9Xn8`)PKv=!#8^?=z4HB{s)qt>i4 zOufq|(pE0wZ*sdkJ3GC0yJh5;3z3hpC>ZG1UpKm4W2?o`s_o?uHy7R2<24yL)C~PILWzGj%eNw-2e)4yOAb zR;OLvFl=?Ya#M98RzZi=se?rwUZ=qhD{Yjk7J$-NEW|K^2nKh~jC)umDngpWL$plH z%+mlF1rudg&Rn4B1tjv>j#~B=Bg^?t);uzdD_YXetYj%3e~EM(`+FhRA}a*$trJB+uw``Ez-us zIkLk7RjHn}PZBr*b79*ZD|;4C8tm!{{NJWqhlQ(+fPZ4asP-VLSL4h z=n7pYDh|gQS)`UvL=loPiK(`TPS-2X^PFECTyp!I!t=zf3y}Z;C1vj?#jqrW#h-kq z1jqc+YPW0m2VSJ(C|aKsn&sYXAio$?EklB&tjcPm=|qPv@kfM?NS+X!J~z>^j3;(F zdIwhVGg3foi{7`qiOeXHC!;yn-g}Fh+VUi(6 zB^NP94S{5$HlP+68GbPiq-_|39n2KL%qh|~wAXZfn;vc(bS~aQhcWCRSR$@r25oX_ zunmW)1J{&^*8PRUWNI=WeIuGjnk(s9>aRiHyB( zpUC5}4Ni~+zDB~^G=^u@caC}f;R4id=(bclLPRjeEcwlc-NP%?m2A#;J(%w@nB9+76wLLoroFmp6Qx#` ze~ie&w=OlE!JslB2jwUNCuk8Vkck~izu4? zb=7hDRC%V&wYO4P>-a)Wt^aM+QE;*$*G^${62Eh71eEcuE-sEdUZLoLk zTJ)wT?!Ei&dncx0gug~346ZPn(kHG}oo`G`yW^d>dzxIcDNN9QOK1HG#p=*`K*KqkxVCvktsDCIN^sW@e>6ThZSBS1pPs2o*&JVuQ>9nTBYZFr3z1SnPbtTyDwU~Y3Y@xo*~-EEBbsZXQqOe5aXaQiiG}hSJbgjV%(LZS zl9?cf9Tg8f_y5Rbmec9G&x_6~$5ox;d4cWxd?vG$$=n4W=QwW8DOfvSy~g>ZyVz(f z>U>)e?x%lk{?!KjGt7_l@72cQB0JLN*_oD~*5Y($x{9L+%f}3dDlx-g!gQeeEQk7U zQw2R8CanT!CdAS1tn-O>a;WbN}_SepxnJ{Z41@?&;~f z=Z@TQ$B|2S9DxsauLcuy$97Q}xrPh{2KmI?MuiEKLoAz`I*5f#t2xj_h+~x&ZJ2_r zciOR>s0F>vyvF4EPrLf%0W4GGD_A@eq|-Y#mk6%jO=a4pLX3Q$LF#EN9BQqg)@n;_ zY+|h8?uY|d`)6Hmw|CkYqlP3kWDNLbw{KjzV)SuQWG^eq@Z}EEyLgsx+Mu>V+!za3&(dgx%=4&LWikKJ}m^@oqFHes>Z zJl2fTBUf9FeeF4Mtu+8+x~IZa36qRUd9c-T^&liHX zpkF?+(lpoUqxPv&WaNDk5nBT_hwPBz1i4;o4StVF1{21aa3(vSO2M|8YUE`_kx|N% zhcsPp)N;{`VXUvxc-4Jv$RB9KLu9^QE28ig&E>%sebkg&jr}y;qO9*g(V+r)sK(8= zF2)h*`ugfHP7HJLk2^LISE9&R^~wdBlNuzACZ#H;zEIJm`Vm#xG%pmW^NS+7s&rL> zjA~Ff{0@PFhfa`_pZt7x*ZXgHnDT&0{9TP-nLuH<+Z9FsMek7x6_WAfDL zKud20PEQq6alxY`e>bVRg?LKN8Pj$B^u)}unbJfyuckd-f8glG(O}LnazWS$$iB3i z&rX!!jEU2FecH%n6LSiN(<*a`U2V!&oG3JWQyT0o<|m52DTl-4qW*u$2Vj*Hq!uCM zn>hxW;S)r}`3F~^i_iuIQBf)4wkSiZPuE93KQHK zDHlW)A;4h$!6H@Q2Q`^;WpWf^4gSO!sIhtJXMzHZxIWI!xiOxGY5=lvK=Y)B0GD6Cn00-iU1kcwdoi47*-Ny@DS;>~2 zf|GEbWHjo8_sOv9tl#hS1f>5~a{4~t_kY0WEOCet*Cm3B=lEZ6N>0~Pa4GIpLULm!Bsg?LQggaWxJdnx07=TsaK(LGm#8jD-)h3 zev}tlz#|auQ73V75-);4E)Z1mz?aTY2&*Z%IXE3kfMP@xMl}e02@*i9KnVCH znJzh@nl2FCEfRP^qa@rMaS^B60~K)z1k0EkAQGn_IuS{aM-KMl3_(~v z0{0yo92%L#3UmzkI~cd#OZA-%8hgN%aX>;iKxmC1^l=*Tg}^c~9$iO^&_eE&E`}fAZLlk8xF@B(ak7H?Iie6R1A3uABE42SUBwU zkgOaCOf{Qwi7))L5b|<-u&kGZr_H0;gyyAZ-W6@U)i54T)T2D-4GED(^e%c`Pa>H$ z%POVkhq!p}rQ`7Fo2b(;B(walsvC{)KKrk%AC2_9sXD$+UZ-_z-MEhG_3LG4SG;Z= zU%r0j-Ze9wnT9_MO}{}!<2R_GW?d&UGd+xxyGZSM3DbXo;}#lQnk)`RqzS?zaZGJg z)Mz%IQq@#E8&xYC?`?D%=Sjb^anHike7=xO7V`5`3-@ePwzsy<-_*5L79M}dwVT(v zcE8&_Z`ZAyRLe)SV9){@LkEjVL}^m?;L;E#4)cu>T{2yuuW##p*!f|9CgX?KThxUG z6<%H9&{+nMq3Z^V89qhN@caGsxLU8PamOgH?z_gg)f`c=+{8qzrdk&ZxIQ)YDCi8Z zTQ4IZDNgWkpdgm1ege9{m!FKMj`)0MQb)cJZzg^5($eEkR+Fi?uaY_OMS7&Nl(EkF zCHN|yg0G11si}Eco`0n>uiXBfpPrvrHs({Xf8y8J@%2y6&&wNC%kK3Dq(jlqQ`9@f zm`+T45as8oEf&QBtiM6@Dru_Zi_dc&#S=1MUU2)x4~pIhd3(q^*mJ(=-_M^q_dwG1 znDSjm{vXckPuvB=abWO20*dPQ67RWBe&7S%pDX^peGM8Mw$DEII+{f@9NHIPH8#t^ z{3;&6qlwfZ=|1$4gO;^m5h19Q9sux-JZ-& zt)7H$V@?u4UFa0$_wWfTAg;Qvcc#_GO%Jx zoG3TW)$8X@(U?MvQEazi6o*q_D3{ZzO#Oi;AE;k-utpI~zu1or$4TlX9#Zige5yul zuF#8CQGbS>MnT_2A=YQH3I+>Wcq{^16*LnUwU;$h=_sBpkU_ryG?*D z_9nA8^3acNUho&;eD05@LE$_d6e3o95axrpU}VssHyIRj)j{TAQfFj4R4CK}7#RIQ z$qybOPtHCkKN9nsBKm$MCW9o< zg?6{{fjP2%-92P>Y!inGXKWY@(0DWL52Vupzn^}us*X|a_6tLM!@tPdFy;## z{M~THzTeWI9v1$yJBt2^&Ra%?)?sl#SB4zfA(Ye3k!>0XZQR)1ogIr3yK7i>);-%b z_Va9~i7m5n{8}tY*SwlxW-|&y{RVktViX1G4)ozt*z0=J{?=slF0yG=EE&WKVWU<= znu)Q9@E#2dU8Irg>Mg_Q8ZBMl!sPE=r1PTb_h$RtaeKG!T44-FL@?jvWPulhP`YkQ|H+;+&)&>{#PTyhjdhV~s>Hi5e;h|MA z+81GKZlyMZe@A2_3_*)=|CXxM?qBS-b<1CZKK`U*(Zs`GK#(KoDJ#OZgs{w*6vk2o zMWH;81Ku)b*x|hM`H7m8Dc1^DTA1}^)C!ZyoKF=Op|o_w7xF4z5B6m_`)TA;n9T5V znaSF=?)Pka{Q6`~HoTG+2}zll;38T<^C}a4ItTIQ_+`a6QtZQ>y8oj7BCBU7zN_Liv~2eOtk<>GRWiG}s@3a%0tYmMWHV|$_^ZDf%&VDdWo5}o zq-XW)Lj7VrvA(mu-hN;$f%}Q{jFC+k&tg8!ul^yO4e1HKHqs!37xdsYfLoOo(K73QB$u%PU zT!kML-~<^iB*T3bn+UyBkU>Lh$nfJjQmDX}DqN}w#ef1=s5jC5*ObYRt*)M1TRX?L zwc4|i^sFbn@z_g}gsD+%Ti8ga&-%}%7b>YY)GCrxnb=5Gp1++QgL9YZueJ_5X@MSk zVOYTG>W|Uy-jdpI4KFWA>CyEbdn|o!?0UY`Ms$Cn2TrF6|}E1ZIL4Pu;4I-krbB5?Wu5_gq(s{N~9$r5=sbBNzqc}x#wLoleIbH zh_e_=&&{5=qje&uO@2(2RHy4szu=BaQplG&=JLhVU^EeN#S@XxT+HLI{t=d?iE%x6-wJFb#bMRH>>0*r6c0aY{!ENDtv!LXLy7`A_QN6Rj5l&e zX|7g$U}K68AM4{J@Y3PInAD7!UZC=NX^Jxi6iZKF?$-3+*B{1F{0&5=pbpaO8L4RBz}c47n9z z<6Gn@a*ZPj4|7;#Aco<33vS0QP2(btUYB&bz1|+tO*_xu!tZ_neiyZV)x;GVU8N!Z zM!U1M^=V~c4gM`Cr|`|Z#>+|rgY+88W{c+3G8z5?WRT!qqgKhdCl{zXEW;pGut+l0 zIw*AJOBTszc&9QgyIe`v?2FSc{yxP}ktqQZ4GPxVdtY|RaDoTUD7`TK!qW`Lr9=On z+Z)E$V%bT`iH2-exw1?>s|SiisudV1n~Sv|fl-m{RtEo9Y3D$xk0xDEs^au;AQb7I zt89MLuowJGDW~L=4aIpDL>i0NiNi{~f|wYEa>07pC)XgX5Z1^9X^QL}o&r`ZGMFir zTj@`eiRI-)a(Oito1TUj>9VNEA(V~r-|6?u$!Yribj&V;2r|sVN-9XG?%uqXEY4g* zt+SJ=q`t?Bn*OoF1kwlFr9bqinMU8)V`avEleNZ3s=?kjH%*IJW)%B;iS%i7CPvdQ zW;iTS5lk+eM!8;_;KCqe)C{$y*xBV$nJkGR9}#W~PdQz}x|HyIi`%PuM5pq$nYVvI z6ho4KVtT?ag~$&H#1|IUV_kPdT=#e$_xRr{xK0iJ2F@dQx;?Ro7D8Z^kQRxJVypfe zc^KB5k2#)pSm@KWHDZzfR?#Rx$zT_8DUMSD%0|66uwE}Q&kZJ23SwDS=@$s)hQ}J1 zbg7u9*4T;=nV-;;hr~H|38E-Dvni+B#m(?8XR_iFi0c*CNj{QsiM-pN@P(Y5%jp() zw@dK4gI-<=%4#|mh238xDhDC`OQ1#e826i?PEeJAm_B*7y~Zg>dz zUEb|XthhOullWsI5xuVGxg-}?1xXYnr(042eoq(%p?H|{DG|6(%;}PYaiJvCQi_X< z#{!X9FyiKXF1M4&-lXF3dwBoqaY6n#&vU+D+7tF!Yb9(?!I6V8`dN7TO$eWV(}q2N zUu9A%W~2W$?fb_k-S_bKBtG(Q)yg9-z*i~mjsw%k(3D2hHI5Piljy9Xtf=bj;Ik8# zW}oo+-Z?{>Gm5&RC^LhnGG7Tk;hXfmBQ(^tU!@VN6y=PF>|*sGN6mA1MP6j?X7bK0 zcHPW7Xa0ENZ4W*8pc5`W_~nPT9(@07W|qAA6f5H$p|57%{?J1Yy09GQgIf>2Hj^2{ z#4&lgiwIAHI;>3kt-ZZgzuW5W?!G5lK0h2Uy5z$Yfempz!Ypl#(|$uE`HD5V##|*$ z6N;j4!DLt;DHrady4Wn04*=V$2ab^QiKc7Y)l4XfbX2}9N7IQrWVCz?fc zjz;kmgHOy_Oa^vei<6=>6<`8nbVU|^cr8PStSgxDy0q`oX$1efxc~Y&c755z#Tk(qsUz1RE5VdkPtE%& zmP-q+-!m^wi`ivJF0Os@8#k^&d4E}l)P~`R8HZM?L%$r_%P-P6N*Q#Mx?|C?M$zW> zm0fOP)Ex~T7(rGqHf#y;_+So0Vf!|DdP+x;3pF_zPsEdQ?Kakv#84>2_I7OIeMHwU z)(R8xOcwrS;uD3M$v%;Uf2NsG+}B?CjI?Mz;i2~>TCf0c$~Q0n`28zfqD|VpP9^r= z+pCU?*wXrqDl?q#F>e4@H+d^Jew4*NiWzE97DP-c>&wQrA&=)<^xN$=p>T8KSr(Vk zM7Md1<(P?Hw^Yt9EyuDe?$C_dY08fd7hC0!r6j}Q+A6@INn@64+Lt>>XxpT)y^Ji5 zsay30>i>W{b$oi7ub!ILr%zS+(eAHW2K>s#N~si`m@dgM1i5@6!CP|kDZw+nv+oyd z_mcS|*bM%$_-oS>u$&5c-GayG2`K@usEPj2gtfLcv3oH#D9!9LP4n?9QuhZe@d`*l zUXU?7RnCQT3yb(|O)0bCHZOD)MJEnjSBzOcr|N2spT!lW7TJzyJ0|-xtWVo5xh)$# zB`3t=LQXLTm%`eWE7~tIFmJQ(TU@4Sk10B;h}lfcm38q}5;mlyM zP`)YNPFUM!KotbDdW{>)DA@A4W$J~%QN_VGVHQVN<{ZwIWlH?kSZJ2v?qa_{mzD__ zS#I!VEieG?*OP;Xl0OpBkQe0nqe$4ESazo)v;}2FL5>n=+TF8fi%Ie`$shTBjLDpN z$5CF3NavTsD$itWf!vAZHcDSTJHqSlP;7D3GNvrvgJ?L%u+XT<6K7Vmh|g1WRR*hN za!xMh*f1hnSz{QXn?t7@G$hT-$D9fMvTpIekch6pnoLm!7jNHZ@{>d*N=ynPG>Twm&Q1}FPF=wYU0V0 zV$F*8v$(o**W~9OUHkwA_mf!4UFpnSOV{MtK5r{=9N&cb(+~xWpXkRw8aHpe_ZTdFo!J@B2flfPpI?v(WRrZ=|?dA`Od~wPAQroTL%9Q5h617=9Wwr#Ve9sE*Qx;1E@#E>R>B5KD!HMNz3! zHA}Tzgya+Hdx|k3B5+(huMx@T@sz6hCHEa#DGrAR zzr}ct#yO#*G=GU&?)Tw66c|2xj`a8Tlo7J7Hu!*!xs-#wJ)>`j+-*}B-tim;#yOoe zO9>f%@WA;pc#LObRJ%a<7Ghc_sbIq$ArF2gUqaoLC^lDS5f zFKAX`nbAVTio>FRaqxFI=MtE2l`l`fFr7EeXwJcB&B94v35`w~Trp2_I+HGsHf(GA zxDugAK-imy#SBXpVYygn&L7eoZL7Q`ON1}I0A*d-*C?dLV3q@x49~+^R}M7I=>C5b z`nHp@#g&*fz{(da{@^=5>E>_LQDIWtES(vMt*GD2EcdP#d7vqgKz`5R6;Yu-zN< zdOh-C8%ptx-Zh|G7*RV0F|(z-Mm_{jujB|ZJZ}sLD>UmWsNYpGFRBfy9LYFr|JKP9 zKfD^OueWY%+&&lZN-sX~@CU!;O{9JDXl2D`YDDgWMFA`A^~6#^~Bb zu}ZFaZF0|vlj6aP8z)bG>w#-KP2b`R*7Hsd=?25t2VA}o-R8pom>B`p#^YmJ@2kUb zry(AvRYvjfQuu=r7W<1E{QY>~)xlz0tk_+vbj$xTDtq<@bu8aljE@}}1$NCgIKNLO z;Xr%PNVS`5lk$OplpD2@pS}I(n{2b)ebPE?xCM53TmN#2Z&mcSjJ@4#4bG3fIV|1w zU_I`<<(mBKt2BO7{5M&%^VfM}bN5y9*W|r0P6Uu$VU5UYE?;U!7i(%%5y~+2i7M4# z{-|(iaL(@+zbq!;<^Mz^cNDEYVTwf+8(FDOX@@50!8 z$rlZT0#UD@z{=AX@Ot6&R}qLV$h$-m`M9l(e=8OAx;U3hbc-Hd)HuNtQ3?|gIFWOS zQou2uJ6SSUhWSyv7xj0ExVjcZipj$`iEwi;0u1Id|BlbMEiZQxxrk zvZ{8{6C~Gch>bDsll?*_)hq~@J>txke%KQTL;`{RqP>(=kHAT|asBl3zNFLdSwYw5 z3i4bsz3_D!L+7P_GBKKq@>ncRLJbS@mQr3~zc4xb=Ig}qdYdTitB(BC?XH)^@Z6Y#XS$$fQ9tFiqeYcElP52M&^Y(?*U`mPa4Rr#{XH_>X(N?Ctm75|yF< z@d7Wp1d=7tm%RRH&L@Wb(eTL^vNKuy^W)R&C-p~Nu15v`u3xZrKBGj{a9j%UPC__d z^l~1_?GrpPZ!R8+hLQ-JeH7c9EMqG#OBBz*!W^;q+OVe{XH4A0()2}&O*S56(;U)& zApo(7vtXTnU`HJ;8VnXqS?~YsFMESQ?=MTC(95tf`mM9@`Q#X9?N`Sm8O`X#cE4|g zBNr@cojes^ zyM?0#vRj;E%RZCnEr?*O%HY2%3R)m#SyvR&gRieTKAg)hpIpuxh(vm_Hiw|ES@}(j z-%lRJZ7|t#)c)H%L@u!|uwX!D=U89_X5*-?Fx-v{*I&%Z@|G;ueq~I||FU1U$@!Mt z>&Y#Kmui>NG4k8@C^scWD2gT_qPow4PaJ!#t0reR28)(%aqXsn1S0Exo?T z+~KzCN;J~bQLGI;@0gt5a8g4n29=2oi~%tH?M35-X}R0!wf25$;Y+v#K;OT!2#W=h zJpVCcXZMF1V;Cnrid~P||8-I8MY-Gr)f~%ODb5x>p`i4fHxw-4wD@YfO&sttvgjnv zQpU6(Y{FSzFzEXx#yGdyoz{rI=b}~S^^x++=;sP!C^dPdI6Gr;3|yz<_m zTy2|e80RQf$0%>q4eP&YTl@=#`sZjYcCKNON+4rfU1mc!V%AxZ#h=v&+d8t_8@iF7 zGLGDH#F!#&W_5&v2K@ceKX$wS7&(qnQ%8>A_V|#KxJ!LyGc-rT#(dpuEHo+b1!DQi zBdcA#!Kk5XN|`lJ-9+H+1$@qYY4+~fy}gk4IVl+Oz^#yi4Y&s_BC}5X>0nageLgqR zHx@UgP}sZa37Ks)hfR|maq2NFcnB%n|GqP)x^t$(KZ;aY; zWp5&BlqQP0G?`21Qk7qLZGYd{9piT#>@hrKUo<8$NaREBu6@kvf&9}ZFCg-oI)wM7*wf@o=o{hC8^9hq(@c9n@Dz}=DYC4{L<`H|B)P~DPsZ4o7x<9z!H>HC10_+W1K;3^ zVcC>$-Oa=N?TE@SeiwrX2hucP`Myhb6r z|2?%S1W}$E#csJj)p2g)p}f>`Dc z7L2LCdaV_8SRF?B=M58IVT+#WE2XDGKv&sJEAkr+|>ak}v$HuB$& zNid3KxX5xoNLk3^pU8+-F_p*+v9uBcK@G#OO!`RMO!9kr`H?dG>4iBr*{!mDX2I9e1FdoPxlt@5A{Pl>E$e0JCN+|TtmC9yK zxczpaX0vA&9A_O5fy5a6$z+tNx{q{@G&;1wq@~~Ae5KZi)8=THn$Blc(dCO(i&L|+ zQ^jh`=MvRye)|8und*9fbX4Cb!cu86k_;8NrGPgV3`tTbnDYjfxI!oynJh`In{N*P z;G3fcvCT~_n$d)@)E2i9WzMZ*y-eb2gu28L4Zp=z1`8@}BDp3GMk*&8F;!P%pkC=a zhOyUfw@9no>7aeg@Ji+EnX=avkGs5O#LDe=bQ9Nw_J4!gWf4`+0rTy!e2i8tj-&}= z{CHny6mr<47GV?seWO(91#AIQk^zU#s?UVVG1sb zh$zS$xO1ZTO~&1XBA+Z3eri7Ehf&NNRKGeCvE~cx`z0cTLWp>+4Nv4%g&jnE8-E zf(E%VF*AV=HhcJES`=wS+Q`?JAS@emOxNK*em>vLnfxd~4Yil3n@b;mX+21@@9ovTy{up)}H@jxyTAV^=b_u=? zULQG)bR9AJ4wQ0{5hIMS(XL+(`szg!ukc_wyF*rn1LX|bCIf?g{f}jxM%0nRYE*`0 zZlg?r`>H1OvW#O@InO9xV9-((jNqFfF^cz(3=X(P9s|A`7x09tIu#d}a(NJ)LFYgT z@jDYPPImGtJnSwm!Mj~95x?-b@wl*M<-qQ*(2s*!;&e^AIJZ+EDGvUnIDwP6NzN6K z!GrBMfrXkm1 zJ5C{{BJ3I2W1uhXlkm901U~4aRevwND8J>QfOv8*RZXR;N9Izgx$r`0Bm2w$kv2uI zU0tc1xcBD`S&bR3nEJ!1xg+L@PfsMvXGVGj%9x|8)+2{X$itmNC6)p}!ws=Zh>i#G za4FxVkxsdaQl1I+M=}P{1Cl)`=#)mZ_axPrK9PHJBNjt+ z?&8gCQC>bckQ~q=c6Q+(X%7b!4OTM;2NcvMK8>W0qe11*wXIQ{;T1D)z&2ttp!+fC zM1fpEYL?aMO&Ew>pR+80VRD{vw)`jz-odbCQ~aE3JWj<=XT0MS*KjBeFjb@XL{?q6Co1$gi|}-QoV|`>E$_ zP(;uhJ)THxSq@8XL-5wU0!@Dty>&@2+)`Lxjzv74D;F+|*CR@^jcz|sk6aity{=Uo zM5VRWfY!&XnXM`?ulBorAry|`LOK=>2?B_%_yR(!(@_pPK3*SKukHz+P;@yKa*J8f zx9k(L*_P-I#g?NXj{rxOe4@j?F84!iX7|@cj9D|b#nKieipAn4kGFnH3gAThN=@vix&jG<&S@R6lk)f0RreSRAi+{QGzkf^P@ejTS+gvc_ z9~$?KkC2@mgqL&ppP5)^QQRVLF40w7vcn$PvofA;Ke~PN_7>S1?8wx*D3e|$FL#fg zSBpjUjY~WFv3R123=!Sl1edn?L3`ByRHZDnwjAyen?@6pXzQqN(^sKMUzkOSUmWx> z{Z&mcL_^et$tl;2egB+GcNzOUN*aSy)o$}3&Q($TB-&YtbXe{|=}nKNHoS~|0|#P|&9ycnmgTA|UWXr#yIDK>%J zpHR;=ZlP3G3u>;M8@W~Xo_Iu5#7Ca+_{k!2%P9fXwMhJ5U3uH@3@*=-XMdITVB+`z zkLL&cZWs64{z%0C+k)Hw;DdYHI_s|vyU!OdOn>jwvB~z3sW1F3x1&*zjM0k^6}*oH%2kJ z@Ic+DY>fQo7h#=<5+}=ZLT=G;IfnVTzzru@t4(!QfC!upZL6n)^Fc8ktH)986qX zXz#%Qa;0bca#vBhUEAjocG3%Q_d+8i|J*)l)=17$I2+UqK6F-@YcmR%FWY2N*loIa zkx;R+Vy)2qx@dcRzQ^FpPJs;{oAuk$*Ji;l@a@5L8+S!n*hM+sAvylYJ zlIcvy6Pi@;;AD+tCnq9VIlCu$y;67ZCBHkEjcwtFt>h<=zQxIVMUU^#xOh$>6Z*1F zv`DIuDc6HWC7xBY@oc>?HF%fXXjBfy{FUn9Qgy2Bas|S?{Cz@B_V~~#__@#d8?8o0 zc54TiZ935tWYrHSIY>sVa*%lJjh4 zWySitp~TPFP9EtO7ft=5hEe>ts$ZCf&Rb9_aMr#_O#-Cu^=uq&OwM^2k=JisQdMlI zL0Adbv0Yg#@-0X$BaQFLdFj~f>@jIRxV(IGRrrHg?4?-jP4j2*cW38=D=VY8xr;-+ zZVgw!w^$$NwV1wdp;C>5)ZaH(Epo@TdB9B@2&-G;*6$ONn#uKBxi#HxyM1$Ve_yxT z>QH^?>Q%}Q-h}z2gqm5A<@~bXBs4f2Ba1baN|_-Tti%gqd9lft$_+&&|8U~r2OfC% zgdjA;u#lMW&3)^fZz3Ut#fC6=R*tHf99fUb`SkCstBRto3lX6q2=Sm0SPzEQ{X#G< zfU*NeeL*!IZUudlp|~BJ%IX)l+IGiC0dZCexAHiix*$K7y~)f?jGoCw z#80|KX=&mf^jP&!6W%RUfxlDEC}GQ<2b-Jh#2G25C_za=C%NSJwDIR{57n1F`|d@J zqAIPzxO4K>pHwrpN8I;*3pGR@fnKj=+umdq>tpOo%>~Vij3DydF-u ziH?lQq~BAWy+f^fT+l{PMs4n1D&{9!y$e2;Ds3pTKr_KdW0?Kk-|`qny+1d7cY8ZGcQ?O2^sD?U#|bBbGc|8b$oA%Q%7vR8 zC`dhfL3wVochH9MFVQhDGmN{X8G)uP-JGaD+3z3Lrc3{VHnpMY-MpwRntyY%&1xd? zjpTjVl=tW@%iE+}x6~|lD=nLS+k*PwgX+Rf_So*`g8I-y>Vmn3J7i3~KX0bY_IsF<-%arNxvTd?{Thq01Df)K@^z`TkvY}q;KWUKYt z(p=UI`&U=1!A9L*T_rtGoeF8V_345c7{AjLD=XRTN`<#lJr$0^6%*DsesM9}s^ zb3~qcOkfYrWTC2UCPWL*Ub^Yx6`cuuPGOV0k z@)am23O#rpV@lOUE0b2GQT9legs8e14#^=9;cJ#_meI(9xz41QO*?ln(bnh5mexvh zbAfn}2&$h`DskKH+}v&;9D%}VZm-i-u9aHFMs{v48&FezHCCO{UiQaRJ~dj^<8atv zmrVtI7PRgh%k`C&aS@x>6VE|2f0Za_%IJUFwIwvOfS-4H?2?9l>N-+d_~BxLa$ILo>>AA%ZGZd3g6=Q`~Ay$lD)cc=ehlcY4jaB0v zK3LV`c!lg5r6R?cMzHH4&_1$ol=31&HppWvLj$o5%FG3g;*TG}#wUKfA>FDciySc10 zK+fO~X68XLle{q4s`0NUa9}MNKF@_WX1oa;dX2otXU<`tB`p(&HA$mSn=n2#3k~!Q z@ME8@RP^tv_uBcSaT{?|jOSs$kkHp#JMAYvXuRn}yJzj#=X2Y&3Bz;+?HfG}#j#IB z9$oyZ?c(IHt1}(?zrgrBfjTra={|QVXLqL-Y0~HW)H`OY9$&G7&3MOqo@hezz^=&z$+gkvi+~HJ^CT9e7^3==a=5zc&3*R+$DJeGb*#Gu$ECGlJ%0xE5ZpIzvnH z+e;e!a*m^V^Hc@&=JuJ){I_SQT7Rh2ucwlzHgkc5$o0--=Dr=qMwhvsW;Ts!sx!j_ zkw0unO(C?*1R!{-7t0i8w=C9RU0qvS|H1XO8Z4|~b*yE5)hDVV4=Zb2Kp)GT&XkJ3 zpzA*XJEZvVoR&;#b8Ky`hHz~iTo=4tC{BO-OnDtDpwx&u zT`*FHmK{D=uCr{GTBhv0xG-mhTP5FnY3Ac!%+hl8730mjx=srp46L&6+5S1QnuW6e z$yheJJFStgVwdudYG$O;6xxEZq#TS5I7*myUrbrZS>f{*=zn)Fq7C*m644??PmgHC zKoaH4G+eX~)$AgaHIqP#>~86LA6F3+(_S2wE!)bTaX9LE$ zUaGHK(8dvCdk_A}v~aq`LP?8;ZP8mmy4~(zcUx|O5=Dg=#rNdQOsK^ne+45!G4n&1 z_pCl-v>0MOGy4b%LeWxSkrdGkE!=8RILHpmj?mieJ*!C=Ckos(18$VbjIzeUF+QJ_ zO%4R-uwR5=gn|(?O8MRC{YPl`yr2MGK%&3OCLLlyHqlDxr*e~sRnmZQYVRH)=G%^F z?+mM2A^sG~rE8H^OO9wyB09|z)0rcrdXMDO!hilwqUAO9s$HyKcoMO0-eho@tb^vr znes#^&J}uymmO=4+syttrVgp3fr?LqLDNUE`%n<2`SN0w)XlqE4`VN8E!QAl89bbt zGQ2VGC3tbg!7olfRj9=x7raHdkCKm1yYt41&(rbvdau3Gl3TKud@MCJ_&9p;@HI&$ zXJ+^hCu~(7cqKYu^wU4Hlq?Sbm6tJRL8H= za37Md=AAxoIB@hQXaL0+ouJOr8rk1qn>c=4&F5!h301i-j*ro3Z1uw0l%fz=V`~ma zRfK9s;CVWk!niK0VH!&+4v}T(0DBA{(WozT?5cx%RN#Hi{9IV%H(z;$GB}9hx3El2 z9BfwyUk+=5%o1@tB1y5?d|32u{_`t335PYVGEBmB?`uc2;G8s9&be_ynqf*~eUun) z2W74cFx!a*WYKEc_O149(}txy6Iz*xd4#=TQe};_-DW8&mnr z;PVXobS8T_+cPd=#7l>?km91ZjalLH)J7!`XfsPu_xyQV4n^F|pB*v4P%+j>{ZM!z z7V8g6fY0M~i)UVh{ePHwiNOX*uB6M-23j7UaK;SdzcTaEOdi3qok^!;=V|krF_Y-0 zr%`CA6-EmUOF62fedPi@ogTS0R)K5-L?)G{e!x*-? zb$yfb=~^W?DTe~}`}5Z*?BVR@X4dE-q8t>uh1QnAu30FkWbL-m?Y7Or?YLJMkKjNA zcBCc2xcxTLQw(-Uy9Wv#+1_eVRUPJp5gvglC&THp(m=21J3HO3-bIF)KK^Qp{`5du zq#iCH3KB~i(e*)(v#L>ER$ZvQ=O#&G)jg;)cY1>yFt=2_Qsi>@bdsIF% zS2areuBkiAmNpN+LwTNg1|{1=DXF}N$S3C-QA~+O`Jk*VS`c<@D7TG8nd_ik6ARKo zk?X>BxlEI|pmw`mT?a*cYl|3{wx9{O2Avjy*>gjkmtrwRWqT&r$T6@(v%dD|mh@Y& z27_O>wk~bK-~O_j4O%3u3c^%~mQ{575|j!OY{T!(wVT;K^mp_Q<{EX(3d7j6zU_3< zvo2!$UDw2qLQ@H3fPb>Hvvcu~i$ibP>Gpa%#*nWJ zIVI4pq*4@Yc&KrJQgcmF&B><9hHGqiahOT9?pqC7yWXK7m=T?WP-Jp zS$2DE@d^vS)LXi4;`Fy8Yp2#qB$HW>Cuu-QFohV>(-X3tvEVc5$U3s3NMlY? zYMo(CQ@MVR{4L0pVN8tIkgHT~;8IzkV6n^{fe<#)Tkz)H->>zN;6 zWsXU8dHP1TC7GFoU$$Aq+YG0DD77A-r>*T^4|57P04u~?2^=~Pm-(J{io01=UtdX`Y- zW0k;Br`73xWIi)*{SjrfKQC?MwfW6RDx5vOQS>$oZjbWF@;{re+wTUKZNK~b z2a;J&YgRt7mQs$LoaK((KG$lwyQM8I7s8dDF>cOCzdnAh+$TY9&!w6+RzqDaGQbkSx4S~ zV8`#FM|vKA57sJlhaT#+9V6_p-dMaM)q$F(9VlwP^VVmXMP9Uac0kwIrrWCy^8;-5 zU<03xwgE5F-r2!|#6!y|I2>s5QE4P3dvBUo7e^Y0S&}g-LZ(h~ygq*HVG);^Cw!E@ zI4Z?a4Clf)jXCjxcwG|^99z#ImpZ-eUazP3WCTTo3Al6d;>BHfT{LZX`>&TAzhch1 zVz?f*Usb>AfXTz?8T!5plg?oK;ze`rpuVKEqfOCi+4=>Bu`MO-D!f)(Q~F3LG&LS*=gbHxP-zACziQxfAmi4jgApSP`T z_Va+2MGLV=MM|`5H-bvrZjE5du+ps84yFtjXxktPj#Y(fB?AqG?Nx!ADjZaqkBgF% zHiAnM_P3AdaXGmX?{d4Ld7|7KO$0n_8yo9rGE<>#^#@qppc5)iJlH}mjdyuyvxFpx z9f!5H#&HB&NOI;}{IG4vP&dd@l+gm_S~Y4kGLZ&JH1cIe8diqoC1?jdooo+!Q~6Xf zvJ%VY^|`5BDivOdVW1a$J&prc>$dzHYkP{JQFe6Y6~(gGpJNZ0Ptj3-nD(Of<% zie?W`UuSu~#0oSs-J$Pilks39lt|~Nbv>U{WxtjVr*oA$>FA`3@yY?O8dwWzz92j$ zJ}Kr;7edKENbimKX}=Agy11iAISL9i@sp-`G8PQEzF@LKk3KXhfs3hOE0~{Wg-DRS zo=5VBav{Iu-V22S9vB2YfzZ!{@c{kmGoHD4%KHJ`*pSkCTH1goH&!SmCMFW4!i%_x z4L`EIzNUCQX&8`FQnf0jV2m2s`kaqDyg9uQRr19a3o0_K_o06IU*Y+}7>R-{?n0n35=|@Pn;PYt z1)QLpW`gTJe7ayhcJf1m2$bCpMFvQ4aOc2(Wcb%t@ATo zOE0m?j8T-A@lr*~#3Dj@;hfxT*k#yP_Kv>vzQxHk@`5c3us2rzRQ+^g?jun`^!H3X zV##9WJ-tqCOvpLu;HmDxH<}HKAVra)5ca!FbzT*4h)DccXfL zh31;25gVz=vb>;}Vd7VF1jmLRfaYGi-!*zP->v;WQ?9&xC?bu zJL@V1I)Ht0o{j3~uvvXE{`V;7D&2kPL`#SW#|3{xsDA+V=8j`9*``;_F0Og}Vs#>% zRRcje2a{)vyq}HbgHIqGsw8>g&F8r=w=59xq!95Dq4|TbyX1@bJf+&S;O%9moaet+ zRHGi>aQy#M@*(Q=Z&oQQGD7#OBIQn{!7)&Q2?9584P%}fO&E6;X|{4%CBL27XiYt! z-FtLHH6p4zTgtlQQA6E0daw3CrFC0oxqhFK6BbV{3OVDx`oo!x2!A4fOxk!%x)atZ zazwjRdTc{FmOmjxZp*9$Zhz}zslv=mA@$f>Z@1xD{t4~pjL!&Wj#6H1L7!?E4x>{GoDzUWvrnN(4Ns+#r<4ziLL48&a&KV~;uC%P4 zsKeBGT6%O|UR;#t-YA`hd9;2)UH&Lbcr>%5NdIY$dwOt15Gs$|nG8px;pCl||N?;IDih_GZn6JJdchhPY04dYvBp^>M>|B7aW4N$ZdN zhXw0NM_vxh>WQLOCsM3Bq#rOh|Pj0pJs0v56 z*`a666KuRoVT)%hnx{aQ_+TK=9eSP3H3;eqF#O2vUR%~8+uPeRa!$ZVx6|(EdZ)b; z*7Th&^>I-~-ZKF2jzo))BT@aJi=HDOw{tOn&LabnqD=r{{#~(&I~4 z;Tio32S+DUpP#xzYk!-6@L9%F(NE8()F`rM8_=2eBrlvKxAGYyU9)ji&^1|yBGNme z2+;|hm4(oNVsfS5Kl>e(NPYD$`hA4y?DyZ$IP%c)$;no~-)fK6bRBpKW7KXZgF1?6 zCC&2iQfq`>i^!9wYfGzo^#SXmPxj!de;wt$v*FZC-@0~CW*4{cWL|*YJIfec3}QN$ zRylaS(Y;5XCe~O2jH4pm!64TwlgEm`TRb+IO?Vbg-G6GqlbrZIIh~3@M^h?+xrrlU zJcys)J$Y;r{_;zaN~>6GRU%9GW~MSkO3kLCAy4^;FNh!a-#a$1H*z)9TMBf5r!(y= zX^sFw>!q@c`s`Ab-mGVW(+Ri(U3PPR=G(lX{w@qE2Hv2knwo!v-4w-8V?$dw;vMGT zzCbT%!h=dD=JG0GtiTpq4_d0fp>Iw!`$y(hk30~rDHmeBHnn6?CaZJ;zNxG)gf}|7 zhOR|uG=`-+yiV;fIjTFb=0oOMn481{Wf1S37nEA~fg`JPNBYf)&78fE&PI4)y#mJ* zXV`bA=z#El5?tzCB zRqj-5~{9(H3Z#_^>I)-}ir^yaotEJg}w*zL53DU%bQB@?4`TOVQ z?tdIN^QE;?Y3(#_E}T$L`roF$o$R!_y{FgKp6+#923_sb&4*5?Cr-Xyc{{U((J=xs zbhEHFY&q^iB<$h{Gd4p49DTCY#f371UxtpDXB=rkT!@z~Vp0oKmPLHPvY%0s7HKXA zk?Gu5N({5-AB#pk62>}9k4+}jpidOw_Bas9+ZR%jZ|B93QkYZyT)#zP;X*v>bvp+? z6@L?`2YZZ6r{nh0bbi6(zb|!L(g}xjkK6AJN?wnyd%RN6>vwxPqUaN)h!oWI_;kn_ z@J4)r4`-eL^}*z}!nrAm>yBb!1hStdC8`uP?a4FhZ(5G{^oiv{m#$$=gS{5{SOoMS z&!bi%481nAE$V0(`EPSvinyq(k1r}2BjeT;(#BOJU2a@48FE_0(eJaE0a!PVbM7EY zm7{2Xc0o|IWR}A)#tr?XCS91KHmnEuavT5ceKX{Fgl28GJ6hO$dfRR2w_y#B!M{g5 zp>K|K>5Wlg+jJ%c zWbJvlE&o4j?*iw@S>1{1)1yjKsU($3Ri$U?QIbks)!pirT2jySJT!05jO{TVtHT*92YlmC&LR+e|>!i_qODh&FD{%FAQTp7aOT~wQqoXCB193 zZlqG=e4X?YXeXQg%7IkF>?6g&)0`!%^o)xB=!dk2AJ(?E>ba76HnN`(-|N%o8TDt< zgMl7f()X2Jy+zreYCs?Z?xxHErE|~X(v?*99q)MX!1C{X3YX7<&&pCph_luamZ` z5lMvR=53MIX*hy(gXY+vxq?0R_swquCcc-&M?SC_;PE>?VM~1iCWr<(`GxEJf}As0?+Y(@+0mv1+c>UC93hTmn1}tnarrew#dkZ3TJhL!JP_SybrijgOiD#( zo%OQ@X4a4h3H{yl`iC)H{WN+NB_!GTSue|aA2&Y?!h6Xay##bfk#rZ+x7JV7m`=Qi ztm8EleC&mcYb0S6%~FM@w4`Y*Fn@!u@>pvUUaVjPCZQ{ezBZZC%36OX>0QBd%(<6G z^JJ^d{s%rB5 zr4wo(A@Du(^E7i992aeU;CU>ggFXP(U8`Wn-arbr2WbsC1SsgDz!b`zi=c5-8alI) zf005_1XVSf%SBZ+qN)Q%Z&ct4d|81JHu4)3bfQ6irI)!}<5-_QSusJ=cg-P^m!Ls_ zRp~T}ho=r6DZ|kw7hk zAz}2-94bW9~}PmZoeeB{Jg?5F%WI3REIwrQb(NtK!jw1{#Dsl~6oW6@6h|4%c|?h4P&~Ac^?&3-W6tFS=6q5nft<2y z1l_aAD|*EUA+E%3is(Wp0}z5^~;5tt#&2sR=~&*XXRsV9d`=q zT}T8r@HlPD3~@w(OBl^U(uBy96DWM--4CV`a&kSqMn8NZpYL4EcRrFjSNKGjAN?~3 z-)16)7RiSso;Qjx{f=?xOc3HFyWwd53l% z$+nOuh)8R$6L{VQ-RG6A*J6p2$o$~>*VKTK8ahUTRDrp6rRBqnFcyO{QzjQHiE{mj+LhjlVU!Okx5qxQ%T=$9&e&ob`FX0L^Vrew4IjWyh zUrdNy0xvDg8+W{UvWP@QQzYt_1zlZ}bfsy*0D%KqQ`s$d%E>IoCD!%o*8%Z09q%vb z#ADPpHAz<35f$*7b}SM->k+9?+QQ`<0p2k9fUyDShCQrr?11Khr8@lGCjPNkPD_2q z&lB<#Q12MXX$ENBG_{!t$x}eLMO*P8KO9s)DKG(Ut<0E^0%(Zkj*hu?n2lonKOzeK zUD`*tNDP07SWv*b88Qn~cf~gH0SJ*|A)6@#2^M!($9`)DIo!l+MtbxRddEvY6a9_T ze`uPEzmOdLWVHL54wahFYfN7}1TJP~8hy5NT7ShEtd4z=I5~Dr%Xk}beDlH%mOZQ- zpk28{y0uxb^nV~nv9v~T>TZCt=&T%d$c$WsrNs#{kdm=JWF!Y8f!U@1%x=HiH7N3C zz&IO?p1lta2GuW6XS5qjZudy*Z(|i7_TRVZj#Q_nS8BD2UL#k|=dIYUUGz!I`>KR% zafNDyB5PG9KsYFn$B!yI<%z^R5DJFJx(>@-3&N3f(0fS`umT}=jdUUu!5p~nN`x?h zanVc{Mt@3}NF3cs<(UqHnUPmjrITKnCyd-Bsrn*=Z;TUO zj(xY9?4V~gf1(|Y>$O40#GDc=lIgtPi$sH`cok5Qnv?2GuTV7SIM7T&zwpFvMcJ0^ ztH3w@SsF~h(>Jud#S7PkB<}T!a((N%;tBbAEp$CJdY)czbaNAR>7q=JAKVHh@g2NB zJjdrAGI)9bzYf(f;LQ>S!bPs*|Mj z(CCZ*^#mpCm_;b}s@!Npee5JDjKB9ACn*_UqJ)w4oR$go1o3_Z17UwnDO0q7a_b}Y zHA$46Q+T?rUYertOD6^=M_^wNOjp;1DYCzGa&Tfr?OZ>pTIByI^-rDE z&ZquY+IhU6`f}TwVne>nHYWzT|DSmnt5nL%5M^v0H{$&_Kh}S9!HB~iw`rQEAhnGuKb(u;p5Q9hOTF1*icxNLl>F)hTRe=sHXZtslJw+&-3+*9Dt zkgS|3ll;}WS+6_|Xx6!w8ncO&nygXrn)oG#Hm<*p4 zSp>#W^cxHF>OB4fE5WmG&YSUm$B-};0GHA=j2+XwX8)`%%#Sb$7A1y(r^g}D1^qMX z)`}(<3lb4Vsf`Q5+7v6OLL&I`^koM$brARx2|EJpm4QO-cjAD*iKR58rf6 zP_GLF^kj+QL(y(hBaT}cP*Ysfgy*K}ggSH~6_e8|uAR-!tQ8{j+O#a~r2x<$XV!%5 z5H>}G9N!t&#(TURA!w2g_LCF!p~NXkq&{wtHt{%l2XwMa0+HvpTN}GW$V@-0CLmPJ zym>WPI4qQg#p#l7rxxtOXV!pI{%rQG*wtM!K5gD)a9%mN6FGbA@MoZ;n+*tw;d zQ_9nME?;hyBRnJKV^M||Q{v5Mn9t<%Jr06vqUnH_SG-=az}#(Z508nbAib%eCIV?LK-z9UGoUzcag|zAi`1(&UIb zx9F~a-L{dGTKGdt~m+79Tt7B(>KDX+TD!an_RM9^Xytfr7qZt5)nZa6w? zdA$%DjjS|ujT)h-{fV_f`|$0H2qM3+7)fQve_B!67bDlDhr*&{yLiN7!djhOt5CMX8l>3rZbx`BiaYb z%j9&mdMywR;J@blv3WI-PnUh&@GB&ed1?Z;!ycaoU0r%PenbA& zU($=vg(uACD)N!fbyCRn&t6>nFWG)ZmP~8ObCW?J#Kbv^*pZdsx>9#`kg5qy{aDSp!rk#G@21Wn1YocP)U$_H|G?nse;}UcolXX)*eO&ie^$ zj_l|4hq*KJ%O%%z8P=-Jg2jQ3tC>YHEcmms3@&Xu6!>Ys@ceX{l5p5~mlqdn1o%X3 zf6>0ss~>*&n^XL8M5>)wr+hc(vu{hz`?#e`(!mT*mbqt@_T4Vu_QJS(F!z*Kkgxg7iq@6+cRJb(2xF+k4v#7kiQ8lv;4;W_qYx2NR zH?uOmQ)BQD$>H!rjKjTkdK<%XvSx2*h)!3oXJWk2y1l&-JF{+YGKBZn?=433>@I87 z^LM7|`G*+ed+Ygjhx}w^-~RC5-=D2GL=RqhGY}!&EYzk$u)%x3*#OsS*wjbsL$hx? z4km>yyx@1XP1DZdwH-?iO^EljKr9!ZR5Q!j7`t}(c+BtF{RwYHekqtbKAnVB) z*S#>GLXP_O((#b_}tVm3D)PWBF577SU8j zTGZ)8m#*0&q0dvg_w?KugxntCI47#L_htBdd3ntckvkST93I_+<0#OeC%$zCwO=4{70|&*D9iM<=#S#z0!x-Ar`XtBq=>Np=DO7 zvkI|f3HrRbTXJW)xZr*>v`Mr}oJ*B};<-JckH*bXmuQmM{zcz>qrFBLl` zbNGlCHudcJ7qTw}3Cb)>L50A;Ox(`NSYwcD8{mPq41?>4QLZ>&3eYlw>KA>Ch1v3lXx$~a(s(XjA-VEgWPyZ62V8qNA86}&QoeP!i5087;k+@ z;yC=nZmyuV;){Hs5N@m zHEHFJ>q15B3M8Q<;q%8(dk?Pz;K1k*4%hpXE6O2~$xlk0RE8?%Pn};fY5qDxOq`ow z+9b?SUQNQEYH|B2^2;!_5TW&=oIhQRu9dA^d$k%<=uTIGHKsm}KJJPW)WE}g+SaYQ z8Fr#^b@~Zc!=l@1+zPnWpdQKklaN_$Wwj==La@-q8har0i{VgE65bqIT!qx;awx#C zsC=SFoIXrp<WuzoX^d^p=l#)j+bAC}*K=g((5kjieuHO5!|1o7mB zc;id1`$?{5Vq>k??-Qpq*O21)FgiFO4mwlY@g;Zgnj9FF&vKDiRF1^bX(1{{@ANT# zMtN3J-;*_>|A__*7w9_t7`%l-D*bYWo}s%V++!aDSIm$7d<6gd`FFwR-#0xz`9sp2 zirie}|DplQ9r_0AP>7ttn-$FL$iz0LPMGY16-1#R=)}>c-2snQ39a|nJCN15JK9Fl zXm`-*Y;5fDk&VENKItRd#vfP$x3b4U)OHhTwq;kNAQZqF zr;)9wLKi@9c7PB}1%3{a24IdwuI^rc-I=s_=-O~|T5h;H>$W@(c1*xdOVFGWkorWH z1d5?XN0!n?{qI%4NpC41X^=SHie-3V`H(Y2neR=c}IH%$-?RAzu6MTzu4j!BR zEM03VO_I6HM5OjHf#b)%cXQJexKh7j+&%T=+_#3K=ghB#1jEWvyayx6B?=8e65AdY zzk6^!Y<0Sw?sf;aCVu`F>X@TlJZ|ODE^gVKF&^D60%S#jL}x(Eza0ch5bg2YR?(Ui zqO2j+m1aR`R8VL51$QY4t7a(V^9NJ?q#z`Bl7b|U`hU#gk#>h%EVoL?7Z1no7Lx1m zvzvY84Xibc%jB@sw@9O|Y`DPNDw}L`pSWrH;6t8Y}{5^(wJi;09d3B-mk2}k+Sh+Jjo zVW#wiu^hAjs5E%KkO-izLW*opW9+VhWCXSWJJk`_QvdZNeLycYQ*;f0qBiV0gZKrA%z#|cE(*v_)(>qq zRibUPfDn7wW|JBSLie83>IAgpDqE-mRb={YlL+1QWbBBy1AuH-lXY#2LbZ+Q8FdNN z-a3BD7msvYlXQWcy#(5YZ>m&0$>>^}lG?POKBWWbMID=le*ehnE}R%UMt?u8rbC7K zz9U;eYX|%>%)R8=zPRJQcH2GemVN9Ny=z84uTAu-^2_Q^sDE2sseAKIw3i+ORwGJI zqr9IOyfWyv_ne~Jq!_qwOj5#}5t3V&-;fwu?-44DX&RDVKhy{R@4K6>>9I!Zr2g`2 zg>5PaRSdI6Q_epE71QtCv}*8mR@DsqohjNR;vq)t5Vzy?Nq1ldYn658^tNF5P%p&u)`V(vi4~Mtet01}ZguV?}AEe$y8ct+` zx!AGHJ}drbS*I~UO1%a38<)4up^(J7eJh{;HYu#7&X>hl9D+@9T+|&EqY(rh>|D0c zR_EF@&UrYWE3RhZc5De;Bt=|P^Z?F1*pm(_xLp|Uk`p9VLbi^c-Cw>r+I%4pBINaf zTv6GYRsOGSOEM)7$Q4+t9UVLE1Og*TZ;Geo0zo+|G)b%~o}A2nAK{5_wA1fzBG(NU zKE=lYK0wRIIwoLeFT)U& zoD{m-+ma;9k~G9!z?j5ewQ0G{n!kCK-?X;JdnY|&UrW0VLkyaTHODZL8};L$ohwsk zY>|5QIQsio|7_!*JF!6}H?Vb7$Z zlb}A9qF;b5H;mdep8{jgdwRu!?x0yil@<*FTtt7HmxYYalapg<#`A$@*7V3qMk$EO zk(yfEs-CIp=><8Oz+c4@bEoIB%ULfgrIwe{an_qzMlLxQj|Tj5PK*WuYgcP6Pcp3) zm*-aW`lWFC0^~lZ-_bafjnQxKIbAjIBZP3eTsv{1R!)Znd}_@j&!eaD92v4QUAT~f zbkSLD?GH|r@wnEXHAY*;1sWFfS1Aa5DgPSX9sD|7+t4+*0<|bw#|{mS8PdgU+u3`) zapT6<+%7z}VI4aL`!0weYudRBVGF2IWc8LpAsm5 zB)(Ou$D&Gz&&y$jRYIEO(Kgdt@wuX9B^vYmd=e z>}YYVX@j#c0D{00B*zG9PlTwl1m_A;Z(7!+?NYsdu3pz@QY-gQ<d}A zL&eF&VM_i_O!K-v+T5ZHy_Q^+&s#TG_kMy>zmM5bA8v(i%35}nXNWAN;8_B4`<$nq zX&_PUTkGu|T5C7FvFDt%+r?=hEM#q)CJ9j+5%trA`~zLcl+}kr7fuKGQ=H}i!*2)+ zY5i$=p&JTr!i7_Zbx=>R=0V>k;|In#=WPqkpGNk@wx*r zY($DfQ=scC+q3{0@k_Kn)3sP1|Du7D5nYHGE8c!WwC~C$k6!8L&92!8xf#ED5c)~~ zp}xtf3-PcligGx&?dOxj+$;NQ4aySVc1#_v~l5OiNoD&m|BQa>BDx> z=tbbyAHe()G96wKW@1Z1u8@Cp1J99Lu#bR$!>XRO(M0~;aE-Y%z-mmSB;+F4sv$?8 z8n@v%huuxu?_f3>ip9f$I^p1^{CqbzdJ+6Z@0+P8-jp+g^3|QKJq9M`OFLSuLZW3) z6RC^jW+Yq?=pm9o9C(BZ0OJ;*D3uTDlWoY)L2@)2Xw!xfg11cofZ8++^r#9j3*xlq zX^0ByVHE(pwTmGe(uHL2en;wFWU5`|R#0cOZE!)<=}rbl{6DMJK%)_;tfpL( zaglVNyfS6^K8~w|uxZ8E5 z$sPoPGF8;yWxXiZ%4d?zSi$81Cu17HCbbHgsb>>0_H)}qJK(th zirup_$eE%$6nGvPN_=ZJDStjqxFl~IZtk%O990j&(}U1|3sXZopf=I&aJZwb6=lhs zEdQHs$&`v~n*XP#OX4TWfYk$+AvBt{SLMVfJd=RUgo%@MXUaFHo-WCwoiDg|hC>ON zlh6NY{|46M)QOk{+ON_F_bd-=1nlWuCZzJ&-^FgY?7U}GmQlfeeo!xKt{ihK5F6w` zAx@X_O?S3&EKAe1>@5n5U+q$W`{}K{*p1In^r!>MBnibD%`7^o%-tw>Jh( zX|%jQL*KbQ9vzQR$b&G0$HI79aPc5c|L-ZNF01^%zde5038&N<{GPJQ#s$n``)d;j zW47J+yXXfN?~MaX2lp8~5?Q?dh21Ke1lgOW;>#&PTse0(9f^kyU0Crh-jQ>XYwe{c zeeUdvD5Rbo% zoviZ&%M7+)NCwBLr-7#g>cd(?U)}LjAp)fNM*&r;HKgLJK~Vg1u{Iz#yhqS;*Jl7Zq~6-DGr*I!rHL|t#(;w zl_50&e>#^_A5>NKm#BT1i@t)1F(32!FGYVM-d5+%R22z5{nist_o*HDkMX5yPF2^b zt@u}>_pt28d@<&p=!YexdS*^-$LHUA@~zYs<{pqB|{K z5n;&A5B@Qi=*p1H1BYB^UH1VB9at@jU>T$+TVUOk^;TPwSw?H=5OB}}TX=16O_3_#GfL`Y=3=dp-nf2}@Hg)Odmqw>m%v5}1Vy=qZ# zFXThooh9C@e@+x-A?4u^8;vu;a@rI9=Mv|RNS<_}#A&ZitR#ehU%y|E#oWa%e#-O{ zv8EZ1OJ*AXdvnOcrnH#$D?A=HQFqMi_54A=TU{!q++4)tFU@&kxoo4bCMIJGC0$f9 zfdS(V_#;KZC;4S}ZuI?(A>n^UChh2O&yYAcnh}rW?A?zJ=>fqOuOpEOJjhzVk40K@ z8UgZ#%l5OGd~WXMPj1eB`T@`XjE(m*`F!o>B?wl4`OH!dC`Ob8#ph6HEZ(0&w zfANxzT*KicW@rtJt({(HWZ=2?KZIByvejZE}#72w{X5X9y zB%iWV#9a%34~%FaLX$2QibN(hk!0bhVcm8OFqaATat^6T5}bsvGzT(xJyQaaRH`d+ z3C~?}T&e#Git$f}0^JB3^e*FxEZOx3t(@lT2mpeF1Qy}yT0-Yi;%d3PDyBF+q19mt z3S1S~@)p=u9`V$?ksvyi6ab)ZI5ZJT#)cHXz~Li;bUJ zVKUamHD}VdZh!hTzmdOSzZ1xzYdu`NYEl7!(6wXMb#M-|6)!(vpD(8vYnj7M#LvkoVbDMbCChv z3O@utB^D0H=%c~LXBxn4oZ6rz$+8VS|^DIhE~hufpGiN zE$XH~y1;a~5E)=~1lRgHtrt>5RzKKRH@5ys`#V`J_xAZ&dvd1Li6P17z82USPEEW0 zF&|r2Inu0B;Mj4-SATMhnJ~;8eVdN6($uJ!HPXmFjb>WoVsgOsEnK$gK?kMSzV0T; z#j!R~Mq^h0o~(UX78}jRM5ZmN4*;C~ovxiW2;RO-`aO(As5wFfF4-9nR$WR`pIR;Y zll=f}4GP)&c9omD#!3WlMzR%Z3RiCjxY((8(6F;Z=0fVrhd+H;tJlxg>wdcFy$gFW z_?>u;b@7Kj{CKwBrMug9ANe)(4Dl%^Xsd0S>#ah3hMFtw3d#8gAG9JXkr-%c97?`F z#AY`Z_6I&461+Y??_Isqoh&3hYMS-L5{XzJh}DwGtJFt2K;N+5=zCC>-JyVwT~nhH z7Ni4S)c0oftoQnb=c!A?fQHcY>Dzb=e;=(AADGv;uxe0VL?FgD!MR1R=#mUt49kG~ z3)ru9EZ|Gjvj|J^EfOw@wHxR6GD*>+S0K$7K83GYr3k8lmAy6x32K=(178vM5cmo! z7w9`4Ary%6T4U{Btu-`08VCuV07*c$zmUgUN=RyqjRsQrAjd_^$*95w^Ql0Tjj2*X z^La)e_Id)ra9H%X8IO+*@^P=*{l0L(=RwHh3uNpMUl8K~2Kkt<81lJ&UgZ8dFS8{d zQxiF!=foQ0E3q=aTv!e;vD6(IrR;TA0x7$OC z_?8n2u4h~>)$2-f z*PEcPLIvjBP`l&G$J&yzuaau+238qowTi;nO@f8KgByVqg-lX`%>9}d*RWmdr^Ctb z?5(38&)tVUkzPwg_cjMxhsKEVLg2^Jqn|yv1<+ytAJLkV?hh;#m&SFDUf5SXX72JQ z(nkXReQlAgM`O4lg1q|v^wvRD@9}yLEl=%rd2OUfkyS|gPl>fMF~a=kq_#SWAmeMJ z4eQlC#br@?e9&9Hbm)-Iab+vt!r+~aX5lL)dSmhw=PR3xdPF~T=+dfbyo5f3#3tnQJ=!kE9zeJQJ240(XkcC-KJ)#b*6)lma?8|G~>DU$mIJY55<; z&#yjxVDY1Wq~(u&D#53LN(l-v&z7lQ@+?oA!FtE+AQO(GZGfc{=m8BZ@N2wK67Tx) z8a|_(<1}G}kA~pAoN{(&7sEIhWqy)HpyXNv+at*%ji1iw;ARW4ouZxUX5~1zEY=V! zv5r%&K)rP}>br|B6!VKdUy%1c{vdU~ee(NHd?CQg5$5O8=(9UTP9om7ed??mq^`Sv zDdZJ*B(5#^;!*d?=yR_L1v+M!_556V^x&s8pE{sHwH@NDOWbx{Q)4qh@WU2eF0wg4 zkpqo7q2c+jEwvj$L1^1Kvg0i76dKm{*2l0W@43YKgC{>a+Wemc3fGhIY+jweIxk^j ztgsBS6@7{6pF9cM0-uvi+2cujf|sw(KQKj44EIhAa(swm8g$Lx2X82t7LuNMOi7oL z06D$j{mIj(pS(In1t@<|dbjIrg`Yl+To25oVVC$GrU@E|qoES_1**t6eqnp4u${dI z#-=f_{k>j4lMbw@m^Qw_elnaGuO7+VIY;sb*kq9SYLa23qWP4z#Ol83yap`IXVA9N z8xUpl+g#;%B^m|L_~GW}5OtT9%xAq%wFC^}Yeq*z1`a8~Dn6 zPUbm9N@?|qoGjJz_?x^8X^1E2lyRF?Nt}#BCj_Em-NT}^0QkVSBs1XN9&U1!P_T0y zOr|7nZ)|iZozksnyg}9g*+zmzR%|;s)&QtLgQE6%CV^UD1%kkElJ!294o36kb85Ll z5LXV{sfHIXoq~Nb)L*>2Ry-z!X9Rzq6wIxi`QoB8B z+770lCf$OfqeM)vYN@L<(9$E1L_~R)tovsw4d^i@7-jGY+TPj>Vky|RM>9kr}$|c~Tb9^EvNjd!Q-4mDJJ@MI* zv!T!W@XTjIJ0E!A^YjN@uxBujAxd-NR%<>tMhWPk;d3m)8 zyP71Q@Nt@r_@mvoXagvxLf!cmkzQ%xW9%kf&{x*d-X%7$?&p&d zqXh}%MND>k^!ydPntVKSCiBrKBVY2VVvN(IaQ-tCNTWlrLdu6Z&b{QvUx|m+V&)LV zxd@h|e1pA$R~B?ZihopDZTv377GkH>nBvYAR;rIXm?50CS7Y-Cz5R&mg6lrl!U#Y^cB z_>ds_Z2Ah@$V;Ulg+4iyDXND>{JVe2&2fkSK?@#UF#oL@mm&+vVkQ@frYfJTt`u@^ zC8nN^6<9_kUXcVy#2WupW`LZ13&e{WxA|mqWA%+N0eCOa){AaDEhsI;g5MCw7%CR_ zhK{~+KMPnPDTyhD5MHhWA(;!a9o)pvhZa}UfxyMehj2T~*)tiDV2E^kfFTkp-|xq# z;^C~8O-nLnJDSQDI?%L_qzeq^WiMvG0gJ7K;-kMHGDHu6H=>CNd{&jn^@}9#;2zqp zpb6PXAT;Zb)2!nbZMSd(GAxa!iGy6Rh$6`D>Wb5*q$xXWm?QWgT+vO?M1suyU&oDT zns2-_5J(?dXtT)6K(w;Tk9dM_}1(Hj#@Y^KO!xNTiu0yvocc;LjW6#>4-nB_ok27;C#N&~~ zsM4t#1ta;85KTxaxulc%nmKc(kN?OlT{x;lL^Y4xUM3id(V6C*HH! zi0d~)a#A*7j)J|Vir&y6ofgbX5~NQ8Cn#3&K-NiJg2=Z9CSd#teZ}-i{DMbV{Eu<@ zGM-xND59@<}YI*T^iY6+xkI(Qq*8FWsgKCd{B9iV#~2`P@KX zdB^GdxLACSNsBo{yfYW%*nlWk9s@EPb5AU&5hmCwTt1pvE0x7i`5hg0In19f9x96~ zSGjOR5;Fxo^%&5aPzV;kxB{9dQ?+RJ6%naW?K9}f7=lsjhh zo_j(+;$XqpzQh@_L+#ivNw^{Pb8WXMd?A+GP=~sk4HYq;$S6uCkrx%xJ@9CFfkr+y zE6us(qLwC+gUw6ON8G*M1dgj!R(otK1&H?P;>5PTMT?SgFPkpyV@^?DtDe3zQ5b|N zj<#@FlRnZ}*Anpx9H+#Z5n;*hiLRXH7D%XM=4HXA;3SEqTuw=>m*D4hdp*>oBt5!6 za&oXIY%;qXc4*wSXj}$=8S$nx&WZw^uBIs(osdt9%%8a_jWePfyx7VNTvc3 zxY%k}8WR`JqOe3m6@^^IOy|DlcYnN^DP$u;Ae{SGl=kWjnoY|hALIln-HA&IEBpN( zDauk_@>3j)bzZPjNUkEWQ`kDMY@;>;%$VZf@k8SiC{eNj{3Y$)({o2^ed*e@4I5uS zv+Tbsden(GoI5?Yd?}Ld=dYO-;wQdF>Mf>94^EYzbs3OnWmfqOsbS$jly5=D@cIUx zhSNWWT(_Xc=;7;X`qn;@toT4^*Xf)ZHf1&{u8DNT+MQzeym!Zzq#>js>Q4XJYCnO? zH9>imtQQpRKcM`DSro7Y$%_KOv3uU9s375w!;aJ$Sg&a!*0;AngYGy78<*jm=o*%Y z*GRy}ty4x=1?MUaY)V@a2lTgO2rK87H<=y3${Z$)q8u8ozQFen39{9wsG zVZALYcvQ-4qv^B1z<dcAzepGbzho>=hNxdm|0QZjsT*Uit5cIbKafhxFgEzIc;p|?cCEuWF& zO1$CY7+Da#p&qy^< zxyg{249i__pR110fPFyN+dH)h)lLtayL3BnbJC#$f>kXH*^dyruSH%?djuN9n`{;J~!v8A-sEE>w^!B1H4i=<&si z=Al=;=~ai!i;GLg%scM8!#KKB6C%+G= zt=t<4ct?MYTP5tBn4_;dSS1RH3KGD|$XY>sIyFBwO|*G*^bNH1&{6#F`Hw&F02++e z(dKA?%(s8!`$vy{|L9wePRZ(aOqL6GsxfwQ9e2O-c)qpPat(5@y^V=+FG5wn$i&AWTne2E1c-S&5O{AFej`l-Z^`G9wwzAN_LA{fB$*r_Q;EKp z1YN;0+di}b)P3>AJLjgz_#!ShXHmin0)Ff6^xiu`2QKv`} zC_?vFfu0XwYCKc-L@ZitLL4g4{bh@WBZPwL=;xgBN56?nw_|l&G`~ohC~a8n+9DCk z__d9-G)G74*m+1Any>~T54*$@1g>=S5o$k__oDu?8Z<9fh$r!WpL|r$bi1kYqff4@P+1diZ`2;p=84)m_IW+=6D04yrqhgNcWKIi)`a zPo8@04OglH54|m#eON08&tqjj%{N>J65TVcYH{WW8p}54Y5}Ie%y>2c5H2@qo_qM2 zp^neCeE^?`3`JI_*T{RL+oEFB9UcAp;-$q{EP~j`*kphYyK0e~FNR~G8PRU|-X}U( z{Bx(Xj0Y+Dd+=vPufbvT0|uYKk0?8ypFkGmU3r)x#<&%@*EHMOWU9y}AAEY~*=5bP}^$xi<^rTZ=kNI}7|fWLgl z3K8(NC1a&B=ScXar4uKXN)~?0q+f3c&$2YP+7CzXaCqCa8b2JJe?C>e<9v~<{zK6F znA&Kljg@SpkzLuoO~Rie_t3v@zB~@5G2P2#7s)2pBD3v~Y3sp2sE2Hr5ZSt%HqCSy z3>kYh;?*BfFBVnQ!@n6PmfP*+6F`H3X{)RlOB$%hHgPvxJ@u}lYU?3GGUq_1>(iE3 zuuV|Qp=WtajT68jPDnP4BlYNQ6(N^aPb*qUPS-WYZ&vjYC|p6jpCYio$pWMY7XN}L*q=(D_F7e(R_=K2 zL{fN;jXj{o+j(4trM%$tf-S6iOwI`xn0N*~o;fXXc3l^W=a=tqYRTt9Da2%z1a5|< zGxXk5)lnP4`=aAA>`c=3H&va80U0fvi^^DxJRvPD*F~S2JQHq7i39u%{VA@+@j%q#ChH3X zeC(7RB8;_#9I-$7NG ztM~eJmfUKE;3Ek?r8?Gsz~w%KYl>P_89F=5xX=onw;hWh>2k0mK|JD=Ho>QZjdk*a zV=ttSk+coVTH5BB_3y~1(b0ayG zl1yLUB@BGQyiB|ZSp2%@ho@KpKin|cP{h7P7^wA)m zAu{nwG?7S2QuH*PN`IDhe<1PB3puU9oDUWQnxgO#H)FC&m628t-P971Mx^)&J;3A zGGtWe%EqCmEhF0I<|F4HH<$pQPjg{C%w>+~gKNg8k@6$dG&jcg`Z(FcF^T=kM#h5p zK@qmpv_iAdu7S6D9nbsY-amp=)EiD zww{}4;NSByekPO_6y;1=JYG_3xHk*ox3|jGdNb&aT?|GNK5r!GM!}+j_=F*N(dc_8 zf=8n#Xr=ND?u0?Vhk4)X(QL`gr&3I`tDNkH#q)KyN96q;Kj({Qe20CZh{qSu%yZ_e z(Ho}Q{jV`UEWy^P<53IiWQ(l!3@n(qy&Vl4))&1E9tK2=u%@^QdQG8F3Ws}h+3cK_ zm89(NP|xhQ`7vX0rL0J?H0Q4_qV*bjwRV5LBrb?gnNRiRw8G_AjW z+Dd)OBdPB{vUrK$b!`pyeqf&)ufmuc0{2Fk0k+CSz#%guGppj2Hj2C_6=;k6g`^1Un5-1^`0`d{3|XO{vq8B1+}`TlS=E_bVHoH zH|?6BopVW8ssZ#Ri+1SeW4d*VlL`7+Jby@<#Q`ze>%@c)O#G)Z@W7PZ@*g-Hln6(o zzfP}vfRCfB5(`f>Nes6Xu!1@z;3Zm)NMCjMC|jI;F})rNV1AB8*_NT% zIr<8g^#l^Z2y3|m&}yY&(|nFo1lY@QuLtA>rQNA(c%?R}f8{1gc(-kuCAAD&-evVF z>JM?R*5stn0l|`Zuy)?1R*Z^zb-bUvMRHW|K&OhJ+_vZ|c(jh`PDFR23AZ`=A})Cc z6aCI8UWL&63E}kKb$oAu?0?bB$gq&dZQ-}sYU;3uMkk9SGZ|j_w@wk0xz<3`;Y(XuV-44xN+bOFB20iL!{*4DVc;)19 zn3P!tpG@wHGFX#1>~a-|Os-&|qYaaHv*A>%ipQC(v?epWwJZ9f8+=!wXM>khOpGWv=)=yb_O>opi1Ux-Sl>C1R)>VMA%`XMdb~>YPQ_1qR8yg+e z$!e?jtZG@%E~xBy!vzG{w%9H7LA>6AW>q3sCKFR7@zQBq!yIBmz@wEVF3C(0%K+`l z%5en496dU*i6&I9a8kPbsr

Do_h~#Kg+o`Cu{_xw;kzyr!5y65T%gOgSA9t_1S; z`%9U~)A_T(-~tzAzN!WSkt6u>$BV@|*=nyZ5}SO1*yJ7Wb0SU>KzIhg-59*glH3_s z(1OYVy%1lETon28|1|MH#dAo#tcXFzZ+i0bUF+3~oO{jr^P!~1heEuTL<5RMI~u+v z9t;!6#b6{5zZR7u1tA)d(iboCr6eEXL&@@_&z5K*@GVihD~okHEcoIh=`>0ivi{}p zDA5}Vqc>QsMxo)MDj8y!eXIAPw2sgT>CyPBkCjU+qknR{IrFl9GIsf#aN!k_aH*0$ zbKztPKOwyghTFFWOg6)sht5S-zQM&g;v$txbEoA7hX4M zc9G+jP)*hq$)kg(L6b$ImQCPQ%+Fw{BqS)=iX8sMUz9%gxyt80hn|R{fIkup1*KG? zm@33L=E?;$diMjr+WmF>8r#YGuCi;HATPLRo+yQez0yrK0?LYcW-HWFxlI%#SkN@E zllUz6oEPesmsK?xLwGnyMrVG$o^4BfzLj6j8_EeS!qiWh{;7IMTRxVWQ7h(Fk zI9J4%E734t%Ed%e5QlF6ohz+Yxl=a!5HRP&q4!-HZmq+vV+4!t07`8-VULY$z7Y`v zVs)&X+3i;O0FrCH1t3^91fy|BsgSFTcJ*9garuzpkD&MggeN^&zLXd7BvBg1gf{MN z>9!EdFV`eVjcFdr!MLu6q^^&HS8kcqD{Fgzw_(EA&y!EmtP8@ZjJ1Eg0RvrY*72am z0<{&12Y||G(3v+IhnGT_hg#80b~MaiE@$zFCy;Wd;^*t9P(PngqY)($&6;nL4Hc^* z(UhbFws9+{;i#C0R)`hXG(BHkrkqx_M@fUY*}FfNT4b`tVmiMRla3hqL|(~96xL~@ zAs$i7SV}tYy6UtM^p%(2NH^t`G+j74v+dfa_qN^f*$i9F8DC7yY|ru+_P6J|W^+F| zuLv#~&npJ;v$8B+c7wJR#DYI0i4+By7th2jWOixPYlt{cLXSY-96gk|D?)oF%ZsBQ z@H|#zOF}a9)%lJgeVMJlX`yjgJE0hm0uOyYb5|;9^-8aZc$OF3zuaogor=Z8LqCe| zD9&ZRe0V-33Z}S+P93iv#}A~FwWzdOqz##T2)QJdj!>+y&}(N=EG-mMYTod&;)jz! z^#aq-8jYtg;deA}Bgy(~!vFGOc1=hH7c@zdBdO?zf1lF7kX_*#p7wmIWCp<%+44R4 zF+5LZ2qI^lApW|_aaJS#QML!Aq|rSHurK1F)`(-Vwm?JJB~5~iJ|aYr(%ghJCv6M8 zpHm~5y5$y;P1jD=YK79#(hV*Z`OfI??n!?poocm`NHtab%B7-m6#sQIspO%$?Q)SV z)bMSkV-KV<*<>n}>ZQ}YUJsQdHE-rnKF&oV_^xq0!*$EgLAUY}QN$~1_j6*oe3*2I zv{tAUdI(XgqfI!jaGR?Ko0QYi&iBZuZc_hu>$y#|3dRtq_==QsVZ4f&{fereW zo6kvDdXmhoet&=558~5?XKce45{}Q*s9LaX3w}~Srevz^vMoJ;OJ+LbQGl0^D zT|89jFZ7Gy;13o)Rf*&x7b8d1JH-`oL5);&ubC4ghw_I4^Y7>{_D^{K8m>`~M(&KL zcgA9i_>yWcoSP5eOCn;<9QTDCVh;uXM4fs=+7T$YKvB>H&G9cmZM_WL1WVeelP>3@ zQ9c&KdcC#jFA8RG5{D)c%mZI@S`L$-gb!tubCzcDzGKF_T3%VRJ<<9V^Eff!V9|@bOU=0S@Ad| zL=_xKV2i+#b?|c3uGnb~R1`rD2>Wk^lj2v@8yJratFyx%Vg zs5gI95>}43^4YR7pG#I*buQ(OB}H!;_D^V8{|DJWafu2zmo?f@O-e%tpE8Ywxk$hK zIz?m5`Km|YGS96}o}k_{ZdLizM>u}yd~lxICvv_^1Rx28z)Cn8GPoky(cAbVUebr1 zc!B-=(4;x06QW^6A(2AYTwvEKsBbEwDUro7QtC=rRqL3gWvjgbJDS)$+K$h?0Gk*Z zQTm$pa*TBtdu7>LU1AgASkkPQQuCn&8MY>5))T}{8(AgOa?!C2|K9cK`DD|)=S2SfJ?6|2D2y^gt0x&)q4ko0#O^voXfshI3 z>y^}iB*B#fp`mFKjO$9O4?lHMl|U#Zbnq>el?wg}f1ufOjnG6+)*h?Ok2v~NjgGC1kjpjs+7g=bz zgKHZoX6*`>OkU)GL{8+lC+d3BA@!H7%D&->L$R!p+a`b5FFc;^Mm;3j5u+p_qZ}csWmm}eV&WTD; zmg{Hh^29jdz++M*%SM6t17faO3-$#@V!OF}9nuV3-*~I}zh9R-*WXn^J;+zkg&f6( zX|5Z3%^KfB67xcz1|tp6_!?N}s9y#c=b(Vy>p$=(!l_gyP~%e3;zWIc~F_OC-6@4XY$)m8;Oa%L2{MI^JLKZOBT!o z@ur195rQ>_mk+Xe!0HsJ3fBcV;u5zhm})v5n9}O2ir=p?0Xe4>qY+h7ifMMv@4Ihf z<3c>a3uY!1$&|}Ln~?=QKnMhKOi<1p5%ZEBRi*aP2A}5A2)Dqnp@hqg(~V%cRdME_ zA(@8&-%2V-xB;4Urym?%j-oCyFR2f0@u7T16GU8y8=oHQbU?8~Oqm*Tl5zW+)8>lS*Q#S4C&5a~!Jz&r4ey~IQya^k1 z-HE3RXjlX~tB}CN$--&bbKv7XkYdR^%Xl#vC#y@Bn@lm_X2WtR zvs+zg+@GV=R8P+>+!1@clZ8yL-;duuc`MTu|rlSD_B{mR$$u=c{L`+xUm8>O|gEg<{mb+#0Y7 z-pl_fed%(`R}6UAP_mo`{;wXlNWq2ApSLTZrQ-@%xU06nso{iARu|b*Rt4N}Q3}U> zp-=K6UELSevyWJ11z{?F2a!~;11mS$at_7uS^x+;3LI+)NyJrH z;PWLkJ|I_2IhH~)Vt^2h+L|xdckjA zb!TK`WMtfP&)v>F%YX2_OcF(@Pw|gkQRg)t&-Wb4GYCZm*5Wve6{3jE^C&Jw@izq~ z%Ck1d;r~&lz%ubjWLtlIDDuV|ZY>*}wU!{C_Kh%R(HojZucx8o$iP)+nQL*1LzGiV z<`psGp?%$b<3B`!ef&807;YQ)Se9~+LsBxM>zQO^xV}6c;EXL?WlV*YZeDS+!$5nO z0vNZ)-gX#wK_a`+|KUDx*tXz7aN>qr_o@V6#{_jgN>cJJ1#e*$u5-fLgalOK{{cYR z==@dKo!7S5uHfY(;Opod&Ky>KzvW_19`?p(@m{aH+6iqLL*6ajFyAy36n-5%k`JrX z(?HI3a%CeRa+D9#SK-5GE}}MsuYq*BLwB1_sS|2!LQQ22WNQiA$nDVA-e#v0)mW^W zNZUphC6n3I7_a6jChS#sHDB3b4%vmoT_y&Exi^>@$~#cK^N^1f;&w3PGhJZh3p>_j zz|$<;|IqCz>Ub!;`WI33@Cm6xp(@o1qCZ%)TE%`4{OCTO>R z2-#trsOys<%Bs?_;*`wml_g%XPUu3RpyD587RUNx_9}gGXQ66(V`B%AYOS$-95!!! zb-Jn~#fhpDaG?Yw>|A$PDg=|%-RUmCwA2`@Z{=$B4b{!&j`gOl`8(B}sGqmjfBz3r z|4{<2hYul1*UJk^==iuh;C^q1l)QB-sLfy93-uJ_-wKq`3>sfy%cc`JX11GL~RsJ;L1z&84 zW4z!KJMd!ArggH<+-*PKDi08Vnk~>Mfl|)&+U72k&SYf)_okvXXWN2n&COL8c4)Jg zBkn>aW7>*p72P?@j>Rk&08;6eQGC@|2kMVWtxq9=;Z8=WE? z8Xv$Hm^Yx_W(AObj>BOsk#;y@1u3IRVZ4;{(pY--g?VkEEcW56@&#LDR_6@ ziSOwD;NC}TaEn=Z>d|{^ExT1HShk>x^8&sj^v(V?^idKeZ9=4mM@*SKSRDuR8@gwD z=Dw4L(f{q4lhekXb$iT0H=(` zU#Cc9I_RowaTY=;z^BF#ZGr&V_6WdIg`~|wuRCyH|HEC>=vLqImQx$Ae)8`&HvDc6 zi#2Bs?B74%?QV6uDEH)BHa6b!>Wyx<>yw-nB)2OQ8Hx8cg4`7}V=drTQ-6adiF0jL zOdg+ymVBVYGs6VYLu7AI1mnrXBW|Ja=g$;o-qS$cPG_U>9(=yq>8v`s-}3`>)5fJs z4Sc!(VSL!~R~vslU6?6#I$gil>6B&))4$bNTcfE52%hEIU36v-e9krk8)6N5Kw$o0 z0evFOjs}h(;Hyf}le!Dl_3A=3Mal&wy^bL=dRVIF_*}L@8L`a9f!53Uv+v=vTCLK0nEQkvQM_ z8@h8sjzP?#+dyXL5n-lC0ndHsZI5!qmUZ4ADZ?Z(hDq}?UcHn?fBg?scIR?BTSj`9 za=wechJHTMh`c5eu>q=@Sn4UJnQc+*JdoGcoakegr_6*(1I=8fjwrop(WvZxvY zV^{cUUia)I4*uj zDU>Bk^KCWI>-^v7Ptm)`+za-~8QkyfmMB=rfN*63;hTcQBuxV93tG#8B8MRUdaYbj zP*HL9xpO}!iyu+q%qnN9itv#{Ts+5HZ;}2(4vVEkKc+q#GnAOFelzKOdMIl{ESQLAkJH4HF3bc_0>mzSO41e56&kt_%?m(1 zcBnz!q&a%=5HiN?X3cRg7Kr`tuA_)yU%F38bku00C0mx zvl*b*G+W?Xi{2CK|4|GzsXvHmUh4X0e-rW+I*$$h zwa7nsHvQKMz|Kd{Tj4oaWshGEAuy7Zv2*Qmp^S%@{jrGK7%&7vh3R4X`(f@wJwi92*MfUuao{MQ9-%Qoua{qe?+YM}dBYbhT*NCTr z;r80}|0Xy6XyL+{ZS{GvfUmxH1s**5T$do&j6K&N2oWPy%2PNQd!!HsKj+IpERqxU z!*1^cUJFN=cNv$Czm!Nd-|zNLy8d{5bTZ$Jl}j=`T~V9$^|fs^*=$^-jlzz!i4Lnd zv`Fn5t+BDbjvBi(##ZC`U7BL7j}}L;!P*pto8*5PVcYqD{6hclfJ68hU%}5CtwnUHJyz zFYU&=Yt#*JM}kexmA(0whKi4Zv8{stF!J4*V4PlA&!K|m5V}@9yX|%%{Qr?%D*I0( z_v~8bV7_>X;IMQeCnK*MLkH9#*sn~CiaAWwz^VxIZ>v2px3<9=iMM(c5wfIILNGy! zB}gs20Yu-Mcr0&8Sss}zXIUI;B0eii9O4^1FGaIFV=}Cbkj*j{{f6J1xnt({4W1InSQ ziAwfED$NEmj%?WDvkcEEOdWBIZYJ>&vx?&wTo{{`F|Qa7B~2Y4>x`mg8P*(wLS#&x zUjoh(_`?ybKZ#%+4UzW3fM=r=fDM@*WoB6rn{cebra5?BrYTc9FGmQ*@I`7s?QCGO zQEwCe!kDi9Kl=nj$lj!GnZJt}_68q(npOfoqk$i`gQ=OoqIzXiaLtDq$3O=j%CHEp zhIR#Qos;5msW?@{Z~uOCa}8IsL;bE*sVl{)w{;w!stwJ3qF!zJ6QB&*)o6 zC7EP?j7HzEvN0}i#-W|iAny;Bw((Z4UB?#+fNetDju{f}LqM!a0Hu52)XJ*o9Gw>? zZ`vbG@r?sVT6wOrujI@o>u4pebg@E{S0XG^1({o250b!*wj7I7~9*g>CW1kqhGqTy1FVWWX|wW z5AtMmItUU&_Ak%QqR3+cjQQj_f7|o3S3bWzg1|KL^kuqE6=(4AiUR(;Fhkd|nZnFi z9r#FsISO_Ab#vR#z|mec{lfh0~uJKD@t)i8q7x*(9;^ zpcRYMY?96$Pq7tvwb82C>GwM3hPjTn3o8~R;p?t-yBAkhhW-PaBnCnUbaKNkiMGMx z7l~>H(}!JoMFW{RuiAfOcFBeC=D1qS_J8xG|BN>S|Br`GnAxTNpC`;{F^ja9hB#$s zNQ?@>t}2SU63tF?WhvfQIb>3g3MbhaImiYQWpNw z5C6asb?_%EitNjLR*iPZZ#O}c)9FN2yabUa;)6-AsL@SQ1U}93a>s(Ly>G%cAB+a$ zA47Wu@KhpE?gffN+P(s)gB?hmc)8T^?g7-fJ&MLr8N=rIkuCDKK_#3Xm2glu5O^9d zM;eXwMkF#Ew@(v)*fhy`4MSFMmaZs%0P}>_I^AvuKP8aOXnw~e{nYJtkv~>$Q0xHj z6w0z9IXs%?2BnFW@#p|*CSkW<1&;|@_!doXi4V6e*~Mi$JNTR=dB~8z6@E-Q7nW>y z*+#M9m0owpx}&CtXZbAP~FVVU+s-)5tT6b{o1waWZtRAKH-U_O}bNz!7 zYukX(io|Ba?f{QAAYf2m&hBCsWJl{y3E3Fd*R@}Xd4QV3D}Fcd!yC{9Jr5#2uWS>N zCUwvP`c+zmW{>T5gXG;KiM+!$fxu##rMY9G$astFLQlY>D^s+BxN0`p?P=;DAywE* zMl%YNti53dU7zyEr;{-y!9?aZg7{#qeICm~N#dbTvv+BrO>IL-UL7Dt24cM(p480d zKmi9!18%+xs>#*5#krdgz9Kpe+1*Uqi7pSYD1xN1u_#(j#2)y@Z{KA#JocpqIzfln z4`?32gAI%1$ZnX?*kF&mNpK+`%go6BjD&qd@LZE%c?VV@yc}auZqTLI=)(`-lFuzI zS}T|bEh8<9r`V+OwO~8BMkzh#BztRrdVlV@bDgAmN7v9Q9crh6F0);jIF`bzsI`8(bARt%c`uey3yIu(9wJxtLX_^yUj8TCzutrS zbW`Nk$ZI1{MBW$qAXvbQOo7EKdz{f2p*+jXutcLBh6*n;hZsBy#2K-`E-W+c8CHY< zC_E(jR-DBP9xPA=Za=fI%(meQmefF+Y6l-@7>}-Q!9^ZR2d#WQZYt?iES5?urk2}_ zKgQCAdXFf};ytR7j+ya%PA!*RRdvgyT&Y~bCzaBdr{!w1(yXAH!d`ukgrtB@numNT6jF_0}Y*4Qb5wNNX%LMa=v*QKVFC z+!C#d*&cbJ?VrC4EbV_wR48v1F`211CTnRyh}9>i>YsS>$qD@TBvPKFf9NSi?0-^J z6mgj_0kiEJv&W81D>3Wn(R*91JC7Xskt0X$Z?*d09r-Yvzn;R<8Tfsiirh=QE4Wmg zt3W3hRAQOMBLMdzyr%=fr-cUqV=pXo?Mf?-hGAp{)&q}@Ah0>F9jKl3= zpr_*L^5op&++;Z&SIk0^)H7KymD~pk3!d}Nn6B{eofnkkCzWK@t((8h%_y@GGX!;G~pw50=Zi^?RN zQmyQ0=w9H~A=Y#!=lqg^EHAJBMY8B5*tyjRo zqeeoO{i5sNH)?xmB?GFYUN9LD<&u6Q6~N|tDe`{WWkQb zGi5^*2={QI3B#Ro1di2n-v1f1^1344jnuTEu~8|7$$UA&MKw#4S&_jF#Ug<(f;up6 z#br)lg(%NTVo7>JNv1QF9%IU)B8c&HQn?cs?iQ?A%qk?JJU}=L1KIK^;setl>*>-p z#uXk`9{jiQ)K)TUgJD$KVHoL|d=7v=GKpd?k2?MDBIP&nAAY}b0Da<>@4f5JJMVh$ zy<;OLj0Lzzaw(<4D20JW9@YgtkbUd{*mSEo5X}ZVFj&X*i~0GSqi?RSWBD2~U#vxm zTYow5?%#lXqj>3>$HZa@EnA<7W|PtTtlOl5D3bf6llFbq)Ux^69l!W|f&4`x0TyY5_@RI{iGk%7 zML<8}9yrxNYxwv|{9%0Gogi7m=-qT&iPS-=GWh8$gC|g=^TBh1w+2B#9_SmOeR)g) zXyCxe*0d`+h;w7fEG~oD{L-aCUg6dg&p)w_8Y{Hb@E#c-N8&OS*#APNO{$_n8_NJo zK(xP)JQDs#(<2`OeZUvVUVdor8Gvz!L8!bK#GkGXcJ0a6LI!8u?$NBy+qUai_SnF$ zQ1*Ed*D+6IuthurlANwS3P95WgAz&kho?4=sy{1(oD#$&*G9O%Vu6&zfD^Iwg=A&_ zuVPuJ*P$D{-+y4gQ@(A3IjlQD6uD1Wl|Qz>vX-sYvi>H``@uiZNtbUQwRLU~e+;_o zxDpG6cm+|7bRLNzDnN}mSYi2|NX0Lc1jU=xcCC?{-#?!Vq%WkC{H|u03mTIKlmz4j z^sMwQ4Qz(MrwXQI;R-H+YxBVP7V=8mokt)BZiak%^KL96d>OE5WgCNN|NL|G@ra5g ze8|T`-SPm;Q4~ZL^wH4A1aR}IL7H#TCQc!X-iK;O=k}a0w&$Ydgd{}YJ=ZRt-!m7D zCL{%&tRFqo?Vd?GJhIL6ce%yK-B)VSC@=MY%D>A!U&NovQ67EPI^XH8bnsdd_Jex9Ncw>v*%vv9Ctlk8;EP03gwio!?)c79=;4$_ zQHR^XM?BfJmk12;7$BSgoXb0=tKGLt+Cg{pTtiU+U;a(%QT>uD!c{Di zEvXvyvv_;o|32*Nb#0=26US{(-?3hQt9QY1R_Y0Ns;J0mKydx8ll%~8t|St&qk|h+ zcLo3TK=UdD{zp#}z4~Ifvee8VO&3+G+vA?KD6~bB_;r%I^$L2|LPy%U&^NgMJ|I@f zFB%6-?#n}BH{FFwHWj$d{wBD~hQ71tDZGWUQY&&Iv7PSF-r?i(~UYb^)&@ zsMl*P5&4CrCVNOVWj>in$DM~Z+-xiBqO~>GT^r3zwiQojlDurHNoT_{R9RMyq3p6j z@`(T{>&)2Rg}8q3lq$XC?Mw+3TqrH8t(K3EswMM=GfK`VDUH?n`PKgVW<2c}ylknu zvu*-@15m^d=*b7WDTpx&5kz4@41j^@G70~T3dLI@;8wP`)Yeej8l(k95rL1ZdR&*4 zDsQSC)#R&+j6bV!v*X$c$4S_$cUj6G+_j**fyy^%jb);-gq1B%%&nY`scP)>%G^Xb zYb9dQ{=dEXj+5g}o<`!R9de`DRsWvU#*Zdy(Q`93looaaeEDfQ9a7P;G z`iT*K0G)}R(@htAE*FIn?f32o0k7|4O&(MT0)-;@Ua7J_B7FF>m|KbqQeU0J?aM;2pUUx(+AsY zF))dwJc8E?M!pVBgGPcL8tV;+e)x4IpGxITL7yv^=gP;m<15ECIG|O)G-?3)HlEfS zkl_uocm1q_QaRJiwe>RmAnnb~dEWed7(1|n=Q|C0j6JUPudwi$xZV@bdjcC**(5cG z!>XjlR3#xIOV%|OsgfU9X=BNQ zl$3&5KmZdDd4)iK02u4|!(b>3IskfsPec=zg%5nPkT>FrRa8_qU#Lrx>6((1cWgn4 z791g}q#QhLT9PbBRW7F)nkHrAhUmueY8Dlv*}N2u+SxqEp>)AyWAXR`tHug8lH;ib zUHlYP^e%~~2swO#3Qi@8H zN$8TwbJ>E%@yV!T_^hrLv?%6wLza|8ib=b&pe&@~vRRC&?1Je8DO@@sGDPU3|JlgX zk)Me?8+kqwK_iR?xqZNC@cRfkO|O&XaKLU0I6K1d{bMYLrUfYb=JtjrpT=5xEI!N| zy8VSF!AK%#2+N4cv7jXcQL{)(D5}V68pozofgLu78a0x9*dSJ%O{4}*Vp;fZ+$8C- zre}D~8fp7PkcJi?4vsY)`pmF_ib9mO4~u^(vAA`jh|6lK#tfTB*%?|g(G&BOzme#P>y?{k3|>M^DC#y(}xR(>8g-(=%kN2fNj-iob!FliiG&Ju*V9c z(;5(&Z_r&I*+dCD?V)&BuFK$vI54|+i5+(~b;@ShFAcX)$RZ*`mm1Arv;8b5t1I9> zKe}z&3`7QVeX#gapTNtQFWQI)hexR!6=_BZgZFj-UDgS*A#RZbScDoZF%n0G)uD`& zbXLFs-h%@c9VyQDchS}ePrU2kh)qt#UAXWLSWkAX{1YoHolsu?vl}g!F2B2!`ycR= zcP-W*#qz)5a_LgLOSxaYTDcp8a(@^;6Mc4jmvUdeDxc2~K8pjrLRju3$r*kfW$%{Y zfb_KVT;zr$yE7hG3%Y$_r_3>N`kp-o%`m6>~TzJu_VX3 z0m}70l1q`&`_c%n?uneep1I5$I+}wxy@+MZ5f62|XpVcR4*PWK*pG%9GvZp!Af8UMHzFJ*C;dz|Mu{&C&m?Cdk$G@89dbS)KeZ*!6# zRXJzngKvzhwb`G~=9Rg6)y}3eofQyBp~7-Bo&Czn$`@~msdh2cTmHAPal3RqV}WGk zStPrB0s~9%iFO$qn=!c@({qM`rKeQP$R(AsylXrBjuI`!EiV_9q-bW+ikG6{c)d(= z#%Bmx^FcgfuE@bM=sDo`XA-F4K+`oCQgw*t0f#m8pioNXs?}VoB+UB$rcB_s9$)Qg z(;3$V-yk}e9*=fZ>R|s|2Mm!cs4h~oxT2@E(Gd@cIZ`tH6BEW zhhF8|!DoYLP2#2qG`EQzVo0tRLLF{m83eWttGFEt9lV>mXwJ#zsh*!6_gC}6z%~ETPlp54I6hHcqkrR=O&!GUKJKcc*vVnZKzcIA)g8ji8 z(ccAuwbZ^bU_Xhl#ViO+gUuEjMCy8UCN>fHYLcxdwRQCHmUwNAxOJ{=LUXL+7vSdx zDk#GHh8m^ux2S_#VXI5yJBPU&D8>NMQPA8CG=n+x1psTZVepaZ#cNeyb|Lv{rg>b1 zz5g#Cu^;aB8b^*i^*?bV*ZtEy$W1dHm7(B$e+du=hYx=W&l5kuUxvPJFaN_fS@k-` ze*i*m?wChO!+<^&xZ=0JuP#EgiUP3E))N~{FM;;12+=faC@W}%I zZ3|ML~O9ybU_P3 zkcv%n;%Ms3Nk;t9Xl(7q;-O4oT2-eLXjxjQq!MZUl_hmoo)rahZ!_cJpUUOR0(xC^$U@V+f`feQ z?6;?#R!oG`UJlymppu@Rgm`VVR8!aACb@1H{L+)w<4>%n}N)d6_>%UCV^98JPF~kl8}r{s!7lit;73XG%X8E(j_r z_+e3GY*XKtD6z7bLGBom0hU;enqB~CV+Zd8fSbtb>RMy9yV6@O!f2o~59s(2&T73v2cCY>P0LeRIaulv*&2JBJG%ZKzm zx8`%Vwo!*Hv}mOfuEbkO=kg%6L^#g}}&Wu%?KI0K6d-1p@dKe2))B zCmp1BGR{r&@%A3=w?YQ@{B?+X+Q32pCIOd@{1yJd0p34UDjj-yE0hWFLcBGayMiTg zJ(#al?cef5yxQByUtizsY;B!eU0oHs4bbU(XU@D}nIpbQ5Yv+;za2P(@ng?er2*70 zN5TiKk#OhE$iv`S|45z{1COLy5U)%#vWz`!u?S&aGvqk^)$oarkjSs#i@S#p=18m# zLSGDGIVzEeP7y<};2Ri4n>+~?#MBdYHdKIEL7517>x1F5OM=O;SOrJmv)}EF-W2+3 zeH;BplG6@$(FnlVJ%X`AWmovfll(q-wQd1$z3H{~pl1q?cn#Ln?&)?8`1R9hKkv8< z!&MnsO#5i9|5))2UZasnv7k?>pT3QC(`VvR^-fVnZNDArXu%c9g0OSl4@*z>kjG?@_IgmH^gGaG(Rf1X} z;Tj5&VTP4rm+_lNut&bR6MX~f1+W{3mD=2#I5x4iHgOC!ub|VS6wT;+ zeJ0te8dI*pPec6``LHA1`~DWz1eRS?rqtF@;8IHuPNC5*9P$tgD~+jN$45Ki8O5wjgcc+ zc>#sWE8_)}xU>a9N#8OOiuT2*690MKkt9x(V!Ge>CXGA_%-DTb*%@PI1nOlULy@2H3SAB|0m;O!6f(rX5rYtb`^Z3}`8Z7eOd zMJ&(?vd}0_75&a5tgf@x)a074W#0ku5Rq3@ws_&yC?#ZF*n-L*iqn--&eH zVV-*&^6X(j9hTa?Xs^#bmVFn<6bkp;E&ld0^5bRHa2f2Nj213typ$(@`hyKp%EaT& zzb57A8Y$;>TPH4{h)>Iz{LNdOd&Bx{;j(%Jjl&D(IPgYjE&`;OO#!WFTrX@}d6Mg* z(w@&PBzPX7HH3Kf-r7Q?BXf4P|H3|2wNPo_X=!>6^|JG)ThmK!r{gY7Tle@_#@4Jf|M!XsZ0fLk)$VSEwLdI9$wPJyr3(67jZo}`i#WC_$*=SGUI>@PF+ zuvj^&s3YZ;Xv`ZLD>GzK9xo$d(FQ0`2E|8$!dEFnEFi#H2lPTh1L(81*WG3YWNbDX z-GGvC{C%BZ)YM6S!=X!h`?`4XiJ^!&^YvZ0^4{Ax z&tj?TBJWD(g+zw-7|4~GBN?NYi0+BxOr;rn%^+_o01}V{C`RC*-wxjKWr3*X1lA*& z?_l5%D8>Mfk>td@_o_x*IdBr-Lr!w91FyqpOwM#S zPi78sKgdVjS9z!y_1fYObVXkIa;nTt!X*5 z@jEFy$@U@6(>I)yWxu_%%%DdK@#J(NnH2G$OG=*YIjXu3f89tq2KYrN1K*)<;B^F| zPn+P`jAwTfd~!syO|#>TxKOn{aCrdt2bfFX!~@p`VHR)3@uicwyOK`Y=oxBM(jLuy zPg2!HJbv?CQ8&$=US!yKoKf_XRmDk~XJ<8sLC@vxnq~_Vd43Hug^xa(J4H3{KmE$6 zm8dMSJS(Y;T4+?2vLkh8IZ@W>KKhTz+Gi1blzQY?9fc`@YcXPcDrKZ z9d+F%2z9t638py_$QNMq0_mOFWh{h)iw1agFX2`tE9Ot~t(KS7Of9MzRvSDf*PqB}RLkEh%BEL4idzFO`RdbkgxYkeH{l2A($ z(+YkiSY{-CfOsopFAed&+0R;C^n`iC(5?P zdC1G;Y&8!`qt)t(+|;d@fMfgIC3kB1vndNr6!y*ghnHvcq&M+!)pG*5?0FI&1n3hB z1ot$K$~3SS+KIS92JWs|0h;! z6Ae-vCd0pVYGxU;VT=bgJVQWUWsiDWR@%6p^o&L!R0spW=I6De$Xl=nJq^IE2RKXU z^N+AtC{(1l-nvWW!0R-Zknmq37qcXeLvrCl4*g>PpLO3TB@=O3nJ<>gg$~%Mj9B#% z&XHu6>2MSIq@?q#WgIaqR?vB!we<_R{(a~`nPFuqp{8QClS|dq(=y2uGuBsB$Wh08 zRM)Zy+Y7|D28sIc1dY(=Gs(ouk!(%5{{xtuXJv&TG$N_$$kkjb{?YeCS(SP$O2WbQ z{y&ZKN{!fnmqzuS;XLXEh1pHk8$sEqnD#7cRY?E*!2L=siz2Cb=D^DlS>f*eHFU8< z3RdJdzu9jtDf@ zp*|X-;~^63WH2X+;HZuTxJAggH_$cLNJQ3B)2@If-u4QR9=ru+mL=M$#raAZM%XOE z>s;Lv2+6;oMcwIznREdmCXueVRgvYS zSS+bqMoNy)i&7M-^U?Tmo!!9nA6Pchcd^@3>QnV zeALM-Iwr%4(S%W}&RY$N!A|P>b3`*-#**Q_(c0qK3(xG}ibqln+5jRY)^TsZt3V64 zQyWhmpnLa-J3Cp*0UCM9vhfE&Obzn6-&|y4l5DBTcA0ft-Ca7Ab6*gvRWVf;@=cwS z_KOByAM%SCt+?b$pL@Ggyy>ka)sm%{>QB|6uE%S$Qrgi>hn?`;+@U4>ly}Ax)l8z4 z5vL`=(i!%MkVvSShDUo-!gHvd{M_3$*|ut$la?}>Ot6=yYhIclAKWyYsV$IFLNL}A z-j3BM#sU7a9h!(do5YjNAiPWrvF}I?J9rh+KViNq=Oka3bQtB4{vYa&7Td$yO#=85 zk6$>TJA2Q*Y454%MY^SjT6Hpqt4YT^qd*r_>i_DmoTO^;ZB^?LCvxS2liYW9uX{=@ z4E)oE{nNoSE%?pdy1f=)H~~s$8N0SP?5W}*gg5=65Q1BZVgQ4*h2=?t2PBMFhD#SI`nYIzcwoZq0f=E0Ag4L8-y@(e>MXb;W zH=B$uIw3sIrDgrZ(!#C$@^9fX_o`ieQ#Vw^i(I^*USwGnsC-_UaT*2R%BGVCKMqyf z$9>mzTa2!X@o0Lncu^I`=#e7^?48Kyu<6*Rz~X^NRuNfb#q)@ch4%c1PU^GPyY4vK z|3idWQAy?|jvc=BvFQTKA|%J0w_CQZskZ<%55DFz+<~)CDYD~~bGexxKRhout~>25 z)ZcDsvdBlq`maoQ(;BCyQg7P?q8vzKx03|2hK(=6g>l-xmJ^rCNkwFt{KVPAHFtzS zHzV<^ocU3dnYu;QbbCnY>G#}P&Xpa<+&^=69&zq~TzBd~ZJs%sDe$7K4Q&Y>++QL4 zQdy+)qDdu7fliI!S{;0YY2Nk?igYd4R}?|Dv`nRIx($3DV@xgcGov3W}&3HXDgkyAd#;M3m7`N(N#R|3BaX2k2$2V5JGh9eTU`ykHGb&-2JuNiM>6ot zEfXrdD_lTIEmUfi28DMz?ssXJX&71BzXY$wCHzN=9*Lh>S?R9_rG_zEy@*b7AdtOi zvqiVUU={&v3smuftmK|x<8kN##)Amh4_Lsfn4y!R?<$LTFK&_JTIxhJc09W_dCWK= z6?8$08?Jaq^44jJe%UKRTopZTPE@eypVAj5zC2OJXWcC<<9lOnOA{4b4xT{c}zdJWhI&!sIK(Vu*UkB(2S)^B_NQ zl-i|MTPsFXcl>C~mqmSlWwy$M7>dP&^wCMY8+*_&{9EV7Xk{alFiOFK_CwI#4~q16!vO3FUUq;*2Bs4$f&WM&?GmW_QJ4<6d+5cm1<82fC(@+H+5h4`U5 zrs&MC+bJ5i9qbieCUmhRW(bqS-T*yY>zmi01b`Q>O-5iV{W_*2Mm)AgTlGc=8n>ig zgSN4@M8>tK3~hZ+le{!FEM0^Da~r`{7)(?;A4VMDcJ)FSLgLC*X?iu{(nWNwi?DaJ z%^Z3r>l+!yy@Y%^rTo~VwWxxpUo+`E`nE&@)iqaEtfHY!+o#Y2+5TfWpUEamccR)p zILggv?j}x_{)hz@Ay|}oyO@#<5cb+sldLqQ^yDBC^Q#CkKlPk+7-iW zvX@uaR@ZvS-{^0Jv0LziL$aP*$5+sI0wLZeZ@a;J;@{5#x*Y9ftXETR-^8&0yrviO$? zKY6-X;Q570C+R%Jq)QemHug7=trsi#31(?-zOvw^6C9f;#I$|ETzDD1i0cG?B!H1_ zLslYN1dAe=F6&H-t#w~G-G02-K7G1f ze7t@71=C-H#kCubO^UG$dfu_Qi>3RfItk&#(=64LfCvXJ(Xjra9x?ZJdUz`3a&CEl zg|WS=l`+!^J?3gM$`<#Y4X3M_J7#r5!}p|+oQ%l=#~`<0X!gO<>>V?KEOwdrb<~2n z>e}UB-soJdXfi)tvs^qk{rRB&BXiSrlz(DiGA>O2*wrW*osCfE>LiV{i8ss&ir2QK z0OJI7cK|C~#&V7bk;0UkQE(#y=gg%{mSE`2oSFgkdA(M+x#lKhAm}$}%b^~jMPU_% zWG6eezk)1GRXWR*@~ODFT*ee#CM_5lX(K9qUMF3|z<(`zP;KM7Xz6b?8pAb(wp(-O zcDp8BSG3+$=-Z(IuTE$r#DRc(G9vipniUrR!z?$KURpA-JPt^oL0ty-DZ@KU6{9)0 z`%r)S7lWU?JpLO65X240X{aGccL>0}B=iKFP(1K;tFYgd^e8X>3LK?V&PUXE(bCkn z>n47B2jzKQ)A&;acl7WGhP<3D{m1gtUAwR`~={L4(o_d6lF&8NlGBrZ$P(sXY9Hu`(q zcP1k@MNZ?V&l4|97~Vwl4gZ$fpsTQ!T5t*<$ktHwFl+JGGmHm5%OdVj5TFYlU+~Ya zP?;3{k;E~IY9=%3j6E5XSe8L4Bg&~Pr=Yl5FbqXZ@@kZ;B1uGyz#4$e#&C$$<54Fj z{n^^N&T41%T*s?T6@D@*bJ@KqT@W}nn~KLJEwhkFP3a8B34HAiN8_z#LXbu7jYu$L zF)Hy1H5yOKiKvofqnHo}KWTNfZr(Q2o{R)O$W%|GV>#zwjYOC(bh_Cgtf?k5J6qYODMh@R>bAS^vr!>i zYt^&S@}xU|+s6EO< zGBZGYBVHXeKBo;xaImeX&K({x!yMHWQrrW#^*{NT);RF~;$4IsxpZ&wweJ7}%+V+z z0hhVwwhuhh(f*J75A=&Ol(Lvm`q$0ko|^+b7Qu+>VOngm+EN1yNvi-mc|I_|w9OI) z+HQhOjy4zXe*N8xY7})PwZAcO?9O8oR)1ZMo?AH=RWC2z(`??en8K|jnUhB+@qa9Q zU}@V|hjPY$!Saj+R;U_8QqMq|R#;I>`o(8q~I3J>%Ejsv;_KyNG~Vwu`TZ5t|4XLqLgRL-mk zNY!lj&;)KLlNUXKu?#coZLda|)b8(gsta0;JHF|~ZBCfv@iXG$!~wG!i#Jl^wJVW2 z_kVKdN(v+U>MGHo?4va$A&7MQY?lSGE(UQ~5cO_@W8(-seKR}(cV%2zSX=6t8_i+n zh`nc@)H9r>aTz_8&wE)W9%r&%KL5UWDwR*AE@VgnRrGV~5j;Z6T7dk^$gcK+7*tA4{6R4s)o z9M|F~8B>Kf99ujHD)C1a4{H^dR#B2E%aqa2HDt7{@a-k1-y>qP$yZedNkZQ6ke&>pndz#ibiJ^?B; zqsAQ_rSI(joAj3PgzV@)@PCs|uM&NG(g%uXcvHQkJ9obI(xpppdqUM9mnoe+SLj|Y zqaPTX+hUO<@u#6}kViHFx%R}0M(>V|(9?JxGhqG(%wEW) zR}Kq?TvAL07uLr6B-CxJ;HRHFcQTt;#-%YYAOP?t&%}kCJfFxuvmCwoEW&?-`RaRQ z4@$jXK)4~^A!I|4M>B&2Uk6d(6VeJmPzM`q^xbnOUH^n@xm#@_i3?0g5?rvcOk}v+xlRipO=IIhEFGm`zny!!}}3TrVtN8ymTwn%@WVP zxWc_or%M!qTMG@l$ZjrF%o3Kiy-IhZ(^>0u;*!Bs7R(t%^dqCWD@8mPT0~|hNnOkm z2o)uepG}f@JDz&GZ7U_UiUH zE|R#0DDem@ z$>c)LT`K0Yc|85B1?GohR?RKvrplfNZa=A18sF+qtL6O*Lw&%@-w(>KT)TXjldo2; zzrK5s@kV19b924*9YyxNO1WPzhFJrPGrLnDhqufWr$=Imo(?P(yHXNFI0_;GLksM| zML=*Hwnhu>NS$dFeAn@%3CVX{-!vwi4uhE2lhzS-B2#82D{cc4sW#j~DL>)tV^I37 zGW$F4KI{cE*H86hBUXmte&Q1G zx61_HmP6uf0_jaF)V7K6IZ`KT3?EjjnVoX%l%G9TyzB1lml>wxOc3RmFdJ=qzC+2>5;ONDgu8-LqigSu3!rHMj0lh3#f z+tAFRPT(^7Jgz~E*jlT2j_=S6*X;^O)2(v74Un=vqMv4lD9^xgBI>ctHVkvj`8E-d z#ESh7x7U9$J|A{=XWjZ1KEXQJ*(bPKe$kDaY)Mc|CUe4ynwn$ zuW#ZX!-t!u*|NSgFE6L1C;In+0=)|fd zH;@Plu|o)yV>a$VhY(o_?KTCefw0?VeQX>mR7dtHII?cLR51HJQ-8avS;e^e5$8S9 zDp8w$pK8k<0L|GqN_#8pn(v>!RVrGVBi{G4xjG1g3ijF|O%vBmQ}a4#@i(qPhfi~4 z0AKzL{rQdZWpo@}la^18Xz#8;)oVr~tw#LpOuU9Ph!&;-N<>PbM?wDod}$iZ)~HfdFyj+)zx_VLvoCeb zF_r4C`p50r{^i%$=TXNW;M1*=xKS5$AqLUW;?du(*kXHzl(-5rDgt5Gx78OQui(-eP;_D8#UWtZHcGuoc< zKH=R#e=OGGq(9zMtU_OG%n$nFdHXfRcL%-EwT{!?c;dP0rtepRp2&>oY>d$yo{KXi zJlAa7ql%Zstm|e+RVgp^_U%cI$SK$PoLSdBrH?=7)zi6c&q;23j!i<_M;|labI*)F z<;*pnVSsL8jFj?Y^Yl{K6L-X+nN`f z+x&_gf&oE)OP^zmsX^(OKoOFXgqi|}5ASvGFf)Ve_<(xDlAe0Bw|CF>vPxGiYd#!* zI~H~f55>eTg}v0f50A?6vWizN%cMR6JC^jZ-forpstW`6M#>SrtCXWXwp&5{EFRpE zE86O+Wf@m1tC#KUTGk)vcm}wlto*h3w`)7?QqH+cmu`%ACW#l`r4&4S>{iaB!9;Rn z?L?-hoy&R%Pcgd`_E!fA^AF!(S;R+Wx3ZpC*{xbV_lmxE_3<>Ao_1*`n5lLfP~oI? zBXfmG3f#3gJe%!WH8Qc?NdK$s-dej(Ntd6da@N<;KL*(88L%1bf}UH1ELR)H6Rnn%n$9@eVAWBi+wXOIp!aR$ zD|7X8DLXR6((FZSB6&_zjbf8HRs*PBbAZqTc^_*769&Km4NOs(K!U$9GfeUG2Usv; zB>kN4@1L#a`j>LmE;1=ZU<_zBqvTxnZ;r=r?%u3vH#h8Jak^M!cvaHQS>@Y+(q8v6 z4c6*(`ZZ(UQdf8{x9HJkH^G# z*`LQf$i02~?(;M6B4HA)YvC)6clrm$3E7LUF3#NEc)~>;mk{K7kgaR85zb{Zb;B@KuCnq0yMWpislB2R}+g#WeqIg+c4mkT89w9fWtQrpv*VB zG?xDvnN2yhte~2E+}Z<1a(aeiOvbk1$YrD`$1@Fv4K6beQh2wo zJkX_1D0W&Xnb{g|r~PjKPc5Bes*Ef#IfmhKvdmODMu&?vMiIFz&oWsh%2pA}1Sq0> zB*cU@h&TMJB6!kj4}4aeCEKifEw7@tDGK>AYS$qf9xn{-w2A)^x?nenauQ-QTOSQ6T5Ah=r&wNrW9UwWz5ve8@9TG}@?djj5V&78Eg z^deg6zx1}_wr=`%JUwA+_GDViOj=rczQ5ji+uNv2_#&A*?a2MZY)t{I=pb8@xY!2u@=Guv;DVYPQp@CsTOxvz%mAZa_w- z*J~W!V;-1ha#_V>rg_#!g3wZ&C?m2ftQeKz@uncKJ}XW$qhAZ$Qu;zBv*KxZ8Zk-I zrn2RRLlsMT=lTT!S^@6?}n2Ug2UAq@;tHd1rRLHY!zfi#j0A>5Gmh zxROy;@Ml4}QSOO6%iTwkmMb%_qXApn`1!;h!8LQ`x|h$H`RJZKtQj|Ru3>PTxhro? zbCj`BRn$HvkZkDLMuH|z3FL!K^e33t$0Oay>+o3r|E7nvAtxMFagk&WWg5)_@kVCb z`|iJ_r_IhtQ&b}%O|M`Ds@7vg!$L9Z*URb#r|3lxdr-?^Q=1O#4qY1u> z;3{FSjzna=VtswR)oFFdlmGR%{MAlpWuPnkBJszRN#s`q6ca5FY?|g3@n3pL-&pT< zTb<90M}2jD|KiF@r?WO%iVv}1+hp$qm`%8Gp6gT?zf}!gwbc zKeIYc_qYqxh+ctG?+(k^Hx#~UCA!`9VTp~Q1U?!E8^!f-BQszJ3h!rML_bq;*zK&)~3T1-vE4K?AQEq|eEnn`Cw zmK7;}F#g)NB0Oin{u=Ua9gb!6p?QmfTUMuDw5SUfNj`A=p)IOQ%l z#_O|4<5S9kGlJPN4OdRPji?}|3QuM~nC>3*vvKZK4`qis*Z+(7MwTH`iT6f)@4Pmu z%_6Zb!f>bgB4H*WzIOl?VK1T2e^?cg3s?d%c!;33-YC=e$;| zxp%nJ>c`8~4@shqZ*JE(fyre<3ly zxyb&=snBmTMdl=eKjKkZapMUz%Df4v79_Y8pM&?HM`(>Bjj_O2uvPY;YBrH}N$Y+j zmeMWBR_v6Ze)#t|jkB8iiUhkxQ4WEX$TGEzWYD)iw=_X)lcs-eRIA zK?3=RZp`bJDC?s1p?}BWN9lq#%Zcx<&g4xqeezU3EmslZEX^|;8C6rN)>oUUA-5KJ z$r1yf4?K1*;<1yBEJY4Rj)2FJQ3kENU7${9#95^kBr2;LB+C+X7jJQy8K8+^P8cHa z#}eCkPG4-NG%|_zCy#oJU$L^)++^C8CBz8PxRG&LIaYTw1tyX6QvWY??*isXc9jXn z)gwYuC?tiXh|n|i2uYC{k(tU&rBYRuRaw#1_2{mu?xMO|>gtEv<+i&Ur@*hKjh|TE zZtNM_#@LW)z+UKO#*0Z|7{C~8){w@GKfv&Tfh>Dwncaq&0k+DsEDN^h8yMBzb8kc_ zl&P$$?rP@Stx73E@woS#b6@A)d(MBF1u4w(p+r=Ak&V2$+B)jv3r$})or>~k(>!zE zok`xv1PZlk$vXT9uU{`)DDJ&J( z42QBop5?`yFJFoT#Vj8};o_ny@M>C)3!wI=68CrXxsHfsl=BW`tIO$|wfU;uYUvBL49Z}Gg&$3wZ47)eUidc!XXoGwHv8XsLeHxo%XcXA>x zQFpozom3xxykyR40>{Vw;dmkzC9knFLbwXAo!7^&ISG^lG!UWzHk574c+$DbTz~hBiiAOI4>TPlQGh{3Fwm3E2y;{GE0RX(7d9`@eZj;Bq z9Nrdxebb413VXq?ZaI1(UvG=YZ+KjnZj0Od$L?nCUNglYd^OuBF%`HyjvtrI+pD(b zV7QOJORr-4r16j;FfjG!y*+l%TUZ0`TO{100LS&MF%n%2Y#ALyf;eR&*Q&osse}x{eMbvyG5KE_Hfk+iE;&v}ysEetHHD(#A1NdX=hS3(pOyNTimpZmzs*P%br4n$?ev-0OyVesGs zN;o3Rk?`zXIz5L!cincIz!+IlDGx79kYKw2V7Ev%*2W6P0f)?IxAjvp6b7+34pKBd$ zJ$Tt#R_o1=&awtq2zlB$9#$n>JFheBtXkmiEG=72^kZgl@ouyAKzeZ_mw#ey^|3XU z+^yl8^|T>pMGL-UF}p!6q&G<7PpgnRLval#f8ZT0QQ&RjM&{xLY3*efNQgulB`{5B zHYrEOs4FfF1okTrg6A>U*L?|%BpI%rJf1gS3PXFXYM^_f*wqr zB697H*paU7T-}k-onJose~rHQ<)fZwcxtKM5?dfr(KNQM8e3>{cQ_jC4$)w5dUejv zX`NID?QZ$dz_j#TJtME8jOnLr802Hv{^8CjQg238){)~NBb|hK0 ztl`i!d%c~V!9a$K@?fyD1A!ZdL(75yp5E9P#7ey5M4w7QYz$l=k_fTC#sM-MWe?XU z8Y08kHV3h=z;S^@g2c#3QVVLy4n>7}1}lVP*O^!(;1fugj3H6=-1R1szerZe41zsQ zU;)Q5F@jFi4Dit4NY+&6L?qgU6Bgq-LxW}vP%7JCKW++O97v8hH6taeu_IDC|q8>-E`+9QgzHY_wBV-x=W(SLtCF z`3otnmdP0b`)Hb}aC`t?V=S#c?rY}o8Sbk&;#{#}JK>WMypD542M=%cm9|b}sG%34 zY;au&$pqt5PLo*6kH$;<=vg$kK8H{xT8gjFg#|xHfj;xi#0Max+NDQ>EH5J;SDKqE zMO@w~4T~?63bMt16H3g@&08d9XLF3>0Q)k4lO+IGK&Zdc_#I+JgbvO1W#?KtM@Bqc z{?~B144{nbKonF)Fej;pCW@eLD@U&Uk!~#<8s!MB>|sEx-LiR{xr1b$52~XpPLB z9bx3r zS;2+dMg2{ykMouArwf@HJNO^N2zI{XcT*EMYfTaX7*Zo4M7>J*nyBpJEJ~$iebTyHX$Au>f^dDz(vcv((4&^z;yi8Gi^TtvhTZBmW1jcNCy^z z>=JQQKU}*=Dhd&U%1|OYL#~t(r(GzLO zpF4N%nX~ZEJa=wfcee=sj8k_jVnw&>t%mC$+O%ovks^Y=*>rI1Z2!1P+9=Qa=^5=% zVz##_F;{nXTtW`4$CY*ve9lwe5Hk}5C0BDTa zg`sWC{}oScX*U{|6LtY%Ii&0lsEDLG!1w4cNri(t*B8R0E8wAqjIc1;h3<-e#x?;^ zpIK;gBr0`BS4bV;b~ZP=-2wjEG;o(^V7ff`M6d=;-T@pC++8~RK&Jcbz27=8K zL8<|R3#VRd5`I~ShU-N1BIE={P&+JOD5V>u-{| zJpg4Ge-8)7(1efYofLV8C`s;HU}cA^&VatxGazy(ebJoAPonwldzs`qejW046Y%Dp zck|wt1f>Bcm>V=1tk9c4$2cK#qR!=sHUxfEVAj^w!0i^I&(Z)+iYEpw+A#xMuAJj? z+mQ0$B>53ArDy0|d1%H(F+Rjx40$#Tzo%Y9!$cIl6k za?0OL%u7>cPaW8ooTnx@NqXzTIMK=aPyyZCQy*~3q=0CeH>wo_noIAXdO^D48`cdH zab%)yOw0YC8gfwnZXNLwFtwhfy!FJM{ETafWqIldsUhBXmB~8dzCErXmgTJc%*|as6-- z+~4N)8zyMi6>pN``r;-!NvA%g&P++#Q+LM6Pu8Dt2HrZPQ}4=&()5<-&Fa#IlbdyL z-$L}^8`LS2S(#F&rc-fH-8z^KPaoqYWTKAkA9LF_Ep!BQ^2Rc#d-5KSd6H)=9DUUh zfX%Wq4t8N5ncy!^8*``UNcbJ+x#?*?lBZocc@E4ynHuK6&UN27a>Gpba5_C(FR%MD zp3X0=Z{vD=5YKz~-kB&_X`<9UyzeJs%)ftvhQkxJei{{Stsk%b@2__INpi0^Wc}Ji zbMTT!&uu9Uo!aQ1Xcx!!w2Xr(os`&Z(dsmreZ;!b93HGcj;S2C;M;0H&}#RzplRdL z!MVQDHZ;z7T#NSWMBGg?f5mOdL%=lN$NlEb`M<rlzHL)5K%m1lmmgk z`|()l8>5eiU+MB=+zUq@P9DlZd9?PYZ4LLNdyejHII_7J-5!{LeQAH$BZ@t_NPBQ8 zaNYhm*+-fK)cTHt2-qQO=_ID^GFf2t856 ztuFZezJwe{ew2tj9Z4VwC8BTkEAMATRf+mO8IjoY{=9sO4W6S|SASPA&9V|r#v)2I zk%)dXCdEr>F_zU*UtoigcP8H)mM7QlI7VWMpyhTHurpohpf;yV3fEu(q(Bd1!GIMX z?EJDMIL2jV31Dc^gCF?7_g_pk#YaTHfT~O6>N6+eCj>vf)I6^&2E(xcS}J|;gQf4k z7z>CGCz`2;m&oPs#gC<$iHF6&xKH>x^4T$oJ#uqR2thiq9R^na0H&!TSQ0yqRvSCi zAL&KvM|2s2qp|$x_j%SI6yv_2FITY<4EnhMgevw&l3XAfi$w!m z(%VN3Fg*$IXdg#N7B$#cXt!{cLA!LHX9UX&Y$01tbWRiL9gafbt~4~R3N4l;Us9SlK9H~0GVzBXUrxL# z_;O*=f{w`CE2wZTt}0nETJhZ(SgjW`S@DC4dIk2M`q`u;Cb$TviK##;#HRhJcr_FW zCDYTd=IiyYwny{xxRsHzo1-suYOXj@Zl+=v5M|jKFlZH4<~Z1K&2> zB5s1jR~1TgbL?A?J#wk%^RZze!UgyM$KwHmCufmVD1dsGd=Ed2{Jnb->pzKao%FNl z-ku-fixYkjyK*8G61Es+vn1V`3^3av+)w`&?)$$)`T&Rn z22mI90;KH}wc{XgLlS^E;>Ka`%DPk2HZ=ipr=`%7JLf^NdFz-8!8*E`%$i-qbTQex z3l|o&BH1h|Y6}g;Kr11g;1+2G& zqKz3IeH*vhY&xBmq;fQ!&ZbhM-yE}e9sI?WG-Aw!3%ViW|7k@#a{7p-c$ptvgA}qU zP*3Suf6OWZ(UjJdH@so_I6fPF=RBwx=Tl2L0(`IK7sq`pjYUHDy*wrjuydPg`8BFK zS-ZpG9ZUaV3E6=oOx(i`;PtVM70f12Fz1*D!A^{0NgQ65#xNmrAf9$CC#@1g2G14v z?{t`c=R|S4P%q4v)GVYqQL48anN%v%XxEigx!sTxtSIAa*)*Ffd^SXYaKrTQhc-Gc zvHRIfL{p)13U{FSbcOq6u9CJ--(%;RF~3JV7=X9U`DeY*fcwk&^{+Dj2YCFxVp#~& ze0Xoa>SuAHaja^ApYG{pVyn0_A(uy({;Mn*i8zH)z(`47RoZrxM%asOE9@(mkhUCC zf+cw|Fz24#wtzOv%eAbmM5A)Kycqbc^0Jnb6kd=^<)whzj=t)V*Tq*?T7I2aF8+_BZhy`F7;x?MH7)mltO5rW8If z1#9mr`WsAZ1nUhD#RuYSbYOnkh$9Ig_Zl~&UP50A`sFz(5Xc7>o|}7a;p4HyG>X6I zmrcnZ@fZB{XXl=M>f@nlq}uZPPegtac-aJr)$WRm(<-OIsJElFDJeFnI!j2Qu?gih z3VI?dEgQ8KCWL4+8mUIbLW-AIE*(u3l6*Ci@(9$X_F^>?&xSZ37S~d}T;Ri%n5-AV zp-?zCE5|C~zv_*tb%@VYglII3->4wD#7xx5Fmn`3RnduIx59N6CA*Xr?G`Hr+HA*~ z>zT~4X8eWv5(Ky6LfQBMbs|+dIukr}C^&QU=kdgDO$$e(!t^TPw(Bh{Wx##E6@Ypv zeM6jkGPm}&_S}J(^;0qKlMj)`FC7F}UkLc7V%$dst+?rQ2xFViGbCR1tHxLB<@1vr zz9L?_(2@9DpR8B6e7wEO%jM^jp3deKarVMw2juiWTcrQFcYptLQ1>%tT2=tIe;U8I z-S6p|z8(l=rt%w!@~o2aa$C-(Cp)Y=eN&kA1=(O`FQbuhAGU?{gG;wqc1mMO;|`oOoV%k!+&Xdh@3om60MGZ!(ka;o19}pdKsnwxOP)hg-_i+ zA_i;g(daN*i^4$=PoF-mo<4mB#m}69lhb%ib8eD@afUoV{;8+WoFVH#e}%q|K2B^= zVSf*zlpbM@1H!{99+Nt39efiSoE>gShPB`hjaDnT30P)1u^ z_}?x*S3-BPY&@CCmeqP?tr}#*^WjYNzGGF0B!mK=h?3y+A5e4m@{tFRs!x`lc#!ko zlf9TMo!8bDKJD`b5R28^>XB|VgI{HXrS(c(EoU>y_zMDwYyX1!v3va7gHNbWs1HW? zdqJLIo3Aaxm&`0PYgpGhfqTmH9?q7Pae#9YJ<4IxMopkRHhqm-;WEJo1JOit_3VPW zI%AYey1v|`>4U6^faSbwPnS9nK~N?U zUt#SH|0aRHNYD~oIa^o-vhYmR0;}e%ctycZBbz#O6O-8rCf_Muc3$|per7bUGtti67`YIo}YFSE(<0MX&@fVk3yjXuS zlV=Wr{+1#$GEM@73DQUX( z_^}YUFAZg}$^n*eip0BeynXB;NOMCXehGAgfHWuj>vPY|4U*Yi;`s9rSDC4BN9p$V z7qJQu@k=H=^XwdYV>a2{HJwnGnUo#PaFUieG8f%Li_T4wK}JH`-aG?T|r$Z*doRIbaXB7sOjKdb03ZVc8d(v5+J#{vO9(xXOSg* zfaP`4B}`I^g(41C+me{u?Im)Kg`V;0Kps;GY8X6(3_}*Po8|ImE-|=b)*+^(0%XOg6grr9-Z$(UGH zczn;9qbo#6lk|NV#4*}-rGq7grDYCfV=O3;6U1k=$d2<8ctqE!pCb)xgh`?cPMob{ z)hm)-}u7m5kBTDWo7Ats@F66OzV_$J=)a;YY+rthZe;(Vy`OD`qkLpABzv=D zhj!Svw)zt6m66RZ{B7@FeG}J{G*bnuyOh|%wZIMp-vaGnS!t6sQ-!K-3y3Jm9qZ4z zK~@yASF)lc?~oBc8Vp4ezS?K+E2?X60VgX-CWS6$ecWSKeYJ*y=~yx@S5M!MpLnY? ze{o{Nf;PpK(2@jjxVQoU$QquK;z?I4|0@v`GB`1YK9(Q-{4c+S^$Q&OME+NV_eMe{ zEAZWq<Ei2pEB|T4_1L6<-iwnqf8)NHCn5E1 z!@wDQx*x&!1m1ctPT&0QS>-vL#h;po9h)4Y!^uR4BX&Lr{0RYEuLaTr@b9$D5sT_k z4{dkN9f171VrHK=kpv!#c;M*u@TFeQlU|RshYGRS_P{;UF{*Bx4t3~+trOJRimadk zEpvfdHjMt8VVzhvI!07i3bHo(`%o$>JwwC7m2rE(m3m+qkA9(_R>XH-eZG)HPFegl zSziy*n82WW1)Xuz9hS&4T3SI*kmc^tufiB9t+w&#Ey>ziRm@u1>OJb?xR>qG;U+8o zZb(}@Rot6L$;rb{lLbEz(#ww_gzZeuLE8Ox+kDO+{V3!|^FVh&(mTV&#o=gMPSYG| zzvAREOJaq#ot)}>$Jhqp#XG7T1GU?44=@gs&$t6@@ib=fJ)S|=B zAfOB212ajNY3l)w1iYM2AK)5#8+iajY|1X2>98iJC&sm} z@qynS?U3KjT=`pg%y^w0!B2-6Sa>c63#VLrRR?T8a^8WT}c(Usl94pgrK< zB>Xy*AYi?qXL5yf^=PfpnC;~AaCZ5aHghOj%*vEilG8vAF$ zh|rS8!#3*E0EJh2#5;4C%o@wu5YMdeL=Em3+2jyz^m;Jc!Z%1Zu00O1Pgo|9elZw= zNZjjnG~CAeKK`QzG;mMJ!DF|S0#u7>DJWio@!&C;Vi87%ZTQ-owrO9-Uz2e*IotzE z;4hWJJ*rX>D;;WEg40%PI6V_}M?(TkaXG*Z*uab6L*2LJ>&y-tD3=4QVPoET(-la% zMLS&wXViu0tCIzEu|m>*rXOGj9Ew8|?wh+fBbHj@s}K-)Rl z2NXLI%f)%>C2B85|2}}urwWDC=(G6y^J5U!d+FWF6T|&;_H!wC$Aif_bb-mo7_%VX zv}2bgR{UN{5bjIS04neuETguA zTEjU;UU=++Pg^4&je{`NoEEe#pz!3OYY^bv_XMhHFe?R&pc*ti=V3LVj{aBNX(4lK z%QP)HD}rH=Nu6@&p+|q%ZGDK|O==UAyG)@eC5nC9ULi`2La+e{I_ zEuAQ&Ggomc=-tt%TAZyKYIRM+LQ#$CY*9TlfIy_~xD9!vNYv9=oQu7xC)v^D0fc`fos!H2vLcD^i-(FAl(ns&K3Z2k#X;uAP1jeLrQEhCI@0?V*weTDIxZmpez{1+ZQt*$Sl6ldJ+xd z(b29@5aU9vCd9>pfXryz99^-jzx$wfE())Y$P3DRIU_N zC13wSHtDO1DJ`pt&0M`yn(Jum8CAX4yzB7s{OFM{R5L40QO#=Hxzfrp^IlcWtZQ?Q ze!NBEG2x!CBXQ)TwYheOe85r}Nq{Y65P%`Tp1G$qUuu*VN*{bjX}(;?Cy!2GEKn>N zrej;XYqs?};0kpS(cK~3JIq)|+Y*3UK}7_ZtDQ}uu?@S!tn79; zJolP=5^=HCsh5=08~&8Wu^J8O5i!mpq|@IFaoL+x2Y_kV3b^Fh@HntBTPH?MnDREo z(E$dqF3{T!g?@kwpD0Je+z*68qd%=kTBOV^loFW-MJ4n8A0G^UJQNR}2}%I<|+yJ{Z+gEic;%|d8+vQ$dTOl)GFuadqQ zEILjxXPNt%hnd$hPvF`-ju+5!W$z8O(wUg{kE=TbPr%yM>N3|@=`2Bf1-7bqZZA!_ z{~`@YxJ?glpBf|ah#j;rAP9jJm@JnA0l^0+fdlV+i@F5TzqgOq5{&WIhaKUt9RS;a z3{GJ_9105se9}Mg4z(Y#$48K1ovf8u%-zg=VELYMTdh;AI?}{4(;D;w+`f9bzw(Vw zSdH3+YozM!8Wiva65SKb9j$hp#G`sig^q0iA@ z$Fq&vaw7I*EU{cmR-(bi;SU{dAcl^gQ93l@&gs$${!_Fg)#{Nr6}L)XGkR;snQ6vxjvNYqJs_?`&77+<0;XDB(f;`}WSZ~7ABx-h^kOSQ2yz^WfS zOc~_%NiZ2Xjw&3D`ABA=STVf4&I!G>pxV2A`Mek<)V zc*^D5=&!cjk90F98VmO>;J><7%9^}-e-k%4EUM=HYS-@k>=iothDnn-Hu38zniJss z;l6zb_w5Ivadu$cj%X>Og0*?h{@m;w5FOFxz!>bBu)fwKIGg)V@E^FPp#eZVo;!yI zUBiauv{5=Kq!=Fh4M12V^>W}^*43C9fr0oK&--Qb{T zqLPhYNn%Aph$RwTXQe^4SrxJ9WV4V7n_`^vkFE?1mmGH^=Iy1qIv#H2SZYqS>)5Hq zVk=?hf@q5{)5VI*82=n=MAlrXdZ>_Ain&^*H1|{jSL$@aGrmq@ZBou)tcCS@twYu_ z+wM`f!P^yDI2B0-mMd-IxC##ii2*$<<&ZUD&aI4=D_6tC7J7Td!1D}Q!ex<4QPd?Q zrDAd_4GbQeTY{D*;}%E&|F&`Qb@7Y4P-H_N{~t#N%B|sxWn8(6nM@HM@D#foPQ;`{ z!tPV9VIDUzk1DQLZLF=|L1Jr=BB86IG*~X|qb$>KHyqo+ZIWxR`v9lBt@?BcjQlul z6^}*`?Gq1CEj*tCAacWqa>-aQ1g@mZr93rWBYE27$I+|t= z`GoN6UeC(hX;X~o@hlHnTYyQ|HkL;l%if6#{ z_8Ox*r~@6aaOt5$g78qCiqcB!Egh3$(FFNV$CSV-62ecuhLgG1JQ)@+A8BFq;e{73 zzT+q+#_p|$N#QHLfK5z@JsC^M=?FC9v^wbXf)7tl#53iKY z0NrkEU%EH9NW61AxG1+;k0@eF|K@dRKpiOhw@{y4y3%-l-JYcDWz;K5+Td2|mQ9>_ zllm2~eXqPS8)LN`N4F@mzwpGHnYp>-E_o46ZYI778Xft0@MK&ViBYW=G= z>;*GZs)05)ujKQ}{1Hd1GwOAVnoBX>*pU^2VsP|U=}Zoe za{dV4JUWTUaWJK$?M6b95)EX|t()fhoJoyaT&xm{%+4+|Z)66{^TeJ|>B!_u;xtZS z!IYTQ^tR67V%4=qyVL6E(9^WXG{2&kI`*crJ#v!oHkgRxYBLZ~Bp`8NEz)7N?dc7u(dgWFf&>s3;{6Z29uhV* zKGK}KJJSsM{5&7|&Kzy}bL!k28brgdf8hSbC7gYP7yMjPzI&k=_0DH--Q-un2t5(YELN+usF2pt$?v@E%Lg-vbASB}{?daFb zzEC!XlQeTx$>$;X8G&tP?w)G~qCvd@MuCKS^72bcIcJXk$sfyx(99(19y`4R*lneB z+kRAUQ5`XbI7Nyf)kk*IuR%S$*uYcZ|1x?c|7k^LwUxt4mVXH446=m#(Tl{VVDvwu zPvt*7pIkZAlsPd~zC>*)2$mS=-U&SKf!%amKS&5%w`JPPqQ?+KL#B}=$j%g zM!x_{c4C%VMJ2P3WbUbE*N`+A^#=A_w@VkD01pHo-=yLPEE+?I&;VW;IWjk$r+7U@ zU~>#&pp5g3L zCLSOLToZC}Xd-e6P7wvnHN4`&QbEH>S#*a(pvIAuG?vs1 z1hT@P`i)8k3yIFqP!H$2IlXWo;tSIspzVR>2xyWd{Ip{;JW)TIw^%`=!eyiE^H>s@`FG(5IMA0 zuxwI~xy1j*_Vy0lPz)hTGubw@32wSX9`lg?ZNrX3Hl`Ow!s9oice<37v8lmwCGdZa%>w2f zCZ6?Byy~e%_wFr>w|E)?LnPbcy%qiw><^p(lr^Je9HOj%qwxjX2>3_Hb zH78};tt}A?5U>LQC@a_`gZLaNV)O=)Eg&L|0o!f{;7Pg0X|VLPi!YE{_{VhyZgsDi zCfXeJ4Es5QyaH}C-ENnd5BKc&ION`S27Z&ZLdsWUVx^GU;DNtcZ@*tRtnWat)S7h*U+@Ot z(!oxzpKN_nevE<9-Nh{7GW)@QbYk;Rwz_JyQLf3GHpBfP+QeKB4S2Q(?2qu!)*aB| zCH$BTQLdF6)ecS%>H^dR%HQsR{5|sO^EZJF_Okh;P-ZWi*Buu_2Kapmz4Skh-^t$S zJq9FX=Nj zQPigaFa(O28Xe*P4bq#F`s?|uuDqn6m^%7@lxQtFAD{T2Scoq~A8>9*@vp?5C!&t6 z)>V7oDNYcJNwCV2ufr)i)}3*-a8UlTT7CLy{E@rOX1CXDTD6*G)$7*Z!`1KmzUuSj zY7YYUkvq1{D_N64#JY49@E2H4^OynI<*QP}3XR@%E#h6&TEs|YuEka)m_bSvw#Ai= zy%%gB2L`}b0o|{&$ zYnfN~XNho=9PRd}X6cjzmlZkyfF60*vE#}FW zenBs&M?Lk+<;#|$e+pj%Qdql_Y*C@1?q0?`dpI86rlmfOw|!adVQqh|Q`eeRO2?BL_}ygpX1C*{YV3jD?UG~% z_}ZVL2fZ2E^LE$YNhNjNAY;25fd(Rjwmo)e$B;?zFJSu`Hv&YW_2KO7@SxyF*`*N@ z@hDEFIuiiC5DIcQ91NUwfAH6SA3g&vb1*MoS?vTN@LWgJB|O{ZXi*+RmCcP~^GG(K z@UHcbeVKTIz)ZV&CUiee^-q7GdFI>N5e@%!Z;*D1#OiBJN&A`!b$(}0(xb2Aw0~}Y z+EmvKGci0W6=B~QCn^Hfemo7s(+*ncj-d`@N}Cg*eBoHXPpt4afE^3w47eq&ht4$3 zuAPI4vvsk^K4V(~a)67&dB+)N`p{7TE(ewh(EUfFQT45AREzf1Ua_lo)%eLmR}kHpp)5NfPx`hn#V>xMmp7 z6^|Bz{XQD>>&3P5Mb}Sp2h;o|&#Y&Es{nfkJ8~*~AZnu%SQb|juy5EUb1ImljLjE` zJ_8mI)P2a^a~t4XWvro5Z$VfwNfVG!op`ENBo$3~r+1_Zo?^8WWR+JECx(T{vVvaAc{lWtx&icplSH zV&+K1j_H&HVLt|IO^pe2AH79snnu!S7xzxvT5NMnntqnhwx6_R{OGRwp-BSWI8y`W zKBz@f+@~M+LG1dtPXqMs7>fJx6|5}Tfx%!crb_R3B%_c9NX-KV$V9#zFH z2#*SK%MONJwM{@Ecmgc-bNej@-4pH=-TE+WLIk2g&4BF-XN8~aPke6#^rC2I;_xqT z`QpE~w?Twx_-@Y*iQb6t-%nL8@1J!`ml$f(I%=IzY;UiMyzf1l;A zd&0e#HFmQSYMuSch zp|6h~ExhNupQ%3oJiGqA7cWYu+edTe(VzI9OzW{4kAAlBp3qa97cS)1Hw)TX+(KW$3#mg8UU=All_A&wlw2Zh^{#aoE?7GQUm z7WQWH4Rvh$u&)g2H{`|63|3&K^YonsnkRfuXU>bc>xma#!nzAVRspQ%CEFYUzNyau z&Jn9g5MZRPbMmroyU?^&@w0IHCOK1FDrV>7@%b!1$;d@j&8%5#8C6C82OelVdS|0u zul!A=-fp}pXK8qlR8lFWuvFBn9DbCnSgWN69>{M2wsYGs+Hmxg0S`0kmW`_j^II=g z>wBtC|HRRwKXFoAx|{7&ko~8G4}C~DddK2v7cAe47ZBf@R%;>+bK8BNCB7Fvg6lAy z4$o?sH;vDDR^Q#!j?Q~m)oHr_i2fr)1Td* zk~R_UShhE!f0~rN=@0jd+nduK!H?xG!F+Ifo^%&_YHsg3ngg8j{rTKa_nOCX$Me8b zhnVn!u@A(vknxvd2RQ4rI~vQi8owCl!;);sQkakDjF!;0+Cs~CM=laO8|xNo<|FTV z=c8t=U|6sahKoZhI#|u5Ox}jI_+{cV4~v=vX#;jz0DVK@B#ndaL*fAQMsb6c>txzE ztS~SrjYY$lpVc3Iza#;Uu?$EU)-~u_Oi7l}+j4$GlBAT+C>Aah$Xzyxz=2h8S?ZM1vm^66#N zHDHg=GJAAUcblx$N$&oz%+mP(OeWWthd7Q4b0!%djuYvTq7^Q{zV5KKMq5^91?K($l5Y8^BK)Bl6)u^7p1UZ z#3E%;5Ttk=w^dWB@$rmQ%&emBZZa!`Eh}GN)^>k6mocKDSU4IUUW`SfM!a54X3TU_ zjH{mYK@*pw3A@-Si9)=Cu*T@9n#)IP{F8Wq+Q@m5V>l+6;V7oI+sO5BJ&J~VxasEW zh7gu^OsGC4sc*={x3;iKK(vCbEx04s^OhABdh{ieBtY87F8U2L#Qp6>vS-V3_PW>t zMQ>&uTWByxBx)Orr;rqljVup)A@IP@o6L~FV_wITPniJm#t@3d)0SlwwL>$$L?9AP z#@JB$57!cF*|og75>1q9Y=oc5Xv>k1pG@z?1ec6NBSGW~vQi}+jVYI-Y&iVMIQL7Y zbvm+CnmJUi`o)Nl^5;L8(X(q=%U3Sc&&K_}baq(_hWQvzv3_Jdj;GVXY}D^his=+v zOc&SErvxz|+Wo^W8e;y7c;0ODPjpk=5dc{*ASH!)bC^=dGflMMTSvzckp$N2CeQ!@ zXBfQOI~=ed6$}$B2s1@20bdw_2z-(1qpVyFhoi~GTqmzfZGYZOg)5mT5e15JR2E7x z!lIMDKniiu=qGvh1rv{Gg&H57FU%YYq@+NC7gFisCoyv+Ip0n_*U2r$>*g+10FF!Xd%z}uDOfZu!a^gja`5N z#%G(Go7-0m12OnW9B%#YJ~H@^-v{wYJF88!qH&ET89=KNo&ezKbQ(8D4#4qR9l&RX zrqDi)6oQPcxf^Z{e5wmYRuNk=`XeRili8fW2K+vQ3y8UZPx2`Wd)(n{#;mPq_ZT%Gd(*(^%hX>mA%zcVyg10KB4!+OCZ*U4c@FsUlX( z5R*82Dws288%8a!rpj8*uxJ$XR zAvpJgw!PZL`_;VKiqB*u8J?c-+jDGy?qVLsCF^la(;EP}j60*ww2K@bh;>*@RDz`N zNt6n$?W`nqJaN+KsA=2uKNX7>)(g?t_HfT{3m_wqVU4btRx~Ub2AE+EBp&}4Lb&sC zMuWQrDJTd*Nr-m$UI54?%P_1T;-zv(fcN-tv>fu9IM^308J&96BwC{#k7zj^@~y8XAk4Z9zw1Bg2ojNtYbI-2u`f;&OZ_wE4S z>Gxr8-n6$z%&T|QKIQJq*n13dJbO2pCF0#ik*X;E3m#DP72ERPMFAp?v@n&2eF0cp zp%VgVY7oA09Vxi`RY)ipw3E#8xSsI1o@8H>E}UsNX8it0s5CdD;D7VaEA#V;vc>BQ zI$sN?j)xKisC9%$hYf6$sJEd{tp>=KeV`(Q<6$1H-BM?7s|m@5~sVi7!HOPFU(U(y%-8p5oVLIdMf@J z5Sa37AhGIfbS@MR;*K$k$LhM6b@t9)B5heDJ4AU5?4~ITsY;6O+q{K%^RYzU&PD}_cL`ssez%~jC zvBuiySFa8d=~xUm3IE|8!veU}WW1J&i|M!$A&ruCWzJzeV2QEt%;3_P6J-y1dpRT3 zxCC>oTP+xezkA2j|AL3rg>X^K)seaMm7A8B!}GtI;OXb)K?3t!qYxKsxkOAqGWyny zi_%_$c-D^fM*JpM^d%ax1cDO)zB3E~1pB|eavZ?Yv4*ou!e|hT5XU8IkoNmSELNtl zCO0!v^B*m>{G6(9M6jlo2sbi((jGK^eD4TkxfE(n9L^R zlC`_rJQJEXq*7!)bjE47W7-Y@lIu;W8^erF(#X+;f!4va5+qVDxyJID<>5_eCP1Y_ z58X|IS-O{YgIT{h?b;ZRt@CoE{0z1BvtEv{C1TUoofLU+56vgZIQnv^e#O#vcz7j+ zVDoZdQMmRmcVInk2G{Xp)Ow40PB}^$HQ%DDSx|G9Y9s}o!i}=zBQt5bZ1ZoFs_%`_ z=o@|2rlw_PQ+HjuD>a+Zw9&uH16W{Ux5IOtB|%(zA;IVIZ)BAfH4sphay5H4TWvI( z4RZ2gf0utQ$#_b*dsc3finm@A*}V6Nyav8<|fhbzWicj;s8 z1(2dZNdZ%kbvFWE%eHlrU|Ck`yi_};`>kI0cwn_YbLh~_ul{P|c%yOrBkgqIi5}`# z*R)=*wsh#b4w;SP=Z`mrR!+32UC{OGcHHGSQu#1u3-o$OtViI)pCn|#>wffyf+T{oHNPn1`ul6BcScg4;Y)cu1fYmYv6^{TBS?T|eXipxP_s-!x& z>g^+i#J+%8mQEtbJ49jiPglsNiNGE@kKUE9hodfGh)HIwa=m2534NR8@+th6NJtiX zI6wM8z8)MC__vL0^7GakPU5F2q1Tyrm4C8b?k4_k;u!0tS0mPM$H?00RC*Px*GS-o z0oog$0_$rC&xCCzJPd$T_fdVhEdN_6Q7_j|l}?sH)W%25xGmr*bpQLGB#*bd_0y%& z8_LgPHt-9suqSm1@H$+fepjTuE2Oo#Fg?116YGX82)a0JfPKle(Jr2a)U|k_=)el` zvr!sK<3-!&J2M8Dw)#7GA{3qF9RMP=5Yy^p`uLyeV$g65QLR}6#yba~w2~-NuZ&u< zprE}>k~htP`7(%p{a`?C6vw)xk9z&%S!wVV$=)3d5OXskFXMkVp=*CxL*H{#>A7%| zj-}mA1-4GWcMcTOrzkllh-NI8C?1Q-&<`GjXN8CN7N>BCnTlBT`20KOH&oQ0ib?fV za&xjAoctzi=)9Si!0!u>6t8Z6b(%QMi1Q*H9!FTddgq4uNjJ)Fe_j(nir$QySeMWN z;`dd{>tH!5VACqK4#?|*)$Llw0doB80}pIXlcBdAcifBsJ5K80b}gadfywRMfQqT* zb)XD&(9PP~4f&cbL(10vygIG`LG^Pp!kKp3oYHQ!yRVcjkB_9YX1k2_W{7|LDD&OS zn_({FVDo`nmA!jbch_ybo^XX$HcsZ@x@HtaR`!M44$E74i`U>N6%@Ow0LF2DmtK3*>`S{CZl-Ox3GP35Ce zLDK0{d6q2gM)MER`)`Um%e^1kd*S=`UihqGSl0i?WC%;iSOfq6jSPRvk>Pk>Jj^7S zJdvRVUJ0O{OSsy1+A#lUt*q)UZjeSGB1w1<+?%-KB&)W#O%lhsYv#(OmD!UsnL9tf@=(i|Ii;8+e#sW4m{Zi0u(}jpx@Kb# zsY+=%yx0~}w(ddgDOp_l;9b8$Z7RizqC?LB>%c7qOla^|3zmiTWku6ho2VkfW-W}f z_;-s&c$`6(>R$wa^)iPl(yA|fPX4ZJDVZ#n>ZR;TI&7XrN6$vE;*)z*uG|a*=>N>< z)Ac8+Yj>5(LR7|zsuU`vccnC{oE`nn*-Q>6_Dnfp?}vk}ZJ65Z)ole7>>4Jm=s9H! zkc2k7_0@WJ!sp{%9`yDB*kbIOUeAwn>KJ*%>u(ar?E`XN+Hbdy2XQPPjkp4mRTGGY zRGFm1L%`^FPO$PHJSMXzHgIulAmh6|6z%bQ85)^nGDEjZq}}oaZP3^L1^P?$Gk7*} z5A!-$<%X4-2AHcuJh?dRk}5QUE#SGkVQf2KD!`H1xBCUVjg8}|-2vld{A9b;;T&dG zIs{b;Cxree>GKO#Qc1>Yonl&yyf#iQBvO2uJA6-8j0MGLIH*J;Q8f~kBD@@qK6aX8 zEtV}9anVY~w%FRwM3e}}XYX2q>xhNKEJ&pmi>6=Ojg#MrFn1)zr-D&F&Zfl_Oi<*I zAccj~EPjd0_l&BNRPf)08ZnBoVtjH5Zn^qk4-H)$MBza#Af>}gbc-gX$!WXQe=2MaO^+1=B?evRxYDXYsV zPOmsKO1%S+BjDiL0k7VF66MZXM;24f#f4wWCJl4Y7UMO&9up<&@qB&sXHeG9T`9c7 zG|w8wxm3nPCq!9MWHFgc;+x&0gFhEzi3EOrw3EkkxNb7LTNwS3X_`vfbl0K3&U~Hn zURQ#+4mQ>it_jXDj#@hUBX0C4cRYk5VjPA3B;@1a`1!f*)~Aef25*F8{z!PXZiM50 zK4iT9{KJ#FcGa2X*P+ho4V{AOP$9SNh&77bYFG7!--%fSj)1UIh>mhRl9QR)xpmX9 z%v?Mo@)5nUaK}nby&6keDO}>#+xfJw5trH5mrS!XdeJccBp8nr)A6-j$;e7*CM8_H zETq6Crc3OHxqW_T5Fes5-Onb7wSJ{V=Sy760a1`z$I%$M4KQO!9({hnrrPcs7dRYSi?pQ1W#`a>o5Ko3PyS}GRpMGQW zq2m!>xH5}7RD&W+tMFhd_H>MogjhBd;bV-)XD5Vb{jMa;wE>9J|S+ae@ULyKu3bYqHj6nyWx~P*m+NFUE zx;vYEv$kOn-9Q`-y2C+t(6`$UO+y6R|BhH8!?Bx?R-p-XQO|Ia`WkvGq;(PH1_L`e z6H=q){0-E{k_}Tk-nzXeDYcX_ybo+@wb12r>iomSZ|>~us+~jXA^g`-J3obg!gaN3 zKBjg$&K+rw&Afnh54)y25gc&pjwyZ@f$gK-Zf}6)8m5j~s9!CYw>>&Lq@nCh#b4pX z3iva2yh(|p-^rn#*6OAyuc1loPfvx2H|F0Cs^=JsM8vtYp$uF*VafwFF|GKDmVk)ljUX~SBd@w)|1tM znM}KW)3m{i3A1!S7RG3MaAI~!K7;Gbi4)^Ef?!vefpM&((SQZePIYSHN^MqPBf*Jg zKpgepWYv9K#i|uCJ`D?kN}{@wFVrn86-QU$*G?=r56AgnYy&KIc8W`dAq5%VpwQv> zU^NvV(+a+%r14pCiDAZg3l5DZZih-2s`HhQYfx;-n^IlOH5x08hHa0%>qF>8JTl(F zTx1@ERRoU2KjrjwG$viqT=NtHC(uz`tZ=MT2kj`j3Vtz$DijVL4@@+&E(h@hb+nmC z9>04vwbBT(Vb0(p5l&c4vqyEh52GJtJ8Pn(*iMh5&zI)rO1atKV~+)AQKDqVghrte zkWDXWU}ur*PnjK7m9|%vG7~;6|xPqqJOXwpU)Mk-(>M~bL(@}Y&lzP9LU${(RQS7+bUm`Z4PTb%%<`qT`#$z&O9{pG#!C&PQfjL@ScKqN!`EzCTZIs&| zKlnE>D`+zkjYbCBP>7NQ-`o8YKe{1#gA`sfEt47h;G4L#*64bV!r}gCb-_Mm$&Sl9 zR^enk^Py|39hrbe9Y@r0!9Jp$xEu_j$tPatrJ2TKh8axkkTvtl;-xO?fIU`7_R5_v0?x@7X?O-J5< zOQI0}bQ;@%A(c!5$Ritxg&6#_IuI4Ng_{pnc!FbpOnZn9QgP$n*0Ro>>uSqT^)Fw( z&V&S0Xl>w03Joirr?Ce{-vL1bhRUJW^p|TESPQ@NhlNl`xMucguwFZqd>6K+2NWFvO*0X6}p!+sAk#mQdH!Az6)(Pgp zR6z?pO!?Ibf`1RQfX7?oFeXIar}ZEG$cR>kY561a5jSTeSyc5 zfR_!DJRs8Vh41|cQo<)-L*_z&_r|voDp1Sv(d(QbEvbwx!>Aqw2 zk3$Hy)DoxAuG{ge-xbp_=#d^vi+g`$LZ6A;Q)KZlmTVh;W4f5;CHyD1?|MVj$W7)A zEnlYnD3%9n1d%1g<^fry<@8Kz0oa$lF1SsW#+FlEfz5T7!nT78ltY8h(5iB0DE#)U%HZ z;^}jA!N(T<>DY1S%|M5jhiE_iVo>kM{2F+G6|eUPn2}dSDI=t_Mc&lM-oZWe6rjmSIAV0sx6` zEnqEb!+|I?^K>H7QWl|$`2s7MEkTg)OT-rp#G6qaA;cm@3dZnXv%IRZ(NHQEjRYfa zZHyn$Wd(JPD)T(Y-N*h5kK%>8PhBIjd*9MCNj@9+^micN-O!U*RSP2_^2T5605 z!##Hcq~Fz`$Bke}aBeAHH6QH-dU8w|qSC-O$3;C2tz-~mve`JxM=6WZ1#L4H(^+6q zh)3etJms@)u~JA!=V(uwlScx2+Rz?9%SP%aZdawMoYS#!6t~PkSPt_V<~WgzM{;sZ z;#46UO|g6`p2wVLME$lB&+><3VQ21EiEr-AT@DKPSvni5oddjv%u7k3zJGkR7}1e& z!F)&(Huk3I$CzkwuCNXPCX@frEcufSxygYL_#PM z+8`lN0s|YjqOKlM=P_T$vI#7dX#I}c0&-o+#y}`RD>gzXSQwoSp`X^b=#a_i$pGy^ z(D|5%p(8|5{E{J`Y$tm44i?1Piuo!@4E)OS8(KH@dPESacOPul7iRrgs;|w8waM!i z>1pmZBgBvWA9Ton=Z2oZJlt@cYU2Md_#W-9gX3_?!xV~;p5X%;_Yj1kJ;*u4YZZ(_ zyMSHF;nvtq%RS_CdPcji*E*fk z9-$7FoVu z5f@PPWFkK!j?1B1P_={7q%7G1sfO9khZhPcB8t3#_M7vAoJE0PEKxKS>|!7?lA#2>vj&={1$h#rfCJ(b z(`Y{`wOiN;EzR$Pk^vTsSjnhj2OEmju#t$CZF{QF%r;e4Q8RYj!naR5YgDsZeY$Ey z5=p$dKzEXEuQ$=iHq=5Wywr(Krn2q270p%+`modLKVA-kBiZSWTu` zwva8>81G(PMmE8)W)R7ql?E_kO=OV9Py`svwpT9^NLky%(gJ)#r>82CatItw$zRwa znI5FpK19x9+cT&=0&54oYkuCc@Xu3jI9*S1H1gijvUkl!!uk7;)?Y``K%?jA6M8fG z3v1qVOIN1ryR{Gr%};ZYeG}yg_Rw@u|0;CLHY4L`P)zr=Qz~` zC=ifHO^daWlcy+A^Pk&{6J41)me5ks-StP5iHtHaGtAX06@--?aP^XC#NjHs7r3fT zRX8rCce0IWZmu`X-q73t^5*Vg?nue^RZNVZ9duy_v*M$F_r;4lni8kBkJ3C%^ywy& zjk+_+x1SUVyOCw1w6F~~ThGjo_2eX4noMrsaOczWcv7F7)CcE?J%V#bdK;7a3xUAg z8M*_PjhN+2i0NFs*dgfG=%&-pJoB~HwY62moF#j$8{dcCr9t9_(0o!ai40mTI|-$Q zK^iGZbs0ld8s&!;J#@T_P9g!A0~F>SECDk!w`VT1oG$mq|AByT(_nq)5~huy8IT8? zp6%Jo<+N?5%iSIjD0uX70`tF) zCODLE=yKW|UFx|wbeFLWN%L@nfYwx|`H9W8R%qe@-|HBN-U^^Z^Ld5--E3l{}zz+!1KwnPU(r%c2or&=VeX`X#q=# zq|)`VI2(~z6cdA~49ju68rzjG=f{&{u?Q;!Z&X9kSQJ}694B(v-c?hA%(ANd88Dl_ zCMcYM`LGUUMYDLe!E*soM69)#HV>8zRg0&~ybuUj>0@O<(SBCpL{SI|iAc~4C*skt zB`G0Z2&Dt3u~rW3;Vby58zZ>>1IEsE7n2Xz4x#cgw}C082ZjRZfQ?3l1oD~G51B+ z={hp75x+$IUV+bUYPfuTiTJfT!GeJ}==y9a&jwjp zhmGrAy*mU_3%^=+NATYR`w7}1!N(-_dj$F3NFw}d&PfTOiAc^n=M8)Zt%X8?s1Y)z zB0))D5n=@?7@5K!L<6BzG$0C+5{@OtW{MVG1Mu&nR_16%4~d)WW0F%9M0G9|;N)C$5WAXSRw{`+@C(vKyxMA?9`Dpc|!L zvwi1i9KLRe?tX12F1;bND>-r9?u83I8k<(-;BZ{`{TJg!hp>=^v(4BGv4L(G`RH~mnDqVbrCB}Q|0=nCJ}Jf-W@yjNL6lmr zIze^-&DJ*#r&qB_(f*)~7PVwhDQi>1gZ`gy_70%sI*=cXi+I`VKe2A`Z+ydvSCjsS zr%C?R!Y17hB`=2=@Kf-exMED8dkY-i)>16K-%#4s+MTP8T+ZE zFbx?bV7^46=F@vgA;{hvOO5eNJu}|u-$erpcR>v%DQlTI{CuM{HZ48yfHXZ;Y7FU5 z2(Pkug)74esDaIK0Ly4sTNYO>7+9CuDD%^ANY_@E5wkb_hj)JwE6}^{{aO3B;Y031 z&ra-3x9++NFG%*!-B8** z`o>@+96Vv7L^R$1ddHeDk!^hKnbmp;y(N94V1!pfhET~GMl}7}>`LwJ2L7-AgRgZK zZDxp{EVg`h!~FnyM=_eb(k*OqgMjfoBgg?LwWwIJPE<=&>ah0xPA-uxq{mAQI}oz# zKO?B!q_!Yg36xClv96RFnZ)7r<1H3eUs${(bbC%S8sqhl{9gM+<*g`|RMh^jrFYja zG{%#*ayb3_(C3>K0%7+oAMhg}8V~)~NtYl|^5z{obEG(u#Hy+bZPC+$X@uNur%4KE zJcS4&bo6LGkrabBgGyMlyIDO^X_YOVHMzNyuRJ+t-_rjZ8b0|(xl_KeVK;6pchH?T zz;V42j0Fo1ERw=PQdT%Sp+)BIoSnUMZu)q$|0h(ND*G$VA!xiGNqC3H3hk!ZJbWS&w+bcu zZo5>l;*k@N=R5iQO>JY|XrD1?gzOV1;)!@B8jnXa_{E9Ge`p)V!);A#pLqohz%hdw zZoqS_(5!UiSP~J)I0X0;6R#T-kGleybPj0)G-L_i_t^HU6>~`|8dg3PF%OGf6#-GVm`=ZsUP{S-)}KL@6X z8Yz%{C6&N-Z^3Y_RojL{i(cL7@VEDSdI;a_>>!yUqgG@R^F~xPL zDfNv<)<^@IL;R0m1dHs(bTbqqQahP`y2jRDk1`6r@)PN1*cpmFnf}(q^3WIx)m**m z7N52@4nvD3v99!>wKL}TtdrvJlMb4Ut2d`|Cd${EL-33Vy5T4`Py{0 zw5GIP3$#m@&W}`t^QZ&5Ft~Qmxwbnu8s2KkO>Hno77-b~aO*U{PM>bU^-n9oz7)gKQUh!b0B zcZ+m?)0(7K6N+2?TK-GWI|4e+*`rnc{MjX}j#!TNC8B`5ryB;7!eduRCwF&TXn71{ zLo;`hp;0BBeI?MJX8I(^)oj_ZP&3{C_fDd=_HHcYr+y|FIgLJ)KH2ZX$WI&ZF^q6C z{i{n8C!hFGQhVvcihG~Yal=fWbcmfA(o3lG9&rocbsuW~nr)wcF4h01PeWgkNGzG1 zrQXt#r=$X@9>g8c)ptdSw|~ z2Zq$P0N#fnpJ^0=6u(|UofjBrDc`w_S5pY$8Q2S|FR}8?@-1>jmP}&}ErX$98v{FF z&Dm>jVQ$Bxd06;f)6y!Oi9v;J6&}DMlwJa@9m1rm!G6|qHxufE?kDbQTPorARb$-Fscred*(8VsmvAgHEt z`N@}XT)uD%*cT)xVcF}u2KF3O>fP?k&u?#d!EOF4w8gI&dNL6kdV1Zc4^eE?r_QlQ zZ|La-X6K&*yMax49&oI`sEl4chlsg0-o%l-jhIPkbK>>&T--sQerxER^YlwwOw4Ga zoqC#$@@KsI&FY31)`m~?4WGCrp2NegZ9&r7_UgE9mInSVoa=GK;{>#=hUHaqfCWy< zY|xd}ZfVR-$#{+}?djO|a_m_e2LZ@l?9#5gUXotVMq0rz*IjcSUvT0%v}DEy*X%&6 z#$V=xgNtguGaCu7#@G^~Cn^$nu+ABs)ka_M|0%>Ivi*nCg)nwcruL-g&~CU$pnx7v z7lJxmZg+av?ja{x?ir0l_7<9_0@e6)RaDach=e-W+EjW^|La;ZTu7tGU-kmSp^i;1 zE=_#5|Jn3z8aFAV`wve*HH2&H{w?|rmV-*F$p;4=R&}I&KkaKzee1BK?ZFX7_T)y9 z4~?`YL!9QAJ!+g-a@f2FcyYmeYuLewaH%>8)d?5`3Pm)-fK{Tcj zx8gK-;nci=8z+`Tz~r+43Ld+6pNqu1q8wEN0O2blO%4lzXeb#~1thSn!inJs%iqQF zEGI~uEOG);1iVYcB{i~#pw$1+kXbo873ZY@E3u(KxTf);_};9*@(8hPs1yxV3@Iq< zfv^}3hJ=8?3zDR%EYC?&_=tVsg6-(A0g(YM>Xx}OP`9o_q`D` z{x^A9&ZFDMeFS&B35p{`4)$Qfo}>OA zt&Vf)uskXxtLpR4*v3Ehn?LxLw-nzD{gF}g%^&Fh z0BIk8pwie@>)OR@3mmBVr+KSjjK0?k}8| zEniir_oCpT0&S?L+4ur6W=@MNX~~GDMND|gO~MDxb5b+m7nipDZBl~|Oqz=RX8MF= z`rQ9B`uwg@PiQr7MpF_Nb3{tzQ&J=uOG>GznRh<+y^bZFuk8GrG56yToa%%=OAmMG zzt03oy5q)2k{|O2=u2qL(WO}@M+UI>TX;>`kC&G=(eKhG-O3l1HGZDJWynA%;9n@=^6j@|~CS{Y!c3GyHFw(~Q(phTk3LK(A0C_DqAA!$+oEvX6-dOgN))hwczk=IfhFf;+5!v( zwg$A`Ld%Gza|d^qw1;V%j5_&m?E2+DI`n{Fv27nM zW#aeFk*XAoqb&#lF^>4myzJ>^Rtz#5JUR?Y%8#?*Jj*DpDVY$*CIDR zh1<%{C39OLUL2*XZxjN3neY875{NfP(>l9Xgy6I~bEfnx9&<(`gm`SunWx>|$tKt#q=TZgz2M zF}o+f7z$Oo*=_}YyqHCK{Iutp#bB_Czw$Ks3jRM-3exX{7RMOcAMy(N2A0*oAO>Yn z1slOHK?l$o^m_Cb$Tx36gH?9E)Ly7mOO;l2zS3&9U~9r3&D%(tpTRHjbEyh}bE(*Z z?kb{z-&aZzR01$lwrEr>dO_ z`O^^5v+$S9Fe0xd;y+*msL}?2T)Y*OAm~XP;tFK#lZRWuq>-{Ar^568Ek;%O_ql~6`aWGtiZFZCW!b0r12{Lt;$DO>|BU~CSiYq zMLN7QL>|91#el(aK~}@gLqy}*4OeE_1peA)7snoqcXd97-ywv5k97P>zyt93@+`hS z8)S7nfToH3PYWU&P()ef1M=A6EcS6yp+_qdy2x=tSUSL~UlRhHCRuw~%45^ka3IR6sK~7XbX0H|C zuknwUGqj3*FUWXgkdxFloHbPP5J5;W>nW1Lc50A1M2)=rE?hu8NMZ9Q57FrE727>0 zcE_T*m0ORdLyipI$*4oI$*3Q}YwxA{<;}+iXqGy*O#JbvRR`aPaRc_42;^m5xu++1 z!N)EL9k+uP*XV$Mk*)w}Pc02~#V}<5kC5gJ^=s)e9(r;j?TbCEVvjLMDjwX}10*SE z2*7b@)+!y}@=p4i=^9+6lJ36`s|h4yIW#O)9CP|Z=?S2roNghu-$zXSyEf7&HC?Bc zdEMOZK-#{umQAJI&AGcwoi0M^$0G_h z(Z?vQzZW5O)#=26?EB0d_N;Q>NXN9)!*u2-#j=tJZUPa}OBvaj^82!Vhh!i~^oRNElP(@JcZa1*_J3$neK*eW?eiIF(J z|Bh%{C0JgpHbrXM?$-FilzsR4^N;DB2kb@d%oexE-(n|U{~|UhAJ}kn#^Z{&LrJui~ zrW)}Ln!BmqcI|{-XXA!#$MyB@D&b`x|EUxoV96dc#D|m zG!p>|ifOV{rP^{r)h0(He?^htQ&XOxIMGc_LCfm%z~5_ty$4t&@^Rqml$uG*%BO&2 ztnirpw5fESvZe566_#;BW-dtu!m7|DNmt zDxnOvQ3*~0Gr&H01nX9wnZ&bq2u_)GQguUiyn6qX0bzJHlQdE8;dQHN?s)& z&wF_|$|3i6Az77Vo1~JsxD$_% zy269ZQG$vvja=R!$8j%m`pEAEL_$)rP~DC-yxzky=7HZ%>#`(9DnR_gk$7C&U6ixN z!Q%%pdq-|e^eQe_x4JJr0ZqO>_UM2&WPo)?Ib$2Nm9?nQ1j8#JX8rA9UGRTa#8^#=xlDWo0XAlJH5g(G`&2y`2r-WxrZf1-A1qI^T# zK0HBI(&|hvAd5fpR#R{3)aG;XiCCm^AaRe#HpflfL?+~iX9(Wb{o|?WXDS3{yUBSa;+Jmy?&Y|eL|*0Fte z5O&9MV?Ux&pz~>9mi;PVwb~VD_S=IA9!xs4-)^-fdZJ{;5o4wH8N2gUXL7SbfG9!j zV4cfntZ-=I$j0gZ;^bqK|1~~oa59(Sm-&5a$eG+$R^SgiN??=|Y?Vi{q{zZ->asW6 z-u!=l@=^O|415)Q5!sEi|2yWD*f(X%sYIP8sq+y;OTRHM&P?O`k<6??)ZS=H7U(?< z4K_(?j|4Uubj^I5X&t9%tIeT~c4D&{MI zb(sOtL+0Uru+nm%5J41olNb$OcnziS;|q7i6cY{2(yfK0 zb|7I<-m+t*$p+<&e8Eukr3F%1yY?DF>0Q~RY_a0djftn~08f|`OCg6fa!(^uPG%i} z405wz&4pFzCzw}2-xWtaAva)Xg=!70PY}d~c^s*%mec8bLv)cCc|D@BYD9CFt?*#g zk~J~N@`+US;POWO{Vujb-9FmcPAsi|mS}Gl3HSI`Fxy?fP*jmsA@*AvRrs<3K`138 zyC{Q7I2H^09Ec34xe&I{AD^G2$Dg@u}RT9ya5;8P+GWY9y*h*{JQZ&WW1FI(K&f35N#q z5p{z@^^G!Fnam}|Q)8AjmKsmwCeK6+xa1(W+ugfve(~(7*0t|kf4q9_rj+f=D-AOy zGY%Lb*pn51kkQs=OFslA?KIhChH5#)7^vBcKu31;ZYq-}{rV_>8uNg7}IKM$eS9)CFs^sAtw$EQ?evdi->n1D33!7wvxhldK^BrsK~q1Zp4FpKyws- z#0srNEHQ7+&W<;hW@k%{a6-(P%P1M=9d--+(qQH}>?S!98Q}-?f1ENbHDu=Uv$Ofe zOW!V3kQQaXOKfE6~zrxFp zl3!Ztbo{ny(4|%PH)s+T_PV{(9Liw%l-AR_v5ynFU39gFtd#1ze6%iiI$dO2o?Ks} zsy;E|74fW}R2BNx+lONGK$kLZX)2u7=p&0;^9sP2=F)?izu?6KHc0v71D;J~cLrNqnm#520 zq@}0y4vkxoOr_Y0#vZsFIjTf8^{5=pg9Dq7&W0k9P~Ka|D3*JRWJ=M>w36XPl%V?( zjW9}uRzcs=MMo&H5#dOFomc`iG$FQebJVJ?~5h7^%oe2 zJo%`qMU|s!G!Jz8=UZYl8o}4AP0Oe@TZ5oIzU!?jNvFm0`U(4c-On%nXE$bl|J2uS zi>J$JvxvHO_j{l34np=Hnwom%xKK3H<NFkG!tEkX8hLD<9+hsgiov?99&EYHT2C(sh6?4=t_?zNBtxxY&I5x1a4 zPxN~B*GC!D?wSwu)ktUD_^_lZB?59=BrSZLzNu!@Xjk_lywwxI0m^9w8S3*MKvPD= zgdN2S)-!WrBHSp=;{VLNXhj-FGbvYS=af#T+_@)j27{KF9B*JtZyBsTJm;!qqzG0B z@6l(t6t-Ih>d+2Jj|16lY1noVD%LU{-0t%M_De*7=SLW=ot~kbbEOxz5MzI3b8{5( z1lCxF*du9XmbssK-8zfJ@-`ECTg(p`D0>jOZyTgks2U-y+KU7atw{T@RV%IbLetuh z=1F-xRvnVc7(s@ovpy^4H(9z7iK6GPMq;Y3Sf`ft1A?tt7E%~&6+>x zf0Dp5_0OjD?l~b2bY;~J{5FBE=o#k9%G$Ye z*nl=ngIY+vdjrNw|I*qy#>JrejzeoorbH3A{4b-m<9rO6ci{ss_1Rcn* z8EC8MMqCP}EvKq_bxMR-BIKo9v*7)FkagSr!WKnqbaJElVI_ z2gxEpeZJlb1eGCu)8SSumL{1sE9YKdYOwLpO|(Y$DZr|GIHko}H1R6QkFva<`2K%m3vY4-a91(UFFlWy-Yig@dGJ5EPhirpx^=zz)uJ(&*{_rKE;U zjwJvUSyI4kz8p(-(wG=qBjtg~*plt{4K#e;LTw6z44N6&ns?f@KmuQ>3W)W@Yav;D z*!@M&cXbK>izN=GmX@AQcR1(}gKjLR`)`}Nf{fp{zpJHe_)I&rWZ#qSq_oRgs+?|J zzC46UHc4_Ct9aR^jvVasfI&7G5*$5?_*HcHYO8dyR$HnQ=)c946L|1$g48H-Czn=e z?qFgO&D17r>_v63jb6Vg-6gN=ldRE&gu&yB!B|vG{EL#1i7DOQWbsEzwQ?ZoS6ZZ2d-*nCf+1`j*wWFm+c{||P;?AXg^r#Q1SxEletp! z)ckwxGZP0V@FsQB0(|>&d*)EO|LZ?1Bx8!4EmR(ZzxXFJI>RQ4Nk9Hb1pAv+=-o-p z7NDa|tQg%Tm7bDRJxnSOH3Za-AJFa&&nRxov!>Gv+rpKA8M zK)?DJCKvxRDTtXypBQEkTLp{)2Z=~G3N1l`5-@UD*CZ=b75bmT0Yew;VZ&HMR-sVA z_DKI?ueY`ebxoaRyBAbzg}fz?EuZgtxL}TLPOo3y>iT70<=LolpxDfYVzUi{b=>MQ zH^u|wMetfNj>jtis2?Py(`0Z|fPKA)*ILoAV1Kt~pSnGHO;Isvm%0N)EYR(X+AAo-f;Yxj)PJ_J8oNonF^1>_=~aI>1(#FCX4Q)^n??ezXHT zAiB>-Pv_#nDsu1J&GOGwehR6Plq_Ftom>{Scm!s9Vj88W6 z%xkg#!VJ)!T|9)Av4yy71dghH-2ywEv;(z(oy^;YUQ2e^P2?BI+7Dlk{7^Sznwfe& zTNtY)ce5z4nLJDRdjHecCQ|AX`mmz#9*tKH8|p2gdLNJxXrIiDh!dzo;%-Z}{k+Gv z6}Quea;`WG3JT_uS}jgu`Ufnyd*tx=2N(v7OE}$xU=a-|x?sk`lPb*ZKZ~DOE;s>hNqr+=#XO6r5{QaT#yeIU-YgADmuO@RGI=Z&;&eMig zM=s=vD7D%%=(_Lhzq;?RaeGt}T-FcHRu11ceqD>;_XB%hI;VtnR|tF9F?MfYssEMh zykE~d_lvRaZlT~S*bN%o0KmzcN{>HYqM98AGVVWr`|aob_ut@pIdVm^0>Bm917H~! z+NFJk-1XS!FTiDqsNP{YZ-)tUVM}>AGhymr0GALJ&3Knie$CE;3A~+T zE$D3|S)|e!TR*UpnQa23L%@7Zi>zx+(?YMD&QF@r^v`pAK$Q8zfnQAb?@2#}&52l~ zb|^h&#G^O20cyQvm_~~iB{jr{q^GBHrph1wGby0Q$1*pa=wC>qkEWl}Lb4>hy3Pqg zK+3C;L{NzrUir#GTnz>zDvLZj74T(~q;oAGW@8hMBVEyb-4lpAFAQLaofk8(3g-}d zB4<2#{I=QM3N$x1$K{_^#?72<_rF7-Gk!>))$jSB#aWtDJfBZHAk>}b%4pN8qIykgTZaPFJ4I8 z31j!5)r0tuGCnyjAC^P9`r4)WWAFXlRHgsh_fB%DTPY1!Xr0swkkU<;6MEdT;z4-@ z%i8{B`vs=FFn-#|@27VoM@zB%HLMVqBK{`bpIj*FX3MLJ^7+}i7ZO`51s4iqb7NTB zK7XP-Uq)s+OJT*5G4^cwpWDGmG8Qt?!BVyYU0#yfdw<_fmrMN*q_bht17oJbwB_%vNsi;#k zVO10m7puk$S>)x=q#0DrfEv`}JZFUkp5r4H$6H1u7%Wg&oH7&6Pt+$->R1%VX;2}R^Z_EmvsT-9qaRo4_Lss}=d z)uT!%T8znIDSA_wGzR@GBkUP+{j5yTl%Ko$)S>7{H!;j<~c0!S>c zYe6&2p;$z^O;fFhYgH5Xzd7^gN@`Isj=`YTXl17n#1Z;wkqrNHix!SEs|#fCgf(S z)o#J9?ALItU1rSIhO`UeTa*XAU{Q(X#w2-Im;Upnx*`Yy>fe1lIT;wJrJ@Rfd?38J z;z;5=whn&(Z3t^lnjNV*^6NxAB?J8(r95m-WF@QsiagFr8IB!j%kIq-;={Kox~FPm zd7jS);v;o~$0VYU{;#*8k;;KWM^!UA&`7Vp=Ob7@PU2T>I7-AjIQHfj=vJO17{abI zYFbhlQKSNBk%xD)2=VSqMf`ad0qB7d9kfnV@)Pqs$kCjZiGB5F3RFu;3RHZSVozGTptVRcYqyRs;LU8?D zWY)G3p;(!CMi40p;C3e4ZXIBvrA0Z{n!h4Y?j6GbN0C~))efdE=ML)A)OP@ zEN>nWA_?K~+@x*y>c#mhv?;{CmH3-&dv5o12fM;~-HL@pF&LV)j~a2_j7;XHKU}ZB zPV?D`=SlCqI_Wax0m>3^t81tD>{(R5Dyp-#dKGj#eK!C*_eSs*i z2`0yrLB+(c@rSmZnHyUgo6BH#tZtthY7dd`5Ii}8GlySJ9IB;-co04a#)Wk4&_pm> zr_KKAW~bwv+h4)!DxfzUCVUzsNQ{javQiD1o|G z5isr5x;D&F|0@pjTH2760q^DfgK2ad^iFv=m4m*@0hO(rJh2kj^JP&1Tu9@U%;COz zWBkE%|E&v2jeR)O$kj=x!e@iUosLnyHqaj8neJs8do3PYtsb^yA+LCO(7YPZ%aZ+X zISmqc@7fV^?fi&dV5CtL9>W8~?>hYhoz9JRYvJq?0Uuj&4}(c-!5&&#ot<5Eq41qv zz%W*lpl13anaqBO4T;*H{2P2t+SQJhlPS*JFji`tG6`#{Mx{qfoIxz-gc^|(>d#ZHz@j|niNALoP%OiLxk__d+^|$528DJD2%Xo;9 ze3(ue^v>tR&2-+#2T5uk!AKLbm#<AhVZab08Cj+&(q7E#JUOeVle3D==fvwo zK(po=ZDJHy0JnO6z#Yl3yaHK#x9{rQC708&=}HQlvU00d^fUVjzTByh6uwVp{0P#V z^HQ2qUVu!J;hge~g4;BCJlirJ9LQ{} zHr2H2N*+W^s4d z0~LRiQ=W9yJ{VUYzLq@6WoNzfmX6q^Mf935VL_Ec9OAi&cSrTRuKSaBCEYH zk3RD0<-r67eqr*l$=foV%o&q${x3hh*FP)oy|NfRH^%)zY z>E5!{Y?quehvvxQ0%V9Ea*0t56^L2+{7dz8EK{BySE5nnoQnOQaLA?TL6&{cu^U>! zXf&v*W-e#8NI^jaKWIL=IQ1A?Qnz(I#t7mrY3ezkYkaz_L>FRdz2l?qF^+qTQn&l4 z5{arum1rL5%WHGNNF5SQU4HK8Jh8qccZy2wxdl5TTt|` zyE4-v&TiD*K$#Iuxk7t~fF7YjJ3Wdrzpazq(nf%A$S4D0ZFLiC&0cRq*EVWP$*0M% zyAUq-BCtOP%3;GW=U4Jd5ONXobro>c>3HYQ)6veqo`>{9^PJ7N=j;E7eJ-8}k#2Jm zo^-fhVN1gfE~G&cXQ7Rre6lD0{(=!p{>E4P_rTdX47eA)@5%R`gBk7r;Mott=cKX7 zzM*SJsrS*AC^ME+G9aU=RFQdFqMk#H};{h`SQy8s`vf`GK$;RQvSVB?pR7NX)TGGU(+{%92 zgqo4oTXzIOqpi0MBzgT-b}%2+0S@-a`FQyt^JseHtla3!zjEztsPq1k<5%Z5@vPm@ zFlj>PnPYTD`j@?W?3Mm1A*ma4eC(uCWG#5(xIXsy7GAbnA`U;O=k^tMJ?+-=6*tfg z(6ECcvA5m5FgtspzvPy7`)Vyy%mlLwv~SeXT`cXO@WzOJe!w&@ZBlkKr~9?={5FL* zgS~GKTgitY?~EMa&~6i6mka2C?ry_|dj#5~8?r!yci4PxVoSeGn+IPUaRf!qs32$# zulvuLIaRqsOn*X4i+5mUTp4lfBo7}ThFCT?+>iG$bbI z@6G`~-pQ*p@{8H2T5f=Hd#Tg*}BPUc?b<)l*6OE!k)mZT2~MAon3ywNh6CLGfV8zR~y zA$!$s38E+{Cj3`7&E6J=j*5DJ8qVl0(;~Vx`h@=oEgPax7eu4pHI}=pTb?|!`>Hd+ zIIXZV>CT z)_8}RXoW~b0pYalj%gmHr;0~S^Q@8H6Sr(nD-=~#w!AC8;hbq2Mz`(=%IJQUe)tQ< z@=P@{m4ZW9q9d%$Zlg^qrDXU%-wOz&*KnWvl41Rcu{*fe|2aAM?_0jtJGdWSLcW;t z9^BVM=j|%if?M!?K(e%4%9_5O4Oep)Y<}wg_ZI%oqz^0PnZEt0t2}-GdG{jL;2QWL zcy-6{Lvz|Dc>z~Hry#5x=__IFU>^SxOTN)~mOSoY?run>QjJE6JTmLo>Z8nw7i+C{ z^0dk0)vnR~A2mUvzT5!Cy2|yry}j{}s*6 zh@qGmjf%0*@A=>CfVW&EKO@CL&~+&kll*Vi&E1{MD_^vImUKArn6!r9UhQoDl_bpo z%TgpN>K_)xnHedhi_wS_yUMApi!pp9hkwcchVjL}O4w$iSau}-HBW=Vn*_fiXmrd= zcQ;w9nne)sI+!zgwzn?YrEd&!Jxw>&M{Uj`L9RoHH}mL`^<2JhLvZWA)4eonM-z;9 zUw#{{G6C$*&O#l|;OyAxkwbD9UDVa4>lPFYogUH{q(M#_*|dZu?zjd99CJb{7xoWc zU^>0>LK#W77L$AK@6nc>Zv!9Ul9sfo*zKftfMpL{LX4d*m(&0CSTWJL-_yNSW{gxR zHfS{_t?6>AhdrIEKw&05mMK|o>L4vCh1v^`B3gj)X-rYCLuvWe>MDD{Ps$})!?6OS z*iNfb!?u0&P%LTiubMuvcQc>kpmB>0zqy$P2?FGn$T&Ji%4lLvy%_ z7)*ytm5qs6BT@_UpB$ROOF)Q67?BmBRJTsi>GRgbRnkp%cEjv#BxN3Y3T`rY14{7x z{nV(b8_)pLw=|eI#!pMY(WI-Ck#F8Mm(axO_R^saqU#@0+3dP{*$hw#x04Y$4%va6 zD9GRtZ6K@NS1&97>CLt>dp{X?2Xgbyb=;b%Ym?n@>GsyL`!#m)5zWsorXi>U9hY)~R zY_-D{Mrgs7+sF5Z6~T|Wr+H^(^ekHh)&F7n)XBAre&D_tK>9;GG06qyN9tKg6#N)>l} z_+UVnMN&X8DV=7OjG754)9>_%I{S)WcF1}S6nCsunlR)z$7ee(L4{v+DKbcA2%KAf z#lgU%bj)52C2c2}V`l_GddJp89c{Jp_0B@x&inj1pe;FKzAXPN`ABnV^3PYpKTj`l zi282;#pj!?k9d>RaS7@U;qP7be38wmy1jVz;ZZtUi>5<*G|>K?KfdbuYSL^KH|uI! zg6@PlXw~zr*0xmHZoZW0;fw}J%z4VecpILxJ*Yiu(l$?V@lT_fEeeV|kJTzBR+0?$ zJ0ns{{PX%`B;-x2Vj8sqdvsKe$@)32?QD)o-Q)HWeH9qB$*raNGB9YfUJaXr1qHOw zy6GKIbDaqsE*DB^ta5%G7lM!s{Xf@`)Zp+OVk6oR&!QfiDsw+|)!7Y#Z(T?*1*Q!d zyu(^Xwi2>B!Ga|8=jm!;kcE66jGy@7I7k=_g zre*5l+$Pa>ejV+doltIVld&*FdUa}slAcN`@1~^x+xqkcKj9}dAY3Y*ql6oqBrz~< z|8{zR0A|rFv}r1um49Gg1R zERQ__v7t62%wve`t9$%1!4tTNP}(Dc#m$yf@huucF+2W&b&`Sw`k~VL*l{=ME`^~; zWJq>&fmZ!7#G#wc<@63M6<=%RZRhmk1JibT>)BNXHtiJM`_?dRfUFcI_@)FK zs9eQTqJ}Kc)^^E*x12xZ%wSu#_&qRY34K4^ap;1HUvmlhSRov+_;oZhPAZ`=?iUZ;uUaXpdb zn;Bse^l){%c(I##_xkz6^%K)`aI38qkKwIHk; zNoXW_g@9I*!(Oa4BDbyzhC$W9Yq<3JQ!9hOdj8zGhaNh5^vIF!>~4P~{d2K5b~>H7 zJuzWV_{V^3g5t(px~eM$h;nVhY1(J0fQ`3UT7lt&6*JwWrsU`P2v^o7I%kxN}=Nb#gknp3dS` zl9y`FWVWL!lA642Gpk}iPmG}cmRwP_4T+m0L~TRPzoIF_N-uqR>Gurde*;nB4c3lL z1@pc1p)^{+B>m&&Hcr5^7sd%<*nZ|_<^*OJ&cj!A7KVj4Q zK57uZ9ajGIm=jfk)pT0W_f0&Hd={tjz??@i+ z0cMi9n|V2NmU$iXlfDzBHeOua)(Fr$6=sD#?LqE4spN&A$U_)OFpZ?RE^cM9g-e;2 z%zenKTJt;*@1&bY75CO7 zn9p!<^46)RsF*A&JH%iyJwZRZMK$I@LRd@)@uF;#N9@^%vca-dJ*4U(B_7O*H#d|p zCPNFEihV#;)A(vJPN?4O2=yox>KDlYljy`pdIaI&5XrT_7fWvzD=?VC@I&>)uSCPD zL}B_Dsyk65+E%fnhva~+8F7~5u)^4?Ai$4_wTWobd^jvwzeYhTbP5U4q3<|~`S91I zz2du3NEZYt9M&ROXZ*@EfA_2Jo@e7mX0A#9+|?upmO&+8G$6=lk!Ww3n>3|&4k2+GL{QeaQQeBCK z6+M)bZk|&@_;W32s8~%D4YUj^Ba85~5c!SJGHj9HsZsIYtEZ7J3+|PlpyK_g6Wwxb zOKb}a^y)F@=b>hGJ7wB~pjQ#;Xzk!j4VI@3i;;DGsK;xYXrCy`saPy5NBGF`Il~1} zY0{@Ls)66R2JGYCynTq$#R}FtWIE#T^d#`4Gg?Wac zOmC^uAaSV9H=A>DYg?rrLlt^7A#GR@(e<6^v^G(Hm=S>$WkC_eP458H!0LaRPEvx3 z4{6tM0<`&Uq6DIbgs@e<#a$wb_!cqgTsjMG|NmS=O^ka!>0h5;`5(AG`-7*~y-I(d zIPcfHN_X8Tm*B}lB0Bv>=556C7bVEGHNd`#OFI<^USz5i+W@cNfDS|8*C~+QK18nu zKH7*y+JDY*S`MU5oz+8mgtin^#84xcpKyIqWKj$=8B#S)x~W05tTVJs)1G##f~;f7 zk-b3ON_q&d*&5cCkfx{yY}E*A_!=Q)?q(@R?xUrlCHm`LsF>&$#Nm3_s)n4MV|c9~ zeYUPjt=jmfv;)-|iZ7ntUa{i(m$y)@Px=Fp+i6z}%W(?@JG%}8T=3-L*E6DJ%|`V< zNYA|0&vF&c@`pIzh_x&v$FEb*j!=dbD$0NL#YCTZk(8}P1^jk8(B7dSs_0>g4c4-I z{zKQY){C%)tzQ57WiuY0+Q7zq%l|Jn<_NU{Pvyn4FuOx4b@%FvYF+-^kT!uJWpZW- zn9~IZl@9di4!m+fPjqYsZg6<3C7;84Rj#h&uXyH}}8ev`LOwmh-X zLu5z9_tK}6RP?8spf)zq9fYkq#Xua^AmRtBv2d2EU`huStRGNiP{Bluv7Ej{&RQT&KotZp#-t-k zX`h>EM7+2`y&5SJ8&4)5gY@LP46AnVj)S$@!HG3m9+133vv*dYkj!Z3Cg7L&8{}9R z|Ao7607fRoMuqwod>iOaWeccZvqa(5rKVOY5RiVbVBP1Ywp_2Db^k3dUw|&9=j-+J zF#UDZ?e%&WdcC^cL%nXjXXF3tT|Am=Z>};~61mv}9ia6=+qVH=0?o4m(^)DQ@PEaD zYA&_CK1lcuvD;0}Z%rV$qPsRlpCIRz4*W#f zEeg^%#i4if**JJykR4vhe+So6_Ks33CxZxl83=j)fK)FVH;4zc3v zkGg~pMBjRjLT2?>QN3P&RfI@?ecwh>i$&u>PyxP|xe4!3_dq>bdA>TlLzQOdO5Pp? z?Xau?i-5uhtFE+h%bIV)qEi`#%5j0^15#ZTMEEg8P7>x%HK$L^8aI>yqvNZ|a6s16 zKTYrL7+tLMK_o<Qyk)TjcSqZ6xY^or%QCV^fI!+pn@Y*Te#jOZSlO@7pP}6UO8!`M zFKx|f%$}IW+`$$F$F*XeJV*ha&6fJ#3qj&TbEjoCX$8N=K};2UQ2mBEzv& zmZwwWB8WW8x4LulBR4BqG;TN|Yhh(9MMN1)3GAr7D>ZbxIA^w3e16+q%u8X%qINV1 zlU7IWTtvlMZO2_38|+CVj@GcRMzB2NShKJpeE?G?h)p@fanr*a)ztA>jw7?*8+B0j z4{<=e;4=Kl$;T%DlPHFCwjuM_4jkH_=I2hf#3~1W7vf$y>I{qr6^)39g zx&p0Lm5|)U7sC%BxWmI<4$&o|YhWF|h3PSj$1iwiaNF%bVpn?-ux0YsMM`x~HmxlL zxRc|6%RzY=gqWYq$w4sSJD;IKzEKUy>ShA9cXkr+MNgVkx)umk@%3b?Gi|0rB9^4n z(N_L#6%s7zBSFlDCX&zu$r?C2kcC+ly$}AlGBwHtNmmeF&EAL~P$+%0xgU$Fayda@_06T#@mb~#tUQ^ zjIl?UgoH7Wm>|p+a27D>hCC87S-_z?FNDPo2_|kJ?v`3h)xGDQd+xdCoO>4FSJxizd~1tl#tRybzCiFmIgR>wxV5N;$z#6nph_vfCRBF*}q3yWr zZs%J&l;_pj%BC3chi;z9W_DR(l7weP`xqyA_Xw+6-&Vvoo$iUk6^P5h0hrVSS)*kpEa-|*g|0ZKB>h&P0QEs3;w`~`4xeAxsEicTd9iXGY zwx=a`!=302@}j`|BjRp*=H(r7xI8&xTNwv(BwleBlqNMo1d>P!;;xM9sjb;xhP5Pk zTJ_3PYqS*_NG((}B4}8&P7$yQAXboTX>HOsJEpGcrYgT`@TF{j%1}(zFdiB=&SW>u zj$!JGVJi0%lI7R#SKOSd6F_ym_PCZ>hGZ|6(NP};Pj_;{mOfO=4c?UPsKu^ zL@}BVl!zpUNZ3DF%YHZzPQR6>3LPQ+8`5z-5LQ;@G~7x)^-soYR^RiUe%eq(H5SW~ zXt*Q8_%qFP+!Vur z2E@YPdk=l!1FINd!Th5CiTti*i#(2$atL%*RwW4w0o5^yITl0G1Wm;}<}f+aSWA@f zn)70=?IdAf1f`Pog`__{nM!!MtZbBg3$e1O`h4O?inZcLMA@$d0)HEb`U7&zC*E(p z2pkGaEW_gO#r5|EzEPH^$D@*{6y+e7O_u|KSQYL(zfWzShn8y5@;kkOSPXAHV!wDs zJca&tYr&^}?M~j#De_O`_o*Jc4a}&%ZtF3}**sYnw-0}QyuoWl99k0SMMgS=^ z3k6IX?$-@A^ax3`GzA7L^5KXUE<_SuZ!DrUVe#UKi+;cG=65qMz*r#g4xfx8jrym5 zS^4G3MMXAtSzZ2SSqQ?dBH_hkGz0RC76`$pqx(eJchd%r>owVE`F`t$ShZX0 zesy(!r`B2Uv(ftopZievq?51pS<+)(jPBf6TC>r#9||pZ$2>L^R^kp=fUX-Rrs*|0 z7zOtU>TzM%74Ew9=WFrGV#)H981_}9e%`zG)xa90P5vtVCA7g`)<5svxyz96$f+NO z7aji$JI`bfc+MGm3bSj^KZ+ci-v7D{TxxZBL8&%_A@|V!DEdNDZ4Sp@^mIUfyf)_l zH=rP?!i@b_?~eirL2l~Q52f+vjR&uFF4bds#;!{1^yFwaN;g(_pz^R`ICkSritFn2 z(D-isSQNg!D@NVe+py-hgc$)@MP29%CFJ>*T!Gz#J;*n+i!=vcDN8PUJ60FE9Lz3Y z(}_?iJ6IM(VqgblmrNjeVwhz)A!t^fG^~`XH8pNH5*bAIR;8IO(R6}~*}ocOJUJ7W(n=!w|mD3UDbiiPM)y1s4qMi zyK~`*Aq0m=S4~pL?9>UQ1b`@KW2Z|)5U#9hzR;PGya|G}ZW$~p&3KI-PD5yhm}zZ6 z&5K*W_9!CdJOYkv=d~`BKKMd1=h|bw6kUK(QjU1%aQOfH0{n$W@x$h76hFJp){A6t zSDR&EPyg{^@H0XaUM`5(N~+=u#1GmH8GbNdTm~fk31?+#eu@n&W9Z;X+mdkDUR;C! znU0=!;PmHqhm9YB4e5zRzHg@{{|HM$^=K!OAl@NIYOd}y!FM{$ zsAm|i{v#GHw}f1fO421hqThzehrkD71%gd$QuBX!!T{%VURosK)r_L zwB0xp@@cDN0ssjCKsp0N0hqpG=gDNe-wW^rt(~%|a89q9H6wQIa{Pv5J|oI!_kUy| zee#cU`y}l1)#{_DgG94Gwcj|f`80{1l}{B<`EGhwuFY{{vaTpF@@SUKofc17xc?UI zm$RaFDmLFuSY^twj%gkA3R)#Zso{CNGQ&h|jr{iFS=i2^gWr+UkE*W@a7kI(mm{~W zK1%wZ(O-1}U@!qV(mExd9sEI720SQ=E{}0sJ2!aa>T2d`KinuiUG4sb3C zC>z^!P;(Hk2@VYaL2&KHkS?DZBK`?R0msHJUcBfKfjY!{$s&RHnddw-P)Dgt4ujX&nNut(@~S)YGnNbAC_D@&Q^PqSBkX;~yE8m4t})z_v)duECu#8P za8rJ6XPD4;&gK`RING{H1DMq!K4y>V&?Tf;@eTjUrwaP|bc*vOk)sB@>Aai-D5QT}a+zOA`tm|xEZ z`K(g|mgN~4ALX}#qh4FMOISWQ=!-MLbDyvZ-n@;0dd@BvOHRAkZh0M##n;dKxIA#6 z!7}rS32cES?!e-jO*i*Qu4b!gKUHyb`jMPW~m^3;LBZCuHy3+!omR9AqJ7c z;L}(8b^>9X$8WpVAws6_whmpK$?p{9-Dwrt)P)mD(uY#1gEP@qE3(5VXxyLx2sg1jKTDNr8@oVXu%;Fkg9Zux`g7TU6F@a+UjCeKOe- zbp^+Y01tP%bgtCWN|-3U;Ur484GYk-YF8lB2P<{5XU$>9J=U$A!JQa`^&g(Hy%QP! zzirX`Rc(Yw??YCy+w5;RJY=W2-@-S(ZPC1bJ@bC`zO7l`y?Zw2Q8!B+$sc=|+Mb_( z{#bg{P`8qgY9sHiBYW(>2$^C=@D(NtPxIMgmd97ukvO%5=iCxI^p;$&M{@p#VN6&B z*wao5F1UU)^$;8M2#>n=;lazZJfF~#em-4E6Y2SuM#RG%cK0PIhzYx;AW*9Cypl7Y zO2^?g3Ga_PxiMI+lo&ntx&!b)53~<5Pj@UVswwm+8{Ht#3Bq;@vof<_fy;`fvg7gy z;cWLsjh-{Xt@F>ObFg8R7b~sC^z^T)=;mPJkgJQO@uL$VKH?YCa&^uK$IywUv{+?F zK59B%nd`*Ur4ZcRgU5yBjkn$y)R?cM<}1yO73T|5CZxpV^jt-X0yavevAGgiWG;@M zjHlN{Xx*(z&k;|@^GeS{9#5h@4@1N1xSEQEp7AiHQQxbTX&HJ-)g^QSq+hn1 zb||@x1~j=;Xj$CGJkpIq4{+PH`BnvpMzJp^$dpP+^>tDp8;qu7xu677Kd#4QJ{EXI zBdhrcucVSBc_YXZk+9y)Mw8iUCL2yB!>LN;3tmq0`tn{PMgn|54Eo3kJUJcHGljvQ z zDy)T#cw&WwX{wM0el}0zN$Pm%JS$x-xZJ}KMYunsO9^snsaEHdu+RtxOBE@!=hS#G zCT0?HFs_s{vXt}t!hAfEJ3QvybGji#t*@ro3FEuaAy-e!!05;ld_TO^ZZuGaMnjp* zWF;&}Q7#aTMMCsDew=-`#z?D^j)R;_%VS!#nlX1RS{;}?S!4NGVAZ!RBS#6AdqczF zXjr-f&q&cLn)KHSM;9uveddcMicL2?9R9vC7{t?PfEe8S9bJFhnhXo$?PHVqTLADc zU(yOIYFdtF$%msfH=5w|ANI&p-yLW9VG|SrEMSl8Yy=P@G)kE6qftRulmwQHP!ODF ziwKP|SBZVrfoO{SHd-fu*Ls!jhadjs_b+)bf(}qEB3O4A_3GS=1>5%q_hh4TT3sn< zmj>(0zKCzb9IfA5qFFX^!YP}6wBU#YqtxxA0c+g;v zq^3)3xpina9aAnSWcKWty*k|@%SU9|=SpJ3VPH~=ckLs6KrVVblDeAU(Q*1zR@O?0G!Ww zj)I6p1dW!eXY34fLTNR=f$OuaC6O~@P%%x{(VlNG`hd%dJ}+K2xQDzu z^?nJiv*quqGNZha>= zHpo&a0NeXo8$NHh;fwYf?Eit#`qI$8wG6901M7UA@?1}idIMRWQB^NcO_R{3YXuuwAAl6 ze=1k~WWY#h)pjkFfW(_--V4k>sg7zzayC0B(Tg3_9y8|&4aA~!8wHH01GH4b== zdrn^+dW;Z3VV&kc+G!-(-gd>((VOUCzVk31>%or^3c{Y{j7B#DpRDG7DxjF@cyIe) z{+9uYK```vA>LT5jguh~c%13ZRXTmM>hvZWRSV_+5YLag2QFn~tp&^MYZu z@w#UZR@ejdA!*U*a0_QN_;)ML4iXDzZKb`|^WSe{N6rkf)4x*9eMatHT&nUNm_~r$ zuO#2^x=>*PndYkb3w?*ruM&gS!^&d}PLqlI6d228NJHNes&RL^Mm*i`7$}JLv2HFc zoSc@s_yk{VfYPi?yRW}ebETWd*un?Lo5ZrBHOHgV4ikeNn2`ew^pRI-E zWjP%Rj2&Mr%VM|^S`G~^TM-_heVKo@7D~evVG;J#<6|JPEQcyT&fN5#^K?4YwmqaZ z^d+43v_T^GB<%gP;?yX2LxoHSeNcyxSyx$*J;uBt!|WfKwc%7WZFy~3<3bj!Pg!1* zn2DHl7+~!A=WWPC9KA(T81%owzD67a^e+H+XdY+*zrGsoQrP%aai<$UdfZu%Jx| zVJ+DoG42>-&lh)w{=9KV!MAgq8dR@9%bF$EG!YzBTHzUY6=c1d^&o2l(2P{HV0hq3 zO%J}%>8$qq{Z5AfFI`23kB`-Ox@Y3gFz$ZXPwjeo+O;=e;T_P=cIt2me(1#fh{pD< zUa#NnF7#M6fVb0@{^Ldb`T9~6BU3CSJ-7N)$h5NF6 zoHQDPX0|*`@&qF=oVbKU1LLQf#FMSbcgNFXvt#)}LLEOkk#8mQ1>(h8tZ4QW>X{o( zR?CUx#L;p8x$IXTf-8wx+Z(@I#svL(A)jpJ;X5@^$PXT)m0H7rqiQ-@@~)cE1CTM9QBJwNf05Y=N&3d>f4^Dzbb}V0{k3G4d}g!7DNmuJVf1(1zxGlV|^(_ zB_7cK3b|mc6pG23no%27_+bBqnyxnlS@d#Vofl(bAT03#-ta{uhe{mjgHlyGq(+kY zA_(?;Fcc3?qcZrM$1npT?*}a;5)gx2EE@80!BjYy(ZUqx3~mLay<=FB&JDQ>=#jur z09I=P=x8Vttf9dB7S&E@LJjJSfx{?fVHl?lTO(MQM(vcUsCqV@q6!rytF_HJ_ zsJ4V9QI71>>2S)26dVpW$3`+(uPh!z%i6KU%Co_U7UX=PXh8G^MV}=4{5cM7=`p8P54CypKqsJQu?Z%tq7{p(;4Hwd)o5ZcEjnCR6rqk`$Ffpt ztp`HAP;g!I#X~ue$b%unI9@%TQ``9^IT;LbDbgi9l)-}`^8;!0lMaOf{fkOZt`?2% zMJ^CZ{xYkp7Ct7@!phWvDfjM#wLS#E}9 zjcu2dQd_osH)-}*0h-j-;0J3dcRGW0*I^1dm|oZWM$f?~_LHW1%yTs7is3owxy^I0 z=M|XAhm?4Uibjk;ffr}=hW;L9}F7>ydB@@OXrb28 zP^}c=VND+VH$~(Fk}u5rli?5-6Zm2@8A*jBHz#AU@mTDLDuw+~E+X+!Z=}UOJ0=Bq zQSs)|kz}kO2vIIr@%zK1FUElEbX+Cr;%qaQ5HxDDs%SzY*PJb;!-2H`FGorNzmIUd z#QS)TcsU-{v!rJ87mDy>#)D?iA2ow<6W_ioP>#g-vZ+WuE+BAT;`RGuBIos4_N`|D z=a)SRPXoOxYIwRWH1J?Z6VONMFlj`+4Pk~LeI6!SyFmSwXl6*VxmUPl{HB}6ZxQx7 zuf`Yh?RI{_SFih=R}=ZwPQJZ%;5PYav3OLz?SS)YDzrD1+8a7BHFdyw^;mwjo8RZE zQ5FE`^0Xd?)({Yi0`bq`$voPz1Yom=IkdauJ9zDFkVgv-zrOImyXWWMJurFyvGRi8 z^9uqW;{E3Y;Z1^1g7^6Db$s%R?>u?(o%e*^{N~Vu+|*dzFN=XM1h|ESP>Jw{ zH%79|jBMvd_(xh3DdRceIYnz_IzfsRmP4dfVfmX5k#>?trY=+(^(d({kcrg~lJ+5v zAz+S~V>zH};5@Z@LvymQ=(IYLK2z`4XS%7Nm-88V@zklJZumHFFhz(ztj6M6rc}AJ zQp#xYm>TvIGWeZ>RwQ+;pmrF@Ce2AOHhD6>un<4_@laRwGFcUIPJo4rimZlaI;N02_aY8-GI-T#6Irzi*ZWVzJ@<0blt{F}Q z7D>s< z-0?X@PDNrZ5H-guTA{M%&I@<$sT8!z`2Gv`&Pup*GS2~axK2#!!f{bItRKCebR5Sxt;~}Uo)W#! zAe;tfNb2rTHfbFI1TYof%p_S_+f1a^`-c9*ovI}b>$=*wER5o@GJ?kh%T~P<2oF}i zBvuwbIYe5KCZJyRzIw2!s35%AXd3(_%PBp~tBrIg17`BnUkS$D!0``pgV~G9LJ~D} zrN%m3bB24KV&X|7EWbhgl0nYXUJ0yhz0U?cdE|(9 z2Ne^u8v(Rik{FRC;DJ3w@D=Mbin_KrRvABb$FcF}JlnDp+4+)jzM?=EOdbLFH~>;W zt-pXuwi0@^ol}k%8B0Vbc#Z!!>4t*i$Hq-cSLDD836U{6gH=@_%1gZC$IdY-{LqVt z8^Ww-QR+*chdlzb3Q_uO47E(Uh+Fm|PP{lo^o>w*&7$#-^Fz9S)eAtyA5Tqr6}Bo? z)?ig47Z`l!1>nM#&HHraDzJty(g1k`3`nq9gn}s8nk5Nz-sMmFU(p{jiiSJ=(f>U= z*c|_)zeVTieCG!vDUF;sAom39c;$> z6mO4VmVtOksqfiSug}cXF)2i`xMeS5Q6hQR>1SCj)FHpEfKX{;u3~LTSA&`DM$a0G z;o$L`2aQJp{@>XJXlp;3KYhe|7vS_c&)Q}5>eh`>>oFP7T`_a^lJ z!^9joglp7T;_EK<0XO;Jbk|}O#u<7-kisnGcmjUv3 z>|6+rbHPe0#!yH{AhgeY({Z1yXo?CV-Uws=nB0JNKzjL+G756u68tw65(;z`DLyuSZ{IbYkY zTFWqR8Iwh`K%e_*cIgqm;v&vg`|9&;`eAk*cEgrALc6hTzMm1obOE(2qV)Q1+NI*( zP+!2g);x7)u|+Aun&0`RBQ@<>E050bue}0*6TKxPDi2nEFtfJ3Jf6{62e5=O|IA?X z*q&T&r;>P%PXf*>T98w;8nbI=ZLAS%MehbwOZ3Kr0MoxZ*aDvSgJ^JN8(`}~6z9~i zu%#+D?+DrOyvLR)$F3?spV{@5rpGU0l-L))03 zR%r#rM)c{vfKbIY!Ql`j_wJZ>FNBvBjya7H@2b;C5XQVA0QI54$ zX*63nY1(YVZW7)>qaQQKfv5G)sGuAUKA9aqxBh*Dw%oy)`Oo*h>g5Kx1wUS+t@~Vi zGs>*Bt4XXQfiM(FtKyePHyi+RGw4)pvOqsupnSErviLGKO}){Y0qc&8lAwBxzFkTj zU5%}gXqY}|Gh2xf*5H>!77O#yQF_Fsr>Kg%4kXJ1#@5=NtLeeq&MCci)Pl_&l6CE% z1`nRxo`{Qg@^JBv4m@w+q_RzP9_qilWYFpx@rdw;mi#uN{F*x?!+K_N#y6CDE!}r( zMyp}X_3NUQkzmXnX=S9I`c5Qsc1sM=u-3#-wjI(<#m3PV?P8<^0@BSnoG$*4fLMl` z@o5(*F5+=?fUmnjK|Fki{0r4Z6Ets=dtU>o1xaa|_-SgrI?FNl*tqU1s+uB<}Gf^YDw70@J%^bsBUWh9^%fl9v^ zzXDuevG-1QDt^=9?}HVCcuY%!81~ukcZ}ZV=Gx^V_WS=hv0OeYp2=PVm8-6SVKCFq zE5I0rV(viy54xh5c&FbX?T=qmvvx&t4LRnMBb48DK-h`y|G^zd<=!i-Dy5@(hO@U* z5gvGxyDX_NTC{YiVJ+&6qe^bR_8kNDP%jS&BYgU9V~|5Zi} z(s}f~ZEZ8DAvzzs8rUQIyoMe>epc*;)X>H*@D;RbAzZcjy)%TW>g4H9h7UwPog=?J z_~UFX8jeI}QkA(X3GjSQkoiXrR6iL#5PdQ?xaULFTp}bTwYf^Jy2{H!j^}^+fZP8| zrB-3g2JJaav_oE$gc?rT^x1lY(+uK@eZlkY0zE5Zn4;MN`F>yJihJ`>xxb1w>8~e( zrH3EB$c`%hxiFcCsL2FM$ayIW60$d@^ws<aS0%<8VpZyUvKLcNs`@&T2oJ!Pqfb#t8|{Q5Sze$A?; zp%(>Cy{M9IPbIEFoZnH(AD*8i0NYd_s*QjLK!Nv4mptZxm5!>#`R>CHKfD80 zHyv0?dBdD9zWdT{*c|%QSQ=VQ)n$jkGFqZ8v3TKA8AA0<_wfqk^xuL^|8B zrNlDK&!Ru$2lNhBu7)49cccIPG(F8OS-w`*X(Sfvw!-o$VhkcQsFUI%Gjy#2@-j#$cR#-Y`;?>iQvkc=bA<>(R~0%|9AwAFr{n$A+aN z@Obpy)GS!El9Lsbt2eA)JUb!OldsWv`~8FOW=)CrdC58bA^hwM`d|Q>geMrB$fgLf z1~7kU@-^!KM&~p4lWf+E$e~ccz++AT(>IYNL4mj6kH5yXhcNstJb(OcQ9`a0j}p^N zt^=2jqB4|sUns2F79sdLVKv->@wFk|Dks}(`Yo|lve#x(Hx4RgM>OdxWdxMQ%I^8@Sk5mgcUeo>(21y#N73dXbN97;Hvf~;a z-r{Mk$pY+wohg?d#&FHPRfQ(L-e0w*A5G#u(FI{?)oj{5&wK|}NqbDzY zkeve#+fD){fdt>Cd+L@B5_apoC0FyR-M9hZDy|Ml%WmGWTffB8vO+UxQNvn;1wyd4JuA$`y;T~z_bg>=9SWX8 zJnJhf>j2SUBM?RiEvOXezC)ox=k~z{K-Iw{03D-fL&MJAzC~m0A}~93;B|A+DCx=}Z)4hvaTGv^!10>%Z9&!Abs%(AYt28APu)dyop0Yc zy>M1Agc~1Nm_4)C&rcM`c;lAY8)j-h3r*Cge`;(((D^ajKK?D5O99t=1#~W&Z|LCrwKh`^AJ7cqo;wp3fDnxANbB+C-Ap zwbSyC7jGTvz&+sSMb8Ave{EMrli}{F)wUl4I#uuf^tCLm5G1Xc#eMfGJWnQ~Cpsr0 z5qLUKm@2?uD;NqTLLr5vH!;%jpD!P3Mx#+Y{HyKRQ&aJx!X#dk2)W?Oc&hAtbsJoC zjV5_TxL(*4Ww7#EuXtU+MFN-BiI40G;0PbYlhwQ(^-W_t=H}ZP@DXjs3VOmARPv3% zy*X3S_Fq`29?2YdLf7?s_y6RD{l$;Vx|N-!@%*SifcZ?L`VeQH2k5Mc)F(e)x3n z^rdrCw-kw4r0^6QI(%pvqk5~I3!yOddS9e=BR?zsR-zF-lzEZI23PWvllf=+lY?&% z4|=XY=UG}>GA0W}vNV~;Z~M>YCodX?-Zgr~!sJLl1WfWX%xUX-RDXE@e?}Fsp#L z+(a`A9!NKuK%6wcjO{^$88{jOjhC*}8+pne_d-$X#G*xYyv@3^5o7Z-AQfu7B zarbfFWSTn(sx-k|3K*>t<->k17v3A_AC?mNnYZP_XTtB|`I8*iJ{*eYXJ!t^X7cgB z-tNt|q>XFocr+Fhg?L&^`urh2N&{e^U81J_6O-EeCMv! z!P4r^es6+x4l#6IF}3eDC%An)%c>iXHRvmyJt^jE|TI4 z>Ys*EBoy?D?U&9|v?g8@T(vMI&u=(3yE8FG$#+p;KA zkb9ARqdA~atI%>D?Z?cUjiqHwKw$Pw(lh#<*X>2A4Sp1i4A*sYz2AFa%H#5x3DVe! zI%Z>Mbs*tUVJ^8Xkk+>KvAS$@;P;f$Q%>F7a`!}N6lwo_r*p|PS4R6oIpr^4t$%`@ zS%He7&_mlc%ew(jO`4b)`UK%cP*~ooX@aFsPuzF>_4YQ$v?sPn%S!Zq3#^7v&RJ3{KP~)6yo0+k}5GNEv3rk6#R=- zBu6H_Li6G%pz-WuHDh-#G$=SSHKGxvYNT6yB*{mpmlX5ms$m_$5B_XOmP3_(H54n) zNRb|MkQ#b&712}bax6qngk)WpL-z}o{HEsh;Y&9IVn3(#zW5UL>WGrz(4SWfk&{{VgH`Wc7S;eq*yHy%b z#^OBiBrJ-BmlASGu9f7{$B${p!*9^u`1>G-8<=~AyK^kGkVW?dOc#t?W_XMWz@WcDXRw z#bfWA4btyS7Fx^8EqLwR_hr^^jrB+K)=)0jCSQK|QvS%k@y8y6ZjL-gI~?CF&-;-c$k#>mhuTn60TY+#p#$&QEh`P{z_$C|`QJvvl@(g|6m&F8Jo zNRRfNw*ay3zhaNIMsG(!kKT+?PEKbo7(AXKjvu3AwK%`saUS{|#p>n9TsZf*aE!Ux zJSBEJ>lj!WSsUVYi0#p_B7Rx^N>+5Q(I%@_XRPZUn_t$kHO^HFzw8z&u;6ZG4!a|L zSBG22Nob!u^@^jJF|9uBSp?8sGn{wdPsiD2NkwV5*orws?`0QyhxDu3xE&>73&FQL z7(IQs{_N$;ppCh4P7yt%<)phUo1C#FK=vVP$laR_Xs0mgpu@O%gs#;gT{~zPA@17| z6Q^C|y>I;TWeN)txziTQyD&=UPJ<4m9hwA?Tm%oexjae-noY9~$vX>f3*}pIJUb+R z3aX3#l`Zr?Y-w#P1fvkTXvBf1Wi{Yl5x5Mt&e3H`uEU9Rt&1dG7gjs=(tyTEamx&i zOy4L^P>1V;lAdCnxw#gL8>*g7ObjHuEw*lwblq4D*h>eeYYRBY6h{FX;zwl}2W)U? zvi3G@^4TGoI8$a?v}DiM=z3DNtS2gIV$AE~RU8C!Z@=VG{=u|ZiuVYNvp2UX~Vjr6~boVTqn2co9c3_wP{JTf(x{&oB8J?vgzJ)AGp z0a*(SCfckyGCh~KFZa>?v!+x=v4i`kYZEbz5u~_zdyn#VH%?%NhS(@vc5P)__fExG zMy}yo%-kNlwZ*u`4E88_vbrP)aidXCb#@Us}3 zR!h=El+-EOe$dQ-3Z^wguIf6!Zu_mzYOenvm6n)0wYw3r78X@Z1c(VW#4yzi`o_!J z?Y#Ym`R!0#T4n#%R3l7Y23L0IJqo)Ae^^8Cv*fzFi~?YnDjEh&$E@0yQ@i6ok*|@* zJ$@>cYMu(UuC%X6_P4cBz z8e*oL82p04C(0Q@T!8H_XGDV^e41YHd0rpSjQvJtT<1%%a)LL+1N7@R^F}?B%kibL z%=kxKH;-o;2461IyI20)M>>DVi4v}PLwmM0SI9}& z2@!;AOcMfW5(foQzt9*iswAtu7WS%9ekk^-F1Bk6uu4m z6@Ho49bNiU6!rqk|HK@~Xc=KU9f75#YHd5iz$=4dG~Pn3_`nRPo}D~dVqRg72K|BD z?AY9`(ZP57{lT4iN55PK{ZgWy)0lsewnw#FCW6uBL+iaN7!qxC((#UNV9I5X{x<;Z zZg&;bh;{hfl_RH59szt;F>@v6iDqeDsN%{}yEFu4&MLA^Er~46F0~k;F%dmwQpsE_ zNfQDmW4UB1S(%G!d_kSj=<`fvjyw_y<;V20o-Z#}DvRYjyd2BlRh+Ai#Z!TZRw&M> zS}>x*|JmYPWo($svPa|nk*{bK&?uCOP{MKotdg4X72|f@?2>NRRJ(xE^-gEGx4OC( zrzrz0y|?H1&tg3SU@byZpi~5SGK~%6!qNBxH|geziRlAiS~qmvW1qP`MY^tdc;XuJp3h0bLY0&R$G`&#oulS==#sv zszFYg{vEOffWGgvcLjXp7ZJ!4H> zF)zAcv2|LNMs~w}4jglsofs|2^KDFEP{O3oivGL#T4C_-^+N5*ay~gG{0Ahfk0bW%fVrUFw;n*R$^qgNjoDVbanu{ zIf@;U>R^TD;3A!2Zx3Nl*dy!Bwi92WGMHq=UBFst3mAHX2_xGxRIC#;Ocg_OWc)`d z4s#zbb&~%1LqGTE-gD#ger~4q=s%>BPw4uG)%5*`eAWBz?~dP^ulnBh%i~>p4jy%U zztPf($FI!xZX%(>>AycCj?r#N>B)x;3QF)e-uHx#UWe zK7rSf_Wu8K-_NfAfv@SPAQK>N{W*`)qa^CeKWo?M!#H-Vij5TEPC1zJ^r8e}R~`33sMDMf%7zt(5u z$xuK_%Uu;1b6Qrra#}*uxTLdx-QC`;!}cksyO@m+o{X>@?yDE!*}#`8%98yOKSf*# z&KQC;r%{9MEz8KQ=Yh?Y1&~48Hscnq^E3a|anW>wY(~d^J)e_)I1!LiQXmob34$mH zk6hzD*}o$qL2eMkF68aS>JiwzPPiVHb(K*S`C^n#Qk6j0Um!Tv^)h>=g=dOYE+nxtbzF;&}h2m*l%fZ z^GIQQ(ZayucrlC>&%a&ICPOdRUmi+k*LzAI{#KPW_97Gy)pHg9B#vT|uVm}+!Gk^} zsvSP8MHS2(W5Ifxr{lTDbHC@uJwNSvtLGOz@Av$sXVvqR=NV>8WuEqx>wLv4yN|B5 z*N=5#>TGn49cWIw&d>bUc^&yO&1LZ!nnYvVX+ zf4PNjZ%;6~P1F%MQK&!9_dClG7QYv)3`E4p<#Wrx?NyqFh%(VlmWPPRF@Hz%5JqS; zDsz%T*HrYAYS1_qrER%vG4BQP2Y%6?<~YUph5l53N`L?0>!hpO#hI4B>hond3BP@G z>d^`1{ibGU@pMLh&Ld|$9{UXJ@1aj0^vP;TV_$8J_S>GH1Hq#-+9iiER0^~=^{Fg$ zJf-->Z!MG515T&Q7`FspKl)Xg7r{_`@9RIPp~oPmDkOIO&vomJ7IQAPJ*MTKO&MsT z&EoXgNrSyCY$Jai4HQ}#^OMcZx2K7deV+6J)DP#^d0x49-{K7LIQRp$gJ3-(f;_%# zFu$E>^n|Waha8hRg9MD%8tM3zcv>RojkP^B=D_n9^YrnI!k+NtJO@T# zZ|?xt3@m9{o$e~*v0)ExgYX&tRiv8_Z6AyUy150!M)b<-!_qIw88(!Rd_~USP^`U; z>d>ln=BR@#f53Ch%6Vz~;bP>JJ)Y)pSF=Cab{y$k)3Gy1rsYkhxjfGPeL4axw1geqk4Gh_^|=qsvONDd&#$bg zreS~}Z+!|+gYV$+SU~BcF6VK_r-W$DO?^u*Be`@yScHC}tXDkqba&~>3j0>tt@EQ=fv+*8v*fOddyXe1^s)jj@UaqX%3xffzu5M@Xdfb}H-kLF5Gu>aYo2 zD#N3zUj)T!wr-ku8aZq?h4SDI?Fx8ks_xLTqORN^5KZ7kW zKLg|62J?aE3G?=rDa;?++BSvxRu{})hPM6aUExPZZcV@gA+~la%FxxDymBE`z9s!- z0L^M%mfl|C(3v}5hB5piYku&Dp;&b|hpg?q(>8ip&+p#)pWM5mD#PYw*8DBRc&FfM zKR#@q#ja&`$2Y2dqsU%g*^24oD9jJrOHo|xisvmYQY3$IWgCXiL8ERM%U6Su*<{do zwgpxbm&SH@P5gWm=IYg9-mwP;`?fwT_*o~ckFQ*73<8T*#5vwFhOZQ+SUk&AVS4LG ze1++0`)g-TzjE#I?9v+@&(pi~M@OZObm+5e2FsQ-FitB|!CqEr&C&24%o!#$*ikxu zAn&bXwH&NU`^92>%qt10Dp!aXYi71q&jdqLg=RVtYNLgc6cdFYAJB`bU@@W8qlyys zCndFW(8xx7#3Ln3{r-kw>*dR|?o7(cD~M-uTe_vPeH%SwN5HcJM~LC>zfe|kUPHfq z1i}@BDY_kuztzf<3#rtdZfJv65R2gG;Zaz_)1Z}{@!aKk0I)=1&=de807g@O^=BC19q3A+=ekNN2g-uP4so7{81ayiN(1E-;<Y%YBZe@)KNYtZL4UhF@w^1saC6%kYJF?l-St6WgoDCdtdh7 z@APGpC4y_|z3CU+R6?!PoAbA1|slzxfJ=PR5TSzt+~U5*4oh2W~+>s(kB{-gTC8nH5aN?A^mty?`3OYk#xmyjUQ}` zshXx7QZ!8+lcnitsT!J^mgG=?cmg3}rhzyP9}b4%X^?4Z*)_BhtYvGPCf_j z+!s29Upcv(ng1S(va#!n0wky=QE8B@(d4BxyLyM119(eA*jN$nczUpk>c-Hwvq$r2 zD1)08o>$4Qcxtff4r3-{rh`z{1e#u*M#I{E14C>R znxmbCce3h)XcfTK*`_IihNqWgDG(~=eLgWIMWa$m^!f5d&`wxLL}>6-F=N!tx{)bP zjOU66in;M`%pIRYd7q}oHv?Xg^ZR%|C;9>=EuW>}5R^c8&^I$mTnYrFxRNo)Q-UJG zk0PYLuT{9KY{h3E; z>j$&s!`$G%7)1Wwuhin&GVQ(g(^exJ-s3MQYoL*xUJX-N)(iCR|m}=7Oigif36Xe(tzVp zTcaj@j4T~uW=9NSp{S7xGVD}!1V!*~oqpH>ETL_j=3wu3hZxcwZ%?-0eH_-EX30~? zd2z+nE4JSvjlpZR4-vnUo4mnJD)B)+8Z1ZtN0`sng3^i<{6;J|_-dH?>)tV&o1K}< z%}&98(vJm#KkKXJ)+8)7A${s+g5}R(?#*=akSePgMON@(odYm<#%Lu*7PG$#M8FW# zxpw0^;rf9YsYZ&|2i)Mp?-E6A2MC8}6GI9DM*@Um}ii|Rfd_| zLu0qE0T;m3E-`q3bE3~YenkGtmFf@x%f<&!ZA7>){^MYvudnBhziee?<(W9QvI}sD zl!<^%Y8!@$MSZ<=-Cyi9W#zX7XU>kG6)HSK1LEAP`}+nlOz4*2#z$1d2o6hVyE3 zm`8Z5nQo=tahHC^vr}tD7#2h9S?%fm!lm&S* z`?lLNQ}W;5k(ri%t$cVkZ4?jQrpv`tSWi^nCo#)#70`447N<0HXm~F5Nb@vCQ?H<$h7FJ76|jR+{@=!P5E^ zE)zZdbKP8ZZ1&UF0#LzYBJw)8qu2^Jo8eXwUanaHdxmG<7<*g*m{Ag7aJ3TKp@y*t zNE{7}4WosZ+w*(Z7*y*nK+hZM|V}Ju3f;Q~bXPzPTcHXP0 zZHH$fy}_5WSbc*Pb>?ZA93^Shc!oF1u=q1>#QTXD3x=aoFp}Vi&&%>ozSO$EOO5VjAZBz^gFp$6(XC0-o0K zlH+q*_1q%099b?&c9A_=fzg?n<1?bPi2nW7Z3mh=@fMOgHx&h<)ovK zi*lkeCl-?B#gjyts|bPnhyg&RQ>Ta=PoI(oPdS+?{;(jB4#Rn^{5umkqQV5`x{yZBJ<8S@(NWK7&z+uo zG2)br?Emg1=0vJBFe@mCI~py!-VjuQq8C2X_%gf&w$x@BSmTrpB#$(|~gtixrOw!Na7iCTDp)GxmK2KS#Gut4W-;n1Z=xMijUgCL` z=d~=_o@c@K!&rOFXx6T8c~wCi;8m_y+?*x=qd*tIHl<|DN`-OVX!>k2qHbVm`!dEv zvukMS_rsHbu9N!@d={hi3&~V89*K#7CExAAAdX8*$gy;`2+&Vdi-oCqEg6+UN#O+X zMMDI>kYh0|Gg10raqqzeE6D%u_wq1i39G^%-hUE4ojibNTk}(eVs)Yvg~rk`IROnt zBEjJ8KERn6i@+VpLXmhvQ6Evr?Z9x7nkYOF=VMZ83ey5C9Nb%|-+kNkS7I`SCY^HS zv5;x*X9b;-K{so(K|{kmqTv*hE)k;G71_^%lARr=r~iXLA)ZI8PD%C;oCO6t`$w!Y z`_QM#?juR9>us7j*i`_&ff*P|%miZ)nq-)K78^S26oJ2S!XyW%(?Q*6)Uf}vA8;zc zR}URIvShOI@WztkGyOSo1Ma7_;TW9q^JIxZ&q~dkYt+kvKCRjNCxbak<$MeoW0oQ6 z?aw(?v^DbCSAL(~%9#Mvjr8UB{;Kv$)}o2#h9G_USEIOy(j2aoW}O3SrKtg|fQqJr zibjjln8{J-zW>U>H@T$=^LzB2j`U$NpkMhOEa6IDzt_0mvYD~*Yiy6Ox+vMmKotp# zKG3F!j)0%s*dSJW4E*&amrq@(~|;s{l=N&is8FM(1fv`WfqbuJw@({b2J zKz(}7(=il7dCmjUrib+BD$CX>dp9j_8ldENE}C+B&F!~<{t_jsJs-sg{B}!eB+(Py z5-ZynurQ~B^u~5OC%bIBQ4#!&`Drh*cRufJQ#&T?@6V9+!0YJPCVesKiWKurQcb{Q zMS!mquN29f&Iw|6Jg$%F0U=kFU&4u;%8{32i9tzAD(L^R(nrf#{~}ekQcM*;cmDhj z&c$k3L4-TwjhrZ)pcmk>w^T(CS)4jPmt%(kmNc|6wZP4?~fN^{#U<{2~Bm zNc#?^l+uAzrIPx60QqBSArKJ8f9_R>Vi9SRjit|A5B{J;!F*4cAM+nC&z33p?+=Cp z#dq)mAGUnZ?R>i|))PJJr>L$0oQmcmN1}FOr!a=I4G$RyvFJrhs%Cw(uCM4zgT6vH zrNI^I%s+jwr}qv{8`R9S$?QriE8Xc^r{NC`UR`phcw(m8ojD;6y2EpE<`<9IsT}vN z7S$(MAt>A-Xyj}K_LOPngMuL&O-oQiY%W;^`5M(ZIg2&s76otC9}PYp2#oQGP$Fky zpll=xsS8SBT>s7j>c{Slu&kw#y<2q-bD z@$-Qci<)+y54in~`@D+fQ=XwQ(FxbF1dtp(t8yq2Ib~a@G!jnr3CE&9&W(4v7g30v zi6oSCd?lU+u9FM@(b$Et-&(0<^=z%f}PN%cBHds?L z^?F7h^@Ulb@%c0Z6Tzwiw(#AmV48pmJxr0C7H1TwnqICCMQ}`Y&2sH^liIqL>>8oK zsu*7F*IISc^3yR5%dt$4PGv4$%uGc|7kw$eVqy&c7j1aFPMi*_sX*;xN|Oa_SEz{s zr?SEvm#Mv#^lS4q1MY^#`xuHqx;iNHn+RGldOi31wy(ck`_9Vb-LAA2p{pic?{)$qnFDku;IXdj zeO>Rt@@7XNYd!2_6+ShLp~k}=PA!19Shmj^(A$A)*%%v5#qgrR+IA&jzIrrfTyAc+ zG+t)bYo!MyMym%aSImnSJ4F>_ykabH3a&$QV=)|!hR^Hz3en#c=rceOWRD&5;Pp5) z02v-I3JQC~2cn=vO^|X^Mn=~+NdMx+!P>=(1oqs4Cmmnv_Y4EkV<@IG_s(Q|OUhcVwb`WO_ z=+r=;=g|^?P7cTw;aS6NIf_a1v_sT06W?jO{Ev`n?|j?84Oz>lfc+hR=}Rm9Sd84c`Y1zC%(Rr@8iFI{v!T+WBxRKmpyT^l}KdC zqi#%+?y1U4Uv>;QY#$o(aUwM8^GA!Juut;)qS1MuFE-8b0cgJ!&#Q;W-r*Ahv;+98 zpMMbFy`gZLzRM;Ot&=CR9~i;59n0|dT+;98()5VMx;1j1dLg{gBD)4-2HhNV9^{mnd& z9<5>ySLt|ZGaX;MO7H86eNKV<|F3%9<#`-yG*y@lOrRBqRjeZ3z{=mPI;%{Kp6zv( zVYop<hmAQlO7oa74;H4zd6oXAU&WHO|PN+hXA0wt*^C3sHaWg!uaMWVq>ToWT+ z(H99s{lY{f78{f0dsPzhhrGT}AQn(UN-)BCWhpJBg0f!_d{Mvb4+O%J7>O-|zKtd_;gt#8@!I`(i})i2)%j#`$^5 z@m`-Eq&3KWG2SQm#X$H*mLJISQ3t-i3bNbHp1X0?Vb~v!aRM4mI{-`;D+;4^n+isi zmK7anT_oG}wwm%GQfpJAC$(qqb-WLlTVB)aQ6xzUiINmF5@9JJ-+ON?8IC55prlAa zDJ)8%zy@sL8-dW^kB=Nlq+)l+Qbg(3_tyKJjSev)nMg1c4#{fLe~%tXaf(ru4jl;B zk}2TkQT-l&GUU2s@E#l@e{Qaq*tajPc_%A=!7FfTRpB|Z+U+mA`gA06`qc~l zFKN-3mOIuGMCiGm@=5kNI_pQHRb9}cJPrM{H4eLL(4HGuq!~8~4xWXGmsmZnt*teV zO)M=<981Ud?MrYRuT)hIdiPf*z3WcL-R@vjGS5vvc;v`~)91{$s&Z8GNrX!^jHEw6 zgw`=Gf85tQF5qY1L8I=)rbX8VXwz~SrZgs1rZb>bvl_|B5L~%$!mt@I+0Anl?fo-6L zjby4l7z{E#u&cm$*8_NeHm1PrEC%BXS7XEeW;EUbY?VFstQTW@X0!Lb?~BNzs=6iY z+3K#ysEEk;-uJ%iz4yKMf1TV^2eel~=}hI=fBF|(%}uTK`yHmqDia?&DSj@`tRwk3 zK2?~Frr?u?grwn4Dmwcyv=XzfyE^ef_ccCGet~=ecb3~jG_4^##lD{fVpKg3{tDNb zzjO7@`M9Z?6w#mlszukRXC%1r-!C1wbAJBL1KUzOF8%obj>q5lV?6%xub_9#cft#$ zO#MgU)az4QA>AU4MXLGS&F&la2T=+S`k%)c(zGjuZ{%WX6qWCIQ8*}afr|- zbGOg8?@PABgo~zQaaAgr(NH*_jAuDMY8FHA>v94&@oPllQagUC0W163{Oxl`7vC$I zf-Ht3A?Zn&H1)Ku28*UliYBJ@Slh(o=2!9f)#ord&GW5zIP|nV2P-$NF&mk+Y1ottv~dJ5Q(SYu1#B!DOolm4aWM%f^#=kUq?kq{d_EC`ZEWN9Kj6ch{WJ(lt>>|N&#|hq zYOmpO*p{16Pn7K@de;6GhNI=@AH?`B`?__^dv^C$XW{&-&M%ZqJ_Nr|UrjHB!eb4Y zt+`XVUG=MV&UR|guPvNkfd8MFtn01VicqQ5TDH_ueiu(KeFp3FnaiX4eWuo_!T-Rp zo?CuB$+ha1CnE;%KHkOkYX~bx)6dFikV~{h!=Zu>3O>)9r4anm$`@r?pjQxx?gZ-UZA1q(;-3@Z9YW++iLa{FZsfF#0W+ILb#i*Cm+V9mil#>k@t?_( zU;ZS}wY=`ldT$Fq4`;2~RH3|b;A2V>c&ML!^k>kt{3)d7a_g~gj^@8FyiFq&B)+`N z);C6{0zAEEH$QFKPbi=zsMRqNvS~aR9!$DFmM4_IAjhGGhq9dQ)nM|IF?>k|hToY! z^rtX{4cACr(vClD^O^X*GexzWhuI;vIM%7KC6?607PQ2ieJBod$QO-!XN}a;$_P{g53sr$lT#n%!EoBU1_zim zp0{_k;eH(Wv5ARr`ebVASBKN!Zzo!BY(#SU?gb%i?;2akh9^tovtqe075C=Edw<)? zk_(N5IX>pL5}N%xqha=O_rv({lkNf=U4B1cz9m)k7rbU<6W@Xpi?5?1ix9P_1DnvZ zcg0rp4;;|*(WsRW=F4NJyTdF#eBeMSHI=Y(N8PW|Q_adAbH?dO1!`zZyG}&ZOQDFy zUp)TeG|^CuU*Dgokv%PhamMX3U)Gx#=ux)Y*5jn44hF~H-m4T=27jSTgUyt2g$KQg`n4GrEp3m zLAA5KPK-m@ELW(=_uM0vizmMFl`)*iD70H0%BV7sN`r?n$sB`GM5V^XW5mYz$12~h zlJ$#wRs1Q@5OS-~^HFRIrL`7eU8i{E5)wx_KS%}9A zN!gN$h7ye`Mp3eqC^MBsmBBV<;OT6_(bEgAfL?$;=a|cerN*)rcBjVTCtU!mUbiKe ziZeA`pGc2&A_io`>&2>fy`wC2{Mvdd!1b@Kj5WkO=(i zMCbt?0~5SZR3vIZo9+r?;q*HRgz?KR33?%-ELH24XRM~)No3=OSN>uhG@1{9f>Zzd zq84!@Q?C10#XOww=#IU9!z&MMZ^NUv<0TCr$QO$6G-!jDmzTd+gm0f-UR_?s=|J3< zM$FBzOmjMosI(Y;HYIj~$|eI~y%x1`B=k42)UHqM_Qv8(i~2q!KT4@B(mU}H&70_X ze`cI;GNc>x`dGN+!xY2MlXkOhV_+J3kD)UeOfrty>2^D&(`j_yZa5c{Z-0C8qGPBTxI6f7iwAB# zaQ-9jzPlkt$uT6@cH>eg7~vY>XHHV8PCl!NW~Okkd2(TfkBW`EfBq-W!p8XB^ zB*pGQYg&ug81>=j?XnC6F0|0{#*we&7Sj6Qp9&;;Uyu;ON8@-wEvWcskc)mc7Y>H+ zqYo%*+(?*ldI26#;;NCbM!Afc|80Wi7Q$I-d5N|U&d4@xr#dv*@*;1+Y>iGpZN6TC zCZupti|AY)44(L36Plpi{5ti~Baf)B(|d7EP(Oa0kY9*Kn|H@6@oqCZQ`F*j|BIjs z@t2=EMP^^8K62zy^>xxOoj4I(g{OrDct=YLBn6qK=F62OOMiV6Cd)SI}eC~u%& zQeqSFx)Gc=NE6C1VESs4t}xhvrPSy-BtXv!YrXz3J_vDilYX{g(nQ(G%AnIVBxx$2(p4!M4sVf-t#CLhsd_3ug{HJF?f`bCYr2@Kmm1|- zCSw?xOs(7~)l-U=%;f?T<@0om(DF4XQX7`Cg>T-XFC+aye-xLz>f!N^VV*G~y=Q^< zq0UyqR;-jrm(F&4jI(zuS~~H>bA8{3&d(WX52HKiQqQ1u09Qb$zuG4J2Vu?L=bBcA zHNLDh%YGcp=4`{h-)_u0&WtmC-!vSZJy!<3E(vrIps(w?Mn0FzI|lqXy<9e%bB$!u za0!MBkwD++kNH711Fs4^5_lu6uWw^+qQU~QM~pDrbG2eK^EaL_*HrIch3EJo!WtT_ zS(Bn-fQE0n)FTj<7pTXNvKMfOEd<;&GXf`(cua~DCCr6MP|<=ZK`o}^A}^7cs3l!p z5hOF6lr@zT6-$#eRaBEDO*L|d6nID#HLKW2$QdIM1o4F{ijt;8p)=%%z79?mxTsqKQ?fADN%_@r?6w}gx?d`rmc zLSVU3uD*dQZwR3)wOAAj`2Up&aory$J4hjwkQvQ54E zEIW?7Gpi zKknC8ryfKL7XHJCcSe+L>?RMr{3wTq2SdKX;LA3j+`$pmu62y zo|;+tXMC#3MV07ntDhXBOidKC=Z=?JrInd?MsA$&2So0ihKYBcuw;6)zrqM>4|(BR z`(fGU(Qg&q5kc9a1`8ImV4F>5>Nk?)&u@G1qc6*X>Y>DKi+W?O0=IZ6xHR~$vkE8j z5z>8AD{^8M*ts&(N*KkNnWHlz{Z=udQYOaVkF%mU zvo}Us(#%oUEgHl93vBBY=!~tviNIO(737)Q&RA7IPng3=#IFOkzhU8RkN2iN>Fn%@ z4Qol(3B3ALn=`B;5neB*K5ZJTH<+XTQKEI4A^l;uU^OBE5UhWW)h5D=se-u9dtHPC zM%`u$t9F#;drRz!d1c6cxnZm!L%BT)b$&4LN`{V#*;^1nvSl>umjAm11KLKHH81@< zhOT0^C0Hk0Rm?nKVKN~+;h9oA{G~bGamxbE7ck(p&wSNjnCW^-$cF1Z$MNGvVd=!c zQrB^MDUsgkdUs5N`gk9LTRZf5xbZ_NRdrJ-*IY9w>g_f>-E;2@i>bcbb^1^OJjDii zJxsm0X|^rZn=krfJh3NYXm5lbeU@{7;9-m@VZ zQwlsnl$muF5Q{bPIIz9#RhmVPI+!Mho^8@<_uXx`H;gGA^j)|}@XMR<7M4z=kDfzl z^Pt$PKT2h4%$PY#b+r{*0~4e5q2aJqCtC-^!VyL*tp}T}u>#PTq+5+H#niClIPr%l zVJSUH;aMvyRX3GD$PQ5xrq01t{#X?8i%OM=hBz^d|?ooo! z&|N?Jc>~&y(d6_g4gFq^tYNu8n!C~WXzBN_23WB4gzP$^;RmAN+NEEw=rOqo$H5$| zF1|!;RDCJAW$n4rT(ns{ba#(T+}|TL2iMlR>m%X#Rl~C@9jDU`?4<#{@y3dx1X=rB zL!4A#2-&=zjP6~zr@OYc&Wc4+`lD0gc7cw-WX^e{qxI4$39)=wZT9h!2>R=8$L;ic zaJU9peW17tzX9&*RT}Gm97a3lvPF9g#yop&<4ZQ^EljqrQ->~egspil&&IA#@~FO4 zuP@biNY72AH_{1u7;IA5OP9eU_Hb3{{jFZdCm%-bWz)mw)Y1sWxek&S0;5jqT=H-S zY%;QL2o1+0mPrg2&5DgYv$!^98^u%~<56}@(fi<`xssLbE;QzobIJL}RMslZ-!L9; zx550d+@)^voaCf8Gp8l#bY?T{NavE>rEyH#ILL*V>GmKZ@sY(sFc}M0=7Q*YZ4K#c zEuq&vM=2Y6Akl=MI-jhtJ&&A7j96nFGgyGnKn5GipU+9=Zq0O8l(- zY{@Oq7EuQAb<*WolUyRsQ zW;^GYZxe>6Eg>A@JdM$}mTQEg%YJt@Bgx@bh zxw2h8QM#qb63!<=!``CDt?9@5vs3fsH_=q|oq+EjgXM8d7p%c#WuS^RQShELkrSo2 z&XkTT)3W3@a?sSrN|hd_ggiOhf7}+|5cHc=l0(uM)%x3qGzEvcAI)rjT^=;|ue-as zZ@ri4`Z3ZiIf{w!((BxO(Yn?*U#yCwRn>kf*Fwy>`T*bZoVi@6CA!aO%pu7K20#^T=snOs#JcY`U3M?;fH7k zM`%uA7PHc9jbGpC&%aO>3Xrfp6{2_#JrM@ILD?oE2=)Yc$=DfBS=37?n3UKUA~b7xmyuT!q_n1 z#7BfLbw4q6sN9Se=2AL>!UG$-d?Mk?LMW#N2{{YB((p5$`%#QOW)|*DS?x&Dusn&( zZt_ex<9#`eY!9fNjZpBa_g=d6-oa&Z4;9MX8G@2p1*9~P)yUa&g5rn4;oRxdQ>RaF zg(4xKW>YG`aZQjNOx(zg(UpW=;kV{4%J?!6#@po|fVRQTrT4z~5;0x^eLEjMeY(0o zedGBX5tl(Lx5`>IMykGP#S4{MG%-1Qq-j^l)}T+iFXMDMt#z<~j+T~n?q!MeU~Aoh zIb^Wq5L1*r;NY|-i|OAP`sn&Hm4gx$lx17hcGDBB+9ZV8pA81bJV&Z*f10-vO zpCKn63$DAC5lp0C3xd_}VWFS`dz8pY?kB`r+<83GHPc$?wdm|rl*Qk1zpJH@7+L&r zdARTP4q9K-Ffh;w79D0=e&ti=1zuvnVjvj8NknJkjPP6sQNkESvX1CGOTuO9HrRiTTQ-N zLsO3(0u|db2z2nm^r`8^>2g6haOPY|TXU}lM&LDHb}zdfkn=juCY-Hl(+iDL(}nac z=Z+VI6tu6q=7IXa)7$U_K90tWb*gTS*#j6}+B8K?qO`WCdTH=p;zg?OF4ZHR^&%5>tS_?cI747_ zFY!lngjeAsQ(Sa5oQr;_7FlOeQ)t*>J_>MkLQj&Q=VdAK&@itgRIklb;j?YStmi8O(ADD|g(C!K&x>#)M2p90hd1n!QDx=}R^9i;2K zCQyB73+nY5YWqV^?VAF3_&9$U3^TOYmWO9FPzK#bnpWA`1Nj}A!*O9B#VstA;0`UG z;!fQe3{a-w$|Nw1T0WEh$rnn4D~JG=O(gy)hJnj^EID^zE~%LZ4;?gXn$a<|Sgl?o z-Lz)PLVt4v*T2~pWK&D8t~xB_nH`Co(Dg*ZgrBNrnwm;oroH~ZMfW06D_y`o1%t~P z8fB|P&@w+3XrJm6tG!lwp;ThQJ>ORljV$>;LYnx36c5eHf+@%(KtBdM-R|b<>e_g^ z7jj1^V(z12Mm+ze!bk63vQE~m=v{XgX3q;}8BDI%kDsTuwk+M<-&Mk}*f#0r zwT1Iht9H_Co&N|Hkk!TW@4K~<(bPY4f@R#?{_9HWQ zx=+nSb0N5IgoH7B9%3(`Jr7Zj_bD44?G|k6X}3&W!8}%;*3;qg9y&e*ieeI7(~it6 z#Pzsp#{W#Qtz&!0`Ps_BT++&Crc%Y3nX(vH4K+T*V`aAIYxMwBhW8x}+~&R`;SYv- z@3!~u@-^S>0bQbbVgE9InA!^VFNaziCUxxVl{J=%aR0JCUKr`J`+Z(Fgy@M>HibKmVoTM|W{zaPKHrB8#J+4J-$a1#S-98Mu#naXf(-A6@{* zF#INoP}R&|$wR<3X;vNt{Ti-9wjY$r`zIqXP5;X9#A2&143lA4{(DNMrU2Iz%`9oL zm{v05G59kUXMetjvD9S(P7kB>Sw1B=Imj;dy$^P;$L{@xSrozuEEyJxW<1UF>G+;2 zU3~LQ@q0|Zs<1CM*=suNqTt<&j^D#v=wo;u8JLx308;Frd5 zM)+ZP?ohGxuQZ1zL#>~ER5+MfSm+>gN1y;+bsD5f#TAfY;L#$19!z6wV50Y1%c73K z_#WmUZ(*7p3|a&gz-z)P28>(nqg0EA{~cDt%0%to!#*DLQk$@QXH|7NCq&CmIV$9) zC;r%pa(Y-#aJ;AN?t3{;^S08sT$?%81Pkb(V$;mA77NR@Jr^_zDowTvHzpJ9*2mjw@dni9ka`R zyx4Nj-Y~wO9>9F}JScJK{#u1M`7S61xdO`0W@oL_K__kWcmrK&YwLv$`x)A?-c55; z>QqhxHibYa<@jaOj$t>OBkcu_ev(x2J;m80&SQ@?j=l5uoP42iWT9+u2NvJD@P_xm zEfPM`DC8ZZEHxf`%sI07&d%Z+7T&seU;>vyg*CZ={(+bi+6Do>ilu;}8^STd%0mDh ziXq0=$ril0=$tE(Mn2yl3&nGvPYHY-W`U@wt}J$Q`2*AWRuLZh^HLEhgGWk(Kb}62 z&mC(O%eU6Tm0N{Wp+1Zg?ZXO&9*r{1e-$d*m`StMwA;mCl>|0PZ>Q1dI?iF+PB$9J zGWY)bFS_^KbHn|CAwCr12rlh|Ay~ngpUnUu$kExdh**jh=J~}UxX0lH@2I3=g_vAU zrONWXsZ$FJr*{3l3s~@P>Frb{1$P%tE=>OA+jx<_DWLBl&2jkRG_^H`;6C(-r>bRR z#ZW9oDp^)ZI+r}$XdF%|mMr7n^6kb-!yPBgMa^>ynqG#lSS3rk-Ea;~{PmVe5Jg`$ z{06n}F(j68^hK-gBKm)mq3xrTzJw^*AWIB&|7VrNkQIhQvF>%HFANc4WQ z98bnnQR8peayr@vU!XeK^TT~Y)IksL-Y4|eKC6oJZIz;|c}l-!!!Pc_Vf46#`Wf`u z?igq=!_}=hX5w8N{mUD*!Ed|n=hv%mi|{aoHI>D9;`N*qBI_f2#0G=Z?dv6O;e|q@ zWoGKV%O9D3(|l0if<$X*5k3+K3~h{SRBNX>Pk^+t(WFa+cWgzxwK-||CrB{quU!qe z^`-g~@Vh+tgpf-la*4kYseagR3%UjBqg^+thx{36actn9B-A7IRQn!yO2 zwxtGJZR#iOi|jnQxWB5p^=luI+*rT5{x8|E5Jpk_PiNjS^Nw$4*WdZk=&^+I>g*do zkfkzuSojUNF@_B!fdnFhO`y~H7MGN;OG!!YTb(QE1YBAh zGe(GVdMYi87@^`DB8Gb*pMi1WvfOUEA7wLifQ0&unGAz zN+6G@=d4*(FPf4Ft6n-`q!ZpIBqnjdwU7?z&F9uonE9$1KWENzS z?HA^5pEILTYqm=F^1}CMwJaBfr!>33&u zgNWSLru&E%$5)2XhvqfN8|-*nj0_v-&KHVVr(Ti@BEqxe%em=~MfaunKQKD`9zM`^ zCu<}`F(PGy0&ntGGT^UGK|*>U&n-buzlmnSWjtIl-T}7XUg^Eqv&sv19_y#nC8Znof6eAi#wq7Yvn0H}%x!q8;m@bCGf~fUDnJ1zi z)6_GnlJ!koa1 zay(&}7#SpRVL}#fUwTgvt}9$nQrvtbSPMs!R&i#gn9;>rFp^J#NJ_`ve<$B1&r-Rj zLL-D}^mH3T_JbkptTbdpM;{FwhOIe*ax^(q($bBb8snO?Yhgo)L_Zc+q8B5EBJv-R z6%zcZlhIS;nRMda&nR3u{^UUtP?XSdz8Jq6kd<&Jl2k&X((Eny?QogSwV1nem|M}; zC2&)aW4oX}cljpEBYVY*h)v(AsYb_8EAS`J!z2nSIp!qrbKTN7(H-^BAr(U}WN#m` zn)cVc&qF`h3PfS9Z_*e81Y|60wU z*xnv&GGez9jHoKG&h!Z-TN9M^N!Rg6c0J0*XdTO!fHcnSPa%ID!bUBqUAY31EN!>S zcw6pj#6Icuyv7@A&XFAE)3TQmOolTm?rk6l?|Svt+S=Nl{*b#~e}Gr+ZFu_T{o8qK z?c&8f?OJ-VcEydM{TmQVx@LQs7io2NwUM=dX{f&JYK*-M0^WBRkH&dj+vklu4VPof z8pXoEX>{!Uk12{!m9%V9GC0nVl37iv?ken?ux6EGrkxX_Q6bYXW92<+ zxr9^^6?Hp@48=6UA z4L2lWysy-+IlrS6)LuRoq!E}CQ+rQV^p38`6C~`O+PQ@VZnE@UeP#Z|=k;AA?CmQ( zMM-wh=V`oUt~I42McHYjNEDHxMkcU#PH(|G(DYGL_=9o zQ}K98T~Q2CNl#D5WpTm5+q#+yrq$`Gm{M`nOfaWrOp)t`!Xr^D!iTuDZ4`5F$ym0={bScJUQDDj+Lr55f0v6FFTQn3eBbO$VFv!=ej-gL@|yw)45;@D z2)|qXu6r&K^B*Y8&WwDap9`!YLO${0ltGokXl09rB^8Mmp47IG>2<{B_5K;a@HX^= z5uynW-AzJ5f|N|x=InH?HPbGrawr%MiLw}rioLEFjlpRs92HePRhY`hmGJCJ#+*Ow z*@aw=k1M*QNG2bfX_w|}bER^Igm~yhdBeyj;{qQdN<3~ROjY9!Tk&*EgqAYBZLOhy zPd`u%%zCk8=mF}v*o~4749}ozS2Y$N+oakBj}cllUJQMI`Yv`^&?*v$K@CSO{X%D> zvz6A|9k=6dZP7q_+VvR%I6Fcw54f(QrQL3?-(z_iJvoK?owzKwQf<*P4a}2)CJ!D1 zNuil*H0)hh#Er|14{Ll#iX5(UGgkw>-lh_ZLz##8xWt7cs;>2ShPo5JGe+|R1ZoCN z#6eB9=&1)vRIN^3DcVKC49R4B<8puVU7G3SrUsW?@;Y95gJLWw%?0IcmCJo&xl!0z z;7fY#!1{VYj%d?bFczABqA^-mcBs9Q?w06HRCW2P4P{19bB9h!y;|V2d&Oy;b!p&@DwW(ioI^K8=$+^0=TGQkzrOuthx*Q{@cugPl1#p}HdZ2N{Z^X>0vcpz zR~du9@ry5=JzH}7mv$BQeM$nfPS<7flJB2z9Oj=x7~2Emf#TBAkzw(ReqySoLBsrU z#84nx)bs5+BGkg91G5%KZjBYP8Cj{=<%F5c>8_!haaAcym1go%Rj!seUMrTYgd9mE z4^(YckRz%o5Au4VUX3b>nTebIo+j&YoJQP?$;J4v#BrgZ5SCL~Mv@OHDj()ZD5?bf z7?mCJVdzyAn)}V#LmaIF&WK5d`9$3VS``oWwc553zyNm%+kgL|gfvNB4J*SxsbaME zquDnmdS z$9*t6j1^&6sfMS_;?`Z*Pym!{!M^oN8fe08GQ^7qqqBIAz>g~nR1fZ@xx)~C@$YkD0^z;Y(afNIQMI4+9EFU-D9t2~LO zn905A8tRiJXKPaU@$*_C|}IBZxQrt^yFOY zK(84jq<&kaWLH4~E43<7NzRG42suqSRSSpa?_OwmK7-yq55sb#zIi%tjFP|Fn2P{0 z1pF-Wu4!&}UBlSy_csxgehp(S-8HulKknL2chl{##PHlc?=J86cDr4+u2I4V6rw8T ze#N+Gbn;5_=dkA~9vqfbWJoN~;8Y!kHi0q>Tx&7C2=o8j#N-$EPnp3l8V2bZhFO2C z-~T_T{~zhNSEfpJL4l&y@=>!p=lT9chUI9(3@5m%wCpmi78=o8&E@f0>F5LiLWF4; zgAK#@V$hr_K|vpoNnEy&gw{itaC9@8UxV5yLcKI)uCeM3zWq=qRk_Xc?fg95D?rRT z)MICdHAERD$uMngzorF(z+REz&L&84q>pTrO1H(2T!Ic+>o}25m?r5O^M?oBexLM5 zn}lS|d0}lXGZlg7Du<@}?!}9I>|Cz9HrfYeegV5^nnIk0>rz!K+hywqq3k$mD1-mT zzZCjj-PxL;Fyi??VxK^-<~srxJnC@&-=N0FVb8#R@o)5mr2WY(w2Yu(20zLA6m;SL z@vrcOg#Nc_!h2c;QN}LFac;NyuW*HA{?B7PC2ELGCISIA7*pLg9*ljI`YA z(;zQ&++Ac0<#nV3?NfD{@c?^6(((zR=oJVO)xMUaDkbN#c?HQ)Q&wrYWc2&nd;C;^ zntv=gCQx%$DlKy3VSC^r0v1zUvC@`+v5%XJMgxC+=8|PW0VpmQcH#$E-zm)oOaF z{-8WqRuFdMOAgTt<4@MLd$Z3%eN)}+*I@aqr>ll>fw-5Al9fyms7$IPCckU#6ptdWE-P%B2`7Ln`WAyKJDG;0I`6 z_Da8750Wspq)+2|sMqg&HLjFz@SKP5IH=~BL+Uq@&FtB(n9aaa_;NM=oHJNwe#7WO z+%yq;uQ*0a2>O>p?O~K7K!Rxv1sDoqg(0KX{sghr`r% zJ*+ZoL&s(q=AO8Cxy$fpJnZt_<(@!)IbTaF@iV&prB0(GKcC%8cKCPwAdaGun6N2I@gTJ~^ z55*FXQ!lX+;|$yDL%vlG{^LpWI!a-+TsbK+l-1si|Bn^)3?wd%4}U*~G2-w!LRo1MXi3-6~%+Xm~*CEz!GFDx%tN2TQuqc?cL z_kLTu!~(kh@iP8w4!+0!ywqy>vK!)*UZ%L5EJpAk^I%1en>-?^g7VBDa?nBpoNoCD za11bq!Vi0JI^@3?vqo49XZb5n%|12jSogT@hMVI>r~e6r$Jur%MiBhG&zvB62@A1x?#c0?1rK0{AifSf8W>@RULK-r9iX{CM>IkA-bGWhK2B8`{pyV1BS;HZ z;5`JNM}liZYRKBAt8z%hBf;P!9t}J>=Xy_!$9|6JIQRq7Q8R|x`-{=zvUTR#GNG(0)7FJ7VcKL!2J7@D9}rp{I^yG_aC zo9NBm9c&_w;+^sVIKN|iZEb_vU%#GOzqmQl!x^5FL?aynHLH4z;0wwi$xObHJnVec zy#wAvy4{X3dhcehx4yQqu{CT8cVPO0&n zO3r98r@oYIK59{alC}p8ih1wa49OW*K8mvo?NFt6aTB9v(brV*#opZrGg-H)JE5>> z*TryXu2IS+RcSrKMFvM*I()% zk&=<~Q|B*VIPKn62&0|;`@!JDdv~M-gP~ER+4oNdYm&HbUfyy(wj>LQv>SS}INIs- zx6o+c{ZknCpMjCqq^gc)q-aK{#tl4GUYM+q7@J~AtryhtiSJd!Bn^_XN9B_)(E z)T2?OWJIHu`DHGYio}JuX@;`#m`)A`6kS^j|QF! zyoY-7S1Z)_Y8XWi1BXWKQ>l>S4bcDVZ7;eQm}WF-S5V1_r4)95jHw9LIbti`t24(! zkGJ#`F`hV-8A2@kE!i=ls*zNPD|7jUyqYMRmdE6Jf$_yuBf)$jLAkAuF*_L##Y~^w zk%TTNBZh}KB^e5W>Fq5;|5oZkihh*X-hAqa+Z}#m2?aKWC&x4%xtWbUCNeX zvt)hx)a|XtLZzC`Rx1mQrE{mI9fmJ(-N^1YFXFK*5IUZa+1=MjcleApIMxVmoiyKG(oeTb9|xQUO4XH zDLhnPat>6H^6CL+sSYpMkQ6zIIo>u=4no>Pn@Q%@9R+#VdJ}d(|rhC3uia${!0FoxZ`i_R#r! z;qdDh;mOzod{lW_5S~_|;#WjPA-BJ*&#E#UXN;y8P_*FFWDjE6wVJij%9)1g>>;^`{j|s}g@sRi+=aU!?{s$$Y zklXHKeeSB~ADqXG+1Jmq%a5hB$iskcm5nA15P*mG=Ggt{7kqbwq&e95n}i(em(ZKG z6c^86eqA_}Z zy!E`)Doy2lw}~%+n%Em`>`&smruw-lvxh_?>_w0?+@UW;AM}Z37Fk5IEmM#6D%~f- zsSlPW&i_Q*LL9R+!xQ~%k^uCd*38kFR%PW6tCk=p1R-@YB?t*ou&M$aPT@uGQ|Q9e zo0~<~EpBdBR;m}Xp!o<{c62x)m%}qWj(mRm)Dm1CNBKbajyB~Kte!Ocw2tzoMb@s; zhImE^rL8DmPR5kl1J(Zac6=pWxh>_#i5Y2O9`Vfcq2kjnh=`qZ<<`Q`zqua}sFrOr z>_%LFS@uH<7LS%aMg(HYvU1(TQZ1#EO8Ke(dN`fvdQ`}dZ*BcCE%{SgEo+qc$_;NM z&f!%-d%DXgNq(a{*kZ-g_P7eN_d7f+2*bp%w0gT$#hjGTWie5f#mWm1CBeDTAo8)Rt6u2e+*w6C`QB3eZ@4r7Ze80|ioN9gnWAC>u!)mp?S{cDu zg6l@f!=pl8^J{mzcORw&rJ$T1FaFR|temIb`p6URFRc089LMlM$r@1+(Y2te;Zli! z#DskA{V7g))H$CezdZYv=rbfxdw*V8C$s0XgO@$A?Oq+nR+M1w$*??I7=u(KP0ZLf z4<8hN7G6k`WSw^&Rk+mq2Y-HJ(s?HO7R}Wjk7CZN^MkLiEBW_-`@{(fLfm&pnB*+4 zQh@ODq!xiGwMiboulh1FJ?KAsLy{c$^OsdOej$0ovlDuU$h_6~W*f?*z#9>mu=Wqjjty-a~mvg{k7s=N`a7~D zOD=_4B*Y1-o;y%T#zihv`-U8e%7P}v|oh;XVX(eN3^Y(R1-`d!|PWe}QJ!fNF?(6{gjt=#p!-v{#@ebnZ~Kslzl`OY3kdR=eZDvEVN>T~( zXf6B6s{t!n&dujb$y7gE6YqryYVfIZkuXV1BxQHIjc7}H!~W;6eE!#V&R6qRn{y@Lx{J_bHs*KoC@8> zDA0$Rf8j5?s*&}TOt&-mluPO*phV5q20sHNsB$Pv4xPA?)UsAGUv@>%LBh9Ln`wL9 z9elII$QZmiTf_P}iWv!I2k$?T0^wZZILQeYO;NlR<8t{Sc2^Fhv_@baC_RoC`!x@c z3>7+mp&0grA!IEN{SbFBI1E6Au{r^_W1+(rx@KPB%hP540xl&_8La|z2SKN;G4NAP9n@yHS(qjpaJGqpTvu|%oJ z6_)pC8DkQup59urS@w)Om@)N%WG*+I%e|WYbt5kbF+uoQQHZDYgjJYP(}&aQOu9`=mvq=IYCY}{yxtIW-HA3(O7Dl~WziL%1`2VZyufM`K#e_S;x{@oCa4umM;_y>2 z6S*)c=M+5*1xKUh`9wSzj3?&H(I{M?efTfPH({)yHF+s;IPmhoYXd*b)>!J}8H1)q zU=#)o#WGsbKn)9>Kyh;L!N!W9JTJF#;jz#%wLH%5T#N+~SnA+{O(C&vs=|gQ`se=lZ!^|C|~PMq;w(Ad(LnmR%A!xXz;Z z9_n^GWc9-7(-(*&Bobk7=KvE=7@B(e!YbQ8KxeVeI9)ilXU6HGWYrl!90KoNpQ4}| zJ^XMc^YB|9&P2_`HRwsoM7}mHtCKvUQB%jri||ONhG@&D$O?vuCJcF$ zSEq}hKKL}fbx0GZ%E?H?=aIri4apeNbu~Z<8_`u@`1V7(mfDpu9&x+5w1=i(SPdU} zD3f{Utq)~F;b2DHpQeHkWNeCXVP4!z(3q{e4-zLu-K=4T9EpM{e^Kp*K&^>>_YrNRT9apb>o=m=d zb8U^58X^oGGXfqN*=zq<=y4Km=?yRp}c@umW>bbQ^7FR$1@sG0?jAHO*^!A=Wvj|}_J5PQd zrt4z98h$pm@mu2%_>c0UoDOTUk*_vmnwCnYbyJS;VNQ@>0#VvO+uxb_W znqBf<0H3l7gDI5D5fS=nFqaGQ5t!7ev-11k(fhow1*mN9)h|kMlqxWnAEHtBL%G8X zO{Y7Vt@c<2A`Ezp%DZiw>hf*mON1emQM(s0JV3Edw|g0WN5l`F({H}_W_>RCs<*u= zY5AO}l9OYXw>;Rj4o>lScw&tDyXy1v^&3u~zTv?k5AM6`^Zvy#EP+0>Ts_bXoI~BS zRUHDIjP?)VYB@=PUs?K&$Yc|9Jl$XNg4)L|79`N=$hs`Z>1tXMI~@{WwZIwTNVa9%r}Tuj}6khXY$ zyA`#p99Q4qPd2~)=Ml1+CTDBSBLt)sjW65DphOj{H@!W|g$Tjd~qE$fH(WAKvPEUxkA^>f;rwwjes6Fy~AmyPREL zs98nl-yf*M@fNFoz`K)M%6WAIIpaQxPo~h_k}}lp6h-!-nW}2IE!9Rnifuhr@o!k} z>b73tIhst8?x*0)AENtvUMw4ph9f(;ao+8bAPM*GBf$iThTrrM3BL9%vB=8`iFiCw zn04oJg+gx5b)%dhaM5yk%1Eb;sWNd9nYQmnb9~q3a~}|6oD+;b?<7qUIWY6KnFG3B znYw?fqU(e2N3-Q#IU6NP%*vj~S}}#mEB{RW8V1(5Zt#e;=RA~ZeCshL71lXVMLC&&fq{%x?62sawM znl7}9)w$arxP5M|-l|ck{tg4&>o-oDZTMQwDWo#^9(X*~3DT`5F4FO?x6RWHy6Alz z?JvnPfAS<>CSDNPD3`m3Qa1@efi@EKyBa2#{_e$#Xi{P}VcaOV(i_S&zF#Y%scW@8 zZ!((9gKO+)XCFyxA6)q|ViXF? z(s+I$iJTb~gGCbPrND-ybMU}qNQ&>==2)C9+wB)#nbvw=#y_b2u-$cUxyAhqO;}qD#ULN4U^y-_|(Pp{Lo2yB}{H3cZ%e zJ%31TL_#11R8I#2&9dPk<3(%(QCX-Lirpp@(TJ~6_cN=>TL$UK!eB>G$aAZMEs}Qr zu2Nk5kplUZe{r*^qDnrp=3b2afoU7q*14C59Cx8okba~vxbJrzB1pzYujg#r<8~^6 zq9j(ZXIXyNDeKfMZj|Zd$a~gIOoT)jAt7oQZtI335Kv$SThBG7YG#UbEVEvHHeSgb z%$DPWeH9DefT9rUG%5)Lt?2l`x1xTCCe1c)HR+Drb5A_cS#{m5e#dYe zmmbe{I!|CW*8u)?7VckipQp#IPN&~>Jbm{s$ajHvh&YG&9TAU_xA9mc2DB@zeQn&f zPtvG!=xNp>9OnrfT6Vq4V+=Cl&kaqjRbtQx0V7G)f|0PuXTm`cJ}oO~1jCs~G#uug zU??m^GaOuCms4SZ3x|RRv(^2`x5;Lu&^S508OeruDOd}JHB$?Qr-EXLBe`%e2-2t+ zoboQ$f>MYJW`m)#UhWjK`E7OjWTQ6RJ7D`4h_BeBsCxUP|FOJ<5sivQ+de{gtHpF4 z6z_I+r3Lyav&dQMVs##V*eO}tog=7Uv|>WaN=+@6<`>pV^YewG851otU0w9Yl)tai zfYtl-IAt%Erst(md+qc+PhOM$Yv%H~e7)+hSSlEUU+{7ZP~T-1MYKD&fK3g#d*Z%v zGaRN6sIZ|oTUON|eOzfutV?{2ecUUHl4ywXh73nZlo#v2QeW)!`aNRwu3!KUjRu0F z8B0fPT*^!;AluP&Y^$lOs@@!|yPfgemMBwTT>2@@JdJvpm(hZ5&f{KZjpYvZm1LSV zd)%9Vj>a}Vj+KEyLt`a6RuZJTq}6vFhumsJqDmB|e}U6uaa1$Y@yAWGlT4;eOE=NE zcRg9=PC3pguAJO-JIh>9;_k=Q_kK&J>5MWi^1VA07pQ$zbebK#jOsE2Ke8R6GAy3nQK|o zb9iBH+WOzrL^ve6xlV32%D3>_x@^=B9H`e09H^O8+4g;$zfS&^d>Cd}+(mB%P6qBm zo5ix9Cm9WvM^K+c+-gikOidIv>K{Bd9MsN6A(wfKQCJbQsW;7K8&`Ut0XCVv>>Pu- zoffr%B{ds|9*6|hrP-`fFSw^;x?55+htJ(}d|~c}$c;JjpcRruSx9L`OEUh53sOEr zL*KZpLv;(YEg=@~q#EK44@N_!nSNH*57cL^l91-+OP%t3WI=M%oN^*JxR?@TgR``m zB8kqbp&?6TnT@Hh(-?B}P3i>BV09Kh{ebO;zKWLanh>RHCI4Fy)w2%@H!riyInRG8@#E zP69Xn=;mxWd2*Tr-#^Y3R|q~Bogq?`2i;Z_d4V)|{ctp_{4}sguZV-^Mr;Y0^PDJi zQ9C-DyFwZB&$mS4hgFTde~dw6e%yUn;g3)+-}@-~YaO#sqnQ{hj$XTnkm_@#;$^L_ z>m#;dm_1eFmUVx!ZBz5}A~Q96lhqfwa8B2pgJ#jHpE5GVO6~SV#uFF;(DPf2TUw@c ztAFy0KnH{9vZ0`=ryXWI%Bj()Bu3_SF0CbEN0q2hKz6*3jgc!j5Xc$imLf>JAn+2L z$b59L!$wEvK#h%$OKflrbJuK9bkGcy%+N~$n8EuQrrEwBl^kGN3we2gsLHfnGNi)N zjY}7r%?q!+&@|UkYQX8L=enC9G_(t5wBXWv%?nGFqfe~&-GMt6ufob^ILUsl=)gqk zBz+%JF!wVh#h@gi(=Z9ZT0edAE<8N4i>l9qY&J%f>pcbsBJU=!zwQotjKJ_vW1^<*F~@tZPV zzx>pUyi_X~LcuVX?tR_8%{uwHiTDS`kK?e~J@jwp2+gt#EyD-0=FThoePX(U^@wvEy+IGphlB}E#m8_|QVauVn5mOuzWX`b z7uzOv#^kN>yr>IimL+4Knyr{=x<=0FLgX!l)$PJ(*J;3q%26}CTH#q1&BTAfo4=)X zoDNO2Ogw%0htThezyw9rm7#wKGf~h@k=6TzL_(OUHXmQAHKce#m@T)+*+N*B2Unz6 zNabO=RYQtQ99a&>IML5V@as^wER8Q&rv8o$Tnpbxl{uUe$)!R_mIhbgizLPgA{T?V z5{JEYixnK6FEk%*m1pt1QCk|viEu%;#&|iFzub4b^nHV<>tz$2K-phZH?qf5nb9j` z9fcjY+eMAc?G3i+3214XiL~p2{zZdq;Fgwl{f{f@1R`nmH`9sDUXMQL_xrz~YiKl3 zqCTN0m)g_>Vf(&Ij6`chB8FPRhlh7c6J*%90|rYb4D_(G0~zU5!$CBKsai z!!%<+&}=Vv&~-OJ@I#{!JTXb@;CtD3D^Izfq-1t;A9l~Xv!i$}hO?ss7pK^+sBX8L zAk~0WX;=9w^t`48s^C09N3Ah)YVzq*}X z-$s{87+wER&jMZX{vW|%R0}A8TVY(1OOcA$JJ#^Ed zDm{?SIDqX|brC%zeyV?Q-SyhfqlZONH-MhSeeyAswQ^{j%Aw!OkSemq=pZhmiMW?X zbXJ&lM{b~@K$DpmHi*G76O;o;b^0iV?ntL7u)faQ9fO)U~bs!;l}0 zNCidBV%B{g-O+Ia0Mt@U5`+6yyl46MpJdnDw!c*{WIt0TZl9aGeGcZ%L$7=T9u6@H zswNjOB1*r=sfwaSC6Wirdq%K|MB)FU~-)0xoH2jc31UQ-Cb3^@5@Zp z>^(g_(u_x~-O|XGCAr7)f)S2ctY*hH7#q`ezyS;aKQJ;$E{T#5LS{n9a?J^W1A~*B zbAlg20-1?#7UG-d1QP3#oGj$I&pA2m`+fgk)!nm5vI#lTOjmVPP5s}$f9w0D4yHoI zvxO({SU6k!G+d0w$;Vk-;GSmC4K=31PeqbKe*cLOhE>Jj(><~2^-qL=4Tl#`VCRK)CJPSjNpAiw=v|$?Aj*D!_=|&xl(4+jIG!K z@4C-#_cpQ9|DQsOslRzdc*zz^3tIJJay&#4d@NZv@KA$W<+5q_MIah`BC z@d}Md#48CaJ8o;COp=48XDlap{i_rZP8WrFIjD0ye^QY75>Q^^W#J^xb9zvo7sMU6 zeS+Zk3b`?O375=FzpdNtIyynD=V{NYJg@Uy^t^eGy4J2&Rm9kkXW=m!Q+~)ao0){z z18~1?42RtZNk5~o`NKDbEJ)+wda~xtduz#hcsvjo56>p6Ueo90MY_z9EsfYPFccZ}GPf>SQMJzR~?G`eXu|(eWW+lZXY0UZ)`f2IdvksU@F!av__8Ze0|Wk#a#~R8)mrOHHcHtt}CTedLH&j`twSG(WJGbIsNHsipbbwHf1qQPk_SX)cB~W^cF$VLz;u6I z3UU0)e(AvnFESehIlHcRM+)JhiFgByIf#)5A7I9Y4SPq~0`RId!sP%lrGdtQvM%+V zgdj5PYG)+cVqRN^o?h(?(NI~pFOK9&&oCvxSIA1|wjmM@V#%(q$gT6l%dGPd9>g{4 zPLn>hu2KJP9}Z%O7S;xnFSiW_s)(z%#cLVv#5LOEF_#j-C9Dp~C5Ba)&jd~S%2sO>i6e-&E z;UDnTn<&e*6Wa4!dO8y+yo2R?A@)Wj0n<`TNEklue>L-4zV^FgP}f3Z&v$drlNIgt zyWX9ZUh@1Z|2pU8*p~lBeSA|?e~Z!Mh;QZmXD!FDDlt5kcQ8JA7N_`|DS5cP4L=TqYN+nz2ivgG*WD}8hI6u;61&~*A~ErUZTiKgpWCS-qg~tTy+{c=M9fVK zsC*+_@}TcK(Dx@mANo0*@Z97%<7s08uR=do?@oe5fHZ6b6)|d8IM>T`Mc_3_ku+YY z@T$zG#ldA&5(k$Zhl%@twbxyqz3JyE7!|w;1w4ARf%g`G*QyjRo$M0~aXehH4!{r-C; z%}>O8{fFuIx0r{H&fefve7qRa_&MK#Acexhyz$Vu5cN;cFSn`!rz+kkQMhE1D9M{E z?^QUTKM>mQ{g^~lO?sp9<1!rOA6MTd6MtBGyLt-0OOK|E0LdKn37R)7i{3X!$wTzy z9l}q)*B|EYre8iME`|I)Syp}`zYxm~V^2j`tW0H^uNGx~8bKNjmhFHyQN_3|!1o(p zlH$^ryp_how>C~~c4t31+a0(q+(jl8rT491s9?v;ftH5DNZcH`V)l|EY}|IhQEG7rjdTX=JpAH;47Q(QS?8DHmt6BO}?_;*IV}xm2iU zv-QF;b|?+(v!jDkvMR{1!M@}v>zXXkbHdKo1UdAf5MHB)?x1aZYgcRMB<%jPH0vqN zv1}kTOwBMGu(Z^f0=iVB9_P$-5A~$Y-o%El*2JNv|HWec6s^($)n}ivG)nPkov0}* zJ5xA@cZ9LjJl2bQRmmjYBME~&bBw&Eq|u7}+W}tukRe!%=qFR7A<3-`tSH@`fa_ z!^T}t+;x}!p7*@x4S4cRye>r~b~v_lS2laskHOM)nw~K`JZnGA6Qh0t5~E`&d*rUW{yO#AQ|#-hds4mMl_GZ` zWv!)HFiCEzFQtRf7Lll(_Ug0+s@&A42hu{DH_rLX>E2IIF z$-8G~XK#OMW7}8?Qg7qRV9rYNB++YV*Q0SlxZ1+tX*O!KP1s!B5C!j{`>pS%4m`*T z74Lg*>fk#YzdSqo{`Wi6^f_4*4}bBPo$7rpbzp*$;9Y}>`e&2A+0WFq+1c$eR?N;~ z?}~vN4$}sH5Sjt!WVHrU80X_4=4<~@Bv@l5*8IbLv6Y5Z$9;TDOjn>r zXwj|%RZ(h)jMn)QUxxu*&}&UhKTqoC?P&Sl5#t^DsBh$6IJ@Zwy{#68KK{i!reE?j zn>4eO=bOLJvQbhw+}p>r3efSIqT|V?SWKAOgklkw%zCo~%d4q3U~mEJBI`|ELX^Np z6Tdaknhgv-f?l+3-P*DaivcJAIE0v~r^0YFblcXA&5mugx-Y&M4Yl>`N?up3lSbS) z>*wWIOMlk|wWT*yo9>0*1DbvcXjz~r?aTv?=3B~vpW!Wd%uP}poQY8QX~%SC?5_dlI4iW6XDZ(H5G`60!PehG8hqMgi zKTXc*BSv~QQ^{2Ga#$1uj@y2LTS^sbR@%szs+SW8$>c{yGe$bDdWFwk^^e>OLvwu` z+TsN8@}9~z@~Ly|j<2i{s3)MzV>7^>0gDg1%`(qfbh((08K@ktl_VYSkYxH&{nj>>ddhjdeUWD+x3qI z;C3-!=BW>Ap6)q+O8y390?cl40VIL9d*17LAEGzGvRZXwcD5$1Ilq+;5f=yutBL|icdWt&h4WJ_2$iff@d#O=Jhd;xt z9pDIX<%EcW7~;i9D9-svG}!z5U@R8=3-J%T-7YEeD)gQZ3`&x$Xu!M6fgsNdqF)r) zf#<|v0Cq1m?1#-M7=(vKcqzw;uSr#E^=d_AtiGW7?YbV&R7D5`&syF9_vxrfI9&^c zI6bIv;u4nntzb<09ja3s@p{qC32w+!Ve6?PK z0uM2%<%9bUkD3ojvcU0Up-GAJ4D~|-_Pg6X_jo#4EQ=zr60fBZ+@;;uY``S6@vIDN-(kW8CY1#7~Y zh^I6zZKk|do`L?)FI&rb7zn+dX}|H1O%J~G@%`N4|WXvKyuj7_uqU!`@ zb(7U_w7&RL8f7Kl4Gp59hh>XsXLtK4Nu))o3 ziOv@{b1A!eV1zFhFw6PpzI+$Zng*JE;gIs68V+sjPH+wbUGXbX#p^X>)0{)1RTV2R z7xpb9=-{#%9>%V?zP(dCuN5?Gr#^spq>fgT1U0sLXOR8-^w^ojGn4K&bXDq%-MVmY z^63HI;A0>?q5ra{*+6%d9MJ}7jMOc$pcU4~&M%%H?{3c@zD2Cg)8n@;-8$A9ydH1v zqH~mNC$!d}MgdG$-Y0cs{M_Q1v2Bz-J$`24Ru=<%JFS%x)lc(|Q8)S9R0CXUX@1Pe87+>9sUJ%#hT62;N z(TZ(s()Pu{F!|_kGuqg`M0ZBR_L^*;8<>9|rWi@@%f=^PXXx6_%k-7aJJnXi`jq8wku~jc4GZCPp<|mOXaE*d^=5SR&ej zNxcGZwN)G8;Kd3?B3|~#V*b1~)K*by9lF+=bEML!?0P#jwp^nKp}o>(ee%!b8{{J( zmlkMlg)9kj6WkJKG$o21jPO>#ju0knG{}gkhK7 zkJce+f}_Tv2^jfv)uux-Lc;*9tRAvMvJCg2R;(W6%OA|%SXUxXf-v!6V}IreC6I{f ziAbUn_TDa$o6XsT&SRRr&5jozGQ)Jru)ewfR06bDB(+@6y65msje zAfo_dAEDHJ@Jhfdor#q0lA!%Ed?@4<`Cui%h`70$UKk4~Wg!%6?{yzx#6ChB=mTF2 zl(jRG{7fvCh-3;rkt2zSoL~)6uPTAD{h4w)5dKel-KTxV#v1Y*mgfM>O^4~2tp!OI z2HgZFz5HSK?Fa>q@(&Nbt(QOez8|H)Q`0+#pi+5xL$Dw7w+?(8=EK_WIgIg(Oic>h zJPlm$yLlFdqAV+Qs9MQ%8TtAyJU$0F@XE;1(aHf!yhqXa@qkbF`H6=fYLmSOUc;Hu z&pDx)-w9$)k|;m6v~>Q!fdV225`FaONO7U$SGsF7ikrrAe>!qwF+CmaFfN|`bntJ^ zFZD442P31A1S*Jeb>LD zyC0+${YoYn}i*)Y;+3nJLfZzq`~9?;#V!M!i+Z zKxZt>v1TF`=L~{*kdm)#Tp*rfVR_OP4o`$Xw(zm#v?Z(&J8IhaJHE8KYFARWvwnY# z<_D#I$)t{+VHEy@hWW@QH8kV;O+Cq6MwdsY37TFjMWl!{br1tkmsL4Gcfc3W0!Kq! z@Z+q{zpbY#?G189BJzHJ#P6%lj7cg*i&&mgDuEL$Pfc&DnuMLo+aIeg4&)d`a6Ok+uh_3g4(V`eLl!m#WN~tYg|! z`~Krscq zz_}ctF-T5ebCUswf=pWvGB}hOR7g#g>V2d^l<6A%xD4vTLp%=LVl@&&nJW<~D^>~w z>Ko0(w+XrBv2?oov)y!{IT1XxM+3SSC`au;0PIb7X|~x%NJQ(e$-t0V$ely;&+I|-Cdau*i5%f#(Eues-9625 zS0OqiGtflBi&7ws^dG;Sc0cEFbKNrh^qA?O{Vx!c`m$7^9i3ddI`=GgSJz(G5}Bh5 zrQf7!bZuXNp~^ttJ`yP{6r3!&!|%peyuIGdatZA5`l#7kdzRay0Kf3Y&AfLH(?PYMY4;tC-*R;3#~zyxM19FfK=OKp zi(VLi8|Uwty{F%fU!?V%8q&0o+CC78X`Rp|r_q#mS1Jn(;5sXv1m72{Dq%4e^L0it za-VKljRrIN{iMU{+512KTbxq2c=z$}PU^xTRUv=SkK1zB4%5LhzX~2xlV-efFp6l{ z@{R@Ld$!$eTU4QC+k31O?X9h?m4t>!K(=Q{$ELY{QPF;?8s^Xmd~Y8+&`Igkp1)2iy0ZC7Z3Q3DYIbJNP5t@eLcrgLmlk7M>E7Msm{_b_wZ0<1-c(U+SR&~Wiq zu~38>8it0;VSm*5K6YMT4doC++U;&_g2JIq)Y{fcC^te^l95~p1THp(TP*J8U(m}% zxBpw@#25p88#@u%XFn$Tn?;KCoGCW_;+91WST7pY>J*FXF zD+ux)dObKm19h5^0-bxRHBweH$|F8be%z}kWNE}G=ow!)DZ$x@{xL7FkOvjzUB0aH ze`;|(n~3}4danFm)QpdfQC1GmvZsUKf6c-sVTn`khkv1KmiVwr&b{^Wkz=%`+cy<;R^ zyTd74aN-ovK8@T%i+Yy393kvDn7kgxDc7hwar@|L?xt*vu@w-%A%F&jjoV-w&aW31 z%2s)yV9^2jp}dlZVHFBUv3w*f1z~cK)k><1nGL(C%0{I%Djhs1jkYRmFrLikFRFP$o9oML_#4Z%)&Sa|wQ^$(e zsR5bJHTE}hWsq8|(n9g`Ap=IB5lXU(k?`)iZ03;aTxn@kJa$YRT`E1UhC=H5lu$@n zq7|f7RjyH~{`&km*ynOA!^KcUa<#_bC_o-%D~`Db8CdX=Y9@2@`I|GD zPz)A0F8R7ZR!goBPiLmw)e=jZn#~pR*-XgaN@%S};=7`FW`GCH@buz)N2tO$mkVU0 z*QM(y{p^95^5n_6lf>E%uh-jz0xz^K4D@VQ9Gq6n9nCfwNe*&YElf}}LoL)4I%l`@ z!zM4Q$=5&n`lJ*O_!XU<2IBs|sve5Zt=7$h)#^dBzB(5_M54fvG!GqWasgevL)9f8 z{o)H7=T-ggY&sN5XM1bxI22ouan|E&Qzq*yEfw-tuYk&2>9uctZ3#a<^~&hY-+`H_ z@T0SX@&ShPo1w4ra7O*k_QD1z%IKY4CBL(B?@ok(-#xqUw7qy?AGt5PH%!3yeRtPS z-0vIcx={v4Nv-aBnH5{}bza*#*CkPnwK zvu~RP85zH3PXG4l+itz<^!HBh`}DpGi=-p^MMaTR(XaHj6hHk2AAW^ciof?A)BJnW zyytG8@BS0+7<1>$p%q>(`q;Z4mb&*7`MPkp(lN(;x3&qc#*Da;j#Hm=%^c z8~F)_ZBTMKn9?IfVikLzx9wH*<#rsp14+_N7OnNoO?2aKBmV-|hji?DL{n%|NM>ws zx>lEpPKtAC0*sl4e1JF+ZFAcsg^!pg#wUG&@(A|AkKKB9Y6hfq;12}f=PRMHeBKBc zaz(L|Xs1df{%rh&Iq8ET;#>9xW~R>G`eXQKBjtdvSPAFG@_r?r1-T%RX!r9sJw|m< z6Nsl;Db`9wgk`Q#i?Jj3vCMBy6IALbXc5e#S+6zsq?oK*CD|)YPMk0%MUGd2UTKvt|_uF~Sn+U?&?PO86_Nc-G0ckRRVr)|Ii?u4N^tq{N`jQvSeA4dy8y`$~zq7MC z&ba>?xeV<+i3rozZSiJf8}6FC9hL1G4L>zyqgnS*D4#jnW$n?EMjM-Go^X;=t_IPFB(n-!-}dZ;b0=9`NjjY1-R?-Dw{CY z);%iv9U&kpOpqn+1|nb6Qm+%w#>{Qa=4~^b-8TC5mG1t|O~K$zo&DYK?q!`<9e;rh zTCPbm=OKeS0p&JL9*eJ0O0HvvCk_o88yg@9t*(w7y?3YWeX~!=%1UotIe7c{eTNR+ zH-7uU=dNmWALO^LIGDQ)H-`_++U#rr3{ub$;G83YgA2%ImRPEut_}YY#>S#&R`(^3 z1*eE5vu@j%NUPQD;w}WA&M)z}`JJ(k)P7qrn|{dgUPSrAMy`jd1u@75g?^YG<{sx5 z>V#7TqYC8)g&fsuKz9ctCRSL;3G7lBMbWm6wU)KsYFleo8yy=v)W5Mid|ZVpbhqqQ zd%>QZv=`tpj}xnlSSdlE5BBgTU7#>Vxz4aTUHoYc$JQKXgl^C*91Uhby*x4>I+Q&W zPq}#oayimSM7EOJ`ub+fWIXF8;`hT-A&}o!VYSbXfpCqgfpBWG{YZ2+^8#$Y4sY0n zKJ)=Klp_`kjV3CXsC#syWYWwRAg7xMO4)7`_}y%`*Wd@6MDKz~4!_T|+sj{QFE8gc z+wRMFTcqW@*Q7drtyH7A4V!Y48i1iVLea6uuB)t^)dze0l(TOC+#Zbo>G3|n>rKJxwF7+-l zxN&b1iLL154j^eFdE@;)m@Svg=mtD|qgjXrd;iI@Y*rT=pKMfzWCI;qat1T7M`tN) zI?F8>b4_RF)IJjAuHwh7gP7jfEM;2hayhNqf|MzBS*!$VUPh^iyMQ0{o3tgen4R&R zKJA;iVOqK3mxL?Ij7&z3oN;0+Uh+7qWcb*)IGL#2>B?5$C4WX^VJehAaTJeP^xmsc z9p&H>-TL8@0K2-0t%(NRnw;aP-^w3^LZ!5plLCS&N4#xQVKp}v4H~hi5sZ%g zo!vrp*$cW)(pb{RVpEOAMvAbT+J}vi-Yz2T=QA{SZ#JQb9(COJw+vx*+KL4pQ618pw4gZJH_$`+>1q@J;qX~e)``G%k@ z=cI5T6A3D^sKqkUt9_WZCD z%3SKTVPMZLd-r(b)x9q`i{N~#zn&sS-v+{Wwi=B1jmDGg3Gt;5cW4U6b2uwJ`lbR5bq+t0C+ zCmW63^jHpd=XL1mBQyZd{&MJgF9ltgpa2ZNa2*0akR70dd|^N;lX)+ZF|@8#oE(7m zSHF7kwzl2wc(&hf(%zG|2DhF2Zv^=q@7HyhQ?*NQ@8XrOkgs-j-3O7VF4Ox@58uDU z?nf!4NaLl&Kg#~mB5BjZr5(=@>T=s4Wcx$go~hKR$F%c|z2|!{SkY|iFKvIsSzG=R z_M0kj*kercoI}7r=q%ufnzdO3J3>ci=L$o&F92f!vc~~x>qcgR=uzMDl6Ul+mCli@5%MX(r};Aj>>8s8+NozVEBB+>kOAd!s`nd4<8?ad{OR3@K}2E(E+;n!57 z5DW`E=hYISxL!_-eCJ)$4?PrYMCSv+=?PvHvV!0xKBDq!(ljEPsznpTC&(NZ5CWmH z<_`+IC~L_=DC7;Bulxq`+LH3GW&g;8iN`Q)J?IV;%k$>W#P< z)!kSaGDA6<-I(w8o*g1eu#a04rzh-_lOk0cOWW3*5vn&i_%c>OmKeEFhz_qg6-UR1 z=KHIyKfm>qH<37#fdO8yRjAL_KFRphWmJM~^nSp;!2+aHoQ=I{-}gh) zj(hqmq4}Ba%O`gytyPNAe&A)$3gciGrS5VME6PG(1GF)%(qAHS7NDz1%PB zI?&x;=f!FzSFPqM_y^l!m(g-JjeJNYCf6|YBjqY<$T^$T1_i8hNj5?DV~+MnFO>>v zk_qDA1Yw!VJ5q%!npF)`zkl+M+HE6TLOW9H*0Q9KTIhXSO9Tt4k5p2Ma*OcEa$@(8>bN$mX3Wan#*?DU| z3+=Oo&2#C})+${2>7Sm@u6A5+g_Yh`YtY~SN->c$)Y}F6o5Iue#c#|JR@WKIe*;Qn z5cEH|xSY37_Gs^YMzhc-BqVo@2OmV;_r;TW>mD7*umAfsgyQ4rY;bPKltgTrTeybl-d5LDW+lRW~YuaS` zq@b%Gj+sIA$?ix>MpIYkxy)ozOJXzZ-!qhw+`>palZgVM5h)GNZ=66pMVoR`QZomkQXeu^mdN_L-R)G2J}IE^5^TKrO0z7BrYMtEKVc;7lrMSmp(u!|UeW7A3m@*>K~>fke zE*{o4L=`M(g#n1XYvAl>W<`(`^dci&=1I0{tyvfp`ks~rTQ$LCiZ~DvbdJS0uC?2P z9P(GFF1564KhS9dG)hDJLZLxA7qd;fnY}V7C9<(Wy6)!Cv4+b*JT}j8{03&aFR?fZ z_>b|nCb9#j%y1~1Cgn=#ISp?6#I56pE{vc1>2G8g=d$tf?DAMPo4qTW&yL@?7|3Q8 zFmmnV=f)2$!b3lGIlI`%ns3aW7>9@MfZy?x3!!XwaVVBhqh9oNMge00SsX{hMDDwZ zIZJ5NzvGO;4swmQH>GIhkYyk9hq_OFFK)%oR53{{ECSI$AZmo|nr$ORZF~LMW4sYq zi9hve+rHyWA_DEfd=J72j*2%!HtjgYQKB4UrHQLB3XVmV5tX4fRckynN))j@5Jd`C zA-$W_)XxGd^I4T1qLQe0?MGwXE*!cW>%Vp4jPFsue77LnE&Dgq-@11a|TXO|9?U>jE`+V&% zT`#A7xMm;Q^g7M7a9M1qn1}ntGq) z5|Rr<$_+D$gG(3v;>Dzbd|Y0Xyn0PyaB2@++eMf;(Jb9K51h{K3#r>&q9HsC;n(HFejMFL-*7nyVUUt3sY` z;7(q0V#eW*>L%tO*+aZ|rZ^4Kg{p_cr5TV4P$q!GOococ4qr{EAOZ*?AeIP4iAp3n z;~6T1Tt<=PnbOR~`@_=R0~vhX6NJ^ZKrs`CO!z?4FfO7=jrcU?2fke0?~j}tIqX>W zk6DCd`?h`WP1;fq-Tp*XELj7;Ki^3pj+eC}`w@|07`Ecbq%`A`=>A31LCN(41fh~mT#|7_*UcJD8C7f6 zWhZ+S-MKoUbS;$Em&S$VWno-9_x~lM$H#><7ZP;LV0C*-nZGX|{X(j$b#W8xG@@DK zMNA5Hp06^jEZx`f5Iqi!{xoJV>RXX$>ew{K}&r<MvmU+SK5k-&T+O) zR!5GER$H-YWOApCRv8}cb+C5&IoVg;X| z^y6H_ZFEmF?}#6weXm=UZKJ^K(qYho1-g`JXN&3S?_aM{*X)HCu31UG&%=nGETVo^ zD3StABvR|kDya0teI-leexxyMM&tqlCpGT~rPUhfG4b6dMuT8D3XM~~ z+S^&M@?P(!(aPG+0$j|WYtkOVb*QnM_I9h)Zto@?%CkM&-hEBl`)}VxyZio~q&o#* z|9{=tlhahH-#cQQxnF>^O^ewXIlk3eS+TL8ox$VYxxAg%8;!iRt*khUth;&y`PGYK z72LZ(TF2sWk$s(o(>Ht9&Sb^yU9BB8Dz>OVK6o$I(xV5*hRgUz5eBmDQ26g z?HW^Ect>m3nEGD3-E!vpzh1Y$*{e;eE82||u!3#eu=0(@&gQ9OpRBNXF(~VL{q2>?pmQkbsyzM zW??%s&DknT1@93)-!HB>Qf*bP%-=E(Kdsw*l~iP+nv4W*^EHBzemy%zrBxllN9JFB zTQHKWwo(<}ZNcsI#DSk4rC7*UZRM9m5w^&$lIxP>mu}w__L$>-!HS%+RlTkFq=H$kd2!#r_mCbBhNDfb|9Z3 zzmU+@?FF)rQ<#N15-6m4zl1jX-tWuX^`0S|^%M`B0mw9gsRo|D&Z-haZXlHpBs4O< zkm|i>eCxjU0#<+D@7*!e*o(P-e&Bp|Ftma3v*s;n7Gf?Um2-@T6~; zrZ~&JwTmWN_m@GD-dp=Q_3y4vP%+clOj>(W!|3@dX#2-Nnw}b-_ZW-Az)(>Qfy=Ah zkLfJ+V>)HxQ7^lQ9LZF*5IQ+`@)FrhBruI%%J!ALMgXID!qrA9=|VSNR%5XXtqX#@ zl1R)PpUK1(H8++ISDiV?=#gRcf@EJo&@*5eWv#&cs7r-`wY7N_qV~m7(nI^Lg|8AT z9(6%OE_=B@*@LcM3XUdD)lYqtSeH2OWfylc8dr7^=dKTrLEqI-?+QDdv8%nPW8U^q z%NxkHK+I=Ou5-~1x7D;zYC7sax#mPzPQgDGWqJ8RG3&P2`-EsDd|`PwezLPIv~qYI ze+>4OjAx8S=Io{q^Y7p;IoGV2*A5U(Nd6%zWudqAK5PGzd@k5=Ni6q?w$0dp)^2a> zaQ)O|DVn@i_@`qZWmuzes{7i7SkTwn^nFng?P?pm>y@x!FXXplk*=6I zytBy;aJwH{%kp`rX-4lou@dCLW=GRMI}kgoI{{TK_UZLHvyV+Nt&g_(F zoi~4;09in$zm*$@SAS?wtTo8a{V=QPIeaQ-+y~Ef_RN97==wwQUGkd_U8ATw>x0Lc z?g_Qip)x&0b)*POjQLJ-WRl=I1tN@`Bd94oKx)r1*q(PWWWEQoznv`wmaElMfpZHB zXM-oJ)nz<;`@FI=KE9;Pr_=p2Vl$_;OU&E81%LYB+3NCg^=x2aF?g=Je6o5rxVZ3W zX31yUzNO6keE-Z@Q>iWxeO~g2_~jy_p=|)s|DaW=XNHqYkX)w8V#jh}bX{9x(H-v- za&tt-%S&UH@IH1C?}fwpx!krg?BOyRXht38P^fnh8XT#w5cZx^+<|adt)$i{p2=_l zZmDZ9k?|%xp$<{z`Y^8$TGMDr0K8!Mu;0u?#J-n$NE$!~fM=S~!|X zh7D^4{##aW3l7`sz%ZYVU#$+jjy7$LZ4G^@>F;0}Zjhl&a(h;yY1{4F1l1wkh8htM z)&~f>S~Z^PT2{BWX2e|bp;lOKR}mJO*oyiF|dFYTQc2+8m|^8MqOP7+NDs zC7S9IHiuPY+hjov5aN};y6{y=%1FIlvKkD8f|K#mOr;a>X$cZFd;y|M_&@}nxKc?) z{c6mFJ-0$}r!XG(NnGh&j331Lgc8y31vmEwHV;CS#VArM=@u7`Efmq+MK)rAprRpM z2dqzcp##h$^scTcc_lnPqIx+)RrA@n!OQB%co?o~&RYK*6dj~KCscpupd!g;i6RN0 zlLz}bAyU2t$@drw&G-2t&l56^aBq}wN zH_wLX>oqK^_vtM8K=xVU%?Gm%MMq@&qxB^yqSZb4OWEGLvd`xC=Yj(|m|fzfzaakv z{N||VAkFf3&U2gRPR!ColS<1B_m_F>&oyb%rnv^5;uq?xPtya{s?;+VQvjl`QWpBG zQkP>U%j^e&60&K|X^A}V6*x7ZN0RZRIqLWFJV# z@lipMcupX^7W5_j-rmpuD$zIeZg;ht9raCh*Vi{THXc$GA+;|SmPMXV>A`?El$;4i z$HTlJNMhyYL|8QHn&gv(w-G7klYL%M6SZJO(R^xz_jv{WE@Q09U+Hu>tyzFWr_axI zVU)xW)q9}VMF>Vr3u<0Xn>$)*=})w_R`=HAmNM%bPwZ6T_W3hbUWRH)_bO3zyk_;v zb&Br&xpcg7rbAj+C*f6w-aM-mLd^4{~)V@mg~rdiQr? zaSu;FU?3bx=`4*<6#M~4dhRd)yx(`d0rN&4Eyz=WP$-Ze_A}6-W%qeb!Z_d48*xA*@2EBC zyw`?AeKcUgijFRMvKyA#H{X#fyQo%B;c;8-j@oS-)Cmin&R;*eD5gq8mHa_g_hhv? zTdnTjlYC-8rGw&|5D(s|u4T2FBmSAJ5)f!Ztm9wL4r1CLqw#Nb>iw~2EoFTh<6mPQ zhE1pLHNCmLB3qPlVn-5&UY_KP%UH1=bWSfTp|A=>=g|_M*CuV3?|mc3d7G7Jh9YR> z*VfttAF{__l`UYj{dK%SD|&M$m6TDD^kLf4K*?Q7xVPCc1~kH8Hu|(R9LLab*x%5; zwANnj6L}kl3{y0-owgZjJ-Ie*wZdRTxGh)%$#OSgo!;igP~&ZMI(rlLKYLq4ba5ur zH4gV@#xqTQM6Wq&Uj|{$uxwnNFsC=CY2Up#L>Tny7$wZj6|fGg1I2iNjj`$=IZ!@E z$Awp?%ML12d(}g!g@iP5z+NXVncm~G#GfPr%&fP zd4le5KL&gKE8o|++VHj}JB}@N=Qv}sIyL9qE9AT^UVnS@D}(J#5r(!mU&9~qBUDAy zFneopJqo8p@T$1GX_6%HsaS~ZZm}_q6Gghagy9Q-VwwOce7GAnHvv?4YmF?>WE3DhZ50SCc4{} z>vN4RjAmr&cQe2mbB{(wKA}C!AtUeVxLjH$ugbNvsYIPo``kO7WP4Im#3|KjH0-AZ z^)pD=9_;v+kO=PC^{J_KWXc(FeZ9vz&GnW79{ebLi%}dt$9cun3ylHTlRQh)z2eGP z;29257NOqZKRS#bATX$PIwwgx89x?JTFGJ(#DIL#uC}UnGCw+!&M)TEBSd(o0AoK% z1c4XGmcWYwNt%Wv5YI?l*W)8G(~NDjT1h>k`e0n?N!gHnKKL-n8zrIDP{$G+C(5b{ z$KlE9zgOLSG^;<*C4$q9dq712ckPCUndT-#`NA`U)1)g)t$X%w+-P1I5jC%400^vZQ5v3dd$5NAlPpC69>L&t|ujgMJDVIlHVGrhx`*ZS18Y3TcF!|4VRy=ojUhR1etdOsx8NT02Eh;ihfC(Z`n~j>u zVgunqmZR6H>$&?#$vufOCm{!u(RD?s(=!&Y>HI=BPUna|$xWNnwP{nYk#;yiCZalL zjNbZ>oliw_C$szJm9goHXvP=AM&kAE?U;M=_THVTvlNNf@cV37VFKRxx!#o({C6n! zz?(Wx-1@0EJ>U7qTZzZeCP=Cfe|ww!W2d9*^KnxuPmd{!TwFugE$6m#=>0SKrPNt! zqH)mPeExI)+0b=EkFLX8Nt?cwwEO<6>#z@^PZ#qG_KK*$h}!Sd-|JDV~HE*BvM(|EN?c!OyW{&T&XD67=i`>A^#>!W%R{9*tXfp#CU`S;>jUV6cDg5yt|3 z21WsWs)2JKu5WAYVbLS=qd-uEDQqRlJE=7W}gOjp^r1RI&yS`d)8iuuX^ zudj#oyzcc1$=5ZT)9R(V20#6mY~=G+KHtgbU&s%=%>9MeDRj;5(!9Lrmw+hg z=*N1%a|APck*R4%Zlzj&!_DS~TlicR=DndKbJ?h4r{EHXd?n_%M#&AheBkw~4OmfQ zM2970VsUYT9>@(KZ&|U480@yNrRsPF$1a?%>g3}bE>E0%d~$v2xa@wJTAw`r&iO>{ zU;O@)u-$cEO^@H0C%LcB$8*j3T;JxmK0wDOG@5MS$2hRSHRyj4H`G-fI!WJdcEjJ7 zJe>~dQvLWggWINUbuSLt7>CQ-p3{(dZo+T0QP2^~)uiPO5**T!S$Q~Uw&$vZe^A&a z@mSVM*V(_nMg9TGOHw~)_G*TRh=%=vmMLl)&`HfXy2Iz74zzxDZ)Qn%bJ&XYl_f?TU*3F1*A0chuiM&-Ac z&e}H>)HzNM{`sbpYJ*tTHX>*{!vnpq!-Ft=fq`mUz4c*A_Gs^@g9m`EFx>D_w|{}m zPQQBxSvBdeXX|Rc%jT$?^Pod5xzxA3QmxHaS@L7u8BMd5U8YpDB$98%E4MAxZwZXf z9GM}W+P>aj`6H1;B=QhDyf^Vw;+eE?;I^eH-$85Y$i7EZGn(VA5W`qgat-t7i9|}<0VgSY%Hf7IDa5-a1#9e( z*iGrl@Ys?)cHqF6l^=UNpdsC_ajHeB9^k57qU#iT-h{Y%j;kNw>XV#|wh6tCF-$~N z?Tgl2L)BFfcsrJQVSVb<=buqpm~C=q-v$O>ZtR<}R@Yl=R;%UMdA5X@FBk*iiFfeQT6iaDxWO@L(%EXo}Y!E>2nQfHP_GrF+QL3 z7UGp?NRk98XM_Ur(8&HsRu=tUUo4SUk>N>p01_u%@jGh}j$Edctj-WkFgm%Jg zi%W#6;4yPIUck!~><)7l;;3S2oLQqZXvzgAr55e*&gG>i2(W5CgTkkWE)VSSkrR{;g7U z{?-?E{}$fM>56YO;DvjBE?1)d_fz3J_tp_J>9He?}Oxs z{A(TNL}!J%Kfxl|5*B+K!1U`nI@7jSh)rGU5|LHCwWv+rjIguCg;KjcR8A1qha&Lx z+h1DQRjgib55IY(Uud`0+8lcIid*FBMr)9JqhFt9-$M}1s||Eb#Nenp2B*o5CUg(Q zv}m^z+6{bbqqWj*p)FI#vgw;wU<>;EVoPtgff6Wm;^u)K@5-P)mF+LB?NJ}HKK%A8 zRD;*m5*Aiy@b=oa`Y@loKLvRRGlPCD#4N2g8>LzmTC^~OfTkzq z04KhE8uKJp-YpRi7mP@@Ovu9`7m$gKcONEgMU$WEPGdgC@_RnzUHz;YkZiB=o=?dU zMTy9ta@Hj*I|A$J_;BgXX{Y=O3SsmrGUzjNHDKebvR(tOloD~*%~C{?q=T=O$h#!D zw~5zY&w1Oj79_6|xlh=)ewz~V;G;LgV-e}l!;g8ZA{77ln-zIQ3aG#PxE%TL&)W~Y zaoA7WOLI88D>lN!;BSbOCP}Hyk_WcBm(sW2@R{Tn6k9!ciL{)ggq?irLiQt@o4Ui# z{V{o-e9qY;(F1ti)AB6CDsZQhsa3~$57HMxyqQ@9gf)p1ZO8E4LI@3uhnh)05f+$T zm~`(*L+8$cW(lk*3YSb0#ZFX%v0U=#Av1Bf_iL(*TC@489S0z^8!ENOls9?HBy z0^u-IkhDicxGv6TGSj>k5_zBEon6YMg>Xm`j5!d5JU^aS4#HQrlI*IL_X)dw*m_r-zlV=8Ud>Oy-xl)PbUsvvZyKxg0rz4s(qFGO z$b$~f2>K&470!<1GlvcxtL{5=dj0U><9PfWe6Q_4bede~yyfBO8{YD$_NI%EMDM%U zjXK9+-)UTPJz|Y6vuH%GHA$^rlTGrU7j7FJzu3C-%_;Irhg+Kmw<`P3k9611zB$#q z^XnT6TSGVv0q7I-$7e_pEObGyW9&r(=3Rp(=_=s@L+8+&?`(C==$jV)mmQjYL;T_F z!OfP{!SVm*v+F?O{=ez|a$vR_kAE+_uyMw|>4L{Ih?U!bGltxUh)9SMX(D7iY)X2e zMzbE6P5f<;lg*E}+pn4Hw%cUwVyD%5a&GRzPaD&P@yvrKZc0C%zVjph6*%X%Z6GE; zwI_Oq%1~kL)@gJ!T}2Tjt$=yX5VHXN4s?QnG!jhTG9C#|Z;CVW9_A;+aClb4k*)$xJC&o9|+#vKplGt_Jhub|*o1x%PNSxBl+DysG z0^6aWHz+CK0ijONT-b3^y84FtS)-UMh#JLW`dN?X2>jG!(X6m_mi@x`oFrxqy$UNi z4$oya0CN77gEzb_`x`N`Q1AWSsAAnXs*J*~m}^hTkCaY*N}T_2tal~z^Uf_C8~M6% zFrLYbojYBBT(Oh`>Zr1$SX|chXC5gdpa7IEc|7%g@Mm*J zaAkeQq>@InCZkVej$op_D(=nAIYXAR9BdO^W~f{B`?@}Vwg~Lm?5I_r{AM=m%ar}W zQp$+!+ZQ#tv9cs{UcoFIqCgeor$eZioQ@r=0Be}nmM6weJQ$6Y46alp=DqQ-7S9}S z%ETw?<0A>4sM~3`V1+wQqbVE}a&wR@5kvs$XRlAtqZQ=Z^)V-F(vAU#yO ztPY)(bQ$6Jv^Z4Z$Vf3utCVkeS8f8=Paw!i- zGo1;AlsvRR}tH+oEdn6}z;* zgki5M7{OcGAGFftnPW5McLU>QeI1^@wWYwry))Xn%q9TY(A?$S<{eFEYZP z1>zb*lmjs~P!2ypI6Qn$>yl-?$jE*Go_)Hsjc}|sK0LFF<~;0}|37bU1Lw$9-HGa| zBvqBFN>WLxDwU+xw^ZF#{V^@Ir14D8Oxd3Ccsw4D$F^jfF~h{*uMuA3kgx$EPk1Av|*Z8@E7)!_cE0? z$QlTNe#1t4z+QoP0AZ(Ip;QalaKE`1K@MnP)=+U1v%~yOQIqxzI|L9lP`9t&n zY?JQXve&OV3L{YSgenUQ^hk5nH|GySDFn%vu6a_-jTMA;;+9?Fy@WX@Ei8M zgKP)MTtd^f(d+HQZA$N0KO3$FxhlOSwowCe-$?0Pr&O=*MsB~5dQ*x}JA8srI>1D) z?m=xGf^^5V2GwyEhy#xRctS2n0^=CWu*rdZOZP0Dyv|~?taaVVrF#N)A(O!mdu?J*6*KfC0~DJ>D~tJ6ZG@jM_3cTN8({19vSk`#;I_gM%jriSQz>QzZF~8 z>r3}M>}h|UR3W|{o_=g??EyQJDd5KjZWxnt^!3RmkkU-P{_g1$=Z??J96xtrddpIr z(?&5|t0W@bn%oia!V@th@&kNfRU;E82%@7{rlnNs^~xH4dW)LJCR{wO1=;*DEQ=m& z=F}@2pxZVo_2EWdi3(gMnaprvM9B|K-?)|oZJ!{7>_tIh+x9y<&u=E8PYyp85@QE*soacy{S9?l z)@Sfh{iF_d@>6Z+z4jCDRA%LN?ymfd^FOg~RD~OqGAX-#7dHli@@*o51hi$_WB@D?S52GEe|MGu^!%+NMCV2t3!+ z_H3G#t=l3k^kv-ZMD8B^#GZ&GBT5E!=+!s0m?5w&P7?8xXz+r-b6iZLSWK^w7>O9x zV0GVpzKgy`oNVaOXtULe+C@uilcnP(Ev`)#iWLK3yjT*{=Ts6ad;h^&&pq29b?g)p zI%%L4Sy!v=iV)W0yktpdN~vfE;0XAwzLjffiidr{C zEsos?iwUigg)`vw)Bdm}ljM(e(^`fY%aGp_GXr|whm3L*HS&G}S$WJ4`xp%bAe@&> z)f5W-f`DHix-Z^`oh5rwBH=QL>XmFA}@U8ZB$gP{Z70QCyT#^uGX# z3h}7O$Wl^xmWfo1b~|6pW%7oR&*X~vcH5{#7$gb_tgu21`Kecwgdo;)rMcM%8;Gm< z=>vg>c_|#0_`|VqC=`wzrvJV1z;s@X2iVB$Tq(!WzWNf8U)y)Wcc<@3U*Gp`klzB@ zOMvWz1dmM$(2)q04?7Yiq$VUv#!=)((v{t5fksS1!3mfhj8XQcdw_ZYmeC@KN#Q0U z8p8&dC?7pI9f^do&^RpK>4W%<5QC*B#{Cgdj{cvF5S7IUlMoU@^op*Acr0cB6h z=!?%gZv^p7Z^B$3Byj)CE*NtlMm&>H$Y|Eto<%=F%J!Vz0Wp^ealiP5cs-*kwhJ<+ z*m~(q9#wY%n#;r!iee=-?mxd|T9yYlD(l2{ED$tp@+*5F@7hWYGL{=jLxGfKch4A3 z(-1ZwcKkqw+}g@7a`G2Oz;`_zYpp|}j0<+>J^ep(Ys1aN!)24Kax^E>l-&Kuih{KY`;k|lLUX>n50QCtf&_dA-5RbQ z3SWinD2YF}ANe^XKDBQd{ssEW2^o6IB<#PxeZ{G(G@qNFzkWZGe8N3DH$R7__A5`9 z*0DT2)V>ONdddC${YceI?j8FQ?L_>R>WSZiKsCp1ABU+82R#{Ua=GWkVD$~DsH(AK z7$VZB&FhUx+ZKmb^v0WgMky$t!Phf;o)9x9sLYLd?PD1l;AvFH-LcHlbzF#&s4e)( z=08+SB2k*uNWi}hHbj3>kJKkKd!@tWlqv)Q2r+&oojtRBm)VFes5c+vd-yG0Or~qI z%aM2@t>X!(17ERW*OxEW@&#(EqocN!t}yyisT6AGiqrCRfFi5^RbSv9GJcTjxtI=*o{%idU7o?lv?t)-J9&-hb# z!qn4=c!Y9`I{rJZ-${B>e*V-5NfqP}v0=v7DW^F~(jkf!&GnQcG(jS>V0}VJZzUL(qpJ{?u$^ zF6-Ck+uDt}_p4BsIR9)9nVFa#H%Z_o*^OIG>zQi5dfs9p(Qq*ErcA*~CFD7^F`pq< zn2O$zgEAUWNdr$2a=I7SX%->C`^$O^{RH57_C+axguA3hUMYrR?mqR4WUfEr&hsqx z0a@740gPTUO34;bn@pezyMXBERp>Cr7MMZ?a}B-quwJ@Ve^HJVo6TlIv+6=EY)WRc zn#*Q$)s`vEgsZ}$Wi1NT(fj@!LrV3PQnPX*e>9(OOKdrX&#VdcRQ^CEm&xQR2l6Sn z){K-oI{A^m;;kQA#XirJSz zmT=qIT;v)&XxM*CV$QlVqi|t15RhVXl5(`1Ta?s@%FAMX+Nzb%AH>Vb{ezSX>&W3$1H$QBKP&{YO7 zx-x9(GJ8`-ad>mcnGw!#Z#Cb_$?ts67v9NzVRs^}8decgi|ZR}pxz;Z7!TL&)Iv!t zLa~e4@$@L}b%}&uP9ZnbnubX>>4ra9OzNq++?7ef8&=s?-y#QJ>~@h&!X*{584nNu z)Vd{IPaCcJVST)K?OGSbLOQ5$8pC6awP8^lb z6fVov_4x7(4qs`_J+a@M~W@zn@QA5e9E-sgmX*9~Qg*l~^tfm))oETdca)OBe zfB*0oGLJ;#+4eNc^3ua6A`$;}C&P(E>Yl&P9iLLu=$Dka`BP^_Wm9aFhOkAHn#)bS}2C*v_O z#f$ia@?#WA=ojwF>dQYRJ8#rf;B>8%AB((WzSNeBZ;zyyT>?fpmKxb3T#;MmN(`eU7h>NW;&*Y!)}z(C3|xd9a3hM03XOOfAsY1 z)3eia7Bg?AGO@tpZfrQRtRGe^m0_|>_$hpj&s}%=4#}a{eL1Z2AZOjzm_$A+vEYV~ zx++Se4e`173Cq`kykQ&I$k@2#hC78-VYvAygGqXHX7wuxOjrh!g^6SS2-Een8&~ys zAo#<>P3F7S<}_o)Q|&CnsFuQnKLeD}xbW|x3(owc!`@B;0B7(ch&_=i-4`W`Umo*w zePv|@90&Ax6p%5eGh<^CVduPOnwKo=qB=!@Gb7he+4(taDi%ne{#z2y9VbygzV;|D zB%AVw&qLCg9|Dv^Jl>1`S--^8xUBiwfGWzf9jR>)wYN)0Ly*EvcaG1*6x211U;sb{AD$^cl)*^6|zQpT2mBlI&EYNj(znC z!3@m#?!Y5CG}?|Kk>*Oht>?Prh+L=k~up$J_+d%)6Cfq<@A z3z@hOLDf?6)*}8ZRii>eyzaUwGspC{G;>&l{^NoZ5KVjN7>criDnC0rfxc|2y4B!^LR(8pSB z8a4+AqNIWe)(+0rf}%C>bZ=#2M@}9to26hp32{{1TQZ0551u?7imBL>(%yXHP_LG+ zVFGH$qVr-^Dc37mM!Ma!Y=5ex>+;rlfO1MX-FL6={zc2(esnvLdgGcFnTvL@+o>w6!$LEuf_`i-kj+Hw7zh zEFH|VGEPdSY5G_P5QDHh&Ppa#1ZDi&EMhCYLTkA&`{-o zzv2&b{w(G(8xH#`0ly4yR{a7S$OIXGM&OwWV*FGszi5%Q=x+B0zyEhE?fFDXNu=C< zgOx6p$#$RKm%!Y}&aXzdsYef3dw}9PkZNPYjlzWX)|{V9rrEVD$gS;lN4r%P{WVEW z@EDinX{;jv*WRL;CoELdRoe|vT{VC^C(t6W*nxc-JQ4v9sb*;9SISuP1cgd1DMsVT ztgiX%R-8E6ByFN6Pg-4_oO@r}F_n{`o*B zZH3P|HI`wHhur6Bm<GPZbkmC2P+GkXeU%O!S#j#nj< z-3Zw(lbw|86pEJ=ifKS%>Vw$(X@Ga`sZK+T1X#?@p=zsLqWIXbtxkM2T6U_e;CF%( zNQ0M`V#fh#@Z5=M|0hwuwlMsw5bF;>MW>oSUk(d#eFJnH>NrafhZeK<=Caeb*(45Z zIxHgJd*i2)5|6)7OLJVzKMUt~^te6coS$7B)$Fzj-u?o_mnP%}CW_#Il1g5rL@?`s z=fVJ-$2KY3gwhBsq@Cg3rC^GUwu)y(`_Ead$Yp&~mlbs#j0I5)a^aZ2^0os95?P*4 z#l!Q(0|%1$P)mdtiU=zpMa4G)zU5~x*wt1A1(T6@R4rKt4ivPitYwaw-xwbfn!iEz z6lF{`t&|E?jK})}*zm^6K${o=XoZ((!SGMS%ZD#K@x*Gk3rm}}J@CKLsRs^t`QNzw zBJKb!8!ATIYUM0^E2THKf9>SUo4Eg*gZS{eX6NN)x8+%hMM3qjR?qu+mb zZ@6ZAs+g6Q7{K(Tt0(s65500ICgh?g#3ULEx5o{RqNb(l3e)}Y_F zE*JXbJ<=@f7IrLads{GfO%d*#wt`M2IL4deMaq>ZMbg}G(CZBb7P&6el^?8LavEH> z`WEuJb>oq*Z}zs_y+m4%ys%p}a=KBBtw_vJ%dGF)jxC!0*FZVmJeN2-&xi2+#>GNoN9?!~1& z7_9Hgp$!NQyL0D_`Jk91WOw!&oNWyT!jn#L}o@}A7FSciCH7pKe`C7UDk^4H>%UT0TcY5P~>*Nq#fkybr11J~%S z-Z+8bhj+cB6M+mzu5xc(8XVq(2HjQ!LaxF4Uy_ScLWaM+Qvi&IO7w-jdh)m*%LGfz zd*7FwaE@jk%=FQ1#%4+w-{6ab!RYQnSrxdiTb|lpbdJz5PrK;R1}Qm-46pWlKJcx< zK$%pV>h+eZn_t2k zdD@V^itjQY(9EMU`fCj#jq$4}m;u})Gl&9Vj^ZAvDg}?i?<4#{kmEB!?1nr-y^!JO zXePOzvx2dZsL=fKiY$bJF5*!(7|aGj6do!R4()s!Q6~glgp~6i3*#%Hz*K&w(ttE{ zcdWQ_xW{+lUqKSgM9#WKmKVoq>p!?S6gR>BLBw^KU_?zmL^IrfFo~QWrNJ})TyY8; zSmRW9id%s`iRI$vWBFiSGn_|a1Pib@f(2k<(YizYuT>P0S(8I=4KWgnOjcq-3UR)W zZyO4LyZ7X6D^Ft0J*~Cf#yk)NhNfuE_PEIblH#E*iyj;|`QTc|?9g`a!L4@L@V|M6 zw))IdZ@g@Mr04VI{3{TXwX+fwnEAo7C&YVa1bBzS?~-~wNp-k}-gaLi6VF!XD*)7c zS&(C%(oj}3sI4^tDp(KzowrHqB1iF)?41L94({`g%0blaXkQgO7%7tkt#9rC4IY;c zx;_?|+lcOp80_gMWH8GSJ4w&i5eT_Wb;OevVF>d*A*4icfJ*bo9YLy?S|gYp-8L z9*^#aBrKG_m>`ND-J@lK#&*uv@x9jfLj+?LdrDCvm*Xr0@5Ydy=D1M}S z*vL#t@_rVxx?jL`$_Y`nE@B)@-aqhhHGZ3|hOTbxTNE%qprL?@=8! z)|&-TRxi_SV}Ib#Mf)O`%J6TF>z?>-N?QZ+iC+bEa#5j_LGVMPbqtnSu0kX-34Mpn zLqE;LgQ05>T1Dn1pz`-`ZQPoUGi)s8^TuCANp-IhiNIYVD1aw+!9EE=jAC0WFBuI; zw+umt%OO(38dlOSlfEk^|=aRR`lX;+K;unuz8?Wx};2`J}+%7tJ z!V|O&KhW)Vk#7_KY$IT^-|cRi-HA4+&tKU^N^T^c;WXCR-q0uJmgn%_`s(T`eoVG? zIR_ujJp!Msj`2Ncn^_0nWoMh-s#;YKlN0UAQ|`jr)Nsw=b+YvpXCVzg-3Cl|eY?xG zDlbi-6$8Ry(DOhW-m4D#6j{T4D3ls<0$OafF1ml)`Q7tA;=$5Lcpj7Y@tdAYPV%>% z65kl>uTSj31c|07Dn-D^(TLupvtE@Z{X1#1H5-;~6aW*nn|2fbAv;sm5>_HrMSW{H zKz1MAZLZhLQx^Zh4|20pUWPQUXde%?eUefSQf8?xP$f& z%wKz7@&gRem1{Em^6sLFLcg*1!>oOEfo-gLaDoIYJ+c~ntKl{utM^=6+^3Wue=tdA$s@gi5}d> zD_7tq_v_^s)w~!^#ASR`Xyx;*!jla9bh(b+c56vL{J<4K!TqLydy-PA7gR}OvBj9h zhb_BVh{fuaGo_UMz&Ng!(zo;j&<9Fs-_*T4xE5h|(Dl*asBbd3XXf#&Lu&7o4abDk zj*>y9C0L{E1U+C=7;G6>-q#Eg4u#*Nfe@&-Sa=W&lx(52P%nSH@V(3fU&M6H6knTp zM&jozKQFzba0c5ikxH&sFK4(O6g>(PCaWywyM!eRoKa?AXJ5 zOj-WC`oasKNnZpuhyPruqthQ@nZwSo8Qt>%)NB$JyK!yC?>65$t}F2P(Wv= zGL?Gexx(W>uJWP6&t^^(O?>*ldwXX1r$9YpK2nildG$=;`AXeDiNfLzSsr@zvh)m} zYsvI^GH&)Q*NO47fyWQfNX9s!(U_p4d^L&_-r)m8u2e=u@!RSBj%U;WtvwG-dr&?6 z)WqoF9bAVoPE&ha;}a}6sE5>aqDwRaV~tHs2Turp>?o*FurUF-ZpuX&oGX@O#$dCc zx4ur0(;>Pj`OJpo_HA_su}FOoATkn1Op^2SZxr43~ZpEjz#kNkrKg1e&n8pngqc9et#3J zhwJg+Pih43xN%Rjctro1)sBU!8(40B$4etjpp1iNNn*PI8A`+c=E&KB42ZU>O%zik zP*+$qV6OE0U3~vB0f5k4I-=(zu{;StAWy{bLrNd1)&>1Yv3XCUaqq+TENMyH5mu+2 zlcrDn8j$VHJ7LH!o{4o1#dK*fNzJY3=Tf98-B=(3AFdGTmJU}Ce{>-~?hz=V7ItH06dwb;KtG(>Q}$3T zgGe7nmoo)nQCrb?d_vSoRaHud%cl8RG68{X`^7BdkuB~O99KU4y;XzGI$j!BpN0Lm z?Xtw8q>DJa2s6|sw0K2#$MI=JRg)8fi^s!EzP?D%P^42z)#Y``V4}u2fM;V*Rd`st+rQ65aO#f z=lxg}PLKs2OuxSYu#)FQDJ+GRv9#uHJ5V`XT=P=6(qFYU08+g!g#(y4M_5aXcea97 z(6rw)N$Di5fLpapB9ftJDWvknUPId;YWu1iBUqxc7zsv&iEgI~@mOXdo5mx2XQ@)$ z2VV?^v(eL{vuO_&BD^F}7QVE7^9eY3IlYqu zImx7FA73^1+>G+_0C-)u(6Kc^e5<~jmTJQIOI)21Jm^dzOx0EG21QaOJ~A=tglG_V zv*&iOqx9eIC&RCjXPBhy8GL?8L?5$;TYGR6+{VxKfW*9mqxMxex@zb0GBkTC9*M;T zbr*&PJGW?ZJL#I}%du#8JR~rK|9OHP~$IDvg#g7KTEt8QA|p7ted&x>SfoCe_`Z{ z5IjWKCV;!cz%<~%CGTQOK~!b~U7Vi2ar#+oq!W{ArzJHo&5J$!gHBujH@28cJM5_b z>S#Oy9c2e48)6P><&pi~fFdos&;SN~o9IMp+@p0>A$`?9uA`%<}vaoN3eHN(>Ek7K_#M`LW>(}(sP zS>@5_V<`=|>#XfQws?2wnU`p%xwPBZa>m`m{ZS0K>pP4y{;w?$?^3{31+z*P0U zj_dpfCj1zS;H|zI9ps^DU%Kd{l(hZmqtW^VjRhRfjR*JT8#Y-dRkzhHleHf_&uHv5 zJi~Qezo}j?XDq(LsS+rISnVpFVOQ7dC+kzGuz>YJthS9-&{_7Y@(FjRd4C?^w|67` z+8*If7Dlm`ueN`BSAnkDKmWk91a!4tdSr6ZbW9i3acvTbzB^4Gy=S-@&P$)Ri)QmE zz8n$xM?7?DJ2V_O(tdr=b>E#J7HIvRXN=G7Q-%(VzIF`>ZXQjgjx0o*&B)c{cW3C} z!O-+_p|Ctb4~+BXs~qPey7o27zdt5#A0vHkOs1o+U-;Lz$DZw7%^v$ao~Ar)Gj62` z;#KTJJ_% zO(kv){e{HD5>)TS{2leTTkS;xwbpb2%N*qLw#L?w57c))e+-+=e?G|kV&b!EL>3aU zP&mkERJmFd^Pk?^Cyq5Thn!kKuM9DtPq=vx#gY-Ce@0UU z2wV!nps8&o5d`g^HrfQNpoM<7n4db4n>sO7XzB?qo;{hJI+=}Y@iZEKrN5Zc<4X8X zBNBS66oa3*-$H?)1Rx4hFn}y{dFdzam1PnArP4^hof*aV4oECv8dE|Lv>Qrd3D9YY z=-YUF7PVp<^){`3GnZn7s3gVNm@<4>MW(7K8ym>hr}3Q-<02Qz#5e4+W?9yoX>UmUVjUAf@bWaws3jq8NWxdtcvWA|Y%{^Q#oUr+5?9uUVLI2o+FK5ul zm^VdHTdPh%6B-ABWbJ6NT!JJM_*udBVGs{M)KOpH`zU63QPt5iTa*;*ejU7&ODp zT{w7;!Up*sVZ*c64Y)ag=ns*5?%MYV5r-g>hhR+!Pccmbo9M1MQ5-drOjt8YWy}Y1 ziUg5}kFu_#`-bN;zkVw(L_QMcfBa#N3$UChTV^g16QVapkzZh|Gd!p2=M^a{kjtT03LEZBj^pQ5%J8qI4 z#WH~L!C^*+pztWGfcxyGOm;V%Dl;&A#)x{r|0XZs!evq}O^kd=wzQv-qdTq&Bdgs^I=VZoX%#3Iu-N*w$H zaXTy6qn)7D-Jv_ZFIw9Z(MRl<^s*X#WQFOV0 z%oBD=)u*@@(;ZkK{67D5G3ugJtkw=-+)yDcyvs33CKmJZC`?9V!wkA(Zfer z4<$5~k*oa|Ua(LX)gF8h$-}jQZ^FjTkZ7z$*deKs!m)th>27s2Mn^_NE05{|G~9zK zl%69wl3E+yzz!1t=qm>L1HZt1fEAb=ACf}c0G|0j{DAs3iAF_!l$LTFevMUY$F=62 zAI^XEPCgUo@03#!HJJQth~q-{Tn>f9Y&y+`!=cOPY@60@q<^n#s>iDucjuk?`8&gj z41edXQ3+MOe9`KCb9DcWZr?OmC~&J`JC$zZusiqxzbd$cC-QYP=tH``s+yLiDCt`5 zgEX-7N9l_+7!3dYHfBx*Ds`k(Gb@>@qR!5$^zbDwA9nwTwsCT*UJ1B1#P>b5jEWRB zp-ugHgOmgGLsByUMAHzUCi?i{*z&Eh#n{`E)5`EqGp&UuE*avpnc*h`1N(vL+WS7N z8>wHIR*dg2#um|InbzZrXJb>(X3$Ru4C~Hl?7sIck8&b5N#B?y_}NW^!XlG(FIItk zQ+IoeEjv48dmYIF1cC%&OTzkV98*7}m4*i<*WqtEx_l0d1q4sv0DJ%2-BaY8H1(;$i zqY^Z?HbHqJXwO0X0PHjc;GVG5z`k1PAiMKY$1+>@)Csg#xs@mDR8S5^2Ao`+lO>$Ywfy8Y$*?)&ok`in^&c=Y7; z3~*0bgjhr5;3t%6*uC3*sXtm(iq6r{40YNiIIi&?qX^Sk6TtQ^BIqW#QsQ0Z7U!gy>Z~@K!U`Evsv;t!>yfl4$_6 z&av~Drf2%PoSS7ADCHdpK z82dASomfW#nLpQ_N#N0+*syKWeCg7qmwI@{vgVFX>`%~&XEQVs*u6%1bX^NUOKsSV zhtG)aMgt4NqZMJWQ%710DGj$7#vL0Y3Xru~NL#f+CXc5Yr97J}WT$^4uufasqBXGM zwC<#0XOuXeAUTPPOFXNxnk-Rbk)Jwy7SMLGKA8tYb46|-KFJ7j*$rKI%enhbbrS$RoTTIjHbiRFt3m#^} zfinRr`CX8w#)T3JaP2Z;h&rdgxSME?o1%C z9N>bS0bk=eFF!P*?}YERUHK`GausPfG*z9D?Fa!u+P+ybzh)`DfgT^=(N({#(}BI+ z{cr`Ym(mC2U}LV-9{%2Qd-23N>mRFRwugwoQ58{*=zNWJNUZ~iF#>ckvRY7V1l^9r zYLo+#PO2%ewANhAru>~l3xe=4&+!+}W`^%$dY|r8vco?{$O?;MLKNTer0_8EA20*9 zV%u+-Ifzy=sQ}+UbVy^x$3*r}AkaLUMZa>X+s{@^_(DSb(I*!~w&6c&`b*W4U8>IH zTtDV-(ANm&Y8sD(DydDi4R@6W*C=hQ$Y4lA&MVfa)pjMN;?aL_UJc!0MPkyrb$ljz zJUad6w7w$oYf$HLElxhJEFFB_<{}Xet10WIvuDS+lsyMK)0b$pWrJY6gL!0kdcDpT zfUF@Opzq+$WjQ(9kY6cbjZh;M?tL`08Z&jUh9gIfq#h#c0eljiD8M(V%}i! zTPe3mjVjhSiYUySOE`3QgRIEHNPc3Fn)H!jYk=xEyAWP4SQvj+1JX~n~Me=R?^RxkYGB-CBTKES(`i9#K zenK5*?)ek49vH_y$r7zaSavo&@kq|0JgPcdpRhkr#ujZuqpO{)K`Ij(4FmmO!~3$U zrRjqQr^~HiK@1!yoqNR>oRXD%UXwHI(Z{UUbo|o?BSKEf&q~)#nF9JmcIDvh2j@x& zsdRujcO|Ce=kkhN_ywzTa5_F+{RmjJAqz zavs$cl20;^SQ2dlJ%Pr9!m{yrKocO|Ls70S2@!EVr*b?((UAYT`=dz>tJFC~gI$d2 zbJp=`JjiF>tfw7-UH{LBVqQ)q7OcepLR?Hp;7h$ntlzB7CEK}~I{qVw*E3RpFE2%kXvHrSd|kDTy;om^~IjOcifQf#?{^K-9RFbS;-KzU?^wtim1 zRBFkE>H3O``~A)Z3pNRJ^CBMVc~1?>Fv*AZ1+j7GCgYK{(grO@~t#Jb#s_So_Hr4n4&gp{xM+*4rYirmbw>HhgS*c+4p$B#P-PHR( z-m%_%MgiR)M!HqI)Xzk%o;ThV@F=0;=RvS&6Rw;=2gpS#{Ox5*$EtK()WL9-sSP5< zjw2qo_?37t_??qj!D0hn!ZShI4~_x#XpjScW_6(8Eg+@F35LjeTz4F!jY`wN)62z? zd*Jxj{}Ibh#`9F!cbHh>piVU>Z3@q%xQmY#2C#-H8rajR;9^wg zMN0DLv4NpCvw|FTS^L|2WId{@m8}1Uah(qEhk1O&6sye!+hCi>w}m!`FLev1jaG(W z7hmr9#(9C%e-_C%m_)Hnq68H3rL8N&^%n|-t_t5n_HgTx-LYN$Py2BSd#bpXwOJw` zGPfEeS?@3+yDki?9z`{%pMWQ*d8nNV9OgCemKDSD+ z>)c&yZ1K2&yrin80bmv`AsQi!Aj)H!Sv(H@rkpy?$a*4j_idZq*M$Se9a`Q%Xge|& zos(>P70aR-dq9szwZPM+`Ez14%s=4Jas#35F?`~~%7Ebbxi;z3B>sVBVv{^n*WgJ~ z&}8_Jn3~{HCq_!C=^%?yV6UYb&DF}sHvl@}uL?IpvN%2fV7;ccc$66A!ZeK`> z`fvB~k5DLF5@29Nvs@se1p_^vE!bky;1o z3>&y;UrZ*2EAC{YI8_e3_8E)0Dv^p|1U8P58za<8r^1ARX93b!Ae2c)51WSytA6f^ zYl0?HY0_LLWk!@+8@D3ga5I%~3rSqz{Hw!N+N`^l{$AYcC4!CWL$xv#iD|VBsJw<} z*hN;W1(jkO_nxCjg+@_LE*;OwpH|enBYcp{1rBv$=yk*1n{&BjyPdSBhC{484|T+; zBro3`WrcUa`B;5kF5FW{Mj}Z&H~g0o*3!7`nSHf>3<_+7lKUWH?ls9qB7SXB9=oETqx*$Jp>RM!miJ6@yOpEBhRgH_I#XvKzAgX zG~=d97VwNRONXhpqc5~*ojkI00=t&w7AY#Alt+s;XiJY<_J$33<;!DsmSx9ZxN>6V z-<bV{O zfe}9$GM51QBfgF{(p2D+H^$nksR0(IR&JxMp-GigM>W-sqo)dC1aLo)UY~sfxo3(( z?%EsPfJd*Q^ehiQT`WUrZ+97P<7%h;Jj~@vrQGfe21ad-QM*Xlj%|Gyc4>-A(I``+ z!?giyui23tcU&emu;q>d?FnJKdz zyD)c)x)5X-LEGZ3uYOWO*BbGzPXb+iv_tu=?UUce-h5`)uFhl69Qm`W*dFI0-YH>_6(^%zPO#ABnnruw z+B|*QxV`@1M&`a#_N5G3w&quEzWw#XuVwE0$+ZW1nbAJ%)1-m}WI80bd8kl{9iR;w zlQ>F9;XdoSsZe5I&H?HpNQH=F*>m%%Cs7C_4DgG~y0G0u$-5OZDG(uE< zTfBT&!u*V{2Yq?B>k%wxihJa}WI`LRec8Y5qGI5U8}{-`5n!yksV#MGTt}S|D_-Zg;L4 z@$~779eBIbzew)gU!(64%=;B!?6mSp+q8z zfG$Hmz>`Y5ZQ_5QO14|CUp{@I7<-Bh^PIAjie*EIhP+%jtf*25Ut4(#K2-@gIOm(_ zE7(6)eb)p2djjg0Lgs~0TVlzvR>p^j?qsOY9q?9sCk{n-vZ-es}&H%i{*$8Q+`slt>V6ULHA+ZOR_6&Q681t2vSmYUB6u z5MDt07E|CYtiT150}#xUR7g}{7vXtJ&GW?w*Rif+FA-@)*=%llzY<%y><^`d=}1gc zJdeEkn3#MgC#}?)A^uS+xhTt>)eF`h@}v6wkMTIjPz1E7UxR)gDv?^HP9!gsNT?EP zQiG^}sy*q(4tfSLfu$-FWS9Ls=P%6!q%a=|{ASQU{BIWOmgc3XE)PFRjIyT?!*FLp zB9rw8nKOj|&;1vU5Bw4nxnVGv391pYeLf&K$m2Dp6ks=1NoR(efOU}*83jZs@`#Wo zEh*>NM`(}~pAh*@G$aHT#e}He$%z!i75m6t3k*d;N^q}{LzVTgAcQaa7Z{mCH<0$N z!N4M$`R@Ahf55tn&hKR2#o`&&264ckq549ws1-@!KmyX!kA*XW9{&xte7KZK2st)3 z93o$0_~(g!AKi3oSzCS(^`#QF$Nm`>VM~Y0>~oPwMNrfYd*Mt;w;vqahyMY~fmVL0 zlD&9ZjnIh-!CJYkI5f}@5E=$T$w0mU|Eq%Vt31aiLcuKYEUtTaoT^HtTm~- z%qB&-h?}+L@4I_AULZ)&^8dBr&#hKRHHXcOY*GqQXlg zkFRVrp{!-Q)xhSSQk0h{Kxd=gHbM^4AW6Q0DA9JaL`$i++AU)obfuwnIl`w|DHe=J zxC|GGYnkQYx_l`6GkQEKFGp8q#iCrPM?^dDQcsRx$10>rtn@Ajx+*_sZiE6#fDP1G zcp1K&IWmjPspO&Te~RnUviR0HF;cI{MbVbnSA0E-4TL!+#rgvf9jR36WKAhDl4poi z*j1ddH0{YNx{+pVjw4%Pzp(5)67Detsx+McV7b5QyehOPSVy%)^g3R&I`~!+z&fjk z|D&};0M(hiU~>eZH)u$!yIcXESrF-J_3?LIXyJiP*Bbu+;6ZMaKE6*LO!BfH9)|0b z32tI9u1fmay}lpzJ&WmfqXEEV(Y*gC?yQU_owoM_#`A&UgcG!A8eNI(|1{vtvPM$} zJ#SH~sG*g|F$nmOOy@KX0n<;o;zdOaD=<4KVUYwQ!|}SvTkvY};ugHwg{J}e1O{|6 z3=^!Fmmwi#B`k_@3D3K13IZ6i>*QP-*i2#>Qd~%q#e^WB4h_ot2v1&GG~Vtd`sVQK zLQ;SLYW&bEx&$VI5UJl(xA3QuB!~ELrCr6xef+4lD`6hfAmL*=k8U_|{fB(M;>e<> zF_Mb6M$4$Ez-|y&P2?jnFC*19++5j+hVM(H6WQu~m5)WkPY5wbp%Dewmzmj@qC%_% z;7=6Ysukl;3vw*%#^!E1xhO|>&LGZ&PHJedcm_%Agt8iKc9CSy5n(GU$kgLh>)J8l ziEuQ=V+ymF()+?u@8n`_Xspza>m76W!Ej6#PV=!AkSPd2aw{e{IS76q>9b{D%Xf@a z(;(4!ELnRqj>5M2sJL`nRYnCaA(I}Wxk4qwiI*A$4r)yYVSmFso6n_>9=Ekz{_IZ` z^!eNFJ3FrxN{8-$^ZkdQ{Bscuv=I@%c3V$D&=R)9ZJgnt-D?NEwgCdAdiDpqqzI_ztWl1f9a! zB-fL0c4W*(!({_j)sbcD^44JZ62a>3rIH-g;6brTNrF$EV zdzWkn?ZdX=w7I-PolD<$NsbhcB@a0%5T6D!EtoYe7Egc#cgPK@Yd0Wn4RUOEWcU~w zgshZdWpyKWYpz;5l~aHA?AgWZ!ui?RyjlrA#aGqb?ELWiG<4^m=*u67kMIFiL@Sq~ zQ@7x6eGK-G)@P5*YRROAUoOE(B)SMcuUN^jG|s7@bjQdJ#!-?vH>R9YqfzpW8rjo@ z4v*#R;Q~+Z*n8i>%b1CONIfb9lhWf~eD2Ir=TSxs@Dc8&aAmd{z8oqlSiKBCX5E*_ zI000D$3?J%AdQ%L%1R2Njj#5+g%HE>*gr{Xz*x0awJugd#bcB&34bXjjWDWu*xrH~ z@PJ9Ogh!~>rbBeRoPsTd;8iP@Am3mxNXOiw3izJ^dT6XdqBR?j)MdYas>PxdlgyoEBmQDH@d=J9%Wku`Z&9Ym>FFVZQ+qp1HP*(blsD-K{;$HE)~L z4z4-qCs(%>NjX%@uMmKW-Hc(VT8Q5zl?(T1dks#3Go1VK_n3w>*@HMjqGh$_lBcB4 zSfL_J1gIV@RA#B02PNBGH?IL6RS%h#N6W9Rfpu>7{x0aB&M<-CT)@vU*@9o-xFGjj zz>j=$m5;j`pXgL%lH8AKfLjjojOu3(Ykn@c9^m|M4GE6#@JEtnV9#zkiX|VAabfN@*BZomW*bh88~hLJl(!xCP}@?F zsgPii;a8E_2i7KM(+x-7SkPPjzGn~V_i)>B+%iR3PXf?^K`bu1IIgxmm2SOvJ?ILc zlN6^VX zEl9dD(FHmkM|pIFkzNO4494;pqhasEyWCY#yo3kmUK*lrdD{{kf0iKjxpDK? z6uLqjMsu*Ms0U;b{?c9&4vyLe|JA{6XcOy#&STiWB=w$1gcKMWiED`A6>X{=pfTyQ($_=^qYsB{XXJlq#9hj4_ge3Cx~tu> z?KLRROPgG=J)M=Vv0%HmOKih7SrITAO_n15k{4prffZ<2$cj$e(Tfhn28)2 z+{eCvZ7q&O-ujRmJCQI*R(ov$LBO--;wgH+vR!R%i~-@HgI#jghDs z;H8^{G`HMIKai0hdu9%Qhm+XfIGq+qOfDNecKWmzOTdrkA%o;FC~bBG$q0y1?!GVW zU!%N1jjYT#i6f}f`^~6GYi`venJGQK0iEn42`BI9Ryl#fBs@5g@AqvZKoFGjx-@X> zXQ}8C73sI-Sv`QQKV`h`xK7rED^8UuU-ea!H$pE7?U%?OCD0A}e(1C)REbBHF0DTZ zr4VVgZz_Me-`^*RqZkLeUYXpvS_vDelWUbmv(=kir`#$O21F0MGFtacf#u>9b#Sye zl8Z8S)7o0k)rSz+xs27Kuh(qtT=|3#28Dt9`N2?srJ=B}gxXOS3z!@Ax3Q)(>4MErYO9R34cPurvs zb(8IONaPcFB5P{S-s-p(nlsmf_e0dR(*}eIRXx20_NZCRGn|9XHMk@+2ClkqVx9!{ zHz0d*)9TU#La6v#vmm4ez z#W@DhBg7ZM+E^u_zDkY2u;EV?XTOEyb7*gjq!^V;a>=Hm984;0C3!FrQaCjLJ~Jb$ z5hM*wDWFI!&-Bcg7QJYS{#Ya&6ZzypC7DU9di>*Zj|9G>emrualxCC8Pbgi!5Q&=? zB1$y;&_jAyh`ja4!e`;Plg`OfPV^$-eJ21?%^F`1WiY@fXesUROWV5Wq4Ln0{5F@ zREynZ#=?=9|4Hka*_aSM5AoUQOcJDr-AUEYgo2p>dXmS2iNu0TC>*(f9tubOOqtwj z{KKY87b5y=BSKhz=prM;W#J82J_+gF*a=->&QI&{OA4G9Q7qMuP$0{MeJ*~<-{L+& zrFF)4hwr{^eWKZ>eZt{ZYcCS~BmkpP*`r9KT_m`7*T4o~TQjKtjJ+z_N0d+|*7rXX zoQf+`*kfucT)4sngJIk^W;BMw((^OWVTRw`wWrL^K4bAr7`xE{WtMc9ayo=N%rrwg z3?D2re%w>gg-AHW1Y=lkacgI{8UA-Hp4%7(OM_9Uj==KxGZG(5SM*@7>AwHj+q=Ly zc2;+S`tDO#?aI4h)m@TGy1L&v=X;&+JpRWue$ekcHey5*N7K?uIy@eugGTG_A0?ORF=|5* z^VL#@4HbKApe)L^B+hy+9v}%!8r2y~=3zxL45BJc7C=h)C?9xMg=Oy$Vz|?;$vwt+ z&xj}0e|RYF?L89om(l(|<+=CA?|)3U`^onE`>$C)R+m3ho6z4cjrI5WpIm?A0s1G< z&-rUFtBaqh4f^*#{S@Z6yHNU1xSwC=Dz4u9v3mR$T;y?v<9Mz}-5xO;oqLF}oCSK}k2}{k=!xQ)a_nve z84gAJZmIUank1b+-GAf$ZjvN-?VFB?ZO;%F zutSkvrdez~oNJpU>~F)|k9=4iSo*|8lK}$ACNmKXe4hVDI`Pr`byy>6Ld1XF9}#AQ zUfmmfAbg4?29e_HrqQf-YAS`e9kj|z?hS=wvCDS_w6~$_zeghi^-KvbPemVk{^)et zfG?owkQR=a%MGxlIuxmqQC=E=lQdaT+8m+jhjp3(qMMAqqSPE3E-9S2WAFI(0|5mn zo#TOSpUPWPMdRDr=PFZAJjneF%Yph=NO5Y4(lSk5w|SQMxz+Re1IpWyfsIx$+tto9 z2k9a+V4gD4(*wdsV)x>7)@Mmvk{RtMU>-sTXmx}xY#Q5`x+94-KR&nqKKm4mD6*+6 ztuOiZ1SzoRTRgF(-2L(FKRBPA8|H9)2F}+rH2)tqerkF&23=?;+@eN6eef`^FbCgm z&YC+>%m$RU63moNBs2?CDtemnz3d0D;m`cSFL=)`lvdT}u$P`wS4#_Lw}W5)a?n3* z}*JN#={4%_EOBz#g- z#0V!8;EbY3d{PjSyrdAq6$CD#`0x{+_#`1Az<9Ft2z*uMgw*wO&$|he6qL>>df7^z{OD_UV#XvD0r1APKZ0QiW70ls|cbA zA9_(#a4Cu^6^$OM|F>)j3fwIUaA2pz@muiJVMZfnF`Spt{JdXm4nToCE;!k6Ll&5@ zK*37ct`wvbbJqNcQYHuz3B*s+q6^V)9J-ke2A^9ugnvTM78+BS?>tX z^@2%DI-DG3+W)82)JY#6sw5V!*cd!8jJ^V^YzEeKiYE_?H*^|>C#3O+^#%=)rExHo z0pvn4L}Ulgo&4sR{PLn|^?R1JrPGj+mpnF|@X$?{%gsvVhvwaD+4Dwn8;&5Y?O!*m zENG4kJ* zIZ!;ZRJx7xW0=U^^wEXIJv8ArX4hx2u-%uVjp_7}R5?SI&MXFe*81$x>2l+P(BC!u zLT)zaUJC;hd)SRV0sGv_(g=`6r6y%1H^RiVcXFJK5r;hGTor&}hieW1?n<=UCDp0% znT4}gsSlU-L!Fj!gtuvlE}kY;vtP`&sf-jh+on0_=Td}+{gH=($dfsa zc=b?Zsr;ZClfLbQ{gJB{trO<=ZC%4{xL4u0x?nsWThQweu(W)^@E%G3SO@!x+8L0F4uN z<{0$?A|3$sHOM6i?A#JJiE)wUtP|~5FSX&jW-g@{8j*&cj7O4r zP1Aab=q9|6KCPW2N4B>&&kXa^doEkC+ft38pmy##=A~m`vGdyfOuD;>xrCW%q|<73 zXaF}(&8w|e{|Zh~`$G@Qt=BATch^F@veu%QIqXc(BTvve;WT-B*`$G+@}gmbXM*a5 z;NtWF7j{~Ld(o7b<_@bNmT+sHD~F3&D_4$&vw_G|)KI6A&pw`sy59Dy&f7bd5uY}6 zJpkAGLf(KLNma@Y#Io$QiX-Ya8&gM4TzrX`mET`Me>YR z^qo0kq>sg|jc~v(iLy++zvN^K){@!&7n9X$qf#Le=7H@0nL_okEiHOfEqmt^WnJ{j zhM!R1vUjQh%gg%gWB8RumAPWBE6Hdy8MEU(aeR8Ir`XY2<;j7cr6R7?^|%%%&oCU( z4}I0;>Q}?E(BIweGAPon+tL43p?6)7!*1UZYje)s>M{+YSYp^W6P)Hej4`L>|6!Zd z;Et-xSN>ID8@*I^`{!k0rz?Eb?ITyo>6!}{H0sf5Tu&MExwuj>#A#|lMVAuGzjT}} zCUp#wmSCPJrIxE0>R{Ebcj?cEl%*4kK9VdR%WKu;RR2XHRKN4pq_ssoE-eh>bGISTdSi-4MHHkKVt|WTzSv~&hc}ZNp`0CbDwzBXWGg3`XzfzjXX2e!@ zsWo3En>DF<@BHzLvL)a4hU1I(EQ``iJ|h(uPcBs6316zt|59c~u1OgOPxS|+OR)h% zFd}e;n;Ag}tPDFyMoi^;v!ud58tqdG6E`ei|F1DTaZC90hd%U7euqZwXZ@Uw2KYS- zl+L`rW$hpkWT(?kdk1k7U0MgG0DH8f>Hx6FBdxa? zlJC}=!w5c1I_!AM5-geRW6(~8`R8MUdFL!atWvh2RZRv(jBJzAC;>dE2%8MkxXgCP zPlIwbHxrIerC?i0Ztszu%>h-Lo21JK>#@yo3#bb(Dw3>#>OMwhe}_1}SC>pG6QweV zsu9TyiFmzb-AFjBRof>wCZiJ*rDT_{DJ?tD&5deh0zI*Pl8ORhd)rAJ1T_^8S4m_* z<40f*1|?%uRvjePk~K+@C1pX~9jE#wx;Ogm^|a^8^I!IYr(39%CY30MdZ})rW&l7b0Ub9g* zYOKD7?OYFd+_g2Q=qgaPqx}#A<#txN9sSTeU4hgB!rj5jT&Tuu6|}x$+H(?%v&Pu7 z#c53MbKn9z==QD!vsRB-QdaKwh)-T;9+lm|?r+azFMm6Mm`-2_D zB64g5)s@CcLT7BUfWCjv7RoPk+}|SvoqhGyi{*=A-2Y5$A%MVd(YLXucO^cY zXt9-&{Xb23Q1q0*@~3LsSM^PwzetK|60VJI;ZssgemLpG68$S0dlSWKI;4QW2QivY z5nGujeo_$YGWkOPYCsjGFNontSp0${s$cmXa(n+j{+lrW}Dq{IISh+(6AwzdpJi0W=bKfAbflD}ku-z5bt7^zd@Y%o?gM z3{3^6Q$a~m{E_%v&>Qo6c`g`9hm^b$N+D$D#s0T86~EWVfA2pw%Zl&K#h_OVD1xZ@ z{aXsKCCmvDFN^0zi6&?c&L2-O{K6QXGA5EK4F%_jb$P|T*!O&X%W@ORggIxwqsKx4 zFB&$9j|F`70!lnSBu@59K2c_W%c24@2E|1Qz>(Pr33K6+%zN(ky!w`@H8i`_0~R_S z6FRFz_%hhZ1tSsogZ4mZq(5LFMIzt16=q*`zt<;uX~#%{B%ZT7Nfx}HbEM$d%bsAd z`L`$m48l7sW8c_1B-Qs%k)bzd6UQJryX!MT%VcMJe34CeQ- z0V+fqs$ViIXaS*^p^2!L4XWQ(gL$-l^xs5!RqHzzSwQ<5VUXzAU@%Kz(XV#9wHij% zkik58r7inm;UN2Y$pOruo+WDf9=l|S6thI_IyG++gRBAJKBoURL!Bs^xn z8B|`xWLf&&i%Kv^dO`2@HH197wu#P!P4Wb~4!@}9Bt^Q8?_b}+_xHTP+-x4+3wn3G z!4V&H)W-cB_=An6ZRM32mbOeQ2xHdBG6nH3(M($Anog)#XbhhJI(obm3wxznFyi(3 z{oX*0Gi#2Cx7|*vXxi-rQhLacMZXe>C}Jq;R}|y7n4T)Q=t)rhZW2WpY+a(MYlkMR z|1r{e{pr)m!_bGZ*)MrcpZ=Ez)9GL$cWLz#)kcA$ww+cvdA!!aNt$|fkaFm`F46rLMe?RKlb zl~DB^7`}VG-ZnLg)X>DQVI#d>BGK-3tt}d~FAZuZ@wAm9t$pKE{6-7|2SN)}IaHfP z2i{X=g|U~K%S`Da-QC?T`7Ap`M?=+C#e#FUj;7KJM_ZSaN-8>EO-4hP6f6Vt4VkA$ zbU~=J9f(r&S=1M_ha*hWh{U8I|vo$e>S+csaYK!C2*>k*l@M$P{k z8wSuEXISkQoCYa|6SdPYo?d~ztw~&AaFnlNpe=DmKd%nPcfa$=eD`_pjWGIa@g4j2`9c+<;MPT|7};W;LzM=eYjr6X9=_MDiU>-N0IHA|6h2eL*(ZlSBxg*gZZJ4~3U)|35#@ewf zF8_+V<7M0a)FU34k9J>fdq3GiZir`V8)u@cgSrD-jf2mDeuj#T@Kld!lWMOsR#?sT zCi4&OUfCQLS-;A7x~hAFm@#Z!>Gx_*Ep-apd$kr+b}i2UV*uM^Rw0_NYD{c(xC*hB zd1_?AjK@xAd$e`RH8$U)yV6eWs=Iw)o>Bmt)gHq^9@fS{42L+4ii1JIL=3Ac+Xl@h zO&Jree6y8^KKxHp7y92%MCUeBp8_5|-R`pwM-x9xU4YKpO#Qj#x+nTwX}`trd`LHI zqX~1@SRgh-W}{@X|?$HskiQ353Zp&SZ zeK?+T_K2oC^k7VDxJIKDtZt9$R!|v^>)m#{hY3U=08~J$zo6$iXJ}j3>^#0<8_w9S zBFe{3g>zO}~2Q609!`lNQ4^~T9C*A7^B z=&dKNJ+xJ44*sPrLma_JZm1hJ$l(JV3!U<+JQk|d~ zb`puDvrCyNpC1k@k?J^2NoFs>el;eyZqhh)SAS~-4f}etbA18@Zx@hIDyRNVi>Be7 zA0r{JhAD|CvF_EjL(jiG%oq^e=(GFB013FDXUB)a2{-7hyG>_2+(b8YH9c8FEVvq< zFy6mE-u`!7I> z{O5=%H_Z)_BNIpeH$#m^c;Up<)cS-8@G!PIjqQ8J){&Q|Lx6C{n5&JfdxzB_jDvKD z>%9qF!0I}PlX7UUVpjIp3^ttkYp|j&^jxPk%@ag68Z7!6L-dfZj__6FDiD*z>P8jR zh;2P5O@)?9N8m@#OGbDJ=kSYR6*vv}Dy<7vFRupzhMp)d<&PZc!f!sO2mOYYEG@ZW z!<}(FNAW3;)zL|7Akd;#m*{b~F+!I-O7&)^hD3sRkjm-e?o|Tv-*Lz*4+w@K-k@~$ zdI6u-hY5svm^Xs*n2G;Tf1H4V&uSSKjLo@O6c;45faIYF$pqpyJJ!`V3Snmh2l9%)1Os<^B5_!*qN~U41p>&^ z+x_PzQs=H0EO>md$496oqdreeUd32YW1TchrdFKime;wZEEf-PMBDVJeA2Ta=MrPNo*^Q0aT7I@*?e?5F{2lUriszjh;CWLc6>djppru=AlOp|; zh{k;YTAT@9sIOnDOsQgd0alZ%2rg8!l;G(jwUf%?iAx(oI%?!ftJzMg6)j<`3PEwET75oXjKMtTlnjV7om!Ru0dj-QEp( z{14dd!8~qa>%+Bj3Ra;RdbT}~#{*5B9^qG96v$F#0hHRk38v0QDC(j__Gc=s>O@=T zkgf`ixL!YyE_rl--wKgo)fw}TkwZ}{B+F9Qv{q&2%=A^7zCv?Qq9-D+%s;Bf)3bqDxQ^|BnbP!`nJy-%u*)7QC+EAP zx>FMN;x$^2>tKq+!Jh1lAuND;cryFX*xPhIu z9`3EK@yln6K-7;kA|-v8QDuol@cNPx40GNf#NauN6O)P}5Yd8*idw#a zYqSgD=`-gmykF)sf{@{5KVK1eRrHHdUZ`+BQA`U$nwNbXyd4!qzsl!WewIrHWzPei zhYpg#_(JuQ7l@`g6Z);(PgF8e%3cTjb1zFm?tNTim|_^&>Jk!+YZxP?17V(N?SzFu z==~1Ivnl`du}?h!w@+8*%f3j&_o!cuJd^aL!)rF}v#APq^i_>OBx1unHz+o17#>v5 z2u&G!%3=VYLxLn3Yn$3VR=F{4PrctwnI88>^QFa&@vQ+AEFQHQR~A1YPuq+pgJ3B;52=Xuj2@49diOqR zhjBh^46NV62x!6x7}$&J4&gWL`(I16tC3k)w1T>~tXL_8#JoYzzc10QM1bIcZz>Dq z+w%SXP3LLT9f~}0p8o#OSUW#qw$2QVwR3}U_WfI%vp1%}HD_-~%V6f-HcFCfEsoN2 zpqn7N5|%0j76{c~U7E$YO8e}o#WTxh@b2YSdwTxpG zk@fr5h2ur@n3bDDN-Ak@Yc_`$uv#AI=X?SviMo7U?kIlHQ^jV9AFX^@5(`?PX{VC8 zf5i#!$uyY1eGLPTRMKG>m88?Zrq`T*{oTRK>({Ifh6Yi{%N<0~*tP~gt&x{5UnbVl zY+&rWNQ=SHG<8}GfmVnq*>w-F8%;EtE}OD$E`gebCm8q}&8YTE8b~9P=ho7vipO7f ztej8I-#x!PzaG*nMm83Uy&c1;^?V*a*ebTBGP%2I>-Bu$cm1W~rKv<&5qy53ys8;k z`(T+CM98muY3&0u^LC7~u9^8GPr@hfpfwZndHvgoDfq6xEcktb;^GOj`LJR$#(S4& zxq~__fdCBI)ow5&ze#vjBcYHZ$l3{lmUDwVcYgWA^8Iyd`t-fi)A6}n!2ecj253Kp z35!3l{yLmbTCHELmG7)N)ejOgQ#m7ONRM-~Ge9VL4VFl-HZzs{%rWMSms~mI5$cal zQ@@8hmpq2SUatOc(lkF;YWd>s?l$Y|-EP;NV&31TdAab@$u}A}HDp(N!z_(?#Mh-~ zAa)*V9-{eqtV_X)QyfG|*S-KAYBwN?#k%!K5A<5B!-Ysn45fL2471!BmM`KoV}P2S z_k@|^nAU$OUQX+^PN$}qmh@U88cm?Hsio^MHNLJFvU6U}viiH0wNx^yw?z}M(sz2D zPKTlmJLkyD(0&FqxU3{~6I;OmCAOLqD;Zw#BNu1yZ%im711yj7 zleBxr5x7K)=rVf=6L!PK#%Zwns5fE8GZ4STdvjW*vv}g6Wa{Bnj#h3B24kvRcy^qV zJQKX+mttA3IlHm4vLX7u3YDjf2?j3{N-f-vtZR4={O0JFiGET zSyd$@3Y=htLOxyy`ed&>ttO`OVO6WaCa3qWlO7ABb#Sh%(*ao!;M$1hl_g;+AV^9o z;DaytT{brKQ6kMPpc+%QMnQ5l-r)qnDC(3(ofa`b4)AaMhZqKQ&)ovGpysBcM_Ktd znZk^uNdAC8WH`zDEl!X_ieC*Mx4IbWJ75#GX@{9sGNDL9AnxTQ!S9u#K~5IrKs1mD zhBpVX$~NvWPvgz&c)o6wnv_r)n#^MFkxVS)2IHv-99G7bznoDhFyl zF)#a;-olFW4Zwa|*3J^5VXHx(HB;l7?4~!0Wp)r4`Sj=K`(4>llrf zhgj!yfuS;G4rqkMaH6emw%WA(g4V>LY$;+yVXIBK=?{B@{%9eXP+L~dYSF^x&yAZ0 zw$-GD!}))V1_*=lwu%xj1bp3SqE=(EKCJ^6ogr^2&ruq?IRIF|EOWc6Rtb4g>n2<5 z>lDTa^dVaa8FH94h*h6IQ|(pH&`|Q~1Jj*tjj^gkMA^qN3HVd~=I6$l)R@Z``RS_s zB}@?9qr3_vEG4}hl|YJ%M9S9g4S8j_EE4DfWmbOx&eSGN)?9HyvKrk@4f^mwt>NHNY!cgzv7*a9mlOg9gxzr$bNGe6H(&|m}-B&$Q)f(BH zp6magkG!hdFqT1puZuq)BOygHFPM_FBz6Ag!rvTy)gu+WPRsu4Bd@A7j7B!A$Kzj# zkyCKhw4}<5(rLJC;J4l)TcCXvD7I3Qdi)u75}NZyP6ei24b9k>hKVeYo<=)dbMnj+ zFF>F7{4B`#t?cQY*{9)*W3fSHCDdIUY4Bj-HfOb1Fz+??B*L{$A8pb4Dboyde?TEy zdG^sM-;h2FsM;RT__c${qa+PUoIu=AeqI{?NOQNF6I*ZIgl4Q?`X~EnDNiCfil@Py zebiiGb=Ea98D3*U-ejlXS-jgQ7Z8h5keicgDEJ9ZJYLs65fip05Ml)cnaaKv+to;MgF#u%9#YK24UhSNr-MgM?M6L){A^fr*< zbBw}Y8xk&x98mrvn`D+#ujZ?@RPF~#i2vMlx{y(m{!EwAYz|oA3FU>Dj0uY+)NlHH zQ7zR{LQzB3WkrypA$efW?!YURp07cNl;lzcYaJng0q*k{Xl*npd_ng`MfxUb>sr4C zJxl(^+T6Sj8}Fvizj=udJln@IrQ0>D*RpCu9hKG+y2<_RfRYLKC!4Ky`=AC`T@R!J-u*Gb` zNbmzUQ+D2(Zj`DE@QA594DZNT1Qu6ht;u}Lwv8Ir$qhmSQ^~V4(yWwu^U1|*WuZn< zjD91Nk!rGB%)I94(*0|`+0X;43m5cSw{Yj31^6Xrms$&zt~8TP%QcFRRD>_JdRK~b zjoG`7G|w%Vwbr>JUR|VJ%KFuV^}jro0`-CvXaTdmK7vQU@0QhW(>iV3U<^Tu;@Qk{& zvO(D0OL$b5>zG#|mp&3P_*jfLBABolmNOuIIOQY1hQ&XGG;=Vjiy;Qu%@(J`f%9bql83xBm99NtRFn5S(e7( zsuKJ_U}YtsK5kto-El|h0%^y>mw2fv@t4A}fd7mv19`H1#viD4yZ2SO&Kb3)o^k8* z7(Y{mO@66aHHXJBqgl1hQ%nVJhG9N!5R-UPdPG!W)T%e1(2H|rYSmlKp8CV=&NVup zR#!DC9_6S#PcDY3G4I9fZC}dn)Yz;_jkga&Rdls2J8dJlI}NCzsrqD5PqEUr<+-As zU?jv8@$u~Co$MdBx55%_DqNIl(_Hj>_`#Qc29fE#^sKf`w&B&#f|{psJs^14uS#0Q zHeky3uW8rKrr2?aqiK?DEW$|IH7wW; zd6nYg!zoyc8-w~(=x_+rumw0SYDSZ-T%?{2YhlM`%9Cu?ES$=J2;~b>d}n1on-y$p z>2Y674o}TI(tCJyHHn|Q&Zc>4%l1^TvdDOg=8CNrfvlT`gkdd%);(dbpt#$Q$2r?h zd+d}d-q?4cBmTKw{V>f)BJc(j5WAH>><{~*Eu5d z_Vae*vBw(tt1T>O@VjjfvXuP{3Jm?Y5vCt&nq`07|M+SuiA{Sb?xkI88uPhEv4`rc zGOt08k`)_asNx<7uGg-?0Nvc%*&)3xSVIx)lIA&62MHY!#ACI0I{h7sK?<=!am{(r zaYlwS7q%$=dW6>WqNiJD$BJq7Fh?cR#xt#*f%Mo@Z0|Zwy0&!*bmz;DT7wzpzOM}Y z!dn$4;RRART-%|c7AUTkeZP-8O`x*d-LdcYUz{f3^jzy-+v|FUx#z52Sc0x_o)~O# zn!Zk8My-8uAB3VP!hw` zhMSYK+1))1MP%{vv(MVH`CIbY5!t}%*1$lBCL%r8K_S5Ecq_2tXJ9KZ>dVy_qo_`f zO_za~Ub+Ie{;TO@@Nr?S9E@?fN{EW4Ry&$2u9iz#Qcj0rCy&<3tHl-&9!i({Tee`N z2{g>z0u@v)Hzftda#L!UPzG^8Pe5PUxh!sI-^KvY7m@Zzn*s^bwbm{}Jb>tRz=iv2`60NW%YC3m!-&6pu1$$d{a4=H1zM&u+szsd?4D3@_)iA#Rq@_L!61{9fzH zSzD(67o~~jc@DXE!WXeR2trW|STFn4XmPb9CNGu#*R281my%*>wHQ_XE z#ReX|uZ-(7@@Sv{Xh9Zi1v+u06-7{zE-rMkzfGdITq1!lPzoew+jjO% z5fY@oyV<@rh}FZ|4H&P1{&^d<7mozk#~Y+5)4&aARn~?GnKX5bcmi=hY;cj(`77sT zk&}IX+1rW)z7|l`K&iLqiv>IIlZ-reXRCGR|4W*J;txmE_qH+^mPgJ8R8~u9s3U5i z#T=tmBr*&PpQ3CtH}jGV>$zEyfv|dPm}sdE>SSnjwX~-MfR(E_{7N>hV1Xa$ukg93qT%|&>qZgA`Xs4ZSx7Nz-DA78!4E0)fEV|cm~ zXCzC^;Nh$z$~1EmOUN} zsWCtmw4cOM0&xxdo7n5>V#KmF6nXfz!4Wo z>I90N$zM_n#w3c#Gx^aU7xfm6W)43{YSZJSlSkd8cE%a`oiKc{m?gFA`K8aD zGQduHa%;$i2K}eey7rBI{gBV6B=0A`7+p%~S_>_x_}gl=CrBPHjmAKmj~m{AP9z?%;docjkg!4qmQGBO@}#6|q^4{8C_Ld+zsLx) ziPKV1mCS$E`*->MMBbT*;yKUSqw4&RC9@dKm^Th5Gp*fj9YSdR?HWB~Oq5wg9v?aI zPpi^xB;J(d(g|YAjM${5Qu}DjYkGh8T0uq31)DgeO-k(>Sn%_A-p}@5P~QL>Q5$5| z-=oAygZVFl%w}lh)opk#$C(_v$w~lJHVjPQYE*#IvBiM2U{a^Y=yfdx---q9I!VY$ zM)?W%a_|67Yxw@SfZglCHk^gpaz?g#*0yU!aOa#bp4PAqEafN6?H4#6#+hNTN{zwP zor+_F!jUhbeYC>LmuS=`vd&SyK2;p=iMRn=Wty6-`-GDx1>fCojIU&O;2c`af}(tn zOcV_V>{9+Dc~T%(S7&1O$B06fI9vzSwPKvR^!+#jUI)g^i=C< z_obUK$oH&w&p!Dtd6BB>aJ92PGy778My@doHxRc>*UWuOCMZ@LWO1eLkO$+c5C+Ak zf`BqTx|F)78~mIH3THo}aU7%aVhp%AVLeR;6RfXK*M6=4LUw!-^nV*j{bP-@i9H#u zwJDgdvscsg9c5}x*hSC=%iQirJfis4o(+nw+%Pe&$t;EJlU-b=fQn6649v<3i@|Busa~4n zbQbjjS|G!mY{r0ixnz<}UQ+xS^&hGkzasIRs6>m`icv)*{c9Xn{*4*gYgr=}@<}2g zJnsv{6Xk2=L_FZ*d2$sEIM=M>Vq_|rnf3c;Gs&rlC`&$3QAD2vR|hhwN~#bJ7vL!~ zrTBdze@Ipo8J>K8vRtdxu3WM0^5{bnF=HMiDYmw@$fgFo_qH4xHh#{*>D>?4s6jYl z!h)zZv=-UyU;WXKdOeMFwz}Q!c^HekPq|_?5uZBZiGgOCqi0l5%4t@<;&g zoa`pql_0UVUF+`U=CF=i|HaGO=jIJ^r=6}z3&8GdZ(H4NgBFI%{o%FR%-^%@%rCVD zHC~5%V8FJs(KEy#R@8KSV9kPBK$j%x6<2RxEz$=J%)fnU>7Qeqa;@J%;0pW0$MOB! zmpbrCuiqi;obr-gZ{2{?L1EO*6SJKxU8hDlJbv0yrAMo{?+g@XesE8jStu&@UCi;j z1MS3P-|m-PO+?Xu+O}`_-SJ}aLmLRo>qKkc3d`N3d7Q+d`uC^ry&I80?q*NF;t>9x z$lyJE>c2Ru>$CeJI{A!?_K_A;>;!Iko-2m9xIW-vakRmyjnf-PlF1|N$>HbUkG1~7 z)Zh|)a{NslqT^_Ed~lAR?aytm8uLrh^|^=Ah!uE^?7|=Y?odALGngGBU*KaP>pi&S zxBLH8gTcQ|w1J-o>)vDJUWHkcMq=d=p+lo7BP;bmoC4|YV)6$IG)SnsdOV?i(XQLr zTPneaH2NJ+%e6p2O}vO{b*Y$h9>?~)v^{E7xASdz8t%n_RB?zPcq%NENY6@LMv@xn zcPHmrmfr8}stFb^0;K$B_#>`kXp#qwtdFwxh(8gnQA#LHZTLJ8fGc+r(UCb8@yx=R z>5hHlNMCAV?J25Gz>A`c6<1*QfP<*nWc8@3u%=6K&;lg{8q;BEUs)a-cZHeP%;+U};D&e3Ij|;)DqLY^UkMSY;PZEhrpgdihE(a>Zm&u5d%+xYTC1T$9F4t@K z+81KzLRhUMM=(OP2pe;?IXV;TVzYq03)~K?J8B|u?pz>I3Iqeeud+x=YPSxb?O!_^ zl9xzlNhY3TIe6!t!E!PPKV5ePj!Uz%K{dCtlT(Lu`~lFBLqFm;9R}JXhW*_%kc7sv ziT*0+_z_wXUs3#w7(a-pW64WfTjP{`{&6W5VA&Uem~{8nR!WFQa@}q&5*0>r037tS zI!5BesO_hq(S6Uh2T}Jatmha98iT!WfmEqVY@n`*0P(o&V}x)U4f-#6UMoq8@)8K@ z^=SF1?e2b25PXU}Gnb=q0L;`R{=xMz8 z*Kf8wjm#U&>OZn?-q4Bxlr%enIxd+j%Q#Qql(BDq1dO9=M?voJ-+r--TGa|ZjL(Dr z9S&x()ag5JOXG|5ZFig&=H4_r`=;NVebe0Bo18P+3p9Qw0KHqmoHDF_VbD5#=%c2Z z*J!oeIvynrvxJ7`LB!|+$I_`bcX!|Bf6pDVS3lKuh3>rfXWzrU_kUjEWzqi%S$S9q z$Ur-^I^VlL1-IPRA`ulD?$=jT1I_jEmvcz((AR?n|`-sO3>=e?e%7{AQ}e#QTvKeG^D zd;EXD_tSY7y~?g1{bl~;VZLrQ##12wJ3X)Q{EFuvcs}F#W7v^72Y;Pb)PrS{r9!|w zv=a$vX%Bm`pmo;S$FR06(eQR$OHi%GcQ8$^h=0=Wv8xclon1Hx=|^3?&Z4`~>ui6I zT|uMK=|wF6J5F_X&~&Rd5xCy6#4zc*BoLgAr8LDiRq%`O<1bDrik6Iv`EWcaD{{Fk zD^gGk^L%Mai%6maAf1AO;Oe{4s#>Q(Vw_6Cg?-p90nZ(6RAUHR6JGS=G z^PNml%~3C}n|0W%FaV-1(*wW)DH)|^sflGB$j4rPkGWZY^UUU^dCz8N^B${o&-X5t zZ)6 zaNb;V-J7hTU(wp_ZH=q%{oQ@^W+u?fiv2WLr5`udAAzZ^w{(4+@?8sy4~@|tWVq|G zk-PB|IM}oAdSwC+^v1-R#0c*?r$rF?R2&rNg@YR1cds;`zK`>huC6`^V)9Ym>YxG0!;gFz1V64BVFe7VUf7`*Gu#92QCx)gP zH0K6A!7B~3O0$Hju-Y|N%qm(X++*T%Qcw+sB5NGs2;m|@BKt*N^@R!?&vAlZ@bVE! zfDhy8U|@9IJRnDc@ZBr$Ab*{d|%;AI!O|PUEGrF0L)T^alf48@C)~GeJ z(`TkjYaix>6VsW+OeAaS=BjL6tkv#SE;h5x8rtS7Ctd#Ie+}){K(dI?(OBn(EgR@a zV2i^tt3FS|GLaaJ!Wi~CxlbB!GYOG zw&}UaQyJ{gCfRiM<88JB4`j@)Roz!R`}y!o_9nhP+`R{~`gi2xuqK?vJUtO~0$0Tz z^tw007!|QVnmIz#q1FkkZc7-&YAj;uJ$Zu|7-1$a5QCn9@hAl^=4r?+*|G{kNK#U_ zrxYn96s(K&)$DDp>H8D+96N1Tu_?hXdBeF7*4{CqmT~&nJ&F5gTBozC^^1@BTP?qk zfgVpvyg%UQCGE9oBdW-TAuCZM{n}qX8(PcW7M0EvPxwy1)^{$Ugm_7oMKRz@ob$c* zwC_amj2JzgT??I!-0t_^9!n;lPDUizD@GU=gJU=I4?BtlGDd;%jt zFcQS1umChYjE2ZIO`~bBxJqChF~SfFPG7=ISCfYKVm>BD5e^1ZDH&9CJsHldvM7z~smL&2>GEhr}bMx7a zWHu>9y!y|=?M}e=pNIRr3htrG(Lf~E$VPI@**UmNfM_iZ%}uph$1!c$wk=ji#;#h_ zEU5NDQ)J;Eb|$P$rz>c6ctRrADyjZ%szQ3*UN__=HE*cf?O*F!NT^2iWVM>?SXKuk z!+YH>Y~IdTdxEZcvlKVQkw}c56(rp;Q_#=}+(Xgq-(X3$GJ3%{nVuZxxu!(zcx6zn zGE-j6F85}O>vQK)Dc$||oypX1XLU0w)~4`DvNl=CY~s<<-XQN)1$C|Xz{+$~g0+17 zonNZ18m2z2#WMDbDC2=)MfhN}Pz|R^qY;_}BmbR)lTkt|B+L;|;p&JHTx=0zicCF} z>c2YmW{F?qt4Y6-csik~|LyFLthXoB2)P7{>r0-8Qsj42zb<(f6@RkIPpOH{Ww-#I zJa)aUT^d7|q!Hzy<3LZ@wbHftzzS41jU{6u*i3J$r-u7K{B%rts)tb9iBCWFShtke z4=_VEd-n@g%&`2^MP~BZeDr!E(WyrAvpK(SDuc)}Y#(DZX+TpR^Vnj8Oi+_TGid1R zHhFZ#qb39@{Xw)*JpF+9YnxqvSnXMya{2A?$_1hsD`5g-!p5Njd}zs>j~jj=dd@23Y@;NoX`6bjxz^O?6Spq~=Cl1j zun`71u`CcDCvpfq2nPut5y~PL_4!p^7=a{wBi=lRZbcN-3pm zkV>ubbAUhd3e>04ng{fxrp#^j{h57!tFhhy00000&wNJ(0FHh@Pe4Yp zo8O2%Y-2>_MMeQ)sJ|TKfJPS9F=8*hYjWqD3mLhtPxKrB0D$-O^410bfcf?8P5lSU zYs5Lr5%kwaD%eQp^50KVA)61$Xx004NLJ=}NLkM;XM@YlWfee07-Q6Vc-6e8p{ zib_UFWQIz}-lJq^Z<1BEWMuCxs}R}Ql?vHAeIJhBar`=tv)6UKUgvl|pXYhq*ZcZM z2><`TULiy@4k0oltId{$5LJk+3L!cJ8yiAQR%So81alu(F@*S{>}CiFE!pl666>>_ zAtaS!`$9;zCZ7!Qcp!JFNEcKNe!Vtk&$^{K9GCUc$x=N$0mfH@~FIp>FvOa5H0b2Vcy=FZRf z_1xAZJ@a8!a!qYVv?s=n`{k;70!j#upKDG0yoll+ow8^gr`SExL$7gVS*7~gc z&sAenLnr`S0XPe)Q4s!ubbX%Q&(8_r1sq?Xdm+3F%Tol0BKW)rmVJab}ggPZ)Ey<@O{YujGW!ztO{j&O{T$fTmT|d(C zEG=(oeJ$g@3_Z%yt1M3C%vL#EUdh4q>{S}RDo1(qQ+{#?6=+cb*4J=*tt}JtIv#Jx zMTSsOd__Fol%tZGmDH*XQ)RfdGgN8B=vr0&sx&59c*p@ z8Kmcf)E+FyU_BaaZ!n#Q&}N8QL-cHj^PxBmg?A`C!_3Gqd57UN9LC|EjS=vTyl-?F zDQ2V|jH1&h+Kn%|y-9;4P+>sbC@(&bC{Q1E3B)BHwJ_*Lja!;o7WWHZJ`$oNQ^xzxwFa^&k&ZdZ)>UyfZX=+V_YdT$Ks53)< zX3%V=n3-mMCf`|lKTF&!oM+Q$wqATI@3(ktL?85yH@O4`PRX*4)*o5TaU+j7&gGT!HjJ%KO5<^QN2y_ zZxXYK?`9Y`>&<3!vc=vOJb$3a5B#^%Xe;fu@!zKYHXOFYwcXhcbFc&N9r*2p`A58e z6!)XEpXl_HxLx9Q!N1F#?S^5uI=j`}i=&453_Stt+V|9(!;;?>u){( z8>Vw|o`dh4+ULcbhvU2&7vQ*n`#-Q<#PuRR7wK_{&n0?Yws)EDWjwCPdBxdPSg%^I z*}sOvb-LW(cLSaq`g{}joBDfG{#*Fna(zqxZi~BZX78wZhaPwI;;tNbar>9v|GK_s zM(&xT|M>p5Gem?8tUg;5A|f)ew(Mw#h-}Hug@`EkQR_lPbQU%=M8xoqDHkH*@`s4{ zj3FYSc8Ex{mspg|XJY(5iAcH|B9i;DIqYhPNGZU&vaO6y>eLY7H%mmCHA6EtGekU~ z{sWDf`2S^P%Rn$`(8T{Gc%tnK3 z^vI5TcD1t0@sxZ|*?UU;r}*cO6NgL=>pV_!rEgxl#ttRl!%h*z6?t#xk{OhbokTZ zEv-&zv8Bb8rF+@#j1J}0dPN^!h3i#(%MT0@6~t8N#o&HT&e!pLU4P%u=Qrf6s8&TY z_$JJ6;#CRfO7yA3zp{Llt$vF{RE41`>~C4$qW4?yzYRw<{?+8DrdBn1s>@qlU*7fe z`(1JGnvoiOYN%U7d=34rDZZu}HRXQK{(I`ylB*UTwJwH;+WKEx@9WT{4h`x?Gjm^8 zje4}MuV3}~)`$On@$c(%1M|~>HVyeUv^J8jk=1XQh!0`?hz=i_-Nvvq#;dVDf2EsWGug>`C;2+V*je4q@OGw67x}w5?+RyE zG2NVX!|79)KI8it{@ulPr{(9?&&^^F7<%Y)PaJ#l?FC;iHG9*iw|?}Nrw=Xr(5w%? zzUHg1+Wp|{r`{Ll=?gmar(1uu2gp58>_9aK(rBPL8zj$Q{)71sF%N#TL=160tvCStg{Bjg?d>j-@x>3k&Kqi8pp=A+$@_P1uV znq%CL(ep7djTJlAtbK{wmuiip>o|QGC&yP}#?y8@J^YS|m_Vlq@=uUwq8t;=z(lc= z%;zL=liW|bf3NOjev@(Z+a}^`*I!$|q0oJep|%gTx5B)Y-!@pc z@!O`x4%~LQ-a)e+?suB8oqTrs8~7v4KixOl?ZRi5_+6ewzf&T1o7X*Z?s2_Gji0SQ zJKO8;#a{aEgXtIA{^D8NkKcY89nixA)`NH*l=G1L!{+@kd`ILuBL5K@98voyZGWZp zulH9P9;53qvv$n&arzwBtK)o+)8mBL6LdIf|0Mh;?VmJ}r^txcS{-NhZ z^Lh!k%eY-O_gD1%D(=_xf4Kg)EJTJpY*UDg$j_QF*O3`nV>Xr@43SaRsIwt5 zdNOk!Q-XD5`$A+azgTNrMYc6W#;3DYA=2-b$b>l|GBKHnPrMr*Mf0K0ic0A^u6Vv);EeAu^ks*}5}l*`wJ& zCjP0mY#oCsM+Js^4ta9QnG@!maOK1=7cFuf4UxHNnp;e6K6&KHQ;6Z4NA9QjQE}<qe^tEOqa^%LSz-Zs+g;)_N(gOTk^au{%zQ*!Cj5^ z@6hWV@$bN1UCruvyqkmJSVQg_aMv^wHDP?u?7Sy`EwQ!u)yAPVZR%L-@T+US>dIG_ zZ#_Qsaep7i21VJ>5ZTZyHRRV&{YLg0;qieQAJFszT6`$>BYu8=L^gK+vAQ4gZ6Z$- z`ZuLPQ`b$+TQhOZFv6Y{XX{li0=b$U-y20 zMD`We*L^>{`{CTrZ1jWg3$b6w*Pr(Ntpi{ki0eT72gx%SmceolrqN(?KZIs}cSH`Q z)lm1t@EIoWaJ?Vlxf?+J2{-fwUO6(|qCq|peG498Bj>nq&FKIhYuCH(!uO|~= zoJhAx@J^C%GXJlged8JahIUhEG?g|}X+90c>EdV5dj>2s?ax$i77Vkjv(^7rt#A4I zWQ?36{~XWu9GZM*|2wt5lVdLY^Z3q_+ox#ce7F|C_q`cd=viBc|3X+6;jl=q#jq`= z;}ZKz%+ONxmf2fo=9ckWuFi6?E9|Y%+ZCRnm1c3J>y>6^70j#Yy&9i2W^;`mti^9F z4gEfdTxX`%$>ldf(eh%3`tj=M056g8J#v`;kD$h}x|LX6;ukMejdrZtR zoR7nE9FOCCPuM>}=aaCUa(xP?)AF8ne;W4FFrBt{M!qw6{ia91)9QD+{{i10aGs^{ zS-Jj%?JqO*ml;1N{+u44SL;0A3piiELPqGGc!d$D5U3Ne21nL<=T4kk}xM|LzsCFNl?n7ql=n7tHxDf2^AD!(-G z87i`6A?gA956JUB_MrR^t_x9q4@70G!iF-j57lO8Le#^7*?Xh_n;fDt!H@~&N7I@3 z$CBCj5S3ZZ%&S6F7I9hBdK|7NmEB(Uej(~9 z=TFI<1CAUsLsZWC%$lnN8yTWKh5&<&+qyfxcpv-dIrvC#XP$;L_G)3bJhZSQ2>^L)`ENro()mY;5 z>Sg#|)|*mYLsYuj=`f^U4N;}#FU_|MoMmt=Yu|5&sB&_Y!}}Hfui*PCzOU{KQRQh= zo_^)WGJX~0s?dnxR)ODZ>bxfAb^5&y*Xwe>p{H-C{ia!|n z#^)`$-_qx|`Ms_GZ`-TJuNpnx!Q~yC-f>;sd{*zp==Lt&@2XwH9MpuRre3{gCTsDp zrA}>n)i%4e<*O~Wjy~177^3RJSXbZc>Qg;6>e0BKxO#Zjm%lzu>f=yfzW4EdUyk?r zHqalxHKH2A(vWW>^&8342!;>Df5<)(+gMEFw#qUnQ49^bocNE`=hMmN9_WX2~vkTq3=w(+iUDfR-?o&BGh5a+wK9i%n zz3z1X+zj;aT=sC^gU&r+=?QO7@x5r>OYeHqp|_dt!@sY-_q`jU`ibd>#}{yX0YiWI z`Y0G0vb2jDQkj1J^KknbQp8bq7H>I{Z?h<*=+X{fkiW^OpY;W&?gXN2>S z`1pMhH44tr&PJ;-hW{8G#=;F@CIrih)2!&JDZ;W1s#>2S_4YcpV)Dd#ND)-3#I zJD*LrZ`mBW&%yaSI?vUUc`(g`e;#i0&CmjUTVUoEnA`8^^}Vx&W_=NUes@GIhHo*P zOX#~)o~3kHriaU%Eyr;=t}Af#nHuBx5#wNYkWHvU_YBL;L{LT0Q{vSLWTXEm&eyiARcx=aGyZasR@1Tv}7*RWM z{1K)f`TV5rPjc^)bC+7X)!*Z6j~@N3#$LSk+S?~?pX+^e-v__n7g77|?WfItdk4(u z0lhfjZ^uD@gAQ5`IX?v7VLpe|Is(HH9FEBAw?@=a>#w*SgZY@}^O*Y+c%RUlle9W% zrcT0f%GoL0PFqj&Iisg%a5_Wl-~7$|9j@P<|3TY7=zdm?vwHd`Zh!Lm%iRC1|9``L z&g`7S)o+ccb9#B6Zs+m8AnqUixG2{}`dp;NCH=c3|0Ovt>-l9mT#@???{L*HI=nRFJ+z(`B?*CVTssEt54=xMQ8SQ6m8=@alL(I~SsJs_QpGbgmo>?p*Tc5$`uabe^Lj`e`|zcK-C$5S`b4 z-bEogUq>cKet7d+pMmQc{?A&Uqr-E23WzH}qk^<4h;udWzGVL;9Ez)10>%9bXmB{O%Bno@P7q|S84Yue6PALub<`hsXXn)bh@cuIsF> z-qcgSp4|0lT%S($VSit)24=m1{xpEIA#ECpZ74@Wnl%#N2$m1v_`v;#X68dZ`v}&? z>Nlq0$MAm)e-m*{;AyJ2P3iwh7UsUWwK+{%IBx+{OV&!wR_`3YgY<2%c^)ig2+l)b80r}qO246cGEC0l=4ZHk zBh(z}*&9jkQFI-xucPr8?b#SZt1ufk@(_}VW-@-nJwsZAuE=}iI=ixk0 z-udQizMS**YXQ9$*k3@O?_v3#uHWm~_xu(*TS&7-W@-_i#quqNaWO5HsJ8@i*%r` z@Aa-X;IYB;yur+GkbfiXH|oJATsMo`Lenkwe}H={y|(K4Hnq3Gw$0z)?Qm|V{SN$h z;JrgXcJT3AA$q6tAKm+{5d9M@KhbU%eRp{-c3XGr{a)){nD?29eJ~tweUL5(_2`hC zhtxl$_lMy;OwS{9I!ec1&C{>)9niiA!->{y;>zo-s2itkq=bc@k_XV;4=)pyP z7wL5o-%HLf;d_}rSDandpR2UHrnlGVd`hWi^h-K617ntA6(-=gs?XSbc* zhVKrXcWLym{eR`VNBeu`^Bz9`!Rg%}{olb56AH1hAtoXVn-gLp^RSj|U5JUY7uAbh z3^CEw82=c)v00h@xDsrBh>1^T71_=ZlTanZBu2A=AttFPvzP4J?}3<9XQ`_~Oq!Z$ z@@J^cPK1~TJd68t zd<)1`0Oo>pE4VwvJP+UV=R(X2<3mg#R=5BYR~VimjhI|7HV!dGVJdny#1xaa7#)h~ zM==@{yBcDO)2BFICG3@SR`O_wd3k7v@tYu~l=yTU)8$B~N4opc@yuCid!_l6mZvlf zWoS|c&N8@`p-mY*DGPI1yvp(`d;ea&ayghjmFv#vU5+lV;Pnc;uc-YhZm+6U-d=gJ zjU^d#P>sU^AY@w`F%{ECh|0asfqqKm7^IhpXkdcG-z&C zn%i&TIc>qer5?1Tb1Ubq%uZ|b-`X?N2H!Stwxv}&INLdE4{Li`v=`q&d!EZWreDL<8;;X(Tt|o>A!Z~EN78tdnxpNF;WtLjvG|Xr;aI%CboQluU(#Y6 zeB)>|PMvY)`z!gs(gVLOV!o2+E4?32lL>k^!E-(Vzlrip6gvr?$*_Kn*VkhGo`{(O z+Y}t8nvtpQr{XwGjcMYhyPt06X2?C$b2SsLneJ!Na5n$hH2>D#xB5N@hB(df5y9Ab{;+NvMO#CwaTuzJSaIJ8@0+y9> ztfbc}Gqg${SJP*;Ua!V?4J>Qyt<~qXdbrM9t;2mCJnPNudU|i5(*`jh|rKWq+6b-S&6WayPB_;JrtVJ$!z4_A?xN)!b`uA5Q!D?Q`}EZGYjvpDz1p zxZmCZX9s9>khTZ;A2K_KVL9yY`Vo1Ln2Dp-qx^s6^Q--1xE`b1ae0o5J)!?6X>*F- zX+1ej<1={wX76|Pe>X#a;C)u_&eHO%x&Mp5J{)AhWV3$(mI zqkrW5M?Wu`nTz^($^Iq&m-$_$*%e%`;B^(At8iVT!FBpv_iWs7e-o!$aNL67HVn7b zzvDT+E6+Xr@6r6ftsyp4VRu7p#MBTQIWxpYrL&zOHo5}a9b#jKhS=C-R-dg4v2lw+ zY#?FM;hvjg6_l`oq$JKyZCpTaLk4%U(#46!*IGdXe3LK78}Tkl+0?14Hby>ODt~=foG_Uyu$3Xv5IYsAil*q7Az{*Ns#e~D%xwj^vX&u6fd z;!}!Gy1jH-m#)ZY>D?Y%M&7c{%Q`QoPC4iAWM_g!;X!+A}*yjO_H?Ylmx>@4NxL4dWRMjo@pf zhab@KLt1^L-bZjZR`X+iO=#N$wkGDJsr*gx^PY`uhU+KlH_)d@Q0AmLlci_`euRE#J3BFD+cZR7m-!3?G5#LozS8F#h z-QfHb_D|*e%0!8zOW^(`&ucs9S||DFB0a?PXL zJUY*ZXTCXF0N?kp_e*8FOYJWcx6Ha6-WB++ z#L@S1>`Jk#JSVH@y&C>CV%GQ@u-4y_wVs7_xUSdJ^?I>E+y>fiq~At!u*u#gahv7d z4F3;ew#vIz&28pto3rik?a%>G0t-@>uGXuKQ$-E`U`_a1Zo zGwwf|<)7)fS6}z?-3QA)`G4^@bica$;X6Pt@4VOpxE!RzL47=g$01k`i$82VLcb$; z9mW5s8s2-cztZqmn2wprW3=$@i#<+*6SOspCviH7$0>H&-eahqBF4j>tuE} z#KklVao(A6vEA9(5Er*9#KqTO&Jvs@tP638Sy@}QFT^Fu?Y$Y7bTz~!%avS|bqsMS z>ZXYC4IP)3hjk5c8SFjKE5!ZJ{r`4`xCd*qf$aYE%@CK-b;ffc?xBiIzK3^*xJTky z0oI7Y|A_jJ@W~`cCb%Ch5#k<;X0T-Dml==DVza=M1;@t=v8^HQ3ALU$5#oGL$7M}t zXF^=Iu^}#dex}Y-_H)RYL!O*`bHbVPVu;HnPcG-VX_i~wJn}z{dtMskQ#aqt5SJfk z-_3E)^76DnY_MLEt&qZ5)ZE4sJ*Y-4M&(C``&U-bkgWhz+qa&Y=t~<%!iC-su>ukR>zb@{(i0?{^ zuI8Z|9X@sbnYBBed#KeDzTRfJul;`F`q}>i@BXm$mv;c31H=zBV}tAul4r0PAFMw^ zoDHGJP`roo9ae$iJ{;c>@QyIIBWdRQGj5dLkJgLP=3@+v#;7~i`B?MzC0)khG)^DK z!Sa=P`bz%s>Wt?z9)}6Eo8w@RMX`n(z@-=cAA+I^rPeOG?ZRs}+`DPF$N3(8-Xo{?aNJ(G_QJJK>^>a!ss9T+znIbea_{&2 z@2AHBH4fN2D90gx8xGUuF#p5)d&GPmF;_=iAC>Q@nflfFuWBCCmt*RA562zXlN0Kk zaDP${Ptx-gUZEDP~DVauI|?F;dFriS>Z;e48} z@5}hSc;6I)hxj7w#kLIBqWp@nmkO{&A-=fl68MzBza(5GY4kG9Ul#N7(GXus zj#99dvY!rHI&A6km&U1#+GXS{OQ&+KUxD`(d|$=;)yW~ge7_K1fqoS(hWOXSy^iY} zYWdcTugIsO{BP3nOD?J$l}}aLyhZD`Oy<3i{TLX`pIMfvL9=}@pRLhLjf}xi4+Hlt%%k;aBTy^=^<5SOB zeL3pW{eAoz$kBja4Po;BjBkY72XK8L?nC<@$^8+{8_U<21|P%mF^xVpV@>32N{6QS zHp8bGuAew-PH*qh_~z!K1?(-%T}xWGl&6*cw8E*ix~EOI0?YukVJ2~rY);g=zg_d2}XY}nZ|L10-hu-$!(*y3F;(GDzB~Nerz0GqU_4~@% zSDf$B_q&-ih)8Arpf)ErOi@o+KoqbLJuU&sb>nXIGa(|V7DxYaEOqXZ6J@3T$8S>3APcyAE-On-)v()oGjGqnH zY&gE9_qX(zL%Z+H+*~#1x}Ha$`Et#t#R6Er_e_3|kMGd@asb`Tq#R zPi&VuyUo*XbGk?Wf2Px3`S+UTeX#yw?tj5yzkCPy9+dAOyocy?*bE*v3%)nwkJ9rf z4SuEFFn>4&hhgwED2H#8)KXx1+zL|A=uCPdr~36YIMLR3X|E+j;6Vpi|NgcxgV zFLpE}#I+0w@tN36b~Yp=lwpRD8{h13J;nbiJ~^y8c7}wU@aM!i z7Yx276LQyPCqhCVIr3P2PbTD5FE5{bw8*cHcVxmdI6qs0-CuEd&h>L@70ANqTF_c> zd`Ng6?&qDqK)*t86jHM=orl>1iqfhWU5dFbM&FmzFYdm04Mv9&8JM_| z?q7znl(SNJq`NL%jj350-ZJWzp%vh_?RxV=LVft_i+P`J z@2k;3y#}x}z@wr5H+0re?nXE_(x(q#{{V&$>GYA9k8o@(?qfbp#5RGkiP)wzYih3< zPR(%ogn#n_4DaSyBo3+KTF43PQa4w<8QnRrP*Jak_crS;`yE9>hnOY&wO59g^u2<4@ zRYzuTHNDq(#@6DyPVV(EtXF4)oEz+IgntuWo7CK_=4Kjiv2JniotdyzzqitMoBnS% zLp#Ln(5IdJesuk#)wg59PipMqyUSecw(h3E9(jLO?`L@S%CQgTeX#C>{}(;*y_m3{ zX8UQs-`|P@xE&CGQ2m4Y=esfCkQ#^d`LJFbrsokkkJ98<`@hosm|DkRJ?{KCuE)*y z34SN&byBZR;(8L^Q~KcDns7=Vd^aYXrtKN;kKge6jqmSj|4z$4tbe#aOTRzW`4gVM z@cxUI=jd@Bp9|*iAKLjoOt_?Pm(;(c$KIg{m({xr*A?}y*uSc`SIzJ>`L5C7x_md( zxQYKw+TVot7B07(-=fiNJZ{^+qvjo2-G%ioKL5h{FAVq8@co$ZpY^|kAu)7k7eiuX z$B-CZf-MV)G1b`4kQiHztqO^8h1i^s7+-_!3yBH6LZWwMVp5}!m>ka*g~XKl%vq|~ z)N>&*%~_iDflN%U|7{A18FR3H>}p7Ss5ayOu$&K%WG6zRcVprs@@C4y_&+)@BziX{ zJ|@>=XF_6TYnEgNbC#na@$qy9*Aw~K_>lOdoLTd*$ssYDy=?13VsFDB1R{EA02xQgGu-Wn21@bwLu zSdzW0W~mI!b-FcOtnbCdGBA~`!qhG2x*Y7U;Np8Ru{^)>E!pmnSYar`<2637(eHKq zUZ?XL^sY$jiZ?^zoA6d@8xkw)V`aI$0~4#zq$-W7s{dA2=KgKC-lm=J#KdYD8Lg{1 zuO{z1@V_I+JN&#O6RXpyx?I)ee^>2y^}mLCHTc(5rzYQ;aJ)yy_r%nKyO!Lw)v7ID z9r1OnbkfL*42W`L0atfm09hJ>~ByXHP!8=-*4;-eP;}UvK=qGZTGhCia1~uX*e1yf5AQ!P8I9 ze&*u~xW16Lzg+!kK0x0FSO=;x2&O^u57zU+atskSMEp>BhQd6|`7rto*Ms4>42N-q zJR@KmDSjjjqs_?}=VR0u>zVvg&2i@ZD>=u*H-SxbJqgaqI8WBouj%lO9(<$sQ)n<% z->1qsP5$X-WQM(&>UbX}&cb6ht!K;qt^UsuHwUNhV4JJ%TzKcXpRdk*`4;H!0{p($ z!-eWD(%(fmF1Eke94uCUiP$B4m(pyhy=6EobH7|)m;2kXLJjZ4#1;6hQZ#Ms%&A?`QZPC*$ zc>lm>E38{-y-k0&oA({K{wSaC$i!XFcFW;AGI0-$ex}i0xcAAm&n)~xzhCU{r}2Ju zd`l)Cl>4CP;1Dejt93-bj^cR~Uf+?4zw$q(r^j$SZYGY4J0b3*y;Jl)CH6GlXBvk@ z-;asEi}{0wXJPphu0Qen3(vo-f7AYN>p5rVC=3%CssZJz9}jAIs0w$gEyw^)nw0Nm(keMIq_&n<44R z63ptImXs|Mv!7kwr(8c}&5?)Ul~Zgk*mG?SNx735EZ%KNx$lOgJk{9zko0s`2E)_v z=N%Z5@~M*_pZqvHBk!~IL(+3um>dNfhopkEDtIv@JrCatRYH>YTTz7^D|Am%k1d#@$E4)^Q0zM;+=2SZXtIo@9XRT!Q&;`EaMgqNeLnA-fd+K(y_e)$FR78ks)h(Z42gH-V|CxoPUG8El`}|Ac1Eowab?VrEEcsgJGrw8o>2x^2X?g|D4nw8ymr z>>Xk0#K(79QWw4IDpxoDpX%YKd_RM&yS{%;uO77M*)JsZa^0JMZy5W?(U%r|iw6_zf^ae86QXIujKOml{B6P6ZBysJifh>CaFJJ&9CME zhVM7_zoFd}vo{6Ssp?M?GmVDR<@eo{G=qjS^?SCz1>dRv9qe<}m?vhwdGj7gT0oBl zbntzZ^t~Dj)m*6lLcWX4;v(8DR&z1Um&m)s>@5|u4EE*vvs|4Oc&$`>rFyGq@0%)V zwfw8i*Bbk4U|nP8*6Qs#_v`#!SttK``fV^X8|b!ColSUbw!a0AAJ|r$w!yj`&K>gY z6uVQ6A6@@w&VDj~Kf%6BzTJAYTg)Cgf2QHja_x1!&)*Q=Q%S$z@Qc3hhi|{0`Ho6D z0Q*6_4w=!z_#ZL-1}N~>e)AA{*QEGIm>CvZE-|0Eoz%+M)kr_J^mx}Cw{ zH~D^-_Yb)KbpDs#o>Tw48MwgrqP&+pAD7j;V)m}WbdB!~_-@GKnD-pqoMBtMve4GqZ|on;&tk{{yxkU9@% zVQM{+&W?uUOkG3rqw#ENNPesY+ZU2E7iI3Vh{-ZCBtI_4!me;zS;?uO*2mxW}1%ailj%V#ei9rAZ% zH$$?&>B-L)V)#9WZvp%Z$WxF;1$T$!=V|i1`xjt+VN*yh1b1QD6_%q2?l0zH;$GYt zl8fP147ZoW7RR@^wS+n)VSSm;%luzH7?MlLn+`|m0*r2DDli(BrEgi7%CT2reN`>r zD#_(nh2#q2Uz77Se*TsxzX8u1bgc+`MY-N||0e%R;wsUl63mt9P+83?e5$Bh74E9) zy#?3Xfzk18c&n*f&G|dsLvnRJs4n(hHEQTX4c9g8)#UdcF128&wKXKy=3580I`pfn zc3m9n+OJ2CdhpbDR$smPH1l1O{60<%^r4~ahH^DBD<8=Jfjl2tKeT=Xdt>n*)4U13 zO)E0<(99e(!}Sw>pWxqIju!H_fUPCpmS;k8E4f?a)LPBfd|T7FjhSfUyiG4g!!~B2 zEzR4CZ!2$GaqZ-6M~8MZ+0~HT9@qB#+vCzf-460~;M>77(257Ph28OY6jD_<{wSB)N zk8}1F?Y>fDyt4^%Ptc!H zgGMu5&!qcI_-5fX+Z@mK_u*T3<~W-p?|1b4&NDlg26Oq%qv-BU!pA9f> zyl-^cWZfiov%f)G^nQyO+G4hU;QNF9t!i&GU)!8*qt$lvxn0b5XFKifwEn2(PxAi+ z&#oNI^R(Nuu%~uN{@Lv8b+(t^KK=NGZofF&5A%Mx5AZ*L%RyQlg7pxs4$=59O%Buc zh#E(5K59Mc{#SGItG@@wXmAXk<1{)>`x7)f!SAGA`mRYnrS2&+aax|!`h5n!Gva@v z|L^v^pOXJj^AFh1iun`PKWX!q^S{jc-)7@)TAVXC=d9=X|6~86p82Lpz9{D+WyJa}%zc@ZQqPTk_rJe+TZn_V3c}*KM)Hb9%YX4DwkMe(Pen`pOE2Lz}!C-n^ z{>S+}0nZaSJ*iGs=h-TRl>B?yK zqO~Y}i-|3^Go-u(Q*n7qv`snL+3L1m8HAyos_cr zQ4Wq*bw~(nyLMXI=*94n$xF+ znQFnWCBIf#LrQB{T8|GYZQ*XGr`}g7?P=0p&JHy7eoE=6uN|Fr)RRs$=;S%*WQIDs z?o5}?uDig}1@Er%bk(D-e7ni}so2k)byur9ZlA-}1O6U**Au^9@br?ScTpx!ADZ>0 zQ(v6>(X}5OU+DK2=AyrO?0+t#43Kkxehu`T3^E6Um>1$ z;r^OFU+c*?uuZ{hiu0-br}3ZWY??WkrtUO#rolJO`E>lI%ROChW{90xj>+l0lrkIV zZ}sw9b?4~U9P4-Z&(){7^qJ>;o?gy3*Ym|Mzwuu+|K$Q+u6S>v7&dqYa+b zjp}a1XOpu{_-(ScS?p#$Tj;rk23uhN0nQ)f-KzFh8f>HgHW;?6w_T67>+23$?cl!? z-koOaM}6@QOZiESU2^%BO4)7o4olgi-X62{Gt58B|1&**hI210`<(Bi!7niXVsF3o z03HYI9i-18Iv$4cu$UuwABEwlzW-`wj=4WZr{lPsfb|4ECt*E__bE6})9MUdXVmx& zmfz_6yZt}tde+~dKlSs^`>Q_wrSE^^^0)ebyFaJyIqP|K&dYlNrVBXyBlktUzI5OC zUZVSD_%6eAMZPPvyb8-Tb9D`e>w0#>Ox&Q+4fi+IziGV%`)z--Zo_|vZg*k&m+t?X zi+i;HuXacc@oZU0_0CF-%*c9$)F^Az$dDRclx+&BF%{UVkQ!Scq{dZa<3nov(U9t! zE!8_JHECu@P3D`tGo+?83#q9Y82>ca-c4@V{E+%U$B_CzH6P5%u7=c%&K|1B?uOKd z8?kdC^$~HI_&(Y%q&_D1W9nyCGqbZSV!e}6A9w#mxsdv#d{3?msadnIIUzNh`)oHu zYIeRkV91$+!I~=%lQVY-CSRT^A@%8GCN^(=Ha4VsAEoBQCm&wZqt_SIAr`s!yZ)rM}p+i~PdS|7UtHI!V zMebMA*_n`9UJonSuORPh^nE=Ov;T&g71gddG^D<%UL`py(WNr~D$c6%^X-=U7EEtl z45@G9UQN%c!SxQ^-@&)K+SU2IYhG%YiyCUz92ipH!|Of#Ytgb6uD;z;>!?xJOx2}Z zJ^1R0tB=e3aC(oWHc+>r>qdI!{gwJb+mQMp{|^s_)Q@og$Q*ry??G>wVT2J3B1kaXkMS~3#l#ipoO(1eOjs48jjX_(fVviZG(GTzHMP{>%N_SddH=< zr+Wulcfhry-g&pBb`sx7p3eNe*HXLS*o7`##dd|U8~<)_e+uiT&OcN4GZ?#z?~ZSG z`9G)G=Vr49o;_&N6Yrk1>`9|uYWL#T+kGGVeQ@d{Z(n)(!r?nCwIBTb==O!RKOX(n z8vw@u^#v6?{7Cpl;ya3#qi`AJ ze6(2{Bj;EczJy_%K7PgjD|yC?oq+2^voH~#Noq}!ce0t8jN{jI|62SvX6_sQQ|wQn z+f@9f>ism&(sUY5hi`_wGhNTr&slKJqVa4vX4{{w{%l;orPa6c&#`{T=F)ebxtkB$ z0)F3H7pl34Zj0quqV5v8mpWUD*HV0z@m~hRa@bdRu2-nD(!8#MeYN;CuGg5?wPM%8 zw@%;I`+Koo-#3`Mjs8w-biRq^n_%6{e=|L|(0+^kAL#LeUTjr=t2*20xSj6~`tRVk zQw{H})E{B_N&GIo+y%>Sal6gi9{WGL->dFEIe)SL3(osJa|hHufX_jH0}kSJ$o(NX z4_gmAKVt7FjgPA9U6uN)vtu+pCf9L3$7yrivwuSU6ZTH1cajDt;XS3Nr_?=7)6;64 z!TF5%-|YY9x%$mq{w}BQuhc*2a+Y3a)%g=X-(RVJ!TJ}RfBReXxASv)cg|d&quY6P z&*ODL5B`DYA9XH@yJ(&+>Fs4bxI(+DG`mKpYy7V{yDsN-XE)5{4RvqIcZ=S)%))K` zxee1DJ-O@rU-kY~_a2`2FjDqi&_@aqN|0pm;xa!HVYfb z?uN8DYrMVqogpouZAeSZ#5RSrq>gM|NJ}on_@v}v{8MW)xzpUI?F(t%X=xeiv#lZR z0r?+L`+v>Y(UA5a-v{N**oe7*NY00LhqQ;)dl;TaDl+$(oM&?XXbxt5ECU&%drtsGM$yR)a{&A~T^+Bv(2v|KRe5}zBc+_>b% zD^CSBKcqb!%^EX%dF9BVzhoqu9xsH4qI`W7RR^5&5%~o z`Z7$Va43aaI1mQ|V*Viu{QTF7LVh5F>~q+Ci}rK%8vp#Qx;uI+Xz3#qBsVs#MJJ{cMl zi&(2%OjKcHmMKwcwUvjlEo|zTUbDZ#fp3L9vqM^gm~+gGLQb04Zk^6} z6-{Y(TbhVIz{a*pjL_qa|KtPv_xuaH_JS;UoODL~}KmZIN0199L z4iEqdPyh`u01I#c4+ww=NPr9|fC^}U4j6z5Sbz<8HAR~|o$P8owvI5zF>_846 zCy)!s4demx0zp7NAU{w5Ckq0%`+wfVx0Epgzz5Xb3a{8Usy$ra&{GInV-V3A6%Q18sn|Ks%s4 z&;f7*!9WNQ3V47pARLGQB7u%T6c7!>0I`4U<52kZw900)6Xz+vDBa1=NO90yJSCxKJIY2XZS z7B~l-2QB~?flI(;;0kaRxCUGYZU8rdTflAL4saK^2iyl901tsjz+>PE@Dz9kJO^F? zFM(IUYv2v=7I+7|2R;BFflt6^;0y2-_y&9jegHp#U%+qR510-FKoEpL7(_r6#6TP* zKoX=t8e~8gt2n}AKhW?*x$1=td71-1s;fNjBcV0*9w z=mvwq5HJ+<;z-dxE{d z-e4cFFW3+44-Nnaf`h=p;1F;qI1C&PjsQo3qrlPN7;r2&4jd0o04IWzz{%hga4I+r zoDR+aXM(f9+29;-E;tXI4=w-~f{Vb#;1X~txC~qlt^ikptH9OZ8gMPR4qOjz05^i0 zz|G(ma4WbC+z##lcY?dX-QXT@FSrlf4;}yyf``Dv;1TdBcnmxao&ZmRr@+(T8SpH4 z4m=ND055`ybj&~Z-TeL+u$AWE_e^T4?X}Nf{(z*;1lpE_zZjwz5ri> zufW&f8}Kdo4tx)O06&7Cz|Y_p@GJNY{0{yAe}ccj-{2o89Rxri1VJ!_Kq!PkI7C1s zL_svfKrF;TJS0FOBtbHyKq{m`I%Gg5WI;CMg3?17po~x^C^M7=$_izJvO_tboKP+( zHp!`q)s324bDhw5YibBPp;!p{wBvcA24V8h)Lgk?HPz9(WR0*mKRe`EP z)u8H74X7qm3#tv(f$Bo_p!!e)s3Ft{Y78}jnnKN>=1>c$CDaOP4Yh&VLhYdTPzT5j z1w$cFDCB{{pl~PxiiA2sQBX7#1I0pKC=Tib`5-?O4<$gIp)OEYs2kKB>H+nHdO^LR zK2Tq%AJiWj01bo&L4%aLit%O!VtD!Z}T4)`#9@+qHgf>B& zp)Jr>XdAR0+5zo^c0s$LJWmth#Sc7%gfKAwfZP*2;hcmz#;Y@I5I18K=&IV_PbHF*_TySnU z51bbcg7d-o;R0|$xDZ?zE&>;Yi^0X=5^zbl6kHlE1DA!%!R6r!a7DNhTp6wcSB0y= z)!`a&O}G|Z8?FP_h3mof;RbL+xDnhKZUQ%jo59WD7H~_r72Fzb1Gk0S!R_G=up17B zL*P)@1Bb!ka0DC)cZ8$hXgCIrg}rbb+zIx!$aVq@Gy8dJOUmGkAg?TW8ksyICwlf0iFm?f+xdM;HmI5cse`- zo(a!_XTx*gx$r!AKD+>42rq&c!%N_$@G^KgyaHYcuYy;@Yv8r;I(R+20p192f;Yok z;H~gBcsslU-U;u5cf)(&z3@JGKYRc_2p@tE!$;tw@G4o%0`XGIg zen@|005T96gbYT8AVZO1$Z%u?G7=euj7G*FW07&lcw_=H5t)QcMy4QBk!i?uWCk)5 znT5~0CEsHgd9eWAV-m7$Z_NZauPX(oJP(dXOVNrdE^3e z5xIn1My?=Nk!#3x7&4K1bbD_D>JZN4t z2+fD)M+=|@(L!ipve(C%mtv?tmN?Tz+9`=b5O z{^$U7AUX&gj1EDEqQlVP=m>NqItm?)jzPzw(KS+26Q933EhltLARpY z(Cz3BbSJtC-Hq-+_oDmI{pbPoAbJQrj2=OcqQ}tV=n3>BdI~*_oR{g2Uhz9D=*M2bjU#odgT+u6OFbPSrUz4}E&C z_3hQYeZTa?LO0XG<(ZSiueY?m$USje;unPvGcSjqZz-M;17e|jYvJ_FzeD6(nrEbd zxL)z?!i$*)sNSP`{_++J-D(TBXD$xWZt0$p-{Ri;=S=^DH$#UvM~pDTk1&UoF~gQI zM;S6B9x{iaHN&JeM=CWVEH#I>GQ+hpXJr=o`Dr}La)8quSYNHn%PjQs^LX_BfUCJr zeYY<9Pqgs_oZm=h;q?Ph1w^ln!W5tOTi&dseomL5npqo_DM9Nuqgh)0m@ZB=qxRRT z_{HCLW-aw=x+K-C+Gte?JiiIe;_8Q>a*1IH#Xi2}x1L!|{gN(GHOmsJeS*jD4PAEJ zkZ?0nW)$RM%6hqKD%@~sa}HhR1ISLjat7Ls`IRor62VD`2c*+7sr5bOE=p^(G z@@)Fn@M-0n13E80QOH+Fgy~=d#)_N+HZLJjXdGn7bhqKlij)H;FF|&Q5~S30zJXvx z(E*p2C_8i#a$tJX0JkFHfYFMtAHo9pX*%A3vm)<+(@LlxS_4@!J!$y5BIAJ7O0XW{ z2x&E4Zy;GwcED>TS`R&g+?&2Md|nYhMfb!P3L$~Sn+`W%tpHB3Jqd+Eb0Jfv{~C~2 zq)#zD3A#cIA+@H<4MZzSr?{R(U7?$hbJK?ggcZqCjC*{)5D`e8>2w3$ioz+*J)vJ{ z4`j>qq5*A1_7v-$;3Xsg(rdciK(?ZCig!=+5?VI+i5N^lJcL0E;UFIVk^^SQ86wDm z2;>aI8GvaFhHwlZJO;yGH^3|#Lx$eI&=P|&9cDe$^apt5;O!}lkcTxL{%`2!kIxmk zFj*cM+YdZ2^55_)N^iApd?RAE;B>IU-;yg%Z(ujE5oz5I9Wc}1v@1q$t!_dilDgn! zu>IebD?x9=Zc-yM=O27vqQ7xhwB8!s1Y5+;!EIpuzcp99-um4nTcj61x~@!wVbLHW z-uR^PvVW4iWuaGe4w+x-Zo~}#&HYYxKD>Jc+s(BFcLDMm?AjH%%=2dJ=G#KJh>^x-K2p502f~Vh$OaR3=`K?q8D6;q;l*O|2d8)OE@K{P zUO5Bd`as5mb-R3**^ex*ynzUPG24R|yJ(k@k5sQ5@3282vBCUZw#)QKrdOVK_@J1+ z!R=kL%Y;X|SFU%s4^Yrx->%qY{v+Ef-+QE-?0>Lw-(VHVVdYI=mC<1Vs<2AzunON{ zRS?7E=;g2}k+7tr3Z*y-`PD+`0jZSoSe8+ZQUZm-YQg1lnv{%KT2Yl!JcWX4q2+)D zN;@o%s7@)7LebeDHgepQgjh;ZrBYml0<$4DfM!ZPEXSx;DWO7<+2HS3{Zfb+^4?MG zlsQr4l+p20*ceJ+^oFqXC@Mh=(E$}O))y)3Lgd-BLm78EUv!aZBPr)XwAu7S*;_hz z^v}`aU=uS$j#PXZ6gnAns%SN^jTs8ZPkh-}I$CtBXaLy442dHxLq?I#3Y{w&2zD?- zTo0)xSNY#~Lrqf1eiq-<#nSE{esViGe$BRxBtpv6*LvBceeywz# z=t9wkU?(%QhIHshM2Cuw5G@Hd-9dCo<(DC*Q%0wY)&Se?pt$_xm(8JLMaPR)09)=L zxumtr7|=PP^F`}}9d}S&(%WS>=t$AgqGiG6J72C+y=8>yjL_Mlb-?yJU$1_8%XZU= zqLW3dfUS3suhJf6{OJPG#iEVD&O2zC@vw4xqt|o)&(MpO0umN6|S`Zxc-|_zA>i zl1WDCIkRFZ%mHi!vYwOy#rd&xSR+#wc#TY}ai_{qX_DMCvSmTm$hMkrs)9<6kQ_SF zzlZKhFAz(t3{@)0MI*C&_^!+X@x&_1X_uJk;OeiSC)==0~IH7zU1tY$vs?X_daez87ga%yGAzm zNL|@F5;jyw$ZEU$&wRBhWD_p8J=SOm7y9axo%{6kLa4^Dc)ZtkX$S|e`I#L8 zLez~Ibn@BOKT0#Zgg2pkyT@KV<7aOV7Rq!q7ACuhWJ%0-*7FElyU|Y~R zCc4Xg7Jn-aRO_n{a~CB1B~DmqN?4#qSmcuR3y@W4n^geJD)Q0$C9PLzsaK$-SLCtw zOKGjpaZS3cjBAGANYUL2Dh1P~WUR~FW(1B5+?@o`a??=@Z)Ts4VBEz!(G4?LCGbjO zW+6wI?to5g!z@-li9l?cz4N8 zjLi%u3BHo-*~ueZcZE)z%`7L$wvzSPvm?~zY}8W8L)A6O$l1T{up|Jl;-W(v!HD>h z9(Ur+==<3~!93+(Li2`)weEbKLYtxIfQLfA`GCV-cdNt+20X&krLxwnDsl zg~O6tPG5nZ5F|xO@$1{IGh$tYxP-Wiwu<2IdSvVlLSI)SQZC>ZF>XzqOFd(!SuwCdp z?{(O9EAlM*_9IYEtdMM8<*@9Q>sjC}BoNS7Xgu$H*mf)QEbS5%$PCJ0J<9N9?C+>p@JQ@HdF;?(Y=1^9 zWFV%loB^OwP)hW*^#lKNJ`6w1>Q5i=7P%zQKTqk*9c=6!!`$T z(PShmGL&*_L@Iahqpxv1I&IWGdyEkFXtYHecf+!RN!82xBjZjr?Lhkcmi}d^94(F{_AzHSV3s zUy8MB{;DXP^4s02lie`WNztnmVLs&ua%=U>9*`NR7zAati3DI2s|a?R8yKiL&B zEhk)|05lm0skT~Tx6kyL@U{93Ek9rft5$aXOvedND}<($RmiE;J-c6Kz(nA|e{P8a zU}CFycG*nx36}#{w`2iGj@1;qb*9^d&jE~EQU}<;s+L_R(|*F^0NyR71F~Ut&hC}z zHxY2~=_b(!ENqp>u99gz;dTIblk5ZOw%THM&h(n_JNSH)^aS>|>SZ_1be`}!K)6YH zg1lP2*B|NrfCEN_1H+_&u@GPg4G>fUjIad8?*oHzfYE8da4lfmA~2K(7}Em8%g%$Q zkuA6yGFO=$w4w4oce4M$!mXiWRoKCZH)?YDz#6$8ZdJm;v=vc5m1PLmTA`k1Ro%h1 z6-ECi%kWQYrh1%Jc?Zi@B>l9SA#H2>dY)B12gg=a{q&mQC2OMkud6Z+=B;1WQyqtR zt@Z0!R<#}MTfeUVbR2HA7OHpR&G>362}C0rifF=cpk7akGb>uf=lyxt=;A=PH2l2k z%^Q3+;c42{xVduffYwU49&lf2A2{k8;4=XRHpYJJN zq5>vFP4gS4SN@$M-_yK+0w$qerSW3r;S}MX>LvPZBG9z2aeL+B6z!hwCFX7N{qLO1 ze+aJV2yTdxuK1B|u(Gb$vTi8DuEfJ`Fm$e%bZ$sxu7qW7@Yb%l)^4nH3O1bR-J^ZX`VlXu5s-{23WNW%dz%TEr0Y} zYucBfn2=>T-hSHS&xQdz-axo3DQhh9KgxEwS}HtS&3^S}L_cIBLe8@DS1nB~lq z0gwGom(31R1C?65r(FJZAa6*YV|rzF4H)j%x-54PZ77}NdS!PFZtkDEJaiyzNSolZK#~%J!HQ?-Pb45 zJqpqT4AOlL(tls__89UG2=ev?^8UdY?a>$=;27=m82$UYwa2n`VCe5F`Z+&o8f<;g zbP0TN@b`pTwv=hezk{1gpC@urviy9u-*|h-SK&{T{%XDW#yM>L>3a%SB~P6Gz+PhG zyt>~ydrVhpPmKOry@bZOb^XhG_E#-Wg8qiRq{jKqzxnovuHv3({WW?CwsV~O+xGOY zYMyxg^?OOS^DcgOJ(-Axq3w(Kdj%pY~P#)q$Ry~!^A?LNWwa&3oS zjCt*L-H1Hq`Lp%%ZAV^=KkUBTe0~gu9y(_i3nLpt+l{=TdQ5ty59Ah$ARABE9lpVO zjDDpK9yL?0R823sW$ki9VJ?6aIb|dtd`^p-~*B7}xezE&-gYX#oO7YGf6ec!CwwrK6 z_n7j^@Xj3+AvT`BJAH%q81qW=&KVTmH)gzBcfKgZ3EtO7+h1 z5f(Hiwwr&$_L%<4^v?4U5j5VnyM06UnD9#X&h-)gF&4DjcO&+g|H}5x_aQ4s_a6-X zHyCDe7)BEqR&*E!RTvg_7^d$qY=|NBav{w0A&fR5toR`ex*;s>VYd?S6h(=E5oQaF zMx@oSQwdaxvP6Xu7N|N$5|ge)CaD8W(Ct|~##kcugfY#G)lAyCk* zDqc>niOGnp6;>(1Q_!g@SdXg?bm`HO^gK@7B$ zLFT_T63zt)(B=f)Egn4L=Wy`>6VoVmO?+AuJQ+l)aJ2y&(^z(Ge7aaXT12dH zz<`A*h+Qj#RuRt%kt-ZH;9wfhu9HDGfrpET94KQ?Io`>wxEpC=_lu;AEOmud_mTiie7b5H2}j`ZwykCO<7Po-!g` zxW<6(-`MZk{B${ZtcZBw3ImpZLEp97X$|n45c$IO2OR&#f7fZJ+rWc%7s6!+%>PDT zYI@TO<3Sq+;W`8Mf8#E-z3IB~pgn+al>zI&F_&6U#DNFJ`r*a{&VLg!lwqY*!=!Yj zq%^@&2GmmO#Zr0}Qrde`M%YqnsZu~qDXj%5LvAUJW+{F5=pzV@qW}2V4P<9A$HS=i*(N(La z*2b-h(t_BTc{D`mYE;uK;hsc!Kzz*t8iH3;9jJM6v!j$CR%UJu;VbG6G_APnQH~H# zGrxw=L)=gZI)~p3cko@R`IU*;pw1tZ0v_GLcB$l7 z%3+;Cw+1zVS9geAYWY=i*q|T)6a$9rV7fpLdK$3SqU(UFz>7PCE;a4S25ivH9Fz^7 z+`)CJYFFA|h3>JSF7W0KsY_kE$_5)06M!PYgF6^k<=%?Ita<1vpfd3M4#8Emx3VxB zlp282!Q(qPSC!sM-K<;a&Y(8%`VPret+z@y8x$gd62QYdSXUK~ivFy<=*FNr@bV7P zRn4QaKO2-Ofbzl9J9t-Bk4mqs@906GKJfMq8AC3t+%H%_eVAN%7@%EBu2>4t43?_~ z1G=f@3aJ5&#d4L!fKCg!QVT%qUhQ^hY$IYwrjB#=C$ct`z9MX{zlBTHJ+nEZb6HMHwes0pZK)=H|BUo1XW|5{P1 zsZhzXm~3eZ#{ zFlS(!$8D@f&XS4?h$*3&Q@71*HqfJ}N!12amGI2z+2%GIt&uyX@&d9;Smv~Cvzraq zD9%zn0bL~`b4IrL&BlV{B&n!?$P%hKwWADo13`-1RAoR}3D+F(D97Ch+9^t91*DfS z&1oHFxf^y;Y^FK^+De4x43F~MjeW^QQlT!ZglYjg%fO8DU&< zui%>9r(IZrlp!HmcHDfg;hNv4TUb1gUL~1sTw|}|n%k#SSTc`cI@x;MZLi~6*r&Jq zn-M)*GTyktUdc75Pe-?e5kpl|(xc*+vHLp)sx8xSXMY7kp z-(JtPs865&H&J@BWVCVFy`pQ5r*?k{QHK0vm2vC6rfY$xZh!G!dgElaah<)YYo4c0 zf5~2k?PTY1uf48ok*D6*Z-Mk;$zL^g+pD z$;6YICC^gQsxDhm1?3`4 zUsEIGsY)8=q--m>HL{pkQh&-bm9)&s*j6=btTB;bw_#R?(HDSZzi14kA=0QHl}jd8hH0r0i(C%6BLKa@X#pH%xPq_bQ2muI!Rq?PvOcv_SbF%O9Mo1jQ)Y5%iL2 zreohN!#LFmN@BH#=*`ny#=I>=7m8<{7CZ~oR(a;mXx%XB1B7qMoYd#OU6=5d0$H$M+=aqC9S2Uw5TP? zqovTIm7ZlZ`O8X^t0Hre*-o1$JIipg;6T%@qGM6m&WJ~Dvg|+yxg2g$!p^iMN>7ue z6jw)~oMuto&bB31Pn)Ierw&s&&Z4}XWeZ48tEN<2$G)6rQP0k?C03y2Y~RMQ+bRznG0<^00YF^Wg2ph9lVl-j?_n}w%i7>|NZIm2ow zu&W$j*gr<{DCv|ptf^I7t~^<|JBIft>I7_7L-}3h`oh^Usz+I;!e-66+C$~b!W%Rm z^UGIGq#BCzDu)+#kH0|Sq`XK?p4xQfzlED)xVu7VX{d(My~^c+!O5{gfQ9*q?K?_i66dOZ=%aUWYS-WEb8%podXYuC2&an>HhF zSJFJEM^IC(t;|%XHN$9^);tF7cvosGRn;!e*x9u-uj!H0)M~3#)$z;_+Ql^w>0#AW zEGgR8w#?|+)if{Z5!KWzDcje1%xvh@;}(Y7k+LWvFH<(l)fC~DNZWJhRUa(wG%IJR z+}K~~g)9M23OyD(Z8uv;^;Bxom-J7H?iQbI-&#IF0c;|#E>Ypv#R%KM7K}AHX!+A4 zDvDbivfXX@vL@x2%nQseR9Y;xoo^vnQ*`{vtDjvoxp-iE(*n09;h5B_t6#{n_|ta0 z1!qm(F|Ackzo=$$$@Zk>>za&XN-J=^&~dTVcD;pUP1!NMRe!zcZ1LXqrR6h}^d@@h z3Kfzp#@i0JV66e5byiQPD0gwn_FoI~n)F$+C$Ou~aIw~QxrJy=>FlScepk`v;<@cZ z3&NV@S<=0(U!llip6zrC9(0AK-Rt=k^(=1LUbLXC$)2U$178XQ7JF^CTgcW_&eHGo zUy91+Kang@kSt-4EOL-6f5}~7$Xz1HT@=V&hBI8CFkDO` zYSYEmOHGHsI|pA+k;pua>5_j-H-|oV|Jj2L$gr+pdBOgu>5EFQ`K}X@+dN;kp0+L7i>inDmy^%8!B8zxFDgY=i8dd3LUo%2-H)3^Wyq=$ z=7&$PZlj;60~$r8^D9;6%TBm%GoP6QT192^tET7wogm+aKT`%Y^hz05vdyQTFx{p- zGX}Ku${1JG%`cx2-NrrB1~m0bZ&y0cx19*x=039qwDrnvS6$3MoFLqWLPbk`pp;l8 z*?htY-EGP{YoKgj)%N_w3EFMs zGu2zeyHrr6*nIv8+im(Y(_72COi)$d{PqdiZNf9%ThqJrM`h4_--+05{xjQK+xxJb z^?&d--{2j{;q6S|ozUTJRpA}k;qAY}J0nKe$VE8NN7&g!IN?Xw>P9%W$KJ}oQxzqR zjyPCwG!m}Hp30z7l_iajIPP&=6N<}-QuV3*rnkZ7L?V)oEtKIXYF8Vew@u}gC$fxf zlo2TER_iaf(d1+#(u%E=;VJ4=8!We7;It$1i0zaSDe9g5ZDYgDNl2s=TPnj<)G<2% z4YY9T5jn=T$_N$p%=UjL>X(Vau=9>(r`mvaN#o*WQZXFC_ze-uQCxxqqJz$0qAxPm zMKQCBhgR-Ml#Mt3A4+G*0+4{_@Cp%hfK_)I2Q1&Q21ofr!-_`9@DV6V&%XGO)SJ24mp`8G%T-JpYoyNBg9EUgA!3L3;b5Z ze9HKAaT?HFA=YJy-#Ukn6(287VaRe9kUqo_REhVkHCR*sBv} zRy<9atCPf5%3SH0>l5Y&JfTpi9oX~(IKym#%Nvs+J!xj;(i8@qW48RsJDy=V>1yTE z6at*Bw$SFS%Fvp$v+`()0M1uiF7cjZcue|Q1wbRfGY-(%9N8I4lU7!4P2sC^PzcPs zp5Zv@Y30`xdc+$#iO#ifn_+6zPGBkn%{kF?t;KSfE7cKLdvXSpZpT7l{*)D7Q`PF^ zsS}iyXZ1{MS&=o>txlghqp~Apg--Mzpu3d|Ob|Ok(Ro(U#OwjSTeZLxv9mHeT~^A( z=mEA{rNCs46O^Q9HBGD@5WCe1Oy@YWvg2jNOh67Wp^{<3zzGW0v#KT*4+!0AI;ISq zo!I%ZvL_}FaNVjpCO4d*oIR^+V)KC1t*&Ew!S^-T2@0mN`X;sy$e42BbbrAC>%(=+!-4J6 zy2aAKW{7Sz1lUcZTSxsr|MVjPgTFPMi?D%8bErG>K*MbRmECkjE-pyV|x45*V=GZg<7MP4q6SB zdW+S^(6mvh)_A4kV#BfCUG=l}=cH}@$s*=SqsBmgn(>tra*G3q3 zgwvThchmyxZ_K?P)dw*46Mq z)j{sv*0Tw;Y5?0*=-=L-6M528DHH$L-LgFN;X`rHPdOST3tLN^i=Bl zX}Df%zT9%MdUpozDcO~@x#DET*OI+Dd4}t$(3Q5i=49U1vc7tDhT6K0+A4Xfx^5o1 z`qwjz#MZ01=+s7ND88k~GiP)3el<{NOSxWX-SD*5ldr35a}X*n8vWJ-PJ2DYy81+Z zliHv)BCJcE7C^t=c98*6+k{5hb@S7Pdw#!ek^Vdzl}5UCjnj&IZof{EL8uaGv|e{R z?YI~A>+Sh%WW&~ox2|wna?k14(KBFVTi2+wZhzWxFX-3P)4yfo+{m}Ce_C_T>(|vY z2$e03Uh96RJ@=x1eF48kZO9tY)@4tN?m1rC0|rEG^BYyxtxuco1zx%X`g?7R8`;)% zPOI*DUOEE?p&F;rdEM)@>t5ug_w9F}jaVbuy2@$UJ=aUe+d!agU!(E5^J&|?&`Zx- z|GQ04qu9FfY27^^^jzxTyX{9~(0Y);k--mScX8I0@OD+ag8{>^7uO26X8OULVZ^vQkad0EwZzNvyQRCOtEH!JtD6Vw6fl5dyql<$!58fzcx9P1eCVr*yZWb9zDj#J`JofJFac8x^B` zS=KAyQ&Qo49}!;CN;Cbf?9cDt3pkI$99vU)nuibV0TdV&hHqC+WIK0ovO^zdvoxHd z)G!{Ao{E>lZs&5wCW{40S4msC2?_4s>xBf@PU0XW9IR_3-p-BasvuOCm)%gou7ITT z6>l)f**!!xdK!C>c8tNEI{6n@ykas;rBG1_mRTa$kqR?EIIb|IxcIAS@((`hEt2y% zC2@e&claUc_9L)$J)I~gm_#Y!ML2H-8YJHyeCnQ6zW8I~WmDK2CPd5MuOfs z5(3OKB}66oK(7pQJi!T~?_;c_eSAZog;)Za>uHj5N$@V8HX8os{W3AOaPU^mSYC#l zA!~h%4*7)+_)no!3}_8ZuN z1hMyyTt;Ctf;m!!rY^q3Ql*ruI;ZQt*WqK6VGv-Jlv0HB%odF5r@jZxGjyf?-JZnA zs}1f^v{ezRGQVyA;IJnYwA5^L&8u~p(k@XGu2+Ardqjg^MSn29J3kwPJ{;e-L3FJj zI#JxFvG*zZR&(l5l2K-s>_hi&xx_g2zIaf`_KP4 zS^V*bqkA04Z6ZT|b2 TCG9coBa8O%+IYWyu6y!|T#P8}i<1Q`f| zPzFH?gCJ%>kewh1W)LJ9E(4o`W9FKHo_gR6*~={X)p^89L^v z3o+uC7*E~^d4G5xvz?tTfbHG_5>>Q9v}XSlws?Qu3^okvy|@2@SoEQd@TJ^D6+og9 zk1pg#DL|c^1F=F~o{cln%I7VRpPzGVa7YUN2Os)Kj%o4DWdwi6 z%)iJGs-CbLvcKo&d)TrdG-X5=;RN?Nt0*@`;XuBVgs5A7y19Q}+%|+m(Bki5F-=rW z1nDq*W=v$mRmDh%&pc$LybE`QMMV?gbNz|wX+ngR0phT-bly4745A?lX(1cI8;q|I zc%^5+$`o^e=i*y@Y%icM6r(4=Hzq?z8ZJW*fcqywY;4 zf$FAazy4~N%74j_rxr8?ZNG-@tE;J-{&T2gGx72w7p9H|bmS<@C=)(Bhgtm5+f_K6 zUl;!gVkEI-axh4Un&Nu|Vp+~rn80G8Te*5MHCJ?y3;8s{0NY2pJZRYcdm(B=aAlu~ zo+>>HeGV=*02x#Y2bl}mF(5>bdX}r7K8bV5`|^%R&rgx#aSX93t3_F0nL7IYd8Wa> zdj3FGGUxlBFX56KYNUdfh#*g|n@8aS0Qstz+%RKs=m9mt21ah^?tKG;M6&T)I3Vu^ z4}K~o5lO>e>jf=^I}xytl}m?1BQU+axSRZq`=6{{$bV@l_ANF!@5{WDQ9dGb3Iwme0!T*sgKz8GAhU8JtPl?&A zFR*eP@(y7>4q%?d-|^Djt)K8R(Pcj@JHe$PzhM=T3dcl$fX9*m@=9ICPTBxdm~o!hO%!10|k_*aJ2vD9wC zC*ptLU~nhxT`C=UEr*LT2O(QY(md?;=tdCqCH4jf~Z;c^eo66URPx->W>q_+yk_zxc;|c>qPzJc*eJy6<)=2C_u%(=Iv42O+rRoKXfod(bVfC$)oTF^{Ep#_rOBese}t;d zQE&Pdg0>bJ`a8&EOP^em=Mpt@iaAsbK`NgKOukd)+?1wW|eg zj=?W+NwZTM4Oh`imqTzHYy{N&E)+miCArQ<*oh1z7pK zHvipK#iVgjOfrC9&rIa~%h0&`i6BPlONUL%6>f2YXw6#y>8ngR zHgSyVfi&7jlr_i}{&S(Bg#sPUE$6qG?&5y{8z2nr^PT8;4aG9JzFSi_wr5Z&pSmcxv^>cXdqQbf$dub@u>)_)wkV-C4GX#~i-bnGk7czP5_ z?pj^$zz$0@D-w_AREY&{RX2Egg00j$bheAzL(_-wYi2Uko1`}=&vu=yWHq)+nt$e; zT1RP(0+I)<1^kl+bp-rV1~1+mB~V1I7&iGUcpIBlsp5Xxu|h9h#CC5RbyJ@`l0-Jy z>sz;4oa8MdNLOn0F?@2R-__PWU1K@0)0cVq@(%Y8MyDgW9?v&3SYRjeT%sn7QD3+t zlBl)~>;fjCM?9*`c3j0)^KEhDRoQfOGcZrBm@^K&Cy(aNu`xr6fR8boKpp`E+ZFb(t=3l?bz80Tk?bf-s7?vta=GIE0 z$C(eIDs)opvI2CEt-v(fVbt-Xsoma5zW5zof{sq+hltU3mX!!eI*PuO;w0Yd`2Nj) z#Hm{Adc^iROkh!P2S=8kd7OV+Ts)0h|Dn8Jv{=O7G|O1YdyCKAdT`Ht*lSaD*`a?8lc@Jq>@kr(Aj%Sbv*&Y}9~zi;Oj^_qv1R5Mik zwPwZWRp^LC`<~1QWv)1y_@MRw=J%IXYm|cp6M9*1s%~Sznt!%ggJ_Bc4bJ9l#D@CP zFiLjL64l1ZILyxX?E@d0H833Wha^9+wModHU-Mg(L_Tpi5y(?e#gUBgDj=eB_sx@R zGBH$VI$L09CvTjp6CTnLAEsVWLu#NLm!Y-FS?(x!GF;sxf)}>&Pe09E&$ehU-o*RESWz!ZHef1ZisxFuWA5&3R z@-x;4UfR7K#wU}71~EnBukP=Ef#1w4cz%6T6GEeZt-_KN1Y>j_Y9N1X4D>Z$*0H?m zBY(WHf?0H05JxFh!@0+kT9jFAG$x zhczAWZiyOE)*fqMAe32ykw#GP%*0<6M6|*(k~kSrTTecmY>f39{2j%-(_UwU%ql3= z?o|&a-!HE))%F$FSE{SN);J3mS4Qx%Qmh*PzQ5cORZDhSnYwUjOTf!sA#~Cs)OFO2 z;tIp_r90l{N{&L{%GcbbJBN`s!oL~hNy;`KK8@C?{}k(Gx$~u$FXaAf8Y>Bb>iNv} zY-B-OoOxCrQf>XJmzUCzqOCO<$u8xZ@`ResRe+}WWQbesJ#~=5MUhp)$Fz&!T1U4|_Xs z{1m8qpy&({-n0PZf)@j-q9bs(yt*7_AGq~mM3I}S%ZY>%S>Q|5)IUfXGi;?rp~HvV|T@&?$V3uecl5rkQg_&N+hn8_5E)} z-BS(i3vK_FyunLE>4BBWCFQCxi|~r*&dz^gSO;F@!IwE*0)G^KV%_-tHW59+L};h! zII2k4k1y%4JN?&x9im_NYry%tSE1D!km*vxf z^5<7B<2G|)W?B}N7}To0agB#>`Z!kyi;KZSOaFbWtf*T_MohjIEfrGAYnfR799Ay| zsQVX0tLp*`d-aFc84{k%3#Z>}M@~*8-C`R*eUynS=}g1kmmam$)4c{k-pvC(&x>++ z{HmUoq>xKs4gmN5&PAVIV3FWuF47$|Mg_Nu!GCRZPWe`ETWP%Q5WMwfOUj)>?-z^v z$yTK9NBC4t8Xd@jH*Fst!)e44*cV3^3uR(*%G|lW|4GloAkOFMhkqshui2lpzZ+$WrCxnFCn=d%O)ZXOC{#l2 zQJYbH$V0M7|4L9#1*c)~jbWR1nPD{UDC*icz7aa4Nx2XPm&bw- zr}-(~_M4R0Z-KN?))L5aA)HlU=dI8W!EjMCoaxJ1Cg!QmiZTqx$w(qzKb-)9`md3X zn}&389bV3law5Bm8d$#>`OZ9d|C`4BWVckz4NO<_xuzB;>~X_2)9J-=7$RiMpEC!7 z`1|e@DGaepH&6Aj{w01I&wN7Eduq-Q-EJ&AGVhWO7qW9Ssv{@A)0EF*C_ZU&mhV)) z2}s_Y38F+#7Sp=T$M36Z7UTN95z>u%E5XN^v3oH;XHP41T5Cz?ucWr$!vgsW z0)7Dwh3_9t??k{GlN#cw`hSu2F21`Jj~eII+A#BpyzbH{kk_{dM0l&5v#(&2lsg~x z%N)=jPZU6Y0TyVDDClsTN>O8kx+08JhopV85b$sQ`TFsiJVr4hGADKX5@pMuK!_z7 zx%VXFA&!z&SD{a^dT4UPw8wNWp^efm=3HA`-dGhmaQV zgb`W{qfFSwgFOaEe+JfZ-hV&$ij+VJ;r&ge^~Gh39Z6Ya2iZmbN(p!N93x@xn?eAp zp+2q%onPQqHgmk~Ad!x&nJ76|y>A~{_#sE+>)hxLULb?u9Injuc9%oj(F|G5Aml$; z`}>iouP;W1e}^Nl|5znh!N&YnEU5n~c@F?H3uDC~amTaWA0 z&aY=XaeZ*p_jfxiw|m>6DM24k7jJ=A5ATRhSHsXJhavi}1RFck`P)0w(DyO5LyV!X zHhyP0h_`Ed{t%|i-8_8@cXK!62CLSC`n^>Z_42Tb{ImB}Rz@557%~NarZ2@W0>id#P) zblP;TbQQl>j@rD=|q#(>QtkoP45wvwrD2}U! z@ZsjmEqH)#T#BnJZcduNgC_sIRCqlmVa;mNmr=@QTmc3FqkQVl??xU`sK;o@95cu5 zFnEk^4ZdzQz>8kF+v?#O<1JC5*@^4Z0eI$cpTuAA&^e_zK!CmL=$n=f5$1}ZAMIBV zYFu_x94(nKT%ftTArsk6#xZj{$HO2vCVJ3PUCiq0d%t;sy zEfnGI)Kr;JByQb{ZQ)9!zOf{ei4`)HdzU`q-7_IZh}@a96mZ6E?q zB5$%w7x8^h8hTZ_ zRzjN@A17s`gxrzii!*I&lQ3AMf(3){jqRt|yT{|67UC}bMN`|s;!{oZEiOVLl!4Z` z)|E5zx1GzAQhj&DC=_ElMo5F&bpOK117@UF*6qV6xh!9Da`ip8{@%Pv)zVXlf zj|QD>DGFNx0pfdQ6WxZLW!5udp5mM;&iK|hED`=3>*IeELYjDmYkd^dY)68kzn42D zgXrYWXk-9NI?gu~@2j)34Xmh^-3i9SmN~B7$bw0AAqA)K=AH3Jtt(P1dMZ2r1G+#( zze*g{eK~N1gav8%p_M-RHOn+Tk!)!E(eKh{+%~L=U(k;xKdkcJ_;wPl$g_%mpKkGz zWc16)dQFq3gbzRdDf?RTu$$48h1cg7r^+`JNOTJiR!2oc;~!l5h&^LcQs>gRd`al- zX-M8MUcD=;szZM~AIgRXZMSSPcHO+HsIPhz-6^Gk7S9w?$)0<2%>UsUet<&xMjV|d z#!$hJ0`~;qFTBT>V^P(pwYYUEui5`rZLg}BcC;#HgI-im6_Ramd&>ms&V&R;_*+yB zJ=~nBX}rh7Kzm_Hwzl6dxAGPTz#KI!4FZYMewC#3(1@a%I1qfm)6~OhW|92s5zLL> zRmrhOf3gmD0D=3cXoMW2VpKgrPiDe}hm08xqsK@_A74(QMgKX;(K}D4f(ASOuh#Uo z2#vX}p!~k(=&~OFmtP@47Cu?#$U3qri;B&GWZ5dqUyc#IX1>|P7r=424$fI68jh-N-nYv^S-@Fv4D)9azo99*FSOxFIwt zt1E0819tQvGbz+*pmQTeI7DyKK|H8R-fsY zfR>S#TN0=mg$4IwF{#`L=9|F9}F$4sQT zXh$FK;hesX=`G_$&>&xI9?(eas1JQ1!N+zWAaPv#cq%YttwYQkk0ZDrzikoam%VG{ zXK$E5+mzY(t$G_4VG@Aoo%cQZTfqmd8UnH-YfwASqbXotsYth_C#|pQ=r!qMSUe{& zu{t9Tt6)_=WQ7_IitMO4b>M2>kj%C4#Mad&POGG;?tI!VqD3#G4yflo`6*7HlWaf? zcb3pg(^ha*v)toUkVfBmcTVC}1g}AN>eL7J>7UZ^h^QluMkl6hAPO>`o-+?-&yT8K zADZKurQNv$bp;nvQ%o(O6OjoOM~>44H#9hjBN@xV8uk|kCANH*7;D(OI*EG-9OHZm zBMu>RKgZao-#P+(nVDu6F3}fCMSLmWg@?na&i9abWm?PvO!`RDjtp)35e(6hMMQUP zG0SaO+}8l=_2~1FiLW)f775d^E|@lKj#vX|IOKC&!+|`zsu8Qjrgq|Q)-)Cs6eYsg zM&t@-b_Ln+hW@2#PWO|=T(V0jX8cqKN@$9%b)lPDz>Rebqtj3htB6-LgXq^4)G9kd zR2R^?Y&K70{?9&{v`C#6H8BCOSrQ-Trkl{7o#!7M6!oo{w<$=XHMO^iYZ5?SY)T*5*=_?&w|+~_kL$#F zz7rq!9M250O?EVVDICQ!Y?yU?El#lF1%q8(Aerw2tlX;z-bYbiV1!GJ7~Di9 zEG4O&BzxDG;cZkMBt+Suryc`vd68@3M#9=o#-QzxyBtZVOJn(|zndgAcU(7^Q{KevpuJq-gBO8*d2cGjJJtd&hHzT zM~{Fs|w4d4!*i|pzpN}q0^I-wm^4l8(S;U{MXKgRIuqt8%`424#j=Qw@$5@pvf z5u$~4N;}@Ethqx3c@6*7dyL>;i@PS@(W)WUb zGjMH|l7Vt-F+?_#+%318D3#bR{~9dEC&j>VdsvfYr?H1salHspUW8{YT2tsPAj6+- z15D)(S`=>RZxbEqz#gb_SUn{vNAq@HND8Q;qIh^Y#BnOo!IHWwStn5G%-NX+JVV4& zxT*8^At}iao6Rd>{m^QnaV-stuz}zE>LuAFUHs$um0|v4A$&=a-b+IA4vnU0h&Mv+ zBWzkDAK6X}b|iM{nEZ$pPcp^_28X(SY+#cBX6Cg0(oprl z!E$w&8ilFu)?N_GD~Yg=A-Zyoc)z^a!rm>yg6^6!OTcJ-I2XWl6Y9eM9dq^L`AKd^ zdiQ!vuTODQ)l&_OGMiq<=(ajP#6g3^gtBBsB+F)Y@kE#rFP2V8%PZt;=R5Tx*TmeX z$PnwPo1dm%<5i@S!wa}Rb>L-4^L`-#xIuj6Se(h|Ymo3wJ7UEgUfH%1SX~bfspTbK z&%3h>ZYBksO^=4~JGdq)p(c5gKF88eZKf8eC}n04NyTV{F{5d+6ydISE)hxL*=!_J z2^hQ%K}YIt&QDRrr+6HOSN2W91J2pTv7k24*h7?I!K6z$pdX%u%^D(C5Uc3c@D5`B zpyfeKrTD*_2schLVS@D_2|?*&(2DkxV#+aR+t0tLQ;-n8w(vh&`0vW!z_n`bVywI% zCy=aQ8b4d#;0Z?vKqCNm)$FOuIJ(68S0^=GgvFKfNbLPU{3lsk-ND9067NLZAk`bD zr-__yNK~ldZiG?CVT0n>V;{x$B2c@}!zCiCyb5vTE33N4Aauya6vS?=$p%XJytK;k zp<+-h{QWnyFjoaJ{9~SgY#1rCxV#}@6fw+I^lJQ0L=)xIFs!18U&R^ko&Iwad|oGtteLU#U! z>FS1l3b?NIC%sv-YxzSv1Ca}tC2rt0h~rfcT;vEUqOBwcvg_ZkHg>_8H2q+ak8d@j zpMH6(kvq#?ss>SM6TSKyjq;<9mmBN6=*j9yvv}b-`??5TSXsVTd3KXV$MrV4p}UmS zX;^;p@-|34pt=XvU#>X1Xk^rB#LCjHH8dC}jJc{CS`vsYI8g6RT^35|+evE)T}YzD zz)kb6O`~OuKJ7V~cevXYIp;hF%NCU#V>ua7b%7M`jd9%ICg%lq_>X85a7wxJ#5D^{fu?|mwJ=R1UvC9kFSmH2)ct^TfHnjlEq?lq7 zX$Q&NhIB+(maEOLsfGxu*g)bTsdTjG0GyTBw}-NaiZAw^AjrANUh&opBV-m6z-5j+ zoJ30J(j7P&TPsjXqKf&ksqdPIy>Q|Y@SryWtKS`a3(Il?edd6*vtq7Vc(7W~is*%v zz}93=KVi(^oN`T_UORwjae@5-{)>&k$D@fEnY0jm~ewu~^RUCg%RJEHy) z?qE+{SU(C(D^ASy;$=v9z$d3`YHZny-y+Z)j8~%ry6%|FiRK-V~l+^lNma zA4l2`?BxE+PP=a)gZc`uiTP;CuB?%{GKpRGD^^rY{V;qM^dvBo?g|6@J6cAr3mPr? z{h9nGGT0)J!GzYOm1K3I+Yi|4yyEPEeSyJdj|?{?AK~3Li+Ts-r$u_n4h^1do<`T~ z=rb?lc1E|UCD{)%Fp36nC#*nb*5$f-B8Kp~qCI#!l%%`#g!zwngnX9hFB;4Hc)T{o z5VJq7iJ5e1$872jn>C9bu|m=klLAFJ_xm?oASB&{SZXI*;sR6nHc2+M9`~sj32pix zoyV|r+);z_1aiySfw;wxDynvcD2{(s%kky0NtLrkSP2L9P8B6wGzjd%}gGm$f%G7C# zCBLL7Ta#L|9$q7!>vYo;TgXGAyfA8}4(1Mh^J^MO>(faD-Z-D6_A^3G-MxDzJZQW9~NHWcm&Nkj~(8vfLF2pR;^h};f;*p2@UX6p~z^~&V zOsc0YMl25`;@fHj`W9w?w@j_e>;$`;&7NeKN|Uw6YVoZg zZsis3d6OIh+3ghKg;2x|$ve(j2y7w+$w=T-#$MV0U5|FMZVVB{&tBvRTrpAMI;bVs zmmbOv>Ox|eXwuq2ZDKxe_6Ss^b(Rk-7XAC1k&5~YM&fxQsjSat+k8!H^F)LnHA40s zKKGjJe6cZP>HrQNuzO&^b+_x%HlJXmy4aTLh1fC|+k${xahT{!jEV`!(149>=_6r0 zMZr5y);9~l4`T0w7zzCdeyoIk1bjfabwS4nPI?{fb^2?nJ4>MLW~T1)dJE&LFtx$; znyj8VaD$9ReQwcrS#f-qHFcN$4{3%>jhqJ^3f+Bsn)?Jqt;c0Rl33~opM=bv>qwG& zK3;0znKUwd?!eO$*wTO&Lkr4!I!x60-3w6M!vGOnY1#$FWQ;l zX*7MfK+{#Um4JQGPRQ=A4`{k9wUeSR&$6V`*&i%szdlQBPygS)KG7r!_m~Y{TqH3LL1Cs5QSyYeBge!}0~+mxP77`| z<(1_HBohU8`aXxZv&)K!5a&QD=od|x6gFZw)ZkgHy^V!^Yh=T|W*d%89WQ;0vE`GO zzP(uedWd7n$3~vD<6qFRSHFXHxvPlYdbEj?6st&T5{jCfuq#$R#@o5e1#3xN%ScWw zpfi*;!S-F7TD8y@VJT(qi?a5~x+jnmP#XnqL|B{sz@s0_kZ&Vb_8 zLNOFcq7#ssLhLIT8DoWb6fMA`L>Tx;>ZjM+Rz(=s8!gHu|SPbrB^SGy)oJ7yQRiB2M#?I*f>r3730#7{c{YcNbjNIwZ_ zjMj`XD?RjVv2MW>Z_@2CZXQ@=wSDdsc4aT65wL<{p@+DAj?KTpREf)p9CT@(`!VH4 z=|}^V-WIuQ6k1`G>hgBGs{?r1>H!2q@-{&fW8!bXG z*vaEaBZuZGxb4qZ1@TU^f>|$3)(~$eet^s>ZbH0yYT?yYN!!j<$)2+u&u&D6r(TuQ zSc;krl&%P(qs7+s|2#C1uRgDSYm>gLKD9~T&Pjg|$#d#7L-f`+#vz+6FZSd5fE-lT zxO*3(&YQ91ko@f}eLh-BS|exl40A$cG9(UwH8neS+z^~phpsIAU$$`5Nv~dyMe)nU zx@Rh#`!&s!c*%{()m>xmCaU>uqs+@96#by-(U&4Ra7%qWD<5NT_VLY@)u-Qn()jsj zjbDD&`1NOv-+tEk`_CHx_*vthKWqH!w|~6d$n4v{zum67b(&~-lFeNC4jaMgDhFs- z4z1+09!}fop_hSG)-nr54`)j(ZS%Yw;Ggl<=`oCrxwDHhvFJ0)Eh2A+Ml1xeTc@-q zNzGbS`nwcYLwz~oG-j&c+~?`8WBjyK%^hje$bj4;A_8DQ8yF*(UOej}} zCT)6PL^te4CmDE<4dp3f-E10dPwQsig*b)9&4gu20-8R8{*XW;DX!U2G!k=>H3Y(& zZN+X?LkX`~?Z6lgeV6uGZ4#{7c*v@!zUX6ttZruPtsBUzd%lctk`|8)ZA%SP3fRSo zQES;bZQL2ZK5?2WL6WR!U}J=zcy#O2kpBZ>Wj*z&hwU+$`-F;-yU^EB!)u&^!P4S4-FAQ9YOy>1eZW|{ z^KS#XJ$n{4drXQL8etB8?5!i}kF3tKE}X5foDD4i;d1~{5_wc1kp#KkU40Bz$AP_~ z(T6e&G;tB;F*IOi%QJAa?n^chkme-`mI9X;rUDWRdB_W|Tmrku+_!L5!n704-v)`@ zE%ld+RJCDl%831qkic;7Wf_TtP23ZRzHwl8BGfN*)X^@v4yOvpSXPojj*h8*o}wx8!=mc;kO5!k`cX341dGmnYkNOD?lR=mGttV5hx=AUo__Ek zGEX;C$w$GlJ{mc4#<%m=8hCyfS6FP{(d&+_52^{5hmwOmac#*jb1$p(;I)Xg4ry}C zIpVZ0w%bkGtc@Ah6gLE7kczGPkw3rlN+1@k>Y!T3y4rS;wRVM&Fa|O> zGYXWK7N|Q6M*S9zH^fv zF=#h1KP}vr^#df~9+Pd-!#`fK-(^uXw}ILS8Oiq4L!TbbN%8~d=YBpv_w!rlemOt) z%UkDuJwNxW$yRaJKgYasN2ylVc zCd`<{D=R->&a=0XERX6yCVR}t;VeIhA<}B)S-T)A;=b`}fm@CPS!AUi#(IrC(c@e!Y0q${F14`Vpb`|PoNqje>-=f_u?#|uH%L*$#Dnbj7bx!j)x|`bX_-9 zY#Nx48EZ5Ky9S$b-(2_7+fSE1Ssn7Yw56S@urF3>_Pm5Sv3aUcudMZV=)w?&!n5iV&m2s@O^AuDPJ_CzV7 zi2S#|laa}xC9|nx6vuO$-pAW$42jeCx#j_E?o!|46^>@e8YTz!xtm#MELYOpv$C_= z(@W-}qlsy-W*OZq$IS4@sU%NG?Y`6%oAHewKGum^T*0#aO`X%Ut~nb)WAI;E)rwWEph<>Ydm7ZeIe z<6mX}GkOE(hh?7V{=B(95HI+TfbKb8S+4s+J6~u$hT{!uqZc8{*2@nUXqu;?)fPUc zb3+U1XRq~(M}PC-&l}8>VQ`(@a@lI*xBcjd=XbkpH}WO7p-YQG&HU4{GIZs{ZLesC~M<7*r<7lXlzz0(U}n!x7-l6bsyYnS^z zQ@`9WrrSfC;8f3EE#lxzOHd{@C{)ajePONz&qU_T!G+1?{J~l;j zMRe6dt~#FHpOaK{3!C`SK3t$V7YMJ0t5cL0hr(Lb?E43)Fd!MulylH9K$-l^f}0|S z9Q5Qs?RQ(sP6ujG=}tRR>XxaOzSJ+%XE!KU$XWV`J>$`Hj^_eQT0`o*#g>ukaYY|q z?ytu5A}baGJ_4s5R}TNMM>| zm0Aq0UHCb?CMh+<{HZNuOnGVHxUklFvE)Ul6Y(Br6_`t*f_OGO{QOQFo!% z-Z5^n$;u_S0j6WdPhqy8+6Pl(rEQrs zCw_b*@L7r+J|lhmvzNa8@ho|SwZQ)0f9-v0mHl0KK%w~1Fd{yM`n<%Rf4xSnk`Ax% zc{W-jPSpkxO#^HN8-75br<*vdzVL1iXJeT|O$uE{Flr*y*Oep>3Mm%`imt78A28M3 zEy|0KxLdlt0-0$R0k&Gl)Cu0UA!#=&_A$d4we|`hQPv==2k)MVmussR9oRKBKDqVS z3;ogL3-ac7A?gW|EJO{=ku%L&m|d{1wrLi@TuIaP-8SEM>5o0|CZ6kmU>LcpQ2M= z>Sw_uICr3$io)tz>;)f^xRPB+YKpN)imLkwQDwbpC8}Z?1M$=kUZ&Z9S_A|+%mUgz zDbsOaI6O@}6wN-4fB%*g{Y2w_x=_)=HD(zGB}t}?MG%uDG^uL>^UO>k9bJ+(S$W2i z#yi5`P}H!DwlTP_8wqlLXeGndz3QrpcJZ_#2AF;fKg#5R$=Zs_%VX!*%+;B7my_D{ zHm>H|{j5jE9N|T;Y_4>ME))2dFx% zHW4d}1#((tm%XiPv$josy zIJY<9x7M5~DfhWrgt_?HGQf;LIadWI zYDCh$l9!L?By(~vLb67)C-1( zxn`-voo$X-vie=T-}mWn6?5RM30>v8FFaTkZo~r{-z0kCxdR=8&Q|#d zIs59Fvi$aIKAur@J(dd8xvMzLx}BwusQi7Nph6P*+d!s*IQzp`L!p>~e+VO^ykv)A zgNCmlJ6oUDwnWm-Ye_^iVp{m;7XGD$e{JF4TKMl>#u3b70jG16nsPKx6;cLRDAs%* zU^9=J;%mFXs4ajwf^cF);7LK5gcmJb2^5TMv#sc;~@; z4?cKs;=$iN_{oD)4?cQu=E1oK7ash#2bUgPd2sE)jR!w_@QVk(dhp4Ee{ca7c;9UE z9}wyYqJ__8d2pUrY2M|hYK{Pit<%yt@Ayat{I^|&E&1QL_E{UH8xkx z;~7QOu^01sIW<^`S}rMPsJ`ZupmU8Y0guj^7p!*yBTFAqe#hFwVor4f?&RT|B#E*v zH8cfH@=;LGbJAL3ds+=mq0b6^QRu5e-xT^?p+6M*Q=z|ZXcr{munXY;29dD^RwyS| zO~uC~$+iuGcsQp_&P@Fg1u6iG%XyNjE`7|ph^96PQsH85%m-3Al(+aAzUxN`IPbxW zoHH|BpQ1ya>mnCOnabgMI?;2I4#coYbfOn%XG>@+mQ%^hUm2b^fJRC9{+#6Af@2>@ z%Jp35%hU-KkU}Qx;Fz8eVN6R{bsMCp(moBddMXEEd^9KKs3Q3`(~kZ1a(tv}OE1Mq z>cDJw-Vlljbt{g)bHN$YuOiK`0V=9iY~9?BLx1f)G^76Q{3^QWOAHvyaGoSpll&}SyG%L-N{TLU6%`~!7HilZUame@+6v0=+Cz@Pd!{h z>OsIL8Ut{nkm@`QOw6`p`;1m)r)JXMXXDTsYf}SKMOh z7q!skPTbdN!A2bk4h88n>jd_bndaTs2Qd`${3cDjUE*J&AMprzx>a@^OTun@#)D)v zHp3oluNyN46M zv|}tyR?52&ZC$y(aOFC@a((&A&4nvB;gxO0!@?5;TUTzwE896$7oOPIx-t&0Y;O#E0342%r0D+g;$=*!JZ1Bb!8r2nP0xLxNv0= zUfGs*7oK{db>-jTm49Epvb=C*8D81;Ut4&pi`JD@cx5~P?7~xYw63hfE88;J!c&X1 zu57|9o6A=|U%2u)yz=?-l`j{rd2zTKre_B`m z2(SFny3%@k!B>*DhPx0|PS2%KAa)=x?pwG$@4YkEv>Elg(2}G3SIec~!s$L+{LpqW zxX=(6a0kgLy}R)U|fn(GU^ml32ftHX36mw zZ%2->%lBi4A()rZ8qtk>lj%ll%L?z=fsY3&a+-u$Furk-q{s6d;wsPE7JY7hXTvny z2ADnP(fL8N1eT9pi}ROMk+jv=6z|VTPJ`g3NsCT*A*$oM<&uH64;N_OGaw?_?~3>5 zB=>2#srCBzt>{yy7qFspl2%K!pd7fVZSA?YlwT`~7(Xry0CJXTQ67 za`rS=Ns(`-s`x%&6G_v48b>=6Q$g7jd`I>r^TJLg0o@T{x0}2YpdvY&fjY{1>=p-; z*{$p$?GNFJV+#+~-K};0RF&^G3xAt%cIM~ynV;V}^Go~8FK?aswSDH-x6b_5KJ(jK zXa3$k^Y^#T{G)y5A8(!cXZy@Q-#YWJ_L+aR&b)OE;t0j9zg(oMl#e8}n?qB_Glg__ zG5H$pZ1B@YxN~gGE}OIOLe#tTd|-_VB#n?f^~b`+sE8U^QPC81rTTnyG{Ek7Bbiah za?o{o$1tiJPCke*ey#OQczWcPHA2>!IVk)jcu zHF)E=?5$JmY3pb|l3}&Z(=4fy0rJ#u#qVX|!P=LONjE?9ct+8_TyvjgtZkFzUN>UI z85y@PafKYp6KrUzB%4t%%DsdmfyMERuk{U#x9vuLj9)HN^}PanG~}MgGm6ewQ!{NF z@1h2o$x_7qTq5f7{F=WQOl27R}8w5XD3+Ps=1S>$a3Hm@_pd?sQA^og=`6ObZhQvm5`B55d ze(g$}jv`+09Yqj9@*Hy(=zxF>&^N@_A%H^;=$hB(M)cKv8 zjwCrHEcYPZ)I?fhO7v^regg8Zz`MZ8IO?=6gdi3B7pKy--j5+M;7h(I>Rc z3)6h^ZY95T@_*@c_DiQXe(ChqFUehh_;>wrcGn+o-1Wy>ckQzhMsm1`K1K>`d9YJ> zXe2IO1v$yR?RtSbJ-;D2o^&>pR`53V64>$x|sSD+HFg|%G|+< zi>zfrrZcIZ#kZQ%&dmj(*k_ctf{CYo;v#My-V}YtB($AD*?ShIdQK{t1W$;3nM&cV zXQ^(HXJN*rvqYja!XcO5Y~yE|3;k_=j3hlspXGYg#;(Kd>CpKpyiZ7qs82rf*+;(kNaQ1H9|`W3cAjYC-)@tkDQd%<_|iwboxmeD#eEAu zKhG>K7H^8V1C>RS{DDWwLXL#!)xbs?A}a^9Htfli5pOdRlWD$NA!FZ&dJlv25U0nu z9uP)r6)Tztrfdwmn3=8P%Wq3R=bsayWSZvXI;pSAX1_jJcVSWa*q{^=n9`XCi$-H9 zb+^oNYD=rsaWtSmCuYPMv9=?PkK@Uq7&ym)VogCUd2u)yu7RsguV_%gX}-@+zbkm` zkLa`QmE&Cmm^{vh3pC|W!!~7VFV%js(j;~U_=nDeI;rd<6OhC^w6jL;>OGv)G85j> zV~{;v7?K6x3dwb^*A4B;Hyh}Wpd06f&QA3E7Oq?&Gx5TlsBaaP2-9HEm~>n zNd&~ExRX2wi0kp)@!p>oX47H6O`b6tcf>z{=NTDXM(506)uvesTOCs1`4dvW9lSrI zC>JrdO&Lk7aXK)O6{sJx@L;Dv48p1L67SDR`l-2zSp2C4bh=o#B#yQ85mfFe4w ze>wT!v+T~Zj#U{$l!-)yDl&Td%hhkU9+Jg-*(5$mniqDly!jrjiTfXTZV^|=2HM3x zSy7Cpko)KAh?lYp4)YQg!3r{x-0`}yx!TJZ#a9{4k50ZpTxB%3$>LY*Bu8rcWP`F; z!V>}DDbV2_KxVgCs(tnWn4QpQpnUdwXlQ)#(ns{mTD_H@4NFKI58=U17bP?k4-sHa zRi=rN3}iOj0_7KI@m1Xy`e}@y*%!`?#ubGHr7?Xckg5HoC)|f*NuWmbiO>}va8`U< zg4Dsfx3HHnhnh=-AvWK+LM!A;Lkyr&ib~u-MtWaf=*Nj7wrb9uS0?14Be5=7;`7U~?hG6!vs^wXfPJIMV^Ux-!o+4~8i_1EJ(8l_gpPAJm zD*JYehJE|4MYAKUMV9TnMQno-v26uQ}-@%0D?&oKqR6AvF-A+K%M@c$RR99{CRJ z{k?QK%G|shnp7epj2VR2Ap@K2d0qj{-R?HP9RF^&OHG?F(lQ2|U?AIVto78U_yWmW z&1SZ!flm8Adx~&IlYbP+Mi%aDWkKIb_kaIIyYjXd&Ql-V|N2>@&On>eANuY+6JDF{Qj`uBf-w80bJX?)A?kPbIt4dz*%wqYqBL_WIYi(~Q8i z`zOu#K~n(?pMUH?^x3qXEbI1S_N?>dSnk9B^CxZXi!D)o!T< zND)0zNbY{$!rk`n=&JPjc!}uVRU7psTBkR~`*V`F!P}%?r)+Z@VD21ELrWa3_*8Gzv#3sD_fdmr-_Z9GTDeawmgA3>X+x-jmeL=oGIk^ zfVeD^N~*`)iO5L3bM)(|k2P+eS&q99JwHpb!iA`QJtbp5x(zUu!;~uf)O`y-KTk&b zeG3nHqab2nvP)2_guCG$|MMAcz_FFaUBuA$jnOd+acUdXIFvTYwO&_d{yOdhoh57u_EBy&q&m0;VMmq_Zs2EfNNiXF-w49y}h`ZR>InhkvaG_r%d zn<+cH%Qr}@hvJI+|MRa-&^_ckZ7L_c^-Lk%jSyOzzZc>2qR+8sWEK@mo1lZiYp`qT zhYK|QL|&V04v%LP+dtimmPLrRlPrFzSi52jZw|-jzq3AOzXdOI=RE%|l0RQ2f4NNl zdYSy~GWqw*4kZ|N3!ExK~n9l=mK z<(@QZ=BrY|J7S8IXV~)O~FN93F||3P8zy9DExR`Y~&|}fG+TM8$TuuI*9Owi+vXCA09Z=osbz_p>Qt%x%f zPkmCA<}V`5i2s4))Ak7_ovtt6MDzf@z*E(EF}BWS+ZY7^WG8_2D+8AK~sFSC1i;or>iAe_Zqr6Wu=c zwO@YH-W31wrr(*X0etb4rnr1#O)Qe|va+3t+{R@rqV4yls)z81uzHIQJnFM59@C&O zems!uMh<;V>X}AnXj!H+iZVPLU=Gp1i`PT}zk)Fng;V_KtMds{f8i#=NMeFh%UrSl9cmC3I`3!WY)Vx^ejplI4lmV8Q}Yfo$VEgQ;wWud|=X3(&lohO?0f=OaBT6DA4!nYL9?&;+O!*DavFBRx> zwh-i>;d%tBISS%SVDAnHHuB*Tkqc8sMMUfT>M7biMVuv%#kj$m?oAs5C#K>m6T~r1 zEkHZ*GvZ6;N@y}ef{*j+vp9AE{9;Cvx@N-{1#vOlx=9<_WmtyA=FY)z@pGKAPc}S0 zb1uSjSPvi-8pS5NT`f# z`7-fNe1)H*H+$wD*{;Bb6mWXR>f_VoH-hLz%{;B$Y&>aN364d-EU_k*_(6!^Uc__R zd&>KETX6d`R@KWL7yhKFRTe&P<=F-dw?yM^rcih`3J`}skCN^F!_FMlJI_l_U>OEzXaI&isiS>sDO=_gL7X*dt<7(+6&O*mTlAU6Xi=PV4 z@&)nxd1j;FkF?fsmFS8c?2E&Q|10N$Dubwg!c%pknDNOp5n4e8l_aa^8F_|S3*b#s zp-}zURr!JWewM_u2;cE#A_RBgj=`rrH|;+U>)6?Z0gWYljM~;^qRvF?R zF_Zd^mz;H?buWkF=5q{l3$W10PVt`Tlkk2{b}Hhva`+qfWa!e)gg~An%Np0nA1aXnOr3u3jGKBC+v2SPNc zX$~7&2NEmY@?BIUopr(`yhk>Tt+;>FMq6{f-Jub)k5E_kp!^W8aMTt&M(M~LIqWIA z3oxxz)*{<7Wkcf!B1Ui@(JyWbxRJQ;KyQ0zw^z71^%#b)Q=cJrfszxX%+$cdSh3Hb zfsF*iZ*8I{*q`2IcOvf0N8AL_T&Qlpu{lxQfONT0+p<2^=!FNn8w<@_0N$UIl)p}% z5sfZ+MYy_z6-NWBu_+PE(F6VJ$Yp0~($5{}OiGSavX1cajG~Xqo4AxgvaGGIg@;S+ z#3!Wr%e!Wm59m+7uXP)z@9RL_u*1qQc7=4cufyeG;Ux^vg(*rCC)M7Db)Ib*h>KKR zoYrxCNW3TmxO&CN6YbRt<9+PDg*zr!d06{-Sbb%7Xs=wJi?)Z;&RvM=12I2|#5OUT zIG2p0s679}-Z9jJ{pDHudjVjAIDL%9bIx74Io>-4(6z^Qk&y*q6&-U?* zqDr;6K%(_*?Bye(XTJ|oCw{*{4|!|Xu2atVNyJ&R@L;zA$2mC0`=HvQ+cQRtdpa$i zeP@}O?c{}z!_r6EQ`rmav1yOPV2SH}M5|(-&2QWC6qj=c>O^7JX} zq#fb=9~atMQNA-jAdbFlbb36aII*^sV=1oQpOcgg@teGX`j0p0PN(3t+ma$5FA;S? zd_q4({ilYQOxncbYM%O`?;_#_B(@F&6eAaSP8S^f=;2M_?0N^Jyer>j$?H|tytWj- z+c?B`Wr%+-g3`~lC6+M{4Y4WMm{5o1HgDcdb-;!^mVRR3S+=bRV58gIGc zm+~Eqeh$$uA^J5$zlG@U&Q1n&`_&wOH^)D_a{Tn01wI?#^KZ8doK>(A?JV3;<_=UQ zOw6FD;H;428hP+}8ybt<9q1Gk zOu}Vz2kMOVwOlhs!qC~A^G0!emvsa;!EFfrK8Rg zd5GTzm_6scN)=l5Lz!{gbjFO^22Vnt2gWk)nD^%-ompq5HGL7y_bO@)erM4cVk4g^ zk_!)XC30Tx||{?i{QnS+I^i>&Qin zXzEf!(n$wVfDk)4wSazA(THGd?!el_4{d^5cF$?on`9rABaXmRruXks!~*Q)29}b7 z2C?zm&KXj^s{t8z|-7pb&DPz_uhkX%vW0 zw=H4HuD3!B@+|9z-sj$Ln&)FLlWprk{4LR(SH?)g*ShDKdJEqZ`w;^eeRjjb=vsKN zej~eyAw!r4>mtXhDmb<*?W-0h~WYN*_6>=E#Yb#nxdEJBz3T0lZHDNe_`TTa;Uq%A6YSw^C-8EWZl z`tJAVp_hDzf4o6=8(Inu+TYNK*}6ZYimUtG8QlaUGTAF^0nQNNJqC_{2TcE-LDb$DMoie)DU>H;B-T+9zS zP!};VV}estNI!?feN-EEL%fk1J|k1g2lYjxZJ)cMJ|uK=`J_f|#y|4@oTT?=QPWP! zZd0vSu$uP8KFjQx1NB2mdB7u!==KF9zsEu%#T6l|U5=w#`ZEn{AvnKHT{ zVVPSRFDjB(PCR%q$8Xz2iCJq?IXJ0JG&MCP`L1CRe8lNLgvjG|=_Bnk zHJ}H3>i@`((zylB4o=3zV6RBPin3Y!x=ABr>*2-k z3boK-Vyd1@*tEE}o>81g;kDp}9@+$_r}i3*BkVcJY16sMC=MO$L@lQA65~L}_AyCr zx%3fTf{lti_)Sre@p(5d@w%)xWA-OT+;5DaXSPd<&~0vNq&6@U59cI#wST_V;MnH# z6Rbpsyss)z`+6veX4YlyE<|-)ISM=2-?wo6I*zW|sB@Ce=cq{7Ngdwq<^D9c%bv?? z@cx{nVtY5k2GmX5^(EmQ=h9b^$~<*Mc#0KCT6UR(xKf{;TY-1uAbG*YA`;uz2ExHM?U$;XNSbqrc>vrPxN#{Pa9Vd!%CNxc@|*Ic)lEHRr4kZO&?f_nqpue zPJb4|MG%g<)G&4k+6J(Anx>J$XnDA_l(9>Xua(h-&(>IN*#*VS3!=#!0j7QKK)26m ziEOtigr%~b23Z5JN!+VHh#)GXzMVbgj4jyhK3t&bY`Mf6>~_CiChHvF2d&aLF6Iu@ z$K6LIm>jEmFsQG3SQ=X3L1P4LzmpdG6k&Ej9oAWp{D}7mE}4XA0arVT2aC7!aP?z9 zF9L3P-#Wqm#6$Z;eKqGS2d(y9h&rCucy@!mRM7FXruY>^uBDGS{`Isib8(#R!r2UJ zl56@J$Ecg+oHMz6mv0i1rm4kxWZwpuH_QUt2X)K)bCTOI&HlOD%^j%YldFq+YB}@a zZl&tDRj%33X_;MT@O^(y(k~r0aj$>4K-1+~>v_m`TC%L#=Cb_C4u0K4pC$44#S57; zE?g4qH^C)A>7qNY#rHzAWx!XPy!RbZq9sj@z677+OW(VESd!|{3ef8Y#;bTsQc>K% zbpR~hyXq-HW(QNbh_5V9Jy3Y3>S6KV<#y)#yKxqu$1{r4A)mMGcE4Ptdcw2kSt9Np zh3EFaG@hY#zS^rt-(chTPV18Vl6Y<-(4`#w5io)F(Zk;di8+JR$F`COD`cjcQw*I4 z@9~OO<&4HG%770|@V{sed_-T*5UVD(jG-VQ%+ zkMu+f$`g@3o|8D<{w3Mg2MxwT=E?m_RQ91WlYugKppFP8iLTp$I-!M>@23{fsltS9 zPE3zmZa-ckhQGx8>fC{0D^G*D1DysUwi#|d4WmMEBxqr#zn_< zf-RN1WJvrOsv~f&`lXMwH+aswu=EjCyFAhVeV*Of4Azy@UbAbSdhKJA#vH%G+YI@Y zRP;5a>1bq*g7B!RF*0D0h$@~=390P2KGA8aqRJ+9OoBM?aD>v{))rWy`uVuF%57u87#!3|fA*yG= zx1E+XV_h2X&@;uRy`0}(-`^`ad=GbesGBCiceg_}lN?UnAs;{DFnGH!bgM&CCQotJ z6N^Jp?B*)!s1kH&G9eQG0l|xtv6{q-w^G?`4ZjuV4kkWkOjJLz4;N_4<-0a_laH5( z>JrM0Hh@fTcps46WhN1vB%Z(;k6SS-J@rz=aWsG-aE?!o>6&_R@f!$S6Gz~{%B90y z2%|@2>mC!wj)?fdSqAew0uGVll3w-H-!OX*mUUo^kC?Yp4;F2k6K$;YKM>~&R_c$O zBufiJ-(|a)xTFP=qsrmZUdCcbur?_pE8{NgD9)VXNQ4kGj{AaP7!$^WSyiy^J7p)cZ4T*knnxNhkSc zMtB0WaP1+XqlXmIp%O-9v#*yQmCY*=ZPN#?qy^=lk2p3bKdp$jGKp{{nLXXf0{ZA+ zG~mi1ftVNotb=4s%mY_Q6xA0gm-X8Ma&Hd>wj+oUn<;wYP${_La1)RcBvPi{YT=H( zv3V4c)V;n7QOBembIv{kp4l&m2)DJKC@wiA1RzrZ51^^Oswaf%&tOa~ybDzBTsK(q z$8u0szMyU$iffUaZz@E{;)Z~ESy2!d&|`O3lgw}(OEMG#=+NA%(RIvIXj?W%-Vp9W zR3{qTQV}1oiJYRW?4aDIKL5l?M#U&ANqI_lAX+b$+Ioxvo7+$h`1wqn%l_meH{&Y{8nW z@(`sRa_XZ88fFuZu*;h=z-bZmudk9<|N1I^jx(RY5eEJZvexquXF2oFhZ-lK)Gu-R z3`LUv3Z8z+e-)K>+ppwI65*>|q>Xu0DD2XAl1Ju59)w6-|jbn-h*Q(7=ZovHA5tzqbj-Jn8&C2`MO4C-C=Gx9?3v?#t&~b68fJ%X|w1*-#$kk{J-8h!GHcYf604| zWpIvp{6(8chYuHM_MQ*tZSt5O+YSEXo!!xUtVgd+Ze^eC;bIFN{`ppe{k>n_I6>fl zzu4+O@8uux9@_nYf0=#ok8idH-}6GFMgRRLC&>f-_nT+<_}f2raeRBk^YPtk4953) z+j&=>ozouQtrISf?>A1$QCptXBmm3`bGEI^s6KbYOs` zgL3#o9dazcDq?v%K+Xo&en|AxeHN!4y}{KK24%VXOI1$!5gd9f%T1J zg;*2)?-%kCgdFK$*y zdMW4?qRM|rfhf;&iEHq}`!Bw(hy{rsB|^tAknH&#i}iCH((YQPsNu%COtaxFz?7vA za)2cD$X2rA?z^c@$90|##4pjt7}jm;ooSc2O%HChi=(~=Ygd>mysqobSyrha>H|ZA zJHG?xT!yPVp-wiGOjh zj%P!&aV^u1ou34Y>~?-C20Wge)qYC^R9rh`O74jqX0bT%@{9ODYWHuQP?5!bvGXoYxVe zw}c%@x+jM>#lpjEcl8P+Q=^sbX^faz+TKjnjvzx-J57MidB~5x^bu7SJw@3*D)Zb# z-fu~!o;%QKjO!>^zDL%9S=>1S?CczI=Lj%2KMd74XN0Idt5cM5{Uc6${1~j;6;mGT zb{Uilge;XD^<14j?i$^NylcbLLhp$<+3jLPe!svcvRTtY$?QYE(-`XkBa&Zr;lXa- zz?+g>(K#&IzhG zUpVc*gVWyn!H*i%b)oSezDMjRb7uB-A8~di8xCzLH)*up#^u7K=yml>ce|S^j;rY9x=M+Wcux~% z(}-J5i&4C@g;s6pQ)&M7GTG^JjoUiAVBQ9pn;}rA!Wv8avOUB4eLb`Zp0Pm!QS{6< zL7%}k$TI|(c90C^@iCaYQyX+_6Ur^Ye`!ikI|44(k+w+$$DAEmueu9SPw8EF`E=+x z@{+Uj*%P}67o(5*GP8g-bxanBsX1!HHE|mie1lMykq6dDU|S-T%ixyT#2htWwp3?_ zH)p!=VEcGi>!jTFN#>KXC8)?tV3l#;_FP7=NfpP7_ki2iTt-S$q8B-_Mw}A;|L^Nc zzZ=JK{Jfnya@me=JE`iL>FKxM@?KxnyZh(JwqmQxwmi0#ROYW=;vf!E?k@@OqbyMr z4*&##d!G0t?&2&3q+Lw-Y%Y4pA)U%GH?oV2LxPe!X_PpO$tXHiyF~W{#7>sTb0<*k z_+SqF=(bQ5qfd@t?}B1ef;d!uhpa>~qc6ly9U5A?2lNJwqrh`a82SSxMF`q8;r3z0 zmyS;oi{sSLz$lzXHndb6T&mb?r=&azIu48wKH{(pO?l=G$ygU zdI+O)ixk;bI!MQ@z&mofr#QMdnj378rwO~#ggZ=F^OktHx1#^MDw8`&{g*AWwmt42E(q(T=!ZzNux5 z^j**9WoQ12RZ>Lv`rL|2XO?4bZbUpPoE_><%j_w;Pf3|OQa4WuO(;Go z@rRWZcJa#vwua%UqAo{`;yzD}-o@T~njHJftKzp)1hzdv!Sqq?kf5N6cgEBd*nXq9 z|Auped*xmqY<)bs{+kb5zIBRWG~Kpu+t0pf*MGD-+d>`D9r2i%ABkX zg_7nw6cX6HhqV3<_ByKV(BzGik)ZkGNUxnJ!8PCh#1hlJaPRWd4{YeA{&x zG&12;NmLx?nOO>Gztw`~Fm{|Y5^cP(E4tGD-RL~Mk|J>t6#7FX`3MrPI)A&MGWI=|z5gTUO# z!3Tq|b$lBdS_UOyF$2fMv+`jGUX{gapk&fz%kRtTT&~8BOYX1*RZB^!uXOW4OKM+) zXi`?PMZ10{h!rM0nXSw7lPI^<43JE+S>P zS{{bwIN@ms-WwEwjscp(z;P5C1tCuSLo}{RMAqwTBye+ID9Uh#EDa3$Aw}&$64wi) zxEtRxg8?IvjvbYLfaiCmtI8MQG2D>3eBxOVw&)H)t=X^7o2Os2j!DU{7fXJ-Sn|7; zeDNjOL~^$b)vKcU!!qd=SyqZz$gSCg1EH|BS`lp?DT3>JW7g`@L6l&KA2_F_Q3GjhEB`zn6IJJ z)~+#CcqG&J<1Re$tcsf8uU%1$#;bMpjFZ=WBxGJAAas|$P%4XJ7-90$Ftq%Zu^>tb zmHd``I1HWq7QBIklBvujpT-ByQb3x*7S!vBXVq$aT}Zl&pbn9T{b0gfIPNfZFL~aj_0Lo5)RcLD4CUpg-}W9k_54E zZkeQAMF96~@)W4nKuPI&v{G-1!y(EONXPOI=O(NTZ?ro~Ge$p78IlPrr;3=xbPse(gexB3;ENo|Vs`Fs$Vh&&pdUOrfk2UOvC#&0%C2 z>9pq~>`Q|UP(lODS};uZ`1w)+cG}0b(rCYbEf>pTM`nf%<`&?1Adb^%fz|L>FiQcs zl0)qr@OaWod6XSDN-w~dJ$Tf{TYvwp4qa|SliaFYqMDf~m7BVT;V^cbX=FHXcc_;8 zYI*xD2)N<%Kf~#LI1jPjR^V*%k+D%*!r;!XKBBWj3DNBan$TLKsDTqNm|4`DrW?Hl zV>B|y$_ogLejbj?uR+6)<79{n3gI=BmPUve%JI~8WSRVmAheGxVfk1104?E^TaBj1ykIc8tM;5#24L z`YXiPrdSq0ayPyL8hQmB72iXc*7C@aJTTkn(9k*uH+v2Cbh|98EzG__fan{VB!>5J zGP-;Z2PODuJLGsPArsD>#%m4pi)C;&iLsS8)oNAl?KUfL#W7LhhNB8_n+t z52xo>_Xgy&DhYs>_09TDZatF>!3(?A@uofuJ&TtNtPnsyo#qf;+H+n&^gLH*3Lc8#eNq;}pQlMiI5IId22~YsuSAGQ>7g0}_+@&cgdT zHV5~e6~N0nB74Cv2adDfH~whoS-J=)F4F42NGc4?UJE=ZRKpf}7>#o6KeB=}GOfKpj5P)$ahXg0nU^H@o0`h48ud2# zsZG4fP5{_<>Yyv8ngMWDDi+70rzA#___!GN5V<2)wf?sc$$3Sy+DuN*V(z)SfizzGXoIXvP_ zG8OWRBFv)J$}?5iS#_q#&!zJi-2GsX-alxm*}X&G&o7I2cx<^mo6S-6vy7}TWcUjo zIso9fIZFZg{@Cug1JLD+wj8wTUS}uL$og_-B^KO9L(EHk{%~&g`*Pc*e2PH~wHyGUMrP#idz0k8Lec%B-ia&;D zE}9ia3xogoK@BbaOfa6WqnJQ0`09 ztWXxXwydmkr4*;MraB~Z#B8LsKi)fR-dziNL7gX6d?9xV?!O3NCmTKyS@ zqr3L|_Be3v?%1B3i2|EeNqHFiUdMB;!-O}E&Cfw(s6Z9w{66LPLzoq=&+ty0&@nZP z%?>*F3WAWI!i5+$GRh7&6haaNnr=}Y58EQfXhp7Lk{ z5*8!p3CDr*geT)z-|%Dv>jWA9m6E=M6>RJ{SvzC+^=kQTTi#J}PE4!yHnNP2L<#S> zD2wH0;#nhJhH2xefR^8teNc+3{W81+41+Lh&NDuTQ@O76Z#0?y{~w>GpAG_5u`LHH1H?Qx|qfQ-m(sFd3^D(jf?Ta3D#s@4qgN_x{{|S=7IMDSFv`YQf~TKmApqNCj;dwLkH6C|2dC z7VOd!ec^>C(nbD>4(rC~P&C*-uIeBvRQv1arre_7(81wReut3F>ddFlPn&h!alN$T2(o%H^h-1Stefbf#w%>%Ot(m&?=Q8MqUJlPRmgf zG_=efjMeMDP$Hobg6VygG=^bx7$pO`W#lUvm(t{Uu!sw#I-0nhisoS5Pm?EeHfGC6 zUx*;@bbD6TLr`?hWH(KCBiUp2F_@mfH4el+h}PyrA@oM^5V@>*49y@OV!Ma8%t>U5 zc39++*9rm+A$lr*(DTEesPLk=0SAEP^PK2^iC+P|QG%~C)b zlVvvuj&cM5G_|*Z52lDYoO4L(!{K45K9&(tF)Vp&iut?s8EhZSxtr8j7&qX+q;VZI z15UyET!EFCRq3(gq@Tv1JDA$)jmB6v2uDY50`Oz;tSZO;TnPU3QyVDb@?5UMGlKkZ z{J5;q)fl2qTVDdts*>>L4h>8bUK#?oW>~!&Sw@DoCNGr;!jCPO>eZ02i^Tb%q4kyE z%r=hUfs%GHg+Ni?z~T(*IR*imD7r;`E{L4X(Ozt_+?b1B;V@{pEldSHia7%Bj>89I zkWie-Eu2g)kM};Hd3BhjKFIHy;B;^^-WD*P2g<}hnV;!XI!bp#O z!D1ATZm~l0RDx=B8h937WsVV0cGU@U$6&k(KJwI7LWiD4i3O3)M7DvkwrQa|I5}{J zwK#32kTe`L6vi{?3#Ga>AVJo;kAy1;3+UlK5~k$vh8Y*!LBwCa-rGHXboEOCnUPEZ zI_D+4c5=npIWI#*?3YvZ#cExS9VgG-m#;y3Jj5otS6*VwEw&tvKAx-mWD938ioXa_tN%$fy zdB`Jbz*Z}$(?4D=(r4yjJK{C}`inA|_LJx#vHZ&gT&+h*NRfEKKQ0x>!YSb*Y-Whh zt*ERvi)Opsn1Bhh6p-%<+oo^V_!q@Yp^OHONSuG7Q}}yOhE`n(<#ueslKWv*y?`qn zp26nLoIIHk-2R7lSVX+GVwOYbm_G&NHndq;(KUo6OT)+=$j%$I%k7)w8mi9dj91>M zG=MRINTv`fmc0Yd!8`aPjZQKMY%#AWYPJO+&J-jVAe(sfi+pUsM0;Ewi`5na-t#Dn z^PT`S4NMbW>Z9u+cY+j9wHu$L6Ey@Vjd6G}X<3ZWh7CP-oQQvfVg_9$<(|jlKbX3= z!8ABw8fS!~HUV;Ttk19q`r98r-?KU`bH*$MQ~?a10Ms5)8$r(xTK5rm{2?n&JkH6Y z2pQNQz2mv;8w}Ud)rXg2*)+Q@{gXb$<}U2{9}eILb-D#rlhbnbNWB!drw*HCIrY2a zk<&~BlmG>pEoEJo(lML@Mp zAiw30VK-h->!EzhTG`+>SW18^N*Cen}kn%>BkpUV()K#Hmo*`;^;GF}ragswKSnPu; zMu`}1V{9GVSTB~}tWyJLPQnI%yif>V=ktX!K0B3`(s8L2#dCrw$j(7skqq3 z0?#smccL6Ch^knNrU36sosX=3h8D?t!GdAW_+h{W(}b5+S3G{+ha6Iie029gFLB4o zHDDwO6I=PpJ95}}^b5{2#3-z$1jhM1LqufCOK=AGasik3b>%UAa0;a(L5@!(JXZfx z8`xe?<3<%l2y~AfJ5D4DMq!i=4K0f!V>PDhh-CU}P}zotPHRAm(AaTuO;n?3iFTaS zf>2zdm6Te<;J`tm92#0?q=>Ox=UFxE7Rrp0ILfHMeQE>EG|m}4a90vPP(Q(%gND69 zE9u0uIt0jtJ$?er90m>me-Dey$0Hr^zeeXp6cuoir<3bSO6%~lK_?QGmWN65HoSr3 zaLRtjArbMDB32pbXjUGh=?0R6Et=!LJYJF5@ayVEUw@FdgzQ~!IM0fFQ!x=OH$k(T zcvi;NwpttuwH$WTHwj}b;5dw4;6W!n*K7P*ghVg0R+P?=!7h1q`j&L1F2n}cF?L0X z?;v&n6EYhuK%usomS-8lt3;0rqGCBoc)qL~=G1SRT3OG-o@m0k(rEk4bv4FO&4aQZ`Ju zvlQ^Q8ZN+jcAg>D{&O~ob*2fg-S%y_FW~gSsUtQL9D=wH2dVY?La8+c5X|m_V-osX zB;=Ycgp-8ukbR+~4~1udgvuRzye%Q)(Xl$%4ro^3J=)Y0-i!muv%P=%HR1nA`2R`x|4sP+`?*V7TpGF2vC=#Qhe@L^l)RCMZPY$jhiZ$F;;vD)#vKr$ z$W`b76NA}dyM_*jy|8;M7A6Sb#Iw?EoeV|x&KzpL8fCeM98xXQ7D2`586qozB3qm`HMxZOU6G!qec(jh!kZ?(1r$P5QeNjR zoIOM_lbiOj1=IC7d|s5|AqBc+q<^3uiyoOm$?W6~^GIF=*xsS2&qB$}g-r)*8RngE zoG$VvcpBfcZ#QlE-Uh*qkdNn3onlvgWc~N!OT7(pSl#3Q(hbNp&isC!Au=mzmgyVR zt+5pcN;+jc2!^K(#y5ubXPQ89m!ofeX)yBVgPsvc#oZq-7fJ6)FJZ~`%LQECjS_QU zCSoM<_y|tq>7zckqAH4ODL>;Ohvf76Obn>RJhosLuE&r6*n(ZSo)pFw%-3GZU|c@r zkjSjQh$ewgZJL5d}z zpILEkpkNf;hHy*-MK~}s?O}Uk@iENP^{V{d7aW^BVP`dxA~DMIGevQ?>v05yZ^$xF5#FF7~g`7avgbuX zsE;szfy;Pvx`xEVFMyZ%4wF;P!STV#(*$?NLdRCO+t}&w(jzXX1%*gvb(y zP5jL*9?x1d&(9$8l4o;qyd?@lX<%NrZyE}vyWBKR)H@gU7~6Gd>|$N7o3byITnk<= z5H!14tv1!^JWY7*AB1nfNHDUDn)vuj&_=rBV23!gG4t=0W|@s4<%?~ zR-OV|;@u16GcBLWe>cUp2Zt?SFtQ!ldl>xwHEzlO{`H1tZZKaCl$2M{So1J#(lf!& z86P<`Jjj`VjdNE|h^^U*>ihybjuqN)x#E)?qCCVr*Fm1&7LyFYXWuIf+MJ8LLqMogkVf3|xd47|UKKmyu3i<}u7XgR zDeX2ug8Cf?ty$NB_;LXkmB)EnqUM_+#&BdxNT<#rH3d-~3Nuu4-=1NMU(l${u_tcM z)2@tV^a>E6zwcnF`QAZ$M6@JzFrQzHIzD!s8hsm-{wSeNmpRVP+=)9rIBG8KK#?Zy z!p+KhBED(#1;bYdVeR8bpylRK~@q|`=}EmfBLI)AfntR zIgoP0sLS7JLjp(e$IC}b@~8NS=2~-SFxSg{pmV+4=N}c=4vM*;>E@i?K8YajV;o2L z@5TA$j{Q`MZCHlx;&KF1P)8V$mZS*8pgZd&G;%IOakP=c&eLhxEQ)~~BGlw|4njSJ zgfg4Y1G{tp?jxaU7VIz55m(yoP5~nwNdZP6O!&6z(AhBI+n!ABizy)Un<-$o#0-%& zw0H%V<1YP^XOYgJ!N$dVk!BLdspy760IBQ?;$HDV9*6`a;Q9mjFqdavPS@VPbeg*;4{Hg!+suBa4)P>eKz$ zf=RojUY^jwKDB`|52S_I9X_|BGUn4#>T+4K&@>n<%n!UHbb~A58yH#Wtb{Ra%u>Lv z>ucu^G0zaSpxF|V7;;EWQnrXK>n)h>@vL^$6HK!oisl$(%lmj%T;d6)fV@PM=@0dZ z)}DEW$V=D~vSvKwQ0tv>u+1~XbWc-Kucrww6NSYw!b}RZJ{=o(o*~lQwuBY##}=%$ zwy^!0@U8c4s~0W=^9*TyTa3w>0vE0flXVKT)+wf`Xu(>)IrX}S9BQoxtiZDrxNv2C zn597bm5}-(1zPJ$Q}#m+slbmuV+Rf6JfvM>*XQpU6WMW=0c*mQ48M84{MD zNwOXBGr-fIH}N^VLE|?Fxn(jhE`pjC|9u3rqrPA~hL#d>IH9gU#2s48NTp93NGsvKZVW@@)__sgtHbyI)CS5I$O`F> zUoPOXoMq+cP}&jOJqSc&$4TdX#ZXR9iwbO(W5>zZkz}7yA|p$gcf}+OCuLV)x5Q}| z^9Ky0M8-xqJ9-Sm$td5$bGhGFrziWw!MSe2Bx&8#`xMaTSkbAMVtEFk>_r!#E(L^< z3OaFMv(l)=Ho9=A)imMdds_UoEf)Aa+d%oASs{PV3;5;Vo!)kfdOL79LhjPoQ{mj+ z1zd%rmU61akC%(2Y4><=UHU(>hq5-pNdHjb7Gf!1cAg<}!_%QMLHY2=J%vD?oFP4T zL$O2jYtEyscoPJz3eLBQ)o#gV{c-Bsf^y{NR#b*Rt{yBuj4Y$W-_8j%XXTK*m)XS& OQuyEg_W#x)D!>40V%7No literal 0 HcmV?d00001 diff --git a/addons/dashboard/dist/assets/materialdesignicons-webfont-a58ecb54.ttf b/addons/dashboard/dist/assets/materialdesignicons-webfont-a58ecb54.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b00c684d3ef14be87f0badd2eecc88babc70fea0 GIT binary patch literal 1279992 zcmeF4b(Ga-nrn=0(;WO-(bX$mYoi+OR zoo9{f2RzT~BY3^u7Q+W^f8ap_c1T8DkZ$X5G-TN5t>(J_;(qDA*aK;nTWssWgSH$r z?Na-4_8nMYYl4=Crkn%61E$}4_>Q~2HOH9e==&fUdC#yBTMT;gtZw_H+v7YQ`M~f& zyKX_73tn%)$rHe?Vd6B z@GN7-jQOK`k4paSewVSrYxS@A9_adKupjr*9_V@xbiD_< z-UD6lfv)#J*L$GrJ<#hnO?XM+Fp=hF3F`N#j6biH@~@qdl}y?>7WD}D|CzT@xn-}`I&kA7Zz z|D!v*`nrCmUGIUe_dwTs;NO1_bp7}5zyCA(@9;kAdLMMX5B~l>?|Lu%>%15KD}F6& z$A871zrR1b=0C^#^M8L|biGIZ*I&1;pU40D^XU5Ly6flB^&aSY4|Kf;y50j_?}4uO zK-YVq>pk$#@*e2=EdT$0uXg=x{@*{Ff0p-m*I#GXuVL4FpzA%*^&aSY4|Kf;y50l- zD(`{+$j_$L^&i>yukthgXZZX0&;E7$&+f0E@xOil{a5V!XZUsP`fL2x{NGi7f3N?2 zcKtg4YyLWS{knGjx^}$>y50j_?}4uOK-YVq>pk$V`ySx`8ytToB!5C@{V|rQKR2@5 z%K!7vc3h6M{*=ernf&RL`3$04sduEaSWJ|20^@g>d) z@CnFkPAG9sgil0Xb7F~e5_}T!nv+VLli`z**PLAV15=q(NSssRQ*x%}R1)XZ_|)Vz zr;#|P#iu2&Ii18gJw82o%^4)l8Sxp(YtAHb&Wz7YUUL?Sb5?v-@|v?roU`NgPgc!2 zB+fbUImv7Gl{n|Z=OV8;x5POQJ`Z`#c_q&I@cGDV&M$E;fG@0jJ)RJ66X^5667_PlsK2dmm;sZw8Xg#z6^QIWhKt#@a4#BE-!Je zfUiJav!C#1)-qR=I9I|~;!MqzCC*jwRmf|uDsircuSQ;Tb%}Egd=2uNYf7AJ;cJoC zTwCJokM}39xsLEB8Z+0GIM>71<4n!j>bom*W69w+#TPYyyhMf=breUm<(W@$1QJ-XL+_ zh~G$F^CpS&X8dOInzu-tx8k>w*St;QydA%tyyhKJf6983J0;G$@Vhuu^KOar9{e8i zn)gba_u==E*Sufid;oudyyk-v=R^2If)1N;N>njcD> zAK@R7*Zf%G`~?4myymA8=V$n5(IW;~tdCh4g&S~*!$!kt0 zaZZmuia~*sg z@|x>Poa^E1k=I;b;@kk=fV}3066Z$vM&vaINSqtv8~O-;})OK#6lRd^7Tz zgCx$)@y*F=ZXt1QiEl|>bFjp@6}}aD%^?!!*7(-sHHS)^+u+-f*W6a(9EJ}guQ^=e z+z#K4yyggrb9;Py@|q(h&K>X_$ZL+0ICsQ%B(J%X#JMxRGkMKjB+gy&UCC>XmN<9A zcO$R4yTrK%z6W{DJtfY)@V&@u?k#cdgYQFLb6<&bKYTy(n)^$f2jB;g*E~?-JP1FC zyyn3Y=OOqZY5#CZgM1bNLPCC;PpqsVI>EpZ-$A46XASc&sE{5bNO z$4i_i;3tsRJW=922|tOv=E)N0DflVmHBXf|Ps2|muX(z}c?Nz4dCfB=&a?2d$ZMW0 zah`*pLtgV-iSs=CJo1|7OPm+r7m(MyP~yA@zlgl%#S-Tw_$A~uFO@hi!!IMRdAY=S z1%3s2%_}9&tMIGHYhEpJUV~plUh`Us^E&)G@|xF6oHyV%kk`CX;=BpJiM-~`66Y=W zE#x(Cl{jz1ZzHdHyTo}1eg}EYJ0;G$@Vm%s-Ys$7gWp45^InPbKKwrNn)geb58w}w z*L+aod=I@|xdEoIl_{kk|ZC;`|B! ziM-~|66Y`YFXT0Ul{kOHeiF0mzZt|M*NSyQH z^ODz`PvV>(pP#(u0utwf_=4m$7m_#^#up~9xroHMD849p&BY|n#qq_-Yc3&iE{QKm zUUMmlb7_2O@|w#?oXg_NlGj{L;#?kIp1kG?5@$cWA9>9cCC-)bmB?$ZEOD-auR>mP zRf%&od^Pf#t4o|~;A@cATvOs)3tx-8=Gqcxf4o0=&2=Qsb@6q{Ypy48u8*%zUULJ9 zb3=SX@|qh-oCELyzI5)vJA+Ncq#5oWjNM3U@iE|J>h`i?J66Y597UVUzlsE_D zgUM@dC2; zcaS(o;iJfF?kI8YgzrRNb7zTj7kn4;n!8Gzqw&$?HFuLZcgJ@puepcBxhK9SdCk2f z&b{%y$!qQ-aqf%nOI~w7iF1E^fAX3KNSp`a2a?x3Na8#gKbXAcArj}I_@U%A50f|# z#}6m3d4$AyBz`1$&7&mFqw%B3YaSzU9*ZAKUh_DK^LYGt@|q_|oG0QZlGi**;yf8Y znY`vH66dM-spK_JlQ>VuPbaT=hQxU$ekOU%vn0;5@w3Tmo+ELdi=Rtg^E`?3eEfX! znioi%7vdL^*StvLycoZjyyhhm=cV|iNaB1Lf0(@HBNFGM z_@m@CACovA#~&xJ`GmyzB>p6M&8H;Jr}3xBYd#}!K8rs~Uh_GL^LhMv@|rJ5oG;=p zlGl7m;(Qr@nY`vJ66dSCblQ>_;Unj5mhQ#?M{w8_Nw`6vD-dCk8h&N28Ha%M{;&Te=&ew$Ct?hD zt{`#t!~2ofTv6g&315l4=E@T1D)=hoHCL55SHo8$uerL!xdy%ldCfH?&b9Eh$ZM`G zarVdilh<5F;#?PBm%QeB66gB(`s6h?kT^HQHzcpQk;FLwA3$DnV~KMUd=v7Tn@XGm z@qy$uHP=2jBt5PS%E&8;QQq4-epn%hX6+v3}j z*BmBs4#$U+*W6Cx9D$D@uerU%IT9a9UULVDa}+*`yylJ)=T7)e+ck-HhNSu4(dy?1OOXA!c-7) zzW+Bn7C#oR>^KRpo0j7xW+&i$|8I68ej;AkNfKT+EhkINPQm&9-|STURJ^j&B)o1~ zPM4USf%E;p*_rs6cx7ivc-^#|EipR>KZi4woh#vW({i4~?0o!u&Qx}Rgx5{Wg%Y!i z@QXN8*~JoGH!YV)%r3<*nB9-x&zZ^|knp-`c~D~Z5dIKn zDtlPM>!#%qiP@w0qnxSiF$u4mmd7P#PvCt2Z}ueqBwpE55?(hgPfN_6!TJ8*>{;X?a~@_6E-P z|7LIEZ{n4`CE<0`^0vh69sC{6RQ9ff*GG92NGU4EgwqEKEglZOl2QS zc-^#oA~E|E|CBS8eJ0^`)AG5*>4hFH!Z(Q%>Kan{@?6R z{7<~Hza+eFTE<8!>k&z1J-SKEy5syG1O^@CZ zvo^eqGnKVVc-{2qkeKzs`*5bRP6@A@9%D(&8oc35Wn)Wt-SikoVm2;5E@vtmPr~b_ z$M_Pn3GfLxQ`v+PUN=1^l9)}5Pt2LhCXw*E=`pFqY%-kB|7MfpljD_5A>nn?V@iqH zR5+ji&8Ehu#w(jf!t18Tv=X!F@aZ^H+4K@#H$7&Mn9YdK$eGG!lJL6eF|)*M7JL@Y zR5q)G*G-SvBxbYYvva1hIV8Mpddw*?>x=j0Ol5OPc-{1vTVgg3J`ZOqn^(f?rpJ5| zv-$D)IaApJ5?(hw7L=GRgfGOI$`+RJy6Lfq#B5QV&;MqN;fvvwEiV4vq#jG)OOV&| zB_%#z3SWx6o-Zx&`7-!2!Q+!kMdOlF%^Ud(h z$m{taiO)C3Hz%*>TS$DqCB7wjJs&Lb`BwN=B5Ayq*u2_4t&cg1%lujivBKHm-Bjl7=kF7f#u_#Wi-d{2qb_rmugujhM9e7+C94|zS`SK{;i z@cqc^`Ti20AAlb~Ue6Dd`1~OJAo6;Cu*Bzw;D?ac^Ft**KMX&Nyq+H}@%a(>5#;s! zNQuvn!jB@a=SNF?ehhvLc|AW?;`8J14L^;%o}Vu9`5E{bNFBK#uqdVaCQ=a=A@kk|7|B|g6lzl^+|UoP?a75Ek8_54bS&#%I- zBCqFHOMHF}ehqm&zgFV&>+tKy>-qH(pWlGrKwi&pl=%E6{3h~xezU~qx8S#s*YjH? zKEDmWjl7=UF7f#t_#Nc+{7#9_@51jQujhA5e0~pp4|zSmSK{;g@cYQ?`TY`~KY%|# zUe6zt`1~RKA@X|uu*Bz&;E#~k^G78-qN*pZ|dWKwi&(l=%E7{3r5y{=+*YjT`KK~8>jl7=!F7f#v z_#fo;{7;F`|HA(wujgYV^}IC_o;9uAB=x+tyTs=$IG_K0-UIJ}*Yj2h&zjbr5}q}! zy(B*GjrZn!J#Q2L?;Wk}csqHW?T~P;Y3(ENY$x8ynL0a`#Ip^~=YP+RjgO7j*>NPE z9Ty*$yv~j%;at-?zQnT=;C%k)T+=$C#IqCOeE;v+iSdc?Iy;HPvy@*V3PK!@VUT3G1aIR^cUgFsq@EJH$XJ?dn zb|!o#@;W=SgmX>nEE3PoiqFcKIy;-hv$Nx~lh@ffB%Etn=ahK1FV5$G&NZ!bNjy6@ zJ~w%tokzmCrgdJ4XXnG`<4m2MU*g#X@CC^0?1B=`HLVLtJi9QyFlXxQA`;Ioiu3v3 zvy0)2;dOR#iD#Fi z;7pzEC-Llx_=@Cpb|netn%0#io?Qj!`+v?gt*c5ryBfY4d7WKd!nvk(4T)#h#Mk6Z zon1@f*|qVt$?I%?3Fn&DbtIl$7hjh%b#^_8XV=I1{@=43;2Yp|c0-A0H^Mg}ud@Rr zoNHP)mUwm(d=t*p*-a&$9f zvwPrs;B|ISiD&o1_ad*edrLUiwC*GE?7sNEoT;<>Nj$qhzCU@LJwU>_ru9IHXAi;; z;!K@ASmN13@I%P!?4c6QHLZt9JbO5PIA`kY5faZHi62Q`XOEI_u4z45;@M;HV>nZ1 zkCk}#IQ%&BI(xi?b4}|B63?E9pU9aydy>SnC*voR*V$7foNHQ7m3a0v{4~zg+0!MS zJp(_3yw08};at;tmc+AX<7acG&YmOj?78^4+J0k z&NZ!fNIZKdekW(@>|GMi-i_Z)UT5!-aIR^+SK`_G@cTGZXYZGI_5u6>@;dvVgmX>n zLlVzEj6ckoI{S#kvybABlGoYCB%EtnAD4Lc37pUWoNHR2lz8?joX`KBeHwonud~lc zJo_xp_y3%0TA!0}u4#Q<;@KB)KL2yBX?;=R*_UuW|9kdj{AIk(z9RALt2p2PbFOK9 zO~SdR^>vA7-@xDCOr3pG;@P)wKL306ZTxM#&b}k@?7R58D^A!N(!5d*e#HHy%D7dEFad;=Kv*3CQc-gc9#fg!B2IJ5A4tCEl9^ zpM<>bO)Bx;WH{gdbEoM!xx{-@;C%k)PSbNriT9?$ry{R=Q%k%z4L%Kd-J4e8z3K4j z$m`zp67S7`^ZB1UP0tx6-kS-ZiM;O3Eb-nf_$=ggZ&r!-X2WMAuY0pgyf+6v2YKC_ zQ{uh8cwh3mHMICRY-cl0pEsZZtUiX%fcyC#J zS@OEKoWy&}xcIvuX`&>ytfj*5_#QQS>nA_@Kwm`-l`Jst%mdYpF2&@ z)g|6r17Cx@?yV{D-dgxtB{mJXzIuh@#i?2&w_tukmZ+(1y^18Qy#Csd! z80Pr$?M)QiT8%%!^!L3b`tN6z(


OYuv|>)vG&?_G{xPG0w}ka+J({7Uk=ca_9@SL0Wc*S%{b-n$mRmb~s= zC-L6(`1Ryhc<)a9 zPV%~Um&AK_<9CzSy?Z3yyBEKgyzbp6@!tLT{p5A;0g3k>#2+NDdk;yx_b~o2dEI+N z;=M=lN6G8nV-oK@jz3Ob_nwe=?@9bg^1Anw#CuQUPm|ZZXC&Tx7Jrt!?mZ{*-t+kL zB;I=$f0w-Oy(jVB`}q6hb?*a-_ddiwB(HlPNxb(l{xNyo`$XcsPw`L5 z>)vM)?|qJcPG0xEka+J){7dq>_m#wZU*lhs*S&8f-uo8+mb~tLC-L6*`1j;>?+1zZ ze#CzyuX{g9y!SKyGkM+nMdH0*@n6a7-ft4`{f_@mUibcxc<)dAPx89=m&AKx@G<1v z>lI1e>(x!dou*fJN!{z!BH>QctB1sUt$1tVy`DIq|Gn1>=YaQm<9z?`y*9iJuY2th z?liqRB;09w^^tI=>D4LWPSa~FiT4`3p{MSRE%Dws_&DTsZ(ND@#>2-WuY2Q5yf*

1#!d(%t2Hv>KcdEJ{);=P&hnaJzj%o6X-g3m%;_hyxNZ#H~3 z^13&>#Cvn#bCB1)IVIlfi}xk3dvi&=H#a^vdEJ{w;=OtCdCBYEd=l@?kIzqD_ZE#Cr?l3zOHqMI_!^6kn9Q?ky(q-s1S; z-CIWDy=C!b$?M*767MaKFHc_gR*-nFAKs6=?yV^C-b(mN)|Pm$Ki;3b?yV#7-n#g@MNO(otNhz}&Mdz(qTHwYg@UiUVacy9}Q z3-Y?RrNn!K@xe*AdS7iN{$8(ML+~M-ufDA%_6@~{l2_k068pBrwVG{d>N-`VNxVcQAf1dG#G4vF}j)Q1a?KOk&^R_~GQ$cZ9^gBk?22tM4d@eMjR*lULs{ z68nzDk0r0Z<0SSSj~`E7eJ4olI}tyTy!uX(*mp91GI{l#BC+pO{8aMlJ56HW>Gbp#0-{tt_E6JC9l5wB=+5p-%nnB4@m5L5Py)o`W}+l_b~o2dG$RavF}m* zQS$10Ok&^T_~Yc&_k_g0C-EoAtM4g^eNW?0lULs}68oOTpCzxp=Op$$k3UadeJ@Dt zdl7$;y!u{}*!MF2GI{mABC+pP{8jSmdre~B>-g*B)%S+PzBlnV$*b=ziG6S5ZibM$-{<(} zUYO+VD2K`r0M-b>JQ3)z?R2Unky4 zUVURp=xTa561tk+V@vEC2Oo#?)iYG|(-!%9%By^Z zdWn5A;4_d{-;5IbX2NG8ufCZj_RWINLSB8dO6;2rpN+iwW|!DE2R;XR_01`3zJvhA`<%+ z#TO;7zQrW=EsifvUVTeQ>{}9FlDztslGwL2zBGCDEhDjSS$tXY>RV1?-}3nKyP&*ufBC8_N|MrOJ05JN$gu6U!T1CHjvo2A-*Ab^=%}vZvZ}ky!tkl*tZG3 z33>HxDzR@MK9IcnHj~&l2p>dVeVa?{+XCN$y!y73*f$s-OkRCkN$eYf4Baw#Bz4ufAat`-bDg$*XTWiG3sR5#-gky~Mte_(<~V+d*RAD0~!o_3bFJ zZzp^w^6J}JV&5+KF67m>tHi$1_-OL#+f8EM?)dKH)whSlzCH0h$*XTKiG6$Hdy`k+ zJ`(%(#rGwzzWpTj?T_zIUVR5h>^l%Yki7a1lGt}JelU6U9U`&sQ2bEx>N`wg-{JV- zV59ufF3X_8pHOPhNc|NbEZiKasrpPLkMn zGJZ07^_?QI?^OI$^6EQHV&Ccb>EzXShQz)z@iWP*?<|RZXX9s+SKm1j`_9GBC9l5o zB=((;pHE(W7f9^85WkST`Yw{#cQJl3dG%c)vF}p+Qu6A%Ok&^V_~qo)cZI~hEAcDI ztM4j_eOKdGlULt068o;juO+X(>m>GFk6%w-eK$z#yAi*Uy!vjE*mpC2GkNvhBC+pQ z{8sYnyG>%>?fC8F)pv))zB}U&IL-{bh>xmDv3m{uz07e=ec7>HUSo?l18#IaA$VN$ma_|C+qI zzmeGeE&eTeb$=(Z`+NL*^6LIULT}UiM~U4(;XiSvx__3~{R__T|Dm_({j0?8-*A5a z54}zA-z9ecf&W2X-G55xZF>JDv3m?YhBI`xMN-{u-6ZrjZQUi+-PR(Zw`uDksqVH` zNp-jNl+fF>^^(}#8|U-C-EBCb-R*cgUfmrMyZhjM$g8_kV)t11Smf2+Na$_a#+K0A zw2dR7w`m(!V)uCXc-*b-@g;UofKNbP-4jaeo(P|ayt*fr*gXk833+u-DxtS&n@nQ& zzy(A%_aAhCNxd_&Gu_eK)C2jBz9t9xUK-J9T>kXQGn z61xZD1Iepu5>fT;r_eh-2|903h>OM+h_tE&#L-N#GpJ^??0yt+@6*nJXy z5_xr>EV26({1o!)K2<_*({`G~?$hzpIaA$dNbEinKa;$=&yv`EHhwmFb)O@#`&^vQ z|8}2;pNCiX`4YP?z%L-L?h7S$UxZ&oUfmZhmC)O?T_&;na{O}6RQDAU zyRXErB(LtPBz9koUrk=!*GTNX7U%Q7-PhsQ;njV;#O@pL8_28sMv2`w;Wv?2_stT! zZ^3UNukKqV^fqm`N$kEIznwGHeTT&EJMlZotNSjA-FM@6lUMgW61(rk`TTG9efWKN zb>AJTs@Yl$z`*jJuP1_q1yWhm$WyEvc!>22EHli2+}{yuqi ze;}c^Y5P!O_ec0goT=`QC3b&;e?nf}pGxfh4CnJdy-nNa61%^^zaX#fFD3LgZC^?3 z{u=+9Gu8c##O`nLZ^^6sJBi)j<9z<7w`u!9V)u{ukL1<;lZ4);?PrPIzu>=crn-NX z*!>&M=YM*ew%;Xo|AF)QpWdeJPl?@s;r#x8yT{;TaJu;jUZlF)yGiJ6+Ph1tyS+t1 zZ`0mGQr+#X5_+5Vo)UVS_FfXZd*i(myW4O+|J&V;bHMHnyaTW9J`%e-@lNvU9!p|( zgE!>WJ+_42rhOaYhMi_k{R_Yhnr_ssaroAx;+cK5~ma;CcH zlGr^rJ~w%F&m*yWUVL8i>Yh(x_xw1Y|LtA?UjVP}1toSbgfB#1-3v?XUIbr+yt)^a z*u5CO7|PyToxHl&kkH$-uPL#6EqpD` zRQK8vyZht)$*X%EiQVhs>ylUZdJ?>h#-A+PSO zC3X+Rhmu$KHWGT9_H8A055tFXrn-kq?A{LFj=Z`@NbKGo-=4g>M@sD80q66--J|eP zcy;e6v3nfTL4Z_~cJ#O^)tJvdX{drIuy3*U>p zy7!jYy$`+*d3EnAv3oz9&;NGskMECH_W=^S55x~7ukM2+b{~u%OkUlGNbEioKa{+> z50lW_v>z_9`w099&Q$l261$JWk0P(`qa}79gC9d)-N#DoJ`U&ezum{<$K%y~g2e6< z@e|3b`y`3oC*voRSNACryHCYWC9m$&B=k1zr%UWU13!Z^)qSSK?z8Z-$gBHoiQVVm z=a5(Txe~k2!}&Lh|aqNMiTJ_{HSaeTl^GOYuv|tNStuy-oY& z61%U!ui#8|Un#NsD*P()>b_cH_ci!6Azo z`#zk{|90Px-;Y=K0}{I*#2+ND?uR6HKa4+2UfqvK?0yt~l)SnhlhE6=KQ6KR3H%Ap zRQHn-yPv|JBCqbJC3Zi9KSN&K&r0lm4u6ikx}TTO+qAzRvHL~*Mb1?BOA@>h*j`MFn~q)*yL;ok6T92+HoUsqC3bh<9Jad;-UqMlPKn)P;bW0kcO#*< z=@?r=Z__c3#O`tNaXDYz<4NdkI>wjSJpn!eXR3QbiQN<76OmW<#1gwF!6zZF?nxzf zPliuMUfq*R=xsWtkk~yXJ|$}WcclDKDSoX`L4XgZdWxMx{>S@PPmoP-@s$MO>Q ztbnh;ncCA&;+_?8KL5LCC442k_N**%&noyT}WdHk+^4Fd|mR|v!28~>*MQ_*Paa|>}WbRl(=UjoX`L6 z8GsMKYtP0K_iTc1LSB0|mAGdhK9IcjY$kEfAbb#c?b%$yj;3P^2|JpOEhX+5jPv=Q z9Zknp688+jhmhBvttIXmiVr2PJ=;j!vn{?YdF>e{anEpkIC<^aPU4;s_z3dav%SPU zBk_^swPy#3dq&}W{%1$iv7^L2JK;N#*Pfjv?%4(3g}nCcDsj(fd^CCO*-he}-SOSY zYtJ4M_w0%9NnU&QlDKDYd~fpFvya3*`{MhO*Pi_(?%5yb^FKS9jsqm_IS}XbKRcR^ zgCy=b7(bZ2_8cN{&!PCC}WbpkhteW{6zBFbCSe8C*voR*Pc@(?l~1dmAv+xCUMW{`03=e z=M0H^&cx3ouRUi;+;cX5HhJwiN8+Ay@pH**&v_E}oR9PQpB+ud1rqmMi1YcM9ZknY z68Bt;Urb(mE|IwBQv6c#+H;x2J(uH`lh>XrB<{HqzmmN6TqSYO)%exqwdWd%d#=T= zC9gf#N!)Wi&gXx2G#xic+;by-BYEw)N#dTH@tetO&n*)7+=|~yUVCnnxaW5KcJkVD zhr~U1;&+nQp1UOOxf{Qmy!PB9anHT@z2vp$K8bto$NBuvj;7-QiF+Qz`TWn0rsE-r zdmhFgCa*n@NZj)%{wR6vc}(J-$MMI>YtIuB_dJO|NnU%NlDOw-{Au#q^Nhqj&*IOL z*PiDj?s*=6p1k(FAaT!&_>1JV=Ou}IUdCT0uRX6w-192_DtYaBP2!%{@z=>~&l?i= zyotX_UVGk>xaV#BZSvalj>J9h;_s5zp7$i~c^`kDy!Lz`anFbNhvc>ABZ+%H#y=*n zJ)cP2^C|u*dF}a3;-1g(&&g}g7ZUe;iGN96d%lvm=WG0H^4jx_#692Q-;&p!?^L*kx3IEUTSiFe|)XDo?(8oVK|J!4DUGY&oudF>fj!j7iTcoO%F zkMsRMJDNTdNZ8TznNZ@MiSUUyQ+p$zcXDNw$md2MRuRY61+_NmcEP3r&PU4>B@#V>D&k7Rv^uzm+*Paz6?pX<6iM;l# zEOE~&_$uVJXH|)NR>M~#uRW_v+_MJ026^pSQ{tYr@U_Tm&)O3A^vC;?*PeAG?pYUK zm%R3@CvngE`1<6vX9J0QHpDk1uRR+{+%o_lKwf(`mbhmVd=v88v#G>A1Mz|6wP!Pl zdj{cy$ZOB$68CI@Z$Vyrwv@PMFg}>P_G~3_&k%eFdF|O+;+~=SQ1aTdjl@0M;@gtf zo?#OA49AC)*PiVp?iqoPAg?{!OWZROA4y(&c96Jd6h4Z)_UtHe&rbMGS zKcBqzUm$V+h4_W!wf`cC`!B{XCa?XMNZfxZekpnFzf9u(%kj&}YyTAz_g{%$NnZP} zlDPkB{A%*re~rZb*W%Zb*Z%7y?!O+tp1k(oAaVbV_>JVX|0aq1Z^myXul=`3+$!q@`68FD}ze!&E-;%ihZTxNW+W(Hk{qN%MlGpzCB<_D7f1kYee;{%Hhxmu& zwf`fD`#;7%Ca?XUNZkJ^{waCw|4ick&+*U6YyTG#_kW3hNnZQElDPkC{A=>s|Bb}` z-{Rkr*Z%J$?*AVDp1k(|AaVbX_>bhZ|0jw2f5v|%ul>JB-2W^7D|zkzP2&FF@!!d7 z{~r?f|B3%eUi<%&xPJ^jhMfJKk<|XqZW4Ako!uq1zq3Wc?xwScr1p2VO4!|W_LS8A z&R!CBH=VsDwZF4X!tSQCUE=-@yd!acADqws?(f7o;Qq1jvGCg8NZda*J~nynA4lT; zadE!?cmH_!czEp}U*i4=@CnFk|AZ2DH=Pqn*xhtaEMa%kIf=ymlj8jTA9gpLlS$k^ zIX*dg?Vm!z?xu4}iTkI*r{YZQpIYMnY4B;tYyY$o_fLmUM_&7O&n|KQ9QYjMwSP{D`}^X3$!q^y5_UJ8 zb4%Pm56<`h>~1>emAHRCobUhLKR-S{Ui%l2xPL)>LGs$aki`89;|r75{zWA2Uld=I zy!J09VRzHHxWxTS;C%nj?xu4|3A>xlr6lfO8ef_-wSO6j`N3O(pIhhz}&M{hLYH-E1u)FCTE^+^M_;#GB{UapoZaTM@xPK%* zk~6h`2Z{Sf;iJfF|Be#(?}YC}Ui){JxPKRX7xLP_>;K^39DoE(w=8%@Z`kvdyQ+F@ z+qP}nwr$(Cdu-dbZQFQxGh%c5#EEa_ zB<}A^-j_GEzn{eY{mJ{&*Zu(#_YWi=NMHL0N!&k}d@z0OA0lD94LMZe{$b?9cvJg_ zOW1Bhj*z&2B>70*)c#Qt_m3tYO<()RNZdb`d@OzKA187Dc=GY|wSR(y?Kb2@iTfv! zPvTAOpDba!4LL>P{;A|sc~kqRN!&l3d^&yYpCNJoO!ArZwSShx{jTt^ z`}a!RzmI$$eeK^bVY>}^K;r&`WPbn0{fEd8k!$~9iTjU`AEB@PM{)-a#Un0Lm zU;8gh+<%4q3VrRrDslfc@@w?9|GLEeH^^_$*Z!Ll_unGFMPK`GOWc2l{0@EXzbkS7 zJ@R|>wg0}v{SU|=(AWNl68AqMe?(vVA4}Z-g!~D8?SCq9|1f9z2uY`3vTlhpp$qf6LsV~-(m ze@yb2iTh)b`Tlo*2zdy(_Q#gE-^h)=_B$l*cal5lYrjk4emA+BzV>@0?)Q>=>1)4F z!gd>bsD$k{cE7~^0rCLvYkyGU{xI?|`r02y;{Legap`M+Jc;|`lgFp8{Rt%QPe`7S zzV;`QxIZy@V*1*jMB@IW>tlanW>ul*?`?oUaclD_t*lDI!Ld20IFpGM;T zwB%{&YkxY4`_q%Br?34PB<{~ho{_%xXOg%-GkIqE+Mh+@{;cF#>1%&BiTksYXQ!|I zIVA4SNuHCw_UDqgKR0=9`r4mI;{LqkdFg9^K8gGDljo1%&AiTkUQSEsN2H6-q@NnVq_ z_ScfQzczVo`r2Pd;{Lkib?Iw=J&F74lh>!O{S74UZ%E#dzVoe=~{uo0B)Eul+3~?r%xnlD_u0lDNM$d29OG-$vs8w&ZQ;Ykxb5``eSZr?34T zB<}A>-jTlccapfjGkItF+TTUu{;uR*>1%&CiTk^gcc-uYJtXe$N#2vb_V<#wzc+br z`r6+|;{Lwmed%j|KZ*PMllP~u{R1TKA4ooszV;82xPLJDVEWoWMB@IT1+QqiTkIMPp7Z_GbHYxNj{Ul_Ro^Ie>VAS`r1E7;{Lhh zbLngUJc;|~lh3EG{R<@SUr4@?zV z_HUNBe+&5*`r5x$;{I*q+vscmc8U9UknfKpO(1)4EY)Q+J9E!{&VE#=xhIZiTf{*U!br37bWh$M1G0B_FtB`{|fmP z`r3b0;{I#o*XV2ib&30Lkl&!M{Wm4=xhIbiTgj0f1t1ZA0_VpME;4s_J5YR{|osS`r7|h;{I>s z-{@=qcZvIdkpG~s{XZq{|3&_bzV`o?xc?9NANtz=SK|JEc( zzl|heyS0%ewckdOu-)4KB(>j0m9X8~Xp-7*qf6LsZ48O~W0J>2r1r;>xIctEgueF2 zmbl-@^%vHDhs6C(awmQ5cS+puCU?`1Ca+9i`>ROYUzNNneeJI%aesC4>h!h0hQ$3f$!pTr{#p|E*Cww`U;FDw z++UZxE`9Be|z%w^tHc(#Qhz~JJQ$wP7?Qb zChtsN`@2Zo-<7;8eeLfiaesI6?)0_4hs6Co$$Qe*{$3LI_a^U6U;Fz=+~1eHFMaLr zCvks&^8WO-e}KgO1IY){*Zx5g_YWo?OkewlNZdb^d?GZXKhQ$3d$!F5n{#g?D&nBNuU;F1s+&`CmE`9BvCvpFL^7-_& ze}TmP3&|JK*ZxHk_b(=2Okew#NZh}ad?|hHUnX(?a`NT$wSR@g{VT~=(%1e~68Enr zUrk^8*GSwSP99EQ``1d`zm9wzeeGW_asLML4fM5tqs0B2$T!i~{>>8iZz118U;DR8 z+`o-{8-4BHE^+@3@*VWGf2YL#yU2IZ*Z$oS_wOO!Ltp#%O5DGXd>?)7-!F0h0rCU% zwf~^R{fEd8(bxXN689e=KSE#ok4oHsjQkjV?LRJY{|WLF^tJz_#QmqpPtn)@(-QZe zAwNT3`_D?;e~$bdeeFLlasLJK3-q=BqQw1|$S={?{>u{gUm?FjU;D30+<%Sy8h!1* zE^+@2@*DKE|E9$Kx5#hN*Z$iQ_unDELtp#vO5A^s{2qPnzb|qB1M&y-wf~{S{g22W z(bxXR68AqLe?njTpGw^SjQkmW?SC$D{|oXL^tJz`#Qm?xU(wh8*An-?A%8<(``=33 z|Bn0}eeHiQasLPM5A?PFqs0B6$Uo87{?8Kke zzhe{$+pXh&lG^VWRl;`b7)?_99ivOwZXIJt+#i!XX5#)>UyXkAcN8)}jxtG57`y_0)j-e9w`^o(Kf7osv0}{4d$DqXh zVdP=Fsr_*z?vG0zm%jGLlej-Vd3^fXpFraNgyae7YkwjM+pS|_iTjg~`R9M#pOic) zx%MZMxIa00a{AhzLgN0EZl{_nb?awB0e|GZh^tC^S#QizRbJExTToU)^CeKY@ z`}0WLpO-u@eeKUDaesdD{PeZIfW-X;$qUlg{z4M>7bY)EU;B$l++UQuD1GfOCUJjp z^5XQhzl6m7CCN+D*Zxux_m?IwO<()VNZenRyexg~FDG$-dGhk~wZDSI{T0b8(%1e< z68BdouS{S2t4Q2mmAoo_?XMU;Bqh+&`3jD1Gf8CUO68^5OKge}rU=@A&gbi7rQx zkK#?a94*o181gavGyZ?`=dlu;TE}q`y^bdz&tF?!CrI=KJ&!#WOb0qk+j&mhCo=4{Q zfADJ^=Sy_FfP4XcIbJBiuXS7`(eYyP#k?uUOC&m8O1_l7950jL*E%kj=y(PB3f`3C zl@cAVB40&cj#o?YYaQ1}bR13|&YN<)R-)r|3m@p=hXrXjyIBTC^ z^3C++c#8zT)^V#u$J@xa@unPam*{v0`40MWyi$ppzxkCPv#FUKb& z__dBFB|1Jueu_8c__RdFXUNacm*cY%{94Cz5*?o>KhK+Td_kh)i{uyS%kd=%ey!tW ziH@(3U*SzTzADl2HS%lp<@mY;zt-`FM8`MDZ}O%b-;(I~Hu-J(a(qXEU+Z{RqT_qy z_jpr|?@M(2fcyb{IesX?uXTJR(eYz4|NbBRTE{069X}<1N?(qjN$_hOpG$Q7g3R|n zey!t6iH={9zoIY4uO;}kj&CG7eoOwAH|6-9M91&R-_w`l4-))Z$Bz;nee5 zonuJwYn@|C%CU1S34X0}h(yP+$$bCo*vO4sjvW#mJIOrOv5VYAF2`<(jy>ca`f}`* z=-5Z@qc6vy5*_==eE;h>Kpr5M=r}ETTHci7bQ1hp=kyXCXCTkOn{u2{qT@{Dndr-LW{HlokY}MU$5|!#wa(cj zI?hg>oj2t;heXFY$#c?|<6IK_TIbvn9p@qQ@Bh(pUNYbR__faYBs$Jdo}a!P7m(<< zAbCOha$HEFH>C15u34X0}QHhR=kr(4lIW8{IaS8Gg^yRpu1i#j~lmx%lxwJ&b zWys6$z8sg8=(rqtIr?&3UZUd)Vm*W}|9oHnUNneg@NpxJB%=bTjt#ciTj_Z>7{>QI%t|!rPee(MB<+y=F#|_CF z(wE~#68u`{#u6PjA#cK)a@qT_bt?dZ#Kdx?%akawUj#~mg3wa%R+I_^y7`yap7xr;={UCF!Bm*Z{{9d{@1 zPG63DNOatjyeEA*?j_N2Z!+Ki__fY`Bs%U(=KCMN*14ZV$NkCs)0g7`68u`{ff5}L zA|J$?ay(d~<00fj=*#g?iH?Vn52G)~!zDT%K|X@M9FLUfcodoMfBahK(GnexA@lu@ zU+X+pqT_MoC?^2zk&c#1^FQ^}{&m*Z&?9Zx5p zPG62^NOU}td?tN4o+Z)oY%<^f__fY+Bs!i;K9{~6&y(QSI?tErcmbL3fBahKg%TYv zB40#bju%UGyo7uSeK}q#(eX0!W%T8ExkSe+$XC#pub1d}1NjE}a=cNZ<4xq7=*#hDiH^6BZ=o;8TO~T)M!t={ z9B-HCcnA3o`f|KeqT^lUyXedDZV7&^^B#$g_mcVk$FFtXC(-eK^8NJX_<%&m2g&^Y zKYp$AA&HI;lOLup$44YOK1zO+z8oKu==eDKar$z6LZai7QI%J}c4jIr4M#<@mfr#}~*i(3j(j5*=S6zeHb-FH3ZMh5QPAIld~<@ip>m^yT=v zM8`MCZ_t1(?FC{vDMdte-zt;J+M8|K)-_V!i zw-Oz{BY#I^@N1oa zNOb&@%=bTjt@AI5j(?N?rZ2~TBs%^}{+GTS|C5wsS0wngt`Q{V*fpXAzt%O9q#V0O zmf+XAMv;_b*Z(Bt*fpvIzt%OHq#V0Om*CgB#*ma_*O(IgTGv>Ta_kx+(Q#}t-~T!` zGT;9?c91*B<=83Fv5U-KsAD&|n_P}P5*>TVz4YbSC(&^zc_@83_DggeAP>-&a0B94C}1OT%NoD~XO!>l%kg@NjyI5RpfAT8B|6?jzKOmZZ7F@ow_n^yPSuM8|u{_tKZ+eG(n-C*MzB zjt@w5e31MgeK|fP!LM~aEYa~1@*}({$44bPK1P0wz8oKy==cQr3How;QljHiv~C|+@qP09^yT=01i#kx zp+v`z$RF{h96y%m_zC$F`f~hKqT^@e&*;nXbBT^$kooyPey!_EiH={9zoIY4uO&Ku zL;i-o9KV(5_#OE>`f~hUf?w?C*6mt&Vi$8Iuz6CHcVJ>+uimFU<9DQweE2w__gkFB|45r9*_6sIKD*33CI)Bm*a#I{95-!5*;Td^YefFTK6Op z9VaF8^MCwW_hb?sCnrx%Uyf5qbexhrC4D(gCDCze^3?R@IE_TdY01;lm*aF29j7Nx zPhXBRNbqajGfH%vi98c;%5i3ijC15miH=K>m!vPpr6f8oOD)i;Jszk@t$g9zp4axlcAHUYUkwnLh$s5y`<0cXvHzjXM zUyhqebljZ0Iej^9A<=P5@|N`FxRpf5t;t){m*X}P{95<65*@cAZ^xT*++L#N4&)u^ z%W+4EjysWeqA$mtB|7dx-i5v#ca`Y48+kYSa@<{_;~wNa=*w|WiH>`b_o6Syy(Rdy z?tLUW?n~z9|M<1;{Ukc>Pv+Bsv~QK9If~50dD3F!^Bmay&$$C5pj ziH?Vp52r83BP2Q=Nj{Rk9FLOV*Se3E=y(j7pa0|6x{sCUcpUjS`f@y8qT>nV6X?tF zM2U_kkx!y8$CD*Goz8o)-=y);tV)}BtM55!R%K~&@73h1c~idENc0^}9!_7r*Glxgj(i<``Cc#4_XhF} z^yPb_MBkgpeE;Lxx^I@~dkgs%`trS1f@|x(O``AZg~xVG*mCHg)^eu_8c`?N&gXUNacm+!L@eV-#gM_<0rOZ0t#`~rRX zz9`Z6CGt!3<@>Tk-&e@5(3kJ45?ovNYZ855C%?{{@_j>sYwLbfqVHSew|G;&Z%g!j zhx`tG`MxXB_dW7^^yT}$MBfj{AJCWYhZ221B7a0*z8_2U{e=7peffSW!L@aNCeinE z^5?uM-!CM%w(c(_`hG?JiZ|u^wM5@<$luVH@3#_tzaxJ~U%uZ<^!O=k*8Q7A-`~l<^QL_Nkl@<7|CH$a7x^#Vl<(gXeg7f< zLtnoCO7#7Y{2x8OJ&}}e&j^z8?HN&0zC9yJaBV#!OUk!r6iNB^{7-^w>lsy2zCEK! z%C~2939hYY3`zO+j48pj^^7Gc-<}~7TwBlB5`7!FCHi)dJILkRDbcr!+(lo$-4cC! z$ox(8?Irh;%ePOW?@;nk`tt3U=sQ5>=l}W+lKKAEcNlpXxqQcw=sPZXT>A1IPl9Xf z8DFCB1Z2Mdacw;lO7xwGJQ02QPAtK-^-LnscT)1CyeZ$wB>GNH=KCMl)-#0!*VZ$o z1lQIxl||G!P5CY;(RU&8LiFXkumsoEvxr3BMahfurhFHZ=({+X?|)od&k_=Smn8H3 zk8A5$N}})5g3hw%XbZlzH5^C`9H3$XDx}oYm?WeFW+?}`mRe}m%e=0li=EV z)|cqJ0eJ)7l<$TTeK#U+L|?ueOK@#Hn@IHCl)Nc#%6Bt~zMGTz{>QcTY$4HiOETa8 zxVE0HB>HYm-kQFAw~^?(EqPn|^4(5?YwOuwqVEpm9e7i|J4*E3iM$hi`R**iwe{>G z(RWw!uDmJV-6Z<%PTrlqeD{#(yC->1`tsdNqVL}1z3Iz$ABn#ElJ})A-~A-Gwx0bZ z`W`?&fH&oPphVw;$OqAv@4*sWThAd9eGerc%A4{%Orr1MWWN7#Z9PXw^gWWy_dl+! z=O~H3N0X1HFW+M%`W{O@mcD$Cli=EVj+f|r0{H~ql<$cWeNQ5vL|?uqOK@#Hr%3cY zm3%61%J(#hzNeEJ97K9jzD&ywhSHu-G&@;yhQ@44i2>C5*#39hZ@e2Kmn zkT2j(`Ccf|_agE|^yPc81lQJciA3K^$(Qn`d@qyedpY@X`trR(qVJXDE9uMkDv7>V zldq;P-)kiL4kr(%FW+k=xVE0_B>G-YzMePbdxJ#Z8_74)m+wsyTwBl05`AwW-@=>n zy;Y*`ZRFeN%lCGPzITxCpfBG$CHme)zKgzm@0RF$5BVPY^1WArYwNjBqVN6W`*~Bo z4@mTVko+Kh`937Uwe>tK(f1MZBfKf!M@zS`vmz3`tp5JqVH4Wr|8S~ zX^Fnike{J1-)AMbww~uC`aVy7o;T(Df<)gJ$uH8E?@JO~ThGf9eP1EJ!khAaRif`} zv>P2@B8HUc~ib0Nc8=X z{2_h$ek8%Q^?WSR_Y?9byeZ#LCHj6w{*1nSKbPqH1^Em5^8Hex?^oon=*#zOiN4>E zzo9SRZzZ_4p6?|3eoy|MH|6_-MBg9DKhl@)PZC^P&(9KleL1xE^-%r`F2b6?IH91uWv7zzoEW;Ij^9+$p+$CKdNddHXOI{|qD-jwfz5`8BkPefn76H9Pyy^~0A zZM~C9^qq{%@BiT1dMB6YI|X?P`tqGpf@|xYN}})7K)xo|`x2JC8))dCBwAm+yQMTwCw_5`7mSFTk7fT~MO$Lga<$%XeXkzKf9g{U2Og z@1hcY7bElgKe)Eu#U=VKL0*Ese3z8q+Ip9g=({v|Y2K9YG7^24B`-@~zRO8)ZN1A& z^j(3x0&mK9MTx#EkyoNG-<2i$u0mdgzI<1e=(`$uHTv>hU83(AVn zzH5`$=1uvoBhhzV^1AfpyPgEs*1Nt$-wntc@TPn>l<2z=c_aGr-B_aUCS-p92iMlS zsYKt+$o&2fuB~@-iN0Hqx1cZIEhV_N-mN71ZcW~rH|4vHMBi=6+tQcsb`o4$@AeXX zcOdV;oATXJqVG=Ro#@MVXNkVMkawXk-(4m8?nd5?zI=C==(`7b5Bl=mQ-W*j-AkhH z-sHV`Q@;C1^xc=dFMav$C&9J#?k~~z0P+F6Dc=Jn`W{3+h`xLemgsv3ncx4xwe=n< z(f2SizyE`4>pfhe?-Ar9=*#y=39ha8D2cvDlaJ<2`5q(D_gM0=^yPb;1lQJkyhPs< z$S3fod{30Q|Qb0REfT)kx!#9-_s@foQ2E&n2HrU%ux_aBaQkOZ2^fd;xFD_d*#u=*#zB39ha8K8e2flkewE`92`g_d)W5^yT}IMBj(W57U?LBNBZdB|l1E zzK==teVqI_efd5i!L{{1Dbe>S@>9Gi-=`(|K0|(nzI>mR;M#hhlj!?A`FY-y?+X%r zUnIXsU%oF%^nIE9GJW~JBGLC%@~iaa`3)0gij5`8}zZX zzCTIy{h9nTefj<((f3#Kuk_{nn?&E=$-mQ=?;jFeTkoF|eg7i=#hdc|TcYnjQZwI-9T)v$WeY?nA^yS+v(YJ@( zLtnnV5`Fu~{LS?pN*+os-+qa{1LOhv@*R}uJB&PxzI?}#=sPZXT>A1IPl9Xf8(*UD z1mp>LQ@#^Q^qq)25q8Z_0NLiN14^=S)T!&YyEh@NRu`OLU)y%J>C1f~iS7%N7p5=wMI^c}N?w${+!vGJ-TD@n=)MGb3Eq_Zk`mpQBJ=zI zx-U&$nq2P7NOWJ8yexgWFDJpf^(`;aeFgFgyean;CAzOfUWvZkSC;6$3V9X!a$i-V z`)cIX=*xX|3Er)54Tswc%`+DT{=*xY53Er)5 z1Bvb%k~ic{xo;%VePi;*^yR*ZME6a}o6?v2W)j^uCvQ$)?psLkZhc!ybl-}+6>rLY zYYE=1ZySm3+mg5CO}TF;(S3XJ_Vnexg9Pu^x1&V&oya@!rrdXy=)Mbi7y5GFRigWD zpMuI`@!Ucc~kC(NOV7xd?K( zaz9<7`x)dj=*#^~iSB2S&!R8)vn6=9zH=max4v^Fx}QfrkN4$%zC`y6$QRI;`-KwS zFCz2(ulvR1i^=7FiA48H$(PcX`(+Z{FDGA4U+z~(bia~(C4ISHCDHwA^40X^evL%; z;pE};<$kS1_v^^l(U<%665Veg-#}mPH%jnseK$#TznOe9Z_51^iSD2By+a$W* zPQIPK-0zU+ekb`(`f|TZqWj(CyXnjQ9*OSvlJBK2_xmKe-%q}uzT6*>=>8y??|8b_G5T_UT%!9Ee_o>d3*;B*%l$46lj#0C`FHwq|3jktpX5L3 z%l$8j?thd2rZ4w@B)b1g{+GVo|C5wEpSeZwZbL_ql>5*TCFMSJBnjSa=*W_CA3BNz z?>6**l5!t9ss!&gbTmo14;@{CcN;o}q}+#&DZ#r99ZOQ~Lx)K4ZbQeGl>5*o(Y=G* zk?7t@?j)Ccmqhn&ayNas_egZ_CG+!t-TTOWS>(Y>GCPhai>65R*MgY@M-OrrZZ zS=KCM-Hgr-6-fie) z65S^!PtKcipF*Phl;kPt%Y7<|?o*SerZ4wtB)U&ao|eAcr<3SDJ$ZWia-Tt>`;6on z>C1g4iS9F#XQnUrStPp8N}iRz+-H;E-G=vETlwJBjYwleecY_Z=jMp)dDCCAuF*K8(KH50~hE1o;U1az9d{`%&bh z=*#_R3Epk!F%sR6B_GS1az9R@`|;%C>C62DiS8$oPoyvRlO(#IOg@>u+)t6{ek%D? z`f@)_qWkIO)9K6o42kY%lFy_s_p>CrpG`iSzTD4|;N6CvE7AQt@_D=|_wyyXUqHTq zzT7XA=zbCTBKmT_SfcwS$hXj!`>hh) zZzJDEU+%X{biadq2YtEUDbf8d@?G@hezyegHuN5e?)Q@Kn^yU7lMEBRouhEzL z>k{4HAiqIh?r%zTe~bJUeYw9a(fu7VKmXVLUGlr+a(_>v`}^eg>C62CiS8egKcp}B zk0iQ(O#Ya@+&_`%{weuW`f~qFqWkCM&*{tk3yJPulE0)c_pc8M=C;D>#S)%(dn>mNZK6>$Ci|P zf0O9mLFW5k_fB#rx!k)Xx_6Vi>C3%GqI)m7m%iNlB)ShJ52Y{neu?e_A3-G4g7nJC}5P2c`a$i`Y`y%8;=*xXkiSCP$7o#ut z#U;8gL0*Es+?SN-z7%;W`f^`dqWd!BW$4R&S&8n;k(Z+{_vIycxBe9*y01uHkvHYO zl0^5F$t%;B`zjLMS0%4XU+$|(bYGpkI(@mXA<=zJ@|yJJzLrGywaIJKm-{*r-Pa|r zOJDBmNpxSIygq%oZy>?D^=~NAeIxQlyeapMCAx1y-h{r~HC1gT ziSGN8_opxS10=d1NIsCh+z*oA-TDuf=za+K5Z;vgp%UE>BOgXz?uScsKZ1M&eYqbg z(fug$QS{}0v_$t~$j8u^`>_(;k0bNX|Ki>HkC*6v0{H~`az9a``$^=J=*#_N3Er*$ z6p8Mql27GLxt}J{{dDr_^yPkrME5hvXVRDZSrXmPCZA1T?&nB!KbL$ieYu|}(fxe# z`Sj&}fn>y2`13-EcU(lih&Oe|#S-thgnS8o-Epae8(RNm67RU2%+LS1q4i%O@s2CW zSJKxVS4q6%YVy_eb;mUl?-)+z`=1+H|FshDxQ@*CKR2}g>m}ZC1NjE}y5mL(H?;nn zB;Ii|`DWhK9k)ol<5u#m^mWH=5^iYyw@bX^4)PtmsXOkJc*kAjyXfnVyCvRn5BVPY zy5nAncicz5kG}4>U*a7PkRPD0J06sH$3tX({_h>c!B%^eckb* z#5-OhzeHbmye#2{)?fcS_X>U8@v4LyTK{Vj?|7a3I&bQZHzeNiCizYJy5lVgH?;n@ zCEoE4`5oTW9q&rK<2~|w^mWJk67Tqc`~iL4@u9>!J|gq;e{N{~A4|OB6EZ*l_l{4= zpOWj2&m`XQIr($?y5kFpcYI0ylD_WvO5z<~lfR~~JHC-{L+k%m;vL_S`TpmI*8ja^ zl=`2;4-#+sk^CcX>ZYG0-t;q>pZ{}D>;FaKO}~OQyy-vkfArim5DE9Rfe|Ei)4+(5x@lk}3HP*tktKE0 zz$g;#X#@Y0)J+4UO1P&Dj3%j@21b|EO#@>{xTg(_DXE(V#*%PP8yF&~n+C>~a8Da( zlDcW2L&806pi|;aUF5FBo4U!}4c+iRtU6NhI9U z1}2qw(`4kycvCk`F7c)*$WzeQO;bv|X)5wm^mWtJ67FdO(@4B&TJp5Kshg&gc+>P` zzW=$W4a^|no;EO}#G7U!&%~R$X=aHx%|f1qzHXXT;!U%WXQQv1W|weJ8<<1lO>>gx z~P zylD;c8uWG3ni6kXi@X+n-L$rZd)mM{5^q|Uye@C*ru8J=v_5%#`nqWYi8pOX-jKd- z+DPI}8&Vy9*G<<;yy*rq-~Zgx25yvi(@o@? z=a8ULo`S&pmD6Rf#vfMt+UHZhBqfO>dCjps$D z^bYwQ`nu^|i8sAReviIxdSAjlZQuimH+@L{kT-SHM-p%PnEWw)-SmmXn?5CfN?$j9 zCh?}v$$bBFPaF6`;!R(Y`TpmgHt?0io4zLV{m(sZ;2ViIeM|n9zHa(X;!WR^zo)O8 zevo+6k7U08z3C_NPvpAkXNfocLjHxmZu(W?O}~+UqpzEOmw3}3ZZXFB;3;mN0ih}gCj|}rwxuQ;hr`)illBD z{GWt-+Tf^?x@mAU3HP+Y(Is`$;209_X@g@*>ZZZ5B;3;mhe+zC!LcRW(*~QQZW`>6 za8DcTlz3AYneTsZ>Lz!S>!u!wH}#VF{`aOnav!;F8Y=OoesVv3-83Nara>}8-ZYFn zj9fR3Bk`tj$>Y-3P2)+tX?*hd^mWq&5^tK2%=f=HO+=oETsKWD;hr`)iG+LF;G`07 znv6Ud@9UGj@uqH?UgAwN zkY}K;n`V@F(@bQ(|GB3P&Me`cHaLsKn`R}?%A2}rHi>gxq_3Oi zl5kHOoLk~e^N{D^P2DuF#GB?L&qrT3%`f4eHn@Pqn-(N5$eX%pA&ECFOy>Kad)nY4 z5^q|R%=f=HEk<69TsJK)@unrnOVHO%OG>gT0!DXE0R~FubWnqa8DatS>jErkXPYN-L$I2n^q(9{m(sZaCHgyw81qb z-n1rpP2SW^Ye~FmZSvamb<;W$Z(5hUE`8m!o`iea;QA78+JL+PZ|bHECEm0Vc_aF| zX=8~uZ9?9JzHZu7!aZ$pGl@5CPTrh1b<-9SZ`zW~_rEu7Mc#^BH*GEPrftaE(AQ1d zO1x=1@^I$FX#ZSWY0 zHyumn``??6BOgbun~s-w(+T7g=12sFokBi^zHT~I!aZ&9G>JEz zPClJCb<-IVZ#t8FCVky>mc*ORCZA1TH=QH#rgO>X($`JrNw}vCo-g5^Hh6)=n=T|@ z$osnKB8fL$Oum@DZn{L`O_!1{rLUVVlX%nRWPbkdO;?bwAlFS-O1$YR@>TS8)727h zx`uoWecd!%;!W3*ucfb>u9JAv_2ld6>!uqd-gG1RM*6zxCW$xQOum`EZn{O{O}CP7 zrLUWAlX%nZ0Iyy-sjee`wH{St3_ zfcyY`-SnWun;s%RL|->OEb*pC$dAz1O^-^v=`r$S^mWtY5^s8f`~-d7^rXa_o+9(} ze{Xu4{4}|4dPd?+&yt^|ubZBec+>Ob=jrRF7bM>FBKbx7y6Gi}H@!@LnZ9m%MdD4b zl3%5-n_iQ6)9d8d>FcI9B;NEU`Azz|=`D#jy-j|bzHWL)!aZ&9U5PinM}Chtb<_J2 zZ~B1z0e#){p~Ra$B7a0*H+?MerccP9(AQ0$O1$Ya@@MpQ)8`Uz`hxrgeckk>#GAe% ze??z6eJ$~(Z^+-!*G=C_yy-jgcl34B_Y&@DgFi^T=|}R9ys4Xhl6ce4VQwreUK>xTg&pO;R@v8(qRZZP*x+ zx@p*$67Ffk#*)-c!-hz>rwtohQa25267FfkIwW<|uuh3Lb&x7@5)kGj;x9m5yEeKks|rKlhG8h&CER z2q84YG&F>mhR_gVLPiLoA%qY@2qALnknyx3@rL9Ro;EVbc*-EoAfNEGz#!vkV`AR_ji*hB zHz7`V$}|W+$?2OKgrDT}%?vW0HYeVk`h=$}gN&ywh_T+78_(d?LoW;`GluE4Kkhzi3`amJS{QEc-o7Y_kZJQZ{od)6P}6;GM@G! z-iLg`)4m27Px}$?M?T@H*dXI+e`4PM@spf>fI-I7Qexi!@spfhVvzB)jF|U-{3NFz zXpr%A5b;6e6P`*9GM)}5KA3#M(;)^KPlpm8N4mZen zDkm-{pYU{qLB`XO#7B}(csj};wIPwWk#~WlkRS{Q_Pk1`PAmeEzG4KDz(}~0<5+^)W8)Q74M0^tYgr}1Y zGM-K$K81Y3Q;k8!)2YO~|Kle){WOD&r_+gf|Hn^qdaXgm(;39P|Kle){Y-<5r?ZH8 z|Hn^qdYwVW(<#J7)AhvHlTUcM!64)5Mq=Lo@sph1W{~l86EW}q_(@K`*&yTT7UEmTCp@(q zWIWwU%=>Q z@BjEoPJhuLX}5}sZ)$aoqe9wMLc^qN7&)9b{q zlTUbh!yw~nn3(r}{3NHpX^`>s7BTPt_(@KG+aTj+_(@KmG{|`RikSC* z{3NG;ZIJQw4KeTk_(@KmG6+A(>E9Y;Jbg#}9W@D0-y38+O%qR(Pk8#lAmiyr;vdN; zJpE*l@iap`Lq6f@XM>EVUx<1C$4_$luLc=Uv&6jr<0m=&H-n6)--&tu$4_$l9|jpu zbHsDx6Q2Gw$awmT_%HGaPk$SPpXBs;gN&zti2tD`;ptz4jHmyI|09p5xC}~oidzQZ zCpm5#l<*Xf7=)kXxMNVlQ`|KOKgn^=poFKmZxDWxYjV+P?T zIi6%t!c%-TgA$(Ns~d!$lkD_txLQv`Glu5gNh}R>Z@U*@`##1_RI{AdBxIxC#2E-eXPk7qUAmeEx z;*H2BJY^VUJS`wzKtADVV}p#RO^A8_$4_!R(;)mL$2T>|c-oA3Ginl^HaEz4$|BAp zpYXJWLB`XT#9NY2c-qP!<0+dsn|#94)&?0*+YoO@6DK_78Du;yBwk29;b|9xjHg|RcO{?j zly8vnv>WkmAiDkUx@pYU|BLB`V|#D|bicskS|O(=i4a zPb-L5kWYB3G{|^5miSom2~WovWIP>Dd_4Jtrz(StrxS=zAfNEG(jepML}K3m@sk{{ zHV8k-@skWPo=zq{nVN*BQw%bmYKUvdCp?{MknwaH@oD4}o=!K&c&a6?C72GM>&OK979D)AzfD2F~N!vEDq`Xwg?+W1?zGJw374?O$)r#8rgIVt2P5{^jG z3K*7Rg)k~5aVAYks|`r2)0d29^1PHnZ%Qx!cKRe}<=;{nhjIQ5HBJ2O)x@dI(9hpw z$Nk#nz`V7`_**OJOZ;sn{5SIx|7|v1D|lf|F=_oLfU}6Htdr&N`+}D zqg`5n-U8|uFlWJtv@y>cqrdSWP_s!2)I%3=pP2#dmpLzOikD4$q|MOZjCiwZ=$AIn z25L4Rm$HhW2HId!+M)~wq%9pFza@2BveTB_ZN==Z%7HoA`OpY6($>W=Ds98L4f@-b zLZ_6I0)x_a%-D|ox0{l-uYhi8hg2Ara`C+*Iy=?Fw6t?IaOP!09nilJorTO@*afrF zE(OpGW74iU&;TP+K0W!&$)A*Vqh_~un3Hxd1mfM9zleBIw^Wb|1JYu27xzkg@Vv*k zv}X^@NQG67-PsmQHqn`crs5h1wcs)Qn4~a-P}(?0Q;{bb2;$ z)@DGvbOt`pr~+!v7=#(=%rq#4N$D(RpG93AbL+;WRTY5N*-g?p%sK~8^>JWkJs!?w zmvg72^Xh>5^SN*6lP;j|0<QZq{{`x z&<5nLs0Fl}%V9velA0^&xw0Roq^sgk3FNLClCE}uSyy)e_bqs8X$1DUrV!A*W=^`c z0*0mQ*snD~70}ZtV;9dYF(N zLHm(m>CtTHk{(NiHmSD=Mx@8ld7K@dNCSGF6x2w4Nl+y{l>x2N(`Y|k31iYTSHZ{+}eZ`1d7EA&ev)xew) zX1r;dY9UF8(~IzuT~o6ZgfccUmMIy@0Y@$^g%Y%0d-@{{gCGm>HBb8`Y3=F z>0{=7%-zTIk7q)U^hu%gsRMZVEElGwi4x%ayi59`0TL%at1r`l=P!q)N#e;G>8m&l zN?()zrdXN^fco!>r0)eCFe6Q)In934L(&iQ{Llo<_>nz+td@RCl4f!MKQsJ1ex~N< zX6YAlzfk+jxb!QUzj8OruCtuKk^ikn`n^{AgStOzU__eBhIW{i{>0y(#DC69f6@0> zxAZqN|89XvX&#OF3F)5#ApSQW#-#tK{cl*7QlJ8QWm#!Z3*)lv8km+9;W;uO%ZWpa zESGw>P?n!9D@c_UmdlEgi{?QO&=VVld09zK&<(S)R?C5U7y@cm@07(mi#}DW&uP@GR|`C^ zPwo0;fIffPWTh8DKd>Kf$5y-@*l&Y8Al{Ig4XNL7Sk^}QP!IhuFDs)ChGZ>BgFN9g?ZJG+?He-*?nqWlM=Hxanhjv+6Xl1nmx?9Ad0BT@D z)|N%kEo-Y3V5hA*WMxyIT>*2lwx(~JJXzc3!j!C>VxWGzOkjuYb7bwn+#R}P<)XPG zeLJ$(PMkY6$=aD6cIGax9!6y?gk4HuQr51Wvhva99mU#>xw{w1T7=f3aajeaFeGbn zCeXW>zCE*`0cK?tGHXedti5t!MAqKTvWn;_Y6SM)2hDv8pikC*8GvRnvx<9V?a$8p zx5_#o1=@l7rRXi?>!V%s8r8Rz)1B ztr(YeH2p`n$T}u~Az3S^UBOw2UL_~*FxGKhvW`!MYJMePm#P|=kaa>i49Hqp1?;eL zP}Yfcva0E=W_C66PAZdiGX74kg??G5)XSK zI+NNn(Lb|8)>%2w1Ou|_(x4lrWv$|V6?$i;ObsjsN zPwn~RvKr`ZXqR;X=LJ);E@X!bCuLn!1JpKVK$EPC1E>UaF3E-#pzhKlV0IIGHZkwA zEEtq^c|I`v3bdQ)ZDwY3E6mEe5}m84zl!>+lb`^&zdG^U44p78s|BqVo?Av`T@wfH zuj!I?tpn_NZNIGR(7ujcubYw8%6%)ouWyufLmu#a!x+rUx{>D_8-ShK=xytjbyEf~ z>*gG&2Q+S>r#%g-fLXVu0{XY2a~m4BRRg`Z3+TI@=i3v{bFw<9>u3eyJBaV#yt75t zUF>+*h^$WLc23Em`G?s3p>bIcSHYO9o_y$)^$6OJ49I%40GeezCMbg$S-tc=UJTqnQ4aJ!SuLwC z1Nvk=g~n4A&@Sug8d=Yfe`ZeBvkfpT>$!ee&!+)*&$Hh^sjL^`vR-t6+)MPnG$3n` zeFvLmy_^kQvRr*>wihmBkTQq;Aiwf4seb& z0Gc22{81B3$@&Pu9;fvVLiRX<5H^%bM+x^;;&O^*i^!lly}ia{`{{ z=$&Kk+@!2Oa{%2xM`Zn#4b8ItPJu#T&U~w^fBIln*1yGo)_+CNCtF!CDBH@0Y9O{# zp$ghyOm>7bG9}yT0Pfv}V3uADx#S>y@3veG=zt z+^;qxd-W1%lAW9e%ugPZozf1ove&2pYS&DGQs|ex7IkaY^L0-uuum#`tz9X59dy^t zfG*i-HL}+WARFdnug{EhG}32e$46yvkPkhwH>7_fW@jXrl)V7W1r5O6#tt+C{hQRn z0L;qHEP^^fXHzscW#>)VYtwnzn^nQM?9H=)p3SMrLMJO1$^q>ysM(TpEBdw?l%36v z*_>OG-*#AbPNVGY@?lK&_8HIwC*+r#5-#!`8BzxZg8f5R61k@GBp-uMw z%;25G-XF~aieXgt(rlQPT~Yx z?`7y+o(7y(G|6txhH=?fqH~o1?W-D~SN7F;z+DSJs}`QGsRMMcEtP#;EsV)-Erx#C z*9SoF^;5EMXqJ5=&o|D>ZX1z(Q@!k)(YmETc6+((TZ?4hRwn!QBtWl&`a8J0(}4lm zcXi9|V0r+4sj7%{mC^1lheqg-{UG@V zi=avNL%p&eruJd9d#LMSuSeML(KgwS`Ar%YK6V6O*!^WL_V+z80YF zDds#y@6+U-ZiQ*t&!hnHGZV7=>t#Qi0Ryt1tARe*&*Sg;I-q|b7trDz!G3}LUM!RS z68$f+`(PH(Gle-=Ox5LD|F1<+}{~ z%@kn%Tj;%2EcP1ec&Do6I$aVVGlO*YKSo~nm&+28ib{;nD3WKYvS z-7WhEX8l0zkGW6=P0%mf6fB>eMekodvj3+4Z*ud@tI}w zSQeB4x=E!#ZZ&eN^(eABb;lFa~>nB0GBI#(R_bU>oFV3tD*lR;HH>?5rHY!ylBM#hWj4HB# z{ss8sJt49&xs96?*@XK|(9SG@E=4x20M5U_g=VG@w44cM?WoyqN|EjH zvORn4K+O&lisZ6q?tmgYve%9^Fs{f><-l$`vD?mg+L_sT^etr8Lh=iF-X#aP-?a!h zd9R4<#y#&6k=@yE_dZ1y)hklK?1CnkRb+7uP`d|v?$NHup5%FVh!mnxIH<@H>X*zZ zvR4HRE3$VIlt3F$SAwBU_{9ChaqR%0c?R>&MCZ(E7**t~ z6etJu>*!zA2=tv@3TU2_3qy+3(^EgF$hq{Lhvs?getrR<(LknqB@|zu^IXlxwsG}6uE@@OKV_WktTYYMijY>JuaJ6+_yF;!uv(!diK15yBoR{ zxsm!C@z7QX>~~X+A~y@TzokTx_6(r@Ry1y9=i8ECN|D8H1UT9IctpPf+TxdK4{xnV_~XRm=&pyvhVzgP(9yhQCw%or?(K}BB9 zfCfcgX;S3XTs%zuZwcSaR?ml^L>0J%~6_}(Eh+6{Ax@O}|_pWOSkK<)zvs-Rzyu{7ZPkoylC z6#0mnkC^o_JA7OT=<==+8Rz_@P?1mB`O`Asc_I}?6!|<0>VZAJ;O>iFMZVk8ohn^qWCWGWSU6#2FQsQIo&k?*siLy_quCAn7To_X1NBVx6 zR%8aPnJ$=AuhG9j1Mf=x!MP?o7ROGh+8Ws6H1tt{vqXb68M?G-I(Efb+iw7?Go4Io6OIdr(fKSdNniJ#yR>Xa@3L4p8IQ%LxK# zl@q2x8O+OxHp+>mLZ_UhY&omt1M%wg@#h{+GIhyaa#C^u?KLuh=QWFf`D-zEtv)%a zUt19?yhb8^;ek+VK`>rco@rr>Bvpf2H);o*PFGvOAf_XWM zsb7qbJvjH6lCvj!6?Vv3Lj96iIeWE0FA(pY24zqW{V*!0h*?GX&;aP{L%dJBoP7o5 zPzU{T_A7ucImOiM&kp+&ACLiUa+ad8bVyDKwadsYBe!f^&VgkxCg-3$Ii+dPA?M%* zIfqbxNIfwBP_z!M0CW#!$1-Zmh?nDgd8?ems6DJ#&f$VuIptYU3e+4y?GbHq_{?{X z4fXLEOUD@@8chkCv{aO%h2K<^d(a+>Mmy8?&r3Y;rvCAyrz{B0ua_*t$o-W|| z-W1^O-X<7?DLGy2+*Jhiz>NFyVMxyXocGs4Kg`Q{phQl$Bj=$2TID><`EVnQ%jwC6 zCK!|RNG_0nWJ1oP?DA+c^a6E{araoeoZdK4^Ei5sv*Y74a-PVC78sWEWE!CN3gLL$iK?oLn+WL=e0Cox7SAGyq*u!a^46a8w!CM-W8l-?%(8@ zcLnDyc6qB`&fA&LDQARpq({zsobQdx8O;NB_<(pU7rNwph~|gP|8P{!M z<2iCZ5uo>J7Et>cwVzS@*|4068aba+^Evx}LEo3ue%T{uvKXf2d{qcdFeK;e2|3@C z%bB8Qiu!N6x5c>ZHd&Rjlp1O0!d0C#_J_ZR#9-6Ur|Q_er+|7nx+ zZyFRqkDUM5lh1zVzcIPWg*LfX9J=M&Sx^H5awFs-jW8qEDFy0XYP}2~@8?60+#m^x zVOVZhA~)(lv)ou7kV_)weZXCvyVd*UCNnb`{giT;kh=!jYmCZWvjRBRDwCU91e0>t zre|$5)=7d|pnhHI*Bz9bRsiU&$GP5s-1W1eQ*L@HuvffM?glB)Eq6n9*^s*pC*^L` z1T%6oD&#ImgI2j4$ASFD^Kv(-hcUUC<#IQ50R7D} z8+cwE0C$VYEv9ZUI*X^}?vVz$Pz|jxDtFH$C;{sBOgzuZEzE=>Xn-CVleO#3Er9q?Ilk2+ho#{Y5(0>;FXU)p3zR22IlcpMZ)}#^=0GFN%DsuZo6x&yUhd88cXK5$=jKtl zx1fJZKGXm@w@k=wFOhp|3e>@z+}qH(jo#ba3-)d$mZJ9B~O&UU$X zGvjXh?&0~KDY^He-IWCF)y4CDrE>45{{Aw#50HCcMs7DdbdSh=s03Q%KFo}s6hQA0 z_I)%@?qfMHF1NQ{?&H}oAoqz1V3#NJVMuNt{e8o7pQ?swxleQdG`l>5#xsL*`-`Ak z?z0Xwz=YiA*yTBL&u2iB+<{c6gAute6hn{P7XxU78M!Z!dx^V2`UacjzMKT;zf9dL zXuQ$_vvOZ$&sW)ZC|`!WxvTMm?l<*vr&6E^Cgpxx3DkYpBKP|=XqG$8Io&AthXCmLF&Db!{)FaFqjG0zU|88+s}IUcjzb&F$xC708a%H-{hAIm%3CWH`sAf%Lmi;Mb}3BCTc-?W z{qoW>fPL5FT#sk|48dE!ULNlPUiyf?)t%Q!T_th}vS9!$vFzZB3tpi$mZ?w0n-DevfV(5nKa%~9 z?3Z^GdmYs$uObtuJ(~MtYUQm6pjTdH9t_Akwn^S`sq&6z-tp{R#mp0^Tj@Xn)XO^& z{S!Oo@j2^N&&xZhL*B_~pOOz_@@jH{^HlCnpDicXl37drmdbUr$dx=ehKp%bw>2fZq8@z&;I?@-E1MX?Yh7%DcE$ z-X-jRDK&hj?lqC)cX02rS$TYJdRH*Bxl7)axzHx>Dm1Uogh_cV)U}{<4SLt0b4{;2 ze((0K9gufj32=8k^RMrecS9Y_$-A*pURx>@0eiNQyNUQF=JUDf@ww^UB0&3=QF-mT z&?WCyX5QK??>6*qYk(Pfd`@~D=yed^N!^`;^6shz`Z_!1-ObP7ZhG#a=bjOH_tpZn zd_H>oKJDGdPWSb~w7mOULRtVg^-X!mh zENF*0dBfy~tL43!U`pOwo$}t!gf4j_c`zdHohs;&_ihr@!>GLX3V_ApGxG-u*VFuX4+s%-p|zk%-mm!p;O+kDM0R5v}UX1{YLy-kG$VA z0nOjLR&P6{N>4w#qkR?GLO^%`JGzTYoDC8+D1S|!*Bq9=Ryj07BA%0jsbmmCynMKusDNX(jU4%a^~t1MHGcU3v%58*hLy`5WZIko*mqwc&*Pjhf_V6u_kX z1#R*-&V~{Bn~={$GZURnsoj)4H=U8c89JMBzj+Oyo7EwIi(2_xX2{=)xm$I~&(4Ep z`CDf~AFv;PuI_I`-8Mt=bGXlGk-r`F+cg5Z+gHJ){2i(R-P|VmJF*LZmhSIVEI$wZ zJo@u`%(AaHI{_g1S-Ybuc3T zaB2@{uksYAlz#+TM@+~+lK4pakD~9WdYG1fGmx>zd`aI?yTq`V#p!q(O)L8#95qZQQrb z%fG2w{>^y0xfR&umTW-3ojL8)w2#WaH5X>&-$wp6YHm+~JfP?HVfh`*>Bxs#K=Y15 z;O>q=`FAq!&R+R-_4x6>jBUAF#jInd&u82A^%=#?`77#qw>2-fSLDE ze;=Cnr^o%mhUe||vz05e~p=EX_*FR{l< z%oya3-#h)6Q-E17Q};?9^vZv=1n3`P)(}0f+O1&lRwe`6Y}5T{+$j$^Ih)VL+ia3`J?oXR=}wI|K&lK z{P)p*zZj@#VVnGq1k`^tET4ad-v77}h{w?z@08DX*#0LC@;}Xn4*7fz z`=9m6pJ2`e&z~1UzkL1-+y8>|O9v`oQ2t~N;ODDcp!TaF`Cp^+O&YMn6!8>$e#_l= z4f4Nlmp{$yA5x)S{*QuY`9GogQyomppQ#3ZCNuN$f2Qvj;$QJJOYJQ2Zxix=$H(t8 z^8a9mIby!A_WxwgU+Di$4WGIGe2x5n`sM%2tbbc!K>mMiFsVR!(5=AARbV>`oD3LI z;8wtd0Q}N`oE+tHptHb@HoM0lLWrKrV&5 zlsXuIIR$HQwK7$;A`2!jysy9bktIClzdzq#&b3 z!Gcs6Qm}D7^efne+RRMoQ?Mz!ZJq_A3bHyCY{8yeP|NR^!ItGfyj2-+W-}+d8qnA} z1!@#*Bj{4FE$6nC3izxH_^b?aCKPN}0s{*8zB$;QbBAIepG*Ia=Q&Wuo{<+W!Qwk0!f)*H4u#{O# z>lKugDp*F%vLOWrCIK1;b}Be1fI1jaP?`q=3J$JPa0t4Gu-~DDz}&J11BWx zf(G<2C{}P`K2USvtb&W^YoxXjor}p|JgMLk=3k2DrS$RpXwcND;4*f;JPqi(f*r1C z1a@w2S8!#Gf~!)YN5R#cS9dG82JhF5D7cn>K0||R`xRU_t)P{BEA_3!*K=M!tKfzv z1vkbOv{fs(2~9pfgPWV7Pr)tBY^T&AE0t)4aokHi%`DwtOA7<=_*K?9)qcquUBi9%qnCp#4M(c9Mo+&_i>Q|Ld9 z#?#zA!*hQnkbAZO`V~Bv2JJxq^EtrG0Y||L3Az-#$cz_f6}-ebh|VB;yj-W?l_cm> z@G9r4RY3nxEet4ltx&=1-4@CG_>u+JOw3WlkFlO5iIx0y3i1XBv$=~VD;v4Z!| ze{W8~D7*eI7bXqi-NDv`>IF5*8=Lko>%Zq9dJ&yD)^SZZ>JS}*RA0D zEErQTU8CR!`hMi@$8iNeH7S_MfOeqoXZnAp{^v;rzp&FU#n1?Sz}#PRp&B}2O2I6> zv$cTsZ#lr+-?M?;|DbNpfdK`7#-UBYU+nr<6`=Qbs)BiX{$a*HJpW7l@3eydS`^BG zCWRKK#j`c9(5_M#DTZl<&LD8|c^JB!UL%Yv^lKCbY0w2z3d2GeRTwRRPKA6HhOv5> zQ<&7IaJ3|bt0zEv^#O&+dC;LSB}3sF)UGk4a7{GU zzIFQ)rsV>=u1C-MQkYIYo%wOm=-&XH4J#FH#GH+$6=rlORk)>qnynfYW@kdb!mT?MZj%p*b4cN~ z#M^c#%!va(*X=mBYgf2^E^xmCKfhe|$Yth^^$K??0Pc61Rk$;IftiaZ6z&m+YM^INcHOfIs4J`hW-Vz{ zxK|c%zc;zPxhtZc&&qJ0W`+A^z>vcIn6uxM!s2`wRJeaJ^eQ}{0QwXzZBST(&axz6 z_JK_>tni=?g{AC%aIV5b9GFyi=!n9yE``fm6&_Zh@bD6a<@A-KafF}~LJY!sF>Ven4RreJ4<} zlHQd~K<|m=K(4wNdKI2T{mD5n1oH|{DS;kfr<#0dhf#&6ve&72KaDx3RRZ;=SHQT! z+BSt}1`5xr2Kwr9p&sTHuHsz9&*AJMh38On4z=}h=u~(vJDfYC@H}eHPf^$)Xi|6q zIv0|=s8C^J9&{_@vogGxyNml3UPA39_`8%{E*(^vi=Y*z6kbya(+aQ6fhJ(ibq-`h33Mpr_tCHwoz^~u*Hd#tDlqrP zT7_-QZW~f~Q=7t@i=a#4EzJtslYsoK1qyE~hB<||GruDP*pc5e!#gV!-W3O)JF9@) z-6=r*-IEIMX#(!lhldsR6v3FnM@oS6 z(K3aP3ECC*GPjqS$1|Z>;S&KAz?8x#dlmMT0_RiseyR$X_jC)O^Gqt#z^KChIw1FK zy~5`j6+SQ20S9&_9+5wLtDeW_;M8@S`|1Df}4C@j&4x0b3&<@PP;_H@HeqIFzM`9w+mv`ScG|32(ao8?d7q+L=wwm5 z1-oxayj2dcV>bJ3P5;*XeE3|9Zd(lGa*AMD(e2t4`LyG28o8PYJZm>Hu7o`Ak0cQcd{Jt37 zqf*g5OJG{jLgK;!MVH`(-xs5MQ@3{wj3`>v0<((lL(M*uitbwq6N>KFs%UW@%qhBm zkD>?ED!McPwD}B-mh>sQEDbspJum}!K8U>zY65giQ=uHVFGcrY_CFYngQ?>)GI~fc zpmoTcqK8((u%cyoK>c#&ET?ukdmL5-^cwrCu%LV$5n^*LBd{kw_kfJ9HD!P*A6Z;jd=4W?OgQ6!_D$3_zw1%2f zGZj6}QS@}EO@d)X&!|`QOnjX=tLRyc&;_G_b{+HTn7fK|)r_KN*D87rz2{T|_4T<> z1Koejd<&KF*R1IM4xs(On4;bEb=N5RV4k86G54WKMIYw5hdDjyJ(3L*iay$?=wr<7O@eMk zA1D8K12F#ydY_>7$vBYfO9P&ts)Y_kpJoQ1iP5J=6n%!;XNaGfQMA7erWJj*8F+q< z`sYR!eZB;`6dgcsfLSjTL9e1O()%LMFX7{*Sw#n_e>s32m{;_b0+>_uRceN^pk2|| zQWbr@LeV$I6nzuDx6po@yAd?_Ju>>vfTHhqD*9f7qN8YywkrC+3?To088GLAHbut@ zU{KKy>lOWIUeS-66dg~4QAPPZGWrSipO(UiqMwxmeG~M3PVNf_=>4)q(a9=B`Ta5a zH9g;CD>{{>=(lm`RrI?e;QT%XIH$RrMq_$L(I0AHSkWJgp-a)9QUN`_7md!)H`A@? z&)HA`!;1b=3bTs-O7CyEivCW|A1P1;ql(UDKqJuqC%L}@pyw|%|C&WaAsz~ zpkkZSyBWK0Hl*0*Nl*rTFt1ovDfB3|MF!Nvlww;pE4EdUV%dc-tJv1)Zd0MywsAls zr%JKyGGRus?b{UFp+vDsfpii-* zG88+SnxjV)JEk0F6}2jvAwH!` zv6_0tPNn8Fe4HK!dTK`%JEKRjGg}lpi{0zkWfe92o)$Z&OtE^j&ZYjmB%tkV1$9 z1V|s0P(&%E&=dmHCP1N~8%k;i=t2qsLQx?=fC2^Tv_KaEl%<;lwm{03rK^0uGgp!y zaSQ!_YwPIVJ2Usp>&%%m=bRZa>DGIg^v*k&bQ|v9h4k+_%cR?ZlmD$M!Jko_Z#Iyp>6x zKzTm#Jd^H4{`-5F^hw~q4{7g1_0j3Yjxg!KP9}W{?|kYglkNxp`=4dfrw=me z;3$(OPcrE<3~+`?pWVl#&*7a12bqLj3+h^viVsl<8MHnRGG>c#=uKM*3f) z9KTrwK-_QdX42EGfWu6J4pRD$XPNZ-vrPI=#Gg9Oq%(V&^oM(x^hcz97I^=(nMr>} zet+4|q_YQ@^c>RucL)GH&&vS3^S510`k!GY{T*pvK$`zO$fWWaCNm$C`8Fn-HZj?} zkI8k1m~5>B>}0ZSn921WOt#BRb|B1wFvl}YmH_gzOjb4mN=#N80CzCi30%(oOm-p6 zeUizZT}<}60DGD2L!569lQpE(kdHqEKwf$t@D!69b~8Cp4>-W&#v#DtOb!kL@EpQB zp}U#f1RPEGFgXmIVLUgZT+P58*~;YT4kov(V{#17t;i>ixcDI^w~aD65n*x?jR2Hs7_bs$U5UIdb^(quc@^Hj1UN52I`DG&(t5x?Ca*!+ z*8taLc)kqj*W$gk>i{V8*&pa+JxN8UVPz3Sn0v-M`$#x3c#pLT60KoHVTwjgrYf$!Wc>lG-Ox}+Aj;#S4 zVDb(hU>}oThjgziG5Pht@dn_3!yzW`MB1HCGx?22nEWON*aSe@H$BGWH_HITzxg)6 zQNRmK-qi!Z`@0SR@ZR;ndHq(vLBLri-!KS3`WsM}8WxC@rCckG7li!Q{G0(_%;yuhW z@}18!c@Og4bBM`zp?r6310eo=GGGS)@4bHrfcU*VfJd49LBxIVER#QkeD4kco@DYk z@*2nU1m2%G&g2gd0?sgb-wwbFO#a9oCS&~~e-v>a+X_G)_aN@$!2NOb&nI><`QAFf zQ6}$~0f^g=dVlh1Cf|qqf2{{R$m9dhF!}y0U>}n|jdY)01319sgSbDq3GgVBAGn9f zlM%q<@Nb`*~ zO#UXplT1E_>#;LT{?=Y5e|r_+AmAw`e+Oy5gYe^fnEc%a0OG!ToXOu~0KD@(#660z zM{$L2PyQkB{}AQ*Q7hmulOHQG`Nx}?{F9wb{wd;qigb_P#^mXG0OC%d%qR9R`3aMPxk;0GWpCP0M|bt{eL0+*-^kD0C4^Z@BQf+CjYqufV}^569CU=QNHIw zfZYI;;jei9Z{T^p4zP~Nf0F^g_diJg_aP>~fbbWJ0EGQ7(w7llexAwa_A-TK0VSsJ zdcZcolT0yn01hz4j5zb-OsU%hc#J8QtxU1j0q$UmZ3o~iQ|ga1#g6yvN15WldyYL! zk?H}!DHj1xF-6%7IK&h+1i-uM(@b%$0~}$Bs|Rq5DQ@8Q0FU=3z_U#8;i}1i15EL| z06PFDnWB#Zo?%MEE~W$!9zePP(l_nO_;ORzK_tQ-2!E-OtW|DvsQ?hFS2=51uezeEHD!^{QQKsZ@9o)o}MR<47 zqfA+hGA#k#p`A=wiuaZQ$8s644sd`e`5pl9U$BuW7uEyzFy*2S0OBq>%aq}5Oj)rC zfVNusAX6?zd#ytJB}luvjwzQmFl9|EU_Vo^woxz-Dwpp9;N5k&Ux#K-?>l$186FoMp;2I{*kDEi&a= zAK)NUwjh4XDBu~Uyb9s3I?fcVUzDxL_d4YN>N}Y78sL0wJpl3B@!oc%9Yg$%BmjB8 z4*6gmqr83%Q{E5)Al*)+dt-ztZ$eq#bPrQ@q1@N+1Ds{b4ch>~dE-u|V180=+6qA2 zO;0oBEqTCRz_U!b8TU8u2jKp#>i~zDvKx4I?*<_4+kp2Ly!&><6_HmFb$bWO23?zS z>!VD0=Rv0276Jgry9NQkbNd0Nyqf_=nR3S}z*9_l&n7^LDet`vaE2*&0w;87%AU z)c>;$0JP8N5dXQOOnI;efcO7xGvEwUK7R+`1*UvqH&YJR0roNFA>{MWHo!AX`69x< zgzzuj!;~X=0C0WzL8g4=CZ>E9IFGsj2bl6T#C`2araZg{aF!`w-^r8`@-98blt&IT z1-dom8;>*Po0|bgm~sqp$94e__AR{oEu{Ij4A=oc*}u~R0N&%s`}o~V`EC+`GJFsD zeQy*{V#@b@0HlAE0roQG2NA$gru-0j{0O*ybQ@D1!xeLw@?+%p;$e)>;WL`$vc?xvrSC-c^-gwesL31o?lNU&oYR z;`x`)Fy&Xfm~s+jJ^46Oew_q7#+2WTGUc}qGUe$A0D1flW%=Dcru+xOf4`e4&m3aP zf3^bXdXg!pvP?P606PJAK7)ME;Q9yT^9SJlBg*tg)ZxE?``LP?{D}Z*|MVnN{+tIK zWXfNF?=Od$au#KIZU}%n{PkI;{P!BbUI3n-9|hq0HHw#6H`5#nd*%I&N9`9IBgB!1*ZD9 z0?sg1$9oM(8@Pk1jlkWA{Da6dh`12m#hj!z;W<3a)MnsoE-^I{0vuv$6wlG;nc9N1 zttdmh6>twz+mZm_Obh{lFS(AX?J@xGraA!on2PyGP45Ie#ng^90K|1>0eHU)ab3Fs zD04UR=zf8zJ;2ekpQ*hEnc9c68Q{s_K063N8T;{WKk^(v_`qSN=7s=|F?H|^Qy1OA z)Wt}*1bDG-Q6QY|vO`Q=euSy{dO#~+6##kX5q3ccaFnSRZe;33 z3~+#{!?$C)GIavo@MHW-AvsW0UTs%VHi+i>Im{4L7FRXW9p_J0P?vl2q z)ky#9Cz<-1R=^IxQNYto-G=LHk>_>>z1T8?pdg zcOGEs81?`-f)PiH?9I4Wa>>FfTx-I7QFu! z;JF#;F|Vm_MIGPzEK_&m-Q6hT+mQZk4>I+ZRsiDPo(0^-)FR$5-T`=qsqZKOo@eT< zc|eh=@2mq11I{q@HspO9(!C4MwIa@@>Ie5S^+QPip?yrf z8|AzE5L3q)U=INC6HhVq!@#)@W%$UGO#SFirhW|RKL$Ma;N6d}V(KR%fD%*hMPBzF zVe0;EfM=Nc$x#5_zi$%&>Hihs|N1yn53B>cz|>FO!_@m-0F>|3JDGYA_Xm$M^?}WR z15BM{0EAEO2b^T;R2~5Qhj9H2;Ipkv{oF>TK8UjY8`6Cq*Ds7R_3$uL9|DdqBHu3p z_m>d&CDiLn&olK1(jR%8sbAj9)UT`o9AN5KdzgAO%ha#o{fBY?@NuSo9q)b}<%7OY zeIyBZnyKH|!PIZc0K^{~0vu)Pw~+o@2bucqK>)(PvkLGaQ;#G6c1oImo5Ns{R(M*g|_+Cqf9-C{7)k6 zB=Y<98o+~0{Y?X4FH?Wp3P2uDCjof>cL@L8-GDPp{SV;8`b+)&JxqNj3wWHV|G5f) z>nW7=6v}xz1VH>51}FlaX6hf1?;oCL>K_j=^}k#Iu+7 zvzwXvTpa-EpF`YV2LXut?+yU+eIEG!)&n@n)c@H8K$-r&gQ+hd{(l(&`IcqCex{y_ z0M0NcJIb8=Hs&>5{@T>u+_84>ek)I#s(boX*+<^E7JO^3@qM>GC9f^YKbtQADLDN7DF1 z3j8r9$}o*GypBmsXHk?O%hsR_D);&ITo=y{jW&h#U{L2SaS0=!{AZ8P=LrV_6M!)8 zcX$GU)<7WPx69+>vVFw3`1y{ewO6ji>&sRy*TZ3b`O0N_n1Y%;-PtZ6xHu3NU!JaP zcQ_CW;8QFp_LN-_Uj@c2s3$`mubfrK|F;^xteWsE!)r&@hQkfZRxWF(T@cjl?#_0* z!-17la(vNanCjjdU?x%4DL%&PK^2Vm`F+-ww(Nl37v@bo+Miv<%loxxP4O*+#;PjM6eW6e? z6iV|{+9-{YYx#Fh*O=cdhMCCed|h=7++25T@p-w@gnO-6wEX_<@TBM9o^-5;IM!soY$}nrp#A zCv56lX6ny&fg%#aTCH)l;e^q4!PMnLk;u^H8*y2*r7a%uy48C8scvs1&b#CNZEgMW zd?f)csl{6sRoeL6*ZDaPZwIt-n6-lrZF(-u^-PzkHrg#=QznL0d7EEm7=!sd>SWgQ*m-_X4g{HyliBu^!Wd5N!YY8)N9V8^lorCHWd!mSbJi}@lE zd{t=J#L>oX)`(K{fzrTUz!X&;qd}4B^Xp(a2KTX4>91cjS&kA=bDd771Gb2UCJAa0 z+mJ(&e3HbaNLxDCT%KwUrrIJ#ryyb4+YryS>R#C^<1=EH+*&Z54r*@6p04)N?0)jF zplF>6^)2CgE@RNUt=dyM#%yhLXnd+X=?(fldX4P!sBL2ezggCpZYw`D zRWumLxLxvSjp=lw=8^0)EmW#l=2Q$+TGY^XnBu9b%#}ZA9|3>c#a+0h{&1 zGnGht8@>2EG{2rHv%jgowb3s-__^8j{7t3Mm)2_4tPle4lk=+WlAZNd$!?!pX;f3p zXC}r+M9(KNW9MI_hXm7`-#@c@$0h^}L$2WC=NNj*COh@U)&8PGD%0zoMt<{fRfT2caCI^ zcU1Vdh7Lj*Vm@n{x3u*`;K>dw;kcs1#I#pqdt93*9TbzpR}3e|4Ng-?%}o2Lh}Pos zwP+EZ?pT&i3mUVu3+`b?$Z0lN#DY3P=+qyNJJW*^7<cZNIh=?Zssh37D+3U|sNrkVtGM4O-c0sp1ogF0(vU8p7XD&>JOPm)u$ z9GVF{6N0wCt${ZNld*a25Iw)mt327JCvx4~$#q+$ z6%6i7a}i{_&u7){WqQN1Zs$U65R42ZEsGXel0%dqX!!rl#J-^u<5s5($^@$af@N^-ax4C|+>*r3R8>8%8QAksMt_{7Q`XDduDC;LJm8 z1&s_67j=I#$An&)HwG-m)Lj)OMQoHWh8S!i0`_5 zGktjsk(iIqNMt0rm5Y^lB$`6`Arx2Iv;;BgTUaqJWf!1DH&EYW!s^op+6Jg)Rc^y9 zJm4oG7*bkG!s@qDLxb+Kxi)KCZomx2+r*7UCI$-HIhV1;a+S4bOWRT`|L$t&jayaO zZx3n#zgN!2ZH?Vgb6uE%6=i;K9c1}53DBvxcP#Ii%Ht38!$0p;GI3j=r}|uxogTa08Pxp&lqsF|1o#PSU{kiGt+|WVDP7HNE!j;0 z>qN^Hk(d(7^mcb%9@axGJv}WUJ$!j*cW)-7#3ENPPL<)0@Eb4_G4A&fBS?U0b@QAK z&ZuKK#lK{?Z|Dqf*kJRw4eR|I?hPN?U=Q)vIT{@sj)m{tnAL~d^!h6{hC4Ud#hm&J z{v^K#G6B{nmIN?W(E%rTZ6ZgDASX}g{A){<@Y=-&+QpYGQZ5PdPwm=Z_Xh17w%i{d zQU=#9F_14_8&*~a%UAz(gQL-F-{8MrfUl!|i+o z?CPpa<|;6`k>XHe-%le~MDW1~npF-9TC!3OEOXE)wihi8H8mCF*IoYMqP}{;((I`g z<-^RD0^ej_%$pW~Z8r1P4Yrdpn7l2c5h;P}t+;^} z2U9={MgR7uz*Riaa8+O%*7#j(UqN48f$mnHueCc6Thh|9WH7Qqz4COl$;){>+_A{# z18?GQUEQ>Lb@A57ysbm7cBQUs?d*0m zqerP7X>LLrc|~C`GvOYss?#VGiwMv>#V1fRn!Yhq#e}5~OohG8-)bHgDh^m&Yy0FE7sOSJN+h8t}WsfY|A;heM z95Z*8nWiX@d_6_28|3|SXP8QUsPk#)B8lD{$PZ#TX6B3~YUUc0K`E>bPMjVeE2YQy zcvZF}J&Y4N0_Z=yQHWP=FySafcsFJfOxOftGwPkdQBo>_(atDfri((OG`qf(f5S}v zb89I|qRp+`RPjWbYxAmP$i5|B6!mc$_%JkL-k43(GdXBasZy!y_V3)ef9F(jD$Ucl z*|{H$VaV~+7ADY!9a=8N%~7*An!^lf18{a4ZSl$S!+WSg=M7qcvpd=4`YX-uId>l?`NTb**7!XtyJ%%a|4yW|?^ zw7C_V^=ey_FW4N^y%EQ7-J+$-dvYtAg4s7Eo6N(liLO{A1@9#>-jL@Bp2lc%iB)?q zv?XGCH|FsS^kAemhK^Ru>r1fCp@mlybi1_dS_e+=xJ^b&5gMoOsVQqyViEau{A zC@wJTfqT=$Y}^$`keZl0=4q6}Ch9(gcE{NZD2qWI&`)q1CI{*O5-$?59F)cVR2ous zb2i0CPKfqX-*<5VxS_x<7C~`LE0yxw2S)Sxu|lC>;K%$=^Bm0+O=1PvLmCQ8g7l=h zMAS`l9VY&6-jdLTG6WUV+Y+(bLcolQ>I3HLfZ|`1T^$j3Yq^}nJUA#ddlOz&{e;Q% zTYpej%!<_yc|Q`lwEy;%byv}Sb8}pBM><@s+|-WA@rw=4dWS{%xUEU?->Ye>6xTGR z?|@{RUui9$HXdqyL^>O484bGj9H^tZAjo0nv{WDBIxUB3F>HJj??=L|_mgzR=Pb^hc7f4FO!k>;xQl`9eXHJ@gKe<0V=ut?U~! zf-15JmA{KxmW!cDX%P2PO0`!#ZhZS;Sc|uKV)&My(+( zMGLKi!};Mwu|iaeH)xIdJQRdMgVXZyc+eNM1=0^&?2fP}n$I`qlDeMEHRtnDPuO9% zJPgHS)EA7WsE!_mc)A#)z2L8!Sg8^#&-5DVsoL#wKG4OnOojRyrB-<}z!pXM`4*cb z*`WP;l&*kdF_Xz+<*gmprdsKS$GR5R@yWWyU2k(Z9ktKcQnS@;GB5LamzhksT^hJ* zU|>_D=x^J6NL-Yd20t?GoZEcARWN8S}u>l*# zT*m6tZ5hAb#d9%QRO>Mc^!rGC7Hgvpz!C#Zje$ODUS&1;z2-$*c5PX-Xv<=c*JYCA zkh0F(Y8nkGS19kXT34CPx#hAa+}*w0)gAV{b*tID)ocoPyOv9z6vSHc1azMynA1J*mT-l1fJ%iEjlHj_8yK_<|!5Y%dF?M&6inp5bXa147DcPQq2ubl1(+$ac*-o*p*hZLO+}!PT z6RB5a`gefaHGslavTHFX8Pkt3@#HY_T413eb!={y@BpikpJ&=2auX+q+Lr77Os*|Q zb7(IroQrXH%xV*zWz`3Ay_Cd8EdYw00{3t$$`Sfpfv6YM8Fq=Gm?S6;V zghA;J$6cH!98OeEncyRz@H+6odC+Nft5Ah14Pmo+dPb?}uNoDVH5?lH``8_jmO7UzN>vh9Z$% zByuNDUy=?r>t44%=I1fqeo=a`(dW|Rjr?CGys}G@TyonWjibRZgl2qh3PoF*^kBWE zPH`wMw;GH_gB`NfqBh`xie4%I8d_<_DJ+F_4dY^d+O>ixhgTIKNjh+Sz-Go$+IH&x`5r7fwF86oGB091g%ln zr=heMpF16A%Rc8B<7pS+*p;@!9KiEEvmz^i=jZ0D=f%)UMv?iK2n~%!D201Ezl|W z%crNUb&*INmdir!uF#H|WOgs!j>9xeUK6o?*mYr{nJk}3VYL7=FzyQJ6EGjoUVGRp zYZ(v^mM-|V;Kq1Afu}SUKj{LWq|5Z=Bp)x}CRL*E?US?dQ2Wg;f$-U=m0-F&eWF@~ z>5&sBs0`KhzOnwQwl~d4F(DYD9MsaVfA+&@lS!9K<6~o7LrKQ8JQkjOyfiUZDB){7 zpP$Ur7(Mq#{uBN|ti91+q;*dKk+@)4Mo*Zt`^6=}wXsNe2$ZpQaZI ztR$)M0`N|fCU}C>wAA_I;oqdD@8Y@eZ|<5FZEWz2N;+>&N2{V5V{?)j>#nc!w*wbh zd_id#!6G54G(=a#Ak&MGggZxFgXZA-!=sl?q;Cn2rY9~d)7L0HkMc^0h%Jkta!Ev^ zy^ZobAY^g0vfF5w)2SQ64?GaQfsdVI*VEng)Hn0eRvK}7WOep|2ePaASZQ_Ufd?|H zXN_?et%&FFDlbY4Ip{q0GnOAg-_2dTmP=UdAYaIf6?(P;A69vB3@lJ1R3vkmU`;K? z8Q~k7yFQ+!VlDvj^xVu4E40t}qPiM+k_>G{4@7Et>d;VHTe>-|9U-9hHFLj~z)Bhm zX_03^dcdMu9*`=R()jo|Wj3lpz$Qf3By5|66UCk-M&m$@o^HbZix zkVJo#KEEFxT{AAob9~LA(e(J5QFG?}lJ-h3O}OXNWi7uKqf5%KbUsyzjHD_x&L_(`?F71<(@xO!&2J+R z;k*_CrOs_17qk=+V1kmarm#yG_Bq2mv;f+Erx_|kewMk78Bq6IUz*^rY%5-bH`t0?u04= zY#B;Gv2-vHCk%^;!J_`r+{x1~NtX-JT_sP;KbSjt`g}Gea(mI)bGEE2Xm3t?Vf4>$ zD{!TGEoDrfv-o(0{wy`(10m*So4gi4JC_yB%V92cqJ3z*OvC0m0m~YB-_#6;HLp1* z^exMw@FMA07!LD!G8?`uDfpK*w~e~+)||I zK8VVI7F5~cqh6fsH*-3{) zUebn#G>O$T4rhF;duJkRM6gRPh*=l~@B{kts|`Fq*>(V*MC3v^LNW)&HfD z^hCrV3w?J=ayy~mfYM|<5<$C9yv~-r?IRXCn>GI9$MQV5Xy`@`XW!1pWH?Z#vOJF{Kc;a;2Vd7H;-T=*p-VSoSO z%9S&E5pW!7FYdK^kQmAzx>RJe6Z}%Nhy%Wn8e>ocBy5>nM$aU?w1fgH!SkB}4PC?S z&S7VA_|j9S^4s&*U!VW{+O=;frBbExsdRe#4L8iREBPC^pe1Bz%!DS?4mznjmSKGY zH7R@w`)zu^P(g53C_oz!Y<9LR`2u~##4`sakK_^2n`#b4U~Y{!H#Or@4W+yc`I7vq z>tXFBKN(hYRCI#_hE0?eh9s1*m<-UHvs`<0gP{8c;#J?q(}vM6)w(1qjN{Q=;SaRJ zK5n@76b)tLIh;a6`t$-RDHVmc6xyxr`M5A+w)eNcIs5_MxW21uR4*B-Owz|grA=kV z{DoF|M69EH(APkcuXwCis9h+xbBP$-59psXLs&bgyp7*!*j37>VZBhsp*mEzgx6ke zhd$L8XiRw=)}?h)pn;E(LsmzmJZYFO{DrIQ9rdyeAJ=E(2D?-(Ly2F4b|dQ-GZu5U zsMZgb5B+ohSRwqL_k;_)Fg-mzHA43zsd2J0foR3p!52rns};TkZ;YDfx*5iFm=4h5 zaMhYFmo(+gZ&oy+`MV;#=Cbf*_^b)9;YIIfKI5(UjQ>T18gUi;Xrm$|LD&OHB-Ubj zE>@e|!JWumR`_Vys{P0rTAj$F>eU!EXa=48H<=Tl?pbYWuR9Ltv`@K?3# zo#1)&_-uU;t({{p2CyN*t^@7Fhz2DEuK9w7mLt2~!cfuwp)cm@K_WswzXYX!k=)Rr zLO-v;`A>K>(e4<-)MII~k|~#?3-`iab>Kvc4^wbk85w~#X++$JAmaPrhd1y~v(2DC@;ibe9&15icsl<9N_sM-4CIgs`aUr> zeDDN?0vpOc{4e+r1G=_*q&ia!Zqc?Tm+n9B)(l^3i|Vvs%YxkKika&Cx~s{y;B5*B z7P)k_2_`kS-0POz%?mw1MeEi=u4uC>sCoT%H*9ZBs@{y`z4D7aBoc_GIZ5z_cVI3= z--$UH{UH3pX+H=}g4M~;xRN?lY#D;RgPI4dTQrcBPt_|*z28sY<;j_QBZQBLknv#L zZVh|2kkuZa0)r|V765R%+HF4G=!Rv+-w=@$cVpbpyBU5{EhuFMcEgL<fUTr`c8C+iiE%WgYxe!8f=gkyW;ONeZ<=0O)M7Lh~E#tnXafnu*0St*wFj z`qk!xk^a6`TfMF|nRQcPG*Mq~cDc;9`a7sw48BdaKi$x@p%&dH5>KFEZbk+DniF=% z7-a97DffEWXB{*t_G@2d_1m^wYghOpt53cYew7BtQ5@fM*yTNT`ySbD`+-B@S6^K) zIMw<3O^>iI3;m{!fl4N0-Oz4f-k^ez3CJiyB9nu0mHsexv3xJ&%iotZ%b*E1Vc3-U zB8w(Je6$O0pX1PkPUee{)5}we<6aa71-Z|mq>45D>Qse)Rq_{B7w|x#TdgcJUL=2H zj=z`6|MZJzFZjbL{tmP^X}g3j(AcpgcFJLc6yMrfY?a(@={UalSSsa~%U_mVE}379 zp(Nxx<9##f7P0Ee7#hWSSPGMq&RK}^*a0{n)%m#k|0!IB)90i5f5lZS{ommlpZdSU zH8uW!hpSZlzr%I9@Q-oPV*Q_?335XFM>O$Izhf;zAn9nOC#^&k#SpH41Vk?bD!Z|&0Vv=Li?c6bH)ccIU zXNRm;!AR!E1^eX;uokDL)Om=vFEq{!+*DQ?{|4>_vFf50@Ti)D_s5jg{4qCyT2$r& z*ck{ndGZ1GLi~xWP8Hl*s+h($I>)p_mYb)hsBx%)Wk-36f_cFqpL}S{K>mMF?&-04 zBzAte$xE-+-sr&vTSoNa0`1MU1;)cnx&Qy+hNs+oGMU9Qh36zzOyoF8>H%_`#LlOT zCIs}Y)#*TLEsjs}vDws?N==Ey%S<^57si@*0ca6Q*F`osZQ& zPBdYRHJYzp)_kM!e^6goBNwVKOp;_CgUk+{#O!(t<0f_@&n@MNstXUvF*Vv1w&{iH zZ<+Bx%2?*L1IJo`B#Uz4{KhyTL=KG_#K?!*!w-20rm{Fhb*n7~5moFh)?yV~J&5mo zHU}1Rf!9%IHK)y5qe6~Ja9hKQ$Y6WMoc~py!{(5iw4jVV>~2y6g$|^+e;)N1{X%0k zL0-!7fs7WV9S*sEE2PvGEA;9dUNsO*o3PmtE?EeI(}++}@cima%M%^(_MV{A(UNR& zbgu2j(!YCcCl`;-&{U|mDJvIj4YJ~RZ+*b+^SRsdsX9)A6t;xt+bASp|M#Ze(DrJZ zJc6<`!Benb?8NAYa;LxQVJft3R`>x!D7MC+m=Nv`S-8t5Y}T5OOEDOiuD8orRJjAP z{dy@LET2YpaA>aU8Q8I|Zj!VOilW7XUgx6;+3qLL8|(v2JnHlY<9X7OS*;rfcD&d6 z71RbviGFE4c1q|P!56SYii?{qe|817K^0(_r2tAxQn3cVqY-CQFYhaoHeTQ) zerWh%JD_m}SGOdvLmX>%^1dcVEC6}#SZ!YTt;KNk!q=9RA5Ocs!o~U`k%iZ@4(`W+ z_+sP{k6s5y>bJbQmX}2?-x}~>Ymku-+44w6i!ruDc)P*MNx99b18qo$Y7O2((<3PS zY1CzL4{mxEr^J3lvM4M)uSUgiZz$9ouJU-=mplP~C!$x_-i;XvQ$|1B#hb7oMpJ1S zq4|X-vr=x1Mr=848s|gv3iono0v$-QR4g~Y9EIYF75FTe^Hh3KZ)&mN^*`aS2R+dKD+b>y zh-Wk!;Tf#aE+x3^<%IhvGPSs;r7qao+0fXO3tw^re`VJ| zx~;LRp4&QGQ~me0n`8ct=Fm}hs1chNs`JW}$SWdvWKLLZ=4`2%MUJ}z!eY~ivm)G$ z`U65x0cR7Yn)0NpvC+jxT!9Dj@DEGpfnWHSL9hC0aAr+d7xL^9)Tye(N?_#Ftnj22 zfewqD5wSZ3`xtPxL(aQk(%R7~W3&f9oo=q|6ULZ2eARHf#cg*vE|)y3+IsqKX{LSn z9Y}#lv6J`}E?tlK{SpN)OFu-T)QC#At*m!QmrG8clpeb?)>l4#UXqXc@n*!2s?l7J zuOjs8@LKe`;gghT#&(mj%fJ0#Y~T&x!BgosT)AXJU>R2hU7v$rV-cLi16huCdkHO6 zWy|PN4pkI7Hb-)t5M(kso=G@2LoPp^N~L8xWR7$}wrkjxVwVeP1p%^_=lSso5|qYD z<94N#E{_)#`*;Z{WPXW|)s4L|WE-SiG1dJQS&VKF)yzH|?43e`SHoh}DALu#V^65c zP?8v!4Y6g?y?OHG;&!?cY$rW?egZp_QkeXzX&~cHhz&d9YdW8w%KNd*7VTlI{Z_Me z>?$_OUW4-ZgvQgR2~vmiH3+>8yajd&NS9=PTF%LeXcLSu2R&%c@WiFjLB8|g|L{t- zg-vnz%eS@YRljDSO<+qRQrnOU;(>W-%AuHgS}nOYi#@u??OqhMTiOP!tv#G8j?_{! zZy9WHw>J42+|K3>e;Ztg8+=Wz?v_Q-@-G_mje!fJ#@-jZDH`Ol+Z$u1Q0r^$b?uAH zCLmf=-`Z#5;l{==H}$pFFKVl+uQM-dud}x-it(luOI&Jaqn2UYi2d!Qd6g4)LYv2QnV&!fP95 z%sw6LEoYd9q210~f@Sd0Si$6xuvK2vq)nr`3@PVx3ZQDmwZ3 zE*`r~HCfs+Z8$fiv2g^=+S#l%G(ka);R&9N8lL92fcGpBp4`3QI2fk*hHF1eAO1eL zbkTtf@PC2g97~!kcn~}eQ8pagLO$OVN>1P4v^Z)=cDPKorC*V~7FE9H0mbSJDOYog zz4L-KEzO;Fi^)_M_J7FM)7GTA%}S^(od_v)ZZ(t)#7(V(aZ?+Ao8+?gas_LnTWNdq z8mp~Na)o=FoN8ZKar+!iJ?=MJ-q9e1<1I}tXH%@TS!xJJx?5YjBeVK0ft@pu1*^kU zFbiXLpj8JX6g1>gYE9ZrUpv7dPurQmLKJ%uTZ#ta4c?+1yWeH`y8x_WXzx=RN1)l2 zF0qG5>^15FLlMDcm^a93i*`MC?%daL7R)1Jj|FBaIx)qt5@RJuJA;Xe3q3Xg6=(nq2=S1ij^x*NTw)-U5SN)mBRDIs;b_ z^7(@Ja^l>(fh=|?XA|5DOj~Cm|7=jx0@1y_4#)Y~yfKv6oM_CxWm#XK4;x&od6H~v z#{6tI^fz&M8L{@1l0v+#8-q^5JAGe8F4B(mO=peOLE}?d#ixEKx$cmnv;V zdMENSU!e8L;esYDvag)i6D>I0A)OvcrQV-hM_qFBedwf{!dvdUd9!goA($1(p@v_N zB0Pl~g%<{T7ivynl?Q*+a@ZMZtebM!AP<(Q@x_}r*SbYZCc!;n@x>pOO`*-3-$FT| zn)j_=-+rWh{m)>bKF3Dj(L+0r&ppS#&+kNg89wNw*;vLd7PI3PHpX_bx3SyV``JGB zNjAy8fU`Qk#eT@1K+9GatTlsK?Iux;s*V3zNKFk=3#q+TyQxLZ+*D`O+5&O`%+)lt z>9=+>YcqLeS9z@%=V!{(@XZLqN5iM1Xb0-BFa_7zQ)jc)+ib%I z539I|%)J~o-cyYi?3LFI9m7YB*MDz3S&WQ6VFZ?s8AvZN9)}jnf=h;v$OsiT=ouwO z>XE-_1fFA5w0hfWBlJ>3QSp%RR517{S&i`-G4x0d1I-Oa;A-Rb@`Q06H{PFK22=NX(8M+{-Hwv)s!HM&d{2%-}X|rk!`|mx$W%DG+zr1BgCfjZfYG`i=xH7xth*a zy{Sp*wRAS}{-{RR(9~YwTBU#HT&}5fjBzRd910ZU_I{%`)>Qh|xHJ)0r&$hdTA_hT zf`ZY$BSte-+Wu0bB}a@#yB=qho~*Q=k@`|YAS)QX`CNM1XjZ&UIgA>81(|-~@oTi@ zZuTzrKK5a@pFO}HVh_{$r$YZVrBdytHr8q(mTKaeF``#eVV}89N25Xt)D0nu7K3nx zq6yE{lXZH>*w@YrR(l9DB-Mu?e|8?f2k0J=y2|G8hPwD z`t4GqXDZ|7lo7bv=uBx&lE1I#R5rV*Zph>bcwN#Eou~RQsnERqNqenwh9-R_BLsQo2$@7_Hq6VZO3kr)%!Ej0-Ak)VK^+ zdc}D88Y6JX2wY-ZR#cvh4ijChC{vYzR_U9WjX}IPcYRUm;DV8`Xk5@cRM^Ozz`XHP zVV0H7uk>7H-A?OatbU9WvS=*{1q-${FNd@YohYO&(oE7>u2WERx?E6$)@QPr`q>ZT zILsj9@noPNaV;l!D zSJy_f&QjqO;aQj#P*}2Pk|Mb37A=lcISLOwQUcFDPNjT$a&nSnCRF-#ZSSTbok3+l zY6A^WJ+f&AzdOUV3Gp{&$mB+gluD&YA+kCGm8GYQ(;`p@v=BBnYm^1G$#cl(TIe#c z1|pRJOk!|RqYE9zTiK!xjexOJz2Dtt7J36H%@D#%E$uC#sNWwA4L3#owmOS{uz>=! z6~UpD$!2pmwzLOVXn1UI;RPIh;C2%yaF@SRXXOqBcdEzFZFM}Sl%J8j%5$p6Q7P9c z=y)cuLLrYw>;SgK=QU|@Yydmgs2`|b@Xg1jA`u*LGP7B{LZ1^@>jNuRa9GgfbaK@h zI{~lgaV$#EDpS~dSuoD9LVF;ckse;C!p@nnk!z_UU&u zZyOBL>$7n{7M+d5;1lGv4Il0rE)+c$$QK;5(M{3Oke==7ot9bn>Y#PP4niAD3$v>- zHg>|OO}@LEYw&)Ysgbc}r~1&l!6%DvvED$dlT0?_=PLYHV64iJCkI_^*jdcSi};(QFR^@`E|yOeQ}jj3 zMa(Vun}^3(CsogRCtt%Qu!vm*-bY$$63B3^?yZK+TG*=l(Op=sA#Y9iBhJ4kA4Liq z!)lKNF1n!cAwHd`-r*68EFAEQ?@62wpGu(x3*x&79x{o?6s}WfXh0gZNaG(T|4ie% zMw5>~$6zO!6$Wpt<7q_?nufE@SFF}PtH+vJr>#4&j&H|ppSAMzGTR}Fy3%S9OE_}V zM@#p|ENB;6J<_uo^&|?RcB-}mtuRG;gwer1d|dEFR1Z}}D~QgS5>Ig05zT-~5($ZK zN+bSKsB% z6{RJG^UI<^!B#3|r7{x`tDyd%w&$RH>W6ALh0RWlZ<4CY15CvLr3T4C} ziZvxdt5IU`RR{qbjqZwR@G{W3!JE*AMm^wTumF#xGr<^f5-JUO`_Q#oqBx{8Y=1xq z^(6{IL(5=`f>P02wLfY)NJ9uhb}wrz5f7(ascoqKlzSX}j7n2&7mA}cC7>`$UyY-% zO8F)YW=(|?N>Wii1ftE1zZqI1PC&y5)Px(9{)C_^dM4@uF}z%!K=q)q7=3P(kDdu^ zVkZXbg?k!b6xI)*deD6}tTtw<1xDd9Y$_~`0!5X?SB;k$j2OL-+K4JuDbvxO} z4ZR@!RzeFy)#lkxDhvC{0zKPivxfOHD8jAtEh+tmUaJ9;6t>NL$ZikgAf0f_e4|Rq z&@dE@W4BkkTHN+#fKe9Yewr_Z-#`b}lh;5}>ZP^5)+;muWG6PvXKjgIm;@m2^lBAT z84PAxY*u1RFKr;e3viO6*Wgjnn@jYPB>@Kq>X4`rk0Xj!MX(34GZG(Y3#4T^9f0$O z2h91d&Ua-m;-mVcXn2z7Uo_B4lI ziZL|(EjBZD%h7=~w1mrk)M2{eAvlc6G3772$Npp$tHp0PoP7@=B&;aq-@Ww>=^t6e zD$-b6oD;qnbjlxOc(SjEFSI6>S!7IsrzC8pAh&6Fj^R@k-bVtj8KJGB5N1!2e2*{q z`GCUES7bAo!5jNWm<_>w0sPWk;Wu=K7tH0kJ>l1PkT5?tFW6>Yx)xs8oFOzUkXf2` zIxm=4`SkXY5oGmp^P*!bAey|ayl9VqWi4&kEa#56`NL}d_`wjVt;4}hy)AHD!J65R zeQ&heeR@%E&*H^By^GRohoaG;wK%h=35Ucrg(|8C)X{jK{I3>xzZ7l0aKnZRo1+!Y z2p_j=JKwicv(LOw>(w9fKl9InQpsLH)@)eBFcO8y43;{WZ#5gN@7R#sk26R@foOYs zG!TN5PRo)zwqAVk)|D&8cV2cbU$fjPixY6aQw>F&SQ8t0$l`RY*&C?o5V_e|;JAN6 zj6-yRy@FZb&sPEwvuGyMmDJBOb+Ex+gcX@l_7_1t7b|B1?;MmwqegkjFC>meuBxNv zD7?;Z8yJ4+H;87{U{?EZ%{ZBHdZr?CTFIbSBVVcqc7w+gF*9(&(tyn)Ri}GLl0%LG-DBUxw`RP|6jW&9LALX}Wy#jqO)+sm~E&={Y?g!Y#3ET0< z!#BI@)OULa0tX@q>$ZD4TUYbj!#4*8yzf@)+~16>Ztc8xn(=`SiY65Y3Es z2R6*`q#bQnH zYM}?Q#1Xzi;JqbKn-#StiHax#TfuOKYeJ_vYt~_XOSro~qvZhfYf_vKjQyIAOc~xO zhBhTXmM)xQWBks6RQVM5kB@;w$NrCjbp)8pktx z0=Cw;H2~cl!mwx8lgD0PtjE#;HypO|4q51RiT{zGcnR`Lj85AGjn%NiMotG7h@<(C z38_n$a*&EKQ5%#AMYYgY(@C6ksst$$ZLO`gz%E_amT9`~599Zw#7;%89u0@HYj-chy?oorF2(&>0G3cq+HMRGXFM~Qndl$Od( zb7A#_<++*&A#2bmt!^tJpEB}<6!ZQ|+>f82F=c$ws*9EpGvDF_4)F_CbTR}^@uSr% z{wgbbA;nkaEVSh#=tpzKI{>4Nj&KvbNS+~8{)nZP^mTi=Hg7T zSL)k3_2KlXF>09E1wSMrjJ1nF;}%FVJuHu$#G(DU=!|c%rD|ZP_81Ak)MP zEl98a*=TX2z_56_Lp$IudIC+o7sG~(W0YH9Ql%eEisKw0{J|e@96QCT zG8~eZD`zd7Fn%9NgUuy1mWIG=$T##mq{e#1IK^{0pJ$GPC&|=Q0Y6zQq(V$BfwAG? z$>CxA+`x>Dj@rhUugRCS4!l!n26PRl6u|q!m{jzf8TJAVT}-CBqU&Q*>w;;A1fH@a z6-oeS|%c+G_%{q~Y{woU4S!)f(Pk{#?DP zy3oAAxMjUXHNm`%-6)u`|3+;baJ$n(5_e8CwrF9at#8%z_b;M1T|Mkl907NFCQ=1T44M_Y6FuN^a8$U|2se8xpr9G&^quO{QC zr)Z<^>^{lQ{L~ly_5eOJ`4^FYj5Kpzo3J>}p7RsS zp!#e!3B#&g+h`XhW@Bg>JPBj4ARgXDK#fbW*(z}rl*lp_q7jiQutudLb=GQa{EV6z ztqM*65(7wS&>+ymy){WmZ6UXnnwd6qvb`S!(?R?T9|gs#Jr=*mSYCc;%xU||y#HI; z>(KX?gSW;WEymYj2T0M5|)zd2Ls3_(~c882mhUY{3F z?eg5~^Z0QN&)i`c=bVxDQLyBebB6s8E+L9#L|FPhQlM>#V*opHnu?k9l|JBHHX){| zA93nTFFoHet0DM?-niw`5K=R$sT6rWsOy>J0Q2&G$h-jaLtF%7{MmCF--vv{UN9P9BKZKu&`n7lYr_zCslG|mL z?Ymnl=P{oWn`-S@YYvna;EFN6GqC)EwYs!90@DW4X(0evB zzx7u{7WOp>JJ-Prtx3AVAQn0WF~&jJ16*r>{E_+t%%&1{6#8fF{58b^ZHB`gDa_e4j^?4@;3%#gX;$mY}$ zH?1)2`AE;)R#WUYJ8K(K2L+W`jrpKDu*xS@53}m_&Ni>%2Dm@sli!p)wUV_gO8aSB zqktSdmStSgIzgrz#iX7P=&WQ{G2|*{BG)>kb>_riiYOIZZHsFD+BG!>f2u}AB-J1w znjObtR*lRHlPA;262G(%MGp4KVmcR?4CK-qSATD0fJO#~=Bi)Iq;k<%3_r@WGEhw9 zAe{teB=7UG_;P;^PeIT8;6G(1Y0q1Mrx4-?V0IO5gNy#)JMS)s;LuaQ)*LLfmdo7S}VjtBeopp+~%;=LwwhA zF2b7BIhUA)iK1)Tjn!)8d1VSNjX9Si6mdZ&0*k^(P-t^TYA*q6!ZzN}=A7K3_*t?R3rI6h*)H zISqF4P|5R=qVktf`IS_AxVu^S4)}ls091QH;DC@4d6Iob+bYFAS_I*oq(PHx)o@&W&>y1-y+`MwGc2~}+Mija0n!q7Y39H7a;~9I&=iNwbcB`LX@q0L=60cC_+W~Dr znY79Zg2>uRM2PGeG?K1Y_?^NzDeR&i+6BZiq%;IEj0cgR1h>H86~%TeRdaX{GCLK+ zDUQ@hLwXEHZN-tuj1>qKfRK@`)&L$6m3^Qy9~4hzT3-iHmx^_UztN2l=LOg|LI*G7%{P{NH_zc zZC=7b=Ia6;-%hL7@$sy0PH%(hA!)-+;SDzl}@Khmx^8Q z1~)KBh)GyO>I@amAklBvu99sd`v$Fi7Zp~`D|6%93?q?1^7n3SZw~^WHhohe_FtD` zG9Hd=&KlQx&8bxnyVz>`46nt{?)ArS@-;@#g?K1Np)JQzF|C(a^$rh^CZR>0!-un~ za)Bs%i1KGQAj~Gmhj>e$EE)x5JOhhoQhTN}SnMGIJ^nAawBBylNl1^dR$BG0?3uJ0!LcDT7%iG!G?LHIUD; zh6KzYR%^*>BiAg67ihQ(lZlNDG-0pC;Gu6jwFYN{l@*%1X z%o$s>&6D0fq%xP)98oG5UFxjWQ?4YQTa zqVXWm#ZXhF9*BO)+mdsmL}(zohCC*T)Dy78R4`jKS3A}{7azDB2&S9Yu$`=nmd9W9 zgEqkn5wLI3ai-$Br4|w%}YkWMF z42OKV*w{(sETN9gafIUyMALq+*Po8!)Cbtb8UZb|iMerrmWEuA_Ccd85Uha*yfW+) zA;%fml@tC4d`Eybz?k0xq^7168F8Z(4+7gY23aK%-gzo_YxUM#w@oW!tghxebEkjj zcTRJoN1H&8w6V`0ZeeSa@UgFj3{V0YEtw~%ozA&@Jk^lo3k(rewDcV!DAU!ZFfyExGskP>tPFc}+zdMWUel_v# zrEIYG8xYv|Jy&W!ve}f?mA)%(&sO}Qz2;I@oL2j>lD)hSd^P)Kd9EG;!5nuI2z-x> ze+3q6(z+8e=oY47TVnhcrh$ABYhfLvQ{D&6&Ym%g8Kki0@F|B8sVgiJ&VkA>JJ9)~ z-vma!TLhkM&_w1ZJy#L3q1^_jg}p5u-HE2xo6U830>0}!(v#L|7xMY@5&>d-xklNB zXO#90adrvZNy*e>DuK2dj7tl1gL+6nyuGu2ex-0}A^xutNA7d!KKq%tCu~3Z=JR*f z=RQ^eUE8LK>y}6RJ>B8<{8Af9uar*ay0pvHp}iibq_G4Jn!y7q2v(jfVkbjpNF}C0 zv~mQ;BD>Gvxth3A3&$O6j@ifO@0@q6ITt?fJ|COAxKLWWx^OXlJ~*8;qP24FynoV| zJ^zC>2cDW-_|Z77)s9?V!VenXo-Ng)27X0;1kkf9K0;}EsR0`W=5t~YaD;sq?|ito zR(JuTq*JvG& zKm2YRS}J%otebUqB@a!RqWlG>uF$NtT5F^-Iy;@UR%f()sa0URK%=mcqQz!CCS((T z=jV)aVU-nX=L-_@>b<(}oGd+JE? z)?0HOd+_ZK9&>e9RZ4)pR5bx_g}>wIFotHxV0fa z2qb&3#YuXe&OI%D<NInCX8t$40^_^FRSlk7TqS^>I6BPiDdRCZv{>T@Bk>ji!yZK^k$8$-x?nt+*<1r2W$R)XGLlrz`T)j=oDCT)Qky5*Rsd&sFT^ zN`pWOgWh;BTj7`t)*kl=@NCE;7%7;v$-$DhVGx90A1Hm`UPdfFRKuWrwizqvhOOqt zjqy07?cL4XGpBQh^`Ntvd-|3k`3GqNjyGo)d+VSZ48CsS$z*?+w);KV+B$jqBe|`s z&#AHMP^KXDEs*?uIQPqnUGp%Tn1ZA8Z1$K0v}As2od%Y zO1K6z6^PXy6eXDcH9*EEK*!GuB*>sSGI%;5VyH3dFb-r!U(odnFe+|fqtf@xm@M9e z_fyfZVK#ZW3Oi)m2h5x3Qutx%8Q?p~|kouz#eojn{ z1tNB#GC<4dEyo>>|Ku&jb73PFaC(Ew^MPl*&Oj~^%Ee3GKwy5Q4mg20ChCuc$Gubj z`qObEs_PAZq3)mZj)%?l(*d4#k>;iURb#@=>`UU2T&I(JL>-YYg=NO)HG=fk3D z{*J3`!Oo>7K0NfOm>eo(@ViaxcgWhPS5Dbk>(e*KgKXY|-`HYu5l<=1BM|9efh8U*G!+rm24;($@cvBZ=(SlQJx3X*!n8S9A7+ zN?k7=LWcS`2f|N`rm(+mW162?G6N97U~ZuK0#+Q(`$3BkP_^V(u$1A6q&|7R|2x95 z=~OS&8NLQSNIdXmo`B5lhz=b*cBQKi{h;`*(}75!w*$)z1yi)UVXkEG2~s6s@^jod zNM|5Unp)Rln|7r(!i zL+w-fZJ@d8>mF%fzyXgP-XNRmx?hg>{w4@B4o4S(;Dm9YT9Yp1xX=!zgxQ993lMmJ zIBqZsHo7Y??j1xF2l`Dff*m#R2WvEWPiZ%3)u|McuT^KO#T0%wsI${-uQw4Wg7FCs zsnj81+=4HT?xBO(hcK{&@FIiD{EZ;(kzHhmson_QTDVEFkXQ(Hv0k;d;?1FDEu%4n$Ut_p;TDitYbL908 zo8s15uJMsv=Z2M{-=G!V1)MT&YuZ#yCDK4j5-p|D(wKH=S4Vr~=1#0f*B|+ij0tx_ zB}8vPHwgVL!mX*B*xZ37)CDQnPV~cT0CAYevk5fkMI@uBKNuaG9*YKFh~qGGbjB0# zhR4d&C4_>DjveztYv|4xQwygTri_dmdPHx~gXcYus{t^@a8EKSURi@*l+;Dt&7SEHPGO6{JW}*&nFOCdPYg6-KO{Y9P_N8)hk6-PjFNbxv50LG zd5>XcsuEe9ogO=q%^sl{YAAa|KNDW5)1scH+1oQ`F5|JYm(R@1j~%&bfwrgdu_I&C zcTbPyj$eb8sMXq*`zPwB&AcDG=LF;{i?*9_WnbjGA@e3_T?>m^TD2#@F3A%lr&A}I zE}BC_G;nFTDZiLFcHKtl)n#vp*u^s|M3SG)kXN(^ykl+P=u*41lsxt{fInfhu{;c8 z9q?s9+$UvTwAua&@M#SA6rv(XI)P2}ea2YQ%-3$s;y5Xl`a-T%ZdabQl6_5|nZYoI zXqziPFpT2MxmKlJK5OO+d&8OO`Tj7=(XL#qU>L1-P`2K0hiPNTXpBQfVTZLtbjmH% zv-fHZ*{0D!tdyR?h_{W zGk2W%KPoxs?O50G0NZ8lQIt`|Xd^53$qyW0QB_C=Ro4N@M726p!J#71PjwM@)`zZ}ed*({w4^KcNp1!(2s>_T0#Mb^ zA|2G~Xf$%x{|GJ{G@xVM$Af0y7!UP*m}6?Z2HiOY1&#{DD;31ph)o9yY{t?f29i^5 zKg*&qRAho^ehqdf8<734sgH!z7lWUX>B#&sS=^!05vhB9CEDDimvE@ z!ltATx~*jr&E$lDzzIBGdB;0mddE9HJv5M_!z(YnqcwDG1WuTj6Go8z(xCK)n!euX zk7q?!rT+A@_ul*Lz4uL=JUMaVggjbh*KqybXLHtN-0Z_)8?y5S+Qfnb0FMuv#j@Su zIAOO2{c`B_#y+?e9dJr{8Bj<4y%D9bU1ozKWO$iyuHj5Od? zydL)mcmPV%+*KH!Q0q^mrWK!GJi9a#xU_s~t+aU4v~lK0^%l?KiF;2u8>MO3J(z2n zzjqP-r648*svG3RNI8G{%*6e(6WT~=t#{#C?jwhlX~Mnq^`h+rLoEz%Vr!iCu^O-b>8M0v-}+G#eVeVcG$&zIq{+1 z|MEY5NeH&#eXmS-JZ#czFzcU)Rg(mb@Mk9*XBTIh9=FqVU#|DenJ;NR4UK9&n$zR{ zBpa!_CjvnUI7adPl2%gjvk(-jY#A3ZE?-wk5Z+3PcB^w z&MXykRblg0j&5#k8H_R1>AW)LJbCZ&B~P=uI63ZEYuz+m`pRa_XeOGFDFbtmE~IQs z@e-4ui5R!kgkd;FhD@nRm&1o-7JQP!M{63A|YMjp5 z6UoT&&F7Q3b;=ej7;O_zQ7JXtD2Y#ChDw0lyE?MIo>IWN4`zN=0V~S2_R9AG117mw z#!P9j<+K{3;2E8!M{NXe=xe3OU5W;p(C&4rtrlEExKW$<$3Vb}EySV#OJ(AQF7}U{ z?F34fnmvvzpiHSqQ930OU{!z_t&1F9wYhM-SCMe>1eiUkJ~RwgMf+LU4@p7m$QAC^ zXbf)SC}YYYxYr?<(03&(*#_Ps{>#<-I+dJAL)>ilwxCB8ZK!{0VhxE<*e8n@ z?U?W*J>)H2I3bkkNyO3^rfZNystwCAd5|4YgSZXBR|oIy{@_9NgQl5ndl~zj)Puw* zNn8;7%KSedi#u}${j}ypOv)?Ij+O>_GkV9e2=BD-rw^T6OO->*6$V@Sep!}xQ2I8S zdeC>=``aonc1H%| zpEh?eh}poaT^n*;jCN{k7?8CN?4<@9FNfM%Q=B`Wq$?OGfg;xW!8zPJdi1H6o__k+ zv8};Ci~8}SM~^@G^wUqDxcTM}j1*5=lfK!c$6y5k(@@CqfwWhkrIt}u$;%@a{WGa- zHdQnd$@u?Tj3<-vBEE~x)T3|zp;97u{}0`tOPC+H^eEbF%^~psc8vX4fEdRlR$ydB zlR;^94KX6l%gk9r8|;?$c)uNT7lJQDW}f*?b;Ph zIhOP@!!SZ24^$@_Z+Q!3;~$YnCE3maIy)Ww47yp1_orVzvzs&SdJ%Sz$ACXE5nv?2 z6oF{0R}d5%CdG(j(O2k!JJwg~3-)rzVNBQ&VAD~l>t7yw zviY)byj#=WZMWmot~=gkcO=KUvGUl;u}tRJN?{f60?uc$aLVa30Z}3BuFFp6Wry|# zoY?J`>~5GEvHc2$NOyD10wuuuwjga@24?Q2;Rm(g9r*dcBW!7^Q(U4UL=6IfovEdz zsiw?&A`b0mN!RR%?>-7G>HLwNmcNm0YPN?J8% zE%RFW8W5vQmyuxVHAop$`Ly}olu{3H>!mueJa9V*id7ivON6d+0wJgrg-Z39rCbsl zhR?eTlQze=D+>G7BR8W@d(aVV%$~qLINSOWXJ-T6Ugf-wL~Am+QWeHTa>3Mdd;;Qi zxkp~_0+16NJ#5_tyRBzy4#!~ubqd1@^cXN}DJP}hH{8~{rri>qwbPOJU)0?&kRd!v z>m(A)7om(m$tGQzQjwHySRSNnG718$xGf>t!7851XI3+LB1LG%4%WAofN41l%oCPb zv?&*%o|2iQW{}nF#yx5n4en-u8p!7%ogc{N4>rVm`bDJQvTeP3dpf62Q&U?to3)|L zkFEJvI!$_M?sO$A9zOO&t=OK9qAnY6SYaOH>13+1_7_0A$4f&dVhsloI z>2A>BE@k}(hu!QZ{48a?#JN`As8cbyGAqu8G>DhJOjuCRFK(N5(0-54tzUdUpy^M~ z=Vsq710WHMnjXJ)QNh)9+Xdc1--h98f_(ms;Y!V_T)W8|^y}|)A3>Ej?AT83qo`Nb zseIH4OYmZY)K9Jr$+j0PoPf1KNP-lpB9l5nQptpaYVzbFycdhbd-{pqP79P4%!ap_ z=En+*5J_LuJGb1jy9?S06dC$DJf5I9U#q7#=;IB0w{I*_<7?Fb+6_U1pQ@EmNyRfMeE-P+nYShHBS0wRvWrGk~$gcL;BC~#dItWrV=mNQ%}x(BN@L8J@# z9nb~T7l)Nb8Z1_Y?6O3eMZ~aDTn*p_{Fm5R#|!)6AE^&8Z=eNgy}b_Tc=AlWF3(7C zBXG^|d^)5b4t%U2f9l&}Ay^uG6-^b^!j~_9xif0(g^XH(cp&ic%U{0S8W>^GO6wcE z9+xqm1~5(^y>V(DPucZ;u*Ay#TvUCnz{c5+pDhDokzCWguik-pw)OF|A3w@R!oJ@c zZ36r<-(=e2NxZ^Xe540yi<<|9g}r@0mleZyw*ddB1e~MbtHZTJYDVoy-S)4xj-S)C z+fK;26ST(_y(1?WZcpE=ksAUXn~&wym!FO_szn%7uC z1xHeb0Ni>-7d&)p;9Q;V{kC#6`P6k=GF}*4pzxYb*Dz^KWeW~1Lg5gb_Y zs1Sr6Bp3WRuFJ4+(a6$LBr0RX=}Q|;+IMUk-&AQCUgC38$giqC-Tmj5`oGhXajVhk~f>7jv#R{_BIJ0T*{lR*48!b-_}^w03LG3hUf!Z zo2YeQrfv<#e^e198SiflQ?7)>rI*4(TPzVHSuAUisV`v4iSgvy`W)I6Q65>Iu zlCkBK#*)JV4Fq)sf&?Q0|BX!r)&IQjY5+q58Lmgb!g*I&tcW$_O_GBRnu)<$WpY^6 zpKoBD(P9W3Jy<2?9fPHN5ssl)&L(B@W>3f=9>yWIsc4O+-4XJLhjI9OxY}WcnoZRQ zIX=V_8hGAG%nF2B$$~&Y-F{*FBm4`9d!(gB@0D5}I)$3Z4=_Xe$vna$*Lk_t8D62* zm?_$r@#!nn(=rMHOxGEJ0FD9uIvc}CS$b;N;D!GEB!aK~54C)?nuqN~<>EWx)m(MuUcIC~o>4y6@F|W3@P4bh zDmwDFC?gWm?RF!e*%JYmqlR}=nY@`PdlJe)uqtICfml;{52BlZQS^*4VyN3}Ars5N zXa}&Ck41_JeGyJp+zuM>x~c;!>9F`L;tR1QRROE@RTZa?7x5?Yc9MCB5tp_C=k|JI zxi!3jY<9CQA%aWi-YyCSyGz9Uno|@Y!^k!amj;I{k1Oc%<%Qj;c?0Eu*X87?&-Z)z z@~sX5k%74i$p=ua!M8UUimzsbF*W7z`D1RE8^Loucuok1Q*#HAn$U%07RUvu>n^YE z*4%F0>vY%N1Xnp{a}5?8}AMu{BySCUHPgMF)9 zZ)o!fdJHRAL=cn%f??2-7!{1tf`DyXGNHpvwy{b(*-8@WR)$D`q}l?YvRG}rqLBR= z^}(<}z-12++XVs-O5=x2#u1w;>T@wq%oT9k?ZNOkghnoJY9-}`-BXs-Ba?w(M+Fhh#qk->T{6?f(4EwyZ76i9jvL8J68~e#$y&zcok;1L9XXQ&MkI;Qb)*E zV55k?QGv7~I7oCTfyE z;DJ$;K_u$M0+1$k5=Df2GJ_dHOM(8v8NsN7AO~V+wOcLlyuC9(=CH=b7hLNBNe)8J zC{n8pa$~In^KHcN+{FRvi^$rLpBnbwD$U%?eVq0tjMZ&xaNEWfAlWG(Q*H@L-L!$i zz+zWXD%_v8u};^jyP#y?fU_+l8(Fx5z7$r!v0I`r7Qxs!vVZ6(3r7%g?%W&?M9m~0 zulhml4-Xwe?PC{Td>M`n`R+RK;;1*8X=aSr5DtZ&0oa;(Zqw z=fleH{bi>ks-45D`IS3fxcy@vyZr^i74Qe}6 z2nVFsc}`Ycv^F+2H!okl-1~^&9SRZs$Wo=l?^4;0kZErwV(rj*#9>mEu&V)^B9XB?bJNRzB zP#4w<_D*H54n|iLDuoil+)|U%h=~vOzV87U_?4PH72XY}>_D+=)!uu;h7pE!fujA@ zZ)4Ob^4Fll$pJFTE2PbF&9T3<7qX>@FBXZ!e38

Vz%BI5ISB4rq<#CQzu_v`(d z`2* zS*5^fR70RGeK`jU3fNg_qFFf|eUI@OyZyt)3(?b+U0J@nVGEl;=UR(e3g@#b4P3Xm|i=2E|V-zfaW84UeMBEuN{wDmIf?vNm%ZzL*<` z+lwz)UF_>N<~fU*o`e(}cBwla<^)=w zYpK*7>363VQ;Whz%M8rD`BA0a0$r0${KkDpT0day2uvnG)q!@E$uJQxk+H}>U&Rai z;MM%<#Kda;DkE2jPM6>X;L5Ky>-p{mtX|j^*`E&j!*N0vfF0x;Wg@BpgV&J8#=DCG zTP?(ftikjb1vQ21Jy!wDO9*xHAYvBc>f5K6rkAIo?y>M6d0={=5*yisgQWp99m&{o z%z?V#C7l#6-{MGxx56pMEz3u@j()3k=FAx=3qKZ)$HU@B5epE+(_X9fI4-kXwSRJ* z=_nPn0;8Hi*sqkkb&68XC)N|^v61gd|9b4DZMgQE+3r|`$%`@03hia{@I1SjS-VO= zRdrA=inLRN9gNILB1j|kvZ;YQ|D*g z_+swra2bl09+VM-t3H~Ugpn~&Dw^gPDMD;ryE^fSPfT3BhC(dbpEe9BaO^jsuYEBA zJvpR-ys~rEl`yrwXn@&*Q6c;s3|u-U;4IHCKqFH0(HRI-e?p2)6En92$K}O&BV5AC zMw2QWQA<`9$R6R)QGC*A`$9?J6nBz^aXXHxjaUJUIpYA`GYR`m8{)hnUGO1oyHV5j zwuemRZ_p~>px4_Z?zw0aZ9nK+01PvbaL7P7YN$?_DebYgkOAQ&(xWRLci1HOe;-Je z2WJA~(I1+o8XNU-&&W68HP8*eh&>7Nx6%ZpRdD!|_=mEFV*;*s(&(S25wjb? zPei<(m^+}g08!s_%sJwI*H4C`zV{~Fu~$foze{!v<$hQEiTIS{F|nJ&U+ThGzf=#GqL{Wv>8IH8AvWWR*q$ zOUXKTe!x}|KCl159d<5OmK>T}Tl`A-4ep3zp{_;z{)qMi-R{$Gop&!yoGX^@n!EmdJb?GSDr|g+#324{2Lu zQS76c9S@aZLHQ)g|C&V)}cK?QU&V6ZlidYIPldqbB?^)Ih6c z`cyW#p;xQshY36AO%q^F*@P{|xJumxW%4F1q9A)m;Iz6$ zO>A!w%GCkwlX}a6j09xo8e+T;>L$M>#}w3+BP%}i*UuokEX3J}|RuvEC@6fh~j{OxGBq3zLAWjWfNRq_y^s9h$r%m+%kF= zQs`E5eQm7$Sp?BOMf8o>_CKEy9bhG{fAmek90Y|iSThWpBZBr&O2J{^`6ab;jRMPt z5{R)lg@3Iw3$Ie@p~W8u&jFWpGrr$wEoQ9QoxVYhqC*CC0pxDjhrSr{&}z+I{lu%( zZuW6q)!uIe*7VRAGLHawkQ=t5UwOYd`eB1SItmdCImYCBs&TJ2CT6Rw##u6d;uOYf zVB4Un`=_+-^*7TDWNi-R>uBw|0-kn%T1{EP@Vv6!Xa7+xKRCdzzYC)S9)0a`Z>uht zuyLS6+-H^k$44%QF_D#;5#kV};zI%`EsiM0$o#Upg7ixWaMeD4e;3)Gx*GoZ@qE46 z@&xJ^23L54pr_UV_ZQ~dlDX{~7R?G3|3LT#=1*=0JE}X;`Mc-m@0P0bFA}wz;JrH_ zb-JBhU|Xzbv+ZF}GE>;2!9eNI1i)rd(RqzU%eG%JfJjoP347(Xu?LE=qYwZ1!$*%k zeDkTs*4$HjNzQQ@@({=o%iwzzBeVa; zh6&!z-WK^k0e>@p@6Qgo2(^KX?b<>7XE1Dx%w|QR?Wj0yyv}whS_ZL;Ft+qS8+fj$ zyv9c{J|A0{#xt<2o3DR*!%hDHNYdswMq4J5HU6GmH|)`n5*b~+p8__rl&?~k!T z?KAi^62KOvh^Qp5d9IetaONg;j#zO+!*9-lnY^hV>w~NMU^`?RST{rm#;bioQo*Uj zK?MZoIe-9_-RK`vfHA^6G))*Bl@nL6P5@=}Mj@s3YM?hkY zW?R9qNq8nqTRJU-s(~gk0baSR->5|ZdNWy8Hx_tFR5Ouu<*+s>yrD)TGzG(;!FCI=6=LS#%^|Q%07xuX8p!=ldx@UV=GuiRFjtu8Li%&wlP zXN^7#QdS4A7w}<<=V@TlFr7N&0#flt;1xR=B^{dK$B?=#n zv~lvtbQTsX2z?ofrN*Z^k$5;2h(0dS5Xi36_PKd0t40tJg9ME zpbp>>Ag0)`4U_n1&SVhguN}Il!)fJM>WkGg)2_#mi*MAB>8?Noq9J4rMJgUoY^`26 zc9-kO9kp2OF(aB5`|M5u;-Ih<3#M_^E9YBv7ATprsGD+xZi06lOGHF3S&>gml7WK^RsVs<#V%q z>W-tih`5wrJ|TO-U-Z6{JXWZc@7J_uaclR@)aV8T3M`)M)O`%_7!w2&jndaf&u09%1z zoDp?^YKaHvxsh70^W3E`$io*d{lTS$tN(HVhlQ*2X8HZ!A*C{QsR&@6C(SQhdJezC z@#58mOMf85#d-W_0nz+SSfL(PLw$_&4~!_;2bZ!QbOA;{ECV`B-3sWT4M=jD;Kp$5 z?N~+_u*9I{hkU_;MH+i{fPy=nLI25%NqY#VYNmgV!j{IbW#qT1~p5T?-`1d4v<84U!8T*sIV zwkrf{N7^PSGo3yi;lP3^psfrHIcQmRdz(f|I5t_LWtY}&U$^b7ucKV9LDCY8-7pT> z0`MoOX!vx2HI$n+ZGl+HG2y^W>98`Oz;#?G)WD_S`8B%!S(fSK7su6`LO4LFB0}%z@8BZg(Od6 z?dyaAN<$PrqZT%Y6i}w|D)5<<2qQYbB-9jxi_ovY8acblD=uuMV}Wl6j+K@1;?FCj ze`26onFnV(u)w@9Qz*sgf0>fz_Dl2K%iP!y|MEciAHF zmeg4=t1Qq%0ZHLh!XscZ(3-Hkre!I523J?Hkx4B~<);=>nXo47)qZi|?xdJb-u;C^ z8)?eFlRXm5>G|oro(mq?Ga})90^=A#gmF_pl;|u}Dhu1ASo>cXQG|m>nD;0RS=1Q6 zf_26igma+jfZJk;qy&f61~yaTXBpF}QFir%OhNyGycJw|if(F*bRj=>V(jdlXK@ts zQ)Zi|=EZY^QT!%AqKkL)>Tn;#C&r@5bUGOwTb`+(Hk(~NU7vYrFjZGDc>$RPDUkp5 zk*=71;r>c*24;JKjm=&ZT8MQPXwB=n2 z=D(=mIkB}rl5(#zm>lE)ih{y1Gfll+8t_pD{%7KkFt(==ZS_Ih6Sg0>eOS_7I=4Fw zM!Dum5tL(4?Rg_R9*8g)oZ@d$eqf`N-^$6QW1vT1dAdk5RXqoz%|&dbi)E~aNfegD zRjd~*Xr4jPzG}+dNUNgKNzki})$eOYFr<4mzuyPdoN)QQ0?8D89*4&lFiP3!d(O;f z!ybp->7mn#;SC@ykJA+mWJJ*iV_#u^NZ3VkT$@TJ$6S*iGA5k4WU^?t=Mbh`czkwb zRGofgl}t?GGD~34bW$pNJSkG$FmHrb)4mKs~8FtW0p@4EUKO zLIpmpFT-#Eh}62dAMih>LF}Vxu~h6=jZ`Vs+zRtt}Sk*0Uq@PT*O|j;O(t-n0W0gd~dt9zIlW4HwAsgq2r^?Dm})POq4RG zJtz?S^abUR%I``_xIqGpNIzZZ+CF)wu?<}-#x6dTIk==y&ae<*dK3CyAN)RGpF z(jL+w^P^Y9{p*3iZ>P_tF9ZVL2^9b4PJc0Q;R*51Cjv!W#?>M&_x{VBe*c|MSTrYT zl{B<&kTodY{Fnf_A{~CuI#(oZ`O~uGzJSbz~9!~iWB-of2OVma=CuSJAulDKMHZb`3hY+uNleo+)#kR#9IH6rN+x6d2&1$Bsh0)KyY?cX?@ZkHbQV3&E(6Gc)!xOxOnfsb7xq%L}&OT6(+DoZVw!dv^w~M zT)UlXeCu1(1-4*&K>K)gtM@k(xOEe8h-!<%WdQFI;1GBWanV;H=>&5IK_IHM!p)1l zwJ!KX%zV&c-<2ZOFdbhJA*0d*+=VZ$gc$Ad0qhY zRlsG)bIhc~;}<()W1Y|N05(8oC*B_9D;B;h=gwW>8}%vq1m$qdt5BqTGe$WkQnUch zq!XkR2Lo~@;7mk&STM07DaB5DQbhy7=Rce&WgjZoOIcknAnVfN`1%oVBR$r+xHx-z zw)cUrmh1(lo=tsp(KCDM+?D9Ltavx9C&%NllQYN9 zT?x&*O&s#a;uElujG&dUK&&7@B7B2sc24)$ii4iQ;?wiFUw9;6`NiDa)o8sOo4NmY zll9N!es?bSi(~R%>BJyJ^2|-o|;RwAD~njsuE6AD)u5`fl(~Ay7J=8 zmuB9*1oh^vGr8P19{tT+Zsu04hKoPCq{(Z)`RF&~HL2$mz^Qw{sTMFM{i;KX6>%IJr=n zb=JL};PlB2_wff-@C(8U=u_08{D`TyFff1683?S82tW|n5@IAN(TD#oyh!DWAPS{c z5)Qq#9rpvHjsprvFY*Z%@_GG+0`bn zr24uQ8M)-STgR!`Sbgx=+{JOHy9}9f%q~2u4?X$d>Sy2LcX>c4uDE<|oVv>{7f#i9 znDpR4kArDuN-a34OPeE})Aq;}fu$HE3Cl?X2^V(ZX@firy$+-ju!;dffprj-HtI;% z7`!l85@yUg+_okl(OR9*M8NP27?*4$Nw=V+^|@jwbw>IH;9yFafu13Q#fZtZ15E`s zX1J8uCyl5#63x29-pXA^{J!F(Cs@$~hNE1PcVZddxs!Ja-oUiRI|wJv-*)BG=C%IQ zA)k7B(i1qW9D& zrlW81*dy+LHI~he)eurJq4qYw+&0#noqjtILt+H`La_*@?5W-l58-_ z-2r=mkL_(*CXkN&TeQ!G-Iuy#S`Rm{b19)(8G<&DBz5k*;s@&&^0o6Sd)O~Up%3!< zJBg>BYOSBoSI>*QYWVosV@3PhI{7EfvaPlk4r{k^*MEz&(IMZKie9;Iqa?L=5%*KOf`+ki z+-wf0Uu&D2O-9Wh@!ONcd~2Ak85-{ZI1s|gNdFy3RaAs>4wzGKj10p4EBA}kVO|D} zxg?ucRvl_Q(J8XeFa{dJ8l7ZcwC*h>=|uluIENj>VIN<}L^7Pn?fi&DJ(16ZC^QWT zW5X0oj0L6$PAYzilepaT?drC6u*_fq9#-pIG({zQJ&A78H<`H+9iAGU`A*+A$s zNS2IkX0W(liG)IteEupTFw{D+Kr=t(4@Z2r`J)k^(?D|-&1 z&EVJ20aC>zSw@=rAFVdV0(I2CmdC64ykQ{g>1ZRNL6?mS#Lz?|U+d(XO*C$>X1&1k z71*&#`!R57wCN`SKEOtxD$EAb?1uYEpf>06AtZt?(BD`d_Zsnq$;g7^J_J+EPn+W~L@yn_<4SLo`Y6i$Z_Ulk{it%Yv#`(s zqce;nGZ@`{Yg+D$a$CgCINH+3bLDbwA)hOcm2>$wjWqeX?c*QsejG2ktcS+Zw5P(} zXq9i$HadzhdkuZ=?R2UY~O^A~)oBeF3JFRxv)aLLQLI ztTH4T5enb*wII6T`Gve!e^B>AEwi;13v?mV6t~LUJ`_VD3SlRsd%b!F`I&oNFYX4B z+bIT0m9MV)kZroxEJ66^&Yn3jNu~D1Opc+k>j#u&xugj^0fnNF1&C+ z&;ginO7l%b3bOGkHUhk`6R7dnkvR^OZQlgs0@L80Y_WzCVxpc1WzGzvNv91}VFXM_ zMO};-6=O_%EPIJ{vD{jEH^a(zGz4@_i$}A)A04}dQ&GYJEURoHk^-M8xvFdY4JAvI zOI#OU0&c*vEg1JH_M8FMzocz!iLI%5kRuufL&uCs;%kbu|bKCZMCYc6bfC_y>EZND)jyD ze%q6^&&fTB^wxL9U!$Eqz>kU%Oe-NBbX&jG#i5$SvE#>c$4}&NJaPOA>#Mo#;yo^e zNf9-KLvg*wiCf2x@qy#VzkNt|^YYxLioek_jc1K&nWHDq?(^;$rB%rE!$91(Y%? zh$rv|RV$w{wNbc0c3FuzCX4v(;1+%L6(1(0)3O>V=%7)dBzHjRVgEz22UrPF^(mfp z*e7nvHyaL*)9yTW+vLfD({6Y4{;gB9JMu@CpME577rMtWHaq{rbF<@)j?)o}dXt65 z=|%xDgfjE1^O=|z3Py*%Q65WW5jZCiPvpIRmo8k+z)ixQE=3Zla-*CnWvb_@b9W=# zm4Ky@2#1V&SB_j>P`8X&D4%pX5drC85f0`Ms>fr8iILso(B9$nIObECr8$SkB^)z} zR4Os!?DZU>WNdn6qCSCt$jO}z;GRuWFP!|9v>**~{Bch`KnR7yuvsc3d77K&=Z?FQ23diZbR zQ&+%&?sWPhNApvKVmcQMIh_78K7S+{@<)?ShXw(^?$5X& z)(}4LAG%xxVCdxS^u8Cy!?nXNra|63>>LF1I_Gy{qK%Mm~TVHJ9I& z3i%Vk6yg9Tb#K7w3S^~tiTmrH!(a5%z*H{Vj{rX&sT?^fT!6Af(vWI%bfJEvsC4d7 zhQO9_6$H+NBay^y%GqRRF+lhY;hkEP)dnap#Qw%;E#j%V1boI)z&|CklvaY-_}vw; zqNjZkmpAM&#)G;;6k=glA`T_F(;kg$p|IxjqypXmh}L8PIUu%UtAbi@AG!m(qFTEDwaZ0Rtkx_+0Y`E>N{?Ce`-@U_ZhU8=SU7 zi6LN{ADTPE=i5eXHZN>EhZl?Cb1}q=~M<_nNkLwio~gQHVF1 z&_N^2Xcz5fQ;C;$#JBN`9ljcjq|rb)J@_{OLQ8-;{6svSPCKh-XF_K}Grh-}8wegY ze)rwafc)$tsIIVeSq||ybKp@%8U!AP7|}=~xj1TVKvdd>65^}9f5@&k@47F$w>AIO zZ)MvTyFYmak|2w(q<^rY51_--WQ-6i_5GC|0)vBV{hIz4i4@wYPTd zT9{8O+xt}Z;>CaWsrB_l zwL1@AU|g36*(Vza$fVv7w&Oqh&f-srjgJN%-K0&cG-~Y2DZ`*v==(>1V*2;207pSu zR05q-$6GH-j}f>Gfu4|8$OeE_L%dEbW+-n|uro@E)bhqvEH}Iuf>X*%sm3xdJkG!{ z>7Rk<+Pv1nV@QifMHh8iB->%M&8MSjCWS#6yvA+;6QP5{@>ND|nuhM+h|R_jYZQ|! zX{*v^SXQE>+1Q^LTg}Km>=@PoBMv!{d^YL(QNa)C)GpL-Fo9Xe#20LaGED zgr+DO@n!H7^il(FKPua_cqvGeFl4&qu%MP%ZA;-4#-xtiVq2a-yScsV@n5(3hXfk= zIu;g8-;pS08z1;AN9>!uNBRv>5MiMXl1TyVd z3X^neG}%HEGp@{)Wrb?5P;I5uLK%BAb|P8iW6+^WwiH?C*B?ChR2Ir90mzGbQT7B%P+z)GCN*>SGzcAc< zsNNp_+^TnWe*Ne}dpByklNx$v8BZQ8y?yok>iNWQk*&_v=GA>=5$7_e7j2*xn8Bt5 z|0Fd8NeS5iDrO&na-Fv3mNh&D3>>nh1hS4vWw$W89H|bYD2`2K7smX--H7i=Z#e9o znlE|7t1yLX!mLXUS~_}5GCP}gdB;Nb3*J!JcfkweVkT>gEYfl>Z{l#(uA9&*gN-<> zX;6f!rcl++mW-kZvEUExYuM-C1pCvm()<+L_9TqLU&^2z$NNpIB{H)Y>;7;Urk-q5 zU0RKYU^))49>9%8{Sy4PfpZQSeRv71t&fa80(v*sH%4dD+^b}aP3alR*ioY(?y~T- z*x90C0GiptQHIWx32Yc5vk%z7V=9QHoL5;cVFVhD8$e0F_>HR<>KBYdtLR9$IkXzN zXJ6~LpYr$pD=F!+1pCWivxQtaN+sE$l@4<7P?6dqLNHeq<5To@P@kwt1GT}JJETMf z`)2*XIH?$_!{FY8_-Ox{2Yo@9GNil%QRnu-IzXMWA?$R(?4XJb`)~DuntIYr88oTp z3G{*GS*TS5GLn*{U9bNq@n^4IK5U|-&<{%%%H)0J|9)mPLzt-07H}@bF!#fIjrHmj44;aKVRA`W_F4$RynN06mkzgoSS60*&0NK58Zq35;l=^ za(rsjFu=)tX0ebnj9g(+ZoQ;)fRDb87)h>?x?VK}cH2b<^z$^tdG4NvS96_)0on z1!|UbJ}9)+WI}9*+p}HF_w&ld~VI5d4PK2Mk-S+ zmFM=7vz7VU3Gm%cyuf^)sLfYqld~RotQmEJ2=^h>pBpB3{=j&x9dmE>i z-q300SLaT>wN`uUskv2bBBTwjOT7_k$QX6c%N4pz!Y>TliVUn=34&1Od{oN6^5aey z+#i4IncOqq`}r$x4deZHxa1$t{P=V#=XW{(3U?m)`S4q>{CxQFpTM;VpG&fOkR@a7 z{;GJV%=eX%aRkfMs>CSKfM^S{ABegj?4TPVAeiq{4Db(HRDQmcy``{tJM7d;b?fBK z?m2e~@B8#QJ*LmOe-fW3-SfK0XG$bNe<&vHxbSRm>d!Y~+8wx7TbAbbTF@hX`TbXaiFqGpi4MLe$vnw03t}!=G?UCeO@& z^xcKGP0F+fc2=@11LX|=$+F~zfHDW4{~yYNEL4_beZIbSCDAI`NApv*t3!4{wrX%T z+D}DuzX!OJIVG`=(87W$vwl!gN$l1{MA5ziPS2Rg`f+19U2%OgdL$K?KA^kC67e=cPchmZ?b9^~8H~B31t`}FDg?D8| z%Xxfi_EIzZ;(P9X7Z#mrUsrU|x~SYeBs!7=xwP~x5uu~7p|C9*E)98ip!@f^1HFIu z*yE*dOf0|M<9W)H^*rhQrmls9u>d#pKr9%Zd+f2qZ{~2D_qa%Trky+H$q=DH1x3HliQ#ZDNJ z8yRrF2dO0x0qk43#R-c26}-F*c$B)4;W7%K8fY~kh3rKV zpRkHuHj6{-g=pIURzGIFhIj_)$2(Th>B+#4_-Sx}^n&NoZ|}EL)d3hCt^>kSP}ltp z1s#yQEkS2s7S?G2SHet3MiOAL)M=g*L9*W3>A1%su&3^gCc%UzEG15#OF zz=!%!YjOCZhC$mI_R{Ku8ZT=0_SMP}<0Ov^9p!qK}H|A;&7%HIwx`37u zW*NK8lWLW)O|htjv$}`XPlZ{dV*d6!NY9Qi4g0G%=bZGe4;B(AaJUBu!wky|zOg6q z4G9b1v}@xHbI5j6zb8h(jK4;ZwRf#Mr(tC&>6tJN0kn-)@x0pv1RuT%3 zsc~aA1R4h8(jHI_aE`fiwbt+jBY?q$c6Xz-)vdjr@+b{LkV+lJTII1+hzL=xRo+f* zW2=SolspZK6JtYpBn*Y{b2M*f;r8R(cngSc=vswtC_KC?o-+4yXmu&OLl@+qzFgq| zf(hJFR)mz|UAMLB=P%Uj7tYtWVcor3t)4%>d;WaCA6I2r%vC^dOtqt<$iAl$+~t(v z67weXuWm@J2XVJ@I0~qbyKvRK0&{X8*sqen$-rPnetflBt*bNi#hRBkpqpOLDiV{e zK{8L%!*;#x1Af60#Y%j9xQjoyx{KUAw4#FFTeAv#M>q%#*P&>Z2>OW2 zaC=vID&!~WVx6=xFf!kibODXxJ7Cc2C-$=*(tR@ktzp1}##Nj~HCP_#Bz*FqPe`nF z6Ke@?!n+9tS1A#n1&}Eog1-H<XUNEc^szAKCz65746qpX zDnyEGeXTVbX?Hq<-w+STeA|FlWU7JG0Y3!L zF4xwZZHSK%{JPyF=r!BTjSc>8fb$)I@{odB2zL1+sqdDwS#5o7y}P!yQ3JR)!KF3X zM=2Bf7nrwmXrts`$b1zgztu>>SgC>JwD8d`)Iq07mW(PA#tce8=!FZC_W>`~|3kc+ zy$3x)_=CC0)r+%vpC(#U@w6iu%s3Z&|4n?jWq0YpaAr2_7Isf$>I0e%{jfKkTb|5j z;;|qM)io%sMHhLFa~T9e5mT8NBP8Y{9%0x0$5OTXpa%@--h@9Ye7=|`6pLnzbOh{` z!|u`jz90gn_&pc}*}v=Jk3|!sGKD!*77x-60qiciRbQ2!DO3kBPc+n*%c6x8$=3g; z-Wp4#M8NO_!6^g-nKT5eFu}HN*cllHT+oCeZS0}IpTWT>2NsFiFo7#T}xA((5kx;ZFC z&A}%4NeA~NW{7S;V2)m6ycu%BNfX_ByG+&=RIa{ARR;%KCdz<;Vx3>|D$=VmX zD96f`4Sz1UXeiQ}gz)ydBBDDRdy1HbX&=aQ>}*`0O7AiJd+w2n_s0AbnZO6D6{&QJ zb=Uq++{4Hy))7m;!<9SoF{luuDG7M#S728D|6AQ;8bFqFmu>Yx2*{SadfgUYvc}Eo zD@U&1r$G_$8nobtHqHU*^iC5p7?h^dzI7wWZ|A-`YXgN5t6od-huXZkH&$ zx3lK|a2NO;*^i)kQ8WN>J$FTTdeHb0(1-9M#u|Jrwm3&>FWI$qv0fSF3Wi%S@i~F) zT|3ifW;)1IgV=&HTg^<9&x1cQb&pE>M!P&4SC%DdGz~*>g}_gmg;D`PZ?P+>U>Q~h zQ4H~dsvKFCDKl@9K4!iqtgJTUb8Q(-5HWaxHZkk-NLr#mDvy-#|I6B&fJt_i=b`=A za!&30Ij8oeYwND+Wx9L1Yi4?un$awpO&SSRYa}5UBoNRoFgOgWfC6*bL@>zdu`$<< ztX#8nd&5|m0C9@MPHY2-vFXY3I5F`P2ks2l_r^D1I}WA$zW;w}>7E%G`?R`qxt;3Z}b@QbpqiN+ND~V*^*Nu^g7$TSpMk zc6)a@&S5#IG^KL@ZO4kC?LgYa(7NqLTQ!G;AWlvXj@?b{g?3X0O+&&u>^2EvmUy1 z9t3a+=m%KM#g%sZDw4>yuUx&_zS0FTZnwM7s$-tA`{5>Hvr?z7A{`TlhLr*_xsLc6 zc7Q`j@`g>KmxobLhY*;}>!7Hhui3?z8C%TC4?$2ZWG+-Z?vi>FZJ7toN+c|KfYc#W zl-WrD?KjR>&=}}VzW^*3{pe^x8aT_r+iVH$-bihXjZYa>CDB(whbX4P#K`SL*;@At z7-?zV|4_I4se7&2aJ*n5pd5no#jrvk>|Za!hCTbR3KTCphC6?MG zAK2f1c7vv*uVK3x@W(er8!{Q=uu!LYj8ceNsuJpAPk7m5>R2Ws<;>(i1rE-!@&6wC zg1uq?srPLuM@jV!1u8`SM{IIvIEFuf(XKJ0&nA2V)sJ0A&=t;)2xjI1MC}>mh8#tV z(G}hhlM?I#@rjtEOg2HzAx|gF8n9vD1&6V1hX+do1@7L!8c5wcm(QB3#r8rrKX>m# zn%|iVMBQ4bRMeq_&%1z9e1zi>44zeQ-%x0%y*=f9!F027EJ zBzr83uV}b6s=pPt^S-;bYpm?p5?j?BqPGIxXvP9{MU8#ul1jAw>utQpUleYiqJ7XEDBwFiEOnT>%c zg2;AX!p5b&7Z@IA9yf3;Bm~2$LvH-8IV)~GB`w|q+4Ajh`5(Wr`Q8k`JdtV(}KsB%ks|&Fd zqA2cbUc0z2Unr!~$1|%cdH^)v+mF3^ca@6iG;h9mt+}sI$TQRNsD7knig#8q+b8G= zj@TrqKnw8$=EN|O4t8UuHIVsM+wy1swLK2 zxxbL84Z_ONlzP%t%|tS!mw2nXPR3Hf{#)Q4vUaV*H694OMZNX^a=WqJ+vbK3@Ju_F z^7%8>5DoRAYR2z_BQPX){)jb&z*4WEeKN$-Da1Cfzxd|vV&9aQbKn)1U zS$zfF3i7pUeYc*fAgrh_fZh!F;Es$gi+Y?bS11>(L<5z;b^w2T`_E5RgBktJTEb82 z?@ws2o^k22`yH)t&hNzC_MLp=9Av-$F6`*l3nNr+P>BT>byeRnV zm~A-oqaEO9Uicq!-*^c=Aify3Q7|z_goery7EC(2)S_Ns0WVM!;2e-XwdEQ(d7Ne5 zSQvK~OdW}0rEQOjaFdcTlG3aF;=bd$UN!tq7es4BL2(BW>IxCCA`btI38<0-*>3%j zSn5CusC5_6zGlH{hICK+K7?758%5*vkC{SuR}d)+(YiDz(9!@|yWIwS7UMp5Jl!fK zz5ZC-r3G|7>T-y944CB7ffUltW)1=MZvNP5hC)-cs@lL-_R45Z8TWha0SJKNA;g7fe1nD+%jSWhOnUuc!6ed}*gCdk*^Mi49w z3vgIr`}c^P0t%h%Lu(;}@MJbqzME zeov2)fj~WFm$3&K+zmN|mue_O2PPa^BZt!kuYsh7=xk0OIxei)ov4M;iHMMfD@nH( zcR6%7zoIwv#~4h_7fHg)A)E>MyzZ#x^(XI3MtApW6sP=NE$a6ALYZ*M@+Bj_Py<+O z?03e3)FkW+xEvD762Q~ zc6!R`bComQYy{}{ki!+pb~9zTC`_l?siqbOlM&aN&*+*kopFEL8xelt_1yG(j`>4j z-$}Rk8p2v->j~toc53cKJ#!*eo=hHcxei;UYhLZRKN9jC*C8y+{s9djCT`#}uVd?s z(xLs<2&hdM-_jrdc-nUAN63Rz`^%RueOXLA^2iXzL-5!@#{L}U5_6}Qz(oW7DyXqC zp~fM<$#_h82cr2A7yt^S&PqoHkax>Q3t;ZiCjmSvrygW3TWg6q2080P1v4HFRp#?9 z_h+046X9_}qv-KH;c_ASGrR=ub!%alD-#QUx>ByCvmVb(t=3R*|I}7V`Wz(W~{h;@o3spDNF?dW~x|yAeT!{ zr{H-If*RA|L%dR`(bAE0CNZF~H^kQ@&4HcVAkDF*EY6Judb>@rVXFJ;iX2^ zo6kM|y2o>ceGeT>hB&U^N94F3m$nN~Jz?wD)nsL8&%x9sNK-~aCu6cS5W&Qk`X5H4 z{7-m7j=U?Hh`RFdf_nnUzy7!4+00ZX^Tk9aQ_p5aJL3Nnf5huKNABR92f-Eb@i%i* zx#1tGqI52lRj3;(1N{$as@htR7+I$D#LyxTH9b&TI`R)I775TrFfY(MA~_(I%~&K% zF>%fx4n2X;>Honx7pPmo@c!w$>Ngcb)<&$gkpw)_HZ^3qpP29aY`5?t{99O+0XmYEp`mh zx!oNnc)5}yei{co#fff@;)ROt?(nD-sd3|+&9X|~=>^Gi4Dxl)Of1VNxq}HeWQ&Fe z2*oNb_uB9b4Nw%`R-`3|jX)9xSx`)gM*jrvWRuC{$9J84bk`?49aUEeOjF5H5`Ujj z^|Vj+RAalg&_n&*jsqS!&{Gh}hh7E=S0dW5j-Z!RPJ-8y?t>imTAiv3PH7neiqp8p z4kSxTfWhM8{pUNK^H)Qm!umU(Ja+8Kcdi#gp_FB{%fKlC$W(4y*3DgYS*MyG z>zS=%fxKxrTeV)T#S^GLB zglrJJ$$o@JNH>n|6RIg@tYK#UfUWU)`+xRNU!)z%*Q2XiQ%bIw$h6vFn|v{s$N&R+ z=jPaS_`9Hc%Fa3wmvFpNtL`kv|Bt87KAk%!l4k?YJoAjW`u*pbkzUy7T@~(INvzeM73JX^{<#Hur@j@%$YnjN7 zoCs9jea??);KEgZTPCl0yoTWl{5-$%EAQgeQ~C|oIZXXOcbrjx2YRY31H1tJlW7nL zOc7B!8a!D1!pwKT@A$@oa)7nyZ~u#b@qMuMZp@1D{!sRCL>iRA)P@PTAP6F!4Qye* z`{__E^yy$wz3l+9v3%vqmH#q4!wa9mS)5eQMNJ2JtAOaDKA6D;Mz&}RXe2vA+%5U4 zU|G3Mt|}PPDJ%X@%;Wb%Ha4Rh?e|LJYNOILBwywp&k-8;P$zhARwBPk#h)* zR9rt|MKL-!ug){tmWkwGW7<6_I~q#_MAOEdcOuw1t<{Kyc+??2;f=x4c1vMRE>3>%b`rL464F`O%>j!>p z>Wx#S-+a`s?{kI|>0-_dyzDM_2m#*VU_2^>Wu5S&n5h5pS3+^%bGo9Lgg=y;O!)O* z*Zo1eh!jc^BH@2G3kZ5OWI+g{xc8Mx8`fLjr29k3m@i=FW*&Vzyy|>32}?W5|0TYR zxQ8Bat1-}ri54swQ1Q%(DgqwL$cG5nptpUVKm0?FPt^b0^KT6X7FJe%_}>=%V%-;Z z{oxL`KB-L%PucJ^FD0ka^7NGZo=N+C(Z-ba_Hj}b*xIpP3}V$)9MTovyoN1 zNktamFTIXCn!E=v5^H*Tb^6rQ)Tx&ouQ*{rq?Q*U#geUiTFLs<)XDo#PE}4cqtd^3 zK&z?yrdI)Tf}`yCh>F>JpFTK4HL@MXu-sLy@Hp$B{X?`qlH3x%307Efg#{>C6vF^|gWUq_7mo0V6b*ltB}&mc6X!JH zLE8e}2|_fs6m+08JBjUo8HdU=6}@IqC)EE>m8GTANk`fdoI;GqfX_MqfDrR9^+p0t zLkGHm-kKi?c&|01@k8N51z+Z(HJ$p3H-LPdut?pALjH*gGn)GP(%nmzNQq#fQSf^M zB?rPD&R1eF|1ryp@T{RIa@=yM#!|vLaeS@UtoL}hc7kc8`;#nMVR!>7useBucOiV->=R=m*qHD6M z1P@5c)H^HgT&h=>>K6VO_d``32O04@nP&gX(bQI>(iHc?3#HP$ca1LySeePZFpC_d!G+NCbKlmK_Mh_^0Iu(}Rdto&+ot!m=b5Ba08Z9&=7K*6_-R$fnu9ZkjL$ zBTh6@^RBnWHqP^^yr(TMBXII|rw2%%v5x%%JSS!*@$`%#C^bU@1VFFr)OG?>Lmp0A zJ7DM_sJSJcTbg`Bq2ke-nxmtqwfen*z?O3{bU6G-_(&M~>^CB;epB~&w*rBCYg!u1 z?Qr;TsDO(sO3tT$hP6?`2PvCEWg%BLR=5Q&3mk`ZxR&Z2B&cY3%uK?Q$XWVSy5Mp} zC!79c(3&+vR(QG+al6H9Ek9x>z<=LwWgE4rm$W10pk)M0iGvSM)zCznUr=S9|4~XE zXrZ+70{l&6U;`>upq7NpC3P*-RZ&~@Bh+ucTy^LU?1+$9p+Uj%G$@@gf)!U}GOR_C zac?z{MDT(aZ^x@2TypraKbvvC<;2m^3yyTGoCx^gq=L@@qXMLlnmVz^3sS--5wcF1H@u&6@&d1W|n+iO|two~79SJifD` zY?KJ(KvU(bK2ZE|)E(;zFJFc12yLXY2@%(bEmDPKEb?Vb}bLwE#a2G zXOH_?e^}b}!v0mFwi>;$fLU!Qeb6Up(G&h~N8!H##@Q93O!8tqyIrL5SkJU)jtYh| z7!6>cS$4JJnAyr&h#5YCChTeHo238wo!Z+6D1|?=$(VOLvh2w__o;Eme(h{_Z{M>< zvzESY_pKT?%As)N152~JEfA#HR*67BM@!yY_BPNvMya`(t94hasL$n0#Q595CEU?usB?&0T{AbQ|4_D%>q@mRj=dA*$1N$2$Y~?vfq~jX13||! z;y5^mmjf$#tY5ze8or%J! zOfz8>R*C?K03T9ZDOibS=9Hd2nw^=f*YP=-NF;H+UZ0%F9vz>*T-Ud(=s4DKi~2z- zPGm488R&mkR`ak}jHD)0p_JE)m&sIQam{om-0(F#3#ESd%;f`j+yt>f10a zKf8JtTaij-$SoL9Q!v(JJ!~W{be5wfERqUw1=yce|I$vHuxC$7SFDPBa`>A0cb zkET?dI4XAF)6l9QZJif6ArMTb?Qp`-r02AhuQZ9!*g%H1#g=2Tc%|WwMm>S3&n$xNG#UfEFl0T4kZZHS_ z&$>hI&-(4RD?#mLF4xPnU~h0>^Hs!XsCaa@c?wd-BE{X_XZ5HS89ZkAyfY7c>VXG7 zrRER_g5pW1a0IFYvp2}RbgYm>fx$Z!s!XOvP}_d7_(`C{_AyClAk&-)`U6h4HxRc9Rd^P_)ENky<+4ad zf*v=(0+39Dk)$X`W4TDc?dZT5t|2U#dommgdR)-2K*Qql1Y_Yz#7M&>m)qtU*v~$! z0BoDsXXw7Nv$o#e*=ZYyGTx)7gOU;6gZo0ZNAScF^dX1~L%~kUOce9*PjL@h&K9;A z$RG5~fH#`JuEPN9{hRReLgWK@Q=wyJKf}!jdWi{PDUUo*z3q+eh6EAA1B$n3n5X{_ z_TXzMc@hY$a}$qEya6*-QWZ&A)BstgTMh<8HL0jtEje(O94inu^#u-uI;98`g3xm` z?dx)sAZN?3A|Z?^ZzWQp4qn-3nfYWc9FJqVSh+~N-;GCdR>831^QDzcqUUn@{83ow zJRvwAc#)vR<8x#Tzx&Hhrw3VH!_hDxAc4h}FCJpB-B8?z_)dO35|2lG5s%jYp9hiO zH&ToSGclj5hc5-9W@d6~Ubs8~BUPI@e0ZjoG6G29b)i*H2i#XRJsP&6nPdVPrF6t4 zizbqpR59xRnBSkV3UPlZY9)*F^*6>7L8^{}i8yl21j7kUOBgYadtI;37bgo5PkJeZ z&_VQi+U=}$@Hd`QdXpzQo8vpsNY8!^+Nbfzq!WN=6KsHI z42_Ky6Kml#78B*nSjoJY*!B?mV48piO9Vj_^aKGzv z_CaU1)o#LX3$w1R+6S6<4Ra|mQRLdT9mWx(PE8Mx7Ai6Zl@Jr44Ylly8MU&>V%(ZK zX~}}cCan02cP|~x#WLl|h3Wm5!1ACp{Mqz_I=&F(Y0@tAAw+qK^iXsSEOugZYa0N} zZga8!$2K;td96p-ey_3!UWq2S;Xd&=P^(g!gD30=R-l6bLUfh@bZEqMak2lOZFE7y zh8Bpm`yQ;^Jp>rE6~4e||3mA|=ni`g_K@SA-bdu*$wJc~81b0_(MEb&)DR42Dz<6+ zAliF|A3cb+*{c@c7})`ObPex{Zcph9#RL$;P+m9J2Nt@)-rL1Ec;s^iHU!3(VBzet zL3SOD*?Qm#B{o&3^w+wZo869-3)KGQ0e4lPToNBVMB#jZa4?A2Jxu0D!?E*OmlpX;Lk)Ly~$;$k~m zR?8|OBaw758yF;>UpaRLY*=S}RXhvyv@yoZaV*G-tNaJVU<247W3)i5sq57}GF7)d z*S`OSiH((IT5vczQp#-J-@5;GqP<-#?(9*N4feD($h90d1a4P7jAAL^V!85HYyyZxMR-?s2ugxyx#sHM zV5HDD^8y+6E)O6kvGd`lBERx9@3`jDNL0qhG)PHAp#Skp_7!>ngpC_C6=N-W;4`2v zmQRx#98x9Vl<0h<4VrZP6{yK4+kB1jgt99rogZU%XQ=_JGHcbI@g0WYK{^k83Hgrc z`G`EA{eBepmZSER0@Hw z2Ihtmoj%u1I;r=6TOOh)FbQ_PtQ~&BiXUF-@@~lo+*1BB*4*If)RxNfh=Gwc za1QD;G=2?j=o_*~Sp;(o$xkR{bCTtNI51URJ@(+-l=u8f?a-mx!l@y> z@8QUY-Eu;}3CcoVftFOG1NF7b&MBxoo4_7-<-)lu+>PZF;j1uqnxc9BJgPlDHRKS= z7y283vr-<1CDFWec=AdYE4#gMU#bg^Z?M*hLs4_}#b@fBC+Y2{r_$Zu6g$Y*rF?Ig zqrHYXwJ1>!$PNu;AM|;3tp#?htjWk?L_*XNKc`j0d3|Zcy;MWmc5K~-iBO|ZQ>?sg zu{~FNS9`HgJ(-`@n(kLBoX-E*)TZ;gCQ z5>L#v7xT5pMz>*PxVB#SruetwSFs*o+ZlS4z(h`=aTzKSO_!h}Dc^#H)DX7MB1ef6 z)Nr?CRA!0B!g-j}Yhpr8z$cNL&y%0boysF7aygePJG`F!soZ2<2Vc4CyvNJ)8)`~k zfOgd#U7d`I7^2kr%B#^R5V}6y6%*0Y;iwCOL=0D>;}5nh@m4+_+#}G!>Yk0P z&fTqU$BB#*vOU;)qNy9rWAOckFBb{b2BaL&DtYzQhwfe9kzvThkhUrxJ7_8G9DelE zQ%>0+O`wKc(IB=fh?=&wbzKGR0uKN;6}8dbK7}9lPn$kyu!I-!bTAP{8GAi}Jmf2G zp?e)TsCPCym?9mzcMj>_&31duz#Pbs7LCr2_YrMjSnsxXz|t;Txqy%QZlRn=dM4hE~Ad^AGmGcC+Q*d}A@gIn1a>Y0C>^q{Tj?opq*}rjTyi~u} zwe{RAm-$C$CJs)V0QaOcd?Th3%rLMnYL`_h!^+l>!%~&o;ob5}4f_lDR*~N@BgIkr#OBZmLh&<-Z-w7IJpbet z!%D(w4Lc6vJ4)`gzjOWi&E_UY77XkrrwC+O8?@jAAZ~0-d41%V(Qq5V<{Zu6S3-YdOr5>;kUi5bop{Ig`eW( z%Y*(Qer^Nvksf>~u1cN(eT=xO;D4}}%Z?r%fr8zN>Li8%5go*)+21nT@XA1f+~5tF zCN~o4Usn!%KL@i9vVX_+AHQqy#&#Fpgb~yAByCcr$=4@cW<;8fWatW5h_3kk=TS+; zD|7w^(Eb|cE^CDf$po72Ja7dD29g?Gx4dG1_(7{yTdDax{ciw7UBf>Q2S;MFwoRBg-3Os`#K=ZioRTjTz7in6%+48uYePzanOOj$HpwZ2Wb()5`i*}AY1?| z=*3WQfV^W?ktv|20XQn^`4}bLlz0Y^CrBwuMT)72rIiENTSsoc+HwoZP|Q3|MehEH zTgUAL?gF5XKVC4SaerJBAun>lCK4e(kjM@vv_TG!9*mgzf&rjH!Yx8Rs048x$aW3a zG$-O_2O?(S@%@#*tS%cdQOiU^vBReim#s8Zrkcnv9Yb7uuPYFVXWdXxG;%-4Pyg>m zF6d2Yh**O_?a9qm_Agh>sQ{wI zB33*MU}cBDnKH{Br>5tZ^5rbzx%)D4PtfHnCUOk{UoSbom7JboWFO?q0sS8SgP|l- zss5cZmJoWMvvPx830;H$>GGfv^a24WUkp(CHk1_x^ny4PjOPKf8|S;CCFF-Zw3ouR zr7W6Q-!=+I5(IFR%Dos;;S)g0Dx1pmiQwI9?M=lBu2uJy51l?#-d6=HHYT5vTiyp6 zOZgNNQ;MZhbqRFofPdCUmni)1z5Hx(pYLC_+oyet`Kbd3rtF|~JPB)6JG1Mw*evIu z?#NaSTsqKJsnECNnRYu@=D9>Fj?-+rn$tb-^a>gDqBTU#Z(9w=)|TkX0@UMGbeWs9 zJE(O!cs|$ZsF{142n7$=cGWw#F9+ct@OQhic)tC2EDv@Mi;^9|M7J&P!}(Tg@OPU+ zw+Gj76NDr`AU2eHr}%KF)&S- zTnKZ~-lruh^R((=mc?VQ8Y)iYgavJ0L(i%x;woYfBV-dng1wB9@=)~Bcvc}l_4o!5t$m_52BSpca9ml3dJQo?;kPb7tdDdB z*ihLaz&dhGL2i(!k$MR-!XIA9cf0uuVs7Um51?PS*I!qhMVo-E44eLZhebM?3J2cx@wYdBvRcLPRjbTY^!^M0 zZP&wrN92HFklT&ad?WP`P6kc)yI}C%sJ^PvsE&;tYy!d<4Bj&Qx4xqWO`HU0t`56{ z@q^@u@x%PA0;{CUu#Xr-vE69=#>M_O#XN6si;4Wj29MY$Drqx9pxj|Dk9^_pV%(t? zB;jR@C-wr8;^9BzER^t>AOu>=5I0BugJ&7uGk(9ERh@M>vzcw911ou30P3#duz+ep zV|)`mY5%Toa7c$gW5*!7qaR7@2UxBebXcgbm<&5KgX0EH1iL*9zZQJ5;KpT=qg-h% z6Hw%?;S`a@Ev~@&@D^){_uvME&e2zV2x{bZ{X!^oPWynaoeKu>*USoR7|YBB!}^4K^0 z2=62Af{C2mx7Yg<7-zM=^1CkLXi1+eSjYA}qI2WMh3Q?7>0ICViSY-KZ&&i^G58Fg znE)RM1G17%uxnr%3_dAp#tCt|bIYiJx?>bM1UE|cnc3?YYzK5bKvHat9d~*rWm;(U z){&1I+A65Wp*ohjL>Z5TA0RCbkEu4o2gE$Vtm1r!{tR@B`V`XaJoFsUb=oaJN=Jyj z0~NIi^xn%I)&(1mkB2uR8If#{U*NgNcXuxgjjq?o10u;@VPVB9_(cIOi{mo{t+r0@|4_dRQbJ4eu_SnyM zcO%S(O(8(t@FVx^6zDy;z!qYSl;O-Jkq}@($k#KW1DqIL@Csp_76n8i#(UrKBm?si2Fe zsa^W=LDQyyno{PH%)16uiA0l1K@FAdcV7jYc_Njo_+kk7{g}6u%#;HDlsAB2-eGUX zgCt0t0QX%?0)B*=<(7NI#ObT2 zPF?*7U!ITowHUn6m-C)<)QTXHRVuyu?o2+C3;<|a2)N?ujHhegv{KO1h@<0mxU9_T z(K4kx`LY!(hF0HF(<4z|DqH=?CEb7YIMf2Gy%UYe>@Qg29?Pv}5_ zdOd%9`zs-Y+Ada7_oXUYsKRet;>*GR<&7c6yU$xMr!S=uH%VPemvQNDFydMa9E~lP zDcymAHdWCch3HhybIv-lb+v%Yved!wT}%KrbMUb@@#XzFuQwN1$ws4DV=k9U<+5Va zzJ%-jzYNBv3TVi{dC!>gORev{$XbVtBaVaZTGHUJeYYm z0X3J#HH7Y0dp>1q$rHw5|E4z@0z{TtokrstS${F#|K>%}rUio^8dQi02E8Nd^ssjtxKV5o^w%D?S=qmeHLeNAu0C`OW2^wm}* zKc^R6<+Sk^V~RoXY-6>dMHA_gVMMHAEti`M8o8}8b)jkpZId2l3uKsZb`4B2v^EWF zyr4y*dEuM+Z-RY9>|PEK4U9CN$#H@q?HJH0$8#6bUB~QKTWtSv9Caj@%`(fhhC$sTm+sAx+JU-xX)TG z#B6R!&S39TiT@y0<7VTH$MeVg*YoZC>GI;BoWFu;vV+K!orN|o;4eI0F2n~39On2A z>P{=(?P?E=51ItUAB{eP$HUKR4Z(BApNR>}IDB%>5FbFS7A6Cp$p~%i2Mm>DfYCSb z4_O9ecLFZyUq;CB|CH(C$>B`%Qbu&^`7g6?j7+zR@Cun%9lBS}DfBa**2NtEk@~sI zx`DsMi|S{!M%4HJ9&O$Ayz#dFiCiDVc3{7O?v!-En!_Z($_MMTJgE)r$(j0Nt=408 z`6>+hxG&evSL!#WDwU}lbv93zZR9#u(l@jVAmm2|H%t;`RWsj=P;v;MdllmS=rY<%TA|7%ma9U^%b-e1uAsez z4G{-o6Jf;hXO5ng>VLwn3gjMKgyb{2h$x>b#gIKeuYsnSSZkP{N>4qc&B{x{sT8#& zn8a31=8^Zz8^}*ioqTP;yXFmaCA6w~Jh4Fi|3cz;6?gSF_yNMBYSW+$_)94Sm!=Py z5EUfB38r45nc{nrxhQJLhk=~+2J+K8zP9TCjUBj^D%lc_SXZ@>rzXRxqX0R$FnnA#46 z(E`Vgb0IP3fSN;NnhbLh`VMgL`~Q^T?Tk>!IB&FCQ{ix;D7?OSZ8?5EelG&v-Tq2k zdrpf5^+c|A4XW%uh2`>FlJWwxI8@n#@uuyko^35AQ}ySOl#VNQ9Otf%;P7J1WEhcQg@zt8WZ(2bNYmKb7AfVSFg)D^^!i8qm;@rJ^QW z!9dKbYYyX7^O2K&ft<+^0Aw8^vUIh{a%d(FiXd z4`}{?1D?DPV3k9qBMyA@Wc9gBDH&VAZu^{mW{cWb%%s`w`eW}W4Tno;F zy@e8$M1KZpYt#p|lQB;0GJCMLmutr`VY!Mvv)xXKD}dz~WB#|5 zKCrkcIMb-rx75J6eqBubZIz(BI_UcV_FJrjAvTBU6K+!-yBls9f!9+w8P(_3QE2a} z(B6^YoW3Ek>l(fCz)fKLwFY65Db4_}AiaCZ2<~idZfr=MQxAJ;uh&R*+H36%0Bw}< z1xsa($x#O5OZh=Q*Umc#%>p?}f{h2;ALB10T0I`TX+JV53m80@0BMzPg`y_cAZ82W z_Y#dVA@}el+jhkSq&j!g@e|NDK6$Ju9VeQ{o}|kKkjI!Zjj2}!GtIyhV;S1oI?f9+|D-V4Dz_8M)Ne|GW{rYRwcD1BM*Nf}O(N%-Z zsa=Di`qF^|qKm_&x`r!JtyFEFZ&#ZqZX2gJ;eh1ZQN(@qG;)l3H?7uJvZlM(2&k-~PBU zA3giMrHAA-yzIzHt@;WpvWGIAM4naa5cDR?ko=_<0_>9o&pF5qOpJ9^IDWkQRu6n7 zqB?p+lByL(Bi#Lf!G*t zUHgR5VeL0;M8xEL&=*B`7yLzi!THyGr_e_|hCOxy9;G@%)sh2}4wP2Q2{8ju zSb7W6v;ef)qmMnGIq6cPW@fCrGuvh%da(j$k-`DvROGe19Elgt`Da4X58w%TMiQnu$6Nn*L`0Mf7|2Na> zM;ylc(RM8G+q{OC!}lyM-t)o5#Sfl5c@pLbHHVbnx10JE8BYhiky1cl7GbDBNp{xr z7oN*gyW#Wx@-KURsg3o*#pm+Wczh3r-Z#Ao_F9o(3{J&2DB48JQ5{wz?AfqsE;G;5 zvrS<(uL2glv5l~&O*m#jUEBrZVb=xYa$P)*nh<}5Z|HUCu9vy}N_95hTJpqpcLNYF z^WE<@pIm#=Fs>nKtYN$?eeRV-q+zOpL7y6~6i$`A;48CRUyMaK82ru-jY{*xB#d=fT$O*t{0{L(L6ku~irV z%nfN4lKZ1F)RW8Ozl3Z`Jr%ozm|g~SgNh6n#Rf8@LQhCH9`M3cxQ=}Q0|4b@=ep#R z_gu4YB75%V0#v!<~hH|_CQ%SK!Pb<-|!g{oPLcGg?i9Vcc*y+BF3Gb72>L_!YJ)t z9tJ>HK|Y3$>^|GP`ohFdIla!R%k|6;M$g`CHdmf;I%~M{Q2W?q z%?ETUdyw-^&b{3u0lmeV%%F60R6knQ05TtYv_1Y~)bm<{u=jMEK=Mfg=1 z_%;s4(ofzPDSU{4lK&tV<4@^QOdb4pP`rwGh({8aw$X%mGLXUAPG=1G89-KU-z58tI^PilWHSREn|yu5{bua0gXR zi6hW-4)_RI zl+AeByU>LS=Fb4$dnlD>y0J=OIhRV7Lr??lR3H=a%ZHW=6>w)P z{a3>bFK&j@C~~D*-9bUwg+lr0v|APYUO!?uzYl?&eMe<~$euwRupc5u8*S7It2!m? zQNE=jbZw!NH(&vyI`D+pM8n4_(gC;zE-~+R}Ca1+AVBSK6(jMTmd*#Kg#Vaur z+Bc+TH%<6q!sp72MYK<87rFPtH~>=?61xAYL5}RnDu9g;S`FU%RKg_|Tz1 z@m|q9p-r;32S2K6Tk$o%6o|ORH_ zW+C_dW$JhEm}Rm9z&?;&}16W2M?RnjfE zvkIgJRpsLv_2Tqnlr(*>^@}{kxc?Uti;P?K#@j#~l6=N)k1sr6V|N(q?Z#ebFVtnU zM+YERLObyyk}zlfodw>_>(^gIxV?dfv)>g?+9@^A=viC&EGXelo6Put-vDp&L7j%`P-AnaoncEC* z*a7CE!-pfiPP5Acdii317^-Z!SxaRy%&JuLs{IR%5SS~<#~Ix?)QLzN8aeXe0R%Ld z-r-sV{Jd<^rgCR`t8#97tI|mbPrqjb|G_`d;(l=y^>|kKM~uIIJ1)g5i5cM>!F(m2 zI%#XKA@2c&LrMg081^zrvcLksMkVV4IRRQGYp6zl)7r}}HhzhIBIRXmR#4kE^+hcc zW6rTyMmzF-vsi@2<|d$jxHdbPaq3c6_r{2U^G2jty6ny;jrTcF}$@|1C;a9Pp^ z8pjgkQ79R1Hcn1myCy~V{#NhW)JgGK_r9~uuGH4db-wl4=2?(j(h&75>RYqiccrC` zjbI21cr3sxN)bIeO0*E+r!0wE#yUKSXI*MmUC+2S5(od(_c0fXRFo`brf?A%iK8F* z?31bDA9QlLpZpffx7Qojz&}FiUhX?kk5kNBX&G?5g4I|_{bRIWZjVO*aYluJa<492 zU#NB$ssI%rjW1k^Vkzpkvp6rBuhCa)wN?E!8^|WbbUB#~peszkHI$;;LT;({fZnqX z5y@>4MYn(0cG+}UT8mYy8}$_nc@$YS3^u)=xiSYtUv@_!q-s$89IDqnVEw|$lWVoK zQPl4?9~)G%srn{w(J~|}!rGpA@IdnGu9KfdWv$rR#6?xzlMS1G(&rDFMdTW-gS4yv zaZCcxOyI-_Re|$>NdiGSt)jKAtqp8d5OnP4{W|swXpXQ`K#z`%3@ep7_Lg9am-^}-m?k6u+FWytV=acq3X%`-%Y?+{vSncCm#u9vF733H+4ag@TdB!c5-Nq5) z@L}VK{kF$uxpTT)E#vRB{XQ(K3l0q|+lzxT5FJ?RKx3g!dj$Ici+WYADgT=xkd4mU zYnkofv)K}fSsg+?_O#1j*tf9~NVNt}yF(Ew!rN$%4a(?`=ocD#)%32bsNO0Xxaf33 zBm`LJyZ0+tVc+bRK$EMRd%ToUZ8;uYj3;H%v1cQ7*F?gC)B2gkj_CfE07F2RuVY7+ zdjalU!*}dhF$R=tvP#QCEibZY%5R@uB&mkY6VLDq`H;rI=}FB6@*au;Aq2;$ZBTZS zWw0K}^z3Q?F^6akqMPYysy5ZPXGEm)V`K&FcBndywPP9bmtBuxBRGx6+KqV(7{yr0 zD0Ue^h6as?EZwo2-)%#sHf;aIwrYPB+R~6iX+#H1rI-jBK6fmY45#d@65UV|{*yi< zi0z2ofINHXd&rNU5YI@?0}MMTF3oVTH5gLGCXDLg^354}8HLeCwGmPOm z-Fk`l0cJZ>^W#6@8J-FFR}PW4)$wOx8&$rPIoKqrx;yH)VsByZw;#W4Ak!N1qGOVx z%pIjduaC-VgHr&zu-M-oTXTcA+(SJ@T^ngu!HvI9Ahryt|J=|`Ck!0QeT>JrS zaWdwV)J1|uKoUaSZ+W2bjj(k5Ig;YZpTj?Wd8*jem2pNHYA6gaYwZ98W>F%d6d)DVQV~75`o+;=Y^!Js zD*33qygOzoWCh-V_K)~IV)iJ1LHbkZVy%u`fpQ`+W`bUX=Mo#ky#Q?0 z&F=a0_KJqOPm_D94MauQu9*B(A&QfIY(}b ziV36y#82zNLD-Ci^0bR^tHWX9q6 z$M&Cd$|*z;K>(MLdQjf^^Pb7cdOUI_;I&fu0FX#7!xb^+YtylCJ!R^;cfoK8R{}_; zn)rnK5qHG%MNhd5JwAg(+Z;9E@LxoUcK7e8H3Yq-n?4uLe9jR zC6=DRdi!~hBW~h(%*#>YoM+^IRVSH;6#3oYxL`=C1uBLh(3_^Ap7iUU^6K3v2O9l$ zbKCQ%U7W$_$m033v1yDIB$h|T zP$t6c9Q2L!zPPn_uop8=>Mi}#zuw!`Lp_<>dD!37dP%zm^|(6zTX+yc8uzcmP63pO zXl}!Uds`ae1~O+86gkg)sMrJ0Z!#hvdQj~JHnk{Yx1`QeX$)YXk;X|#;vKA4C|Z$F z8Y!fssaPl!+v>tL!^l|(O5NFRUWe99+HF#?A~=g+v5EWWG6#Y~cFV52;`@ovzIB&U zs!1Cf1Q8g!#4g^SMPat!1rY7A$po!BQ~|tz7ij>(-XrG`^$N6TGs7)n9)Sbj!w$fL zU`W=WG;FKVHc)}8;$HE&DgYb0fcp#x7tfK9q66690s@k{g)!U^qm9}KbeF0V2yeG5 zWn{FO?Pr}NLj86%Lhui})5j_zHD0nJ(&@6RdVwbzn1g#G5bo*?lssDJUCaSU`m`|L z3QC6yP;+g4Ad}$X7}eb(k1glll=>P*1)jvSZbRxN-wv67fQ8>1+kF|8Zycq>aFJPS4CI$8Lc*VEKO+z$7=uSCMN5cYYqtwLI%mXIG}r7@ZA+W zRUx-`O?=}PMIv^mMhDXl`bx~Wv66t2N6)F*zH3^J^%vJavye&sqSAsZ1s5khf;8T` zUyfk=8*6gHK`RFd z6!h1o0nC$Lg?}#gH)z(zJ0El({P5yRbud+LH^0Qjpb{X$82UaP^<;>~?w+yO2IY%| ziW~$wkAFo@3JZ z;@#q?B53=AFY(w|cNmX%4_z3whqMivmfQ8CqzV)`5IAbj{CS4`1<2y=nS<4e;J@sz z(O9ZjHsC(lV=_4fp7$dSB38#566d`50AjwvQ~5_6J6c#NZ{AXq+Yg!~AF=|sE*}yP zm^@N1I#y9z%QV~})Y`d~Pz{zU5(SM79QG}HmC{@~y0EK%)%d}a>BUEIxL|IH4T+&_ zHef}*GkHhyqOMKgNAt$s5tXkCS$74XCL^-9eVj)Fa%9t_QDahHkwNlgLnS}3tEs3K z<0v0>9ZqXGvm{G! z2jYx5F8KrQb*f%6Zvn~Ek5a3fV2UI|z!{FZ>?Y7)1r;ZTH*h5{Mx*IRC;jqvD^B84 zb)fHJ$e4&~HzU^HK}p+V>y=S_7*7^idb#rTzokRDLJ?B(_Wju1ZZx*<(0k)FRh0?U z$sJ3)$(rx%=_9Z^V4L^QpmDw}44fh3`rN{~BD$g+qv777CeM<3W9$qt+`D;MjFlqd zqk~(x+WyXfm*&6@i251`1*eMgfmOVi4mvcgB0Vx@4oe%%o7>mvZy5&6YtC#{LogNO z_g`#&!(mibP;P#yXfYIn002^Y2R6jk4Jp2EPzEJdlJY6NjV~#!<50X1Q2>p=sJF+L$Cj*<%`ZaxJx+5m)yCH&$Md#y2{x_Umcv*X zdlf7rxchLdkw1SFcV^2t6KulQmQh+3xJEE#$fNrNNKV+J_ZCCVz26r zkS5 zRccV69N$O2W1wV%-DkAh(7EE1lDO|#A2GHOOsW&_dz{I?~B?me*Lk{edO z{N#xTOh5_XDJnb-XgH-#3H7D&n$9DvJKx35V!2aUL_&h@b>wxFB{a9Y5COZ_n{6oV z%MiCxvEDj#$P)?euvxp3J7up6@v<@{S zkw`L_G?F9Y7tXRuF^MdR^qD1?8NYD;Qkq|D+_WK{a{EK!crg+{`dlL$^1D4A&CD#^ z=kYl8gy&dWH*}}2-#4E%HP8EO2ant$f@2@z%dh#J&OjL9LLDyMbUOWEzc&1HG z?3j-48v1>%Sjg-DErl6)F1NT!cf{32aQIRWdqZrYP5UJJ9_um8W#e8NwFccuNH&7p-HdRx#3hY;Ebtr+p5 zRJQM5!Gvq+^T=q0+tE6l5<8kZ=<&m@iGXbVFLW51)M%nQA3p7Ic_W_Ld$feVCrKcE z%>%uebBX_6)uKVIs>K4&YkDM@Pp291>7gFE7z^2&%^fGCq9b9Vb^F zY@K|^g$oaS_<@TTo3qOo<`1+MF6^J3U3}oKix*BluxRr~*AX|f1RvMKuyovqXXc$q z;ElN`V~#qoc3KNZoe1pB1mH-NRX`}hIVbF@bPWQQCt)J?5KOHwepOfCYKcuT>=5sZ z=FLDbS%}>*Yq_WoE;^pD$D7O-BUWQF^_0~Nd&2qyt3KxS?tSj0-wH%>M$ju3d@;{^ ze$!|8MM3vRlR?}S3jS9Sf|Eia8H(oWX0((^xMB1Fj?^1QZbS@>=2}WRBiXqBE9a&) zJ!s}4!Bj)jE?(5MQZQ>qye_8(K6Xf3H*B9*Y}RAS2nIQz*^n%)#9~c!fZ4Y(8jwJw zYAAJct=k<0l;4pm8qoQ%XEV12#tEo0U`p`#|3BjV+=Q)y`G$xs(W4v}x(cG}VOm^j z#SKt&tFG4&=A(JCe)oZu%ZmqJaoBOxsAfw~`(F7u&)t52sD~#q2kS#4$aXT0VgGOUYNXL_}M&d%mBiU+p zE|ZzdCIX>Z0jG|I2Nu1R6Y2cqWIlcTf%rLbWlaEeV$%W7!@mr@L%;zLwhXJTFV#&8 zkRt?(t1%ffT+&-*x{770-avg`g3IRX0WVx~0`R!WF2sH-wy>F*6dzfe>wMCFpH!y> zGMAdLpqckRde7Y4J&)dNTHb((B$O(w_=cHCm|LYt6nYlS?Y_Z+e37aC7mmXT*UI;EUtjUVFfiBH?WX^ z{)Sl0eTu5v)Fv|9bar-#e}iwv7#D}RF_J&sG8Gd6Z##-aj^1c_>4!u#e??hz~KlwXg9P#$s5|p&~ z>lK1%7EeTl@M#f806_N8qmPDQ?h7~~h+Qkwm3_!Zq*uIEvYZGK z3|iO%4uOEwVNf!V!PfyooA{}#=hn_0$J1ZH({m_|!-f*f{tvD;n;*loD`REZdS|vl z#VMT-x2eAy?XnaF7GK!gfN#l$y@$n$OJk2_GYaOLQ7HS0^3e_Pr=X20aY+n#5#@BWzGH=sKl=RvL|=`{_uk_!Vqs_H;8nmjWE)B!^zb5nCQQ7WUOVbsPkQ&oQ}~64%ltiaa*fkp zt&5qXFg$VE{M?Xj-I$k%Mrb&pYjVS~%3w1PW)>*bfb|eN1YY;oHhZANFq^_so~afi z5#%(8Rt>6a;LHPe_8wwg_0HCo=dD;GW#r>&sGjBcppS?Hpl|QW#IcE2kXD1vf2~MK&u2>LU4m$(QjobK|be z`|~km?KCyn7Z9gr3bDL@enrM5xSzoZ_G!U<&X50JcIWazKmK1H4Yk*f#=%N@>Q-SU9LhCiOauAyMx)|MH7cH@X(m0DM#@t;Tk_uM>SPf(k8q<52rjsLWor07>*5|CFOOMpW_xU2ToBn0=qmMM&UJg zxi*aAYT9*FIOQUmiF6vE{|fqnP=&~~p}0TYs7>mCQ;XkoIbQaAFL(Gf%{MrxJn$3nt?wq2-%Sd;{`9fep}Uzt=qh;OK>amMd@-(7KMWO&d-xY2_l`C{`n#Jg4G zO1T@d!ow4fWB;%qAE*UGcjIvwq=eFdiv)ifg?k7tBCkAX=y}j#A zu9F?{9`LT%lCaZou>+8#?9Rki4Bf-jBvbByM})WnrUD8NJfE%<_z){Klf~ttXn!9J zM@9Gm2RFZss(ZioHHw$t=Gp!alFd@AxKjMSy+%;xHK|Xs{gNbcm*IQt)sa4R3T-qu zJ8keSldC&xU<=_w-<6b_R84%PK*+;$enFK0VM2$z-Ogf;`sAEMh}6! zDY2Eq+|m&KV914mwYdivzQJUGBRuIXd8_!mDxL^BkB1tFx8i^Zs?g@Us4cuvyL%tr z7)A78Ia{K!yChs61oL5^p&e+i(!mieIsu#}6>F_HRDD#fic3<(_A#jK1`4+RO+I*_ zALe)22VutE9rl9#6sxQhc6LX+YD`_n+HFWB-#}yM295in_>bZzhI=%ahWLuwM^;+u z9bS5aGu7c4>^j&5@eA_BUnG?pL{r7Pol2UzzF&`*{jqArANwW5dM?)x)#9&WGoby= zlrEl$>8U0*g_)R$=M#Z+)El-!-dHM_D8wBi=!r*kA2!n1RNS9HZsCXl9aYy^IXI)? z-|3t=SkdtRDo<*0KAc>d^LXZ#lHvKq)SriQAs5J@!{u^lUWYSWfnmoR3hCZt+82%b zv!(}FS6{@Y#oxgGEAv<~YAlE%cs9$#A)|)ZK`A7QlyC#WT^3)`oo<&?cR*h!beI2f z{t+X8>3&4OTh#j9uV4E5CDG7b*cfpO5>*2;$y*Y<1$V^0jXOB}YM&x+C;98<-Kd!PsZe^W}!d1lt5jv0G}(!RAOG zHtcF>HhAr&)>X4WvLz#K7R^ws9T%$}ZR*k#`c?0I@6z|gX2C>sJgL3}*xPRwj5s2q z2jl4Ey6o+fxNDr|_^`v#uZV-BN@Cgoltm{VI`4ec%kSzs=E1LKK78fUl@Dj1F0EaH z$EQ3W#qc+>@_gpQU&VQQ9KRsmjH3Y2YF=R>?2^3~5vVKWN%3^Qhs5{&Z>tzBUxti| zz%AmcJX=(OVy~;L!h?C$!(Jf$?RP~>En_a15ETpv%6bdV56~<%+8YN`i-rDw2Y{># zuYZXg-8>mvQ^8HTHV?+RMh*hX9)>Z*c1m@($_YgN984-C+<$1Dot^gvD^u+HyWjsr zE8snkLznkI&YrdAk%mitZawk-yLrRZ|3}%I0621%XTth)-*>5`R_kiDTHUI?d(@hl z?&*qI|SH7Z~;S`<1N$_b{M- zUb#33o6&mZBAjcto9i}l=@L6q7@Tq74xvm1EgHetrs`giRw==e`W``c72Cp0Fb_qu zyN=;~boKqKN9WzxkGqEo!5K*7t6_H}t&YqLWwS#w>e6(?9bU!q!*!K?KshbWXyq09 zL#p89Y6t!P>YakM1~ON+(n1uy1CSt6uhbu1T!!dD2pk5v;LWet7m{~XWsaU2`y;7T#4q_S2v(?# zBvJqL%IySx$?Q8TdzQ*5LLZ8&%+UxWL^*{i%o46aWAWftZ1b7>+Q^(NKL(#kWIr1C zyl};Qwq~FRz~-o#Z=2m5&mBkzSXgKglstp90CGehfer#tdNK>r7+9em0{S3MrSD!b zpkFf+EDXsJ+vHj~X}X3cRObzxj%)Vrc;)PLuRO|2|WiZd81KzY@Tzykorg70d8mi~^Lwb?MTj9niFAz_A`i zZnNXIYtaUQtb@aq&ftU4whsD+X@+Q52c2vOWiU>yDnuJi~plPDC7=l$5e7S?LG*qiFHKY za)II;MK}lsZKt{CK0a-u7C$o$F(tdDVk zVX5Y*B+G=;v`sT#EhdwW$Ujg!V|3z@0m~wiue&{8EfxlxQm;GWa%G&3bTkz9Bj7fo zJXYtcli7^dYZq>ZBN+@73#G}?<&oj}Vr1AAal@l{Pvoy1dsH9SANB=;seEiG4>413 z7-O@;Q11*Oe^J_QxBD_W5@SXa#e=7gl*9f79h{zxvbd@nvmD{j~QK6SX}B<*OzB;X3v*bQg>%8k6>aON}ohFp(I*BIe10 zf0x=+7y#cvE8u9Reel82Zg=#-jE&RB;FSd*1>c*13j|;=75Or(-ZH1Q12V(&YAV^V!g4$ zPT`krqeDT)g{Qd8yds z&*sBrY+Z?+6>;6V% zX>w$;6n1-0-24W=J(BjXB@*%Ufyto96%78=x6;92IQ`(YK1Vd|D|-%#hdhbsWBbwLaaV<`IGQNOkbbQF^#kt_9fK09UlTGx00OL|} z4ro4fo!CH>Y5XH=AszKB9^@HZhxKdl%F8_w5FSOwB_DK!+LrCUJ;-?s&aD76YWwcF zZ<1Lzygc5NyysP7PRVg4V;Tjdrk0d(Z)lWV#AHa20z8)YMXq)X&P%XjGWd1x;?-h+ z9zc}i@e?=kLugVvqP;>$(B8Ir9WIvRqffVUzy`buE$|GK`BjL*s|0~J>4Oyn9(@QO z59SdLNZkqMx%G%2JWiIZs|1q1LaZ#Q7D7+&Ts2-6*R6jLe+wN+Rr(Dapv+u>0tfsf zafO(3gi1nZvxvnP`Z=m>svcL0oMxrraqCqbAu{mqP|W0fO8hrhUiX3dtZJwHr~I`^ zcP28Ga)qP8$b}LAt@snKNg2o;(tCa)7KtWkRQ%x^A|k+f|mJA{CFhdd2%{GeGM2Tq7t!ES+wX2m_Le!Nbako zRUnkQ@RkAxmzqi?Ki0cc7|Va1;aWdCmLJRGKhbO|dS;G^C^SdYz+rMF-)~d!ED&Lc z1aNi-EG3OHfr!;|-rk3lAdr{}3~t2-H_pts*1c29Q{Hvg%o*ddud4ijS}osb{(zg> z`0?8C=;$zFP4%|+_AjcYLQzdRz*v5yyjRAygU+`zU>XG)W52v1Bah)eppzzVpxVu* zQ!?Tohz}BigSpe>61CM^r!9lyhW_bo@Dhy9FTF++3KTFhhVii20PjXOwp}_iUW3#hkV>2^j#10pWsEeYZ|AexINNF50d+0&}Xc4d(t$))v*E)Bu_45a@ z5$)bT{0QQSiZDLSHXv^?hF-^7fe=)bha6IYwD&Q$x9b3>T6RoBYvge(sBL0lW7g?{ z&@yI1c`z=41}bL|gVyQHyR>ZDOXve>C zW(^<|sc6BRLYtFURC7>f1);79oBXSAc#Sj9) zIQy=5J$1g@J5jUlhQjadrvm@w_=V9aEIHTD`g!&2SY0#Vu0o*FZlb!Y4;ttk+` zfZbxej66x5m%ClwPtghMe&8Bk`HoO~Gp>oWzeym0=W5URDTmMP_BrxyhZ8W{%bxfl zhuhTxcsb{BNUNMh-xbz}`9f(yW3*sPl949m5*59yluTwMgA;2?32}OB3y56kx{*V% zf>4ZYMME~ucMz==E}t@a5ix^GK488)3r~tQfC>SSEx9;LtS{wN8L)*4e$;gkkVP<- z4yIjfD2nF8Q!nAES)m0U23YLjfVt@$J$m#fo6W7JXsXiS8aOYbEWJ;L+=rabL+;QU zg6;!O=K*(ccz9&w!E$rt=+TiT`vYZVCxaHy4#oBup{?Wlv%2w64!!C)d7 zJiWb*jDE6h)+=x0{F4oYGl?J?XmpqjG(379t}2#4jKZcdgYCS9RlOQMjln}8&O@4q zcM-KtWkQ=50J4=Le*d6lHS4RWMAw4S{TssT0=?~_D2HS;Kuvcu8x14>Z6*dy5Oi}- zsGyQ5qykIF<5!~Gitzt0!>0yoMzdoW3nBO(sc(!XyjaPm@+qwdwV-TM%$aNCs#b@_ zbCo%iVa?g|*s_ucs!;K?ZkZ-71EG5?#Tpg#eVd?E3*vxiRq|gVZUg{f1L+3kC)|uO zv3Q|Un4DZOjK5f4XW&sT8@<1!M}la=D+rU3qu3|&0Q$@WMP9!$S=2PO$QVdYz#)M( z@X}v_es6MxkQP`K(w^xI(Dsm|FgeU3m!+*D)wwgjTwBiH*?~Sb=o1@wk}uS4;Ao?P z!;LP`V!oidHy+RxcXE9N^@m`FdO_&cy zENyW!lq{ra(6q?NMwP>+Tw*C;91GNeFNCY5wjbOn_pOU|Z({E1y@ zdO`cqf0gYhO)%J!7$ab83(TbQ*TT{TJu<)JKo3G2+|Bv1Q`=(NBSH&_bm1G*O2E?> z2lzn^1{8SUTQ7AXGksN-dB1&#Wj{ltyH`iq#X7>7$z>U<8NzSE`LEN05)z9S*0(mQ ziduEyMJHEt1Y-dH2Pj|qI3Th-mylgmZM2oK4ktkzgI6G4JBD!{NK0d*wZ)&%QxMz; z!lla{c?jAN%OCz=zxI#V-fnxJ?IUOd@FkEJ78=TdMFz(Ljz;Pdu?PWv3CtJ~nOr3n z<`G}6N@p+W1E5ss4vX}Fle_GQOP6RYNIkq2=1qgzGK_gxHh_)uRCpfKN}fkFsu<#> z%G2`fh4F)7`|Ist83K1Wt?TJw8R_;a2gelyn^GH)Wf>zkr8d1^$~c3*v^(uY77awH z^aq{z;tM)6BBhSGFxG;;XfaAkj{uMxMWcxStpPWH7n^IoV6iBJMFT#9iB+$+ z2jc*e3@HAEbTI;5LuF<16$H=iV5(8h0YR^ zA03<(_5)U`ALPqcpwQwiRjeUhAbGi9@H%cnq3acUCBHEQ{>;p3 z0`Hi)TFcd1YkfpY+V-Z*o#mZ2?}5I z<9~+`f;J>Nd|9D@7(vj2j)qgt*H@3rrNDv#nLK+N?N0v(%f4tu90N5*t{zbDt}iHK zAZFt2U=Z0}uweI)V=)ukg&7eugsRzo`8nRl;Gsus0cj#`)5=p$I~Js^@&0giK$ zDTBg~i?JCQ)DHCrsGSGGyNnD<#OtxCMq}z2P_X5BcOox`V?N=Y=YY#+qt!`sFilpY z+5Gg4yP0?-^lO`&zZQx>4>ezoMixe=)o7d^U5G@>^XvFwWi?&P-LYV5PHGExUFI8sa_vrQ2%CU#1gH zK2HAjA~tv?cm>W^x+Q`EXyI~ktoNlW9%+?RKCc3|H1h}GQ}t3^?5_9zW$%H)vG0M_ zZ=pa^&x5W|^0#k{e-0URM zvdPj=1WKJdWSDh1UlEpN2pU*&pl8}}NE)04V-X3JQNNCEM68;P!emDP(NAfp(15xTT+HqrLwMmlP{967S zkLGW@5gy;=%y{6<=g)7TB-7LPsOEf7@TW@XfDzP>AZ3D(L86ZdXFYP^$tjydviV`FFr?O|jPSM@7ZlGOU zY%yd53(T5coxSs_zl2>x(F1Prqagg+s+u7 zsih4pvVLzSlTNkO{KaB>FZZzhSxvOkQ%gmIT5N;AIuFqhT1=d7OVYp?-Jw(ymUV6k zyx}<60apD-(U%3Hf-A7DVQ4T0Fvd$>FscFa{=v|ICI|GyQ5_@ZqyS3<3ho{g->iFw zB1XNwJac!|D|)-_XvU*e4!*vUpSfquGjw_pdA3uPM-Nr<_gx>!K6!T-5fRRvtKD2* z4Hf=(EL73%wWki;Tt60y^*(w}s1U4Z;=a^@wg^kzpVIf}Hu{Gy(k}%#CJ&UmKzYIa zMd3E#-vd~y(gA^kvsU{BQ#~lxPinS3SbcOQMUXtf&Ip%15B)b7G2PNuVl5SQyWO7% zrh^H<++B8eI4~3ldz{yWsMro&N5&=;`ski<|5QBV8<~$x^RUkya2ya$5t%RhhT?v2 z>Co{*Bf{%{Qn-L!x7(e5yUSsRxzX-)JAv#C#ls?02*<+s-@_Fg4#j;L`!VQG!pL6l z4hV<+j6LIvhx`$zPajXGt7(_h36g8kA%pZ6_90dbXd`qQ)arHdp2Aw~^o7)X?2dzl zgZd5K|1^|aKOS9J)e_ft`!uUaqC-SRR=%I|Uqt_iBW7gi)`~@7_wfJi}589*+FjAR5=2%Qbb}D?A-Pu_+Fjob|N_E3+nJeS!!Bh5K8_m>{+pgQ3p8Ed$F7)m38-+(w<~ z#|9e#*gfYxkhB_Q@URcX%3=;~goF&9++71yRxF9q~!% zKY~(Dn?nz)A%_tMI2#9_+8c5AmA?&)N+6b?LW2Cn3_rHn^L6 zKvh6}1FSkYJ!Fl7?#Na{K1wKZYpo^#Sb+KRlSL%WRqInFAU4WxTBX)d@!Xe6sg z00_h#C8(_VZ(FSoez1lc!qfiKW&)QcZ}-9I(nEI||AD(;gZJ+1mQpnEZE#yc*r+QD zsA)#=iG76xWCj+eeI>=%0F59p)8N-87{CNNN$(zt^$h1{)eIcJfT7seaulqFj0 z?e=Id&yf@;^M zXcYA5yq@H4?-!W!(Buov`r%)1Y|wgO{dg2mnr2J3$-js{1TQg;*n2CW7D(#~u?ZPB zm?f#|_CQ+#r4yDDJw+%c*OJBoBu=obOF(B@D~gCDg+4Jek>+PI;SPI{JT(|}N2f9o zJyQ3NdEG&mC+v^E*%T)bwIQcu%a;<`%tR`KAEy#7yA#|`a@L=Ac{QJi2mN!tfESLa z|6>^Wd!!sPTvI+MmJhY9i<&6Rkd!?sH9#RKJ@u?DEJh1rhtvY2*CHJn)PF!AT5OHF zAKH^P*czzkvaJc+FcG)V5RhGiezz{_3yK?2Dg!WfSn4UdKo>LDN455MNWUn$wAx5( z2R&i0)uOnoQnfMWF%H(9{F*;ioS^#Dv~7fU z$DBj&!{-}&;IkTf%n|c^=L_90bUTW%>!|VnZJAGyv=>|>G4HT|f)e(nXgBE7K%SI2 zXbD9Ac>Z`)tX+pVG;IG^L_V;y*bLI>nt{U$Yr-_jdfz zc01~SJCffi+1x5unSKH;ERSI2Qb1doe^4x_5LJY5%E7N$_B645ODgcqTjm3=ce}!& zSUBbnjJmW?Go-mjhm(b<3GUEJvj-k5z3YIu!vR0tXev80KD&N47zzc?u3y&}&xD*i zid?e`_h@I-RziI-&nS*Stp+{;TxX2L1?mENdtf92QD(!+Q^-=;AQvHPSF{kRV`wIx z8$;S+kgeY4{_l8}lC?;`qTq03UNK2Oh%@tO1i1=FO0Oe;RT*p77*c9^78Zqe|NYZP zj!XmEF@F5#D>J$D0Ryi3v3Nf3GMwV!)%)+e#e3@BQ(gm^#MV#G_I7eE!xg(_x{}X4 zm9I=gGoa`&ZL#zv1eggCKBa-)QfA6&CiV9X)*l)lv-T||cu}Z-E$2bE2}`sv?4YkO zHtoxD*xQAK7RzkxqG2=*7c_z7wd%ZuXS<-Eh|${#itt7m6$W46ZUC5@(r1K5{iV;r?TgZRg1kxhHyWpD zdgWVuI+kiIHBzy}^z2Mzv|0(rv}Vd*GbDkMPMF_=cvY*df&X2NrF1Ta5Rc5 zwF@oyVJf;7&$LO0C6CsZXKjr#QgzlFI`}>hnLm6`K?L>eE||KGrty<+FnO8yZjJsC z(AbcK1I^CrvaM0ykBJAMLr9X(={wX{rHe4`#>vE?CHJ09WV2(#!^3x7zcx9weEJ<{ z4&Q(1$oR>LH}U9L_V1=9*RH?o%sWmmAG-hW#L01U-YASo8Y5^5y;)Kt*ix^;a;XHV zs(cK6+qh?!S^wGtuBxXX^A9BwQy8E`c2MhPoVc(b>vYL zQfkte3Z+&`!*k&j5n9#k%zq#l%<-wW(5UmbV zfYn!hKE?yNPP{*~Ha2!$=$56Wo5N?u#@4v^hJB7CAN6JPa9~8x_P<}!isw4r62pf@S<5w49&%>+(FJrQ>?0M>f|y zVq>cGKESZSLIXaZWU*d_>dK?#?X=7w$rN-fV>J9iikE;409YD}pUdZRu8G#<4YONf zYiss~$<~A`m&@nIrfbt<50i=V`)dxvRGvTKn_Qj$RREFpElIWc(WRx) z`OZaXAQiv1i#ofhL8C4KGsdOC#)~C=cee{W@&*v=Fh4*1liPQ!pFO*NGszmq^j8F; z)`8#WN`f)1gSG&{3D;y@G=zgb_=qPUGceIP9m^Qdo@I~zV*R+g=sNYr)$rLLy<~g0 zu)XZd`rhsH38A)6?VS${om;-AR^ zda46ThiZThtpJES#vulHRPa}dYp|oQpDF&TUj$}?abvS4UI_kb@eFkF##-@LBBkI= zaN5|A@nW$aC_E#qC71}HDC~cW11Aha&J)RU1HyucNU*JL`QV$DeK}iUEYC_7kf4_{ z46fJ=`Ci7+N)`wdkQ3slu&;7wuswIgcOkFS?{?hQL>;IF!Q-Hcl&hb5niUEF6US`r z%HHhR*W^G6=e5(ZHi;I@(b#;re!^XJpJdC6LL)!>)_-{GRQ`Z}$p7Phzp(j-(758g zj93={ss@Pw5g9;63c&7nGWRcC(>^NBzGpE%qkgCQ;F8UcpF=IB#)R^}QZf)0K~5H~ z+7eb)_Vkm#LAQXlvnl@p$)^Dr(?e(k>j1Q9TK8Z?;e8b^`pb|Fr4}3Y<%g4^W#($nO=((dwT6pLk9Go}P+S*>b_s8x@RCbyM-Dk={Q~ePJZuJM`YIbCF*A z(R56opT+wFP>v%1+wZ+`QNs1(~z%@wcD>LGtN}mG zG4UaHCYZj~oeZ4;0C3~hf6p27F;_58-Y+~duVK9)Xf2+XbtIW&{n+sIUL>n zhiDk`Saj%D-vN$KoB=Ya%_p40!e>3W__|lKdRh zBngHdBhDY;IVqh$4G&4MT!qNisJn3ldNycM5egZ{^~RgR?qoUV)<*tlGd=2rnCV^~ z-*mk$l}qP_GmG#?Px?hdcjTO-`iIUI#kGEUan9ZQn|%7~->fclZi~9T&S_U9mUX%9 zj#BbzJ=a7-a*g^$2KmkhjG37fj-EVK> zku&MSNG^LYmUp30$>Fh~N7lskL5aggUU=EV%a7cc425SzCQ)+xhm%ibD=?*UuI|7l zv@P2RzSd!ZLcjwPXdkQqD|UolvTb;8UV;PF{OyZ~mD)Y_aQw?}Tb)_&9Dd}waQM1M z4tFqCSSRv&9gLJwa1FQ749L0ZHEF87F@S?+X}XS7x; zIi4{>KFQ4Cqnx~}-a2%sRlh4KJfkN&u90a8{)7I?^pkf(`@;M$8Ci;PNahRhW*D#> z6Fr9I09-fM1pqPeRlOm*Vgw=}=iVW6G!i{V#2GPggWFch2nsm+0?a_;mark%DJ;O; z2Mwo$0-A}eV*?u;kYK|U&+^slsw=s#evTag;v|Ne&gfG4EoHDlJ=I=3_BmK@=%c<0 z#3s6v^&@(k{%>@o;}%q~9K&iTcX*P%`UG<8&^D$ddH}|A>2d~_S7=-1l_TyhSj3AL zw^=l)_##pb{$`+-%Fdk;%SPry^r+`~UcxMF_zj?PLge$O}$GN7TL18>v5kFJo!lJ(kqw@Jn2KMI1^WnZ~`$=7Aa&9AhS zWBgJ!3(43yRtpbe5BeU;3*;mhO!(m7h)GzZN71p%M@|Dj(}u+dvWJc6Um8(ySAXyz zz0s9}1|#R8Z10W3OHt!5qehG4!+dd6U1h*v9`0e7tT>ic%tqG229E|6g@A(?<)2SE zP+U3ev1GEPN5(jQ5Fnr|QI^<(+lCVwjN(nG5Nc2qATFfb-{Qi55zq;MBn9bl6R%pP z_kz5TyW(F1R{`ZZu0y#5-o!z4C>1VD3B+MEkfo@}K$G3>hK#$QFprF{qim*wbN5PH zxSYcSw(-lpb0}lEmTw1kC|L3hH*PXmy)Aye!v33~8o*1=!{=_Z|$yDPW_xC3G^9 z&OQT~XOFVI619~S%tENKryZBIl5Vz8)oh(BNb%-gGi}0Cqu+G0iP%5`^cfKMffi?gdOKq|iOGXs4Z+KMI z=}(q3HE{=z&vcem-=ktnOPS2!tU=}<%a5uaDi$@eu=Jy5%NaurgU)(wC#t#8^Blvh zA9bUYow@dqHlJY>X3ByDDWJ?OB|@8eswT9a$6Qe=@7&i4JO)ndb10{Q6!OnmUOtbn9wtm-lMcN2>J4wxTSgI9HDGCa4BX zu$PZ>GbQW~^&G0NBskMkz2Z67E0<~cdHKV3=}4VdPSu>U0dsyS8nhpKc0DlY{XXp1 zRQ74rW2s&B1+Y!#XniFbq!=K{3W3c^=}jR?NpG8d#r?&fkh|L=oBnegGwBhDfMI;+ z++uB_aju@%FQZJ6^btfc!?4^g9~+V#dIe$HFq)HR{QfhOO?&!KW&)&G$!gz(tmb9p z^$OK)WJM7Sgs2qd3ybk+hBot9@D5;Cpe%rigUs?#MvgYk&<%hD=tU0qSz)7l$K+&3 zh$$pAF@)DykH@`k=epDFjmPUwFI4ctF?F@miI{cz0&lT0xd`1{+2L`XaX9Q+*mKb7 zaybur!Wt4YpK*E|<*S|chOE=3EWq`B8TABIv;t5lf^4{F1kfs+lCZ&58D0abhog*M zR>fwqz|h#7lVE0H*=gVaew4Z#uH9D!iZ_U&(~)<$D}k`v=~#9+-JxK`jU&#YuucU- zSDdQs>EALhDGg`W<4rr=3vPSF=Nfn5HSY2uVC{n2nf8XQQ-0^=r+#fvm$%V(oTa`( z=|<=`C1b$IHC~Dx=yQi&CV#6qgZhHe?TRxJxPS2fIoB2EIZwd{Y;?N>_TO~yl5Oj} zoV=VfYHi2rK-+VrssToX@XkmA-Q9TI%0hhnO=r6st;orxyAIZGGq1n&|4SU&2uB((#|N+cy&j=(eP`2NE9^qX$MuACBJc3;J%4)2y3y z`)-TjirDQQ&(P@TLPeF$ly5Mz#h_4QiZfz+pCGd*52<(z&}Mq3A)~9!8zAUtk^jv}F?b8phu0A|{dz1C0Z1ggCOVX5-4RR=OwRR{!Y4ry!_Vz#zDf+~5EQ;Um29@s z#FhBp!(CHrwO0-|G=L?v2X&DESL68uac`E)*dUq=2EymPjSo^IR6Tk7#TNy{dpu|G z3F?`>-Sc4hl%+*rk`8H44d~@igCvZDI6w@d#0C zLhS}J2n_sxmW)08^k9r{!)*}wT&1>y4!;9v1mF>}o~YY4)+Z$o0((c$mdBwZW~E-I z_F63Gk4-)?d1kWrKk_0t`L)OLk9|xY!54MtiN|ov(t*4v&dGZrVlfy>4IZg-BU&%N zytan7I9E67XZW#({>B)>^Zyiek4uCH*Cnjl@EQYd1Po1Mp#=L>wJh3iz-wuFs#Yv^ z&zhSGHPPudyV&q{@}3>kiQ^biq3P}k=bV!0{AQ=~o0n{GF0vtV zJ1txt!@^9m{R4v>sG8xN<;eV~T$o|VM|~QGfTPwHGH0Jp-F&38+~M0hv@SY3@E6~% zrIv4oO1aa?EKB=0%0QXTl1Xh;KCyZX^^(9F!a%!;cuV|j0x=@71Rd0Y^Xq?!9sJfs zgbpnT4cb*5S|`x>WDM|TRLV#5zvm2v?oOW2P9#nwPbThx z9m3_#|DFpbhI^7H%)fhrL6>TCv#h`(SN4}r9QlL&<@!3l?<`uS8W>yR7L| ziY9AZmleKB8CA8-(^n}iV=F3MuB8Dn5x#Qe?kjSkQj*qKYfCv$T4%R2aZ9bcD;=%3 z_w*2y?@SeMiX1=O*5KWzFhG0yW3)LCTUbNt3yJ-jV+}v5wXNG{w&75Vh&os5jQ>>p zzvBPG>IA*03l3}GjO#Jzh=qg9hewDnLFab~dT0ICtoXzf3cMhEm3){H$#JN6m$(qi zEcE_ajsyB$ZW5~kibH}5bq{EYEZ@GZRAMgFyR-{Sm4s5@KyLwWrw+UUFr`3b)Ehnm z9K)ca82^l^#~4T8_(cp^(;zp;s$zR{!{~0P5JxJ)lNA$c;QB=DDAEJq7me0cE;s2% zM>O#y(9sI6Bq@f5W#{vsZ*nSiSd7cBYv7i+Z^tNF7s=49)QvH>ND5Mx4a^!`ufhUZ z7N+fuF)HL?)k6{;h6e)YgK?>_zYJG~gG4gYUk3c0^d|&|gg-1B3{fUJrHnV6n>&;? z*01UB-8VTKj1+58PcShW^!N}N0(lo2h0%1*A1WS7rK&+M0#3VQ!6dCO#dRZnXf7A_ zX0GY)_5S-4ZOm zx_RA!kz`_FIN-}@#o@W253C&y`in82J6t_byZvfS^!aQh7K|TUtHcjjJNL!Hac=;z zy8TXo-y*J%ClXBLqoHiv3v{y!0lb3=g!1+UC$l4eakWMZRu04~YX{@OSbvA@qVz$; za1hhLh(Ght7M`LcgDe%w$gY#+r(B8&mrw#gPRKQxTrt!Kh*-oG8e%K2kueTZnwft9 ztdY74uP93|ikP7(z7x7W?C>)V5`uY}q9s0Flbdp;hGS)Q8b~(j@cqMF4x|q5)_<5a zFBzl72O0vv5a>~ZQ=U;euG|y5oolbf|F*R`eHwdRsm$!apSiYgF6 z`KYc(N9T%_J4=zY9?jKixl%k`oRq6`^Y68#S`pc*iu0qhv*p9pY*8ytEZ6kpa5*=I zB7p`;ofG{c$xX0a2SHg0utqF#SHEc*$a;4kIL}4=!Gq zU%>4a5ILC1wB+9cQySrMDUY6nHEI!vE-7S&?YhR}C|FYbkt5(QM3KkOE|LK^MCb(A z7Q3+f+?i34(hz-_`F3M0B(*&p?Lg>Z+`QO~e1G8*v>d!l;SZTI>k35Rnk>2(U> zNg%hU)90{zK!uT9&;c>tg`5TH!eq`BaiJ&<;j|;z8wi(hM*MNC-tKs^u2`tQ}F@au3Q6Q|4JMWwtRgtdel zh#SF$JRUfGxbZ~*Y7DxIvmldj0f8Ts%PCxr7{aMIV-5tHiz2%MT)9&t2(N_&DdhGC zymtJ;SxVtyF~2vQb;S}0W?gc?Gex-V0lx<=>_oPUbQDieOTMH7JK!shV1yCpB9lHM z^3xG?FZe^S_|-?MT<5hCCYS(Soo-G(LGZO)Pl)~ z>rg0xOe>2>tda;Faz&Cs9G`J7x{iipi54U~3VG>?NNUJeafFkhbRskBTC|s9eqR=u z9V__o`C}#fqH8vjNQaVPN5wakicDbETC%?f+!duUqOlsN1A$B^64Z?VHxUv8xx|fO z3!)CDyrJO?A%@Us!KjQN0!khq5f8@-`Bd$*x$Cdb%?@WG;YUM}%>NB{$b2Do>-w-S zyg2mW&|=s(y#5O-Z~x5GZ~x3KxqJLk&(YbL^~J^Ywy&t`Mc;B_b;uL--;?`Ze#w_h z)jXbBD(73udz-(AUp$RDtr~q7d{zi3HBcN=6O)4l7yKO6ph_*pbcYolqxoD}Nhv{6 zx>QgM5y-^Wkcm8f;k_5kJ#i?S?8(4laR%OuXY#_}8a3@HB_}5*H_d&`J`_9BG*>XH z-(c8ILU6&FAZc|6YmMT#Z6zvo;h+b{XskI^^9@;5x)d~f>pMGu(zoCp0J}*Ib`$)Q z=3n|t@kQ}bP%sznlu)aS9z)YJ#uT{o>cWhe117&A*;k0j+HajaapI(BC9<&EJXSw7 z8xHv2`I@^w@*@w4*2$B-iziP$c=+PQyQe2=@5%maF_C+}9RlQDc^Q?H{t@6S5w{$E zkRaa)aP7D+T>quZLvM3urv=1+3*Htm)gco*3wyPD2u8<^EpUN)g?lhFPH(4W-Ggh% zU&7DjqbNlj_SwUjOHHgLq;hT#VY3oV2j){p%xq9Yj6VdTASDIt67&`S4aI-LA%`3) zCLJ6XKRHnm)$#Gl*f;>Ak({{QA4r9eZ`dKi2S6&Xk;Q&3B@8&f7sy&f1Hg7 z1?2MN++kr~y614Ie0uZ)zcdD-<4FcYxUgaf`&_j!i@>_}Urxrt3E^`&{IQ`MR3lsC zvn%;@u8df#;jRL?oHhu_r;83!2X(ec1%S@J|vq0(q1GFl3y zqL{xDr&R*i9vLl$wU~JX*TuAOaWn#`VoB?(jez-r@~F4N*a~q#>MY&KS20EzF{6g@ zdAi>c+CW_aW*DqwziuwcNux39%J+zDP#%kgNj_2aL8oW4US`%U(O@$qjJxgvHA>?x}&tI~sEh;5Xe){BHcb&|{KJ6~4=;BieW8M`aa3yXWns<1d|_KUb0x(HrF_*sT543 zh5vm>b6F;0PZjNtJb*-8|s%(+~xkWbu#t@8t}R0t<(ZB|QXnqw>7Zwt9`cV=h2T~Ve!m7X#bKuHHs&n+gv}1t5 zFA{t?Q@ug5ZU7DmkuUQ5Pk0OQgY#3lBGA}b-4lwtb0uK1FO_o0H}2N6!J%PjHDh`2 zTYd-0g0|TwwX6KRWekUg@jqfqD}dHE@}Z zvIDwC@w=b8A^*rXdOtlmIWhU@_@h(lw|wnWH|8JxM(v3w&I_%#+e9_Z@j>h)eH-R% zs~8`c%S@GpX)oDONqoT^n8ze%8V0LtU6U7%z3?r_ZT9rsb*Bz^BFG=Ud_(IXSV1I~ z4!Mmd=RHA(+r9McoXeSa_+4vnq;%_g`z0yoLYt`kCM;PP_@n*Y1^L;m^fipbve(iPPu23>_22Lgu43r!st20Ptw&U{B_m zBSuEHQM_wI=)VAuu`dSSCVet)a|T}v|MO-_%N(9Y+}Wu-u-H@68d(C+CV?yfQX7{9 z=m(L2y58T8WqQ9cg)7aAIj+ci5*M~DwGT74Ll{|Wwp+0VnpxKn=(J438~+wPJXq#B z1GSR}N;_nKGFKF?f>fhxRjf%Qu%NHj{O>O>qBWXLMS*0rBNc&gxdSe5;-_X)A^WyH zq|Y8IrTtE5$)R8lM)aWwm3mFX8w$l>;0I{~=<)t*r ze$M{FvhkCnD?>Nlxba%=+lQezc7@*en&){BvkcT9LE~>$Z(liX(oWqwy1y`QnY;Ul zcYWP^8oFbWG|885cs9(6FN8Wb=4KSBZUy{Gh&fQ zRj{{eup@}DDSf&7p_Xg2t>w_o&Jn2FuC&E{~s_8qu=ljN`z}>dZ_@obk^r-g%(+C3k?SN<86mIUJ6Bl=0XQ zYcR&2>H~Em^tm!WFk zXx4VAXs2t-2D{E$tJQU|MGKHRheuCf1CO_6dv_NBebi4>0s>2iPTRG-cY+b1V~zH{ zTdVt04&^ntFD+c~iDBZ;jjP{wV6J#6X@g-=-B_XKoE^UcA)CyBsZ5s&X$FfvLPG_< zNd#ft3Z~lonUxv;b@PZ7k$~&ZSUPcVyg2WhJiKlonl!8_iqGqGXRh_kE?1hB8~1qL z>&FiwUfQXtZnJ|WtK4bIvi&vuc{jmz6=m6|`~~vZ4fPilXJBvOl0`l50u^|)|72p3 z;JczDp13y{y@p>m>7xR{csrDGuHaxbTJjX0mcEl9h$cPih$ef5Q5pmcKEej6$m%EJ zha4C~%5DUqrdk4xC(Y6pjxe4pmX%Id>uqV;MF2(-qN#~wL2Z~fJ2E1xbsy&Q_2Dih zJV)Xhc?-G#VqKxd2X`(J)X4kBL<^~uH0?Y?I@X$qrq|qB-|9-ohLqOSQq5-XWq5?9 zOuaeht^+7F<{@J2shhZRQ6>i(OQAxff^*SSypk(rL!uaXgHc3)J>a-h&zG$oYIGT0 zr|(^;)Hrn#{HC4se>K=cI} zmsu)Us&Ef!w~NXr@ty7Vn%cYNma+NCLQ&X?g~|D`o%XKsZ|hh)q8Uyue4}6#1A(GZ z_y({L=D6vh2cUVTKLCd#nwR1y1yHth1ay%qWt@ToO&Ek=XdIf%a<(%Zb=t$w@I{9^ z*|O8`n8-9UhCAVo;%&4>GtJ>@(ghyU?Mha&tC{jh`mocvtYhdX+D|$_%zzDEmmEQ0 zr8$N~w*~Ku7CsON0Z14aKbrtEsNZZtHjuwT>~Rh~D7X<9q=5)o5+H*`x5Hm=Zo*34v6`NFzn*MW+`olq= zvIH}zNUJ~DTXYPSu&LxvPIR^NaU@VXb||0!@EK&&2}THXuo`gb>f7Jo@WlvCA;Jv$5pN z*uiVF`p1#rCacd|2ev!S&P;4(Xks-y8NPd|yrTaXqlwRjfum|%{tN2ahHkLR`Hy8t zK3P_4tXh$1to~yG&Z6TxtUpjgfl*r&+nt$sGEyAMrhC6Nk5Akl-+v+C%B1GAz0bZQ zlPb78h>Odj6ov~Eb0~tgAUCQch2dXt+b2Dt`K-8UX3`xlI=JqtImS3V5v~-Xq~sXO z&lNEsFzEm!hxs0KPJZ?PS=sLhjjT;IOg`|1xC8G+*^87e30g;g6?%%yf=4ssBU`vl zjMEXfH}j0<1$b^w{){${2jU4uzMt?T8>$)juJ}&t+Dvf_Cz{+Zg@e=eWQbB1TU* z&RhrHs4pG_dWmIkm#bE{w#iqkX%NY4`Le>p7D3*zxWXe~Q{oBP9eZ?S;5o#lNx3x! zpjBPRo62R_aPbU03C|PS5BVVV9AZMOHiOu7dHjfdwSq{dtTsRtZ}MsCgEe~}pu`q# z*s7k2%d%I+?E%m+>PfvfF@Sr|FJPWsi6&;{@V0u5@wZv)tM=X&ooIxn)Na(h!O~zN zt|0MAHv~QxW1ew(n7iAGt1Zz?GEqU&gGwTl3U!oVnrKZX*TR;t${~JVL(*#>a&dp_ znaO7+w*`zPH{VfxmTdyG48mf692Y<_cMIdP zSmjavDJX>GpCs^SuMAvJ*&du*4Rgz5pp6T_db1cRxEInsb=DD(7%z-7xTo+#QUb=j zh>0fR#Il9(!pPhvHf@_fRsUk8WB18oYBpTod%rdGA2Dl-oW(%T<3qkM4y`ps z#gdcK$>o4gwvm>l@q8J@>I^jc4EUmbXkz?Wboobxneo-mjn6}ko1UyQI0?vrh5c8t%SS^}h!DNiXk)_^0 zP+kg!#FM?>ONBa}P)f|BgTDnv6LypXxhc=bJX1{gj%&cMA@G{~K++UiS$1Nd{&WnZ z0f6gmB|DuT9Y%f-wU7QGzd{`rb3_fHU$9xk85vNe4FZv7)Av6 z0O$uV>jV#ZUpOl&F;skQUte^)o88{GRX2T2_D3wF`r{>>*-{;aYVEDl>NzSe^!Ird zr!+O21J4`@Z3fjdf&a@S5_jaE$ZzLc`N3z0M&z>-8D4Qq{zAT)Uq>_^wy!zvbZEDU zK%zky1Q@~-h$Vz4&PD1BY>+jUYm)sK*?xk^S z=Lp9EOm7?euj3DH+jk*<@gr)8D4id3c6U%(j^aAwwE$H?eKos4qP4gKjEHofhhmoaq zC_RW$xGw119&9@w=mw<=52BEG8fCreGS^#7CAt1OR1B+y6$jewV)R1vi6{6W?(V&t z8gTIzeE#Dz~{JLx?l;*vaJ5qhXK$SSMfd_WR9qzax58<0IKai*F74JVz&wofOY0k+^q; zKgJK`=iVAaSwlxH2eQDz2^Xsjo_>xC3*|=2ksp?+J0KLffJq4G)7>?y~2#kc@1bxJO0L zeqCaR3y_g$v!THgR#(_#b)qs5(!+kG%}kt|8&3~c7}U0u$&B58#z6Swu4z0rr&TMv zl7S;p@`!H6RHlOq{!NoMNvV4NHlFXpdWSewKsc+aS>V$Fh{0~RbN>AHzGrBHD?Wsr z%kC_AbLc;1&QW+lA$=QAHV`$C9J=-Bqt{k9y20A{o}S7Ti@B8ETetSa26BPl zdhS*v3GeUhj2;_KAHU&vdidDr-fq8LlubGY8P=9SQ6vf!HtG687BdEVf>zLv*2wyU zwWW`IWND{;Q8W{!Aetgr>V3)(Greyb-}@%p*sNO++yoZ)1SJ8ben#t}P8eC}XXUNb z0Krg-VJdTQ-8T3LfN(!_WZIZIQiCq~Yj>sY;85$tG8|V@bBtlVIdjT8Imv_^P(eR% z=M9LmPd;S5uVYbbm?{CWwIJ;M2Xo?AO_jLo@)Ag-?c<@jf-J!3@U(XvB@(9x$^nc2 zN3(AluDHw+l(W?+pZ<_ze?hRup>GxK_DMMaV-6ssI+zRSc_eFtu>#{MsFIFgA^+~k zmkh`hWC~la`_gw`)BBhs8W8t6qhC7mUBH~7`Qs=PZ08lm-Ev7750+(}u znjSXhRaMHg5<=C?g%spDC&rj(WW<9*Ej${!U2r4#GyuNq0ayJJl#~>S5_)e-PcYJ5 zjs9WQC&X?rFU{u5nb_}O84muA4A=wf-=+U5{tR*2Xrau2bD6~YI*+xBYpfjTiUo7& zqMER*eqdhu1~M>a&`LH^@Faqc5+vHCdtS_y%lXn`p|B|QeD8Dl-!A5T`AR5U$t`8l z9zEyx=ThG+EEcPUPo(Z$c0)@!lRnk^hvh}&pE-K%(Rg98xmYOjmm;0iMs@pWS)|_> zjpbtY;jBo!p}1H`eWLKo=~J&;T6}29_0{wY+g9 z04(*G3B$?M!Q%&0$-8~QT5x-d(`8Fry=Hv;n$;bs9-)PlGV5PU9$)EX5P0I`MVIuOPV3|nd}bjZ@c)B$5WPzL*oo#yO*A=*+rJ`rsh?(cFpdSVXR6&s4C zr`+WOho)2RxDRUo8W2D-qD5i_<_oM4M2xTNiCRlbt*dg!4;-9Hc}D67_0ZSMva>Ci zvy^KP^BXV33_H0Esl7)S@}!moA1Y&2iH-I3Ru=(CuW@AJKd$-o_k}VYVG9R0yCXijO;(Lx>%LiO0ffyAs3Fh;3<|KgCXpaW8iEJ(L>?p}UEc=h`aUGe{qcCl zaSh^~cE5V`-=^=uQ)n1spxWSbx-aa00FZvKcQY6^HjFpkWA-UpdKVaiw5$g~pN#`_ z=un0TvQEHeBfc||7wz`TA6ND1)z;T{Sp{dvs)DRmS1to;jp4l=SYbvm-eFsW6NF4| z2|uZCy`cnr`v<T1T+niR-SrPCs>5sdU$=Co)JzNQsivR4Kq> znLFp^ZaeI{^;XwmWWIqC6Ja~SBAGkpn$BkqVNm?lEcH}!^7Px3-D+p=m$F7?GHwxui-W0!=~ByTqn-ViCZ6la7 z$AHQhx1F=SmZK(Y2lyVdltIVs8l)*;&p?1A2nC17boyU7%+rXYYM0nFXbkkcgX4|R zeFR&VxyC9Q^opPz370>d3I|-SKv;|T5lO2!T1p0ksp3dU3k1LJOl0WF0LO;_5^_3g zf%tGK8xQ!Sp+GDc@i}5K4}z9Y1QNN*P%_Z7H4XPC6WN%@6VD{;$)Tvn6V1kNKw$HX zk((&gh62H%T7Dv5`yk{7r|`JEaEyaTS-=@gMf|?7mW~IJjKbmacraWY-heldLgI^X zGP^mN`dthl(02@^-$1(@v^|M7L5<^-Be069Gi`_~4p^-0=sP>yz={8a$3hr! z8X#)P{8v^ZQO|;$Z0K6?B{V|R>-TzrEe=M4URN!U$c|)V0beZSkA)&$XDsRs`8{IX zY=*D9qXB=|?+m2!v1lGCIr<350UsLxPw&*+~{?d!ZbvLV<2Gh(4miT#1HnYw1iK7~0J z=?}r%n`W_w9OKE~8ToJ7r6R`m;kkPD6NVhx>m2TfXA9-C$H$X}Vk()(V86Na4Na_P zmu3$ixMQKXnEk{9#_3I?luxFLg(ULdlnb+mOGh$R>~qow>g^NsBTpcpsmzB=Y!kD{ z)S&~1b6XWlDDxq-T01Rfl-y$eWjL=w?~eE9TdlP(wAR*&QE3qHNV-Fs;sOOO*%;k+ z+SWwfk`h9hOlS*;jsYEt3(xc{K*OeU&`4k|#|7jZqj(^C9B~*i z)>DYom|xW1$yMRO@H#xxjn4Mnf$TeXwXs|zJ3Fj4-R1mnRg7k0@6;CapcJVjlxtu% zfJn`cNNx4`O4b?4jcLQPS#x8KdB%HWK10xHz;96uumBLlrbS=Rf>aUkm_gV>a|7Ov zF%=Op&&&jn+g4H`rjVLPKlDBS(ZmW~^`45pvz;O0B+#l#Oo!LMYEjd00h1dAAu3&^ z6wy*v6H7)=zt_=EHUY)FGK%R0j8S>ufV-jIfTBcMaxCSpdC%`oJv%u<;R2=S=R%X1m0d+?=UXSJ~?W8 z9QP+K1d_h_2Neu~veb!PaY(8pps69_M2|#?p#``WVylHRA+48Zvcmf#_mQk!5T8;|*c>vp@NLs@+&pN{z>0XNb*xdRb@ zEFB5^ir&a@#9Q=*BST~92vSc3;Nk4`grX;-A#9!g0FFh{V`3u_TUxy#2IubK16nx} zN=Ncpe zLUjwI!?)6v+g28C3Qf!(pNCrK&}M5aitMqeP|7>%GqS{kXEL83b{@TLW!861ZT9$~ zY9&^QB9w2?pUy)!l2LwR!2eLErQ-8lin&_hrgxj%8;3(etCL^1}Nra3yS{^d6uMf5WpXKXpsR$9#S>RUJMna)YgaS9nz z)A=cH8ruw2$r+qUd#AX5qU6Mk(VK*;2-Z(HE=f@aIubY@z+MTC9lTg|%wbiL?$Lyv z_iHF@H&hpa5u2@@tr-#~_R9)8w$g?L)kKtu4GSk`7#32j*HvJ$P0G!iYQIm%Hc>8S zHlsb2Bb%uKu!1W&0?pSiUwMA9Ulf)N{zSQz=*f$(i7w@FuO zH-Xe*MZE0c`1t4aQP+sSR`VAtE>(zgZ8nXPD-|9)LFyo+d~C`&kZ{ngp7H`bx)q9T zFNG@PDC2^0uKppXvw{pt&ktIVi5_`grB!-f(I8^$pTVf6JrJvetGZw+@RUGxl?T~c zTT=ICS_1by%UH+L`YB_qr&XNJ53x=Pqx7fZE>lhlgC;>j0uLhJdQ1lpo{9;Ou#XCD zi?5Sn@uU1LNVFU;&rpJgKO2_81B?g_>|07Fy9ve$tT8=(1Sjy-FQl=GMiqynO02uj?b26ZNJgZ=N~#a@>o zvqcl1--`He3`8P<8~u@Am!I;x*eIm-F6w;|9?SlJ z-c+?Ob&8;H3nhmpF7AqrJ$lFEn6n4~=}43iC?2POw)bV2x!Z^ousgVZn$bcbeM6lE zx+5)8Tyr$JTtwjVsa!JZTztTaAZw1%QH9(`yg6_K78Tf**w!$oRl zNcYS{hh#)t;1R?|HWJBpqeBqcU6YOgcy@>teqYFoxP>lA@E33A52EJB#-`sw7`p_u~aHHdZ8_SF!uNy z(p=Ct&=C#LZP*X7xL?slw28_d0?jS4lGqF|R>o4mZfbUnqdUt>#ZZ<_5DV1Uw z9Gl+XFG!z_$ljZqZHCzzXhW7|j<(Jpyfm1L66GS>?)#Q%dkik4!0Y?~C6jT`wl`5g zMX$Kld!;Sbz}V?8M0jqW@>if#mxIU*$tDA{)kR0q{6y`(U9~6j&E5`RdypJDcpG&^ z@w@f9xfp$W9jRp)hmCJGk-1K?3>qjO*CecyFkeF5zwco{SR+CJmU=9kP?=iRdI%26 zY~LJsY_quum``W3zE`l2S-|$-^IPi%ynT#7eQnS_tme}t@z3EO(U^TOD>?hZL35`@q)3Y0A}LBDW$h3pQKBe$ zk{>`eH+LfhyXh}*qty50NqsQw-r1K)$4eQvi2{N2B~*Y5!a z!o3A+Q)1h4ovU_@GiTxz?E(z~$-&+G(G>lr=_E+6(zXZ+OvNJGo0o_h`8-sqSGF&a z8jZ(CQ;8jIEJTx`P%>H=G*i-}@5)>yQ%V>R4#5FmAv0>G0rH6kWMdGBgLtL-~+{3>lg zt^us8{hI?i9_$uQBox-TRV&W+uC6-~t>b_!b_sOd~JgvlIXNOETXU7>KPQ26rcd(Z5DzOZlq(y_l0hwi=i-d{T1 z`|H!EpWpoE{$}$pxMmbD`!3cDEaU=3%vz`>3o4HXfzb-;rwKs;TTICsh#p_)kmlR~ zr0$=kMsxmbAv;-F(sn&G7D&d7M7`h-dc5A*+bZ=XJYV0SSuvZC#G#!3-)ZmH_? zYmK@wKN0YY(t@rzM$4imCMU-a>^%^GwWy!BPg#p-&f8+%8(6Y*z4wI*I!|kmH8t7O zLxBU*aGCJiQBY!H`K)z1$}`9D2EM}fH*1^n2QW%8a4T8&s%s$7b5H;a_=l)}S-)CG zpR>bm(Jo4}w`y0vP;y@oV!J58{V%j@b7#ZWwzq4u-!L>w=~{mxj>E5r7>GCnayS){ z;siMraqO~-8r^%3zhHeSnm#U&wQlbny9d$GvFR1w~hu zU}f~IB~@t-IKohm4Rhjv0Ldta1YB+=ssOn`D5MDw6>CY<5PO0N1miJ0`7oZtrCaNp zH^k;Jaq$uouYbmC_*`*-?@R%yD-Dzy4LR^y#bM?1mZPHOqd6@c&X}>#ZhStDq)}HY z8Vg0=2Zc8QyRxwXc@czUV_VuIZZPk1#SFhYhFpuH-x-a%bJpm@m0Hfqxub|ZDe9-< zMPD&B=^yhaN&)QN?lNL-zY%l2Ih@1=!yJCq&l{lUHF}fdH2@m%m(D%)3*wlh@&hV9 zx0~ohRiYWGbbsaA{c_$f98n)+_;}omrMxlW@E6=JO^f+60beo|NTIm$31z*%YjN=| z;dSmBp8$4{OW+6ol*GjNE@!@+8e{S;BtGB%eD3YA<@020*iNi#j3Hy7X}M$41ar=$ z6oBPSF{O++KUtWNMNbe35?sff)=*hj`Z!e?o~y8&Djue;4^b?@BlzWS~1Alr-0ccraS-k}Dot5jGpW8mF6RXDwIcJ9EgyQ2%qr-hNr zoY^=takvpVy4)X=bz#?lw)>i?FLYv|7A2Jg$kGVUDgLh%fmUPvAZR1=*;ULby+`mL zi3jsXr3B2aI3wTupK?2xBM)MZ$nU||CoS7hR!lK6_|}8@eRBUBa?3GO^qqDtRxv-w z99HOjj1R_QR$KVV7>$ett+uog<72tSDX7Fn36)>MN!T)C4~NSZQj(Ka2Y}?=j?u;| z5Dt^eb;u0eHHhj4G)beLgr0yi@D3;8P;z;#Yt->Q6!b$;zcpTtMq|(iXrN>+HJG%QYD_)Xp_Vp?4FHynQfCMn zY`INY06UpLOb>S9tgB)0q>d*pYqtYcDz4cz%lE|M5eM>agXiPpj?1ILi^1pJ?%Or3 zbubXi&(0o<%;sb7dV{9DL38A1BM1GD4b$rLa8{ZLe?arcWBq#N+Gt7lC!>>7W6}7p zPfkt!f;nNrP*b-`zS?hRYrfLDJn*Z&T6VJcSHr}6m>bkQQMqZ*O6j)-`PC6TvO!>< zO;KM(ov<#n5IN6p{3lu8bq;Uj*b&wTLnz&OWV}hhL_x(syro>JFi0V&lq(j=TWzCF zn`qk~%GO3h0R&nHLZemeL1qP5z;Yc)5m%?&$zXgmn+PV|Q?c|R;5x=fN8>2ncL>}M z1Ju`R)@9rcywOrd?i;vZqhot2_PpA5825n4OOa)3YfH4PEwByw7CvJ8IAoQrEBL^Y zXF>aW#l2j7lD>@%{%G<}%wjoPw;fhCnk{+9t*zdMwT1X|`PQ&sap(HhS{?VYn?()Z z=39*1>sJ#QdDX~OJSB`%O-x0^jzDTMFgKf+mVA1ChX0N6T_I~KxNE#yX>q4j0UEN^ zttG0}L`}V*N}Yg;y@t%9HJ)IfiLdaxb;~t872miB>0=f10R4jTXIvR`Aj;TBG_CDm z!C<2XJf;LJrOaLjp$7LxE5)Xjc*B0l7#8=x0q$_i89OnBx`Oz#PR5YAzxy`n(mlQh z&Fs`>Cg|~w^*BNvm&<&*k3w+GkB#D2c(vc44Kp((p9$XY+!nrAl=qfBQ> zBY}2pTjG)up`A_U&NH2qEk*NSY{Z><*Ri_$l&;`R$fG>ZX*k%7BoT`E_oEaO+tabYvUivk^z!n(}zxn z(^CLe7@fuq1%I{#?K^p@YZHz77N#g$4dM(yDoH_|My#6Kx}-&(aM;+Z-oMSE3tyPP6;_&&{{?5gtrz<;EC0E0cp-GzVA z{`7<0Pd^CiL7hi*AN(}`tok+be9$bLzG{+c5w*ia)*PP(V+OEwJfj%Fdf!0AGydw! zM*aGAakWi1UsBd4>d(=BE|ju>!U7SezQP%af6yI_yk4|(;h1kq$;{?eq))|O1S~NM?UF)7I&cgozai?|S z@Z=gwX2=p-cs^yrB28A2hd{OMx2oSD)l((={?@^IqWjhdyKgPk6ZV}q*=zWD@U7j~ zzYXZ{2=8XsA+BIJx1us*r3QP(JTUoKyPh?9?iqOq_rsOZm(oGape6^v0ECJ{Il zID70phNoNUpOq&G?sMVbMUkW4bzWz+jbbN2w_?#MOx$ieiBw4xT-%awHz2U^Yp`;H z2;j$M_l4qpj593Co>syt#~*x{<16us`cq&da_Itw@WQ1CW~TwiiW+M4_F5N^iEHTV zsUNS^YPc8f0h!ER%W3**UX$11PQVc4bM0Vm-L38|I2w-P^78sBrp1NX0=#)>1+bM5 z3i)kz@~w~OyLR!4&T_u>vHZ^J7yTTp5zIGDS~^s=0gK+ zAsim44#Yfvne!j)eD@T0uW@s#bG6c!@IRm?6t3hvniZK2uKTj;Ln#9-gC1e6k>1xxLQt3%)Du=>_5l4$z^97} zqkHls)-KA4A?pTL2OdY~>7}Jpr|{pDEmciFMMx1jKE!@t{wsA>X>;yhZLzA~^qzSe zKEK~5Ky{|BFA(r`k^LjL^1Us;DJ&a>M~R>|;@Jqiu5WB?wtEb#A?BO<$Mb@I z%IEFJK2rXdBT9@LAXoGdO|o(gekh37Tlijk@SSbtJ!o6I-<-|$URSkj_#DIoQm9_C zHN4(o8OQP(06dew6#Cf?_Q^&+u9&YVal#)0dG)S! zjAcW;P%f0uGHjFVCH61-mTQ%-gMRL;f{|m8)E@_n9HO_yEfny%RZjq`~0yMLNH{QU*B1zFk zL;YJ=$Vi5|+!}^u+!!&gUg=%EvZm4#)%Ge}GV%;;Kn^xIpSIa~sEM&6-$;u$WQuAW zRU+s$uqmt59;gH%jsj+<3ep5ga%mW23(4p~DiI2zG7XsOiu3+P`1hX3>~j!I&lO7} z^e5mY6wfz1>62pqmB%%nZ=OtdzVFoD90?pgkpa9nqBvIsV3Axv_-=cGn#1|K?d*y9 zTYiFS3G#d9iELZ(_deEW7V#=GDqaQHB?o}M4tpMwiS6e@SA%nCjP#VB=q5rVN&Q`r z1_AGKWHetoe>R^loc)j4cUH)v#R#Ixvm4byA-xpO$7Vh4SqT0&MjmdzB-WD2JglcU zy-?4-D;-^rrG36paV}BtdvI=iwLN1!iNYdiBW(rS+o-GsBk0|KWGhk8)ovyQ*H>vO z!g04Z)jFC!%C?@bzw@Qe-~Zs|)~%yxF6fwwPv1n%mUZyTDB+D+#hoCU>`lI+ps~z1 zkqnciPKs}qyAhfmFs=C1G@aKsnEGMoC{6)md@UDcIp2Zoe8Y_XYT8+ise;aA2xMtmZd$I z6dKoATV7caBla1J4!wi0!PUq~i+v?&r?I*8wKq@Opd;uMTBy}OP zY1+s?HN-!dOL&MHo=E3|m`h@0ditg8!w+{>?@gtw@>F(X&0kE`j@D=PHFK#&Am2|< zKbd{FyZWQ|#`Gy)4ku)D*;4(!vr9fa=K>lqyC}s3#TSUj;gGpj&_X~?BmyGx%p`Ga zH4*yAT^x{^A$nQ*V6l3onP$P9H}#EfyXc3_G?-5Viq-s7`nH9I+tT>};fMo&tzPo# z;NHCGw0}4-#!uv-<0)~4-%96MZ#yVA@-peYOh=dU+;!MZe-rXZ5wi_E5mUd6MF8sD z0`@MYV<2P>(pIM5c*b%@eJ1v`4G8L2^BVY&_))m|!rP|!=NYhfR zEgg%pcwEd#$F4%fy81K`x=d&HbJ&}kAG7f@IwW@WJ%H>vfS-XbWm>&3NS#j_rLbm|Esaxy?P)4vr$eA2)GoZB*kTuHJMeqht`00E_(9+vEiWz7 z6;g#$gt>iq(Xq+_Vpcm=M}#Qr=`O36Wc^qT$6ZdpzNGtW0pDcm!xQGD?<)iVaNKvh z5VwoB%{m;j;;WOsz{Gx>hEB>%<&<1cPGlN%!0d3y14oU(z&_-ej>B z4%dpO;1u*D8ApP(V<#9pQA$Q?rWuQwW-S86K&{IS#HMb*dIlY?1zYvN)md2tY+zXi zQUf6y{^9Nr=L2N|^2SvokGxg+vN1#sDNh_vz4M)^QzUn@jwBX;rppw4e=cs1-1Q`}gE? z$$P>cukLB8+y@G)#F`*~LC6IVq?3bNZvInlsd&r#ArphU+Q@g1fRW+Lxx-u`aB*BX z5gARS68Ia9B*yj{IFhfAP3H2cR6aL3R?h?aPSQ$+&l{xo*Hu$)1OmLbM2#W3^Kegt zgZ#_a$7Zv*MCo}HdAqA!1hQfDS4HLZF2_vo05>zs0Wq~desMd0O>~P9U=1PbCF}#_<^eC z8(&x$Cu%+*Qv!ZwO%q@=ZH+RwraFt^2Gi`aJV2x7gd-o!lRO2nUCc#hEXY34t4nBs zyr=4e(zg8yy-RkpFls1_O1ibJU1Tk)!FC7AI5~zqFD|t=i5p3KjL6dh;FV^8f3vOm z6BfF?k1;g_Dy4zV2*D2;C zcn@Q7iC-j9PUPI{`^~m@xN1K$m~VbY_+0z*RDPS!hAOK=Ew;z-(p(b`Uz0}6=S*zQ{wqZbM-ZwjmKE&tgZCN;XjCPO8q1b{R9?$pmh#{ zhwVL6Uy`-ILShD$oAAqbd51Zpfkx#WOX6Ki@m;&(OGi!fhs(k7O0YZ?4mmwhWQhhQ zpLpWp=;&lHK zl@v&#f=~sNov4E9C85wlH^%{FJ(yJxLWsj=6<9w@uB2IOxe=%>L8r0CmF*F7S)@|c z6Dglu%e^gPbhr&)DA+g<$n6Q}!V_!c06UNhN8?MN#*u(_F!7g~yD{bLebwP!ury#Z zW64W1JeCgtwoXNEuf-apPA72i@k!=zAvdls29u+aa@a_FjPjixZFE1VTxeg|{oX{R zIGgatqs7_e=Pcfx;A!nO3WTuT8+zg1RtL>LCM@n>WaHgLOFc>{y(kdVR2WzG{% zT~+89P!|v#$kHg*!7>-JSVy(I;qf{~9pR`~%R0gjc)i*b-#DhU@B`|Tn1`QxvG!~N z7)9EvH{wa}T#jbK6ZN`0UPMG}I3k`$y&h-S`zS7fH!tB0w(8B`lga+-V+jyv3?1CpFmx0Gvf4Roe0>8V^?JIT7F9j~<{6)Oj$BEB$mEX6t*0=)=1 zzBd1lB{lv4IKfZ3^a2L25b&cq0X0WvuBA*d)O z2?}3YNlNcY>rx;TMUZLQ;7ovSvPj*Ybmy8)Qy;(_xW$uhV<4|WPk}52GXM-ys4|R4 zFgm7ZUIYTDol#$g%%*@ECg4Gtkn}dBZ8`}HM5mpUaTx7MNBWSW}_y7FgXgATb zcNuJ)2!sPhPe`h_~4E=G3;{cc;V03~Fh<@CS|Q98}= zzDv+*{?YelbeXh-60kyVHv0BAyrX~f2Q}>z7Q!|VF15ynwGjm(Uc0T`t4)*zM#x9e zXiAv5mG*MoUW2UN8in`gJX+7e1OR4|rC8_<&?V*x#u}mk1O*@)0!@N8XLK#3%+>)7 zmLs^jC?9dBR%IFBCGM7m*!|${T>j0oOS@mcySVpkz1&{N&Rw`X={_8FX6MdlJ#G;* z9FudQLfn&bJ2X8J@}R73z@=+uF{Gh1ElTD_G!(^M+x_~t%s-yX?0)^8`k8&ja(1Cz zp1Uxc)}n{pR%7n`+*w`3=W@>72_2GTI2v*~eW;I)BEOo$n@_rZx)T*{Yi$-x7nZZV=AMQIu zvJe15r^WMk%>xC-{Z?dw?eRE5Nsl#gH@q)NPtow_r#!{Dc^uU^{0<)qa=5*565Dk8 zp0J(DMz%^l(Z?s&E+P@1Q z4No4mj{ae~I9AL=QpanvXJ>$AI)Bk{REx#RRPV}sY8B8<8yg?SPp&+3?!I#~igJ=XIP$X+OJcax9zEsWEng25;JsATnfv_XI$oS;NC3N}lB+%6#zC zc&ZDs~M)z5|Zz9gj3N?3Ud*>x$rw;QX@{62%KlemdDPtpPsKyKDhGWWOe@O zcKsZR^>!Pz(z!=68IhT&Gzz6sp;4LWqHsmE+DM^8x8EnBEQ{zDh-h4I0`~oQRgPZEtE4?*PHfSn(uU zY7f9FuyG)VlKDa6JrfgJC?3M!g^3BL+WWdS=X3$$%I6Zf0xEFJz3F--kLrysH(;u? z+?^ko^@T!-Q0O=NJK|@3Zg14%dE=Ya>t{ax)|ifRIR!X}kTzj78K^1t1(Xz&om{GKlvrJX3h4 z|F_ZK!4Wx!prcc!V5AVH6(|F}L?suzQ35&+;>iZSye`W05e%{aPmV_nn)Ie+UD-e~ zhvMCK3Mgd(bnH6l9_bJ8XQCxWMFD80cNHj-2tT?iMm9I?wy%$D;XLUFqaRKzuOaQi zwpI4qC*#r(+cRjP3)Ca}16s+}4qD0>%Vh)=wHf3*1e@ob?Y2^mM06tVQi_(*2j~ol z1=x0$Q5u97v(`K7!eAu_IHuPvL<$Yt*_F>qx`&*WmeGPh0Z^=31@*Su-K}eD0GnF9 zw(;iCkN(zgXg~6K$0yQHe`VqdZcSRP?DH;YowUl{Ir0Wv1N>}8RFKKfKo^wVD`TD1 z#@xw*0}ccA-Xe@8*Oqi?Vk#!}0=VW_EiP?GttG&mNc;*w${`IguH-{S8c#&-oY^fJ z0IV?%8({dZXd*C&$P`yRH*o|9T+Ub=cyJeH%k8uljG@N8Bl3>jB3I0&HQQ05GWv{48>V z>`M4>q$3An9l}tgmryLvocjPYq{~isQulg%ZjTeaa7}oeS_;5=E?3vAnU;l(EKaxP zcD9>@zzafJ0&0Xm?9oIm6>v4%PPg4IVybYygYFBiAxxiU3BgDhL#RzG*hP`0T zqtahH4r=9#qY}9_18NAM4Vgc??Dfz1z06&jxCgj~TqiOYrQ}Rh#lX`Jw!UsR<#jHY>sj zl(5N(@GC`9OM4vu7`%g-UQ-xHqHZ&4PyWiL!kN6Sk-8YF zlM;0ML+7_O(&MW=W;d^lA#%ri*UjUqWvsaUQ`ryo+m~6`dq+Vw?bNQhe8wY8ZFJZ! z)px|=lQbTfhh+pjQk*ZB5WQ-Nt97Fp=mnZaU7Wn``Ws=jH&#|Q7+!Dtf*D`!2HjG! zIK)syK?XEDxchxJ@%c;G?{RE@fC#V9Yic%+5MS9xH;ye0C-b_m}0ASPzK zQ1qqoDwb2J-c{@vTCC3ZZH(`7H9WloMNWVx&LX0P8?s0D=%m0)+e%!*izwwZyqp4v z$aZWw&j0?}Vayz~U}%J}^aJ!tt!ad&pqKF&HJk1>THux$xvfW$Z&^ zIq3A;-y(9p7G6lij`0(RLw>a5ZC_sa8v0R(l@?Yh=p>ZmDcH$8mL_>L-nVYzcub2L z{;UjR)zX-Nh>v1!9CAjtN3roa`+CqS<{|khv*BLBO$8hr#LWjsQNsaRl|98&SV%Syxey z9gN$OLO=5I&~wYAR)AsSAG;EC3_omxlN-$WHdZ4w5=i0|+=wGZWxWD{2jvYcW_xTw za(bb7<#MsTg|WC=Uy}Ryx?f&n!`3^7Hi-T+QO8l$%J90qb{9iH=>%6FWVXZn25VvJ8ep_C)`Od#LhdKg;%ZjI;((e#oQX)mdC+_>Tg@ zNtDCHca(2jYiL2O$73_`)%u%OC&$JvUMxx*@_&Ke_``_qBoapru1^~k zx{A^zD!$7Q?|8>MFzM$px#u&P-pld$J@+I$K4IYS!NcwObb7vh_~080Q}O#Bh$l=Y zG}-f_%M~hI2E-c*;h)%@5Z#|n?CxU-4)ic)e1f0G4X{ILA(nZ_($2^LAOFuc0ec5hGlykM&c?oe5}f_Xyta13y;B6_**mMaONOeRF=WUpk};Bn>%nD7!;hl+F$% z(vJ~h2rdR_r0jRG2K$BsHI>6=W_))k<#V>#q-Nzofyz`Q+qXEA_%I@%muUvc4Y-YWe5=KQUVLTz;LC0l8`( z(uYW%lY;CA4gp?=e_D_crzuhRXB^s41e8UMkyE?F#YdS*uH%_=UF%x+`c4mCuWNq> zGd=EuAMo0)yr)mvoQOWa34I! zz?JZaEB19@%Ks%?ljabzYJJDfHVlIfQf96}f3P;ONym`n3?m*;0j^!6cmw!5Y~?}t zq;2{{-b7q_AY8%pWLMBuG3zQB3uaQZ9-)^%%S#$dO=H%$cx{bZAD|yv6|N`RAz<&4vst~+$KH%qYtbsBL9qjf=9QJ+|2vi|C3UAO zxhpj`T1pznvU@F|38x;-j7?^b8OhS9Si5}v@>Sgv?S0Fsqp+dJ6A8vmp*uwjAsOHG z5k5ES(Pdj$M~2UdIq@3LshBdJ_Lk3!YN~Cd8QbY0p%uHuO|&aV&ku-+*m^wj-^DBdS41w^N+M3 zMI8mXD*NG`le3$dEVPDO@K%&jf&tDX`j~3^hBqMbTa=mW*>k$bk#7yEz#2&YWC|Xa z6piKQ+yZ&-{qoGTXAbF)Uut;`j5@6yh^>I#?Vtm~oxC$8E;@LT*#sp|=CRERH!N^) zvDcO|S@BHP>U}SocD#|f8_{%VH4Kk^>RcK={%E*rmK;^rDiT*N_{8h8y^m(=Y?fQk z1A+i%{CIFR1^0gV+&WHoRUIX>8lGkR@CCHbUYG2b0O_stPWM9%plG8j#E2Am-uB?` z-48yzl0W^~Jbc9u%D33`Hdb+{u#Gk`hJivEC@daF8Krj+*f0RbrGJ#l?@e z^02~hzr!~2D!eFxy}XWgD_XdYb~96`$@@W?gn+~NLC}oB!jYsABhBPc6#;LIvW*eq7Y*0{k%8eShL@kjO@3!ZWcyI3? zEP*_yP|^9p<#$ISf6*0>WP2Y{Ge>vtB7O{KPO;mGJlyT#k+^>PIii>+@_tw`z-HB4 zE!+2{?hNrvHSNj9*nUr zN6|-8o=Kt@3=IXa1STNOEP*YcQV!nXCRNF>p{bZjp4`HE;hci}$TZrd34-%S4yP{} zPE;YbOx1&i5vWgvy}_#6<;z5z{u#_RZECW;|3G_UN&^E2rP0QVZ+Js-T$?%fZ++fa zG8j&KLnsiCJ)aGS^pGd*cLiK1Ig=#6ztCEUMWeBW)&*RM9DnA}R4tdQO&!86hg{M{ z%J!0@0Oy8iBu#}=LWU-19M?Oe$Yh3;FpzcB^d*zNrVJV!?pxkq9o!2WFXIXO`?!rg zzu=OCHO!D%Ms}7}w1lI=t0pI|;Nr#XpFf!5GFW_(z8v7%>>kd&eS$m6}$41Nb4pzQ8gbxp1In~et( zdeDqzA5b3uBZ`o6x{(*L2By--7*{^1Yr^yzW}KR+JF80_Obs<;My5=_MoM)IqyWFD z6N>|q4J=kyRhntvy!ZAvORx#y1Zt=+9Egax&*u*XK=uW6oS?6u`!y|`2n1O^v;QTC z&a9JuS$BC^H3TtE{_w5{BA}eEaI7$$iUM`?JVZ#e`I%Hj&&PTCs(`sEi_CI4a^;j_>_IJXojA-W`c@_=CD#2+hvT^~-Vu%alWwp6n8z?t4Z?e&*r`4I#*0FaBz)e0??Srlz5EcWYvVDut%*Ff znz*zPV9+6A$lQ&+g76J8NfBGAhymFgk_sG_N~DAcN>4Mo<3+>@I`7OnBdD4lgvsnT zohUh*YeXWA++~jY;@bmA4|w|`_dlCJ@jB;Jf}s+th*Av2Zl@mhmb^=kh44OWn%OU5 zf<1!_e%~|LnfK`)?^E+S9D<6UQhuk6Ls_z*TgtgogY^o!YY8TASg-73n{^=25z&s3 zI(1;_o&8+>b7z4Fho3bgi66tdjvw@gl4WVja6`r}V$9*qM8bJZY9@50^LJ;s?`B)n z+nZyv6GkE!4n}>!*)gSbitfhx`h9byiKR>&757p`Hd&gRSB^21w0DLyHrHM`kyG1C+#@^3!@IgQ`L0`T3)B;Kq@# zHhXk_{(q#QPL|7GRWIjz%i`)swTO3i-V@Ol#mIVf)bAf^kOev_?RGO+JX1XpzdmHoc-OnegbH)j1flz(=hv#_x>u31Kl>>fouKW(%7-?KphX1q+>3c1p`wwojbO- zyavNV7OB9Jxf#-4(ze$bdA*0TszM-3sG2&Q5;;+0;1?pShS6yaF}3Rt{$N*OW#y#J zjiH?={`}Tm^<8;@mEgcb_1(Q|yXz0Jh2;B~Q%a`b*aX2rXJNG`E-LP-|uI!cNZv7T5$Zoh* z8!GS2ib&^4I5w0F^1NtcRe9M0Oh8~$0$1&M)TsgNgJnG+cNp=9A9a4Wf4-^;yH`ZZ zZIh$lUHbj-UG0@1YKUEeGYLcjfe?~i z46Ns~(CskA%)U}QkUho7ZHEsoxZO=Ra$Jgm*+*t|S8fzP!NVU`>HeatlK-tb zv-Rk9S7AqpYE93nlg)@bbT}M7?DjiQhD}~?E}iYPV*o}<7n7Y%vY5^%lL+m%Ryl~b zEkM9v4ANlUsQ5;|oHu0r_P+}&1~8_KcILE^+8hf}((-@x>WvYsL4UjLM@+!PsZ)4k z)lXR`trx1;1N0{X0P2|Ec;=(N;A9GC-H5JSD)$ajY-Ysr| zu~mBM?}9(TH3LqDz(eI2l72tkNE+}PP>e<(gwh9a!&(^}%+?EPAyCvM!~%Q0!l{)j z&s5499Q8gE0ERw2?$Z$rHB}g`yHJvKv@jJ7=X76O_c=e4%sb7X@ObuCCnl(WA@LdqTSMUt^lD3-*IJ5>mUG#60V*e`aDTT9NbH=@;ZQn90ex*($=Y4hIp zM)Czj^MdUX;|Zb#sjXY5e;IU4PDIm%v!ud+Ny%rCy(_}H-}Q^x z3SuLHk)~e1qs35_(9)fTQa>o}k;Aq^yWdeRx*L1Jz;#R1H5n za0C_q@B71NDa9zgUHQHt3=C#5{os9cKJG(2kpC5M2n$jrX)*jp^nJ5(mimDg0{d_d z**l;N%%xvh$yRUz4#HbboL78@&T{p0ogAT(U7UG>=NjA~Bjcoy@LH00`6aKGIUTU&}{R1cm$Smkb)`aiq zubr*$Dck{ zFYP;PA%_Ik@ACM zw*r+GFq8~lgJ7CJ^Ro2~oP!-Pa_vlB&Lb65-LL+|b#7DQ*S5L2Y#K{^Rk6CV0_=?? zuL%pB93TtUIMcg?{ocm)jSbXEZwu?%HVfQ#YaF2O5f0MDbAo@OFW-;8Y{0wI*DX1L z70}9lBt7NiJG7E?9Y%3hv<>-+t!=CFV_Egs8Zb)J7mDpT!R<-5c4mUZiGM; zG&eUCMzyj3Q+79JTU02u;xt5d!`b;2r)MwjwMFQEGYPjJUuu~=Y;e=C+2 z7SCgt)|j`+_;e@(NS`z6!w2|+c-mEblwXW36n%yS>Y1|_oLY8GO0A==>_m9BHJ@wp za=5VEs&PY~Fbi?1V!+n2HJxps z!pYMzT@f(|(ey&L_j_;^Cp&ErcN@C;YWoUQ#r3v5zv(Z%bw5F1XS~g@pBVZ?FY_=D z14k@d&itx)pY)AjHnJCB@qwBOMu1)M;$`c~najOTow=O9Y>D??K6Ayo{6!0I&M=ok z$*C9v^?iO7b)n0~L6ytV&^J%>d;jgSwRZY4zjb=;kMM6@R^OFt;WAbQf~6}gf>YYI z8pS<#j^Ezy{V7U_cacTA`GWC`(U$47lWlz6UI$xv3MXv0C0MR4M%_S|f^(&>Dp5CW zVT>?37`qak{B9k8c%ws-!@0(q8Rux^&McqFaR$T`T`}0&B92R&bWkL@F(Klz*T^Rgjv%1SGv#LF(J~5989*&ng}n)pu4|?}2~t52&3@ z^|{^eQf8oiLq*FHCsx*bv@`D$G`w%q76}{A1;kJf(cYv63J>^mgJ@2KF9I%o9V@|D zUfxtrZonGLd?!^09v|aJ<)Ck3U9$#)!l|Fax;}tfMCV8D#vJMkE?R$Q;F}-pv?w_6 zCE!vns!# zPVUni`&?-Qwr^qJWK33pawF=}>fCkECV5>(A|r!9heQQ%Pj$|^`i|nuYF^pTfT@aQ z0-0yK2e``31C#GzRv<92A#QVd> zKIF&&yaM@6=m^8#`|e3UOj6g>mPf=%`a^IGhYbJ8w&-$Om+v>~_FPf+$OPyl;_qoR zhrBS15ZMt8fW-s9FYHeUc913lypswV#G)+(V!cLy$O5A~Jg!ho57d3`qT9F7wnTkr zbjbGLEMXBr4af#Qw=d+6W{_hv>J7!q&;;05oE(q^3d0pHD^Q@Tq%LGITgLWbNP&29 zsU%egWdWeY4-RqkE;^7si;@(5DF_!(;?O`YLQof%b-f<<)3`>vn%IYp+68c){B%_b zIj5D#^Q%f8LU7m$&s?!wK7SNC5zeJ%#EshRe|}?RAngn!A3i2@AZ)r=Ls&npI7+~x zT_zuPjMnS!-LcU+9GLISS#G~}?wBDQla|Nb`w!TBQnE zr^k|Nq8cSuC3ym=!(bN%wd#1i9S`NHrc_mB6n^Jk`79)$t?sLlBbyJnYZtF zC)Vn{t0*~A?=9CwdnK9d_>(V!$#i^%A90F^@<^)C+6@)_XsCDeeBAg4@vpIVy)xRe z3<<75dr2G#!I+aUU}@M3L7}YJuNwRtJYKP1cZ+y|vHdRjexG=wKw1})4z>RzOhlOi zSV`;snlN#cyZ8Moyt*BZ-dDK;0EOn=!s+aN|87(?bRuf}mo%pb4r!cyw0A?(kW}Sx z{O*kr9QE+vpvNBz=@L5_7o=jwvJDT5#|-A&4ifh*po|=_W~;kzyKOh7fHADM*vg+d)BoF;IuV;mJoN5|5;L(Ae>tqN*!!>j zGjJ;I-=~GtZRzJ8M1#>(rVv<$uFy5>#GNNC7|6bKI-Ps5*aR46d#PAl+UWa6t<;fw zhjCrF{5F2X42;7g&~;=i;Wl?Ro)hbkLK#BggZX^YidbS<%dG?dunB_MFMfaPtfEI%h9hOIN9EPDisaH z^xj!OzZHFuA4z;uXQ>pxu4LlQlRACuyEu~h}bpYc- z1z7OlvY~HOhrJ>f3SWm45Z){_a3PU+>*XgJn#MNN?|rG)TKCVtK5&d)dMey`@w z=)&!9%qRTbxaW|=GBN33MhnV(xs#*?BT!a;MX;5UQOqyREtw3zosLdg$l z#o5J4L(|gnNHF365{HE%s@_M^CDW0LhJ2^=RvJ}@^I~s7 z`6B#V=V2~zp)X;r1E28No<+v>4QMy4Q_@UyfNnu4ZbKSD%)V`q$NFW?+5UcNjj*lk z*N{afGq11OVm9xC>oOL>1NxhkIdLOUhLtxej?|O`%#Jgl=D;ze{H~wIu!Q6m6FKLF#hgLEdV>2Lfq2+O8N@DtfJt3M2!3XV`C!UyT zZ?0ThLH(I^I7PcpJ_+r06Nw#|XlyFxv(5h|q^7Sl0% zpSZGjT9{1_B zq5R5ksIT|b>B!Jh7f|0&`y2v3ocKJ(0V4t%95@3)1wQhT{O5l=|KShkKhKYcGBLBb zkV8hXL6f83e)dz3e&EWZOy62%W|-8W)cG7+_WMnJzOAp@-6x(vFJGfU4RSf!(We(T z=XpuI3EJ@>#_ss%EUaz&Z;LiF?&U0#8>MR43P-oMVW2*o`rWioQnLBqqelIYp%1e3 z{GiML06|>vk(e?Qzl9hodZdYD1W<2OmJq*_Thv3n^D8bWG@eiULqc11CIcStzlemy z<#eoYQalvccu%Bs;zl4OoQH6l$9p3X)(+{VL$UO)$hoQRX~=t4(693P1rVUdw!5MV z0&ImQ8#F88y7scXht3=O^!|+xoP;Qd21Wj4<(eWre(|XHnE26f;D*P>rKcuB&AO5j`UW~lw%ZJgF z&nJWjEB1T}lzyc=^tv2B3GN*Krfop=+@0qjrbMw7i3E=IC#IC7A1zDp2 zc$bHA>e*@O_(4zKPn~?#KA6tGaG|j9+Fen>IeF?q!}~Le+m2{Z(i(zs zfl@YrnXh8#VYYL<=77}g4k-siW4SkdtdYNPwfE0%-8pnl$bQkr{H2fc%;+sTi2R+l zFXpn2f%^8dHz5B=;mBx&90(gVn^K`P84QkC5yHK*nlLN`HDUPI7LG1V2G2JR-03Lq zD|hGSl0~-}UVzEnoeC|K=jKk0W{%F)4|(VJ-+9o1f*HlRxndz1^qWSeyzoLX34DZP zdVB$ghjWPW3|`n4k$D7{7Of+2p;Mm0l12I$T_{vuV%_>WHn79>ZOHn4pKV*nvcE?tP_Aw=g&y!)rs z%c)oD`J%cflDn^&O6fD_emhLqdla7M_WydNia!%@NB33hbFNehYh2A^n@2}rv4X`C z>u6|!U}{`TwgQrLOKJ+};lV>dz67+!@GkY{LD`D?&nGLm|K5&YwnW^NiSm&#b^E!A zi6qYOC+AdqIY*RSKjdkUKgc=z{wPWUlAARk@rn_|V!@Hxy$Z0jZl}Er6Voax-SRra z^{InTCV7>(!l`Hgj7Ul{kenOF7papV zw1|1V;9UUw;+(<`g0bY(Xd&g}Yg}?SDrCc*h(C2RG+bT(l}$S3HOL8YR8nF=Go_%cZww9pcfT zZ~CcepYMq8@)ugpIsF%U*Q!6_ns^QLgx2V1-`{q2!IB;nX2(JGP6}FUwr>QzRm5iFBDd1O59R2zA^=}hKX{zu$@JKD( z-q@XsWy@pplZ)q%PV``Bis?#__dZ>%NL|aL(Ki-xoip zDA11HL+Xy+Xfg0hybue%`yKBN1oj6u-WLp>dq*r-4!lqNYybzrQuYP@`TOv4E*1#B zZ!izZQ$|i0+uj?A zojQ3c9ua%?IQL^=jh1uudZP^LccilCzQ;!W&(`1X2RTu4w2HfAUKTxNw~@-Q+u3rN zrn}v1qN2D~_E0z{ZW zy>7%zs*fh}kHfjTya~5+Z<8X;Cks!sx|aA-{&6^9^Wa~x^fFXTYx6|majV;sdd7Ff zABzuQZBTRGL);scNhXb~SQavrkWlzA()538OEAOKmLNLN+yZL@-b=$vrGEslP#?-# zPFExm$N-uOGy@sQi9*~Vf}VIp_r?6~OuX#(biBV1kNL~hc%b}uv8l9Y+)C@>6EQt) zjeF8l%v5_<*3vW}*}^)DTo1R`p@qj0rREKVbZtMZEE+p8~+b`(hIZU zRAa{DnQ5fLvkREIYVO^Txh#ytlG30;7o+!pXqaI<2OP6C$fZ>0072*tv>tixc9`3| z6XQYe?DPq9*6YN(r{U=dcyE91krwI><720H*1UaY)*Bq3KoLzyV`?o@_9U|X54x9} zR-9g#j<0&pFUsuY*Ss&!=*uD-!1)bAPlMD|=}QpsKSLKM4}ijGA~FQ*mEkS`3@sb* zHQ-2XsmYa#IAO$)S=W)QnlA=@mUrAJMp9<G?6J8 zM#L;ubGezIfi!j5-=G*9;=Q1Xh&zIM3XeDDt-L$LZpgK*6XSaiY^k_pSQ6iBJZ4yH z>biY<@)gmAMMI%MP&Q*53n!pYXUxkv~e2Z=H549DP zbHC|c+Y->1ulDb&__KPJ#4Dc#57IJ##kNz=cwfDKb>-&EcM(+Fx#e?gNB^_~t&~^C zG~mMltGwy*|CHxYzCQZ?X}j;Q4_P&slbH54tQ1%~ho;#$ZJt={pfX%V(npHKdXOEM z*+8>^sV>cJ8)W3*R9uFL;a_DO6I}Lf`PW;Pv?1AUqof#!1S0>g+4Fv&*HItXq1D}D zdaOX5x@o-Dy13Bx@sYCH&MWPl6(At5-j%Ue++f>;Snc9wY7VZ-wVF_pA*2Er2$&ZP zABeJZC)~2c1O;%4C~HaBe3LA<4xrW&NIzZzD8LOL=O*mIWnlqE+n?~`ufxycfz>vi z3*&`eVSK=Fw6fq0&k(`29c1=22%qE zd0XU_P*QahVAyjeb|p1 z;xEKYGV_@d#E44(6BkghB=u6nqhfEO{w_Q`K%6F+JWW955==5mMG}9}TgpB#n?pT< z&*VKm6#fb9?|sLiiTHwbIFN9i1}$<~cd`#W)b#pe>6|;}M|Gh68=6Cd zfj!{+sLSOILhzA_=C<{zI0%v=iDwKSIL1=_Gia~h*8oq0FAEyJ7y(Mx%GIlg5<$s( zkW@(%$zA*NhBU;5l_xb7RJvz`uFj<4mfV_hYk?CXm1)Gf)3WZILWG~S{0+H975Z-d z#Z#wFUOsv96kbo=bX{U$Nn3oERg9g9wQOID zv_?jUGtq7+F2jmfYtVYccx>c_nMfXyZXqyNVXgP&;`L%PSn(C(tSe%aePf+$cy>2c zUJ4s_JmSb^nMn%=Q21%AGiqjJT{qkx_7H6DM4%AFxC*9I8R~(wDndPwH-!bUwIoh@ zy_MAQ+r_1W=C~)A3`Q$+VrFtQxVngZ&-3jQ=RMA*uFcF_3l5MOTTX&Mp4Y8#*3uPu z>ub~RDd!00&G!B8dOel&@!K7j4y4K+V6a9j^SEUWs4ZNf^)+by_>&E|aL{hR>>L~L zgbJyXTeJnS4tU0Yi@KFWGMiAl%VN&G7cd+^pRv;d0EQE?~cQGhL*5N?G3jAde!_am(+HZWw z<@uJ!`35Kcu;Y5j)%(V8-v8(&eB5$4I_cX^XD?jHo^@#H*QGm1{>1T1k3JB5;DO7+ zyz@@8>Gv%yiaCe2&!O#gXwcZ7a5MKo|eVpC#~YORV~JgBg>T0*uRTqf)UekG-kkuf=*2o1hS*h<}Z+{RS^*F@q;kYwe~ewVewBL7Wexa>~ZRRM#PTL zZ#?{OO6eKTxQ%)(VyK!W@KxoGt{Y$gQt;_R6o~p3SF(ju7{@(?ALy-L=PjY<$!G3j z)xrsFYt10jAW)1{}o7g7l#)%YsU_nXmb*Xty3|G2x-%xE;4`8~hC@ALDu zLYrlbXqrn-R_99*Qw|#gN}fW4u@#r#D6X6HH@Hp_= zFFO!{|x1$8*6`{C<1X#1s-miOVDUekwzHkUmZRiUgF zycyNW56(* z%h*aeBkRa~np1!WS^$nxNQUS}wDsRO{qrJbWCi`StxN^7CPNGQ!dVdkjS0d>v=2;$ z>HV~81B7{+IJoDq$3*cxJ}_v1VsSbra*{V>&v`8YN|ZR^4A|%#B~Q$Gt^OcC=f4r{ z(4S~{m-eANY<9mq)mKxWBLF3{gj{a92`ADgIww3pGXOpA|g&Il1T!u-8<~-Od1$@6Y4ckhtRMfzAA;Dc;B29U#gEZq?DRc|Bp6YLN+1h7lH^K3#$^jq~zgjG>>u!!CgTor3k6@DZTCC`lwL zVnO41tc(xH_)W1%ps)S7J7l)yoH~X+aH9XvcAhvQDOmRM{hMuHX>lF~diQAehZ7Sg zmQPGfY))rVAsgJ)kx$*C>K0^M2PTZ$sbCp|`ka1%4aCAGhK5-0$q&@Yr4az3foFnL zR^72WvDGGGSeleni$4<32hlcFmFwku=cvk}-W|vxrY`4&aI0a2Mno@o7UQ?1Bklb* z1gsc1dy9V@bj*vlaIYy4tlOq%qdpuzZe7@npnE|3k^9|r2w(y5%p9}qXPe~)tOl@D zbf)gC)$W{HC$yp!)>vxqd*GLf1i?u#krRdivzd#7pCgaPnv@#+&0aC#MZqXrXUtG|;9D?a%?Q-Jux< zaIB1Fpo>pkd_{aJZ=(vJQYxLJll#8yMBLXbj};Lh*C3|9>KWCeGe{CVu9N zTh8D!Tv+F6BhTG>Ya1{2Q2O>XUN5-`?%*e^j{G>WV%=7d;ILdLeY+@O#;uA+q79q_gAM_W)k$Q`EnjY2DV zup71j$Pw*955*V~5q0pi;&|X_0fW<|`A*~r&m-fpu=JB_26Sq<5{4NTTIol_dxxD~ zR~ihDno{Fqb6mkPHwH~mrJ;uOK#DbzLqkc)>68M2a3T@*tExZYJu!t?TfC-DcoT?W zDm!$)iF-k^4dG#P#OcsZF$O#*i8m4iPq@oqyo+f@zHvCDWeUB9A=K`ZZXoQS(%s7+ zOk~+GcpsNT_LS`oe=u7wv-NG#4uqezD;u#0bHSC+XLHN43mA-1eg|O2?c7c27H+eK)60Q+`pJ8)Q=pgL+RAoLW}Ee zY{f{lhY$Kjd@sB3GHefuHoN)<7;9feO$f&c8Ym40xEy6XLf*tI>O#Erm<1Y3k}AOO zAVV4rbS~+Dq*Z^jx?oS+4*%jor|q^wcqfg|LG&K9m|SMX)*V}(yWxR(b{midZcB;} zU4ovjK+%be5ja3M3Y{_W141)x#FS!W;qhP$dU7+F?gVowfx6M6OFC<^InbVMAl#|D zLFxxqp;#*9KR`mM%GH5Z3-+Hj-{P^fA{qiU=xw>Of$SAamoZJ1wxE;W1uyWp5&NT) z9TQq*gp`5-(F!@4ux!Am7}8z}z%Nz-uUbMQ5k5tZeW!am9zrSZ40M0EM1tQc34!-1 zqaS~e&0+4(N()C^?1^}&`w2N3*vCd^UnT@U`Mw)RM_Kp*a5!J9FuCKhFTm@G_{HyH zygZI0igBbIKRoKTP$GE_{}hx^2Zn)$_#LoP=%AboKep*Q>D`fq6z+yre9KlJat#Gj zZdaLE(jIH~xrEw{$J9vo;!-0NveBM=1Uk+wjfzCs`r_8E#^ zBKC|_jS}CM#2F|fU}83S^?hVy6NsH>%HQwc#Y4ZLJ<0z~#>^Xl|afP}Ukazcc*jmFUb&0dG~kFwGY0G5;(Z$7#yW{XFI=IkX(lMG3>gnww_IZ7#% zpb|wwalbtZYGcPzg;+N1EsiO1MOL!<==iWNJDkYtLsM#;X+dRfw35F+r@P%V`K-s6 zU}q56Hw4%gzYJHFyeF)eBVkJ{twqZ*Z%|gVO5PPp7DhtPx@Cvv%?CZQ6xCx?FO-yc za+3$99A<)g9j0{%c2I*hnRKeqN6q-`02v`tLT}O-VktGWg?vxsE`z97P{}6VB20at zkF)dDe!^=;$+fRP5vyK=T{9eejBr_9rB4kpspcZhaZIpmwKn?P3)K`4& zrwiSG5CvNW&qR==TvN719k`is-84255BW64FVRIee3;W{a}a7I$*DtrgLYXfWHgkY z+puVafE>l+m1gIS@$O}M4jbrx>f!ZID(^qHDo3L1Lx96xYrZl5IXs}!d3YGRRiy1B z!ou#2GN?71@xXbA42$OjnBIbi5o?==M^z2j0IHm;0_qj? z55i89J%KeJ9ndG?^u~f}=6A?faisd1%0kKw4ENF!1sloD&i4H(bs5MXo!QxZ8 zp>0NiBH0S2Ng`m6A=Qsh4Tn@;Xhe7Wfu?K;EdMoM_MuG;Y28ad))JkOR3sluYFaXu zkEBLk?pNr-L#EN-7X#9G1K67o7Dc-VUF#ILe{pX^3KS(BBR0^o@Bl8+q0svXhlW{( zg$GD%+-J}T+nOo%d~eA*;c=;8ss+rdn26#SCsmgxdQ5nGUJ^SR>o7RShZlyCN&p!c zs7lDlfJ2;$+rl0>dWAIP9F-2+t+M|)`wXW+IX(mGIYB?mBaJ+!THT8GA;~lu<+ll0%)29xp zYU0*glZxg|MG}d^z4uZ-qR+nyzFS1-4b%&oEo1n0WJCi|$}M`IVn_Ym|H?cj-{ohC zGHk~i8-M9fJF~{ndWz!0{P&R;&Rq_e~kQEvH@dh~4VpDB$Q#_Z8H$c-a^7uHFcynk1 z0a97lIKtqTcL-q+!-9z6$-}}F*uw!MiRmom*z)=F)oKIw$7P{HxTjctwF60g>|y_8 zGB>AqM=E25(evp-wbsVFm}V0~k8mV#_`Wf#+nJ33Xe!ni`AEA$=xo&2p9bAA{e58J zf`J!{I@qmo$|pta3bZ%%@9a5uZcpMpLy5%Dd!i2>c=&I0{lH63JbVC>@I>J~6BF+# z)bv;0`QU>Oo;|_iPp2Ih zy!Gh5aCqNQLd)^_;~0uZV$oa9oGI*k>K6a$zne=cp}j|s?hS_%Bm1+tQmhb-9yxR7 z=2$F0*E%&CtFNFcT;72Ev$bxMcAc<4&|wG(LVMF5T1nETlJrH+BXBwu9wS*h!Aj5? z(Zv$-(wG`}b3lz5yT96Vd=FktWL=?P(e@2`HF)}TusSzGyBQrQkhnn5oafk=*<%>- z0*ebKOIX{D9B;Wg8~Aea;>F~bFN{R)i&Snulx2@C{Pg6>pK9IzJvX=f66z8$2SpxY z&UuG0>S>iF8v(QBC=E2?gOHDk5c~A0L}H40#a^!nf%odbWu{Lc|0y$ebYJ4d#9BwI zDy^voPhCRng0$IER#wy%zC{I*jK}zZQ)xbk#qWiWm>a*J4gqpl;f=d~2`Pcs$}Pxb zl!HoXL6vCmA8n|w28ow|^&3lfJx5+Y?Y*yI1L<}|R{P=VFK3nk?`fgzpBMCjSF-K?Y%v$h(CUIjni%LgzB!yOZ3wK-x(JVhx;6x53V0 zv4E@s3p99K1|2N%8{)nW%mkj*1T8LZWZU@&pwm}#BJUsW*yw)@#8c#gHg4PKe-?bX zR@eI4-_LzS}ykjY>1B_eauDBTGCDtsx7ce_z2Y?In_1T6Dh4O zI$@e^&PcZo9XT>|t2EO)`Y1T$a%c9qypT#Q$j9bpj|Xq0qvI3sa}&H4Xv8$h|11ki zAi~daXHWzJUxlRxvIv|q_~L|TYmiNlTpDubyR>p(O(8>x8p*`vvX-i*@Y*^XO~eDyf^mP2Y6BEY|9WurT?nM6L#E+5AkubwVtOX`W2xEh2 zd$oZn&{LeOFX|6JtS_>rxuWAs<*8ff3{Kzou3x=3eU{UK4*Pw?CFO`y#wY|MK&l?F$xt(qrqxgn3q%2&w!!g% zW;l60)>$<%99P2Mh|Z10p$$%y5-FG0Io$o<`l1{DKFP#UoxObsV9MSb>|VxJhlDH+*^;>@ zB+U)FV#Db{qLS_v(h#eJx#Uy~`bN5Nin}ZDoON*7gJP*qXTr&|$*UR(8bE`32iD=JWUL*EL_+;zP4J)Hb>z}fR>=%#%!3Z+#W2D!^U=}7 zhCx+>;feu^AuDN(m%se<*|Vql_Uu``_v)R*S0C*=Z`6-sfk~GU#fTfAEWa`YLU7+b z0f@{W`@vdp9Virha0IT9K2HXeRy#jM=|L#p5BMSl3e{+^Ax9gCmCSFDt~ZKc3>#lV zFS8DR4r!l>zLMJ-ESZe!3xuVY+OlUXgL;G~i{^N^3MmX2_z3geTM55}!3);&&6mS+ zTpQBjNM_mLOxm`{r&+pYDDmC2>~%|aJ5v0}X1jiteE_wmm=OtxkaZ|6WzIKHwb^IY z?!T!wBwyzEe;#;0Pou;vh1EjAQA_?S8(5br)hk0dtau$2^`2#g7l7s{ z`598|c?u=K97QE)Hb^Bl%p@Rrqi?u4I}O@I;dG%YM8i7Cxf*;57@}f=-G4*~)w{co zv$3)ch#2IZDrZWImFUM5Z}}sNKQVaB#m-i`{|Nm(vV2tnYQ^ELln%eI%*LQ)T8{>X z-`0@5e{kF`#ue64!VnRfA(V&MyPbAxXx>Q9f%$y>(xr8dOai70b%Mhx4W|{PGijk{ zrU@+=ZD8mb?Y+sCx$X+#KUi(JXHgBq78XQEMTihHJkgNB!9awGA8#iT?cboygRz%C z^zs;O*nmKPTt0dD@JV`KtQ|N|!@EcO$Y$dP-N}&_SNPmP8BnU#A(WEtpFh-2d*TtW z$CJsXLLM4+H0jy+!Qv1et&Tm(^YgiJ9G}%kBe9pyWiy$HN3qw!lgQwAB+X8c7v2q? zlZW>XWkh~H6l|fAN=?=dxY7y=H#mvxeMfk#A^IJ4e}*+cA#7+1@ZAIiffyONUXY=u zZ8SQK#_H$0@A&-RkB*)i9sM-9o#9PC>(O=cFv=npvhUx|pfRYc5T!}ho`-`5g7P4t zVUNq^DTtSCIGtJ~mnr8*^4TQt%w5v3meNM^BiUqH87&_iQuWbzPD|!vk+7VK&1Ag+ zwu)%FKq!@)8k-(2>v2UHsziJaXUS8Jm?^B1rdbq?uZ7Q{ex$30{Wyfq z1wMf!STPCyU>a2AK2ptKtyN&Z;w#{$Qu5c@BjLJUXq0Ug$G+cGZ53&@sPfZFEj3lV zKg}8ex=7IwUzMNyL%mR#Fis@zPosJGv#+og)*Oym6N3AX6+|856`GdS%ZrO^4S1&B zc9g9m(eI_p>wAx_8T7Qn`KlnOTple8*9b5J;7FlY#UAQaloGU+Yu&(mlNt{&i%L^z zrqfI6>f&N|a|PqP(TJ8B456AZ79(VH6QO0%;FXn?E0}(?C_tXYy4>OV*DVX$Kmh^> zkrnPX156&$6moSg9z&cl>72=SoWY)9D3Fu`omHi|j?H?rg7LD_XmmFl4Mcl1AntNH zPXGYx>j2=oMEo2$RCnIOXM7nO<5tjM?}Fm^684~nOTgyaT9TSgN=F4X9*JmeEj>46+q>5`G*_oz zl*KQf4LJX(d)X7dB@UzxJO13hz*(gwlz#wlRx!s-UW{^?SOOnJOe_Gh z2x6TxVBl1^HwA_mXGMuzLBYx0g=cC_vg+L1{T@1)l@5J(2?|-B-bD+;*LewWQ(9;# zqyaJpcFFJEE5y!j=g^_D((;eQ;K+zqY{cJE(8;+-$(_l#OA!vEY49s#pRbVrVgaNP z|75=*t0b{4hzy|wkL2f$uP`dH64iL3NAOMfiv8|zS}P7RTQD`b(5RG~oywVp$KjLQ z(RNHr+V__0tyr<*_{p1A_Spii8_E`^UzemvW_k}so!ZdzcFCJ{`h(hN1rE3NnT!>$v_;R-+rQ(CwZ zKa@%xidT?%zLri*1%p$p8B?CUIX5)~IBlFOm9is=`2=1g*-{C=iG;%uPIG_4R6HBZ z2jpV7CDA`Yn~~O;DN66A@mii0pWPSQx;yw>#D}yE)lU%#zX3gQ`3D$ z07L+2H++^HNAA#a!gGde=OK#FWF_Zx*3KsadI?baiIoQ2EE9RqB~qrq(+a*ZW6}qe zk{&?Ve+#3k82g|!rspQ7j+p=%q<8oM;^`je+G&u#f}&xDaSTA6f#(p+N2tUh1d%n* zCjq#FP0e|qrWcjdT|Dk+ve^$#pBp%vr-<}u_ zNREAZQKY~o7z3(5=QX*GA_0kn_-KqAX#R3Yoe70MwSyS7JX;w|xx4|U>d;j1)?n`v zdWnhb>|9_=Ng>mxZ|vKvk^FhGYN$DDxj;!R?QG7&G)#hhvr zR#d@9=!hj)alt(hSP>mzm}8e>m}$k5ZjtN?xANjrTq3atOZQHf7qpOGeR*l=F3Drt zGpksFh13m;g^0sy@kY}V3o#G#IUI=HK{!e#oQSIyH8@)c_@XRw@F6KE4NnHGk=n!! zdlP;@q>kP@lDzZYQJYl`1!SM zM8TVoe9EbPX@LT9#nRYqf8Uvj#4{du6ba;<4!<+*hz5}d(4{(kHVGh6-qDqGp+HyO zD2L-3aHHIVHm46H$?uDo;qf^rS&{!n{iXDW%zouLl|B{>-;$Ou8wrwz+CpdM$lxg?SpA{k;X zJ9`Xb1A-dBLx7KfEBafIa+alN(;(+0xk$oxQO02w;Cu8z*#Jwy1{#eTuJYpz?!b)6 z+On|^p?nRDu3d^ig!_3*Ez}WYb5u39er?en-K`308C2q?seEE*@zm?pqcQ3j)hR3& zz(_Pt;Y&!mD~cz9@;_uOzp!k8;&TNeU?9lJfjjxZr;k%D2o-{w^!)i(^C*Pdy(}_( zMMC$`0r@aa{S*%aB2gX!6A`jDo;)TIVGUy;#y6gOLUh2-5=omPb_}nIu=^P6wD1Kf zp!cu!1>r0iF*{Y`4Owly-z#JeavJ9e$up=YsbQqGxnBZ(Y0Af+M_U+?&xKqGvyJm7 zVZpU4&|{eHx@7QUi?TgaXe?6xoZ@uJzLLHIE6RyId+u(vR_&!}B+}yFX6*7xdWF6? zv8SbAY;*dE9Hin|u<(#XRE2|-AdDC)SmU8?HdY464d6ggKg?{lh+A#D_p8J+?;^Vo z`~vXx_EL%GA_NxSzu0cMe$3=#Tf4p;vUEt!_m>iD5sb3WXxa z{2_HB@)Gix)S{o#YR-T#fg=Iugl&q!wVQ$_4^VPWVkW_)KrAQmG%cbNpTe^VCWx5b zS80rCR*TAPaYX6Z$~HFWbjAlQigi$BOdYf$R+7G9{42>FvopoADg20EODYJCE)@N= zY;)U!*1>|6xg=|1a4<1wcUcAtgUI9MmT`WNAy5+MlL$<(7BDEpm?T^^ z4Ej~4HgpsMtKp1FyCT3#$KUhm1zEt8x}bkuxygYv|`*t&v#Lh!kcXY%uu=~cTqC|{>>DxkV>QV#pc zN!ji0cTy%k)hzeV(q@>rAV$wqzUOVT>hcm+cpG&ZcpO^k$vcZOfDS-)K}1fxt0V^Y zpDB<76S}KeK{^&BRD?e`IjeU8{@7`@HkTTWrIrF}QC4w?4@w(hJ%Se}9Yly|-L4tj zh0)Bgk?l;z&ZWqGBuZYJXx+`FQNH2TL3{p?eT)4XbgZNShaUo|YGDq8_Io^^zaw`C zUdH}h-!YxT4MbT@8-gJ<3xfg4&164li`ZgQ*|^=d3IvuHx(E3{J?}lbm#KIDzn2As z`-RGap})N>&1~Wy9PUEWGVqu9==>kge{|zEW`7B5 zp8v{M)*t`pf5rtUlX*Qf&-_AMFmz|8ZwqY6q(>3sVWw61QB zssO!879k!Zz>XlG34ZMBBB;O&R|XOk(Qfe;eT;&T?zn_lKir+>7Y`sK-kJ;5LiXpl zhol_=v4$pu+Xx^Zg^`E1Dgw?33}6+@cH4JE6?GkqH{~mLMuWHpzu37(A-Z$7 zHL9PZ*tu4i#fs<-r$tz=@Ih&|$Zfv`kC9fn zMHx2n5q1FjXx`&V+(V^E%@9{__Iy>O6682;aG}nGze}a^+N1hWk-efhNWy)K8~0kQ z)m~b99ljG^FCqB>r78f$B!3U$cPQ6XpeG-}Lj_~PWE~Goo zAqfRBs|wItRxyee23|Gr(7+=Dj}E+d-~$66K_8jIf+U3Pl3fMHu>>~=z-nd*!2*d+ zOB0jugh!f)2?UYmkmIEY*J@~vYDEelfOoZ~(r40qsn8%`R6+pPx*Sl>rl}x9TsnK1|1w2xwP{>H% zH}-!jg_vz2I;;#jB60tln7#kw-)R{QuW#E!k&t4wWk=7uy>@FnolY^9;@jV%)a!pq z8y4Gs)jPdez2XfiGfD_vRoR%=ol3dAvE5Go*Qn--MPe>3Y945AtKEA~B;*;*+N{dQ zn5+LI`d!SA-)5f^oIN-l?#4;&T1N*{RtjkQ;1*~FHlk*yPLzslAUn@16fYG@u0&0V z$Z{k&5oxvFIP6WPgI+zLdDE;F(=vD7nby4?Tg4g*M{l?>Du>RrR=R7$uboQgZc7H7 z6)(ylWS9=JMo-+m_;^4Dn|p)S3(DGyzF1EnGx z5;x(KiBPjc{G^o%?Mqt3>=@!p1a>M!4CE2UrKFwh$>J1Suj|qIg#!^?KmKS6K+^~d ziKKD{PV@#e3E`j~y(y{(!!Rugb3elDb)81BuBVsvVG&3&tXCTb@*9LLTpOK`^=MR= z;gva?HL|FPHrarm^+!Mpz{O!H5GqXswqc2^XD&4ktYZl&4!prI zdQ;cu?$I&4_n+4Hr%tgC&f!=;vtJ({&+2}M>}P^*^D9 z|8>s2qdSZeXvXtO#Q7RV6jE8D$*a6T@@Hb+muo7SMz|91Ffw8jUj`Y-RPh6fLZ>I@*EdB~{Tw^|!hJ1e= zQEAE%e9i5NHN--XZ`ekEWx7y%;)%K5o>nZAs%d4>A_WhEOH1T(ZZ(%DI`|8$>a39dWKLRgPrT8jjbAh3i z{DmMi5!3;Okb=PrvWk(V@DT;p0Y~^)#}(xFh=2NueQByvnQ|9hWpBA!&=U#0P%C?f zT?O}Kr84O*Y&-88auxoiioZ2)WIlqcitedMY9g=4<9dD~6`}hK@BY=KtLS=7Dm9-1 z2WqrKi?zXr!OsR7B4NFRlYf;0qB*!M5k%ISER+kAeA5!?e>zAvf5#n;*`s0?6J8$u z_cZ+f;4Z=yuh-m?i=NwV$;H*AapT?{P2QQxNzn`Bdn{}+Lgm<7JSZA~4Q$E0Nm0@X zpz?3Yx)o7SFs|lWymeph>B6l&yWH7&y}LuXzU%$TKfJ%})E|Ev>i*zcKcrWvJZdZHqWG+J@*O+PK9k z&)?qHZINBtgBKS*6}T_?QMu8NW=2EUuQ}I?r8aCI2Ob+Ox?wvkMqGhMmJ+T(Fj262 zQ9(UVHufoF_0MEZ(GnjFg}UE{!v#_`L-qCwp}vL#8C6Kg(IL9`Fq?KJHaVdz3f&YhudD90Zpdpk7 zMlM+4Vf=! z{)U}InidY%h&d4wPqm~7GYMSSh29u04#HXc!4rD|nwHk~xUq5X!A1-0IpM}G?LM(b zR=0hn%EniJ{$el0J+^Ky+S=eT$^RWIRX+|%jpzVbUZIhm>A{g8K3foTNWVQW5@!+? zG0J+;2T5`}yhQOb(MTLJEKf$3P9u?Ry^%_%TXR3O^uDEMq!&9 zeV)Q}ziwWH>rkXVdkA?bajaH&Mkc|7L($UnQsN<%w7e60-!rE7>|ii&l73pK@Ws(` z`t#{hKvmPK`T?Z4*uWfJS~W$a-4t#b#{I(R2od`X;w zH$Q!<0>@JP6H+_Lz!8PWbzKOXYgdSC+oX2wC_-&v(3dsP7h#_rV8ZW1+) zcZf7%y?<^|@BIRrE8GBmW#jw{>1@f5REH)FcGLn*{E`)A?>C?H7TI1XCVMpiR zq5OCZA{zv?*mxd+e*>hKyt>K#@wRN%6r;jXmkSaYFX-HD8Z2{F#NN~usem9HFl6Ad zsu=b#q<`*Hty>RtpP}uZ-+2w2{+-vnWo0F>vhvzit99#{qjT{;&A)B@o<+WY>b@ff z@_2u3-|OaIjrZd0ERrk>zVXlDr$Xb0V$pG5&b^it&c-&@A9}+Z?pi5Trs1-mQA9v-_zYaEPEjg=zfBC)oh64P7JJv{x6_ zZ|*}8FdE3NzCF@}7oFntsD8XKyne=<>#NHFAr=6RjYmBY3j(iCl|WKfcP({?w^Kim z0NStDAG{tQEEI6sL^aw*Eq2tQZal`EdlS8tQZZN=Z zZ}@8}wp%^m@kL9z&2YjrZ(8b&D}WAc-51Tyn+OAINA1MDdpawg?P-TB!6Siym{l@D ze)=sc`{pbEP#8NtOPjIzev3-E@DI~9ob3MDKUC(iH+5q~TPa?W=X((mlYQeUL>^H* z*1FzXB$NvmR@Y$;2Ja8CjKr7oEXX?3+axWtm;rHXoj;)RVcd%4TvgmS%S zz^SC~886gUfDj^U^)AnVnuAb0c4;e8fly(8D?OsA=kNyz(t`B8HQAQaBy ztk9-a8ub6OF&*l~7#J@lNmF97>{b&M+$gh0c6+DiCKKR>r*vahWcSI5ZS&$0)c?j8 ztbLU*P9X=tI7$g;VPGOO%-3jv)vFU*g1uHT>kBUtu34t7$>PaPwK9I_BChXjM6&4aN}=N!jD2QrPPqs#X!~Jz5)2 zB*tqaeqXp+9rAkrwpheL2~praMT?Io{xUHh*A#s6m8x(U7tguEE?`}86MqM2R~e5% z?H_9%V9lZNc{W;Nt6%z3cS*AR-WM!fWf}s#-lEUMH&jo9d5HM`0uTJa|~a>q7t_JuwUd zk_~Frg79oqm{R_fUPyI+QcM-t^4N(}C&ns`MpZBBMZ6AT8RjdopjXdgjJ06v#nN1W z_pt)VbXs#^&aMLi2epSA96?_v8HfWX4LHY{J|qc`Mw>-olOj8<>c~4QaX5WGT7hmU zI|M(;!QZAO`LSqpsTe>oiQ5%P!UyzOIBTvbaIW+tp$SPvs28oz!hRRyc5n0_Bu$`C zgTpg)7O0wFbwHaj?yD78w2#eYI9k=%v2mmYX##(*0=-c=Gj|LI?{XXIs}Kl8B%2l) z$aLu0O)fiVt2dUFY&=B)Qg4ls61k@2sFLXM$Hvsn7WJf3xhYH6! z?f=6g%bv$Q@~Z=Wm+X-|o`~D)a1Ys>au^2Cdu2~<2}tWi8edNit0)e!kpWNld*r)y zz-^bkcDFqepPFmRPKU+f4tWB=&!lkOphsybD7)Zax61zWm-}Zb@6T3LG%waaqm2c| z>d(`%?Eiex?a7)ivK6UV*R~<4!Zj{D&F=Oz-K~mBj@IR!A;P9M?+aPFO z(-VeM1Vg=g-S~T*YfX_ZY4_Os4#;$+A?TsV-y*}}nWkrpr_M6U-3px{08}XX@RmAP zBq4e-2;Ru$S-Y@|``~5z-X)Ro-SU8P{`@AL#S_f=&_O?nm`KWFLi(WUH05>Sv`wk$ z=g#T1@&;+hHa6Hml|EM?Ymq~^xCiJq`C-yM;052i2SM~wM5WL$DHZ+hyY-53qcZ;l zul>~Bcc%c5S0<^Qj*T|&D^mgHKo|v)y6ZY+Y8yo&3joLSLK(JneFD)2WEyv=( zX9|MCk%+2Ij#O=Ou*4c;tYd^1A+&JUXp%7MtCWe1I0$Iur+GZ2sqtIGA6w#E@?PK4 z0o3)^L7=l`_Da7z#CbuJjuI|{Lg+v{aS;eH5E#;YK!DY#0y~LoU)o%C zg!FISHf-FODcjY1mF7l=&e9wewmu#c})?UkjquCy@%ktgF`L_4Fj`=%!GEDcJRIs-Z__Y2tzU}ZWhoh#)_14=P z;7OP!1OuRv8WE=iV9Bkq1&W#kZ-o#Xp9MaSq%Y^%bBJ5r%aACJk7ZJ+40co9e+Okw zD&`|?IUzMbSw4kBPh*PGlzKei0dqXEQZ63U7}VqoQJGZaq%hY=Q7-CF! z2xjQvE@m-huxksHGF&UhySR41xQbuU=Jo3NgY!J0JAJ~1M37T<`i8$7%->G`a6f!` zp*TQ!@X#-_Uj`i&d4Tr7-{}}}&h$z#1E<_rc^uU5;cZ#NH)yS-|#pyq1F zl}Mx<4ww1%Pt3C$f=7L?w*5x@mN$m*GYvn#WFGvj2e&TZ5go<66YlqF^DH%iIYwJ( z5%>fOKVA435|OE{V=4iMGM6?=q{Ckb&G%ewQ1Ab;9GPyf?a63mVrXssx%u$*@)&k2zj7T$Kb&epbf_) ztg_eLgL~EQ-dtI0{?cc=-=rIS4*J6k5iW#;WTo`Yo-n~jF zhloUg`V!Mw#3sPW=0!fiRfgM{1EOXh)X+7z96#A&T( zQ8T=3s*?ad5ONnC=Ge!7&lPCj=JxwP;R*zlK;R*_pJ7j^nS9^h9_odthQv1KI~k<&e@h)<5qH_H5~G%rvrug7HJQB99=P zDY<5hoH`KX2>3_KEWELM-3Nq=I{WB!_LL_$o14ld5#_ET*qy@REsn9INCfo;|C}GZ z+o_;u5SNTOEYNY|iV7}F=Bgr;?gXyka|jy-UK1P%oGM{todz!~l1?Fi6eNGbOy`;n ztpDJ{zK3g5=#_a~kM)KZ6M!wk@fPX?Xfu$otTa7ufl^8+Z$ys~G$HDS@kdVn@bdER zyLa#2d-v7vPG+^EFFQ7d%pR3n#_hAmPwchN-gUv@_BgO{J93k`IgdOWG%O%9qwyke z2H|!)v`{{NymrU*Z!@>!jKkx>#tmGRY&M#dJ&NLi(G+r(!8C%@jh&!1X6zIA%pEHoaRIO*!*fs28)@f?mx{#> z#2O83#D3@M_r<>N=$gJZ7(^Sy3DJsRU*UYip$^euu&dX>xCo@jZ4I#cmXWuNASZ>H zv*Op35!LEKK+pZ#8{iRKhtw7(sQ&j=fI=c3$o0V;l_$IUpK$#vVN4P)Pq-%|z{W%N z7|wCSf(lW9))fk&#JV!2B1=2M<%zk3k_<*>xLG1o8Qv5=?gqSdJYDGik3zW-Ewi^` zeL;E#q%?2yqf3a2T|#bmd@Qq91N0i#vUuSTuE0VR?f&;0%OyHs?=5#PA#NR46ZsXq z?qy(}D6pSn)PyiPh`-|Fy%&EBgA_$a5U+&@2@oQ%1K_m5C3J|z5{YnoM|vcTSYZvm zPLZ{(L)P^9c#0Qex0&xr3dM_9wuVtM1r!gC zjje61*WafF-lw~^o!0AR(N>~MsgrkWwO`oQPPMS6h4H?oy?AkqHd6hgQ=@*`Y#(R5 zt*$f9jBzD;7$C-5qi(l>cAci$Inth|txQ>p#(($=bIG0T3=)Lo~tGQX3 zAS1A$@gj6zVy@AchOOY|8`aO>Q_nZPuiJ0e8|T;WL-HAXG2`86IH1|Q&|tsI7*x+U z()-JUzJr}o;01$~Cl6qrimk3$2{gFGOnBfti1STz)^;lM4O-n>|?UR0D;wb}wa1l-B0wWgvpYt{9rjARS=6a2zg zaSwq?0{V_ym~5$eA4C=qBnp@)!dkaMve;CVH8NMO@%xIy7U}m9y$m-vj_}!_hcr0O zXM<p`zy8|4tXygL@wi@aQX@bxYtV@23eZ{jkAWK(F#Md^H|#?2 z?8OR$c|U`oF-d#?n?Rp5jQe?Zo)S_#+peU#KVq(ciafhd!HtPoThTF~8N$km%6s zpRGkg@`NGFliY?C9l+c`ch8_zpnhCgS?MmdZ&@VW;ldBr&whlDgMS3y_)Z@EIE=dT z=A%GjJHZ@5#H!jL-}BgSaPB524=v@}x}*Bcg54gl%hJM(KH6pOvvX(1=Ek?5X7A+J zNir_9FI4rh?%YRk-IM$2x=xSw}cISJ<k>;l2K=cEu4H5 zsKmcE4v;gr6E=}zv2x&n2A1fGR<7%f0(&B@dVG!9?sqGNG<$pH?@KHkjILIY53%vU zfhEeDtk=tG6Y)#t+D!g!R?Jh99H7#yW1e#RiolkGU4D9|j#fs$6h#iPEeF2Ma#_i7 zPku-TLCI5g+0%B{)EBng#G(y?+aqbw>$1CiNNOGMIucG_C^rQkye%g)gB}x38fiA+ zY6@D3ycE!`P&SIKL=*1uPlj6!9Vsd*?Y~sdt`Z(AbQW zhfWP)TOJ)Qy{t4m`XbJBDug#tNyOuc_SPXx9KF-#`arSSHuO5Jn_&3WsSvsu79om< zoh98IqJ#thVyPx!DHE|W7zM1cG5Om69F<)myIb->@`@Mtd7bLi9$9XV9lML5}1iyv3tBp|i};m{aQT&jLUfUl=%6kLk>-$r2Ek*P#H% zYs2g4ZaBPN2Lq6A6V@a)uue*Kyw5Mva(Z=uzFk~m>OWnkHLa)b!eYIf_6!vUo!(W4 z_BTzv{w{qtP1?kgUVo>s^Yr9y=o}HNR@b1|Lp%xwF8kysKdE0RUwCYTUHS?R&$F@a zw=VoK;owlYgwKM5bd?m(z>QwON|&d*{nu*dJ-Q^Y?f4znq@!(0SoM)b(n3G%ev6Hr z|076&=geO+69a_CAb%do#mE6DOPJ~ziSIW>N+qzI;my8?icuojyP|fhiXc=ViW#i)BP>dp4 zVE5nD(cVaS$R8vljfioT(*JAJNAPN!Xa^mV_#DkeO7(zD4#F)3W9f|`fQ7|*KJ8azJvww&*$x5x-4o2N>_!fOhcAqB=Vt%aP3Q#)o#$z^D!oTSA z3J=rObQ;FFw_4*P%|(|#;9hhE(m+{N)AFPTDwVX+$D)jIkAI;OQcMJumvl{3Dtc4e zN1;01wTK^m8J6NiVJuJOJnxnR7h~6!@Igy#>@scslmU=PoTwsz7B>%ynCuW_6+9|(jEA?E`g`0EH1)^dwyvtZ6v>K zi0>&AG*pXe3dyW43T+-eR@gf>@oY0vp@fxmFY#Nv0MpzqWNbN?30g+$fblNbOuGo^ zo3KDC;)xWg*Cy5mYtm}1wuDmQRjYM31$)EH1oV9++*Zo!`LdyQG>S|1Pl2aGxN2KE zpgjXOa8F`BjCPcl7O!23&7qjd2tn0=_EeO-SA_<&u3N>gpkcdc(hFu4P?1gk5ik%` zwq8|Q(cmWWX*|j~7_Ba%#f6_)&1iX%M_O#DI>Kf`?JxYTOr*f;)CJ2NnY~|h$)ob( z^~wrfVU^mO-l#8J^|uWUqs_O*hZvcZ-){^!3M6}An(Sz8r2XoR3~Jh4M#uK1-PWwv zj*Pw{_6F}Y!@`(9qzj<<)r`;!3aiJ~-0hh?dKiNUJP^|xzWT6?AYcH%hLB66L4rs- zj6STQY0$&S4E|P%(&Pwo1fNb=*ye>7>8ffmE%@=~hDZS|R~lrErtwPlV&V)EkR2d7 zgoqF5bFintlimP?wL;4Y-xgBegGYyooO}Omb4_4N>tf(}vonsYJyXuuvyPc;{|AbO zGf}KCm}zBS7G2sXXUOFxQ|_1tR7}y&W?5rsMao!8n3cPf7rhMiKn|=IP+qIB4{gVqmW$-vtj}I!o3;eiyg^m?t4qaQ|bRJ(XF5+kT&embu7@1o- zAkn^@8{Dn5Xx$gtsQnH2LamuLTW_lwO+L)*?_Jxj*VjAR$LP`P_Zx;1=N~9u1N2#| z+9enx0I&fae7&X>OAz$wpPVIY^+_B``~dJ8#>D8i*A(Yx#bFP61mx zF*ZLk9`PMpm>QbO1f=`RR-4TsrQQCB#}&?)`2sgt!?32)x&{qBWQJYHM}=Lxny{u) zZKgZh3G%g+B5)|3M%s}+f@Umo#%K|9aci9uk*FErPP<)nCnPv-sxI|>OyMC%ly0U- z5DS(5vPkRcR}McdhVYM#k=y`OW3MD8-7RgSp`J*pOZ!w%UYH2uRmLc*MJR(KKSakarN=(6yb!kSU(Oi0FM^CwHQMqBLZo`VtX?Mmdm9%J~UOS00b>I(2`bxq87ppNXc4G8YDT2SZ z825_A*Q_!YEM&HmuMVuNz|aMpIC6+)VAI;cC^0S->>&U)nj(gT%Sq^m%j}il__L6& zAnw>e@&SS{50J4j9;iX_TL%D>4SNgVU>+&gZXu19rz|_2x-%d6Ex*&5c4qxUjxc=A z|KOH|x4d?rJ(lxDT=~Fsz~wya$Oh_ums1Nn_TlMUve_ymI^u>Ec%UPUo@=tK5a$V! zsb1yby~tkAO=(QY&t_bEg41^_!uFGy&DZXnB0KcVDSeMJ$KKzt4>t;lSf)H$yL-0# zI5J@s8pHO6ZT9XO*(Jw@Gx224?n%!rfX`XLv-zV-{Lv*Vo&_@*K?(CBC?dibQa#7C zK(kQGQwA8=_b4Y9ngp5Q6j+>tdt4}#f;60a^iwm?eNEk2Ly1uic#7^H3q=ZXPe!>v zs;2#s(Aa+Vek$2$ITK4zIlKQY8P5!lA%8haZ{u}AEt!I_wDFszgUHq%FR;Cic5*tj zHyBYe_Jh*R#D37?j=o!@6`q_@;HD-mwwq7s|Gs$MbET*v{N55-+}XE_i9c$HK_wW3Q;7i^>Yi)e(;W#t4KAwrD+>;O*! zbuHA#6X{O8P>i|yt6D6igDI-28)~HItLlrYjv*f}p*~?yeMB>qIMxA0deZ>LKZ4Tw z`wKV`O&LiG)r4PmyNI5<+|5FUnmvBR#kV{CYtrYRx7691SohV z!p01N%ENQLP=q3Yba)il!f~vtGX=_T2e)nr8ekZxNJXxUBtNDa9B2gp&J~o9+c``= zxBUy5oqa1(xMP0$gm-vqVTuiu_I95GivTev4Ma?*8v$0)V0vBb`oDN8F?isP`3dI@ z<%xy8rNV7MLV!*J^bshT$hn1&ZDfW6mBJf|ngN!eI-qviUMHRSLf?WyxNb{opA{&sZsj zG>aUHlsbX%UQq1mleLIE9IX!plRi1%O9V@WpdOBRR9uWzy-{#uMO4JUHXe?@^vu#U z+FtMuB)<^WF-fVg8C{EJ5Abzz)#rYQ5_UcR!)=K6@>2QoWdbsVz6>Z#+fnTaCTN47 zuR!@I=qur1kS8KF4EH}lSJbCj{45Yl&%SZ$-g~DymDSZs=kdq4#>r!lSB2gfaspiR z@mtbbw#jIzT)v!UYWE6H?9Ophx1IxQB7aWrSy=3+#q);m08RujQd@UCK+oJjNH6^P zE9G_ZTvNtt!!nWM86PMY68X>|fi_qdyh*vh-!M*+ff9Gdn^-Lg23-KWBYc^5h|C4f zPcyj(?{XqhbdK*$>`g4;y?5MMOnh^~dGPK2EEsI&FA;(d&kd@VQU_q z!-~p*JhHQ_z4J?con(9s#GSt9a?D9G&eHHEfz!u5`o%w4s(hRO0ZtS>5rs$8VMXJiEI(X zu<@Y*7g>rWS*I(Zl_;-6kpu4~@QuW_O{DRMW)ylQAaegm-a96R3goAeRqyx#7QE0wi!c@@*8WhC2l_9foD z<`^IsJRLN3Io<>8zko+UuNTINgMx1+h&yb(;2MCOWVFr<7#MXLj@AIQyUFexJoXNx zHs5Qrz*1&Yk+jUKS8O(ykA2T_lQJj`9(K9*!n`{;7=F0fd}Yw1D^>f%~fv=}rMG=J9*OUK*kK>kqT3PV#ZxPDYzrZIbi-7excl@PbDUIDz{rtPZ#S1=y z#tY%v@iNq566zJBE*=cSp?Od>4=OKs_s(`dyIl*3CdV2KUgoRp<5+>`2M(j{v!yW$ zs6Mm=_$U6B*jh52lGBq$3IzHGy@%gejcnakuy>|ok!BW6^~+39u5iOJc? zL}h53|>O%ICXYJ4d14e0|Rt?--@;1?(- z2G=?8c_y^{RA9_;cG2#%M~9TB5Vp{2;usQA_57gSKDZXnhNp5H&E_(FN)xvOdy|-3 z--V4g#(QoC-118?xA=hNc*|rgr59pWNk9Uul?vwoWDf$U6v0U$uRIU5*$=%Lz9M@G z;&%*^fF+pQU13$tWgqZGtg0jI2xGb26ISXpcXu`>g^fQ*V0Zh1<-2`~-}Q=DL|ty* zUH7@=pxe5<>lP)$4R%3e@AvIGKaMY3T5_U+ahp2n1Tpt1lBv=Arlal(C z51?g2)z}7=B-kqSTeG!t%jWT$R;ywve!;MUwAPUG!qm(!b<{4_SC{J|S(Jq07F)xo zjAS6fY$A$D^b!s;L?+R%CgH?rfL8Y@_K|=W7s=gCYV9ldQ3*K~+W2~5>tY_{x3xZU zzy457C8z)p^$aDHP{bb`oB?D{q@2oVK}SfoS$uv>Ot;f- zbA{x;*w$IAGGQ|A@ZwaQaEHaF}vD5EMcL zQO!CJcfbd8n6TURvM-qU&W{XJ@*dsP6U0*?c6a|K4x#K)r9zXnHWDlzrNIB>kIc7bMT$Xpvtc3#S zqZK6oj;N`4s)h_=xZ;UoY%P}_IVK0d>QEW*T#CnZqZAbN$oXmFd`VMjI_uSi(G*y{ zE%18a_AYTPB&G&s{6e(m5^`Z&23j4mIC5^HjoV^f#J#`A-aXJ5I07BSX;2s9sgcr$ z0|CK{Md(=g%1AJ3WT?eRhnpatpUo8k%8a3nX^?{HPocbRz0j>5!6@~H#5ap;bN&zv zb}>sDAnrw=xu-4I#X|nMwSp5KY{4%|R=W%6P)p@G+0p&ah%N}Y-G3~0cZ%Km`r$ci z464nbKXcx$c!RN6(5u+bXZ%5^J7dR zPKo)4RLJ4Fq9B>e`ubub5+ldxSR`>+_D2;Z>X&a0<69k`n}$w6@FsCQpO$}%80a%a zNpv&VLXG`@&)2P#bOCM zr0Ae8kdmZgdNiX-78ZgqoE@|er3wcC2k8l0bCN7u9cgdW=5RuE6yyFfJBxOyL#uQP z+Fj5W*wm&$*&%ZY%qxUoXyn#MwVxDJ91vZki_1aN2%Zf>8Yv?s=tU&H9N2RlA#Ci# z&?DhSaGe16C}ZS7I!-Wcwkf%5@S<2TBe$~6hMa=8)^Gyv7;6~uFY8Q)N( z=q6KU>1(fZpHNpDW*;IsppL|=UHupKG}p@JryaAHllO z|MVSF7YrBohCE#s@Ho2U0CgYjH;a(L#%!Vo!T%D#AE{DvFG3vr)}k0#&nH2VIwUUfQ(s&i<%CJsC%K&*70|MZ~g#e3PJJW&nc4mPn*DtJCO!LyFcZQQb&uyG zG=o3BWR<2vd=U-NIH*#tq$Bq*@ld~c6qhumr~gYMn+utgYK$RRi{p!^PYEomf!Pxj19t3FEmkxw7mddtGlt*} zf#ZvfO&-$9SKC+R3SxV}6vp3(oy4ngcG6{*$r=Wb&8mOpTTkzPivjtq{ z&-`P5rrnD1RLA|Tb|%Ji_fJwYd4GMT;Qx0if1xw!&(GX9@VxEQ)!Rl3ea4!K>a$qH zRC0po)MnH_*(q?2Xmn=MC+GM%$029N_~<>NImrEq_1c8my9VM5YnhY1W0-$(++|>K zEPdvV%m_ovM}Gqboqr$g0Kd~e;}b9cq)0z}B9(U)wVgqZNr}GSmqVdHHcX3V+j}%3 zZ5Vk}&x58N!rHegD0X6Ix-}d!;A3UO;2bS+TKub~Y^lZVWS9!*h zm$%H_nC);Ll{yaU6{LlJhUMA`1A(83EKU4EN904w(7M5jfh)%Y#hX$z-Kv#e7q~Hn~OoXv5?2kGfow0WGo@E@=fqgZTZF$Ypf44{|-Xt>+3SeaEbTyVAGp+`%14GO<(Q_ z&@wh~pF>)s-ROGL>0ho^)6t%6IFhb0oC{fqv{ob6&^|4h?zt}47XP^<6=}2XV&KIR zU|u&MK%f|iJ?54B!yYi4TWg%2*_ac`)1OSr(W;9 z_0785ZIMoUF#qnn!mVCheNwtpV%WAXAg9o_4GcKq{g91Vav;AFWP!vuw3u)R*-<+S zVe5{`v(ZR;I*Awi$Rn|Zb4NChoZFc`75(qgQ#(_+@5#P3!q-on_r(%QxP& zxVShOKRJa#gIR3qWPH-PZ;?2C9*g(MwTygd*2~h^JIz`-44-$~7^v_9H%|a4nRRJl zQS)dbA!69l0d2Mx6kA&76LpV|%PUR%lSZgCS`kX12%0{f9?6$os9?6{8;7W1&x)?R zUKgnpvk`wL{>$E}BjsMh4*FegD_l%?6LDhNya8(}5^^bDBAE{d-68ZQ^1{`M*)VFo z6^JU={bcB9c%eow)Dp3PSGnCT6$?hv`TY3Qet*F3e@-NP0kSLkb5`hIr86pQPiCw{ zIFk;i!<;&puEis6Un&*PK*r#5$3hmRad`uTRiV%ZVu@fpG1Dg04vXznJmGPnrYR2a zhCLqT3Py1BNFDz&ExTt(C>|vBG!ecE?ALL%rkAzT#6+t9hH7Ga(=8qd*^4RG3(6mI?jo8rE&5# zbIw8GxuVlXPI)op?w!vIWedEXgOj`js{)Z~x=@s>v*pyY*v5t!MI!!mH5&~I8LvrO zx8e$=WN7sp8W+A$>AqucMR-TIa^IGAvP+~B5V)Xu!C~Ch7JI$npxGVRl>{UQ5vaV3 ztVPpkx58>7`i%4|z24HHmQ9tQQUZ9AMxfTk*(!a)0zEAYeO>rsb?}P}jBZoZor7Jq ze&q_x%PYaG9a`?lSnSa6v%wYK?`~g*!jeF-FB`YT;V%b;(z6`7Ux= z+@0^XtD-brP1hpfiS+oKFIPEO_k{|zn|34$9ph=~4g7rZSS&tOfvI-#peuXR2kCOo zdT+|OJofn5`l~6Y5Jl`Srq&nnglJc4ccH7Dm%@C3K^dQj1YzQCHmj;bZ?x3>PB)i$ z*}Z9Ie~f7PMx=^Bn8>*!#E9lovTHJ08;_=CS510YH2SJ5Vw;)G6Na5PHaQu~B;xx% ze#=(N(-od0O;4YPBkM5cbVi~?h63qhtt6X@>2%v zc#JVAgN%LQ2GG2=TAtqznT7?1q8S6ntzgs0xg$_zmN(5f)?aQvx@`u^FrJ5LaBJu_ zOy<{2Fwf1?28UPXC&uc{#X3PBt=^|Q^~xEG6RBDyp- z3{z)ZW+)-S5ql@8Lj{KqTp82W>iP#DAb1<>HtpwlQ{mxVU;idA$g*!^&yTLF{`$Y= zjY_cd-u6e?ayhd$$a*UbK@I5@qwA_HJGb-(t;)z)l?c>*9wDPPNmm(NZ^eehy$P1( z=6f5HCYJTwv1N%E4)2ft+}qx^`uz?4=xuH7Y;A3C!>)S+bkzE~Meb+*v$_7^`MahjGl#~<4`n8&?wUW`&t>1$TIzN?58T2`ru>9WHeu*O`QL9$-Pucf`W4aW{7HqjWa2?Q}okt!1yW}^xJ zfc`qJ7`jGg!W*JpwA!f8Z7vgigOJO=RwiYgXILtLz}m6s4}0CgC^XoQrPD!!)O>8R zki|~#Logh3(p7!0*PpQK^Vz6tqo*>-dM+IfxOe|SPq2Bt9h{GxY%LIul4d;Y3r6oR zohiE6)eZ)t;dm$oJkf>73G+2q#EPdE@FieianWx`mYetlFa9k2r{gw&|mTQ&i@A|HcPS}?_ zefn4SqOc66OTDHdCa21Dx%@`S1W2yt*YCl(`qY&fSJK}@$g#+D-GhQ8XS{Oj!uKk* z)fH(%gGfNW9?ae-w+hMs^33wY(jwLJzG_<=GVMrcBUoyb^PT2g=is@;rL&~)d|I#9 z+@xz@KllVb?J8H{?hN7z>6B!E&2CJAdJs`{spaO&&$&ZB*PC5{r@511%p4RY`| z8+I4v0+mmbZi2NJgg#y{Jb)P7aF~&`yuuAImRemKL_V3GvA(9QPW8-$ik!SdRqPKx zI+2;HJ^$fzuk%CjUcNNRzK=fI$yy7^lWD77Jze^xkMW%y`-s1Irunz$a>01@zWj$D zT{sdgJ^$h3AuFF*PG$@7h~EFPN0(1{%dsc@)~WivALZNmqX@XVJ+agLF}ih{`=B>L zR>rz%%yCk^A|(nTizWeU#uc_U`dgFa0evk3?%*;1=)PV9%xt}lxVO6{i>U&Fmw9>T z(`(b<+R~Ss8Zq$lD}fbwS%KUv7G$lwxv!>D?;I&pg%o1+=KWp%EjO2I_g|~8kfF6+I&8RfWGr5r{d{1ZKgid-vE=(n6lLHKKvNB8BkoSsiZ;c#dt z6p1{F5v23qDphjAR;Ej(H&qIS3eh1lsYXJ(TXL9M4Mj*~((a!wGsjgcQ*V8nRVkd~ zxHG3H(qEyC{`%(DO{8z>EB{IT4)RKfm9hqIYOEov9uOUbL&#r6*F}WPB4)ZyxGFAf zMHWjkxYPwPx3=bai=SJg?ZtX3LT{_7<~?@Aa$y$@CeKGaxmZ4EMe_eXcImC(eQ&j- zw_gb5f@z*}k}O^o+<|0xE|d+WdDc?dKzy>`K@j}igl`V>WN2ZLu<@|pJAcUeJ!iSp z@-{q8Un`P#x!mEm_?5R9Y57`Sb|C=fTPc4jt&^jQO;hyTs~Ra(FE?kx!ALV7Mc-?+0Jo_k;c4t4<;xj_h6G zL~`E`WSmL68{c(K+uMfL4FFEMzQJ&tN(V=f6+$*?8$1OVVm4uWhL@4I@(4 z?zIc{6?+4VEYW$QeiPHwu`FG;l=xX}fr90Rj7EEjYeJjmhXo05=rSf@eV)zDD;-_H zEn)qqZ}3-uy)rrA@$g415e+*2GGRR zfztlky>rE=OX8f+4>4H?`%~R1kgh=PU<1M<_^~(m6CBu0XWQg#j&5@mYY|8Rg)WIM zg9d4aiSXY^*I;}wKk_ApDsg;EuVHY||KX1dA4sJl@0pASC+gwI{9Ub3B2Y{vLn-SU z#U(qIn7>o@6wrxdjfgAW1`V?TT$PX`Ek3roVHtfm%n9p9hkfqYx-ba z6Th3(zUVokA7n=eLKf4^)MQ2<_MstIMq$DqkbIOsQ~u1xGtWG2>{ss`n6Wls^l}W| zyZygc`pmz5`UPXV>YJCnxuj3~N#>X=dLS_VEJXTrTe>b4E(--~Nx#=ypQsRK(>vC@ z()_Ut_Zm)!&1Ik@&V2c;H{X8cLijcB zfBzTW|9q_M7Wo~EEYa5LhSl## zp6O2C+EA;+v|H=FD{Vk)in|ASx+;BiFn@UHS298|f&pBTVTyrD!^ENctZDPTFb1mL zuhZpsZv-Q&qIx~v*}V}7-dK$&!U%r49SQF4tVM#`e7lW$wyH2^4(?faO9OgjI(O^# zTe4&@JuwwQ_~p38r~0$UE?&7s~dc7NCao+n+ z(jvqEUiB6JtkL~ybM(`o-^sbd%vw`OQy8m+^;Mj`0-x5juM%yClN%DRR-M#y6663I z8&TgFBqro2--Oy;dhpE;E~y9q?L%8cv!DC)?XHOY_Z4l3b zgw5*JSKGxL0Cc8AHpNmVWf7;aor>oS=J~AboGN|L>kCEVi9|d?#z#F*a9(o_EPw>B z$aF*Srn8*-{2ElR7u3$qPH*?xMqC|Cdn4f^+D>9KU zj;E1O#nz$wp5&@9jJ9p+x(BiycJKjkJ1cU7NpXmocx7?nAlP*qdLp|2-ZNc+XrbQK z0Yx}i0Y)Q??AtQ{T3z{ufnxPa83N?W{=3oH`ES<~akp#AWC1Y+i z%~uf6XdKxVv4xnW5}8uaUkm)KiQRyEQPeEG3a_l z$I+L?nJY^=RviLE)zh9ckDT#j$D4(9cv8oI=(MMFTgjtN9yodOfTx}-Hg=SKF1w8cIMc?v~*6k{H8cWVk5`VKd*rqDg;H~S=jVd5yUxvZu4nEd?O|k2ncp1dwXrmF zuy$&8HOZeuM-B3H@`Y$&45dXxGb>Fm?%~DmuPj?4bH6l(Gmt+fY5tH^>|}leBELdn zcQa8aB<%JYh*Lo-y)=f1q5Hy1#JoI@e#1w>In~8+K^3E<40@MD;tb|;iLi@f2ZXe` z`tGId!w+Ydo(g)fl3ff&x=()Sb}^Vuv8>M>xIL=?9WG^G``YYMHyCNQxQSYVMUujs!CT1_qH)63ydVAl_bei3-1B$i{`Rw4g zZ}Ci&?8cnuLAx~Jneoj1nN_{5YE3`#-qHOX?}3Zck4(!~r;YDpZ(Vfj8Fox?1Muo( zor&qj*7noauTLF1bkCtfFKlgnYr8G)?tvAI=V7h6_VIfFEN8W=UsF6Tr; zk>$n~KK&&XTMo0F}a7u$A{zG)KA0dMIG`7Jwn*5m7$+8NujA=QM z0Oh149rZK2poZ#(Yj!%G$#Tx?O(eXT+PPXr-gtB6Nl!UZ-24SEXi!}o>FdNqKNf!Wx@9>pB9b1XdxM%CfHG%6!nylgmUgzZf8CvP`)wQAdfV<}dxjrht&# zgXWa+UAQ1G6yD53&oU3~`MR~Xv8QXicS7*hWGNWmc1O^9qJ;8LDcZ4=c8@rL&qN~TBnKk7(P38OLS-+nfVb8(kHyXiw=@8x{_Zt4mfTTCfj8Q7V66!vfB_6F0R4*k5}s?5J8<8% z(p{Jnq_=RX?E1+0|7UNxTK!V5-JBoMbx{I$Z){$^+(ydaw1{Q+-$W*hjClGbv*N(e zgOrA;ie?8&Mc|_lvD4suJJ7O+suEcX-&5@D{&q5NC0>8ueH#Dced7l@;qK8tzoweZ z_9M8Tdy2asD&g_p0jjYo2lF-@`w>8TO-8P}pAH3u?E zxfffcocXb0FR{6v%7@h7-Tel<34_ zX)ZON=Gpn_4|MG7H&%DQHHyYnEB&iO?8BQ+^q>8NG`U$bt|IIBnDx=_h8w4 ze6v<`rSFiSEY%ms#4D(NEQ<-z7=sQ~d8brRJbNO*VF}`$u@HRRPg>O;dW_X?wkohb&E4FIUaVFxvoiMP=K6DUJzduSsBL)(#s~V1 zj;NDVRV>z;*1)fgLt-uiTPpU?Zp#g>m+$tDQDej)5lcjBnD*3dnRt?Dqh$OJ^2b*0 zuvmlPfk*#=GG6kxNO%$te(}%!2r@AJCW^ju=3w?ETa8SO;QIf%heGlVfVh6#R(O3P)AOF7wzteNqRjfVO#u`EzMFazeYqH=0-aSDS%|Xn^%Y>BrC2c?! z9cFplwMc97Am@hqeV^|QzD)QR!WmwNZ=dUWCfv)*?g>vkStuxf~HrA!rV3H0Lm-^$>6E9 z0{dd<+V-lD4OR20%L9`-#tHpcg{_&D!Mf48hJ~l!m$?~in5bRH008TxUZ#Kl2L0Pb z&K2wfgoujA1d)<0bw-upreJ%Lx3IDIlzQc_7#6E_Z}5WOZN+_ug26+9sO9!w2zu+@D$iSgA?@tQA8U*# z;U8{LkIP~%*->%xQlEAl@#`Jb(T#rRUtirE57?j&69VYZ0=rvdSyDJzH~7& zy`nD4FHX#?1nrqrB5hzy=|pPA4*olS+(olY^~X>WxaKb&CVJneig~%Ky3+s z*vqnvV*`@_TF^Lt^j;DzsI9Zje)FsdXqu?$zdqc2aCh^;|E+)VA`fvWj>=FS8I0>I z7cZ{x)YsJZp$*p39J;kwIwYqJ`Yr3x3B#pgnn~nPE=VX|JaGG?g+sR$GWGuy2zM|6@Axry{F1a_=SI7IRU$k1V?8u-V@z9Tn02tqB;Aa5 zx`VgXmGPylnWtv1!VTI}J=t0&$d^EwF|@b#71?kq&PUnBMkDi>KA%u!iL?y!qZAsL zp>#AnFDCwGo(FSkBzokBOR># zaCKEYdgk=z9J)+`GtvGG7IP^JLW)GHCV7JN-~U53#z}c>NIt*8{OrgoPM*P0r;gT* z27W*8&+$5<2qCy|$1NsrnaG(?uoa2mf;86)MXH@@65CGFCowFtZ^h5l1l&j_uO<25;>#8MS_Is>nk}X_OTm0WSP5RQgiS2J z8}fs2*@{Ql7Y+F1*+}S59)HTi4Ts&QR@2_d(V*{5J{3)|jVyRP2Oju%$P-bMuT4d2 zHSDAjA{pZWf6PTV3!E_JaG02zU{KkKR5<7&YQ^VP5&`3R>hV7bMIZG0KK{UgQ06FS zOGeqGBIjM12Tpl2$@@7YX4hJcfX6-i#mw00L4Ej{aRKtlLO^5qTau<((Dh7vZ0O>s z{ati_P-0rO9em^qb4X+GD}FyXlW4oJN1iXoVp-cxdu-d2wwc0W<@0x+FGu5}JLA#v z`CqlOSvwexTJfkSlkr63Ry3^6@7odNAhl7*<5X;t@UuUnt~5>5*OOP`+?q z>CEkCO8%(75iFG3vnsmXM>+6;KuCm^frh0^or#q_zV7 zuXNA){K<%~BNgpGd*@etKFdF)5rX4z6Mg04IlnKG@^$=?l;3x@`xRfxXZfxh2)~S3 zd^U`?Q(O~mnUzHR@RGDuB#1J7Ou}#KJHbc+9yZ(KOBSHcBpKWIqDNC|UG^-F^R1R; zUb@b@@o^)|sH{$yCX=92pM7}ui(h>B;XnT4hb!+^3H77q_-V}tw6Z1lbGBN=&ebDBt=B!!b>5^{-Z$&8-N{Lvwbq$&)M6mF&aEg~y z_-H7<`@giRh+Yt}ydQbfn?B;TBFvT(;Zv8QScRchjb1txiAzr8_V9kBzUXbT)@WNW z1<>LQZNjv>jJbiP7}H@)G;o^=+7y`u4P$4gKfDi9?`ZD2UTiU*4+0&TE}VNn3TB*2 z%eLwsohx)aUmg!p{7}hytYWqQ{Jn1xaX3(Pg9) z?ORHQveBY=_-GQ5(P)>4G*|dT!!_h5jRf{Xv*$C*hn7yaE+wj`RbP@h3{e9tH6}>u zcR#XmTesGH;=RWmInXIbOKZa4xg_pENooyK7QL7;d|s(Ur>luetSG4K zkyIV2oY#Qp_zDISbfm3L6wpTUnluBOOMV~_U=@t4Vy+S38oK{>ozp>mcIyke=}%%w z#Cf4lj>}iu;r1?jac5_%uP?E?y6?&o$A{U>Cox7?Cz`%3Pe~(?!X%iWfRei$K|gC zp7@MCZq@9H9jVxr!JHtmY{I$!f zDL!!PM(22uHOPa6-_-HO{&X!Zl#^I0@L%D$7d|YRWC@EGh=2}3USRE}gD$GE7gv?N z`t-FkU--hAccinijL+luhT}C=&rL-A6UpT1iRtqmwegwVKU4nS`Rez7|2vAgOg5Fb zeO{FaXR8pmC3DSmtoQ@bQXU(qw8u5|5Tp7K*#hnvdj!wa(__z${qWc)spLFPPc3UpV5ioftZFe|Z&eCHoDLo8Yj$?=dBM!b`-bqu(21|(al{0qiB_w?o_ zvWk5B_1(>(Mt`p{^xbvMtX03SJ_LW0=)Cy)vt4ht>sMnR{NM+7{|6iO<1gNGPw^Lj z@gAd}yokR2n2uKLax{xSW9y*E7hMb=j)jsA3T82@wGu}-$CN*iXM_goQomH{U&3tU zjYYJ)fi>EN8K)ZbvESea->8G2)a8fHpMOY&gQ*nsSRBUT!BD_T#?L==*`NuZHX%^l zfyw9in6?cGPuH+~x_Dxj5j&v$s!E1c;@Fdg!jtcQvJkLSuUM{3M4en&IeBs=?v31{ zOk)4rrp_)8>_-x@g1>{3IR;#((va8OQeGEU5+*4p?yswtN>d|6r>c0pyI;;<`QXWg z3z>5N=N-?N8Z$MrHK-}7ONAf2y?1{mpT4kg`-8jBvli(!{N{2E+102YW7opt47{3| zpE`5OX%4uAoFo@*sK{4sm8h!}BT_8kr*jXi{a;>op5l-+ty9A_xQC zoX1b^iiSKshDNm!u2x5!r(=DL7bHiEpbds1nP?ys@W5lp`c`bbP?afB%RFM6h7-vs zgv>qzSx)2#5orcP6pcg_M)92WgaJX9r4PzzV?#4e$cxR+{tjY{4wWPBiHLW-Y3B!P z;x+X??L!$;O_UPO&fQ9TbXn$vN<{P?)&rI?Kb8;?u{Giy`&}?qRK8=qpnIimO@yl6 z@nj^ag1y_k?v=?*Jyi8%ewjqvtqXb-S!&HJR`M^n7#Y)ZlX@ z@iQDuK5y9`6WNc-*w*o%5n4xQ7>Dyf6c+Je>QRn62jT;sYQ3}5*|>URi$8_ku48R) z-@sTUHoWz9dd7%-TzpzH#FJhW?rC8g8#1UELOl}(&vGrautT)^kiAPxK)O0~ElJoM zwX=uVcp0}E3wfnvAFcKlN|o75Zc#;|(Yt5_48Vuo-iyI(C=rX+65*KZLcs5Khkd_g zj@i$CBJ5So(>W6T=1w8-NB~1F4OV&bNQ{TmKJ#-FLqK-Vcun z4(8RhyIA@(3PxB`HB;(dD-QuW!*1~x-26knu)7>ddVR54m4)43@xVLog%C#C=nnJp zRnsZ{qIRG5`|ohYL&<71mI&Lyi-82(HKwTtL>o@K8@t20V|VbYA{kFI*_;m(tlTF?IXvG?COzqhB4-aZEOW zBh7THSTC3B#a6m`G|=mX3SX*8O$NVxNQ5@A{D_2FdPg7qw6RYQ-stm(@t8d9HoT7{xY-R1hK zKNRwR^$%AQ0MwvKz+S`_`^EobtT= zt6zOP%M8Z*O=#?uFZ56JPK}pIEK@t#+6=u_vOw)I@5d zZH2;WeJvF5zwMVM*28M;%o)k7wx+`EJEqsxqCvSWSKs$tO<58QJoR;nRMB^J-$Rh^!D`n&JWOwHvQCHwX#pPK!>bTB=0 zcsUg)-+Ll#T`tATXYRkZ6f0l2^H|xNdG}Oi`gPB|y_KAL%lg`Murjjl8SdzDlcl&Z zfKp=T*5glT3k7va2#1WqmSkHWSr-TMzxr%Eek2&I*YB(s?fLA^@KYf>Z_n;ao?(av z-er!pe{*>3-Y?auJuWdx`_UI>f^!FlW5{5n1ZOvlToMqNs3vK+n&@BjK3?Q4-bExx zG&bxO2nVCksn=Ak>bzymS3g*VohcIxr=v&+`-jsVcl71a?RPo{Jc*DMOI5|lX2#XF zwgcev-(%`9cD6y@K14LpC`~FY!B}91($*8n!u7&7h|MY41Ryl*S20&eg2}zNs&BrQ zV_pPN@xlvx=nCgOMbUlC*u#XoUuKrkQGOF}qa~OZK^$Ud5+jrv8-ZsaJPb$z^O4Y6 zlM`{v%rigCJcAEG5JAQOj2GH1>EDmF z&rMICd*EEVef|$FTu?vUK7YULxc_{6_eu3*rfu<8^cj<4R}qZDh)h|N*LnO6jubr7$sV?C*-7Ak__qeG%gqq2UhRa1S0(-W@ z21eO#U68M>VRznPFcDpq<_3+eO3wQ=esx#Ru zepY<3!>+gOUa43tb!-dSd;I}V`0Seh(gUuwwpJuDXR_=g-(16=pN5(L(Xls-y@_6Z zi_*BM8YzP%CJM(LMqw$DEgl$0Fc>u&BeZF6*(+O(4@|cnX-yw!a}(Tw+{&IE*$PFj zK3MbLWE0`JN8Yrp~o>^XX0A=xW6455-oa z-iNk~&ZXAue&23yjLO=Ay?qwG6?}dT-Oy%Lpvlc>81UFpj==z4BwrGd6lm$%J)*rY zYa{wQad=qxfx)1_>&;Mq?{BR->%o`lcQeFW_ZS8TF+5|$E31LP%%$*$l4l12gi_2A zLP7e+<+{k%Suta_)jFGKV*lZ{>M7G ziAK*Jw^=~@u@rAqpX#D$kw{~y;j-Kdp|ackBXK+WL)oD9VHZ1laoaAF*}*E?b{rwh z8MAAHNL6iKVeYKSOe(^^Ajie;;_jTC+U-xB?YQ&b0HL!fx#QvfT)fcfTv!bH1IhgE zH7eTp6~3vS)D~^6pE5JKeI$KoV&YIb z;;$b$cckuDTWkFzPu&@d-TBm!zVK5mH(nYmcf#RLIhjbp7hO)V4(n^1SZ{;>d$q_v zgZBH6;g_NP49G8I-vZ<}xL5Aa;Ml9;)49oVCQ{fz60Oh_WFj1x6U6Hc1pwoH1m3f8 zur&)q)4@F3soP$tWHYn*$j!1@r!pHkcrHI{bt~Y5kFkn$t=T*fUnz&tw?r=~4(vM2 zHiI@7u5B7$PcgDGbtzI<(LThXv;y4gdR&w5n5;kk5;N92h?}JzaeDCxD z=6_Q!sJ4K$7V&WFVhc77wLyeip6bTo__0?1@Oc)+W0&pocKYmnw@uA8`|WIocn|cQ zvHrwjWN9h&U>C9O=zPClu0tT)Jdqe5Pu4r_ZJNf^k!VpaFa(IP{WEX~1S?fI#<)gP#B)`JP=MiP{OFzP}%hulok zGhpj1&3K{)&g-K}b*?N|-tv~pGI+_9ClF};@-Mdn0S{gWlO|$kMZR4Dx90{O;a*?Y zUTf(O%rDr%uR7Nv{@YwDE!T2f;&LU3n$cOA4y|=_sr9SQ+2t~c==g8`=6E#W*}Ig! z#`=1sa;;+Gmd$m9RfU|JM&3u}Ak=p_@9SuvtwEuOrB7{xp4m2K9u$3jW8fn(IZsR; zd9ikwg_3|hkge((Y>Yr#?bpkuf3UFuH`JRe!;~6VIW9r?pt~wicI)i2&r*p;$8(A`>QWRDbsF*DlYUJv+Dj+Ph~zSIFeL zOFRpOZZ5OL^Ya0Z#}&jM7!E|jBmmmuZd*e>L6=Nhwr)*ibxKP4mc2NNw_84M4L@~n zA)QRDOzy4~?jagKSF*E7eBPN-Zm|{US?A(|_5Qm0Ci0FKA1+Y?*u#;gh-kr8B2wke zx`Fy;Z@u>{FwrNw_bK?n63ApdGy?ZKQiUMaXf3(P7<5D+Bfp}AiuW}!Q{zUBay z#l9;zvc(PLSmJfSV^I%~)zp|24X{jG5jqD|=jt|0GrjFegB{~o>7UxqDd<}wnvy*- zynv8nJBUb-vIE~6Id(M9($G&PE-)cTl-Gt9UE!kTy^g7q35@s7Q;u2JW!goU?kHsD z4s0XNJ3bP&wyD82eGoRAq-aLKm!P{gPyP3*$|P%(|fVU6nJ$w39>4%o*%u$5{O8E3CvZ&g<&Q}0QR z8eG@StCWTI(&doy%6q9tc^!SqadHn%c`2T*t3j!Cft~kT+R;e0>SF6^hDn2xqr*t~ z(9(Og?Qe$MAR_etUuFlM7%4)sb$+gx2+JqKj@ydHce-p+|vupBv7 z5V5)k>@7SHwFm_dHV*wwYnilMV(D1i5quie4u7#w@$;UjRr%}D{x`6=2x`Pu*RBfj z4nphYWgHxGal-?0gEdcB`decr>iQT+eypGP7;tB`V5t%p3l|d28gYNHC1yv&eTlXf zbb~yHazFS;13*wu`Mv*j^>ZxVz6r5L+4hj*`eM~uxwyLneGd;t*FgRk<1O)^YQz2E zH+YhPP+yY3tfIV;va(V9!OPVi!Itv3Y$Djq*0d|77F{K&b(K*mTrAhml#- ztu@BiQE*pM20{7V!Zv};P8!mQAQPSGmCB~gbL%6P3+ZZFa{y6iRsA36wCDU)Ay_Vk z!r@FfEZY1Q{mw+ROISOV$XVK}*$gv7CW{i*kpnYfJsxzuN!DYL`ox~ZV7UY3WA z+OY`wxVm|H0K@N8zkH40`E7?1fieElZ(w^C9=sl2NHCn9$N)I%pG$p3bI9x0iUNvg!QFc==qJ z$M^$xK6I%Bze;%W*s{wLD|^fSDRHH!2yV zqh62dxKauJQtuxR|7@sNIa#_?ElOgQ_(Seg!W&3M@Q23Z8F_-|3og25GpX+}GCy5! zAjgZo9vt`%WFpn01qhD#Acyhw?!oXuUDxgw!EvwB9(wp14`ip$XQmGML|Bk!r(cIv zOa?fcmjtj=)W;95t?i>u4q*D+2=ZVgjBem&dU5j1VzIbLXoh|%ne=p5%!^vx`$i7f zGe*_+Nl*^=bMoB9{}MV4e8S2ono8pXcYCi=z3_GGW^J9Wy}?oE~#N~MKzAFG+u zADrv4+Wp1XV$egNZvOXwGzZCdpriOh z3U~fS-pa0hAGJ)b7iStp>?z+Quk>e_L6~`oPh?gEw9)e8(7|w(Wg6@@)v-US{Nekl z(F)H)wFx4=aB(KG;87XjaU0r4?lI^Ox+wK5>DY!%L<#5x7jm|8+rG|9ktmv9! zUW-6TBSOI_8P*z9R;x>t60bcyQ<61KPni;9&U5VIMLd*nN7$9V7vXhG%uB4 zppbz52*Sv_t>#9hkS!JxKB62Fp=7EUkAVAgxxKb|iNuA{H4*gqe2GFaTOb_=$xM9V z0#Cq+%sI)Ur|(XBQ{mE*RgXt=@k%iikB5qtcrF^RTT7*I%A36V^wDIR^cRx%PkDVV z&!BG_T~j2XF|j-_-$>15e85^3QTCRxIwQLYcnN@+rs)t31oQSU&5T#oSap2nVDq!h zgEy|cG-d>>>UgIbMhPE(aVZ^-rCZ0r0{qy2}?zTQ#;j!XM%d#OEe|`Xu6!K zoYsW!(1|w@0v<6%5bQ`ey^AoAc(yQkxRwifdd69IHkna9mz$ua-0@IwkWpqg_r|07 z305U11&p02L_#7~;o!S3F_VK#o&2of*iXBQXG(5-e)m_N?ByrSdTiDl!Gw${QG7?R zg<>m&gi&fE9m@YIYlWL@dWaMp6N^pz$bq~Yx>ijZGA2~m9#=1T4!=_z8@m+y#g zAM^Ng$x^Xp&%BL9Hk0B%C@R-PySX$OtW_to=c-moZG=)sCQF$_`nCVEl1%yIF;}hQ zUZ_Sx{#3GZI#5gmV?S_u<`iW>w&2=Q24M~xli)6&e~uIWaswJD6IjuJ$$@9e~s@q|zCM^t2oGiFDclSb6J_ z)#{3pE|~IpR#vTn=1|wmo5toD8OZ3h!ZgCVt}x@Yma{|0iu0zm*hJKEKCvo`KNSxV zFA}kXk9qix4>D0@SJdU>iMysX+fDef%R zm9(q0kMPa+>7kmJ8UKWKzm2l0X%sT!x4cI(1YW;yc#U)nkxEtzD}}14k>a>QXfp)k zMjU!+3>ZQv6iwS(4&SH9s?K$h>2Gya77H z-cUX6CujIz(sH7#zh=x$j&B($l^fmTfy5jke@ZM$NO7IsAHVM-)-PS0{+|B8gw)gD zS4CS!B3!L5Th(Prb<0DBhVJKh88w@}1`9Aikg#Mbtm~P`#KUFl4BOTMqc~1SpffXU zWxxV4fXuXAP@D3VB7_EaMs3i>=s9lW#z&qW}L6MkAqW_3BQQchYP4WX-qUVM9J zXUF+&i|@puDpa)G0$zEPSZ11me-jRg=CaW1gICsYAOT3g=$4Bgjas2-eyR;{+wBR2 zll@}I2b{Y-m5+w3=+SsiZ4^t%V~KpOG;X!>Zcl8atTB%}-?GL_xqRYSvSj4-9el&W zyCQrC_-z|VUueG4F=Y%1w3MD|Y3)L-U(<*jz3KF!Il+ETthU%ah7&Au!%h0M@VTeQ zY7)Bxf$P3A*N`YgsmIyPQh(#>Rk6_OjS8>RC88I5=~aBg^p!oNx5k3@ULX-R^-LWK zu8Nxh!yt+>wQ1a~(yz1KY!@3HGxbj8cIM-@yu~$F7qzpw7BDI=9x*F9!2!7Y!ZpUT85OGFa^1G6cO-0nn>qo`^2<~<(RW%P$cNV=8S__wufT67b~`Y}e@I5gK~{%@8u6k|jzQ1Vn; z1Ck=xgodG?yI&v13R+M%^|wa3obW)&pIq0h<%~+M8fSKeog(Iy| zQS}^+i4iA-h*8KxLk`!MAHBGlWz!`$2f`;2 zu!M3~T-gbf?N+nf?7|cKiKGgnr!#({q=YRg5b`sKup^Mm(W5wnd~%b>9BLRj z8EOdOOB@^bV`$#Z{?X zB+t2DpMkTA#>CN{Am{TaD;-t-9Qslu69|K+bbF)FLdEzoCkpxGKI5K{;@(+YgMQMJ zhi{u*I2cG@w@CFMFW@Hgy8TYx29e$4FnY@>Ay##4vnJ#SmyAUoZGt0_jYNZI+J z`TLoY4qSS$Q40G*t|+2UJQZ0(7YH^N` zP1gKjI0^AT04X$h3FN%8o_S_ti*;U8_--sT4t)1)X|lEyszlGKv8StOoX$kI`|a9+ zw;#whE5RwkL$pqVZnDm`G|vQ{SYf7NmV`yAr~UAdc#3?qd5x%4r)+|+%3#H-%e*0G z1`$LAN+$AxXyz=j*v2H^vaGu5)Bi|I4gC&Wjln?nZ_oU|%%ze$=(c7up5OjQ(AsF` zl6-2`v(tHQCQx$ojpY{nl%DK|_>}!P3T<_jIUVDK@t3~BYfoo}g*fGw5AAN(4t~tY zGSkb(-0KbX+v*c&d*w0W`qL}SAd*ss3B}8MW-(z6TnYJ9~!s0063x@bF&^l>;c zp7*tjc)dbi^}}$Z5VW62Oin}tUO--@&rdazo_HjmsK*J(3nvdf`u0Z;9ePx45bftK zv@2FIw#dAF(J^v$Z~Q< z3A*a+G^aZz-HnW^&CWsWAeLI zNrwg0h0|3sQl`7kojh~qOc$9KS1mVm$GugZ9*OmBiZ$|E;!FL!sJ|)krU8Xs2>%AB&!j&1+md<=e{gtS}Ku`#?C$v zNVKt?&~tv^^DiKqFesKg)r8O6IMMutRAKUDW4mc5zCTlpW};KX8?`1EkuDnUOs@LT zyp>h&y)zt0eR$%?gq8dn+u7}OF`Ilc7>flTe9&wQjZ~_ce`_g|gK|a)^Jp6rCnh*} zgJdE{HFL1I81}(1Bq`$wi4Z9(2oz0KgOAnKzk^8(vgIEYE3Xkn?9#%~h0=Pl(VzU! z;<{ZmX76o{S=XD6=5#4{)*Aw|ZtV20Y5hz5@P><4xG!~X79-0I@a#@RA^r}*N=S7{ z&1I4Aus))?z=OhYmNg7cl;#S;4vcGD%aX#07?Mv}d@Qy;&>FAQ)A4|>9Zdv40R3#9heN&m5{~f{kgW1%4K5BXOTarLoSax7A!`8-0;<3zgho%mk zuNPCcJzkv1O&xkp_LpC_d-odrgq-T29q?LFd6!S;E<2GWw3{BI31%g+Wr-D^s&5S~ zO!O4yqSkQV5K5`O&}x11dxD`*=$%uCE+1~Se&+dLsFkhTEtPoTg=p{@ayOhL@)j~dQ_FW+;M{fMaWuU|a8 zcKBj(p?9vgP~8150M|+P{(I)-A4F0qKK+z@N~KPloukGji6!4T{`%PTbnNxV>zsh| z^yCE2<1YCUTm z@cUQ32I&vD2E1&q`WkD-#G|kA$^NUkMo(Yk>wk%B*uA~`_e8mxh|qp2&YDQby2 z87;fmxPU`CNN~^@)Xj#R4H(86l-4^`&zSs%I?-5MsdxH^WS$bcKUprff9~gYKU@6p zFRAyoi)!m1|D2jEe&m-r5(p^rkl=T>nDHaXr1GmSD~9p$^QN|7-O%k_ljeq=P}+jaXq(-2^r;QjdWoy3gXt72yHybeEiz`otL19B z2{LK6lEl^HEoveAulR+cxe4AvS+jT4y@C6W9C>8U=UIN>;NLmen{77cPAycXeQk2Y z`lc)8?he{cJ`56m99-{0|_dDG#84=j6kKQ!%cvn<8Ra@4WP!l}83dIu}b^5x6M zx2k?a^{5Fy{#9*hXLZ(HP&kA}Eysd_>fHd>;PqGsfMl0E2cA3d-0qKV48jInUUqvx za(i3-1JAicX*T^_a4*7xKs<@8SjL^l8g(-dg6Q32Bdh=jQ<{#Jj3h!9auWlz&|SbkikF7{59$* z1_?dF+(46@lujyh#KW0lDXs35?Pnb;{p_WQcBB1XP=+7FK~&7_elcAlmEoP~l4I+C z1La*9k(kJk3DfuEjdxT>j6lF^mRDP2s zBqFqc;v-`UW)UaD1Q(NcICn&V55hO8R3WPoJAj?rCB!R-Qd05@uzI-tl4)|h%Ldnz)C46=| zSjN>>w!($;2Lh2uG7@=XaUve^mD`o6NYWSb1OuT|KILkcW=k0G+=ZZ@AIHNk6;4KK zrD!0Ziv}`f<*Mi3ql%GanB8*kMh1{RDvbR)v%5yoI5A3fY0f?JAKb&*f^wY1y@PuK zqAf8Y`PB8z-5Yu=baWeR46wGCz(ktFHObUy(z-15dZsZ@?+2OYj0|b~_|oGh>D6Mb zM*WUc)AA|?Zk>e(B^itt(jzXP${mK85J z{n})?k~mPrR`dg%`ic}+Z!C7coyy0<2i*(N)4$O9eEc8Rem<4=HfMW^oK`dJbZY34S)n74a{CfU0X^j^-Xm$BIC*EO4!h7*`NN z)5u3E`+4g7pG4jxLVW5qp2(XzB%8@*^0#eSk{B(SPpeNDM|T!Nk^cOAe>?CmiFV)8 zYqT@>J4%bUkv zhd0hU%a_u}m`fO6pM|$G#1&^i$sFgJ0uGTN`$2dDcBJg`QBm)is({jy6rsylXARcLRh#%hnTI(BGMb?Q@1l}f~?^H4G%_hZG6 zedgR*pnu0^7LF*_(bpZR)$f@6*v~dGMf)>h6&pVR^YB7zd_ED4x&Bcm8B436*Bwe0 z?ml;JWG)QTKP)0xmk0gB_x~~XCh%=t=bb1HmU{tQ?7+Pj8?g`sK;nX+NDzP|QWPvp zvL)J*Z5faiJC5vn6Jf_oYR66-2hHZKuamZ+(lnXYNnetNOedLXoVK1!igZiTv@@+! zvgwkJlP+nc{+i5d^O|N7c>doxxFASTb~3N;y;8ys+;i@^=X~c|{@?$@1Oc6B7^@$J zF3@cUcq1r&k5p_p96Pe%5BxjY+E;*}ycA{x_J#B3_ zmz=jX_ZsPa$4);{PQ`vLGc7meQ(_)vGEbadn(KeV?%!j3!dXom5BZ+5HV>Z8q{>g6 zKDIBFyQe8nXZD?kQagF$HT6(XB?iDE=pU0&o*{Q<6os8 z_ztD66Xe2vmJlxRa1_O`T8m*4vqnFZMhX5%)TS@SKi83ZD1m?iV%> zYMNqvNFNjab%pz5A>rZ2Cx>~iO6w1J+tp1CxE$?#8#XXQWs(h`ZF01izK|35%Es|AEf+CEGi`@hEIRg583M@IN$3W+RR-7JHI-|7_If*-6 zp5twCxep}9=W_49GxM^=>5N;IkkV^52YMa(5)<4TOC!d&Dy$JAa6qU(|V8r@T2NHY9ebfSYNM%`1a6g_qEV4nNe zp___Y@r096sZ=>a-ZPZ8g)k&xl=-dOyl3AdE5#co?`(c#HZZ#Ypv6NF;6G(Ns1_q{n2Z)*6PSg`v88)Npm|i_QMd;3gXROdLWKvPyntYfB0T`2f&2IA z`K~%ib zdGt;;v)CPc1Bz)Wm@1MZg@4b~{b>%9t(pao){^Bou4NY883}9+cY45Rg&H%`CGMB3 zBE+J}Igkq!K$kIm-W9GJ9sr~2zM!e(g{-{Z@fZROJg$LY!@ZN>0-A76AwhoPwfx@6 z-`S2h9N4tNvTalNLIg@Em{C)cO0KRZ-9Y-A&j#cC68G`w$j>0&0YLc>lj5#2>^F_- zK%*=2Se^<+jyw-K33bHISQq}WR)K_`2KhGOG7^viSM#u5&|hfg)m1E#XTgD02!MTE zaYx5MI`A+;duQzVW?^z%tTHa=aE*JwwGFUr`GyL;a4TDi1{`P}jzt~8vawDJg$-Ut z!3B>C|D=fNYR)!#1%#cWV(V6yDtG z&Q{)*PX>(r8{3cH*pv4xoDgG*?jc2m&_LAvpR5K_y|b8m~f8%H@{Q<&W@_H zRE^7X<%h4Nt_qoa9>=vo3xn>LEt2Lbu-O;eC|-3D=@wnq>Gd|(nk$fkrtbP_V3|xT zJmgTehFVGu%9EhqcYwC~vwW%md`%(syT}sncK>4`RY>7~c-Lc4d=9@O=|#tIh=o_X zSo(M>pJvWNI^Tb;a@}jLt1#5Rs^KsN{6EBPoQioK-)8>;-?>cQ6YOSkg7|KU$%YgH zX1TIk`_8}AyI0=PzHj1&iTm2DTb}CwE~`(KjrpfS!6)bW{{3zCT^vJrkoZvu#8DH+ zfQwqLLQAS}G%=kf9d-VSH!ZGST{uy=@5Z}sJLB4G_1GHSw?OBn22TCV@(YL01cOgi zt6sa$K2=`rcDXW0y21tC-z3)me!fP?B!|mbMmz=HW1vV7{}P3oVFEtFz%vXd%2 zCx9>TE;CCEil0xt_Ws3M_g&rE{)pmxjc2uh2jSDPX=#UcKZX$vOAE00ik7rvmU?SllfuC_DKCLjU(H}wv|q| zM#olE?j0RlgxrMAcG=<0AQdCGf8ogGM!0}La;kOtF&+cf79#1`18+pBG)nXf7{5dp2=}Kk0VF%83$&VxER%O-$&3dszwiaTm-;u3aM!2+*joP)=*GmPdCA@Lw30ZtX9$Ur^QW(EOOZWbrXW$h2=HjwDFF zm;3+oa;MDqKU#Mm;yH8J|8z+X!&*12NUH; zqW`=1T$Nxal|N4(oS!NW#!ehZr?K09BpN<=PRW~sJ-R-6(1}Fsj`oeI?EZMY`+J|Q zy`XPD{)B!0Tx#lAda8W%vxmL`G8@aV&p(Df;|;n>v*u>EeW!cjg>3@j8{e2W=Q70& z&*Rr|^1+4?X&}Q1L2%;QL?R}f9SA<4^ew1)*I_Oh_Uqf5$tT9|H@b;O3SqW5LyRS* z>p$_D{AfSYQ#foBiq#}YzhjUtuC9H&H=gWwsvXQ>*ReCYbs&df|{ z@j!GeQ<`9{mjCF&&3kL7S1XlDA`UTQbfn&NS_=sQS!Q&8MVsF9|PN4B}B??U{^WE)p0IcU3mP#v&9&ebWcieozo zyCJnoP=H}F3q_Dy0im8K2HQhQK_oLalgviIT}cirIIl-DGggp!Ud!j-t*ViL&xt=! zb@H+MeeTx?LAFmKX4?cNSJ;G5KQx54MR^VM4{1Omk6~!N@NhHDdUD!~aAItD9EoIf z{6U9jEuAn5>4~{eLXD8UABxBG@%WES?)4u^U8yICfmyIZtgEUOm>C&ju}N%W?%v!) zGU`^X(Eq3CH~BaMv`HORmi&9KgGYz^P59b;k$n?7t`nMb4kKztHN$|=0>)V9?himM z03+bW22veCniHNb*87(SCYzyfa!>L{|9pw%z-VZ&oc|Z)#GYh4 zhfNvl5i4jN=g#xAkeN;YvcwD2DRs~Hdq8Bc&Uw%vv`)!m)dtcYO0l~)HjLQay#6%EL1G7xxQ0TLL3p1x;Jg7NrTLMu-WKNu{g>Ku6Tceu z2Z{I)6>^Y*u$a(TlIzVLTkBCCCVvD)fzfQSHDmx8%}bAg%4BdTk(|-9ajW8V zK&5g(A)*pouTfgL5^4-@TtDkyz?ZJamlh`@;2hz+oj*ihAV&XH`f{aS*2yb@fbw}Ih!TYpYXfn%G&8-}|2CX2S{Q%*3wQ>(ru1JR zj&OEN36_Q{XKA{;)V(RJRl};4w(Pa;c^j5}*#8bv#mwE#oua=HB;Y~M%u%ioS?~lSbZom$VoV%# zjYf8zW^OJLc7rLPY>y;7*xf+C>D##rnOAIt;I!15%ONig0ASCUn()8}8_dn^GO;2Q zV{-FzA-$rAi03SHRl>Vn1B5{vtUov>#0km9gQfuoo8CZ(rdksOCZvNP##w}K0%#Xl zY4}i{fwLAEa2-l+v4OK6py6;C3dIGC0}iHAU{sQ87aImRy(eTh<2LZp!0CfSa3F@PO8*|nl zUK))DD}>=nzU0BxUxnF3DzCu(U8D>E@Z`;ujCX)14~iUdWaQl@;{;H1*^NJQ)ld>;N2Y~CNoI@d7|r{Lnr zfmj8M)U?Z0b$Y~Wu;CATHGIN8anv#H_zB#O7H<37+kSM(e!{*~jQnln7&2|0lJo>U zI2@h@{C)2OA2=~KcH;f-zZ(T+@ZTmLw#M!68QKPi)LxPXd3BaZWbm(u=zxd=9p#NfIY;1CD?Dv@`m@Ld6m@URt<`2fxIisA*CUtn|e#I*J zg8q=pZ?$T%J-KRi0HiOa|%W)5F4fXZV|tKS<5hJ)_;v8iNoY78tKE?+pP`5cj; z9#*V!AQV)+esK5uBgk`xOc>%WJ_xxW5TAquHg_AH;1u+N5?+CVL=XjO4siOx-++8? zego!#5JKs5+Ei={QxcofoYRZbFEv%8+15%c&62^M6TrXa=%gzA3+iMPEVREytRJiB z3&{$>!vc*wEBK_4(@qgOj3!h)II+o7N~5jfj%Op*!E8w%v$H8Z9B_wJkEUiKUddjv zyR_6i-VC}!5xkj2PM6Ja;LU_SojiCfT`eTbQGax7Z*EUQuOyeOSEc6hmLA}5p+7V} z<)RWb;_F&_+ljsTpjo-(CUz%nG>iO}29SnfUEGVm2Q5m~vESif>%#G{+Ayn8t(6f10j$I`#Cqf55AVI&aL05OfaS zn$YPwUa)Q|_5i$qGe!M$s$N2|3##yLokukU-N4P~ortCIIPBl|(Lch0Ome1}5xGcp zz@Vb?E;jN4Y(ph|;YY1dRvt|PpvveKvRJ7uT*V(;(w6lTcMUq(zX|V+=b{IKe*XC_ zC-liZ3wX-9yo1)1c04ldCiN3J*I+8Rk)G<2$*>L+i2D$+fBX#OIN{VuE1-%QP?pjJ z4Mw609Gb-j@Fya?p)iIk_OZn45(lDpD?Z`+jVE69{P!pj%d1q~Aidv#yGS57gEwQFW;h0*9oxeVzRy_MI568njBnVvt%)kup{1kja70icFJT zwd*E>BMYAq-C8SQL7>1 z@!bqvC(QRjzeu;ABedk@w0oG4P&=@W8(72?^?<*VAm)H1BKpJ5UfP%Q&;3H+@RY|f z0k|uo9i-uXCbYh`zHw<^IvaORl$n-sh3}@XQ3N8)qMZ))QTU@b8DZoJTMolXLc%S< z%Ib|-6omwe1ZEj_M1pp*tE&KNyS=(oO9zzkiHZJSr0%+F_@8y(obY)vUQg~sA=7TZ zF?F~2>~4GmZ3+FrtaAjJI*9iWR!`{oRh<|!0Bu9PJ+xmdqGhs$$h;mRZ)2hR$D>$= zQJQXX3tIRZf2j8TU*b98lh?tuf5pt}4 z()G7M{XnsjECY2IGx*pNgloN3Yu1{NjNq{>7l3~0KK!tlgXZzV#DdF4IT5N9(aHru zAWBDNhDnEjq`uB-mktY^Z-fY;dl8xF8jj8T2^N3$ajv5x`j#h_9oCrBi!urRv{eox ze$UoF5D5G%#FLx-%5783Emau<4WtXE>{C(KS6w9DB^ZR_w z(A>n{a=DpV6vPP?jL#@2th(Er{Is!#sWq1<94u&j)ON8qH(_I5A5!s^sd2G-cJu}C zq09AUhYdWSbl7!yr2Fgdb9i|ty1ZA>UHa19&{WX}-YNJh26<~+e4c(p*l4F}Sgu09 z5E7wV4Z%MyX+@#~WIqqTz&i%%`vbg()Uk_96}Ps5nsuCJ6L(MyF7pE1wTKDfzgctM z>jJkhPvNDz(dQ#}!vfVN2SYfvCxR(K%hkC)&Secmr1>T`3MdpLfW(^>D{1X8u~n!x zh(c4o3>GQvcEDRzYtLos=~6iz&4aB@%e(S+)P@e1ppgaactxu+A5E7_lzlx`MM0ng zDd$*dEhU8%HmQW9)LLlFnPRI*xmJ{PIiWiA2nh2+z6{9pkl`HB9cltdLWL5t6S|(* zFhWV^{4^3RUDNZ><$ zpFrcwK=Or|$GOMpVa%sEOX-4Dk#Cn3Yav~7D!!+^$~}tbzdWX@k2&4$dl_E#-l)p0wEpI@(uR6V_n~SkXP^{Gq)FLQI%TnEZpJ@ZFrR>)`G1yBDeSl(DGz za|>VC=~ZM+fL8BP{4Imx%SOwu+=btekDOv)6y7>86^YCvyd}m@*uVu0ITu1aCsq&v zh?y+H++=K^gPa0qs~Ylad|>B_`C{X-z+3?TWANjF^k&3xe%#}Bd&Z;5RAk!kpN^yu z1?Th2%+n>b8ntW{$+*1Xk%TXJrYJ!ga|?SW?cIFo>@>}h++|h@wvO}#9YgPS+Uz5l zU^i^<7inN}P_rV;*F+NpEZ&$JBkO zePX@@0)e>TMs<#PxY-DYj1m#VjYz5*=`gXkER^CTEDP_ruv-Nul9?o+@8&=L+%hxHE^k7)1S};Md_)13TaAE^@=^u! zrL*0$b@~!BLa}%<-^@!$CmZzbzoTzXc$*TWWxzxt*J(tf3^LI_u94>&u=)sHXR=6< zFFzN|vSk?3)9K9JK%PJoZvaKId=cYuuMrRSHv)0=%MFGoBp5^I#uu#vs7Yfg@u$mk z%d&yOJ@EiDf^k*rZ=g?G@`N))v2n}+zOJzVB#2hPBI`QrJZu|sLnm1+*=z$@ae6$F z-B+JGcyO-1FL8K(=HycN@DZ(fa=3bZoV4Q$K@k1z2)E|J#`Tg0GYG8nXsa z187{%a}DRMnL7hPhOC)w>G)*b(`~nE3k1Jz@j1|@dqHDp)>F`^Zj<@q0z??UDgHY1r@gQml#KFV}mfI%X zw@OcYF(149qi(Q&Kg10F#M-32i}*n1CI1-cgxXPA5-RR7#0=+ae4 z_1g23dudef)ECl%A4^f}jl7oWq<=g%GZD!x9HCMw-V?!tv_9RjP%jjVXq6MMJy8L9 zL@A@W-CAZVTLj-Ob!L+JGb8IkwPevha&E!#%{gv_F9ZH9vcOC$u!mfmv7iTq*+RuR zo_Eupo=#U#4xa8QDQIf07{bS%pvXZ!W`2fmi1qg}e8j}$W_3u;N4pQ%9FnTdPITLp(LR?hGtiwMa$2XRrzOXW&g{>Z`zeQu zK$#eO%=aEHggM(SPzBKvxACYUZgL`8h(gY)oR@12_Pp((?xRj{^6`hiZnu$M!63## z`dyx$vO4>p1)m{*#tu28TIxHgztp}9SkZSO&S?%3p0Nun8lLa)pdrLabjpl`A*piv z9{K@No1ju-AHiaRM%AMxt?Z#QcCbl=jHsqk51Ig1QOm<-(|(^z8ta#z3xu36I;80@ z)8`y^g^?67M6n0FLJV;Rsv=Ys1UI%1H=lvK?E&?!DkUDGFfZeS2@9tUV!a677K7XS=};TB-FkS? zE=P2v{I<6G+5gq%E?s06>XG~L*iAO)kEHr9Z}07~??=DOWwgMg+M#(<4z!p%6X^3i z^e34(MG+lCl%HfZrGnUMQY0^8(5P4i=hfBUid?<-sz=+K?RMw7=e|&TS8dE->remY zGtd0y)4eMi->TgJA+fNIzuE^&pvd^gZ#CX=9yX)Yw-a-E@rFB zYx~dV^H=SWuDnu$GB0E$;el=39>LN^SdXcW?zgUcZh4tmAkS8xX&zVi{54a%t9))< z0JlHo#)XlC2-Kq~zP3BGOj|=F#M21Tc};s~>Zen)}s!v*h?#hYRAV z=IEYd?(Y@`wVwX*kijgeyrh7UJ&!FOyAPy&5t-WXyn%bVWwlC9k3XbMCcF-Hl1DE@ zUTkdgWhAxpT^yvntc948+vjv=0)f%k#Rd;ttPbVxNKP76pTMS^rI;fGAP975@1$Fw z)5Tmw37;MSLKr>_Aiq1$ZpEyFFO4v${DyUh9U3=Qo{XO9Arc=w0ct--xe zh>r1l?CEq6;%@UJ)J_i zuD9!YCP}+7e~l7I>tJWcA3+RAX~$hgzY$+z)vb4oRtrUkPzM#8!)5!%wS!Cg2K#bb zkEw5j1O8$9MsCqz=d@Ns%e-;x4OC+)nVsXtC1TTE^pc`G=I*(rD}rs3Yk@(+6VVva z%^a`GJ?}svKov@=nhW|1to}=%;7uZKfeb=`nf@>n@Mk_ihlT9IHAU{D8F$*+L~WQ@ z7oqr~Ob(PXxaU_;HV1WN`CKw>FPaOKfwha@dCRJ!GwBR%uh5#X>zZq8J3PyL`(5S7 zCq3`mz{-3OW0r)cun8H3`Ax2pBJ`;Upi7X1+)E%+RqcjQvgqB4m1i{ry+mRG(0s9% zfG!`g%Z zWltO|wD6Uy_a`fR2UP$k_EwVnuf}oK2T=Th{MycYM0VO32xZ^}Fo}=gMIbtA8RQ6D z8El~3cB4=Pv9?|-?4&-r1)N9unRgTIQS!xmD%#;E`d=dUBS$j@P9$*0?qoo+OH=7F zX&k&q`P4nr`r)@8Bl@Gt8^(wi$&|4_Odrv$Vei7&--@+Y>f^OrojY+h@W3l~@QIPG zvA_c`1iP4(BjZR|jU<>5Cb_)}j&TjcNN!Vba6)$goTknJZwMFz&juF@2doVu11k8S z?9$9F`}d!6I&#M~S{S}=`AvISW!xfl1a+WxR#6Cr1_`lV^FqQ>YJp$kV>iuI5>L9J54fa0R zV}v)Gp$uG#Cvp!4Hwh5VoNENJjS+tb`K~l%rfCi2sPWBBLUkdmH~eCDyZ{<%RCP;*J8oOcQh@ONMvsCJnOk*fxC zi$LkJLy{bBudC_u7#hB*Q4tytg*IJYpgZvqMN3tMXa^`-ih<>K$Wz^r^#Bsk)kqA1%(GsaDSrKiB*zTN_GcGX=PPVMalXhk;(REGrl9o(P8`a1lD#7_vuA-?=@t6_ z9pp*@(t_XlNKgRlMAWa4_=zdjpl5R>nulcR8F1s@+a4EsnMze6$8Q4a7e4(a za-g8LZuz_ofsmq=cROgH19L&CtU=5(PV)7zQ3}T3^H4;6e zD1#4w_?-)&M%$n05VytP|Mng=jg78x%SrmMm@48w8WQqH#Ex8;orvIpJDMBrdNC+y z>BlS9d6fKs=!IMo;HO`SG;hpiZ)`@6jYOsp#TtnlU3aSCy!M3LI8|n`t@su(w2s7! zgxr8Wy2+k}g-;dv;Af*SsPJbGQPabTD}(+8d#2@@r_VUw@eb#ir{CfB`652wo5aKG zyUtuG$DV!T#C<<8KmQZ=P0Z7W=Kr(dD7;@>zd$P#H+MkFlYct}tII-`8c2+}SHMxD zhcH*#;m(0Mj9|Kq%)na5SnskDh&ZsZp$bA5z5!H;XDaS4cHw75(b-nlU;vYGtsABR zTwkT3Z=!><6wFf`_X9bEtV7{ZtUI_2GI!?rI)&()44#En|6=bVCK@}?r6t(K`bxD3 z;A2pO0u|8px;E&;4VTvd8c)or9&6&6sImvE1I7>uzAR$;-CmE^o`q`?hiJmm<9h+d zWgS~C{RYS+l_xWU6{f$2>QolkHv>7pzKy?yzGwc!$?)&fZw9|>!7QTxTyMI7ai=^L zVewn^Dzr^Xh$L7zff!y`@!cp&Wqyj3XdYdD}&2RH)M+9st;Qi8!Oiy z(I&kOH4=~v7@cb^Bvn$jWs}lU@lNdVZnpzn1y&paNw^fSvB?I6p-qOC*bk{qvPyGY zzuwUj?LbA0mrgpDP^>e4j)b94|lB1RI_2ql?78F-vD{e zC!IA;neRQc2f~>hR?(CQh2sf7xsi9sKSq;-pEF!7ut`@!u@0sfp3t*ktczrCyoS%N zjr0X1;Zs&RJ;RBYaMpM|a^41zN-6Ah6qBcR#L!}e2~QjtI&sEm5cgZ7j)uvk1r8I< zwfWi6B5E~}`EH;ooH-Vj7-_shGC~^@3wa>T<~qJYCoRtT5u7t+|HJ8t)LULmof0(o zS)!1P#Vg%@))V#^`NqWA+aHl-f?eQRs7I@ZVi@CV&NxGRCSI=7RC5^_6=ED+3 z9W%dhWTgOHdUk`+Qz*Nd8ROI)fc;%0HtZ|>rGEuJ{ z2>Vma-aOz|!wv=T78EZEI9Ft+)BbiFbE|F{4ftVh416DgJB#Abm{k;|BF7MIX;7hS za5sX)YLqCewYt9k(lSXfPL8$Qy6_AMCFrNPj^bGGhU|VUTFW$()Ju-ZWpH!Ham`}% z!p@}iLHhu)M8+){v<5zNy>Tc>rx8V`Q*) zXsuBhZKV!`Y{4POyijCL_tzD$Bk&CJpXz{&3k0ZsWLwc6>(1q(D4FrTsEs6J2K}PJzVgmvO|`^j}2racbhdKZ=((_h0<2UE2U- z3Cq#WKA=oJO*bs$6*r3Z>ac&PAy zld_@d^@~JcpocHC3WrLzm>xut0he9%Ibxw?(EEXMqt%+uI$5jTzSXb7=4Imt3WGuf zzKEls2W3a|>hUJ{3qV86_us!p+>iR7n%~5e!H><~@R$~_gO%sHFilQA4n!MTV_@lMZ*0Jyz1Hb;y7)ESO3h9O zI&r7T*Vkyfq-W!IVNyrb#zoW;+bFH!r)&5bYogB`(Jp4^aNYB;elY96%0yHJYY~f* zRr)WBMaew0Dp`eA<)fAD>z-r~&Qh0u^EfTZ&td651;@*dH6P9fAy0rA<-i2 z;y|phyC7xoa(B5x{o%|0c@itf_ANezcFf~%T_5xUON}5|n7^z==i2YlxgxqM&R>jE z5A&^u`G!bRo+dhaj%=zbU0zzMAVb_az86PE-?WDbw@x~|SF!^kwK%yRot>&CBzm ze=Q&pI-Pd2xut&-hRCelJgS0VyBym6RF<%4+WsTBAk)VGiSy^70@G$VTCk%fSbR_} z5Fg}7_Z4&MJjUKlejkC-Z&1>!P={n=H^w^uNKd@8btT-xa^-2tvx?ZNS}{ujw<^I$SB3F|bgM zCYq~vl@k36U9|%cH187YB%1wiHOo_p{U7eS|1#r4ufA`5h0Ay$bBL|B1avAEUsxb> z)7bY0&P@PYaC{v`;2u}y`vQ{MKV*^Sfss2USvOEbA zQIvX(#{htLg)e)S2-0~VfDDLPWMgp+pf)?-D98nFQpf~_1;n+0T`|cB30r}(Kvf~o zB3iCv%hr(&N?*|VP*JKyoqZmD`+(CM2s-4TGCigT0%K9+QqLrr)$MkAQm&b?_|c@# zrxkq}@TfnBn3%><*XrmtxcY zbRZ2hk+0?m*#pReRHtH5H5N+;6B%n1p@UG+H9wwDdH9b~VF$|u!%WLCY?}-*5zXtj zt1c8p4LEHcyy<0%+o}Y8D2?iHYC-3O!=HA_PQUE21%k58jY_f(;FVm?P!MHMLs2V> zMIy4}xuh-eg3}8OZv-{WJR#YpU@6gB;IfP`cL|OqfkjUF&)WrGSpBvRoL;cKwc8-@yc%Z zc^_YH12I~HNe|&MScFIj;EPenA;E1xF@4HUf)o%LX2O|EiR}=n&~$V}pQ#OTx2XZi z+~S;h@YGO+Bhd6pFankiEtJcHb4TIgJ&bXAL^vJ>EH+-?WS(OJ+O*`39{{E}>6-E`HP@{dl z35QGFzN4>y!QcEr`$~>i>=&a)<$V=>+Hq*~wfckg6}H-ras3JntJns&PQJ(A{6YH) z<7wvz@V@@lWyV#E_p6R8w7?yGJ+j*Y|A#p9t+n~ebKugW^1h1kyL4Q|ISlkz@cVK5 z)!Yclx~C`t;@doyfN6&@voHg(H)vqP*eoY<2VdO9LFT^MSHXF}YcuW2c|h7ZZkJFA zY!c382U)-os3E4_L4Fk4eDLI_}8)2&D+$+aDf^$PKJD_$7rC!!s)$1dNJEk{f*h-l{;*c}0k2MUqI#7Kj| z_Z&jWulAtXU0UsL9y-J<=Z!+V)kfp^6Z+MwpC<$f29V~_rOkdOUc8;!+@-;nE%5@i z_QRhiFz$4gs8M!lgW^12w!GSjcF;5**BdWcmR0 zi*ml;6w)!WKGukkMy++Qff=Q4`B-RQ*={fI3mq%NOI`7AcDtMY$_>`P`#URJZ6Wxu z(XABW7&nTQk{($%B6`QIlt%V>!jQS(U&5}?5SX@FFiTcZm?Fjq6F^~K3&jvASzCKf zThWfAW)9zAECx(g92h2!&>J_{-(xwF?Zq=^!WbSh;;Lr#Gb<8jK&=REzEt`XyIq^s zsPvg_2DQ(ar3*9}%ARSULr&PN#kWnrb1)aq!v`S=s{(@#i?Bu@G6!xwSOu*OZUB|o zdiVVKZXf;&Al8QS^*q*Ph`ixp8Oe7%{jN^*ycB4luC10-2Z(BLdMcdhT?Beon-|&$ z@nX4Lz`3e))NvH4eW^$~mV0NQ2hjSYOv7TTK#S zB}_t^b58HZ%F4ZV&sMW6)#>!iMjdpb+nGlF@g2VgH4JAYlke*N|hN)l-K@tf71Xwbn zhp3SUV++xkUrSE<{gX+TGh50!U866S+&-(Kxoy7d-KawwwueI!O1s!YunydE6Q!oy znqnRKFeKpvr-ZK@`F(0eNzHsonMo;?j}?tJSnp=bK#pM4 z&GxI}N}vGj0fgNoIL~1cA?TK}7SWpqkHXbNk8n!q%8w037H6r<+(5NuhCPd+tBcwB z`79KiK`-Y$6%6}*ysx+p=}Ko?S9#}uIX6F#Vo*rZ#eBthVI5pVoZ5=H3!@&%Ekzsm z8Qa3xDq%bn<@>7Ds~_1DeOGkPBVX#IK#Z4Kee%g(e-oY=V2tlgH{SNP27*qnbS&~0 zVx8)ZS2|W{c&Nd3Bpt#dPzM}wMR*Rt?+y;?J`dId2CSOJH+xf}|KQ*Y7Z&Gkz(Bp@A-m=a#{8Zq#vt3>i=L6T6PQ61 z6NV2ELH9v?PFPqb7=imGcuuAXkLi-;iQ0IA6};QUNdJORMSnqv5w<#)>vCyDUn!yZ z7JkqbTI$+B3l%mP$tMN#3EqBg#_|0g<|Dc=%&J6kDZ=cCwF}Wo_Z$56+WM$yHLo>% z)IH4D1T+Z?LfJ(24glNmXvonNEI53q;cADsa44eBv&xAX-^AJD_2Zy??yNLd&Qo(_ zGRwZ16P0fFZ1b#zd}=R~e|9TRU_0WR@)ED)+zU`numM(!gU6BQ3s!o8J)D0*%{8_K zMv;Sp_c`bRj|jEnkLMY#t@Y@+HhiOJ7U_Xv)&CQ7Yq?lj!FN_lU895h!HX5sJVr4= zGWof(64-GrqT0vy97{TvW$1q+U9#=;p#t|o^Pj7MBafHMx?COhbW2%$#q>+4R`{d+ z&b0GiISCWW7i8A&@%06UJP0EEqhz`w`_+izO2zVtRP4YVKz3(q<^9w1`H8UucMNj< zF0enw?}%TIV~`pUp;VX%D;(I*joaUI%}@I!d;iZ;smGQdOQqRr{yob-?H^O)@1b`d zO(6s-bih7*hyMX`nySo!36XK5hYX)$BaavK5)uejF+HFFPpZ*7nVvivPWk#DXa6pB z-AXU_@0U~4y(6#L@O8%6>%!^M>QXv=uRpE4+$R7UQ^rkn>zd5nGnmCNym)GIX?DGb@1A9B^J-m7c zJkVH~fPiv!Ts{ao1=R)-%1>n-N?}V?6Yui0N^SO=%E@!@SAO{-N)!N@*Djqnf$Yhm3F(={Pg7DZzRK!QY~*VyoTTQ(Ef7=&0LG!s@Rj0!G1DQG~k9XT6pWSL3=qX%Vp z1Et2vHY@el;%xCEAZnW=q+6^@3$gzC=I`>;lQj63veg*>!i^B?EZ6GBZ#p-BV~ zWEgcMtAN~u;($mB`mYUVa@uYxCF@zhCjB+RWxu!oid(D~hb9f?)-irMBd6ylyNUb2;rc zm+W?h$6nWX&OAKYX}Ciu)**R6;O%}d}8j7jHme}&MVQxj=@|GyF#EmQD zh6J-hYRFd@Djw{fKy9%G-5zhNgE$kVlb7>f{9?Y0A7<($piRT2`t#AS9Um5Ie1KMZg*&ga|Qa&j1ub%s}i#r_*|+ z)hG9Vaq#3TZQ1RX+ZfTmkZi7i^z)MKoFm|IoM9c0-2Vfo;*r@Nr}DA|lqPP!B02nC zo8tk8PkKONO2EPQ0ocFXAM?xDMF@+V<~kz6Ot2@=F03)wW_U6zTtQA4p}@dg#afv! zoJ(bIx+$BQdj0Doso2q2DthS99}95Bv9&dz<`elACeHOCh)A zQv$Kk?Q{z9POH^{%MI6(%Zv`zsm@VSJc_OJ)d{^(n6W%8Nxc{qCxjmb)Tah&2@g^p z0tD_u&WSqW+y6`_^IQ{vvrNY0YLhsD^bo2oNwhCzx@W2Rtv>i+`BMIjg^enyBxz0j z=uizB=54BYYY-_RnZbIanrqMNJnQsjw2YdmQTtjvKmj)NnV1^50!sIHQy{K$c6s?M zs)3-RgZ^fk1DX0wb|3cq1gr_lHm2A&x;ImIB|0?z=iTMSR7_vjsW9QD5EsK;~k&JW&sCmz3e$5GFO=O}QZN9py0{M8-! zqbG~>jiWS1w0_LoAv4nh+TSprrwC~)Ly(gQhf5W+WDx8&EiBkvI;3-j1UVZf_pBzP zlbN{;xK>xe`wqu1-MlLyX=~lzdbX{`?a{qnpHoRzEy5G_#IIkfm zX$24+f7mxKX(xwwcG{8H)k$Mfaihl~Zfu>aJv=BtFm>$2z~R9C31?wvR1TmNmgQy3 zI^4`)v_q>RDUIsR3x8|~deT%vaz_CEUaj3Uk2$3M-q6+ee8+(NNcAz&+|xlJLbH~D#z?h3cfAYLtWSHkqFHMz5&-?iG2N~BG9Vl4Uo_z9lHRl}9Wl{Db*tXRp+tT3OI zlr7S!M592-nM-@MBtGy&@4y2bv(FxP zd4tt`GrA+_j|Es_cHf-eYGKzqfF zRy!g9U?&id2$OV?Sx5jGu*6Du6&Kz-@&vEQyQqa}%%Z^(e0o%u~mb|vOgE^YF zeeSjehtCnkezEuclGQQg3iMx+Jho}8&Hnxdb`M?hJFxxoIgRT;Idx?36=~lCCl%_F zL9HE*eUS`o5WS4-7UQhzFHPn9n+2m3!bK)4p|x_&ivKA|T9HDMcvzj5zW#T{BU?U5RlJ{fP2 zJ>Eszq=+;_C8NMf`Ki)GfAh%|2_2v&=%I*itq(duW`c2E(>mvdeUzS*|88X&FhkPN zu%`bQ@@VHZ-!7GeXKEQ<`%{+F@Z7)7@+0uxcP#f?-T)u|n=NmJ7yn7ivzB*T-edV0 z%LgpaS^iJU$1J~Y`Ml-7VI{#-CVQQ3u$PC=cfS7r>a#jEeCZ8TJmDbX2r@MJ8eR6Wc%J@p8S!^=QVW@` zfyqfd_)mp>GyBtd`j;v|?Q`fkr!$?1XPnM#jGgpK-p9O>=P{q;{WC@K62dP2$ZyWFFWf>Dz|f2i;%U%A7vn~iPtTl^jTW< zMEps?Vu(Zf2Ne;PX%#B~I5i@0CA^dl^bSFf;eIhSAhw?K1cROrc!Ce0`bf|tdpuFa z>r^HkAa4xl-X95ia&5KSeHcEVXP_igu&NdC^#76y7adfjpciC{(Zt+hE9i1stxDJv zFi?YT<=L~(LTkpic`~{1#Ss37a+Ba2;L#@p0WHSU#}m+YW*e4r!2o}`K;x)EPrJA zish@8?=u_ourR~9BG!idmAOW>u3`fOX<9LYXfQC0z$c=@s*ZX^D)D7Vu!ae~7Qs94 z={6$tW&9GK(Lc}=VO8NDc_Zkm(j)v2egvIBoX&rXZ3T_xs6nJL;QFKf!a=6O_dqL9 zLU2>36`IqbhUbc)fu|IaTpimIQe5Xy#XVPpw9HWo1cB3WH6+}lqzky>aSthqW9O(B zw2`5uTA`|PM=!OD2?r1!$kfrSj`OIZPE5UsbE*~eI=+B|;CJJ4ZXTkT_i(o@EEh&6!0+uT8kMe#ocx6+fJL5jyNK&!_02CN}piNX0x9GUJ?Ip zARY)C9UQq`c4mE_#B6r!k2=_0U`43f@g>_ex&j1dVaj$WXtnK&)r-<;n~lAbdGqol zV3rOhJMExWutx2;>NY0(58(c&O#&iPabAJ8Y$=;nvct~<;Fvw`^I6dWw5lOtj4?Ff zwK?rphug`lQN`xMcMt#kGJa;IKZny1M4{1upN4?hF=2H+XjO3q&iFBc%nho4yAQ)7J8*q4;%*F|WMvLp8s}@Z25^tB z$r_Dlka?g!U`SoGO=9i*Ef_f0p&w$$#x%lY05ux47h<&GZX!$}77Jw@K{epWgtSNq zq{{ojupEkfGI8pRt$ixtjzt$^U|Poi*kTk%B7Y(dPWFy8)Vh+;5uq9JKvWUVkp|iS zWO>jY30sp&4Il*BP?7Nfcj3#HuEt~d8>K04{u7i2(OzvD%g0MkCX*-O6hYyL!Yy4T zW2ks{*%;bB?U6PSPb0rQLSK1m(MGWuvsFBzl4*-rI)FNaNz*}dpm>7G!w>kbMB*ek zpMaFaA5O=#t#%xL^o({Me|RSR_$&N$)}cS{dVJU=JpYY+uvEv7vk=+1@a1>d#$l#V z4Kbo8!M1^A3WEtQj5bs={GXVGc@q2#nQ`sd-EEu;^!6YetdC@2mW;(h7vOQFTwQ}~ zAg;F)pDA%`ZD+=P^)?55x#xFnctD=}N^MiUoUOLE+_Q}z;C$x=S0%syKX&cFeM3Ua z^fUo$cO3%m7bOmT!EGq)RBYMU31kAZk8uh3 zkVpsK_Xg&Nh*`}S2^!2@3SkPg0noeX*T+*8f670T%0>N)(^kWi*0qZuM6

#oux4Mq20Slpsjg8_Auh4Z#i}NDWEF7bAn7d{?ws7Z{a3Zg8 z3c;{{F4rbgzU{O_QKHjXy>>j-yz7^T_#vU&twTqe;XJ!nzWVtLV0wcDatyx-Fv9$z zGr?7Yzh%)M&823Rht8vgF_?hhY(q2J^3|@xDim=YSS|zTI2q&=XM$&j1K$R5YeH~!IZB^YJzjkf z*bk%|!Gprqv6M`855fdS*o6&B_b11SkdL3kUNRa(g2cakmH_PlB#+HU!ddT35$JKk zIS4ay^z4!yfX2CZhh!SA47D%LmDgs20}0ZMyL;jMr7W)nxE}!&M5{z&Fq)2_62t}G zwRIeD^fWscE|7O^>-ggQUM1%Molz$WgNPtX z8HRCvu%nS8U0WrIvdQl@H;qh9sqKLJqh=yATD8o2Ez_dm5ph1U(+kKvs(=}$4q38< zapQg)ng|qdq#J)S^xxAs;wvOaO!p)?=gjAXMu1=l#^64H6%UUjNIqiU!&ZvZH8hHY z!&PU&?$Z?80t$DmVM5^#a*oCX-$!yR9yqQ}@VM@@-w&boC~B+K7EE6aNj>zL`wUIr z4adyng80X$^_(-r{0=o%Z58qeYZThw`@b!LPlH@V)5ryQGpg;B+gB(^Ile?9W|-gg@+Y zI*=X}ay$GHR6dBs$D#lL2wxH9fl{77aT9SaD#A~jw(>y3fn|f}Y;|tvGQ_n-Gyu@a zkuW&rwwwmIS{cBt9|!b#GPzk8nl7&Ev`r!LZ%HeT21k49u0fh;6Sw5Z9l}|7@d*6?b@@E9&PK*AU3th z-eS22D-Ls0o+VHTPtpT~oX0-^?-Ip>B+6$adPeM?aN}ahsTB|zQ+Y2gC5V+stIpOA@$slHMxS<> zL=`WALzcXf#JW2_f7mOf+OxG=7G>wBJZ{B1z9$RMm*TP6-P6ZP6KUi<@^{C*9u%a6 zId7NUli|q}xFG3+?4EJ2g0EZMnTgV|X+U}h>zjDH-H7ogDT^jgS-1#F!TmF2%Yjg& zxO$plqrsL#v!Iq^2WAiS*KpTbgR16a9@pz#9_DPRng$2zovw1CR7#XxcLH@pdRgPh3nL&30ZfAp(Lsr=H3E~@t2F9Z%Wxf`JEDZA zqX3f~uilfGzn18K#;4dko-vmaU}F*QZDQ+rqj#d|6+aT;>-yUk`7 z{7>ff{T%xU{10`E@ikb{4FG<`Ooq1%dSR8&^fZdxrH74gzM&JpFZpeYfD9pZ8EBb< z27+4aXfK&3i{7*B(`Hf%_jJjj#QlkWJ zO?P@Om7T~WQD%7TKId_-ANjjrkbGC-aRvNEV-t!@q%?L(LwH2-JmYZ3qYtJtaINU+ z@#2wFQ-SpFr84b3PVZSSK?^dB$y?bYaC*FtHSMUm@vh{a08&GclTy6(fhGh|zcgiCqPgmIZ{hzUk&`)^|+&F0sjYaf{Xrw;z)O`~_iKzVFy4e1H=?ENXVy~t82viXj zm?cEIO(usSz8aWQ!63~i8RoLtbDoyFL7P3_RTIH^zaMnbdnaS@L#dzEsdP?SrH`pF z&sYrmsk8dFcnsU|b$k7XQce1NnlAlFKYT!DN(^oE zqRm78z5TD74WgXqz0B3+6?_2g6>T1(=7D$@RfRgnd4|-nt$vug68W$QiwSZ;^7g~v zC5BwGWrWp<>jMKA$~3C3(D?z?(^VgSxCJJ`F2LCXB)6rTdDvXPqyf4#^u{qNAlTb4dgW2>PW7U$8r^gB*lCX$GdzT zNjPY5TtttzU=^3IBe@O=5ALV^b=bB&#FpsVa`TL<>bSW48C$C-UW!0} zusfZ{Z8Ce>9^_*yWJJXX}Ya( z*{#UUl+|rCH*z+)>R9pL>^N<=1>CRoMBLDU91{}A>b`}@!8_p4f1A^7^ShqN%DMmS zGOxh}Ci)F&On#Iw@717B#G;fSX1e-MC>}FCETt>JftZZs(h=>`kK8 ziIHAasaKBQpiW?~hOO})tRIe%NB$p?fe>*CcjHNDh76@JcAYODw!3BjJuYyRgx$__ zac|JuTU*W4RK8`GibMTJt;ljCwGr!#XrR=j#WpQ2gdJD1KO?IEob5>NGSK zbeeT9ZL|L&bekXh>+Jt#KL>9cq%bUP{*PiQ5Vtzr^9oI*d+<+S4pQ|&{9_rb?Z))1 zs;6t&L^TwuCbG43RGrH_a(a9|no#jH+fuEz6Y05Jv49GmQB{qi1ZQz_VlH#niSgRh z%pOl>0xxH?P;tbbKz;cja870JIT1}lkrYjGWrq|VZtPR-XR`TuZ_;c~N^02Aty5r@ zOe;Hw{v@LF03wk~jVMZoac22sDDB>~U$yn2RcF_Gc|FU^f*5ozW*@?;GM8>mc zW~w$03X-~>PiB&tQu2SX_9k$0UFDrHYzb3s5?~Na*wkUjBtuBZR)GlRRqS`}xkd{y$YsRZtx!2^bQ z@SX(p)yk5#hcAQM9t-=rWR`2;-Xetxc%0W(xoCI?zZ^X9Q&t# zh;a~S?G@}j2dwugvKWPpBi({y3+6jWD+ReBNF^jin~u8go3T`=XfH!Fvof^&7icV5X5bSpjqu=SOJ>(8f7zAW<)y>tHH~xzQN; z<@Imq%2KWo?Le1H%3CPK5G6_fbv>!+8fj`nWT&S75-lN|F_J2lQ8Vfa%LU>6f+=0# z8e|+d!rCX!HSRQ}$d*lQfHc+VaF=xYr@;EBtLIl0rw76ev^%^#(1iD|SIM;G%(M?n2*bFAF_8d56La zTqpThL{g<*0otS)hXcvnfH=HCxg$cJHDu(>o<1?_Oy?$w8~xroL++}{xrrdY@CKvK z^nug2#M0<#cO4du@j7zk8M$p8+?YXPB!;`PZC%MGArjo!zB>M$)&$Z6jTvTejWzKK z$^-_OK#KNTy9R(b)}#bO#`ZG z=i6mMMZ+MAt5~m?j0Nw=&*tw4#_XgOv&Vu5tkqpr>w#b_S-hBqqq{dtxNK{wLLpUi z&o}4YwJS;fy>WwnKLI!MyZ6%N;!gbrx|fDZ?04!*04K;4EX$^`Ovx4zb4L0P!~qc{ zMMp>lf+?%$eYr`hRy&haV5Wz#S%H$*KMtMd?G0OgO0KJA?pDT7SSHPi$)`w4s*zH7b#O_D^(CuTX ziicshB;K2SCOk7+3kQ|PaziNwm8Kl@l`2KYknr?i-?~)2M8+gI4@0rS&W6I_P>B30 z3qeH*!UMB2%(j7 zU0ZV-2Qznqgl_2PFl(d-sY8y^ZU1oO7ZKiYJ%&U=P<`Oi$W4x3Qk)FNTj2e|GmfMw zq`+3ob_Jpe9Ma$?hq0!h0EAdv$gbMbOJ;|^KI=)jiDsLkWuqC$#Y4Aq;;)ZzGFw!SLpx z)iB-$5lulxTd;(9q6Yy2paoFO5i$`hu-xp>s)E%68V~HFctKy`r=*8&FSFussSgRM(`C z4uj{H7k+T^<%_rfL8<&>S3}`)v-DoznzPQW<@1XP`^l4EzG_Dr@NoZC?QUD24-tP1 z>WWip)JGx%duNxWGiMxo&cfKu#|kA<*-orW z%tC39{uGSkSUoaD7@s_OQZM*r!@3ZBQLCNZ<2Z9hTK?k!_eREcGH>hSLjJ{+bF2uv z4e4J8>mExdN94OKe51&3j@&mQq*Mh1OH7?#)({G6aq=(~zw=8*;W8`^sHxhnqF zwbixiBbxR|b*)-m6E5R_tbe1e(`VvaS=fd2_0(k=r~!;y;LoXU(u>hHZ@|x(h|Smc zYx_Qada>TnY>iaIT4kP(d?a)Ea<_i|z3)9=?~1hpKS=Vo5;6DWv4q`fxWQ1fjdQoV zhI0x2FUlIuRL~^WmZ8U|6@*M6@*2<`P#*C(qva7z*rvoF?H;}~hNW)6&jR#eyx3;{ z#&rUYK+#+;`vUtO+L|+&a$HE@$tx(t1vVwn0+{T0m{ zTUTn<=bKH9)h6ilAFxGT?x;xkr6r9;T>*p4-*cm!3jfw-b1r?F{+&+G4PW8?=f=Kj zkA26-O~jz$Naf&2(1yXimB5h}>RbVnVMyrSSR$m~f(#5Lvc|DiAqCBfD}_kAaB+tG z{f&59(3tRV+n zV~^nM%tDiNfLcOLAa0$r@1(9nCQ3a}t%9?I%;vNZ$#4#wE{anta7Tq5g?vDiz5A3pHt-fynK#UFeI zQ9}SOjQH8BVAt8kdUi&3PcE;_$aec;aeXD0&`zwL&=Ro~f(2UBrfvL7T#_j++NU*T zUtT+*;V-{WY0`EAtw2T#piM|`nng(}&0)mEM; zTD7q^y?a`Ldmnh<-oRbwtHYPP?7xS;gycmYL8%{eL?6IN_Nrf>FamPHim%!&3wN-9vEN9Fe=?oO2V>=UG#r{6EZZvd`tyZ+ zB7OSFbP_rgTCgKaRxI3JaUK^Cy~ccimm*yGI3y?&1dw_Gk}afM{3qWs%GVB3B+)0x zWkl+Fe9unhDpel!P(`xz3acKu{YZt$;a9^fA52$d9{a#dks}rUDpffWk&m7}ib%#I zx94-;#D{Vv9pnWVZRny6oaU5h&GL<_Z{M8+CLEgxm*i}5-t+QpM`|N0m%=_ z5IV8z?4sCS0FFX9bG_7=&c3M_ok@GGN-${N#e&h|o3hhJFfZnBsIPECJx%!6yvHvT|kCjCl8q(5zqo*02!|YK>m2{r)qRUJ9PV@BV}36rLARIWN7XR zh?3qW<;6AGUkWGhixmp7`{H@CX7+l3>q>rdQ`zD9vWhVa;)I#Oil=jhT2L`wAn*%R zic@Py#O2EHZDXlXW*0>L?-1kn>qXH^bwn91;R^z_#S=QNo z|DKVNe;e+?Up_sV#@`oj_v|Xe!^nnn=@sm3#OJn4?%924Kdr;>fwrw<6;2cK2#gyb zWn}E(7B=u$5R1TdA&R2_x@X5RT~;Y?6*p{IA}X$gXJZ$V^=ukoH8V+{d%hH#Qq|X#r*EA(nhiVQ zNfymMX-9ZoNMXt3gzAk4BOWjJ%OIW8x4@5o5cI#ou~H5ILGG043?hzAVNQ%ememEE zUu2hBpdfrSUpOAAODgDgnt@Jo&IsHH$SeY-mLv+=w?}{*tpIPbu~^52Dk!=g#9g(2 z*lc>6z1wMN2*DJ>yNdol%*+-0R5|vXfI)kG~pphGOc3dUSCgn3rr;IyPBwRn`(K ziGxLape-lZw9o!5t^fm3)pD-NV-9OWU7wtq%0}W*oaEzsm^l0rMuIje$tIHVf)2-_ z|Ey34Kxb9G)`s}kgYz>T%%Kg)YUFx;?OGK|^B&x`Hz-1ZJ`Uo7(e+Mykm`aU|I%s$ z2HN%&{&edmRW{pAqmMm4?=G&J!Lf`OLlwP5@PP`D1n|-eL_jSFbP;?Sxg26=ahEgp z&HnksgF%fQT<(9<@#}A0#b_4&GM;CaaSo+os*8Or@ldYRt}1&T>O?}n-o$XQhmdfN zx-R)n&%Z)j#)TdWGWiBTBUpwsB?A3GF6Rln7;PwX`G}+;d<(cu zu*2A73$ z@{BP$h)uk+YPkAsdH%*JwRMO z{1)U2^u5A!37ULlgQp?F@YI?53s`Bt;dv6;S!hM!hHRf&DY)FR!y7Uje|y1Lm_2tf zn}s(MAs6NAQM=jtd%&B7CeN4?QD>IxEq1KaB5GWK$V&1wv=&=xwq@sbC1O^t%h;~+ z>r|DQr{L4AHn^^fp*JJr8OS7JbqQM+j?zBp8PV7@s|CfXuUw0Vf5 zh}4lADj6K0#G%+nP;qj{fgB3>dW6%_sLM-rPz0|N(%x6N3WaJ<*R%o;*#d(2TiWZi%(;XvIFnJfSR3OgipmV;NEw_1S6KbC-)R3fCxv5`oDNOGOcSukF( z77TS5CDrYeUEWW6U9!`y-hF3WK2U-@lcb2=)Z9ENYhN&ZT8_5KT$Biff7urz-iK}A z?oxBoejpJkligC}voA*yy@dix7c?RXqLhxdvDT6s>8qoOglMmG1_W+JPlFY} z3+Qcb)G-ilwU}N*dsab*g#8}t9@?v6xY01=CH6DXbXw(q(e!85)?Qo9YFf5>nF55z zb(Cj~tJ2YQF#FSVRdr7`oJHG)d?jHc$H{*d?nVYW@@6PCf-3mqDQ(|Flk$(tlMnsu z2=FXi7uo6uU-$ZtyH#ZtvwGlB1zhFrD+2CdXQzq)PKfE)R2LLOFH#q*pEwJ5tPah;Nrlw$Ep_HztWJ#Z z&3cHA>|EuU!(+A!8c%RsH}50W2PbMQ;2pb(I&U_K9AK1Ya`X7Ul)6dyMiSJU)QwKv zWLoj`oi&cNqX%-FGcCO2t+5o9_hYiF`9LZIbwe48279VE*)ZBJ6 z(fS_JHsXP~9tx)k`6@v-&uwp@ts?l!IQM|y2wf4=t^ud@TB}DaHz=9Ga#slvjuLEh zp1Wmm+p#k|_EEQ08T>Z3*h}QMaeQsha97|0h68m6CVw65lulDOKvM<29(FO|%W%^; z!ko!PNJ54%`sFrRXtHt05E>&f5yaUV0iDbwXWvK^R$1r`yWGP8e)ZysMdhCJDtsh( zeSP*KOyqYn zq|@Ln>{#gg^yI|wsDPlXzlV@XoDe+>-UD0^RttCvuBRy9sNGhp-S#qi`furJY4Se( z?Zr$E$ne08&;45^LrlU&ddes;%7#aK@H>`?lm`uN;(@=uQm>s@%zGE!uL8y%#OZkj9B?nc>$2X}XR@2XqL?HMAk14cHL^Vd2p50 z3h54X2ld~8J&^F@lVtP9$`V>b1aWh26`N7a85#(hM0*nqH{nPj;FbM5WHJJ5KY1U> zXct_(M8^RHML+PE03c=?e;6;)>yj^Q5IbKibkb5aAk)Gnm|fv2bVbcioSDe0%H^qB zH0_qD+Wv#u+?;lBKj#7dlHX6f={)v}eybf;d}!#(D#;#D4wDct9?CO>if@u1KT zbFnhHHiS@b(xm*tiiIwsv4o&tB2AbgC?m_{1B#_fQw@g>b|Z8ufXn<$Tgj=Mo_dIEW0xLhFQ3)uSzI>STo6>y&zhCYG25LgNjmk8$s0f#yWEu`zO zud~(l7FEUT67sT;T_|G<_Y8*Ri4;{FcY7FOhM+g9kea|+oldidAFh{yoTOn1^dDs{ zGVc+3jaCI%tO#kN?^dCt0aws6Vht!iyr?t6{Y=Jc<=vuMC{%qE2b(*#7&QZ`j@QOG z6J=B->eg!;YXVvd!pZ3p^_lXMJIO~Ek#7LAg74)F1JB0QA_#22Nky#mU*lesmZx6P-7K! zjCmjzfO?ZQ(Ff!MMd$?-_zzyygu0Jw0UW0S`wYzBbRJivmgIw&=5<}ofQ#g{TD*8( z=i6xS+d#Riga`l+9^%e&q?_bnGXRF=y#u$(bwLzBqsu2y3JFFFnnC1`*cUj3L4MW_ zU*&w7n{GqEcmaTdO4^G9ktc_mj_&zlyw>f>3a<72iC_US=LaK8XYlqHnDM!x4k*pv#xm5R*Db+QR!J|bj%0rLfO25s90GXIetgn&EgTi6XS_n3JZ zT*0Ok(26qQ4uvub>_RAJ{+F6q=b#=~?rJ2wQ1W@EC3qt)^$bDay? zi>#`KGlxU*a0+UML@FHjz&Uyz&VbD|Jg&Lpfl?xna8fp^(f--tF;W)&3yb!uqP;u> zCB>rviK~3^-fr$+YtZ=ii+1$bSob#2;2U^wM&%`Svpe2BuAdaRJWgn+fsqNFBv5Rj znIeW5lpYo*ovA_!H~6WP+f*OM%IO`1kNHAQ=fiOiLvxV7sHv^Nse*^Tg}pCx`K>(k z4Qs^=dP;SXw=%Db6kxQ#cB~7jBQ+{>b(_lCycy)bu}xK+wva8H;%a&BP}2UuE+Fa1 zIovJ@F%hr>ICJ+gbS+o+e&ai9YXlMYJex$&UaC!&q&IICLct6$`lu3K<+HVpk( zlXe-~_(hu|viW?~mk zul@~61A_(^VJ9LU#K14+u@EKQX^R95M5rP_5XfC3JOIJKUH7Me%ls*~{;vxqS?4D& zcx01dopEkF5_JJoai*iM6ny)dlH zF8EMh*G-2FUD~-*$KSnkZNs`o`&GByv|nwu%^dOZJO1vSr%9JpK97Cp#`uA$CDEc$ zfn~S;)>F4Vv$({cS<1I|(f7m~`7@^r*O|CSrBNTbO{yUH8X`%h0d;Hgur_%(E}rW@ zb^7Ep3;daBdmW9sV?TfXf%}(Bz43`H!6h;%QY%F9`1Yjv$x***%NC>1AKv* z_|0IR*07O{`ys;ezC3_YNyEc#f!k;fAd>c0)9t1fkXl|2ZUv-~e&JF;@$ca5>*ypA zY*;`c70P7^bQC6gaT(-B=$#;_%$V^XYDNjNPNhMku{3L|AmWL-HL zRHM$4#TAzx^#+sKNd#|~!=FR`MDxAOY_lVKipOOKV$07Ki>LEe8!9ueTh(lGW%tTV zeecAK)8+G8lfgswxb0lrn!Lkhi}}xaoJsjr@uU(uuO#Hjw|SLl{*ou^_0JviR$Wqr zW(V~253t5XE-AvSBnwv)_$wv`{1|L38IJ;_ym}A>He*?_EM?3RR8jP>1l4+FwvJG8 z(o*09`cK}c*eDYFn&p(`qc(QM!p>MNcbM5h#?Dx*cQDT(@B2RTzEfr<9XfQ#e&{-$ zZ#i`6=iYbdeXP#dy;e4T)@ptkyB7ev5%a7Wj(DFb-$O5E*u5vqCm%d@*C}>)|3`P7 zLO9{C-d!n|fBBQ;PyP}9&zDb@FWgmW@qPF`_Iv2pF024k38!U&@cd;kZE!Pz9IDcM z6X-I2g$4q>;{owJ?G!G9h0$Iihc6BwpexlD=DBW-|6{*x+h1Xgu@sj;bJ-;bh|_ORB<|$oyw-BJ8IP`S!_0M z)-9QBW=jET8RQJ`0%`KhE!nsna61sjj~@UOy907OJ5f8GtHRh9ujU?mb$)Vrc{2ZM zYypz-{*rwh;t1g*O~L;Xo;YCy?tqa)Ml#Y1au)#=zTOxCQjw5ykz7t?j1T^BW|LPf z#B}0n(d~~#TPwt zlxgO@Q*(QmdHH2~a)n!p@A;*&6-ZJMH}hroYs@@X$;<}4KJzalHCLE9Z5CHB{@;%t z6?!P-!fb;&QIs2a@&>l4jhqW0Kft12W2I3^Vl3$G#?}7%OnLXQW4mdZd4|?k-AyTJ zAvjFH4G>SgYE?$U?ONo4ryhvZLbv?Q;@$ibJoPv9Yj7cv6LHRv-0tOiV-vUQ5(f|G zDrCnTbzvK`rXfW*F*HiZ*J_RUO~LaDrZdB=#!QzKf@yO=*%9-ap(`hu zmh$GRbc%CL5}DB;Sdjr_0Z$}*$wKgh?J2vovXs3co)MXkXngV99ep!$k-lz(yiQR` zGw^;|#$qa9%!RI5_kBg=47qNR`%6KHb`^X8*)t72CA{e2^I?aw4f6!md}t~P8TOt2 z5QN*&H(ta#{;gEoQ*+FIOq$tUt5fWww)HyWra$@^UF@c-s(5-Q-Q&>P48L?!7xP1Q zvN>Ao!jiB68!6P_WgBTQ$-NQczWNegi!44>wpvA2QV~V5Dpa^Fq0PiUf_8)t%~haJ zBM6)XG6AK3(^s^f&}PtCT2EojqlPiwXF37zGT52Juq6}m)HP8#6|INg^iA8|P;sW> zP{J>A?+}gRhczY8!)J769Zf8U(xt?$?}g5aEhnn|?v^fDD~WWvTFzvk6b9@Ho4O|$ z`;)X*%4DMHyV8~t>m-&_Ghyvk>TtrJIK5*p?e@xhXJ!tD@i=v^X@#SD>?io!V(PB6 z6=nf`&h!vxMEV)>?;^{6p8In^_iaN~1q&WS2c9s-pt68|!Lf&&h$!XzLKwz%%?#6k z3_UY`NV9>6al(Mb6OSvYLU}2pNv#eK%Ue zQM|zqkk~F;U}mF`F>>cqCCW@q84utU)$7_58La7eeCh6ad1VD6oyOKz+sUL4pHAf+ zzLSsaX^)p(8ZR5^3xEU%bQ<`Kz`48u>pN9IXwSR~*&bG`ozCQuie&RqHQlaWQ8$@% zS|j0y4<3BDc6ZZl4u?c_h;R~p`O2U#;8(z|V2J=2Z);yZJe8iRaW|Xk%vVNxq><+h z0K4&BhTXNbTVwT5zeeiWxnHBzdA9a$w9+^4+(k~4g^rD6ZmgTqh%XjSF0K*-m}d}D zKZ*Vz)Z_w2rY50C9XLcmT?;=jtLK$kz21aYY_ms}a0OE%h%KL;ZFe1GE?IQWa(?qk z>}mxo=P+dR3SS;JfI^4OLxFsIy{|R&YCy;U+iQWSq3CAjnEu2YLR*pVHZOAW|PN}OqK*#a&bQXKGD>hC5OGYJh|GC<4OqkgDb?S+$JC9DP90RXHz z?Ca#iMMF<(UC>g}Wh1&F2iP)hF(Z2!@}$>utk++?sF5G0tX=G{vJT8(RjBVF0*U-< zkWX}A; zLJ26I8V%b2c3L^O6A~b5>hyXY_Vz!#GQW5QU!zZhYanfwG9V9B3%@qL+&a6Q6GjQYzg*|-r!??m8xL*(g%DM6UU4fn*jzEf(mm6oXl!= zSY(eRS)x8G@U)y&>Pzy3llefz=XWEmht*_k=#w-@gLZWS_HT>-lTPH}L0wmV&3Il39F;536Hx|ca5v%`+n1tn<6>a^Hg7E0U! zkT15Z=GC0pr+5Ko1>jMOPb zpu-|rosLozN`6C*hIbdv5Ctcii2~)pNmpoiN-73dm1xiqTS<=Ylo)w|{W2o1EcrCR z&E1v$pYngjn#Yp=rMacsYqP1vr8}o*p%J@(Vc~vFzWx09+X041&*xsbaQ_oW)*e27 z?9qn?bpvVxdhQ91(W^7~n7)NV4PIWf2gNT!%?1Q$X#wtP5Qhp2WURw-xI$PJuAt?t zBEQ8Fys^8O4!Z%r=2w!{(bx6CB`(~+*5EhjcF8UeGL7UT(-WbTFH{}AyvD!7HAFl3 z+FnB|=Xpj1yKtJX@LwdqBIHhd#s?HG^H^f#OiBs+T#k;z z<+0nH*yDb$Ga7N)@BxIcRHhuwAdio~KAnqw`yQVfOUpsF=5_^rL9fr<0X~#w3&A@+ z7V;^!DYNWycHBNMzID03puQP!Yq4|Z0$#tfO?)PFpgOJbK)XP8PsHzy7&FuYvald> z+*0R#k{8Iku1!O`mq(7>dHjiEcTDbm<-Ym5U@$an^xuJO7l0=NAH@bYo0G(Z-mnwj~;%qR47l59r8_F3fKH-=hR57t~8m9XGk6^85YXa_KGLG25Qv58` z?JjpvPQY9*2i>koheMH6WSk}_;gPnvF|UNEf*6%Bu}k2eD-sZ74IMg{nrWAyQCOY4 zRkW4RWO8vwi?LKQBQDMVFxK2KZ)^YRpsmbGZM7JY)zKULoxHJHcFIE7O8xR2DRxycLG83h@JApQ$})3mQTV;+ezI zoHl(T%WYYPhpXrdmElBh5a$g-M9yElAB6j^_W~8;KCR8GZAv2kjPJr(XqLy@iViz+7@AFtNrQ zP#avLk5Fbd3KDMuL=tMmv14m%$Bv=!VSB-Uh;hS+(Qs|(->spX@fAf~!fbSD{h(8@ zyW+92(E)BI_fH;{sgE&Wg%N`>7=g7l06C%V;XISS-}p!mS1s?JKI8ge>$5(*pRiNJ zY>uuJfg8pbybcy7*8A{2k~WQcsaGR+8zx-rZGrBy6caI0F} zK{;SXk7+<#DdcI z5;KifhAAEC4`rO>d&{8aF#8Or4C5)NdvCm8PL9B8xA6mBkD(AG@@%ukx}A~%mM z*}916&`@kH6FJfOQPdq9UB08n*2hShd^L=pP+LkhPOR}UHcqci%^fM5B6|3|>8IJ| zf@uioblWrt;-uSL>`1vbeg^O%*ivM>wW&01V^c}PIU=uou?`G+$WO^FWe!fw@c|f; z%S|WZCUE(n|HJP8bTgn`zhhgreGD;=%(|7YuHkL3agX7iciCFq$153};u~X|8|6a|quli(I@s8av{^>z(&k!TtT%(x{swA8 zD5!8b1brIzht7W5{nVfF(|>bi-BE5}bFYS+!Fb2UXd%xCKAA~aSmSRDmIr-n{B*Q;y89JOFtzHu60`qrgJ3YW3xdA2Dp<=C6De2o?k?8 zE8A}fh!tZLj5wK_l*jim6txgJsGZ^wQ8w>|E-iJ={vH}B9pxHa4>84~C(vk{1w9{f zLEAKZ$Q6yZ-r$fn^h=X7uhodgdvAW4s*U{2A&HH<0beVBl2=H z2n#ZXr0>7KJ8l$*16}%o2ROae^=xGMFKjANf-PmBb=$u95z9FM0k^4X#Qc6vR4T@6 z`#zBIOj0-Z;hhgWkcQvdco*Jz|NZz7b4}|?*d<=H58D?%(ue!Et7)VQi+ZIu>w}HD zAZ_jgB~iwZZ|cNVK4ky8K9G5FOYtLp_`&~`KG0&?+=u>`dG|N<;dQ*ee^noB(D-dF zexwimf7q_3k%>r%N+F#CW0mkRMEn88Tvy0fA9g8@;7UHbVMIF8c85@kt%o>n0C*ef z&2Tu0^!Mj4iFBmjXU$9}eA=D5+^gP%V^!@2Z(K#GuS z)AC!@{rgoszASs4wi02P<8+a9a_oe^g>b9zZzrSNMw2%kB$9N zx;5JWHe7q<6K79oUfFF9OeY>sRR_@yX5GRKe=hCm9TEoVKiH7wRGa;NBX0yYMy!0NwJ79+qE2d_Zki}xRIUT=1 zXiEX7(_NlO*=<7Q!s*BJSVK55OMvEsJ%m*I{KW#9N+?J!11z+frBEjL<;HwNh7FJK znYqaZh$^aja53z%@#n0Dz>y93ekI^1V~n;m=G^JMXj1+R1w_rg~+ z#Z*0*(v%$&9J^X{V0qO=FdV-}R!!)VMsQmR-3x+a*@^Sql zC5=UL7(CNPBR7A533GlL2m4wZsjg@r2|nhltckrmfxV1w!|ILkCM-8f>yB+hun#o& z3Y;w9iUZF%II%zt$K!s&h-5_qykD>|B^@tlm2@~9P&1)oC{tkeJAH9`ba&*R&T65e zz^7;MqxQU3LnwOOwX9sO`pWt z;&cXvTZM=T?K=3r!t%W&e1mCM;v3@^6b4_?*ODC@a;brNpm!^b|7*)oH*?_gEmoN;wDftDn+$ZWuR_$3IAbIrV9*mhDzq~o?UReW5KB19(6M0;`I0s z5^3?8&Az~5)C;O(HY3Q_ZudK7KTPf3fV*gQd#rZ5l#NO=>3quLo|+0F+tq7#?FpKh zEpA^ZREo|fv)DY*SJW0FE?CMXhhrW|5$Ci@an5(l;gO?}g+)cOMM8yaAa$fTIm1{v z=(lDqq6~`zm_SpGvv$o?MN-g%pTPncx?a!Www|t z77Hl9(~9HUkcG%zN!S~kaRRWz$%(chBXqSnbmjcRnewh<$97>+02bEBkgzd%&^P73 z_x1Psr+f!>JvZ5bg#85ss)sWil3e8J~4K(2d{ei$yPoVVwoLEfw(-J*pQ8&m2(AvOQ@-qn+Q9ZRB-=mX9vvU<`$4PR~P53nM|7z~6+1V5o(I=Z;RL+=pe;p2rWyyWecpzNS`ixa1&;LAuLpGz1aeN0JKhs_4i)Py_$H;wir5eoeaQV1l%;a)geN<@PB@4wm{4Od6s)CJayMFFuJQuFh#l{K3L#?xY{x;Lt8O>7!(AfSZf z*??PKH!%817M2mcY*@Ci7Blc)#4f4;X^(!%y#;z4ID6BUHE7Id3;W8}b?D}`ZWYN- zGjp!by5{d9U@t&>b+Wtj_h|9|{Oxl8M@;VDU|C#JEhdvi+yU(x_puS!n@&&&s@-J6 z(jm6J0cSgKy$I@yNEP@9aZpwSnN-+sZulNIyV6$@>|^ga|CqPn$#^^`?L7PXkDgj9 zUG>fT>D&JKFWvK)*PF%#ek7WN|Ms;vy#};ItYgYaATn|gRT_$B;OuM|MdW0`lr(7@ zGro2E?cPSe-2&wOsNPR&^+4~2Wwx=G5@aa=GMV8|LcvU9RxLG{s~74Y9`PG_mr;kP zZ{v$2E+RL^>g!+Yk)UVn#Z~knN*>IF9mA)DL;^8WVz<#As293`DN>XU2P>KsPAdQA zVzo)&M3YT{P}C$xo1^m}`zT-VnSVTxY5i0OT-zW_($2pZgS?riafg1oQ zPt{^nD?#rChJb)`^JNB^37)Kay7{n0gyDI9qhFQ^&g1BJTqXGn*0nYqj=?U*##B^_VuzjC& zX#XLp_V^d&nbQ8!j9lO>=tgF0YX8(!1}7*XLT=9F^)X*G>MI?N`P>jPYr8osTig9> zQ~Nb-{}efO;=tuJ`L}W45Qa^XM+KQ0`^{-HL>M~I>+lYqR}uL`aVm>TVd#wpDq5UB zaH0G2ATrF=z{%fo_bs8XnJ?VpRSLz~+2gabUmJouNZG}};rEqlj{JesrHPqZMJvuS z^EcV-EwlLRKRv{DxVkr;1dl{}`i0*%GqlSFyWAvD8Yr)*fkiRU5u-5((IOx%&VPvb zJ~)!@XK<2)*v?(|7Rr|4axivzi<+cx=vfYtk>cTF69^mo8h7D~#3F}YBYFMgcKEYq zdCb?ZLydf5h_HzW-#d;>%#?)#qAgomS0iRl1Kcbx*01iYXmY&p0x>U$fhAu_LWJ56 z{OQ|G=V-O)Z5wz@LTSjAb=aT#SUHy`{LwVTNz4M25<(-!JrhaV)c19Lu|%+`#1lwF z_ej2Erm>asW+mf~C8Ca~3sRdaYIWN@31}fc!V%0_H4!c4ezlY=G}*nyW+C}IYCIbJ zPr+!MwXklmda7dSC>g~c^?5y+2|J?xCNeg+#qNvxl}y_~80Xon3bmKRZSy13_AT&3cI+#7%r&5}0E?^wN|)kT!qA>V8(A*FzwHO}AD7-^mpv!Howr+l z|A7Y(isZeUdEGyBdHd~sPS-JbnsGXhefl(bp*Z;il)y0P0Z9^uLHEfb?ry=BlhhpR zq)(nopTghC^vQP;3)Jt*-q*d(D^tF^2Onh3*YR(~HC@3Eg+Kl2FapUjKhV{^@cY1< z{{;B1eV_=K8=$rmEDN>(ev#h1&SM&u>iF2tLEOvmKc{U2y&b4-~A=rUI&BH5USL50n$O-%C7TQPe<6qA$%>dRa{dPA8V=0_#K! zmqz>SWX1?CLWN}_;k)gm!y1Z25%~r zfcLfplj$PD6>2YNsf`dQ9?&z{McqJFSv^c*6R1osJ3)<>{bODQoSbB(}rfz%x z!FKz(uT*WVRpu9N#^!F?Q>SGFXK7drtP@}_18_$R$ zK%zhXOpf_;e3XRi`&^kwjXcK(vkbgC`bFB3N;%+=Ak0Nmiq#GeeNY7icYrv+iQjIW z*blUR4}yTpO2BTJO&~)CbUL0$ti+J|JrGG*Y{(`roAJ)>msP)9B00uxk!&T|ugVDo z0ED6ujF!vc^t%-}q5Ir^yM!2Jx8LcCM4=`jKDG;Nrr!aFHN?Iev&DdF0&$XoO~&cP zAFSKwEWg2&GvpaF%rlIZA9q_|E$FeEeXx7@p`oL?L@ce)LCoWPdWm|7@aX9^9@@OE zhN9AZWM$=%Ha#_m0HizWE!e7lG4ANMhj^sMI{G|2kCUg!XpGd#cap@b}btud|d0Nu34NhK)i?^)f=yu32XkTx83?9p^*XE#o1h{$W@k70S4Ej!=zdN8rm5aZUXF9jk&)fboopk9;9trydgfK!5g z6j*zq=vuD_<&jx(1|sS9tdgFnB6`N>3VQ>-o780GUGzBMMr97 zK%UmU2Mj+Mj!j*Ki3LA`RtqPE{zgwD1A(xubWw)|vNB;$5D&M-F+x~Mu{&|}2jR7V z48d#LRn~>K^5&{wiGZNoGtO=idpyhl%6DaH1P4yXE`r=Yuh@thpuPs=B?*rX>1&OC z=$!>p94ep(2m=(Bz3SDWFA#6cUfuu%9gpf)9PlQO;7r5{;%HmML05Rx2`SJBH-qfz zI4p5ob}RE0{GBM{=hnB=^T~INyza*6+sZ>*z7Q8-nDsM)Fk>W)a{)Fi$R8y=danzcFw=wWjoe97QxQC#J6vg34r9l1^nSuUJzKe_a(09ACk-+! z5h@upjW_rmk;pnJu8n;FmD)APGgT#!uD~=F;B50%VaGP)M3L{Cd;XK0s3O$_=^Fir zx}lKHW`Av?=k)xyHk;{G*LoWOmTI>R8cg#|$b-{}I)d$qb1{VRJMfXu4PFhBjx8AU ztb`!|vkYuB_HV5L_jPx`I^}gJ4llA1(ZBxlLNECzLQC2IUiNzS1ru^jvX0B+akZ~< zj9QtVueL@tlxr6*^shrtMsq{5Oc&?(?||;cA<684tsZ%*p@|ZiJV=j+wTIC+#1t_8 z+jao78p~A8sm6sEB_Wwn&eepRm1e5iGg4NDYgEMT*4zQhGzJR?tBL=cwgg?*uV?$$ zvYtpJ77qV2x)qB=SQoRWMxdmNs2bfEakt&B_6GSnDY)C?+-L)q=0cV3!S(!EjQ zeI0%1(me4V^^p0%>3NPmL)79lf9G*qtpOMF&u0Iucj3ZC(kpXe7tcNN85`?ZclgQO z)~Ltjsa~KtWBiHeGon#|Hz7#9uGk7wrke-n&ZBAL5b8d=TnUc66x`+q7#v_~RU_WJ&NGIP`= zhcldsQtcl1Sq-U&wa6n{g!4V3UW$ViSVF|}Z>_ivKt}MS^k?HuKtSy0(sTX)iJIkf zi)Df_sql|4|6X%qdICh(RbBis?Hv}qZbwAa?R6IczRWNABpPARcyVr0j$`scrZWZ1 zuZjmT!Sr9i8dhkjwHu?e$v6%ww;^}+vzqE0Ia_$j zKnSU%cSTZ)u~kB&Jvz%>z)}D`c@#@^Y_4Tgj~~P(4c8M^gP3tx>p(+B`z<(J%GqHW zZG|xc#{ca`LbRlLli|?Y(xLX?vE8U}zG!5vZ`~y{=HPY)X9tb**ly9sSMVWXuW`%a z=KWTpwF}N*ytL0;zYb@~O{3Mq?hri3usq7TxM^+}+D5t9p_43(mx?w5#Sq?Bz1~>a zqODMW8nIY(){6!}tKf!0*mqc8|KDF~E>V^m?w`t|>72d>pQ#5LB-`N#jcP#X%XxpRIs;QNgDKtfQfQrT(FrqBU9gKHm@Q#JzoQGXa?@+H7F0OYimTo`5K4pOnd|BGAQP( zfewIKr~#`LyfF+B@qJ;p92`Y%uJEfeO} zp~erJCmwG;R^o4#9;15bj5O*YswbS=$ z=N?|z&8RJB!w$OrekBlSx?%AR1p0q3 zHX%<1l~N-Sm8XeYqDvHi9S^)Bf<`nA`%rIJ3?6U|Q`2+{-lJiFb~ba}I&T?yelN%a z#x)I>0IWFj>Bp`lvVf!4U`Yo`P7OrS{{d8NAe>gjU0073(p671IU6o;NS5{a5J`lJh{u}{^Ty2tzgZD&}wdomP!+78S z^||}!N^|q`Z^Qp(SLkga*I^g__zNo*u5l)|v1<33j^G62*~>YqCFub`n9vbS4^MeO zs66}^K@8|bjakI@fkG3a9~51JE`VNZ<;8N)SI+ulzCbnC%uQD518*hck9z}?_@LT5 zLGx2e-#&A4qI!ZRCfg3i<9VmU3C)2&+?aOE%s8f#+kA%n2ypZ*?Dl=6)9GT8ps*$S z{sQ|S&=0$yWhlZnSqBy4fLQfL&D_9ZuhTnl`}WGHVoV)oc!O&LI4Kye0kC*vazhxh zVrS-sNsIep{fwUNEpD-CPfxw2)09h5%YL&(EtA%t@|v6p^@b^1K5a!ddaKhKx0Xff zx54^f2X%9TD#g)O6SL%C`hpEff{cQLprOLtR1X($AXQ|MG8%{P4R-BYsjOs8N3!DI z8`*s6-+!=Bdt*|ISZ!0853){w?RoorI+C&>VOUa5*^ZWX+fVoZ%CWon+0(ZCVlp!W zjSSJNVO&9lI6LgXVG7+b{6YAka_t-eiV^p@(AaD=9C2Q+c$^U6F3C&RmgLQL!VxF< zHu9+;sS0v?XmlQ;J!k=8U%R1C<&oB;-G>f?6KSyakSf5HiF3Ff%uz$wG$6%l1T2O> z<)U%|iW9JpS2-@*)vMnf$w~N0iWTp7xf_H@>ygZ*_a8Nfr39S*V9O6D5uWI${U$Lt~5iJ6kKrjtAe2EavWZt$)i+@HGW3rFBer_~2MT zPDn6@a7I|}D&zn}chzb!_!xFNtro2|)@s*kZLJML#(5U%>wjl|!G0dScB2gPG9kGa zyaSYa(BXx_fi=_;_X8T9e1CCaNz;~|`LTLct6$*H{ofEDVbufbynCUpRqH>+KkC0< ze8WF_2Ym~Dx6yXW4@em&cy_?Blmq-fV*dNrI`3x5cdxv;Rb|!Q+wT*+mC(shoMr)i zg_obqF(%=qgsdMTGgATb5Z3&X4M&}UF76eq79t@JJ8XqCW2g0+3ec+IFo_(hy923N46g? zJdH^aFP5Qy9kCRdR@XjP$=;gq1B*G*XhZ`3;J$~$VARSG0Y#fceqJ}$Mizva zYzUnGz~xJCACe_6lIRMoZsbS!qJAPH)o$%qxJC05gxKrytUsO`Ig#1>Nx>hCrH(8Y z%#X;IF46u*pGnuj@teqUN(^NXd^65^=NmfCH)vfA8CIZITW4$i9*jOhKBRlx+*^G_ zIIxiLK)$e41Y6@csLlJ|P*@I@sh|#`VVh8Vb_yvf4OLTFKVV-Oltn}q90+xIysSl_ znPzH)X_~2>8x;6z<0E{*YkdageVCB$G*%4+m5c^;q{{j(bUQJl-U;To49UgM9GB~|D@r;F@@>m~1)Ej+F z)(09tS}QMF4@T7B?6#?AES2+?+De?;qqT)h&U}6HHM52_L%LGaikXm)DKK%{;ry!u zvDkq*|E^vB-`YBozir#Q*QTxHaw|`79z!}C{)K&mJ&Rh>IO`~P$u#H{~L{GK3_MVdc)busbpE*cd&daW?{jn{^9adLH5Zb@3cvh?U`rj`Rfk9 z?L9X9`44>RQ=j^%^s}t^hRCI(zkc}*=PZ`R4?pzKhZp&=j?)~xDcQbAi#>xg?G2{4 znVvIkn0}LM1;)(GAm$K7b&VGnxyKVi;y@GM*STa%e(%Nwq!uCux1a|?zyP}QHBdMF zYwH0zIquP&>q)*|sJAH9w?3I4aJb!$gY;CNK&XM@Fc8eUp$-`ch_Fh?>gx4#Hm1D zsx{6(H9k0PwkAA|hxHn^e7Zpm7quJTp`1AXRD6KftH&+Y)2B~Atjli{8%)?GG1A^b zyFf$*0z3K6kb5F2Z3%k82JfRK2<>ujbs?E3rHl6#0pp!?UhP1bnVdOtaP?M%ZxnX@ zc?i&pj?ka)DwNvUY%81X`4ax9OPe$mU#+s?HR0GMYN#PVv=$OI}f6qKe=y|-;$%khM!b%+!{hd)f+v5j|D$uCKj#Yu zy?6iC-QHl(_XWFDJXW&-;MK;TrjH?E!KFmP7EQ*i$)q)!R>8=NGo9qf0QeKi6$)L0 z$hZj&59O3cVoAwohLcla5$zzNQO5qlyCp8-nu6X9k7vVE#KW_JBpwBGz@{KNFUy!K z;Pl$iBH%&VvRT#{T*j|{7)eBBThQ&axq_0%?~*);h&k*_ls}gpmH)~2kTP^|--X7G zjcIIYH%`VI*{r-ngW{Xo4KS8V*>CLBq=(0wjwHhy#vCFr0-QMKU@a)!y|%F{2TC2IDpT_g^>mBmJa)ZU24$b2L(S7 zE+BIVamDz6^2x%Lg05p7I#-1|#(lE%y@Qf`U;o<0cs||{A9v_we?$L{2n4?aPaTcI z;t(s>Y|7AO1?B5hR7<=DXi>CUjfVL7`5m4co}(RsazfXlKcFUn0%Y`Ufn9;OLUUh% zwX=g4%yfnSWV09a{}_(ZHCQ6e^q7nvM(DSh+mitHZB`l}6_pG?o8d;enU{Z0#Otp% zmLhQTMwp{nL1aQ2xYDJ61K)u@5f9iz z)Gc`hG%7+NKw!Ybm%_80K=Q#llaNq{BcsIAI4r{F2~>gZN-;2fDB%O8*GCz2B|f*D z3Y+^i0eQ9gEK$Ige1(c=%kY^dLM_npLDN4o5@g;(Qh!QlVJT zveaZqs2BFyXXcCMP!zA+)xlLC(!Yz-G@>h5!@3+w>tG4Jy2W&wytW&2LXuvX6N?$t zw@eHN9isSb36c+F7+qCInthI(0xVhbS%t78bo+UGxQ-)2ZovEiiiedCe;1F_>Giyv zKf93VxK`n6v`S4Ee)?VD6PV*gja+Y*N}cLzwQtV)gGCL9%(xSf&2A)EqZbaZ`yG?V zVtG1~^RZ)h!hV55STOCF-0ios(v0xm>HiR+#uwJ@{@s&~bTD2*zcG*K_cz#kz+GX- z+VTZNzyb^$3ltCwB=7j~zfv=kU~M5)sijQxTu~v;5r#O9J?bW6oGWE^3mnwgjM-{| zC+GA`BpkC^*c^g=myU(1cfWS2vOjP3!z6KX@t!5dnvKa+B-`8*33%kmeBBrJugt>a zXno4+V9wf1BvhMq;@+pM7IWm>V~-pQMFM+nyK6#g2H3wb&!1gfeo%clu(BM^uB2u6 z#lWt@+(WlVe0rb$9DDjhkWaAaOHc<;`w`t_2&c^S+~lK=o=K(7Jo@OQ8KVZT#qM*H z{5?LMd_>pIa2*(5=TE~M!pL=DVmZMOQDRU`rQzIWAuTN)bv$f%!0-%h3R0}Lz`Y{? zFm}i4YI7YwefT^PscI7s-{z77!d1yH6~>yj5qFQtVc1_Pw-XcZJE#{KP{%3;)k3Yv zOeyM?sP0~W9rTY~?5~3cvWuvs{~tP?)h^ZF1i%rhCry}u9V2f)q}4#+9}xe5C#&}x zaSZLzep5#geJNKcoDSOn!$6`k4hhsK9tgK9v{=*VHr6nfaS}~(7q>IAJL2M*ZGlVG`3kRxk=(w)p^t*Q9c~k-=-YWsLboqkPYF)jG zvkRWd!kL3(;oguM4TA)j5T)9Nc|qYZ8)D$&+~|1rT${qgweH;j&??R$mG$^@%pG= z{9g2n?lh{zZEK=Nx~VRK?bep=9!42n+9LAf*Ttx^fbTrhUD}ymtM#p@W&povbytC0Cn(UU|q01MV!~W3ujxpEo!T62d zrLPkGMzKKjdujL?9}D77p&58d9Q}(h?>FJo^>GA^zk>QI9JL=OmL0M(xGrKmj9

sI8*jO$Q`uC zLvqRO3uJ%l)=75WY%OMjA-hzm=7#O3@$x_mKsn%qQ$!BRxG>aVU@Jj|ml;}1^nyqe zdkRjHy=0MD?K!!6Jz2btQ_>UmREu&L06=m$%G$-`b!dMX5+C3@Ia$=@JEIcxO)W7SQ0y{2(Gj)@2A(8d zqQ~5ghi5m2di~4ucQ5gjM{rz4q`#&i)}JBrg>>)DJ&&C9@%&0KsiP4&`!iZ~1{0Mi z@i7qfx^WWlT(!WYGb)71*T}aNhQ)zcFX}Z}#4$WWeRy|Jd*#R^Pr*d3K=1xHZEpe} zNmkwo=F1}@?>iz-<*Ce+GIUF+tSYIhvg_*ZI{Hra1x-;vcO!Lkc&G;34P;~RV7f5| zTV)O(1-8LRzJBb0XFOh<4aQzDUN2)y<7;Mn*!5NNj6DnOYj?8t|GgKH8Iek-go{#LL3kl@f{Npy=`CXk(oD(a!jnjNuoeoP7>i1;s;}bGYa$bAFvL6 zScg-v=)fOlt(?T&^M=kKqQsz~%RJp3$_{K~P2)YgzvKS;*S($hdB6U@`0h`{>ngtE ziPFlsmC~jN!38|Px`@YZlqMRDiBf5@(U|;lW-ivG@Tz8PE(0TPX(cHERdsd6Z)qB<^s<{Ur%vC2giR{(XnHoa= zX6~7-olEFCvdBA>K{dszERrP?u#Sk*Zc%R3Ntwe{3`p2vSKjAzK3nsn#H! z7XBST3DCJhIzkPHM-A5?<_pm*6mEfkhf5WaHuNCF87r5W*N4jNX)TlRt%PIp!h05E z91p(9Ne?OrH8+xqlGtc^-7eqcgzxkIU?jYfx-?Y}mqIyDeI=6ff3$un?LJ=onPXo6 zvzZ)A1rnJLmLubl=j%_@v&r+xUzm>-LoZD|S`J3ejolyec{3TWFC;hLU3I82hjeMt z%a~{BlI%puw#xI%zkMQvnlwLLIpPn3GBv*ula)}=f21;1oU)&fg~p?=FF!s#p1&)4 zY~JNM9|~3D5EsES!6&Kyt-ucCRkjuA(=I$(NIdI^2W!{Ycx15PDVG1CsB#-yj3Brg zjIBZXIOZM?rfgG26aQk|h0SjQ93VcILRKPuoP6Mjz@dMyRVe6bQ2}CShau{`vxjo> zSFc^gGm%Piqo~2n|3^URHe*m>umIr~Hm+p~{L$< zro3^Kg3-AOy~#sE1mmLutnEn3-vx}vH9uY=-D}-t5%>QG8*HmN{ng1d!a%LVkCo^io`t5|f+o}a2uou73L-uAwb&&zkt z*XQq)jW^$ht7ti0(8ax-p?@&`*YpqkKR>0wAOWMrreGp^KW;z=64;Yrl67LBE&^)% z{#7H<3CAGWfuWJ9NLf;aV2V*gJU=fxfoOP~=g5DfdD{^Z>{~>p0Wk!8pz~5odpPHB zr$rZh{s*^8;njz>3>vuzOtCxG{&Ja%QvgoaKPgA_8Fo3&1wln!m#l|7zp=H2!t^>J z`rLfXG6J6i%cS+gZ9jY*+~9*W?z;5VA9Y$JG!0BoGc%1o{Dr99S){0C?6mTRmQJ_V(+3x-X!4P?S7_c+iDVa|p02S^p65GQ~@ z+C;9fv3B9>YAU*qX06@kzM7}boO!DEs*n$28+G9Mh#amqStqb)>Njm?&LDtLoXOi8 z+Qv587d(Pw;wZ&`jB1;AT!?_yCO=1oHe18(w7KW9wXbiY(#OGl)1&#VO+Ls9IR8^0{ANVgDIfBhROUvImHb0&YN)btNx*9X{ zD@UGa7IRDU4HQO8sF$XT$I7tjIwZHZIayp9tDmdq^Xa%lJs+4n>vh5YTbRgYG7gv1 z1qnHpksXeZOLqH%$bSLkfLe|Q{QhtxnOJ&VcC7hC^IT&tlN_Ia@XBO$I^Qggsd2y4 z6;YSF3eZ#sZd0X-%+p!!lCl9@+0Y(A9%4o37~_8xx9X+f0ccL z=bY0HK*%jW@W||kZ3Yw~>@|wQpve5h-MM37vg|UOB%R6iezCG8b=m>XJL~M@xnq9M zuE*~@le@IFwbktW$Myvj*u}hvx$Ck!&>C>{;M${HBVl3Y7B_Ks*4nvo(|yC z=8`Q08RDLP&xQ64x*g3iU*}{uq^JkzkT{=>fR^Jh*^;LiMNNT>RiqRG;S2^s7MNGx zj6*gYjz#YE`Ml(4L3kz^@(`%G1@j@82omlF-q<-Q=I;R3eGVo#QFf`m)441d3CO{E z1WkVm*+k-3fHIIM%mv2-PIl2f z9(Fi?z!PNt7#^NC=UdkweNKtmAqOpV{ z6_H(0O^$kHDVYpMGjkEG-uvgk^w{F8*0f8x;*3Yhz>*M{2n8GgCwUi{bCcQ&!~(os zdaVF9Q*uTDun>Z(o~&0R)kV zJ^c#KF0#}nxNjZ(K}Bfeyzk4}z^RdIIx3QoX@L&(mE4Qxb5rXACuba68`^F}$&GXD zqxVnj5FXMOb1&f9HceWf>=l4X|I>wva|~6i`eW zK>iSr)8{7r_{||iBcy>N%>hav6vK^xx8#dvV}AUr;)`b@{*w3W7EmTpfKe2Syuu4b zt^z)%3?!acgXz6jcNrMPUvm0QDj{+pFRb#RH~Lr#S7JXCePXg zLB~5(Tq$NI_F$iEa$}XI!GMULZM{SEKef~e0mg<2iF&=%A=%@>6YX>Ugg%k&n`)dk zY%SpD(C(o05b72pv{}$ji+(wQ9YYfa=X*(XgysyEk{YIxzC{&Mif>8aXn=(c`-Q$K z6_-)x8r5oA_PHGJK+68t$6_8Y_1OFR@iY~qmf*ayq3o#a538B)cgbP3JeLUAH(M+o zDJQ9Fbnlm;(N-IDBSZ%UP}tWec>)h+PiGwXsP2JNGlUYQ^*U;ihEVO*vnB)o*c
92hx+iGRisP~?k z2?=Ao>WL-tiBrJDkFxN>cz#xTV{Ss<@uvMvV@XJhgt;(^&tNTZY%=m6SdkXxW{pY| z-~g~zd>vgv^*hUJQ{DKJIcC zkl?8R><$1Ico`d;|8nC(p1n`#?Y+Gp$ZfpF83=8ug@XD9nqv{u{t9fA!VW|>os2%y z;Mz^>CSu=&+Frymbdkj145Irs!rY&2jfc_uE0izFHbmN$HHup?T7qId1cbOgXvxrVNMEJcmK>~_6r(rP z57``APs84iRp0CPNZ}FUJo#+KN(uqU^t-k<01IawYt*{FmuQ>`(JP4+Fa^#8hD-F2 zFv8O&D2AYk2V!Q(nnRjBk4TPT3NV2>-Zyo>UWZA+G6AnZ5+_t^s?W&XNS)zn(C529 z_B7j&;VjWe2Nt>MVwJjr(&NEnaBv3E@JJ}u zIWeUV?HiM>by`e$4q{zmG>pA~mAbFisAVURMc(kcEiI4U4}3#l9!Bm7p0ZApgqfnb zA=%m(pNZjlF|;!gbzvAMM(qubPmUFWr8zt)m^8jB^p-`R^)?e&lgQT`>=0}J4xSFN zPmG?{4x9|yE9Ne*A2t^Qz9edu77fa1#3|%t)D{sHOObuPGqg9TX>=Ucwtc+GG6s|j zN_fa-HUMi7jX9L$QM^dyH^g?_H`GR*R5KruvMjuGsp3vUs8MF)44Nv<_L2qA#sO7UE#ssFvQCsqOLsqefv| zqXup5mSZLmMg|8ER^CA)28SbZWvz6tiz?{m^VNg(OjcrJuFHpx7AU{PV8M}SZS#ON zM%6W|M!Oa^IcnSPp)>?GD306IC-#pVW>M#nbirY3t~|8nxFlhuQ3yZk@X}N0mi(OG zKb$(RB!{VaOry{c5l1e@)Y7*@SmdCGhw(>(EYkaW7;_w~$-!PGX3c$dBUdGDSvZCF z4KA-Ve9Lt?YA=&`MngJ0pek=_#M0!|M$F?l*voy|4_Td}2Zt?B(U;p>pZd5_;sgyF zv854M{t>3}Ldxp{4oD*i76<`rsOU3Fx-kmYG@s$a<3{d!Y7wmgz17N=+H1V2eFMjv z8pQ+6v>&|i^d4x|#!M2D(V5#@Z+;z*Bh8o5PM_qhkl>(u#S+ z_|Z8`b+O5Z0Eg}(L3b$SQ3FZ7Kk#K>vJH=;D3DF3zX_p|uR`-01RmDDb679LJv@N4 zb*ZU+1Gp=iGL4^?>#%0p58t}H2ZwE5y)%dHUd}u8v7_4G5ScM{*ifT~4f*}UBeo6b zx&5PM-m@;)Vc_+q9ctNA5Qc_ko*^=NduY>OdQD?Q_ri%JXgq9q+MUBj21Fk=Duc6t z>K~K#Zqjgtwmyopjjn>snHzS>_U7g`Rx_Nz!%NGwKO;QnO&BNWG@u8BWI*%}B$zH# zRpQ*K=uj7FB8+DCjUxJ_>m=01kk&5xWSN~Isn2NhfkT+yfvuYbn!(uiWj~4*Ic%$r z+Nivc`>2&S*rz0?@pVVhUkItUj3EtRegE>~w>@O+`m&!v^I>a{%LhYqWH}{7Ck|VQ z!?q+sV(P~T7jNnDM^lh)~& z_8i%;#?h)-S=JRdOYipvx3BLXTJzo65I3hi4&78=pQ1go+VWjz?UQ9ESk@?M%trTy zCe||OWh zSy3Kd!@S2M274DZxHQ_bU8`nc8E4T3thxL8WZo&3F&3Khh^;d;!W!y)qmze?u9)wa zVW+40<~B1U_GQ$%CJrU?#BQ~+H?XpI$d}G&1Q08wDSXQH1#Vs2VWCr5PIFzuA=Z0{ zjlxiJu;fPADXcAG*iGx3@JJ{&)ha_+#@X1-)?N?G7N$WzZCd=pqK0Wvx2$w^1YP4qEJk^N89l>uViSln9{UcA=r=j<~zD zKgb7sXoEv=SX+A(6*opN`T=hdZE;O=e;*HB_Whm?HEo&%I*w4SS?}~Ai+^wiCU~SW z$um%423BhWUSJe=A;q5dy?A+xmB*7MN#FYXWt6mGmd(gMIpFM^2yT|+o;(Y$72I8@ z()ISxsm6QG!y-iy%6%uOS%&M|L`V18GU=9GVeR>$I=^KQhNv;^2dw|WT*&bJL$c>{ z0j+=3*mpalWDyM!hx?9G+}b49$%Nwq85leTXNGy9ab3hJRACZY$~6U4F`skly&c5x>1}a%oqpxO;7K;~wKdS~9Ry3RGCPi9_VU3>kW9lZDsY2Cd124mZ| zZPMDq@h+D~)!U4837iC9^t^8sE-!Cv;DK#8q(PY0A=x3Z4mm_hZNy>}w;s77`OVS5 zzEx=+&%T|r-;a|+G8|A(fK1G5a+rH_*b3D`z2tiXi)Q43!H01FPHwf3 zK(w=e1kGoLn_FW@+#NB1qjxiIiV%ipm7^!tk&fxC_ikxcqeWgGFpRm z*VpwG^7o-bBL@qXdi?A=HMqHU)CoH{GYnmyygTLQ&tG4WhuW~PKi-K$PFjj-Aw07e5P?Yc;0iK{PayX19K87o#U}w!n@m9pa9fa*0GMwI zszl`#%D!n}OdTRqfkGUBmqb87NC_l#drIYq;K5KHG?b7E>fBs;A()i%>fGPAkU_u? zFFc3C)st0K1;{uhvUUp#<+PIU1=M_D?%x*{##3s-??(vE+9H>$} zS$b8wx`CoYJT^!4L&WBYc!(oB_77r1jg~W(0Alj!eju1saUI&@ z&IYQmZES1}2>11Nf5jDOZM1=ixv!JB6c9BpYOf9`Mwm4MP{kj#13Sv)E$YiP9>t^M zLr|zUf?ENvL#e|^W#Aqn1n^Muu!1t$2tZ0S8%D7#MDb`K^eN0gSH5Fk7uijhGm6Q+;~QDHr_0LX#tm;snsWG(g7T8FJ+vf4MGqokrYs5v~rXn@Qq z?ZypVSN>~^yBF30UZJDHOIstot+|X)W2|d)evCIGxIr>ZnY;Z>l9| z0JPw>Yh)WBBK~Jb*5P$18eQ?i6nhURre41xND|Ztejxf!)g(CYqz%TKN0>jB0ZN1p zHBRxIJEFyCvbXii4*zc&jjjRd5qUvqJ^Hd_e{qG{y^BSb^+iss0BSnBi=sckP*O|~I4{z-5D zefAxl7LGf88>0cSgM*(ESOM6k5t^$L7RvOtUi3ykXH3YSpURy|W+sjtx$nqjfkUg4 zhyBpHk&Kze5nz|ENm`(eQO~0e>bkTtl>Q>-epxp$t{pEC*6@ z)3&<{Fdev~Nv#;jxV$1CFroxLmltdECdUu*gDcJ;-|aNcxCd>ox4p^sRvv*zxm(DP zK-L5z5DnuwwJofQIP+=<%}0hT09}#JHHcWGcXViDHWz0B4u#wagv|@KN|B-hrJ{yE zCjjqgSUxLWzEFOkd^&Ufq4Sx~dqeTynKQw7C|1JP zui{eiPY;(%xIP#!m3R6VcbA?hC-M(G_CP*SeuCleCH!4~xuht$QYqI7`BK67Ry>&U zg(9UVOCQFSPwW5nM`zA_kf`|Jlcmx}#pN6`0Rk>#9dJ1r5t|fCd=xnWm<=#6WJj5V zc1vAPBt00pCUTL6qKQ-(49gyDuXSbVk)@?ao~EZIUW59+vlA0%KWua^-}`NSTx#PT zZMUc`qgnGeC2PmrtH8VX`n|<==nm zsk3L#4koQ?EP-0@NBXnNS~OXTa>+W0rL8l3QqPo1TeKYhCoxN`(Vz9FpYWSzw7=hW z*<*94jV!eNKXNqgZjGG05iOi`?A{h8lm+A`SCZC<~2jocM!%D0)q1#<3Z=YyBbDQ+? z)09qjV&r_f#I)gA`tGqs;ewXRJIw@$(b&rCdEvjpRf;rva^_Lp8KU@_Yg2Ta3HD&zr)rO`w{7R zHDur+0}S91z=o``aG{=D4i~-o&qz_fbj2N(ukbgXup4gzGJWy}IpUWdE?o>n)PTq3 z(;olH479cN%HxthDzRr0smSEBxzErqS7iD(dV@MWZ@?S;e^9<62cpu$#S2KwF8F5g z-*2C+Rv)Kk_%cSnL_9WRTVffM|HQu+8>Jcn!Q%-m6`X>;%MoZZjbejymp_X5LQ`R1 zIOs*n6Utx*{hpL35K~U7(V#mJ4aJLfw$tWkq}sc2lSC=7BEvq?;XY81GTf>R&%UUO zK~+;oPcn?0>+M|g!?_V|d=yvBHDAi{^&@h&YLu~45!qRW=rIsShI6!<35fEng`6y| zv+Z&@*_@a4XQ|S~)SCc{iGYC}A_-6ZM65r;A9HV_c_ux^XkViotlOplo1T(*4yU5K z+f9!@kbdR>I#9p)4fuQE8Iz1i`IJ--M&w)d(?B=`n>fjhZ4Y@30}mb6NNGauIY&M- zqvbv-7bl7`b~gb8yaVM!xZVu-yVDEj7OWE!OD1EYv{oBgzqnFQ2HRF?bXAi~Eoh_+ zE3g?OQROfSg(`jvx=0JZ1x0(%Hu~#v8ZS+xE#`!$|>OEH-^k-&v0 zk+EN~0ya2fSvXJ_V)IeYTr%r>w7)q&C%RqQK*v>&XUyEH=yY#qyWQ`%Xsb#Q__t^c z;8crPmW#1NTD`JMY2~eh+ZGG(rVSJr7-qZZ@1VvT64)^70}CQ-8)T?k0Ui~=05B2) z$;^R6nht7uAQO?6070vj-Cv-Ac+{6o&Uy5`kpn=^?(XjTI<15+xB;j}Ru5uiV;+y1 zGR6e3S{!R>v(=)xaOphx*Z8WS%r3$ix6B8@@J9>@0fsmukvM^48Amk<+?MIt*#V-L zmeMEa%KG{)!VQ7MZJH)n>+1C`Mc4t?50u^Lw6%Z<8S!0uz{G* zCdy$NYLLz*AO;C?NYf_fN!FPCClpF+aDsl}`0?EF)!Zt6j_*IHa0w^tW5y-9;}AE+ z7z}ti_~`e-(*eEBk4<2AB5(EJ^QF7nuYQKA7zgwB%NH-6bcLl8-&X}~B+HQvvBPcq$j&3_kyb9r z7Tga*ltR*3MEW?}$(|oNdZ%7ZU#oYK8M}eBSU?+9GDzg#1pZAA%XSQh>OeQx zzzP-hoKw(KIX)MelD9fr;EbI}N^Pla7=~>d+71Nv zwe9UXKi-*w6)XB+R`TOx7FGOLXp);)Z5c2C|YZQ{=vSY zxF|$7TJCJI0uZkm-Hgf8Qrn{1sry>&4AMw9`i)cD{|WQ*bMT6lNlGF+3v!z6NXo|+ zBBg|Cch=+>EE5>NM6BxI@IBRgwTZ7oL!M>)=(Z0Luz<0^W;x z*aOZ1Ny8MIN6~5;6d}sy$D-Ar8~uuZeRL)u>A@pKHI5oUykXlapidNlt9S6wdYb|r z>pSA5)Tp0t@8$g{9M)z^rM*6Va!;GpP77Sa`uH2 zcEC}>j3(-2^^a)aN7bPB@;b|dMOXv@0NDAU0LFWyvJ&{yzzW+udgYjD`E~>vo_PMo zWU+`N+RTr`h>ajCh;_xHSQL?v;ATBo0AV5GdS#KvMPrDg8`b&tSUU}^+SFvpO` zf)l!*F4Jb3$<79I28AJzyE}@+o@sM+lt^Bu^)jcFs3&>{`&`C~qUc^eHgeGgeL85@ zOBXM~lBBOM;1i+9V31(~u@e`T&t~5Et~X}FIKkfG*Jsk7Q`5=W@xu6QGOYpuM-1iM z@*Jx!uC6Xd{FQNiKI`L^oDvBaRJ9O}DDTLj&Mz=!sH)0i0oK8FUxU0 z&)I-K6!-eV7)(cM-jmk5vMvB=?+)kEIsAl`eEub(-R+whgTa>O-k#0`>@g~{;F3zG zr{5DFpkc8#4Vj5@^T|$m4roxK3U`xR*m9Md%=4q5wNa zTgXw8RVvd(UG3XJWTR)FR&sjZ?xxn$uBfat))}uWl*x`6;|;JdN$>HjpznP|WGbfQ zl|dg_hlZy)mn^DDut9z+mh`#xLAhzOt5M$fj`(Lvd>38i=e;2pWw>RQRzC%OP)7(@ zSMJL}sD~{!B4i>%GBYZ#6TwHXY$enL|H4Z=uyTGS;4pncoZ%f;juNfMt{nZSiZAh3 z^)toE$>K}&pZJ76*6Df$cBK^jrPEY{23AkL^Qr)N!II(33J`G1F0lcLMZrk`BR=XV z7`)<@?D6c`i)Zo7X2$j57@z6A+ydy=<;+}vSI(Wq2QBvF*=Qn_N<_1ZlZ{ix9Gq%Q zwrRuypHia6ivJY-j_qg}KhpNd<}oyW+@Ys4P?FsUAs_wMx#ZC+@1CJsISO&N* zKK{gDFg_suS>HE*hB*u1Oj!WF4fsHX0GD7mgM~`v20!5RQT1+Yba)jx(kga)qGr?| z>F*Ip;E=xY-DE$0(j88?lSy|X;(lHB&Z>@M+{T(?D5b(83+2d!AfheM+#X8I&^l7p znW>W=HR4I8+>wO)o}|GiXbn19l(A@eA#xqOHHG;U9eXx0O{);ofMM4AM6nBG-^}2I zxD&j929^exuRMA~hAd8NjW)XpMHUsMsMrdksu-$Z&43H?LZC47cLk-JVoTNydJ_*u zQwF|lz<+GwH3ZH4_{CXATy?F!c3JPbcCzuRPPKS>t3k9n3)tBU7j)R!_a-(q4h(RJr7zxQ2%NNE*l|RbhoysmJLvE_bnFj@w@9Saiu<7`H=HcQ6m7w{6 z>y;?sV$P50j%2uP&f^C!WQL}SF*P7bK@o>7x{6QfMsQMy5;9aWhC5*vsZJj?QUS0u zX%sBcBDc8AQ30u17=X*Z?g^t{9FXrM)be&k18G+FNlw`Oostp^$zI9t2ZAmv z+Cao}1?@hM!{ZA8QGOzmUVc0i_BibC1i*hF=3{>MXD*q%7izr=o(qX;h@sbU zSGMe|q-D3)!Q38z@=4BsLy7_h&Mi3{{`i>PQOwFoSf5cU&@MZH0NDG#n9qYcf_7gt zsDiZYv8>bWln9SXsd8)dv);Xf*C~JDC*nq}+CAFdU7hlXjOY5LJ8; z&|vpE{N-v$4FH&5c2h$B2Z|3(Vol`*S&e-en(J ztD^d;Swb7|IzuwU&OCU{3Pxd;7=wp%y1vl(q|WI2e1YOSNN$`$lo<@shscds#}F03 zDZun**djgkKSBf{F%)>nhS{=7hI|WfDc1+@kol_R3%wS?h|&+lH{)6>-Cd; zlwOSoe!pKMHxHR)hQ?P^@EJY6ma~NHLPL70UJt->jNAu^_aVh~{}J*jh>#|^i^h~{ z4U>)8Oo>$%?{nc>k!2djM+Ljp%m>{F3e6+0I;&Q2Yi(oSRhCd?OAQ5X&Q9pc&%WyG1-FndBc+lzO&ul@G;Qjd>Kc1yG z$iCn4$r0y!9nSYS#q)RP?Djdk>^g+Wqy8@-~~Hry9-!*kC8;H8zK936^5!*Ly50~wSsGcA%eN0t_oQ& zVGSwkuu!NUMH&!HFbcPJl9#tDN+VwtFBfzv>LHxfbm&4nWvsdq9((OlA{9_iOecGP zO-VSK-Ns*fi1I@|d7GZUCh8=M=l@MVy!02Epc#)RvRc(c6@ zG2N1{ZxR0#hps7PCEXT{>cn8-bbzP?UQ1}4GxnezVq_EYNB`K<$SWD$4EVB2IF)Ff z&R%=28nh>;7H2Z{eW9~`Gwlj^jPRru4TkL zk(* zX;C#)M9-3)RHsV#@W>o&`0~jaZoCJOzNyAE>{axI08{!>pCjWajSH-_wi~>H$QFOr zP}-TVQKRh`W{7I_QVbH0i8337VWGuRBMPYH;a5}hz%bw3*yinng#M423OE|qHVBq| zU4IBZNOmKNaY%!o-v#ZO_6SKB+&n9OYs?*jC?)I>6JR5P#!y}c zh7%_3PQ8qUbk8N25MuKq2)uzuguutvs9|Y>LB?M7a-OEX#(F^1o(y!3imqv>Sf55 z^tU`JN|Gj^)*zsg$O;2Jt|L5BwjEkHmZ@isErddDS&h#ZeKJCG{D{zzeZ~2>D!Uu; zCc=Ie5VUb5=8-*xYB*Mpg{uXR{BxyjA{O#Nwv#;GP&lq6_fli_;KoMKK9)*M)n>Hg zPKbc`k{r(C+DvU~{=O4Z7`F0zQ^|0giuK0B$xlX|PFeDKyuh6W#A$%@!X4BDBg7F8 z?2?2Uh2Ri$8~Le(_$cDyB6?!lakjnrK&3Ih*bR6#;gQ2r09m5D-BVAW{%X4oVBp?o z=-Jc8REhcOV*faCZ?Y!X7R$B93Sy}jn`HP!x*MU9BSVNDqD{vW~MU~==5@T1B4`?n|1^uFZb%VW)>ww2_ZW^Jmq>xYuOKH{)HG-=1qP!?FLTI(% zc&8u}S`KmaJ$((_mGz1eW%OGoOUO(-~C(9LU;!3 zbbmfbcNMh)eOTd%GD_${M=`(e;#Ca=3B*nPfP`#-U4ih=I*S8|6#9-mWIgKFvnRVcLN%euky4np7`yaGHM_W6-H1|{LS zw~u&}9_&xTMCz{!moFDuA1bt3h07Wh#W9^9U|qd0@xS8|{QY{%+@7nCWJgwknsNUD zKNRuAk>c<1fBuHi1aUv!bd)#erY3YK zoT0mhGnw9}&M%+8%sMdtA_^uGW&ro@?ObkMCXX7v_`S&gMb$;9Lb8wnM3s@F$fN1| z!{FXqSf!4>_^aCAv+cr=Y(HR@>0{XL!{_ww|d&Ax6akNKdPwk*9Mu$3eoKl!q zmwt|my*JCNfDE7Jhwna}Qgh7g;d|~H2EA1maWv{7dksmtI7bn4(1ycC?5}I!FCyLx zyi%{>0A+`VdvW-IzBeghC>)z~`tR~5B+lyS=~(-S`mt^?jGG1Mowtc~`bY4oxj1qz z^hQ{57Rl{g!*tbTyePBKNT%NS#tUzJV+zl|d*Q^1&lcbDf#PSiP5#x}eeG)>URXH4 zKtURO&HQKd0h#3$Z~`o6+=Gyzk@eL~EXss=&A#=#x>jFPpI1tkl)Fn1PU@w*5edBA z(!%%M7uH&pv##ocPq$i6KUi^{rCW-#5P8Oshq5@SfT&9u@iYQlLgYq4vMQmNJDk=i znTEh^(xdcH+0C^z^5Lzm!E2qJ{|=tv#9mw9+UoKI6cj$7a?5~(K1M*#W0?xVK9m-@ zgN^fw<|R%U(qwyt)q(71^ZZb(!X6ppQ3T9}NbhQPN{uA4$wDkKaaMjQ_m-&~+r;M! zcP$`{)CH245#j^Ya`3s1b_2cB z5R^?p{ELk?EeKNo@P))F;)Pgfc&gVC7K6RD2F`~o5DdbzudIlz{3ETi&7ooF2FN_Z zW)gZj%>#KEAr)hVj%=N8Zz8-Qh!S!Mt!=iN#W=6D_122C&3qdtone2Vnr3S#L zLieWFeQQ53h|ttB?8kbjURqf>%}~z=I!jQw%cxam(38cAtC9`tK#Cykm4zOObF{|b zAT{WcDdkkf_?swOp;P9K_us!ww0$7i`{SBZQ0JdW?XvsYKWL@zQ}=BUfypGBnDB={ zVnB6G>|n_ldZIXAzNZ;Ge6|jrD_w>rd#QnAhoxvi@SwBLYAhlEkKKJ)*j(4t;}-@v zcCb7hoL9VqGKNF@CeJxvIz-)EVYFL%7iL~X1RKHSXXsuDYAg=gO{=NS!a-7sfXfA4f;-)=(Y+m zbdZ_AMW7 z;?82{A~r>_EFeoNIcsrfAKpB9_J&9>4Fx29K}VF6^{SN^T*$HY@nl-VMxH#@FdcT5 zmDdGd+K=1TA&lAm({1YOAWxpohC|mg;i+iD;6bJ?F&ve_y&J6MK2{Baml+P}?SKxlF2bVO zmjO)uB>~KWRkAk_K!6doe@1l~go_y+YzFJPp`%&I$HX^8yA9gS<`EG2&WT}8Xj#Yx zT9XikhPa7k&UK!`>B6iWG9daHAodu?x;cp$U|3eI13)MeLu23G22UQwpP{}E##qO? zX`-$l*0E(7Sv#fyP-5uzrv6Y%LvADUUL1@q>8llFy0J7V!@tBID-b$8oV1d4v@)o{%z288Wtm(VLV_vrsRG^`O%AU)azw7$`%%C z9jZ}OMh{*K7&;pV$-8aL&zh2k6 zaYpZx3T}*KP|G-xv}ob9mN8^)(+9%@ zpEeuS4P}O_a^{g^n_$;C6uN>m&PrEtGFqh_$UnFY3ypIWPTdIL$-(+E=plOs$RXDo z9UKUQfPMqN<6r<6sYcHsBPYnaM)PKj;la`p?6pKEOf>x9G&HtDwyG{~Qp`t~;!G+& zvXH|j2J@8MMBoL~6Zp9J6U^pR4V}r$?6-gWYj(-=iJ9QavCz!Nnb+C-d}6}qo0zNl zy%Wjtq-XWfCm&n&q;`8ZVKS9mzx$EYum5`LBfl#-YbjXEQHnd6oWFN^`o4KePNTKG zgF5rVUr)0*Oa+B@!by*?M2O){P6Ng7nF-rZ(^qQel7&q1fl|7dJU6jO^o$Qvxu3v~ zm2=KmG8K2`%5|d8Os}97dfm&cgA+tp_6VwjAyz8EW9#8TCWHD^{3|gQ^hmY)YLc`d zt^MtNf6Hv~mt*V{|0s&j&fqhn@1!G#$z z3_S!v^0O!2fo8{ zvjH>K;&Kzwwasb`Wd#!rczM8(6L>IX=I*k~{lLnx$7dwh(u0q;7IKx@ADfiwa`uum znHzJpatp1Q>U(gWf+NI*W58bir}qBWOrsFS|6)>bkQ*R7A=uMu?E5d zAu!NRM*ts!5p34u^^S8$9;YMD7njcMkC@uiynd`ozgHt}V#sh5hXj6UX~`0Ugq3%A zvnGkQHaDPPZa)R4=>H89F{Ux>h}e}_M2sL8k&Mx#aWy^Q=0e1=aKE*n3?RS;kAnV1 zK{74kcx2-1Z5tnpi%14p)vI-L9)tdinw8`gf<2j}S!%0D?jCv+4X?4%MwSw6i7fz| zT|-6nmZ&p@Ut66GJZ;hVbN>dvX9puqD^DRWGz{U$t`f^_sY(tR^3uS1iH0bZtkZ$K zv77oK-ekl;O&)*5Y&>+yfK?P~}OoV0!8KI+NWF`In9yarvh` zu3#*hQeB?ufOBfPG3{|HVb$YvyrjfmN?uR`Zz(L>wF2w?{X;QFD3Nx+(*c}=a;o=t zuBmf~5BLes?D6ST&2ESMGINLPn{W-geKGaKJKfoAOAdV6CxsQs^ZL8<%q2T{Z1O+{ z5>Z`0h#rFZBN`4*{K3~IY(|u(KwYGww?d-f+k~Fr833}5aWrCAia_ipkDnD@18`Ov ztZGBtTPFWDMTCKgVL0e5kECVW1vQe9Lh)!2IXEFH6HyE4m^~JdBu4~+3@#f z5n?{I5Dx{s-asf`P-8iMQ-?3$^aX=HXTay+?dF~kd9mVoEEtmJDl>_gqh5E!5;K)K zDHM!(QM1)&Kd&{L+IhPV)m&wO5(#;+i#Q1%cs)haAj3nRu^)$5)o}tZHTX4iRPuC; zkqsFSxq-t8kELbSU3g@9`H_Wgw_7_qxw$!cw&wOf^Gs%THuKCg{+(mbTnq*;K64B( zlf7+U>yeo^pE~vCnMYb|)$hJ=I#W82OrBs|IbX`0zTox`(?U@&BWXe4NrD`{!)-e` z#=(KDo)MFnDR> zSZ5vSj;$8%WgS19Eu(3M0@>H4KsmoJMh)I48nx#|3p@SW(|~#JcyyWuZ2HmGtJv{d zTSIL@20WlG&LAP$fSv3cq$q%5;Miy#I7}Y`%%P6sw}Ug&SQoJA9MBpLOX6mRwrpt6 zSRUAP`w4hMWv1c@hrG}E!l5dqryNMhHwr2$xE8{m3%*F$d%+hj1VW(z#$4!zd#uGd zsz8k77TbgAAUv}QN#fw>>|2$Yac?;6y^8ySgiN&eBA3KF@K$dW2nVFV+Y6!5NP(iF z3vkWBh257$scnJp2lsHLA45b^Cv_XBiu$O4@mQMPi}{gx zEgi2e-SPJCOg~gCJ~W*um7ZKadHIgH3}UuInYlYILk%$NV3q{iU6`-2SkVDNIJH znR3J*PpP?B(sfeHhdmIuv9};qd@nv`R0F>aA9L@!+v|rpnW5nJWl%xG9%4(WvQ`N; z49a_jREVN$B5^`bpIBO^Qsgc}hUp7429Hz@dm9(&Q$bB%^2hq=(nUzwsf2nd0;Uz9+Vk9qS~G?v$uok9G@_ou+|pAi zN6ME@ggTyi-|uVbd*79LyT21orJRu;%=~l5pPou5zO40NQDe5wb^I3arBcbUM)Wm{ zbB^BwwJH3=#mD0-Co|7ydf)0O3Ec5#JLm|}JlIP#5)iE?(4AYmc?9eI7Yah&7~6%~~97LvF2G zl58}2@Jxz%!a2STAAlRthyzOq*gvo=ns9q0AgNRvL0B`3U%b<;JX>~>!uB$vqHvt1#!yPacA;oP{f&xgD-*yu z0`F_^n4n)s$4($fl>BnMy}c#*(!||&Ph66h`tMvd*GjJ0%&oX;{dd=ij_%66ku&-H z>FB*HtM|~mGm(2&rdRz-$>frMby|NHSc!4+`hD+!>rzx+0-Rq~P)VkN_7e(NDkA*^ z9l!Rrw_ShR+kW)O^bLoT>_v*=5Bej$*WLc7{dG$@OqAT{AD4nRl87~ z;aJJ5elOdw#5iw;{EF;$t1z?0S{Wtc^R~3B(Dlf}b978Aeq@xzmqu0%grJ*2HW75GDs4qk*Eyyl=DmY? zrfOwt;4e`59tmklmBc|cseP>72D~9zsn@%lCsUm1w(UOKW$-T~Vbw&WF~>^g zK&Kc0DD?^{`ZNgi!ckGl>`)#f&}2*-Qqs6$MRBNf#Yq-v&_acG4F7?R1+5E)3)b~W zPP?XggQ>!63y@tTZ+c9Lcwz1htLN3Q?9?=@OiutgJWe;Xrt!7$RNRjQdVKmLnM%YL zi$r3+NQG%Grz9zLMO8E5cs!g@)!tsv8`Ch&z)Miv-l#tu^2NL!Tq9w@`&`mZo8(5O z7`{BRTVghREcO1envUfZ0)J6*u{8YXaFZJ6{uTUEEAyR4DM{2X{*B#Of}v8Vk}zar z(8M>g(ZDD4%T5wFqxe=57_ue}2z>*_P5)Ogu<8=q@v>q#t;S;hG*XX{gXB{K1@H3u zvbPXWeO?EAQtq@r7DG>q-dgQ;uTF=H%v)pH@Lj~`BW@GSk81S5%Q=l0uYvqU^$U%- zc=(Drh>rtXgafmnx<&oyl?=)TYyvl<0Slwnn7SLHI9v-RSu4mbUBh>Qb)7(SAd`@h zNhv~YQ%raLjko~hNW=j{H`Ks?4cFAdasfYTE&Stf*PuE5JRu#9_Ij0jqsWK`g#k>K z`%8?RI+(3!zxO#7d1c7dxJ~iRdhHM%?)_J5Ynn(`eqs0IBPZeXrX7dV_6F@zJRt@h z4qtGboiv#mi4L-{iTWLa=hP`S75)^8HL(;e5m8O#fu|E;1U1oQGTPgs=QaF9lQ8nF z!M_Sy*F-k^jxOp#uvR*9Ba-G%8eK@$Okfab(G?TfZj$U`Vr+Q+^cQe8Cc&L5pa{vK zFjhljr9`|&vmg21_lA`raIs%{)1BwubPhjvzUf@=8^DsxClVhQFF#xOQh`avAJ4t% z&h-S`*ZIVbc)?%wHK6s+Lel(i`z#xIP}!g@;tTw(gS!v-I%$scgf2iRnK918iK{PQ zD;Jwf%jhLJ$FRf@TQ>9xMY5s660r8zN^86I(NNau?OpR_e{KVUl%j3uk2N^VP}vop z_)K_nlP4^px}AceRj6^N;;XBw`o5vFKS6Z{C^;Qd3ljiHfzbdB!D0Xk5Qh#|QR#S`Rc}G&T*36XU|Q zt5>gG)vmU#;)hBYZSL-FBAXEJbek9XK?II4KlQNI&E{mnk%6OG4_rZ7qk(m-AG;&K ze8qXkA&zx%&n(~WL(^AJQ3VPgtkY}))#WJ{_Bx68G4x#iD%5h{U8r2pZ{~3WNJV5x}rWj}&Bc4Lqe@Xfwj%l8X5QHy#*oA^hio=m{&b~19g604kPP&?o|B%)eL%`bY(+*Wr zP*y4HsNfO|J@H>b2g!YT#AiYhqxdGsEhO(1p<6U+WwPD4kZjB&#c=W?D^3U0T4Bw0 zN2J}`*0j~X+wHQu0SUwj`2!SgT0@XkC1XE9;oJl&+@7hQTU~Fr=MgNzN%_~fCh%g}orctC(& z{7V_wG_J|A)8}-oNKQw2QF7Z||K8Q!ct4PJ-==9V;3bD27toJoul!xv<0xM8*fWlR zbjiy+LFZ39v-SF00ml3OjsF$TESx)@yB~AKu_XkZen|9`1xl8$Ra*%O4g1E24 zYuh2Rm;ed|5}7P4c@PuvdjqDTWfy${6R=Dlj3{sSH3L&{=H7SXZMjhJrtr$vlBmjs zH;N-lwy=Xs-LW4`)Mjf5{?vhKQOZstyE4(z;t%146~`QS5xV_%*?+-a^Wi+Nlm1m{ zCTNYwHP|Tj^#UfJ1~Sd{o{)udg#k&D_u_nRdL}o6pXuE6J3*YD#sT_~$)Qf(5gg+m z&M4su-aIR?lKC@hS&0Q{r|h#8B3Q$tIA$keX&&GO<~9zBX-r~u!J~u8hfrm(%hz4oAu*b1(NG7K!H3OB%W<;rxR4GtxVn%6GZrh8{DTn>PiBnV$mDKLM zvvcR2-5vh5jph(!7fr3fGeY6U_^IEt)$3b0um*N-^3p)su0W8&svx-v(U(H6gkw|q zW0o5bwTO*?j=s%BEU*QYy_nZfQ#3y{mB)*gxBRvx%)3#6Mb#a3iSZ9@6ym^7Td0f} z5+Mtcos4u9_+l%-VrpW>ND(Ay1a&nrJ@^bVKRpPu2@gO*&;wati|nlCtAEmfwCHHt z82y4*@zwDtWPFu^PxWee6w==6wzj#$x1tT>i3*_jf`TGm`ued!3v{IeFoMwRLF9l+ zU~CU#2h|Eb#i!vR2HWb+(2ej%au4~akaPAb-0H}b7^{A+dpO;&D7uQ4|h$BkG~HO9-5iBnrU`2EtyS&l?U(k_Z@g&gqR=#at9pLqO>Qd9~_(ocSWXnHj_?eIvB>BnC9{-2caVO09!MM-w2fu!hAU*VJTk2C<88&aHp@Lu9Uv1|(QrKlJU3 z>mOuS*K_N=uYQQEuqeL;5Y-P|_~80Qac2D^&Vm&T5_z_@HfQyz>&*{OvB z&#qs~p3F|cGG1)vX}VqXgjfU-2Tl4bVoc^6O@z&0!l_UO*>P$pWkItp9@npLth3Ec zwZ67TbE#>2>+5@1xSIfmVxhVC(K(z{$cLl_%-0mZzekUC&?_6qutzy=PQ*p^ixI;j zY*fJF;;sW|9XQVM*wJ>@H+$EwvzAhFV|~1OwYA=2Z8Xa^=dz_<7q6}Ly}fokfzJvT zwmO|H>}de%h_2Dv`F+T?Ollx@(cjFFfRyOA=Lovmj^f_6NbRT zPuOP$fPU;*Z$J&(!-;?|mwd??8_yxuSPA?{OwsI;J)|gOs(m80vOF#WRXSNJ%@vEx zv*?QY?64e$fwAjabjF{J7UW2&=yJL@#?E9lyPA!wLCG}{mDTx`<;u^~f6Za5yZO2& zyDrtiA%qyJ3C*kX#LC=&0x&AwwqO`j$eD(n#~-9N8}Hk^$_$tuj11zS#98rIVrqL}L>f|^=ote#kUfYd%GNlLl15@=qrcf1-OxXDFXR4#U%m_; z6ymp)7Z_n+CD#w(l#|;L$=#yFm4awit`+w2*6wl2g@2Fyxp*bjqJ%my}-$ZGD`zH9GQYxeQQAOpgXM*ov{yVB`9rEztJaL@5pd}T6`ag zb4bj~6lIYO&kBI-AYGmWiv!1_{R6EL(*XAZrl5(cZZPpIFIAz4W0R4BgTLVtuv<%y z-ZL9ttt(?L=JCeIyt6pId|{U|J^X<(tE|vUH5n!UpIN28qKx??L5IhiRlKvljL#MJ z0b*{t{~_}XKE*BSE0*;ZgES4TcerO%^9jDNgFD#7-wy7drF(qBo>7z$y?o8SUXSP` z&Db-_3a5R4Up-@k&xX4y_7<1x2w$ZDPC|00nO^!&#VW+x}kEdZw zIWyVRd{azzveU9-Vroiqel~tbW#Qi7ndzSV)~tZ2IyO(GOS#>I!dLtN9T0LKPN;S=dz0+a9%Du{~*9CyfnT07G8Gjy}Qqpl3A$HWJb*7Y=x! zFN6m&9P>FMK>`w(DILc_mr4-18r zETvo;!ko2&h^rz0x)Wtu5o+8|AS8dz?f1J^eexG%-*GqU8vKOc?)>QT@_qOz7O#sp7Wow3>e(`|@*;=|?i2jz@8pW{F2uNQCUhcZTMEt|PbQDg1fOdJXHVeWY>2&x4^JeL zCuTzpM6%*cM$tw#Sy-KL9X;xrSiL;r-FK;!E&M_Q-l%~lkrzq6cK9g_N=SBSqHr!D zDU;ikUfcb~uOfe`qXEbf)+O!p{g(bs=UVRuQ}?>c?(TMnmapMMpuU^h8T1%(-y((a z)BU-qj#pEE(NJ#(vF8-nOS0vlf4y%q^;)L`vzw(YjPr)It^SyD|Bum@(Koi;AI9g< z7MKW(WYo34>G$fpyBOKF))if|aXs>Hp$mKhyYXFEYn+q99ZgIHxXc9F%&~YmZZo|{ z47^auNR9+Q4w4C+W*!_!tu4bg4r~tu(BciH%?m_lijiLgSLO9a08}BOW+)4tf5VFO z^Rm5w+7))cFBJ1g9-k-Z3x@p&{25CXQd40M^Mp#X_ncdph=*LvE3r^C=f)$zU*D%>4whHSL zMqE0s$_-+C!xmiTvs!BXi1M@{m7J6oaydfkGnr?*J6kZ5lG&>xOtjQK=_orq4v}K? z5QEZ3E$C-^G?!2nip~`XJ#-4wnL#y9jn~MFiF|%KpZ_gk&}=Y=?90b$u~5db>XIZ^ zqrsoQsK>yFNEpQ_XM+h}GUWEUGGWOpAs1I_^}0k8jS1yViW)&w_h>*B^cy{)_EuE& z5BJN0E)5qh<&sg39@AGYbAh2kF6{)_Ve|he*TW$Cm%1ITgka6TIY`C-4g}& z6LL~1vfj%I^TivDANkDEXT5J4@BIqjkhBlxVuR~CSeFXLcqC>(urg_7`6{{sM3ee$&{#L8% zWDrmdzWZeM3swQYQMW1JaN8F4{C0bow5=iH|3p-O(u+Wi{oEMS)hI ze22}YlXs=kWnn_Ni2!g_T_`u~75})udW!!>yR{WbrIGud`hQt_7cfW8>P)ylNmZqL zsZ^@cwM$a#)~)KhTCKVDxI7-u-7}15)V|DM#s(XE8ZZ}+L%>UfF-gGALm=tq8kUd* zlI~OSSt7m$~hWvd|NmZq) zQ{Ux$=klI&GzaGR*|Jlb#Tnt+YzemMA*?5a6C>Y_%p+jp-0C!fktXD%W2A-Y96QU6 zjU1YTrH1Dy0u!O7fFMn@B{T)v6!H;z1Tp%=i}`Uv%p>Ur+`ar7XZ#^n@@`HF}Wy3lxqilX*jZ`zBHK;+0-Ol;sh6K8j5i#3dX3^U~qk?o1>ONO_Y zP}Nt^H;tk*`d&Fyv zzwaNy2|tq=F3R;!r7Pod@j=_48PU5xXQRqshTT1q@!N7ou8(Ghe>pQ+?;Veg=(6qK z$B+J$Y*#b6oLn5vjD9Lpv*nRj@oV7w{qKTa!8=9l@+j428;J0}u?DoS6y8k)Wi{k7eDRdaxeMAj1N7wsae@RMh^0?~3P1!pCwa)_tgs*GK8M zUaE$F{o`F9sC~DtU-O_rDX5;+cYMwp262B!pT}i(dh9?}?>{w~B0KQZcxJ&nNq?TC zxn7~rv1VhgIe*g?kBs|3WVJ}3V}I>=-Xgm&d7HGpveJeo2egQq3cJf5 zLh{72w`SKDCLEdsG^ToS0SaZ2uPCKkSjpRf$&T*IE{#7j@zHe$g4*Kh>c;xI-Q5Jf z3C@Auch~VOU2m_gZT~9g-RoF$sjd;B^d`xdQRywVgaHvn_b?uy zLj}Df%NkFM) zb&cHWI1z>rq)FzPJm84i3SRDVAXNuV&fDH$ouA z2ZUCm7Ff0-d;L+5M^EmKrx`M??M~_*Pt@;~%O63(lujiZ)`B`guOrABXQOT);j#6g z7S0zbaFFf|Ss!=2%p9~Zp;QRNk1E9Qk-`%Tl@gYDS3@Nb*{mt`R4DX$h_=A+EeoxGMI_8xHYuv}|z!PvKq{s@X)4Job^qi0t>r^7C^KsJg!%P8bEp zF3c2E2ZdIYFuXZ(&>zeA6eDz{w0FeEE?mrnVz;oPNPQlQ<#io4d_RsB>akeeNoEqc zIP=N*WF(+P{r-`?rC?l+l{29tWEPi~-U|JZDmQ^0A>OnG2Lw8gx);s|*wpwdJ`lnD zXdnKe_YD~iD$%C6-Gwla{kLv<9^PQ#@Oq-CG+^POh-6rM8cK2W+8tjLozU%wEj6o{ zo8)6SGjx9FLC{#@rWP7%aFmdR9Uu=fOJNkkUQNvo7z~LybOii@tnAoBen=AVA!gJj&>fN8RX3HJko$fE?V`Yj zUqlbqNbcjY&WM+xy6*7T0YFZbTOdIJwgCA9Rg{%RP5JF=_II;YwezJ5+Ai%vuBQII zTAdh|jvbT6_mBJ2Y5({!J^jYC&Q9p_^Lie&r|_EBzo$R?sD33^t>)Up7cLA_-|%t& zc8=<&@iPfdPUD1g2edU-S_~cT`A@j--ge2W6FbOtuwAu3`-R;wCj3zWJ(e$1=X&^XDK zX9!XuNAS|K^86L{+A3wASY2bV%h;Q=yXT-=0t|nHbdaq%de6|?hCYsQ(AS$WD>0+U z4!G01o)Hm~74whG6*vnsn4*9%!JC+=VmX0;kAz{E$W)VuesR>`N8zFoW{o_X0grNd z>WxlH_RpczB}j^|Wx&k?DgD|lKR6nf!!f@{R9pquPvaC%BBiNX2@g2{wk|7lP;V0}a)9^Y4_8#_)$>4p`7##Ou z-xTehRN^w~0{JAealk^Nprjf~w1$0t8%vqj^C^@b4SHovJijl*@XqIjzXK~pKnX7@ zIOdaZ3~%U|-{(~#8m%NWJOmF}#~2|y#2AoT@SEv9Uf9>=Yuwe+3)nHx5e=gVgcQu# zSj^@d2E`GgOAxfS?eq5d!B?-8W)Y#cqNT5(PS)(-#iRbL9}3`38&q{d;NfAM&t;O8 z*|K4Xk%z(=_44eB;)5;2mVKsAw#9q?%7?rd_iI419KzEypd%7T0t}SH8(Q-f8Y477 zXld&`6@}N)!nbt@k4Z}b;v=>FZ27WRQGnz;e?FG*DGGa?5kd+d7?y*0Bn%@v2#6KW z!G$tk;902m#SF$!@T(l!zb{frpyC)aqnT(h90_Y?LOLhxMdzeMcwle${}p_W$r8l| z1@TXD6NE9`LcEBGVaPu^co(K{AF)Q()SfCz_V}INFS%GylukB96HWP?Jz z5KaIJbo>I|8~6>gA*x0d4lET4OM$Rcptl!}AHRSP{FeOXTdafeIs{<~PYCDWF7u1^ zFPdMdJods1k5wLX&%3(Go(F#ha27#3@D3tLFSKy74N-tx+j%BmxKw!hX}sj0K^nvM zCr`H?%ePLSZsi|qo&F>)LOkv7;p1Dw6Ar^m(u))8nFGb>0D_AayJ1FY%it0ixEK3M zFt$A*RQFT)!g;5?=&aDqSI!q%n`ea5LdOHK0tKlRcowWe_sf@B^Pg&STb7mP2y*L)xHZtQ&b&!830R?fbFTc8a#Q6IJg zsT*F`?x2;}tC)Kqbm(@kL zJ&jRbeC7r{r$)pmf8hl&@%R`Q#T;+3=P_BofO-B*K7?6{0ZQK+n4=*` zz_8+@FZo2LuK~U`2#3FBerzrmXb#dm`1@<;=?BHMqd8#jJVkEMpD;X6qCaJU0!L18 z2@-dWAsLcN1C4Uzl%Uk3+BuL4KXQL=Ue}-9Z|>ZmJI;Z@dlTHc)qrP#lZv6%N+N#9 z0|f!ZmXsfD4lKXe9O(X)I|sP)1^i@%_zCCBP)E>LoFjvspocjxM*rgPliT>ouLEp$!VOx;>~Fy7O@&J^@xTvu9XYb=@{wKmaB{zznO<1OGKv&SG>d1!SZt{@UXu1> zBHJ{tM_M5@trWj|rG5p#Q;@I|4H(}|N=*aH6xYpR;ixq&&>&;Fz@rC9h0$yo8~?wM zKy4s!E@a!v5xSQ$++wLOd1=uj3pmF{a?1cLKHN&c%L=Z?)06wCEa1M$^a2DTXb+t= zAo$Xn5;@iAAS}1uX`G5ECs7qw_`cX-YtOUF8PAc6XKLlpqxHKv0=0?E;J!-iU#=)*;b|xGg}jIh;kv zffk-NiTDjz+qNaqNp3?PEnV&ta2)q9Y^QD@-O|!^gxH`1+1t0L+!@TiB-U4oqxJGg z4&=ow8mPts`Fv0g6dnbVXbIYN#pa^30Oc8!2;j;U%9SyIOtbChI2aZEjdmx!R>$>6 zDJp_0Aj7J%r79vGmMU12-Hl9FeaKZmbc3xOtaWM!NpW?tCf@aQYqj4 zJiR9A^Cj+>VIB8$e5bqSo{ujTO7}f{Un!Zt^WHo2{3XeEumX@E_@gG3ccA~)ANvVJ z5>{T7@<(|J;16h`LBIbop2V$?foFkn;p+e8V`LY38Y{#HTgiDsexl8hgb8NvCYF_1 zDE-{128cop<`1Jps|+L>lEEN?RmdrZ2NRNAY0%l+qq2 z?j0SK)r_?(Uz$Am@{^O@KRjd|$}M)r4x242lgZVsRL080z4&_6@sPDBE=!KPzhxdC z{0kH5Q z!G2KF{3`zpkeCwkhfks=ppgy$+kx--QL7o5sRL1*;gO=@kj$ij_Q3dP*EMv&nRz8LB@Zhf&&Ci{;Hoz^7^wkd*;soObu-ikj*{ikVn(Pe}^P zK_%>0d|pY5c>@u1VMK~ZK|nuZ0mLkL{rs%35;Da(ewZ($YtE7bY)wMOn%nPmTK3OR z2NU6NA~^l?cFVc*b|kTp+UaV8!y~{SodWm!+%p^oqVm~GxH916A93s;{pJc>N<{@q?rUW~8 zwUQts1X;Z0${ZMe<0D8%97fD;P(=~>fNG9MW3lM?f08IoaX3(LKb!n$_d9dRmYQmC`oJ$odpGLt8|+rIfha#b96^+cI4nzr0)dY%oRCjkoAbjv* zWF89eYZzdk9DQ9Y^?_CF(1LnmLj8BN1R9Vy+i;%28&)lxS{7N(&hJxCOsa1|g;A81 zNNcO5y|?cjG1i40((R`!>_4$}cq3i^qmD#HSoeVDNRk5pZVtj{A-O*Kj{rZV8e+5s zaH@~%+CVYKdiRQbhvkEOH1scUjD9qfkj|9PtlYDkuX*XugGQJ=5t|15r(OT}TsQ!a zt(SQ!q2RK)vff=2R#EZV8$;L7#<1c-+Nt~~v_T`SFV+#S^b(1y|0uMPA0`Z2+BD=I zOi1Vt*R)Knxz%o%u!Bv?+N;Fo&?s)(e0!_W4i8XEm5;6t4Ytm~UZeF%-Dz8}qDWdeicNWqa%L|zI6J&IIQq+HM&F#^em zA!j3I?z>3j~jy+1pG+V;*>47k+B5WlED$B&gZ1v=eH~6VV!%=3-%w zXB^%x6uipil5!}hd6++3K3hr=PJr4==#d62kozdJV@n}B8copI7Vt2_z(udMk>cD{w;pvRS z=eYr+|8H8wWD;i#4?hU;+)8QMfUZt+8X+;nh5O!JiR1DFS_xxp4$}U)Jj>hm{_*kd z=l98R<#!bY8~M}n?bf{(Tcrd0?bj~I@~0IIM{poc&x=`knH|R*&BFGxpGyYNHsHpG zLkbGSHC|i^b{SeIA(-v=03{RkKwanXI&c=qY>n1j2}|S@o3m*@Yf5StfaDOJrNtDzDOd0Fvu*@#cN z-ygmWmJihO!OLrgRVAdXC|c?vParXV3j%R7tmH|TQXbFjjPC+_&`>3RQ1-oz9yNe* zyUzZaeHg7vC>P=Jp*j@cm=#1XQ!j4ewOwB&yeYk5k9H5_U>qC!jryv-zuo;G_Gk6| zTt*>ZNEdzaBsA|mkWqk4hd>J-Y!!-i&-dLjOMH(A8GIW_MWg} znA2yn>f8uR*}L;aOJ~ho?QnJ^no9=ePfu2lWXHlucH#}M{{0{-$*AhvXcLXTGlx`m z(s;EruganPZaWn%#jWhf#Qo!k#;okv?)wi#N^Lry>d(+?k0-1{?~}N{iY&#@Qg_C8 zgVrRDqHYpIOqkSAD{?!&`$GMAzO}q-djGC_v|01gbqMdx;S3Is9+=Y(Li?wFB^w&q zYYtqs>o5F%p z#J+E12eRO9)E~u%XFCiZYv^}jI{6Ux;m>-uLt{+XkJj0PkYNJk8-sZokr+tUj`@p8 zg0#LJ2jgOCslGWiwV8ETu=|5wdf8~~!STe!#Q1|-*Z4iOrF#wJP$QlLLpR(RWGrg2 zPdnWou;9QK5dzb{YM+i5*ircLs2&&3c7d-eH44}#rz{LtYe3jpKl`&5Fb4Qpt1nvb zdY82cWVFp~5JG0w$iD+yXi21d5!n4%6S+)iaR#D*@IlF*BX<_SXZBm87ss{J7f);B z7e`a)-*`S2^JwAsMgkW#EObX^o$p z>o7Krt`+u>4dhQ)1TGDeMHjZhJS+%gsfOvyr2)1}?oHl8S8c$>pLqnepd#;%1Rjpb z0qLLtX&{k=%$Z_Cq?f$HJLOY@FOS4o@E%PrKXa6L%h3=F-N3*kYjl5MvlDq}D3Sqw zVTM(q5AA@xjtmKqinoU{7-%c#5@gFodvA~0{c6)Fs9_5!T_f3O3~ty91^hVMy~7`K z3gs|7oQJ}IL%ga3_pRLlJz|V)vJ>E3HsuVdAXz1iV{)!3Sbm|H(fEeS!e1$w0E{ry zI0+d=g~c1zX{M~?g=9XZ@4c^7p4i(jc`-cG{X2BPR=tbOvQctMiHiPAYCdpy((V<# zAotzxiIBHm;2ZguglzB#T1nWFDasMT5`Hn?NonM06_Zv7I7vvWfN>S8jza8=8-KUH z2U(x2iD+7KB)aGF$Kqxm($5GG!8WkMRkD$YKW0SG?z6CZMnZvDY|I3Ws1zhc44*d{ z@xgpGbzmwU%~XN4$<6E=H}fVyQHl>B4lFbPJFw$eNAsa<#V(;;X7@sx*4kcrb}*!CWFV9oErrWY@b2C^^;V z!x#c4mt0lcUuq&ejj|GR)D4niq9vf1LI?+e#9$o#i;bzrqbh|tzN9^)}G#>{>l9}NGw2-_^Z)s zWJ462e-fM9u)(o|;uD=hXNoVZ)B94|1<$V1m&@tx8~2#ISrn&WC8B3qXAGF(IIzEz zH-Xo=A_;~R4D#k+Vj^{kn7$Zk4ZL#&J({xXdgOQ^r5AL6sDQi^n|7gqzjq%yM#G?9 zf6j>LfNV`ju>jKkbWi}Mqeq;Ge!-zzlbrlFh&6kfOBy+z0m;2BNs^!f=s^-Iz&-IP zNomx0(iF~1P#p&=R*PK{w+A69q`tUN&?BRT11rf(enHETkEe(NuNDL?k0dV`MxZbj z(F?|kc?n@r&E_M8qaRNa&%heFf;Ez?LF9i%;tfO#gI|C*L6O#BGKL)%a}ok289MM` zOSQjLD5NK2(P?{Xbn-S|GG!=cFrWBilvVM9aR#Q|D!Pg(-M{#jl#Aaw^~;^9XW3a4 z;0l(sl=6Ti8S!>7>Irn+zQJ4o4U{uW#`=T^1K^#YOQSi+Rk`7?IwCxQ3uYa}c(ymz z==8zwAnQc`J3TKnFiN7l*kpfK~-xQWg&+=x0NmoR}K}nr3UNqY4MB+tX(~ddtfi>Ye2lv+b+3R z`kBCbq^>y*bOcc<&s~Sa^^(Fnbxj)}_(nKyTev9UlLp&C6t9Q519GU_5`}17j}(v! zYA{y{=oI%z4^T|4&>URgdL*M6pimRkN?epu4&g%_0eRQ<*|vU0yY`7g(5CqEDs_p_ zFJZgjwv!6^%)sbKEa0EoC-~Lf?nv*A1IqD5 zwNEh0bg*>z4k^?Ei~yQ5%pv4U#9-hPfc$tiTZ^Z$-N;lsl@E6S%3H#xb+q+59j#>7 z0hwQFQ-cZlgsv|kTF)YsvY1GuqHVhoGQ;r27J|tfjY2rmapm^L*8P5`gP4VlHKUWQ zKr^LV^={eSAdEh4Th3LoeHrAXJQK!E$++&B-ifq!J3P`d2pV{%*9|-qzs^f}CMa7w zKhl4|#rZQK6Ao>+Ka*H5C|_Na=W7sAtD+5iU3FaxVwPcMP;d=fx{URoVc_Rx{$mHo z^UG+)Om$_kzJcV)^r)Mn^S0d;Qag2`=tGe!k7D5p7$s;np@EY>58?o2;^0U)p@W&FZd+Kk75$W=*IaH-1L&kM>O- z5~&pzZFkJ9z=!1Jt1-w0o`bV2tT$Yj5H@CxX+y$`KEpxXq)os*HA(%J=G7RiCt4=_ z?aPtCY9O+S>J(A`Udh+iw6;%rtA_M;jz8MH;=rK?mc!@Y)jx%P`0t^Q5n>J4X_{tu zB#P=m3@a%`H82eF@RR97E7q8eG>gk9L1D2!vffGxl8Aj&?Ah*L*wD3z>#-rj>fUa> z)!x9W!h?PQmEdg*8F-U@22xcVe7Zo^&%T{H2}u^k)#0UWh<7lj!*0f-7}2XOFYKP! zLRSNUFt=JZ8bNeXFPZ=&5M;4}R;mi$8n+LbZC>A4I!AZ3mqcR~3dtO4-Y25uqaD zFApJ8$w@@YLA{1w1dEErxcLiV(p>R@t+wYo!RkmUyvafWSz^J{81{fE)10ShO|&zq zK`q|i)aK%!tp&qjJse*A*JvUUwZef;FxV;Z+!{!xPu)C-^Bb9vcosn8^D1v0$Ru* zB0N8EJ<>4XxkRc^X_NF=aI?!(^33EZ;Ep|>XRWEJSMNGR6 zE2C+_OlZn#=o6z}dCF{!MvNo&j7-`#WG#v}^mAEDwCb&hq&yDa=~+}Ay?`j2i$kx& zNbDiOVXPHV4%RS~>mCV%@Mk&G`n@ z2%wWn&>LEisA^U0#|yq81Fk2trx6N{i1uIHdq9N&+R*n7JHvZ*1I|qKz$9Fw9^LDU zBBQ_KtT-3>b}>_w9Mj2EO=k^3WgZ{gn1S7OU&Qv+(+4%*5?ya1&m0rQ|5E!#Y9qTN zk316DjW-LaY9eLaE`=0z%Hw;B$AgRF=U%UO9-C!(Pb+|)ergIPJn6mVpmrkXk(8Wq zs7zy%A@JHfqsl_L+OLx8#H4 z$U>B3zxws`R6G||3%OW5c}wxGyWUh7j*R83P(sf|%J=B1&-R+k&UMeRqlx(NiE?53 z4P)u-q4wR8!t7&qDr^U0!>5UdkSu=%cxQnVABWX@AOb_gSdhGR!`!nvXjVXNFZlt* zMhLLT4%uf5+tVK`V@c^JH^6%gXyQIR|13K`kO@Jw8<*b}!Ff#hT?iixoCDx%MJyt` zzPAor5|lE+?NAy}uYLPyw=;UX?M=VXU1X~pGbdG+Q%@pV5uW8h;U=4Fho-&ORJJe|*?;1erjjpBk9rBJ6dezwqnf38hYO=hF_ZP@in+LF+PQu2 z1H1Wo6DOyCo<5w|ADJr*yXWWp*^Kj=TlficcVoX7_A2k_G)}(AZ?ub_Xwjwkc>6y4 z3+QSze`$@F2WDBBhe%12X}%@509XN`FlE5Og9mKPvU_j!l{$Ak^2S?zQ7fBs?s()& zn!h$V_Smk2aLS7}58Zn4j!wz@gIh0JWW zKZ_<2xG-+>ckMI1JjGy+6y+fF2EH(IYnAY`3iSjaB3_7+#E!N=oGm#^b^O!7T)_`p ziv`ALI0$q_x@=K zq2nY4)j+#gx3|+y*=fOMsQ5V20}Z^}a8{i)v6y%GLv%=Y;itG~iT7gdS;0!X33oLN zwzh*6--xGSW5y43B;ju*nO>}%T%G|ci-fd<$(;zj54s4Dl(9k9Ao>K*^>@mN2R5&1=q7XUFq}t3w5Ae74F)p|fo)Ep-yevXV}8`tO(%O*Edf#tWfP zVcdGIk%%Hg5VYo=&Ov${*~GDfD#MUhSjbxtbNa?g5aGgZxH>Y$n&@L5t7lX9+KrLU z$lOv@lBKpJ`)bh14YX@UbF{QGGB-D}(Xf2dIf5gclYABoTRmBpXUto_^+;GowwPWA{#^tUtU>0XXz>1=>)Ea__wn1T?)O+8q`L<~ zM)lNyL5t$^eh;!>z`BQA*OUPRs$ut^eMr6Imvj419GMAa_uo;AX6GkN z3AzJb-D-$#yj4?@B3dd_zGER5nmK}3*^i*)a~50BBy(bZwkVquEd=h1b!Wxx#}LVE zgbya84gD)c1)h8QfyD%AgSn##5>R_tJS)y#huvKGMeyB9Pk_L-rqxg~mONAZ3rpfM z-OKbBI^E@HHyxFd}S4L*~L zgh_5%A(;}DNMVp8D{+%rAM`z?#1mybwc0W`IdOfyRd0GwS zBRB-0Wl#%QglW(WosEFeAgMJO$O z917Y34-YQQ^CeP3YoYEsi(qqnDN8>gru(Z`3z_*$0UCz0x=KoK$HBs|mC#{Hn15Cc zJraUrU}Le{F&u;X6E=3xMS8&?U8HgSIJ7~a7pn&;OCXIz}?kZooQ4m6;( zHE8CG+^F{jpq2b~j) zT6#$GJlMExVN_dl8@FvZCaWWzu}k$}-w)FLEQ9OtrggAu@c-ymb^OQloHX<|U& z=Y&2Wgo!IVup-1w4a#2;V!AfTDC4Y`Yk-)noCo!-@g(|iWdmEb(M4@M#!_*HT6wf3 z8GbdPWs{@Htd>|3Ny6HcP#!~-j$d}qug6o}-(;vLfvO=P)R2^sfi8QQQi+YjihykR z_~Y@3S1^~}!x3DxTysnlcpD?G_O3IPg1TMKiSP%U2Y*1yuU9)8$reg)v1 zj)>DB88A*l;W`dIVl|KKVs^{^Ihy(c2>ifJ?!!1l2>GZ`ySPLv8y0-Bh#39*taWi| z%s?cY61VBy2e1e2$-BCUC8ArAXpQ?2-~TR`FUeCw)jbZta&QW(H{fMxeoA*mF9e7O z92K3wt7!3T%M{fpGzhc+B{CNaR==!a-x^MVy6i1&Sw0W6(Al=4$uF1XHa@>x)|B>H zpoGpV%3s2QhRUkvPM*9YL2o0G5wVAFB9U9~xZ~vdSwzpD7vJ6KT1fX2fg8Sl$H_Z> zQe=KX+E?1s7N7nM2gJN3zcFDr{E#*%LI~O`*|EJOGsC(BISdlBnM593IQ_}M#1LvT z{~R*T*Bzwv?Oy)6oIc^Gz6o$-$`QB(!DPat{Do7_v7uKbvnyEpX>Abq2|>>@A*1km zkhl+N8CV~hjhozW36>H3J-+ijm+4rYE#COPe~#zde&1FSy@b(<-nz+s=kgO1`N>KC z`r4guj?z@(I9^drZ-+;BZNE#dEU7|5gD(Pwy?A1ODu-t%2(MGXTL!iWwOhG-nNpf{ zdjE$Gsq77op{j>f4KqdxBUW9Nj z!%b2u4eMGkkp+zCzZ;f;KafGZ3ombnJsI*F@+olLU$bi89Nj&Nzki<-cHiAOGWde3R-} zJ7_O3O@yA2xql1d0)Tu2lp*~D>~0NYHX&+xI+h;A9JfKdhSI#;ReS9~cv@~7Nt>V* z@n?c=H~NeXZIZ_VypgcHX>HTs&peSMOZWST+#cybo*=6hXcu}BjWMc0P$n6w!p9J- zG%#+7C=nWJB-NAM4H`McF(_#JQWGPOZ0?YS!L*@uu%|<640)Ymq5QZWH50lS)yJ0* zq)x6AtV0TvPAz>otwm#zZs&QAa<6L87akhVr^=b(WO6uDPUXi{BL~}yZ~S)HKmRr}>O_~YA5hK|l98x(!u6Hdu+~Bz67!hmFSl7i9zyRT5Mams2uZ-= z%aek1pF{nL^`@B4k%Da(B7sGk%$VHtDI8!+B5X2)2m&or=w5j)j59F(&5#o^>CND$ zt?@{8oHCH=2;YOXgv^A5?&t|1a4mRYh>@-tp@RKk=(56df2~bsM@M?|{M*s5abwK< zz`(TJ!RmAp$=n<0smS+aQW~Z0Bl3Z-*+0si0O;f!-Z%Ovt{U3g(~k0PW<_ znTqOdZx4H8o%#QYR0Ex&8P6xu=|nzm7CY0)ayb}}hs+qbRVJQ%Rgc9D&-8iK+kuR= z(Dt|Ul>w#?;q-?&gv`p2)RH{|l-{$)3a=1xFsz?^@oG?cD~v0cqm%GI7UhE+>~;`Y z-vqNFsp=Zp zBDvSl7bW;o1Mn<7~Rt-fdlq-t13g*i>VpeL76>c|FS?}C+O1IIwefM%w zuh#)*Tx4L6Bi&j973nhX3Ov!tNLCJmk+^MRR0K~!s zL)2qS<6%|Rn#@y{@YCS-!qDb!R@N3P#C->cYAhf2K7CJOuX zv1m<~8I%P>-9#^aAKui^GQLgJ01yHLJ; z*J!p9xGOq||9G~-hAtI4;^9aQqWbRmD^#-a=v@JaUND$?G7HfW0Vm60BS@O?^b<4~@+Da@@m~b&8_2#SR5map(%=wh*l0n31Bz_o$=|Af zoq5JO=HrilkP1GVUQ~0Qe#iJzi><*wtAfCk)B=^JQU(jpfgtIuI*C!%}g`fAyG++ICdMK7@ z|4FmQeRXwzLdn|UlZSv&ipOt0f+^#}FPJ$}jUBViw)F@u~7Tax(>)YU}uK{y;B z@5Z$K(V^uf!*nT&-GHnDn(;1=zeiVmYwQqii|q3Skw*zyD0e6Kz_l3!(-;%f;%sXDr3azuKlz;di!Tzl)TMoX~Qr_Zy%-lIya$Htp7x3 zO3XAQ+%&FfAwbL#EFp3G2u(KF$y&Ace@Ly6Ucu{!2K;%V}+%xoYx8BgBxF6IytaxOlLf>lmr<{-IWuCT=40>2T zA!`5yL!M@?I{}FTy&VgvdwvB50!n{_qU^#c0P;Ds#db+1-Gx)izEdv$3jVkZM7e z5LhM!f=PG`d>$zgP<*EhI_p8pv`%S;Xs?>j9>Ai&%g957X0@%y#wt>Y09_1y| zsh4x+Qs?4D)Iw}?m-Z4iDVQZ_zW)Pz8gX#ri1=F?>J0q?MjmE(Yi62+WpqASoMB*8 z5Zsu6njpjwxRPi;RDon|zKT~=2g- zFI7m@jHKVE#WQAJM_$OFCzdkm5U@OYA(KnVxGp>7Nrht!xf?>U$7ibfxZ#WD)T9i6 zOgc5LkKVPn7z-m)I!vL``w&DYWevaNW#uYTfWS5EQIHQrNg&b(Swk@3M??NNykLI1 zJ7pK~1`%Kq^haRLnne0gNJc7i(-zm0;Y(PA zJ)u_x8e;@1kjQE-VgoUAIgXHUtQ$u3@+zox#>S<@m9)l%ePBvG{+70oD1s zFWeg8E6MOkE9`qMW%6#7%Q-C4K<+tCb&99xnX1CURaXl&t|iq9sv8*B4kbeP<2F~$ z>pED8qb~2p8jNzHkP1p9?;23YYW;Uw15hO>o)}?xMPi%Y#}4GKH5*tSza;GZBfc(SQz%zhtxU6UvOcmuZH+dH7~Jf^ zNju;Ay0;$OZy7*u@Hu;h{V(?Guy@7KhBflX^re{OH8QU53VO5}LfE62Fj&MCFn7cb zVsf&bq~1j>ybunbR%7Y(nI|H@bRt*uro*L3{3lOEB5ON{zwB6eU!)XynKy9eiSS46 z&=*QEH601ZPhlt5%LLYkMkXO+pwHA4tRy8U9uS9N!Z%>dSCTC-j|P1HNveTMrn?e# zH`_cQ=MYv|nW|4!u+7N_uHEq)NOlWj=h_WV=zrtlYzYQM!B;U~Rv<0ssrnAuZy5d( zvitVcYbc0N!^z_h!y);PxD-TlNQh!s?eT?biGA8EkQsxRqK{k7Wus^iKwq|^Jz z-$FQ@W`!p=r$|%!7upQ>X}y(ALvjMZoa9czKm%V(#FN6dx%Pu5A-xt+e}F4_@&2_b zw<+W%7{DQFaCX$J859dhE`SBJG`U&fI@w52(B{8Na8a}hy1PDJoEa(RPVEEwH0@ zgd5)BCRM(Znw_sl?Az!g!n_k=Wr#$G1VVx#Dv)GAECBq7b0-O==8_JQh`=ogOGL(T zGmXLi(j)l;Kv#KD8^#yB+q&1VPPgHooRPboFP(bs^dg|gXx1Q2!n^}?9J7I12|@%w z=B`LU3f+~(SMEG5%QK4ptuLMa5^IOZqJ*!s(GPebh=vYeqLA1A9BTp5UVaIbLmXp& zNc4FnzgGf%p}VYmP3!dH0Da4=FHTS$5}%m+8;BKrJ4QFJ{y}zq=q^c=8Qe9`aUVKwM+u>1ETr!SKE-@h1tU`jzUb zs)8}S_&-ix`QddVdPx5hogI*Cr^k2)AKX0sj}PxWh{YHtd4}q&Lk&UoWdRpRB7qVH z5+AZO7c^Y1yLNi>)ZG}MV%*eD|MuyBJe{P`DCRL;M?4=zF7EhrbiD~8PX#vPRE@6O z{>RgspIl`-5zPlWt_@oQU0Z?F$}1)y>ou4Htz`siNP-`uRsxx);6FlKUt?qO^dhYD zyZ%(rU6E~fJbz3-qyIe)!bsWb%*fP4KE3-apAqlMejP`9^O|bzQJX-wyRJ(_g?a(UC|*w5YQ8MY1kZO`z{ zUfLw&Pukwor}z;>HChu>m~6f0c^Wz=jcIzGYX&oQNwPM0ueWUL_AW-kKMvlnvu)7+ z2@ZdB;IOdWf1f=E%)LQ&(*XLOn;mEgpo{@J^R_>?aU(-e;SUwQV-^bG&P z^T|TS?*6Mcnuc7%Wx#)6zsPy8J=DhfjfERB3bf`KsKyEu=qVl%MDH+HTtS~#_LxgT z?S{V*O9YIqJjo_JU*O?9W&w~b9Dr3Gjt2S73%7ZdWGor>d$Q@8oQC_*m(?uKxHTf5 ziO_9B zEXLwGb1>dT-C5KG?$x#>+z$+r{Ff~?Rkw`p_t(}$x}~c_V}-qAzCF9-vAxgKH((8M zbtjS?y^usH?=F}e>{vBjfi^OLb?ISWydzW{#XttK8d|wTGA59QFj2Yx??&=2pA2Xy z6-5m~Q+622|2e902xu6)u9}BwYvVJs;3Ey#HgGB;hh|TPrJO9t>U0YUvMmm{X)0a_ z$BL08ikg%wW&=pfMZ(>zAd(atqrB&6z5Wpnw?W}ym4Kh>DPV6>@bfx7eRhfSRzmj> z@)dTc8$Bc0a{ABcC0^d_Js@qjKV;KkWz}>B9&JH|`obR(RcGlLCB-Xu*B!%M9|>oq zfR`kp$silhjp#s98?-T4Kar#8*OBqD%aQ_pDYYj>IP0IjAsOEahJ#UmFz849kM0jZ zMNelQ?03k+H|zHvExbU^b-muBWVl&~$v5kCmlPBW6Fg4jLm{-;_Ke%;Yjib2Mz>|x zwmdYC66X)%dKBwj0)Idd6;{ew3&nsvBb2w?vn^Zp+Q!BQKG5EN zi-8o`EO-7qF8;agsn7;9V)OZkIvu~oK7{#5UM5%`TEvTF@FGtO20Z~&r9I$167?ev z@d$m|&`08-Q1$1(15w$inqeOcoJTZaAP7`wDH`&i7_tmm8hCO8)yjX~6N-))ap1!} zUe7sC@jsg}U5O^caWIZU_b||3wa8}n#E(`N+WatQ9i@3)w0xKOSQf?x!b-}PMI-( zFsz;{jE&TOvNdUh@`WQteGi@F{^j-LaM|2_Jcb%KGQ^))R#!_YdnO+WN*L%QQ_+~9 zI1d$;jj~H2*R~)J<6#K^wFQcqt13iyk0QE@OB0*FObR`{ys)dT(A44kw#H*;TiXoY8NwYFR9Mm7brdt47coNkDxYVt2DNsg#K{;^EFM%MP4E}R z>O|#W(9=W>E`Ky;X09R3xli_6F%Nq_2rdNRAeFwBg3m*d4wYq^I6a)e1E3RPVTH^b zL|7C)H7xcR4uXi+#J|C+jS){Z6HWQQ5r4JqtY6yeWU!-ALb0K+vu{`bTK5lJt47hC z?!_R`@(23WSI55*n;r98jYK%YzM-ulN$ak?P69i|{3?V4XD{!&7l5y(wMl_|iWyyL z3SfUvdB9aE>IhSbEKiidfwH>SJLOgdx?p*3*OaMffjfd>JB&*5v}Ua4V5MD+H+N0) zNEd&-Es{V*cC?_xe1)m;Dm%MZR#twZb@r zw&K=>9iD1qb@d9Mgeen%K=DW?{CK2|`VH?e*mfZ|%LbO#o=xi}Ex62eh8=ImrGF#{ zyipVKHe6@lVZR1Rh%`;o$&)Cp*yIkOyr-3i;T%;nKt>Ys9nE!&WvU&}LP7XgE*-h` zL*s?<_ZOnp;Zx(?Kggwm^W$22?DhHA9aM7@H#|B{KkqM;Uv~Jbzn@Eu zkGCcs#W}UyPaJp%f(rT)_og^BnagCz?gvX=4Sa+f0Fsc$);sOx<>jeNJ@fhQWmezp zbe5Oznd)>l$bKz+s9#`j!Wx2cs51rG6k#{0wT#-E*~_f<#l`g5AD&=u?EbcO_TWD+ovJ zaNFXd$X4d8tiUkJ_jgzMJ4`I>s4um5KMS)E%4dI|PKUdl-g)kGyq&!sv`}wwCmF48 z98xA0LgcA|q)orH8jxR&1b8+S(+n*WiI40(w09&P$>39rd1J9eRGm38qefAIn!P@5 zq|>!bEf2#sOxAh4O{a|+k5@;YykeZPip7h_m(S6oH zzvW;FyaicxPY>OTbxBAllw6cz!-aZf0=#d^-oAedt=L4X0VPf@XuwALP?Fvo;i)FX zTyIZbimIbd6dDiVs-B3)O7hwSlk_2Pmdmq~r+y`zpeWiq#O5bNxa|qCF^u#I+Lf)pPH0W9?%<$oB7$&*zKckEN)vw_=(rHh|i_IQLbLSdd0)QXSc_C z4RNIEpi!MtXY`(8D+&$oXpZxLnkQ^ybrH}GxE1KN`*|$TTX9}s`}DH{|2Qn^h?k;N zYZ|kG5EsE{Yo;Cv1|vEp4!|GO$}Rc`uTGd%i|76zeUk<)nzkPi$7dDIEd0Z1hx900 z!C$>t7Z?W`YdaBDUtR5@qH~}0uYyQ7e{_$kRZbK`el?&6fs)uFpQi$Hu@YZr4t#Wb zhF&%FOGD2NeI7C>MZN&d1Zt-kbX?Gkalz5Hl*xUBp#B_YgjG`kZ@?U=mPj^(IRRhs z%wc>{h$P41_20N@EvtZR!TE<1Atc~RNO8$+6IfBmkARFkp1myZ;VCF#s-O;~k-~?y z2hJ^`2Za&%ms;~C;z~<0B<0pTWf8zHrLX!Gj4v-lT-oCTP}ayAvgVJ({6JnJE>tnX z>C_%YMM_)dm857i8hiq(_6YJh!?Bz)na>;cd08@rH&Jg1(UxJagmMKw-&z>hEtEI# zDNx&?5*e|G5{)5R$}aG*GsQ>1$^0$p{5ia$i~{`KJ`f#5z_VA8^bp))sFgtl8L%I=X?VY7Up(wb z^@`imYNTF817(McoD`xd zlzar1MdH7tU4pA}K^r&3O3Z^!0QkTHMY4!Ml3>Bcd|vDRZ1yC&9hj_$mF@n6VSm7Q z+iaPW!-kN#p~T*tJ!$4}Yb2Mrgj*U&qt6L~FYkvGQy^h&?A@QZ%rwshx}5@q3MWg@ zSGeOXiOea;*bGXxs7dlbs%xnEb?FyAK;{(NcKsF$WeBKJ|gngk&8YK=5nL1S_f?g_l=^xge>uU zY#BZlvcDMMCgh{)b38IF;h%~*yJ{>@UYPGKkt_(!HszTlRZ4+;fexZt)?K)1;jn_ z64$gMbOR@zUReg3lMrWU9csPqDlAkO=5Wm-PMHA=&gIJ9wN$c;ql#$T9a-Brr?&S?mA0Po8WRG6mPF;E*ov_g%@`zeW+u_QWghkW2JO>B7a*ed$9UT>S}_2~I<~{te)M+wGv!=f1+<#iRIfSCxLlpzU5`uty@;wtQC;Dt zM|?}VyJ_SD(7IB(W3J4%GB3mEDl4or;x>F0Q?F>MldN ztM5o6=P_5&r)2xcyQ2(NRj^zhG66Y&%m2jvi~V;JraAqS(9$t38wp=5bR`t?jU&7V zY37FbhQkeU-;0Zj2+v)Dr#RSIBbS41)9V`2f8vM671>{i4}X|@w0I@k3WK7n^lu1q zM06TtD{e9>K@cZN01#uMGs!;P{n}#oXp!If8xLl?{}DkBSzVuq&3>Wq*8Ori z7RtN6t5r7_U9?uJJ~mb#T?Q(V+K=&#4bJL%P(6YK0T9LF3Ez&!(cFdrG%|0V0LZ+Ab6$TLJnJZ|0fx80xP z^N4H@J-cgy`~3zBO;A1pV(YMhU1NQ{_44KS9Ja>ZU|nm1?XKB%eqhVqwt_We7&a7= zHwLf1tx_H>uVnQ=-Op=oHDHDP;N{DQ$E?Hex&E#~_2Bx)lKlif$Mug8X2*~Fmnc7K z9|;EKPgLKfAX5mXcu+vAYTy&|Sm`+qzhP7fi(x2yQ-W6ws~lcy%)pRB^w6se#9cUb zX}klLu*&4g>2lm#_ob~TywON#-Q@>{#695UsMLBxyL|Tw zo=n`6;!iqwf-L6v5Y288enOfH*ME|L-!_TYd682Z?jW`#IRASi-gMHh6cf=%<>jT$ z#)iFk@#11H1wCrmO{EhlW!Rg4#>V7wE?jWL*cbPsJZVDa6<2N1aD!^KA8|}tBWY0h z!~iYOWSK$NH{)}al+H$qPyW+Bh$${9;n%OPx9Jui(kfY_pp5K(jMevD2x!l=#p0Uy zI<(eapZ$Q_FOdTpHeAeNx}ni9kiKPG#K!k89xvF(KKuUVrHB?0@fn{CBiB};e(VAd z$MC$S7bfEN-5Rb-aYe9;?if=94Ol406xGSL2NEsU2^1BF?|FylA$y7I#_}87XTbGo zOsg2v*VmY*k)bq@)u1o#ywJh0>vfD^tQ#2DxR@AoJ-R6?_D-=-NC}Ba)4GP@jpn6G zCiinrzC<}(^^?J=IHQuT>6Gi3a*c>TDAP~mK5_3SEGY3l2@T;1rzD*}s)WxHJDhs| zef$J35c+{2%3Lv@&EPqYlBUnf&%U3A86E{=>-X6++?GjPzKWEr0#^pGHS*F}@+!q5aNKE*CIN|ksmN;m2_76m4a7k=_zf4Hh zS!Ph8xI?om^x^PqcSCHK#a<8zyef~qqFk}!o}%u;mL2XUckYAt`=CxtP6E}=Rc}Vr z8!`RBsy>MgY>3FFEVef#)ioq83*e`Cr8fRI(ch1E?$hsmDfE{F!9+iCT(P-%OLN{_ zPOk`aDC7ZNQUdftPu;Qo4}&lF`o2$QzbpECU{GJg$&l zLCk{wbm$MTo6+C>zoLtJGr}EUy?)qv4!cb*X2jM5VC{7E4ot*Itvfx@)hAJW0r; zi0k57{c9ral)Xk`>%c|rdI*<&N!KJ2Ijw`&gax6q^Cd~9cb~lk`Y6y}to{%YM5sky zE`X7otn_VUOCj?V=C!u<7UJUe9qzFKxt**^FX;{xVzTpH-n)3C`>axBajZ-IXZbhZ zOS|E{kSBNhy@1JlDJ_TRB0;N3-r${|PwQ|E=mu?Br-P(N{20%Pfqa8DWjBA&ALCx+ zZQl9$ZrpzeMcF=Q{E+Rp<_wK$9v!?j7cssu_tv*&qL?vtsC*87_(TMA>d9QBH*(zQ zHF_R*vyu=GnUU+`fUm-f$%F5%RVeFw&qu%9I{Nyf{_*^$Vh8QwoFh7vQUHGca=6Mhd zP+2hca6ccJ3-}ue+MDo`kW2q_iIN&XJ*G%ty}llZq~iwz@%lszp?`>HVPqzFm%HtL zPlSoA*V+41qe;ZY1|p7w#8}{_bu(bZVp&u*M_^b)ysnX-P+Nm?j~~I)NPnSN*8*~! zo&xp2k-=aA*}K))@hx&W@Zz;pw;IMi?wJ$j&{E5U<7K{uc5n9m#=j}2W3u6sHB~BX zy)ELcf`VVz`?=}Swm0DOMxlxD75A?I;N+y=ovU)sC zZ{ivEO)Q&0P|U>9_}l3k-oS{Ss?NchdMjhaIG|~#Yp{-xZH4p3b@rF+b7b9Zfi)6O zBo?{jmIo-A6thH?!kn0?;unR*`M(;o{JIv2OHN{OZtCRZ(lR9O0R$V9eVxF zAB9vk^uyx_di5nDAD`Ykd6L?k`13mC`*orLfls9VK*P!3m=2ddc-5jJ_!**pF5NCFCte*A}Y?>`cB2%6qWG<_44f(DvHU*$L?>UWB&uT_xHnE$FC znbUL&`C(dLIm0FZpm7d`MxrC(V?jB3I5cv6r2W{R)0}k5`_kC;NVF81*_V6-j*Om- zg7U0VtQcW+hENTmrZU)wyh)BZKz@#%0t@4pvT^LYyX&7|W52lT^)JV$1AZv(A%pN= z1HYrB4rJCM-iNvu26Noox4~%Vs58G4?!Y{2{sQxwZQu za4=?CtFNo!(eyvpNl=3Of<2fItCx`tJj>qF-T1PBuc7P)4)8)8+LV?yFGoyi^m09Y znhbB$_f+dtVBUbrBsVFUV--+Cu^<3DIP3T^l-&9VII;;`(VuHlGGQ*m!ZE;qsfH_L zpuy~o+pgp0YwYwdCZdaWxZd}8+*9v*WEpk?iMCyDFc0HT^e;M?dePoas!OZjZ&Z10 zhzS%9;aV`dxy6jT2{2mv?gBPcS}?wnwMGyAUG`RnsD{8>7PFf?h}1eL1FOsdunq9vur?sy^p4Eaq}igHD? zUJ@DtyfP?uM+iDHn$xVsWGE@@8{Ko+JB?~)Y0o?Up98+Yskf`GB2~T1S2K|y`?c(y z`g~>MP49U0onGnGKjlidO!!KvY$e0jvM;gk;n|`Xm9!Ec;g)&CT#x~UBUJi|R0~%4 zCdv&XqyyZQR)U5XR!lsxoYdh{L&+E669u2b5&`S{h0$H=0qa0Ahm1v|BCT%_DIUY4 z2~^ojYs;iINMG%)uEf*-A8T&{AK6vk`PQv{-*4@zRaGTbNv)PjrRvSy)ti^@Hr|lz zwhgo!W0IDGF<=Kw!Yi94Ce8u`wHXMB=OuyA%0d=rAtVUG=glOL_jt*uNthualOf5o zNIXkO-bq^WLSLMhuGUdl)Ge`aH!&&9OOd`+!YAO43qJoyEYR{8HK zn{BhVcUGz5F+Qhx;EdR$S>hLipC^nz8*dM=*1YlCM7jJQv26Pe<6a!`hW|H8ph)X8 zRE%S4KO0+KfAGPUvpr*ccz9DD`S$_FP6(2TqHOp{9|fu~4@t+bx_kovj`?FUn1|&$DG^;)D4G z{Pc3ME0Ec0{erU0T2IEJ;C$m6(r;nrT`8AWa2%8KYw82WM=q}nUm8? zp<5)K$I>k!W0A{)0XMX&#bWh}ZLv~f*I6l1vg|jMFE&5%bC$hPRu!vfgg_|Ap2W2q zE0->bKY&_C5y9HlenMge}&F(P1j6)lxF@%;Hwj zQjIZKM+#lvuFSu_(2#E|o*ZY4yW^ez0hkQomc8DZC|W z{w)o(*!C$~%P``%9gtqea>Y~vm6$$}c_{W~QGc&oZgo$$PIm<>-WO`s(Y9Y$TDm|c z9c;G%_F3n{sGREcOL8!bmfP>uh2B>_jiCea{({Vq;hI&p;6W~uw?yqr+GgWamM#_F zj4lGiYAai?l0ay~LW$O=TBNXK#jM1`x1>_HgySC` zehaffax_N5XB@ZTOk8*4cqakWo*H_8>{GBn4M3&gf5Zw;$X8duFEJAII@rxn{deGs zJEo9p2o&1?r(Uj#Sa~Hdwhm}vF#%8#p87yGz_mV5NiS8;_)U99^Uoa zOIlq-l89^mX=jlk!WcM=cPWwmM+%Xy)cyH+W5E85LmZ95GlXU#Itk?M=vOSfn;$yz zz5E)V3HWn`TMxau)rricPAtsUE9oT3kR5n04gZWMUoe?#OdSF`CzmbeOU4t1-I1xB ze(gt{(MTa%D>cjYVkwmzek%~nXU7ZGIH)+mSSnw|9d5KA32hP1j)PD)OMs$O+%}Xy zWN%kWXY37+`a-NVBchE*a(;JxnvMm!AvP%%p#^4 zi}vo!jnj8Ld&^`Z+}?%$n8UG{j#mrg*?fBML^Yp^3FM{4Pl>HvVk@`z za8)ejb2YFu`lCJNYsOz2pWvimnP_ZxkMbSpr3K@iAd{wX+o4dXcyIUVr+;Yv-Xc&d zhn~H!c%ShJfnq7%JO4vZKi%bW=+J#!)pJA13g5>*1virJ%4}c+O62!oo=A`_D?!0T50GGuO1m`C-1pjj&56=~@#V}?I%|q`KNvN0Rae~SO-8Wu zIP5J8$wCk@Cd*(e;(}@#a@H~ug;+>%n_?zj_Zf^t%}mfq{_bEX zc>dl{ENqgBJDy7B6V7;~l&xmKjkP=dL31?!X`}Fz6L<&XVW|9ZJuHHVT{jJmKqfmu zKhoqTXfynJs@fvR-BuUCqRIF0gbON+mYaB$4v^orO1m=4yD`JqXvLyOUssqu77F<% z>_#XuHr{b|7VcewFlBBqhMr#LW{=e_1XQDo^ zuRMWJ+_VElo6e_jzl}AH~NoGr}u%C!CAQxmm zlNc(^&uPC#L8#VV$0H9%(c7w1iu1H450S1#ODpeP*0s@hU9N-ex41|yS78j~*<4&4 zu8pp6osgBqHHEChH@xFJ^|QXXIND!z?4S5qf?Y?goTg1Cd!G;-apPSvRzxmcLD8%E zqOJRpzU6dwNjx>ezi`HQoeVDuJ~sJ(VR&(tK}#(4OVfq#*)V>Gd1M#cS-sf_h_fA@ zEO-CX-Jf~j?AZtY{T~hQHkQBqWks9Xd!EG0p(UuB37kU^L+z$V51qJu&TG_TVIajp znxkE`mM->Deg_f%k%=?|VrW0c;Rg0HNxMZNHgSJD#Sj_gKIC37+V;jQ!v5H9&IJ`) zv7>w)RUzdgSQhPi@`~yOB@E9pr4^sQ<>PZ{ZH0itwe|&L1s;D}(C&ry^3p|OJ1kyK zbiFeFs>ossa#G-5$ioW!WwmtK$`lBk$hDn4cBE^)+Qo6D(=@rcYrHjoK0o}e^ZE1l zfR4sr*y9PKSC}|4Id>Z=7kjsTt}mFXAXY8?<6`s;#z)F`RqnjAd}nC>p6@x^p~ELn z+;MW^;NGbdjg80f-4JBx!j?FmK(pqp8S(gJjH4j-;oo{7t*nGh`dyRYMYue zO|59kq!B8LQt-eqt_tmfZB` z;Y2GL^JMaWYBl4YW;q)vmv7C-i(jM3tB1@+`@iNV;^ky);=u>1giuIRCKp<7oXvG# z?Vp?giZ7bU8>dv$l4aj)x$*jPq&Q9cWe#cHcEjkxmul~bigJC&qVnZ*0U+{ ztIQT$s8-vlI|HiG9@&l|z^>iOY6Y|$kDL)qXOVAQ~Wy7vQzo2#6`=~jP;DS zZR?CvS9O#{7i&{;2uK@h5?UzU&FiC{F-+A{Y7J=LPVv#uv1KDKekKv;J`0X2iP2%Y zZ=tFaW`!z7P7zpy9$>b1&U+ThXb+MdXw!UeJgss~IL4dUSd5mzB5ieNBm!GxoZ;W( z>(_iGW&>>}_}{cy-*{TGRpfoX7-htrDOu2&fR+B{o7a57&6WW5?>7BIG)}C<_$AR? zHCRhsiCO5OGE!lFMX>9TW>lCGP$}B%jp0YX(ZI`ftRhR?KruO2O(@^By_5_?AE#-ic{6FgLqC8 z&ZRuyg%vQmn&j8%29(!?^k=Va;Rf3Q$zrl`clfpkx8DBCCiT3L2HbRQBY*YK9)ztu zhpZRcV!v`l4nx|bP=z?YV4F6TED3h6kpj6*L`L+jZ;i%>YgB$`@yxBoTlqUvJd^mv zUnFWqR0~E(UDMy#99G#+a-J)MBqZc~ACTljYK>}4@TBFJKh54DN4u!L6erG6FQMRK zh*V+ihfzQ4#AYs;y_}74x*U)5Hr-B+Tgh?%brf;K7Z?ixNB4wo>yY(3)f#ke3wZ!1 z=bn`np4cZ=AyRrm+9y1V-Y>Fp-q(Q{9EF=$ib4T&WYg&3B5B6O?IUh3bou{~4+(AQ zLK{$OrA`%%UpDpyd+lIx(BD>WPPEGPt5vpDQSdf-ib=s~XHb8bG)z?@SCPT@aymNSAR#x zARkV}0Lh4%@)-Vg`|^Okf?ubvG@WvmjB*bixIU#Y2H4Y^TRpc)FQIRWXV{J27yIGy zuw*i(CtnfK!=HP<*PFhU@)rk}>0ceUcX>zu5=Zu3^{xXc4DrVJd0#d9X8|Ai8)V4; zG~ye6WsA-|v-#N>9@S-#l?;Rr-@6?3yfyN_{)4{iXZ6S*HqmpWqNzNu!{0?j8_j_= zMdMcA?uW{h_#2A}M@$o9>4zujEu(0Iwl%*2$_n$4Wd==wn}8{vD5pZEGAf2!z& zRS5i9w0b2{jac2fT$nAqGe4V`M-pFRu&4%+s_zGXT~E_B*pqkp{KNOX-{*V(a~9P& z4rtc_Gy2T(op)~btE`>;=Df8TyRV+BXTtT@(0}P~(fN`KX#?ugI~UXcim?_n3>>0f z;aFdII&0R^|C+H*bQPcb%E!9Dq^9O8AL`+6G1kkFt@iI1jIVLd2l2Q- zZmgS}y<`IB#4wxbE)pXM*C@KXY3xy|4@s}E8BHRvYXo%=EjFmk_~L1=cPz1Y@7CMA z75xZ2P%`+O(ITh9dbxEZpN`ej<-MQTdTYEvHZRSF#Bwk6oPqZdkvfvix9DSE`d3mY z=7d*HB`lcHdL^W;R~4y?+P;LGBRPh}yE7wt_n!2o#LvOrY!9b1>goib>qw!1M60dY zZE$|uft-sM zBjiX##T*6{L{hdsF?UN1$X*@`Af?xI!`W&HpdWa^;r51VL7&UM5b!w9*u~5dx8B%$ z0snb*WyN?PkP;-tRA9j{&Nw`<549|Bykh$f^c;@!SjV}v#Up5c6Y)9#KE+@#Fu_(} zIcxMp%^{!3CyI6lz>4+tm42VpSE#{OjRB#@yeP$wboX{0(wMUI!`X)ITPhyr0j^S7 z0kZ>)ZPO#|YSq%Vz^^^vz9@(oSWiogyh_!y4V?}10$?)gseP5qxQfj}@^py@REFps zk=$dR4vN7Tsc|=x*-Hov@KQz49Tw5?U9s_Gm}9rzx<8rRub$^qhYn3gBGc-bq$Acn zwxy$m(JkEg)9KMI+z79sWEg`vAiXWoh$;loA~~VuAo?}g`Et1}8bOt!bD`b-blJdDK;6ev`_fAJ z+⩔^0|SPxsUXH#1F9ywrJHknbS(no*}>7ar$f*`?d!r4N=4{5+5aO zuHaXK3QHE_PO8n7737QV!iHWPhxpCNkdvs zH5$u$tyw8_e>0ni_`P1h^s>datO@3*)&J6_47{Fb39o9)ChANAPlTRYqnH9r+z>pp zL9SpabtiX_Km4N3!1=K&wsf*mm>DZ4Gk4a?U|qW1Kwg$>-kmh}HJw*%W-=P~c_gwa zi7K`-kAqmJ+HR%9?gbW&%?4JE?tjS{+okVsxt3y;6T84EjQ> zcSO1XaIt%R7b7v;5b9H{cD2LH{Oew3Kt!GszpQ`5c@dL56U3#F=Ri&jyw_yw>!RR* zNo4+r)S!|sMucZn`tYsgBKcKSI55#;toRq0#zi0#GvaNTA#X^r3=}*|1VJijwnzfb z--bzG$@n1XH~T(22#iiL=XjmIz9|^!Vn~joO&{rK#MUW#fIRlvF8jA=s(Fxgc@)jZ zyOhFa;<~I?eZ9*kd8gd9HpKU@wG41bOS}Ta7Z|q~oU{7z>}so?Z{Z`1zf#NSqtUPD z7s-u~jc=@7xFE#zFXkHUpilS}=D@ERAAuUBkuW@UjuRsDB)(MFin*g%Gkz^K{GX|# zWA}Ui`@AZ7`dTR%p5(&_!a<71irvEmmxw|5?``;vkBhmRE;#hL%q`ijeId`p_C z?J^t2S!PEG2@>hL*I|AL5pqhRvB0&;tZ7@9m`~CyXRYO9uhehM8Fyte_T!l!vlByG zanBf+xuDWQ@@e=*z0LfSepydsf)Can^dbsnB;jF(37i4TL~TXtd6TzT7OR(7F*L{- z4308e>_7ju^ZWOoH9iy+dZg1*-cS{^5^~bR-*Vt!kK?nv z8kowMk30hyV}PYacni!AJMM6G{nB97Fke`c`3TSV$MAe%_NS+m{v(a6If9%=;+_?2 z(@B$0Li9^0qM1w#8@U_RWM#LKbAnqf9!PX2SfRxtEooVlDq8-HKP@I&I$mw*6xB6< zYA#SFv9_Z4HEdzi6^}Mz{6^z0^Cx`hH!-rtv%cnn%Pg3#g{BWxnb(Vg%;yVDM%XkW zlYu9q8Al>%?kUDY9$!2g_4}hRS>CC>BU8>ej!b*V-Ks9e$d?u`?lF@IN2VPOIz4B- z-m@NOFq#X6V>u(Yj|CeEwt~SZu>q}MgazEo8@WorA2?^`#ax#+&-orSqfX!4O`(V* z8&8Hx{bGo1$2k{@ni!~OxoDEVp%lW4-Vq7iH0N_h&5^t!zOxdOjcd0+?`(OSaT>7y zc*LLC^cZa%^Ypfd6Vb}@s$c<(GAP0<3-h+LyuP@+yr}rME5=u_GrKtJRsMG|;K*^O zm1$^m#pSXl`a6O+lJX*&P-FREwt6P}xlgF7*we;p=H;Kwm6n&6FJJESRq+jw!1ZkW z6ES zXx0h}R%xK56&$trn6|OHSSMGINyGT!PyZ|<$9aL+_zB&*q^_8Sns&l^=si^F0!42wp2b|-?iv2FZMD3` zWiYR4uy!1O={AdwS?U%Ypy<|i)NZ_jwp#=+Rj<O?Ml-`WyhnLU!5<)X;?BQIzKjUog zLM>{C)m&^aysWZh@{g>!Xs%5#&qx*??a>NRcvl1pn8q{yLD3wH~3<4?;SIdP{bcJ?j^D(-!tOT z*?iU?&d-s6!EJcGPLCN&9U#|sI$xWq#e%-D!|QQG(us-r)I=m5OXqNnbCMO>IoWO& z^NCatm`AV}W1(Y4G+Z=-E=M^MrYQvz-?hh`pKjW%fP}BHD06pdi+Pg5cngd8X}` zAvh1&D^zq<9UKuf_-fT*NQw!k2eOz18%Uy(S&{^bZVSc?6`-(hV&H^B6@M@B^)d#K z4n&NoDb6pw;0uw^)E63lu~2OV<75DfhT3j#Bwp(g=ECN>Xe@H0Z^IWH4A+-X?XLyT z=dyrkB*X4NEb0%syqQRL4B*#R>*8QQyGL?_=v_poFIHCs1#$0#YP`~+M`?DuO4D*} zZZnPZ#pX0%TlgDgdR+AhL@{Uh=HnsZ1@ypv3K|u+zhaEck(@%aCMZP&B7s z_MqP7uhcWmUP-^#*)((0kyd1y(5eDSeXsht7Mp6}5vy`|?N@HZSl}nwDc~r8x_VOfevg-QI<^(W4aa(#i zk{~ylA0ZHioMh7R?By~poX;Z<4F+0lG#a<1rrr5is^t8rOwDtI!N{36Tzzg?GOK+l z_4s2e?F$#QAh{K*sN*DRXoL^iZes6#9eHQT;%8CGq5&*VQ_Oo2?iKaCCn|aK{r2nI z-^Z?V4-s{n|7*M>f`&33d98N$_>B0vq$0y-#Mvbky|@;qzz_pR#&k>>a{Pj_sA<%t^F;DNpR8iuq&YgP0}b% zEPDq`HYhlK$?`YCg#^9t1(}(B=tHiDx88t07rTnhr6d;|^pxiWkrPcK**IaFoSsUC z0&J&ey!Sw+dTVyUh5vYF3LpZ*dG;-Mgu6ZO7`(+qUb?kp>~*{T*c*>NH#Hn{`@)gZ z6!~|JV_y5@^t6(i~)dfuF_L}?o$kI`%nOF<&+XrtM z{&s(R-5<+*IGX)z@&8T7BH?YdPu=oAv;R!HwLS7bz;C$NPerDf6|Gp^oFOa$hNkAG z?k=9kc(!(>JKz%75yButvqwnWAAN!jNjWaAHXkx$&U)VEd}s3qLhfiO;R_}*ZBH=d zBT)sQPQTMA&HqWc-0zp(+bDN3)7dq5 z>FQjZc;ARVq%tqg+BJ^I*~0>_tu&!>NTp|Cn-p}RsI;1r{&1w-+EjB9>JtlJv4vyt zb}XD7Q(NL#HXK{l77#dT1<^^s{jJ(tZy7d+BO{E*OQIHx_ev?f^`=U_c(9g0NdY?3 zZAkzTf-;u_Xs@GQjtIw18{La=k z0^grqJ~~=&61x;tdbFMPCF`iV#)>pD&TV-VzZ#dr6|I}L){`z%d=zXiWwo+Yiq}-J zO>4J%ZQHCV%=cJ9`(Oj{7$5d&-EJm8C`dBeBcb_l#rWnwR#_e#sh1(B^ zW$2s#b-Yr{k7ZNELU}RGz0q_rmRJt@?tSF`a8mS^daW zuf<1+N4IFmN3Uyg9t!sqS6qQGEUc!{-!`2T@wu%QfZ{AG36_`JtTiL@R8UbcrTpea zx>4B@q??q|T_zpj`z%+ekVspJI)KY;0>Q^K-Sh@rKr&J2kS#o(<*;bw09+J0+;tw( zHy_K_qh>btl~1=&&A+&qgN8#n$#>Ci*GX|zcPV;4XAHrL@Po~P9ewz)amOR%D|3fp0k<27K2Ol+ z6<|8*@&)`7!{m4Q+>Q|OM{Z}zLC{So{H_45SgEmuH(uNqNrrvzEMQc)V@#K)^a_7s ztfLpUGiqg#*U9VF5lB@PRGyZ!eIhl=!_5?LR@@#ukM&=(n?l&c%S!&zsh-(iEt9_} zG25D$b%f%{Xk>P8G_rR#l87a8PUBOqXtg+YlE1NXmju)C!cB#-n+oxCBKzF8zkT4$ zO^2gXlW$%)V@7=OWF(T5N5UIvr87Sfm7h3+;dF(P{7A$VqK+ji{S0~$jX`JIWWhJz zuo{JxnqLra0IdCQ)@HyD=}+t00bo_{GykN$0`z+NA7J{)S+s?1XX}l;$u?oeuDz1D z<{rTBWtSd@V*$JEgoTvGD&x~b+D=YjNRCf^jf^&sZ)#xID*!$#WAX6m9bb;xzJ{z~ z*%ibmKrka=y(%Jsh{U!T^I^7ES}W3JYA==jY!!Jz`xC&xGJj=W%SIsEgJD~nyJunH zp1E~(Xs#{|4m^A&96s~#0r4nkt9dgjL&p$tI))9;9?IyY9a0qePbn2SMHgt52l7Po z(7$KT_Z~a;y?gHI8)c7FVSyBOB8L%qx81@qpK} z1@%4I4ba9Q^i;77$j+nW^LakQTrfN-wegUU8v7+1kg*=m#X<4$w@Gu6JCQXUM|k6l zW;C)0%(R6zL~EZ5E=QM&(zW&gaLb3V?u) zO_$yhpZqz8^D@i>e^9q(97U%gsNnmBZ?sILtaFi0BmxRLER6!u#j-i-!Df?O=#n@> zZI^gMw>?hNbb3}6L%u6E5xoqXFZ5g@bo%td!s*kY1hA-}E+saWobC(m8(&yFE%#iO zr_)4Fmh1e+!xzH%M4$~(^H+S>ewFc2yg(gIgT6Xy`CPGYK>3!6an zo1*{b8)MB;O^ije;fZKH(MVS8p-Qb7GuvjQS3K-$we9W$p#wf|C$kXGBparq+-Oy^ zm0}?@{I=G3OlW@lZmpkL4n?BPNXFX=&pK1_W-ODK%}jgkQ&XP!^ov3H0?Ry2Ij+bbq|Y_K@un+uPwIUt!Z>O|I%R z^)aEMet}@I!hQuK0RA3dm?Ros_vSIRiQTgKX6@y>X4f7ayl!tb;I?}Mnek}A2!`{e zsZb!EisZsSv0FzPE3cr-GQ0Qo@T>Fn!==149tg+$(R4bGmO0vp!!Fs^way(UB8h2g z>rZ;lv2RK44zJS0PVq_3e>7kVXd*<#Y3dMD#eHtK$tr!5VKeh%%|hXAYhccF=(IV0#*W?aybb;JvGnX^;1xX7sY9TbONeE5*1)|+{wi~3ei~Oj0zN7sL z>5@^nwi;@YY$*nhv~_wTAaAcs5~WD9;qF((tzkrmbcr;b=5n}7l<#0*wNvSOgtsXo zso|}ZpcXloL{%ygoH&1P(Q*UA8n_u^R8jVnqS0ip!>hRJ*81Z?f29eOAoXITU$4z) zT<*P<;=x#=Fx#BiH)%8uOi1D~(KQcv=!2guq-)~`i{)9jE0fLFkk~JbHSDe4Bre=X18AdfF=|uhc=!DYotQe49aRXpVbXJ5KoNF*5ux9 zeOW2cN9V2RkplGRtJuXYgDiV;8bLvRu{w$6paessKY`&Wdy()hhzN(#GT-aq*Ffx%P$KllUx54b!oU(glv1QLlN45i;i=2E9GktBbeH#m{X zrO7=Q3fP^JnFyz`V9a5VFwE`pCa~0ysJS}P?M_sylilv*n#V0-R&366MKZUJyIg|O z5N#);v$>!@5=`bv@#Tpo_T_;ke*lbgWGUgxTV#7DQa9OE9t++4llNsqH4IFF@NzX`^8s4ToD`5!1InR5>Xe8_PD>H zzXF`YHG0fe#~w}e&^&8jK{EHYQfz?NBEkLhAi9Weva#lJq^8KGopZR_Pfk6R(aQdd zzZ^{m{2284`CSK&2M)g@@2EdH_2d;T$t6A=b>5G<=mL-f%Oe{878;ybC92{_UT3OE z?5RbHhZ8{}*|qo}#)gAN0-Ty>pPG8AlBam6aD3MANGiw3y!k5J=Wf$RoQ;Ja@f z!BO^HWqL5A;*tEgjC_(sLV@cQZ^#|BG^CwC88Cg($sIgNkfyHS3wCN)-B=ay9Uaao zCXLYlpy2j}W#wqGRlZ24MJXSf2*s%gml0UnL8Bo}Q56uKxhm0`qbg{Tad8!QYlwf? zitSX@7{z50tWXPeSUEslDmu{yBrSFllq%a#@s3BrFvNU;@6+n)rO`P_ZWIl3$Vmg; z%WK;cb}f>fiepFX5MCe-S#&HJG^=Iyg;9C+tszmIl7prIQPdO9M)ZPqn?8{BdDp(Q zD(H5rmk4>#WwV)WRVhtc*W+?!jrx9#)`=YzOpjhuY;hw=786X-aE(Y9tX{e#=xm(( zLEq=s{DGlWxnW+ou)Mr3ja>(X@a=C0+s{fGrDPsmhnKOJsLpL|YH~tuNr_mqrA2HZ z;JT_-85?V#_lW~E^C?i421%zHut0LKx9X~(5Cob{ za63dRQSr+DiQ8tkgYzavAe4Aw{}Bx=wp4eDgtaU{iJ5d)>0`YC4N{Lkek>P=+7td< zYCK&@@8faO9u0(mI5Pd&L~H^$-Q+gaux(I&%$1A=rcjY2s`r)7E<%9#c)OL#KHA-qYs(!*$u`R52Ybfkmje7n#r9OH49 zBM}05D2Th~SjOCIW_+2QEal!zBGh$EB-4}SQ|0K%c>H9v`~e3^Udq8}2!x{GZIj{f zq)*#8w2y^}7Qp7Rwtt{&O+qNT97;GsvMMbW4L8W9ilAN{Nc{B5v(B$*_7V-YU|kL# zw%hMs9$rcvRUDcwU*|tl2*Y(V<*o|T1SC%bb6o}dKD#MrIhb>yxV!DO8}D@4L->+< zLUz|XkF2h){d^$Ab^i~3+=I9t_k4U=>{_y}b-ALykiCgAJfp(5mCeEcaLeeUjIf8} z?nSTh&{p|x{M4)4uU>2=sA0+Df74UChNqr*__6lCT~<7k*gl_R=b&${N4qdEoa*$^ zb=shN=-PHDzYVJ`x}E?w582%nQ>4p$sW$0?uiGwF{&m`BDE*JvS@NtgJZr@p0Y`q? zf>sPGhHQ{E{A|9Fch&C`NlAkIUHMRAHDR<{-E#M|X$Ja!fd7WyFqogZ9q>nDKaU{~ zUTM@rj;WRti4+nia=4pu+sR_y%$0b5-Pt@=pK(9JnY8W4x7!D@J%EuNyvv92Z z(OSW02FC=YYAnb)tygAdvd#O+&K-!4{nl7KP?bcAW4E@CyfK%1$C?wqCM0agF zcG5lkV@+L2)B5$Fo!skeHz)3$XtteuqcbP2Y1LKDFcifpMg6~|ZlA%&CTW^UBOaf* z{Zy*Fy^%Ca@lqOJLGoEi<};X=k-m2%qqBR;G-aoj84DV<8g3Rj&QTK6GUDd4pY01H z%@S@et9QKLwlRv$jIUPtzIBl|!gcqdLEG-cwkg_p!RecT^S_1)(KyR&s}V(_>&6>O zNP-I$igr-KQEx1PYSHhTga)h$w(GLgyOSK$)k|2t2^SPnOriV&cWNCta`Z)L(mox? zAjs;qo~ZMwtG3)<0iaXa23B5JGi;ae>ySWwt@G3W7h*n}vPwK12UJr)4^PTb0qdtv zi%W3(_S0|H#jFfBE?r*T|Ei0+B)tcIhjsBD)*AZ=BDpfL%DP~hAv+>i@+(lZx_skY zz7vmk^5un6I@!*jER{~?+sSlk0m-~?yeDItnbJZ9+|23xkwW1}ej4RjWuXLG*vcZ~ zpm-kYyJ)+IJl&VrPb|PdrDL-~<2+1ZCGuL|0XnM5P~d|o>0jbgr)&Lh^JVXvvBR67 z0!<_KBWudyzp5e-vos;%vT6JnpoM-sAtN3q=WDR2KSlZE-~8mY?%8>D`zM#%`V{fH zLFe-Xz8U4PrdaE8iA$c%PZ1BryIWJyfBZzHm~?u%H{iihg=%0QgDZ)!Nwi)n)fXdb>n_XVs7$^U+;ZO|9APNzIXiFc=NS?lxv(KS+`WUqu`%> zi&Wrn+Hs@fC|CM?;XyU#na1JJHhxZ7r8(3Bwb}$=mRyz~&f(5v-g?OA6(S(TkQeF4 zv*ktdo!*bBsjnaM%=)Y4jLdlULN@-`bI&~%&q^TP3p_63cyd9G=xuwF(4w|80+yC85rKs7%cYh&yZ_F3kMSJVV1##2unyZB zO;%Yd?O;Y4@BZbxQ#n*Sf!O%zn7g{a`s8hE-sW^2gFrMtKK$yb>}gp?tkx&t@B^%W zBB>I(m$WisB*b^wR6FaYxoDb-rCn4Z5^`dSUJ?HDa(kfqg0h4^+_J;669B&^JRcjN zh-|`ab(M;wBjCd`4j|>U)j(lXG*wMX`(gpg1JA=A!x}@6EZB^Tytr=T`JL za-DR|d{Fu{HU@2j)I6$qi3>V9I=edi4h+4=tu*e34G(UX3xa7ykuOixa{WN5JnM32 zv-v7g_HusQjtQ;)>D`H3tIlWLuGw-)>*pHtP5byl{W=6=W4!YJ7{AFrwuF_zR&Th8 zPZ#eCG*&n`$Uf>ei|Fb&l9AmO8XoR&i_211!XU4{qQ04L;36l5i28{;QApBsNkJ&3 z%G@-b!y`Bls0SiOCUe(=cV#k0BvAKwJw}MwEyF170g*Tm(4XvO`J}GF4uMZOT|&?I z?=ll1yU&A?ZVwI;4%ahA$nWN7HsDSM_fNHEW?EDGgQhDm3v#E^PoW_{*nO$y6CM}( zy0G0I_N6PO^ka{uOQm!u5D3ZjCz`2ZIpq(1#a&1_>~0?jz#gX$APm{>bwBxS-(&lJ z<{9lU+20Y@325E5lMWiGYr1K4&7DHcw!kQE>#ChsMkAo6jqW-YR?4tV92r0Uf#c&x zCg!f`w_?hk-rjS?wEAq6()N@%Y)S8>MsKa&pUX7E&Y;UF{YW}TW4V5;mCLn`)myvt zpjkF{c44YQ;nIgjDYd;5jj|c``@=g%8*idcDP)PQ@|=Vot?wn}zOkY}2kILaJ!%IR)?3lL9fStoDV<6gK? zg<3XoswwS1?<%!h_^bM&qcp zLoJ^>5%cdKR~oOe##k(o>=r?kT%WpOiZ2`nr^o=TfEqVkE{?e@hacN0e~!t1Ax(F3)cLM@M5wHBkQU8Evjo0Vrt$&jR5h@&WE$_c!;lQ3qgduDH*-#-@5*J^uP^9}9-)o^tyf4JrolW?snzrwY($S~_s zXK2%#Oxu>P$<-B4G73a>9uaPgh4b~9qeo}z z`EZPn?d29M{8rn=hXa2-nRYwaM&TNjZd^iV_(l1F$^^GgB)Ftnpe)Oi6X`@bQ%GAq za?)%x8UeS2lBSBO1_-V`cY!eIm5GzD>Q2s9Yx#UlD7)?C#PC1XGwFygh(lH&l1fDc z$~7ADW<3GLBmW`s^s9`E__?0Y)a}C6!f1{n?HRTv2R-|eL}w@(WgO*`>?%UOVZ+MM zEKFw-(P$zwT@dugnd*!RN}ekpZ8Vsp4d|8#Sa+b|brsycDMRvbbx(BvT%<^Ck6sO|=Z_aiK@wA`ofPc;idt$B?yEW0Qje=;Bmv zyPu+E9}(NrfZ6O(9+leHM69Kzc&sa>ll0~2SGE#VdMfr6ALlhQ_SsmrHZH&FsaD_H zEWhd^oEEHTYrNb991v~e__m*KltCaISaO`yEk0sxkw>@3ql)d|WofWNLi^VzM8|}_ z5?V&NZ8K_@*``yyN+FFNQ#7ms@gPo`%CWVtQ=b?pa#829Ic8%6d1}jNq;UBfwhIiI z(booFk<3vkLAkXhBcNld#IGPDI`=J2^;HyT2<=_!yokT-?o|!f*GK#HsGVbCVcM)i z;wW^3w2zfEvXi)~;!%}LOR8aTxabvO5jPt(YUZUD&8AhtYO3_|s!OEJdM%G=s3`y4 zkviNZ_KWRAXu)T0;ktArLLo3hp+j-gyHbJzEFLZkEhr$eMtqZ2A!cWv@6e=Q)pXV8 zXhzJ=s1sJV+Px}@7NXI18)SMO;9}O=&bkM6V4y0m*2ko8b#QS+Uy*wGge*-1D1!X@#;9nbYf+$K$4-|G3zrmw>-tX@6U zl$<+iw+Cr+kJv4w<%l6$t#?_i-JE;6!4}BU)uc#2Z1seV=IdF=e2<62@$6@}s9VR8 zbu=lk^NglqHdZEINT^IlvOx59q1T4&$0K^hS6X}Zbn2sVs#s%zVcHTt6(;kJ*(0tO zIOXbr63aQ;kj#?oo3;p(s5)z;)Fvehm0f7Z?j+-cUUrineexoeCg{BDTIoo83Zo}J z0X0)x6!9&!wo6U%hPk#yhFUVx3oOlci|BMyzBBuMuGvg;b$jRFy9<#9YhA?x^rb~| zKe?nv`i!r_A2>KogyR9xNxX{^bQt_gBi&JP6haEZGa@MmoAN9b6@kot@@WcIY|Wio ze&K~dDu(vt?0|HB0@1;f?nX9psnKZU!J;!7q=&zdjgi?emYo|n?COrahHG!SQ-xwM5c(zKbpQ}dd3$TpAbKR zo8R|P4_8&*I(@$ktNOL+ThcQ=r?{{Bg1v{{ceC6yF&^^W!dA%P$`3L+Jj3HEzdPfY zfG3Ido`3Yw)(eLB=9|Ahyu70MnJdOuIfJzg2+^I5rzs|fD&mn_Ma3eJ*Nk=3FvB;Y zK)NZ+J9{c>oR6l4!=gsQ8#v#?PpZ7mUv`=A+mt1Zpu-ix(ra58Wobm{}v-Oq`pE zNHz6bVDW1ZBbPWvi#nw<(yJKnNLD=Kr&4Fmn5WyP%+tKod=t~9()5InyyN(WjeFZO zW1iaZJH8-hw$OjJvb=sHoqWU8_?|uEQ!_LA^$l6mTbZwT&FtecM;_0l1Cuiq@g_7> z7?pal+93nMIO!a6ASEKguyD}4GZ_f>EW#LW{E&5=ghA=+kY-!HuB%U|A7OOH%|Oa_F)V_s8GK9fi>mwsEgny_TbTQ$Yl01^pbAg6`GL$)-;h!3TxlC#FRr~Hz z>2Rs!SJ+yr3mE^u$F}_;B@y*V%Gbk*LeP(!o)S)u%FzNarZh<`bPiw%1I1KDUZR?@ zxBY?Ct2^f1ZSUQCUUlot-QL#SW@j<=!Pa%IubJ%=t+%9R-s*ekA@AE}Qg3aaXq&rS zQ)6tc#h0*SqVJ&BJhB6Kpcc~U!>$sBJ3Fk0-&xF8iWNsCzgVbzg-5ZHmkWi(tIUTN z)pyVHMZWU)>W+cB`Ma}eDss}GB675POgR<6Nu(nob_Z3;rukx7Dmx{lmAAdUiZJY& z@4NaIb+?QmekZE021;L1S6;$LKt*FqtJg*x2oX3I>V!+qA2GLgMuA=1-dJA&3k3&N z=?eF1%89&+_z2UzB>FmDhpX06bVi>{xBArqb*puisF*%3KpU4xrlPp_Ws9ZJS;wz^ zW^K0H7fdr{%}LhUW!u+j4>n6>eiu1Whvi`&F;=H1F{e*Xw^~yzOzAwY74rE)J4Fe~ z4~zfbV4q1U>?gEkJ=%=cuEQS(hIlpLB?a3k2L}ha)>w*poUmcFiFZ2#tvQXJY>yvq zIQ)XzDB8J+gYIAe@8i5MXW0*lBClN#M2H58sTu)p1CzTtO($`9pyis27@_nSNt@UY zoa`Q96?faU9TVSCBQ5TGqy+KQ(IGcInvK;mzlu2$ZK@~$NW~y8`g_u@Z+#F3S-_4( zDTy}CuywNY+4r4I=3K^^hAWrsTJbmQzR;zh4}ixIPr)lT63PoJM^5>bAaJc3vlYB@ z@Q%edlN6b^_uOy%#mBey5|tK3Wwh)=(q(E%nHLnJcf%k{kOFcN9!}kVvX_tWybt=>{$2P&SRr_MCP{$ zE@FRb&>z^|n2$2F(qaH?$qcSLL3E@jNu*!e0)7O7Asz$BlKe9>SQ%f^^hToxN0M%E z2l(NzENRbzE5*_3W(OC5K4T@|&m=vK`q<%4DC{?J!kHsv2aAII$()W$n5LQxt%_f=CwO2Cldu_x#}^W@UyBAEN0Q%ixI0tM;pgn`xwhkX=WDg2p{aq>S?I)@ zH^)Mr`dH~$mQYW_aJm!VAsIx1N~Pr936eR`m2ea1N4V-BV}@(dLMrG(n0wmeEF2Db z0+B;u&%2Vb^4=shmS$FnZ6swm%=WJ;{0k_CeB^XrCfd$}6pNZ(+1t=x$hZ ztD9kdi6TS#u)10L(Vmvr2|iI)r4>rin4LW-O33BR;WL25+n4No%TSKEZ@!+^`( zQmc!eRT_+~4ws&AoBnX9b2vD5Am}l?@y=MvG%}Iv_3-CSI?nX^5`h@K77HYd2Vyrj zRU}Q_`z-QZX1hvp$YgJdmGb3h za-s->;(?{cQw#?c@xaDpAV|GE0$mtOTwB~pxH)nqT|1v;ETl2JECaEv0m%Er&Y2!f z?mp8Wwg=o*pWPh_7{07CcDHLOH@E5`XsPrpeA7&8S>&2#h-B zpM(#<0FVE#>{gpy86V(JZo9AQ@o)A`#z)_HxaJNRiED;F91?>n*ll)aWZV8HtJLLp zyW|krx&0YGB&%k(QTe-QDpf9oz>N#VT^_$(O${+8Gc`OFp8@w^_hnompNpyC0oS17 zwYz`(>bX#hmxE4+hsYskXneQH!)CcPMHpZ?Z~p^4&ng_xYiv)m7GL>zspM=HX9On! zXC&)b9WAI#wzEiTs5!)4uY3hA+I_ygHBTtvu7&K;n9m;C>x;VN8h{U618GlPiyV&? zo91?IOLiYwzT3F2ggY2_M`A|mnx&`uSC*q*dRG6sU+;@JLN#|hho8X_Xj)0{*f5n}f#d-|_4_yw|oZTAC(Rv(+>oouQiMzo?t` zpg$0EU^1ty7+Y-c&H49JOm|0vHShlk*iIBt=qZS3X1RHI_c3-a*O`!1@QI+E1*h067rJ5 zbD4NBN`vbac7u}!X}hPYNq493BFge!S1cAUg#59xFIya5d_EVu_dUkli(if9zLxr8 z%$dmhWByVs<|hn%S>CA zTFKQw`jUY(>P!7t(d&EWa=S6#SQ88{oC0IH4PGNLUofz-A?YglxDo@ML+tRh?~CLo zI0e3s@`~leW$0n=Q*wSbY8=brdXnP0{v^VHd{$qJ*Z>FzrvUTu zRVQn2ykn+eL_Hwci!Seq@bRnIpC<8ZSy0iGxCmoAk#QBa5wD`ncVY!^HXNf}b5nC6 z=%hXTTwuxDhQ3K6j9EJzWa-rUUG+JW{50OsD#)GeLvxK^)6xCEs$Yn9Gi(EHaX2Q+ z`^)n)h3ItcDF0PBJ`P(@+Tdd9b{=UPv^2p`d^LKsoDm zISYQkl4zn@|B`QFd(In#62}7-(Umajh3c2IEC(8^!>RBdDVFSb>6Dw>cyUPK&KbEv*tKT*zEs zCwo%8H$Hxw<>-Y<2p}wuEZgGn@_0|aGZv|m9GnuWH5lcav+5IFw~q90a%D#)c%OCB z9yynkILyu>4hCX(6`iaqj>=lY^%oCa)HM9$8b`CLd@BOqCRpDG@0HUPVRW&t>X-RB z@*hZ1zgYW3_p43WFGmJ>azGKlz6fxUbg$T5x$xp43%co}kilm$HEx+7g^u>2vl_W+ zK)AH*r<#Ve^3}D~0rz5_ka&Q}js1i0Hw;cd#9)##JNWA`bwqCuw<%buNT|l=Tr;Pp zTJ=)7Kq9LNe>v)$8ZM%p2LMFA*f%u=0vR4e9lkBCPo0`^O-(stnZ?EBFV&R3z)u|akxm+ zJ)gvlr`1Xc`lV8Tu3`P;ht9#yIb7|_PrE;|(_CadZPlkDm`5>!JE~MJGor(khgfNw z*4G>+om=4FjZo)G2BBst{?_0)Fg zj*Ny$E+sNt(p+O*)@olMa#>H8FPqCthh}CDEiG?Ip%-MDVstPUXJ!`7O+U1M#+EyP zySc%344!@g4H?_N?C(7F7G%#yJ;ASR^0L|UYx2anbJfE;#rmlDV2-F>^D8+c7BoZI zViJc>hsR&=ma?h*Sh`pfJ{3p?b>X@23d%w;_RY5(VMoiMux)?2`w`Rl$AnVFeAlDXSSp%y#19r(ENf<8- zBwhxwtbC9NNHOZS%|5ZZ%D%6sQNL}9jnAt4`g2EDC3qF1d{|vcMNh!b<|`D8s+1^X zNp&(1!AITw5BkcHKq{Z0sWRdwNu;kz=@0?S-EUGWP?p3=T=H);;vKa?HONU z`uKWU`~I4tgQpILBw@Wu2gB1qBgyFJwd&*~+qGV=qKlTiFyhZU@+TchB|GpRHuGYt za6Q>&aZ2-ac4nU01_&{>gQR=v2SZ;A9o$aSaIlq3X2%)Y1!{?jpvP!?jD+C4B9}-o zgv^1O#Dy>#0E)2Ql=B$NTbKn-Q}wZ{zg9Cz#!YQDU1LRDQ}9n|lU!E4W#?U7l(`~4 zDV%~AI1}(_5l1qc@?%l&#p{guMWp`H(kgG;oX0H{y3YKS`LvzZkvyVN$}KC*%hN48 z)99fbW3A8PR6M$V9r_`Kpf}tiR*!*H{#!FRh1=jpQM zAwF;XD15esL|+$SLVOvzoD<^2(!`|FW9#NRYFLYv8oe>@OchXtkxJM|zOUW~!0t`e zV6Gl;2eOHS?1e;#-K1Oem$BJGu9GseW7Wdnnva-0^Y`lKr&0-ap1`Z+zFKz4f)LYk zqWI*7;ZkeT$CxezsuDv=~O$-X-Vp!Z+pX|2RsSm3y=5APVgh|g;75>!nM@SA% zrBUCmRo-;&lV*x)Bj#p(Ptmr$wgc2B_PJzQxu}WJOJo^(9&3ZbtY&NPk%FBmqd@OO zeAAm5(w-5RyKA;sgcsrKNlPoo1fx2A_*OW!)ftITN4VN1r}R& z;w}Iuq*j-s(D=>ahk|j;ZExav_&%}q8E=y3;jc{UpFcg!Yd;?RqTI&Qx7^Mz$_+ey z`sum3r(ZQU_o`zz-e|=L2v3S7h(P_KHbHU-duk$+Acyg^x_H7^ZTx+`sqU z{_^5d5_h6{I=QsCytuebvt-gCOQz^uyko?9P89=E8;pp!&>0&`XFZjPisx*?bmrME{b0ks|Ed$`J&J-AZbXGzJuT+_UGv9?$W9-+IH2B6)2oxiCInpk(#Zl569* zds_U`2IoPFIWWUYKCZY`5pT3_ECHLsG{P{7T~S6u>n(`r6dkJ6t$-c5%134N7D*Mx zBO707Ev^ZCQ+!$0>N1yZ3MM7}dI&OdcH~vS782Q{f+P`X7B6eV)<+~-A-l8u&l;h* zI%CE9c(;ideNJa@mu?YW?>`!Uhp(7;`HTJ$IU*s*l-r0$cP13$e-^h0D>bafdSi@%E}cccVrB zPZsPUx7C7gy>Jf#Mm9BGupcwd5xkN8fmHMkawP_w)!&I{&*}E4IilpOi^3TgF|9PW zmKR`tON!H_omyumJS~W-a#mZ>E8t#lEk>Z&H&@<)7HI6F|FiLbQoi2pI@W(2ux^%q zWR6*M1Vx`xN314MFS|MEfj0L@Y$en-ztl|L@`iK55sz{yQn7j9+#7C5HkanPYz!<0 zT@xX+f79q29~0Vp0C;l}v$3GbZtuDC!P(M{2$z_QN>s;c>sh< zF>IBRRCnl!yAquX#)?nX7O%Ya2j6;PRG-zyJ+Tbxey$;ZzC?Ahzw^(};E$6c+E@@Q ztKu>%>Nyt9LeGR=i7fJT#Rw%+&7IzQYn;ZXCz|8w{_!)7@o?4uKFW1yups>@lCnzO}o>jbS~4DI z4hC4AbP6&HPLbUnKK-cXmJHXMhnM%h*=T*Byi~UCUp7uFeHgfx(wpi5x8>o{>8c0U zr3^_R0mCal>ZR5Cc0081Wbok4@K5dFw)gwEKp*M-^drWb7&#^>!68Vdf-L5^1 zWE;Z`1r~`&bp=4FTp>{F%f7bUYW+pnG{dPz%v+vrWmP_%P^nEUgV`=AKCwM@7|kCD zK^ILkH#uGQ#p`MP#YL`J|1d>BBJ}9_Bl$)pW*+BCwTr4vb+o(6%xBvbPip~WRI`Y! zO9$v0&rmX{fWrFa=Yg-xRC9KmH!I2Uxm#|H-E(*KAQ)9D>zO4m3sRgJ&*0LVGZLA( z+JVLLMB~CuxOk29tB=4-H#rRsNxWmdE1Gz5CWCJWlnU=A_-Lh!)}kMMCzjME2SLgm zp%-xj6_8GGVZiHJ=DcCfgurafguU*Vc|4C7(p=f&Bpkeyn#^S;GbH&k9I;j;?QA8+ zJU}4TTZuw6yncEnG#(8`?5?r+$>aIc`yf*?9B$hl`0^Jfilsf58uSz+M24Y?$mi(u?TayPGOqL|@#e#uoO~7Ktj6t=Sm- zW!N)$U@jHeGj@4#xMFeiqp_0mwCrR<^DGWZDtd79^iYSPj2((*!u|wJ9;ZT)4&Jd@ zen1Sdb2V|E;4igJX80H5_lF7Olri zlFLf<|!Wl-HXwGiQUfU@>zt8+9LRM5ZF+#k+&m(DcpZ?RAUp za&(S7spj9#cI^B_tNPNam`ST*ep)q_Z8*Gqbh*{XlbBfs+ZuUxYKf9;G856)gK!3r5nix)3zcZW^OS4`-5nMhaG_XgPgX5<>3ZEnI`-V zKiseQ0h>r)*8FjD!U_dDb>pIa6~BdJWSu#M$KPG>1Q>S!h*QF)2$=Ff8@uyDS3Zke zG`ha|S#0Ole_5}XhY)>)AoZ6W{+s`wwl{%u>^kd2btT zrMg>gcemSJUfWiAjnj7Gtwk`9*bc@JB^k1rWwKPq8I~~##y`5qga;%;hJ*+nZ(t@o zLSU-Nyu2X^j|ZWPuskN=y#eI;f9KpQsk+LJSzdQ(m+n31+;hJ3E&uQTIS9nS%ZmCp zRPNuyjjUEnUvLu;{0`OYdo3Ze-A32*g9Z zP(0wU@N=Kt3&o9%3zX62{cVlQk!);Oz0yA2<}GTM6vEvB?5 z=sjd|a%+x-`f%5z29j0^VoazZG(BlAG!0kcA~ZO*hqrh^L$=f|lSQ39gaQ z)JiPjGXE~th#`l^l!pBg{D9=z)jCW{-$!X|LP@Uvux(IlKDNZP2 zgunx-m$(ju^ALQ;Btw-fP?2(Y6X9i>jENtg0-^ zzm#DR^PubA1_GQvZXFm$1z)xrkAC4PrI0wZGCx&>+2^(J@I%AD_SzTD?UA z?U*5$xs0}O%fh&chaWn!Gj3inKZn-PPTU|U6#~AZH)vKAqB)=P7<}}?roQ?P(>h?gwkudAfI84;d8TR`SW+b5|Yv({w8T9dQ zG|$H8KwVrcQtaADcEJS!v>d#fcDxiPQQzTMX7~8Ciy_x+|FPj2qC+!zL0p5pzV;Mk zw~w4_HOyYDE<#I>lySrWC{+N04#_`oJ;-FkEci)ng8Li%Hh|CJ9y_6w|7KT^20At}MyQYA2zikJnEtEi}6y!OVbB%yd>KLWfY zie6=={k7F9@>2=kXH;_GhWb}#S&vLNV)-e*Ka~%Zm+HZsJr#)}f-DIBnYvJ=esSCM zOUPHFJ<10ZGCAwV5*Zf!2_b;t6aM{~jnH2MJg`F{SaGBF;T_@qLC1LCC9YIlQk?bS z-!al3eys;=|0N5Yv zo(8-D_#XPlD#Tt!KNIQR<;yM4cgFk0+v3)x-P;ySE6-brX#2QbtPErg8Lm7OKhphq zt1b@uOD`qT{l4emLmOSa zjr5Kw?8RVb!1!P=kYHIx)(W&6I2rJoFF6ukU2OX2o&=={>TNxF&cOg2qe7TNoCZqP zR{H&&t3xPPXdS$yS35LsXwT>R;aImBaZ1z4MklC%9Ue7PiKesW!Jy~W$6|`7(UEA;kgi)3y>Yi z7qc_`a#naTyQXGRQOwu|=Es{b{_tyIRs9;|k%Z@@VG<^qdrxjeCW5bBskNIxh++ey zv?Ty|v6ESC01ax8LAClmYX-^>uj~rPOHxLKzludak?NQ;P!c}Zl;x&>8l3QrU$z>$ zeAEaX2^nyBUGm|Yr z6$B`*O|qdC$1H1m_IuSe+E8weLZF1fW`Y585iCa*k4fOt@7YrZP;P~-et(FnF*|&M zd?&YZ01BWPQ%4#m$1AXPu%{i1udx-_ks!L*!hGeH0N6s3>s1@`{Y-;6U`%qD4_sbe zGbT7MQ&4E2_Kyz;?&A|JVv^IjW`w9>-8GF0a80JSXP_7il%^`vTlS2Ti$i!VSBzRj z3mBtSnP}MoZQ3HUzTa$oEIRNOp+a(^XrTNiLhrBI-v3s7jw-K%mOiMJj9}14wVP~=@XbsFjK`H*niVD) z&td(0D*(|ucKL<_T z){{l82zX^gmyKc~hCGz4K|2)WDhevnA`-fLXT_uG^rJ1R5lsDvW!0c=2ZKgQ3#u{d zE9MK+OE6#hxJnewggd?k!?y(p0hDf9!cEif>kbCP%bhD*i;whnob64l6d)Ad6}|t$ zOAh=ET(==VfW+e0{1`+7fGV;wjszaG4i3?8TCD?~as0p;uE9N0qR?rH7Su zXSiF)HfqIiR+5x_e5#b2`6I2z-F|Kr(3-4-?z>U5(;$WEWT~QFP>9>$B?ZTfE*#;W zK(`L4H(uc5u0s;ufbjxUh9HX!*NA2jFol}w!rCcsjFi!D`yJtfNNP+a6CqR(SHO>y zh-zlsNZGNN8qMg69*G-~uubpKcjDeV>^q}h(RcnnhRmJ-GJ*p^Rndy^kdAaL4X;8< z_&K~1gNnjmmE%Y@qi_208JpwWe&qbR%f9p2_pb3p0pr2p`un=&^_)=uY%IJtMnl1V z5)sI0hAGSRuk_bq=&Xj$OvRAipeIZ-7DakeM2+V0Ml_r-{}l~~;=U2b8;1Ln2z?_S zsx!3W=!j2%Wm-gaUzCi>fg%;epnlNTvRA71QG7^jws@JxhwQ5;HifSO^FsRz*EuN9 zkfP-v79?h2IO*Yyz_w1h2CoigLFZs;oNd%d1WthC{@-kR*Q03$b$(KN0>9*hC>{7PhYgAKiCBqIwO3#HW@@b!s*m{hB(7pl+Kk2CKXX zCP@5@hJ_NPWt1RAh?XZ;(b8n&vLO7e+Y{(m=veLTGJ07wKEVe>ikh*6xNksoJsZrI z_1brn2L`K63QK2Fl4PX=QYxX!Mp8u*WmbyEfrSg9lv+FqVDUEVdQp1_1CcO(%)qFG z)bG!y^|)UL7R((vAQUiiQ);$u*7Z|T9IG^pV$yEumq=DNs+aDj7#J~*8h{b04qL@wG-YBy&B z(a3wk3F|+l^Zs}}qz30}Ut)X2%U~vj9$BT@)@?M2fLIWgNBw9Sxy|sOGN9-`qKf$6 zCLywni-vbRTndy9MKJ*PR&?aI0_Y`(B@VI8;J=Mgzg zZ8cLwgNY$FBcnGK*dPKB=lC1!1x5|M{NI!7)iK8 z^?8!S{j8~p!60HgmfHIhB|05dQ&LLGN0V80CM%na=A~57W*_BbQ_4pS?;|6EkED}^ zF>M$hXTw~ZO2$H%t*GtsXT!L+J93J9Zz%${_kbm-s1<2n< zgMZCq?;k%VxqQA+&F7sTz-=10?{i=CY4wlouTVUD<0JV4ZV=?m?xt}-oUv^Jx*u=G zfhSu-xCV=rN_lNImhUUQ{w??2-gv^X8c5R{oH+cG&T}WvVi=j-d{y`selNmur}>KM zDz8G)qb40BJ^1v!LpzpjrGa{E=QyN=@kqn{1Jga7cz_m6?)2dXH92WUYUNeQH49E z6Vm@2-V7RNE*to{Ovp3DEe(!DL-HoB8WK2xH6=h=32q=8iY#-Q08|Iv+G(sz_oLC} z;r}8$W1^Jv!-@2Z?;8Gz^O2bVoFU{A5uRzhIK3h-J0_|^4|mgvXI=!T|06ScsFRL& z;3}g=aCuMl*ePm=n6am;q1+s!s;1}()aDY@c<>H+1?Rj9cfw`|xD+xnP~l8-OWa-R zAnxWJ8#Vz|(34q|9>*Z2VG%(wC>qSaOBO!t7r$@2Gh|iYc6XUx2eX|r5h#L3;6NU( zWV~fBe?|D3+uq8nwAXc%)7(9%-D?XA`GxuXJpL9A=)q^_@v-|2bcM|eeqO37QX`!X zfrgT~!lFyAev2^+;JS&Er#Ah6Aanr-XLaY&i9hf&R#)Mtyo2NP@X_>5*EE zclMkfat-~YYoxP$70MEYuiT3;Q`QG`8sKnYC&BYGvSHdI?XIde-Hu zme8@RtCxjeSaGs&oRV9IRp-k(&SNJ}-cc-0W%Woz4-|_e_gNb#bAjhmVdG_mjVe{w zbpq27@o9c@T18X14B!=ve$+;~)B_^!%BPA0%NoFW)9Li+aO1rs3JYxxyEo!X-rB&N zW$sFt-jE8gQ)qvMW&sT&DRa~f^hNIpFi#xZBK*womyBG_5N^VKWndty%JC|XE1<YF ztY&4VS~hA{3J&wK((*!fZ3hXqPfcI}d{}<)CxHp@$tNd|tKzsW(wLYsn<$aSW3YT= zC?6G|>mCl*p@bp6d(kM2L#C@+y^;YCHfhj3`@e^MizE@Or14P^C;&jxYq@|j zc1$TFGPd-yeU#+sj3zCMdF)UbES!sv2aa}y$sv<43{|Wh1WK+wI{8&tZ%AGUo0Df) z$MNxp;o$3nonnjih1X5sa+J;?Gb_Yr1OWE1o6sLBaM>Wd@D~ryn%`s2KAdpw`U4~r zUl!nbTLV?u@>`Yx_dql0y1DJ7V<1q!_ZaB>HAlIO&1Uj2onD^~vG+K!J;$LT+;fz- z?K#G~Iz3h^6z%x8!V|EpRMH_zoLR7LGunkZmawpNZ~n7|&*UqI78|cGz%ng-BmY_a z|CK|JCB9KuyeV0Hz-z}Z3y*lmshafLx(o(IWWy4E~8Nws@FV<<4P2qI$;d!HH%>U%f%>RSygWh$9 z-x5MXZx?x`z25seLTLD{r#e7TxZ^ZH`}lF8E7>h*%f- z&z#BR)7M{jOs%ghl~LjQhG{b|pXqdlU*$4TIGHcmb}2tQHT5VNJn2N@CsL)5QD06~ zD-oq&keK(Pgj^5X5q=KxQo$7{k`I0)yiuA@D%VX^!0-c@zH;0Th&#D$Fq2z^!#M6= z$@>SOwZLDe3sS~zdI>hn^y2CwJuH0yTSC8YTA8I2r%o(^+XrX+3Ig?q&mIIjxZ2T2q<0b4vEVl!5pqeCDVjZdOtU+i` z1!#P~;B2BGm~Zj?qYs{qEkxIEy7k2L^od(Fi?NpL>&m}%o+=VMVP1jmJ)E@W`yo$tKu zws*d>akO;TohK~o#GQAQ*g2f`tn*#(`z~j;olm5%+uXb^oyfa(1#vW$DfUAK1T;S$ zfu&haBAy7Buw63$JPNvuP@%*|IUv23D}p9aIbizvE$l78stViq6qU@c&=+v$5b_4a zFqfy`@8(%7kco&z(zz9!8!;b7^hA@3ikp0!W>79RDIhr2XAW$~*_VCWZfJ_AiVkeb z;K~)OJF?CG1bE|rL;G?&f&~UYlhw4^2JAEPP{`!>l;m$p&a|2kHA5=PO(~U{md%g` zwk0zaoUP`Ox*jM>QcWmVOi%`k!MuQX3O=QsZflUm>lIb>cewS%boh<`V;bFgI$E|^GM@k zjia-;H9iIiPe6U_F|N`J?~mQ2t|=QzTg5FHoJ!0llYF7l^=4xNc{4tj1qpo6*+eWt z5D#(eNb8_83aBejzKvHtG0G@A?A)VuvI&cdG+A7JsPgW#fZj&B8{pMUAYraCv64u` z!yozMh#AeL*RNdJg*6XD8ki>nTlNy^4*J9W>R>`($7M_)bZnv!<5P}~3v-?wyN)YJ zHxc?M57hy7md-`2h!DYDF8vZiTLAbDb#(vfu!&9B@Z)om=CJ={G{b@I;Q9mDm-d_p zFI{Md&`l*eprB%Xif7PA=+PawU&LKb5=PcfEv9r(&Wm*a}vTYnXGlenxbi|CH zI#DKm8Dt-*P|H>)tbow~j!s5OJJ(^y=leEShycN~`~lWTr0HzGj4L&jeueUD(=H~fHLJpaSkH#?nYtgDef`td{eug@O( zUQed|CS+QY$L$%9Cq=4kTtODB1DFH8XUJQ;MUet1Hsr8o5k54zy>*wK0BLzVZ2SF* zV!l$p^*SU4B5J2f!MWzb()?`IDv)Qz%+#tgHdd&R`6S%Ux~OH0vZW}~&wet0Wa0Sy zVm%*01^1|VL$MMK8D`}pC)r-}KZM_ejt5?Qa*?zDEJ2kTLd|5YtJgYy)KS!;39E-Q znC0RPS=4h+7p7L%kKK6KNG{GFUpSICPky9m7^wSNDc)cvk%Fd8%y;hNiD7mCg=sV$ zAk`tI~S=zA1W zfe4i8k0KG|%7pTOd;AeGqlu6VbVvLl7=`Ezy4Zvs$^MAAv$Zz%j1bt*kI#|78@zuKqIA}D-jWkrdm(ryxntjF3n zOc^HP1e(!nYat~d91DdcSwRJQ3_C(HdJLHrAv1~-1!Y+aq4s4=_e&Ib6v8o8Mm9-I z1#6`I6b~bJbu%O;GN4iT#hdSL6<&Z7Jg}ZT5s>__`0H)0i5FU}7fiF) zYV~?>D*%jU8}amZYmIzpYc2K`^EGh&`D?F!e8h1OPk>_*hV;JU|2xks3IF5Xvz%kj zO751V%S`^`FMtDbz~onz>D1g(t4Bcs3A$P$a;6+0elCkvJywoL)R1kVqv!KFZf~+z zS8d#W+*(LvqT27~Kls7?2MfT_B@KXHhCh=|-@7ghrXu>(6g+NCJJoCgP~b;S_KDON z`Iog=I=Q?MO-Sh*()XZf5vCx!!wjG++ccVit)HF$Sy#!M)KTHD60kQCe%~{61CSqk zw7ah@zqovjZnrG}Tg`QPlHZ)KfyLQ*R08RSbsN48Ol9&nLQ&drLlWQw+S=HF7^1s@ z7m7Ii&?nAqw46`U9UE6(2Zi{7iijpbN1Na*-NO!Ku*m|t2DrgmC{8>+;shlSysaCb zrxT9SuhEQ28X%$Aa#|bO#yOmRf4}yeT_zk1khE@*_=yvayD)j0ac}98jAIV3p>Oc6 zyuzs_`u4HWz)hZYvU9tm@n&)zqe;GOVzVPQIm$hOPs&8n2E3~7{n+jwF&rZLWCJ0= zL7U|BCK&}7sU>V9uZIl6J{g6>E$##O8~#vkIWNrT`{d`>tW9epKQEYlBI3)^t@j*f z3gGw8p^`{`4)tM8%QBI8>*>K>P8CDJUprgHb`vSbO`!^a66gyBFV?`EGRWe2{6k-O zeE3_!CVL_rnsBae!h&!72Hcl4-6#WV zL;7gKn!83Wp*}=%PQMfF|AScE8zzxV?1o;w8)K6|7iR%FCIURTSXh zB7(|r)Y{R)iq`2PhX^43hGW8-iASSxSU4knX&c^OSW!&>^HPCmo{-0eAk(CM65fjt zliufezeA4TUFeg$yMXLMUv_qP;ZDUnP}sNKC!Nl&e9fL}bL&vxB9hL|T*gIwgu zcVdkse?FaTd=iR`?I3|~GJURrB-?Ei@axn0akt%f$JygGq#Au?mg((Pej{3~_CB#h zV~)z(Gy^$o9hjGnTlx*I#@@KLT>AG=p%7hS?MHV;h4WAk1d*T})@8guL?Jz>tY{X! zL)V||A>J;^W#sKbv<%lIxwP4gMmWw<<^RmHCmOSZf` z7Q`?6_T^f3#`1IdnpDe)^+>XdEO~h9##|R}Rbs@XA^j1bX6%Cp&X8A-()a9}ID2?| zZoS_PF?aS)Cs%*Dg!!qVWfjtbG5gsdv`|#Yo25)*F-I58RAGzUu})(EcPgObtZpC> z$Kay)(4N+OEV?vXysCA`-Oe5r%ua9xY?ZulJY39XWe zvV2%b5)4%~xtkQoq^HgOa|jrJEMCEfhzN^=usc>T@G9H8IR1_DNZ>&B7BX&4rz4bb8QPRurbf$ zx-v_iYbz`!g;A%#5tThdFk*jttyz3))4K0ItBG~AP1kuFrR_R{i|1CYd+)P>4jlP~ z_&$?E1a$$LI_uSB0F|yUv34-=%GVdfE%r`YT&+q8lZ|{?mHkZ^ZZon!;WA_XI|ZQ& zO$0CKDt4IB%#}*qbu{LUn)iG7Qke8b?>KWMKOjIG;}77D1agSUxgFpaw&C%Z2TJ!2%w~)~2AvdEqB0|m z1@&i`rGQURXa@fQ5Wy^8B~z08yHLQr9fO)C!^+4*TOg<>+^%qN?{qp^QVWIQKn{oC zYv~9+Nz@e$?q*F17sR+Sf3s+YvF4BiHFxp{&nUs+>#M-?$!`i^24}LWr|>fc&_**1UN(7*9`2dR&^8^*Fo6e~xQ> z2~tLck32&>HHHkqfUQF>0htSg4har<3#fta)$UHZ(s-bO z+MHItc6)uwPVDrrKhH$|9VY>^?{?uxar&wx%aZCBVOFEyi1^{hq_Q=L=i~Srm=$b- z@DXD&P<)E~#Tr|E6|!)uP%JRXO{!cgW6Ys*9F*yg1&M3!WAlpccCiJH;Jwb4b5S6| zNF-3Ps2KPJ#-CEs&X9cd(Eree-^aYCow$k|BIsg-UceN9F9jhh5LnP)j1t5~4h9ki zR4K#)_7qZ~;#_{mOs=$^FU~I&YEHIrc@K8{>*kyZS9>-P_`=)g`t#k+tS!U0qZDHT z=;qD8+XEgy3l~iwkOl1Rskb-YK~3a(>i6Q>5yO>NpA&3`l;%jzCYq|`>tW=E&=JWB z^dc((FTgemd5y_Qx|%tEFrXi}43i(4;)L1Np^~#Z4_-@YGSmF;X5fUYL_^Y4S zin_J7T9y1c6b73L7d89%F-P{-I;TI!)1-#GoVu|?DU>L1z~AMv@XNw~1z%SbabA*x z9fpthx&l%g<^=Lu&2gs_or94(k=;G&3tUF4K+p?!#6#4d@YHhT)8K;luhRK-{k;!m ze?$oS$2}|`iJs4XgZHM*9}ohN3-Z_9ex*Mh6t&`Qyxsa6vOg+F{!u@LYT=ITIo?C6 zR)oI}GXL_jtKa>o@bi!<#6`9N-`4AJ3CnesaZ1VEsC2-PtK`h0YZf3+7hOQ4dr?*@ zeFqs0@FSuI8uzdn{2^)8y(hBwMDRtU(`_57zGQ_`?dv;ME+-07I&S8SHPboxHV z3w{(9(?P_F-~x4r$%7Ib{qbG6I%TrTG*SDJH&9Bk)e zPbaS%gdYjOz4axBpSTEtN`5yAIPLY-bo(Hrz=p)GFXZX2&<6&+w&3;}J%y22y<^@@IN7ssCBT zaQe{f(Flwg-&c4WbT^X0xzoq3V1XvCv3p@@Y6-;{sOKhbqn2#p#M#N#?80u{-QC-i z#?Fp2ZViGq@SOG>n(r77UR#5sFPY^az}BOY*y9s}HV%cE!bWHZt|~()jWw3^Ix+>jRGnPOrS9cu7P2>f??RiAn@~&{?GS%SA!DdCMw=msgNiTr`MjJ?WUXE*6{PK z*7l}@3OA%$@T7bS-wGRR4P0o9@|v(Qx!D5MiF49ieVOSOw3GUTI@T#U3yAR2-Jfix z=b`A&XcrY;TJi@2hMt*=_KIr-VC$cBo}6AMq$0$TP+W>=k`zhUMsck;(`(H;&eO@Q zjgdTooijQoRoD17XT@b5Z5OX_=E22_omV}1(b*iGp7ckYbAb8o=`b|c;{jSl?*ER^ z?|2+MjE9GZ!UrZi3w`=IUz?N1Aj^-e|UAL zKNjQ#>3E7835WfRSUMRqFfEvfWcm#3rqM=nkS^VYS-?C7Yl&#es+j3$d~hL|%gy9+ zAL5CFl!%>1ND*15C|d(V;`^du6cQ7qP&gWUn7%lZ`+52Tn?(3B+DhG}{=&A~#vY(z zb*`aK(EU^ch73{Y)s+AXt`S=t=vJAM4XxDMA8psmz^7KdhV2phIH?OvU!zc5n|21C zBtp(`+7@=1x5*5PnygT5JWW$%O$=L>VTqy!We~__QN*iXOIvm}rs}b1OpPqs*>6Tv zJk`}$*0$1F8&(y0uF!TfUzyFFC}xhF$jw&rrr=2FyI0G#!UA=6p-?NY-kp{%mCqL| z`qZ)1;WR1^Oy}%extp7gl&tjO)UheOQaoQ?D(6UEjp|dAlrKRiS|L4DTm-a`yVpSQ z+k(!6&=;k+az<9OI`TPSnUS*r0S@6y?`$Z4mHjMQ8dBf(+0?OG)Vgnx^xX!`ce-M* zyWx4L)k5!dd8b}eA|nu6w1|Dk1y779my|2UL)qbyr({rB@T-=aW9rzCOQaJ-({~5SeAn$~ntjtGKO)VqFJlk-aUcncm|sU&y{|gl$Y=x- za|q52a}7;GkzBH-S%V1BO@T3H=;Iw4W#$}*OPZu{uyHhzRw_6#M)6dfHLU-9_Pt?) zZ9M73d^dZ@aW2pJ8?Z^xJPifzsX^()Bd5V3fY!b4`Rscl?`(XWG3k7t2C6VkWH8QVHykg+eM};;EG|BUu2U%Vk@O z$L)ChBk@!$mWm(74bO5&>MEyFPlwrO+mV=>48@}K^^_>ZqGDdk8>vz$W#EZaZ`P&4 z_>F=XMdneeTwW^m>Bx3`8Hd4PhyNu^r-(mBhc2hC=VxT=g>YV+XMj9Vw5MVNBI+=@ z(dr*Lx!{_j$`*7Dp*$gKO|}El1sp0$-5$Dh zV!yOmgvc&hMlQI$O&LRz{%2xLS@a=rB0w)C6r|aNkOy~c$%X?s0y}`UQs!PjEL^^H zS1gy26YjI^;Z-vf3%09vD2S`sm}(TIbkZ_Xm&~G71dt1)F2w7?NIy+MQ=N0qZyXaY zo-_0Q>}*-QdNr7zyU@RQv3~*IdYw!4==#XNB%FYUoOm4&6tyvYbbf|zq&o_y6Y)Jf zDAN8Wn#Ab}fG0MoS_Mo>WJ9XD;IopcV7`$LrrtKuz)(yMMvO$r(9KTgGR!p!O+sge9aa9zddjZdJAu{EYUw)Ychd}(OX{^^}pfzqlbz$G0`0t+RvyDgx`~Zx>y2Mzs z>rC)-bSvd0S5|D3(v|6|wOMXATgz_c;2P+LH{yy>O9^3&~&{%Z5Jw) z!tgif-lo@or$wVlC6$)nsVah1tdoUbvxa}Sdhb&ee zc%Xm>tm6>r6LizGO(|3d4^@{gSnYS0+ikWWjH(uzY;rn4s9=_e};kJKnh~QA4sD8~9VDpn( zBFLBUf35m;CF86fUv)By?q3Z=^@soS!+P||-%(W5V+1fcAgIdk=qZ0R>IY)l+pGC; zr(gNVxGHUS5>ljI@ic#O|9x|r*||e=vzfX34nAi<(0(D{$G^ZYXzux;<6Uxf7KVKV z*$E1Zz?br^2OoS;*xK3IdG5LA=(}7WB)vjqJNgmdDcaH7Ce5WLHa)KQQ}K4ZgNQ6d zvqf4r(QAziYneuk!QW6mWAsz7v_O>Onl(=JgwBg~>8j(zg2@c0FA?mviLR zD^YsUaDdotC%bR;hpTBq4KmSR2p|bRO3R{T&Dncy)4A z3#tlO8DUMZ+_3x9>g1k<RRNN5@2wNrL;sfnBNBLVM&Q(B5GNQ>a``kR7zW6LzC2mDutorq!vm`e<>v4A`PN~ zcmzd?1X+y8nxcU^{#~+|0y|AGCCb;YXR@HNQAAqyV1bvWrq{2BHy&GE0d6!HSYB?Q*5ipVeTIrf3jq<_;97JUVn2|ZRU`2!|6=Ku+R8LwLjLkn z>#=+Qhf9PZx~IgDEQjTQF#KFF5D`QAiMc>fkOH-K2t}p+e(_@pNU&m&fNIXq1|?jJ z=@~PL1QFSvO5Yby<_;ZyLjnviaS-!-$LYgMl5m3Bpee&oBmjS{-(Q*11XQxua)t9H zoYcWb_`*q$@Jy{HvVtgyM$A554!p&-rfLD~z|+}+5yhrPJr=`Rpr2$Jd`wRV)AO(( z6#;x7C`6x#OeawoATKD?wituXifnF>d?ow>@yj9-4{QWC8gbFcGs~m@tF<;{3UY%` z8p6chEFpge)*~(=vf7$-O@-&+EL2|hkv>j~3e>?C6!=1+03Wd6`%0trgBOoVAZk2w z$IQAGNoXh+nbE^7ZaNh?JQ_UK7cZ`@eKh|?vnt8Q?0-#xfe4B-sN~D$Yjan45K?J| z*A|hW4iXY#4SddCl@@u;#{V|9Og38)03^#u@ZHj%n(E(T`@u+BTubZoo%LzIY1fOY zgtuW;u2qFvbz8V__t~>|Yat^cPOo?7_4HaXq+)lrqVcnLU%;2DYqd{tU3}c04D_8k zU&rOy+cL&iLz}~^qo5+M_naVxRBk61xv#o4#0=Gw5MVmdiqv#9I zf=Y*SeMm&|x#OLi`yLKHJ5EaD&+^~L3E1qk1L&QoZj61w_3pc;1DS5O+r505U-OAR zV*7lB9un*TNVUTG7dReEMUp;cgP_TpI4-}8OeA-!DbWXGTy-_J=cx9`1`|Um4nC>y2 zGq2dI@p-Q8)tipj9H(}i-S6wwlNZjOy>Q`1C~2hQjL(A+J@C5m9O-LM;mobCuP^R9 zxbxxp_4T6wW4^{?vqbJ|kKLhz9NTy76PM=Kj{%*_j?MG0DSr+z16FZu(rt@tft_)b zKZh-mt`nh>hzP)3L0YxYx2y1%hn~`KN40J`#^2C|>i4&L@l1ak&X$QN!c7Xpa=dyaCpPxFFeNgTsZ651O@lDiOl_0cH5!{3xV016RDZDw7W!YD;q8Li+M1G$W%1%>YQ^+M!ri z?Bwm`#iSXE%T-BJ=N%Ay?Hi7oq7Kf;N~91?9u>t?nu1BRw=EQ7Ik+uJoE`Rdg?wcA zkLF;mBkB%EGKBiI?dd2`MP=-!dMGH7cLRIn(gAx3U;`#XV@X{J!5Rk@8)BZd+B3x> zo9o0oL%M2-yx275DEwfX$bf1=0f{4pg-8|LoD!k_63w~oJ{+&Ttq%wP;{?%+>Dpr7 z;rHK#d20D5QcZ9@CS^#15Z?Req%FgwL>rKLPU=3^J+^n4IyN&mukF5>TgVkw!j(`y zk)NH-CrhEy`D|pay^z~?P43MtX3N<~Z1!lwOcZa=BBF){>}?a(ntQlR z*jD=!;|v$eDUaP@W`Ry z%!i37W$*C~c&QI=w|fq|e(lJ8(mhMGwXXw%^%?PSTbx;EzVOLwWW~P<7Y(7q6N2x`3oqdBg%{{ld;5p;?Vpoo6Qqpe^IhA!$b7z5%P$u5wOlQ~ zuXE<${qG-q0RM0eWGzqre3Z%_w8Z@T&%v)7@lF4N1*RK`a-xb$R6pOK9AfHe^ zBT5E`+GpdYB@EF0c`3>wMc({STBF`UQ-LvP_G~UEdN^!8g7FCLa;uX7N z2g0i^{mA=s3&HW%?kB?SnaEt$5-=fs%rC=zfGc3lr5ZoC`tC;N??vC6eb1uD@V(H6 zi{xp7|6!KW?t{=bi+E6I+l_An)xn@0@U$$CBHc*b;clDJJ0qqpoBLbJwNc2s&A*xi zvX{Af;H=upm|`uX>!DOUrH2A~B!hBK8N8V_MeORLnZ?V)%hr^W z250ngV_zbX+mLKs+ z9!7g?&#SZih>!8JxwYrIyg^)^@-be;*xnBb2Q8+6Sr2k8(r8d^0ED4zXk`)(b`9f9 z+#pN@ z_kK8GWb8-`?v8xAoQW9;WU@PzBWI3OoM14RFP7uEoFYe{Ct~$=VUabb969V}zPS^Im zgJ`0|@B?2H{t$9{a?O#vB+xYcY$*B)XAn&b+j~;+o{ZiZIodI57$Ov$@v{d>cz~A1 z@bAm7e|;9=K?8gu{NbjMrX>Lw%EJ&A%bNB<`L*=DBqQAFYyf{Sr;fC)xnp=);2uE- zgOXD&R)U?aU<-R)NdH!963Wm1OOVsH2^t7 zQqg@Ne=EUi5aQvYlYepa7RJH*M0f!cFIKR`0Pg1su}VO+aF4JY`b{rG{DXo;-@^yt z$*&i>!kHKl5oe-AmK;4J6y{=d$6v6|@B$w%;4}BD_&(lqF)qA6=Y9A2-spRi?;=tzp`)e z_y~G~M`KEZ7o#y{L(Io{t^iOzq45bxgC`&64?nx-m3w*~Ya=Womjy={0_zS;CvR6B zZKi~goD!f~+sxnUhjd&3aT<~2l@m0WRd_X^IGGnw2!f z+@X`lXO&bIB1=gi8fzfE$ZwE^cV8=U?|1T_wRyUl;NuAg{2uO&U-v7y>yOPynYHVW zn@#*0kzHj`DV!^CJ8<~kcWdACVVwpU%x)qmEcP95@ID zGdWH;1IF7<00{EzVEd=K7de*ir|meP}xnd+5yp!0KJL? z!)CD&Os104QwRj+%QZCR%H^gSl=RTBQmSg(s+ua9g@C_UZ6AtF=UZ!G zEB=*)9SBPK8#1X?OH72dLlC*SN(LdZgc>dwmK-rqVOos>F@*g9cfaPNn$M`A3%EbS z7Lzv*Y4BdHRpP0^Is-_G1?jPW^f5cUTr>|^$g3F1V!KK{@A1tR4|uPNiGLy~d{1)t z#o5s8S@(8hLz^9b)qA_)y-kn9KYZk0KO*$+c-flQYw> z5SfjL{!yKGk!%RUW`S{+VIKkCr5p()F!vkW4+*?c50dR>U{k)&_il^_FhVeo*!4DT zs&POe8)Bxz&OdsAXDxs(+%K}9z$=6~Ql;s@Qy}3Y0|g1RL*}i+X3KO0Xb2oB#=+Wz zLxN^St+SDPKpF)U5GYjJ1wz@N!eSs{$Q*J*FH&|;&ga}u@V0Cu#xF()9U<&xP$Iys zoq3;>)Erhxvx za9Y!1I4)I@ddaU9bQAImsO0}7{~m|B*Gm9%*P)j)L_ULPasUJJFx`mNlmN!{66gQ716Dsx)02$0;A|h!`O@hm>2k6G-`)@T8RyYy~TM0uAcLyEdFm=sHXpvi8 z`SU3z^C<6_5JxDOfRbWRT5&aB%kqaLK&F|dBtvQ^>lc7Z4P=#~E+$bAb@8Z_D@`>U z$w*>$=}@F*MYEP|3Ea@$JEtS?tPW-z12 z=QDW)UIGEcUh9i#xIw*G+qZ;|vN-KDB8|wTh5=6rmp0|d;bHXL#stNi5N^;^#Xyzj z_~^9&(5)=rWZfK(KW*!>tlIz>|Gs6s)qYw5dl7I4!(T;mQ^zvOb{X)+id8m*pTbj1 zzS+JR&_vY^qjEwRA&q&%ioex*8mv*a9zTJ^q_@TCH%i&6(6z?if;Mhry{V8qc!%dZ zmB^sN{IAmr?bF^*Obp$w35q!o2W|mu?=Vto?xUu?DFlQ}g<&pA2d-Sr^3svI!G0F%-oMDLLK>XG>{R(NVF2 z#ZcOAt;<0ZR9AGj&h}i+c_G4s3AZmmq_pk9wM=OXD0T(kx@=RiX|rkZ&6h&k+<}9x z3Kxo}VyjyIP_mEQ0E?=H^%Lp0RL-BCnK?b1Tg>Ga4=v?#OWU{BvxWDk%)7yBVp)LZ zUqKOxnbWtQp81E|(joV2eDCBO23d?UtxB01fj{`VW!w?Q27y&Dnj;#6Es#j<4VqIl zlE4&yDO*kbfE}$Brt(u$;%xVp&ZBiBE4-k*?)uBaPdpn^&!1OA*jqyQ-uI`XN($er zE;#0?C+tU~DI+_)bn1<|bIKVGg7sPu4inxc9)lxZuTvN!MpX^xA$bvzq)iGZ1TdGf zq(Iae%_k%`**2t#=D`RBWCFoO=&BP;5QMRtor}Ob-QoyJuoX)xQgAaUDMoxXs0fZ< z2+Rq>Jc@AOW3ihC;yYXhn+1PM8E!-MkJ_mdapy!8z01O@iEFBn+bAV@5 zpk!D4O7I-4byE^M{)OYSe*ct(_plVmzcucY4XgBxzVGxs?R&fLebhgA^kpDC8Ra)z zTIAnB<430Tt92QdX`;vQX`+@7c_*+THL*Wo8-~t;{vUAI1Kttd6xOb+)bfuA z%N6eG`pjz^v`RX@8k^Jg`B*bkQ;SM1(~Qjp1ZO_r|J}U@OzeG$VuBmz8YUa(os~*{ zNxG}N{lxq^?mvbi#I7%-ZPzgW+YwAccsuMi`Gjm4ZdADrTUzi9+-l&N z>FL$!YI;g9>bI=wk$`0dqT!EPfr!4k8jc3K`B*M0Y;TUMf!{IRoW|dAN0JONY{zb1 zh-B5bEksk{eo)OsdkvB4IHR`GEUF@!Np-glL$86K6nH2Hw!OoHIxG563={t^44f<`ZbN9mICr>`UaChf#Uqf#^pElLz+N*C? zU>iX61VEjOTuFAL`n<$~K(DKugR`;=83<}KR@|U*kv)J*B?35Z7n&dPRehFYQssk= zvqdSJCT&X*<|EnNcTUQl;guho#8nHBA7yx1mv7x=U@kI34^Egx4!kQ`qRSA?>+Udcb$6g|M{L%@A*mG==Xeo z=R7G{iq^tojZ`B9N+6+OWFWEC!(&P95~lFGPjl3UefWEb)MfP7ldV{LL?4D9cVKpmDB{B3w**Ya@Qkvdc*vOiMe z>s1+;`F67{d?7C-q+v)ir%`DP?wsUo$q4*|G`wFz{#8PHa$OKN7n}vBfqG5SKLm`@ zY;tY2jV!EbXwyR}f%@_IqV$$yf78IX7B;Cp65V0!ddPQ4B660)I-F+FK_rvHzN**& z%V9V~ny|Q$NkY%*5g-ZYatqvda1HKmqqsEHlx{#zA}y%1u>t*gdvfB?sm69Xtr1ww zHUi-#+yZh96!Pe(b=+TXqr`^*o#5fk#LSeecJp0>J)-`{a8r0gSCyw`47^K^3DysR ztpl1@IHo}Jh-{oXW)mS<=$c`Q3p4mLehf-$c!$0MRpP)j5iye;%}^<^Jn58-9e zyTg}HWU9AkzqT%o&-?$uA8%2v-8-8nlDuER4{(}PN{bAQ(Os4{7&bYNNN>|C8V za##O@ba5l~2En|1*%=?Zi!;3=Roa+(!^Cx>tAwcw3TL($0D*n~gk-H7U3ZY0>S7!IMEr z7CS*vFyH78s`}Pe1Ed52gb5y`;o}%Ry1v9fK**cJOsevkNVAcgbx6D@F?=nuph}po zeDxw0jNlQq7M3h)ee>o#Ye7W~3+>^RWjgh-Z<)ido~8z)h^pYbOO&X&XcbhbpkVU$ z=xWga#s`&HFtCYWG1B%ooh|wj)TfR}xK4hpX%E=PPYvWC2~;LjN!^3hfRzIAmdN;t zJNic$b@Y0_?{c7eWX_DBn#(BfxFn-+ZOJen6GnSSuG6X|n}i>o^F{N6e+KoG4C>5QqqPjwaMSK%F}Sj_J?w6Q8ouT4-lBLk_;dEgleo@QEPcjF7WGlQZ!IiDn^DgVqW!6H&K-Dqw4?SY&`NiWm?a ze)v&A)m6U$*D3^qs)D;7UpEYYND9xcYgF-5pcIWCqn{^qH->N><_(~URW?(}QfDxr z6DYq+W5rw_M5qP-f*t|rTma)FXcd)+zQYql6FTArS-a7&vj`OsXq3yF4x5jt0-Hoi zH(YUaXxOlb$gv|^w$Pz+?l`V#7S-ftQZ4=)w+e#u3^W_`b;73He)v z#kU9nj2#Fj0sfCutyg6%^tCn&1fjXNvFt=n!%rw{|9{`pVmHw>@p}V`*hl3Y)V>=ADdiN0(jDh;t2*1gRrC*q!%-B3`=VlHay6sT(xZoq!>A3=Cx<^R> za>g$nkK)rqGdcS>=?3n3b;fuIEKD1rAZ)Z)KNJucYm~I(PtJ4Xntd~8ujW_z(JVSq z;kPFm!g%_6QGCN~(AGh%*}+tq+*1@F!obm0kB(UN493IvD3+ggmi7lQe|!%X=9;NUx{lvqxf zNYRLZu{w;lU`*V&ngTXg$}fh-!%`Pe{R$$}Z3=go!_|=MQA=X6ZDbzep}51F!`Wx4K}(I=dR$uPy`u3UyM@R4LeN8q z#cavN5+H6vg+9oH%weXGr9yzVHufOqIcb?K%Pv)bGw?bzdcw#f1+Z8i zS-9Db>GQYPu^U1&xzOx-qZ7|>F54-Yx%&;|IXfxiUA%{V{y-GDM_4Z!^R)o}to(8; zzxkkuhAVr)BL$Z6YXN3AkDnEjeroTw3<6 zr=Eg}4F!4 zIpJlN_--DuAuqWZfpnLAZz=PE!aYZp^3R2s2kKhR6wRiyU zEF>N7J(HC6{YRrnMbtFveoqvFs+tk~a8B5QV8bIJNSTm=`Xo+J2r40PIqmsKlkql+ zeGt0B!;R(3IG+D53|udm6UC6f8VsOHix>|Cs{sx9C@64&I@tld9S3Vj0&n|6av&Ex z$Ke=EUV8mM#~1~0KfkrhC$q*GUW!?B^Pg~ZqkNa5$Ep>nUpLGGbtYUh)(~B9jEIK^flxa z;ej|xp6eS;4+cOk$|klEScwe$L`p%M{2-_rL>qaZ@Ayyk|BGC(3dVAB@v+Pk-9MBQlD zY_obD@Zpkm#qvTqeG|d>&E(bdq-DkUJijFxGDHf;e z3sXhp=4L>l6VD*1%di|}PEx4whx;21tCc_A?H<4WM~d+%`w9J!bOh45zYck{&Agci zo1p!5;$SfmJiv$zcu(AQm`6hP}Y*o#S)ioSX>yqjE!zhE-8KezO^fsZWG* zaEs(ZZ&Kp0@@^J>0B-c4cqk?*_uivQu|sOuU--~{#}6w?;FzTUN=}k;zY><$Vax^& zAHVNI)GklQbg(z3M%jF0jh$@bCR=QHye9pIViKH;4H3bH(;aU1H!m^&5xawf0V*}y z5>fiVx#DcQuke=B$GNfhGyQgx&2tl;Uc}Q_-XmeW+TL`6BZSpaHDNrk>+bUPw=paM z#Lt_AlyolyAd9VP^~)fe@4$)Et*kWg`oe|upQ1*HPU#8wbLcCr+7@C6hhNuQsW4{# zx1NoIu1;4~7)Z2tP>jGg@yU2UKTbk|^SU}wNT3=g--DXvbrp?npxOTvsaC`NR7 zDy>}$W}kJ1-9rV$R^|QS7@qyjk5PH$qu^+xBMwkx#54!&i2V89olnR8uu_Sz^%vby(`k|t*y~*bgjP%ok51zU>air%s+OA3fLMbp&0k%93@!uYKvv`aQJDDJ&?`f$`d z+IZ7CzJRa9Tz>-jx4??jW*!NcHSn>}e*zS+P%!+D6bmMi2TuzV!DJ*7RUR_R&1P4P z7{%JrmE2r54h%*(ldKn_>4;>7V`9J&YT1bBS3`E~Iv|p>dZ5us#Y|0?)NDMGF3%mg zYdR~bIROO={ZdfrcC(<5)4^kEp`2kVuB0ml6bQbjd;{DpZ->mGJiEidd|x*ybzr42 z?<;&lo&XBC)-`4Naqq|)_MkPg8h8|)d#q?nz#4W=$6}{9&qSkV9KHz)y!OIdz}6zZ zh1P#xGn+R{?3wpc6>GP586u}Z!OLXK>9vdOrqe-sYs%}wSn zCVvahMHG3)6qPju(-Y#uq|!q`kxT;Sig`rXv$YmajU*?JU=A8ruk^v?wWiuus0HpW zJa2_8TV2C*)G|U@225heA|0>-$fn_y@pD8iD2__}HXZC`>%I;m!?%DpcayOOF^3Ow zV<_%VavL+?sNl)YJq}Ok;J|S;lWNoLKPHJkv55~n!fO(Pp z#++LO@`C$G_NPw^zOPDRLzKY90fKZqO5!GcZ1TN|@g$K>W z*Mu%_5vrh!+eC#ID1RdE(ubq5s<<&S>j_VD1T?Q_`0AG>DH=%kyzXnN`o9PL zvihs?y=I^XS>NdT&2@d9^3u_79Ok{(ot zmykU0t)T^N>`SDvddO6U-iF8_rr?NB!qkTfM`j7$BLyv%IC0||Sg=J&g%XRopf4q* z^*T7-@mF7$+DGH2om)OauZN#5%*_=tv*H5}h_gbh;6!vJ(t!zmZf;llzGC&w_xP2t zsz%iBs;@H2pVj)iOVRlZI~b1esk!5G<#Z9-LLok-ZA3Q$c!S&Rq}RP2>vxLz=xD#f z$kHf#3LYO@a%#e>Xri*Vi5^h70lGCoXcVB!P--`SW_qC-ip4@tB7eNvfx|{+U~c%u{wKOcYyx}I%=Ktg7qo4-h2}D1C>J{-^b~!#+vxOZ9*}ImDm;(9 zv_)$gNFQvDU|}bkMB<~z_*?MTQz^mr8md>zQr_QYASGJt6n{ix>Fa2}@NO|44FFUV z%c9^?N||1mR#H|hlZ^p*6NtvexHx+>!>DL8M`y+7B@H{Q9+tyGMh=GJik7t$)ru@A zGYf^n!i=&Iu~fy%YDzp5l+#BYHTpxe*ncRhI!7-mnyw-)B0+)XeIN`wvmD`xZ@D`t zp^J~BCsaR#f~R;Oo~4oh48{A%9S{GZvzfGa?Bu2sR<{+s$JKkle_*4N7rTM0eeoiY zw%Dn#eU-Tlhw*zJY2{AbPhWd1-g-J`qmj7Z*>&7W0Ykdt)H*#(+P+7(1c;)HVdGoz%hsKq5WRS|C@F zH7ho}HWfIeW%NPFuq%h3fxXwjL^Nvp0S*RL{;1$w1&X6zRZ}J4*b0N0>Av zYsD24v39rxC31v*A9O6OS`DN&2uOurcESFFQ_C=;sgtRJ zAr!oiq(O8Jdb5X5fc4+oPRg2W;=1?@#(?WK59-#qZHR2(#X+A?on(Z=S8F@GZ5cX) zuKzG^H%dfP%ZGof>XsRvY$zrYs4Q7qCz?O;ZVz8TM=*!D{!euwWnfe?6!B@JXfBPQ z%@J^@2{#&3?6O|VTOfKsV|F^7{(v#mR9)x7HXS*9BdXdu&P7VAW5YKZI-HYZ8OYz_ zUB^SvtUSAO|CK~IgZ2P^W|khq#|vb_kWVcelz*(j14gJ*1@RDFh`rad+wXUVmspd9 zZZ(Um$r{#YSCbmoKj@MUpc*3QmpU{tR(*^W_p}1P0^A8=#Q|`G@xUTg&&2j!fsU}V zVfM_=!|bKHL|D)GM~EELUwb7qa(JVEFxCSPGsQFb=%tXNOKh6uT%g=k4v=I6iSa{!iZC1kACsJQJ;7+tI!s9qlER zN>Y_h?P`^JZ*{r5ZFe`c+qTLprZHe}$pjd%Loj4y<1itH1QV*cEJ;j&5W2z*83M@= zlawbUxi@4k1KcV|GB@GLL$>aLEQI7HnW*pk{{N9mwY1%xJU88??da(LzkmPM_e-Fs zn?hr#0>_n|hZc+qy=rE}t1|^(_!6kqziS>ytRxy=61Qb~AI^+=Q_-)yk+iqI^d)qK zWt&oE2BEVAipOxN6yrc>iO@~5{GqbVPkds-`~mYPPRlBW%KyqI?)y^h^;AgfmYk@3 zeSk}eLw1|d?|O1^t*?Sk?9cf1HOsMMW9~!9DHOLWSGH8)G>$?*U=cT3&fBh0j*{a^ z5ACbywX&54OebhCyqVdzLXT?J>k`pF>{|(E_|WggQVYWBG8lVy)B0-v7+k*pAQiJe$W%1j|Eg zB`7_hp~6qZ$j0Bg^_?SyxZgLV*z2x4Rtv_gx)< z%7cHsP3z4i`7=0Y@)zuTwu`s{|Npm(?#EUL)%CXP6+`h&*WbFg4~17*=NfeicDb+Q zaAF{HE*B2PTDkNg4Hyu0iWGctk|HX6bUGSXv`ZC!=ZSyexA7qwx}w$A9M|twE$BH z|8eofL%qNJ&T(UPx{IuGH?_O(DIYYCCsw=2BPYDw!|&N%hK@22J^(j0FwI2+v0Zdn zV>#dK-IwW3uNud{BaA~|tL?u9`ctp?M5eo%IBp&kZ+&S0t=+>=%J+49SfAGZOAQ=4 ziFk|@nK(n4wNkj=$y*zDOOIZuF&t?0`(gyXyGJ5bDK_nta3H7wDU<{VBp-1%MsYjaY6HQi9@o z_R^*A z#YI%H(t%Q9xC&rkuFFcKo(Fu0)bn&CXD2hpD9@>WI}Sl8Q9c*I$QX)EpxT5R5$*1m z7?zNVek8tBnmjp?=mI-6JAa5zZtg)}N4f=z0@|4;bIsqdzQ#Q`s;Pqpk2#=Y92{nY z{%hBy1c3KN9V$O*&e%y6I(wL^55<-$pvvg|?K?#~QwBEc>b2?1l}O*>4{wZz0REc1 zV~bAUCU?|Y0G-6HAePb+$3@1Vgha$pT1iY^t@@SmC{%m?n{ zcr>7rS}-7pjHlv$SnOf02iEpDjPr$d+wV%*-eSa@8d4 zhnR76btSShxYb3Yju@#c(CUzS_meR)~-b8dM#Q?1U^5WT#N9C&cX)ed#M z6j{A;)05ku7ybyr_e@Gjd$PJ%MY!c%larsG1m3u)Akn~5kkwS{Pf!lRuC1fLV3s zIRmBB|03gGq^uxSj?_9}*dXR1mjI-lfl>)Fp5ap32tEED1uVEL|KG*kYA>06Cij|2S&57ULY+wXiOe>E{4@VuLzTDR?g zwvvtp@A4Gx@{}_$fha!kDqI7JAxMOKtf5#DawF0=YDEMoM5tS)?pt~W$+_33l;dZL zOF)N1+JfG)e0^UsTLiY*NHSi?8A|B+xi)aXal@v%5hqvjFEmdu9M|=DIOx$nrKAr8 z*^nNrUu=c~yaG{xD3e2XDT<&b0;=E?-i*u$Aj}o*L(zXZpwC*}N22HuYgIO&PF%Va zk7OW_W+L&9GViYJCam`h0^C_9%)Ci1z=(!3o0gW5)NzkfxidWA& zVnB;ewZE|ui%43+@ix}MhRkk+HPKs!E}JpHN+$e6%p*fuzbV_FmNKDqP=fLVeISj+ z5=|bS_mE0wMG0<~Tnvai0{cwn8Nyfsmnsbni^U4WrtGxvNHA$nxOEpaLSTMex;x>3 zQV)__A}9jATEL+PG>^Sg3mc&eHNPz!^oAePbD6l&(4%>0Z^M~G=LR1rrCsljrZVC8 zyV9ixg3;OoK|SPs&1+I#U+`tG@Bi3_>(pP_R}Uo2e{5AjDC9HtVC4K4m#KiHX4Qa3)E(`csdz2;h^Vd__ zDh$cAXJHm@iWWG}kuo$z5>>hHQdkjpI_6q)j)ON##m~)uTHUv=>M0xXQXGFqd5iB@ z#_uW3%-C=k!n|+kN-LU+eh6e) z7RK|gb0)>iZsZ=>@4wXhHW+tzWQi>sMs$glfO7yF{`*L*VCU{ zJ}fHdB(%yFu2EI4Y3M8H1v zh3tfIOk@k58bhbns4-Ed3{#mhR++Fh(`se(h|fFeMv$<9U_-b215(KB^Q&vvM|c|H zz-GX_JbOSB);sjtI2jkfbW6i<6XA%1bCc5)>id_C#gn~D$@o~*DBK&1Cn^96xwl|A zZ^KSSdKLAb@rPrHPA3ry`^)aAYw3{*n{DEeC0Eq#U00-b72%4fR6etAtdTN2KThIA z$F{>zQ9!5B6`z|v?TD2I&j1|v>RS!Qheb<)Yve@?3UBOlyp>w-qvC&r9o2f#S*`Dj z1-&i@?0msW|ILrboW*+8QK-Krb9=5ReP)Zf+cQwVo}5D}fw_|h9{fhSnT+ql;};xu zr^DxW`+UfRX#*s=@(j`nVhV=!9->giyvZq zz4B-UA4)Mp$sUwT$rX{=l-%%v@oovx-~Qi0ZmGvPVxm*4Mf|=0g3o?&vp=%l-88N9 ziDfcohLKJ(TY;1pca@CunmjB}3D<%Tj$Rx!Jx0!JMygDom7GH3?MEc#@Zrac@z06i``5L7IJ^Fv0js z$2ts)QWuAKTn&3JqW@@{qxC{+sx?fe8zn`krN(PfqbaUlD%`nT0mLDSC$~$qHK|`x+-#U!Nfny{H0-xgb^{EDQkr(1Aid zLpcv@b32;CUn=_H_53*kH4|7FMQ(bcSlmN{UK*uDsm;7 zDvkLUZ@c5mu$AgHb)r6Tcr;VRTma8_m2~}rq-z>cttS*^usRMXt4NJKrBGmvkuv+1 z=m!Vt{(=M#$7De-Mr&8JrK_{+E7_ZK@dR>pjA!G9@vudAS}4MS&^1i?l`9A7Zw-WH zC~as0%;Kd!{hzFMkiS&9_d?Lf63vhvF;WYlG(_}`fu2N#*8q7{$q(2)C{;kMoH2j~ z4TJK}XTEbW`NLuaGw!G@7U%?Gy}w$14Hc0e&LllvmCF0BPi9`e`NN;Z+&gOf2qxeX zM&%(BT!frI{j)X!%alB|mHiYfnL*GyzK1lmAQjpy{Ih7y!vaH@WuLT& z?n&(c4i7=Xk~NQEccoDPAz*kmB>ij=8nc_~PeS&CedNJSDqKnIdcs7CWykmgTC$sP z5*i7#aWf?w*w~?*Z|QC1A$MXLO+l^KKXccm3^*n8-$88X>z>%ZIQ^m9<|G4IQo}8s zHNf#efK|3ISR)`WV}In=auCQS)e-hN$SR+D4$2#7aJV#Jip9EyWR2&ctJ}eDJK*!- zA%O28WI#B=^QwF{hrifPe+FE`h}c2D9pU!0@Pn;Q7}8IGn1i(R4^j8Ev1BHb9E&Fs z@8(mSAGg!f`${Nz)9IU%q1fRQhsQ$t!4rpL@(TJ8YZvuW&qh3e0@tpL>*WEXSDS-e zfhwk#s1#!^C)I7-moe_JCNq~OkQ5ZtN3}ZUCL*zQybz>DjC4Ba254^3Yw#a&tRV0k zU%d@a?A3lhT!BcyULfzJ&Moz<*CDRJ6+%5XoZOdfk{!XAS*+7@t}#UI{wNm8m}_=+ z_(N}XU~&HkH3K)eM);@=-qbWdxDOiE`jS>SsnTr*cN=W8u?{Z>6ht1glg z!16({FpX@hE2dR32C5?4e_eygW2>r*&^0qi)^rCpR#qNy__wMP`A!G+I9Zvhi~8pm zZxfd^5VH4Z6FlVhZqqvKC_`;xJuluS&LLURUTuOe-nH7)TT`|1>`^>!5Va{^2uOl` zL2|}s`8_}#gqcfc8)SG@^9J}bBYmHM!r^m|%7`El{mo^g>MutRjV%|fD+9lxgSB&q z3lfh%9lK=2_52t$eNk$pc$OM z$P;S^FTDEJcy*a5r?tN41FQZq9Cw*$>|ydt>Da{qq3ipWtMOZ3eSyc)P>W1;UqSuq zNhJ5ol{n|H(D2lO9sDp}0iC40N2$*<<|z;WI2iA#j+vK1hSYRWxPsV-bk-O2g+0DVAd&zmmq-JZ$>~Za3n|^l zdIzH$M+r0)I*_v`x zm3-C?N^k>?4AExdGgx0?Cc*yLTdyVX|B`&huqkYvE8s77(geT$Yf}Zq^ID-K9>BjO?YJ22}g}6x{O^VdBmaDZKEa= zzwAL#cbMB@N_zVJWBAmguP36flJr18;D^+F5=BU7O&T&(&&|Mt zOYmG){1|Mb3yW|!khmbcg~pQ-n5;(YMJfc-2f_r!E=e+H-wu*VlNt~5Fn073wSlk< zqWS2LJ~t>WkuVj)l1$5pSRS@SK2vMq@N8|6qf=qx8}JlvOGj|%0nuJ%hXgSFZu=%i znp_AV=%~fnZiKAgdaFNG3itzl2&dbOkk3Mx9tY}pAdnv4LI3zQ>4z}PYGAEmrMue! z*kr$~5fuh@G^d>&rx>s5M3c7oKK7a7y7ulh%14mGr8_DHj%YW1wrf{UuDOajb;o+q zHEY(^aRva*dIu%Ud)*udAPNp}g=oz#zTPpEhUC)jw!dbtF}xy8$<}#?Xi)kWH>DPZ zu^#f!1Zdjd9pBbA88`G`m1lRxyhI&$`Ob-L2XPA&Nt%xFS{bMR|V#QaW|E=?q(quh49 zBH{O%!si!AaP1c@;SC7g>o12A7pZeQc=xTor^4w-KAM>Dd!0}qs&GY)2katNn{qhw z7=u96{t>VQ*QOg%RKn0*m>cVTV|f{Nr&ewK0CxCLFdi0_bS;}W zGC46Zc_e{b*DqUkY4L}s+X)_)na>-@4~&g*yHN| zkrVOC zc0Sv{KhydsFFxB?TvS)uPIV{e(H4Imh7?8q34SkHJ#QmRTmnlBC{pxlea1%qw~2g1 zaIQ2;P}+-;_VSW5KfN%Wcbd-9RLOZXQNp|YbZV^W3#GK;UtX?V*3H)H^77nEr>0&y zxBr$~_HW*@A0J+NG?bn@vW_vh77cJXR@FjS&`QAbCYYebse>%+4|OQ9LBvs6HLE2d zOUvzeQA>q<&9RiC>o*YS(}S3zUt#r%kmc@?xpe3#=m1TiV$cud8A2FiqOXnYdky|=ZKNE7ae5o@&HAc&<%+pV5lr>Dsw)O*WRJRN ziKa-8Y8tRV;SE&T!*wC|E}Q_@QCSz24(BZ-$PQu=addaVJZzwG!}U=Q^O8N=_OH~$ z?COO-$0_~7+8DqH?CPBYRW=3u)Cc7(HuPxf=~TprathSy@C#nr*>_VCc{G0&(?fqG@zzI$W2E8jl2J76T)WmNE2CnaOG-i z``loz$GzyGa3V9^OBL5Fvl2nyC3RoBd+kkqZCCs)Tk5WDD?xUY-aNct4}{=h9QOOe zcnJmc{fC>_Vf(%iA*pSm574e2f`M$Hc0(Q%Bv%B8bzK`3Lpr!!z190YMHvo^bCG-j z-d}j0%{IpLL_%jzp4y}9x?4RL%bVsB?4MAJ?dZc{npGd}K{HqMwR(}n_tRfn6^L&m>1eD0 znbnKtRK0d~bo$72WwbD66$`+1hvyxFmLTThPm99{gKRIb_*Q0Z;4bl7sm}@7Xyt7-76}vvm>pD6DN*lJ zav`r4eko1EK-Psb&a4fWh|UA9)xa3ySNI9N24F*`e*twx&{j4{x{WfBHV1;F5=n!V z9KSQ_@%lV1%ODryJEo!WqUN;QL^SLDA)9O7mx+q1&4mleblT}$7`HoYv$i{&E?YHG zsM=kCeDgr%WykAy#Bn|luzP~u|5>s7KNtvn&~L8*;!W5(K;v`ToS#N|7RSRV%J!@f zPQV2sPqxOiL3jv&pV@^2<=~pbCVbGT|T@c?zZ4G%qdLHq`B~d)!Ee?aDrj z#!W}_C@UYC5&_bS9`Lw??defr10GSJXgC}qn{X_GD%+fJ#ahDUv=wt;_q3qTSNmAd zb=v7X?FxPjkcf8Mf5Kg$#O8Pksg+y@?80t?>J0=rK&aP)FYVzlo9T5U2RLg$H5!RA zOyK7c6c4Qe5%{H;ssQB~MtqyitqDBPDQP!SM+>_f>Nn7jenex?7U6IdQK}P(+3hYQ z1_zLylR4PS(xKH-evb0Z#!_&lPZ2ZNK%rVg|C&$_}sn=@3cRYPa3tA%vRC+~botnp^k zygyx!IRP~2iZ)^Zjz_tkbf#d{Rmsg;`X(zB zhP})3le-AsTxBAq{eb%xl`Z@aEj~@2&>o2qxKA6gLNaR@*<>MROq_UEW4UobtWKP` zZQtblSSgb!jm=N)yY0lprInQn*Ht$7Z)!F6D7$&BvR6ADl)c4w+a;F|-l_~PpdSdz zgdF7T!IMgF7>bcNIII`)0pReZbg>Hk@+vsW_XYC#03NS1_U$w9fb9;(J@Tn=X915& zpW)N;4k)hbNuypj;0tK^P;QF1Li4+o&k#NUfYd-B7O*w666I5ikHTcYTSRmq^uYl3 zEMlOcjgkBbc!96KHksY;_n*t||4Oo%@h2+>AAId>CY$t6r4` zBsFT%3?lRMKwpW(n+D|3I*>aI@zuv|o`ffC;#_bCv=3>%sQ96Q{n-zG(D(D@Z}!KEI--#DkZ3@@-%?M~SdA#? zdLwV6egV?hj1A}O0PP8=K+0R}-gqV(6KDDSYqi?RYV{g@EKbbtl44{EDuzPWalbXCL(Cy_`_aC3nmuKHQ z>8fejm$)YLIcF=s(3*K`vzhPziB;3pymRK@9h&L7=`{xy?rb<*lcPD;*!=O?@(;Hb z@|Br4!13+z)wN5(xnoAMOh0*nlcC*+$MdN!T3S-vWWc+(6-RCpp(#HjA+6Z zS2F8&H!3%03X{j?Dv0cGpPDvrOQlM(QZ4L?It^-$#y_Igr@Qasy2EwYY1mi8Z zYr&A6nu{bOkz~A?@lA|ZvjxK_B#(YLJsL=ak!7=x3yQap2^TB3taKiXMN&&kNj+w- zA+=_{0GPF8s`p3ffawiq&yN=t-h7ZQepcTw=aWLfA7SIs5$FeKgya;5r$`l&6pgm% z8$^uBjuAS17ZID(nmD1-kK~)NeEMXyad*9b_i6Tu^igcLaYEo091}=ym9O9P+I#Bo zU)k)cxrCYXy!gOipOjYOK`Or8t7>os{#58IY*d(O67*ej#aET*kExs%-mIK^n(F0K zkDYyg&=#ByRGyu7MYZ6WkjskicPq~tD~pk?K8gF@f9BCZ8TZ@%cnS>X*^mo1ZOAE- z-iz2ZLm0;~Nbk(wIwIzAsHF);v%6DH8ubp{Je_1?Wk?8-`kjo{B ze2;2LbFT)8&h!KNvmuL2|9=L78YzX=fsR5}JGQrq4;cpoQZ@Gg5gL48lTApg1KBU5Rj**VGQb5K1$TbAi{E|KIVF~4cly?y?+=; z>^n6LN_yXE)ZX&`iOu(w46VKVfQUDwa%6`|=Wvc}OF=l48@mIq6DuWl2P;eM&$O5K z%K&e%tqk~CLc@vvZoqFyvLAyy+mbQumxf4eezx{r>M@xcCq6Ykf86;u0619p`sv8(_rm723Xq|{ zamM}7lU}SXuPR@56@N3_4#*Dw=9V}Ce@bs(IE>bBq&2-C5IPfvP-DD$LrrS0UhK4? z^QC_0vb6DMfd8TJFtDp*4CDy+2SNI=R^WrfRD$pwqgp_7Rp)6!g#XySMV>of9$oO} zs|%$oEk=Er3#IW)(Qjyrh+oS^{b66i=fU!e>V?l^v+s`Qopbr|g-gK9x&+9q@de%V z0VN>p&Bt910gWhvidVawkI{%L}U}t4EDZsB3saFGT9T*oXb^z0Yv@)ZGT4D696LvFIDEy!Gdg>@pa*iHN z)$4zP3-A^wnw^L;uuZ6es>O^m0p ze5Gg$$>3C(g% zVb8}0sAr)d#6TG(q#e{7NJ;>%5Z}~ga1E?@B?CV|%og?s#`?+Yi$+p_2#z9 zd&MhqcW*1tpFI)VS?R8uZXU#HKL|dS(Z$g6apcK?QS`z5hpmx82jC59G_F{( z>MBF@u%yM!*+^1^p#rL;b6!_8oOZ>$iBz^a_qbzvd|}SqZ!gDlb2BGzX`L*l#y_cf zk;C)W0P>G{yaq9-b#96Fb*f1J zIoAZWzB>wDfjv(7>nLB5KFx?n-A?Tgh1-f4@m#%n^)j?)^y#9ty@5!8Gl&a$VC1#f zzxo`NMkN{HYH@af@|@X;vmebxGz7H{_7xkNjRbliqc?`$PT9h6!03uFE-})Dmt&{f-4NUlF+NxS4mkVo z#_xdbqJGt+a*F=}g@C+5%PT9NPwYE}fBO=r`C^svbfQ6b!A9Z?U;1*yUw{TL<|nyI z3=b6fTu)d-*rd?06i4A`UWfU}dgz*X-f2%v=?+K6G4tfqli!5@0FE~DAABHvS9{~@ z4jngma7X2dsV5$x-UU!{^55MXXoos`S$77q6dk8!yZ+FFNZD_YSslHMmCya zeWLe&Rn~UZ`as5kS`&7U4Md5~-4kd2UMhV075`EedUfRPvY!V@iU!onb(Dl84y!)= zYpXEatH-crBLuPK7>pfFO}%10sm3ycSwi|b!leACne?GU>CB;{@%Ypf9s-9X|Mfkx zg!$L<`$L&2`TbP9KL(^h0}Y72XogS^R9x8L_ofAq5k_6zG%M;Gs;a3E>_t$mcd7CR zft=##mp4cg9{*Jh!xmM&jlVx*X~f`M)E}Eo=nIIlgRM*;V;5^o&`d)wL0~E^jM^d~ zGA5ZJuuRe=sZtdOHAJJiZi-AI&+Mjio8iqU|) zX27qD%6MqGq-_b{t5jd`NFbxelYsI%4NbU+|F~M!4fzE$qw-n|YcFK&Zij6eHj&H(EDDZi9H*SoyhC%k18IL4h6y`zK)D?*A3T7OW>hzF z@sM-2W=CR@c!9Q_?{w~#8*T1au@->G9S+%Ylk zEf+A2{yqBlk59R8bKaKz*uPgVtNofj_0M8`BfbmUD;7<&Dh${enFv_KW)g|RhB4Fo z&C$)7hy4DxPmAVs!Z@5rO!pqne~x7>H{y>=Ad`<44v?tSk}envd|u&U#2;Xlg%(0%va>tH?hdsps# z4yFmNH^m2R0%t_#uq+dvhCHk;R$Chzt<_Gev%db$SoMNho8W~z;-fgnhutE5x^;S3H78J`dn&-T7w&aA9t%HN8ne5-|aq4#+!D@k96 zL(Drjcx|P>k)C|;Z=u`+`v5%j@fSgWyIpJ3kl`+Jjh*^7`GQB*aFk z=+XMFGHaFea=L<(XC0Jn1btV7 zzH1Q(a73G9*!a*mz%~T0JIWQ{XVF6Wpl~r@UAZs^uEvOX8;n>tu?$_pf}TmHlNo*C zCN-0^a5${qtql$5#{ks3P#R6<3;35$jv`)IX$&*?r`}P|i8Z*@U(|87WIQ2yZTGk! zGLvi_^cmRhua|z#x~=gmZORGKd4Wdk9NViS7dd@uFV+|}e=(;RH$drnjPnaqOFo7f zGol7T!-qM?=(Sbdyd>SqRFJ8Rw^(hrfi*+j_Vy@?%g}U~XDmMadh6j5L`2yQ)w3?^ zfeu$YHi0a)Q>l%)?YsL z{<-{XQ=<^4!ag@*3O(UO(5Iy|Bnj-xwwP~gSR?ce%0YTSL=m)^a;cZO3*cR~1nCa% zVPpd2NTdkE7FxTIpi>Y-09>6!q6YhHEn&_$i$={TI%g>D0*wqF$toC=&{u6l&FW@1 zQAEgws9uIzy$FrmQ~Gh;y0k)YR~c~vP1GPPbCG9dRVIFevI0(J za$eA+g}nunyHssBtyVx)B)$lwz|2n~77Km#_yHztPaksUqOu3!tH&HA=-T!3=gR;X z%>3jx>61DAwgXPMh+a4pF_6uT4Qhez^dWSu-kv=#F_F<{%(EPjJ6~#q8AxT`14LyZ zG>0BjRC)4j$B5R6X{iF>6_x|PE^_2SvfL&?F+FsPXaPHtVj`{ZX6_f7DQ!WWY5npThk331+*^h3O2PeF*7A~E{v`*m znP>aLP>oVYWa$z6eg|k60_dgVLkaGJ(gU|HlOM2Kv1JpasKfvy_H+Ygn`NY+y(C|H zP@mS8>EZyTy*%gmj^>@(GH_70Zd@^eV~B0mI%od?wxyH6zFvmblDJw3EP*P3N@ko5 z(v1=P9A6- zBbkM2Bj$1e*vwtFu%3!Kp#1d({hBuySeh&y8biSHn!uI#(r1j2e9}rpb$t82V`zwnh#}_u{xamCXRS4Q6_DGwqn3X zt{U;UF;|gnL}iX2Ou$kR!g;Y=hCORK1mKCvA#Iv#U|Ks=0WNuHI>lh4j^YRV{2%Mj zLEFzAOqt)YhYt5XIsd9=AFvjBt)@>->b3Gb)lRwjvihjwxZPK&i0)jnoJ>|yx3~`i zNuRo}>OuD{sY();d%vaf9I5%Q;(zIzz!)@an>$mNB69`oBRF)$>c&Pwg_?1~rFtKP zpAE6eHcYrOZ++30FuYrHt-ntb#ZA=!TgA>0)U8^&n5aqz${k~8O~~pv@b6LITGjEq zRc)c}l{vvsm(GPFwJEv}2c7zhy?@}DD{$T>zCQKD)R?74v-f_}>Rz#$2yflgyJFpBw`Uw4ATDF6v#(({ z8tf}koQP776B|@Bs9A%!SZdDi(H-r6eFys_d<|-|sVh4ML$qX_B8a;r4Ugk4c@uuW zH4C=J|L-xk?a(Y0Rli^&VNk#s6uGlOd(VReG$3-nu&Xp>K zkFU62shHnK3#ZM(83`cVCUSY^a1`*{`i62NcvsXuZx!?mp26(1c!DPF5}OiT+iHjF`xxrPybPJ9@@d+ z+$!9!=HWFWnIoOs_HUg!`M#r}`cmtr#?5mG^KW>|p`}3coY$ESkWtX9Zyk^s{_#Ss&BUHD5J(bYGEvj#o`(!}gfZ!MFC7f&|;J;mSsJ8c+)pgbjNrhaws}GxyEdSLM-ze!;M_Vs@Otw8+ za6xsu^@1k2uhEWMZ@4A92jNDWw0%&lPcPcC?M>SLNuAwS#b3eS*@j#cNdI(9=mrq+ zn=t_P#S$(66Cm0`vW$ON+U(sO2xwo|(s%?u6D{5(mWt80A2{%K!!Pdj`FcO+H{Sm0 zPP|l-<)VkUewjfE<1PbV0TqfM$Av_5*k=(NxCZqb9V9{!PWd0Zs<@XpE`&3{Hy^Gj!Ei9<3kXP_egqHT_Gbxn7jil@5&hKG zUX%K*Y{-Wo0(i9odP7UuT%Ks6G#bT?@O1SCG45NuKo~rgk_>5xwEVrKy$kLgFc!mQ z4$t7}pf%*vU^m(t;*m&T&F^1>R+cY;h@ST$*rqU32>9Z89Uy>VpU>?L1mb~!SRLFa zZ~u`@6iMc^cp#R^!~$_GU_>(+rKVyYaFyR`i$weC$k^n~j;H@a z%m~82MRWQ>MNvwQ1+=k9@pwV1J84?Bzq4FKDCMqn-zUr1G_KrXB~9 z?;V^27G42WM6h?u!B)U@`zq=)`C70}mfy|b{#|d3{uKcrGBQy0)t~zn?f-f;1E)zS8={@l@vu zb8LmBSEfR4gAg8r_6xAd4H)&L?xM7#XwP9D1ym4wS@tc}|IaR-(5M!B`W$ zzfL5mUDlzyOo%R|!mA@6Esh;Jb!f~aj_Rp}IcUc4_iCBG4+;G6Pw@?kHli`f_{v>$ zX>|+&IvfK+T?aVWU4+u|v7NY8=tuMwU0?XsZDjuUowSY5xAbmTZz;UgVJbnN;@kd0 z&XX88X{<-NvFlCdxE?m(i;<1i%JQ4X`sRB3?2}VZi0=AY*Lc&Yz0cQ|l{tK1lK zu-8lBL|Wd#8#Xo#k$8<7f7LjbaFG|MoJ31(CV%Npo%e zCmK@Mpy;OGGV`iYDuNu%sl0tUL*pS=rv~gcu;#4maCxTe35UFo`NE+}3upVYQ0k80 zVHRj4E`+^j@C}|K1%D{y|9kp41N@}b-@B-%wCe1mKJQ&;m3FQOU8%)0<(ct*-Zs>k ziGGeHvgC~d*KZ;0L4C630&}&UX=9&b+6VTd6*uaJ{73tFpRI&@764^1VbCtFWJ;vW z*hVNiE?fd}_aTda6V`h;>MVDl#~GV60U&Qq0!Bt^9dQv(pXML_bEosq(c^U0+P|OA z$K_eam{np98}JrvNNtjunaF(IgmMulw8HX5WibB8Q-nd@JXN5ZRYOv@5O}*mKeP-p zFP+)g2>TxMhQb~Ug*Vi|7_@}0Ch_M(87~~x-SAX1%V)gdi0_OiZ1vF`yQZMz(LP-f zjQtUb*);R4Fl5totTsm0^Md=I9lMQPrLHa=F9Nrksn3d6T%{yMq6|)nc zes1U7Sy$M?R({9chQdSk$KqZEiM;3NVps=zRu}XWL2DoOXXZ7v^xkS8fIbXt7NSF8 zj#_|g=z;;05xZ6^qW4R>d?IF56`KP$2&6qIBKIQxb;Bv!#)d5wHti0(h#G-o#rYGW z_d&-2J$w?nP?NW{;TPGvbm4OeT}Rr%R78(t#6_F%eK$SMg2icW(SLV*Pen zV5GH1nSy!0gx<*5ON2!WRzV`&CF83$ns(zdx3pQA&` z)iBrBKODGiVUi%q$Sl$K-Ez0WbBf%hxg(P&&Yzrs*;Bf3!L_T-$~76C^&=D z&Dvv0lg%0p*_U=XChceOucn4X9Fx5V2zHK%)aR_rT&~>53eZkYVt;{otfi6|$@Js$3A|1$@ORrN=+7hS?_|t}s3N)*e= zhS4okE@@1bzDjDR5xEu+GtC*Pq_$81pXEH^3!RPkBYoJPp8IjAQ76^wE zv0yUP3MGU2bRrtWfj3vV1f0>v#v*5b`>+g<0@9(!dM9n{WHnm_Qo21PS zfkW~bBKR7(2o4rru}jI!X5?&mNKwkbpI+CS00E<6#x!iY8HdddxkSv`8vIM!?UrbD zmY1m?GkxA_;at_{NG2V=DzS1`;aZM(2&E6Y0(}dtwQdenAraEm(euIaK zh9kHNh!%k_Bm5RvsN0g-Y+h(x=wis! zJjU8zmplvtKwpq=%Gnr4s7bd?IPXHkDXt(@I2~G%Ko*NXo{BMzNE^uBSJL9J=~J8=Iy^*Y0Lp~J z9QsTFs1+(*Ec*d5~zn;Yi5ED#oKS)0q|wT;^x zQ9WXFl#$UIVs#d54qPgIwsDt;rQ(>F()Wh(R~KbZGq!n#v8p`j6lgIGj#4x%BW?&H zAqG~j^YePxP1!C73>3&kHdtpkz3SXcVAFDwUGrp%h-S`MF?*SmkdDo|r^excWU=IqNNKHg0 z7Sw@6eH(=|JkZ{-2bJ$giRJ1nsXP~2-J&r>3kWgpcMv+65~+7)jCgId_}VQ}|HXVx z5-ZmT_KxS}-ciJ^Pi^xH@(mKv9hS|}z6^_IyNXH{#mkZ5G_=B$2@^WIY>)YD{d3D3( z3C9k_!)~ph`49PBg+fbnhvSE0VUG(}4*E3=xjHXZdrbPhZ*L1ArL7ZNI;mkifGY&e z27SGux7*hHEzQ}yzo|KEPC(o^)0uk4p(S*uw!E#Y|IVr5E+=rC6S~Wlu4mFto91$U z4xKwpOH689_v+U{_0+xYAWqxagX@`k+T|h@+lbrMSNHGBWIzXqcW8?id2tPsR;`QY zr5w*_<$-|QVCpW+MsDp+1n2i0mvW)I+Jlh~Ry=w*h}q%u#w%eQo@(kqg8V z@j!O|=Bcx}+c8bUv!jWY)8%p^8O4XfiGc6++*xGt#ogm@BC6%HW1-O4!CGl-uIPyS z!UmWHm&X+g_>8bG?kLWUl_YQQec0K^cfs;7&~{K;M1N!)>j)`nfJe}=!$L;?TKAFs zd+)4y&k+AlDl}Hi?jxh`UAW`re%JJaJP6e}_`jn}ht!5LlM3WA1kAybibCP*gC8*hkhjvjH-Tau| zIdH)!myMSnT&o>Pre~QUqSGCW2L>(taaSP`}CdQH3Gyro3q&M>0 z@=*ecBOZ*RV@41p%(N1Nze5JEj>QgZB)w*%qtCEwjqTLob7i^vfRd1jHh9 z%O!$_V^IYD=vr(>fS*)b0~Yc(u7wdS}dGq+)d z8ioO`!?30Akch#tlPUPXRZ7h>a%x;rILPb$u%fm0>%FrJiP&5+<4e~}-(wwwq610! zqx42o>2rHm()fNZ>GkAlwKbk{!!!i2PGlaQ?I!~;0(r`@et4r<^$+1WZ=K5WDEk5T z#LVdE%!E5tOI)ODHO+F0EhOFn)-z)35=r;?Y{_jPGSW1aOFn7gxxhTJHqaVi=V*!KFx6h#5=R0~~2dz|cK#=7Dm4=mH>4 z6$v#-RwB_|rgLbYFfe2g*VP?sk{WtqnmW8n!Osyx-CW*)XUCQ9(3k58fW8lX-oj3L z0y8Kqy_=~U9Vzah<`@MT8Y$TXs=-wQ;4N>-XJod3pRh$!g0dj8DqR$k?9^A`_StU3 z`BT?dJ41bl%rvAHo@eq+2Ru{<^BH`GC6nutW2!^z{F0G-(65-j`xcD`)$)hLVuE|T zgp^Us9>+TtKQCgV;tS_^Ntf`Rc<1EIM;llMG`eGiQ=YL&Ew5-7!iEvXbj}r`X;BbU z`LHKEp5Vpt1yL9ujTZF6hS%rwc6wh6xI=~b3O}r5KEw1acBc=iB>v2nEGEQg?NCi1 zZ(%84t%uBsWC6f2g?edjZtP&_GjL1lX27M!otbVdSQ*zdPJD1>TAI&k_XPZ!pL2>n z$Cm}qQ0Bs&MQr+Ah)5rC!mu_2<7f$RhXw$3;K*2no1^B!azZXptm;0qQLP7IA3&Ho zg5+fMT(jg-Fp3ay892xIxE}-FfrTPoSket9KncF|4~4# zd;ByJe(6hrMyrw65knUifH1V{4&Z!iHpl!Pml8lNjNnU~y32+5x5E5{FKHaN*@{tj zEOzVE)UB~6++jGA7Gp-6i$3aK%auwm6LC*4COj^0Br@iQzS19&R}g&{-F9L47MzSq z-cvaY`mx-M_@^a$B!;zE#e+wtedxW~8ad6uP*BB1)d1dL^5dFaeu24#j~zt%Zf+t0 zT>llB74VN*fi;}gZ5b%j675=dbFJI$ZKzj#EB&M8Yujv#m6p8m1?ff1{J)mo`is)J za_L2B#Od>b^!@Am6VfzzP3af=V*PnOfB10!??owoeg97UMDEj)zqn}e7Yp>_zft}I z8wwSjH^5Y&+iKUzNx)3h?Q-o)I@c^Z=dmL%-8iK%^B8dEK`c1@B9$-l4N$E!jqj;> z?~$3ABi{MYp+nc#gx`P6weBq?G3gIgTw9Q23nzaI_>uL(fy;HPHUOd z$$s@J1XCfJI8Q3HYnN3pwQ{5aF9?1J-e%GUlt&CZ!ck#cTWmTj)dun`{nN?&@44sx zlP*_7i@4IG{<&Ap`A5^Ph}LlR-lWHjd{HdL^s(IUEE$P}fo!m@hRc-@D=2gN53^ZPg2cSxBBS9)y8H_&^hAJrc#TxahU9@8H^-DUrQ z$J@3h7l})HgCi{i_n-n{X0_d}6F1NV=dF4^5$Wsmz!_g(b41R^? zfs(UPPB_n)t`iFKT)U_<4D zO@c1w>Q(6jS%40aErH^l!X#Lry<|zd4wgx*O^gRTvop6CvmOWf2=d~>-0f0c{A{cH zsNdn4P2Ms+>j{icD5>!Fxdljt9>4G*yjscws!p{hNFOBD+!ti8QTLD>Ye+iCT$2`H z6KH!<1L@VSQF^Ua)0ymQt81>TJnFY;*C6j(xpaD>ca=h`5c^~#IQwYlI)ttJ24{8^ z?9&a5Zg=haM)P|EyNXX2ZGuS_bIt!#RT6#w?caX71s69D(bu!mglWG z`m}Y3^3JVH$bjgc*{QH-g}LG*GKX9I%oD7_uXeegzob_Tj!hFQ*V@R zux?Brf5=9|9AP5z5;}G2tTu7hY!^oeeeWf!U*?3+}0u!_enS^Z>-)T2q@i zTqqo#z`;uW$>l+v3-FqK=?m8@AtI!=3e^#WX>Ts#9cH6)6-Me+5$cy(cjZc{!_f-!c8<(aTHA z%iXh271bDhTYMd5dZ71(J-aLwwM1xz#sdry-4da?hjPm*8+Ks_^i>Y=wdp6#UtGFl zeI2-qhi85|>u^AmW%oQa_2l&Di%*^HE-x?D&Mz%J+SFi zS#aIO8Jlc$Vmpb@s9l@9k?P6G)zw7IX3-dU%e5)=weFsIcxmZzhi915@Xx#el{i;1 zuc@DBJg7vjEd$?AYR?c83NsHqM;q2NxDiAO)0Hz0(FUUki5L^4QD<@}by@s;DU2M1 zaNS{WY8MZ)-1~xBZNHw(8yAexWbDxE|ElOz*M9Y1(b7-j=}u?Q`- zk8&B5^i-GV@WaJM`yP1Gr+U9pP9-D8)3-c1=W;DVXegut(<{?~f)pT-f8)uSLifyt zuD<$cB@jxcBGE)L6c|6VZw|snL({Tew{IyFf*cV}Xj;SOLym~q#?xoI1^nisr1|Ri z#h1m?*h%P{NS}j*p;xLgI8@W)0FxFj2+EKED}j^d0^om0GeQ&ZEW?6$pkT}wI=y#h zA6|GHQ9V3ryET)4*ITERz}^6lcOvf&NIQbB?Y0%{L2-^hn4Sll==H&1U?jhnrg5MG zSk^~hp7*6`J}}2Tev8lgP0@lxOgve5X+sAIBasdx5p4rN2^jixWuo@hdbd56F>ewh z6XxT1UrN`OT5IixK4iZ7WV_pcGZ;7Qp+jY36C_A2xNusbkePGnlhC&czdBU7*sFBK zL;rW!Wk$(Eqf7hNT+5uwbaZ`NuZHw$n7i*WZkd_&_{$UQ##`R`P!rvQw+@ep<=;4; zKlcY)%(chgeCVCG@V;s};JHJ7&AtNP-mlY?yU(7yd){V^?=bf~i|vo@S}bsOTC(v0 zNq|*T?^lX8$v00NYHEsD`8bH@E_01KbJF{YuXVZ_-=rhVYS(CZHeD%0?aUbWI!zxlxfz0KD0l3Dk)phn+S zCK2kPT1SB>9FhWutWwg=t)I76&P-PVhhM+mPjG$U!E&eNtD8&9EtJRksxU%`@Renx zm6PUJ#8}~YmwYmK{0A-)MfkUOUJB_y)%n$bZ0FKV^*#~=T* zhCj3!Nj)>`6`$bO>(LZ_M}zfGw9db6Wzmb|_OlhXWvlK8`iH)uvTlZ~lRqD-*Iu=1 z1+oiHA`0lL@_x;?Z%%*etBAuuy|u&UYvA`LEARFCb>DXB=f%+i>i%EmA+xi_rdzfO z`Ve@~_8hEjl7^UcoiAcXK&(h*n@9aTDmt(L^)>(}0*H|=Vvv!~8SLm~ zJfve^r$Z=fML{aMzEZ2LQi|B@qHbj;V%-W^P1QXO&s15NLcp{f9&rVNAoTon^HVkV z{iRk>tAaL;nwK{4k2(afk$lzxQ6XRwgk4Pzfq)ggw|+@)fr*ktDE^hUS4JGsr)*L3 zuk?OWNl6<173YIfsD;!hq7+)^vRt^O6Z)#44q45L%7K6Qr`*cnvk{feje!^!8LxM@_ zl4vFJQx(WIaQeVLwQ-v(?!OdGy**;2O38;w7XV&bEj^lgEzxNnn#%7Nv$p}DJo4vn z7pbw7adnuiPrsH}H?KBr`2xlYF>)3?QH&NnH>QBPd%6H)IE&R#HpDl2_h%v!hd zW9DJMXW8TLKKD#ZZ|Oeq$?RnBQ?%moF)qfZr#BW#iL&p}Xk1{e`H>Jl@6b(t+xyaU zZ8;z0oKyXpg*H{?WM{OWYz4RqWhWgtxu}6R2*?3$j~#!4Z5P1si932BJu z4)%VX%VDaU6(4`bi5Sn6vBV3{yiL1hK4FGi;|DHcDRr~G`+mn8NJTQ@pQMO`nMuhaaCOnB+9)s0^VOQd23_dp+GM!hj-yaij@KEC}5W2IT4pN z7tx$&o_Pjq_v(nIy;22iav2z#om^F9 z?pH4a>L~&H2d|G!I$Yjy_k<^LPIVXje-2l++boA*mm$;X$eQzci9(qO!<+6%iozeF*%m+eOY0jP8Tj0 zy5>c?3N4Ek6Lxfw6e8f!;XM`%ww11{bK!#AbJcoHTJf{ieg_6Yk^%1xwejtM7gE0d zU;_LepIbZkB(}PLntn=R3)#JZ=;n4tZUBixT;~)c(7Q7I)btp^vh5i=93Z%UsE4?S zxE&%gB5ntM1lT^A6RlB)SxSmf3}9vGkcP+VX036icBWBlUApA;*T%ns14XQMSC$D~ zip&?fo*iHBcHw}8y-4+WzkDm_)3s^<2ZnS97>JTii2J=NyT5SeOu_6DQ4W=^P%qS5 zw<-lo1}`EQK&{HjDQ@jCM$Vfy&_OxhzIno2{X7 zx9D@?egPU8Mk+RN+oh``t=2`bRFc+>4G1{sQ(~KUp?BllwRmUHsJMCjj`Y0#^`vZr zR7!ex*Ch}q6=O&==|f#e{(*`(u~BcERavqX`-13;j3`6g5nLSbghV6=&4)h*81a=A zVQ#LV3s;b9T)_8K$zp;eABGHuU$<5^SMay9Zp=Ma z350Y8l>tY;Uv+yEwSt06_&vJ@bzA)-X_hms*r+oqjJ|2BL$`}=zmTEdbrj8*g#bK6 zgC+B05saEml1Ne&nJ8e;gk5zPIcK2IYs#V!uGJaprJ<^a#wHBS599vn1l~u#AZkCQ z0Ftv40HmUh(Cu&}E70s)>zcmMs!U*4?JkuT544T0a63zmAfp7fE^tKK3&(6)>vX$o zT-=!RD3v)SsIy{hoYBO#fv2ibgfn*$yO(6yFx^|BKMA#3XC9^J@}sAFn?A1?@%n`R z`h#cA9Q>{B%H_)|YdZHx6uGsQJcvnyhj_WqRTnrB3o5BGJ$R&Ovlj!{p7|fOkeQe_3oi&AK^}o#Dx9a$B;(MSy2OmP515o+x zl@mb<{d(M~F+ZJDwSr@ivGml>Ub!f_aU=^M>MZzbvmHHl`dCHe^GnH$bSMdBi6K2T zN*b{hD~$fFkDgTqI&TW*fr^AWU--l*0rKn%Zw-o*8Gv%vu1++2W z8j(FzhH`*~4m?1&X{`rmCLP`B1v!{1LmLgj1^Sr#oBGM=*-U@2v^ zs7q%+8W8Q&x0y1?l5~Ar{DJt8++QR%7;<<*9SU_m)sa#$O0_;d<03--n3Q@3=?}ns z05!JSw5xGmSp3QP{CxjUB(~nqdryp|=Fdd4k;3s4WnU91p%X7VG@5y*8bEQT|0Ddm zcX{Y{|9DTP;Aze1Cy!+lM^4Sy_P@k$jP<_B*-Z7A>f3Fx$~@K=g%5W^=OzS6_tGDs(3tfwh%o>B+15dB|tW`pye$0gt?;>j`urtN8H=3>YqT+h`Z$B(!85?NaA& zKj#j3AaWsOqGQ&pv;UdfCEC~mdS$zPNj_g4u|D9+1}@_>Oe=VZ_SzaN0&l-ZJ*ANm zs(e@r6czGSZpJ8GZug4guxc{5s(=EBhHsRA2@k+%cH5VgCEN+#Ma3@?1yQwTqzqI( z9%FVL1@ahaC{}^JXNt|`?xk+GTk9gwrPsv)ynONE#dSO`f@G}sUFBiyhf6H>ON`WI zoOi#}8bXY)CnD|9j)KK?qnIFoL-LpUmog4L1^TMS;v0OZG4Hb>Is#aCq{9rtQUr-%z%LWompcM{!w zcfa=TeG~bNg|R)^Zljvtw;>z3*Xc+BrPh{$04y8@haLV^VSM4RA$NJofiImNb=~Q8 zCX_&ce&_jj74z~5oK1tiQ9U6$1%Bx;SOI@mX{8OOM7wq;zyTb+2Bio>h7-;D0)e!) zhYW+Q0L4VX={I3^B9D$@e@&pJ2^*U1Od^qo>;&XA+1Wpu2a&}Ur^D?=_rz>3S6vfe z-|XAUI-1E($iDjh5SkmZqeFy;J>*CsfxGM$AR?&ikhN3D1J54v+KUe7pl=j^PQIpq zIRoyDu~rR+Kf>|^T}8bCOOQmTfJ;>o+(8!@%DwL7ST++q950O3<|d2TY~*mfI5s(t z{B-SBZ@G3Q;7bILgwuhr>BqaH;ZzVgCI`HBhZ=kG%izI=tHP&}&gv@Fc|M^+a#Dy8 z$J{SulA%U8og15~)y6W09!TXPx#C1!0Mxld|L>sB2p$Wi{2{Cozc(Jp0R$o#u65;} zi263g8?cI#&?_Ayr!T`;WteAG8j^q&FRL8>09_o+trmx!fC9JCcg+wRU5_^qE`|eM z_eMAz^k5V81jC<*@Php6dCy!j>-%8MJmJmNa^4eIx$#mZJvy4Ml%C{MeDG1dTTLMe zMh<&k);l}v%|h}*ms$FLj*lN)0?`^~$i-~8%M6w`W-^!1`rF;_<;lKDcgl31^nX%DPqE_jjW?kb0fO!~u_$TN?;mA7Nk54^W`*j|GJnbe8 zfIUpZs-)!Xew}gJVRqE2$xJMO-ouneRN^oVJL+Dm9emH?|3})JfX9`UXTmzQ+*^Cq zt*TqM_I;7+N-C*JrLrwAWw&g%mu@%hF1g*SyMb;ZH6cK|p@C!yXqbeCKu;(`2npmN zfyCko^JGZRlLUxDl9_}K|By)}$PP??GO_-l=T8Dz{!ICQzjN-b#gc4yVypJ5d%m-M z=Ud;ec!a%k1fI1!*8WuEY;*2YA;zljoqE`$h4*`t~{sc7}35IOpWw8iM@R(mOmToU(%OqNXV-#sW5HHaxiw#;qqA9(fnQMy8xL{Kj)K4 z93~JA%>pY|L`71R*9}EgjJesi7j`1EZMr@LYv3N-NQ2xI9ybbw&`c7(M@<4sus0wD zWl|uFt;vFp$I)D@vV$0lCSDz8ZseI~K5Da5IF2=Gt05Z4v=~orO?R`GJNPIRC29||4+&o0|BrAwkZ%PK2!@zjLKOH3DTo?ltslqJ1HjL8mh01!yPKY} zUi$a47DAK+I)%Br#{O?$GE>Y^i^{fDkjQ{JLu3;O<-sxNK!#xgQS%u*5HSe|Q6p|x z(b#`UFSn;I#_rv}tm#3`ku7H((U7h!@4q*8ak70!dZ}?<&q<3X7NwkizVT3cIcPtg zKjd0|%ykOBH@LP=xgJ|~9m*ecc*0Os%=IG{ z%L#qXU!AS`=kya6OL<8<-oVj$*7eA|y11y$J?c6O@uG2DTlzVX@MvU7vEEY_%TxVr zNt%4@R6+@bl*FmWCMBs-s5zYxj6g2z^M!Mo9#UP-*gaR#6nWvb{>av8nHv(DNd`S=#4mcLlRN-6A*$Xi7kdqbWaPVyiM-i&Q!PgWHzf^qM z{{|^n%}KQbj~{?jbN%ZUyjx7ZG<9dJ^F!YLZ()UCsq|1ELJNg7Eu>>pAypM$Qrr2o zo~n=3sF;8O74#4y{X~c$I^n#|*5A$@%#oatC@F zU@AIIP)JM8KP)CCqHE!SEu8QbbC?&b0tBoR-Y3pGMA>3>Bc>TAwi&1Kz3Q1vtG93N z@V<*mJ#smW1XM1+09dt~isO^XV++di$_BzQf;>osrk&2!Z*n^f+JNjJh7Yn(6K9h! zK##V;+@~%_>dM7^hv)Y7TA4Gs(MDF5m4#!Ict4&RX~dLI$S(lt6HzaNa|CB2KN1WZ z9K;T&2FB5VfF8v}l5o;Z9tSw&u^3(6|Vt9P>mr z5vpHI_3~t_Y96H+!m*%$%MDQwFm+t3h7kcw3-S<-D|m<^0)OIK?e5vxyKDO~n&@%y zG3DMY9A4c%4m>h-0aN8C`Ejw_tk;{%8wZo~Z=f|o_LK3pc`V?qS|9hogG^1{i$!lcfHk%6_{~MIrv4yaFeb^v00dRJ`iH$#|dds!YIOaC+6>)o4fCE zx|@d)yL{v<-CaJeo$$U@dzP)Y*Sb#~Ir0Pd-iLoUajUxYX6?22hq*M~_fdE@0#g=XGi>+=0 ze-X+mS2wo1;#zGs(c_kR@*W$q1L^d_st84&Br6O!mjPuc?PSTUDByA8J(9Y(7=d8P zCVYE*17GXVzs>IloDcIX_|8g9F?MgKgUzJGRysg_Tv>V88Th`rK1cnx1>UD-=~nIO zSNmI{t?&8W4;pPngS3fwL&2!g&?7GYKN$O9*bc8rN%r5H^~nlB-ONj0-=(d|8Pr=f z{?>Lj+W)@!A-)A0#KiTlvcCZDr7Vy*_F=`qwP-LLy=oa=#Qo+gB_ z!VdpaBf9s^1Wdp`p3#ywIEXeOBYGWIs<9VviH^Pr&+ex9F47W!QK`e)LjC-6tRw1Y z5|*tg9uLW*{Pye}Yy-$~qW|;%`)|JA1Jj4^MUxJc%#zU%@&UkMq|nd>_y}ne^if+k1XMDP&khBN2q7Qu zQD_ITaGmM9_`^2&bst^(Q)@Z>gIg`2viWL1y;w zm_?m%7zybXdYw3n;AW)ri;VP(!+1p;V#32wqM0HE5FEuaf#BI9KX!hEpHfboSC5H9 z>|@s_cqm-|GO-TSddA-jSXxXs4w%2kS!6ZNBpg=cfQeQ#t+Hf(nOKc+{*KbS03LJl zmC;-=#aiHe!46%1rG4m%NK9v;zFzPD!7J>~mqeW7IwABP9OXtuTFqYLtaYC&oepF&fpprRPWPlr1Bq|^YdJ|-&8`a2i3a~ve2tbO z>`&McsVhCms>m z&Dx|c5*3BqPBx7Y_k`e#H+|_8BS*gUP^Afx43~v0M$7;P5pX?UpZe*-4Mm{}(p{@!5oW( zPGC_`CLCHIabuj6MU>!E8i-o4mObI*q@qkEgYNuK7rP~QAmIM5ZiNNn>+4S-1l%8+ zqNXMzzTC?o#f@Y+CE#YK+_0@O?#mGUe&@~lO+dZqciHT>%=`VCVz=m46!-7q?$sXe zq$kXh=(%4DCt29DqwD|VCd>d8Bw*-xI9SZkL@HK^<3Fd? zDMAtcAggH@fZ|DT9Rjc&yokdCr!DY;o-fxU;9ziwhb=6j{VtoZOMyVW{GWt%_a8IU zAzvgMiugj)X;h0*{Vc$GzHnnR6)F?&ixeuUMqsUDf1nZeK|D-Qz=l4Zi5BB2O-sd# z(aiJ{^fO-sF=NKsp?-K^0S9NKPyx>HV767rdj}ugy8i6)Li(&gGT0(Ws25oJP``ZmtqpTU|=Kth^?Wry%H;o&O7yhKKZupBvTsbEn+_C)+52?Q!d zoVHMRi1r3Sb|jl!!_Ow;9^c1uCw~m;AarW>F4(p4NVI#wmjvxp zr$K?%LkLq#$O<^gb)QEjUI!Z$h=w5!qJOhM9jPJoLo+(pDlY<@3|$i)j7TKf1HO`f zP5k19Usr}bt_*wJ&1TWL?19{ghS&R7r6=Yr9zFn}NI1+Q4Pr)q_c8{o8ceX^ z$dN6b>h==fq1+{k(lVlPht88(7J|D5xNa1eMG`X5jDP?KUIZ8*3P5XW+og6XmJ$w? z7lPsHGtaCP>V8eiL~6BS-5-@RTI~$J<2r3PRzh`l{Bk>6FQkH+%NNOHYrmGQ7gNEg z)2HDD&8awReiO8XVdI9K*KTNXON_EhvG~A-A_#(Oa>_JLnO0FbVHHl8%9Iz#EVJJA zrq_Cxov*LefWfNy>xEiP%fKR4FRDWI>z?$z8x^z(9SgG>${{#VXGo?(tZ9$On&NYOiTn$Q016GwS+pIvwnE}Ro^w%BC^TJsSfX5#fNL9gxWrX}4of55mTiPx-u2$(#}&!xUMfkzoa}Vgkw4PbHx9@Fx8(GPl`+N6nPPbbGB zMGu5{vRM-%C)fXp9MS}dLsC#TyzPxaN)6JDKtFs`U_Yjq2ZKYGDw30t01kit51~h$ zP8Aam5I$%1L?CeDKDw(4wF|XQwu7wwq*dnDPA&vmkbV7V*m0fFI=p2+q8f_EZ%Xe*wT+7hP3+44E@>58Ji5DWf))px*F`csLR zE#l=Jxl2t~W+nVE%=>cq+mo?2d%oa^wgTZwt=HDkQ@xETfIeWXbE^AIaenYWaGVUX zZ*g-pJppDcG$lIDiDp`V2rz}$m7x3=O6Isz^!@W9nZPR^*!+f9LC`67mZl+4OS5_$ z-h$_fr~jh(!lA3c>Jx{uxPSi!^6#!FUWdoZf1uHxx#B7Or1%&S`<$13o&61XnHTb6 z9_tA34A4mgH5GenK3{CO9~FchHVAb;mg%piA3w$$^WOWl zV}gv&i?~g08x?KRI8nYI$3WOQQkd)!T1c@5Js7W1qA2K;+@#}U_3{{npFi3=*8gg% zedTD{pmafu!1!>T9wYnn$9jktYhO8*Hpu@GNJ)rK-EE%l__xfnD(q(1i{pK`^?YMJ z;%~eYx14kONqd*I`fuq&WvJ1-!ak^`vIUjvm38D3Tt^d{+NjJ-QR5W-OXw$qeP(Vh z9>pD&v`Q-j;ZS40XKbmBv5oX-C*9fiO!}GMGxpC0U&t55^8J~W^orwh`tmSFvTOKN zi_ra`X5$1SPaTjOaAYAS9#NxUx;bLJH$;|Dma%@M8t%UN@$Q>*)iBa#2;KJ%D(#1W zqJ*vX+|0ZC-=S<3{CoV(-N&8=S}wptZTOsL`IO&1^PG)@Wbht-2AH&Pi~in}5Jlwe z-KF(Sq*1Tm&>(<>;qN8>Mmo0HhREjLv$rtWamkbz^&UOtR%o(T+|Zt3iq@;V&2Pdt z)rIst$RJ1b)W8A@Fl8P?J0!yn&Pm*pjHB$!Gt=p5{E z1*7pm@kbyrXhJC7eMHQdu1ho`aAYYjjE#v1=wfLM${PGuh_a_d_8Ufp%e*En!2TJh z06O5#QJ_(Q8{L?yF(M-2t>I|A%jV_;jnW~1d}KVdupo(#2jSy)agvH0I*MZ_FA3QC zZI8zGI-K{rjs(^y7RXJ9fscbp1Np~CTE3l8FdN@>1P1Nz-hJMGfo0_8C%NgpATJRu zLVmX0_BeDQD&i023wIri9zXDIYdlPv7BL>XP;xutGDggOM@K#KoY4Wh+ z6BF>t-45@-5W>_&wr%J?h;0X3#Vg2)kaF?+U0KRAS$7tJAAYYC$_4|H7h!id=P;jy z9m7q@HGzcF=GAPrP|j_01|adkfMH_VP#=izoZ5}{J^9Wnpntdlw?28x9*pcpR{iG9 z=qH}__v~Bz3?XTAxJC!oclZTvmvfySSm4t${omVtp}sydO9u|WM{T{EZ(qKDP5NlP z?n2e=tk<1{?Yd}p(zeIaHL!unr@Rk-NciayZ;3NigNKm}y=JrkRwMLWBkG0QXyB12 zhl>E?ptF(J1cA+gj^tTJC-UQklO_O&zj% z=M~xMl$RtFlb2QzfR%|=^(?f?GbslT3dT>Py1($g(ma2; zZ}PGef$u(N6Q!oo(QKk*@AzJ&^2$@3hY8#Z6Q!mqPFFj$$>!LtrOosIR>aN$1_d>R z)eKCTs%C|giSlB<__`{pKmcRoeBvM5h12gw6*^U2hs>?oURIQ=)oSTU%Zz^i>(zIC zIr5GFCBDQ?KcT-+jvV}SJI*Hl#fGEqWo{B7JCm@R7!ew+g76zrxJna4sScruh*0p` zZpT0-I?(ALK0p-3rtHK4JP~wXBOK&Y;I*c$8}bcKf1F|1E6AJWnL?ZJp0n~>)*P#F81F*un!p}91@r^JtVbBtoH8AXwtrs?Lw!OZQ z07#1y`X)jOJkI7+D~A(owUh`2UaEK<5i(xFhh2HteSCVJZ0)0M7^k*OHg+K;EbP`4 ztjy@MjLK!}n;z#+JCqm4+fxEo@Yl!s=cW-IJ*Qy8ZSLB* z=%;ZsU7r|l8NC%p(%u~&_Senp6^)#Y_S@~Z(RzP-@7@bCZZQCYmTzHxMgK?m-Yw>N zl-2#ijxiYJa7e}6YwC@;7wtF3`R;9x#V95Hzu$X6Mrnc-^``4W?0d29DN5p2D<9er z8I@_#T21rO&aIH0cRqBFjZ>HtKG@xNhNG5!=zS7`oZ$MH7~sl~J>J}lgu2J^9}&uY zn``C>lhncy?u{Tear3Qn)$9GC{WD+zPD#4uHag&mryft!SDn~W+@2-qbQ@HTuJFBg z)vjZ>$2QwJl6&sDT?cbGmb3@=PaL~p@Bb^u^ftET=*ZsA79Ag4u`b1a5i8*KcI>WW zJGyah*up!U_8%W|TF?C4 zCEOYnu{X$&Zsuwf+dQnH39EzLgs)5HPJM>@$z3|QY~a9eZ$gCxQWII^5wyCl zQ@*D-`~DthdY8wqjLDr9E3{;O*5G_+3kZe~hBipF%}tUlxoPXZ%?jIGE{JTs+qzJ?Mc|33me@o zNYG3By*xa)5L4X2SULXGnaoqCb*d7#0SScVJ-h;9n+Cj_DB(kzM&Mg;`x)g2QRZ0* zzK(f}(2+kv^urbuYF7Vll2I?kBIsvL2L(zWN3-g~`~rD}*-f}SIR z+C7qVr`6gzf}oh%A7kK+g7?4D(G%I@R)>jj8JSwX_daH+P8D3015?w}E3s+6JN$v1 zo~V3To76BcRXyjb+{0ygehrf^Qw~ZDqYXD|3FLuPQXX&vz#KB)$P#^+=YxdGCx+cf^SyLUz}Fajj*( zv|C%eLs)6}D=#@NjE=2;VhZO8T1SS6SjpVQYXsEqHP)llv`FDEfreslsnkqc7 z1Zf5AtDR#$N}>_Fx6OVLe2k)#LK71jz_d{QP%Giq@-s^3)70#hY!$bDFWbvrIj?Ew zaZ^|EueY}L8~oLID57ScDYk@aY7@duj#y#~xDjNAwW3%$9L*IZ2@)8+0L$ty1Z5z7 z^0(vQkuBeRJ05S(`*;@TSdsS6=i9n;;Gj)!^LB7;;*k>eZv@X_Iww#es9y-yZW2ld zcpHLiHVGbRqgr*hLjiYwI`0m!?gkJV)P;1~JxP(Ih+;BqxZ-*gQC$G%Y4W^hE9EPK zkE<1$JH9ix$p<*v5`w=ssVv79LbB|VU%@0Pe&|oA)V$8>mp=2E|9}#Il0D=|D>O4o z+7Yr#3849v@2n zhDj}mc&a@-;v@Cg(aFi9$5wGH5`LJ|>wYPhu@+kmU(V^B4KIE`btCRx-Ol9Fi{V+X zGv{lxilnFVzC8%*d=TCq9Vo_UCLY9Sa>Fwgzb3kb;D(CPiKgh2-RMf8Nj(`I3#1W& z^#Zh!jQ9wzx}mQ<>Or;5d$`gSy%IfS5&n@D=7W(AW$!pOr;GY^)ll^0NT+q)8PQjr z_b+Yq_A&m+dVIz&#zi}|oDVFOj9Pm&qz-k)hrrlVA7vj!%tsnlEiRLf^v8mrFBwOK zIk_-c@R2CDW-WusEmK$xTjN!KqJVo`*jJ0liYwQF#_sg|vd`mEl{b54_fctc1a%;? zuXJ>c2Yu+u!v5KaR9M)rc^>7wpo@N4mH#J^lQjGwfPO^O${k>brq7gUbxveqU0Eb6 zB1#krpuIwf3me9I6Kji*94J?o7AYnMs5rZlPocEXQyd_PS81g==s3L^I^mzO=`k%h zSJ#~O@Krw+QSfQ^?0()8uS1s0ZITC676GS<&G-kM(!$zjYBlHFyr#^>d|?WhvxcsT zUM(o-l^Wr_B02sa5To>C;AuXrLHL8nz}2G2d#W}7_Kp-PVG4m3(xg>|Bi;yJfO))E ztzOwT<)5^~{ycLCA+2!jsrt`mEEZMmsF2z8Kvj0=!PvtoB-5|2tb8!??Ac#TwGoG} zuVPHGzoCf4^nJ)@JSvUNJs1dovB6o8ND<3 z2>eLA!+zfF4+bLsU?QOeB7w7Z$suXatLb;8s)64T$-+5t4nIy00Ok>IE{Ip`Zom8S zk5DM)M}EK<5zt@QNOcWM=eR$i(mw@UsLN z6!3!OLcqEqy9_{MU~uXK)Mll-0tXxGcKVx4?QbI!Wp&lyzw}!=h5W?PM`L7L;O$s+ zuT z6~J9?hZd_i8^(imZ=?l4fh(pwPj*bg+Xj*x)s(=p!y$sgnuJU%_8J0{y5A{NkZS*T z6X$uL>Y>DQe@zj&a6;`%obSI(akDC^)`UXxJi;WK;2=EeM&qda;BDnX6Nen|q+vSMng~ZN zqp-neEyWm}njVkc;ff;+P>F5D6gATC{+W!Oc4s7CS}Zbq*cZGTX-f35MSkQuv<9&b zsZBSeTJCwHZBF|efrz)$cANZNM{n9bcZl7JhHs6~K$0`%et`E74e-Q9cI!Wqvv~hU zwb^~Fw980D0Il_B@*$CRzyseOj^tVKhB0AG3<~xH@x@IZ7w6#T68XssJSdJJE}`4t zOd9I1+-q)1`Bt6~(LvG;)3ISzj!U_zoU}}O6nTJSFQBw+z~@PvNKd{oO<$pqziucR z4UGb^;VZs?x8LXA5@(M|j}LOt458A1U#K~91Vc!qA){>qL5sgd`Uu22vH=@j3iw|* zmKH?F{-zT94zB!AI!n@|(5jb-PWd4C9rTMws)(znFGA^N`Y)eIPd$|W@lpDSUSV15 z04$49;Gh^Y%3p}W)=jmdNpA)m3qL=E$9e}FIYk)ZPlN^0|Y=--dLNoIOX{1#Hte+dvF& z6-=fAkOfXEF#w8vg(hv_DUOdK;|ej+(Cr>v?hrxMt!j5Ctr)ls;3a|z{kel6@?xw_ z@fb9oW90IEKepCxd!^lSjoo5(4aP>)a3cAOvZBmYg*5$Fu$~w<*xYg{VRD9;=EF%d z7txLT4$G=xEb>Na=ihWL2avxEzE6vKvqs zdlMF1)VpV3eEqF%_bQvXK7p6G@8OMQau|9tjvZ@~%UJUj^pxX#L2Su0* zO9x`3;chPwWC-*lZudb8Fi(&u47_OokqNFD>;LvKNBH+22|JFh!bGl?pg%suKKfp@R!Vm7CLX?Ur$H8XtIMDP!z`zOAYe zgxsxT2?)91hBa`TE8ylseq-ZfvrfZIXNk!7^}=>^fO616&>UeKX&_GhFe_6m>+qF~ zSEObdrUn>Y2Kpy3HOkh(``gH7aap}Cn^bjKJ!kCpu6WgTT0Jhi{T+TIJs1k#%4LKi zy$@*|sGr-js8T3kiP*#bs--Q3{g$>p99Xd&mVG+3cqHT^I|csz^Z|SWvN=Q^r%L@0 zIx^V_Db_p=dt05N@)41V^+EC;L>01>Hbhk-Y#YRTVET~F2-7oI8AYn_Se8LX1X}~n zlDGfO)80_Ey(RAHo!;a=|B3Voo*X}Ez$;hV_&nr2-Ntc%d*qelb%#Ko@l8rt*A0Ya zG2WE#f-P$zL>ZOHBPKGDlTohlq&@(g8mzVD19}{d#jJ_J10i7D+Gv z8=-2=Qt8))AN#99>}Hqg8*EXab!>^`m~|m%Z;A)3>+9FAe+4)h@8sv$Ve-2$j;tBR z0v7P0ym(<{5k?$ZBN#>ePcejxBX1XJG#Jtf1{`$_sk~@w9(G2GY~nsGI`QZks>=+D zwlhC(u*EmGwi8pSbZ9v7%1e=vndKp=pn?r|qj9LslXD652}?nZPmbT0(>b zz^plqh`y$w!SY4g4kQE^?^3J*2pRJWNKr*P4@M0pKGV9iS*+Jj*6RhFJaC>_ekzmD z%bD^_Qd9h?TypYF7U`Erk%5sImW*14L%RxaejzW4jOdS#fBY7 zyA>IDe$cGR-KMor+y}b$BG2-tZa~-(hcr|v&nWcjl4=Fo6Sa# zCGm!0AV4M1W#9;zaFP-H6W-g+EdScbFZgvX;W)$J8uvgV%hZ%>iN|FzFGt}|M7AWi z;^oUo&A>v1l8e-7U=1L5npj%Cf;kYuCe;cf+L2WcMSf%;?S4-9e6DKl&t`M*2&A*_dXaD9R2 zB@}Hk8^b%kZ) z`fApCt09($=Jhmm5p+Pt4H#ooJP+c^k#sM0#;b@``B8_#}O9UqxQWBfs*s5@e8~WXF z4u>`DZZdy+ccY;h#J%Slj`Bc#YCgT=BZ3>3ExpPf|Kb0$p_(sStyK2G+5#-QS z0;9T$bdF1Df>{WSX}&s;JJ}jk0Hosprl|jubkAO>0#2MwtVDKQj-RP3h22WPgA{1ggO5tALbcmj$1+pf5J=RU z%vP^zbv&>5-85^4&sVHRc%|#9hSJ1TxC_e%tPBP^=X4ui$snskSOe9K6@>4R;xw z5Qw896Q#P%f561=Xqy@D_r~{_X|tenItsdnb}@u4jOmtxz=akWbT(XW96WT&atq;a zIj8o;;;l*d0y3>Pt8N!-cTAHVeeM6H02B#d!oyfRH zw2u)Rjwv#qp(&DlFx&!>683yXbwp`Q`91sqCe|#~3dz9Q1B8R!uLYI-u%%VknuJcY zD+tP1Q{PY7SY|Psj5T+IKDmL4>4ofKhWTFI-3#!$8@v^>vjQhA7d>Pdiqj$EC>}Iik;qnlwYIhtIIGtgyA+xVli7 zhE;bivFj6?;<|<`lP0&!UaJgI2No41Hlq|w24*-#u3A~N1NLls0pxZi~8njZ_t`(?=O)L^-gHux9p=p zCli2GyY(^0!N|BEu1`&@P|G7PcPVJ z@5~H}Yu!js;^c{ikP?5gpSg3^);M**6XF%N2nu6_F2bNB@857851)#B7K(0WUBO)m!6f}JX+l_F0e+$U7?rrYph^oWUf(6kPC)aa2%t6kj+?^yr|;V8B#2i70Ib_CZ3xx@z%3r+@g*e%h!0_$7_jHuATNd()jZcxu~jlpkM&^M^w z@;L&(|MM`2+A%7-)@>JN-$QF@r`Pq(LJ~|oQ8;=fVlwih*^N zu$ktg{TIbkwy&*2k?-OLv4?y~fzW}_hkyokI=k8wNC_KFqf*;9J8P6%O1Eveb@dHZ z-MEBYy)0D^q`4TUmEzb;@@TQ#F0BZF$5h@vv1@0}tlk!_>X|c(V3b2zX-!gX#ni+> zlCc3HgWG`2o70Rn!iP4;2RiVzz}M`!u`|OV{uZ7BXoUIr5O-kDL?l>ff9Q$pus&cx z!=jQkMs~L$K9j}pVweqk>-gCIt48+rhxB%4p2m@%vFnh7Js8KBsKz_A4r1X$F0Jsa zQCbLCgo{R<6b-gSkvp*1D!~v31%ynypU7m=52n-UUlI0Uci>g9seZ)nI2ZU(7~aI= zlbXt&dCSpfc>K5G{WE+uok^!xgsu2j1NX@CN9;lAp1=oHZSwe3x)q*&%dxj$X~GsY zpjDZeMC8bRSUrzo=bN_7frWYxDsggvW)(r!FcVYVKk6D}Zf#u{u@l02o!W)uUwPw4 z-slg&bgot&FgkbvomdxC>%yk}SGy3;e^{Y>+5kIi^p)`r5#AEzlzs#e*hyH{$mV%s z;yyy5BdbN8EQ8!=fg&0Bt1PzEh%6NrVe&3F7s(c0mgy3}F7Alj4BBY6pUzUnL>iXmZljP!>u9hDuS65>}hb^5~EHhb8;cU@st9%+( z8zpXaGdU2JP*A}d_?M#F;#aMSXwhAGb#x)BI31PyE5V>8-@#SJuLw;u99H!N{=L~_ zmE(nA;a9!bHUUe}X0!gW(>6Jmk0apF>L^ZGgPBw#w}c3ynPLU_`_7(ZaXS2Y#jZLc zmQ4S<$*PKf)g%SP2^s&Luonxw2QJ}4p@bMHLYjCOHASFB23 zO|}ox=E>SmQge^w188k9Z|nNEIR*|uZh(hFrV4H;#vQDlBqJMt)Pz{$WHSgOR_-L) zgmnM`!A;@a&{UqB5b_~q9A2;%v^&Iq!rPF7H39xe1(_IvEUvO(%wfUh;m|1jQP;vM zJadt-R{vEN^ge@NZNKcY&4ZW4It~}P1dzK8>`$Q4DA5?})C=FRo?JRI_XyQGpmatO$DOz!Na~GP{~RUCo-ZY8PwI ziPb0Uid@zue@wH`?RKDfu6H2yVyRVEwzjZ8g`7?6)d@{=>^HPnxXX!tP45pw9=1 zmB_^2zytL?3z-Yr&Diykqr~l}Wvi9q8T z-HtBSyLlmyLK{}#G7R^-6Otyl=w4SOD<|9{*l6Oqn<&UQ-1^2S8kgo9zsnmKrI%{{ zP(OKJ8wK#PhB0!R7&FW}4cEG$OXy}|UP;44^wsdUEl^Rx4SroBsv#bP0SImlV_pn8 zaaHs-<5Ad`MyHP%E(9> ztXl9L_Mppl3L6FLTdP#=_?Ry;=6JWc1 z__szj9kn9b*hU*}j0GZS26WJ><+JO-&sp6 z7qg<+oi!MZ2D?NoA{;JK7z9o}@c_Ni{vZm~d7O56DIEY@tHWtyU0bS>vRyg-q6mrT zi4>Zyc%X3;>-)RN4Wt;D*G@p!Da|4W6WO>F+)_csDpY|&(v<|MKGH%k2e7m?%FKmT z9ToHleX0TgZf)>+3BQvio`tVEP>KaKw+ltQ0&*~|MhkXp|ARKG)8+Gp ztQN^?mtEel&0=}Z=d@cHv)Y|W^T}sJVW-6Gk}u@3TkNRG{8cXsPuQhe$n8apNKLXA z<%oAaH}8~!@jH`R$z~}#~TxC;l8L^&3;|Gn(dbL9VfRWk)m_it}^*PuX{Ya~s2{etzP~i8s+&r2)*K zGQlEJHO#?>wgg1m8wROnX+UM%ZB{hyW1uO4(6{#_@TQo~2T;1dV8aNTqrU8mee1?C z`mxM?h)`OJ25y`VxlWT2@G8#tCi*|O_YANDjz1M6r{3?J%g+tRoV~PTc=XKqk0lN| z9XsYCRSyI)5iW1~Jqe(2?mqNZn{_|15DmS989d!w2AqR!qJyTffS=~DV&W&i$j z`*fpbLn%Mie&dOmL&z*M&wtA8<#}boP!G;X=MnyM!5oTCyN6Ooz0OMK$!99hR4yY& zAJ1_+$zP6K=ea$uL!vzbOb6Hb1FMmEBY8>5vw&D+F$f~(o(^L=#ljNY z*84|by1g{LU;cc3i?|7;ld08a4ie{ zPrnxM@48R6{z9Vv;3o?9bdR($ta2W#%fohuV?=v13e9y2)K75dJc#ANb%p~PP;nA~ zX~J0XaR2K6;ZV5Nr1k2>>5J1qo^R7}P7_4V z@^e!6*fDYqd>R$Jt=5Fqb^hY?1A{pudV<&;1z7etqL~PUlW7czEDfO%paoGLqm&@0 zldeyN#OU$K<>ep!{m` z5F@P4jtCIBVjr(-z@evj0e3Fvw26{$x=|c35CBQ*>sPO?v(DUHBumu|iYI;b0$yY! zwk7~+;z@8?+Z(W#*4FgZReUpx3Q=xNjTh==lwho9@lH14L448(oe|90B%-ZG=%hqc z=pF{8NLIfMGM$#q^{YriCPK-Ywl|q@p|7sC1)b`xXuJ-d+eLh_fdorfE)Ydw8|1v;9q8Au7LwN`VmKt58R|%rQ<2G_~8IhH#5H|H9)fC_2RT=UbAr2BiZ3O#24y zJ1=-Z1D5o2u%+{}2LjAI7dD#^WN->$y*FDpG*KTEHL+meR>&y0lpJPPt0%dHor7wg3HQ^O@mSyThk(R_yF`Y=Hi*uPMU3AJD&8TVy|9*Jn>vxYl7i$({PCghrIG;`# zJmAYRI!D_@R7s9NF(8L(2_8tEN6mpkxMh`SZ^pe-=Rl<#QnV)Lto2#tIB4 zbY!4pErD`kjK!-;8L{jwW<|s^0Gi5#XmFT8POZRb<{yOH>K2~cQEsv?E+uSpvUA1Z zjj2+>#c@7@5sS5wy@1o?qsimR4+o^kIeR)3bQe@#_LBlgqs_5GN(bC-%bWvmg$|_i z$^8QA!&OwX4fz627Is<@aOSWG|!L2>Rfq$&+kcpcxwTcV;&UW2Lw+$Aj{ zL5B20s3SuYCa+)ujj(U@A52`xR;-ptkb{D_3X&S5lT)6vC6@lN5Ia$=E~L@_uoliZ zN{PUGvOcxo4u;b9KM;5+Z4MveVn3g_AUCpV(Iucy_9ye{10jUWIp!>G_kn*bxDL$d zKbsD#{+U=lnehkW<&RG;9z~5gADwQfZ+y1P z(A#LPXDwh-+9J(2W?Dv&BKb4m7O(KJLZL7A#rtIdYyR&KhBecuMy>@G^8DRY)aNWcgGB@ocV5Q~M~OHGunhCiOKs zY*iNS{|%QR)(Chb5H;rY8(6z(F4xcUyn}nhypsNDtU#JnJRMBya7J5;m_U@HhNPq+ z03N6LEO3GFP2PEJFsFPf+p^CcA$$;b-onvDT+;nt#U$$b8_znOiT$(gnv~1~Fa$n5 zn^Rkez0MT`rE7$k;_%WW9?fN90w*My$a@_ETSUI_Rhqx*pP!X&9yyn=E@3%fQDmI4 zxuEZ@YRHPEj4nfZ!rZ|&cU|!AICkuSYm<%*E=T{(a|F0wVAf=?Ggviq`LiA+5LM%m zVuha|((&V6{BbUwJEZwT=`6F@B$p>B4v+Vq)925L7`x$lF*9uSW+xXpyJehSh1M-j ziXf42{P-=8iY@)zypBV`v{7uqMj`yfVNisw=BT?G!anFfUgg*(MMi8Qe}y4QT-?|M zkUF+IJs1(!aO@biS@T-s*BSl&;CJ{9Z1MENk@kVAv4aAtqC>&#Y+Xkr`Q{Z0SESo2 z&bz_Y5Kg+bhB$8STM@EW8at9Cc#)erI0}I523ZT@7w7+tQgcj>fyD^MqzWx_lDSyK z;^@_v`Pp#zf+ZR@PJ|3|4P+SzTR_2s)YaC)gA>Bya2ZF#B@(a(BG>aIYN5gum%Bvw zNr$?E^I9PrK4E4*Y!}SQ zN>wK-DrLSkK)~=B`=V}Fy)#y2_P4^3^WaCXhs}S>6OxWR*Dj;rdQwN8+rs?|)gw=p zbgyr=^5q$){q%Xxfqos{reMtLI?~^0CrT>>e93;i{J#?qJMG6yZ9Q<$J)R#R*Y}8D(1E!k54CBwq|`*S z;$UkLvjUM9avN)lG{|)=ltpf#mW*aY8ebmR4KInz$7Z=XHJ>jec;;a99AU{>5NAcU z3*p-}+8W>zRmgmELvx{4WkWOtY{JR$);=<5>MN7W=SCV^K$>D7L0N|WPBN(jR)RT5 zrR4Dx_K;mOEM?w4pJbk0Io?|$p`4tKC}w|;@m$LJxGLK?tX~KCKL|KR23qFQ&dkZ) z4QZ39dEbCW(iMrud5RDW-IT`NvOvd&X^h4}%BMl*r*2B)F4>*^YoL z*509eUxe6KAlh;76v;^Br7|D+&PME(8b!kQz5?8ZlJ6whxKP z7#rbsq7$nkLqH+MO9n@hlSUuMsNm_3>ut5&Gj8KVtZX7N1*8t{4Ecn8on3||O?8~l zPFw~ULK*(bTuO2!`axbN^XPZ{q% zW=jQIvNJ6mf)m8!h{ilNYtZ%l)C`4uX-RK>+v1(>Z;9841)~tInW@S{?CF4S(O%8C zi{7f;Ek%@&&Et|EwFi_%`zcRh>`lwl%!UigQLoGMnxr1_+N(A>8q)VCMfevYw!}Ho z<$N=WQ;TvkjI`Gs0b8gY45J;a0I@r+k{L_fUEQX4im|Js0UeaA3N4(@sGq>KVVw=( zjD-sIcWa6Fesb*|)?5Ac_pGknW3>N=ynTT;13w@%%w}00lcOr!1^{OvkF9BeBPoc# zQ_5_@uLQDzz>(QA`u@k>^w@s=%@vm9z=m$Rb6K z3zX_S)c+crd*~4Uz4*}w9zdS>3T!7mra$`=-#v8byN8}eWDW5Nz9&|AJSWdH!lELH z&5Tew!Uj$TSbjxzash!#?5$GJeT~NZnmZ^x-2Y22kPw5xXFYgOlz$h0A3lbwukEH(|pn`Hw^N=EWR5t;jjgwG8{N*rm(>y>~=i0TiQ)6U& z4((-2WwJ z`4Sgjb<#bjsEyJ+%+l{89faD^zk}-v`H*yIiSi#o8z+pYD)oPX)71ZMqKMr;N%XuA z)C_5%-}vz>NRvP}6ode6QBc9|FBvo(~h&9xP?UaA7QBal`;_9|}BnW-e=!aOlUczo<++N;-;SA>bGV0P`dZ7@H z;{85(sgmq;;-yRcyfcA*H_GvqPQ1+fXkIT!lJoc#1&%P3TO6@aw@@=3WynTggjbA< zk6pXJ6=(4)dO6-%K?`E+%{F$>48%KZGuj6u7ym-M@;F_2?6TJ<;$^z%ZPAQEEJQJ6 z@R7?3=;P}XdlJ2d>+@k5@CcF1HihVhn!6u5H@ltA^VhS!pl6qCH~jXAHpD+mA|+Xw zR(ThmYn2+^_5V)73;K|yhWv@-QZM{xSZ}RCjsaE;3@DscAtHh5ur?O}@1eCg_zL-5 zp7(^qu~6t(Z}kdgxp=NPr(COEZ_jmB{jf)po>t$s9g5LcI=!{t8n)e9*wyoT*Srcn zmLfj^f4O3Nv-%D!2SeW=S>BBZ%PJx;5PMC60j%3FyAKPwV+1Mj9sdn<7aG>x1bg_9 zdFEGls07_qx`()fgcRl)Dk1ZCE^zpk!d!Ks3qLXJ)(A#ImXHzCS0~IC3HPeB16WF8u7j# zNT124*&05p9-VKs=8w{BSD}iQ7pijw(#6eXaD8GeeODfaADa73UN6B5D@~O$<#|*v z)+Q%taX`;JOdt3!j6;U36@qcdlx)Bw4C_&)m1bR&O_s7}`=8|h-biagYV57+WqDm_)0&LUa0BUG&ZHi{A8 zFI@13f~qg(!=D-qc?-imxQ_7+z%Mh)*D_8wVqoTwYTT#;v#}NRu&LY`_X&uefmuLp zg(Vr_)9d}8N-Wz9qeDWw^M#`^kk`rE1w&6$h^guYBMW}SjBe{Jcuj&mw zSBQ1ez?YKTe*W6$mOQDvTxewT{)iu#9qdvUSUzu5faBv2;Li7Ei{ho6wElmK75pAG zpuE8na?=}L{zbnh?DcL&i%9Ws1p=;3w?E**@CiAj%i~cfQV>(Q$ZG`45~)h$I%sf> zx@IX;R6AnU{FZW_J>ao1ceqt;fktmIoJqVtkqLjo&6rKjR?}`9WA0?*&l+y8s-)A= z(n7G7$n6UT_vI2bz2tJ)y>7e9G3Dm=h~Hq>*#=M>MD`8GBEz!7M$j7Yy_mYmz%n7H zEeKDNVdf
  • WJ=mUXFSa+^hwaPuWBaoM*n#XIb}&1H9m<}{p2iMihqEKt zk?bh;bapg5h8@d}W5=@-*oo{Ub}~DKoytyQr?WHIGuSiPnd~ffHamx%%g$rxvkTaT z>>@V8ma|bd#@cKJTgg_jadt6V%_i6yHp!;gG`ob&unwDLb8IbJ$1Y{-*=6i<_AK^n z_8fKvdoFt(yOLeSp3h#uu4dP;7qS%-+J@%5G+FV{d2gVDDtNuv^)?*t^+#*n8Rg*!$TB*az8% z*oWCi*hksN*lp}~_Hp(J_DS|B_G$JR_F48hb_ctYeV*OL?q*+LUu0im_pp1}ee8br zW%d>JRrWRZb@mPRP4+GJZT21ZUG_cpef9(P0DF)<#2#ipWItj*W~Z!} z_A~Z#_6zn)_AB;l_8azF_B-}__6PPy_9ymd_80b7_5}MI`#bvw`zQMs`#1X!*Ni&} zZn_n5#aszj%9U{#hjRo+aui2%499XD$8!SQY?C+{oPShK<8;p8OwQuK83tUR-ak57(FL$Mxq1a09tP++c19 zHD*{;3^$e=$BpMEa1*&n++=PFHlP3LBCXK-h7Gr3vZ zY;F!Wmz&4U=N51axkX%rE9atIjI+54u9BJLZ;T$f@<+xg| zj$6vrbIZ8p+*#b&+&SC|?p*FXZY8&hJD7k;2z{2;vVK6;U484ixM#WNxEz@h$k4d@H^+--d6?x8vLM9r%uXC%!X(GT(*o%7^)G{3(2Qz6akE{t=}&--qwZ z_v8EX1NedbAbv1EgdfVE%Adv$uf5{&apcKZYO6kK@Pl6ZnbzBz`hKg`dh# z-lB;a{es-Z2la61%EDo9>0=b#h=e#z^~@l@E7tI@fY)# z@N4;X{H6SQegnUe-^5=ApHH}gzmmU-znZ^>zm~s_zn;H=zmdO*znQ;Z{fG{cky@g_we`f_wo1h5AYB25AhH4kMNK3kMZ01?fm2X6a16>Q~cBXGyJps zbNmi|C;vRZi{H(^z`w}9#P8wv^85Jx{LB0+{Hy$H{OkN1{G0q+{M+#N1n=_i@$d5= z@CW#V{2~4@{~`Yo|1tjwe}q5EALEbnpYosapYvbvU-Dn^U-RGa-}2w_-}684Kk`5E zKl8uvzw#&e-}vA8KlnfSzxcoTe}rbjNkVg>NGKLcgi@hQzyw?%1X6&%HWnCx6*z$x z1VI!eK^7E26*NH?3<3UELJ$r zLU*Bu&{OCo^cMOEeT9BPe_?<_L3zdBS{Qfv`|mBt(RAAu7ZKTc{8! zg(@K~EEcMTgis?Sg_MvMmIxWa5wb!~s1@pjr9!>1Ojs_QC7dmsBdie470we@3afxAot8-yE$ zn}nN%TZCJM&BATM?ZO?xox&Djt8kZaw{VYeuW+Amzwm(Ypzx6Ju<(fRsPLGuP1r6x zE<7PTDLf@SEj%MUD?BIc5OxaB3%i8f!VAKS!b`#)VXv@H*e|>+ydu0Rye7OZydk_P zyaj(z_m1$c@SgC#@PTkZI4B$v4htU&9|<1|p9n{Uqrx%axbUg)nee&rh47{DmGHIj zjqt7To$$TzgYcv9lkl_fi}0&(LikPiUHC)zQ}|2xTlhz8CY~fV7mLJVu|zBt%S24X zMM5M+N~A?bWJONoMFIYeP7-BN5miwWb@+P)Q?$g8*g|Y6wh~*5ZN#=>JF&gkLF_1Y z5<810i(SO7Vp!}Zo+5S^d%$OpRv0RLbG0_$)#7ePBjEjrKYB3?!h)FRero|;v zi|2?d#B;^-#FgSI@qFh);@7iBF5qh|h}8i95ud;`8Dzakuz__@eldxJTS8?i2Tm zFN?2;uZpjUuZwSpZ;Ee;Z;S7U?~3nC$Lvj5JmnCykdTNE4+=(qw6hG*y}=O_yd!XGmvCGo@M5 zY-x@(SDGiymljA1rA1OiDwm>COtPg4sZy$v;?iQNT1rSYQc_AuX=#a+ksK*2<)m7v zPFgC}OUtC?(pl2k(mB!!>0IeNX{EGEI$yd#S}m=SE|e~kE|xBl)=KN7OQrSF25FN$hjgd3McOLeCEYFE zBi$?AC*3bSAU!BOBt0xWB0VZSCT)|pOOH!WNKZ;nNl#19NY6^oNjs#S((}?TX}9!( z^rG~Vv`5-2?UVLPFH5gTuS%~;uS;)8Z%S`TZ%gk;?@I4U?@J#@2c(12A?dL6q4bgT zvGj>_L^>)Rla5QDN}oxeOJ7J|N?%D|OW#P}O5aJ}OFu|INq~E1K zq(7y8zn2gJWOv;o@%Z$v*oXpFDEXtBB%L;rBT9b9z zkWJZ=LvjnbrQAwxEw_=|%I)O#atFDi+)3^%pDcHgyUJm?n|zAgUG5?GlzYj& zxu4u$9v}~t2g!rwA@Wf9RJfZlOdc+ekVnd+C6>_CqCCBB(aSe zzC*rK-Xd?6?~?D9?~(77@00JBACMoEACe!IACVuGACtGq+vUgQC*&vPr{t&QXXIz) z=j0voPWgFxm%LkkL4HwwN!}yxmG{Z}<(K7GZ}RW*AM&5_U-IAbKT0#@B&E4hq!cS9N~uz&U<$4f3aL==ue*%GDxAVA zf+8xCA}b1b*K3Nd7>cP_N=Rt|-q5X-)=C?tt?SUbW=`I zx+^`Do=PvJx6()HtMpU)D+82)${=O1GDI1woC?=phbhCA5z0tqlybTEf6&UPtjejpDyX6=sWRLkR8>vYRYNsZOAV_)oJQ^46gj%B})s&i6m#7)lQL}1JtySyPrE0ypOkJ*?rJk*x zqpncTRnJpbs;kuV)eF?s>KgSz^&<6R^%8Zhx=y`RU9WCXH>#V|%hb!&E7U91tJJI2 zYt(Di>(uMj8`K-so79`tThv?C&FXFH?dl!so$3~Kt9qAuw|b9yuX>+)zxsgsp!$&d zu=I>?N>PzY#b+5Wl-LJl^ zzM{UWzNWsezM;OUzNNmczN5aYzNfygexM#u52}aM!|I3XN9xDwC+ZRPsCrC2u70Y1 zrhcw|p?;};rGBk`qkgM?r+%;gp#G@-r2ee_qW-F$P=8Z@SN~A|RR2={R{znO!S$@> zT9H<)m1w0}nTBb&Mrfo)X|%>@tj1})CTOB2X|kqhs-|hWW@x5nX(6qJ)>3Pwwbt5b zZMAk#p_CdTPD2-dZ26uhviNuMN-!YJ;@F+7NB1 zcB*!oHcT6?jnGDFqqNht(b^botTs*?uT9V$MHqMs1UJ znRdB$g?6QOm3Fmujdrbeop!x;gLb2KlXkOqi*~EFS-VZUUAsfOQ`@3#)$Y>n*6z{n z)$Y^o*B;Ow)E?3v)*jIw)gIHfY1_5OwI{SEwWqYFwP&Nc&j( zL_4A#)sAV$wNJIrw9mCKv@f-qv~RWVwC}Yav>&yfw4b$Kv|qIo+HczL+8^4V z+F#n=+CO?T{Up7)UZfZ6C3>k|reiv;6FRBGA8zW5&gz_wKHUZXlcvkMqN}>5>$;(v zx}}Ho7J5s)mEKx!qqo)D>FxCndPlvJ-dR6c@1l3r!+JOU6urCNL+`2g(tGQD^uBsO zy}v#{AE*z~2kS%hq57%%Y5FjIxIRK3sgKf6*GKDP^s)LleY`$FpQumLC+k!6srod1 zx;{fc1OA?PranubthtvZ`T~8SzDSSg<$6?)>9$^>SL#)ITwknL>j}L^PwFW> ztuN6tx}#_HoL;Nf=}Yx`eVM*oKTAJbKSy7opR1pzuhduR=j#{ftMxVdh5AMM#rh@s zT78{6hu3>sRPk>Q}+t#cT9y_3QNO^&9jX^_%pY^;`5?_09Ti`tAB1 z`knd~eXD+#ez$&)ey@I?e!u>J{-FMl{;>Xt{;2+#zD?h*KdwKaKdC>ZKdnEbKdV2d z@6dPZ&+EJN-TDjqi~39Y9(}LAPv5V4)_X^^f$A^-uI8`ceIueq8@l|4jc}|3d##|4RQ_|3?2-|4#p2|3Uvz|4IK@ z|3&{*KcWAo|E~X`|Ed3_|E>RHG&4>znj1w%u~A}_8f6A%;09rk24&C&W3UEi@P=TB zhGfWwVyK2@=!RjKhGm4{0&YvAmC@R0W3)Be8SRY@Mn|KQ(b+iJ=wfs=!bUga6r;P* z!{}-BGI|?*jJ`%cqrWl07-$SK1{*_+q3A34#xP^JF~S&Wj51C)MjK;{vBo%KyfML; zXiPFD8&iy_#x!HPF~c~+IMbME%ra&hbBwvhJY&AGz*uN3G9pH~5jA3lZB!VQMwJma z78}(@!l*HlM#@MVON@-+7+E7{)EafhQls8jW-K?(GR`*6F;*Do8s`}+jaA0^#s$V| zV~ug4aglMcafz|kSZ7>ntT#3o8;woIWya;k6~>juRdA2`8sl2yI^%ld2IEHKCgWz~ z7UNc9vvHeoyK#qcr?JJ@YTRYqZQNtrYusntZ#-Z;Xgp**Y&>E-YCL9aGqxL#8&4Qd z8c!Kd8_yWe8qXO!jGe~w#x7&G@q+Q9@shE}*lX-F_8Tu7uNbcyuNki!Zy0YHZy9eJ z?-=hI?-}nK9~cLWgT^7_u<@bsk@2zdiE+d@Y8*3;8=o4V8J`}H-~b~k&NJnS9A*wTN0=kcQE*j$ zv^mBcYmPI=n-k25<|K2nImMi6PBW*QGt4v0GtHUiEOWLw$DC`^k!dUJ!h(cENSW?pVyVP0uoWnOJwV_s`s zXI^jKVBTonWZrDvV%}exzl{!+-2@IUoc-ZUo!WYd(D03e)DDX74uc| zHS=}z4f9R&E%R;j9rIoDJ@b9@1M`4+&^%-wHa|2!GCwvyF^`x>&12?q^HcLP^K`G@(Z`Iq^(`H$7iI>~Bo6hGklo6|!1bEv;5oYpadb)@o<9 zw>nrItxi^F>tw5o)zu1H-QePBcdLih)9PjQw)$9ot$tR2Yk)P-8e|Q&hFC+bQ?1ji zVb*YKgf-F{Wu0z~w#Havt#Q_PYl1b=nq*D3rdU(0Y1VXWhINK@rZv-=WzDwcSaYp; z)_iM$wa{8*MXYiwYQ-$us<0}pDl2X+wyLd!RbwTsl$ExYSQ*Q)vR2Njwd$;;R=u^% zT5g?Xoo$_Ct+39u&a+lptE}^_3#`@F8tX#qBI{!75^Jrs&briEZ*8zPTAQrPtjnz{ ztShantgEeStZS|7tm~~CtQ)PHtedS{tXr+k)@|19)*aTJ))s54b(eLwb&qwgb)R*= z^?>!D^^o&dyT8FH|)`!+d*2mT-))DKd zb<8?$eQJGXeQteWeQAAVeQkYXeQSMZeQ*6>{b>DU{cQbW{c4@CezShJ{;>YE{<8kI z{s}b;ofK*wDhd^cNYvF!rDid~=Be93-G^UX+AROG|_CZJwG4G*J)`4(jC znpCZwM;$woiB{#KI@w63B$X+TXB%SF#k0|>(nxG^&dIWocqR-ti(~ODTobl41mNWn zxcHk&VgRNSk)%xpKo}}TMI%l&TpNL_$;oU<1TG`jknS_=cPyfWgWkZsAV^1e5UM() zD$mux6M7mVz%vYkMtP7oAhd_1qS;7gDj8tjNJ7GNRRp5Lv)s37j%CB=K5X zj$|^CWThQ0&%~3J;fhqIE|Q5Ujj7pG7;a!Ev-!x5os5OcBhhLUSqdV%REUcLa3H4Y zU>ziQ4=PV(v#FYJ!mh{)jVPITWmQ0mLPtf?j*Ze0UaVNEF3B~3;cQhrT8-)lxuY-` zr$j954N;5#CI{2KWz*m)dnp>rAiOYF7=`qIW3k)QN>-t zzboF992DVKydn6%EAECD)X?varsN=3((4Yl|NTL7VXvlYL1T-s{~nw>CJ04=Dj^-kDA+5)WxHH}MXMs2O5jvdQvy__ zyZA3+&;OwH`VU&~|Dg5#4_g2Kpbh9Q2j#l^Z?F^P>zuSJBU#|JY!J=gJo9ZpJJ7#U zrBe=UfCZ^?$?7C9ypnPoCQwO50>+ATpJBTuovjxO;9%;}9?dV0D~Bw?<#sFxE-tt2 z4B42FNMPmgl?``a^#E^+!(9Z`)PvA=!Mikf=O_ zRcsy#N6_BNH{c+BBtZhC8z`_kga*v9vstLVQ$WhXHtJNMC7Q@VpTZ-IWV}cQb74sD z5i^k(d_kqS93&ffq^fD33wWX$o{oUP0IX^$?$T3fJE`WOF!TkCpfBlAF5O2kgw#Yb z)l2~R!cQJ`84Z_5{Q;Bn1a}hpRJT$nH&+H>^Km@E4hA)Y`W-fDi0Fde?hZ9_G1$ga z8Qw=gs);WH;USWb98Ws&m`(cOh?xg)5_$z1;AR3VMu8pJvEpc?+6GCu+72fo^>)UNd5Awh2I;w! zyBz6(amTS^D0KoDK-31#81o`Iu)wpBvL@VF!;_8 zl#gCvkkpYp4qfJ=uCyx^BEh1A%D6G&nYaU8;=<`jCR-n_ft@x8&A_@B{ZIr4sZkwJ zagM9+1f{uKJ2W5}tA~eO6pdscqYTK=?hXivTzv>}Bs&J9mkHNJoGKW1kZiIr?wKs) z1R9IKcp)c1P~Qt^s)s==_jVFkuqe7y1$j7CXv2i80SE@va>pGl7mv@BM`EBD__?Bl zXt+Sr^0}iOgDN=L1gbFfKWrN5DpMIVR|D*;Tsx%4p`x&YOWuQSo{MU{( zMDy@KDQObTCkL6UO@sa13+TRaz#Hq94e=Y%gZ#9AhkMm&_5T8blrSLB9?*Uf<3f!C z2_TXP*V&PDDk%b93z{Wpayi(|U4^bG4ebw7lXxz-X5}v|DjL4+Sd^qS=s2h@UfRPg(Q~_%d^T2r04~6_mkA#da*%E*q znEL367$nrhhk{%wkK(D*P){cUgu4i`H_|Qy z)(Nlz+OeW&4k`df@tw%K}fO^wvZqslPhmP zvYC1&W`jI#2g|h7L%En8jn}~L238ed7LJ`KK!8hNV>XEMV9d4CVK9+rAfE<2mn{qi zMwX&uk!%FyCfl`Yk11PH8L!D=x{#QduWlpohA6petg*7E>I{L@HVIXcQOWLEJJ3 zt%Jsp{u>pfG`30vUCe=$<7!!fxuOJ2gGn25NP$SPv^18=jv+OTV8KvrP_ z0N5M|nnGg~^|jV?yn;e78%7^CW}CE^MiY@5x9b50mI?bSG`JK@|G?FX?0UNlekd~n z-e{n~03|el0k^;^K-xey70a_)6doIeBTf{i4a_kih!qCg7qB`o_m%+(6!`k0ib#?| z@?LOW1B9g|V0_Bd7lWDBCeQ<9E0|3I2x6oUA~}h1BfvtB*Tg}mq&*ZYaYzur+h)P_Gn-rgr<1Q1gKse(1zia>T(f}2#2|T2OtP# z;n9&ug?h6Fp*2Y2N~8LF5E|rCz+jg_U4z6zzxF5&LOp>3)usUp;si;2+YEFT8eLaj zg%UxiK#z*lQb3%lVzA*>GU(w+%dTn1Mg0;b7xD87ia?g%$}m(K4)@@|urP{iI<6vs z1iC-6HsKzK=B*1QkSz+8=v28NYAlWvh;UUTQ2}|u$umrSbm9QTc!+B;DXmDroUcbO z7@|^lPlobFcxYAAHPbCj=`IH~vsy>LLkv;+K zbwSR-{E~yPK%;fDQ=3x#UJR<~qd~@KqoMsIz5&a}JXNB&B9($U1rNjuP){Q;Fvih8~g5owe{ zBZ{lyLjB#`(4iO9$%VnIAd(4Edny1-PgFTK7)A|>_X-YTc{EpRZ4?U`YJ*a}IBu!X zCO4}p8%%haaE~T<&n9@UCV1~Ac%LSCU!`&Wfm9W=z%SO_51K>`B(f$^(;x@Of~e>? z9pv&L*Cym32bc|R8{=Tnjz@$1&^{bSCvmWpgHcO>Nh$1EZta-vCu>9uXY12&3(3pS z4M~D1;H_|vmHMCtQ)pWo_JpYjTy82SGg8cl;>X9B^_tU#ZKB zX=QFK+bO9;Vq{5W5`0HWJvPnx+!__{+Q;aC0CTOzW&+IhWO9tgC@8))H90tQj@ypf zBnYM!>Zq91gkA|#I1LsVP-b0U8Zfd1AljWMKf1Sj_=qb;2O(}-f?A?ux$=6^Qzg7J zTfbA;hV#j+9jS3hKQC}Ps&9aEj^s&hAjBmaB(|Ve+;Ic>(+&tAHaZSE(J8Kk>4>2R zs&$FmDz-8QtOSfl2@vix@hIuzY4CFq3*cbfMKCIXp$qw<0k84aTq)2%f?)mHA`BYj zU?2g;KyRuh5NC9?IfrQgk*p&Ypn*NT4AB6g{5KfkqSa)8po#+wa-I7`necfis3b~? ze5f+1YEU~o#P8x_bTA9KB?A8%D9&}mVVihbl({DPOg&Zw)+*4YoZ>2&TO@k8hb@^T z<--1E3!!NTC{7x2X0KX#Bo|L0nVQW9yVmPW5uAO)ktodhn)uS7?nUWTwxlXo6G@Wp z6T~h^&3iCfvi>qH@x&AN3A;A7N#ob1dK-v+E?mn2V6V}GsxdSkWfg*!I*<~SkUOj0yyXo9FC76 zJE$TF0~JushJ_2IxjG-PZSbSX*cm$RdQbx20n{m549*EjyS{jFJQKkdI~DO*49>8s z?MnF76YxWt6D%hjfu5xWK}ZsGLp?E&M6^K81K4GQLIAkJvFn&a=Sg4$bC?DUZQ4{G zg;mAok&K2Q?YnS0^AJ~wEGNtq6jQ*B>bSct`h@;U}Q(}P&Wu9 zXLmV3P-PB=CL9IxTP6(|<#DGMO6Y}FWor_B#5}q&U_I3#Gh4^bR$h#F~3FPkr+M4@@o@sD@VG-akf|@w1Y!0Ht`dt_PW~*FcP&(f6x`LNKpZUR^H9))Vi0|*G4w$7pj^PO z7*~j(P&XP_Y?Bh${IWr}1nnq+=((lENI}B$S`wd!f&wXz;x(!ykpkmNDLjEi1CpwC z;0c0XaUxfzNjXWCgA5CY-acd z(4Q4z0VPNTQzS@$8eflOXdwQgfr#X`slST+pNqr8Quf0xJv5SH84d)v91Q|P>sLw}mF)+9;ZO9%W zQjmdb*zt4CXW>dggv&l%3BfZux*+Otp&=xgJYoSUkQoZ2`7>83h*q%5aF>jHwg3X3 zhD@X)TjF*$!od*^77bO{`BEVg)PeSh{xM`3n4H0fF~j-q{4y+t(Xw$cHzI%YYP+Nc z`C|i)oUEX6vtqT zgohw=BHIAEb`>ZE{3F6B$m{n86x~8V)_{T-P8=j<0!a`ASS@)p`bs!FfoXay(#4q4Vp3rdY7tCTk9~KcEFE4B{^+ zd%<|SoDeyZ=1&8`Srybs1=Q%qj|X6-pS;HP-1HMbZ&rfoA_#L^ z9`nNjS;Eh(HWg1dPsdBsan$IdbiA?{Y>Ej0l4bBilOBh+4W}HoP3IvL8PQ?Ggx0qC z|4K;EcO~igvSpECWa8n_17#3|kuJd-NwEM9!U>n=wnFhhaLI%X6%-3pFmyeG$gXME zm00LJihx24TxIiNo{GsisU*@nBlT!ohCLGMm~${!wuU-F-9TFM>Sh(d|Kd4N@qEOf z;*?AC#U~6L_Q6h+tkmjY{{`pC6s$Ec8p3gazfQ3<2n*;W0|4;WhZ}0e03`BP17XRP z0ReQp47}6eiJL5OZR@!EL|qCv911b+6MRxV2YSj!VcvkfDP3@C#}^`QCzQDdWN;tQ ze}{X;=m2zOY6%473giovN`e8%wiF;Ru z^j;7nk|aRxih-97%p?lAfq_S0xC-pguFw3xdbtGj5%BhR{rjObgvL{h`vmze83T(~ zjPy{~dBTH1KSp;vTsoR}uF?{t;2b**=KvWP{&*Skrv-(b_TORG*p4F%=0zq8iG9cm zapSomC>4Q15u>x0Vz6^$k(N^o2C5iQ4{H(m)MRTZ*P%L%HjSm(Qb54ENq8^NFQaAf zs|WE6LSU9;A$2STNn)vBc0dGh_;IRAGIpiCl!1FiFkQhd2_3_uRLGqkULc0skS*Fx z(1ZX=8a(QNf?jAjlK}|R4~4?ahb%$E!QCek4xwBaM(~<&%|lQq9Ctuw?%hIH?Skwa z@GNzpe8>WvHK62pIb63W&Oj|F^a!e53VvcR?RZ$Spbo-x3Ia%a0e=qfQe@F zc__%T#O+PSeInOzu(YRYN(6b0<~| zw{#OYJiw^{hL6ib-ZmJMT>^9`INQWvF@zm3Tib$5P1s<`PSt?H4NTu+BNA-OHIanW zhz3(92Yb1f7UmY1EbPLx0m(~?IW{;k!P!t~Q7exUKBO6VP^ai;8Ukk$XusSAfIH z0{ypu;AdRq#A|T)!59FiDMJwS5xhYPjihO(8k_`>y8t?uqg>3FFmM-1!o=|+0n@LI zgLYoxRKv+A<38aC72G>v5tTUTDi}P$fQ!3NuM|*Zp?656(83$hFee#FgB2I50$1k1 zl3(hi;0}ML7{uQQJTh6`HJ&x{yz$$@cp-rs4(p=e_6Bkk+9ExxTOh^zX(%_6j}Q(z zRCfK5NdQ3rbNexXVbe*JIl%J3I7RwzRA&SOPX$i^*x~?ABwWiCL`7P1J&xY4;gHEg zaF;JqV-`(V2o01ZEo_aS<0w%z~_5jY~$O92h@9Rnd1?S6Rv}us&;Y$@Ln&ZP<;jttn1JQ=Ux6MoE*sPu*2C7>(qheutEB# zT^t(hUJxsW{s89bUc)JIkmFCWQ=g0y=;2Lb%mtybMPPhpkO4ZE^mqtpA%G@q)qSE< zg>CnPYW5C9&GuE!?V0EXeHGX`DM zptgc5O2PpPuTn^>hyc?|LI-4pLUOg8fKw(C1ny)Uc30R6ijnYLXqEJhpoLb+z%B}- zT!xwfX0tM|gCW~62X7El+yxf~xvrY@3}o)|8#l>HuLT!Mor$Yxy%lM^Ho#(M=WQ=*T8SPqV1-pN=IoSx(8;+Xrr1lqkq7G#Qf zSdZ>y9?*;TgBz|(5FW(=xzx?YoenfyfI=Ftw=DQZn9FJX&yG;R=SR>Kg+$)BNIcth zfcfo{0^FUUJ~5vj^*Krp_IE!B-5`N$9KJjmENgV73|Tn5;V1zto-BrE4FQiNl5fgk zdE`OQh`_i6aEkPf$RWOMm%;-+Bm(()%-rpCNa}^mcq6JX`)aOo$AL^q)ENBln0YhAPf;~0?l53`3%z`Wc$2&-l3nFqp ztu`P?a5f8PXP)pK5WzXdb)IWNF3q~kt_;0keyg4XL$HtKy-u~p^oD&8qOlo!UaH3onqJvQxtjxqp5h_`tTJ85QG~TbU;QH`vP(qaCF!C z1AP(2XI`G`T~W>{mwe}Rbe9K?Y{QXq*c6%);fOR<7ktvk)0bsGoreWAV*+Zb1}>)C zf#*9&owYXahsEM>!v-cyG+#^u1&R;KE+CdiL_e)-lmNL930|a6LlRyP?mBgVZj3xZ zg1R8B8op7&`q2@Jl5jqr7i)tE!88pj4~{nfW9&_r+c>hd-H0vDBnZxfB-_2m?>i@g z5w>KzyDtYMKoTYhurWxYul_vm8nUtql=t~TB6HYno5zps<~22LLAwmnbFTndv~z^MI5f-><+egPg@$q=1UJLh*I`-(X(Eu`|| zZ8=_tdI5)vG2*>oJ_|kMkNOwt8UaRyjcdd!e;tjU81(aKwsi}_i*EqY)yS3^Sj#9S zsV*H_e`5!6Ou2bWU62d(-IvMTF1)5YQ;y&NqU)Rm$PK#}X1!Dm=oy@!)9lEzb_kat1q^;;))Ec> zT83n~+_3LB6t?)otePJUok8m7=4p&Ln;T;1D^$P&{`S?^$I%FsTGqiJ#bOiPj>XbB zF=ZOz4B{}GLiGDK2qq`%%qV~*-9Xfo+L(by!D+jI*Oh%1_yd0kUA!LG3wQsVLx)upi|EuhiT~@4h`xHeWHbS{|h(RNjT#!Q0yYQ-tU28)O0s zs$4?&3gLeqo?yR1coBvc&a0h}sd1`v3LYE2CQ?(?Ail(Q4Zo0@UoVL)J4Lo<$TV12 zh*2S)o=37q|YKzvV^7wC0^_a)htwR*|xv6YEC0=`y0Ds(*yeV6FD zvoelY<-8K3=bxz72C#(ghssbsjF; zKn2`Wi4Z*8Zg6wXzL|fD1w3KYG@m6pii;b64d(tpo53bJWh8Yb-yY`zQ{>cCG)=s;ayc$<7jo^f09=dg&$WG}H9Yl7)ee!Z-W@*DuKWA5c2mIQ} z|D%)tJ@Xq?g@j^#Baz?gG9Jt3n> zWmDKE3#nd$3L3W>rO1azC|)!fxuqKA7_{QTk<%6g1Rc2ckG{&GEB55)sO#H}+vGA{di3@|QU^Y3l4QPT9 zEVAZsL^+rq;COxmWkw=-=$xn=X0RwQIWlFuO9*|p3q<|K`P}9P?CK4;EdZNMBTiY6 zTQHT_x|huf1^sDEO!KP8-JxOn4J!`3n=d`08917r%B~}IJ>uhrk1;SGBfkz@{hh0u zC5tB>*C*Y=sSCR2S9N4}McFsEhug0I zfrJaaz31EE06i{HSG3JIerEIVBoN0_9&Y=_zl39LJOyX1fy#1g!GJSH8^_DTXk)p; z&=Rx&A0SUhd1B_=78jOrgxdEV-4tCzscBy5o7FImF+S}&cnV23Iq%d)V#Gc_>p;Q% z&=1p<3D1`ce^clAqG$heR?a=A+lal9&>!u1RLh)*aM0q@^FM!GoV~o^;zLVa8`9MD z|Id0it@7+g?j|77#U6vL%?5ZFac1f&<)tw-;9xsMZ2&HKZe_D~#h;7p!kI1@WXE~MJdS6N#m#;$f)8@6c2pvo;)xhSa(_Xf#0ESQE}lJD#%L`2D{D= z>^s=V1o2mTRUUf+&pmS$wiJz{F{+}-iu_?m%}MJwEV`;iFHwiA)DXGBi&~#xu2g6I z%zYWCaSKXZby}r!pePVP=EDSb;kjM6AqH1ZNKr%S73u1d5qy*UfinU-fcf&+r3$fG zRR6>wK|9(^o;j$XJO+%GZf9eVqr#AnWpUL7E(v&H5@lp1W_S*re@ zR_Uy@D}(VHNhV?E!CLg)($k(Uniq0{*|~jNG^jp9zEVFv zTIS`RjM0D|vGnAL>&CbjM=%oEF-4of;mc19{>BnXb^T{3}i!Hkmevh*u)>kc!-nS0p56_5@&yodh%x} z(ww!7fdFF@7M%CvEy!f!b}U_Yq}MElh_B${0>$-wFJlvwgEIPZcM~qD#mNGMw{)8z z4LE~Q7GX{`-$NF!Py1WU{Xg8*-r_r9PQn2nGLdil&6>q=bTnW9XlNx*W z^J;TGe@UZBJvV#Uw6 z2{schjUVLUag&vF`?>)iM24tn}d*>T*7(yaT*MfUG4xijWv25i? zIv2Ik1F(GuPZ&=d=@K@dTMsf+<(#!2b3O6z!fd+Kt4N}<-IL;Zf-2iHvF!{7%?PV7 zo!zoLHzA}<*&=_^B=b#<(uOQo4OU^ZCoISikupm=*b~7!S-v*5EwDRL@+b$t402sz zg3CZQDr$y720SI1Zead!R%i0LZcl;T01IJ?Ik<7)VLqIvRfOH>S^F%Z^(C<_D@(rS zzIcpW4Dgs9%Jxs>l|nNnfbH@Cizn3OvtL*a=9~UVxQ>)=QkMa9JTUMmJ#_YYX5UR; zp5LK*x?|diu*^`VG&)Z_6qeWU^`r*KY8|f@HHgo^wQyB~)yqXuFDn+)s)Cg;{|jSl`rGD7kx9- ziP%!;D{18|k!grIR;F*xwS}@lKYkOAx(|mWsM_6X_52Qn9rQrtJ{@DaTU0i{?9iXE zAKUvu$9{sgHQkDv&n5LMS_%$(M6({v3h7?lC~e5su9iJ_{u8opr)R`J8H3=}IcarW zu0f>7GnkyV;Rd^E!=!BSW@Vd_AKR4;#!AU1N2#!ooOA^IGQ)XJME2d{%fpVu!um)^ zvN2E{3ExeTW-zTcu@xKw6haR(P?tAs1s8#FY_jj?E-sMCJACy?-^2(DO#4|RAinU~ zIrPEwpFwB9=|t{Hmv|cyIuhtbuV%Kc;`r9KVBt)Lr>(;tm%^;34{yM71w{L}4NCix zuiCd@+5V_~eN4<}ej3c%h}1)P5zkA;hm~FQybHT=utsg=)cAT0k}btZLzM2AZcxJ~ z56rhFJ{&J%*ik^7i0CM3t~wyS+G#fQS~k|BHf;5ReY^Kgw-+V-byhvCUxTS8$_xe{ zx;|q1?LWZ}wY3Kl%CUu)k#7}88*Y)10h6u3VK8k~<1VEWkC1()%uguRYVm&>?oWqv z%~7j^8@`g%m;Qg$v#a=j{`dZ*HS^#9do@sj|NFn!a@o`W^S@UNN8uH+q0Q*Dwo>V{ z!kI_T7p=-y)O!H^%GIK(+w4%$gXQoh{`qs)DV>oajT!rM$RmVYUX0Zd;c%Cm0bq^m=qRmm;DhDKe{6HyZ_$jIB?wt6!4Mu8GGzVIN_3=P{ZD4B6?Q92AB zkX?I5>!4L=7aU{Sk8gsWD5`!T?%-zlV+@Uxj202qMgG(x3XCCaXSH-Y=MBaH#-Z}~VqY?@g=Fj68Q6ts z&d&U-E%j_#;z%yQ)k{E}Eo_~&A?hk(p+p_)C@z}-tzKNdqLpF3-A!TFaOzWVl^a&< z*c^L{NiZFrcVXt3=~&S8vCA8yVJL_z4}*?n zftzHf)RyF!YdU>s7r1m6`I6J=;C3wE;K;l@zR{S|ANde|FxY$0kV?Xnzk8J4s1?W| z1`0VU&}a=tck?CgPr(u}5ZbuATYlO1Jv*F%)8b25JKEBTq11ai$TIvoa}2=Ozm~%iuZWeO3DL0>{1-2ox2hPYu{&STz?iKH*uT2JJ$0qZ~OI7kT zhcrxHkoHhhZ~1iy|H6GRhWrI5iFnd9?H(K+PGMwUbQ~VWX>r!_dlr1p5@WINj2h$EIy7+>iko2gJjJD3@=fMKNO$_-yd60(aJK{xvxZ?e-<_}mxOScq zJg^ny`sf9dcCGck|CFQoq~hJi9kI&-#XTcjtHY9lLx*ohyKZk5!+vqchuW)o!`=n`oqfW#=>_KohI$oe4XAL} z1~NCJRXe|W>f|x);1c4WG-r7Xr#AGB-hX#7!%Ad;;yp}PWEmpIoB2O!3&?Li-Td4I zeZKjn3;Jyx^mjm&QfDktT(QCP6Z?x}8{zT74ttaz<(P^a*Mz$l?QG5=8hD%l2*b{~ zS@E6USvfuSz4d4w68Duuv0aKCTcqK7p^2n;0H23a)0u31dwzNOA!R~&SsN;n4?N3K z;UooE^Ujj^DT05;ZU#%K9>Ywmya)~c1j{Byj^gS_E%iE4O`S{%WK&E;K7O|ZPyK&U z`01|-KmS$XuYXne+g}y_{#S*6|Et1({8iyUfBxzFlVG^{zkk0xcJelnWA3mpJZ{2w zL`fAnAU`0U)uB!2=)Aa^Lh_h#`CLh5qkXCogs@;^IGfG)_0LszhP##)dWWA*L&Tiq z3X&J6j_7*ajm{gUJ)|gDnMvR9yr`a}w9#X;Kv2h1Hy&n_dl(j`rw!it3R?8_X|#aw zT|7CjIM(Z)ouP(uZ*!GNgtGCtnyhw(mP%&vylXnTLJ_x~xG|TbZ9>w$;(&NZeUc*=cSdB5hqZ;}+d>)6#VQ;#y(u+`T3|+^>EH=Na z@P@FBj7YcXc_Uq91UhaJ$4w5?>dxc&m8@SX&GkxJZm50y$*)F1RJa!9jHVbV?J<8J>8K{Y8_{U7W0HiXrlN? z^Mn&^3jSu8bu5)8K8CU5gkG`w6ovs6V3~PH9Y{%2KMXh`(J9EB;Ot8XOHV^VJVkX- zNGzhNa0#X&b194Lm~k0+=ERjI{ zJ7(tTPds_2=Wgc}COP;iI|5Y`ZgQwYL$nIw60WHob4)y1J@1HbuM6lX6WQ=UfZQ`@ zbtY@{Osbw|S@J}ZH=KS9bJZeZ7qi}ZAF%B4S?EHZJx`0W+Vv!SiamFvqffkz=<4P1 zUz5|$jja6!!p7TSy~@VyMcSyog`ZM(n1{PGz2(*)3>Q~#V3s&UpW$0*{H_!oN)v*Y8FbE?N&67w4?Ir9W?hwXtA7qOn9w&OQC( zhfG&{KHMm>tEO?!eJ3Ap=Js2CDE0M&8AT z_6uEi1%{G%l7@k5cTY-uSn^5#Y4t~|LpxbzmM&5EaOY|8I?$na=>9YE;AvD2CaZyS zf)?B)OZW3pDTX+D=>Tn>!}OAYi5mp-AqdA9=Wue@!~Ke{1YB}_8>MBt$wbAJN75aX zMll(s#(ohI8<+ zXa(KK13qgIVnJ@oAl>FCO)@8j_!GC#9b5Mpkj@9r>6OV%V3neZll^F)U*s5?rjDX5 zw(n7!x?SLyluH@xXvlF-0&F!v7-D-FXd>=!r6Mu+I^Rmsw;4WXK^JDTP_I!uvauzgPFy^}4@$-Ltj9fzEz>3z%zQ zy{p(=?uEqchkLr0%-x7SG#)ag=VRU*&>>Trhv37*Qqw3lQ|dM&VX*22<3YTF+t;o6 z;1*W_uGg2ui?Y5MuCroVQY<|b%A^;c{9 zp$)VnA=k|Nc9|U%@hOknMSSb)HAr^T8BO%i$IF5iR@U0Lyek=q_T{>dn!1;aDP;pL z93ybIvdYV470Lq9vc$XxNk`_m4>J>z3Dp8z=y`f}yTrII3Ji}qEY=ue5WHSEy=HMQ zD`mWpN;o*FI08!JhQ^7D5^orxR8jITKujRkfuG+3{`wa1x3_@5zXkmJTfl$31^j0P zyi8=$mqQuqal#9vu-FPDPmfX(64K^{4~Bf*XH*FWPxC<&vNUM7=1zBI2E>MW=Y!@| z7=V^zRmf7Ra@_G%G)(j?rbETIS`g(*?IKX0yh*j$`!XQh z)~g4_kqwN(zaoAE9hN9;&k0iGA9oEo>V!d)cj{qRn4odb_qk&4Y?*P)xl&mSqt4_$ z*imz_O%5_4`o#&*R6_EIESW1Ug*}UV0K3ZsCjOKR+R=X7R)_?{`FIMV2uzSc5BI|D z`TZCV`OrpeD+|4MUS~jAJkp*yMVDyl3}PpoqE`#SD4-OW)R`Rkzs;VVhPBJaF&kmw zygr7P(-STyzMMRZNa8|nh?mY`QRQCed+x4b@96OOcJA6<8*RNCgO5~NX^@NWhaccftc z1c$HqbVBNL^ZEDRaH49iSdkaT9=TY97#iDumJM+;^IOl@^p2-;59%LEu0uVQ`#0hx zfl^dn_p|VaBpWGYoJ^`D>RH-nFNzO(8=l}nnS_yOMlk-%q!HgQv!TVhMF`3QV&-kZ z9X46*R@{?CX)f%3fjA@b-~Ki3!M0^ov72Dxnph3xe3PHo7fpcFv)HPNa!xTy{;+W& zT3PKEVN!p`353V8nA<;%#!Y+?Im}p45-udtZ{Gm9IIM+s5)%ZVi9*Ycco+ z#wd`kSB@ySpLOx_5z_dlRx{@t)a|a`D7S{GF-*)q(e|lR7FjbSPMxwEmg9+A9NhzJ zp5Pd!Rux}xZTM@i^@9)3;NKnmdO?g#i)*dRKqN|;y=^F`3Ao-{aFClqYZA~3bJLYT~+49o_C8`Na7#x_!X z^hrmASLgC*Y%uJwZ}>vmCek?(B|bVUJHpusHgeFqESNRBhH% z38>nDveVOKl6#R2?ZX?etdE|AOW3rL8%8-%15&CMS5ms!a90?j43G1GEtvJboA?_F z9zhJ%?TI5OcA7_T_!r{1sy;;GA|B~3M@OtP#VyObLRlk_<0_A=MaUu8nw425+outv zl;hD&!6PBNnv-lXS}(!$z)E&4qK}>Ofxalj$w{QKl;VKLl`T##9C?ru?J?M<3pSEH zbiD@2F>NACxgQ?}j4a=#OjF zEjMiC#ysPJ9$OAypaD8hP4yP}w$0Xsj2)s@frDW%&4Mlz&ml0_C7LwhBbWmbjNP(@ z$(W$~9SYqk!QD^CoP3tUOuPCH_DVR#yTf(>>*PQAG=mBDN)Af$=rC2iy-6>#Mnq*~ z&!FscW_xkTdXw{3F6$fw)VA3!Ry1bRy*MtZQqg6g&b7W?bGek&&O0UkvEF@oT%abc z3o>G?bS0DVF+Mg*qb`~oW&-Al3cyx+>lgY@HPU&RD93GDydbo4zP+Ei@V zk?#dQ@zVjmO!XP~s^i%v7GLNM*$F?J_HGA+yf9u1Mnp%g+>K=Tb+Ja*Z>0Km2^=y%mraGVxCaKuqWCoWR?+WUgU6g1a@tzY!mLR?@>ELXQ|?h1LPIW1L`!_E%v zj_TTQx0_&Z$O)09=2>%AXY%0}jReyUureki1d}fcx8BcGnB3(&7Q?$#k8*$W66(5* z+(Sqj5oM96#cOAS_X1{k`f_79nGPhb1c7@uoIMaQmk7qJx_+fPrXyv~2~j0anq&?K zQW1tX))R-aHj?gnjH{i^>K>=luO^dcw$2eZ(04@JqkwukTOY~fmnhUaknLE)s1d*n z(Th0^!mJkr_{4yg%Owr_dW*6x-Dr)z5Ed>E)0Gu%^Qv`wPv16OaD7ZW=ip|POS=n?&&{&)x z<}y`d=+fUF&MT*+NH?CON^n2gz$YjsH*#5xoPaysU08w;92pfl>1omgC=tc9HvYN{tu3&|cX-|Ufx38K%J@hs~v2djBA z9;D05y0MZK~SC~&|*Y#ugvDx>!7H-iwFwLgH0$)9UT$J4O26g)I|d^ z>3V>VOg(}YIlIROsPViLgM>?1zrzq1WAo=LJhvrsU|`lTK}I2jjZ)dZD6$lns?`l6 zY}Dk4b`+g(-kahzWNk3%cjY_6IKoH>&2SrKiy_*@h?LdkVItr76CoCQJNv1f{oKy} z+Rpyg&i>xc{=J?32iQ0Eb7&CUfb^r=)?{)@--DD&9x1^lv!P*U(P7bKvG-^~(u-Mf z9uj1@6vCK;)1$EMIH>_+lY$(Vg)2mCqkpW!=-ueyVUNEX`EH_$n@rXvZm`KrD+d*} zxQOiOwob?jkiBQl5%{Z;HJhpi5iM3x=ysu4lIZA$yt859%K9+3^CcwW!dFZu|EZJz z+{ypi$^X{L|BfjIp%-QInTdQ|)T!B1wogkc%X$upMStGPWu1$nr9EF^;tw7#qI-eD zp}D<-^9U~tZS|j8^1gMx9Ztn0I!qcijBD~K;masWjUtDzo+10TX;1M3{aj$y42FbeHi`Qr9)Yl#R zeCUUyk=*U*Pt=_@wI1hNf0_Vc<4=&m^E}i2OO&%ZZUle((!2R8x*2Ty?`{0v#qThF zNAY_fzYp>I7{BBA{Ud&#;&&3i&+$8r-&y>=#P7f2cOJis_+7^DDt^Dj@7MVK7Qe6Y z`zIDe7)0C*#6yVmZI!;O(q=>&b%dQ|eT!TlaB~75X*1oAv_&|H^dD7Q(_Ia?g*1)y zb5%!d!h9A%*-P5E#!>%Y68nw(6A zc=&**BgMg29HTYTHHnM}Us32L7foTaQ!&weYkznHmP@YGH-QhO5E~#Hj>bH{my`=tLQvWEae{R8!fi^~IQr13bIc9>`cU%BRu44k<0n0+bIphqr%WeyX+b}@i=V{o0vi51a$d=cKH(*)6CBfng@u zv<%nu#1mRvoh66hDjO#tYwkg;vJRzP1&;+&YfR@0-vDcsIdT?F&X%#A81_pD)UXEIovRP8DUTuoE1VFEB>i}(W3&+3#S0k z%t1vtzkF!(Y1?6omF9`Kh!-K1wajQxn$~FhAqEzC30)<#LHT_%U}B3KLV@AzfCs0G z9efZ~In9g5UC(ks@=4~wt+Y%i!>W5oD)z^>!P!dVDrh*g1sS2TKAf5{geO7b=;$99 zG8XJoImBNi;cXCKGSfSpZub&-!&s6kLE)&!B!-4Tn}xC^cQp9aH*5$gC^>PNq=+&1j}_IWC&K0{+saqA^VTVfjHgR`IQL z{_LcQ<(72BS1%WKD20y`c>;nQz_I{4f;-q~Q+IJHcPGc@w8k8t#JG9}K`vtfYR+4^ z91k)3ri3^YN@fwMj8|CY?M_hCLfeAqZBHxVgu&HivUWq2?v=Cb#aZx<`wVq!@B+I*QQk;CkzTR@wh^HwhFAbzQWTqLx_vCy_D zkuK_kSv*2m>KxsQBf&{^H`-odwM6jaW0%`hS4T*4a`vPO3g0oZ7_Z_kPky=!?Rw}A zyR(Kadugk<AxTg+yaehLxDQ0Iv!JSnCkogn1@APk-=4qCYM=U9vKX{gjcUv z_=v6J1A{hvU7fmPKodIVI{_=?SHke);V?fmFWT9x6)lZeOIWnTpM)vIM9a)(t!Qba zUBaT}UAtvwvsSb;LNH;`GM%i(Gc%jDqNS0I35%9_IYi6MX02#xL}tRGB_@~kduBFk zMN1<|6BaFzi`6YNo3)~4_?`<4+&=^S@VaGYJ1vdeO;|j0+-{lKtQF5R;y7W^@{e}Q z%x0}0KHQY*B*q$`O&??pSCwfc<<1yH8h3+mwMQo-_B?|q{I(4}%Nnj({RmGF? zCrZ#rTmqs(PUDPGC?)6vS_4Mm27u@=Xgg%FjCn1)ly#$#lWGiQX-49Pdu~g|10@F3 z+Eik~H>Aj4M&gS})YVu)7#x z=@zbD-mio5AuTs)7*{kkYat|2JkqG#W?y9=-hgGVi~+T4u|f++jWKjVSv%a_cQB|+ zNbB1AG;24cGZK}vAcHNMMb_96@vArSXX76be_I9gqT2kK!RRp}@WxOOuTaEIX1%`rD>u);PxE+kR9b|a<)$2G6fdvM z!=6whI4`x8%Lg=lM1;4d8j&fAI(#$I#b9_@dV-dHST*EAfukDr)O4g=K5uJ;ybf0q zV(r3x#PCCuCNaN^c=yx6wN~0Eh3mYS_Q8o&bwz|&*6)Kz7i!-5R!P=(z-jYobYHZt z&koqg_;wO&ue=^^ors&Oe`w}Ix20_b%7{fb5&KFhL_n?e9tVGlEoCRm!pZs07+Rb| zPA1#}EEgYZc47i^_O8NOLVA>;3WD-DcJG(#1?Fb(4Y=vuoiw^H+4sg6?f#>}_F%y>9zi&9VLF~|dpOn&1ktcnZ1Bu+LQyeP&cOg!GgZAu_QF_TISWwKdH+KmesPfVBuB3Tcg$e$tO&$B$fv;KF&&i~Bo&00HMf-ZLc3@%PBBlPU`3OuY_tUgLHy>`(K3Qr9NU^Rj3+)D#1tr~bm3cmQqLW1o=wpUX;<$0JKe*7fMN@9 zdlrsWYg=r2(1>j`85ARC_ZB}|a9{=xJ!4oho(W#y#{2S9j}fKxXilqiKE84n7VmW3 zAo}^1G1L=Ez@!zD96eGC!bm_$aqB?FP3_B7A(8fKVPiT1@)W~~E-Hs3F&p2(Ywc4; zBe2B8K`Ue&-#2eS%X>*YQ{>U2d#=|YS@+B}LHS_!0~BqL-C!Q|@hxDsXyi5u2hattMH7^KZli{ahtFU z!jP=C_B#mcj2D@6q)wL^iKR}LWwP_ck2Lrq*iZ!UnD8PxM@}uD1Vr$ZQ=;W0%{mO3 z5>pmUBe-OIh>Ww!Cs9JmNh^gptr#5 zFmK{M)Q_fS`sWD$7M8<>-Y`pCPk0l5)i_EC|Np=IjN>NuFOFpu0A}AahW|E764GNs zVfpUqK>u>%A4-K8b$(=D*zqs8C{1@69n0DLxKUmP$&?4Da*=6vW4b=XJ!#X}nL+~R zFdo9vAQ;hWdrI$H9PuYpe%mmB(Hsxh#1!P3!#;B{Iza#-KNg^^#B(tZ(eKwmITWw` z4CTae>nfeZkTtG>lmyR;?>bgfhFIA8bNp~S8inF!>oD5`CBP-1+#DPz`9j!OJOs|S zo@df=+hN-n7w_F*`Mg1hQ(QOm&lwHj%n5ZBWxoqMk_Z82Jfta%xXU2D7_=O8^wu-34bz-{HV3cY7ovhx*_ zrd1`a3#-Jf!F9)3Eu#zLHzkCdcW$ksha?x(5sT6NmPc17+}x6v;f$XpXsDLFL?`=6 zSdchgnJ0*w?%O8Pu8EI@9WHvi&r`S>$kh5J7DW6UXkv zBHUOeS0gt;1zf#ccJk}>98q_wLJpUrUT0^6L2fGd__TpMUv$?h`u{ z@a;HWZq8Q^x38%#>@1%&O2PTw1Pa9rRFuXC2j(Vc9(T*xuX#GZTaE^V#4EJPmb{pb z7d<=AF`u&q*5rga%Da)p=R#9}5(2Hl+BdAhqE6!?mhs`}%#?mn`CU9>kw^R#{LvUQ z9`Aou&WH2i4OqVRdAlrj(nt0sY^G2cjSedcpSZo9$K!98bDE|oiR zxMbSHU6>}iD3wM%BM^$-XaG?^;gVQ@LSiRk>n|p#Wqsif&cUF@glXpk-l4|Q*S2|yB zL|(kNqp1bT+JyCH3PJIYGLa>Ts@wgQsCo;RNc6mx+$5}4H2lCZD%W<#KPd`&&dR{k zDc2Q}D>lWbKD&NCuTH}02oHCFQ#I-^#}gXFjcA4A~xg=bVvVm9`xd~`TXFX zjwj@SV^~XObb@gFz&*{E?>jv!7tF?U+L&^jZO_;=7zhw(%bmsF+>Y^1&q}&eSS-hh zl&~$ZtrVlMB1x6|QmKn=)GNF%&C?-RCYUd)*xaD(dX_bP;i+ej{ZuMkw!!W|4fUzM z!%H3uL-gldo_SiObCina#kY{Dxmy@=PL58@wWU&^IHQqFNBa%PSkoTD+N$X4KU^rv zq@5WU(V?+y+0~0O$0B#0^+h?jZKYq;5D=f@NCLn3P1P(Qx=0PS4|!BW^p*TFP>6ah zj*R;jht5ev+bJXmmzs2rUQm;s%V8`7i>kZfM{O`ixy=;Jvji8f^##!wIQ{K=1=;f5 z;OheK(GMb|hysmmex1>H>ANWvAe-W{tS;~sw1Wdolt!h{48f?~SPr%8HAwbUp~9ex zkBvZ<-3qTiULSxZ73epk zOp9gg9E!Bx1wH$S+|6bN?BNhHSC(42F1Z0f(s7&6lg+FsI6@=fU|@QG2l{Sd7-I?a z1*%Rn`46+82IU~&LPy$b&P{&8E3zHbkaU?0rCpnc|C7M)l;=P{zEQ8ZLHe)1D$E}6 zB*s0%Vf&eIowGmxoQ$s5AX#@mOPB#DkUMZU@Y~~(%6gk~5E$+*f{Gg#3n303O!Y5o zq@!jGA?bvfjfo>hH&Wj%3=&y!Xz=PM+l0SWCp!)#1@%`)jjA9K^yc#BF#b*D<@4Fe1YWH6h>wysgOrIYWqydp<47Xy=j+}3< z{pAYQ;i9Sm*a^Mv9Lu!1ZD@bbC*`b}B4u{FpVdPdcFt;`ztymtgGI#NPt6FIAJ zps;oMv7mggtra%{E1pQ@ELV0tW*>nsqQ=rEAX%4t7#bjs7`LTwA>ST>OsJV#_87Z3 zs=KYc??kt`k6jt%YWsX6r_ueAa)jrylg|OjB;Q-y_-tq@KE4Ia78+HwC@)bUIioVg zZFS4EMr|(m(5#XqpwY8ZuBihL*KtY@?o|qI`1#b(fqQy7!E)h}ITH7K4c!9wjL)zDJHv47P^Iwt>E12bJ2{ z#og>HjznY|)I-qY(dT7!muf{LdFjtq3gJC@?Wg@zIGx-M<~DF+a%b&bg0&J!02|Qb zlFG6J_!UIV_UJK^O2}mvj@Ror>W6l}gC{r}ka#fR%d3TfG_~y7X=+(EpN9|VXsr9_ zyp_v3{Q~uS>avqxujebhsn=flj{f*H8VjwD;m*ToZl}0zv6L3Isa1$PJJ9JNHZKCH&mz9}S#6D({K;!sLc zEN9;r=dD~0a8F;!DI2arOD@0AFjDGfH@I-0hg^kh6)+Z58LF*$R%fzf!e?6Go77dX zqcC+9TIXWA%PhXjSVARckq*giMAve$6+wl#;bZ0x9V<@O6K=cY#4EEolH=T^UuHsn zcq0Pu+<_~M2T)6%$hwWeWHh=ehg$X$lit*nqbexjre*-LPdH&l_!z}srL!EO=lMm* zI`McK{gA!8m(|VZPcSU7NhJCEuSy<+x)l#2cBWmgL9*X)>ZkfAE+wwnKH)FK_IHS# zT6_I4tnR{B1WJnf_9-XJXGBZm9c9@EuiAoTeP>?X4TAShg5~th&G9rpSx*#>usIu& zjJHcBYlx{Ppv`KP&T{&M$G~~TS%H)V;-6fCBLs=*YG=haU3>z zErpBJF~jM3^)dzg%iCb~*;}T6e>+0d` z;87U)2eC>V&$3VCftKRv+C+qmV@ms<-vZ^e@nlZ?WEU$!487=nZ0r!Z69maCXD(f{ z`}-f)g!6%Ij**uSk-3AN*^zr(QrX4%;t9=CVbi9R5*?ozG^BW0_1J*58L2l;Gt#Wr zUrc9T*@e>Lm(tX6laCvt&(0YU-6wbZWhb9K?JZwlMqkm+M-@N{sb^g(OWor?8D<#^ z5&hlQ51FyxYaAsgxWFVgqUECP|fze4a!knwODP{ z0zEW6F$v@PZTWN6*f<@UP4@T2S0<|xt!H`jItKT-ptB5 zvLI;V3C4smWP-@ga7{+Tc!CvJH2HNfbD!Vo#5;CgjuS4|6(~MSbp4?!S&Y9CHAoD7 z@BgwY`zonZz+>c+^56J4K2Bwv#)oWbLR5vpjWm@rb*7aeSx=x~#q$ezGLW8-q z$^8~ffvkX#Onr4?#`O;jH$8Fd6H`dwRfOf>PrIRSh#5Dk2_Bq2yd0)-8B%^6mxYmg z#7<>kO9&r0f^ec06#?HAVdZYPaFxy(+0hM)L!c3%l01HdU}Sd0C&dD=El-rk83RbmCJ4~+D#ICT)>GQUavv2?x`Ji;pHRFDu=lWL)I() ze}V?cs^~$?XWzh(ne0~&fN}W-OzX(me!ASoG6LY$-=T|#E*LUObN*!7T<)}!m9R7^ zl@ija68l^{eKx?n$@>z+;g*%|n7sCYt)?Om`gk77ga(-c)v=VH&iUjL_Bv{m%Oj2pxu^>vyIBV$c<%2zM{@n&ng5A(XtfwntXwe^-u$JuI|?aGQ7 z9y{G8eBov=`~wGF2hxa0zQwk*>!*v+A&bJKo=gPiRjE1?_4?LCj0gPcuf27Q2hgt^~$9Cl$nR}TK;|pU21hI15 z%Gv#7YrDbxf)V%Q+u$6KJ8Q``6Ky_Pn+`BrAW@o%7&pTjblbj}NKPM?dxSu`pg8+q zcs&#pImVy%nrrj2Nov3ab^qx*@OorK$Etj^_s{7SxbXKLyv->rW(@*-Q zh2^EM(>c%NWw%vFez96Tr`^QP;|%XP@c(g+Am;m zfnSpo^@{hEnwz$T`}65)iNcV6bZBF;=1Iq~&;-ho(otuX*`a;hurq>WeZK}NQ}rL; zFUp5puUCop*bzfqb47f<;(3c;%?}R{g)FEI8O0swU-tDeS)lb&$-)z8Dswu(9*QR% zwd_lnld~2e-tX!ypl0x3fbjEigjVkT)4;ss89ldu%Od7t(7CfCdQ%t^{xLnlP0VYJ zh9?EEng&QZ&NrWIgIn^m<7a}prnYoZ6g1gNiC4=lV>GNTcXZyke!h$*rjyP3xSi>8 zM+{-efdV|Z1%jN^ag=8^=K^t975X-zJc;SG;DS~BJMp}^{&{)hew#x{45) zHprad1;{zLV$x?N7f112v~jE5}cb~{>_T(?nMx*?ZB3&>u$%;N+Qe=@|Fgzh6%=ym_d*oeb-SJYw%`>Oz~rtXO!T#Y@BR!c#mxY zcrENLIo3aj?3g-t zg8j>5&;DmWSjNxMec4}vve1o60UM+4#L+(DqmyY zDNf^Z;h}Xt9|)l(#2jZ0uBqjOZGj^-S83n;GQj2Ef&JGY(W~C`jLz4HA!me1gyFSx z4r9+L#;=GMPMTyX6|yDInUj%WdY;VED>Mn7ZYn-t8Nah6Zx*xR09^>RecAL7xME;o}5dDvm#vT$hz+uG7Eqvb(fPO=a#h?p`t zH-}~ju~JNP$_s{#7<+5q<@WLiqG~6S`UpF# zGx_8bn494XH9^M)Qtt_oO!OgcnS>>+FE&on`o_|Ut&r=wIsno&O9jf_w#NAW8a%jP z5q-9^BuDFU9Js{Gtq1n-UINadO@GoPv%}*G#Ft|&Uavv2?ulLEW|5bmmXf%fJ@qR- zJyZMj-Rgd}&tEp!OQ%(^bDCt97NdM;GQ|`X$J5;drudh{VL*1#LrF;H3yv9KLL`Yx zNPhBU{oze$w&}z0dNkD$@56M?Acm$7RlG2}$1WSAe#>VMm3${Z59{hAZ|H^zU3rU= z(oW?q%5-@0v^0EDj%~O=!OplR!7sUR#f2Ub0!lzd+~P19Vs_13mn%4wz00)AXVLT!Ze%8)z6T+9Z1&Q9=*uXIzhX{67xfju{)Ys zvW2eusa>tWvpdJFn|3i@sS*M5vl31!6j14G1_B7O)9@pDme2bl@1o`u@MVxzMX)sI z%d{%8O!k{wxiafXx5v5Ey{k<$r=AD+F-H70B;xj*pkSHI&OES~^?zmIRG?$>HqSaA zns->U@coZB$~soQ$F+?di(v42y#~ogwT$O{DZZ~O$LfqPAPzI!JLlR}3-zb(!1F0B z_fCe5a%Z*NJ0&n%Y&}WEe6aU~C-6C!IDx9f+sU2oSJ!b1q?7Wr1@T*Pzq-Q(-N99(>cICkwI)IDEWeOsc zbXqq#kxiB(WV0^hL;uP5KdEFW5Z)RYNGuF|@e*}b#QG1^-sdAXMFKS=vL_(H-hylq>k zg|l|nU;4BI6fzDA1jPoKO83I($UX2JrU{aJ#0j>nseL(Hwq{fvILK!QajDq0F;%gK z<@FAqAfv@a$7e}IVfyiHa83dtt8qec3z_(M)Fe5zAwJx>2A00}r&UoN+9fDN6A3Ll zCGdff0XUHx-=W#uWU>az%N0-`7JH=*B8{5wM-R3I+Pce6W1CpVu@+7jvOLg^fl$K#bcXL!W3 zu#9&EeqX#-WLX{ij2U0?_7ki9IEpZnN0V@>IJVCHVYieM_We32pL%VWR$VzuPFb9? zjjYQ)yaCJly(E*Ju53A+@+0X#4c1}|4!W`E|7*R@df+Q8anY;$C7sh;*IFr*3My4))xrQ#w8;O)~35 zsrragC9@Q%3l>muq~OAZOsn_>l#O{Z`^K|6lWnlaf*h*0*RBC{5W1HRYg*zXyGSjb zSBQi9k-bDoZHbqLzTl(b`>X>mAfkTcc&@T&4H?gZiq0pJb0sV@9JzFDGQ$?yeBG*D zkNM1Yi1wAUHSC?8XQ+$ZIe&Jg#|yacOCy7v)9MsamP%>C71TFgXAc96uSZYYQ&d%P z@Nw);o%FD%j^Qw-US%l~P+rc0v-I4%hR{T!QocK}ZWfQu00A9z21tb$21f*KG{|%C zBmyo8BPLj90pWOw&qwlHv$P!w8d0}aF z<%LxrR9S8w!t!#ftb*{e0;>v2eHr7B^Q30HF-zQzIkFV}n?$7L2n8O3S+#nJVVc<} z^kMzd@hNOGGaV+TRLqd^r(%Y%W01C+)3PA1Qik=+-aUFat~YYhB=f0o&aKo|9?bG4 zlQn{K>N+@q7C19CK)iSlragx@94&Eb`X({LcdX1E$nO{biik^_sG;5$cV31ORo#;% z9@yA&Mt{ZAS|IA2%ZG_pQMv}O!Jl@a)HGEX@oUURTGADL_shKCi!r7@=%??%b0+X< zC}Dhkp+T)*u0dTF9><8C+J=TjC*}SVW;c88LcNO<@1oR2l89Rm2?cK9+II)?@$Dk- z>ciWGHl(`G@+=?Mn?>H^Wz}P8#Rz+Th(*93UW~)D8~&#UF52jChQbNoD`z^$0B4K` z8Q__$u`|bClRR}E6)m{f2}FOE=go&#GYxiqkSOxtGiZrGnr266ucfY9)WS|DA@vz_ z9yE__+G69Al#nj|q;8Rj%1_{1FTRG!FWOT)AfDw)%YYqZH^Cy!m{QOsJ6t-7;X+#-#dV>D#)Sxu6>s1vWOzIaYO zJm9m%8;;Ks%KB&?hq8X9TzwGoI_n9~ek|S_Ykb&p-Sr#c2=x_jenWQ>T=r&$EXf$r zjS``Kw?;wGviUAs&tv@1&(~w+v}f7`Ihrqt=UoLddyuyv7!Zi(vjkhx3SyV0d=E91 z96{)X&q3b>M~z*B15%aRbE!(*-ZGU*{@wiq<_i`-W|B`%M{kMoQ%C@R^iPR`ci{O> z=NVMqtD{7yQ1cfZXnaMS&cZ})B;vi~`5H^D@P%6pybd%7#yzP}NEKW<4z_`Ee2t6u z$!yX%qbHL?_RXOCKIGcc>KPZ^s{TO_-1)BGk!N)#2bDE!-DVBTbZhv-qmR}M;LuQfG<#Vb8kThS z0Q=uy$-21gARxaxh$@C2>sn`+TP-N4U*3~s!KG>S6x8Xlq{?C>cfA(4$9gJ_(yGfx*7dNI?EL$ zFccG_<9Zq4LszB#l(RaM?NcZQ53UGt_Dw?Ojkb_L&X;$D(?&iiyI+iaLoR7&W;~RO zi}TiziForGeOF2~%34ZdXaJ&7)u=b$Or zUv~0Y5B_!5%X8-aIw)&zBhb};Cd4$C<-;pZ9{kvIj)C~tc;@bcvNbxSbvQjt9C7TwnLzAdJKM{qTG?e$A*T2V{=%h(zqn?9ey3U%#rTZCV4CQD%ZNgK% zhrWgSuWeWJHM6gNN1H5Y)KF2;%G|N(gPl^OwNki?hwsbbal{5Vts_{wOjTDe`;pR}bwI~BTS6U^g2N`GvVAtC>F~-8ZAq)->aC+p4>f0X z$(6}Ae0U9Q*zKhc{sP$cv^d&nUg|k8gvsm52AnqG|NvuVKk7#s3RY zsEZCP4qYr;vmWqiXE3M7;~j#)t|#e~uw$Wtw$Bp^3oUG}Nu#ib44lRM;T?+&% zr4qqQVWsxLU>qgnrkz;U3?Jer7`Afra@|g7|E5I zAWnbfwI)d?el)~Z*pafCOy6)HJb51MjA!OEd5(m03^h%OoK}j}1vOpea>RTei1bGG z!L+atnFt|?Q0-A?L92;HFv`wgEtJ*8v?mzf z-=GC6mgwDV_YYZ#;tPAU=f>yy(uKi+PL?J$8)Bw`Y6{xGP(`B^x60?B6;Rl2GK7g2B2Z(a=YT8wp{ z`V&|8KzF^2pJUWCL$TMxJAAHn{0d|`Rg&R-6%_AS`cgQJX#zg>B{-?_DXVbDoW2^6 zg5XCGJQR5pV=^`k9t^^#m?n>*AY4UZnXoMi1J0#nsta}^;Zd^5n8W@A;tYMj~ z5#LaKpF|JUcRyHQh{0D^?7~H@`=T~tI#y29Y6=u9B*r&IAOE@ys|>dg^bX-V#%F@FD~~z{gWEr(Z8RUinuyFJ1or6b z$pH7}s1M4#5S?ny_c7%TTB4suL?$9-qY;Ch4k-BuCprak_bO53_|9Xrs?GzB=$@La zY<;Iq_GSDpTpvkngP8+Ci~o2!t24=(K3cp^I1^FPz_kdH#mPwpfJ~9@cLgH4$>0gl z$EH?-Xg|6CIvy?`i!m0Qtmy-G;CtetIpTWKBy-xl)XobpZ51sBwvn$1j7sbT)1t;V{{Q zx$c{z&*yz08f5l#RcXczo^MeKmLGR;s{`<}7ksvZeNUgx>P$Ax3*P)LWY8foSg_kZ zh^@uJQ(J%Jqc9mzU=gG!{_89Gyp_wkrH(D)Qm3_~OC4JrrA}+9;62Emnf)GQUaRM< z&SZ_l1p4~8XlJul2>{2AD%^rfouu5Wov07{pXjUQ@7wv4RH7Di_ z$65%S_HF68@aaM}I=YzXL#{aD6UyhPgZ;G<-c)Z*ElzF+_o#b-HcUr-yEdD?ur837eGx{}ACNYpxrJC^0O~F^=OZVSsf+vs2R* zGhopp`|t)V58$(=tkEg^_!cl*c-X`=AS(~Kv^EKD`U*#I=5>iT#RCttwV~2Sm5Vrd zl#^iqzCvYAs5+h>HEw;uYEU%lHvluNJZtied1D1MO$M`hJZx&pe()FvJKPQ!9LmKd zlZY9r30xF{Za?Ia+P6nl+87=u4QZnfr`M5#3xXRNQ@__xvK$P1MpW1m>08nWEW=-_ zyqBZp_=>T8PV-*S%IZa8B*zqcPK3ld-t(N6@yVKPju$?Z)9#d2_LqHMBe^X9N=DYUa&@pX?o4_#TceiA6V_ghQWWhv359vyQtK`$Mq9OzSg;aTn)WjK%n&(q2iS-h3H#K$PPvs$o>H zqc|R%M_Tk0R&3E4)HT-tT1pm5fQKF+D`qa-@NU~qR|xI+%^7R?Rk0P=@~hH1)?Bh# zJMhjclSPUOZg|f8m^OYjFrRl~E1`ACxSnT?L;DhGAGP~pP(vO}prLUVE=3@eZS>}$ zUj+u6cB3Tod41*_3SGvkCZ9N}@-_;^j?4=F#KQ`r{@qjD3O50lXcD2tKapjo3`cX5 zuEAs3N32RZ2|F87IWSoN1RO0qq5FH(jbWw=jmU}2su7vZ=%k3uX6Y<@aIjO9%uc_e?? z$!FtThf^aYpro=4-Ll#uTiu3PH8CpL`T`tqO+Q*BEi&?{RWjL2Zvk%}+=?5MDg+^x znjJl5BI_aZ9#5po;f9!65;_{N>I1=Z@xX>0MeRA2tL3`yNt^8hPv;6UN?6}g_4;0B zpH{5?qbBe5`z=Sx%vL9#V>~pp)||pAOqFv4OEzmAES_hI(?)=Tmr)%MQEF>KGr%$! zm2(Dd@cRbzv7k>96|z6)8@ARI`Xp3puOnjF>c~IzpKQGG!n7W^YLVBE2ocubp$z8D ztXxj=M!Tl&YTt>-RQADO1$ZJmR6xC8GalL&8e%DH7Xt1F*-<5%4UVu$HM@aX;Cp9X zfF9U0#6X@emAi1$9;V5be0FtGgMGyxysQ*^!CAa#btW4f)t^J16DV4a{1z)H@3?v7 z44$i(qXj)7yEubWn4Rp%-cF78EMeD}s61heT8W|IaC%ZbW>LyG?EY;c{ zRMa6r9-7sTW$ve;Tl_nf;1>Wp2wP5;^5tYn?`+4?)WmN9HRE6;;CVDl2$ldq+KbFU z?J*sBFU^pU6mwykm;4)$?K+E{_fb_Utuv7EraIwqabQ;E5hc~_am!b?U*HsBS_912 zU)=#avDE>X<#E-&(E2uHi64P4l5W?pkTX()d6fhsR4=vdm9hZ&b}7)Sy$P@Mr0V{8 z)vR9kZ?F7TfxUVb)DPAaB)onAQ<327YMeeLZWBLF5P} z$?2;cJ|Dk~bXzA+X(5OlTJGjwB z0A%a)#1wrY62Ro*BcB@xR2*-uuqFcPdc*L+SI=c*cw;Div@xREkJh-v324woU#G+e zK(Bb%Jj_*(Ym;(+(DQ64DMo8ZSnEoas0_&;|F0Eh)LHS;`d@hT2n9rKjUI`wMOE^# z_@fmGAZy{p5vGN#{faAKHi?5$0(ION)(0wly#~qti02^gvUD^CxOhf3q2IGLDA&Np zw}3aunAPI?jY2v4o{oN4D3^@@p=q8&(sxpsW;yU?F1n>OZNBFl zh4})_5Z5dDkpH{9M7Ktr|Ng_W79(08F2H=3=F?RzR7jm>)vcH1n>16oR>xmteTeb& ztlwVW3GGxOON=jxX$@!gq}^W!o(`P3sgp;~X;n92`1Uh9lu@nEiXx;0Zc`lb+{;FI z`mnb^H06qII2fGF`tXL$Gi982J=68ZO_9<5=dD~miayY>G8Mg(CYhxtdYeF$X+wqabb2&a(SA@sdSa4B_9%ic7@g$L z$ZFEP$!bPzWPun;r&VA1u1R58p9wr~^_|dcUYn(4^Pp_}=E{o3#EKj4B8-i0T+=K2 zJWsF_Y*D!v%+ARG*Nczmtz5R;6-o&c^??u(LM}z{;W3s#IwMHEUL_ub6_Rla@PEdE z0Zv=#!|HXwtjF%_zopXDD{+!cr^)&1N}jh0%8*QHS44w?j^cVz_@bT7S{`Dq)?Bg}ykKUN(IysM^U<|i=mY|3n&0q(v{Db-u#0v!pU^8R)7tph zqK8Jc9Ro2jZ66@xWiPt&>DyYoKEt@dd%32@&JS!1OFADE<@UBw-kOjow>=Q$t^IK9 zeexBu$EcM|1$%O8NAmt*kZI>gyh!*-_wDLDIY zvo<&<;9&GcUmC3bZt+W<`P45Zk7#W^&w821A;@IVH^nqvfG0MQiz-^m%A6ls*sr?c!wEL1_u5?`*c`YaYi# zxIlRnnyO@WbmW*wbA0zwf!P+}c`KKVN*!B3rA}+*V>#f8(7u8$+S%-Bn$H&{r%l2_em9qIr@xr(hc4gZzn%_@|^qZ-yWl^;jNb*23 zM_glYNh6arEYwy5goWF#)ocV50c`LRl}ck&%pi01!7eTZ*)3N7O@##hhfDB5IKV?u zBS%{U-sX5Nm5Z2?|7@zbM)@0c{>SUM6{342eXFbgZdLo<13!8#v}@mZ(obIa-I4t0 zmv$X4QX8iJYy2pigf ztch<2FYqz6a#?4~m-1n(=$N*nG&)9%atCH{hnKebO=hy~kA6=UBqt{>umJkRJ924t z(avTk+?lEs4<`BvYK-QcFQ2v}>o-2?*W*l-F1N!A#8Lc~f=#fE#RwB%{!6|=fDuo} z5Iqd;eA>5gxM(2+eBYz9OSN+XXJ&wa-qJa|joa~jh+4=Du`FgL#O_scfopcuCr^9@ zhpRX{yiw4kT(KNR%i70Bo=JA0 zi+Xt@bcm=k=*MM5U-?fxjflSHOEuc}v>Iq2f0R=^ark-4)=yWs6_&Pxmc~+XF3Q4p zj3pO-3u8eL64$4}pZXHVzr<-E=hZ$h)p^&6$WObCKt?wVo_(tA@*i7k+i?KnEs%$1!E!n zc-?2cLNB^SK8hWw;mED(q2pGXQt9~M2pp|%1%bokH!0_>U~oY?MS)0N$%P+XeW;=1 ztsdvTwYKES$#sD;krU)j^!?Uixl^lsgAq~y=FiD=@CEm5hGWD&sLj~4hia=Pp^s}z-0?d(jHz}+qVbP)YG6RIm7G)nh?OMi-*PX(~Fsm6wi>9i;exLYGJ1_mzT=L5X`c0mda#k96 zJ5Ej0OWk)<+xcJFOEZ+#!Z<4r<oIo=$`|s{^qAmwtVX@Oy9V9*9y5eE|9MuYm7N`>CU(a2PMl4aS#OUs5vLt zQk5&S*HU<)QCs1qnrA%u+5(8P&Lln`-hgG#t%zhkg{=sS?OAOHD?@U0Rd-#_XY-0s z*v%|eIRr-Lhw{3e;>-Zzl1h0`kCF89%UdHYRZxMJ67JBtv|BzZEo zz9+JiUZcT4@p&tkbt-6eRsPV_t)SWF_<<;HEq%ORKzuX9nvrdh?J8I^N^6r~v!kTH zG>)u<|9A#RR!t_KBD*YMH?xP(|EnfnmR*$P-jHQil`TDhEn(t|y&sPAxUT5HIa*au zJuAtMFg~JQ=CU7ft60=vpopjljZ?tGIF5>ZFMummtJ}@)j3I#Bt=B&Rp8X>tNw$ zXt^b`e&0dm{4mp_n~KPfe(QQVQ|fy4J#tj_XLpE)A*v3Zd~&a<3Fp3*%R2i8W%AKg z#RgcSI!kAHNb)rAA<6Sk5Qv?(U_E3a+nHA(XNFr*eI1#RRU@6uCNA)+yZ6EQZR3M$ z-#k8|)~yqu+SY5w24EXo?^m5I{>1v?!A(0=;?i+Ln9dF4<7nSLKGC_{eWEj$Z|4)D zvoV|xf^5xS!;7J%vnHlCT5g>67L((moy}T%4jy8hc+w=ZG?pyJR50|0NU+so%=}u3;S^UC!2ULZGD4^!fmyxOrxxRRj<`vVPjozZRg!ZJDUTH zvp`NY{cBt`_1d4uBhA*I873)D@LDiQOFH{Th4FsuXdlL@N|x)U-{^P)wWO)uPPGH z;1!A2s+S`*V2-p^Bj-b>e9lLG;%B)&RhIi_^Lr#`Tc=IFOmn~H`^6Hzh#H-P8Abt; z2$;$`;ddU06JW?(CUUZN9l)`1TvAzvGy(-#M+Xr=lysJZkr)hAs-&_k+S&(*{p?twA9jPxa{P!Uj1AfZ2jEU=Khr5<76 z6L>3rNqoZ6*?J3)_{czAI_hcD_?Ovw-?{DKfKTaWihvtQ((WW^}Z9&J_F51}~T(5xjenrEug=sW(bR#x( z>icoO^dt8gp{H0;-v^NFlX2-MHw7j`pHRa7)7f(}1BwbUdCh*F;vA)Z@k{<)qfHq~jNG)HCrg3#H!{TpluKP& zX?N&dVGoFx7Xy58c{JMRmsj3wS|+U3$m*53SO1=@d_nxm11nG=1pU46{LP} zfUT2wa1FAmG456U#+*DFWD91MV-BN$Va6Ob0IL>*U$x$xE5kdjr^Bk3*D7yYUaLT? zVocHscd_+%F8THtsbtN|7!zRCdNCaDDZW(nYZc=AW}}>^=+yggw-JHRUo}3avGd1? zO=9|$pK3qY4%iLpBJyu5>n}~ZwaaD)4!7Ma2i*Voa$`e zG4cZImIIGVjaMBOS{#riw9$t^9G*4f=vm#3>~pT zw5B7@XWZ{()JCPV={Yxz` zRdw5H;2Qo_|4^xGeY5r(m?4$b>Gz>2ik>UtHV%F~ zq5|YA?Ag4V!|FrKEM*G^1tWd9qvmvS@{A}JZh2A)!pGgq_{(ew%Mq=z$)W#b_kj_{ zPB6+c&hEf7n-Zj@UvKRG+#7t8DzCh#ZV(}Ev`>5!9C0$P`}n=1{mJ84$9_N?IO_r*xwPFbUb}wx6JPbA3Rj4=kcyH$NZ6DkN@DnXx05TK^NUr z-}C&}d`2V+n_5@TF%{8#Sm<7-ooni1XI@hqip}?MGubnT8Q*904ITL*k!r9L!Tf0g z8`I-oEI3pryF*mn=L-S>nb*ifBulN+pNcnKL1aExBBL9(S^ ze0R7I@{3QYEQ`oDqTdK7u#arR;s7#{yN1b%{d{CWD9{Mb_2fZA9%dgK@i8A^AVRlcgv*2n z%mQ@97i3jrD%yDRnyhY1$3oJvz~!|$P@_WRtm21O1#g=e{(t^OSw4W_R1au9+X#g6 z>{RLhvE3jP{R>s`KYv}EkNx58YO%{r<-B>aY1uKU^*~+oF5mRO{;Dva*_kTu;q52l zV0t*}Jkem~Jv&cq7k=l7Ua9@W77W4t^NSot`DWi9&Im*>p6=eS{=d4eYq_x`$4KZh!@B}K`FC{1_m*Y7z1P9|_ky^uGNNOSY1LBhfsl!OBo zE=VzOF-e7J07Hk2g;ry#js4S;RO_wJm^1|f>lz8Lo=Y5?8OIYd^rU> z4Z_M_?x=F+v^YPl2disP{i1JTn(z9_$}{)HEqu4axiyBmJ*nJ53Rx4I`PnK+*zzS| zGfTcC$}}tdFV3&R|H=~%p$si(A>`+aXK?q;{oW7U0JC>R3NX)BL9IXG9>)8V6T;ZU zkq0Ad$XN8CoU>$iBho3>0>ae0XMeIZ;IAA37>y+Q1IB4^M+L0_Xcx>%O0`bqbO*%a z>lKW_`N|UzM^uI;s|Z~IQz0i?(Scov75%Uds1n=IvP2soC*Z9cR~OVxuhSRK0<>FZ zO{yT>SqGNU<;R1x@J1$@iM!r3Cxqd`8@uT?55nh$SYg87v4CBECpk>d%7+>m^r`Sd zFpTPt%H?5t0X{7lIN%52dTvgDplBv2s5TfAgLj3HGYL6Gxk<>_avyMYV83yTLmhr$ zw=LFukhuTJJ6a|$p3BSz*WjtlYy#BFf=Rl&U}i!bvNi;Sr|CP+2v|G1qw3qIqZjb* zFB#;{g)lKM{Z5@WO20-%t}a7nnQ5M(cHL&T-9N!fykFo@R!5J*|2qi2(4PE4HT#jM zI=kHGgbI!r;#xMl8)TI{K6j%FOr~ye!4f3%6a<1?WP(c{`z$<%lPT{<75a> z6}u^e-{^Rd7GBmP@bfb35mfSEEF+)GIU@ZuB_T_xzTJn#pP(LjcG{@z^|V(8S8|tN zFPIX8>?(i#>i$r>M^zsB=XU9&Y1FB&YDM&VIU)Mke%6p4gBt)KkBXCVfH-UjqO*kz6cSI35OB|?=5bf z(+j2v6l|9UQTg*Zc5Uz?nsZq5oAP`M2O8i5fq+DcS62lyMBG7 zg8d3qW%eMfxx=_NKH$j^Ak23ZoBjYd55JsGI6UJ?7~pCc#J6|4w{*(r9dAak%2J@d z=hvsjVgpBmM}o=QIdK%m_jNE?a1{IDmep zZZTx;>`8i&=WAf9Z{r)-sCNrEypLlohy|FY1;Dp~<3U>Gd%;-YCk;^tP}Df_mQ)bF z3CPZ+SOi;_1uc_@HlwX)C8bi~(Tapec(lqgh5hIG|3MgZ^@uH*chKuaK*DPiA+Rrk z@L+NA`@etLiwk$#Gfsv8H4C2?AQ2I~Q}43mJs-F3XOs9dDozlkhe4TOI)hZYM|j7V zMNl70!t7MN+JG0E*VlWv{oT7V?gS5RhgVHwSS*+D>B{S6Q+vXq0To1l zZ`6bXIh#_gPWO!GC}2C%O`a!&0jnSM3mVw;C+pL%f^3Q-@;2M%(Yxc1c4>v;C=YL8trHs;<7sBL3W zUA#U(7)dL_t4&0w#Wi5@5W)cCTiBo%zC{EGFBD;Vb&cON4}pN-A=<~l9wgAN-FiF* zGwa+-X&XxqP~-?cpj$@dEOAEdLevDFFeywEYkp_~t_vRw8^u_0PE|Q=Zy(R8ssvD< zCe}ck|L*j%C55#ck(RWd91qgMgBHxvbP9QendXEr_60PxK%$+lK!kfB$w7a?vsI8} zP}>iPxPz~Z0pC$rI6QvwJ78&p*s;m}~V-hfr1oLa6q@ zYnT{K$;-Qa&mG_GY!bpbI(RvvJdl3xR~)m47&Cy7G@tAwNki5Fsc>u@X1)|z3F4uX* zwUr;^qdDpIT8`}ipG)l>t~R9b>gB8m;##CG`aTk^XeBr{bZQD}+{P6HLP+I`Ui;bQ zdr~z8ae$=_g4+p-V)YDL8G~}s9;Ro#i}ZLg%z7<6Dp#d>WmD;VeNzwo5K<2Y5*Sy1 z4!USoQfen$%GeR@2>FQKk#k_snTP3Fr6+;~U00LB8ZEh_$48lpJxWs>tZlo$eOL!n z39OWe=wVVx`#}2x82n;T>)K3AO^DIm-V~WeXvjogwmp~_6#)K@L*_jX8hitY_#vmG z^3k^K`nJwJMxCEKQCtqNxPBybEo;d>7)f+O;gKD;Z>3CQ`D_)Wm!1u>e083g%J$8*EPa9q;NfY&6q3!iKFjyEtL4jIBXCHW(oFual;6$LIeT7 zQ>&Ydw@xP4o*tC5k83{sMWvhM$qFQn7pOHEsxFpCgLI%FhS}YB3?bN*j3eCbVP76o zuoVc@LX>GyPc9b-0;)cB*PhrD@OsA$*VDoSZJ6uO2xIQOf+StQVgJJmoDrpzN`i3& zy5qvMV`GfLO1_8NIylGBtqi2R1?jQ5?9@k4+1zlQ`bYrP?Yx@Euzl8fH5npY@_)#C zkhp{VpPUxn_Vtf@1UZI()1`~?zJW(#OArH%hztm=M~5T+q(XE?^5W5bY7n6( zcDyq8ko)aPd58!6L<%)np|d;eLR?KxqE6U>bOJx{bEgy7(yA=s;d1orFE#z!ApQFw z{bi8;I!OO}kpAyM`hN!L|NUj+@_li0k7`oA-f}QD4bXV}Fx)<3p24WqbwFZ#HlGmO z-M)#@*4)Y_?a8*WJ%p}^S1aB#O;mC0-pdZBmYteh6c-0#n_iXDXC{#YQjjaKq6Pv1cHx111-n*l$lN zd<+MZt`b&-oV)GD=se6>Pp2W?A(SpE!CHZ@<2$fmJPu(jd&G5KfvIH^w35uW5a<-5 zDj^IwSjIh;pL)MNDQ`wd?^CpgptJC!PXQmo1^Y!xJIH~ecFX?CeOH}nd71K%dr z0N-G5;QNKK)?ao7?|o~VE7W^mK&pLOYx0fZ!#bc!Fz88m-SVbN>k5g2`NCXILp-Xi z4o^)T9iB=H4=T8J!Ellj3=(DNzTg?bA%%P%yesPl^4qh@;5I@S2LiVdJt`OcQ-b`( zagFMUhQUJ_dl6pb_AV|JZ2!P76{RaYkwIQVm1enZ&rk3%zO;iH9iXdDC;Co%rpUn9 z8K#y4W^*R+4mwbz9Gt;j-GZ7zuV6@rZR^kZ<$LVYk5`MocH>`fuxB9#q5+RN0u-CRDi80RW9cP8w$_%!sJ!^PIA(XW{?ldQa5j9x9qK2|Yx4n?@@A{)k zM=mGIuIKuk!MwIu9FXTD%jgXiImmcE&7+sjGmTz)LWQE2z7V_udmiS~I6U40zKNkN z9(#V2cL(!c-ky~o@4@R^^v`Z`QM%<~nMGlI7?mA6NEh~!5>C8fEJdNfNl3e4M;o*o zjyCwH@+}wk8D5$~;9)K~_K}N6OoV4;=RQbUD6w1{*l! zdzxREi|1=#su#DqOI(c^O`QvGd{E8p3eIe!wWOZ3QD%zi$pXHLheq$kRvCkR^T8Q*4@pL1RD$KDUnz($0VE%av zjiUraVLSe0t~4yJ8%#oYgW#J@zTF_U8l=xYTX*qc@QO{Ou!X~Te*Jj;y4Y_|4VPLk zI8$H^aCL)N632tI@J0a#=l$w+niIkp>r1#Gy`+R=(HF2;EFT}RdxD~~=nEMj%oc?g zs+D-dy-ZJ0;c5gz4B?k95HECow@YIS8Vdyz((^wdGM zny-1Z8F7Iym{8B~HI-PN>p|obJ1>AGT%JHB#Q? z@Fd*rNo6X19nN0HNt=eysu}tXv9{DQQnPWl2L$}z>_u!6Gu{1C1V)k%-|n3lBru*G>}H; zz-^C|M#4rQ`i3~yLpu<4sWV3X zlL_8G0EtLJVb>j1!U90RpF7ZOoDw5gD7_U|?-RWD9CsQh`o_oV=+)7AM=x`>_cbqy z)7C9*^{drac2KXLldkpV@AH@cjNByzq!l<)5lGXIR#HLZmVnrtE{$tIX6_du`1Bq{{Kc z|J0{FzcZL8Agj7*FZxa*Il84(2$x3^0nQN!D?3x2rh-+S6;1hs9Ji@7QJ7F=+X8~e z&>xlCisU7W(6dm3A!Gx;uuA>u`@`eqwryOb!REn4yTlbA8xs$G9+VFViP<;2O-xd= z{_O&X*ZIx1ndMm6mF~3L=+8dCizeq!%iFuhEo1BR$+a!`q&MgelWrDwICu{Sj5qeK zsXk)>ucjh&nNTh5rjne`x0_0W34e;+xM+TIf_+#AREgOz)2746wNRB=2^Q*8ZY5Y~ zoryHkgrvmfL)&%|{veaZZ6&mequ~=A-`6^zc)qAzp6fk>uXefu5iXp|BwTx`vsI9= z4@;K!`+N;d_**wu_qX7?KEG_tU*X1Sz9(C8?VBeb zjtle8RzbopHQUN9HJ7#A{Clw%1%B4`Vy`) z_C)8t{#|Jm51DbHzz`nCV5am;MKlD`sQ{HOm?j&}m?o}hEvG76Hk?t5Ru00J_vT)o z5Vkxg)i!PS(Q{vuwB2tBVbJ=YKpuMWo@E89P|+VyAs%unRF1%?6hWPujh9~gYF~uY-Dd8X}5o^=TZ+pMb ziWpm;=rK%n)}Q%3Eo2i=z=TyzeCi{pJ=^(CN&!S)fcMIk0q+*7Dsio7J%AFNhfA@~ zf(XUt1Oa^$x(oAdv)i|e`^m7QWD!QCUmWs#(crbpIhoa7OCz>jr%`_r6VIO1z^ zV&wn1TBdyyAFOG`aNq`10ihcU0X_dR9X|sG=k|^5M1%>(unKx}0$~ z1jg2(`&(ZQ`N@5kBnsr}bcs4s8re%((H@ zBf{`dV8x)*E}tFN>GIhjR8@|hcBYoy#qGnaq=Yj`P`vO_O$uvI3L%oJjcJtxPWb%= z>62MWsgPMN8IBFrQ9~*t*K6V)*lWt?d)I`^)X;$o;(>T=o_*k^<7^eA-hd)W-c&Er zlp0ID!#>cgq*NLP#I6Fe1cRaJ`!XSnV_}#UL!aQE-+-&!$(npy1OIp{LnQ|)Gn{l) z3C1T}OyjBq!*Q%iFnMGvF5j}^=J$qXXTNcdEGKrAX->3GLs14{CCb;88=`Us!1^Co z-t?Kc^L$tbRMoij4@&r{^7#$8%E5=gpqwe0f{`6Mr=*a;J5DJTg|{Ur{D8S}OF{gs zq=eI>f5w+MbWT~}ES)&a!VZ*-EE0Dq<|lKb#1jqT9cpf2Ii<@tv}hg>njR~HDqFsV zAG|!iLgZvKQ`5m6+8|~ot|s?jfWD9@!}3;{2^f=b2&3dlAqQ@*8eZ`>j9wjQZ^P_m zG>DMT&g!HE5!eNn_C41DRie~nCE|Oo6spw2YPsc)dsyThlyU|ts5%VM>CYK8!PT|1 zb@|?lpWn_>=?T6U%-NNkMe=F!Na>zF5L|^pJqwNrbWJ~9fe3f9e1e@&`y^&^?=Fxb zvslb&J5M6Hf6Y_ziXn?cTxNU+`B*|gmF;z V1lyp_Rzbp^Bq<&)(0}{e{{tt+BMbll literal 0 HcmV?d00001 diff --git a/addons/dashboard/dist/assets/materialdesignicons-webfont-c1c004a9.woff2 b/addons/dashboard/dist/assets/materialdesignicons-webfont-c1c004a9.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..5d3434d02364f7ca61103cda93269e78a6c966fd GIT binary patch literal 396732 zcmeFYcTiJr`~P{;1B4KI=%IHAy+i0-5CH)}LJ>JIk=QtEuzpQRf&j2d!K7OVh}E?5RaSs*}h zuoM+Udb(4|SwqaXt+cGUKZ+BTPsM0oMCta8H){+paL{Gb?5t-Jr3N=j1>nS5NhuW` z_fX}$=lS4)VOaQ*ro&A~J&(gK!hHs8N_I^t8Uwt&|T3OyZB z^Ja!&DD){r=V-8k-)yG$S;5+;9PxK?yD1lH{!UN)Fh35Jv7aKfYscPih_$h}sT0n8 z@@wrAZ0+{@@jp@bj!#B@#MPiPd^S81<4)fR)z3T>iFW z^P*Uzpnj9DU20IpqsjHdr&VjyT@$rh1Wit~%Gwo#sGNP+CpO{!-lQ#ddp~s9 zk>lCjqtud}IIQ^ilQZ315~r`8v3?sA#xv<#v%I7vij6EkzrMOSwY>4Z=6J!Ut%1O> z0lzmNqvQq;uRM!=^zCfekQQe!NffC0bF9dCaKK4sZ&u?19LUelhmF5nVtVNKm2F?@SpWb=SdJ@bZ)QFr1?|7 z;QHlrqGAF-s4Dwh1^nGhP)TtCs@K<^@cnB~y=s*oxOVCJHH+YoJ3FR-8g|o)pUMM( z$lit*kh|M(kh4;yghw}!%(9z zu_YNVHeFr$whB&@;Y;Fg2HzL3E}W9vnOi8Mw??n*$A`mei++Y+Mu13$X4`j!<~JFO z(dt)KS)pJk-&D~j{Gf4WhQvp^2#%_aiIsOkU#i}Znn)*Ojt=>XeL3;MUvm7XlAx21 zkgx>Jnw|e*`pWgHz0XtePxCu{CvvphG7Mp4i+yuRE-#Be)y}b%1Es(fHhfFc{NRJP z$%HA_eEhwu$uh_R+sb6QB^6mLn1}HeX65T(QB3f6Sc5fmU6X5f<=P}fb&!b}UOYl7 zs!{3s47OCSuUO6T4^yxs5&1r=q z1$fe=P|AD!P}kTPr^#!fSUK^f3twk1#GXlyUdvC&m+&rIG?RpA79A)^XIDY<>pg5t zQ3yv@>Ukj3D6(gy4FJ878K3+L_lb0>pHPa)m}qI4@ND*ccRKa+?BqG8t9yq_BQ}z{ zHTpqFHPNhG-Pxjw(b?3O*L*x1uGv5^uBkQ_mqEFVE^)R{@nJ=Z~eN< zK_Y*GB2Y0JQ}Otm)1;?d@AO|r?j0EL=fzuE!OtTM zuwP)0qTGoKSFefOie4*QmLVV)b7V0{YrvZCXP*liDt(8u}ke$t00km-OD z4$EVL9_Kz+uN~vzoPOYSs-$w^Xwp;u7t@c<{=EfQFdHtZjOk=5BbjG31-b^XVZhL9 z0j5iETRaog>)NoV&pgcUjH%|2biLrqZ`8n}XcZG?o8N%^*+;se$-oZ$2Za zf#eu|hv^>jt_&V~fn?C*z2Cq8FwZuf{j_~EY4FLwlVsj+f8tkubuDF{u=Z}K42-x5 zKOI}`rDUjF=&eDw5mIP&&({5>+453Xs$APm`i)l7VcO~X26H6?6{W9WY1HoV4=!bA zzXVi}{q6$e8b5YgBJ!Q(GhD{c?H@!A-Q_)$@0=H0;Oq*uB|t%4V>8FzFQ56<@VyWZ zn{VDmqzeEtfMQ_U57E5HM}lk=;K2V`4R^(?$tvt_tOXKEcoWT|@`ya@mFu~5%pZijx77JI zk*>FZeq%_}#|VmQvDg{9VsYbM{`c!+{)W4|FV5^egeAqNy~x95>h~=vlB*8q(~mqV zsDI-VekoaDdwX!(CoEW$baQOARO^GC zg$27_uD#*Sn7ftBb=N<&ziv0OySevz>aoxlxc+&^YqCE1vzv-7_7`Nos2u_PP}5!4 z?#+CEi`?i%7`n34TU%04W< z**2LClhNP{laI7*6cQu!h-7ITRE-@NeO~!d`uORIOoG}G9i)Lq75wfy`-8I%fu|$B zeQtUi-ZI*vohioQal;5H$%BUZ_uBI~$h2Gx{KE z^!okv1Lw9(XHbT!QE?GbaS7Hp;Qn>zd3^5d#u<_9({DrU*vUfmD(|L>f_r(5rj`OL zW=B6N`Bk;899-zQ!$6riktLmblfRI{))MbslbfxZ%&Y%?4mq`&QDYIlGVS*&hU}DU zDUs(q{#NtsS^jMg0-{$<{!r^({Nn}P@Zp&9(}ge8%Nlac#D*L#5>a(BZaCX}cT{e^-nfTD^IKoZP!eY6$ z9(kVQ7m@pJW?onPlRobuo*(Z|zLLz`Y@1eeC>>iUditk-UUqpc<`csa{RGkS&WH!v z^7PW+FS_jH})~`Q!PJhGq2y6gz2T=u0zK)JL*2TBg4ieWjKN# z$mZS8#9gCSR1O)SQ%!`cUa6#b_efRs$~-|z7BdcB^dF!;s9hJ?R0;;1i%hhxCQK9z z)jT>@Wxrj{mXTU}KPqq0%3qJ5D?&!F%HJLwXg-<_$&<2vB%2jf*-#^X_h*$x{3D%` z4HeJcP3d{*gTZv1lqN613XG8gxeh?>Gy1mP~0aJYgA6v`VSpGe0t*Cr_k)5CC=aDUtr^&Z|=R(g#G!+i|hFlXCsF^ zkpCEQXXt9B{=3?*@gEW&ZkYj|otOz|Xo6AC$lE`cJZ8`RC{fCb0*(bC4G4vmi%ma^ z`HEF;ZXfiI@3a)-*be*6CRWF^>`Q#RehzJI|KY}L>w|au=khk63kq%@$4W_QN!rMf z-Q)-YAgT(8zRn@z@zV(^B@Mxpx&!7l_L&}*hrh0Utm$t?oM^k}xsk0sRNVMM|Eb7= zfb#x}uWvV&FSca8RfFGBe^l!`PCR!pk*He%%ObtN9lG-tS)9w(~oQ;G6#~i+Vq*3MbZAnGl{DGH+6H_@S`VTE=&z{%0Dbs(UWg+;9<2B`v7tJ!x zmE3t#pZcUp7(Q>}r0K_e=vK>Ms_ zzz11&mx=GDca8c79iLr)#r5uo!eXo!1&^+NY%+A@Qi;#znGkL-bKR~Al*Ru2d&(Au zy9at>ZogQ%jB?`>wVbyp*;#SANA7r;Yw!JtUpaH&|04V?Cpm2v4;IF8nPd1sB>jaX zo!}bwqH~P5$$1~MMNdi_@Ls;2&~AQPCguv2!~v48jR{Kyg&rBaa6!&_jlS=+sTUtl zc*}e5Gwk8E>_Z>5C5)V|uhtc);Ea`==&%aG+0abfPImP0$>RI_{&|)?H~sQSada?M zcTc@0Y58%|{s9V2RM~VxSX~uZpUmogSS>LUwi|0&;pkv2@Y@MnmV$g=8p`B!cG z&WpNr!8CKLmvJ`N$q{vL^Q1iOYGKdbY$xr<-3>L{xFX|{|7zf0L+6d}E2F@ngELlm zn>A`QzY)F5?Qq`rW$^y70q<*CMg`-qpDmEhH62nrz@IS(zmF^*X?o1rdfSTR#7FXd zK5aSr_TU^<@@CS9>x3Nabu<=rr#0eA%!JL25xd2>(eDRIcu;%hB?%>*?CDb$9u8o| zr+cNQCpP6H)(*_r!#9)4zE8Xl=kImk5wM26wQPL7{CS`^aY^9dHYqdqCQpXgKt2q$pMV*Y6AF3=EJP#ZHrY`DJs;zO<3&Dy3wZkFz>my^)-u3v)wK|;iUGS4?mK&E^aG19iYC`*v`pJ;8?<5)rr#d$1CjEE20CesR?Nw zqi279Wk{5pX{LYPpWje>ACvT4J8bFohy7w(yNly#!xAsX5^TR`9S&#e?}_2ruU5NO zm}j9);Ml-q4Y{JgR09F8z?4U{KmY(k@i;OVu8$#rVcK{G7-5XWQK8|(WPxZp0)k~i zL+Z)=5kv$+p9wp&N)}9Dr2$a$R7|oY_;9+pC{JE8U!^3(yVqQt-8Gr#YB|`W+FVR{ zI9Z^%9OAcRE&<0Ub7z}V*qj33=e!s^p7p7m5dnyJeFpa-QYwe<96UCT!Fzl)l`CNm zkp#tI%#k)o3+_~s6^`d{x(zCjJ1tHI$8B$C!|rw^H98o_>)mUEj=GYTz(>beE7-6( z98QgLr}KDJ+i->-PP?d0=XMUY;qVzrjftl7`YqXTT^vcfgd$=ru`iJ}8mW;^M4lr> zFHs>HX%|$8+>Tx^**zOl&qok>k4?Qq$26oRin1`a`Y+iIMW&wfW$_$seaU$yGA-Vi z#qARJlH>T#)Yt?Tum9Fdu1i1VkM{1^yF&mgcsZRa>8c%#!irKdQZCc7(zv<-0E#3M z02qpdBSYCkiDVc$4nu&ljnhG@O9U=Bp2{{r1SwB3&}b5sV}=D%-(qlqkW`c;(h_bj{|udK>kznjl-_dRcheV#wUVUltk&M6Y=8W^sUuw!S;F1l`V$+^VQ1|yYnt}dHg&R0C2@z zp_+)~;}nCyZHa*a3#|D$OAP=3fw33@2qKEaQNY4jA_XE2#h8P2LJ1s(!!%Gf5v=9K zVArjuK}uO*y*LJk>8d3_#aSXdFcgI@9GcC}f_*fPqOyqNf+<+A^|?}%#_4FzPz#Rf zVT#&1oeP5PK)$3ipm*>z0~I2hvR5a(rJiOY%0kNPcf#sOG$Ugcn|fR);`u7g42(&~ zL8YPPNK1VwOooD$G`u0*(wHYNT}DP4cF)ezP%|$>C0H8qq}S4v-8Ef`uL4@7U}>P_ znxW)g0e@6&X(BwFE~i}qdk|`AWH_9m7F~gOwq$7r$EQo8f}j=HPJKCihN4ptys4cJ5w?0EPA_(zxs?!urN|zR0fZo;bG*BaDDEltJAGdazh_9y08!x~f z#&sH*u4bqwEFfNN6(|RHTj>CVU<|tw7HnZEg?6Csk+g04wI!$AQey5P{30Z2Z(46uMYOfdWz~Ykqe>U z!8SyqD9^CaTyY&7?^h}6yR2LQDurYs%@sN@Lz%=}E56&@G_Nj6aW*?Ep8P9R_ex1I zpVXE8Ja#8+jEB>0pG@tQuan4XH-WwxS&*pM5u_Y_Pwh`L# z^>PUawhNQ0K|P!uAj(_R#dk-8<~taLB>JAFn0!l zOoba_8Dtv3t5VMd2^z1OYXSh00HAOHI}t!*05(^E6Ay5Z04^jMX-5_w27CyJB@l!N zb^2Ro0iF!_6bQkB`jSOff#ZymBXd0&00tV2gCh-C_d1U7&D)cx*WDD?TA$H9HB-9*-O(wfy;2q}Bbm(E6a2MGNgP1o5+d=JdLX~9q zJoue~^ zZH`!i`q4$!$;XEgJ4^rzwIpJ*$%paqmrQ68^axRSfb5M&d}4yVppHbLTCztye3A*D zf*vD^ER+4}5x+0W)qlVkvYV-a6$k8#Q|^(0K)?a zBpIqehGWSveKG<{fXWa!LjhGfWStDcgXI_~FF=_HStdhBU^ND39H7pE>=FPZSQ7*8 zAVAZ>8aT8JStbuWN`Uu*4RBn1WGPp09|2Yk)}f=d$#TQsX#!#iY(nQkktOlqmt?RL zSrHHU!~lDNm5H1YWYv1eZw5#oEYCvul9fr29}GwwSe?b0KvrLc?Bf6^6^B7t5EPJ* zIULxEs(|4PB&eiAe&RqfRGB=K8$rnq@&yM8rmEy|MiJC{A=`9-k1FMgav&%wKt9sJ z?o=gL&TxWiHDrSh(x%D{qkIU;p^)!%NHkS#nDZh*eF?Hh1W;5-Jj#ZlfQ2j&!A?{~ zJZA_)r3kV{1gTJE>rtKzB`?S~A|!&UTF)87P@97MVF994X%gxXLs1{{nFaQxDw8E~)W79ay46p~H`p`m#M5GSgh0pbFu<0!(~^uJ`43E1E%LMlX<$P^QFh(r-F zX2B%3Bmwh0NoYVifiDn~29=S7h4m5yqVm$feC5y+)dc=<*EG0xIqdWjLGa>m8VD5t z4RR%dj}$RQ1?rReYXcz1rkLVrQZjGp9QbG}Q%rm{S+IQ$;=jd|03od~RBozkvZN?? z`hR&{VoSl?`1`z*ZfY5)pu)!A|uIIKp?8ffxh;900f}ag5VM;@o#WZxbbj4V&Dk= z(Na-)ra?VW$YA$^h!8oJ$tENqhry-~5oEE?kd0P>TMUjkhy;scmu!XvC^#gPhQY9R z5cJc5D>!y58WzJbPcXIvGH`4%G`>9cQG#JFP>kaUritcp{34ht04a1NAC1SAy^ml} z4P2wMyVHbSIldB1LV?S4Hf@@~F#9yYXbHGU=ZL0>4|D7g%&-8Bh(yu2@$4@d`b9ti zk==Ph#w2M}=tbIAWy znOIohKg#r-{{K#y3LUE-AqyFrUZDF#&RQC0JzEPycM9~B$hAy^kdQeH4SmpE7OIrS zL1L?8=(K_!v(Pg%#47R@Ln{vSkj2?f<632V&d}Qey#hq?}n$IK4RN^>= zdM(huT**>b=_vkc3(l{@WVvQKr`VDO*AAX6nN38oI}zEniaNoC^;De*B8SmbCn$$R z)$(Pr>$P@5Zmm-F5?CB&ThagpX@R%EWa5*h!B^5Pv;#3&`d!kX3_A-=x4ca4N@+-O zuZ3<@UY7A<1(2d(q2b_~sd=>me689-C)_p5aJ&L^In+YSXE;;0xdL)?$wKeqaF*$M z5J1Cr;BD}k8rebMf}#%X5PX)wKoBU)t3%VXK2xVQ2vRcDp&L`5WwN{gr0I8P93o|E zl`epID0s<^R90PFY0XlS0GZ{S$fisXr zfEE!{OXjSHpc!nfwMla}2yq6-7GQ<}sANOP1c|TyhQc^^8Y`TKM&_F>jiKGobZC)XVlbV z3#XPULYJ_3eK0SF2ttrcA`=84F$^-mj%5)5Hojp7z#+PdBO`gL%^^O+6mb+0%3H() zd)8CLL|IV5Rwm^5Dn$Z}feKk*Qju1Y@JKrXk6T_UDp(S6L4m;S;F`+rUJgGWO5pVw zPDMwTBNDL;j13+Rlf$P74FrH3y_mwf^(kV@bAYWrQ%H@JA~G`va*1P#n69Qs>~fO{ zP)V#L(i+>rO|i3*6xK+$7M;IBwvv$)Qna%c9=$?w3YHWx=>7P3QL^j@nC~{STftnh z&ozhL{WkkVwYln7*Ic;vZMMNsbLHvb9CY+;j@c!1^_}5d5GoMaiDfFh#OJU%1+tG7 zF;za{b73lhZ2ewLrOEmn&WJ#ccT-HY-}Si=(RpN#K2vdsl*8dW&;F*BsrrMIi!h#N zdmYDAe!rT-l`zloVT-B0Zj2uQ}20D-8G7&Ji2jt=JxHAh^;lewLUa1JjfJcdN(^<}}i;+Tj_NCGAp zX^xe`q+q)wLH2g$!kT$0qKoB#wSu{jl52|acsa;9)Lg`HI7NIt0IRNr6G*xU}v`&f|pip0WfzmF&W1ffV725ai@fK;RGVn zZNWTOl7lO8{9$&saLp?z5sNs%3%#}=_QT16SLu8w6l`Hihf~7G=>q4gZ6U%V$sx^j z{?nnh2*Z(-GwXE0#HAhpu8|y&P2>y0_CVz{Qo;s^0_Tc)zyb})Cu)iOr@VULx(z9( zmx+S$Q#~MbWO7g`i|?d<4@@mG<T1U6x>yly$2; z2|#zeA|Ve^j?CdjDHSB)-m(8k_`gfSuSm_vwE}{3A+6BIj0Ys4I)+Cp=i-9bMV-j@ zc-S2#st9(DD6T@bu7?&f*}Y(=h++|B=XzKR6FmisCrXHtElJQECYwI&Bumtn>_~#u zF*#ddu`F?8vh6DL7Ly|mc9tcUKz3P$J!f)l!IDBXBG~>ql_#)F_Sz2Y-)vaND~+>= zIb&1$AA$L|SfxJ34YGf0jluw^ay@&{-&}Z-D5gt20GGecuW={a zaTfo-th9EfQ38YW2UQ*zS zAi)&TJOn#|TLE-}4tA#qyCQ@MyrH1ee~BGMd>8>|V6dPd!r!J;z9P^$B1nb8Uk}%1 z2uy+ES%4^omjqX1@VA0uSs-JI;40jdA-Dxf!T?}%3=%Gh<4dNHFd!*&zI3<-PN0ht zmk02e^Vq=^ar~8(=sb|7xj--604KOeNpJ<&&AAoevUI+ylqgq_k~x1hT!$_&PPsS? z2%GbU!d2<~&6Jp7kfFKY65NC?xK6o*2jEN$7A{TX%cex)L2^vKBDfY&V1RO=9uQ#i zc)^v4{I!(x^&nlQz!cnwD7Z{X{9Exbx%J`lEWT38ITA>X$=?dsV+qVq;#UE2CT|>E zoyFfyiCqPmG6lEbW-P(o@*XSL7z~OmM{)o4L^Wjc{((@aD20gj;{V-!t^cps9-6Mx4q_Szw&bb3sm~K#q1Vv>>TQEjn1y6QvXl) z180mr^z8o;{&)Vz!XG?CMy!HO8C*~@4hNCMp{&RX7|1*UYzJ1vaR!rB@*uwmAO)~2 z9pz3|a)o>)KtjQ)bk1n9+Aw5?0bs$>M3e#pS_IZ2qE*PU_25YcdMTo5SPH5K`nk6?N1 z{=rai1HR$p!pl1U(5^zze^c7^U!#zns&_M=0;Ed=s2silsW8ufS(f!o^uN&3eu>74l=?wsKjxlP>%DeXzS@5ooLzjpoNPal0@QI$k;)s1K>Xa{y#x#rdE?3F$Cm^bUN50U6R80F9Sa~ z&+;#5Z4mxPK#u+wyT8xSeu#r4Q9UKsS@|t(16PJE$P845edtA9mcsJ$Hy3Hoe-T6$ z501M+ho6NGPEF4Yycf@DcHF0TA>)zA!Bg?S977k=O-@EX#^`f=%rGobwvgX?Dm$0= zwqOKa0Lj@%y`4PwxnlRX*^D}uPzbvWd`Eqoa;Zpy>yP9m6)3o|@Ulg-($*v8rCu2+ zvLDnl@z{u#m8~;Hcfv%}ZvsvKmRsLt6S*6&wunfLMjcY<}A5m*R zr?T^2$|{A)-8CR&dj_4FbGk>xDV!Ktv2;nPRa(6KZh}kv>FT!(?Sm_-t}Tcf=dPKf z7W|KL^cY{V4)y22Dz9R(Ft2Zn7ZQN9!g#6rrZYKBO>TGoGU1vWIER55kMJ>alUdK6 z&(_1#&8kibH=Pd zDYui6oKA-wPralceu<{VLC@9SRnG~dgw)=7LP;!GGycMzmF~EmCuyxbp24haJi1r< zJb=49DY9xoqn=DSBdg2`OS_U8f+`d!)%I{%XcqA?;89z+sM?nu->}c@C%OL+*{D;= zAZ00s33UBRAA=I+Ano*V?+@-tcDyNFVB1VzK;dSesm;U~dnDO6w*G5aaG}U_zIYem zC+`8p+1qlwxB8@2p@-vw_o3-Q^!=#M3P%+l8iht;&fa1Xa{?6PV;Bnxbq!I2+}#m` zdzr@`bcC37adTK3Xj|VmNFSer(^!M|5Rx;%rrjpgkJ@<3sJ~;|7y-_Xj zKBouHYR$TCVwoSC2t$%Cei$o z)$xWNhwjnK?>+qtd!s*DTKa?iMce0;rQ>6T`{&Pe=Smj7SCkmn>(rC$x!G>D@R0{r z{#*pI+j6vT&Jzu$7IoC6Lqu`wKA+$1Rj*y{?p-6ce%AbYoF(}=v4{Qi&8vUzAG6?Y z)O4cDtl)H;QF#utA{sty>N?IlswBNQXt2kjmyN4^J$l#Dy&mKm>MrDgH+9Qmap8@- z5=);~^@x_YEFA2O%}h}jmTs>^^j$u>z8}tf(C4Bv=#X7%AAzl!!SEb&KI&K2S7yTc z1Vw!vS-rmm={!o+9zQ|zT~Sm5jh`++>rtLO8G3V#(_&p6A;Et?@QitLER5e3qPl-q zmFfj7#ARI+6R7AmRh}ZTX=Lr3t!k?Aj-VxVWv4|N2{iSuY2a~{eK4P*3rdpCCUeCP zrVe&wbktRK7KKn6zHQFwsj@qi+rO=`i6(*grSf+fc5}230l&6bv!{dHjdVI$!S)8W z=MCA{qwGHwU$h`yz8{rwSe8~?)Y)AXZR?<37MMq`x16<&x3swd^gJVoNy$c4+9oTV z@~oLtKqpwmyVv))#g8<p&I-2}D!&_c|GrT$83h?@(*zcn}$p80%R^kvX{>GfOZ zZDzkl?Ko)*?}Yg*UBlM@Iu+e>W1yu;CXjKmiKF0MTf*~IhYv6REN3FTC@+&N)k&SvbJ8ETFeYX*a&aeo8kCmv(Q%%7>@oO=qcE^`VO6-ZHv6Ku zl_@dUEnZ^em}bd6eYpsW@`r-lm8|@-z(^1y+Tgr6uZ>71r zb{I_374l8 zUw+mDeon8G?TQ=S$m1q6)4N$uYH6OkxA~0LOD`gRb$m=LbOW6l8g9&Al9fNuq(eTq0dm&+Z>*NO?YD3Mn4xs`Cm=jTR@YojB=~GUbll6<@ zdZcNMPoP3)SSsF?n>IL2y3?lq!cCr|%yy!)f3ojKabS>)ExAIw;&Wn2@n|9zoOfTN ziNfl09^?VN8BzN4t5}KL^y6Cj$;p->A>)>(@3gdPBuq5f>O(Z!-R!eg(qrW9F27dv z811`uH-ck98son%>;jqWd2=Um8II;ZF5c6%=X>VISc%x%;*z@FxvJp18t<1embO2e z`=W39YARE6`D?ZXFFz#BOm6$E9{zex)wBAM(vZ+Y+lud2@1BbwD(_E}qPyF^ z;`9od-qyAiRtLQ4J)d>a_BdHOmN^)iIqA4PUS`c#t@Ns24zD({_=f%2grZ;B#qGu8 zXYhJ5CESwJW0w6{>mzLMM*VzmepGBeec%ZSB8!jKYM<`vQLre8-`QzDRCXRhXqrEg zf6e-h%Z{#qGP>HJ*Wv3Cyr`n6`Q!Vsw;Et;_KALOmvw8>;Ek@sD<}3GpkXl|Qww8* zbbX{p-}AI&@?~$^d%w9{z8_uDcHiz-LDi=bTF3l?$o1=))`^IQ-duL?@(f+W~7D^_84?o)+b@PaB>v z9GoHzwA!cE z`D!ayl^cTs!rqt1P}kKTKlR9&&B+_oC?&q4G(tYYNUdaEARDI}*9aPP7Yn2m`vgo4cds7N6*~j1-)7;kfV~ z?-~j{aI^914iLSB|GmV!zfg3Y9aOcoG*beqpda;{DCzRciLD6FUHAJLTA)AAy`NUj zMStVAL2Nu+X7uTS%3bj34UySLGHAHVg_cnXh^)J`t6T%HF;LB|gUPSC zcT!J^(Vp#(?gl=q>D%e%vpM()Pm3>4c-Z@Xc#!iKKXEKt)9%vuPu$FwS50Z&rwaab zJihun3Dx*G8S-M25^rr^H#e3@K+?n;mkc>ZEK^Kgq5W>r6npOmkAo!XM@Xl-|UQ&?jCr~hC( zQ*DoHc=?Ioy?1O^O`?tM%pOCp$`AzmgQs;Jch}#8nUeVXvm9v6sht3iRqm#pjP@uS_)dRqwb{=aSmm z?KyTnfX1rIPwoe4V6maK$BQ!r2KN(rPlm&GO73&XY5Y1nl59u|&tUVeonL$SCc0!j z;gyWb{okdpR@-$u{AKxveiaBlh}V}Q)$?2%+lx9Y;dj+a|I|m%uSZ6*7oOE0RllrP zmasDQtWgH_a8%c4{FnbhI0az%>XwcV*y*p-y}KHuUghIu#9if9aH^5OoZUZCVA^nu z(|XvmWL+TfwDvn6GimKq5V=@MZ}UKSdCJ<|u-&cqR$@<`$drDgE~z;rMD(d{W6|sp z)%*wAK@~azr^iM5jg{XDUaBKZ%q9xyL{uShRRAGUh`~*}2F^3VhyoXJX@IDM`RQ~5 z;L1*rWOnOffb9&w$7U~8^1FX%B{c_LGN3N*J<+3uZP~6;j+C!Jk;fAk9w(K#`H#vZ zE;$xGd>+~I^AxLS`_uWe1}Ecs?Gj(d=j(EZ#snn4)c^cq^DEZ?{vEh`4A>mHb4A`j zp8E#8a-9tt?c=<|U4pv5EcitGc!KY#V8>!78Nv$8LA zcZ4Y-8z_YSn%q3^;}Y`j?>`{F4K!p-O*C+yESW-u8VsJ*G?M!rJSd*!Tsd)%^vn0A z-J#Gvjk`s&@)sW$R2H0eckacxz-edsgx^lQdl)yjd{jK!_+mFZ8QsdS%oaUY=O=3G z?AN|3{|o$ZhBzMS-qDY3`?3;2)CJ^&1&WA@oo{q&1lTNc2SfUF< zZM?W6!{luadHvi6$a6EZQ`JjszhUUiCh(BmubH#Of18>5P?q?W+8)R&i=MJu&*3kE zw$UWU0U`6*x!o<+tK0}r`KI$Z*6fxG2z1O;nOu7h#eL`ft1D&>&6)yN z%lS4JCedlRlKO;Lm7bse z{QV~rD3g~sv^y7F|6Jh7p)pB9pGO;RAguK7v!wTk-^ojjW7FpN7K^_PNbt4dwWmCxFoAaj`F-I z@CO+u+$fCub^d&-giGAiuuDO2=h(YC5Nj#^UClNTAiovPDi;o`ZC=u7>tRKH|Ku~5 z{fh13Q|ZfWhd>YCPj8FlIvsOET)Zk?&{RKf!1gr8C6)PWb75A|gwxlHWE0B&?)y3u z5oyt}{I~>!<;ED+V|vA&tppvUWms9cM-*S0R3 zy=k;FJ>)4z$IUi;tS$r?@{Ez|;&IH>%QA@%`L3DY?%Eo*CG?waxjr)t_rI*Bi#_>1 z<3eOi;z~FK7)bimC_0z)$8_BF1WFg7+?RQxY!)QH+M)ZYLpS)h&=7MrHjvBLPeQG) zK1kuyA_IE&)B4qDc-#*;wf^43?4W6t)m>exLdeL&{kY8pQ9u#&X@6C#!lb50AgOZq|y?+FrT{Zc9TFr%~yMNA< zfrje4=dquwM|3)L>XrlV0%0359OdsvAsaD4$Is{uwytPqktc%V$;6*22~x*ATkRg# zUHJ3aF<>Ydy^7fxO#?zP56l>H1D~09^u9f~>UOc|x}Z63X85tq**=RCf0+c^r4En) zZY&jV}VJdr=2)SuEcNs zK(UNwZ*pGHz#+a;jZN&akgL^>RQRwvvH-{)UK&byW$r4 z>)%v^G|BhjrKo|o-+S_OewRQQPc8hHwZqUqA-fhjY@+NUyauFnPvI$Do--|NNiPRa zI~5VvJl*U|p4K^*$0hxcq$Wtr(EBhJB(TQx59x*=$MC+0l3TC!@E07aUOz2yS$n*` zwsH;@a#^GA2Fr1R6`d0_t`X%F)X2?{xK!$yFA)oFmlpLSMFSmgXP=IzV2*=MKXf&Q zyza%R7*X0KZoNGHR+qfJ21NiXWN#PF(gel$>BR0#^z4k*n5^<#R#5HKP~xF93FKbi z6$_rJgev)QS7epZRqJ~}*jwq9J$B(GWQvjigh0?|qp}S?7X^N~zzVoG3vEm+5^R!hdMK0RP*ZZV zCcW3oVSD?&v;PPFm&o72a%ST~KQ=DDYpWZ(A#1DA_T6!g^zqtY+Lt}9I9;Iq!dqPBrTCgN7ooTxadR30=Z}iB(pA%tJ0Wd6Pmza!PTe_Fb)%e(a4i3iB?Db6(#P}>PW!D+K&Sex7U!2AKhxj zFCV13oE+G!hE%rgb18SAV#qjZ_weB}H#UCbj`k;bW7$p$pp7{8)S;v|KvLQNsZ1&Jt>OKc zp--v2_V4BM^=4{w_y>X7kdW|c#Ci&47?C;zd#0eLlk6sNEV+lHT0_^?Z78=oH z%#{K&`24Um06UVG^2X$7O!KR6)=AEfo*z7qjY4avNT%jb{BVvEkl5h$hVLqWiy+S0 zr`8W=M{vID|KYO&7-!lkc4zOgsU3O6@@8S&Hv$XW(<{v__r0?6VyCAjP7feETb!&Z zi!+ySlrbb`#xKYz!xlo~zf@L(c2~vqU^31#e|$?<6~0!m<=$&`vtseLS5(G}y&8@q znh-dwR43N-q@PqbC?@=^YBJ^$_S02k_hoUq+B@m!dpOt5F>Wv3x0QRd zW$X~{#lvCBowO`O!kud9HIm#=nD61bJ@=2MWt-ZDZxRe<)m|sHO`ET*-)etgyWQvC zqs+YYHYY_F+Nrtwr^>G;r1{d?d|(Bv!Pm^^-H^;lbm;(3mlo+0ZK!@=Wtfk<;8mwM7B>>%Qhc zEMtgkZ%Gg0XH)Z^T`r0jKkfYHn+$k9H9ZjzTz>W*!`gYUzN$dp%alKk{MK{{Zz_6D z;FM_1S1iuOZhy_QZ+f@8;@jZmzRWo5zQQt$Q*Uyg6~82^;H$QfhvJPM=|1Xstbz`A)Bdb@ zY7A8wZ22>8?sdtQQ|qTBuR>`($}P1iyeWkD5XU!*!kfmMGL#pr9IpNV{T9>P=yp@{R55;YUF8;oNPq)hiiP-lRPSa*Y|Jjn+4+o&q)!x@uk?pTqMQkOd%j7>^y@T9O<{|;dU&jk>D_`{G?tHEx z^h;kBv_BS@89X+|g*8qGwGgCxdl%tCcyu$5Y_b?GlZmS}o~wZvbq;`oLL5g>p*EB^ z$8!+Kj(lEiPSf4shCE|HfW7XHepl+)=GOfZ;G<=;l_rk>-zZHObVR7L1~PbO+7~4S zhg z33fnN2L9ZF?Iii-zs7)V#HJHLM{;q9BZ%cr?%WfhM>~onMFuP;V8kT01(r&riY%7< z&McqkB00}lmMmS!^zC1UbRx~u9D!2B2LQ+3tdM0&Jm?WqpV06$P~#B&9T#FN)>rFv ztz~3RWt2p{pLK=_wFdXlUz`ul8fhp566x$0I|y3G1@cIk2=^1*-Gwn6e>-1teuZ#W z5y!ua$CMHzAz`*fya`ixND)9x1E53Y9L$=(@rDn8{6>J!5&_x|bw3z~$eX>&2Z+d< zPS~&P$c}f7*IQczG}5oef7NBRkCm*+AIF+U8*}3^W2tNtff@|Uvsvet_&x46JntBu zbaFo*K1y}OGgmKMzuYSvhL@aL7lega(BtylA8vhVxn`J7I6+B>PUwVd?HPlN6lCUM z(tAn7Oscv;SJTxFwxNqJ1rX8=288VB2nT>tVkuGzOUb2}r8K>K7la5t zfvybiGksm@H|g?8bbE4U)4^?>M7AJzI*@K8+#Y;Jdj7UJjC&EWz2ty>O{q_5Uwb|1 z0Vm=CoFrfpOd^vcw*xb)sfJEPXZ08n&37wu0|@!^xr7=)A#0E9MIJ?8HFGlK{rj0y zIT1G6!7kQ=vF7J8o`X7Fk>dV;vd-F}z3u)T&$RFROrjMdTdC-QO<_8k)lLR=7zQ+K zxu(IWUg169o5Ic2M>jXG-nsbT>JB&f0B`WkvsX_(xH(<@0b+}!bW68h`XUam98=gN z|M;8sbC_$tT{UDI=v?9b+S+j%hEinSb(oNV%Y+;4iTuptyd(gsgbNHD|2ZpKCL$UO zlY@!e`px=0kQ0kYSqmvP6b&+p6HZajYr$H)KXoyO5bzJr_O~o$7?muH@#bmv*+7X< zoTuzW#))5=9(V%v`04Bq;K#&cw2q*Jv=S7UcN~xGxZ)jv{_x$8--*>ws)lhP?J$%| z^?>oC=dKisZ$m1X>}*-H51_b%{^WEXWJ)|BLG_Q6OWIa&Ta-y!WvCm04VA#D+i}2d zyXk;aaV>&qdA>}8 z2!SIXfI7iTetH?pT2|l<0NQ9a(l!P*8G1vGTSZ(k5c7j*%p;%+P{&0>WIJuj%3{C< z0vi|;*o>nMu-=?)4&nGRkB$!0R>9Xt)dP^WL6e2|Nyup-n++tJk%bC!?z44S7pE5W zNEnUZoQ{gVqN4OY;Be{7tvI%RGm0*WDKzVLikP8pKrl|ID2!Cw? z18eAqZTqzMW*?43sFqD|tyjwNDO;Ltf+svM@6*%xOtXOIHuQ6^^V>SqB3^HwWzn_5z|c0MLBA z{|4wm^#y4np*@-UWT`JDrF^mSnf1{~H?c!1$t6k8!g?Z=)OPL({#E~lZs}?4ORL(m zpf4;KhJoxSlAJ^1(pUii2vq<882AqFFuSq!!>r7hxYd*erLl_suj{sDt1Oa7Y#oA%*_sK^d9*(OLE$<(uEwz|^sc-)tMW z^tN8^si)hPG*J-wdTZ?B3j%-&t@r}_2F5;#Bmk+Nu~ZB?^!;SK5h>P(0+~8m%=sq< zQh_aIVy52Rb@)m0;-H zdMW^o5d^-KJU4+(Zn)vyz|UvL`69<$Bpp*hWnqYRZIsWr630iQ^f|C=Tu>FTtMrWD z|B7NT$vf-Z>o4kkN)IHKbHYN!PeED?DUoeS<&Ie=^k{{|5`LB}MY6urP z;Nf@#Jj8$d>5<&r#~&R4T<`>kCD#Dg*=lo@I53yo9ub<*yee(I19k_%Ed3;t^aUHH zT$qc%1{=oD>GQjH4{u+#PwMJ1Mu~F5B!FYAdi-N+U9jx`t+o-*ch#Ik#?(u z`aLOLMl;4z$aNV6hSNUy0(~I=>o^KE;297vjCU=bsO#CG$1Ulp*h6j<8zfsI4obnMT00YA?#!dwy z=plW9aF)B29DV9b+K`e?kfloXR3*FV3c&9tz;B^w$TV35`drU`e8eLj4KTlfev^B$ zc3t<(PoKID5n&uiD@r)5$ZXd7yQWJM6~WfU+BkC7PFld-U6%xcA2_Iqze6(75FoqoMRPvW67ZdTaP?3lwA~-$h$I=Guaaa-$qacYC}4JDTVCS{jWeQDiTqcm*5VW- zd{ViVotu)R!7da{qG;gYjom={}sNfxt7PQy}%IxL=2N{$2!Cj%$>xBgnN zxdE{12QDy$wEWktf5W?fzui93(YOHf1WY(C4X24V*#$Vka01;y7tYSz=}I3!pO_rr z#lgwpv*<#!Z_XO2_l!DG5+rNA^VK#W4iO#Ap~ ze^!nePM$^oqmK7Xg~IoLs_%bzU!G_{PLYK8u9pEVnd>nlC(ZxN9f@Oqco4Lr((n|4 zJh_b`D_{u7-S7EPqlSDjP(-A3NEG-hptEaXRd~$CuP4@JGarlM>wrqbS1c)6v%95z zp1C?Z?!tk&<e&W2J03v8#h|rX@ z)2kS}Y3z2t0)qC-CN*RlNgw2gdx^!q!JBja01rIYlw-gE1pmtV@u`m*Mn2RX@I@^UV0+J1}^Y=u>$V~q#_ zk^%TcvTD#OgJRGeB!`@XAUQcXq?Cgt9Vx6aXXQkueoW^yKadYN`VDYkr2`BknHd9G z+e*Op^#^mFujh}7`~$6sbfzO5>diJ=&Wpg&;Da=;RydNF9ov_|w@nN(?#`W>NKXOlm;n9uM6k^Ac!s= zcjmd#(~^}Ao%V5T0ag&$X}R69ApV{vknlg~^ulKnwJ!sE8_SimU1@76W@@8lI}gLZ zyln;06HOyLEZ9@pQ%bGAU3TtVPTfkgg!x7si7M180ICdCL>yMds-!Au<+PLsw%BO42;p3V=i>C$_$b+q8&RGv*<8 z`GQU^uwFbiRt}340t+)Bg+^V<%xHEpPLj5eT=zz0X$<|AvaR;B8&r~W;Sobk4CWfr zP%$(N1N-JzRlV@isVav7GK~B*<3)JRaOCXgGaUQwW^kCfX%}gKQq9?znbZCM>)+k% z?sjKWni95*54+7VM4$S+kOB&NYB=)%9E>qZ5mKtLd!t!X&T0EN^aUxUSHO+qbYv~S z6@-$R^n;r=)+rj1tp%x;OiP@gG>Qir%-`#g6jVwGt!P*_M2CS@KI1 z9dE9LAYQ~{kr;w3IRyErk013J$zb4?YK%)BDr)S6(3|)bN60UUu@$5_fq`?~u!SnS zNWGNwgnsZ@Dn=79>50?>Z!qz2v~aQXu&p%7N5hCWdYRfPUTFKy9nF(S`65O zh!QFj>0d1t3Pk&v2YUe*o)fV(JSJYbD45p9hw^qGKxI&j;-NR2+VwzYO)rKE>W zRvD6s8;NW_2=;IuffOyeAlMLFiHF6A;hsLf`%@f)f(Yn| z$pTp46M7)_sLMyKJ6X*u$k{CCu9rvta~>(FW?m|2Jsd;FpQ)q3@e~d2^N`D6wbk2?&5JfwXXQCR(ik>qtjo1IQfi4dC zzAZ{x7{QP?SbS|We0ys3AH0fz>QDlT}ji`mogOuPuK-^(rt zLn`((7WOhniAl1QL*e1zeqhgjrbJD!6fq4-r&FC{@mV?QS~#Mcx>qDBn(_rEZCqPZ z$G7Ti)&VY*=)N%TtkJ%Z3+Oqq;K)G&3nsAc1#40P0Tz-IRi6O{$y%>k>P^zed1`W2 zKk{jS$G77MS{*1RtU~IP|obQI) z9X4F;Vs?r*qvA19U817(8F0zsBFV|(I%O2Aq9Y22Pjrn8Fg3XZY|?cBz;uYi=KbI( z0;E#9$*!t{PSB*lC5VW3>ldBHwrwMyNdA5rhr{qPb@2>%@^oO=PRRkp8O_$ZCygV= zh9R@Gwub8pu*s-*u~r$!@1Am1J_Ynud1h8#1K6lXU5gR`L1=z$Z797()zf6oDOizt z49aBC-qrK3%y|q&#;(Yq`MeB16^rdJNM2GBxt!@b_8?U>FohHZ04i&wBfQFICga!{ zmkEv8Ci)_E;-Sw=u8!+lJ9tNS9UC+My$=MAB(Cwtcou;TZ)TUL_on&Hlejs9f{Obw zz1YCSoXxq{NfK-Uo(*^`8aS&zwNZVDs@)L#(w)UXqO5Kjk~rndUrLY*o?8vM)!aje zhTrl2@O)#=TVL{r!H3@S&HC$rhwhh>1+l1TC+xCqc$<2wREjyR(V8S*% zf{l7sqrMwH=s&04ZHISTYulkUiBV9Zs%9tvDj|OE=%AabPIam8f08&;@{dd2wlx72 zf53fTrN$^g9jZtjr9!A>zlpg9zcu2(ubOs2$}1x$TO>iycEomQ&AV8;XwtR0Jn-*-{v`n*A&IKWV03~b8jDM?hQlY8mrr9pjE7K@@9WwvwL|y1ewgP& z0e~Jx{tRfJ1#a$_Ot}$wq|{p7Ut7Pe09soC*k-nEgNccm>?a2>0Tsh+>NLF+fR(MX z9>HX<7#pcR|8L~~UC2rx&j1v8)@OH?bjchiS7c2{#hCn=O)gswECY|@OFs1B*CqIZ zh00J%O?KMx36`}y3bWrL56jQWmN-jO@1uuY^=4dng|AA%GNFMbF z?7?7$dXP+bXgMEK%lR(h$a~O^w0kZon|v9$r8UHSMQB~qsUM$v)>d_@)@qxMS#aGX z#1b z|6(t&mz-ha!EkuD`LNCvpf`_U@Lbnr-c4UEbu+iteQc3WyPFC|$i38f_4b1JE%B8CnGdVZjFT;eGt z7SQ(s@`g!NV*O~%ni{%R90z>m)Zr`Fu>F1emplHwwSSptoM|PA;%z}Gn!H+W)ko{? zI-QP5@_37<$Zx=}DVAbDUlC=VbLZ)D$jJmLFPn@aa}{~bmLIv|DnE#9P3b`&6kB&k zz}@vtda`NtfD1CRPs{1V8<)fB{+`dAw!`hlN1kr?FE4!M>exMB7V4GYO7oeoLwshU z>ed*7X7KTP`Pk)}l{_-zsGmvtU*UfvcLowfShP0-2xwtW#Tc95o9mY--`n^2-n#g> ze6K(J!~TJPSQmf)=jG4ZqpzEQUvNXB?G$J@#=l$#Ov@V27_$_KB3+!>#WTBj0}wl7 z>>dFudE#{<$?|jp$hnHA+5s?-F0#u(9s$TR09Dn!n_C-KlMk2aAgLOSlVre+X!Zgs_80x_mbGsmn_qg%KyqeO^}53!-<{fC}S#4jA^=!$!;;z zIAB6VC2HGZImvW=C}kPW7heD{ldQE)AMG}sei<)cGBWa4&MVt>kn`}n#tB)EIQk-T zle}D= z@BY{xZ6 zv2K+I7-((5kkaO_d`&VJZA&RSht^&urqH;DBO)nA0^#15!RehwJHjzE0Qi`jn+jKE8VRQ4K--+e7xF>nr~aa7E1WzbX8~1lAFV zH-`HcL(P$ogoh>oxFRr)=_<-c2RbNcdXZO>xd`R;wWKtuk^JYH5DRh;^nYo)?)Qb6 zKZum4?@6xYzqzJ3tq6B~&mqJ=d*%4rE6#E!m#@70$}{d@)nX4+23dpD1ZYTK86s~m zBSqcSdGK11NU};|upk(YjS`xVup7nDhOa<%CA7ytlK>J}Eung`p2IDi?apj{$LrPg zeAYYtzSjEv)cTLqby-Hwzh>pr^r8L%stLI7-rr5N&W`~%4BP+?1P&@X10ezj4Krkh z4A_~-Gm{@$SgXFlS<`e(M_iWjfSMgOI`s-2vtK!{=Ty>Rnnbnhw9~Gefa5zMhY!Hv zZ6j?PUrRm0;M)XT&9JnFECNyB zUVzfhVOto^miaGq>>l}dz8Coyjdld^qdPA!M;*W$Igi%Dy4Nzd$Q}wD*K8Z ztL-ug;XBHRZm~>X`dnx?D6mzn&Q4y?B|$$1^~?>t(222)V~@2 z^yDZb3LB=8gosA#?bSH4hVWzQG7fIpIo&VDh1{MSi7h2;`uas=g&*lh2ak@UgANDb zfG_mL!NsxoN?#pZ9qZ?_)&TnrA60-E4PLR8-F@zMJ=m$-n5>wUE7Kk@Ljxsf%ZTC( zMZtuxBt54>BSsKTz+wQ}2IM}Vyd7bhHKEcIK&n1>@z_&}Nc1d)A|pS!7_aP(fA2Jp z6p=+C_;*^DBgo?-AAj}ppHrGxd})+(pzs!!d|L8`@o|Ib1X*MfF|lBf98L%Suyjkv zI+ap$huD?v%!=0ZnM)B!|L#<~EJHNGbY|Kq*9~?PCX^&8O8NAmlrtMIY%Jy8nA9sS z_E5^H6v-lz0TISw__@*n2Q$A-cx>%dY@fKC(L}XmH1AM5NHC5*Q@^oeX^q@k19>lw z8!E<9s8p3xt8%_*dpom}$U^Z1&>F&9THbcC<7rb=aGL>{_u=H4#d*{8qB3{tHbU+x zFZ>7aFIEEo2>)VZ_(y1whoQL)Yak*Q9GLC4{D~7!K%1+Is$Zew|Hv-R(y3H%%m%2P&}XHDJ2(yhFD(FY+Z{n(M@>B@hfPhD5E z5&>Qr0@oYY(;~Z&@(RAdVHgNZ3klqCmmPrSUM8F-D{HU<_}1NSnC#K6X4hwE?%5kRjcR|@fM@a@xpH>-b#5!KJxAFBWC5;Q zxK0C(7>>v}*BZeqEdqoLZ0#WlQGOZUcGM+=Im*i`0(M%1mG5FJa({s8(>f5C7XTzc zaM7Wy8nJ2*5uA=5LL~A_i|DFL+LFyB)bynbE>mMmf;X|3h5z~2I9D+>lqGE8xa`Ye z&GWjqwx-scgo9uqL825A)5MJrAuLY-mS+H^^XG<)QWm`15)vS-NMm{8l9znyxhy$c z!+M>kO>mwxWW zHDf8rn`85a4P=#J$!52n`#W&JPnBf-R_h}vcfdIU0$kV4jV+d2WuL~Up(Td}6Di-G zr6+%e`C39Wq$^>UB8-c91M$8_bEi;CLgeK==oM6ognr z%})eC6Q{ls-c}ZHo(tuaFG%T%l>B<)monE@EHvo8%#zB#;4Uh@kyNjJ5 zz@uPBRNxi|u2`~K@c5-(;qckBgAa`-W-NA;L*7?(GWdvAP6XgF9GDFn4p@!*bvE$` z7+qgMx5nfCH`*E=(He97J|2VRQR6vBvxkK=K)w`4*VD7_*q}%WM#!I>~-e9~5rp zz*widK8GB(p|jM9wb|KmAU6pqgtSY!2mqW8KxG~aLMZ_U$+JjK6`Ch#mk-5yT22cg zP2@zzM1aPOelz2fKd`w)fVeozoZSE40M_Euy5Jo{|4*YGHlec}n9xBvCrdNtWD9n< z4Kmc-y7y=6Ub~0Wx^Fum2LQ4G>Im2X0G1mL0rcEG zIwCV5O;f!=JZ zH~{+nF#Pu^;r_pfs2xCCc4jdx^7!$LmZ5AVzWrpM?(7pj-C_JK-ZK9AamSc;DCHoA z+f@dk|V4O2b!T*c!R39an* zWYdIw-=4Q=TEh=8?jIs5zN7V5W)z6V;>jiPzCKU7YrR~L^}6J4r{f0a4LHH|<$5|_ z(=ntaLN#{rkV)J~fW$-3!^9!$uZyVY;E45SvT`B!SdeTpZ+Hw=G-SJB2ac-uDaKv$ zE^o_8J>|R9^4qB7`DhJIC@tpX)W%8g8(iaA<1;=;!`t*4tHPK!pHAfvA+00s%nf9AFE0w_962 z^&)B6`SZ$yT*umcR=$@ui!fIG{%U!ayUERQp{K=qHYyv!ZK69BBYuFU4AWlA2aau@BcdxeMtV zr|lJP)pQl=Gx4qzZqfKeT|Xu@YzH!n+%w5teYRv*Yn6J{YSitHHyAk{kFBIJ^9 z2Ced_I;l)$aP%y?_ayoJJbrK%1agEO>|h-zrB&LWJn*ul!eK#Y0JqvG=%!^lgzvWt zYk((~->9x1s90-iv|9Ov6Au14Ggff1wCP29_V{m=C6v9{w_GiKe_rU4baCB}WBJp6 zddoC_dEf?r=w%D=uFm_;Jb=N8f*}Ac+7Nw5UOQ0aCORI=nGcM(k)BX^BgTU4fxh{`OBBVqsS?7fp{Mn5Dy42KL1nz1j`ql&-?SW9lqkf@%(1a69Fer(p~c3d-%EK} zVp)yYHO^kISEtq8I$AH!j`wk#U&QC%H#Fh}Hlxtl0L$3Y!Pt{;+psR*cc#qSuVHbh zGsi5uV%lcv6^Z~(t(}_P=7@OgOCUGXXG+O)CT5aUdA^H6olf5!TZ@e?4OU2$@jKir z3hNCN6{4nal7`C`n0A|}U$kM@cO(ime}O2C+srP9`kpPHY>h$1#<86cUt9II&Rz0|9A-$CfHusg>*9La{z88gkNaAk?gbl` z!jw1Cy0dGe`&R2%NTs6W?CGv~ey{zQ<7fj!S$A#;;FlYytCqik?dWLQ!BvT6D# zl)7EyNT3j2$7C!YTxXs)f*l-kl-=bDM>yhPh*I!`cVq`^?)_v3Uo4FFd|wP4zW~t} zYYjloY3vKtIw06uU36a}9+s^|eIk^*Q!$a%R=?q8?DCHS8J(YskD};qRX#WMG7q@H zCn8K5jSdMuQMr}-Sv!8=azWun9 zFZZew)~Q{fzSx_4flPoz;GU}gOc~F>+}RBS|5`@kN+jw=#rlVCbv*%mmf>=C+zmnv z?Rl1%S4TW!L>P*it#MQ&qNW+gARu;9Q@Vyi=)ydALIW9rQ8CQHfjg~@&GjCC#s+p| zhYdB+87tbNwS~%21o&&(X5S3L;sWem+djs-(6qz&( zDG}`?Kukm}yq-`Ky9l<_x}I#P)*>c#3*(iTQ{*f}=kDAZVtsgU^?YDV7wDVH5g zqf&36>zFx$M&kr%R1b56o*PMvO)PhsbyH^baF|mrO+h|Y`6rekqh3345DNZ0fYXrD z5QGaV)tQ{m$Qt)lYswOzsy)WLvJqx#^^ZeD##E5Z&vC}oUJwKa=PgKi9~xB&+sv>7?8WO5jcJbnBt&@ZmNaD#<@dxKM4)4?aC1d_u#0dLsaxLafMD$@Or4M7|X`| zLpG|`r>*|}eEmJ)j$Eh>QB1SX2and0fujIA=wMl2o-UoH3bw5ywbQ zPp)QHt~QvGtrLYvAk;E!#akqZCSI5fcbck-mQJUr)k~StvvF=9ENyR<|8ez*Oh3bAAeC*Z!!Jr@%9&b?-QnB7? z;#Icw@)AtK2Fd{YHdZTcYlps)MTu^xLNzqP!7b`wYd zB^*@upKzQ4dnvHk1zsR`@cte&=uN<#>=as3rkFL(P#Moqh=X5`mH*)&y8kr&av1;m zjBAQd>&OuafieX+?A>&y4H%y<95P4Ods58|rE$mvf^h~KsXIk1t_JuIQba{H*5Di0 z3e8cU4vue7Y{5$9W~vO)`W12n#=!l`+NCR?AKU2%(G?neiaxpR89znRVD8A*S4uljvoTiVs_o|WvuDbE3}Olr%g4sRy~ zMwD|;GS9a#stp?z1%a#>xTs2YC!t#ulq?0h4KzBI=kjnExV|;i`4uI^MXpYpCa<*{ zxJgm!)HsI`5PJtQ^^(J!5|@d;o@KEW=uT^8d9+pCnXIl&c`@1DT0X9wt{#LV{qiW{ z*{avT*h!gf1W+vs5N_^^g~~UpcOVb^c9J{ z8p&|2U(mq!rPeP6f8ZBi+!^R==u70C5_pbHJ8`G}?lk-h#0Z-p_QDGsKG*vSS&7-c zLUXhK12obMOXYEG$eS@l@1yQ|K|N;@9jK6}@D-5k-Uk?`K;JMEhj#OE*FN>iSNb;c zlsNFGk39YVXAO%Vc%+=iLsy#C zuGK&lloa=X76veYlpM|-Ywf-XUE0?2vG_^~+N&&2{>35h=t)RS=1YHf{zrxFjY8xS zN81`_?h-*lVIfo*GhL{p@%;s*=*`o!9Tx1R5^YLf7c|3CMe1>o!4T+cWF3GLVh;C@ zI_>&OF)6LY%OwTds_eJ7r?75u5?)|&XDTQk{t_bqYtp1S^3C-aa^M*C0FQ+5)L%teC9XEto?~|<*vnj((7*|osZ>4Scz$*sUtF$P zDE9m`qUxq+dW1$IhR1t_*&Avf3ESgl`|N|d*?eNL-ai)E3JRR$n?ZQqXONJG3_e=o54 z`{n@tQaav>&x}hw-64(kq50Z|RX0qKVbOp3_M{x!n$ATWpc7!)-&LbT|p&y>F zd#KIRRH37YpLDV;hgbtDz@KPDCIVjM4h}-T3vnCGq!q^L3oJn!bVsNQ^4-e`ZXLLN zoIB3|UbOny=Kj`tnRDf?yqT^+TR$+^pq~+Vxco<9Q{g$!i0W&4kZzLaxBb#P%B_Zc zkEb#^@}cSZiutjqxSWysS}=%8;%P(PP6%`d4r58!VhyJc)hR`KuQ_cCUA>?aieN_p zdfNJ?M7FBt`LnKHs1$^}Qw-Aqb*RKaScaWMtMjZ8Y6DH8yePSJ7$kR6##k0;${Z4} zTa>l<`L)H@V+*lahTbtPv0N=f?7Q1^&8^zXI=C<3t4Wm!-kSqpuQO26|s zefJWajRPXfmFpdL`=wv!Y}^*N!{Z9sc?fNAJ!p^%ehl3+spMS;6L>ok90506?V==LE7!smbewWM5T%JsLCjjxYy3gBNK`g zrJ}Z=5kH>=dXdUlCVq{y1|O-xp72e}V8FT;33s-_^=KUz5EnT@3Ra_?PRgLFtyBHE zDTIsW?okO~gihFtIO3yFu`fn5{RE>dVlDG3II=2vx4M_MijOoXeKJEF%InRPoPCJk_Ra3FRB-c}_0=)xTH#GqR>Nn1a^Tj4=eG#DD>v0EVR9z+& zG6^mgZRpG_*q|D=a6&~-ZX+x^u+;aqkbMjDBjb1G_3cX9)am~i)&|qp3=h|_sC^~E zhso92GbY{?F3ucalM+dP6OdP}nf>#VX9Vc`N$Rk@JYZpqMiljmf)sv~xA9sW?OK7CT^58XndeGjSJjh->N|?j5#+Bi#GDQvt zVj%1*x)Z6!B&5EVg??m`-!Y*~U#>G4)|vo9DcCG>T0;_xmuXtVQ?DwflEJX$R}dX;?e)=o(&zGpxEbnB1Z>J`UXht8@+)4V*lZ&OYS*ZZBTKq9)7q$^tyfS5 z#ojJ+D=A|$IJS76L&eCoMSG`%UMai*%8#DF>AP^@A-?m#j!Xi&!3HvVk)}y#QDE!{ zDe?A#n1nsEa>K>d&U;oC_o|ANSIIql%*}biWKrY(&%s`X(C(6ZqbGiz zyz!zZ>wn$vy`nc8^7Y1QDt!NsrzZb>XSMNHX-Bph>>QAOCTlxc&NANN1Q<2RB6kt! z;}5UKh7x8`W@fTP90+p>*g<)J`!n-~UGB!N`3jSv7w=OLAOJL#LFi>&F)q}rJu9#{ z8nMo^$k-SIc^kF#&S|)sk6U4WwZQE*sA|~}IWVw!#>rmoDKgjVeW+`%);O#lHX=2- zsn*#KXTXXc6HI-mp#Y5>gDW)k)>Y4ol%gfZ?+~fjfDe{c6a)ys6c=&OzJwz-3HvPo zCpPz?kV_O_vws+iGd*Gz<0iX;r7G{7*iPYdLy)9ZV|mtTqv0y##6 zKu+UM0lXHCe(-cabxRz%zwk3jz4s`@;e(f#R9ZAdSu3)#ikEwLPJG^-%hjC)YhjQ@ekReIsYRGLSC?sKlAhO%5UGn9A@(jhxKe5JMm(2xSa7BG}(90>^J+Pj_ocA9Zh#;Q>cb zI9`NhN2^1aO%4)f>Pzivi?`^s2`RnL2-G0gRM3ni+p4pGxFea&z*iI?UxH2^f~{Sfo1ep6tM7<-%s9tlMAB)nJW8W1=h>_UEgoUh)Gas2mpBWlHB0vgY=>p~ zfhCB7`x)S)T;&R);29*uUU|;*hO8r24aYNK4fUz}G7c{DzZ(6UH+cYXe5aQRxYB9Z zBSZ!PR>DUNW`bpvQV{zxy8wEZGNOM)&ZEKP!0W9Po*Z3kP=U7}9VdBi$06!L_;4E@ zNrep(g?&bFaW%FnFa9t3;X|VaPk~glxPNQf$NtTR~=|w z0dTi}v2}X&{EZYANF0HZVxtV@zCb z&osb2Pj&x56s~mSCS&6ezEsuWdynCK)szqkPHr2gtkUVg zRs5pGh~`bkp*EL~AqnLuXu<+9pe+6zkz0KF%KQSK3LlI zoE17O#Xt;H+>DcCJ>1J@AMqaVp+VK)$*a!ZmOr>Ol-d4==u`S7{=Bdv7d3*rt)4j5 zfNj-KUir!rY_N+BD$1dA7~)S(b87uaCemz+gbqwGKbg{=BD)|wrIdHssaHI z2)_zvU>qapV$$=`^(H|~0tpeXzK7m~Loq9%V%T(}Reus{4{BgVehnD(p(iRp{3cNR z{^l~ePYDTJ%~@St8mL?P6SqZh;%TY7t=3oc9Zb*{;P11oJ$Qt^>rSIrW~ zh|{YWKbXcxDR#N8ejMVMZR9o8gJ;k*hiMAF(V686pN%%R9V|fDj?L8{sewl>9t3c=h)0T~vUK9Cf+pqNCjGA_i0Kt_Kd^aNG#u zzvr}~-DiaXS_Ef^$gq5L+%sy09(@{V& zCLXyG>Nw7I7dftS<1>bn6xJELf_hJN|A^Hnq)E9>2u(`lp6kY3?{3!)E500yNlbG0 z^v1r4T@Zb@x>xp`(FjL4OCR0gm)Z|0$eUroFUk2fGKp-ZmeM_dBC`YL-@~9;?#Xl7iL;Kt8Q$DG?lozp`{9<^XvK(UccGE$kT_l zD9w&ba4JfUtWm0x&RF2os7q{@uTIp2awn6+x}WC+GQT;lR*^odR!yskW3OztuO>O~ zlE>S}GoXe+d;k?v)V{niyJ;HN*uTiRp9Bgb6lz}cZTSwLxt4E2k_YKrK-fMNkj@_= z#H$4AMIv%q)a7{6G$eZJ?CzWt^^txP(7XgsBhcD%TzvZ-tt45^em5nl4{k=xcFTs5 zU24~ngP+(1B2>?$UBnfzkj2mcf;m~PI$W`5*sg=6)#Q>vwqKkbrO$Yt?rHn<{Pg%J1)Ij?x{Q{Xy;#j&hv z+i6zKhjKEuYc^b~(TTBNsvMqzl&Jc1AGj&b_zn}#o?Cb#2NkU!09yEM|6nlG}tJ}@U9ifa#359q4hc!_F zfmN9Wxbb(Fu~^&ZwHmcP7~}II`s$P+{azf13{C)~v^Uej%mL)?R@KiL9)UL2l?u%F zCQm*JsKE8>6Tj=&&Pr{_O?NBYyf?^9xBl)tnE3_xdjYhs-#irS&NAWy?0560BR82K z$!+OwmCB{di9cimura(dZRm&fK+JiKxSY!i1j9)R-x>;YL@caO4`-v%=xhEe5iC1U zHf9jZ_E&=~!B?bG+9fjg*G^git54T%?fI~~zIG@&t(El@Z1)}5+z3v0;V#!{3|rl% z^mFY-zqQmvxx{*u4Q|Vyof1hiSy|!guz71%b-I|_HqGVyJz@nr4|x((a|Bv%N@7wF z5CRGhvcT$^sw4nyrek1$!3QTw{wxGTLqZ0ivMmFm((GF-(;fOKlaYQV%LJ>DuXsm! zKnYW-kMR8#_LYme`S}-=_Dj;FPJpmp2KGdQ;s$I7FG0Q~MgI&uDY8#5#kSaH-TBqo z;2jJPA3Jdu5!*1?k-%VG@#J*m*Z56&M@^_=P_VPSfL4>w*^IG)Adm3AE`SAy?w1%^-7daioRP$ zl&WRlR~j;+8tP7eeUkjsQnrN7kcV#&jv$HfQca9Zj((Gb_{kME%A|YPN?4-z{Hgto zH9C8y58z^~SkQLMm5X@BZj6ybfps1np&+>R^=z+Qh+;kqN2H>7C}zMFMstE6w35gm zo??g;sRjjx4fK+9YdH#QTfs5)kW1G7=}G?e%?4JQK8JRCR$>&(rJkqubE-!YJ=rrT z>qB16QvtP;GpbCjc0*X~ujswb258i+l&}w=@1_MMtx<&SvU|f=CpOdpvGe*ZcACJE zCU&PFi=vJ$$k{Y$>lofPko-GI)N0iMEEr*pA*eeNPfBX4a^FGqa>@WH6rP6xaQF~d zg+wI-P`6jGEOO;C>Fia$sD&=Cj61-_4)OP0dE#be9T8Lnz@i-pzZX4IAQc=Z-m)}? z_e!C#bVLJsg%3RQfe#_c38GJ%#I)+(vM!6#2tdj7bm*m6laXYSN;0p)u%eP@jH(iw zROjTb#cug}M#CCtD_*-|C##|1%8J%Uuvvj|uFC3?LiA}>$%E1n6^F6P!2+z%M#*~J zg!&S;XnU*Ko@bT>b?BlFl0Tm(-RoxV#@|6d$1x`Q8OOJiBEWCtG1Ah(pHq$tb99Rb zKFarfu!&#HU7W3m>mK}=jt*Kh#fu;1AIvMixnDIBr?$0W{FJeTRETAdY(Yt+E4h@L z@kbkGpE8v|6_gxAF7KbAp7JX;k-n=#bqOg3AD_m#O-KnaeL}C2FqzMCMCVumqg98Q};$>aP1vWqZ)8u_>yzLS-X_aQGd5B_bn=a zYklbVeQ@fN8Uw6>6l9Y9=}LKWp^l-a2vjS$aPdO6gWSyAG5Nyd-x-CvtA58Y!Wxp( zJ03yI@ET0gP!v8#QP|zHC3MM|p#jx>Q34lB9Sbef(_eO0r;_^M(M7 zV&G~7za!TwOP7;T5aMn`08A6%FnPdsj0!PO|6OH=kgr)FK~XlM;+Y^CC=ZCSDFa^; zaB-j%h6)5AC?R_)(DR9#TvwSmm8*0c64b90UQ=7}S0laK#MV+afa$pk$G)hqJdqVV z^?CvtRB8y==L5IfOnnR>M{HF+dl0H@QPC{4%2v83{2~yr=FpRa@<6E5iQ!&Ra}-960op2fVcZmj7p$EuJQG30{u>HA22Nc?A5D1 z0A+nkLTa)ly8ybmQeJB0Du!Vt?688D^yrfF{f^=laz=P{T~v5cqmZLsw1%HoX8v|c zp8-(au|K{y37<qe;1raf?x3CDHli<@xKdI)8~II@sIex zXcy>--OtdWBT%0v{RB@+Eq8M8yc@Ei;frq-#$#b(>th*6LetdL$$%s}iJkWz4kq~` zXtcP-LEv-AX@c(J5H7S0B_=1Zy;*T>EaVUeQGu5yt^ku%9d|_7bu0Xs{3QxWjON%~ zfDx#+ml7%t`Wg85+zeD&D=p8V<3ap^9`fg2K*zktx!OMb&q6-vQ(BvhRNSM<)2~x3 z#EN(`oZ!J2XQL>yFZg0$6yHDNW65FXM|(cuI_n{B zgOt!}LUI+Nn0BR4RNr-JSDIWYfC`Ayame~_V-i)4qF%YaDL9w3f*b6y>NA9NPC-Eh zAa>^xS_S(_ykpZDPvQiw64o+@dNYkX_MIDRAz=m~S_}s=28Blk*ZM_o)tZR%Md9|NK~HUf7X1)WruoFr@oQZvMaz~jSId`{Ne{)=vKC#xb-4L!<>CTJo7bSk)9GssI- zpyF4OldUfQ2(>%lfV86^CtMwBH%K$h{1|yM{b?(JDt|;yChol>Zh3piRfX}Sz|`7o z$MzTEG>)?+9B4Jwoix$RBO4&5F|QG?9>cO$v%;JM@mgaHB^j#_`E7m^s6^6RLiK|@ zm{b+o^BR2RQ_I(B;fwUjp8&2nKnFv=jyd!O`W7#04Xa|=b>MlyfooRGA{0Z_+3a+F zP^*n|R_S=6o8}FNN|RYes#Yi*&B8(w>S3^*!FPOlq7+&3{Ho}1ty^pjJd?MvHI2=El?)$QY&kP2LF4QN@_ zQ$3A}5MRY4DKzPl@ig$VaBK}5vO@#98_O9pBy%Z(7#~QoUXj#7DYt|&pq7q^UL^V7 zHH2Wu(ZAtVIroR*4<(@EuK_~PKY|mmgD~sAT+E<9y~g8Kv<=Wh#rlv9jvL6+iezMF z9dF!2a8BeKdoJ!F!8`mK_K+3Lddw4hLtf$;F$l7<<2HjxQAGn9bosTV2)@s>Rw_N& z5Ytew7zk-x*76*E$H`;yQBgqV=k=X;{XL8aime326~`g4j(@$DTF5twBRXYOAI$S7)>uhCGZ5LbXI5+`L+)HDdhJoHVE5t zY{&FcUG?N)$V`LDp;u|$j3Wg1gU&zSjNI2Wr>DR!^$K1OI3i$rK&^Yfdb^-&ibjeZ z_X$LQAp_3Jb3i;tKfxG_S=er5XObasYCf2;vm8oqo1c9G^|cKOBH>Lf#q|94)~`(h zmUstWSMgZJg^;;*iS6Sqk#8ybUui>P%t%~fW&Y^we=;s0^G=oro&C%&o%bs(s*w9m z@!hqjKZSYzmNvHgL%uACx(fVAC@2n74|Nw3MOmZ{SdGhMpI{-SBC?9qQ@gz0>{gai z*&&Tixn1v}H0Y4bQBR__YoF$X)ixYCneKz>(o`C!^9PL?z%u_TQp!{>ae@yO}NN zwRjxGV6((o=D|HGP1!-+s>rV%b9I{-SMtJx<xl{Am*G14Sk%E;_y3))|Y@GFE{ zz}gx2)J$$b?HEe&sTEvvKt%>_MC|)5UCc7s)vYn@IPB?PklR`sS&hG58hwbfY)&PH zf8!g2>z;My&SID&F5-^11t~PkJO9cuP3Ad6jjzx>7HKdU@8B%rrW$0Uk4Ttn<8`9^ z;|LH06~-a-gh1%e0V>eAI3uklV+JAC5)_nqb(B!kZ_ejkg@ymOpXC@KylG6puOoil zw93cS3jJX4f=Pz+Pg;C@ggsm=x{?`nk6 z%-r)q4okEj=qgDAYt9Te|c5Zd>9J7mLsvl~n?1B}wX#mBI)pWp)u7 zUsngAi2jq*H6dy2vNGY~gYx7=^mqr~|Ml)y`l=Qpxb?X&ba)zrNov;R<2;r^D<6QJ zYwH11)vWV)(}~J;zCigbu=3@7ICaO{zX>TpvzH>%M9#NT;d7 z7Aka};=+NchmtyGK?MLdp=S?>)(3QyUM@!h4u3z&PHjx7f^}SjS(R<;vbEfD-3D_E z60&%uC3NYkadu-qb^YLIaeY%HEKnke^5Wxz9dyMMxwKwUO!Aalu96ZQ;aw_nTi8mL z4OAb7?)s?W8hS0jf#};9062O~^m=u2k@iUTdV;A(!JPE8Z0Im{?m^A%Bj_U31XsXaR|Q=m;x!r-rDIt5KEGK=F)-XV1WWEJ^QHukgj{E z5eH|XlN6+ljKX~2yQS59JcvF*czzUiT3t;z1s@=XO9+PBAW~HH)&Sjx3=v}jo(T!V zsvt~(x-t1w0ZRnql~thP1%sl*?nw9ktI%?uytoMtsjm)j?6~-Q5Bb=> zXXoL{ZR196*c3^&866k(p_3j9lQ1&LC)MJGf?7qz5}T-@s085<;eIfb z+vpx{xz3me{QdA_H#@eOmWO|I-x~WN9TH_!DN=qF*7zMWfS``jRUaV2m!#TIHwkbe z{3K0`#>-S`+-3t!q@WAHVuh^OMgwVkCA&6m_Wgp%<(3M4*)v zexK!=0HvYddKO|VJn48Zo+Q5eX_Q@t0Vtd1`nnbi^b+R@!BT`vBpQ=56G78M2fU_- z`yk4CmD8YxfE$1%>oU1*Kg0a*yE!Q5|GqnZd@EfE1fy_Is%g?s>m*CFcpvG%d;g|l zBirS*G<{sl@qwF_E^;$*+1*?yBzKB<$sJk_4KC5D`-*fgi*~1L-wTzZE-n)yMMKz9y^nx2Y017KH3V zs9zHzjZ){U0S|=HDVc6~mu7TK5#!4DAyrVmW%dl2?@|q{lSPy^cm&s`+h%XR@=-Vs ze-n}1#J>mv5lWx*<4i;I9A*}7|96;Ts^mg4GaU5!OCHHMCE-5 z>iDzwLGXpT_d9TcdnzmJ-ZZVCoIO3oSmpus+JcEfH}tp4{Iw{n!?!3B*3QI_Y4cYh zI6LZo22d0E1Jw8_hA@ISas~lmuG$QhlNTt1I3N<>NG`1*+E~vR5y0+M3iW}i!o0h( zw4~@JCxuJZhz&-GOi!f))(DN=30MqB?gjbOmFkE}ogkmSZoe=P4h^G(aP>zZeiB$R zy=;qck%rUKZ#Kf=DJzN}JX?>U4`iSuYx`ft+w0EGp?25C+ojlSI1h)cfcc1}v}yfm z#BIq3Rbp>JSoGP2+VMg>$ApEiXr2z;No zM9~gXLu?wAPgqy#SDOGi1msjdL%?;D)HhJNcj9Ui9`&g0vLVw2T#uo!?E|-H?TGwk zz!FK(oGT6xcZfm zJyG(t0y)Jgy2)q)V;r=1vT`Vsn81Kk3XPu^=L9GR1OjSMxHXng1WG2vlTuAj<&4!t z#YR_!G=?#DrrXycc_Ih-`9}(wWAY7Og6N1}UlQ+=2O=X0A&vZ3TS+yB2ZVF6%q5(~2sQ)5v$h{wdB3TQD@wAf`p(C91JLjCphE+V#aN7r!un z^~%EaN(1#<4!=iGLL!OJH=)MaWH-EF0C*DsVv?UJvqnD4?H2j4EYW+?+paDHDq-@) z@n*spuXNg@-k=MubD=_af@kN|mRw`bb}9iQ8dN@45CI0NgQfr(KI`P)m=&stNFp3YzafGaZvkZWv~N|i7of0=WidO*tm8?HNW1CF+;+^0VZ52l>;Uu{J4Ly)dKQX`q>wMjo*4;M3Y8d!PR8NYheNw1Lek1F z1yNv-TZ^eE0dkH^3#K_yttN+S_?9xeksq!uGeeOuT(|HVc%3jc6`Eu)9>5 z6>#}rO(?Ak>tZkQ`0j7X)*t@JdaybvxJ)`F)NSFv*`zTtVsA2jT`V$>EJfpDH(Jey znYcT$9?blOiZ{xjx%Ss0_QBhrI~eW7no zjolr*=i}EYKeD&+{To00h6L6(=~rJR>|6JZx4uXPzq&rT3x^Ep0p0Da<;DuDwDu`; zO>_Rr9mC-?) zwNT@Lw$-@eaVc)PmN$3mWcT*^*2$es-C4VJw6k&dRP?s*FK-?Ex@J0y_x5&H9~_FP z+3V9&k;n|Jnp@v+l>|XIEvdrIW*l95;;;-m^C1%HGd*M+s7AyQ$6{&yC7Mw>5*0FV zd;Z%%Sj|E)AA0$f8Udo!&OjucmfnyG4ro5+DkAy8COt-cWdlHHbwxA6)@uys-lg>iA<4RS$#d zh9c|e1j@xVxrhHkQ?>=|h^zp2T1zd3?o4qxID|)PPUIsXqfoQYqtm~)Kcw{c-6&1w zX>98$lEF7A-9LYZ(r{Per3BKBbv!iYgm5+y`7IU{6H&Q7QO!tIRLGe>9nLRAd@H2W^dIMQoEQxdmC9vf$D=s0v$yC}S2 z4eYH}H0a#W$sRXLM1AY zUR#95xwjZic6jp7ScJXRRQ4?YH(%uL<;zi%f5)6{YR0VUV_yna%dBVhe~mZ%*p8*L zbs+U>QuJddltQq;er4FsCnV>gyq3ZweNWve-Kj6w+>~?oKZ)6CJ!&mF8CUr75gZ{k zK@Ro+$&~o0g&UQ7`ov#s&nSowK{%m~nzQ{Ay`rN^C*>aI+;W&hLhFnX5W$K`T zr5uX|pRpIg5gSKm(ZS!uNKQWI4(W_J{x+9}hgip9LEl5)Yu+yZFz|<>wfj?2fH@l4 zyhB$kt%Pzd89_Epg0|COnrd`CTAV2gs1Mw$ll?3O%&k-7eiXH+z{s`NbZTAtjeFa> z<-JS%HJx){a`&>>>=A+%keUDduh85~jqq`WE0xPJTx7_vf#$nH5=C<_D0llTj6?G8 zvMG&B!x(yK4tZ?jVz);O4Pu$TX!h6rfoN@c&u4pS?->@?$z`5Ym_!8L7^7o6w%U1f z=mw7#O^8P+Uncfzw;%~QmEt?VhEu)k7AhR2y0-JUwa14OxW6LHk-puEsNSodIOr>1 za_C=8(7<@RniiPuSCq)*e45Gr^kWzHgsp}i6)bSiOH`p3rgBH}twEy3=9HAPLI;qF zAl%8*D}JFoaVPKE9un|aRbup({%+pZ%Hefmxz?yrbz?9Iewz1@Ym%gYlJ>dwvC&1| z+(nzReES^BI-CGZ^^1$fH0jSjdrC<)&Mqa%%puD*A*ySn5;y=wt7GIl*-z1Q!~s%) zi@vcz^2nw@T-Y4oPN8$6M<@XKI6U?-U{@U>zzx>&PVN7f%H2m#naM$lDEEbs4GM4_!bqqHrQ+ca1_=e&;bdtz+nfZ%Af0-V)wl7 zed;qkOD1}OG62eWThg+60s!3*67`|41Dv9I(J`8D5&Sq_@5K*tuj9sboZV;cL^54I z0ycW=T{#PySVHONpzTVU%ol@B|KyDPtscB&MIW1;vyY}n(_(q~0X#C79-T40%o1sp zJ6_x7QT()WWFQY5O_3H{9-^)>jzErp^1GL0mUC1powDoGoyuzvB%Z4bSr>d{JzL3+ zc;Q|^=}Azz^OgD2Gi2fDB&Tuv9R&1T0Am1o3h+!oo1s+Yoe5@R22bn}&p$Z_Cg$AQ zz92OeYGOf^FJ`AC#1%k%o-f-Sx~LctVVV7I?9^cZVQI&KUhNDUUW}V;`WMX)a+D3| zZ~I=jO^2%>`*olHE;wsi#K5r%`E?5iTO$nt9M^zBG8EzDu|s~=h*pi@=@1EP(PA_IF*vi%}Wpn#}Q}Ek~tu;09?5l zAR41U3H?_x%uucYi2iATD;Ma6tb2m5ynw&7`(QWtvxR+GJWHAzr-!xi%KFhBdPR|A z0*TTxaiNn~_$1ol>ZxSoiI;5&A}z*=$J1Dfp$ynkbUt_&)#TccAZE>AOqGU;g6hy} zs-_IrQKDp18C4nL-g>FPASyP@F{W#;K7{f(teZ|}yZtO3%8G~G3iDXO_H*lu3EPhS z_f2B_Kavr4aKvW=Ye15~Yt`8sXt(=@q5ulY4E&qDbNYy}w+f}?l|>*Rbc?xt;DN+2 z8DLWU+K)s9+^g%qzb{5%H^$UQaXWXM2NB%TEu!CO$b;;S_Cf767I5<^c~*ZMMRgPI zOiWtLUstz?su$4w zH$Xf_l~j@J{-EK;|lzo!!yJ>TRRvpIAaEwq~b*JB%%nu1Z6WSQ0FP>mES zK@oPc$N?ljAgcxoV3HUa(cM;p5H2V+iv7s5nAn5rN;k?A_7mb)n$eVSS1zDb*qJOp zxN(+G0yxAjzIFZTJC`rLd*#~O6>vl0vfo41FZlfLlfNE4K7JhRTNC}pvl0QcH`nCk z#m2K22eYT}Dso5tCE(d#aTMnMN*vcoSsu!wNJtWwZGa~o8UJPhDK-SNt3t5CDJ4W{hnC039h$&m`%@9kMxC#bz@%K%Ntl5+gkEVg@1CVnRG zusA!mCxy0@JuLCJVuJw~iK0g8*PjMT_aA?u3xyhUtKKmHG2h#S$QcmD{xK~T6VL&! zs7z?mMF?A$M{0c}&Bsz0n|8{8jzqmu#VRFzf}SBjRXYJrD6pjV5GKXt7R|7cw-6eA zcM%MuIM9;O0daUDEr->>v1EdfyGGCgNYl{souX{BFIe>LZCgdr4$-m;yZydKW&4`e z@yPimZBdR_K}lc|Uy$F& z83Fys^+&#iE(Untn3df-NZf_B=Di=G9Mx{TQ&M6^n1FNR##%J`CRPt?7a~K81rM{w zL(Fdzba7N))99_*E*v4)T!}5#pc2`EXi`|Y$8)Kjik#;8BooH1@ z_inBb+?#N_KvM?(-sc%SE~XGcTsJDJ@|KFhPvn2dzco%(F0sUAd^3-%05RFBzm4W- z2)dQLXaQ7nm|OkDu#&m?ttHt3mra3C`;dhqlXpS%ds1<31oudVsgPN;FR7MF9gc9s z%Ds;%+UP@UVW9qo`g<88YkaTX&fl@Cc{GrYYCe%O`F)jviVDj1MjlvI^TBYVTa5y$ zk_p2x4BH&$D^p5>h63?79Dy;wMqBGyVP|fRQY6o_QS)i8`1rqnUb&Y}-%&>t02Xay zKQNVlNu2=TQBfR(1||6dPkE@-x|cfMMyW_>&J|}dcEVFx-Z1y>typ?)KmFlS7hnYc zSm7S4?<#H;skOq-_jrX{RY*3M-Mp%c8B$TBc(93P8H% zYQYjt_I^VWfK7u|A_L>M&x=xi476g<>g*7j@@bdcLH01>h^D4IiXIWx zyz&AzD#F$U(UM+X^{=IuhUa8^!Hufq4nMc07n&)cizlWQx3h7ow6IErdZ6m|JMxh*TwOhnv<>#*~u7miO&0oqm48@GXCwJ3d+LT4CHUm~^Km z!*-JU=3P6w6Mur$T%Q)ScN;J1YGNiuDc9e+8GcO0o|0S$kUZbA*Ygu4);I{40E2HA zM!XgZ8)7b7*F#6^{6>?~H3QQ_{9Wy=23p6% z^%$5DI?y#coSULq4DQW!A?^WCR@j1D)G_K|vVawr$svNGC`|p(+majZx++g-%vZVc zTeiDuio>SwcUclMuMYa*@;p%TIou)IS9Hz5Ox-;bGZuWL6 zUS)I4erZ>`WR2`~60o_oZIzXyCc~0ZEu8(HJ`c@2716Nb;v;1KAM)A-3#Ct7YxEBK z(=Y?w!6>1{Tz4Ym1i<&`I%f6}S}n`{W zU8uWJW2wtVlUFOtTRTh(ooes)7h-F}=mV3ldSngy($+edGIplVa$MukHh? zbRwEkrI{Xz0DJ9M+1~Z;RMnLr`|g^LaS4FJJ;iEcBGWi$**%G23%n0PDUU4@@9fdx zYc?sDImdo31I*{qK~$v&Nm;-OHt=luT9QozgA6oKZ)464-lB5uucJvx zr{FD9RTqj=KU7WV(qQ}2XX@t4SCU>n_>EkUWRW(2?4+LI{^Pxk6@JF1#6f9etl^m;KPdwRJeOp zz$l-5f-;V3S=MP$U|rTVa@SwMi)8Nd0pMYh9tE^%bCfWx!(E@~-yD}eg_EvIwMOwRRQ=>AT=*E-h zbNS?=abcfpulMxKnjhZ4%j@C5i=*dG62K{T$s3>=1{S>cYN?kf`zVZ6qiASRldI%p ze*c5byMAqvCUIT7Tgap4Ek+VWjq)%rYrRCUprmjIn>hCr6ohr~hUzDy-^kJdtsXUT z7O>1JFtr3kGCM{4yBe5&GRf1$xS-bqpFvX_j&ns#qJHe)8AOAD6iy2J`_Y+2XuJ7= zea9&~)>-S?+0$1lk34P$)Myexj>JYT2V_a0`V`m^^v`7OQFiXldq z_QeFVTJxBKdV!|MMn^uO5FCMskgu_M`}paHlfye%`AP@^A>GFu37KyWPD3CzIj0n{ zODh-LX9F>VQ$wKZGjO2#J|KoN92&YuFh?rndklh|u z2%ckUvqB-_nj_9FMNbV;ct=^uC&8V^$zJ`7wmEsO%qaPsM0py6rufScniI|I;fVq& zN?9HAIGkhRFuK)6DZKLC0G`Tm-))i#{hRXus6C!!ro-K8v)dJfN{fvfjSd*odUb2G z49JV)zU_M*&@aijK47vAI>!9i4Un=v)zx0FUG6ljGpA+S8tS||kh@C7R~s%>N^lma zrG!n9@TYI7{|J^*Ub>mupxQ*>NMv}XIVPX03uIBaSaY*Bby!IAbUQl|{fy#%_-wD2ne!Y67^U;G~9D!G6F+ZiT%B)DU;>1aQJs zJr!L_pBRWvpwE6lJy9;D_ESPd2}fJW>jwi&wvn*E*5Q!6Vl@Jj_gGm0n=T5(FWp3%_4c7nJb0aMT))xI6mEE{rZ zChIfE?~x7#k(NK+^#;Y>o;!H{P~ih2;*%5vJHK>G&J(XVRMQ90IyCrk0_H{GY&Z~X z{Sehz;|Oqq5#{Pn<^?#PimB89LCT10y{%7bg%sw5-ONfGzp}|0`s` zZ1s|{-T>VczoHh!cKjd^ku4c;Aih;e8wCTD)-XM?CLULr;P4`kfR8R!W%Yb2V(rIQ zRcIJk^bP+!j)2c6pu)ppjPeIt$}zUMg#I|-X~Z1+f|WkUJ7!~hVR{klsc*ls+-Jan zss@bDK>AMGvJkCKMnB*KSoO`?1^N$j*a|0OB9%uL->N>Ka|m++GT)TvD7B1IpdsJ{ zo+dqm79d@FBl`x1-ky;!vI|0~JFJ~-4?N>Bp~`|m#XPfY&*)kRII2A@^TjsPS@4a2 zJCGUjH^SxcL-rks)j=j63Z}Yah+Y7&e+u_KGQTKrASkmH>#Bg4*}MUEPQnEC+c*M< z0{Slna(>cUPbo9TeI38(Ho?v}CQf!;$WbAVQ2|+GA$>?aF*+@Vmn zz2gPtJ03af0hvItQ_ssUKz%&=mYycup}2X9RT-CH^O%Pi=BTKa%9Ogp#zz~?DpCDL zgnOsOs-4X&Nn&2pl4oS`vDR%}?0m}05C>qYky~nf)(oCWkO@+i(@8S$qA&HF8XNU# z3)MWBM5$9*o|@7&_%>0ylS7Y59lvlAp8u9!*ktmxxr5y1ep@3v>3iPG%jA>nLpOMZP6WpsU;`MSR5mB&wjKZ!8bAfZLJ$dG5c?s;w)PVX(3Mlo zIBErT`V4=@m>fh|%Z+&y{`E&I0%8%z>ETqj@A#UT{4-DLiXx+(vOXGHM`SAn7AO!>+A*A&j`OsNLa?hvdUQ8MtpRFHZtcW9qx3|^cN;V{~Kzq1Ju!g zvGtRKE?sF@?wlI4Sr7tm@2`@2>pqxolmM$H|4>$%Va{&zjDptyLqNR0Lpzngz3H0G zXvj_U-<7Li;otL9+bNU!wiJc0#caV75vv+z#5>2f9YjN(Ad^~}skdtdEJl@n$yWpX z)uxWuHh)(!ToUwglC$~(0>NCN;QLIyzACi-iH2i4$tD9*9Rd$S<0xR3$ObCvKZz~u zy_zPNqORd6X=vgH7*fg0gW^&9oiQKx-w~Dl)AyTcI@se;OT6lG=&`dMM@_S5Q+DiX zet$mxq!L%?kNDkR^$|BP*>|3@2753A`GjR~Z5YQ%MERV1K+ACxy+mQlm7{MCX!5KK_;d@oim&_U|0#^@ zN5gRJRHI2UM5(qB*^oh^hrQG`&P}^b`qbL&spKN=B9}NC5&WWH8ZyD%D=<8p!wrXM zh^AVZ)QxQit1qK6?h3ND-lzRas9LK`uD|FdTo#h(%iH(E42bb=_5N z9`BkVdhe6A)g+(iS`QlhjivfS`x6muEewcnGs=SnnuDe?qxs31gjY_p)1nZ_XffD5 z2Lf0yoo>%9@dj~AblSgt#z2HO6)0UJ!P9A%OF0+xT5hNR);{*v(mGq9N!Ycs>de}w zuBjehS(j^k6IT7yQC|Mp%c9V2g;FM8sG{Rcipc4zMdbNfrepTkeQM4(T*61$fUE5G zq`A0EfAKg|q9M4Akraz3G<3^3U*;{LIE|C}(lo>4erzIHgpPBxwOnNWl`5VyWmU-v z6lV~HsHH5hY{q=axYOT#pTjX&R z*L$koCQ zdvKsY8`W0XM4ohDC%tSe$0W#G2!Lwds1_8cWO>m4)74)R0o#b|g<+2XaOh&@8=@K$Y1wGT%p_GH=X~ zG@6|r|JKg>CyMb@n0)3FEwNUzCpf;aqR5ZEe z-z|QN9SkG7tqb-qLy@bolWGk)<0zdpG_4RMVc%-C`2kfdyHP!@*!=e#dSo}@)`MbD zqnxvGptE+e`5iHi22O; z03R+2Rfu?=MI;O2z}cWF9mA1d0~E+Ng#iWulS0ZMVT_{mrSHPW1V{Kouh~RTAHuig zxdt7f*8r*7;m9E}gCcT0lVcKUre`lwHjTv&wVTNJ?gHeWtGONHV>cA3!k2n zi@)s*ZX@{_v=jPo9QQ^eETvEqlJ>80i3GYAGkZrV)%1+d_)UH-0taW3M;O-AtNWNM zNg_X84w~y5rC8zgIux*EhHG0*78bEbIvJteD!()Wo*RR!e}c`umpbs56Xq)x}o+R+1YP0V8w)!??N*L4iUkh{Go8ZVe$1oX6d=VS+uFG6s~ zu(w z%lH5NDgE-}F#a_Pp+`hPu6yi5RL&3+Mg^xf`Tv5#71BW89v#NU6QgbDO!ZLth!5i9 z8}^?IK8QvGdM7we3-Esr-+uqhp5M8O9(B7x8mYVdu4@G0qszP|koIZB7)HDB+5&NG5ZuyLWs$|wN{t~3?hr!^Rm1&(2{)o)l z6s?q1vtY#ii$pF=_t)@(V43LdI&<-&kuHNI$)}iyI)f>(7upXlk+kK&cB9F-N48j< zS<12Qb348@7B9z-N98QJ0TNPO9FarOsDJTz5OsVRLh8H$=3stG#>q{+;)wWAy|jUi zvX||lo^k~DHexM(U1YLAMys>vuH_g4=#df$5g-h0>#Ls&dC`gH{cj~e+fyR+(L z`-ZtzDkG3vt}yv}s|b0J^JPO@X`4;nEhS&Ii>7SdwZ~wXSZ+?FchyQQ)Lpk-t z8nhtZDYFi#*JzaYvEQW?aM2h&lmmnA z)EIEdV2L=Oy_ZqtF=L%LQ9>O`St-8*lEx&HJx@}O=% zYhf;haw{UmlJ}si`{MmZz)z`PgXil592>?@@JL0JaPkKfxY@Ye{f(C-zzPDd#GHI@ zM8H^rOnSF0GMR*bZ5#LH=huH0(K`Wh5P+vqNU3x$y-C+DqgtQ=kwbVy`e2i6I&<@! zcXZvsT%C2ThCW-$@PTJ=ky`JS?O+E%+3)*A@ErOF6NX%Kc`PNh%Sn5aBGzfWe$t1G ze~fZiQ`06!j?k~GZZ02EYch5$v?jT$aAotIY#$v^P6yNZo$#brynUyymC1x)))V`P z!e4I#T7&0;s4=;$J-VkRYQT9Q$Y$Rkr!k*SwDzIaMvUnoK2uE8{N;Tk zSjdax{_56Z6BMf;id7KcD&ZVL>Y_Y*&BAgQy@2@iqcdeSveR(Z89nvO#BVOe!`HY=e;(x4FXjK$N?bwZ+Zmk>7tfv7}~ zwIjlCO#zuV&muWfUf&Pn3!z>nqk*lhy8 zCv3#E($xc2coznnTx-(rRDGayfAwU?9ioxi{V#nGbC;^& zZhu5Cf$?5MgC2-8y4SDzna})_gXsR>)5}9w^pC)oLN01qgDO^{;;+=xhQzo%Ftn;| z*oW%H%Oq)By7Kkzi*H@O{Uq-yaZJW6P7VE0u_{9Kax)|vQy8iTa7f44+j{isA9vkg zCm2K&bQ@3hALo<^rIs|tol$SVP~GWl&u*>n#ak-I2p73~cTaqWGtr-;#LMk2afNxzgV=|Fh*Omjh2ck@rJs($0I`Rn zGo^!Pq{5XG*~nZ4fh-UJkVOb?NOjMq^4kpO)xnPxKWa@ zV)l{@=t=33?|14x04tXwnykr0JDJOTSDuMl>Che zPKJ>J#$8C?ksPEQ?0wpNwy4k4JRsSxGNg6YmkT+owv#1eW1E_EZW^00^n)yj@=Vi( zuc`(IZp2pIwq<{zg*Bce{>=R9a*K$pLdj3Ci8pBekrP@JOL!(EZiks`pyf=hU9M%7O_-LZ0 z8(bCI3CkZ{CPna5a4-E8?9i)pjD$TaeS1|u^Lv3hms#(wxx(_P#x%1br)gU}Yfk57 zR2USBSKsATtU0!O7uo;ox3Lujyr55-}?H6?YwoKd(^Gp%osK?|J^phy6HKFx*$LYvbPNce#GnN^hac5hp(nB^@DVMlx2{RDvPRg)0*b;RbJCrD29SJ$OrwwtL<#mjK}cy(>1jJ!;J^z< zgZ_8xdQ%PFNq|Bps)}}Z#}fq;zho9PCS<`6^YH-mr1VH=nV%Y(ryYdl*5MKjFhnp` zQH4W~r8RBkG7ho129&&F3Fn>D4?jUziSx2b^W7S_^=(|poqujMWt6fL%}qjR?{^y~ zI|0?4-IEaqtA^BMrM=glmNi~FP2RmvRtpW-STVHMAjQqNjym#N?yQ=S0E}c~5 z;(OkVX5bGZ^nQpZWP>hYo@J4%P@MpKWS{g%CyH`J7oiW2CRog$MX}9T)aanU;qrxx z*G}HNBqFNrrv0mCxKWbHW%%@z3{}57g2U8k7mY7r6Rh9pIJ=tQL7Du~4}CbYLZ_6A ztU;g}T$*Rm9E&gU!}(lpU4dhR-2hbDgkH--V;ZoCD)ivz7R4lj#$_FTduey0{+HjzmzjEdS}hdL{&WLFdiX zzebrw^)EMPvlXt4LTu<|Es`8=J+HL%KyQc4BNURX=&B`xYXk*oF)12Zu)Fi}7Xk`L zpYvX-@A-HX7rExpQ=)FxDre?Rvhn_NXMU`KR?`=R3 zcX~!e?ct;*?FO(tffB_72b;_z?%$K4MqWFpiknL1NQi-dS4u>BO- z^%yiHL`IKT5GNYS3h;9wX8A@*{Mv79YKb;L+SS7LORt#YY5Zk~V{VQ(u7>~HfBCPO zSNZ(7VM$|=hB8%ds>QDQmg!$4;Dy&XT-DZb_gvigMXd(GBxcSHM=)rDR9J1a(+lb4 z>Rh2k{!JvXhJcSX@fz>|*26;{_)4}>an#i-?TFeqLoSK}LjvsNdk9NfjsQ52c-JH$ zO`(*ViEJGtZcME@{sR%E~$SeZ3byLSl+6;cNwk=()ML zYHteamUFpsQJOuA?5Qf3cU8T$@6qgZk|_?hnZVcoHL403F_dDn+j7J^R){77@jlAh zmgR)7r&8+m1nSi-1)`;Z<$aVbU;ft+*B-um?aLd-Ke^KG2pr@(_}sD_F6{(e4Du7! zz)w8&PxAQw*>B`D3`Sl z^co3%3?f6o3o77Bw0Ex_o}>IRVN2HD@-@tR%21&-2HA4bY-p`2a08|_Ibki{@8nKh z9J$w;DKG`jHi5~8N&w_udfHE@>%rZrLZU4}kh)f#2KP0LI)#d#1+hoZIkGZenCS=h zfLGu=3l*LiVJ8_3 z?g$)%80bVHoo-K?czQW8uNJ2!iqd(=t_km`d~Bbq0X2hK739t@dB3pudJs++L#^73 z?wkeUN?lqw_OZpts-{!jHN0clS}+hVFa|0-6~<6QMK#<^6Xj|@q)eZCCaT+|MHf9WR!b$}%6m-#GU|)1C1ZwIXfN^Yx`WGcA zGCDKcozg0usc`z^UA{#K2L1yXbIyuQQ@Uc2^MM}ks8una01zmTmQv;g#UQr0Nz6b1 zqt8VR`YOzA2=UNjT6H?KldufQia{69a?}>6T9|AQ&oTs;P|^0ZN|*OQU@Fna5d=et z%4M0MCis#k`jJI-+13DcCB$TP8UagJyCau+yX*J#mMg+*`|vOZgvl+??eG41;JNc> zZ;RiJu(iq-8r6|Jz6w%so1w0vVqzn!*vr1S#ui5y`50#5=xzgeW3J$`GcQFpsq`$Y zahzW}N=Imq8GgQ{81gJ@QK9jNpx<9g>KfbbWj5o*RJ%zbwSEg)bgSJ3sq&A{fkHE( zwXbR;#vy8xD;YUgd|c&ihf z?6m9y$P24>FAcZ+-l9;W806j6phBmm(?@TB2`Ky@(@J39!7EH*k$I0+3kp4TPgEoy z{vSPzap9Z#FubYFYUyBMBu{{6#t%}cxVMMIyuW3EU(3Hi>z~Jd7f3;GnGlu+-V{HLCO!(yTI&-YtaPtB@0Z6GW)!EiqEUAh&j_^ri zazI(5%tY;Utp=&~&mbsD7o_b8UJ^vq4q){DR9w+RfOxN{Y1Qv7+11YAaj<1fTxGn! z7gjvK>m@~EB^YDw4Q!A!fKM#Iry!Xs0EQJ-IRbT$&hLRjD?ehY3@(m2U7uA|?q$yT z{nU08#5)EetmzHFhz@fgxFw2KGpiZ{(Z&iXT8c)cXtzb`yByX8RU_lCNKb>vz<6~% zctm#4dsRJo?{^)q$Ye)fE73PhG9uf8k+yPf#zdy&2S-K)G zT1V5;mBW}NG`_`^`@u5{-Q#x$`Z?e_RyI`jK^=#V={@)_Djwp{>gC_M73RqgJBKJAaf#Zyoa}fmr9(Tjh zhkVk5V|?RiCzlJcvbv}n0jP)ih0Zq;h2Ey%o#-yZpT~cjF05rk{C_s zDDMn-ksUq5N4x$Sx4PxWu~Z7XFZ~xjN$Z?1!Viu(({LsYy!F>&Pnaw4KTnCBtrs#^1P!OD;`O)J)^LFn&}eupn){?bPPM0T+LmTWRitZyI!55b zURrC1S2&(VJ)wMg4Hv&Md1fr1o4$b~@yg?C;MCf|%cni`vw1l7#lF*(_vSu_mN;cY zczN}sYiF*p%lF{a{cLz4D0i;nAF%|*F3k>nku2KMG%=qJ)&p?f z=r<*au__+CVBFfxE*V#xb*;R96Z)37BCC~2qluKVPTzb8-=`hCxQTij_(3G0Ef$R zR_DvKx2RWkYw3kuQlc)x^&Z$8oDl^uAX(LY9&OM?V6_G^q7SD1?P`w(|H%1RDCrrF zG>XcK(WSi)kWyNai^Zh&CC+M(>@Gh<0i>{O7;U`-Bd&mxbaO3nt~!LIt^n!zP)>;g z^N?s89422^r+|c`P_#wq`=2XgFcjZ|tBNjo6Ou#745ApCIwo_Klu-d0pgI(*D$kd} z*E&w5nd~70S!{u3l5m#~AtW}-&?Iqb) zm&~uPox^)Si$03tdjqenOihd;(Py~(R!^ahb0eQUxpnl{_jbuO`q5z2K3M~&-L*q) z&eb<#%zS-h5!yZ8rxXAf2!9|eQ(f|r=UZafNQi;Pjw4}7p>lW0sS3MlePRd7aF{YnJTR~!D)}#A zvE(9YoGE&-4+3b1PU%pZiv#CQ@?lkQVjF5qpk83TlfQX+L(5-=fxr8=J{F7rlt=2$ zf5aQT@-H>m)ca2-f30QaR&3+(`0;#hhfn5eUP_Jonp~L|EfQCa$Y$eEL?e!fq@Ae+R+k30<-lr!nTw4C@qg?IW zC&w>eyz%A1DnT%n^af{4+jZR9-L4SruspD_ftGkQZ%qD|M~x?;4_@7GG}uzrxfW)D zbJ2(GU|}kn$!OYFJ{CqPVW7k+N7n;br+aUfb1Ug$wu~eyL^{7zv*R%yOwVolT_CIq zFKdi{A8Hys7;u460elTmThShkWQy5VPd#~`Vf`l=tHs}@^fB|`KcN=_Un;I$JNEe_ z>|Q=`^2TE>q?M=H95nD2px`Aj1JV(M_lU8RvEz^OIcXHP15qNsz?FMEpoCDB#H~Hc zj782R65#JYPm6dV-`Eo zPL~~(+#Dyri6m>8J$E~`B6Spxavw02DIjeGRNHrtqD;-G`!amL$NFCS*QW9N`^tJ7 zl?^{!Ezdk9jyT=vhEML@YWq$WQ@`?t;zK;;2Q_~q<6UK|I#prC0P|<@7IbKp`QpCm zz~&*8$jQT^m}=AHxF4vw7}T(Nwa`YQq{BVo5m^_1$lcYYd3E&VB-ADlgQ&=`;gKds zv=B9^rRtfZBsfAVzFM5Z!s263u4gs^zz+xv zl5g`P&_1?AU-_*d(2{5#_Bt9 zPXZ9*-3G&n8BG74_yxDdL9~X`xC>&d*rxVf--(c}7moeL>7ll_+!k+l+&$(tQ^58> z!HL^WRFMLWGOSey!86j466nlODy6YmEXCFps3n{qYDntj%m#gIK-F$+9G;chnGo{I zO!8W$_TicC>s^$f{Uw9yAglY)k4k>e??ko0 zcUCs@#>%Nt2wuK%PW`h2ZfsMC-tykbJbyH%j8T)I3h1ECAQ2Bc9N$LWZ&5+C`L?pV z30kwB#Lw>n6@<^3OQ4?ohK*t_{|WT1o4sg2;d}Z`eh}`Ep8V$etF;dAVED&0 z=)dPP-@J89F9EAyAJ;DA4R}KxXs<-2mCE^cBRF}rvlTRT37^tpO5CawN-n; zdBx{EdEOE`SOh+kzLYiPSOP=#z;`qN^Hfv*s{bMUIb6K?RjWa9di7TD(fRTL^9E8x zr0R0lQsvwM=sT}7THNlL-izD?7q}*Xu(*&fx;aVL2C6I|EM+jv)37N#adeOKlVSaI z@6G4GvT-B9)WUTC&BfRBOpoM|<6cGCi!*kv_+2!611o=~KRWXdriOk>6rS|mx<}qz zV9Y72`NfGR)Mi3y#2?w8LZx!9Ktj7xSbZSS?i5;xKV=?kWq1H04>IQ5UqQvS$a?=T z81$*mz6&qXGdcWs{IenV)+*;pX~vHQe{fy!W4W?op*+z;IpP-ZjQd&%*8XhGhWu)I z-k=Pg=77I?UNz#iY8EY+k7-6<`d*!F>2Tiy1)_s4$S$>nbMos_5_z3g}mn5x;VSYkZlV)qx>iVGmQfNFL zK9GkKjNXq$GZ3ZG+MZ(srnHG#zz~XZSxvK7`7_y5d&XhUirpMsB%@tGaQb_69_UgB zm)qf+8lT9@sv{NHB~r*4mzZ)Xk2Ead#E{kRt$Bm^6x!G-I>Eez?Z3;Qt595@h;^H& z+y%JnphOVtSr|VnmymlpWjg-@^RhFqURMZVWwj?FofS{~_vI=HBd!bblY`#DOa>?(-)$x~)@QAL=EpjVV@jJdb$k z&3ZaqM+7jn6tux_OvfQEq1t??p?vO<`PQ{pK;2mx=9B>+(}E4`@ZeBOIatV&nuvv; z0SdcgPlOt?g7nwvF1f841nVdJ<0;+t3l%7>$|@)3hd5c7Ot)Ec0{++veuqi8NCeNw z)iv!)jY0KVZHD5PN+bQ%gKb*LGigih$fM#S zTY)_o$htzY%+AKu8Xld|Nah09`)i;nr!Wk5bSI^dUux0FFpy7&6{|y9jPIQet<9t( z<=t2;Xd5HjXW8{bZ%N)rvy=Mp_R=PaNt3(=DvCX^LblD9s1yS@&I^u*$NyQ zT+cOiB?NcR;*;OaIjlTz)QD$**ry9PZSti3ko7k&`4c-^3{QUYW8ts(bm9uBK$m(7;Ba4(AZXFSnxsNwbgc`?+)p z`(Q0>RwwMa;EUJx)XOY-amM>sj@z!fDGl_Pa#H8w{S66RuNZY0;-;8ZBcRcf$x3x% ztTFTcKf|AmS7$%^7X)~tlo*xxn?Hi8=;Guj-BVdk!ecTN8GVJTj)fd*}jze9)PR!Z$u4+;Z5Hxdnel2O1byic;Z?>To{wx8y! z0st~Z3B?1e@-%!}Oju(*;}hk^;+z*An4iLt1eMNcPsGZT>dsYv?ea;0QPLBtu~($y z+Nd+GabCV<|1}dYgIdcOBGDpuJLNYxc5UdAkMjbJr}KoKXf{Izh_ZkUk1mkZH8?8< zX69#;>SW*#Y@Rq%(YG6Yv*+DZ2l|2(tg3{{D`f53Rd{XY7<{+$lN(f|UVYgxR4bIO z-mRo)Sv1`)D!FA%iq^c&3ClCc13l?2ebT?~4?q8rsYC0Z^f^q!j}wu?*Snm0yYd0% z;jQmeDIFr<9EN0cR1VxMK>MhhzT}o*`4C_cjiE_%CYjG zBHQNv8Kv^mx#(z&wxP%PLzDkS>*@P6B}=BXAai$^&$1+Oa9zh1;q_K*q30*BYMt&o zguek4|BJ8zp?a%7F403@m|Ls56wnnknV>P#JfNyIec6`^{n|4q>l*g4$-}2chw{|{ z-C=xY98Q*%fh(s*&W^xCcGN`dO%ZHLSgvI>Tv&j25{G^m7g^s9mDVik=-1z3k!a+P zw-NhqCk~&SmY+_|ejoFhf7yLVD{reA#edIw%&&1KN5;ZhZ2GC`Z&nTd!<-_UjXo*= z-?BU1IAL~4Z96!>1H6+Ma8EV1YHm<)c9x4Sms-?!x8P_f$O=4KYih)l2&4k96$qWI ze4|;csDPlADIwgTR>_Ap2Iw~LZSNAe-{^leNqTCsvFgXBRrKqxoqwNq@TwH9u6R-Q zG*uu0j^_xE(+SvVI(@!+8P(P-sI6U9YiTG93x&E969=&d!*>@0U2p`vg-ZNBOn|PS zaJ*Amuzfu5c-BnHMFWeY71A#AGyye!GsTrz6>R@X=?#?aWqh9y!qHBM%B@fCnP9GV z`6jK~Ae%`u`X{fN@)CNL9N`FH6_iq@BWv`mw3?3Y$S5zsgH{7CVgVCPI4%jjy-%l{ zELs}M9>hxil561fo=yg~<)U+|qVC%p;6O>ji&@*Vc!L`k7PVcN6 z{UP3Jhp#8!u-)v+V5F!T-;L-x?`+JoW z-?yJ|c49VR5Up5L5)B;gUPq#UJ_HzSXa3P!Ba3Ime&&4 z^dB+gk^mkSN}FFLnhzx`VsPEx@XheuE|K~P?HN1m)X5W*mTM@bsCL6(qsuQjP+U-B zga^)YMy&eIx~@Nu`?H=@oV&%kO?K0lxlF>40%yT=fK9Dh0`V|tS2c>8BDWfSlHAkd!VS`Ca= z_jS?dR2rhdvd%hQ*8NCi#}!ITrK*Kvq5Xh?_S=xQDjqwxQX=2tB{yvz@Jlz^=$s{C z`Q2E#9>&F6Zb+BcgJ)In=RNwKNY;HPl5e7KfA^^Bqz$^5K(vB2r!%SlaLHqhnk)kB zF4`hTgW0(P{M0rJmL2r~VsQt~?$5oFcSiWL?VN&RN^KmZL0(8whGZXoYc`k`2;uk0 z#8V$gS(MXiHdzxESZ`cWRh6(2R4@9RnK=Oai%9O2gUhZ#sKjzNjO5asX$eKQo1V!T z>!d1JxZ`)c3j8{gkp{*nej4)PZEn~NC|LYMqJ5P{VoQ+*k^Yz^vRgrsMt6`wo>E?n zt3R4~p=|a=QptKeLwQ_fP$`rr$F>I7 z&`%PhQzHS*gJ67jK+)2a9*79_M9?M;nF^6UUUE4MI_8ZD&B1L*kf0`LZ&Foe>LU0mEN>f!T&9UV z6XZ6@FXr_|IM9=#?0iukjraXo-(dB4{lVF%zaOM@4C>rVI0VEAQMS5ps2u<914>Dn zmKI0gnwET^9Kc%~rkXid zuyTSoA1%=uJi{7#e4o$GbR3u0F-qEoiaP@+cY*XN7u+yWZ9)_y>pOtrGpb4J8*o-| zxad8J+dga}bg||G=t2p!cj|Nm{;@BF+;a)#)Nc=)V z%1sKe+bjn>>HYOh4qAc$h9PgGoV|a0^yqdb^BwB)ARwWnY+P&!FIDaqUIhm>LKRz5PCx!IIyN?Y^ZxiVidP|9#1yz>Lr7oyTI|XS1J4Wic`dIb{=U3nA~z@A1}Th zR^Ec-Pk<652Ldxh=9Q{KA5&5mNZQaI(4;&1VJi6|JuXKxn2mT*+}1~nG;>5&?%hA6 zN4Njfb1B{}^7!Esy1!4uTYsooPP6s(KIK;Ds*Uyqb@LV+xj3G8t3cSQ@*uLW2&UwK zFg+?NP+hh```o}tPyY+%FTqk0ov&~hN^Q6jTL3A3vlPMx7l(6lUw(>OC z&9xW#T}qY@;T^_@<2w8C_TC}1L4R-vjlJMjfd}pnw?vJUE8nXS36F2+<7vi3Wo0rG z(T~YZJ5SC+fTBE%#b(IthMk#`hKL*iK~HQ(Mva)<*;!;4RB<`u zPX=2M5Yjt=u1%7X@E$PLfA{&#lLt8?^{(YSc`lGC&X1+gKNfl2zq4&WPRXkI&W8K) z_4?F5Yfm%pTu8DWxtD(FX47@)cJ{rCVa8WWP{f?UjgQdq`h{c}oT%svJX^MEo9G=M z$ufw;vN-)G+BIpP0TmZEokfuF2Mq)amIYtInxlba0CKeH2(GoqYJqJgdaX+JSj9KO&|~Zj79*CBD7ubHd}lYAkPqqshbptXa9zawS#m^ z*n-IDiN-kV1_cr73+Fb{g$jdzTO(LDrk-*3!IOjT*pfo2`h0b)``ZudsD-eF1`P}_ zMe{5Hbj0MZy@$fr451!Us8jS>+~(Lj1m+GVDb9mrg`A$^Xz5svxCwKC{S~GVa9KMb zCmNIFyk9x}>DWJoLajUmKu1~LqNh;owkVarM1dJjC6_e6E7C!iWp_c|l_02^T~EX+ z$vI>5?#6+0DMP$f{bQqlQrSJTeX_iBmVSB(PSvL1Qhy+)6G54tARYCI+lJ|W0jDbt z6mb|<3#7dT2ve1|tT=M3ZrWR(A*Af5%Apek92(;em%sPQN<1+)<&x`3ti zGNAGy1rN}V7w6*F z&3hBg;}?(q^y&4}Z|YC>&n}+4dO`v-={3Z)!e|p(H3<(mcOo4Dp8t^v&HeE9KPV=+ zPl~Ui^!KTYed~E)l8WT<=LqiF>RzR-vxp|S6zKfwG?1P%sY1TkP3b(TI7>nr&M^NF z(2-0^QY~f4P<2jK%QT&4$Q^K<&|U>6$c!%%xL9yv8qxr6o}@PF`(u$TB4PG=Pl%uq3BxYe&+IfhZ=12 z2TX1Gkvv7)%R=_XhA!c^O3?b2no4;@`Ni+fq!`bXSkdFVN+^X2_|}QC!FJo3v&-be zlkC_Ya^e1z$QmK>-FH7PAB-l3_iESeUN4hx9^o#0Y}IDF$bkf#$09Hav1}fu>r?PC zoO=i3;xbaM`$M~z40Y{D*=wLT1DVj$Bw1Q&5$P#wPjWsI2uf3V0K zL&MaiZccqqjs);Mljq&Jx$gI?hmr+I_9d8r#chV5)qc;eHp7Xt+27N1< zfu90}PE3)Vz!U>QhygHdRZ2@rNV_K$Q<6U$Ye@X#vw}o4MS_F5JB~L$tq+>H$#5YHh9qx z>+-)+W!55gXAwHhRC%sB#Y|`pbWp{irOx*C2o=rh=to$TQz zG{KL_t8DI!U}vj3*|aA_!RQJONcwGICysfO%~X4P!Ys<7L5u9t2lM(m-d)~uHQZ|H zmZM5D%Y*%OUd2nAJ!3T#uW%=bonhDUcB*#v;al@7b!C&;fYRxSy5ef=w&a0K>&8z^ zTNBo)8muj_j9J3X0yWG8&+XokI>}}C*E}A$N6nmCL(llKUdaq%OqsE19Q&31C)}SU z=WR$@I~$FX@pmXC$M7L-DFFW_{+XKzu{j0go`Rn82xvqK6x7kNAP8baK_o^i{Z2u* z!qEtG_uhZQPuIn2aQa?V2Q9>md|D!v4iZ}l3rSuXGMQrn3re`Rk(?W?pD9Nc(?>UO zKHjb~33|jlf?&v%2w7lsUJ0ZCa-}oYiIg);zfpAXD~eS&WXw&%&ewhKgZVNQ)LVEr zQ^P!BX(P2tBG1DBg%t1k{ABp40?#p$4r4?)>3&bG3lT97#C|`)9nLx*0>tXUo)eiB z_%n6D@SKg)p|SNKBnoeA4_G8?3d$bm5Hc=KoMObcPUc)l!?Tnn#CnboT*1DmpqB`TdaS$I*VeSz&5F&KJIy zg6QS1fAVNHs>{CEo2|c48vgwI{r}nc5Bfjv+;^zZb$`P9Br7=b8qQ{M4-0NXdwf&X7b$T5=DT-x*J{U( z;rsll&Hewd0)KBU*}qs^VSb z%4($#9#saI@}bV7O2$!AU3F4biLu>1wsooqyH7$21K4cvYJAi;ze82;EfAsaXCXeJA2s11IgQo@ z+MjcbZcQ{~cFHpUz+27e$&Op!S!*|9EnfZjt8uuq1DpRK`V*63an{0UETtsNdn6U& zBMMA0{S1jF`W)4j6wz>h5qk3Mt<1-gDZh87$!1k#g%+W9&IA!LLdjYJX3@rl=>Akk z>$@VTrwAxOCS}AjPXrTS+{*JvS^KZJYFr0~AK zs{P{@c9B~V)<0*B0{B3C9Rl8? z0kPp+X>g*|ny zqPZc14uz1Nb+*MvjX-j(&+$aHs1=OxX)e1lqkU)?5P+Pqj!Ni4i8L#;RZ|;wqhsZ5 z4{be6SEdtdcVBmePQ|{N{*gOVmHBRFfql4!_mGI}+Y@kDX`K}LM^(G+-}5n+1z=PH ztn)7WTc>i@9K*$(-GtEh9>P)hZs>>pHrXgYf2{1nfsph0l-v2K@;e-p;i~*FQv8RFhk8jk9v#zRvNiCjXClFE1~TX`l+|0 z$D^FU`Yrr^9KG{Ol;5AYO*UqDgbx1O`v%spC2UxxzVz1lmm(x~a?3hyvvdzE#Q?GV z3<<78_j6uONUyX1IaD@KW21_v{8wq#%t5udJ5Y=9Yi+@AQ6I7t0yx*tM%X@ahP}bA zpH&ftF6eSF@*Kj+Uy2)U0Z{xYWI}kNnElu+qNJ6X3$kvlmya3{QC1KaB}z|~V&)X$ zh^Z<;UNs#>3LB?X^`PGGsL8)kk40_YP0^ET0orxPbKpjdq}2?08HC7h?{{F%Ck@GN z)Piqj)-mfTupmGtb>|s&0neAcLQ#u}@hDtTVs5)|5t)h`UU~(6ORb4=8eqek?Kj@| z-?z2piJeVDv&~XTDO5Vt))2bd`PeF@X7kGJ|1-GN$j>WYpIa%_&L4#>16!*?db5Ni zI=0o|HgI=+YQAZXRz@DvzOBrbP2&mm+e&-H9(_jt_7nQTwzQ|;;dNLk6wbC@9cB43 z7fR600W`j0iT%$d{b(Z}#QH<6PCkaaF`j=u0@FWzxjF@ob(HPM1-D|_263V%btGUQ zK~?E4W|eq_+HXsj%X@K{W-t(amwVe!BT=)@U!*E&=w?I_$?O~?EN4|0TvYh(X-Zp= z$Am|MEa+}ww=YRfj39xIvPN2BGvwOUibJpIM6Obj@cGLPZlyslM^UPa5PbqgHt{R! z$HACT=#!jTdXm@xJwU?0Q)V=qi^8XKLfE^*gr*f#MPe!)XhUwPbsrI@!o)d99|dmx zbc`OQy=0U_@=9f?)+x6yZ)Bjci(Dy{w#Q!Dhs>SmDUpBE9;xeL8KZqUR}RNsc!pb| zdmuFwo2h}ak2C$?+h4X`#&QBZS{yna9p9b^;}Rr*Sqbgo=?}$UBvq8e#Zjn68wIDH zX!E{uoBro;H~S;>AvfZJ=*35gJ{x)#_dWwZ5B(t4|B9mlqh0R7(1ruP*@rZK2WW>) zMHfqt(eUlM2vi|g=C|2Xq`va|@oMIusp;#w4h|LSb>9l;Jk}ZvyTG`O@C>H1%XaGf zeWU)l_f6hqKieJRLS~LxQ7r` z?vHro20r#boT!m5K|5sR&p{!671!R2p&4Q^nxKdY|J3Bvb+0I@L&o(54RLRz-LB`g&gYR64{_1B<=%uJ zhjM7B?Q*!;{#<&=^z*GhRIIoE>}&@L=1{=sT2}H+;c+Oh2zq7>hi3eRqFl&)1d{oFjfiZ(uOVHj-ezc)=e(;d)BsqN5 zkHi2mxyBnjMvEJ>8y$ejqyV5I>nw+tdA-nmGms%-VLlx%_`Uerf*{!gIF;SSchfPM z;9?r0(?x@Mo`G1oqA6)#N88D~9K%t_{3uDU0l;2oUT6;JiC3b)3ow-+SLW^1hqG8l zU%}Tz8K0CHgUM4lJN}sL+`zw!0yEResSHzyU-xl&)DK-)zpC;ZAzJTRs$vi&g^*FC zfoE4#j}f}arWPgk-C0iiX5z##banaq)$7-*Mc$#?2a6Sk6h_NFbY2TYsbr_^rmgDm zY77z7JVa5C92`HKZ|etw*j=Off$kBC=f|_6MW3vdZ7L1;6-koJNRUPeW$*rD0O#j{d}sY$ zq`k}U$3Wgpy@U4CK00*#975Q(xP2SRKs2$+7A-YCl&A%Cwdiu_7Y}7u$QfezP*M#) zU#Hlv(?(b#=PfWS=cTJJS_~khzqYci*ARE0xXv7hR=3WjyFa}7wpx|sgXc4G*wQUE zp%9W|H?*j3wga3tbLCg{6acwy?Lj3o81uAx6%@trAV>C?r+2&4v4UjyM|B6r1M~p> zu+Z@yQ`(2`#-H5d@MwRucz$fNyej~KKOy|QgV2rg1GnN5IH{YI@h((iU-?wMIyC0n z+oA+qx;e#So&o5;;4sz+2TW4;d&?^|FLh%%N4M}NX#%XcyiTSW4qt|D1t5@u`9*RB zI9J`s78~~+Kqqi>G?Hy>pBPFsQl(4YU1rb3Vf~+4Nl=srBv8kJVZlA&vl^k462hf} zUic`V3!MLG`zwR^&u-wbe8-^!k(pOIXZyMYOonle-%^Df5h^wohyh6fy+*Uhqog&4 zK#4@*Z68W(aW$tT3ug{+;1m5aI4K#Ja!l8?%<05590-r0F7kMvFZWuA!Ozz|QF5@7A1 z4_@eu^vYV#| zn6h&sBOe8kx;qa|Ge>ZVNVS$R7EjLf%r_xE z$IilI4c{PI)a0`>Krkl`0;w;Bpb*m!mJvm`4Ak;WE0e}{K83{TZAqAF*(nr9mXgZXMPqG;e$nn4P?ZcqRsC#>PjPyJ=NjIRR3zo zfAMo*NwRd92-WJqJRJ$tQE7%bP*=CdVj({%87TIFi%{b)(W*Zp?5W1C=lApCrPBm= z3D6p3i6RlOqBj?c@J7lM)4(6QcHEz?7GLcJZcjNO7J$YxTg&;*VZg+DRQ@My_@a(O z6cmnn%rK`Z8dMp5GVKqs{EvhE*VQ(Q1TaiOEt|bEfe%ZqFgYSx^KU5ujgfd4>YCT= z{ES?K_GQ=}`Id^oAOuJB(+h{m(v`HB__cifE_R+&X;S^`Ypb_5?mQT(lwO1(eN-g| z%sR4nc6Y#STh7-c@gkjajQe*ZHnvU@=a`t**b-U2Hq5Tp2!EC4Lc5vd-!HgaV}2>m z=V-1$K_fcZ!U*{o+$G+9ET)+usyX{FYJ_fj&~RdD({If)bJ)m17| zC~5S$aVP5o2ctXViJGX!&`}6$oHcE|Vro{UbZ(E0d!2iu5h&?UlCCZNTjlk=ee)tZ z_T2!QI7fv=ip0($OkQ`i-u3ctfAfBjXTM(!YVhFZQTinZTOz7&m1rtKp4(XaSU5l8B zKEc9-E96`G;%@tq0g8y9dzT&7`bBy&8lTzfW2jsee>ez4;6YuFGLokrti#H!@rbiU z^7)h~{-7%cs9z!~Edvo0OQ0!4`lMzcMv3JcMCb!dn}>TYZhVShp>~C#6ZaKB$dZAo za_jQpi#sRJ-kKp7zyEmf=sq$6Z`Cf@6>7Dl7Oc(8ns#>tEiUYW>FF!msz_-X`9Qa~ zNr*`n{ri@dEb@g4ZE`+X;sPzN9aTFL-q_l08Iy9I?mLrrQZB?&9ztZ-RXht-^fH)8 zp^4O!M4FHY6a51#NF7Nq(_t6UMsKyH*Vsqa`Hr#=>&3w_oQK!ok;gWgO0Zn{3+Q+8 z{y1z;oc#hL@J}4qW4Hj8GALX4QCigDFooHcrMxX6GS8SPr*JV#Z(`;!P*iup&%aP4 zg`e5i%{K39svw&bS>>DPJSfZ^1177~>yjutmmwQL-}(nRN?C`zwHW&UEM@1a-%m`) zfzcECJo~*6H^l5{TIB|N#-(==S_N87f*#lzH3c?Y<8#sINVljPGE$S&wgoD7EsHtm zWH1LXu8l?mgGm|`7*}WjquVGZ8r@QIZBdHdX+dPunIQIH-v{QO#H8-z;x1)$i;a#} z348$0)pKAMslY@UQbx$&EhU{Upa&h>Nii6gsHFyA0yU8#8XXcQog67!?U2JCxY{_5 z<fu&<9KF;ZJ~Jm=u%~S>{K$u~$*!Dl;QZ_w1Pj5)u8t1tOnHS`BQWZf)R8bGONzOUL8?w56uPO_50Z!7BWL_4>t(isJL7( zKYs%__UG%g9Tyu<`1MJYa;{$bb1B|#0s7F!wFkg$Z_V%E1!F4S@GlIgf$w!O*@1TB zyWy<|F$to*7kmZd2e($sx;nnRGxGl6kHa`&_s?Eh#vnrd6iL1n2(R7GYcWiK#Gq?P~_%>$nK9IctuEbhK=hy}}Wl}l=fsjXZnyc-pO zhR&b{N46T`s`~?rWKH*^YsvcE8A}^XuIjA27{%zq{FV4k5~@dbE#RRGJ>TAYRdrMS zvO02?_=`-FBF;&!9ilEjR9%>4nZ18KPzQ>vO{c0>4h{I5UOMBdEWHk+<2h6@N+zU*GN+7ICCZ*Uh%=AOSM<{W8{^ASPL+eD!WAwC z(Vy!OL1~9?XWqf}W^@B!Eupr-;My|eV8C1<3%ddX9_R7i0rf$2Itn;FxAtoQkoY+$^X{)I_p=M3u@F%63;ADrW5l6+i#G$RM13Y=EEZ)Hym7tTbzpE>Cvop{^83a3tzZPFn3QDMi%+p-x83OVcxaa;QDVlI#t7F{M;6eUb+56;?exoSZ zPq)F1rtzf^9eRpmGA#h@&X;<_GyhWC@^!eXJM(P%%&Ua$dog@L$Ch^Z5m zOf03OD8v%|Q0`gaXMRB&X62PSuTWI2aM!Qz+fAQWYc;*apwtcq(SjS$Mr&ZTHovBe zaArF1G0yFv1(KHPP1YFXUyr1G7yIwJs?~=buq#;cr~U#X%nq(Mm{oAR3nSZrNAERB z4?te=3a4^K?dZR#jG=PgBxiNL0Ce+9BimB?=hQt zzr7xaW{6W?a<8ll@twg8u>hkdDj%ejdfC=4_98XBL3S1s^>13}|GZ-xg1dfXR`wpC#ODXb_PY%Dh4*q62!`$h{*@v+c+E1sOQjLJs zl9<0f6_hZ1Lj{49z+J8T1h5#Fz*U>AGp9`s&UutL0XIe3U2H+~B(7~)fq*q(#XOO= zqL~uvzzNSZ>1wPMjKWz=$twiF3ngv?`Ic6kfoX4oLLWM76M$~B6zpQy3_ zw;nfgvY(glBg?b#Ffz>&oWB}??KypXCQvhwBZ_`{UT$RpKa^j2CLojAaGWe|e=>vu zZ&r|DnS8lP3iBvX&RUhzg=`QuvQYobW!mmp+oLtiHIan`N6m((!H9YTCPuASP7=9fVL6qwtZeS_NV=kRQxr`v$ z{o4jpP}i$K{FVR+fO~-jl~6Ex*|wc;zit1PF8yTvkbGk_Qbwd2d=^~M@~x$ zgrERxIv{>x6qY}A$hZ*}&~NfykJP=F+PBfUYQr&k$$57rQkNJ_xWAZF@O1;92;>%4 zkFYoTrZAczp(Spxu0?=rifyx8M$IIHj5DnQPwFFD^^0T(#LL&PFwVcr2+f1{7eNZV zd*MM}jhTK3f8#}@RP^Asoq48Ux;p4uq`29v=yrv*#L)z&Ol$JjtpD{MdrD);!OJ4$ z=;?%t(&Jj510-6Y0U9}os%Gr4AU^+Zk)f>~QCHI%>Rxyi>HB@yLn%P)=bo`)95GN4 ziGTxv4Z;MUpaZzzpKVw?fBUXCYzN0EKp}D&N$fqe%+Pe~&S!<-pKgG;o(&4^!@y=8 zSLdSn47fk0o?er4w`}nD}lN$;Ih(7X5Jqu{3OjIOAP!igDyLTUTEUuL&#>?Pll zk&LINP#oPMN*KU<;H`UhMME4Is?39LX>9yjTi`{aFdE8<$kd3j{)|C2^xh3AW`+V*@;sfuA;^?5r)f@g5&Rg>qZaNx7Utr0NIk z434*5&Ak~F?dh2*s+J(uq;8FTS)JDS(OEt}JwXV%DuFCwMySEBblhT2cIKX{b)4Go znhbErewqh>=l3MD0~ST;g&!lPp{I~JXF@1j-T203k|-!a)cGT>;qjA~hGy{~hAqK2 zE@G!qM_T?Gf~P_Xova5OuJNqLC%>@^t~A^J-KN-^D-uWynv=_QpKy5aeUEpzXcu@P z&@rROXJqy$5f**%$+Mih;mfgDMdHSpf2cEn=}hp2Aq3g&rlHXZod%9z5L3t$9Wgc; z*>o;dyr;VNLyTx@v}4lqs}Oi<7w@ltblh$XPpPq7K-Zjz3`A79&1?iI@1IBA18!B@ z80pqu669^1DSp=BL=3{5teX$cL?TbKGI6&;iCd~TLp639ToFI03JSCjpR?XGius3r z>47&n`<8!TYpXkChtBQt??Nh^G;6>{2ArxMusovz#gs<3xD}JgjCUITK`e6>dZsa@GkP^=DS&iK(Vg8c1 z!)*K%1^ zO#m-RI-yS=i+)?^gV9n&GYqwW?^yrCK&r^jg0hqIQcIzZh&$oN zj}~Wj9M$0@v`JfqG>@Jk$N?UL-Yr-L)ld11^eUVAl6Y&AA{rg&210BOPBXw(L;8X2 zV`rFRz~=X9iDMew;g-5_UR@lYn4O;D$1h%3K5^snrX%>;Ur4$)2g<@#^ds4ncJ7iP z2_Lnr9PWRR_dO;+ zOJwae0Y&FA)oOSMtFu7|nz=|l!(x}$KP#0fNnO|}?qD@8DTC-cyRDMSAY+g!Ev=>& zz!jzax+eD}j(Pa!eHFwwAOFTz36O@@BRB* zme6u21%13a)|JG{b6Gtr;7<)zX*_5t>T{!Q?yx<+j9h`zOULl=b3Phuvdw3x6 zmM8gK^qkgU8eZ;E+9}b!RGquxhC#s(rN$#o}Z~oQhk8ET& z+kP?)-tKHK97K2~=e`W>$}*o|?=rWg@+%;CR71goEe=CWWPiTOfrEu5a~t)_L=*&y;UX zGWGdNuQ^u-W?qUrcgmt-$z0>{RxDXxU~<52f}~-7fm|T(lgmxWsU@D`Lt1oP#rzDV zoc6k$ZCcc5WgH#M2EH-_!26WCw}OaT=*@!Pkr^aSMeiurQ`|DXt=-=B)s$7zB5fh- z2MK?n;9+COZJ8zL8NHL#0|4%pv94od!xfLPuKgs*x{U2Zh zQ&yK7?bWd8Q~BI_KckKO{X|+z_fu{ZW^9#ON*+6;TqV7l7IbVJ1I~N`B!@ST-G2nH-`|!ZSX%VhJJY|E|ZjiNj6qguUF5 z1^p4NWDC%=m^VL(ieg@ox@}6h)q1+CE#tCe6~vaFpBz!weqP@<#!}}lrwcKl)tYQ4 zOPXn18e=M`@rk}ya4xi3yaBuo;{uh1s#fyRKbY78!R;Y#N$Jif`@rj6fxPFK^5F~0 zKnyg3NVHjnc9&kh0ALgZ9Um6k&-2`NEf>k==gt2h9PJm7n~Nz%5Z6b=JO}NLuFqG< zZq+A8%ox+B(C|k}5eUK}EL$LIsfK?HO3Riaq*4N{Jv;)m!3WC`8#uiUD?3~*k17R? zG++<^klJCc=*W>8oEK4aKce$tIhlsqgNNY{d(EO2OURHmiWIl7O_=igmx0-D25)$6 zg>aO|kN;m0G4`GFA@1E`LddL$UGQVBc zUsvllGHHk&6fjY6SL_53f-p7+v<#Jhb!OnY|1j|2;-6vEYOh&2>P-CVF+kf*y?_9gluDz-cn}S!ne%>hSWluyk z?mI`mu3no!DNFA=KGebx)R)eE%-&%x+#h&Cxam8+aZv$}s;0Th1#>ni27!&u&|9XD zZ)coWIE zuo-v|#K|X)^?Qz6nsxz{+Hrz=-uzOoynXG;yGx18(A6Cy%7h3wh^zNb)*^+JWOlQGnK0j8a5zupu3zs355PHWj7FuYNJ@Di~c zR6X1A7z_T_fGG^TN<5&L&_&M!&;Aq!5uM!4-U9cR4Ic8^f#S+cBH3~b5{D)R2 zKAlFL-&*^8d3PDm1xVGu|b)qZgbTey*drk)M<`z7I>zsA?x*5 z>kXdXIeGNfOe6045PonZQuk)sGxO8qle2RjnNC=PRupRfOU3T+OLJ?@{cSRS!TwV` z|3S1ut-*`S6Ha+hUM`~P+2N$h5}#tRj{IclKs9z9a?_-l)FcJ9to)n?cq?dSrWA?$07QjL zdDCE0Vv`l$?!6VhlxQ z7<83CWbZT{b%`>T47f>>`dzu?sW$vNHN#rF*L7%=L;Y%*_|5svQAWx6ElHuId)TW@ z9DjLtn`RGo^2fE3b+Y_!m59}I8>#xs!|FpMv@lhW0qYl|u8^P5pYKC>iPk}YsrOo1 zzZ?rZn3{?nXK`~Wy!P*Ef>28g{vab^38Z-E2k>DPXZ= zcs@+@&8V`$8j1-UXuD{(JjER6@q<+W)cNQFU3M=2VJWu`mN~s2mM^E?5Dlf$U&%(g zON>XsLMagS-}M|k@;>;t-^n(3?Xfq^a1VuuKkzD7oHx7>>E+`#qfdir@Rw7MT$(I` z{@Tw^1%XY^on$@oEc@eKp#ugL=`=de-D=G|G;29(2 z=eN8o+VK2RG}P8%hLrM>2^(nQuffyNRKhL#;pQxyfOQ*qe_cd`V}na4BuATCK^R{f ziD*giU2S^Pb0{+^A45eQ@aoa0Y2rdw$l3W7`luoMI(XWmpq$@*KIEbieatZcs(0n9 zM?d_r(<)tTRGAm&b@wb)pWl56IDab%)Zk`QrG7{Q-_UX;hpwgGkXDkfS&iCUoP(pV z3@_WQ9KwGvX${pJaMeC7!~x{mzM=!5P(5E^jUqjTFwM@3%{!KC4y<`*DtQYj0ln>@ zdUIz2jsCSDt1TQw9x!KOu#ww2uj=;p+@FTG;>+lH?QukJL0XpKw@1}0=*4?lZ#1)& zTMXS0Gw_8;VhL2Wu+a*lj*BHX`4d2H);fzR`h=r^u0if~_t;OlWZm2Plw84wFLx%Z zE*1Nho-Hn0wBqxDnP#shr28c7Ht6;WoW6WxZp zShGJ`-KkbIAXiJd^7=rrShzV8$s7jego~A#U{zy6Ql;rEW511Z{rJwSO ztID3fA!?+?eTd0>1@Nx%Te(Y!sS4Vh4AWBEC87`Y1DYHYi1>ds>nH`SDAh-AK0qk4C zRn1}|dv3=>Ge78mBBrDcm=)QvpnQ8S;H#<-s5S=uiwHV25B-Pw35HAY{@pqz6ZY3q z#!rTPmAZ2h(Rcq;txCI896zkQ8lH;i$@ZJ*DlP#F(RKQa$jc`S5`=GlGHCK`MCu0$ zqI%xCSORnzsHmh}fO1*O-43#ZRwtT>7KpdfIvHUHE3)X59rXyLl`1I{EDrD|TC ztG8&BGCNl$M&{tU?mSPy+o+;xM?M+y&#zM z!sb`uYPN1(r)oks0;a!@3Y~1y-UhHEp^*w!xucuG)t3T#B#ri}rb~2h=k(yLE!Ur= zmQQikuShq;8`kye5ltXzqB;D^jn}C3>M|1Elus1a_lo9f-NqGwNX*Icl>$7zDiDty zYz>TGlGT>=Uno+FFHrzu^n_JAXbz=<5J^L6nzkHbQ2u@^A&!Sl_S!FbtlEIAMFUIC z7Q$j|HK2s5ZKjU-I|?kU7nTsge?41ZMHm<86ji7yGR`rW)Qu!cJxP@{5*h$n3a4=F zX)F|>rhw{El_F16ewD3XQVbi)gL0!ykNMf3cw{ID$s$T0G+92D7O5Wk(df=oCh_zmppbO{OpsH=+*r&E4WmE$0z~${|(80vK&D~ z)V-2y@CXCO_sdVGdGPx7x5_}Xw@_d=U zsG9WUIT&cFB&@Yg4o;OC8k1lK86Z)vsI66+tT1bQnUExjyg5yh**|&el|rMsLUu2X zt_t6AoVrH@U~Fr%R*ws1w`BtLm*Prl$yy3H3(~hLoDENJ0%*aYube}Z{7kq-v@?Zi z>JrwIm*AM3ni)Uv={agmjpH%iXuqU@_>&jdw_ZF*?rq);NZ>37GgScn9iUKe7(q^K zH(2bJzVZ?}b+P%qllvGGe0!#pfPPBr1ul7s`)WQdy;0#?NJC*!S&`cRxN_jc>Pu(e z>Z2yE=~4C&R#@v86pT_F)~W+mvCeL?_Qb%*c)S{59!Ilg`6XP5|q5ir>6XyGWzV~5 z#s%S(OH+5LraIfOn)d=i`W~uHwG4>5npVnv(ejxQnDk&f(k-}mvPFY)i{wn+#NtJf zR&GUMY@W@AxT2eeSy*ok#_ck)+EC9*p2`iC+NacYx}p+rlN6p#smK z?i*VQHIm0D+-f^mkt*)9VHay%)VBQnUOOX2MID@t;tqE5WFTC%++DBgxx^me)mCtq zSzsS#_wF?%SxI&eP<>005a%=}wdy2YNdo_*n=Jv{C1vuG7=hL3vgq%ujUxkCX{F9- z>tW-L{%wgr9o~{=VK}3 zbS70S71QL={vo@k=5hq~Ax$bSwt%d>{x|;v&TPVAyhAR2n~`oaDp_C<(-I$LSt8~) zZ*lSkGAXwcNV*_(4n*HavUsWPu9;j1NizhjEfLbe$DQK4UHfN!o~|7z->d6)x-7Zk>F;^AMFy#ovueRzHYZ9& zQIAaWhT!^?B$w@z=E=&UwWIb6F=53s4f*fnUny-?y}q`yO(XSz1yZkcRV7v%fSIk2 zt>CpVAQcLIe{foYi+txB+qHyJzD#n_2=C+jEYRZ59uEDxiYA+viXh+!%wIj!4l@h+ zm~4M5WMjRmz&45<{K^@wsG2rVAdhCUOK>zFb*f7h;5BdH2)DNrzVi9w8=cuLCn^h>fG&IcZ!R63Ee7bp2i6dAo#WApaQYesj5C=9(D07riBi%fBNn33@ccXK#d zn(U-%mAbn)-VSQJJ&&!5;m3(tA{5U$)lWBOkbt5gUSTa|K8Zf499oQeO7}e|_BM;= zPdY`^an%K5z0Cy&sJX~-P}8JRh1@KV<7ea=XB!2hz2KLUkY9Jc8NkiKme}>H9NuuA zLU-!+zO#^XukkKyvFTvi{jSFC$aqccgeL0xeB0L%CZL~MP1L|kB?8@2jh{Pe{jIEQ z1$c`V!8t-d1%mi%4tIN62sEiPtSrn_@+M^!Ht6fAU(%Jw4z1_v3 z+j27g_qGb>|K%S%pLsgf3)@e8@^6jrny>FZk>atx7T&<{`GbgQum6$IgeGcX6wyDL z>5z-ycr%vA4#ytOW}^|_h5J>64uY^SFnz_ASA(&!i> zw}D$X7cz)IJq|anS=jx*(lxFk8loG#6yZd6TK31cJqG{xpu-b6pfz$KcCn>5$fr-ZkvgALtAt}Y$XAhI4YjO4ZkyXP z>^GJ@&ocGQ)x?U>W3t%6`lWYs%)QBVfb-x0(j;f#3&*V^o4#f#FipEjJrC=S7xAqE zz_ZzNv2KuE<#-z}!;^RrgljLy$`727H&iiom={d5VM~HLW^3H)5c5VooFJx%dOt!| z$!vTM-?nocu>3pagw+D4?%A|dPDMIlS&IcIS=1A@$yB#hrJZLaJ^!kR9B942l>~M8c{g!owYI?eQ%DJ%sc>-qsliW$e-zmBR>Jy_v)Esp9}l#`b^r5c(`yUUL&hQRXQ>24Mu zk^Bc*Ystu$yd};g&i*UjaqrClNBKJ7U#ae9NPFsRm`T*VH4k`I%y!s_-KsQn!+Crx zOHAp^iXpg;nB!n~CP~q_!dHp?%)-{)3Ao(Ov?xu*{*&M6lh>V9U3Bg22Pnwo{%lD1 z^j6sU z>`S6{ng^B#L`CfVP#DTgoS<;%KG&qeBB!X}v{tt;hEiLlXQh`y5m;yuhmDQHbogJM z)fDQk!}iUq0&8{x-fP*XX{Tk8dl#bma)Gm{KRbT-icMC3Neo_}9`-CZbxnlw zo9Cz#f$D-82b;W8jyBvZDB*epr$MX~8%ETZ4#)jjOSZRp}8hDX_UDc zKX>zh4nmO=3lipRTSy~KusGdNE?mgi5X z@dSJ4@VaHCB|^}ElIx1jbTg5coxRk!w~ul+=sW}XfVB}7EC2xo2%EW&{=LBgX7rva8DhL^2+v;+{Hh0 z$B#e;K`(%ehSI}6UAVag~KaHo2KiEo@r;go}Z(5o6`a2f(~abHIg zg$`_;62ufiuW>WeJVVGKkw*P?yEmQU#aVxe$LCOdQG7IrFlwf`KuCgU-O;Qtq=j&U zJA8VBd82=A#Yc0`oDaJ%;%h)ol!)dwiKaVPkL-k4Qb9h_mPtu6=o`F$1zhOlDUQIl ze3$Ww_@J7~GF#yC10L_uEwE6<)v-@6;1qGeOjB{|JR~bh<2$ASjd=NuU42%`R zfX5H2mJWrq^ACy_YEl@KB<^SQRbI$3(viylyD>LIi(_5*A zJhPFQNplXfSVKNU)h>fDleOeSRArrbs4MT8tLFjQLfT!1Me_L~QQ>OL_arblSH0{V zy}=t5Yp8RHUHJ?`MLmzzhujY-L!zN!(xYp_E8%e-uf-t>L=DX~P07uaYNx)YDl6=Q<6EK${ zh%-BbMJ?e=7f#~ib3;gi_CJeb^TT-0B2kaA8B@ZK%uEeo6C3RjTbg7ioIuWr26bO1 z1L5z28%D|I4j>OeIE?NE;84|*1w&b&pWU7P$MNwF^A*`<%ao&hJ4onn#>ahL6MvwA z?6l|-B5B|UwF_mOl+2*Amh;YWkr^moP$q)A07-@!i#II^3DMLkVctJj1i~C^=q|Bi z&tk)az&F;&p$^|wu^ql;02&&!ok-=$i3VFQ=`8bM40%Rr;3~~#FkJ^%OhaA0cw%Nk z$w|P{WfYS>@4)sYrN$tnOim7t@!~vMfApE@X-P46c$-sJT!lFf0JI3o|o@d z_89%`WtsvDeCk+9HTp22$I_>w@;y5{Cgij7ZT^-(m8qzY12DmEzckZ(fx{oZzq*&T zKRwEIjszjMoChBA_1_A!ue$|YUz>$v@Ao2Ri`cRDC&Sji3&?buE`7GtBmX$|=r;5( zi>FYPB7}b`uClHQzLk+!Wdt0)OU^^Ae)^r94!AQh>0hkhV7h*l7Cxtv|XpeYN%Q`s|g)gDW%Fo2eQArbkDw)gO7VQ$&-7 z6fP;rU+Y)YP3miP3x^8gj%b`Sp&pEOH8G-vd+oQYtRKjkHNSIeWz-b1<+aOD5ZwO6EGLS`EomuaE?+t2;NclphMAG{g2$yoEU*mut-eq_I4 z|KQJvT-_s!JP<0}qiQPMHq+-^g-^vFP-ed(#1YYfI{LS!L@)YFIbSD4mhR+!<|a?A z3|z9{>NQ6zrXgwPU0g%Djx7hx&Ck{_+jT8bv%sXuMP(aHOIj^*^)_I6pGW*9;#O5U zMsRW90bw4bJ+H#NdW)-&>!B)Cx6!3DWkfw8FjT!RRbBo4Alc}P1oUWLynrN z%+(MM26lntvr9)zFKq2?lXk$B;6a-6jm`ApwE#;%w7D5Aq_`ObBT8bZt7fE(r^hq6p=Ycc(O(!-^R0X3 z`}?)S2bEtN60KGNd}atp=S~r;QaI1^u0tT`k-19K@(HiyvBTY_B_cSua>pEh83d=muMC`5sFm5*%FU!ynWf5_ zl!#s&7Mp0%T^ADb2Dl_4iY3v0cLDo||3zv39$l~wAr@|`Miwu*r}#@E@QY)P4gx*< zIsaasQVox;Iep8WaUe`w#!+^`0q?ymzgj^-4A8lp=wtY>O+#Wn1pZ2SAdhn`58Yag zxGhv27efHD%|fgr_KfE>^3x^LWFmgf;Gkfwf9myly})|)!@BE5CaL<2FA)i)-0bDk{4ch<)8CXyU-SI}X*(}^!uK-&ajc;X zM_#%GDL$3eK!&IcKps1ekV0BpikHkri_?fXly6oZs*magBD~L*sUfJ*+5e_SG#+bO z8jr=J2=#%3y7!R#@5ayWOn>X%y%lU{GCyzjgN6JUA*pe`_gk5KHdgW=D32_6ECoykgN6@#obF@BhKZ?&8;im8jcsxW-X85TPClq$m{F-n*WMn z68snSJ^r!2uf0{?f9}G{zxa+IAJ`6QCHlty`3~RoMbq-^&lJl8-F_D00E)2nKg3Gd z9cF1zU^|7wKzUm6N+>Dw$V=6?P&LK_w`0QbMr7-$3%}@sIQXG?K-X^m!+@@2=RJd=Ja~s2BEdhO2jx4d2 z*khgxe~|Cdy%N=~aj46QQ*FNgcyw^P{5?FpvkMy-{hED=si$kb;%rpRoCVOgw-R21=fZ?E+`w4teXNsoW2H&mtuWq=J9|ECT7&_{(QAsqX36`h$t1*f zV?~kFJql;1cU91C@;0YY#lI@*0rSf*3lB|P!@gk@_L-#V%M)f$TXZVF^KUEi;HLYWf zmUpt(agR5PBYo_T1F8!V3b}*b4wfQVqmK!}`wy{DKaREW9TcbJdyX(7qTyg$baWB=FSAMeHKz5& z2)naDsFV{x1yy7qGpGPFiDInldMJ-e!|mCZdVn|(GQbgi3V)q%u$(GVAWsD<_kS1d znZ}F6w<0W9sjvdU!<@?uj(U`xI5Tl+gp=cWA(L%uXDrgxSa=+HSRY^_Uk@zk*}~=C~+-6{wkyqHgoO6}fH`_pp0L}iN~w~ogCU>cU!`dlI^M!OXurTLii>^dadg7WGO zE}&7(C_te8oTxjpuvyS8*uWu-k8tv|eK)l=hl{G3h{G;j(Ljd*pK0)O({U@vv79cb zs|F)IxfcPekFK{8B*-?>zKJ++73MsGu#F1ooulEv?LE>VJ2ILEH5YU30x#eg{SuEi7)<%HwC<2$fh>3qeDe}h(b<| zWoUfI>S?UKxW3{&(ND7^{c7zz*4V6 zNCuBUh{jS6lf)zr34yg!)fFVNX9wlu;f7T`tl;dKs8?zmm7G2Cs@XWG=nfcDeO3%BX~4to+yx z%V%f;QbvUhA>z`WQmDWps%X(UFlOQ=w0X?t?{o%1mv%IL_U;$ig(|W)_XeIucVLp%KBeV$Lt+Z3I8e&_Y9>f48PLS5gE&4mY(UG+-~ft zC4+2+Zl=?upUJW zc}rLyizVG4BhxIR*?$iTQj*fx@H!Z|>)HnIcDXn8SJN0UMHMTZEa-Z`*5$4pQt`m} z)b>FTM)*?3ZmD8vW<|G66iZNih(5qPO=bK#Q?<(Qz;X?%5m;lkm$^wb$C5xbI6XH0 z8{2WyeE;In>>)o_<@|U>NscXC?yNPP^;~SMW*`5i6_7)vX^d@{Q%RjOSr>h`0ojw3 zSj{6F0Rz-x4^P@>f-RA@vQ5bYX%xd}Tz5Vu5!D?Mv-r1|jQCAo!Y!%6f4O|YO0^Bn z`>18Z{%{_%&N*x@gJp;DMRIdEYQSvU_i7*Nm0EiNhSwCh(f2%k{otYuRbCb0O*C_Lv%}7{<(WmWPPa|_ z{**^`O_~A}Tf|3G7wFWt9;JrzhqnDRY-nSI?_c{M2HgQ3d7MoXefpOq^0+z7i_qIR6BkHjfs&6~=h*p=RKNQO8($uIZ8((+hed_H{L$C6INS6& zjO(sogD~k;f%A~{AUwS^*Rlb8si~&qS3X|u>eIcmcgN4H)ssp&mQh|Z7j3Q*JSk%A zmhy}(3IHhJ(az)>A1Vr|t+LVYv`Mov#-O$SGa(kCyvZqOZvuw*jY|!MLL&L5S4fK8 z9^!fKU<(-$@Pyk)*8=DC~wD805C=Z;MN5`%Y2a%I(rfoa=Ijx832c|*E_87|1w)p>yRS`HuK;xCjxfdC3o@7IT=dB;DNA%=j=`5Nb>Q^ zwERVmyC0xe;U-=|Z6tYD9lYn)YXTSfyp=rUchG=p!^_bE5w*bt=8O+kxhT_xMTnE- zKwX&`A$UjxuM{56A1BU_RZ3yR8`e;x>I9g>1siSE`Vr3l*PAyiwB&@GOvP$xZQ5`0 zY@<3gxc2#Zac?a3d_!@)KX;Hi>aknLF48AcjI@IlcmTh^WO4st2VxLIr&pco(mP#! zyQ7)fCgAI)VOcCp*Bw;Tfs|-lO*IIp#DV8urk=kRGMzP=4?}*ZfK5XYZxA9P5zB}y1v558Up=W42-^@wk$D*a5(Wt+SeYa>5AGZc@3mGPZZ)*2caDrup@xD4pN zhR{DCZ|Hrq9>0hx*%C-qQJ#$_OD|I&>6_7`Dq2r!!7r10@awacg1R-sE8t^Q`UEdkHM@@tI2U)#@a_e>vZ#{^8( z_IOdxh3*v-g6kd(Jo<5~kru)1F9X5Yyug!)3#eeCqj;Pbd)n+NF}>PrO;vBh`Ba=q z?Q3X|5!H2=nngKc0oVi0+}|XdUYVm^3`Xc&%hutUt7bc(hQpN#enMP3^(~p^6=Fg` zoBk#O-ctB)*Rxp~YL_L@44a7OBhPMp!b}{yRa3)cS9_hs3Guy)lX89i0N6!zbj{d8 z84^n<3?ZBrhO==A)Xcm(2p0tlY)FDKqdd5jvVWvJ+Ay>^dhb$uVa8qmfN9@J%?gPqg)Z1E_7retL?{BVom%9$imXv^P zyr5(uO1Yu%PG+2Bx+~u=LZf{hWneiqq-wxWCBBGCL1nnb2Oc~-sC^(o6btk1xDxmF z0&)Bza=3md_WRG)XXC!(Kt;nbN6dy>btHe#a@MZX-idID%w+_k4}>BEXhXg zdwJ_!V8JG3)W@112Y6VDoSW;|w9xG+8EInU!Ptf6@+>Fh*>z}=g7pA0&XCfAwyNOQ z!Ppu{i1$aUwL%&~HYOiha%bOWL>tb$9Gp#FpL zZ4MMzp^NuNfWA5;@wic?=XpJ=XY^^i8ow?%Q-kh^a`|xPl6!ISlXp{agjIxiQIQ@@ zV>EJYJ>{~hN7$)%L(|IH$pRseS?Xf`Z$A@HUgdEw!+?9dlSeL1ow|gYoXw*^w=vtt zLcMLS$uG-#;NEN(cxeU0-P>s^SdxCSpnoT4x{HU!x9lIwU39B~?4xk-U;;qBgJscB zUnhak5N2Li^2NZGoIlsaMHo`8R9%S9hvl>$mDp|Y(`C}k2ARiQ#I#7K>flVgbL9dwRnct?=Ttaa2!hSvs*X zi*7%Nj}{(ZyL$Vfy>S1YMNLi6Ew9H~PN80H>;hUhpm@qZZ|NI7PR)Y$cV0|ltV6UB zv{veG$`)m#w3cmhnn1JsSNkePrzq;HOS}D*wtBMpT75C#FOr));P@1PomR@8~5`3MpFqveaKYFDdEy4tM2Tk z87QC94(vXR!Iw}?+CVA*?2vAop&4p{%H zuoDLOs22z95UsS+2RQvg;DsC9O1b_VFc%n>K#-zO^MH0bo4}5AW_j4u4*HnD(m>Tp zf0v|V3H%gj%#@a|suqoKtKnFU;9026T~Hz=Rn?^Wv4Hx!p8MQR2CB$hy&>P++Iq;3 z-=?K5^Cf=^6pa@;wCaAcW3Ogmcf>S~HFwpJ3ks<)Vd z$=)s35u017Q9t%9Q4Iio8w&2^h8Jp>oe&eU;f{>1oi43SN4;jfUU$;qJ&63V7CFb7 zD<>p(e4z?OZVPv=o}%*51U=0Z0SnduS8CS*yWTLVHv0{xhsfYE|{1{=OVM7ODs-+3k;SbVz~b~v4P^b{L0WLF+6A;(55^~U~G1yFv3 z!wNb<%y-Gx$UnzCAW77sYER&Wo5OS1;7te`uPd7){!tANfx4Q?_%?QDg~wJDgHEy+ z<}>#zpu?%&`UC~uSiX(O!r<%c^`r7b`BqLhp_Nn9FT_RC&AEosT*sdF9~l?mPwd^< z7p*5gXnRsDxbOat-r?n=Y%0a;&dIvzE8#FszeD&W8JJwa-dAa`A?nCEq(TeB*s%*B z?8Qrf+Ni>ccs`(=D0Mc^OwEpin3DIl*GYvPXE)@H*f@5I(JoXAz_aQE&q5&F&P(vf zHGCb46QmGEc%#Z@^yrNF$2Ig)?zC^U%sX_wIjQMnwXqAMCwH%6ULSQP;UI#g zx7*rcXK|Res*M5q+cHINmbv#|42YuIp-FG-1QGDh37azx694h1eE_SUv@`zuQz&!j z74ZXpsWF6B5YwG(Fex(4h%n}TtqT3ixu40BYUh?*xzTEkf;cBpT2>(=0!GoFF*rJ$ zgGb8R%3bSh4mNR=?qZU-v`qtG2SMfi7;^4su&O534?=9lMd{-50cDa>bMD_IeoSxy39$l7suk7@9?lme(&);eFyc4WJ=kUL9`K(iPu zukC_q*vm~yJA)>Rc&oHSe5I7w{3J8;M`;X~(r_pxnEC2iIcTkncHC3(V+qInERX9} z!O1sBM+x9vig0gZZNpdUoBBOk)Df3Yb95=!g!mOUz(rs6&Dz*E2GZ`s4zOMm3AetH)j55 z!~(UaWGj#PO+@`ANx&e)daO=UVol;w9U&ZFMEQafzJV1Mg} zFE{nU;llWB?kyZn{A+pFRxMb#v^87hd*~znDgudt{beQ^P%E4o7z3#;UUN?cp3L9+ zvQy{Kl9}^`-?iSxh7Gd`*avxA>jq0d0CCREG?ICCjP9`6JD``wUoK#G^m>3Q^pZ3ftX7q<*tQA=jEot`iUebVYcU9%oA|vt|&pHLqU9$O zlSkjv*4Wt>t-B8*S05$r!5ioab88Q*H#e@WS!yvgb->Dq3T;KDRh~mRr4w&T`8)moy%NpvkXTIBg08w&7H*x;NnUA@v7 zxN5hb=;P}Z23FP;Ol2Lh5r4s}*7dBCMKd?a&lo;M6ANsb)bo0N4$Ww@AdCCRX`!>c zf1Vy?{gTQD{Hw1mnN?n}eurPlQ?*gBYc_OpR>Q(;f3Xa$|3u}1Ub*6m-|VJx zfP6@JDG#BS{hsOQRTFto#B%_~_|)P?d%S{GmQ5zK<;YGs^R8rvyO`(OFZ-ao4)0id;3wvz_NG zI%T;LcHF!y$|TYKzlfg^Frz})fS4b!s^-B)wQ<0#S_hkh%&iCY8m!l6KzsF)@%=ac zJF~*#9FXF3zC3bcjp8S1a3~_SpvV%8pxnTagqvJIOpSXnGm;(l%U7b^mAi)N?)%Y_ zd^uXCy8Fb|ZUqopOj2LmEE%}sqZ(5Dl!yQI$c)MhMM5oEXju*i8a+RwOqvf3%b`@7 zt5FS)Q6-P#&YS>)cqgeMf|n`0j<6;_VY(BTVLj+M(X_vnFbfS!06#y*hya`U8OH?J ze8q1N>xtZoVTR}VbOW5zg6#1$g6o0cWn z4s)^|$y0D=ff0Zrj+9D#fI-W4U`6g#DB}n6&OHCUep#ge-U9O0p~RWQm|q&tZ}&5; zxGp=F&Qz@nWGP5(+6IeV8Gz!j2Iu_NLBA-#3h(ReR)1WDv^nFdyg!ZTurE>jUCuGM z>`d0Z`j<6%VhdVc%Nvg0Ms6@x3G8_pR~*oPBa+VA>coXH4N{xWZ11r(8!*qs$bu{! zo8@nU@{GH%GV>&YBFPzMIr7Mfw%D5c#Z`zz-_+t-b_N;JIG` z9_`}BwSX5D1Abt5C!&vxDEBR(ZcFsA-&ru-??Duu>|3MWxWgxS{Wd`5a zt8pR;vv)_2?mzvYn7$uKAHrr<(*rpN=?D3(o?{ll-s@DjdH?VF0>T~4IZ;nE%@6w{PV0@EWW1HtJ#7(A(EYES*kdZ};)ZlM{)POgYv+bE~$xwX?Ct z^Ptj2?$*x9>Shoara%r>)c9StcD`?r7&G3l3VO04pUR!7jo#h5atcWhif`ssqq2F* z?jwL~=>0|$z7IQ1_oBd-QxKl109TunHOQcDB=|x3SjQ3rQUoPJFi^sI7_B z72u3&sA?Om%xtht<Y&IC89td`PnqQK+hGM-EMun_Am4_iEb-Td+` z6IOdBl*0WZ>LDw_!goLh{hBT|ouNtl^M^+dOoGM`XP_^2hS*LS>;!P;0@S^xeAh6f z=04U9rImsW4m;`1VNiNf*Jd)Fxa$@vItzS7({c~qU1A&djwaXvl25L!d^%QX$fjwd zxsG73K*A4ZE24talT#ZNcE%_MF{a~XkN!s6f`6Mfoc)+lXKJ52=Fqv6%7o0Q-cqe5 z`*`f6Sz-MoAzCohARmu$S_?%WOXl6QdaMbZ8z8qUj|_;1W*QsG(Ave&SR%+mO*i*h zRxiE*n*MHbWBT-nK~6o2T$;jG# zue}vWov9+)Pg@wh&doa1VM2G~Hdz#o)fRd@n}sSdB(BcqS1TV+G0aI@lr{6b5xCO` zL%)V_44(4c(Rh?LwaVA$!%E+IXJ*jt!Dj|9@$;eLNJ|lu#ZDB_=7iGnN?#M(%cOb* zRRM2oLOGIY&~0Udw+Y|4D2v89%H|wiflV=ucjQ^J7RZdnsw&}u0MBB%;+{%l*6nsw zcZ7(q;UXFnS*9Gq5X>N}x%Nz#SF=R{`r9vlX>oRPe0pa71kD)eBmFU^-m2Mu^y282 zz2c*J9$!1@=5_X=Ry6U z5yZKX%QYI9XR1&Ot6v^cLw;(CyHOfpcjZ=uA?;xFu^5D#Py&x{zT95Kd#j_=Hgx*~ z@84Rzwi-Eg@a;Am<9limN_!MgC_)WFjb00MaqA}|H|wAJhtowkwlm;)X8O&$wcS8v z78$eS$h#wn(_69bcQ;{>L(LgEEqG>wKvk(X zm~@v!=FJesl#F!Pt*Soj(jhrdgBjm%Up&pE^7Lt?&RSL~e9VJ9&0m3oTCwiiJW~N# z<9YX{f{D7+ zTvauxxZ(nL*uU<()l|i`PB|8H9Q_^yomf-J@6%J>$KVDrdfk~M4q_mww17j62AuMs z8xxe%rC`RC3TLPJo28qgZB(Jodo6hw39!n{e`$h(sfFJ-IqkI69VX_1T8^=u935! zliBHz3r#oUDw}jhcUG&U5@pwJ<{jHo$a7OPcT%44grK5fVx`s+l@g4)yxbQ<%r<7o z29=jQdw0y#@(@$bJ<#QWjMgaA3NN1idg99p$U-+Hu>AP`vFF(QZYX^xoH7^Vjm~f@SmC{b0-I~GSrT%1Xrq78o zB~ZiO^ELT0pQ7$99NoHo{P2TQxY_(~w+L*hobRiFdI1SS{q^(h*N%!Uu1l#`O}=)J zxpxz>^-nQdb)+V52X6lJf%&CQZK+$#w`jrYQ=Ivx%hCIm6*6&Wsb=z64ka=#_3FKH ze;5Y8fmv2q-4C*@cQ5*=$L9~NTaF8oYu*a>q4osFke&^&ocr>Xrnak-%PjH2BY`h( zzNrl^?q0b{>P9L<%57DKMXl@j!suAv47^fu56pZ|5khIG3IcmDTb!S=yEl>;=(byw zC=7iXU!zI~ag^Ap^q~W;xg0w9?Z~O3U8#{k&44$sLPXDFO;$9pW3%R4o3ekyuQDw2 zjPJg-;WP%Er-sMYDkO<~Qep(lUUwzX8FfhUbBmyJ2hAd50lmX0f_ zK}#9`p=Pz+q9d#!lWPXBCwZh(ZqF8Kx$59bpDH>!GOYFe*i#IhK2&ev#Rj|kKTt&C zR(AHIF1Npa`|Ssx~^sh}iNXP{BGb}884ggR#Qvz4J9Z_OEebcxTU9r}|cysD3B`kk&b zdLgYIjjQTlL8aTYmR>zQVX@Lu2zJs$dAF?l241%Fp=I}QbZbDo(AHOXyEhaw{NRFZ zphx}w%U(0cHM=vhHY3=F+J>ie1>6wu(GZ~AZ#*KPSYuT3on8;`{<&Viu#SGS@tXio zng8-!X-M?zJ$3x=4&N}gskeDfn10ass{-S#PbUAA6HOCFyJOB8SnfjVH!dWgxIKnn=#w0-?bYC4X zS7Nz)_WbGTV{sTyMv1(qEAe~v?l=s1jmyzHutN1=%%WT<1K$T}^yVP78;D-glL!%y z+Ck8P6lQSi8v@7@lF14+>paV84^cA5O*2n!b{VCCg~{S}Ur&0LR*FY~baDxv6qdG3 z=|Y(3-srgm#wGdlJ+u^$w{s4bhnb%WCcD68r%P)57|JaeSWd9-yLx2zpDBp90Xg*2pu=)RSMGh6S^ZUJlQsGIEHcWI&w+oVdW9n5pY zds_RL0`NWAIDJC!! zZ2RW1-DUO)a%)Aa%1fIpabgsMfs4|h4*6f)9;ue!cdq=7+kue)KiT&-Nj3&Kh203f=xK}! z9)_hsunwKGp#++Dq%&)RAXiWR_|1ebz|aykLDSctL{8csGAbWKfUGb7mR@?3I+`4> zm8n{i1}{)yQHN5s-C~aba zXPhWkOa*^xTc#5%YYl59ZrNusDlf~1=@F>F9uf~Ufa-QBhn3$EdqK|Hjtnm+T?dX})?D`JQJTv&)Dfvpc55)Oy z&F_c1nm~bZG%DL{M|Us|PP0Mu5x!Kvp}8{eygM7~*@> zKd}2ZK8o&oag~A7h@c z9b1K}E7z<%(M%TUKXRMTpyPhiCRjQ4(w!U;idcIKFn`{QqCli5{gK7*7Gd7)-#zuB zZ5uBoMHEonD|n%}$*;aCe*bJI#5&FO1B1i&Iv2;Tk1wr9>%*T9#^1vqZR#Aid#I2;$K`@!DMpbtNk9Yx~jYyjX z@pRaK?S(qkArfT3A+-p5uH52Px4Ba4y|VRjhDPa9yP~(?rHX-8zJVoc3B@Bgw73=} zGDhm{fK{O!CsEZg08)nKLI`ts04F(i@QEqn9 z7y|4{T8uF<5cM8oCskv_nYHMln}t8#9Cm;EStpjvj?Xuc$G#qkqMI6uRg=J1uXlGr zs!OTQAysjWa|NF`j_U{&{~NPa{jyB}rBdI7NZChUf>|Ka{$;GL6Y!MGfpxo~1uhhO zzfBk`GF}rsno*+=A)FF3-%6SF{n6l%Jo{8;7mYPCcxq~Vrk_*~4VFHg>m~2_<7bZz z)JB7B9@9 zKcmjmZ!*`?O%3_NbjcXF0~LlX!E>9y`Ph6W_p!X_2GSUko%=%oKZ8^#Vo<(@MySUP zZs}oSm^2LQ$b6?RlGZqMg3#(Mz@U0+(+9FR6!mG+2gDOBLd8tk_56F-5 z0qW)>(5YsnzB`Jm=AY9t!G<_W*qFb|c;TLiWyfH45&JpM8QTDmk?Tp(%yQD z8o0>tVPp^B#mNS|yW&D()V;tDsi17F0eeSKKN^|2gyOZow~7onJoQbOBP#dw-ahcN z_WuT;|Fg=FSWT4&neE8baRw9pX5mIdT94tNAS+dhE;uwiLFoZo-2y%>d$zLot6;Dn zq83hsJ>ODxj>y5QG^dEm#!c#NJP-6`!Z`AWTF^TUCwnzBMjv14Cr223cgjK=dP%R( zuBEWoD`9W0aOzBz(<3a-KyOy?gBslM85I1U9Kw49!Z}ZKb(+Ta_gu6o;+1Pk@Y2=0VtvX!wp$BEi~LNhxB0GLml51c5jyhc{e54D3sH83uqXBR}s>rjg`qpOP*~>Tm zcmp~?=V|qbHAe*%A_~XZUs*y5ersE!<5LE-`%V}7>A{>KZ9J*7!)snmY-n>FwOGwg zW*Hl5Lnrw}FwKCh=R}_|@+vn8^te^1R{nX}r_C;;h_%%yKIzv&tScIR8FsRV_=eQtC?fD-eP_dN2rI}5Cd~gBj1U7Lf0)#p0o=geL!gh)zr!AoA)YzS+Z}GflCh1 zM?=_AgMNv*|28?zKNql3k3^N=!_N<@d-o)PN*$ATYZdf>)^B)CEy-yc7#v;3+jR3W z!!tnT=*Yt7*)BN^X&)Jd{ShCOt) z&vXU>7b{(&VxqQU^~R~L&9a5T`b5-)jmLY>&Y!-1O3VI9lBQ&2S-yGa$sa$y zdh+0m1Y!BvJLW`d)9=DObIpGwci!0krt8I|)uLaKF@l6So9A&;fS?4X65!9Mj|yKZ zJPvBp{nQQdaCD2HHg4*kPS7VVdCyDjwPVFeo|Y&8GeSI!d7*SAl$kAqa58VJyFTLT z#bA+gq%TTA&;Z$y&xQX``ZE0{1(Od9!H-TI`#d*ZGo8oNekL0u{v&k$U04E0>k45? zIb>lfGRmoR2i7xlp3@4Inoy6%uNz>w=(Gwi}&oZP^ao zyK@Ut(GfgLAYPivlIbP0#W~iiYo540GVN;*iCi1xUz_gvMv$q6+6jdGbXRbD zG|OJa2+sB?S=O;H)jW6D{(CUU*W;%AIRd z3M1^?kFbx(PIB`}AsK;9y00P*w_-pbLZXXs4%yhS)8=4CuR_})3N!ptf1+_HuLZdT zhh&zb@0Z78yB}`AODiV>b5jKQN+0dv z|5Esg`2BcE!AYa+kwF6D`{hx_`|K~ruCxdHwhNc`kD5>Wf98QquD~JsR@aW96DPS^ zAd=?hP-J_qjm@-&V=i>q=#Ttk!z%BDzV;GziwFKNw$Sn)hgUMp-XTR9C_Pd_zYizB zTXOWjJRs@>9H#)I7UTkf+++vcyhsyBTX(ZS6%u#&q z+ST-hjO?m}!pfgy?6iXh>P%D%C%(YfGm`XL&%2JF{p!j@dp|mJT{HtOe7EaSg>$Hq z$A6b*pZx63lReh~-n`6<(s6#ic2|dWqlH#j${r}ce7yL!VaCmK)lM|0`s=r*-7$h< z*fh!#b@wUug1hf^ycBeBwsA~SqE#?#Zciz?BhzvliJXCUCprgI8;&4Kqfqt2Aa_l4 z%W=9bj|_u8j7B48HA)-L_jsKuLFnQMopj@};OL{35Y5E85fBkKB2*sH8~ww%fDn-OVHsn7P)?0Pj9AEG&;Si`HA6<-_j6<8m;)`L0{x8!Uz; z>TE{QldWX){%iEnF^F;ScUIPT)FhS>T#_?to!Frk!WG}uW~AjC(-z2d{XuEbo>Hh3gcI9;5~Aj)k}QhGA1@(IEMFJ zK*!9X!QQyfR-E){3@{P*?k(oQzvQK~Dyz8iiXF8C3;PTKRyo11xG`d|$%OI(Xe3W}UBqHmO-oQiKjqy{x_ia{9=f_>s@G9hN+4|lO z`d_J`ztgIaPkJOps)JPgE@`L3Uv)yG{aqt|De}@b-;$-nbbH5-)RWKG~{}bJ}c4I#B9q>2j|KkUy-UsTH zr>H(K$5SYXWjWyQ@bpfqwiMcupaE+ASFjPyR8mkFogvCU5{TOY= zy|2xbzJfgz8fQD$Oz}!lCN2$~i{@s*m3l;Myw9#dXQPB4-&U7WuPC!{EGM;<$JtN6 zj0gj0r5M1h0_Di|?BEu?K?iD$V8Ae>d*k@$*PVW!nwpq_$-%~QDrlG1G=9C$4&iE< z-vK&lQ&hr*M^+O=UwOzks9Yeu3;v>?1z%%dsLp-h;Lypy7jD9six z?~e0%*IKaM`rm9hi7atIQUYJBOr2_qnyAf zI09gQ>yHkgQ`DgK?5I*>J3`=Q@;WP$oD1Y+??omsHM}Y>ACm@1Ru8tlhh}J}r%Y3ZPjVt=75)-tz zTcH|`O%sen?J6~n>u7LOp=6MB%c$V{e%ne#D)1td4WCK$YAnUKoe;)*Wj^t++ z;jnUY)CK>DuT0?pRo|$tQEKc%^S|0rlOY%uDGp@QYpw!lrjlP#FsaPrUGSGO&(mt- za5E^wZXYUH@yVC=uG*8NjO~vC_HqY*5tQJ$I_vq%3vl*jR4ovrFg2zC6?3|nETfS+ z3f@r8p!K{RPqtdS%;vAqnyD4V? z{2SPNXM1FKY_|{XHr${@usm-O8&0sj#;sn$00wmr957~Bb2VcPUDAf`#QuH-x^f?=&TQWk2_Dib1t>?a!(|8n!3Yef{`dO<8&!`iaG{aYf`|kh(Bfb8pnG@Cz$H+;bBg-L)EJV(0+;Cd3yV;sQu5 zHH^{tf2hA~mqDnP2@g1t0<$NY0NOpTVfcl=_d~)#8u(oAvp=meLwgCDwqi)fWuKE6 z?mcyd0G!UQx1sTf8L{*id(!G-+WNfA_d_(EL+UM}GL&ZMS@+NXeK=YNqyGeTK-eK@mQWJc-R8?}w z@ZF0o#(;F*?!K@N=hwk;M$7Qp8aOsTXtPCQCz!yzkQ`nYwO++v#|-Vr)KBt88Ws}f zhDX7B^1%I;^>Qcux7G6M0nSej2UsMW zbM7L@-wR&ER8&2S{JXf|+66BdEd$Qp8SFOR@PlS8TA?RE7TYFs$ToLdgKl5%1abgX zWK^K`11p`*k>!np2kPDKH!RHd6QI*neQjSlKIS^iY@U+M_cwV32;O#cnyY}5sHTto z^ag6#&L2J3%tVDU_FK42(sfUG1t@)u@@gnqJM!vA;JfiQ!L1SUd*b#}*BJczDV=m< z;Yq$oqXZ=|tugl7J-0hf=q3sl`~55(!kC1k$?i0mVNzeAuN&j!s??FR6y$r4SB|ll zp4spzObJ`TtaEiq$-RD)hBURFeG#}YKeT`2XwI(SKDz=xFa2cgqLlNw0(~T_$A~tw z(ajipx9N~rLv%D?$U$>EzF@G^TYbU~p>uRS11u7HvzsiNJ@LbfZ+y}=(g~+Xq~cm_9(of1MdT!-3)}u1)J(YU{z4wa$Z1IaSB=h)BZT-M2=F)5;3( zMMrFxP7hHJ-ZGV6&#yVevOw$jmRE2WmVz#;?@-(w1ExVANGiBO6vjQbFG*9te9nxA zjK|DROwHC2>e&Lh3&*O{IYXJzCeyBkXb5RV^{>z$WhJJ6W5kl_jqH7IMjReJ-BJnL_LBX^)L#+>^=(xlK+p?a8J!fpt!Gk{t5wqYv7n7NPAk?|W;^zrJh3n4ITMtRy(>(yn$VUPmK6x*W?!cUUaO;#hn&emJ%Zhu7k)04}|?l$Y(jaUWd{xS{XDM@k+7vDa+( z(H?3A`wgtwKIcYOLH0}r_Q5OCfi!@wqxC# z_3BE?hb}jipk=L_491!J##X#l?d)oFTJoB`0k zQiZ(?fj0|8L3~ZjO=bFzd&ZQYD~qBJ=`7hVR|o&Tvl?_C&qWy1{56&ytQ0u2N6_)j z2AhKU2agmTN-^1df2|rLAM`!c>^krQuHy|Kkr(g~U-#YcTOGfuK~L_lUmBod|8Gc8aMd+Ik1_40Ds~-YC6qv7slV6iz*; z_te|fYs3pQT4G;Kv#pgMLrN~Agy`ShSgd_FJ0B^2KqIkade|jmo6~y&{*dE zyBs^Q(Rp{xn<{U3lCEMiL-nL53{gxSQ>X34)+NLc$d3f-4Z!mSP?^vWWsSRHaSq6&==Dr*ZUIgmtVm9zeLT8uJH;if@^_N`;(-qrXGX`~w zkLd7J{7WngZzrsfIR)F(v!TTHmGE_QNj&wc{41}It~hLDu|~$sQefV)ze`EqKt%r} zdmGkMdy2Xh4qkf=H^ug*w;$HEP%MT%c48q%`{>k?>Y_ybIZuIrh$`*aQ-=LcKMA-F zmD}*SRkBL}t$9`FWu_zGQf3nO8;pJ?OecQD941X=(r@vt0XN{%F`!JWot!FT?6kF$ zXe4Ja)=T!H=kvc^Rq=+QA`xljhEqm2t$^dmj_?&}{<3xtZ^X!Z=_Hv5+F84$(Ja+Y zxdQ83)tX(uU*F^XZK=QRHbXn#;hTxL9-s;uth#Gr_#NV^uTMA$@te2O6V-y+#Hn+N z8*yCJ3vjM;=Z?)e%euSbi4Ncxg6@|d;MnNP-*!u=miTn?cdks#lAClZ<3Cx)thE~B zA7ht3CrfCc=rylm4I~s=+p`>+EKPzB6*-2v%vnx6deZ|X^&o>r<11y1??FFM|XV^*=rYK9b08m>;zp+h0D?FM*hHW`Jv^~sYf-h|xH4Y_Yn=3D>6d@|E z)?ym6^2DX+DCe1U>}SH#!;=g%A-JLq!OW)1wNADUaDA>!dZrPo(=Gdmm06QzNAb22 z9jLsZ(7O$ktAbX-&eioWfhgdMjIp;}Gv$dRj&(s$`1sm8d$94TE2)i?HMkQD&7L1t zG{fXD>F7r$33#bq!m8xs+$AHXE;?3E_97O;QP0Xom(@onH8J0>!hR4zt-Uj~+AEUW zD}#gE8NH~dHB8(DD~#}R%Mz9QeV?s-OSkr+sKpwJDk_g$8}rq$MMbHV-KIGVH!{c#E%L*p1-tqSleG&<_)yd6KK?47Oi19_<4}cwz6`wtZ{iIJ^_KP zXoLLk!UOxh81`=6_dYG=#d8T6J+q7bd1Prb4ZbeE|KiSxuHkUT_3f=g&)s{_zjx1D zDCE63IpRyTJZmnmKYH;WHA)xhaFdCQp5NsjmEo zeW6mXtM~4Tlv5?F(0qh)Pc;^n?9&Wi^wq5h6=w&Sd1JUXQg%|^$U!bFk<)G6Sk`su zt9QZ4Lk>(F;CO7B?Rs91t)y}nHG5J)qA*bmRF82QS03Cl2HD141km^Udjvyog+_6e zv#M`MLwWs4ij=U_PH}^jHB19%59j(|O~rN6lqq)eY(EffWq3Ce8OqdZA~tK+EukL{ zFclbK!XdUrzM%d+R$0mjgYtJ<1(eD7D8#Cz9)|$Y$`~9%qjpqe=~-n6_G$uJOg%~b zD^*FJZSc%9XZ-wr4k`!tebyZB@_{|Hb!JZn#jg6-tRA(|LWx6b&wQg4#USb+mLGe= zMbu**tA`>+DXs%hh=PU%gb=5Sa1FoGNZoy@H%&K{W0@75$CTg}laU{fIL?nRxYUt-pUBQJS-7n5~WjEKtWK!3~pm=BqiCS|{2?#Fg ziydjO=DfVCRTdP^ffRPYZty(t{tzeyIMrx{J^{eSY?l6-`ofjnQp^BhuEIrKQCGcG z8MBHG4-{8Qtk|U+;=?Xi?J=pnxb&FkFoO#$^B?0gX@jhMGRMo6Q-rx_KBa0NUKIuh zDGoPI!Og+GH5WJVf;^v+>X1zQw(IwmreEF&UYt#=$j}@%xB5~7hUTA;#*Pdu@_pAO zlsj=yA*dNCN(c?5*NeThR$zRvYG|84KO1*>v(|(rj9@X>~!Z(A_pN6V zr+(eRyJlP3V!o|A`8Za3gFCv*u{Sq{0%I+{Il08`I=z3!Mx22|uNKFQqd#A;L0SQC z|E7fk{a3?beqE3%F+47t(xvceD2>yh5}dLEQ+4aU>Cyg#HkP zyHc+Key%<23#A+~wGhx+>!yNunL+w2+8d1i#>f@w?sK;t)*cnRBw?N5W_UHiu27_I zOe*jTZhoDdqn=6u1muRON=#YeqDKsv^JV{h4fVJSyL>^zW1mvbo4i8EAA7Oql&;)D zcwBTPBAx}R!%rPD815mC-MTC0 zMZCA*eBJR6Cz=IWwv|cK*3)0*Vc&X)!soX=@zU^Qe>avqIoIAF^45OLRNR_-7&uNe6 zG-gR)@p7K#ijbOcUV`MQ_NhoXR2s1&!J7S{!DtB zw~uF(lT0q6XaL+z>E&Y;Bg6*YR408nD3D&V?Bij~FjL^mA*rvbz8id{tqW8)9I$kz z?r{F9@wWWaob`%8=K!<=37&tiysOaXJRuBul$PxgfI4BO8!Go+H~sh+TQSq4#o z%ps(&gyU;th`e$-EtE`cq{CtXFw?<|w*xQcpo-yCE$Tlg6o|Rnrq+f(C^uAVz$<>` zT-AD}fush!@I->D8W^+MV$`%z(o_ufH>xK_bxsO70bRxa zntfA`Wxf0tJ%Hio!T5+oroZ^M7;Nu#Z*9yx4J!K7&PXt7wLA*lfsCU41+)>4pTT~& zJ2kwsn;x03hyJFNcW1YlQfPOaL0c~slf`Tl{fO@}++HP18d}HZw4)#%3>Nc{;y_g2 z`HqXsQ>1jAA_dvU1s>+G$LgS+xnFe#K3Ooon=n_xDy65n1MjG8F3#YA8UTB0e?}5H z4A57*{HZu&EFP-xgUwdsA)58;%%en2l2kz=ytQjUHP}ECJAEXb5bM~4LiNIFXt>rU z4`^1Hj$f{qNkYbwKD_|XQwAJPO#PZOCNavRT-@klL-xN2DK^Ao5Y}%s>ywUO&x85S zeEF+Omml62uRBAsJ|INh{Ik^X*eXFFA-BlgYn9sDba+fHlBjb4%J)Duvyv@><)7p4 zKB2f!LSx_JakJ;9-Isv;(GKJ7!hPuF8I#!}l!$1)xd+-GA4j9){-WlOGX8Y)6l2j% z&O0EcRne*7sma7`7Jh;AgSWlcc@rqQ{7CpJ#q9>kPw52)B34Bt#A9-vX|q#}fB~hw z+!Y5wq+IZK4XVqwAFm!t((ifcj;sS+hKk_B z$4YcDfD3Nw+}G*v4JDVy0)0*#z)0(vopGWZ25xNVWyh3}tG)qcPJLoo1WKKgn>H_l zT72Y5bp(Zg9ik9fsgyc&@$<}+p0K4zc$A3oBsKvMQF{&bpZ0!kPyL}IajAVBwXSjs z?V?)>PPKu@V700VDkADh5;fFnTE0c3?S}1uwr>{2(9NTMCp5GoUmDLp0LllY61u)1 zP}KHkV12zm4aV_!yt$?}agm38{e_qgZT-CBmc;Y!P<;yhL%1!ks1*IZ`GCu9Xd4qD zVgi@(-cTl`iFN_>ccaq1yiRZA0l;-AN3JC`wU5O0Q=8@rlyC?GPTXWiO=Wi@X|}<9ly5XapMiLIB#)}iLgZU zj_|?PNH<9S3RTt0Z_ZLoEFAE5(-wtW)05(fndAFSTzN0Ma4Jqxd&?qPY04KE`^k>W z70F1AOH<)GG^+Uazrs3f>8@ldkX$w-5NFvpoHw?D}sRXo}!?aV<-fkHMTW# z#Mm`BvUQ13rwFdgvvBE^!J~cUczm}q6cYG^k*QMBrQa;PUWKV@ut6S8g945YiXJ}3 ze>fS+?Z@M076_U+kaJ)B5I1I27k>Gwq0tDjHlAP@XoOSD0N`H;FxZr^PKPoYaQsMH z|7!WVgBm((E&kL%d=_nCyt%g^dWUd{J&d&Smt*BA0XXx}Fv1dc?Ks$$#4c_h02hc^ zyr}$neE8}>>1-Z?Kh(6XuWFyMMQ4TJ?RY?>hQ>46#8ILzK6jZu{yX8B=Kp)e<${k6 zSAMDOqxVfOYE31Te?QDaIja&8D@jE~4Hn+!DucD$9jZzd_(vOng3QfVMTvScbrv!u zPflxec7b9Zx(vUQ58C>$@hWJg0MJYH4uWdsfTmL=o?NMwAk(CT6eC$nrkh*VS)Sdr zA;R0Vcp-5swD;0e7gIC#HNitoQ1~1cw~)W4Lbz zIvUL22&2S4w5MPyj+u+atl=elA#dQ^eU|+4e*x#?yj#r`_=eeuyLma@+{%!W@Df#v z%O%#oQ6~%06$oGaq{O5;aW44}EO6E)uuVxCMWdQPs1Lc4PCq1{?NX}ogcj7;{8D`-McX*0M`HzLliO2z zrc0q_d9JMSy5?$bOQY}et4u2zYGM`mQLpFPChB%+M8lKkN!EpuLo@D*3Un~ z#A{YP9z10qBQzI*JL&Ykym!2Cb1)Wi;tLqlWL77^c1SOP*|+m4utdmwBRRT<&L&ZW zIK+!q1g;4Pgg}YXCM>WD;~745#NqCMeB^394x%w3ZHNj?%n98eCt{ND;yOPQ^gu%V1D*nr z99+0+G}yusf)|l@Shs;) z$A}udIL~HSi&lEq3nz8`k!gO!G|RW!aE~H#h3=AcE0~_kRh_vpoj4>&OIip+zkc8w z``N{BNLwz~*8A8mDK&gTGwn`c{j*KQ0`Vf!%K2GsL{1CwBr}bPm@^d+=Z>5b3Y8W` z6+wMwkz&&jdYJUx#u(?y&|MFjof`-$@rz$o!EQ19VwG$#0L_OMrq&i;Q^~a#>|1Rx zauj3v_bOjVibS3V$A_-XTycODy@4Xt>cx`vx3vQ+z6-EIX? zXS1#^RDDqqE~wPx6mI~~Rg(m-Wqxr%;WVg!4*8go=-roFJ>slvZ`XDghS&J+>_O&f)H5zzK*i(!2^Ce0SGclEIt9>2%FS zc=o}3tE}2@^|uwXfNqxI>WIj1?3N56A!#*O_r`R$woiYHAtNJ=XG*kIoE3`u@uWH( zR&EfmG}#eB1B%lkD~a+-z)QaTD-UNNQl|ma{HPoa&`1-mEiqkjEFr=k5Y?4dKO#&9 zf%~){QouOh=}>3NF=}_EVd(_ufIvEzvzb2(ih zHo`)sO|w_3bvr$>(Ae%Ni7iXH4u@wk5+a;egsV7n6L6SP5$g)v`|{7z(|a+1D|~*!fvqjD3s;kek%3c6!G#=6+n9%v(dfuzWsSZ0YF6*z zgxUzJ!YZUHr-Az*6g(kH^e$d}$$O+VPvEhzG)Is(Y)7KrdZOSf`4~*VF$83!hSH?; zm5z_v^Ah&8At!6hF)e^KzAPn15&r4&L>%+<@sJbc{*VX4RK#izY^~w6%M@+Csb}pu zDYXXTG)y#*my7^G?CgB`R_IOE4-XzBqS-~A?Bx{J;U$}-I-H8|1hRYTm%e@aj44w9f(uFJSzg6CL!{))19rn^o*^$HrV9JhF zqcJIcF%{xqYhwNJz4?W&3nj@`2u?-NkcUmJB_-vPlH388s<#Ft;ViNH<+G^f?kZUr z#WbPo0kxbER!cWMZKWE4lv55yiW4})3cF@i8!4v%t8h^jSoamqXdMzhkSHP)0c8=c zk<>ro*e69Jf}-;MF{Bnf&LcqZKBY#_Orh$hRCBjGP0`K|VnifH@XZ}ZSnG~tfgocg zM-6STr3-><(Ttm(Sf$KbBG9zBOl0s_IFGR%$;<1fBk$8m&?ii{NxToN?Ziwwppk;I z=RkT14K?sr*`79Mb@v@RY0_(qvz+}D*wzDs-HM7V9iJ_4se?~xVeH`IUcRfBXomJe zRzu)ZGgzCV-M z*Ce>#VQ954*xj(pSCgeas@5>2ep&5t`MSys#!5K^k_dZ~y~m+K-_f78Y%oG~7#A3V z0_99$Smw7uohWvxf_!9E%#f>PE^5^(#Yo6&pnM)0Fcj}xr%bfqZ3D%9MXDxtgUji0 zdP$lr1?JnCXQOUgl>-Ug=Mf?O7*(XdT&7CGmh;bjtn;6uUw zhupuxE}C*d)`{j_U=?>ttJjW5E)c#O9HQ#=!}j-u#Z03cFDKMuATj5f8s+Zg(K1vQ z@~j${ne3#C9BlvUzQNOs*2J0#o&!PqQHCHuTvutWt0tv3rOp-rCZ|f(o%TVS-P(^v zO;D4blOENW6x~qO54)nA`@P#+@7~ill{M7N^U|&2zLRvYN<*5_+RvE@2e-I@D;oZo zU(`a2%5$fqzYWd-em=we2=vf$bonZUtf<32 zI+VT7-z*fDy+f_OtZ31U+qAz`bpDMs!}R7ruD%{jZ$WQ{L44B(l~f)TmivkBo!2J3 zQ(1_m0jK+Hlg{JKP{KF$K#?Nt>$7me-vbmptwF@NW|AxZqq0a#a9OO1LVTQ1m}g6F zqexbg##u;Dx)lUw45PTqWMx1%ilZM{x@7bq)b@LbDq?52*ql-cVWwHDK1-8%v^Fi{b2^xP zi)(4&U{A`WF<$}Q6V^5Y&SczE$t+fh#}ciVD{t9#WZX~J>hsy#3~QP;Y(e`|CgY(E zijM&W`2OvCEvoMsAL2zXp>MEWh?->YBtBlM%X0oqDP_W@QnBEHFncf_Kxl&jxzB8J z^l6mob}PNC(shPjDnIZnCNq=CrJ?B1niv~g^RdG%C)Evl+-l^(5YtJ}0;B7uq`v2Q zi8WmCr#ZT_=Q!+W^>6lWNa&XHiWLiACFz@wN9Do8K(do_9^hlYJD1{ov+ptW_Pl<6 z=lcK}dunJK3REDx!78%Wrmw7pL*dUE+*Fd=S-X(H&p$y?9maXgn8+SjL0D#C6ES(v zviYL`r7AglF$x;7ptO~UrrIJ(G-@+<=qd!8E|Yt!=-RuCeW>d&8GAJ|D!)hpok^e?O+ppaH)M2&Hkft8PkIOt|ivgXd*LbN5PBJ=YvkwZvfafFt^T%YLb_R-P@ao+b$e zos5zyLp9LE^B74e%!7RJ!IHL78F@hK8Dl+Bu|nr2neyg}@Ti2nJRX}00bfgNXtNym zXb$H-wW?|9Jy;-3&H@B+>PZc9^aI2qMUidiFOhiDdQoBd)?; zifD*JI$Q-jTP;Spz7hJp)A$GRc4f7CL0?YY8FM6ZJ=s)YTAIgnVKYg02biX;gu#!^ zvi%zhFGZSZl0exET700%`_8I8A}L~xC0%oaIIS4X3L1Ho>0vJHlY>bh8X(Xzf>& zlC3q*d&%8{lkdfgcnA(h`DhuLSad=Q3Q1)w3e&Swq@k^^Ipg2!&sYw^u|8SvUM_l> zP(;-Ldh=b~I1HsqBg`tJc>uYa7Dy-pna=Rjg6rx%t++bhH zkk??bgd(mok}+ zOy&>@+;1mRE+n{gKWX*FBD_Z2Hoqq>BsG!iwnT)dmH;%sQ>@|?z@LrEO>MSz*Ikc~ zSac9&?;nD{m&{4;#XmiWPt0SUu&}7uMfzm=q<37OW9c0!)8PDjyic(^US^#+rdT|k zISnQ1wYybMoAT>ZR($Ww09)UWZ;-E$&dj{>yF)sZxO#Gq$Mrf@MZYV>U}Zv5I($ZR zAT;9y+;*MxwI3eChG;)srZ#Q0^HAN2QZHZ+mF{e;JC4PO zUhBzKK(o?6Qkl{FQw>=~v*KdoYddfVw`&)BLtuOH%Ra^*=vnq*TYrU_XFYZ>Ez>0Y z;gZi{Yu`A-ZNFGHXjZ7{<`HMjnuQ1|DQ4;|Lu!e|>{5m+7?tQP7O(rWt}|Dm4s&_v zG}llE!aLr$2B8^3#ACJ~1q~Ite0^A1MOYeQgTgBZFtWTB>WHxIve8oK zg@}G0dy$Lhrlq^{A-p{`&QhIkeUsVcEj(CK)jR#mvHt? z_|ubeUj~gwN2*R^)}|JIS!bKxwC6l9npKQRZvz{!e5)%FF0Y2t-~dVc#3=MzXG1%L*!_Da>B%7>dHT&oVHz+_GYrn63q? z_gOJnzqH?Qt{NduxbqIe3bZ|oE#b@8rP}<5NXCgclaZc%zkGPFBSW-gl|$xVfG9v_ zur0GrX1*(Ns37h(w>1|C3$e3{vM7_@kI-kPAhoog&X~>$Zik(3;Vd(10lVAUea4KDs8)isP0d0{IDRv{xO>XJo+W5;ue;^rd;iS@l) ziT}(vvh1xLuRF`j(?C&}>;DX{t#Tr1V%Oy_%**#8l5RjX;5aOxR9m{Fq_7NF+@`wrywdv9)553eB9pbgkY)N5T(94zaLGmunIG zsQ3l+&8Zn6u0{zWwO>VqldPwJeDWoQ-g`bJ(5~Qjw*Y+t^c;R0ByY3dMu^2kAIEUN3IB^;OO;Eu zP@?UwH$WF=iNO>6&S*K|HE%kLuqedW`wCc>D*~63^$1o=B?c8Stw0c@KWTvbKY@c= zt7dv9^Szd4viaw}o!Kq?2(i?&&pd1Nz41f#?VgkUko(Cftl@-F2`B+-r4*Ev6=0HoNE(ZJ=t}}# z_;YPU^4L@8GbsnSys1B7W3CY4+Bl9{R9XHot|KuYmgqe81;if8UZkd@#ghiV?=j=M z^xDl1vA8WmItA3(sWSP}7wB$SqF#%{buYnQ zgg3cnV5D>FM)sNP0+_x@IZVLtK5rM;lXep83Vt%Zgc|p@#k}tUDfHx?`|-RV6qp<2 zx*)1+hVtzB1`xegv>vaOX=ko@gauB!_#R6cA5xeMTKL+N5#S zA!wnZCKs76WY=!6ogpa!jg--{O`8r$reK>e?)|AQu0GA-+t&@*q)eHCZL}5Rf-J~d zqa(yEx9CB&x>+Acf5aXoJ*d^dmHrX#%HR@RhYdwDU7bunZ>WG#xZh$NuP;ygEqJtW zQUT?XbhV0+u>lWfgam0%NvK#f2EYi1{ebCNJmMqzJe8w+N1{k=k-u+ z>L#hBe09VyG*O3t*H!?Q9x<#;Kh3+7R2p9<+$X#82x~x;Yb`!38nx=EgzBC~CC9Si zn#1B6A$qCvq@wLB%<9OJ0(qQtU#4lV=-w+?SGTL)1I1~oFM53IwIU@-I<65QrC6lI zxq+rDjDLxtDjDvG($ckzsRB9~b=f>&=6mRG;2luwV9g(i#3}3Z&1`}2tk-C^g2Va5sHUOf zh=?ykX#Q6m9-p6DEj{@YeGxT0LBpk}qUg}`Yk{lbhA`7l$IqHE;aN}t`OZBQ=Fc3$ zQr?31&Y8{r!+R%uO?kM2r1!JtMiC9qwVgVR*yEV8fuM?PeLmOI03XWHBrRpOS7#;; zY4H8x7^~yZx(2r_vpd7xUP2mw6WjxW$o|AJitFRD>i7uy_JJw!K=!*b_3x4Jer6Dk z^%F&1yWqhp4hC03zG@tD{BCO7j-lU+L7t`A>@!-ZV4M+U@(*{$nbiXgxVnV&R1Hd%s|29icsO#m0{t%`aj60u(m#bK?NBB8YrBg`vHEujL%E zmkeJY-&U1<^iN>NLs8LZ_?NU~1&(v!`Noby%Rm{l4m?}9L=+@lJ9*sv*0ak-u-$RF zf~N3VDBRDSWWXkW33D>!%^-#RlwTaYNd%v7?o)ORHC0|DK{)2J+a7*(kHtZOc#Tf==`?gT0NmqLY_0PzBpq42>uB# zLJMJPaTxyJy&p^-tL(0R=)*M%Q)%=s6Z1z&*FJ_)u1v76h0u0Uq%)rO;4cr8J}QWs3yRo>QT6V8v&szjxDxNC;D?w;t!e^+?6a9QXDV+S8*x^ zE%!0jNrRkhfLQZU+1!gyR40*NRZL~!86IDae}!ee{Ks7^{(=cyPQ#bV8HmG!;8(5k z$5HFmj4zZH6FkT#jVfEBgA35U$aPZV5tvpFZ^n0RpB$i|(>QopDEY%%!;gn}Z7j## zQBX=gy;L3LyxCD17<~{7km=3jYFrUmv<_EVBf#0 zW?5Qwz${M`Qnj*l8GE)q9kJmU4)ILN+6DGkRb`J|hl5L&>&c}vjD=lXWVk+% zP&lQ~od<^KqSulBZY0v|4L6e#s2bqhzV{-BF%YtDkYeb?Eqa=$w#98w&v{8g9xs05 zL7>kKOk~=jP2Iou`SWxF|DMs=cLQw=pI8C898VW>?OE|r1BmCm|6+hR|X+~ zhi=IP>k=`h2eK~(sO~aHk#H#iE_|=&!`XkQyKhq=49jxGvE=Sf_FKtjgG$I$?=GIY zgw?14jbvsw+r0$xatiP?Q~iOIJ<+zlgY^#phwcrSBIAvu4UxF^H5I*fhZ)Om_~oV! z+c=su8fJM$H&uskuEox6$!(Zvd0{)~n>8^$RXhHYJTfLXpI=o}D%K5x9V{&EBDQ9i zRN>E3GJG;Ts(%0Vu-JlM?zk`PPxx*%F=Muf5YZcGT_C1p$i`iwW|9%8v^R?xYp(kz z(N)f#Al|jLXKBOQZ#toXLT-aT@cC7CZqSXX8}TrXXq< zmO}VeMu{i)nN5UpU_FaSl=G}Q6Kb@D8&f&kUdgU!jF_q!pK9>#n9|u>+zRI8aq{u! zPm=CQ2t`55o4T3{*FY7(+@t(4uG*hZumCX8HLHYuX#56g~Tz_Vf z7(h=tg-B)QLW^{x>?NQP5k>^%jcDZoIR>1vF?wHOb<9ARC1zrr=$nqp)0l{?&PvRq zCuq>6PiAguJxuRb%IU!dmf+#bLadr-ulKmHyw)K-cAY3eHG0mmUB%!tb5)cbMXdF} zuM+oz>rP4c-ecj>vvO~Rt2|}tE%|8@6$&MB-q#`GUj{gK zi3(8zDYCe5fz;Oq;>XCP_NS`}je;*H38tKK-sMh0VG1*RFi}$yM>2mXPML!WC7(^SP#Jm=N!o4yLjx>vAzg--6Jx{?t&Y zs>Ge}kowaaV4af#Pxpc*a8$`!xOfx;CZ4HpnvOLp87tv(d{Om7|lI zTPPHeGS%?zHQ*$?rCXo06fT>`-P_#B={iA2#ymibu@$yIL&80mb0a+M4(`3{V+xiP z0mq^rQUc923Sp!JM3u(?2_TFBynKTe3tu9@oHIWgccQWrM<6LJ3 zK{IRhM}3qq;!riaVX#AE>BVM9UeEw&>oG}AV1sY%gXGpG$6+_nHY-+h4;NLe4x1NQ zwHKr{i`hr?Qd8_ufJr%0sPx-?4RBvMVyB!z^KR>Atp`o1p^*07qjeCjc_>9-@TW#) z?65Vw6Vi&xyZ!*RYiZ~s9>d#oa(1Ze?LNhz4>{aSKL4i0;zOfCayZ;oR~8jz;FhWv?icseQ%0<}?8pHo5;5|;WL=+_xBG4){ zEW2(4bD%0GkqZ>)TzA~P3q5w}=$WY-nQs5ryQe|u8^pce1}za4ArUS_O_V}-|a2KiOA5bM&VMkj2g1IBTC}%pjYOrsJz4h0M6=fN|^mCI+~hQXKub~*|ZHyyJdXE zY2nVw(y*Kd?SxfaRgdeGi!5M~vYQLUV2&!OM(h(0h$U_+kz~!6IBeK-Qm_(rHdNZq{$-zAWOc3hCj|A6_aC)Dek4MHP8B~Za%1vhBxA3@ zm_i)v`M5kVG&;smm)I`SQl9oKOo+u{QeU)xx%bL!_5s}OjC<|3V$^_R$#c9H(SF+C zWODw=xB|VaWFc*x5rM5zqx9VC14sRBDc>k^-Rs4(<;Issvs|2BzfN%NE)wE2sz&61 z@0^LD#?SyyL-J?#jivX({9)275)upFIW@ST_2e}T_$7_!J|(ZXjH6b)rcB0D^DT?T zh%~!tkcc<|zF=GzDb`Uh{%VXq#{XB!p9l^FzXj_fQo>kurso*d#rn`M$m9rYWJ4ZN zj?h$2iS@UE9%$1RO1;72qe3!RzB+`%WIi>_la$s*$2u#I@cza_a((gw#D{WP#Y5#| z3TzqbFva6+qD_A5* zv;Dz~oa75OQu%?xSYD!~)^&sl(Yzp#DFYhSRM&SH2tH|TNg=8#{NmdPH2X1bM#o^} zf=a}Ii&@m~MIh#vq0US?SrUqIeMvHvNo;~nb^@#v^W93_GDM(UEhoko zRA)+6SsH;;&Gc!b5NKTNnq@^g0d%q>%uUo8QscFk>=8^IdemS+6CAO0sCH=5Gy0F| z(XW-(t#m9`I~8nVU6vIHzqpc17m(%2QIdgd7aFJ^&^!@bG)~1^crRWdUw$nU-_NXspXphl3>B|nwi){#j!Dt_!9M-G z)}|yzt%N}D+S%xC$>in2CB`G#49nwA*x4zE%!R76j7*-rdgj#SEAx<%w{d<2MY_5b9N$)?`DDw%Ih6Sxte|XrHqO+--^G0}oG3 zLKcNXs`R>F)58_^%@Ps0-aU_eI{u-dB7cD5^(Qx%SH`u&uScaH^Of<$=dv!Wd=l@X zx*G5Q?~hHB@+qB?ZAV~mv(zR+Dw%QG^pGzuE1bQd*ywg#iOOgw4q-(VuG>E1f_R7^ z?C?7AD6CM-#st;zzWkKMHA-1Fa;H3YebP!ws{jf82IO)N8N_Y565LR3!FM56$fbT| zsPF=7^9Pm7%&Y9HM9r@NB{8y=lF!3`|6s(_F02CpXS&LQDB32aZui`6ipwJrQp z8OCD9m~-UnSV#C}M9BX}eFaPDwRcY)G{r{Hp;cr)wC*57HQ*A>>Dq2ScB{ zS{i_@B&_hGM1P7^BoYo_Os7pJ7V&n$C)Hc zZ@!d?KzSOj-sbgTH5V4G4wKj>JHS;$1^r}YLNEMG zh@Q^*CL$%h3zZ{4j~GHj1ohXyJYcr+AcFQ9zjMN9+l3JbrbiXL7g0sK|2mW@g>~?k z-TRkN2k77k)`yrWD9X-&4IRst4-cb^AqjX*O&rv#fNf(;q0BIsN~~zZ^1QK#0+gi$ z?))pSq!pT-y@X5WlK<;(5@+CE6s`mOXQ7}gnQ7DMIm8ValyRKjr?#7}Daz4%S|Z7( zNP(WP|3xoo4BI;}j>eC&mv<&JeULCIY`A=RE0bh^M%|BxyNNiwDoTuU9IbK?-(tu&pNyyEHX8vTu}U^|D`gJt~E+ zB2UDIlglj27>3HbhpV=?4l!|Srp}xgi28u@I$fP#jZ_%ofNb6-bYeH35xwGu!0#P5 z6I=uKYY>F4-2pLnuB(=?V>MWf*&OM0a#mX9Z0s;%rdsfi&QPI$1>SSwE&Vt;8eRv9 zsEabMwP*FBzylYQhh&|6{MNd|IpiK1pB6bvo9mxkr%YE%CsM6EvNQT3U4J${W*x?! zew|jMjX1ORwUXlTW5<6HhcPT|&GMmGo)w1=FuSmp#cjH~BvU~#8qt-{J5bev4-+A!unIp^fss!d}C+>&qpN2*TS2=xyPIXdh- znx$*{uhs|Yk}uAe;kn`HVPXf}PF0R$UQUWJmxXfk7RoVS%dm_gGUk`+NF zm}-j7MBNBcSM@WNWvaoL+KtdRM@%I|z*w#;g#@dbVHT8()(_8C%2gwRDnSn5#-Kc_ z*HfyTvoU!>)pACcH?@RVRA6CUsi7cK_qN0uaq?IxsyCw$Tk_UsH$vUOvQT4Yh06I5 zN!nK=i>el-*zH2sh1jcr{mNu}MN}`eu8{quht^n;oa@MvGn$46qpBqupL(8GMpmU^ z-l%Y3i0-k~@-p^CtYxrmfWm~HJHmg&a=LB`oGclGP8_-BBQXQRUuvf6SJ`}87EyrE9?rv{h`USy|x7;=< zb9I+ThFgo|xJ4dXs*x#~(y~aFQpiIL$fczyH9Ch3xGyV)L|9;3qxSwx+Tm4l;^*{0 z5iw%Lm=>~_4#_F>i={%ST03_wq{?szT(`{Ss@Gc`e8k(g+gKh=YPy8RMx|hcT-*lO z1nVu76MXHEBNXI`SlVW${P zu*X0z6Jk#i)6#Lq3iDO~KAn&j;GjMOX_&DvJ}VBjILDy`bVxZW;Sz@oF$2oPO{SGDIIy^Has*9+(hC78h32c~qDP^vZNZkfk6a+WuBOiTRkuHT6l;!=gw zb_+FFmN3W}2bRWnU3%a*m+t!n112?gPb#%!>lAT@)}g;@G7GOcb(>Eop;6n81uYc@ zj$peA^A@LK>emK#a3p~9RTyHcUaqAH5_1D~o)#b)0_o(=ppPlABq*kX&wNt~n}`S% zXfltaaYsb!`jgR`iP7j!-Fh^k_TO&9`<}Ff-2Rf<45q+FT$s>x;LyRBDyYEFXwz)g z1vjhljSXUIDKK%Op(nNgQX4zLv6bFS9<>A`*huW(lInckqUsAykxd-$MUUB>Ke<+r zCe6M0Z(QZ|`{QO=y2uWgu87WHdkM30ndY7SXrm>RHsFU1M?j+L`r)(f4UJ6G=Lier zu02O%GQngSz72LC>WaW@&_3#Lu0IZL4lYfB7>5l_3L2m|g!);!c(~IuD%4m8AKvPk z?m1g%OB6U2dG!o+<9wcrBpdKk6ztBWP;8C8pOxIZKyIBy7oq_V(Sjx{>$-TrPG&Z% zjs5G&J-}>JjB5);yB3og;$4I9Yymw;*A$j;o+^{7=bZ&dR-LaWj(0JX?qrDo{1Z6f zJsdx%WPn?yIaG6~hZBPSWr-3p#E=Q*R2^ye7^^{O$+BFa>9f`bV9O@Wx{D^M9cI%S zs#(}`eE3#9ECxICL;Q#}1h{AR5@NSOs7c7|$qm29Uu@K%YZWbDiiC zNOfs~IMtV?(+J}l#;C9rtknHTg#c%DIL{7whf$?4m`*6%VN~bD9Q`2hOhFQXjZ3d7 zREOV5d%fP~1cHB-0sP|L5%(oH!W~~bu39(;GXs;%|KxrXWr+CfzX7$=6u(LU(sYAT zR^-v=yjx=6v?DA0>4t^Y`P@LQNMj}t6s!#`6qOoW6t|SS-}qzvE^~Gv7;4T9Ro>0A zCnt2QrQDy=9?9f4>ds%tOZ10p4=g7tF~?S3KSgiZdr3Q8S}{+lZL_qZ!4mUdA6b5X z%M#GvMNE$^7WE!RIh~Ec=!UC_7oLQ#JQe)Bw;eZFjzT2bj;yq}vC^VWS>NxX+QMfo z+bQXKlfk&qk&Xlpx|X;K?3dyq7R*XRXrv10Atl{4>Ks(yM(4ogz(%CYSTSh{ za}jaDvtda>CMc-;txOq4KRd5`jmJOOQf`7KH4`Q@F$(Qfp_-wa&KQ(c39OS}SEBCL z)OcM52b+S6??05Z>8=x{UjP$3Do?kGL=qvfHO{?zyRboN*aW0pvD(7N$|6C{mq2kq z2Ba5IZ<*U@Lsa&vsq$VlXq=RblY6Q@ncj2X4t_TbYoTP4GPtmI8u3UJO|rQ2ED7q7 zKQw2BjQtw2JFGIsHnR>5&F+Foe{pf{2(Suj%|Y!`xGVij47~-V2IjS z;fKMhU@@ZfAB2{lSu=71)81D?tNX`ch!d6EpzZMAErZfp~{S5Z3JSbb+TO8Y?+vLu{R<*izwBfTO z+I5Dc=;EqDt@fjiWFx3Y$~Z$lj-J?+Do(0&r760Cf$m`p#I|Sz2D^$@Bb*qa$`scr zyy%K5HT--(0}aHy+IvfZ)YrX-ac?d{g*-v-0;(16zHhHE(&4#{2Yb~wYzh;f(?tOh z{x~nFOOx2DCE<5$*I8C{?s(4U<8T#0D@O3jPP{9^rqc8kltas4Y>4WBJ)DuYyqN@O7RYK^fbuq>a> zyhkm4C2TYfOPz@DOT@U`6fzFMyT}_aDVA&+fHM~~|8-PWS5+muu9_6CuafFITq|4s zbur+J%i^d$N8I}6buu}Ls-Q96A*vw~2Fx1u!>C!%O+c)lI}GDVruWjUr+QLF)Oq@6 zid*(&9)sTc>8I-mStqfE?S&%!x(DWpaNZd^$95P%^iiP)mjlQSag~2eHJkjDOg^6c^~yi83QPOZ5heP zgQNLGu*HOoyNMHl$1FX$cl0&W2t?y+mR~7lEz^mi)k~JqDSJG#?5Ndb8(gdI{5wyx z6TC8+8NNW&_-6c)On#ePRQMm#FVQ}KYaD-&yv!&o1_<|JJM#{{Io&*Pzf|s?dl?Xa zg1QF;XJRLz3Mi`ojkxYVry~F96O#yd%D6y>&ZmDV8wp5wk=6!&X0F&8y_$eN8g1@3 z*UVYkbNTyRvfAxV#D3x2yLmKEJv-H7wc4xRxj)-1C$|q$k1@O@1IN*?LEDyS1S_~% zt(k=8A1L{=a^EDETft`n9qxCk-}_$P*Gq#!UCkUd7DIXJ(??8A!gj|0+B8l*1=r-u z7p$^LO4Iu$kT31_205FVpD4yFTk%m_;R7|&$fKnA=Sn%VY42U#Q7qxzBWQ>&HEh>4g#1pUf)YxT1K3r(?*&&o7^b%r{jDE1)0N zuG}PAoi`yu*>T`2w3`XSJWo7f&h3421yhUdrvV%JM+#0Lhs8H#w+`Z!{waO>Zmdl1 z$vHu{ji>luVjXqU4BW@#3m zaka4B@=J+;axYyG>qi!N%@=%QYSr=@77yXncZ$Xsn&Z1b1es_Rk4LYI_R2t|38 z;yJTAqOo5|pwn=wElZI+CxRg|vKYjf$IGM{sh)ngIm5n>;>il`PU-5RN>;uVxF z@-}ox)l^~j{UEVejZw%Y)Iq;zGBwbpsBr(aZ48iUfBMB}@v0^oHwo`Ya>yCT-3QAX zJE`)JAB$h^SzpC3iJ*CB>B;%?w3_!tYDtBKCh#)?dAly4xQrD)8N2s7NnJ~5@V77P z1Wt{^xWeLh8G%9?I-j79qW<_7&qjOLyGEy(o8K8eN(aN8>lM%-b;~SfhZ?dyopyuW znNS_vJtq%ORydt>ReJO*7_{{iKoY&ueT8b#`)0+sM-xNRep>%Rx!iYs4W?{+);mLR zi|j=5@^Yt$0v)CfUDhH;_RlzbKU0;@lCUB3Xv1K;S#)SxbrS@A;eAh`8EfUpN*Tfm zX2YR^|K$1k@VbCLgzW?|eS2h-lKkb9$Quq+vd0OmvWU=Tb`1U2qdo&*K?-d~52Z5I zwucJEYx|DBuG_*J`b-Ry660^{dPY%5g1WJQRl{@F_>oZK3AU_yE2)Plyj z@|OxdhVqG%mB2snrf~BdzBSfctlY`iSjC;$X=w3SzgIklpt&;Z^H5P0;{b(|eYFIs zO;TGr^UvbPQZdb}&mx)Q5wqcN=I&R&I3YNcsc}7UCsIi8mji#ZDO~+DZt(b}jM`nE zxWJw2&^9j4i6M?U!mlUcP(@a&JF#XJA%bEij5kww;#Zstpiv~ z`Ax9D?0zc>gQy*nVndcud`QU12Y>o7#staG7Yr&8hr4vZfk`V9bJcCX&ON z@TTfhhZQ@wYZFHb=jF8xccdDomzd+q%l%0d3`@-;+sgk8yoJ!nMdjf(#F|#pWujKH zzD-LbjSae12V2Dt%_T89cy%Y1r!r_)tsIG4)1^j^)??z(v%e%@vlMh+hbM zOVq+T$4t-}k#$)rpX;gM6{X3S#LG2x_(o}99qI7h_EFkDuO+zs#;CX}UPVm32x8d*aPPV#vp*KtU5b`NP^t>ewY>7(GCmtxzPKOr*eu;PYY&yXbZ}+P%tD zFYRI#M+bV%TGf}fhlGCOY>ma0x+4{Wn+`B2C!qRPNqrxGO_cZn%mlg2B@!8Es-lv} z0<;E=aLT!sUs{5hy-n5afbxYaMAyUQnY?fBUg8M-iCy$Mi-mW3 zPfb+5RdqYA@~`JhHoK;bjos`gva0P%!Rc%5eNx*Th%9@hpFw#-SK}4Eqqd~_bS#A< zYoRG68$etJ%nD1EBz za-N<|jzl}3-;zrLdHtbJ;QExrqwntZVnR5Uo&do@>si&*wx9OLJ>jxB8LwY&>>ZtattmwmzP zu2MT9DEuiq86lCj$Li%_TVVow!tg}!aFd$>_^kQk0gmRu$lc+UqV`Y>BTWQ;0V?(~ zqQ*D(#2moDxU}xbKw4AbP6rZC;E5ca}W-K9L`w;8V>lQxXi*K zA0}qZ4>+NxD|nbgnhD9Nr4!DwVdiPv2^gm9Nk(aQv8&tn50QWC2$6cl8Lm>LQ!w7c zfwSOiCb&8~IiqoXS+*I)S@NY(6Mj8zGR^WUJs{j0d}E47YTn*yD!y^RXhlzmp{2+T zg+5guUUo`6GaTf0nGUea#h4}0XMUveG#;XvP2=f!PZ?Jyc8w$URap7nD#sP1yR-N? zQ8=$U3&+-PHAo9)ZzyoELt*lQq%pu!-a>s>5BgcR-xR7yuQ6D>&@+$P(!$_Xhs(+q zVqFo`VHpF~Ox6!R3n+fYbjK`*kFzJCHfvsszsSj{vX4Xi%F@i9^-ObSxx6bgPN%?Q zkoq_6uwawAU>R#=9~bZVs;65b1r0)gm|2@{+|~2!6)^I!gPB zR-dWz@Y=h_GbKVUwdP;W^@;K!QgnX<#Uhn@8=k}qa)(ImCw4VCB~oX_qY*ZUrNKyj zKz6TZ)zRperPs}UaK?zDQc5v3Wf#_0GNr^nuDC29@7*KY*paKN4w>M4kE_9k=R|&X zd>~5?xKLrN)y%r0qoyi=4XP&2I|v7XPb6QVbtkq02FRM4=}45fdxqZB{5YF7;w7KH z-zOPTl0smlfVFPOZCToE$Dlq`-hNNIpw+&od6d<$nDaq4)r{a~l3fKOI3!)@^!X|p@f*888ZzWz5))B(d(i_h$1nPYR^q+F8YWpU@C9va5Vst8 zdRWSM*J}IZ-Uz+K!}_1%z!OAMv?G$g3vE`-2VJh`izD8WD>{qfy~O4K9%Xr1AyY70 zcq%p#-JWFW1+n4l&)uS;(8dOg*9Ae{03u`YjyGXbJ9qBngb|1)J}L_sez|w}lhjfg z#sy$2HaX!4P3R;@!hu9O1srihdWp^gc^CB3Xz)S}xM(pMleCX-T>_n`(Iw2xok;Pz zq-oVrE^c&0ZNM1l7Q0g|#Qhha2P4LaFZnYSbcbk@ZZp)So|{VJ04*#Z@4~U>R~cQ5 z#-g!QtD9=Hj*IrP?>eS0XuA`gz`JYbqL%dSQXn>>ui8I9stvSpxSs+48RXQ?hpn$J zhEX!^TxHXuG;Kj37=w*L{{=-N_~qcVqoV=`k?hqhMFlZjLPK7e>?FF+ZK1E?)k<9L z;Aj#D=L4or!GlV#M>5VbC+EJ1)LazB6$9HHABg0Yi7ti8F%Bcx^x}pt+d=Z?zagpU zn+=8_qMzsw&mgFoRbqiP8M5Zl_N3g(IICF(mUVJF)Vp9o7a(ti_=b<{=EWQ+vEVPM z56Ap|I{f`M&Ol(MxDXIj3xd>$2Q@}~6beiKWsdamG8q!Jr_O-!KpC9Kp#X|N!WPVQ zEr2toiAQv+OauHOa2AAAG%#g5av1>1w!Nh(2}Nq9Kmx`sb}H2sdT9%)3&$}72JR-H zAp7xEjD?VB^3l;QO%36hp;<8!d6yGtVc(R{?8I|nhxUMENb(8t1LT9Vyo3LM;*{y0 zRdqi5s;iID>g8q8r{GF1Wkxu@&(m|4RUJ#J7i{T73NAmf>|E)ITr1LUZFRkX5E1BG zEOp77tDJX85rq?!LMNkbLP1k^;$=3C)#FwmOyeZ(UA=gi4-3r$KkX-!MAwQ*Qz6DL zI7j*mY}DEaiuQaPU=P0zLeFcD)K^pD*X=l+R7Pq==<)yL+41yOBKpKvuVmOf^1-q? z;mUYN0P+xV)iJ?UcjB5l>C*%hmX4D;&-nfl@kHQPLcu`p*Q}4Fdnf5EP!oHyDIsN+E$0yBDL z_Dc}QGn&QWyZ=M$RQkRj7B7dlZmN~wv<`z{Ci1i01gxc&Hxs9Ze#lyiBCF2|0Z)$}GVw2zTv%ry_=OK+GuTnsGWz0eT+v-8cLKdFJ~$8QK?)p}RRa*##cBx1 zV0v1PL7U@%?i35M%TCvyS?l<-d_@MAOo3yK2V90Bwsn0qFy%n}0o>mU-B(JWOZ`7hOD_kL)m4D}IV47gUIJ0g3o?*gql=}f6KSD^lx zu~n7ksK=JGm*VCfDK3Cxm#&4b?bijsQR&7jrl28;Qz=?f_;L2}eG-Y7xbed4zpUQL zZ?d*+86QGBtwsD!86H1pVX!90Y*W@GNPP&}L`8dsNosSjGFBC6QYSY)G(P6)-`~9N z8HfF)c+&>_HZcVeRt&Qgl@+rHQMC7qJYu;~lP+U=o84h2f9}Qg9F--8R=Vrp`@&EN zOh!gm^#bZ#()!EiSluf02{71h{TSg6&W6W+@2e~|;!KLxkcv4MXpZU8l1@28X)&}9 zDiQ;9B*%K+#VNTk@V4{Y+RtRQgX~qd<>pEo>3I%a_yJ5|@(6<5t;f0x0>Zma{_q(%UnEQ4hYm!*XiivTcP_XKWL`nANc_yUk8b%3i;u(0v>UAJS%EFnB1x2oW zRB=|+o7`5_Jd@`f%}Pq+z%uV0O*C z&!P!@?CMNr3V$Z{^&wlzQlKK{)lvv)$Rn%N?@$W4DRNt6x$Uje4q{G76rhe`={`7M zM7m>UD490M;&MZUV3Pl5Q|`Kv)X-*ACWjqZD4y89ijAVYTQD#N)NX^yW^Dru53 zYU6XZsf`ozn1J^~F96|Ozel1AQT*4iLHRxKWZ~YfQHT(ptjB}8q?@L+_{%DqL$-K z0oA9>)$TeUt*QQmZfj-Qj@u2m$9UXtqz(2~(7D@OEKFOl)mTCuB4o4+pV8EL5>9U%H z1p1HoprH(-XdGlfrXYAlG1ZL{Hh2Ml2zb`oQNn`}*ttM56 zeCBFG4Pvo`5!`xbfegt*mL%I0Pbg9PgOAO=2DqODFubkif{Kw7<7N{w{BkclNB!YF zgSX>>Is1>dwaq6t8JQ;>rU@>b?pGnl?;%f4Jb*VWH`j0t5Ux?F+qvF7scmKN{$I|c zFTCICdr0-lc$62Px6L~GM7H8VUw9W!L?k(;-WrAw=05lK3JEM)km3r)>tHmY=yo_= zCS*Z|=BZY2{lyJTKp{PAJDeJO#unJ=hrL28#H`b{-nyX1D^AW}D$PQV(ny$0uU_h@P~b_MvFAvBc+3eiYy*8uEW8JtjAUk}Y6}KO%fl9B-R%8%@zkA(7K0FWqOaI|I;hdF{7G4CwO zk$XgXwoXoEc{Gr)jJz5LQw?t+dEg1e?sI5^9vESWUTik4_w=N5mpT-VFU^?;xN|k$ z{)JYZx#L#YFjFw9-~IxUY%LM(6Q6Q zf%xdgo8`4%-PbKbEI(OarTX8r6?iAEs+E|t*?np8eNP6D+ZrB?+I4_DSO2On)_5Nh$$ zv7Tkv28rELn&(2&q1K`p`moOk$918hjDRYUc7%!>OQ9wTipCGDP%=P}9lbyqMZ?&# zB18@ulmA7+05_PrO(yVm3JQ*kwEUe(`j0cf;b-i;*;h{mKrDIHS%B5A2PqpZ+sq`ka=k!NHqo9AFVGDusSF zb?|*!v~0RMBBgV4&%yz79wyf&Dq+gW20?lDyUm;Hq=+GzK5a@RWn%*kv?nXA4oj0R zaJ8xTE;@3l68;vb?05{?AfB9UeCkLx8aVCX3xaoRfO8pep#x4VPrzb?LX|5Nk@KVS z=r*5UCn#t%intz5393WzhQrbAxQnsjeKo3kZj9E1;{gY2qrcHePV*O-}G z-`>v2mQ#xD!Gtbt?nAP$%Lk68k4&6$E8}qE-)1?>5oCnHqa*X`BHRqlm|g1%FPz_2 zZMS^N@FK(Kj`C+KFH|La=OD*LWEGId&p)qU_fdp4P@zb%n2r9BZ*J0dD(qf^85eB7 z7rtf}WmObDN#k4SQu2tbHIqT4Kfh~x+5SxWjKrOwoS4UpKBqk&+4?FjwEd;&_W90j zLw!!Z20{a8mZ7M$>SuATI%kCvZ7_YuN_wUokRGCUG@48tLlz@v<9b~H;Lqm+8}v#) zFS`>zwmyOZ=lM=85#YI&-@Q&ff?<=S%RP zFWw${=S*{|s~GtvhLp4pMFDjBm105%pN_Os!+K|DmGHWdO2w@#hP*+%_CXz8idwm; z2@PkT)m_SU`bRo43`3f{yOih%7f~(O1k{p6s?wg6xS^<;9#q7|(ryHR14uPenRQn- zf34+5l%YY1z*e$0BU7g+*F4LMnD(mmp&P4w z=r(b@5`cXvlfB(grHb~wjz6BBZZ@(v+aoa)Sl^;$@LAZhcnM(n;`HJmReAX0*8jNT ztpUI2kcOxWrK}Rp z9z{tlb~z$yeF~Ra$@b|WN3f|C#ujsD{@Ciq*5UX6a?|$|Wx0}&p*Csvn|{N#C!fSO zuX~S6UjVVzTI;ZII4|;yd!s{&IOABh@+J_?ze}bA@ZWgh|I{4(+P^Pmd0?^2zGtF- z@BtP9Raro8`Gr9-VdG~`T?s4yf<7Jc)cjiXeW&B3Nb8x2m2BPQ&^9G~qn>6)i3S;@ zRVTPvtmzCqHujRf0u{e08bcx&U8O4?HH>23;OW5w=dlRSuXa%11c z=$MI7uV7x$^W`o00qJ>uMw32=t2{@QCf2aPEKK3ufU=>(U+R)n)wFV1qLt-*hIJS% z-mQ&n&j{?~<(=`f>sO8O(J4BS{IWsW33LLmLczNxzJ~cAF!^ZfTvD15> z%Co~WJ;nw}TW}8-%Wu!bX~0G&;yh<{p?q0xkzUTI&o}9zo~KS?3z3K%>v3uE4)ORX z`@w$Zin=NChsUhHODXKg_ru$s&2z#i^S(q#jy0B!S^z~ffgA}NXI*IswSRj(WlQ39J1YyWTj;fpQx+kmqlazXNnbuVyEi`dX)@cKf{s9Il(c%| zW*L}}My*{{D|9f0>VUzmkl#+iCd(cs%7mQ)MwY2m5ro_?)Zow4hiBCcS5Tasi#J^*a#2p9KCKgqHA} zk$WQwd;Mt`p3%sUi;>QGe1ai;!Mw9ZKWmko?#V)Nr2#3Dw6~Cq+}Lkmn#C2%Xa}Z| zwU%lIeWr58nbdW|IAWm0oHTSbG<(!Dn`c)-U7Ea_Im6KPC-|97?>0qpdo$_BXhDik zQk~_`pOs&fVr=1TBd@&$c8^9F9OwlClF(-q<;v`z-w9qOg1Kj+H~WO&#QInlr_ik`(dXWkBIaCgW~QRv zg`1+v{rsA{9K@jeKXui9EQilVwnr{oxst;ofuTfWWJlg%({RV#QzeO&M2@hYbSejz zcCU8}74FDOz+6Z@Iz)_x)VQ#|)tYeQa}EppsbaF)Ure)LHsg&%Wv=xX&CUoJFQEjs z@V$X_e>W&k#5Bc^O0YCSC?<&)Ro+=CLdodnd?Qah*FEpU(fb+fvfo>q18Wg?^XRYR zaqMFguHVEzeY;&gu`emilBSC^{VD6Fe#mwH?#M?&d9@n2_?kvxG$dXzecGv#vXL&5 zz`y$*hEQUsYL3=Z-p*~18Hiq;vMfhr^q4utn?>*k% z1pAwtyZl-FO^?^CVpHh>20H(vk%^8xUq>fQio{F2{vxL=_q;s}J}v!pV4PnYhSF3^ zx)2%jc1Tq-X?_-obmHsWuOc$k5{rZWcQUjk_!h|%=sull(B1uS&5EMRcF+TV1YwJ0 z0CJufOdB}`D`_kn+8t>HYh)TdHAI)LK%^q3UxULZpJCy%ql~DtU(+N@H|W7-z0GFl zSm8?{J5TBl)fQT!dfCs0#08^tkFQ~dUC6^5J9-7O<0xPJ7zd8o(F`|Ob2k;X3pol_ z`A}XIlQf}nmk6bGEK#)J_I{W0s5fED6#2@y#|epnEf3VGTqwJe&==R41dsU)=3hq6 zp26ITH65O1C`5H6nV+pEDvZ~`FU=9K&~2Y8M&^5!O^`sy?h~WiMUa2Fv&!UU1l?o; zY7d-f>(djDDImW`V()OsmbE|&6Ul?x&8{PpjA!HVmiV~9p=AFJ0#%T9z>pCjE>S^{ zf_V;!#~in9>MjDI(FB(|~Kwf3+S(9Ht{*b@{=TIosWE#b_l;-hX?(R&$hB0l zF0BQl{kylRA5(mrpWc9S9?+C={rs6d>>J!2KEu+%y@9#0QRg-DZ>Rnd=I?@4R*z*6 zi2l1a%2OF?1syDzySxX}E??c12_z8X3wo+*m@Bs-s_t@}3)){EyrSXvudIXrDY#?6 zv0>&&^zn*taWT%^yUMneS>m6TYKajf{Y81>wWe6c+9`DHPm5v0iYmRE+8wy#6y>8? zM6iW@LZ%j8Kr<^t6@j#0z&fc~2uu9}sArnpd6#Kq-{FyJHkGmou7ln?p*OL<&gX)` z$k5uucHSzev!>@&d5O9{W=KXS*%+-iGx02_s=*ge)F<)U_R}A`@x>i8Cpg>7MU_tcRSeF{ZHx_{IUrA23^~kYt&Oaue7; zR$?hE?QaJlFWT?)kl1#Pvd&MtCi0~j6w}%V9Fr`=A)Bl)PLQPzm(7m#CC=~SOM%eqsl*p*7N~#Jj-#r@@av*k!^e~4V zMJ_$&`Y?%DvP|iB#09ulzbSlD+-_AxPKpn7Wi<971EWS?>>Eel6B+}kMerl0GPGPR zRHcsnKCvh6uFC2{ZQt>j=S7%`E3Od!O|^!On$VBBf{Fw|TBc~~L~q+Nb|qu9!7wTT zwnAOY282;xL3&w-y>%6`-(yy4MI{Gi5^Iu<7viRMHvvxjw&wiU2-EbOdYb0r$+!onF|{7&UXye`@p#^evl+l=Dq0A97H z$ynqL?N$aViOV}~3>@2`^5%-~B`G-FmO@T!U}vAyrfHYMY&4NsLGDre7nv<}3ktsO zBDZtLlp!ARHaF2+qRoW?J*W=AFK~K>T=}fUo(t2~d#lYg_YQJdW&|BG0q}5JAGF#< zdA@Ik2E_b-Ot!*!L_q+!0f$nSSdmkbTe66Ztjx;j!`>ds+S3}xsY--ZVHTSgc;-vR z$*WpUGJ6&CyYDa&PgUBft<+_T$J% zNSnELMZP$K!dms;vTvwtHlinzPKem{DVb*#@sT67-yJYQ0jI=jcP;rV+!GCu+d^$( z1Q7C<;wE>;K<(o_TYiK(Lzf#65!M(Ogn9{?05%F2UJ4k!1r=fTVjO*OcZ*d1B_x{s z7$+M#gRms`+RuGsH5aYifwTRUmq4iaoDKQA;gKb*u=e{{UnYa*X67?F{^pr+C~RRw zkpu_Xx*o$ZS`|(`Vy*|N5RE-Y#CBY(Rlwr_iWqZ>--UIuJ@P#8^fp`VFVWZdhv`>W zBlduJGwXxj%?lZ)ph45Aq16koMJtYK2hO>H_mVrhc6?R^#yXvXRX98F9g6dlsdB1l>Yrw>{= z@SD1$q{JrG9^vgtfYet|m{bRZX-c0@?tVvSP}&V$98Uvs<(MXHNQ5#uJ9ew(K2T`P zu1MSDRm*_1N0K48d0O=hw7SaD(m?!B+=Sz_gKybZVCZDBg5W`O2XEJ;DAVm%fgW?z zva5K8+t%;HE9}R)w_5W`wl``-*J?=l9(S$sdlvnzyTE7a!gwjM)`VO-3yQ^M_UR5f zuOD>q(f?U*+-D_-O4=)*`P|UsgE0!yFp?fc) z{pT2RN9&sVVA`F`zTM8g_q%h%bV?2Hd1^X+6JU0vi+!W8Q^-0&%cE)TMMhHP6QcrO z*?{f@!{=r}2jT1ZfMT{vA^he^1`7174NLQOPc9cL{hP|Y7+5JhuwB8uG==Q1b|bGS zG&59#U7aAQm@;(qRB=F*+Fg*0>O_3!VY1=_p?=60X|QiW)FQl#A#A1wjWH zZ3>N)2xAJGWm$Nb6@GRFg4#i@?qFV{HS7^`%@BUM@j}5gabo~;;97xgR5eTBS%BV;o{Lw$BiW>0>E#2TF6OC_4FYF@32>NR;>rGnboTgc|J2VI$ zbf6*mhNdKiHhIM5@C^!|Ato>sc=?%fEnnb-v-hfSwbY&Wi>g!+7icVlt9}1DUBfc4 zD=3Z-48f00iFN2qbor=d*CN!-$AbS$yAIcMZh+&s?Qk4?hiue+$o=3(Ig%3g zci?ids0k$3nfKbrn3x6RdP*lzcf~J_b0}+1js_ z2l?FpGThh4&oYQe!6QMub2`4nlo~qmgncBTH%@pYM*E%l9t4@EYt%&24Ai_C18Uk2 z>A^7QCCx4>zaAa)D(cCh544KCuwy~miMk&56v$G3_KO#+jl=W8~!BIN9$?$6hJLeiCy61>0(OW{{} z>!vnYPKFT_R>j7~USgt)D6saO&o+LqQBM&m`ZZ3S&2@knQKb!YJ2Z*npto5KU$3t1 zZg-Z8Cg6%F&se@T5tCRrBkPL$d;bERasi<(avtCt*wbN8cH~Ir8R8rx5~dk_$qhy> zy1s5t0RF63arRyb=n()Ti164JWU!BM&hfX~$BB3j6K|&K8ETVkX$`QcaJ42jUNf7} zgY+j=)Cb?PNy_~GI&p3IdGgk&J!IzccQx}pa%u7+&t9J3GbgW@B1S4nqGxBm?5m0c znj%WQTm7;S)^!I4#2=u_hqs= zSVR33*e}xczUMYfgLV6`0oQO%{t1p8YrzAWRH&Np?W6QEB|`by9Y4z!2cI+yeJkRRy9og?A~K)!-bs zO)PfOsni&3H(se+&h{INr9e$gY1R)_n>x3%G2puI3Ui9MTH>uAyx5x{+8@uWkouj= zKnOTOg*GG<2Gy-tze{-Eh!C?5b3)zSxc$d}9T1dBP)q<`Q#i^m4vCAZ)!Yax7#>59 z3{|dLIy#y1LC>TS;yuhV*MRy|5OMN!==RzYH&`gJ*}2s`J3Thc2y<4C1Dzudo2(IX zEFZNfh)Ig)>UnI3-rM8RV!yggFV|)@cSt=3_B?AY%!-KYUl`B%Cwit=Pjn|yW4mAE zUrh3j{5NB-uD%W*Im=3%F7_}=kFxCjC*!L$6^}1XHf9=ap>9V0G{A3rR8!2AL8$f6 zW3Y$7h|@UNA9w|L%8W5{NeFcDBp@Lw z-ZyDsE31}(J<8>z{qGOvvw_uRsxSqEs4zhu7qFQ_qie`r5mralvZms zY$zF;)3{aY*H-;F9~uv=hL4K7ud^leug|Z5lopLGMeN#S@iLaKIHm;FW0zK-!uyn3 zE#;eiJjuNEoh`!loqph6Od~(-=@c6tGz0(}WR8V_cS{<@&>EU|Rx;_!wR0%8LyVj@k zb=iwd`a)Iu0_OxD-!=`VMe1JZ1X?(+x4$9G!=p$nimgKXb^jEXsVY-wjn(6I-Qtqm zQKM_b%zc$R$}AkO1&)-uLM)zg6sc_A11)F}qA-3J%8_;k+p*l$lB2;p6VUPq;QAk_$H$*@gh-+H8!r) zu2SM8eW(i9j%p=zf8LR#$}UPzNPJBV5`OFGyV%XR7_`DF*?Ljqn7P+v3TaAp7I!WH z;$LmRkgI;P9jAX5B!dZs)iun^Aw4M~<4Ur+#H?%zTL6Z&jl6^ncx!BjE_aD()@|J1@X%GmUd9-OlOAwp2dD5s|^s)VVO$F+#gGpWUb042s^4wa!q;O zdbdnkGejN1+kIRQ^yh6crHMuy>MD;HRT473nUz${U|Dg$$uUEir}?Wg6G@ncK3M{`zg)ws_#`pZbh!RloLSD$ z=Do6%T3ag;`;%%m0*inWRB#cb#dh1`=ySMlk-yAhpA{vDY>*fj_dhYZbnvr6?$ZMo zjvxE{qc8JIpB%b;qN-t)%gnD(fj02mOEmCSiF=TzYXiQPPli1OOoY5p!%wW$PL}~#;JQy}(j3^lq$Z3~QjC!vj%)R{_M%ET`3*B5houJyUl{s8rC0jypHL!+>saAvBC$@ z2WK8=v!P+{+#~%+Elv&58O6Y3QJT&SzPdP%n3{=j@5?k6FK+Vbo za4%F+a+4(5l`Di?V+^8v8RAWr!?1m=C>#Ms{!|lO8sUCMpuKC7zBug^JX0Wu;=E*a zYI{GQf)UA8IT#`mHwE*KbNtAZ#?uW|s?un$f{{@}jg5!4Xg953hDj>7BcdM%P0jl5 zlXM#vp46AO!tzMd@j-}%oUvf2^T2F2RR&?aTfL!+?~^quR~HO6Z+|vTOrpz(=Am4Q zT!wO*odsOGXSs>1hM!db-~M#XswEqDvZoDyBM@k*yR}wT$*A$$aLt^|iGpiYjKPp7 ztwnLuPhGljQNgGG!W`!>20zme9KYR>9-9VU^J##vlwaTf{|9NL{#RfM{;7=Lv}#Fb zbt2Hv_0ZHC6c2VD9zR}BHIr>^XSk1US5?qKlgI0Q)|k)~l5x;=v;zlLSuvF=Dkh>@ zQBwy}ktrqA`psT7ZkU357811?IusMCZR3&uIIhoJxjKCf#P=4jUpsmgH59o0BTUAu z$_5hF$8V2gt)P*jpF5X!E<{QLlC>tMTcyAw#0kMsj9coSz#|46S{~sC)P|)r!JRzA z>P}QH31rwYC69qx_rWWhE2Yw)qX%<)>6biQh}zMNQQif4vZ1*SqH4>E!r z-QakT_Yrx~DclHT&g%RbonTW$9!GV}wYpJrCGrsD?4G*>0CS)ILOuzo;%A^9X8by| z<2cEd&~mK4{f7@E4w!HD$)&u_)w2f2Ucg|>gG@&Q2i}u_5jZWmiQ>uhz zZ{L(%KM)-@fM3K;=Q1uNgYcq4eSFJrGlzQ6QDt=z7K)Z|j}Ny<(Ne^XwNrTM$)PST zqEuIS4OI$MBaIlPHfm{aOwagza*JlNyrg3I>Nd7UIg<5jBHY@IiF=^)qZ?#0x!YfH zTupm`&|pSA>JWWn@zZ#ut#r-ZK`a0_D-cyT*MZr@E!QDWt(qk$CyHp~P%2q+O8cl4 z6wEnY1Qf`eS;zgYj=H&SG0IIfFatAjvtlgX^Np5cESs)p4w*DFY4R-L)W1fD&|0+` z9;ZIp=N%{SxM4tCSCyQTs%RqeZ}e@I=cOZ885F&l8fsm`xu(@s8pFb^dWsF&b9G$* z-=zj$#Ol74V`5K0JDjs{{U&lFyMrqOk}W%Lz-BUIqSlvIEVN{Nb}Ug3 zVFQ)jb7#NHTkf^yDVsD#5SySuElduvfWn z?UBa?SCpH2hW6JXXP7f?-g$)teiJ!5V97jA3D0uo>N5ftDNdHf)QX`?)|eNT_Pnw8 z{#!%Krodtzw>;)7nLG&ZUa;o#1*C>?!uSsGjNe_E<8I+eXb-^e9!xB?f01$~Ndl5{ z2veC($|TyxHDtPO6Y!LHLVcgn_GcYm!%WC9Qx22+(#vKt;F=}Nj%yt~i4?ijHn=Dx z*s}VJ*0wEk!EsmD%)FcqiYYn2sf<&d5FSmpa#z%=03T_~=bLwx)V1I9t9Cwh9H`1} zBDj~TUb9VFHt3``TcEY(vb$i5v&1P+y=u{7`t8U>tyWdN(Ix+sFy|y^%)X?$wLVr~ z+f@DuwB%JETKejT*%$|j+ORFHJ2Qr0HlRBr=_YvOlG8{R?kN@NzT4ugnl{>+dk{c* zTw(sRWlH){X}#Y8`BplOtjF^1hY3>qv$Z%ny_q;aVP6K;Nb0gktP2TizdABX0bp)G z@G1VAx5ICTY6JFMf|8Z`x~*z56_ZirwO)nx8=VUxV8qp=5|VF@^r<1rh4nvuMX@Hr zcvyk@JGuS+)DSX67pq!rxWs8p={(XW4oWKAQhbPxJg>Nr$1nIlycE~@yEbrYunjsn z6EO!gc#%!O;IMQG{H)XG5T-b($R^7uc=C|dXjBPmX3|m4GwRSz!!#AsS97tl?cq1u z7>P0Qq*^quhghg23ZnMQ*J1YgHu0Py9kSqiayQ9W?px`jV=>Gq=V5?; zH zYM#&%b4H-F0zDt$^wbpNP=L+S)?DxJmZR;9cWF1mo+T?Xs0CvR>2=-S{ncb{=G4c9 zLjbXAI&gV*d}j5Xx~AKu_iheGW@~cT&TKDKjFExrc28 z>Sy1|0KTQ{hXPPuDjO&Q$dS1+eD}`lu{c)JQfd2(R1%PA5(_^Gwg!5LD?23{wMC;; zaZV8#>c%{WT5cbU!cEuMrjLM45r-9K5SAAvc;Df(anl-L?WR50k|@W5(W`FD8&R`C zI5wX`_Iq{URMc^YX|Ll9H4~RvBUgepr(WGeDV*WLaBSIei`IiznscxPxu4zZe{kNe zlP%qrQ;;V+R(8_p%+zgujX^{JiXdG|r&v9uQJym-sBU9>kVyYM+rPNri07>(U%t%u za&rDti<-B~{vG;tT#+0rtcKilnV_T~aM-OLS5*tAR>G>6>h`BG2`_@)YmLwaVghrs z2#3)qacx!O_!BGb`tVXl0*~0Z==zRj*~q6+v(3mweNxw0A#jG5O)o zE?H4x;RxX;5V+Xa(babint;GEF-Lg9Q){G-2^`NLg5Wr3%p7qS6^26J3rZ~!E3kG6 zSz7GNoBIm2OrY{CO!Sfw)SZ9y#wPzA4MH#38SH{H1f-=W=0aB zIg3piVhFp0h2HiY1ToVasB98xWA|0O`2vUoF*9m97m74WQwEid%Y31Fmb5{t`j;71 z`E)jh#25klFF_CqSTX%I=}g4_R)`yMqkva~FSgVt!JWFaIacSNfBsLMiZsNABshbH z+EZs_wDpmb#H{@IwXlED24-I5)G(lj78BrmKimj-3aa1-l>WSS)cShkThBE73xh+9 zJ&FGrv1svEprP>k2nc-U+|fWBC}38|?}w)SsNHaH!mE?64H6L8S?f**`0|5OK7fih zqjmXyJC{v+`vG=AwI1?&Tg$m<1pPvYz`p})HN&8BlD4DNls5Vu%ksR&&*Tgd? zgC#c<_#t~ZS7>;l&i%IDp8%`q||kBSPFrWH=eB* zmqO8osfuG3aqZdRU?Bg7(U;ac^q70tR}942wQZd?LtjbkQOrtY zUSQb{PqOYMxPyOX>UbCz(Ai|=$#vPEmLo%|6OBLi7M`9}R@wT(P9hPwSBiUQ5&shS z5al+6->Q(kOw^FUZhFG&tMx6FrM~bqgp!$k zYq%54KO|Geio706IbM4VttZn3mLfL?As|AMo@z?KL*dc!v1~}8run6T#Fp~cOm!!- z7nS>K~J~2W4B0Btp%{8XJ*;(ZODPXFG`9_0N)iQ8G=_ys?+w~F{CK5 z=(%ar{`#F)z5jLhHdx%b*)f4qCh>=uFH_@Q)43n#B8$oV9rcy)?Ek8X_QdY=v-Ohw zyySlTQ3#c)akEf-guOm)YoXRl19@g_O~(o+HwR>*Q`AF2QL#4)>?5Wh+VfRdC`s+~ z^Y-Stj&vMBY&C^sa2^Z7%nq}?i;wKAxk`n-S&HBB7z~@-*YVbZz1;i{LDBD8_Q|+* z#4fr1*rv&U>TM9Es@d7H2&e@)Z)ag-jA8sQ)2j6PJ|%T2b85yC=dHF(r@5r+r8sAu zUC=!RSLnB~_b44{!+F%dfqzLzxn`2Bz6_<@lSt~-wHYtZ!E1>MS^yWpMk;1;5Y9J@3(&gp-zLq{2YG)s_yN( zB>OK+nB!+JerpvC(doU^UC*F~5I;7IAL&DsaUz$9^m$TXD8x#}2v{gDyQ%P<`ivu# z8-Eb13^tS>>tTCjJ9BAQ0b@CT1ZwO|Xd54)>s{Y)F39S616@gXr_yUANlcQkpb_6c zmtNw(aO>vx2~f<(lmhBF_9ue$08tDCiIABOm=o~7>#RA*SR3tuQ5FQZlP=0LbtpdI zqET-tK`If0**5r9mCokSrqT54`;F#bs(}2@c%WgYMV{9CDY{Ahv0baPmC=jfuwF;P zYlE}RkPF(XKD#4_+Ai{HCyzkZK2uyo(t;l7eCM=1tw6zJvQk8|SER61yWiTe!wW1$ zM=od}$9WMN!pRMlN=mFGLo-U!rSE)~Gv*B1JjT zQ*MmRQ4^=r%vMBKTUWSnCITX=A;PopS(2+&@1hMcO(@&7DWfFah$22bs*&3&$ zG*ubzU`%w8daOBs22IK%}j{ev$t5MMHL^bp+hoM ze7bEhlq6YY>#}9u{D#tzJ?xLOoH}2QN^2t+BA*x@QsSKDjlprX3o~`Z1C>?4co(zD zAZha&z%C^_V7Pq#0?x2sDlspo;?>dQ)mi zpiiq1H;9EaC(AD%Gt4JAi?}&w4qp`A zd=RM<@+(Paf*`Y*NKFKTprt2W2)g?uY&KKB-C7W=3%a433t47x0Sd&j|HV|0ZG4!Y z3J9i*|FKA-dc9d&!ezAwbez(ZE7lV`^^oDl#c6$mj52aJn-Z-NAUqNd^jfba-J*)- z^?nU+VV!l=k!Zvp=xUKG{VbsFP>Tg?f{o|p7OiPlKQ|}v1+JNn^inmdwBhK-I3l)e z2{-y#Z8`xo3^vt#7q7=^E=Gv*x~Fs)^No1% zL=kisx(UWmt4LB}C62pInmrSf4LsNc9mkwT_Xw3sw7B8$8{^n2Yi&(N19egDeZ{Gc z?62Mlk@hh~;=0f=Hn2HiXSpRaw8K``lGV^}U53g~d#EzI5MiDJRd50o88RmH*5O(z zFBUr%psUs>Q9sh@2%Y0Onw};|?$Q>@wV%K2|pcksDR>cp(I^~pOqU^YD)Pdp^=aTD}=EeG-B!B->f*x#)M5m%)IxoiZ1<-$Lb65_VW%iM$k^6kE@Jk-3rl&FCzeVD+PS)1C9q`g6R?pP#r#r6 z3kL8p73rz>S!|G}hLEbBn%oa?l{;DJ;0DZwFrmxOQiN24DiZ&a>v)SJs`&#ZdD}_; zD!R`AhvkO`a=?(N%k?C3d&6vTSSYB08p@Xfrmjd0@9`KwpNko@D{BQrNQ-0IN>~6oeY| zRSlYBWGX3s$_LVE1HjKDbKB`8uAZW`J(*K5bX6l$F19dAvVp~zWEF?D=faUw_aHbX zco<9FdVZ>O!>AcGyh&JkFue>P$G+#`quS#&a_n6sNEjlMqExo^5#*A@DUI9{faP0EBGF zT%zHG1_?aJn1S&`n6aGA&5nHS;hdiJw~g<#qydaK@fGW`}FN+^nsP}*`~I>3Gmn0bf|Rm+TjjvV5S^Z>#dv& z^6wr~&4<2n;l8OWNAfZZ~R%tM_C9vnf3?)25zJTj49}A4N2s zFmI4XvF0ccf30W+Z6t2W@ZIRb6gD9yh2g{M#Ucz}rp~Y-KPdBpG9b;X7puXyK3e@n zF=$VsBq5JJHp$ZCym^s)yLC9UJ*l!Gt%{<(@D+%~_gMsu{QJUykt%g=uhf|$BBC|p zK-n#o)_vNmwdrjdU+&mWDuev3aLQ@NOlr#^u?6>*F#=Yx8;($s$8n-t@B~y=n_ko4 z5b?sZQ+d#)QvD-9Xe~3R{h)mOjNelyBB7^=hWm4@0K_HZ@bWia4ENNTDv%^P&@9(B zSUkHUqwW2e3YqB0&BPk7TVgBdVf)RsgPS?Wdn7x6$#X&*#Vc8+XY+f9Ei}0mi{|-x z#mU@@9+^2*44_`Fo$rD({-lP|m=*PvXLHP=xeFs?C`q2Kp6xhivto3|ePjs`ig_y` zT`nF=gs{xZiAcux>|FiAeXZvs0gF%}|N5<7&KxlBznCYga0O}MTEX(yFunz;J0e<0 zdY)W`m|W>3RdFk}8#U?4AK6-bfpNZMH{GTIMzK@l$i4JVQKB%Opbb>!1`U$?+q~$^1+NUusuoU{jpZFjG%?%Ee^!8neuw4vDjQTrfFz ztBGc2?qL;QrF>SJu~wYf1x4A$Q%$=6HVcO<`Ql|$?hxNvp%xOz#Oa^F1wLO&co@OAJ9UxhK}hww%fuE>I#_rsuN;~Oj-0mSps=#dP8Q%(l$0f3WOeu*f@3|07VRjGQvEfLY4Ri=yFB0Be*2F_V zlIkY?0QBTXU;1Z^IFmi{@GbObDjvWK3G@@Pd#ht(31#z zyH0ieq-G=G-LL%h*wcBd;Y6_nFIbl^ujj-+X*s-Pk$pZU>wloj=>`T0o{d2x0D6J{ zE7`#IMR`1{bI!!2oOc`^sh3I0-s1k6vbtC&bF90E)<3ebxX{%qF5oS$97ip%&OtXn zG$JbQP02~!!T*`^8IxRs2{Udgsy6Wa9p%`(E`QS8-uI#dt&YOp#n#TH)(k(sQcN9e zX4XCRcyq_>3g_XNZiO&sf;4h1cZbZrdphA^;3a(&`CaI<`0%Lay?Y$Kx1liC5w8yD ziv|O&YVds0vjeR~OrneGG8l5%CKD#?FqS1;`(E5b}ajfh%-e9^-Dhr<%_kB59tPK=Lf53C}fMburwqm8h_&q+m%R^8JyC>-cW zD(Fnx-wF`2!7K7gBd*ZY;>f%T8O92Xm!|+J9LLD&v~kAus8`np)(t4@w4&b!2Nh@9 zf8cmsoAWKeMeR3gA*w4e9HcTyj01_3yys7b(fwiee%E?ARzDu` zQX3yc(03+mlM6U0qOZA{SZz=d+R=IzKs>c)HCyK;AK9Q#i_UT;M~xHdRI}j2f*dn` zpUg%eQCWIq>&5*p+I*g#clis3sXE+I^pL!C5bZ6CVqA}r<&UszYWm69B2nMV2gD3p zzcgdFoTDRvf#3aK4QQw6Y{O zjL;SW`?{z)Ub}wd=XZcYnKBgBt(IN2EgC}dpHRH^hNH>=X$@z_a|Cdcy73ZNrC}^68RK$; z<-!LY4Bq`T<_dC!(y$acmu!P6PL(9DZUofQp_%8MV1KXk2grw&2k5_UeFNA+k1uS{ zsBL#P94wLw{ssSWztNeT+ciGl?)FR|>62>HuLjS75n{#O!>x4+q^j%q7+1o1JQqWg zfiD)OTOlgNc5e;Kq=s!5vNf8tq*+B;vE}VN-ZBuFMsg+i0a+Ua?g%q3o7%g*4;tQCrgmoxb!|#pMfL@&TIrlGd>Mjui z9MMPI`I@FbK7S{U58t?%L^DoHAcrfe;3Qu6kqsQ2;WW^!0dfuu8Lm0*R&BmL6+@<6 zv=LGslRpUb_rdHzb=G%-DA0hRU>k7Lz~+T(f!)+JWKEzHU}X;*cK*$b>OjzOUcaJ`|31nqCsvux*FX(MgY zSC`ZKu7xIOwF>?v-FRRHcLO}%+II$pY!pyl)@j3?uAxV6vfL{GQ@@7;Ezu=J2kGo~ z$(Y!w#@+o@g)^X*thN~8e$ID6tKo7KtsB(qLF|$j?rWcrr+ST%&qJHJ5Bpv618mUX)ISj z!UYN>kYe|JX<`&NHc+av=V)$LmgJM6I~>G-c(PpQqlM&-vHXjY_E<}u7dR`5*dvqU z!cWgo&QAz}MMnrDZrsy+aj2y;8h%WReKPIo8OKjIChfNp-Q@MV0QXTCqdRzdHme(F z4oMz^9-f#|o_d-{=?0V5DUwNlK}!(@#g?_mLpeT4(yutjo=&a!xTPqJa;- z5m1Ler3_`g-Pcb!x&g3@gh~mo&4coqhI+>=Ulyv5s2< zEMQds1;vJnWcf^d4e*0`hvjt>!eyp$>T=@|ky0K~Px~O=34M-9S}fc_Q zVntyn+Ohuktpfsiup#1_Sw{wD3H>(Q{UkijsyH(C-f9xsTux}s+Q>Z?p$tBWgCv*L zx}NIXFiT^+DN?&CMKGmbVKpR3;(Xd{i3sdmg$kau0Xmyo*)g`%yoW3Dwtv${r=2&j z0oK?8Z)4OLX9`qmbFi*$ZmMl8ALMIgq~pFa+)ReOolBb`o@)f`Gs}y+3vIaiTyp#C z;E@O^*7kALR!Yh=awYP^Uv3=!nUL`z{!dN%U-9e?W*!6j^9rOuQy*j^0&Zr!d&3@z z=T(fdtzi)AG z{T(XjVnAyzQ_5jPcO2vllCx@ntWSk3=A~zbsGqio{S19?y>OEL${Olels*l3xz^OP zDl5x0ta9-UeX})TY0T$5Y91=!x@G9)WuZOUk8g8t{}oyiTBi3?sDuWsF~z7goPyO+ zV^lR!nXw~BERF$Yq%}9k0;lg56pUu2RZd}hn=_P+Njby^F5_Slxe-3svCvb#FmxGL z48`1KM<=ir+0P<;;bX|&kg6AAkFrA;-7<+k+&!1k)zG_Mcp)Sb{Tdd`As9N*2%?KG`7@5>s&}u{eJLikqolEn5#*dD_LY`LEuNY=bJ}aaL6s^^XZ{y)%!_Z|yP3eO{ib#N z++V7BScAT?p-s|2um5Dvr%y713}H`55u zk5K;6Q7&niO7FiU*Nm7>>OaRtPHL~G(OzjjMjm4@pQe)|% zrsoNKVyc9z!K!1)aVYq$W@6YN{hTE3t>UJ9#WAwk=HfN8-Kkvm;f7N7k}F-c?25qlX^j-`_?mRc+Q2 zG8xA&tE)zUwOWcI&Hr*GK&>%_jQ`-XE`^>cmD=#qjl}4@Crw~VCN9&k z(NiPC!-mEP=hW{@XPE|O17ihS146T84pvBb86qwnIq{I3q(H8WV*qd_ zpjUbje445zfV=`Vh4@8e0Fa}_F%oucJJEoeAbXiRT6^>f6B1CM#})~rC@AP`OagDc z6F>OigU30*#7WjpL?4W{y|vP)6G!Tkz_fAXZ_dHjE&fY@Rf(x-#w6jhEcj)h`_c|) zA-}LJZRS;~{XHJd85s4~pRi!n-`CUajDn;d(w-E$mDF=$?KD=T{;9rSVkmw-!i3;p zdu&LLwW~aO>$SWrVr(h^g{#6ZIJ1ta&}^;v2Yn?2t&bX zS_DH6AOxeyW7f&oc~e|sb~>fNp_fU>ZAuBp5&pI&vmO&G)irxT1$EG&mjl%F3Z!VCH(eE^!whB=(6r2A|;a2wqYMI9P6l<(L!Y8pShF?Kf2gE8`pBX%k&qkQ$9pC>yB19iIU=c#5 z&>+n92sHBqND-BLBDKkPCEm!c6yrS|zN@FZvRw>9On+l*{N5)m%mLvO0liXJa(q#3 z%?a@a=z?cU0=E?GVT4Ka7lYB+s{t0GFMhShUsQyTS@x(O|D*jc@W10ycHq#5POA#Q z$%o@Eg-5W@Hj+T{ta6}?!yrN-gZRaChW3QuE1!pw2O%RwinIBAW(qH{?O4fM=4`{s zS4k?L+d-c#L?P%43}g@Mf3Fu8;V*_N%0n0<7z@R^9)XbW8;KOmdu#54U?%7_RW>B^ zL%Jm*6bWg&e^&m&%(B>psn@-Kihc&dDXeRA+LJxt6MgaTYF;2JEH{=18Bw=omsi$m zhwvZUrO`Y6fw_kV^5f{`HOG3>ibuYskbe6WyDD_*J3GUIu1smsxMAa*swAuO3U=-+ zsNT=UZ?h0xYzk+GOeMrvWzJ-c*{Q&0+H2P%gBr|nALE@qK^bA(ss}WykYZLuq8NFB zI9l8I9{Bb-pJag~SbPH)1gXT|@3Sf7i?*+@v2v^cAgwi$;F3uN^UXuwzAKAU1Y(~3 z4lVTF`b8Mhx#wRx0f zlwAM~nN*b&@|r+pyF1repYE)R2a0E7p-&TBJ~Ht3^H=rIYlQ28+#Ec%!Bkn9iww0Q zRcrq@@c+McA}66*cVHz1DN5p=?v-Mb9+5BQ-%weTLj7J{^*%{)WD%s!m>86yuF8tSB zPacpQ;0#K89Zo4oTDoPgYivOM_>}!((w8J0^YXQ7XEb|3!0 zEHe7Fun=u-8Am~Z;}n5mINGiiPjZgEqcH`CPx(Fk-P!b&*+{?&ISfb<<)j!YwI>6D z!eaE&IFRzsrGI0CY5jVO#L#k8=hSF*Jz}q~j!u{Tqcn(0`tJgrV8&gq#j4>c3ThSM zYEEz^AtFl4%U2FvLjtyhK;h85#Fy1ao96?mFx=F&6fZ`pFo4qDnRjqz zzeM9p=uO4W!?`(~$&{lL7xiER4mt`WX>bC=F_dal`RJ-lSTz$P&@gN9KR<3Zn`U)G zfjBTr^rF3Tvli73=@~mhR|3Xi2{!@Kdb%kP2m)~pPyiLeiwKT@ms})BXBhAxIt}Wa z4=I%E^%xRLp?1JrOZ5;P%p~scl?D3;pGrv($^UIQsth0hH*=vr6COdbvF(L-ClmW= zQDni<4ga#9?yZysP5-LBi(tMkaLo9>nLsJ~0co#2=@y0z;u?F$1*~FP{L;6J;tc}! zvonA4k8+i-CdV1T<<y z8WJv3OOvH)nJZWy?ytxx?3})TgZaC9q0A$Y&z~p16(L(%iB(j-3Y;p#y;%Mw(02=1 z(I%xd^@^v(08&}Cs+8W@ysGMRa9+Y-Sz_S2GEtpPMCTLYG70++A}E&#dKI5h;01+5 zU|x32i@}Os#L?963hd3#asD{W6~pnTE3I6n zYgjh=C}|d76L@V3wj#vARuWjl?^PI4Vy=ppXNAhZmzVkkX7bI#9;)QJce+Q5+jbz0 zOq$MD>(v7)VRtVPqZ?&VFFJ(wpbXmU|3BSH-MC`@gK%b43BX$~-V5remR@`>_@g+> zY)KkQ;$%N;EFxm?hg3stOwUu6)*+IMCOLG(#|AWMr}p54GjwI_IGvbc!wLlT4@w4J z#&Gz;EDniY93-kW6n{G(8Q@cfaqV$i@U^&DL8%k>_KVUbkkD z(cAzg}s4iPO z8c2pEa4{6sG@6*s8)uaMU-^IHG)gXV+$jm`_iwraBxX9&s@9k(_az=AC#Y>b^tY?& z=tG@qvtsJ$tK^m)?n$$eR#N3xGP3XhC%U=7MEI1%padE9+HxdgtD;RL`gmd_gTRUS z-HaB7I4(HpXU<5d5wjsS$%f2^IPh9=Ys3N-nSh`|5VVaoZ-*bW$ESGh3OkfY#>Mkr z408>{{KK3D)}bf57R0cIAxPOvL|5m@11L9*voNyCN`F94hBHIT5XI-X@~6lt2|Jeb zs^1B!L1BnB<~tyg&Z&8Xn_QI-EsE_A39GqLbcR%qMhtbG8UP!=X;KHNRg4PqVF42G zJox_Xk|Xgcl{K@IfQ6wtZbU0>gDBEk|fZS zy?uSjrGd6#PL4G$H|#^olT1>-7nQ-Bivs@%3QhR)95|uZq2)!kk{kS2ps=|RbfF#W8<#jQO04D0Mx^2r(#^u>x&LpCqjkV7?G%Pvs*_YG!Bj(?= zRffxaxzD3NoywK(-Rp&&f1ZM*g~0zcAaDFEXd|%9I8OmbHr^=v)%#9)wk;3BCcHa> zdKX9DyI7w?;)Z8^Q?RkII@G3k`;m3vh4Yoj;!Bqzv0tBA7MWU!O_u8zvo6T#^k%WRc{LG1zq)Ud!1F$*P{B7?5OiMW z5$#+!46v!Ejsr$UK0&sUJbiI0C03qzL7Q*;$m0H&zH88VSP6!w18)otGF7ga3dE7n+ zpUS(&%J%26%Du_=oAu{yd zc{`)rGFQ4Mo+;Zp2lXNwrlZ36pd%GHLV@&J?Ih#~I6-!bx<))uAUtERf3Y1GR3=>u zc+B^UO_qYJC;i(6zR(FyQGOebNC~hW_?onkE)KzAb9(pwL1lzT3C8065>m&VC*+?i zFMm|YY>s>u6=8)^bWxA`M|=FE#*8lu%;dF+p;HhS@rf3OQ45%2)SSa5Dd%X@dmi$O zx4tKXKWKzG_Rq0JMY(=Let6c*>yr5oTb~KGYMyXXVa-%8*3w8pvF_&|`6K}f(@$vJ|dv@c- zXU{ud`+}GE9)-C`zE_5zZU>?LlqZkHe>#~UHt+%`swBX9=)gP>F&)v!&MJy3qT)(K zRWDUF67cYaHy-3Z_o(jR?%ms^U(*y^4ZG_RzVk^mI0tB*LZ}y&iP3dHZGy^q^=eN9 zl?=g9#4byK705?ep|C7}Vyyk~K9s&o0=q7}G9i}*kcWVVkW?LkMS4Q?Wu)BhX`tYz zaK~uG4n8jv4PQ>^Gn}f4vp|aM^CrO$if)ME0KgphY(Ne;IfS$xR6leH=RxH$glx!H zVZChjLNg1)y6-^+0e2VL3k2qu0>)aRtVRAsaM=kQF&4>;#%{ zr-ym2yXSdhAMIAIo~?j?+(#*SvIvay7v$3E#)~27Gf3S!Glo!T?On%syjhwqF)XF7mfe0DD za<(27I6iUv`1kVGx~|tqgLpMvt*%a&AmLdF51Xo+$hBJizZ9`Uda7<26v$uCQ_((_ zPVP|teuMkSJL0!|kqc5D1zR`&T67RbD@(w??l*OG*vEdpVny(L+n!72fbyz3!HfF@ z?V7?E@WNfAIE8%sd*b`=aSFW5ln6t=zKOg0qb-vy6B+>1CWNxdAZ1l0-cfO9CSE(e zp3pMncM{?Fhya2{2n$e;LRo?PGIl$s(DA~>DK(=2i3XL=_!Npq+Z75D3^E%i-#}p% zFMO~U?=|aAN)$LMfsUdbj?Q6L;Ic}>>%AUg)olO79@6sUxp^!22$<9hjbcG_02%12*BG{`_ddZBVvKPc^3sC^jWM& zIFCc46*0xarl*$GI^!PT_%Kmu-Pn0ufl|*3Lv5`%*)X)?zF~0-8L=l^6&@Dp=dDK| zvIq@A342f`4d1@vCk~rBcvhG!WR~d0E*9mxIga}>WAOxgpqGr73u#l>N~i$mo`pOI zE`h-DB}2Q3K-^j77|&*M9V)udv3?$n99?Z)-DquE8sJJYd)^ZvhqwU8XPUUKF$P0m ztaOI|C1ONkuPsTfk;>Qy4=_j>NvS(-c#nM_>%QX+HBNkn9NvBfv=~9u5XRATNE)@7 zL=cU35P<-zZx>HkaU731mS%KrMRyH3Ki_vY2{;=1 zswqp+en0`kR%o|~;`*y?SCAoqS3F-c7AFX30iSy|r5#RXJ@f+EW;iRuv_zlX)-=zg zQgvllR)T}~9n-#w zh`%yzqH(7T7wgT&8DvVnHfs%XuI1L-j_j4ahYf>{4y z$uLPn>NE595=Qvuwo|7+0!Ao6g|g~pi%ghYqbL+Bu*U!)wW zzbTbd@Xt?KVXYrYOCQNwkt3?yq4Ta#V%kG)%pT>rgWlyz-qzI)QOl{Q z_X;=>cm5CD%OGSXjuJ4m{mz=9xvLmSqxgZlcP&-arIw3tljt}#zzmpd(^Y4ce-Uvm zv=Xw}-G1yoJd$EdsaT+wlSS{Vz`VgE=NcIuYQOcYLGBXm&Udvk3I9H%jJpU`l%(Dv z@)C^Q+o>U8XjN%GJQ-9PUmP?(`5t4=zA5?ng22-7;xF7z+3|7=n;^FofPUZv16u2c z6T<69WI6vk6szPP?@j*^YwRyWuH=CO+YGkG_fiL7Qc_D&dZ}e*eB-;Ic&Hu#20ET6 zP{;Md$;yrN_+xv>9oIi5+U@WDxM<@k?k6iJ$gd+_leKL>b0o5@!=nt1sTN3esJxlw zKtQEbr4mRN%u*yGT9RB%H3Uc-TfLOK=N_vctz6czx@@hZ&@ey9AVimzZtLjSR>c1o4@^}K-eg6>fa5GBFu4gwv8LQkU?zIn#HT836zkbFPa}^ujAt{OJ1Us7gg=W&6 zjitwBl?+f&k9Sr=;BJE-n}k2<;&}~K*5#Z5go8W3qaQR0Y;cqlSOr;3np5E~#F_fH zG|RwUzDe1Yny7h>-co(WF}?AAg2jYVpwJ_QkFdZHcNt?G->bv?S}+02#N{g1t6|5W z?&xV*S~=~z@sK`*S=P@5l2pH-BY=p9othz8c1LgDNqWEtGB}*-si=L{J{8-(Kigh2 z68$qzIn{M*biobhpLhKQB-QO_molDm+_;ub zz5C!@rzj~;+WyYeHvxgm3d|`lb^5U-S)R&LIfp53dgiuU)4z7_A_B?4BsnsLo7>YgjO)V15D|Jzcr6fm63QG%qIZmfsdddEjcRB*bgWceKO18#fKo zzT9Xv+GbecoE`kE{4;?|Uc%x!&Z6DQDM`#PesfT&Km>n_{~sfg3New4C%F_%9Xco= zl!~zbk{k!hEt+-9Hl}^*no`GJX*$_Zs43v@|0btWOMm#2a&lO- zX!oqv|AuIxfM(H%ph6@mbB4}%b4FOT(}sV9D83TC?wM`S@i|$F9H?nraFr_mr z{MVaBAynA@N%|-|IKC*JN}3yJq%JLl(I_#lyfplKS(B(R8bJ&7I;G$APjK=X11R^nHCIJUDg{yIy49C@KAYLoq zDvnuSbEFFC3m5cV1r`acBtB{WVj@D}M(_Uq@W`sF$mAbK$Z}?ys$8I%EH`(WWU}Ya zLE^x?R+IRO9P4`aJiT`a1aD9_JvxMrvQ1;8{H%pQ2!RoDg(*9GVBm>z zUHI|=YEsOmv`XD>tN866Q|wX8K@>YvS!pn6FP^IV_MTJ7;7SqScVDM7OjC$&D}lt3 z&^yma$OB3OLf9tR+dXX;qt%+)T2oLHP*M%~NOvzH5!~`pX3DD7PlkpnE4x3ZWo5|P zWqgkem#Ni4T+`Fyo#DV{3a3s{)^6bo9Zx*JGebkHV}5J$T=dx?LGx;d6~87$1dlO# zBQsJC{A3sNS62}8IsONj?*goD1a_*>inAGm&tK7h)JCiHF=O&~oddwkVw0*(|f)h#~FOWx(m^aBHv(!eIV471PhIQ4$}aGtL?IOCx{P>kH4^?bo8zva z34^0Ja&%B%u#^0hO8Fh`3CDFJOpGPX9rmQMVKmhG*!1QR{#|ayL%~FFO$Z+OW@hUY z1CY1PC0j#ono*n0c@;a_YifrI}X$Zgt?)z(AJ{Jz0O>=HC80q$Je(ooWD+ zVjM;RvAO?!$sNFnst>d8`KsJ}tlVgNF5el?4kZD&jOwkBqc}!r@tu~d92W9Em`VZ-;O#FIZ(|x^eetSp00%MHo)p zTUSK&=R415%cPy6O5e4@4qmSOL03gk>BI|inRX)Y?zrk(w`!v_%0oYrI>|AJ&Dq`2 zk;@9+_f1F=Y(ga7yZwz4dTz&1ej4*M9hGLXHnDDQyKeYsZb4^3Nkf) zB2NBmBmVs>_T(!L!0*hLWQS9)@)Obm{|yb%+(Cgy0s;d;ZxjPA|FX|l9JG+t>~ar> z*W4;(3UDZBeSs;^T6Z`Ek#$++?m6Zkw4nEiVGNTgl{E{*e5px&<#?Ru!v6froA_yT zA+1|HuuLEDZ)gYrCBv|HAG#XlxYkJEDS!X#BRYgKV)$+&I8Xo_Icxw3af}t(HqC$v zqLEsRH;M|9pr)2KAI%sD z)0kFAZL)!rP~VKSa&E(pCvtu38n}Uyb$XQe%sn2~_4W0~0$|t}+KiYwQo%&)kR@>- zEyPl4PUl$5bzQ)PKmoop0Z}^Hpbvvd_~1x>qFP5%BE4@=Xn!pDP_(sAmX!@p*sLEM zORe1HMSENKB>(ATf3fFYdopcN2};DnlBybFhL_};e)vARolA{>{V3@+wzM~qPE=$T z#ib?hFl=rJ)IS1gFmA4NQXskGy;}upx_1B2JU>IYGGQPl)VsLYv~p!^@dcgE2IZ~q zZNr{cPpnw#tk|kffIW0(GVcjY^OO>Q?p*@jYg(C>Oi{_nWtlg+STIR)YoiPVlS0-+ zr8!Ozy@XUvTS(lzGPK@x5iA7(DIsH zG2Z#ix}QoeUb1T=bF3@tjQdwGW1lv2PPwPuHB6qOx>KU1GKC?7&52#TJ6lavk~8J< z;XGGC6SH+Ov!&O+1gmYO*Je-9*x9@>7rnBd*4tpaHbhs84k-Vu4ky>mA z22NjCH3P4)tn!%@1}F5ffTcoBO-9!tPv_LI4khbCzIeg#(R`bHsD>gvE>KSPV6g%h zlouDXM8PTtCCPsJ`DNsoR>c|Msd)IkMfeC&_1g_L*ckbVfcJu1U0&t40 zyqWi+L&Q5%->Ix6WKUE+h74g40rAValRJ(-LVC4fMahnxzWb@TCH~#wwE0!rT7vE# z5MHo9T>`O^0ysP+RekuWcOY-!vkqrr%qxAV_U{LHIH0WQRRETxQnuZs^yQ}1l^t6s zufq>M0tiH7hY^|D@jYT1c*Hvc)c`?(n6WPFh~l{)c3D&y5=d4^<_&spKVDF9nDbL% zjk8>DaR=o?Z-7F)e!W<@O6|Q87((w0^|U%F20|n#_})6ke^73OEa)taVTpN08JRLl zl7Ob?SDGr^Cx3Et%RBY)fO3rqm8h%<6mMiUK!;D z5g-V*C!x{OJU5MNVI8m7$?nEb9@{^hPN@{`BIEetxbN>6O>Dazr2#8?dF+P(9wECt zT1V)d2+gvDBK{bP{l=k?g7`EF?MfCIO+e6R5BxO%cV5yca{Ca?24xs1BaWXF^(4a5gcPg!-sM|95|r7bc13)QG-Hq9V<|_F5hdF)3=PUC4MJk8pD12R zPpbc_^^Y(4CwUwT;T2b$YAA-?<{|6BY_dXW5nGx>={xIdJqQh3rC6HeMH4{>(`;xm z=s>y+Ne8tQ+Du@)>yy;|a6iW07yFgvkrFUq#nW^fHwJ_hfIT6(U>DI2bQ}`|+TACj z1dBimD~>cLkS!Aw$N2H}uwRxC3`)iEBA(G-xH8Q(?SPYxr--X@Tn)IT$%^*l!HT%r zm-gR)wAJ-qxnW+QiOcNq)&OT{)cI&>&d-x+8U}e>zmFarG1P(>eBh^c8p0wjQX^Tw6-fBX000~i^6m(?i-Ld>z_=n+VPVL*gE^;(Z|b6joNpTG zzi{b}>uJ9wg&-;6oo2aIg@h;8X4J781#}Y$3h0KW+~Q%J8;{Zb43oKDmBD|0hbm(| z5K<#Mppj{12ef{*@#QKg;1xhSFwVuoT9t8frVMS>iJ%$k2!!c2Ii;W+6R;2Ks0l*` zT}c~7I>qWxNz4E|K*M21SEhs;sZQ23sUm8j7KI&}rYXUJ2SWm&kb{1*B;zZ2g!UD0 z#e`F%uAN%gb&eGz{~k_e)#5qj)$IB%3M@eI3sR8 zD{7RAsq1STIqR=0dq}h0H2bAH4Qa!f@;Qr!yLy))K!H)3{!u29B5C_;EyS*tXwHrl zMA#8mH?uREOaa0nJT9|VsS*BYqlE7z3Hd8YSh%%Ah42%JmEjQN!1fW@4N&E!zAf1# zZu|*-QORvn}piQyU8Ut#-uUOV;c94Zuc%uZE|Zdj92E%-R<_d3FWoHnzY80 z>n#`4ZtgB>s)&>^R5=+~^VGG=-+ zz=(-_Ts1lJ`8Z&BRG8#HL3nQiE8r+HCY9aI>L5|=7b;Yz$Ngc8Cj$z;xR)+Ca^8t6 zT`n#R-ii+~i~ak9cy{TxRpQ;&0?I9x^zvmO>Hdj=OWWps4)p434)2O7UtZww;nr6b zg}a(;LPocmipgX5;_CrUd%V7tM|!y|)n!z5{`4l0M>oBEARz2oO|8`bi;}S8;+NJH!gV4(?toZfqd!D`Ofu7<{c@DzP#Jx*oVk&2$U#Rg47GGum89OCchq@qxuwU<1iSX}%>Ts~Z8h(nnTZ7WY zSj~S@t&PtcblHh>tdYl!e}{VF`vY*>KuBb1lpn!*R3t}iM=7%q9UX<7Tug#HnjwoO zGdLsz`jGnALQ|Q|`ST!{O8SUyEikwh_J*|O6^`7SPdHnzniKF*LyX~X%ycp^C_W>t zxhZye6E6UaPeu9^xXH#OPZz}eTVbl4!592T1=)XD41_`xRuB#aVIQf$Ved-2nkcn& zsLjfduDdRR2O?(f!+d-_-d)hZ7CSDAB~y(vE+#DCN)6%*RG)>Sc%6(I(*4zPa$bk5 z$G}vWYtfYgcBcFnl0g%J>#txWL&(U-6G6YIUm{jb&=PUzf zdBZ5b$sEN5BKxmVlGmYwFs#HF8wAMc;j-OY)GAPkF*GNJE??Nv;HPMsVXIsFx( zl|AHtPb><~?V1|V?G#hWgh;xE>Y_NFO|oVb8dwwGWlzzhEKH57RkvAxu4wzpilD$( zU^Jw6*EkH^!(E+(D6aW08pLsYo3|4v^5$v`B;Fia0ga~hj{k|Xe@58v&pY$;raHWa z7XcXt<^$_0+0ky=@$MwrIhpU0dfK3f2gtO7$BE-W0N_K-diiL9LKIz_b%~7%ahIu$ zp!Wm>wGTKgxq8|OT5S?9VF#X_n&kM)mOTfK&IHp2TLKI>k#T zOyio3j%Y^aLcoS`iA}+T`3dl&VZZ=FqwTX&yh=i~l2s>iG-;tR1t>JPt%k<))Dp7c zo>KG2BzStlFgw95R#zv8@>X$>v9>JA*GvRgyqC&nIRidvN_8L!4vzu`5Ql8NjKP~xvW}*#uZ*(=Y6Y2+OTE$ZeaM3jx8A6J8~g(zY|9I-Z!POR(;wMUa?kyE+v{9xXSOsM=%O zU0%o7_J?LV+2{51Lv7(V*O@}?Pv1e#j{b|M#2&@8tMg}vEx(Kj-)0YCuI7vGou4Zb zu9mVETtT|?l)s^`d?dx3N+%f5f#WIccC<43sl$`Qr4B#AppX%JhWWMB65Ez39&lY? z;|a>btN#C~6k7yo1b#x>ao;}A>MQx~1UP*BqBSUeT5FN^6{TaH|Fefj#W@FBi(M@0 z&vyO!hhI|ax@SjscS!nwC=3G|`xXm6+yuIvm>%oLl1({m!DdxmDM)Sxv!2cO-2wtX zBo9=9nYm#g(^M5(u$CPqeM&w_jO+r5!{B)Cb?{Q_?X_X+;?Jj^k6-PbpI*Iq_%?QX zcyV>gmAY~(42@REaA(vt^M&0JKi(ZFg8yoZM()0KJ?|`YCMxF;T3U+m(b>7QsGjJa zC>+r*X8GC;5tiw>-2qPn4Ggj2Kq z?f7}@mCDt!0R+`84tHlTj-zT6AAy0oJnTBn3!9)B<%Dz{SjJ89F6t253mHnLGs=vi z6Ozy!e$K!lT}`byN?cf7BRe-l5bwVwM#!K<&3SPTmVv((hrembQ3O)H=;QgBVAJ8; zO_>)-zSRTTS7h4(qf07YN!G?R1p7_ucpLsEY9qhTY!kWYh5heHcE6Hcd=w^%F=|?u zqg)Kn23?abY<Q3{UVmWwE594V?$?XfaP6GaN`XVc}Rk(l!(p#b1uM$*bvQPTkc0K!{MY+~TiTv=_a?^>9jVpgx0}FDX6@B=bu^Mm z4w;+UWinm;zNY5;3no*|p#`S^x3kzhCatQjB0=FunUj(bGa3=ITr1>kUFjN{av)Kd zFx14?X%vq)2`?N3R1F7)jzAR2BQg-%OFA(LXG~q*IRl3YOSP%WTOh)lXg3As1)pWQ@-Eud3SY=<(nYJxh{Uh`s;PGZ>C%3miv1w4c$@y zWnuOY0z2MrtGv-2P!67j7S+l1UITPA%aja`hMK+-DYR;wkSS$+v%h!*ziyIx&XQk} zoHs}B$k5;eU=mMMK#(;Sja&HDXK*}o>ccE1OKFlN+#}@O$kpo(%*;R%u0}J@H{r6A zOBw^8xe&a|I#sbM7$O+ws4Z{S3Lpa1b#*m6wp6Iq03f62uGX-mGptO0Knf1oFt)-` zMAHa^K(i>2OS8;FSy>os5PUSu439{aAI*4l6DnJpTa$Q!ex=Sm=MzosnP+9P3AYO$ zA$@>h@74>-qY&ee#1(3yhE0C!bcdiizIk)r2l*(Qn$L)AcHX0oviB|I!rvMb0OLu7J*}CUBqYD<}7WF z4>)LV_Zgs_zuw0=%sIM6LQTk*ju%op*sUS{shbbvSv!9)Dtd2EXpzL(?6GJ%;Kqi( zddOB+ZaB9?OmF~7NFz%|6CV8us_v#Ccfr0)yubeyD86|%+j>KzHO+CpX*;o5oa2%t z7$$5YK9Xb+jHRhWu;D=rmQ0!Qqa9T47b{}OE+^A{>}?g`CzX~?kO=p7rRjvMwh_8ehs3Oh18}P|CRH=wi%8=odRhk1 zvWsii>hkmbAF86E9MYxRK|0uLunSPaKpWEhiD(GPAqwZ6pV<+|2YB8{o5K>Y_Fpp2 z6+4Q5LoeO#2Jj5VpcEzXT8Ei6OI8vvi=hro+0s9NDZtI~y}hP$H%;1otF!dy13{Ok z+dS8LEZmV!R?r4KQiOmZ@dE?nSI+q%L}*&L;1&fX@YV$B08Q;n4s;Yl6){lk1O*st z&aVs`9yiMn1=h{5lDt^N#ustcO^8W4rRUxTeKR@HDNDSIl+ypF+^U6#JZUe8UgTaK5{x>Yyu@{v3w!Nv(7%>$2djTKtasG)-ic9ilMM=Vve8s;P9A38g zs`m14-6!iFRc$I5F?i7=rnB_4=(a5o+ttzMl zS&0&)!SI>R(A36fmans`1CGj5=f_NhMeh_|^~U!tOPkk1ig-u3JuiHyrj%<$V$ZNY zAMD!e_!B=#>8rv7=Z?>vswZ<61^xJ{aV2!D?C3RK;|xsocC>4uWqb^rLRXvB!+wi( zPf*8o2!dAc*62}Z&flum!stRfV5GhGi0tzq8^4xc4$RcJgdX^&92^^6(sI@i;IVvK z$l%E{ttIJNXbI@mF08xu_hdRL`2LDd>&IMW2WtYjMelufnEhI-{_n?8fQX1#);j7Z z6IQ?b1vZY3Xw5P_1m<+&m+(uxnkj>eKQ12Uw>m-KjK+-9dLXR~9~uief7S`iCFJFB}-!JMgDCCngzzEl|59()Y z?rw8#oXT~q&sQDMfS^f?^m(O6diJEzh9K71lTg)&g3sVuHuZC%`8;wSB zf$$MFs~{6N7?}@34GsqqibF|f5KFSKUJ7+PsTN#G5M$^b1E~Dk0atn!pb}PLd#93B zwd^@DuZI4Vg8#z0-X$4-DVZ|_3_bA`lRi>&#kz)>$Qf_oU5FaFKV;!SVst8S8ZoAo zz({qjONqQ}3ZUSS+S(e?DC^G-6ra$Q!D|A~_G{8{NamH7g90~owppibYTMOnY$($q zD>A$O_FH&tJPvOuDpgsPmDC??O)aJ4F|)ey6c?WNi=Q3#3_SOZ+Yl=k6=8Ex9~O)H zP#QT;Rmu}HUglf*t5tzIGw2-)X-JV0RfS%k)t%viys1%v5$dQwOoNf*Rr7dS=^Kmr z&`L~Xo}8C}ah$?ss9a97@6ReDi6M1O1TH)KAwus35DyS4Rnp3Q%9}dtM>KMgT#dkc zLys9EL60X5*@kcEXYfXrkKpT$!w)oCO`jGC8S~;P zm{l@J9d8+^WT`<>LgN%m39L33p87}Ea_X^Pk%Lx<1q>qed1u}p4jN}ro47M1Z-he} zDEn$tn{r>sOi<_JqiNZnb+pDVGyGz}sO>-+5OSNBCt$kriFJ9RMVmS`2pC6W~iO4_Q=!Y9-d>e%Q6K#wf zRk*~WcCePx-F~~RGq8PKBWZ8_<64lT7Ul+m~`P_I08(J$M%a2J{7BTuG%;gH; z5%nDA7#TiCkbuCzDRkU9ks>r3-E6CNp~{sX2XixXR)m*(1g^&Y;di*Un*j*xUei~% z=!t948e-F?$aOfoWT2e@*pQCv7wvW-p`N<1eM|0yxwo~|)<`aVKfztRsLRV**WB&Z zTid+Fi}#T1y?3=I-w>&?2P|^UE&-rsAI1iQ>d1Yi*YxAuP?rR%BPd+0M}7=c^6ZH| zf~SN(yz1On5kQocKn14X#;5Li;OORE=E%6&#`fKPf7sz2#5a_$Ai>N;YD)}J{5^Zp zS~NK=3ltW!s}^=80{E6iCS~4QN`@mLYc0hbH6Xn$Fd;{j(4acZ0Qj`t_V2rF)zY)0 z6lSGg6EMe2)-=i&?%#bIjv1N4Y|^W)BZl-KUI&MpF}ZLn%_*ta4Hx2t(9vK+;1?8m za#_hIS1NE7Mq7jGPgTg=N>!eUruOpeo#A3x{uZE`lVGI$q5v)}EG`Zf7up5IEDit? zN`Zhiod28vH$Kif6?T1Y<;53_5BgW$(9U`p&Dc>g(cO^ShH2o+v0Xhp>IHOf%I@KD zLW&r5QpHls7-un3%=)zQ`h;nLXT~ym55{1MfOA06j&s;x_x!OVRK4~_O%KKa6gE_RP6n9i*b&vgH=l*b|0ZX;cJz@3S8RYQZ zed_xG0jThUob6R$PWgBnLWzet4KduPZuv=;|vcF>#ugLIBsy+v^HSz|IZEL zgT6`h1SYBO6(amcwziSNhxw5U{(JnRlF^`DH+|8&fdZGfM@}5Y>iq?-gj*1vzh?!* zAA1yMoxk_pqS7T%(G9$Y6s08axE!6ODNbohSmG!B0+JQ4F>Z1J9m<)-Lrj<@n?5|Z zv0NzEAG!3%dQ)cO+=n4})HDc$U^C@3Q8UmMfSN*4Adh_&9V&1HOe##mwV0~qXgBh@G3wZQn;@ks9jW*_8~n6}v4H4dLA0WR&v58)N~p^YcUYd_kP z=W2gM1eb?DklyF~*^^qZmQ|Mx;r4^` zwmv(`_hLw~q){8=q&7l-kS@@RvDh7L$Vijo!NZIir_hNPSTxtb$Mj+sgyts zw8<#cUqMRS+yqL#MnP}CM;#bc_qWw1)tzC^)XJbQB$AUrF`_BDfdrhqjaDUQ<$W#y z8Z^Xxo^FvS6&%rK*iJis@QfMIH*MX@xqO-6ACH(Wj|^7I9O!T$Rpo__y5J{K?k&V7 z7?;Wj9z4!k-L5utU^^m(00$u%YkMuTQNf^3Zcto4BUl%{b=Ye48hftmelj;+vms^R zfRY)L!!Ct5YkuU$yD3S_Rl8{>4q&v>D^~hcU!+ z3{^dthv?Py;)JeOhe3Sm8#qaTqy-D9JQ&!xV1Y1;{-RZT+)2))z3N13-LMsZi_Zjx z=xgWQx_R9f)D<{c;#VzD>AD$xqoY0W4hTsp&gXNHx9o6;p5a>WalvQIEG`Dp^nK2X zay-{mBON%4egrrgoda%$)rY+&ovCo80HiHTM%36}&cl zvqamP;Ho_Mep{{eRP} zLe@O-4@TCz`(EKETsds^(#5>HY=;&5Yq;J~!930~eMbtG7v)p*G{Vanm^!yFFcsB1 z&ZwG^s)lU{`JsK5X0_~FqXC9LBegtn^xG{Tk-jVVsr7=dCR~?jR z464$EkAO8*H~)^?_>dDU`fpbDqL_vMg@vWpCM4IS^RvMVyqoa?`xbkF)xuvY91GK! zax6hx81s=`t-#HXzQ}V$9e*%>L>-vOWI7jcwA=~~r$>GJi|j{Eo>cb*5z=-&!m(OL z&=02cO{t-Zf?57uDCl;O_Rljr>)WZ})r-=3EBQc9a2D7He6vVcP|i=#RwpM{YZH{^ z1;WoSutFw{&QUVev>9?#+?{|}M;5rGhmaW_&KY2u1xEnack@sd6VMJcGat4FM^6J_ z=9TA)Hs2$Wntn;YlydCc?~&Hv;?1J-I*YWNb^<5&qo(GHu51+R4}xYlYg|8nT#&HV z_$sqD*~fSHuzu4!{$=XOd`uE#|K=|ON9Fr-zBq&@-yv^Sj0a@Pxi5H$8UKs-M%p3d z{Vedhw@0{Ev{vXjxiBKr+%9Uj+A3B!6Bi-}UUX}*P!5%WR7K?txOW9?~y@CGZ~nkqT5&G9e2B$Bf)gzG!}I{C-t=VQkt<`9^g-34}K*}?p_`4!a54&G~v z?JjrZxaGC~;C8Bgs@tTF6SJ2FB`=l4S|sO%YvwoGdHIo}ehF`tT*uE(L+0z}i;blB zeY3%z(sEbhPyGzacLc2eY3Yd*ZSackWna7fzlHmS#$zPk}v*_jxQTp-`NVCMD3U-U=`EfO7}}ZQPN<#AAl+o9rCDO46ZNc9m+6@;v*v{s)8hmtEhF{zrElfL?Y>u zo{4bt8n4V=X?H4_^@`F`|JOq<^k5v}?cs@X-?>p8zbBp&-L*$ocR?Y8y7w7M% zFFbW*-e_$waclZ-UA%_J5itQ~5z;QDa>-`)*-vd?(E8)LFNV&^JSVR7sFQkH2I7rh z5jdWtQM%4B+-$`I+M$k4LwTsGE9M`|$pVvLy`a6M-pzq4SsMG^ZtHo$z+^52rk)7ZXyur#+p=#Me}nfN+z=#;f5tCaM(|!f^*zV2(g4%q>ui zba~d~%-j%j4Qy!+tEvnIfQq$IOPlS!nc-o1PAc94Tf8!t7jE)R5gd`S$~$;{^LCV( z)xyoo%jN>7V6d2>M_q*YD2~KJIrNN0MYw;zSzI>LB7tfwF<1`26UoDvK1x{A~e=#Y6XIgqxixeJ_lF}n61!0^l zCIUn0KboW{`~2%cL5&u-djtC144T}&j_=)Y(o;2E9jK%2wDgYmVPQTQ9 z$FReL*RSnfu@McQnYRE6H6(wVv3!AJRjd(YU4abtOWvJB+mY) zrcHoHik*_!(Ym0%QBS-3iFjQ9ppRy6lkX;J1BU73I??j*5U3nkSAo`TWykVxnJDJK zjI-63idXj9;c9~rhISedc$cST(xlBad9q)~?F zvtIu2Matc~f)}R`x)qywzy~@nwtRYJizXU=sPlhgqr~sE;}_2(@oy~1@-r~3frTxn zz0jqzhrjbPZ#wPY{(~48sxYY)I@F*y=usW0Ok<)$li8-SRpLq&ggCV7API@xBTYL0 zJ3>XZTB`&^>&}gJQ|`9heD2~YZpnXFef={c&&)y(@8rJAn8_~w*|xM>=&p@Y>^yF( zQ|(=Gck9rK6+>I^Hf?4eE8HbLw+_Np$0xa?E|21lQI~}UJ-d0IIX``B^}x7eQJehW z>_6G;zZ(Cjme|y-reCIhn895GM^guq03eRberBcG?^AS`6SGK9=#Vp6FR*@440!Bol7`De~dwE*(zxgT6}$~y}pkBCG@9SI;4TXiG4 zkOY}kEO)=Oq?Q2VG`D-9Klm~pM3sxEXQNB|0E#wpLVQ4ahNB^cSYog^<;_m)P~P{5 zK3!%tB7ka-*WwVwaJ}GPcagli#D`3~*j=msL9{~tU2Zh`a9UGDQ&u40T!Y$JWmaXS z3KCqFoI0kfn5LUhG0QA6Z-AA6Riwr?;tnK=tpOaPNdm{{G}MEcm|Z6#@SiCmLLWNY z7CG7kCWn`sw|g=WNy;|kJfaEwbOS9`n=@JqhKum#2sN4^*HlZot1A%l4=v^lM|_LK z=?hDS{tzeL6<=`|AhY!lTFsDJiyU_(XCPi_2*m>dRjh`Kye&Bgkno3I)1Ok@)nd0R z4-XU1IL%QCdaR0#&XDRzN))e;-@7xNVSA5aHZW$7tG2-N0PkJY>Cxkc)K=3(wO*8v-?Wg2VghohrnwnQniB ztzmbKT+U1%In1LaN%`@1+#-mh2>ASla9TSCD3o8$v^4qh4qC#!rS@-qp_H@LnKROp zV|9<>jIC?Q&4uqrovl3UqReH1aYV$G#yyQUI+6^LzBjuRDWhEMor6dHI)Lj8vfn35 zv;vi+wzfTCU@7^5lE$lccfCn{(`EkS0;tp!i%vEz>EX9x(DsX;b(-<}B;F08NcjVz z`1haPn31Dr7R`cRF`!kUh*ps0qxKzebd3*_A0YQ-g6E7eWS;ebhu*Fe221zT{!b^w zos?mZhpT>e5=E(!gR!}3GP2a)%9r8;E!RktTksQ&C_14s)m3dbKL4XtNx|sKbQy`$ zL)sa@>d0vl`P+Iio)Y^`6d74{}**r7zF_^I+b>udS9x zzeYq|W0Vc2pY=S_CSxoF2`ah5Bm{HPXA3|{wh0#D zS5iWi(j&?eo9vqG}t*)!}oV zy;NJnTsNu9laq@Ut%qn8y;k9GPykUtuD`aH8GPsfkTK!KyGVdjtOkn0XLv@m*M!1^ zm3{yu@JK%uP!|OUsH$gqhQ$KGY1MP5b`Z&zL&~?QBlgKCaJfOEk3LV#2oTk(mg!&V zjK({>+43~?p{~cKm`vGzgt>^1$c`B2ausz9=kp`FpZUWcE`WeJ7~U=w@O?~)<8QYIr6n$XBKxc zYoMJL3Zk&g%B#hI1eXlMfpGI1TOU%;-FrP#m7mbQ|I^c>K26OrL_(S<)POh!# zzyHoee5?h&m7>~h{(TXEgH5fjPG0=RTPpRc*DCqypbjaP);7DiIZ8D{L0)2emY&$+ z>Vd`Y?OnWv5_1)Hb(Ah0ORXVYaZ+3X?v|2Xt|2qekkBiAcKYa^>!BQ<=M&1IRo#(& z0(QH5y=U2W=B#Jrg6(4U1Z7~Y>McrTHc14+UTeI+Q;^&p)h6IjQMTae7GWmXof9Vu zuLze3_IbU_n-mzX4sRf3Iop$*MS9M^X7i;hf;>EQ{x<=3Qb9Rn?DGzEsUZ2lJTY4! z?F*hOU8%(I#5Va1F5_>xbk-}T?k&q4(RoW{u;F8M^^)6X<^jQSlnsXsO@uj8mZ3t( zsZ-;^F{2SeT!_aD&V?=$DG9(7tAthzO(8IC$I&cQx@tZIAntjw+La4XH~woBP%+;@ z^`KZ6)JpS7gqXEb(#meJ*1K5DlTZsnMYY z44mB80bO>z2JSn#ZT>U}6e*&tTr5EwQTbOEvmtzdw+6{5D=|}0Gv${k zx+v^JtijgxyHQDhu-PO*R9AzK58{+dB%>c26M~YlX|rdyy?W)RSJrfJ^GU4~S~%L$ zJlUg+L5-B;P!cv;TiffOq*ru~Nv5Sf zgQD>B^&VMg)7U_eMcOEO?<0%BkCN!-@r1L08^A~f6Oq#W3kM8pn~o-*{g_iJXk|18 zlFOX7?Di>E{~@EO;)@nl4eVMnHF=lr8{HYNw@DiK&V5UH5uIx=Fi*{Nvm~7Kj506# zm|W891Du(6bBq2)*MYH_K-zyxAZD|dL5OTPzV#L@fH;bDPQrrGL?JcYHq+peGy4wT z5pk&~T-KaMSf}Hc0r2zSrD}BKe%_r$_crAXXU0}Fx6)i-S6ESZrE4t1-L71GE@A6?_U5Yy4w1x=wF^)u!V z)@7khNf7t0Fg-cBrW1&u?|f}bnUu-k!_@$1*0}$@daEtibHe9R{jp2^)42>EEcKo% zm-$J+H881wA0qAUhDR=+8T3c#Sp`-rvFh)!@*8bmGYOn+nB!8eXl?sn^!84uO&S2g24BL<0%e=k?T|c0BfJF0-4LpgXSVb_Jq8ekN0vHnB#f(m>rXxS$gjg zJqFx0ud3?A2_h{`#8$NK=Ap}WP0vUt2v2e@7?(GWXGp}XJ;`IGFNfdP}cK=aZvH?KO_1a-?dILXsv12N_hI%-vFB?7z(8!?3N z7^vw?Yhkq_39i1nIER?FILm9=L1hw|WS9k~pf)Y8eVv`{Ne>>VjO@-fy~LGMpf(5t z7XDZty!sb+Rs|mh^df$7O)uF{@r3~9(TFtk^TW57$;bS~zlefa>h%+*qc8T;K6bmI z{Kp{(q!Xx??id>YzGD1o!N8>VvFrTdNJL9^2mjDa2 zXP~*-zN0L4f~8Q2kbM*)Z6RX(8tS}LdVlqi*g}}oyADiY;+16q8bA8T2D+bXsdagD z3VwvStwd?*+WYA+PkvIQmq&e@?GwIAdc!M1z_MDw5)-T*U-T`DB@>;L`zZA4TBi|G z=L9zS9|oJ_PW9Hflr8%Jw0_RtH7mXY|9|UHLtFF-5$&t*B!lbPL$PdJ%?zk3GBgJ? z?j)ZS5{y&^R(|myl0Z0rn)29kj8|Ue!jIrN>NKf3Ny88++_vuCuobzjJhrTM`27C~ z+pW6Nan9QbeP7y^w`NQjU~1oc7AkrrMKgY&z&5r)z6RwBv*ZRn94MXkgeQtA1){gR0W0YTcmo><00mx=m2(GV5)6H%dKi? z*gTQJKAoR8DFkI~^8~(!9^|QR0AZ*cfIrNB-&#!4P|9bHeJTN#TO6xEN`?=Xs=h(8 z;)9k_q(~5zp%ahJOAckE zbjyL7Gu#~KUX~O7n#5h3hOC|Su{(adgZjL%W3AQQI8GKYMs=n;4h3--8PipY07j-l zNN5d0i;OLY24gz}HfvTprj5>L1e>RmPMa887Nbu`FYZb!X{+0H%i3ZQ;|Juv1lXgj zsLbN3oOnDYCjcp&&7lt!R1W8pJdQAg6gV7o|E3)A@|@+l;uX1DXBcdX(JUU1gD~$M z@v&p#OX(8;poY4{s=%4s>Q}9}NUSx++GsH<5DP0j2ww4s(i<4X#6Y>`a~j}_1RLAr zO39{i90-8l#b+)k@+^dsj@9K(AoO}$f2E^Wt|T;W45OYi1Xy?~Fc2q6BW>|bY@<<} z4jhDy+m=P%xax(A)`zf|Hq*KKv)q691XL_C6%!GTpiIrHEXC9iLK_I1T1wVU3QwC3 zrD+XNlfQ#7lMt_pB?vg&xqNcH=*R0J_->u)iBxI}cJ}t(S`$&2GkWil=31qlTW%O1 z-ZwU!G2Ps3)(=In_IelVmvw&7q)SGh9Uk*>YG3;{V)4wu1>_BygtExm%)oZgn6Z*s zgBo{hoK-U`wI+cmm}1&c?M2#fFKw7sm*!u|S2COUMZzL}lhF1C1v4p7Muy6?y@=h` z3++z+xBlwUNc{?5%`!69hZ=*unBM4$qvKFqR5^amJcUJ?a7uxbz}p?Qvk6Qu^c|g9 zGQGrK^ekvcLGl{jc)Ke3XUKQK+Gvr$*^Y|Trs_o+jso!^C4$^Cf;4sIHsh=60dNa< zO>&%aE{vxMJ>D8d(F6ez35a6uiN?tD@VPw>O*_k**V&(iH#V&pTY@@}YXi@_8`yF# z_mm*_&%eojXE~Bxvq+bxL1+rXyF0JAO4%|gCp*WBJX=VGkZ zpM4wlhkfOF4j%E&TUQ2s=CODqet75SdVAVkd#ljzE~#G%#c*?R!HaoIja~)Y7LG~r zU2Q=%ZPoB007`wBTV?|e*1nj^f;-Ny=7@r<3PZT^nPxM5HhdqQb{hEb$(Wrw^e= zs-%Zeh%z~$m;?FAc+SVbD1$cFqnyo54~?Hh1i5QX60)eV z=ZN6v0%|o8NGTVSeDq(}$1RkrxFP6zWHW4~4Ji6fl?##dzwqx^8TdQq*GzZe`Wg4EjQhjpl9YAV> z&UyxoL7m*^#CzU3pRUICJ?~Y)Jg>*ukEzoK?wx3SpF+~5g?nFF)JiB073-K9|eq_1LY|c-q;{2Wfnco119=eVkpTYgz&TWG# zzS<+>?i6N*S&s)mOSh_AEcGM(PRJ>{G|2DHf?oz9#3x^UF=EVu7=3)ph>_EiJZJ@J(TD$xY;ZZl&S6M zl!1J1-AU>0d+)fDU#)Kc_9pV=z1`Bq^Gm1gvd+(MrLB;*b63oLlR@oLA}*bO`)*q4 z{G}I^3VcD+4u~dRPEdQ#ju=nq_6A3a$supTtZIE7M0NdZ%nU%W1fm5)M(|mk>qA-l@v^hVEai z&)SUZCz~5VA!c&v)&fb;^28mF%J1f`C`(|{GnJGCAtvur*4JeoL1GKxyg!14f>hHP zaLOeJnw5(|2zJ-FXn=Fsm5V8LHt^#Zm_jL=q5~RhBk6R}6ozr6?HkG4%-pdFnI$V~ zc^#A5mOIe?W3Syuzf!PhS=$D3p(8swv28R-dRf`OFwD=7`p2~>ESmjJC-Cn$ye%DM z5$s{>2gzD<-WyO=f@is4pY-@}RJM!DSmotkaPVCB0IPy|8d^9U9=$P4AGAJ1(S$iT4 z3}UV==TweX;^eREjyM)DUkHC+W&8m+OW>#)@>P0<)Q(k6)wz2k#8dd51;F7kbp=5qyY-41c zq{>MDW~uV?1Uof8vQKz{EnQv_A?qcW2qB1m?6aOjhXwtt_n_oVYF{+HT7S@dmqM)V z`wVv8_tj=9(fWNlJOBF{z>o#Xjo}d9fq)}9p|Vbzhif_+|M8^m{;DN_So*(Vpv^+2 z5Q_PXd@^~?Q7evMQ_&aFl=Tgv3foDs@cBB&(T2Q$n zR5`#dHlyi(v9pg)<)7VWvHwreUcE&MhT0M59lY5Kwi-()q?0EdJ(N#=W>d~dlFf+Q z)Uq&h^S4Jg>s^$I-ZHd+BN~gLFEKm94*;LyVgj>~*5N{WGMXMgzdxzO;2^}=pKYG% zlImb!C}8AhPv}5yqYl?$BGQIqdKBXJOfRGM>5nfUKInkIOl1TP3Vu8EgyK9#MISFM zVc4>!(u5iJF><#UdHc}s<>n{66MBft5AL+{^0!aW%pX3u(SF^tFfR0p#E2vWKk6Z7 z0%(?nLuQ~3N~i4xFouGH>)m&P1d8aKQX)c2Y#FGnWe;6q&MR><6tZ(S(#X4<5y#P4KT<$a3O5^ECC2feVEBL*adiLHc@H2gw2ipx$0d5C_uL ztyF=7nc6D+Cqb5x$RwO)?FFJkjjK`Yfdm-Sy~6Uj18`~0%mB4wYCcrbh-jlBIQhi7h7ER# zch>Ju-n8xv`GITraO9aiHp{+eJYGVxo{iA)2tl{z2mdc?u?y=WGR3s|m+G|t1qDyR z3q9Lp#(-EuJA13FK4^LjU0Px)FHbY&=NA_C8m7+r&8=QZFq_my^&>{nZYVl78s5E& zF`9Wt@%zRIWwckOG}_0`Rte(PtsQPxM)y@M8OE^Lo2dMJArg~Q03s;!O=u2*x>pm+ zTuzL9E74nC%8UsO$^Oi|{QTCPaJLa@@7}#Q!4`DbA46^JwGf*u=Z|jguB*;2X;&^#n90$>eNH?r8MnxHEvRpLsjBABeTMLk>6`HshJv)*Np(rb~A{+iaDcJnM ztjx@-lQowUTmyQM+lWdZp9m@b;V(X24jTMjrE`7qV>)WiLFZO4m@ypzIwelXwh zoe$kRdD1m~1aM84CPqTr2_{k!#i5*Ru-Ni#Z5#+#=8!1g^B^kYp1$_7D|%bREzMH4 z4eXU!j$)fX8G_u7I?HRQt-q#&hTm*5PZc@C{Mc1EN9(vWjh-kF{_)rYu1|CR^-Ns$ zE35MTiT1UVsjeqqY+nAF(EFgGQlk~CRF#$4Y@3aJoL+l$m3_^)QPsl3C6(~ zvmBcQfHbN>W7~rAJ=83jb`+a~uO3&+g&$KCwof&ud@ELH4&MDZQ%SersB8#3rE$NP zfCzY`@(ii<90v4B#~k`;7|6RgKug?35KB?YQMzr`wBR}@VbI{JUw(ci{q%Fq&mQ|c z7N-Q&mW4a_#XT+|_#aWykp5y%cuj3kj^Td9u-8ognfQ5DD}AC^4lh~QAB&YwPjspoooyHHXNi_OyPptB@}gsY)c z>xWKEwYaP-TiOKxbT5F=Iy#(&lu;J0vT^z4kZ>R^UbJ|w3{5x!yi~yL+nxamfQtdG zLV?QVsMkE_(4r)!GTm|rEd-9@nA|XY*fU%S&LsU6fIt2lV13c7s~PDYooO(TT*3;v zt=d!WnUKPYXh({un7Gj`{^1Melf8=BdVSi3ZcqJ_3B&L}S77NSiZ0~i>|bRmz-e<{ zuV3=*SsbWp;|aFvLe>SbEpe&lR;p4jk9z^)R$R$YNB`HyPfRch>VdHvs+v$%r!H_q z3;+R!Oa;nmwI~r7Vob~9Sfj6%9V~qQ1@gKd9Fs1+=}jP-V?M?Pi!g}{Q#RBT{RC+!OW&>cqTh0xrnp(y;mEcU6}%-e zyMw-N+$8mc(K7Zj?c1m8(odb(9CZt+x^U)E>r7s3e)xvSpG(#wsZ9d_m0Asd4hK^4 ziNqi}My``fd`uVA&Xyria_Rn(nuw*cpmKVPzI>XnYZHqjC|wwnQR{~!Y(7L^-6i>{ zcC94l%bDrv^aFbOi+hpAhBeQxK@p|Dd^-2CIlNkMV44>Z(?_?cSvC~X(mCtM5?XQT zV%g5twZSjF6}$w;D4YE-7A%CS&PvH&%`xGi^LM!E2KhoZbju{TJVvE2lr6ZNcw>Pq z>)cczB$tz>n8J9_>`0A|Dg+Qhni&dlT1KD*P5_`bl=sY?uB^mGFNtz2DR=BY1VLU7 zSx|9Mz|bW&oDCSMr6D0rE1 z^LR%Qm;~mD^6^VHCkANi3#4AF@~zXyJeQR*-^*0snUf8cx3@dy<8&*ty4q>2aQ8zm zHif$h&IU1z4%g9KWbUa$%xI+o%=YzWxQZmTwFWcPwLEUcT^R<<7&|#)VI#He(;RT@ zA;YBrQGgkg7GIPNry$@QAtdf=D{fUC(eGxO0zMk1yA-xvRH7_dQn*Np-Q0bv00`zQ zNkkisq%xe>Y*#_Sa=2Zy&MY5Mk0|7T0Zoo7Bw}KAfxi{WttsS(qOGgPY4G!LdCg_> z2CjnPGLQo?K9F&>0kH<^IfLEDj?+6 z1|6Ips}Hugx?}#c1$#y0oFb3;xzu-`zxs3LNB)=gWaE845L@u1Nk*^i2LV+&h3?Hr zsE_CoQhOJ#lp{8k#4_8;0rmh}2x1||Y%)@r=nwU|y%6gwZ$kmT&?Y0LwW;@hZYu9V zz<2kz(QnJ0x&BjRTmkM#8Jsg88FMgEv?i}^TWhV&~-icxMVnxY;; z3R~Sg3J44gZt#Nr>X?RF({Kz-9UESx7~4QT0FpZyz*XA9S3NIh%hJ=u2+3|;M}1jY zO@dm(u0A=j(oy*NnJtA33UBwbsA`5zhUX@EgK&n4nRRywupx?lmi+ zII{R44wyz}#+Y?3^SQ)O51+lHbWvnr2aomcAN3Zz4uNT2&64jCM87M@Td6DaCB|95 zh%;4R3xmQKrjW_x(2GcPwhzn5zu;uw!ux5HWqeVF<{wYRk)JAl?)TpNWpJRD0`aFVIY0b$0YI#ns z(HyVJFq%U-lPT$n1EJmKAx|;bVGUhzGF_3vT-vwGo_Ik~{U1=s3{fmI_2@XAe?dhX zH9U$3fafkU7>kVL3X_!zrp{t(YTgG&a$=QIjuu>Hf%=7Zgt=$|P?1xe)f_9xZ;fLH z!u#E_Ne`Ck&#?eAeMNQ@zpw+2Er2N`%E6G|g`R!;baH3k(%!pQG|QBmcQcP>k+Egr zTMTJUNOo7QLW}0RV^W|nJmjJmy%Fh!;~s~Mt2!hB@BfP1V}JN;ITtj$fBFzJNW??v zt|W|94u_!*YM#;434tHeowzigjbLE`tS*FO2oi6*v|l4fiq@O{GTGcZHZVMGk=kV?QTeN zgD^U`dwphgR71DxBD;7N7<{+!ex)+^*&$H4lI4SU$W8~Hmi59w0~cp*4lob?R1;aG z3K*1XD19VNwr{{KypJOL-P*f=VtH{vxZhxqCOG}8W~R@4Q8@4p1U-i5h2BO{=Raek`EsdyO>i;6hb zf>-9Gm|B`!T1=4(U{Bm`_23m>@zVMzs?56l*MfnRP$h=%bjadvl0}BzULZmP)Pn`s ze`--SlPfGT$ZJ5+ZY+Bj^}vch;Kdc-x2+{0B0-lGAQfd@6|H}dcbXY=0;W}JBJQ_F zkr&}~37N>m+E__N*P^tvvCV~?WyiuO0<$c#qiANRYP*orVOaKuRw?l=rK6&Ufyf`W znI@MCmdu$%wTbP-eMgGnY}G5&d|1_o06PG|Oj~)Pd%x{6f8*hIpTf?DNsM(>SAk0A zRefr@!zT0a(x~g#ts}uqcMGf=`FZL5IWhz&*l5E-9oYw?OHME?W+a1(A#=1elt5N%RJLl{5PtsD|*06GN zvZYUK33&`Z$oILWmc?Ku237Wuzb>*v59(6Y^e4KOYA858Iwpsbp=Ds>RJ*fq$pm3p zoqZ2CkqY<>S;})}$>kS0eufM$va%-x14ZYF8(+FRbNXgT+IX;`v?%4_E!+^g`EVE` zD=*4%F$?o@dF52jshGR}oinPjm{#OfOEP4Fxq+O3$QyY+s!P|eVnq|6^Kz$KuZrRa ziIEG8_&LItEHA3JX?p5r%yztKTQM*;8kfLO z?qQ_oBJa^aY}wxBTOQxyA@A3Y%sxnPVmJuSNoXfQ*Z0C+@y10iWiwz@0CQ-fNJK(F zYvCBZ5>iElDTOn&LZ-4-F+`|Qv6yCK2{rr$YQ_*~{k3G%Qg>P*DV&Ot(1%lU1SW(` zamDqCrhA!H`2*#HMr3jO= zmosy8D=JvPd3iByRjf-9xs6s5Z3DZLwwuZAjcpD}hVlN2b;xzCJ$SMBYl z+avgz&0mcBa-_G=Ia|6coCN<39G-=MiR`m|pcKl zJabQR>YMR=L}F@GU6S}W(w>dbznH(1`JrkxMj~a&d!t&-d?SS6)YSSZWwpO@MS*{X zVnhGLqV(sWbT?nmmK(R7OZ8*F!SHKWI~ZRJ=<79z#FWZ31=voeDFiY9Ull_C4Iy5O zX>NJtN^W|~s|mF(>Inn#mTmP1pAQFsJrw5$r_IuGL`e?gd{k&MpFXt%9Q%IQM|5cV z0H=n(OL!dyk!RGXmq<9WVh}rCDedA=6;p?urPP4(sGHs25Q1e(tQL7j4r6D~V&+P> zeTo)MFK7FhZHmU^%?A4pE;4;vw(O5D{GdinzAYgGn^tb|8gQBWn7vIax|skdqL7Y! z%3@V&*(n5`&chKAM2;%SI;%+U^uPUj{(Z_cf4`W&O;ns4^6cK^B7G<@28L_{Jc4rp zv|$nRXm+gB+isT7@q#N`U)xOyA9y{*>zk{Xbx}<;w^8zoX2UG7&NoZ)h#UYF0Y(V7 z!nu}2d}9hf4G?++s%0fl(2e;JdKWfj#fkYDn)1Y;9JgA>Gz%Shnmpd?n?alzq-TNJ zFVs|6&35pMQ{IAOI+D5sINB{o5mI5M55wV;%`A3!i+>HX;UCOcc-b zfq_LJU7;E@Q)gW94o+(aHRx!iQ7JCCq{`&^k<>132(9G_`z?7j;YrU4v@z3ys!yND zt>!NJV4oN(>ORV*O=ziUG_dA`%~JZ9{12@mTJy{^AGvN)hdfABhgpFFuy_!}vWi9e z`zqPnm)uRQq844nevM4f#hVTpbc`Bd$;Fzds2TyGDP0R?h?sbEaOgzI#8&QEYz~W){x%w7y@oo_V~gPg>;^fyp@DD zK6Y@D$i@R!CwmFGLgM{I_|Wm|UeDN(>4YUugv**hBD?Sg!X}1`)z~k(tZB--W_tG> zLR|3en%myJ7^?+!AK*Jb=}>)@u}9=TMZI+cHU!DxzTgl&V*@*)HEJPB?H9PPYvT92s6mI)Xr9><| zOK)0iG)$pitY#i0crEr9!lvPi9qABw4MAk{ooibG0X8 z0t7z63K8x=-e8#kIrEsycegX90#Mot)dzJRS690Lmy zhHv%x_3|`RrbZeJX`tX4B8`)wq2b!psRP5_?u|O2Gt`N{$WIL0&V=VIgmGGNE>ey{ z5h4-cgcyF`k|YpP$ChknZf>NdzTox+cgceOcN7zYgM!X1%Sc1`K%*L=Z2V_HIWMun zb0x9>s$0O~GY3jQhh3wA2#&)>I}o!ZZ2xw~d_r|XB`^u)cxwJkLX^y^2XSiW#3d(i z4;&x-L)Qht;cuKNZ~y+K<B}BK^@0lm<(K}3ZkP*Idt9@Sgl4%iA>~25Gpk+B{LzIX+X+|tUy}8_4WnO z%a07dYft48_~WXh;S3VDKHVZ6E-o8BlkDHc30uWFR=c=^C6;>xMv4<8J_L702kI!6O8IJrT=d{rSV~OZiMgmFEAm9Vkofzd0K|KV zqi^+oWdnb~oPAM5Xfo@a2iX!(moGeOXt9B~MZ(#yvrl)v^n1JX=!{R9*rI^GUBB_! zN$-cR%J$?yHQ}2^;=!QS9Cqc2d6pay&nB4EgipI4EMmo76+cV$3?Ou#Y>2)5z;qiV zh?VrT*Q>>c!*a+|Lv%(E52WxJchbI5&RZE9JfyPtA$?l$@0)jT(F?yxQIGKdzTwtr z_47UC>$Ch(b;?Vjs%`h?-;1ZEzHm?txrTyylbro0eOYOjy8C3vM6x)lSQ|kmm?H-7 zjV-?VzGhp3pE6D0SN@gn{J^4rozRR6+l*zs)xBlL)o1Yd$WiZaKUlEn=%NKjbrA4F zd=OT0G=M=~7uUB9fuy0OHPX2EXA!a?{sh&LdwL)*@6Y`LR0<3&Zh{kGh|ez@sbnG* zWFQH_YeFIsOCS-$X|b&ydnZybg{B&#BJ0Cu4uHKIyS!R=T1*NX5j8(&SrZ0Oq*0B) zE))i_sz%UsfXKd%y(972uVI@DoTBP_=1QlPHM+ja{)W?nt&_hCP+~=wYW7`*pmA_m zkXQF)d0=pW@Bhy&@jK(s!A0M_wEQxV!N9-Tox5cl03L-7)PcHDM9 zb=>{^Z8i~P6L7yKtVb*JJ%8{2wp;69q@`l-o!@TnWsL2?2=DOErfJO(YMuaIDM-qBhAU{IpLzy1M=CykTd>3M z>*&x;o^e|!^;hE^FOiV{r}jR4VC6^sX7WtYd4AA)?`2oGtllzi#5#%7LR~v8JLsoR zt6OfVekGIBgja6T$SMJRrR6|*>NN@q&gRBbl^xcn1MZtJ0hFx#Loy8JKEczy_4YAv z_N@~KbMs8fSvPNH@lhY@i|vZ*=Ein&{{w7N*nWyUqhBOxF;On#9xrJfLWQG16x(B9^Q;wv`dINt{kBQ z1454^Kb$CF$wUwMf@7|BX4NZi=xNho?vlk3!haY`7IR@hb{39jW)1r}n}_|*R!{c! zPLjp*r-5|(a;KG6*Qt(P<6e(neahJi;MLeILr3UQAJt8oeamDieYfNg$$EwMqDkdf zeL6(frhlDf;%ZM+(7;RdD_eAKqIQd`mrfQf7rdVy&9XiPOOuz!4A1Bbcv`u(cQ~Ny zi2CEnf{&|@tl2n!p>T3u->bQOtFr=Kk$?*l$7M1c)k0J}0t#H|)_ksGMfDcvp2s>z(ZsY#}uE?b;TzJ-3#EJf>!it<_%HvpVRN*s`z zG6-}tnE8@0qJgg{iuQk}h>gWzm#V^{e|!JOqp)KqyVl5G$TQ-)5CqZG7zE7^ocyeGs`7*g4PAt+}g}J%YLDSPrAVWSfIQcOm!c}1LCeD9iGX z&s87K<+wc8@80Nids76PXOrov`3pnhHqCjTIs>R{c zEVA-xQR&oUcw-oxah(;R3nr|EU3yyBOjaNpM)*KXs&PnWzI9pyEWW#ijuL!_saK{| zjg;mLOsfmm`k+y21orkRHw6*Vw2Elds2+%AV?a`vR|2Gujnri3n@?RsA}@Y_%odzG zBpwz=1VnpfiaQI{>S487Ali{P9UCeN%gSn(aous#q#8$V8nX5+0;+zcBBIq~ zREan;djd{~dFK_*WkyjW-~w#h>wrS3CbL;Fwds0g&2%s@@W+wB{6i11)y_p8W|=O> z8%+}ZKgMWzOBD$<*4FWt#nw?SOb|8_01C0>Rf`?U-7FA`Gy)I^sQNF4QXS*S>g5W8 zNO5=0t|f?tBM$g%W0!ToHT`Y1qoW|gs$o3FX1)H_qhD<&o#!3$Ivv_!9^fJ|u)h-# znRlxpf-f+fYBZYjOfG7= z`%762!Hiw?%oW&y#liw*Ef176}R_V=eZhWB2(5>np&Do zgy=Sgn}9{ZJ6@dt#&rcnZ{%Dz1Eqw@KDuNaUQM@r!->uNpmE_}-nm%XhVwBn*IoSU zM*dc5`VA~$lC+N<+LJcZCx_KT8qOm1c2Lf%NlAK0!JR~G+GESdj520YV z46O!X5x#2e8UMxe#75`DXXX#vle+O8U-1=)QVJR6toU&zc^5z48;Gw7A zKEepvf092BWe&&UShLXNzlHr{Krv0J1$aK%TC|}u5e;!41~CEdhjjX=s=SO=g5|D~ zhZ+%?+s&JM%le0q0rH5?=C_j4*;H$RWrDyrZs|Ic1pm4F?1Wk6vi0%QfBctcFnKa` zAF7xZ?*;-8e?3-`s>eE&H}mjml->#51SmaHBwF_|#AaMJ!ayeY!x_ViA8`$vlI&XL@5GBH054pvM%cG@N*xMS7J zkla=2*24ZX6@V-Dt|~;Ib}z*6esLQOUxa!?HKT#Ty&XtUoB*7ujDJc(5#ka5=n+N) z(HoOw{22k0NdynMaViHdFD?nuZoZ6_(4Q^1-kSnJ213CRmvOnMHZbJYmD|Z*>ctUx zYFDkk#U*?h0tgYvAjtG){A;^hdGg9FZRYQte~8(Uo$GR*x{}<8oq?+xrUGjdzaA3u zWXAh7bY2ERM7pegQWyRrSI{?jlilw4PpDT9*H?}7BC|vmE?Nub&+B$sFEsp$E%L&M zO@Zx8N9D!UdFzS@Ppm>;@H;y7WKiI~^100hO0UYxFiRuO4%AOkaN961S6yP* zB;6Y^Of;*IBjJY@!x;JsC9L9n@2Qwk)}BHVMv%V)b`!KA+Mz~xkXpm5*f~ZY8pxz-xrL|3XzzDQDWN6%|7BqkdPIh(H)nihV6wY> z4Uunty)G_m@Q?NMmQ??QRR>AKP4NMg;Gq9&;m1V7L3>`^JY;qJhZO-qD2DTopDDKw z!w%}-_1~F(I8+w=e(6I%OHjW#Hhb_<$&RMx=zxT|XWdTD%dw&a2S+=k$NUc{Hv3)P zYIX5RWsDDsN#KiZO1n_O0o^tKo$15D?*^nlIiz{KBPm4cEq+MG|C4&mje_&eUU87i zI056jUOM~f1q}JQd5&^Bm+?c#GzS|0ddcNac)~x~ofJj-{WDr+*tMJF4>&=X(Hb6tl>Zb-Wg070d|FibrW3@3VT$|kUr z?(Cg15{+^?R5CmJUm<6Throq2sW3mP7G)%?{rd+J?N^p%4j9+=-I_3s~(x@C=N1r<{$R6<<)}JSvE=stJ zXm6r2?wUo^Q6o;MRK~`0a-xVF0KaZfbzoh(W@t0zgw!s_WLY(Z3@E_AK_U9SP)4MB zmi!?}j^F;M(Ne0OJD(9E5-3Y~rAmQFm49i{i|E<%`{wvM;sZ54mzciMH^yu8lfi=B z%tJ+kFE>~%5Z_()Pw5-)H*^14d*4lEmqb{9$Ga+aZ%AnNe@7ns(TB*-cU;Mf{Hv08 z9jNHS->bYO1bDA@L7Ir7lGSC|pLB&&Fj23M0Ntx1(;NgQ%+0oY(5)vf@Y{0COOP5G zRD(my1`LB4MynE9y-kmLoKH`{c}HlaNV6#Wd=M3x^+u4V3-&{P>sRN$kp>**H54D0 zuJY@?!%qbb?=a{jNS;H_ev02TWB#=K_DqB`_j8 ziu(|yk8O8ZV;%Aq<~NQh$5a!&3_v&PqNhjg+7+RQwn+mFTXrcaiVSrft1Q5{r3G+Z zQs#!8P(-vbdZYt*g1Nl-bj>GClpge7~&j)8j>gA2(Oe487?#is=zMhK|V_jJ)bo z(p)eu=d-vrYo0AtN6di@e^K}bFkIkjVpW-Cle~%!`@NR zlF={Rgzk_>nx(0G-yeC5R*5Re>^*zQeT{toix~N^zAvHL~D&deFE3`inAAY z9eH_>pGGPeRKvoE@N)_ELM+2WzxnoV7kJtFUq?*M*q*=Qk{&Mo|9Kc@AE*u@89a@NfK^RhUrMB#UXvm#gEtIZ4v!OYm#0vx8uJ3^}1Y5a(s>| zc*U}m(NfUjRqHE|EURQjyY<)yFb(@On0{s z3zT%9VrN9S2~|`^kK$D57~ot>*_@$plH_!0Y1t>NVbnLmo+52lOOF!S=nqy=XlY|- z7&(b@I#|m6n509^Ei&W@L%v>aJBa5(GC__vh_)P;eer;tn+?hI2UWZyR|I5NVG$EDjcpzpDIHAe8IOwsU+lt7mlxEkGG$*BQ=r zsILG*%PG`=xMCt+UV_P#r^TcgkD^w#00^5VK(MY4I@Sc2KDe?e>w2jyX?0+exr~fe zQbSz?d!k(CAXQq{52`v;mW@9EXwk5wy}7YyXO&=BPXkzw)z}_Nnl%CvPeO0NTR(9i zSr_#$cB}w@DEO&2zKTvOR>Sb5Pa_cI9YWO@UHY!1g7}zql>6snP$~gkxm6Z?Zc=o( zQM#66;CWw46l}EEnnq=2VdK-C&C=l5B1|r3J#v;+Tc)vqM(rgUp0?-H?f`mNl$e0Z zK2Z} z?EPC3(YE}|u*CIxc_vJ4m(+uaR9wud2z!0lZUQz=F=Nuj`~JXJuA1*(w+YHuf0t^1 zwnL}S3;1EOu7o>7er@OUh33%9$%CY9Y<2HV_!A``4d@ah;d=eq#D?0D`N%ON_7yng zR<6jsgv7Kw??TA|U;6N_fvHk@suV7BQX;#vZn!KI-kBb0X%IfOBz^qqXk>0Rh(c#> zlnfeNebzXis<2-+lpR5$MPm6r;7=yfcws3bDexc>u(feB2??#V+>D?#J4#VfM}&zO z$22z<=;q&M&9mVOg$%9<(5Yo|MGcT{*>F?TP->N~=QeP1Z1nJK^m`z1F6+z7=e7!* z(N0#c*Dw?4`*Y@}hla0$$?0}32vvI(WV_9*XL`BEywY`3jUYTvUWY|ntLMreG@U;h zHoL~Y>4t;8?E}>adfEDb5}217fO69sc}o;!*Nf5vvR{rbG6xQ-ntr1$V3A@<+%9ed zn(MQp8^?Lu2~813tXY%|DE07CH{1$}YQ{B#t~HFyAT>*?7v?ul-78>121AHh;M>~{ z9a{Z8iDFEO2!c+4f^Ao|?41muX6cl4Fk^f|Y2N+8tI?r?R<-y=2L>HaFr=m)=HxbOymu*dwJQ)9?SCxG^<#ZPtYcvlP*X zfck=_Ci0J7D?SPZ)8ioq2TOKD8ylW}13%wjcKn15aBKH&4a@3l;F>l3w$UmT&a|qC z#cZS30bo=nxdVg9UtaaHFQQ**t#9G=VA~Lf9!0Q+LnsAsusd6LQHsK{$J`h*Ij$f91LOY5f z1(_N#!#n69ch;ehKxKBfx>&GwUKs^n(MrK<(=2AqTBGG(i;cd@KRxoZQQd5p^vomY zx*EK3X+?$CqG<<5f3Ar7#D0u_twCJIdi}B{=5r@SpHd`YRddA*k^|aHC-~>LhcAop z-ikFe5`~!h_)m{-Hj?&mlsR;KR69J!a;ZF4#LM??5IOjUiE)9)`Tu;3Jd7G!#A{4= zJBeaQ^P^skz%QZr1K@2yM8)W=f!1@^G2+|#zgWE&8rL57>okjH8w1f%|Ei4&bTpD$ zccuFpzA(A#mO~b_{RGSVKL4m3Y`MqkWc>Dwa#j3BGrC{o0U{r*sy^JM6kP74{bT88 zWxSoreBck9x06Zq9_QN{Fk+ceH%`C4qmi>tMcs$)?(%r@!X5DQ1iMfj$pz1Y;<@-c z4$7IJpq#fO?{<6o-tVP-pBfp6q?gWpDZZQ-`?m>K`j zv|Utxt3=fA$lrLb+#zxRa7{PE=g^lxh1-@y!*+|1vrf7_qa!#~$(5m-OkK<_$W%r) z1LTCBv=-&$)=;jI^JKC%_BBeLx1LEUTyZ@ml~OATyQN~c^j*tHQ*tD?3*Ig& z$nAoRMEfEkZ>3G{LL1`fMsq796#G)MOb`E7`#y+lu-)rt>C1|j>B29P#4be4iM0fP zOLg-ea(y|P^{!Duu`e-q-iy01C^fc#3ZfRZa8GLfe9tI4G8Z&^58tImqv&{D6i;55 zX`+L9p*&v)G9x%f;SdlU zvNSENY1xQR@e=Pl(X-m}{yPVZDjv;c?UwyX_)9h^p}ah#X|O1T#KN_7(xim4vQR;Z zzXPQ9DGnWcH1vU9`b>e3tR;PVu8lGFE!_-G=l_H3R+GDjEbtNA#~W0gFR|h+O3kWT zmR4rDeY>vK(Ab6wBgjKZVyst?{8VE7QF#wCxRWmHL`h=tAh~cl91Ss2$RggLe=cjNBOHDnUsVY7<`(wGJOZ z1aev0!^29z;$hTn+`AS>aC2#$x^9HeFjB4b%Zz8?xKD$0@J0R|nF-8Kqh@eH<8Oaf z7H*QMg+{2O-@%{AuDioJXpMz71jhE5!A)yEkaYth-F!1%qD{EJPr^EKo`oP6+Pw%Gu z3+wxmo7eqZGxx8!yhx)_LTIYfUU3UzwQ;;yJ^HlzzqDdpvGt*#4N*CaVVRan#)4t* z;yLrW2)vt)PcjcWNjBx$X{JRkNhb%s{Gtipg;JjtJ(cu9kxhQ3xDAO|25$AV)-~5| zTGBzJqGrK2D|7}b$V*rnQ!lN&%M%s^)Z{PpVU#0#&IBz#@zk#`?r*3pM2_W@22{jI ziZ&LWk2_amkJ>?NX4fsrfB3&TdsjV*gs7F%2%=H7G0 zz-Caa1AdlHj0L47&kIOVR&tFwms8Nd6dzWk;1xG61eZh<$Mol3NkIeiym4KiV0Au{ zAp3ixl~5`~vxC=g{#oXoHtc>wXTN#St|THkscK8ifgf21c5s{VJ~Ux*O3M7jL8G%m>-y*l4$AATz0L+1S=UbuKL_N1npGFKUh!gYK)wPJjXFxVMc9v`|By zF>9e2zkE69T5Tec8ZXyqpl%xw?zTrL!OdM(3cPII2^#scjtWOS@8zlwDJ6GIoe_n&C3i&r4!S(CD(}Ncm zlkcnmXUor?WL)^Bvp6geSrZk>u90A3;C1H$*w1AoLS7zIvOmVn&4;dY4y1N2== zNAqxibv-~O|LNZr^)odP)gk_Jve0ElnSJCFHtX(d})C zFb{HWxhG@uH()g#z=ykSN9s=S)rdDBHev^&B|CzBQ!?Sah`K~aJ*@*8)w#!hh}ImV()4i{ zLM*O8L0r`G^{Z1-kEm^Vhm+$ClZHI|*#+}$p&7%qcd~kiLgyy&r*yMD)GpcEKb5F^Z!gvS&j>%}MxO^2@fSIAc zlOK&A-7`RWEKVcn_9QL$Wtb!27ecGRp^sYWrnL^S`rwd&O17+CWRRdIN^n>OC2}_b zWwMA9l-@(HUbHamL&veifMS(bj?)P_bQ#{V%TMsGh0J9OJ*01Vm*yj#yOHq;tFFXmWUnKSUqGsZb;t9Ag`6ubcn+CqBwL zr035%vIVKeM=L2MYMUfq_ZADwu4f6cgo3OYbV~~{MEbd+C4HKR#-O{yhYH2(0|#bl zzu-Y1nU=wS#H&Dhuv8IJ`ms6r<(rTU;8q>+FF7mwPk&m>L+!s|eXR+@2?F>v_>bL0 zVpT2?YHxhRk;@PS8TT_3#|C)`dI&Wk0A(D=eDC{$z308F(^ssH{8) zJQ_QCIQHZn(4m}OF#p#6^IFlCq#|!`#39Vqij_FFkmPRVU#e7mE?`TzPm`n~Dk?HF z+@Fy_Q-gL1)v>~0@sak4Q`_!H3#8v~KQ*!Px>GQBqIEO#kH8}_FN*@6 z`KOosq3-`udT~uoy6N63Pjm9490xQ!3KnGN41qF}FO;FQj7cy&35}&@V=UGJV0tn% z^q+h0c7?8bGc7Xe(cnaYOMXi|v{1l2=3TPt6!59+HIDN5BrZWA!0O|NTaqs+vq+q( zwbvgDEe6qKenQGL4$0_XkprzzMRsmWiq!_=!e({!L*WKx7tsKA43^>qb zJx9QiNo2WR=}wNmm6tw!l5jayXQ<3#7EV=`om>waPqBeR@^$EM^vHh8!Tam@@@ZdD zF#A^RyX+$ShdWKOzH}%tn)4NP0ppgek4o2cNQb+n5|I-~f@&Z86^-ua?WO5qj zlcTujtyx5S%Yf^N*IU11g%-bTytv-CrfDB9HAL`2t_r#WocM*@(EHY9Ix_@;da^Sp zbsztqq#cA}l|-V&?EsuIEF-NmNBr^iBkgj>9@(CLP}2=(AFaP}iD6s>|fe1H+6A4I$IZmWxu?fS>%lY^MyN zEI!e1#G(gf`uN|(mT-<8Hnq1yT~5O9{hko_DxU(RL|Z_BtO$Vn`47f<_~%TMb;;X! zGg>jN4@eNQNpN86#vD*Px~TEee42J3ue9D`+T~tqkXo5i4z{(n|A&Xn8N*?*#KCz5lL5-^C| zGh}rgk5adMXS6|8qYzy&AjpzUu)pf*}r$sx@`knkE9V)U@>t>4*;%(^rq zcC_T8qVS5*<;&SXlw_Ax+XUw$8h^}rQR$zupmo>8s5Ru=qlN{5oA;aC3y)JA^+N;T8NTnPo2OdC_J5* zC^jquqE!WP6ee#due+HhXUS0OXE-7zg^{BJ(qB_hlWS{QIq+$2hvE&Iup0@H$B1_6`4GB_Yz*LBK8JtV8cVDBj#VhHzsZpp(iep-7k)B5l1I$4wPJL@k2$>){qEZgvwv$pKI z@QgdoinmC)B|htpGcJTCEU(qFk6#X}M}&Rvkc-sQ`u*+OUpk?{^%_mw8%$vfZazIu z9WT|JT8fp6Pu2h--RP{&!`Hq+DUFm=)Wfb2sgJ^_7AAwyF<_^|27b2iUUz>#4}|IG ziN#Lvg#XVI$y)K#l)?qG@_x?Y?%PhDajhbN=`F=4DVDJt6I`W6EtRU(vLNpVQb!O6_3o(cg|z)@i;6sK}D+=EpnOgCaHJWJy|K3U-|KaYs| z^?wKnql7L(fcP8_Wo#MjwliVa0^83%g{PU2^+M^t>3iI>8v+R$vfUiYo!^i(Xj_Lg zLT!4pMuhxiX$AV@m_qLl&>9b=20_2W#M%fELcWKCs^1h}0}N>a`9`Zsv9xo_W<`*h z$HRFTX`8f3R{=UhZnBclmTgijeeBOE|2M_7TrStBD{q~uF8XvIeRgb5y|GzF;k(#`AabRb zuWgP**z6~-XD;bix%u6e@c#yKqMNXd(85wI#0a%~-sdGf7qT)hE}#u@Zs>(58buO@ zHrm`N4;&+@Gj<7q%>F|;aE-lt>3ecs+RJ;D1+KS0SpDUX@5{ezA(8#SxAw2o>ss6(7su&le_!^qK|Aqp2ijKYY*P}=l8w`S08yLJ~bgvmMo`UW`cG1CMf=ytSW#=;>s4V*L-s>jp{IWY-iL?JyahIPphg$fSj zd*;Uy`1S%);!4B>e>U~h)C<(SX4fWvJ3kUK>4mn84e!ZjJb^T5|VDru#!2@Z8W4PF=sFW-TF z>CZrc)3g-62EO06fR=`PPiM4>nO9?1HVCvhrJ$!@o*UNrwx_VV-s(Ihx!UAvj@>)Z zI@t_I!MI%cx264GcB7p|Ea|;d`TWH%FP1(K-a2(bu;0!-X_5Z+my{jjs>E#*K|g;G z@O!~Ec7%dw^7*6UYSz5*EQjZ>(lSPe<-Wx7xpenmTd_CTR9z!_`y5J zG^#*u{`Svz=Y?wdy&WDUF0u)V)NaWXMVZU|ve4>$I`b{5b0U+81m*}iado6ISbWSP z-lRs4-ySI1lxjr00}&gjWvCabmu#97N}1~-HgT%C9IOyd$&>vBUCCf0G|+wQxHrcr zuFYL#W!>Gwe$Gpyeacm*Xexk9l#vVu|$S!D(^D)e5{_=5L8k35+ zJjnv#=KwkK82Yci+_pn&9m_{aJlRGm=(^~O6(J!@{*?)rJkOzsy`)kpyXwx&D+$Gk zmtN3qBEg*dT{;FE8%MWz4P>SDRZ0#XtO@&5)^U(u6aD=5fGW=@paI>;11or&oYY82 z3Kt>LBPjYG%Jl^c+S_^J^E}tZVg1&{i${5yyu1$bwIi`dN1c)(7!&%vJ%qYv2{gmS zBcso~6az=mq|au=LlUN+5EVsd5!SE_wfxY=%*lpXF~}xO z1FWKPX9yyq=#hHTr-a8TljoRJf1(b(pqu56<)qtmtZ6r7d>ZrYhmDShx#Vx!Qai!dL#Ekd(M`z(0&PSkWZDpJV! ze!^+>1=YtdL|v&YQ#b+)p`Sg)2Y$Zyz$&t*AAkD$R6Uog#X_A zBzE<36cN1(Vp8|&?JRc1vj$`2(xn+5MsQmx3Jp&6KXCKUoC8hJ;aJZ*0+b$CPv*xg zKUaH98N5Be`xtEn`~uOg^vFLm1oP69sU&Lp)7&|qZy11+DUry7O_Ab*IRU(CE zF>S_-gX#9y;kfFTqxlmcT@c0SyIqZS2u0&>O7Nadn@+>R78LO&=5hqw~m?HM@kKJtp{s|vMPc&HgK*V zrAbe&^5k_~D@^dzvnf85jC4S_#T&0s4?@j0u)RCyEsZyMQfvb|32ld@7M2&ghE;`U zI!u*d44-%Hk})vq-`Y!*@!>%8+CvfAIe#F$>Rtm10LuE;ypiR4uNrDw6GuigO`?^Y zz%C`3+LEQtN9oet9zk0765wSlC&O}cWhB|W1)N*m=2t(<5&p2Zlx5`xbz<%VM2O=j zuXTt?^>C6U$`~SDkw0aCC(}1)ogjXPbkz?N3$}xk>ssk8_l_JfA3bW4OzR?h-X5`N zk1Z9qbbM>gwhFh}4jx4Mvqu~T9}I@59r_Ti+aZ&wZEahBG6)}Nz8iye7WU{~WTRi~ zjAnPfFLB>+p-WLNW#?-bz`GX|r$Dstyh0zx)hKJl#Css^*1UaFibo6|DtHTC=n_V%&JsRdPjlVI-UXj2ZX@|(fCFv zGREYq-;F_bpD{Pcs+4(an$rpOe9C0IV|d9d<%5h3g~It0du_Y#xlfOf#tw+aGNDQfk>- ztSpN>{~{13l8NQybiBZ9CP2W^327cciL&aBqmjKtUlOcRSbh!>t68N$%s5roW=;-g zF5I}76IS(aN6Qx|Ww35SKN%nB_Rgyks^=9C87uw#DDP}6!^1Kc#ml#_mZ)XY>%m03(rz~N?iuvV-Wnni9h!U_6Xbg z5*hc>^yExgiN-X1?hFC<7Th0@&z4nuE~Oi4%)=ra37T%@UfKz@JXZI=Wn-TOW_g zO1m@YN9j~jC~f@3TYTh_3>!^4E|+gJ3!K#vJHCW+^(`>bx>*(02f^(#e?^(R*sPDH zK0){K2tCu{55sN-zv_NUcZ*1aUoIqef+Itcz*jL=amy7bthMf_3h&}onky9TU^KQG|vQd(2g zXof^3cQ(9Cd^fe8Gv{uk7I~UqVD9i|;@6+l4rmgyP%lD{EeC>;kfbP>MH5{nDXKt~ zcMFLI^#xsqoO3#4&1h&(#%gjb(R9d)-Fx=`4Rc0-ln6x1DYAdBxE4e;%Spw^zMLAZ zX!w$68#N|sWsVRtBz>gZXnOuAmU}XxJ%PgiTzb|gv+SZB3_a1}MS}PPd~4reMh28n zPcA`Ne_pXXp}o(!jHkSX;ldNsCh)I;eVdVxiy!9Bz$x;_c(Y3 zCooyk#J6MN>3PCYo#(>vg<$H{?Dp44aUds;(5|2#)$0+0Zps%9PzxpBorT=Aa_l6v zaQs{C-k$;0SCfOUE)Lie2r^dr2l{5qx{ziCh!5T!TO7})gR)ingZ&X(44n}GPym)y z4f94OTXOV4F%XWlu=}D7Mv+x90XuF?_%L}$$}%f6VC$0LW&RjdlJtwSmXck{zcW05 z@HhOFG2pU@?KERhtZRo~#tx_65OMkKOMK=ndgghFPf+)~?#k-?{Kdz@K!3SGH=08& z;_Ty94$M9-TpW5$mxQFBy=oWF@POcg0?%fCb74kRm_A&;|AeAEOK_(=+6=guMu=It zs7lNiXar3|eeK0=WiDzg&?LU-1#EiaLdwJlZ=hM9Z-d9Ta2i`^R@(*9sx&WzY zlyEA|1O^6F9rDqSPpMu}opKx)g#4JG-HdjS{$LeRUY%R-1~@wi58N?%gw`VPLts5Os@g2qf$)%rH6f&FB^Tya6n3I>tCgp3ub-3&tK`7*m>vK}`5zrAG9 z=}ir;bkbU8Qc;5o+zaQ{r+Qf=rlZsc6Xe5&m6!~<*}0fpWVJ#yLRXs-6XCom5MhO^ zjt?52M~cxG_#)wnRq`E|y!1WfnB1E2dqd4SQVeYF7roP^T_#Q(UY`N(bvi8GtVk;T zG5KvC%eQ6YzsJavdQlz|Zx5S_d~cCtAbepBbLm(9ysCugXG*;d5JN7yugE`d$TBTj z7*p)$B-D)-E&YC$be$?ox(*e+L1>nCA+6TTtRAhNxduMx+HO}?b;J3(-trkwx9Qe_ z!u!H@isB=TS)cs4A!Kiav)@yhr@S}P$&ZL)`Lzo@eC-;aykV(S=ey_fiYi581=%L> zSA$2SmRl~{%eDOFNh`FO62TfX^djAqG-xqzpAc6N&$_4{y2 z)SCOhz=EB4R%(iYhoWmSGb82t*+O^do zBjTh!Hbnk|2t`ZUP3fD4LLvtbV4m0~TXro)X(7i_+*9(j04Qx4k|Rzlp#b8eBVF@S z5#*!@J?i>t)SS+1)=q6r@&IWa6RJapD+Qer6m3P#gMI9VvRcQuJ_0@ckXFM|@D&!Kst2fUd`snSeZQdw$d;;N7+M@i2LRC*g!35Ye7#0?eFf%YD^ zBXF82^jS#*1tC>M6w5!Fb{O4crIKb3iq$Nk&4YUsQ1c}LCt&iNX)k;><6uot+cC#6 zk~We?niU__W(?~8PKhvVNLaYgXJ>mDh0$mbKjKR<%reg+sPACyE&(GoPnO^$uha0~ zh(ZY^f$e-58$1>0{$tU?B;O3hx0aT89HJ2;bO}zC`}}pG^)YwRtDbzw(hsJ_jZ8om z0VzPf3;#4)RF|+b?`ty%3y-b#XZabImIUdXFQL5C(ByXkXt!_U!~I@L!kTm-{GrRv z_(4H^b|U0{Xc?Ju`o?S8G#ZahW#xG zfQz!vx6^*rE~U#Eby>O;Xsd~FhCfJ3l(F*JL`n1NqXG0gpY~iv7Ta)EOwL+o0^TbB zgVn2w3YGP9P6dAA7h7W883*5L-rVn_qe~+DrPJp1A0)!AfLYI-y&IR{A1C;o`QE1- zEXZzKXc4qIJH9nxCbI_24W>+OtNkv$eOC%4%=kNsN@I(jX$lOR@W}r6e_@*E!b{ei z+YKsqyicOkgB95eG*aa9c9uyWw+Z@v}y2Z-m_9 zngoJ`#a9Ez19(EL9^4Nj1&61IupN0fV#vUUxPz}M-R5hqiyAX&oUnNT6*!npwCn=P zVf-6uiN)W(ky&p51ixeT?DO%54p&wl_dpZq;iIOeV>2)qJa`WF-vidw<1_MoF^_(* zno|Nvn|ek)wl6_4_B91}+#b`XR;XVsR(Q={$;8!{$zsma}m(K175BE4y8g1^64O4adxTlPf`&S@hLs^|@z_0y2QnsO$W8#Vx`=5Uc+$@{!!z_tHfa0olw9KAJdMy+bCAeQx$*nG znVEZ^?)r?2yL-0QAzN7(Q2V`y_d*ZQ0g-t=d6wxbJF^p)_U?W$f42pz^oKuiGUdx! z035zh$k7?u)&0kc(%MOi$#v47w%PWWczPZ3F6V{|W=d%O19Sbg|A5KARnA>_1h zk>Blws=xJ~F>U%;{I)F+pDnk{n`ke>x^er2A0MfNh)+s_v4`te#z{mxoa=g|9-uL& zguPFB`I|Gi4OhpA{)G!i{x>8r(0htPPwIM;JztYld_uN?&+N_N zRI|!d2??swPr?!ehHRv*tE**_WFWVNxnNv)!e0<)|b+O$0*68@0vT#A8yxu1|o&I+8)|@Z* zsjD^7iF^O4J-Sysd|~o6S^H{P-GZDds{h&H+v8o5y@MuTbJS8pfhL>X)J$543kkv1 z>#b@!%Es{#pNesHg)gw-Fzy(CV<*iD8$y47h<7dPjH>1WQJGo^(s*n6=@n{~kXm!HY+NVe*3N7L8R zguG-L6G$DP%q)i0`Hp!mcKRKrs0&o?H8tl#mav$ePaqIPr${-HovtOp9iLu!LjPqj)X-3OS%)<-j4XzuzB&#ztQRJ*FOJ^(z6Myao7F;c8 zBejcHC#%1la1CPm@)MKWl+?A`*f4>fa-viL2~8u_0@(xSR|KV3xREg@BD$zdF&hOM z@AjwCfEWr4=(%!@I`{dL=74hq7XQY3S9%W)F!19_#<%JJoOi-6@!6|0*~db(imLxn z*gsYf^vEXPb~q(m`K7Zq`EP|Hmk`VIEiK{Wm$xM3W2PNBX!xJLT!CP*dnr(< z{{+vB(^cgt5{d;AziklajFx5p>=|?JdtBB|EB%04a4kkmd6-@*Lr|GUXbow(f{cT8l)>uNQ&=h~h%|+ZPVc;0 zXz~fh0$NRRWM*;=+KeQQ2%=rnTLlNERhNzvAMt!vXC*Qm2)=C48 zVVhH*7%OLj^5V6WIHOu3)z{Lvstu1)MBq&8x#@pB0P}`nDFK3<7V{7D9=jZlP4WdJ z*G4~VtUeuBD~-r1U%T;<3&o{`IW6yvVVk>_e%BDG2?8V53LiC9pH4IgMV`s#wF8e_ z@Jb$Pr3!0?e{*J|*HY zNfokW8$ZaT$R-@MkeIan)G5^rRFW+{L&X9u2HI>BfF#ju)~puPm!CW7arB$Hx#s-GW2*8$e%@lglT*r;6udv`I0*JqAn*PYNhpus6X9BvOv^YbEu;2LGEHMOHVR$^Xz=f|bX z1xw(FuXwPlzP^8y-MMNwkOsW{0OcZ1o#c&-YK{JWGI7TbcNjj7?Mp@a4I`j9JB*`i zrwNhqkmktceP`yz z^-q^#mG9S1^{?1CNQM-RRE9Rn zlsR@tLL&tUBw-m!!D_%@x4a5h;zk@H2?52ep;LJ*^lJc4oquTjxMSTOtpZbx)GkJg zz~tT#2SZY3S7eeg$LGw-*4?kGyRXZh<<0D%6x6_J$G2F4TV3e%0zHF`9L`Ov$r*?Y z)$2Y+uCH67b6i&O){q$4$@*&0+aC1~+`RxSyBJ$)%9u9CI2 z-+3LDX=I}K4=rJrxXC3mUy$PV6`qSfzrs{{76WCI!;`>C2#u4}0@`Sjn)j-RaFC4D z`RWN~UJ=s3d5}{9ZZp&-w9P6%FOJNh8Y22$Z6xfg;9hth+->IUolOguBuTon)chQdGOANn?D^E;Nyr5m*UxWIWmFWoA2;VBLON*l5&ncbfP3K2V znqF;h=R_YGwk&N1cuk2Ph5lAKh#*U(NUHx_rFu3LSBIezhV?$%d5qG%Kd8OWwU6RW z(!L)LGd5b;z7Ua6nzKOKIqOMW~3ZYUwVp z>EZu>YqY*Xy^Kt{aZQ^(O*nJ=>>XmcXKHm~7CVEFpP5|u0|uN-JuMA*%++|a-n{S5 zw$R!daZ@N@RnYI%k^<6Eq%$}Bgcb;WUE~ER!RDkL6V=s6R+1}=LD$3IFJI+qrZe^O zS~R%fPQ$Ws+vkVuhp{ep^D78E1G2Z$-8vx0Vnmd;bBZ$<=9D8D-Op? zSlQOV^}op4OO8Txe78|W+9I=%)RMhIN=rqV$e8MANG+l%0vsb0{)ezpDcTegUbLn3 z)lxNk1$@vnrfN49kLr<@D%wZuqnH$`FN#bdd%rL#*4i6I?r3%!P+z9~L8Wg-&foPF zwnvFWY~U#?;>I|M<#3K`0%OE?b4*G|yauv{;SlS0B3a;1;S=6+z0s&sg1CpsZR9J} z=1^G?A}XAz=M(O%9w|P#n;Cl2C9XLc6zRPP2IQ=e-xMd6VWy(|B*RU=O4oqNR#-W9 z*FDEsY)`+)Kr_w3)8gwbhi@t}SdRil@9h@zV>%wVxV@O!>on$_%%__gK;G@17X0zU z{ZCs#_qhiCkqhFOM^VmZ)rV8~U}Rt>5WGxdAlYK^uirXGHv8umZtIwiK&lGIb(cqt zChN3|H(rT3>95qc#itZ1^s@8cEfX>gQ5sB|gTo$%Gv#(&W$JzvilTbSgWJ3hQ;*xT{e z#>y@k8XwlQ8bO07#e!580=F8c5X-F(^dw~EPp3i&`D>@}v`^+VmCyQ;zhBuxJ<++- ziBX`W&}zl76Stl;6BxF0C%BeRWONb7yeYpZf!`5=cm+0xzpKAuuqLb0@xq!<2VHWv zTdu8qi@4&>`4?5S_=|^CzIq=fKD_L>6B!%v1!w*wt z7;c_Sg<^3iLt3(goBb@r#;U^K=pn4~&u5dSG12{%bf@CNLWe5VKG?x@30-`c0Rw^yS8O*dx z<}O6cyYYD{N>KqtTaZHuEzs_=-#LRfJ~6P_XxaO_Q2-jvwbe^eTzkIc6YfK;x;;zxr#FLEDwL z23&R8(|*Zw2v$v3Z{y z*u9CS`3dRZ*nYqw)AWDlBoqL{{+n*XR3d^9aj}2UrcWOQj0=`PvpoQV0Aw$HKzOV| zzF{*|Ri&VfBQ`OfArovnwURni{RJab6y~UPU%j#5oTLb(kkQO`)3T-!O=S{j*V=gkgJU(FWafP zH%?LGS43cN?Hv|Rqt#0MmQqnZvxt=nFRS#nTk(fK?^*Lw+DMH`{LLRe-)xE+^)@*o zDw}ckoh14PJ(xHX^_+pj-|WNqxA^1BPVEpX{->(lfwz4Nm(f0hT3C_*VjWj&_&oIw zkwoY8ByMv{Hw65~+oh9*>G$~--l^JVPe?LoTH_NU-S>s$wJQm+f3(%QSJTh3GIxJ& zE}MnQfMkH~E2j|&I)~OEO4m=_6Ck6fgm8oNDnM$@82;70HDX9HL?-@GdE|3d0!4^^y>T-oP0ih?&Df+6{E<|PGU5OU$o%QPUMKY~tvrv{Gq**YXxKN|NXrkg=u8!)2fIQ~a#<9iO8|6M zmR!qaU;ZZxQ@c7_i7KKCq{%;DrFmKf?F`-O zzSQ8W+vCok6@KA#VCE~p&7RpDot6_L{W?F;XH<6lk@~Ts@X8;kjxlLD&Hfp_8Eejj z=f@_2WzT>|4r#|0?nGYRIyQK0{ieQEzSCYdFjYhxUf$&(Y)Q8Xhvbk|pZ6yO4Dh+M zQd@^tg0}9b-uV#Y5LxEoexkn*3{CQZe;R*HIsx3!p0O*JHAk*I(T(GBLyXNC#WHM+ zz|dw5_AuzKjQu++;9>w>xB1dhL;ZA6=^+E}G8qVy!Wh&{EpUYbTHd`3wDqXnn~-fb z>Y)&fIqkH)-*St(dm}zm=_lO9KB~jBDb|=d-NwWx5dDVT61B&f`5LO@@HpF z{hqyX?1oc?rv!o1;0Y=5MKo%o)R+n4n)^j@3xsuSOFa|6O#pqo!OVXli}5>)YY%Q zbw|iA;l`_=F`rQKvoz+gm{M%Sg2;n!-#O>G*Ws+$H45|;@<}jK#T6!tLbN1PDhP}V zy`UK%m)9_iS51vO#_!vmFfFz@c~XjT=gC$Gc*PXxZZVCJBLd}!ULvBk z_i-kMSx6qoBN7T9h|0`|v6JD90!t3q`}#rVe=rq)chYRZHBpEza(+1}2anN4%*aV+ z%*Ei79X@C297A_G1f#{P>&*P0Z=x6n{=c?dgELrS2LHF^eVTGJo1zWfH%?IIZX=c9 z5zM5C`47VRMtNU=s2I$V8?<~X;r+=TekgF3Xr;7scJEF;8O4IL&)8QpUOXhMQ$tQ> z)TwM!wEgnwSXxF)r3ULx)d}x>e?7Hn{msw9)May+vRr!iSE0e5KOcOSmpxB1_q!eL z6DIy{u>5GZpFP2Ej(w#wOQ^1R$)Z_XHt?gHx==Z1Sf3@GmN9#$)o=I8#2~LL7qob^ z;y8PA^Sk-La?IX~2DhULsduFSiYb}7CWvT)5qPW)&?6_v%n}CT;&C=X9#l&D&CGsy z^jtm{@d^dqbTA&0mR&shFl%#q+=3`xD3<^Br*(d+Y}Wsld`R9c6&)eRL~R%*su?4qWkzOG}Lk{`jbGRMaoi z+8=qb*fQVEZJfm+xZfPFzxzFtQ4dn{>2F=n67kCu-sb!H$!}PFe~Z+! zNPcEo+lU1)ZKtWAS;7%GS!QIF6d+qDz#P$1)D$Y`SjBVHGtN$TcU&)R%e2fW7`z`Cq_?jPh2A>na zYO=0{Dm#5U;F-*`AbOFQ2SrXUp5Wty=-7^hwc=P{(#T3?W^0TU z5@|*5oa{AnjN9}3`w}W9UvpsG*L@Kxn7X0`P-A`9dH5a95e%L?p|C~zDvA(2T+daw zSC&x`Cf`@_`?=X=On-?ditOL!|I&`P<8~SKU*<3qo3HpbAqx5>iw#TQ;l|*~1#AH{ zUrnFb(BX(d1*Ko5ugqJoGHAEgypRb@PDc?ms>c*VTbre#Hc%%UxjYRVY@Qa#fdC;E zeV*9wpWy!^&FNE_q)Bt4M%X$DX$D^^rgkkWs1TDNXJge0*cV5%RNds=@Z&oz0SYR%et3^s_Jg=1?JnCyXo zf9!n0+BK0Jk#*mg^_GI{s2wuif$d%Q+syAxps~t(1)5sjZ@7V+1Dgkqg@SV}tIy^( z*7}e7b|?7HH#BEsWW})eWosQ5gXrB6*`K1liYMoLup}f6Y5sHt6wq~Jni?JuIK?Rh+leZ zdi?}GN?W3K;8l3DI%P%&6pviVo+U5mP;N8g^m8b1BR3qE$u$xvbe$msx^{*g9XoYJ>vr7&yzCQgs5>8jY!kQilk&`4BUAS);0NGq8Kq>B$r3>+5Cu8{I~zeR4q>X zs_WKNMlVmu2nw$18&T#6E&($Y9CTvkv{>)dZ z$j?5z%*xm|eW}_Vg{1cbkV13YwWDa2jU8 za8jX#1i3lTTnl+J`vseWu*e8Q_qvXl`SxruApM-B60>Ooj`2Kxp%@QW+QpwPaVq#` z+PmyP<7I!uhFW_#&`O_&j|X^ma^%OQ;dFt}84$E9hx1}C&trQ~(y+<^N3=&iLntJ% zhkv1B)nYM<6{9M5LKl)nB_zDK9exdO8;OaCBOxTR0;ccDvrxNg!b1CMt5+pXwJnWc3?8KGYgU(`XEG8DbKb5HMx@=dgy0{laZq3S_*O2Q^P0RNl z_JqJZsW31lLjL!wJ_t5MoYs980rZ3rmABMG2G-f*_{VsLkzTuYc3frUyvnRfP=klp zuE;@}n@#;463==~oe?Qqo#r2Ko>tyFc?z>e7YVZFN<@L95 zTsZm8kRa2P7xL1rjomm?xOLalJ?SB_Ccqg)2Ezn3!FHNvnD@RSnJ3|miAs_OPd$W6 zw*sbe@D>*hM7GzKW3SpsOUj`7e54T6*j!Psb1f=k7O)yMN4wtU&0wnD{j~zgU|z`0 zi)oVV@7%L)s``Y#MK9K^1U0zkukb>Xd4dE}3B~?&PE8S+PwRk<>11d9rwY~hTetSN zqz@!(Zxr=rJ2y83bz`H-UiTp%f2sN=M+ zh*Q?o>SfCar`n|EsecCtI0tBq|E8_4k1&%Eh=nBY+s_19N_Tzkw(aMWZFOJ&n+DuA zrDFn(4Gz(-WrS=51q8)9t-aA;bGW{7VMLu;T9=G$!h7n?008GD!nkm?0qYc=145hI z2;EO@YXgc-!0+iWt4^^vA<`zvEmiyu95YxH{YiOT0H^f*nmXD&K$F=nTnpIl|1i)#8e}YB zIXQT>yxcH>{JF(IkHUB(#(o^R;6tR?Gq4Tb(!He{)b24SW$(gfO*7s+20nW~onEt0 zR~FCg!IDZB>gEcq(_6;XCP^heG1XY-qc&BNaTE1Sb24C|v|VL|mJ zYaO)41B_D0-;~t4VNxY>Dy4xAw(1z2d5fA~2XG|_eoNFvv45rYUXSGh4dS@C*7fFxyO2^}aYDN~n8-cZIFDK9StAu?r$ z!hE1`a#G;d;bFhb&7dr(?u}WhC)<;=zE3E7W^tZWDHYeYPO6-RN<<7*_5w<&II5dG z4l_>UZ0A_lQ0IH8Srdad&T-2e z<=6+;>%>Sbw)pq0&345_1o~m4Kr9GH;@-yb3(Slm3?yj88Df6$WDi-Ibo+5i1QEDy zonMRO!jTaPi8FhK9AMGCKX1C*R0;FM){jM5RmzXELVSw(hk~eGSh1k+EaAY^*5cr7 z>f`}X#^Ou7qb?N}Z$LGXugd1tm6OMOV2@ip3_R}ej~*_@r|?pFke4c}CmVix1VJwI z#_Q9{UvC&cE*#kc@giJt@T&ODjSw>AW?gwBx_U6(c1gP;QfZ*jzUJo50I@+Ls}ZzX zh?bGBQKW5RadvbLs1kG31l}nTBK3Z19SYdtQ9-)Cxq`DLz#A6c-=T;^XU&Z1Vg@qI1F%{F z?RqHvap(DJ_dJh;z>fBsE_;^n49H(OuP4f2F&1X{)QuJUa3<(h`6N*)=(xdT=)D60 zJ1fTOoOsBfokI_)sHPa>H9Uqz0~xXPNW%BKNj>gPqMab647WpeQF|Nmjt#nMiQM9DQx&feN^;xsX1Xo> zFFc0TocebY(db>1ibG|e=Gl3z54G!8hMYshG!3?(pXH|4aDJG>_xxN$R8tNGJxnp0 zK)d|;Sye`45FT-IilYhu5YvDmY+NKFi`}wj5-~LY`82MZId{9g_^Jxaorg6Gom-Yc zZA~~+Qp*bZe!t~a|0mUk-8hSokdb7)FBu68AaRN7PQPM)MuMIaUt5=i9wAU8?FR}1 zz!NuMV-x#AnajJ!9D~hfHoh^yYyyP|e(&hoezwQx<9_ISdXLX0`>{b@;!2rD48{uE zOfVbR`aD;qv5t>0s&ecuq@|c-dvCwA*z(^6q&0dr7vNh1sW>678hcvs)`2g4d-}Pt zfA55%IQnhAaHXNvT*h+Gz@YTeXY&bRf`G%PyD?jmyqg}3g^wOuEWgN8=Xx#U%i3?m zQbUnZ;4t!y4Y3IWX78 zk2j4Qa%|}0w=g?<@(=r>_elc$@f9ZP<#@Umq=z`;GXFrkOK-=QbMKs7&*c zdKrX4i)_tNU4c6Jv!ypSN7e__Br&>d55{htP7FAxqA+);OGpR83zSjcWdn)EQ2F6I zUFaj5xJY;@;xj2hOCcrP z$|yV(w#nxT;d~I=t;{*Tn-^$4_dl@yWB*Ug7}2t(!06*%Ux08I?k4oZy$i-@D)|R8 z{f}2k0)8xGR*1OxZw~4B>PrXJ2QSUv=bru~4JS?-eL5>F#n+2i^q$Ki8*?jx8@IW2 zwAJ%B&#K_P;C*@2aM++Ouxz=TRjitr@`41sg|GHCTy%FdZv5z+D1S}14IwZXUV+M6 z8+y56_eX0m=w4`J1mPtW+T9rKja}FZ79SaH9tDecUUY&C;GAsMlqC#gdto0!A>hQ! z=FoM@%}&=l@C0wHp{}0|TF-CIzM%6Mr#~w$fYmb7k1UK)BrYzHoqrxySm#m=LP4M0 z!BiQ<1Kvj&$4t<++)q-#x6_cq81ExxDOj)Kwwn&{3LU;y_1!iGoL0m{zx$A`!I%6& znpz3I{5Yk(D7(wA?!-aM{4r$=c|;?#NHjr{nj2K8E@zI}K$eH((s>cZ-oJ-d|I+N< z6I;^Y-WRjv=f(`LPRyK-*92Mohe6HCUvqx#Ummty`e8_%$~ir(bCSEXWQWwV*M=8| z)x_g$X5r=;iF%JJOjX)~LMGl5=9NygNy;}y^AZ#;5NB;T;Yf(|!VhTzff$SgRmTn` zzi-W&NjC0bcCs--!CutGO#`Qnjrw;8XfC#mdu&Uptn>2zo)`Os8;^pan~_-=n^zTN zGzJlLD5bHApO?q~rBB)~1rLAA1p|$6#CV_i5_XdN>hhlFH}6UIqGCH?_DlT%m|kcI zweO!hHz_IJ8FpzB;*5f}62Fnggrj`o`4R;+TguBbbhDClH`9^V9$Ub~* z)hgK*7k-6&3x1NTF}UTt77@uW1FsUiM;#q8B*-sye;5*cL>CcbL^RgM-4ifyd@B*!RxeDW-+*ZTASB&+@D0iEp#5(n`LM-B+LKM8xbYa#24!Y`6Ps z`M&%B0v6B17PDZTK(H$A^m20iPW^g8>X?3tBt1+W7Po<`38KjkZ&MKMWUM0&$JwHF*c?G32#@#zNTC12_fE9?N zt>PutJ=vQ_HDU;}Uui-Wm4>W0+)%3@)7Q?khZ69a+VDpK%o%8cRVuagWa?|MWME=o zXkfe-FEW*$6XlEG((LxVsCn;Cy%<@ebeDDaPk-)T^qLZgFCR-!J%E+HAX!kNyab_8 z1P2-O)Lh%bIw8y$hrh8s}d&K@}MA71~ByhIoOivMJSSYgOS^j5e_2<0$Br)kdMRyv7Mzr z0JHN~4!mp_3=T3m0V}(&2Pzvzq!XdO$3`dH%y{b@(Adh>`vu7X7&}D*F1B)47EstZ z6=H-9mlzA&wje`hf`V8Fp7HbTN49UAl>n|-@FDuLf9)1jU_X*(&-ub|*l|t_B+JX; z)g?Q2aG!Tv@opzcLW#MvmT4@Dsx_uI3`15eCwZCq|8uyKSF@+rTsxJ*U$}s z<|A9>B7$LFDe%zMx#_3tXrBV0N%-Xoq=MW6Vx&uQ!2k=LOu1P8)`R-y+e7p;7BT3e zhNrsj$uKV~cSi5rwp3dG_AC9=9ku{tpIaa$GIYJ9C0kWD#vdx;8-JHf*r;k=-60DC zkp@TbJDz_4#mDBPd(vUeOjgyIof>0R=!RT9&nLz(&K0IEvYH_BWD+p+!w(bMiO;K@ zCcxQ7n(2l#PoH=GZZ-Gq94qkD11TVcq;+h>u+pTA5wl<$$p(B&WC$5%l6N(oA(@ve zIfwBAOkMh1=D|^~b&2GZ`Ot6wZ%tWJscE!#59jtRjaDoLI6knCSD4??kD*%ROv zZ;2ztjSp#*7Udrb;3&M1tZA~o9NDd*UYx5xbxE%Ny6ygdse5|5r~UVowz2!Gw@3Y{ zzSX1t#oklV24W?2#OpHa5b0KrQl`|5E8i)#Dur4Rn8g(3lTFJIbllysDo}{`eqJSn zofT*H3HKqf5|fy`90&^X=Gi3qP%HMNT^(vj0;N6&Wq}!J?J4@16@WC+df74jWUb?+ z?FzsGNx*8O>1S97+5ZIkTu5ASyn>=Z3v;LbPgz}EbEJzb`M;{ehMr=FaZ6WP_3ocj zgw!p*mRqnPdQLDKTv@iuP3TANDoT>&Y;p7@tT1-63X8n(+ONDpmHgKufm^DR!0G}{ zwO*|~=-N#f{SG-i)KJ7@h03LwJp{%k6MZF5UpI)u=m-MUP`ilndMVaN2f}j7<$vNl zEL>OggVM>;C#5EPS3Tz%H&lmiiWJnn`RP4fsT3tjE37O@^{P_%e~fV0<-Fq;3-U1> zTqK-|luC)9{%}4J0wvT0YR~JOglrAh*x}CN$BH4RQ6{5tDro&pcYHld9dX}zwRTW< zp49>NlMEbs474%)O5T6)LpUjRd07>I=fGuuS3i_aU1zs(|FkSZ0eTF0cVs(%X<1Vc zEBE~eCrT|9?QH;h@S)%>sl%rNGDgYQT!I-Z3p?jMdp)v#S1>zdF~qYnZd~MiNCn zC86s0LyYgtnN(&pDwLl}Gq*TJ=Juxt0H3}JLwvKcp8_f2!+$(G`9YQrY>P0|1V(P& zwmmBUz+NzE0Pi+3BA{Om%lv;A`n@YmEMAoG7v3rEpB_;>&0A3!~nN68>#%Ix^m%kwvH@l8LY~4o4iCH1KPj5fsdY68~D} z9V+HXbpdFqKGgR|{vBk@4Td-gKi|Yqc3FU-O0y`q!q{L>9g)OS^CP;62F zXe$y1=|VKq=)(xrd?PK!j0<A0 z7+%@iN%mU?`sI#?=r;zQejut0e+Bb$@r@RwSP!SDjlcWe}{p50RG zzh4&R`w3rmE=In-2m)@@`XP%DuP??B`Z;{h#kW zLGhcj%;sR_rRlpYDmV?C*S|k8(p4_B;2e@*Fs)lkXNrfKl|LHX^DnCkjzSs=3R)<6 ztaw&Et1OC_GcdEuGfJbprGkP&f}*<_U32C>*u)<|^OmYX1sb71Gma7|ic)s&;p zUSH_>r6x?{1$>sspWnt$iNpNJTc@8s?94$0?8`K@cWi84<#&V78! zFIjuw+BH!G;D~HjU?XxM9|~zifdf~L9dow>&3)c-HuxyE4I=LA*AC~|^%@ig>zHs# z0N?Jdg~NJK-2$G79H*al4{$Tzr3BLeaB_-4Yl+*Z@y^ z$9*x9*`#W03~9M1KTB#66i5*1_FTX-){HHT9muMi(AX}uvT%G&xFP@-wDDqFf ze_jkOQ>$@V++K@gIcp*rp?Fe;DwN95o?;vix#LnC7`cJ_7%3mQ@iP~ZvXk9ct4l7K zBQ(-v>*4DYM;2bWlHgxbF=SpxRB~&Ym!#pMa{hz_SI~L0?aNt7p5InZTj}3xB^J>_ zwsMBY>3_)YP`@Sh*Xkt7ET2sM!C5=d{zdi$)|6_Fa>d#29=zFd#F9|`>Sqyn(S@T6 z_Ws&_2rPZ@iMYns5I*5jrFh{ipP_lv7aREY8p+u?6+)|Eb_*&JxTq&3hO zVrJm@FW+W#T86*0xY(4aljeL2)4e~3v;HBG(##f&qGdEnA%L($x_{qFCB`Av7=dzz zQNV{1u(ic(R$V@2i?sYkz!lO4Z*gaR=dX%MA9tV2vT~2Zwt!pmK8KRfny8X#k2<7A zpi#5gYGe2!qz0>UpIq{9|*uJth9^@A5qq(HB08P-Lp-ItoG%O;ww;>kLCcyGY@((4N@% zguG?*!N+Ou^3FZ?I2tZ5DRJ79{({#`8>8gdAuMG-+;l~p^LN$Y3_GF%S^sRG zXdkjCa-g%>VFxk~YeySvg65@>O-mC?UhQ0Upx1@;g!Rk%dHu!81->wZis!H4Gs@?} zG)b~k;Lp+1;AECD5M=)5Kl$!+e4I0`WN{zg5dljHxPzS|T9K6qOxUl zmua-9q18ZzMn8hf!+4}u5TqUJg>B*VGN2XomLay~LqlSOE{8EAwCYk@`+o&$Sf#oY z|8irzFU>tGKyj$VUcn0g{YdJnX-=I!b*hX{b4dxG$N;FMvtjhR~PQ)1g4 z(=u<3XMH%ji;QBbLGHng`D7L@?NOO#TQDrks3C|6t?>Pr4yQvS&;jbfBe0F9H%GQ` zON>6v+?ME7I6IlgZHa1HxH-i`4yIyfJ<9F>l{R}#k|JfHfsCuDQZTF)$auzp0-S=f z<4-iVxYE9V(Mcw>rn#IZc1v#lbapGNnQ6!)xW!=OkQU)(I(F&Ay)MKc?4w1-zRu~! z@o>|Dn0pQa+>af&nVR^@9WR61Z!!-uGZi)4y%gQzg#~vVdT=L4uJ8HRlnmeU)yl+R zK+n?lyBpi}9Rh)WFJ4nisxX&Fgm#5{m`>N}5O2IU97p&T*5Y;%oS(=1|9C*+TvOwc zvCgevZcAOt(3c3&^nM+V-^+OJN2|@tN4dAStjNZ1hnQF}qQYjb(0)~*IE#Jc?4*g5 z9ONRaGrYc(3Z5^?-JY0{Z4XtswQ;Fr1ajF7B#{NuGZwIbpaZYt`o^^9^rbmlK;f3X z+oJOM0?<)MqYa|Kn)4~B+{5JicWu92bKCdvqU3(*Y;G1B{#^4)GT{_IH1^cpRap@_ zWt}l~o~hG4r2yDJ+-NnUH|(upKgu^Tt8-FJv+~V?JJd15vSUYGeuH#N8D5rgOc9!x z(kZr~xABFQ?g`;gFA-3b78a&%-!x=G>`85Xk;n5d`Y_qDoq{*+e;4?QQi+WT>T60v zd8FI^m}0QHhcc3{M`b9d`Y|x1QZn0B?U^a=X#=1Ts;~}8+gcaaRXV5eimKYR$c!AT zvi^gU)ZlmKk4M zoI#B;-wK&40gmQ?_DjkvyJrhqxPQ;>D<0-2lv;6Db`mtr*b>^a_cs6(Wj|4oU#z@- zB%({HsUMDbJSBjc%2>Hfp3*qKcW+fHvl9Pw#O63Yvjwin>RVCa8IPZOUJ&)4GD`f9 z1QE^#@v=f5h-Gm#=l)g3RZR)3@=8wnGaWg~QvoY+JrH`_s6?nyMIryDfD{CR^R+^3 z_Wf~CtU?MN`~UP$w<5W)m5l7(5Hc9cpn;PNg)(?VEEpe!Zg|d_?g>8NO}b5c@~H zdne-k27Irc+%nE z7BaG`(`28R_2TX7*CZD%2n*kQ)xby}kS!ubNTOu?3ZRDOI?g>tKz{xaS-H`%XNl9? zcOt;$(zO@^nBH~Y@q69pW#_vA6VAXLN~2K(-mVoM z;jN$?4ard)I!xM1k^k=`SbI9BD|UqV-Vw~j5Dp_w7Sal6Qvm63v~`07@NKg8^F{1_TADkgh)B2 zKw~MD3QAquEHIr~8?0SHu9~IM%8RIK_M)0;2Eu+*FIAs9q)-e=kcv7-tI%|2pL-zp_UEn%e>;UG<3hWaYQCp5Vb5P7K)(8?83Cx zBW}au|@Qv~Wxgi3pSxaH;aT*8y*UA1W*Jemt7R~sJi+|_y zmD{$x*ubuYf&AO}7Ba=o-8U*;z+7eIYC1l(I=_(+-V_5(h^kxAmT`1k%PpxWo1j{3 zP_tJx#sQ_P?ze=H?!jL$j^WL*!gYyNHAqY-nfwu3x6Y6ygjLhDg`Hi5O@C_04DZP( z{GATqs&GoXoFf>68!l{0p=%~JS92V5ANZa~%E;lGo+qz7|9>-gy^#f*a+9-4v*syE zLP!1~-@ICDyFcO2#I=^*uM4Zc0oYTPprz^Mk~0qvKM#MG87AWtaOCVyhG}i)x2;s* zv*7OR53RT!UhVP8q~F$CK0=?F$P@hDpkBUa)Z2gs5-+fiF-h-PRkWo#viUDqn|=_S zIu!^`&kp_MkTr0z!`-s=Qu>xAnzmEc$)&~&mLj^A?5FnW-ze3Njdl~wjymip-;TkI zE@s7lyL-CT9_}UF#>yc&nHuiT-*@01NSpf3XARY~`&p zv!w`TWO#?pq$qaDlBIN9t>wRzP2fssAt&nVCq#qoxjE`r5{<~bpR)hA@M0)YiXoZL zNEO2JA4{6DX6Dk{Qn2k8QT=^LWBRitpnZr@nTZx>OaI5V_s*TI1gzs8}=b!=jlf{>SacEKv9fStjX_^h;KRTnmqeunG^BC6u3-2%Tw| zvg-&WH%(t-SQKuhD4o^jr%^k~OEPz#EQeV|i|}m{s6Kn?zouGoI=`6#pJrF=4f@v{ z<;h18RKV5IR-0g9FbL}#&(CKGkxm+kJ<4(FBwV55r-}e&1qT$_F*^IoNn@YnN;n-K zzxzs{8N?vhs#G?Cn}P`9+=SGmque2pGd>cCq1qVm4oLcRWZ0<>JI_Oms^WkTG$s_7^)pyxX zHesxT<-P_D`8r#Zm6gNQXuAof<+ZMUhX5lGN*IQREMT`d~rZY(0tBh1MJyK2W!npb*l zl&REaNE)N(8pluN1eQQYyN5s1ze|LHgU*$ihnp;KCMph!%i} zI(j1_Pz&s($eK)jxK7g#LR9oOd3SyPdHSat-mI7c8lo83KsD7w&I?9#G0jss za)>$@MCN~%+>SFRT=!Xr5c#=TYt(UOd6kYdl^33zizIqGAPc{0exMaCMP5)1bWKkd zvi^!IB7yLgp4YW?#_u+6x;Rmm%@U*<}{tS}V83~+_ zDTHN*c3tC(H%q+(UmjXUq|WH-y4<}vyDxWjOHeNcS2s+}CKZPlAI;U?CRWJ@ySU10 zHl-98OCiAb-T9(}`7~2PKEzDrT^eAGm_4?iD0d|Ie0{G{bjR*OCIrn!ZNosN#V!*a z{%M}kh-z{qNqH&RMxdB!FMKA!Z9UYXG><(?X|^8WAO+L0=qRV$!76H54Hf$7MW$Ec z2na#t)~~$q+LID{>ic|J&ySw-)L5TIm$P7xOo2;;y%kE;O?|RqW@0fV2 zdB2294tFSFT&HNjMl?mq5|UXSWs(shpr2(gCA~;h?$1BX0tHYk-kdj` zPM<5CRQ$tvSCNN0A5fqzeSX7^`kBX9y!4l3w`XRyXBQ0rJ08Spg6b_#yZ3KvW>TK0 zS+Z#M)6JpiR`2Ik?`7t~4@Yqwr^2uFxu1OUJ08o@(iSZi7F7K?<3-DERSYI7en!rs zSUA`1AB13~$ZsT?4M{Zv@$ga9BKDG^j$Ce4LG)A~@=eYY`|%m36SJX@nd_uW-Z!nS zj%b*IKWsPZ@vUCk{RpXYpAD`t)tPFd^a zXL9&_&67rhud~I0<94m;jfnEmqy@74SjvAS<}^T-*wjD-m*JuWG6-MHCDEHPAA;riDwd!|%+*(q%uY zlrOy`b>BVrY0g(?R!*)LcGy#Dga6o=0C@%R4HqmhUKGsMVO8j(xB=orPJkrBc1xEL z@Bcj&d73s?qaIghRP}^ z_btuZ=5QF4Tox9JY#~_SUB#2D4Z?90VmnKd11NgT!RN}1M3a~3X{3LW1`0rS4r5Mv zz9Lrki=st-Zp1_7L5N`Me`)Ql0vNZ#`9`6H8im<<8h2XOS8n@=*d1UD7e2jthGEP) z7vt4E>tW3+czdb`vaJG?A*eU!;kXHxnPl69I5<`6Uim21OqVAvsj~fJe}5Jr;s3C* zLecEjF5ZG}yLVSaBH@Wu)y1{Jz$54vG0hU4h0Nc+MO!8PeEN3xEM@ z5Qz_7J*iwUTdzB}-09x$vN`|v>h@KSo%;6uPi^MS*Isqr_HX|eUUHO4l3@Dpv-4pa zEMrJ@BH&0KfsTu>05u!*_X>Zr1g%AFsgv=KFkLmNWm=IErZ5GysmrsY(FRTbs@S$R zPBu$m6QW1c7QtW+OdZ6LU$}@`muyM%`h?7<&@j{xOe+^!)cT`@*=1s-eFf85q7av$ zu?T&tI)ZFE4|Jkx0x!eaQQw$KS~{HNTbVq3`8QR39)G*GAtXG27hl%3W0Y*oWuR(- zfSU%gp3s9Id}n3^e6xG)1yYDnJcd>J`gN}K@5|lA0}e&I?VX2CQ|e_Kqgw9sf7R_3^k4Ge&$OUq^zh0qdDi>)VmY|5 zy#2&bR^Da?uda1&2DhC4Vu+FVGzPxIz&?Oq+|u@ zf~U~DJ>$C=EkfNR&P~8YSK`jaev(RC0Q&_AU5MZOe|uW(GcHW>3i5KfX;-2)N-jJO z1qi6u{wuPTzTQg)lT0`L_cZmyaU9nVISfeONBrSw`KARZer^0}s7UV$GBogLrFo1J zehK*RLFfK|HO2Tbubmx=rXsfAmaUv)k&UAM@^Tzo(5rGO6)P(+5tv^+6gonOX%q@0 zayS5`%a>^|83N<79IaQ6_)w0S6;=`HSFPXSpfU)R9;LK4kYTrz?&3OrK$4cF!CXuJlk~=M`@FGF<@Y}ur}6Ql z7p`ReiFdSmOWc2+u~)RTwSRxN=l#W<66=$9UCGK%|2||PA0sq#c3Q4nUbM5}Q#dI7 zH)R4hpn{>b`M96jqujm`tCjEqp>;%7T=_;|S8v|Mhs_ z+FCounvis6gR9`nx{j{MXdm)`!(JBO++)KJE%-bk^BjcaGMsRX{V2;ey{Bt}d6BsCo)NGOd~Kq?D1^ zDKcU{3}XE$zO;_9PvBgJu_rP4=Oy+#uiOB%5<;jHiAr)5iaW=tXwFt0S+38NT5@(L zLLkgaj2VXjWw}Y|7x(9vw_WvCJw!lZ?+cZ#yO_V`BA)CUnN^$+Txb#v({cTAjE!Z{ z0HuYwkq;Tfo6c+kLx$w%tV!^NO65DiQ~?dC5(M1C-n^d{JTMm>x`&xcc8gzIyr7q%v#KTymE8=)I_1e zGY%J?kTv+Mdzsi^-NPEN04=e*i2tN1ubLH>C#{`uOZ}4>Z^!S!*3fI$5~HKg*fwMl z4iqnYt{bc79{-HRJ!JU!+(nBXN3@exsiS{ua@Z8t4C+fd<+a$`R&=AE#0_ra;i`u-!p7l)-IK{x0xn@yL-zMxn7f(G`Coy z47vR%_1o5Uru+hVAwq;rtEKTX7welygIGBBG)z7(R9pqF{|L-rvK>5LT+v|z%33yA zMLr7$=Tnd(Mcx-@J7$g#?%dU1Dxam}wSZbeFM zgT%OU#88MMBtf;1%4YkJHNPhSIPp?ywiV_te~O_oEkS;28Q*iN@q+M3NP*zE>QdFQ zb1{Cm3DlDi$D0;h+FjZes6X>jwBpNs=OdS-{;<Ui%-`$c4KLfBV!B?m!Y_+-JI;tu}!V7kQK zVH^ACXCF%T&cR%RrZ16vxI!}3RDgLEdLFC~HF%*I+BT?Y$J56%g#t2Fgpv@Mz`|KD zi(!-y71R|!$t55g7j1GxTXO2x}5+thz%i zIssHHXu{sOU}z53ENTAwyGFJWcf5bvyQrTW@V@9IA%>oJ5Lt-Q;Et z3|}RT)U=qnc1ICl%ali-t?u~CXKH!r@#qe_4FRS4(T(`&PWth8GA$1svdsEL4Fu&$ zlCz9Vf-RPZ-&#n9@O8cxd#EsWV%+XY6AM{=$DZdiokqAdA%Q&Pf)*WfD#X%LyT+ zIUCD{+DvK!w|-|;0HV^{eXnLO%=As^?Ws7UQZwK8IIx|(Eb&}EN2gpn{!ZVMpO>`W zb0-1C8mQTZtN9K^0yyJ=qc)wv6+Xm2U{&sC704MERnv##^Mb6~xbLTB#+>ZHEmqot zekIX->(i$Ra{gp?bYw(VjdPoGT&;frP;Q-J6|fGCkg|%L2?#=7pDmTke_y#0r;xi_ zMxnN>IAr95x;ZS+gl@_ZUIATW4*&=a9( zzEcPo(ds4m8apL8$<-J(VFX8IV(yWmSloe-O!3cBvInkQ5hUb^B@+(D5b;C__b5s- zu6IzB7jui07LqTiVPVCpP$RpVmGg~<17EVtRfkEI+G0`P(mREhg(Jdv6EK(L8iMkl zSP4<`oP=WG)GYlv+E`-BIGJhnb8x+i)-VdZ7fJ&Kizih)1f72D|- z`a6y;Nl(}vbzeN=w-oPtl1f7*j80C`ck_Ch>;sO34M{?(VEr1P1kXwl#8po36OoIy zl|g3dR@pi-3;{zXg(FxbfF#*f%k8W%dhcryAU~khW;Zcz%L1Xxh4X?u7=ZvcK*+zx z(>&v+$EW$zN2{{LQ}t&C5-F8roV!Kt0cx+h{-F%c{|{hWwpFufr~lZ9 znbH*qyL;P~=O5jXKVgk;eu@77Jj;IvAB`rzbZG4{!C#@)rsMgKqW@arYZWazx{u!__WsaQTka-0Lx4`&R(M%5AFMYLmfko9W* z5yZ&FafCGCQUovve03?(waE)~oL*%HjL4%1i-<00hEB^q1Rdh-iHqi|J46Q~D^FOk zj^;9{J26RiLiWHue$67QRIIZj^sxR5=8ED6xdj`@t}|rWWsZBUEu!zGFDn9sIh+$m z^Fua!b~bs&^v3DUgqFT$HW7&zFa)zq#ZZkxSsfJX)cDZRx!v}M#2JTMowB~m+dNJ+ zlPinY#P;BY3z%}MW!QYZ!k?q_q%~fWy?c%r)I<}uH%tw7PQS;gV4YzckIzl#OT zN~YgcqQkoHTy){%F4d?pkj=Y7C2tls=VcCR9*@bhca^Ix+9V^S5iG6Be8SKa1A}yB zWEvSF^ARQ;ZsPG|E(uk&Yn#nOKExzV+UgdO=NA^{XKCff3_hvRZ;eFh*PqxI^go#; zy1lO^U|S;oqZ=|1aNr)2rf7_UJzS%>TItLINv7bsl5N`m4HG)_*c&!uxhhL>N#7$_ zHZ014#TuM9+UC~D3c5Zo`}?3=EMZDznJCHy8l8>ZuMpZ&d#~Ia~6e;iM-RL~8n_07|U)EhM0EBE^W;0_*o%(Fk z@&tN*eqLco+W`YC?J{f@W-jbq&^GBO2Ph}XBM07m=9KI91z_!ZHwB)^3JY1Z$YSAk z*OT1nBF2oAf;zr7k(AwDaJMBu)n-@aQZ_$$!%;5S;p%4P=NC1l%iG*z@0DFHumwK# zXn_PROy*eTUMPEt^OCgn%FKdp`(`k#%zr=)Q&4!#esd928of~`#{C@p9%Lrc!{}G7@%3FhYv%GES=f=;f8w$BElztbGz~gRexH9(7WUEw z+(mW!wd7FRy?cj|^Y2|->hv3{KlbKyi)SL=aQ-OH39NlDN^S8Qw&L1%ClMP!z%a9z z?lWTsqZ_5w2z5%UM!aTBG|^|og$r)Vx)YUrBd8mEn#$B4d){?*Tcfn9|K~;p;qCo{ zKA3EXfnS_EC&PPnftN~*iz;`S$~8N*+MnvJ4pavnUZffky3_w-ZU_)3x@nSY{K* zg<})_Ud(>Wplr~Fd%OKM2i~*XrHozM)a%55rM(jLaw5k2`f>;Is{7j+YY($j@KRBl z>a%+}mzzHU?_U)1ywRFRb*0@d>x4$ZWOR2!eaP;44g+|vej0%ifIF{D=z}=KCDXS! zuNRoQWq*foyJErX2O_)N#9%6oC$cjyQ@FHOI@cV^mR6NaTBO$oh=0oC2xGY17@?%p zxTVSTWOrAqESIbqcr`3^LSWF11jJb2e82P@lSlRk%F6;HKUgVb5BQtb9Ih36>6p+S z|B$izprKw5zZF~mCS(*RRmJJg^}$t`6r{YO7b5|bpyf_J^rK1_Q2dy>D*UmKGs^rp z6i+}u*w=e^?pDFndylds%{1Ou6TV4NrU#Qe6~_{Ko@>C8qfT_8zM;Zo12Ml6E}dL} zn+>^02WW~KXX7}^4i_E)i1freheE`iucYd8vvD1nV%|A$z2(2Jv8t;azT|2M_hpjeyd29D$Ni1n zAvVWc(sQzfp#i+mJWtBp!U}$?(zykIk2Qul#1KqiF{6MS>*>)1s5gX_Bz*&b6Cuv` zVUIWlOie-?83BR;3Ai>saGqa_W8H`}ZK|6~fgsd}AZ-*OD>+6wDS|nWM7+CnnAfaR zf|#WS8T5y_4Zn-tyeaKh_?+dDo!;@a06ddDrY1I`kdJoRY-Z0d+5ertle1W}J?F|? z`**H{0|DJI-9bZ5#Uu#Pr42WwrsxZ64*Rg3Tw;M+;6|p?OZiHYIMRHN)Mbl9)@Z() z==BG3Krzm{ixb8yS?)bPQfL!WL|QXLPZD&?m~FoC$G!2wxcB3YIgV5*jffVL#jt%# z9&oKMf@~uN=&Cr3!cugCc?2M4H!U@j9P^2rJeUCdg4x;rO?8oFf=_G$SO1~~*9n3a z#reQHbjKbwD%W!i_{ar5ha^fLU*l^iz(O^4mc&r1C>V?t69MYv6>&9wjBPzh=NL(uB8gE+TqYc52(x`?+k$G1h?Efka zc-7GZF+%KCamdb{Zh3txKjpGlfyVK9X2Ne^0+ll$I8-2SR68`J9pU8Y30J9qVA`4g zhTr4BIi;-tH4=@tzY6~iTOx<>S%>xKlqp9UxLElaxfI4Gm;0xQyL zGxOr(&ozEo$hkHx;8DpH--{Tz2`AWKFFa)5=V}+?XALO9B$M<3>A#sKYQ~)t|5Ibe zzf7S1P7Qx5gudO75S}CXGRwiTc|&Aut_Lp>>;G>y=9re|UO_=6k)fEMKZp;n9US+g zR1`;Q?$TsyjtF$5ZN8d&~VLr0t?e{)YI>`TAbBq zJf2C8VuAtQBXX$_zc(akU)YlHTxmHyo$v($gG7;oawNABlDY22g1m0isqaQ{_f_|z zh;)33#B&m7!-ys5L+wf0ME@+;03+WKAGzbpJ3Vc*nx&gzk97TI?y+Vj2fNPigId0p zdc8oo()eEd#*0W;Hq44>3p5u~W~gW`ibKx;#;{>UII#c2F9G%zDu=RWdtx=*sbk`%c(w)G&Ji;N*XjP; zO~zdHOqgR2)y60^4sT|+y{Ee^*Tq9CY#p^5A)w^wVWNVy>=f}vk*WLhnOP0GRrb(} zoPjM4>XR4Gb&8mhkl`(N(n(2`+D8&(`|QBa0vz(HYPL9@y|p&Gg!HQRnQo(}UeC2^ zVrWxMBlHZYrbrS-g%rGRUPN1itgkrn+P~r8SJ|POi@sszc44}Qd@C;Qz>%o4$n<+L zDn|{NVJ7UB58fg>a$g0AM-$)ev@tLj#Sx6??nKWLwIGWHAeg0|I99KWjyf4pC~Q## zypIs*Aov^+CQ(fe_#fyN2kdpr+oNoT-9$$<+x?Q}gBA5RqYFbxD!JFtyj_3FX zl_1$;6c4{MBs>1>$F@TWDS%P87bzS^P{d|L%@Pq(h{QCQT^N!rTKXxg(GeMD0;Aek zTQmo4BijN74VqlrAsQ{^PcrW)xyfnT5aQMb{M8P`q5@d3iB+f|PBovGBj~AYWQIA; z2RjC_Lyr=l_bRS_f%yUZ+vH!i{h`gh6rn3*5ZDYs=qaCjScwC2#oI}pyBl>n&UQ&k zoY%=$Ezvapa?wD%$7A3IwI#gcC@8D>i!Ac1`iw&kC!z2wGJ<;X z1_nzrR4XKliSRs0@SmDaZ!}($P4zj! z|J;}dxRywr?@YLG;|h#UK4vENSoDFuh<41tXk41L(&fWlE)*LmIe{h@vXlu;k#AWe zH>um>ik^TXphm%Z^Hv=3)#$%doX8p{M)a-9Y!9=)W;8Q2E1KQSdZvL>jM;(&wL!@G z>dc58Z4hRmW?wWrA@3<8chv+WM8WZh1862HT$ zH5*;WJF^u_U8Co-%bmwh7Xi~i$TnJKXQJ;qx9y|+#@!b++?zb*qzv}fegEM81OMDN z#$|n9R1(VTHYj23cC?Puy9WZ6yGRF7aZ;*S?qrrip#fpk0snt}0yWdDbaRN7%qeV3 zt+smJ^uoTNRDHUxR4f(iHU8XqeZ0dnpWJ~r)y!T|apK?GVaIh2lONo-KaGocWH`}Q z+I@KesXV=PpaLu1dfjQNt{mbQIA@rnT3|-6j_upymW(R96rJVFg zX~4dHo++YqNl*MDsYtBMjLTGtMbbs_{A@+WKL%I&d1no*L>;D6jB2vqp~U1ZO0TO~ zzhv+lA3Be@#K`de=#voO81bz5bdagjh*|ZUmkJ(@d6^sx-l$o5(3MTUXLqSv_Uo^~=I1P>@@C+U1Xni%q<6KpC8d z5-a|x5{Y=yc6JEQlBOdACAmr(qK4O@X5tnj)NL$uQme<+-iuyg!9%Wz+qI`*XOs{I zu4~*fwn`mpHLexr=G31;!cW1g?os9%M(&BK&dt#Ere+u!VsMxxPTaOuihhXfIlr6I zBm4cu)cedWBweA%jqzB6>i$?t^WP7C=(;m}kW4x0zWPbiiaf8MH#L$@FWl$K`kJ*i z@Pp>rrISqCNH!Uv_Kh!?t{gQ7F!-(7S$eYg_)^Be@ii=}FuTFE`n-;tB6L z9P_z3)tu#DM3|JaxpT2Pp5V)8RFjIH+V28hg%R1jTW($AD$uWm0fO6D-*{${>N_HW z)8{Us_UU~M^4CLC9edK(DC2oY&*#uhF%NbyVlwtUn7?NA{^|R7uPE-?d?jN6cp4O> z=1Q)l`77&~3EpLBS#X({`?pyWU&E{|%=fkSFhfe2Ik+=1B43@CQn^Ubnh0X@Q;~bY zP&BNVpsiP`o)NRuH#mp>z1HyiwC^CCvE)rfKxmA61e}C*cSaVlZ*8Bi(ahg=x*S`g z%~kjCCzm(R6>iM~sZaR!$Ls~;Z|5>DzhaWtR=CApcJmCEmX$u8we}%Z?gyqda^!yL z{MqS^e}zxU4Np#sp|ox7QB+D+gt96x$Pl}YmRH3u$ZKy;&nVyvyf{&1a$;3g82Isf zV+hTjvF~TvIgTo!`@}=q*~vB>EXxa?>#xpgIQ@`1=du_=Cv@^xWjCDqnL6Wnb=5w3 z=m#z)q@leX$e>Zo>7Wdyb&0bB$i|1iIyR4=cYiryd&-8KgbX;c#3xmuwtPKLTR31V zU)EZSaMCj?xgCP)@;o%afIKY9H!|u1OASecyAyHeCqJ6#JO;cm{~e z4d9kywC>L23gVMAO3~Z78SuqhGGdP8nBy6S?AgT7Slz6;or#LyfFRv$+LGqhs|xv&&E4RSZ8-McfL zW97(?j|ZY$Gv9@wsOYarZNUffj3tjapvu1GIwPYJwrVvejRAX9D^NkV&b*uZ7PD@q zt;%i9=EBgr-hgP@4~(LUB(SAHm%8+6ia`tSbOB|G-Q47Np@o_pgOPO)B9!X@jq3{o zFsQE-w6FZ~iNy4Y$N#8e}K zyesCZgZ+eQw1kQ2ZAZC4!k84a-DdV+LOG=$G%6<5M6+yP#l2%f6CZSQtv`Xm~KT zxMA$U9Xcct$<4J=h1KQ99g*Z#^P}%v7?z);LX>si(eKALW*jUu*tEc!Ek=UU{}u?$ z_UqS;dY5_CzFX$md1)7r#&2=^(CqN+Lq81svGeAhLci6|I7+xB4l7Xn zhTBkO#F^x6Z5exX)}M4*y!fl-oK5i#o0FTsV{@OeYfaNRRZ?<+q=z+_QxUf#K6|;8 znlI`1?W3pp&!0Rtb4`_nD!(p;(;?}sMW=g^@vULTo&vZ5ZCzfF9!Vx8lWN^Uz;s=6 zvx?<#w2B=kk+L9>5CSdZ5hfHQ%dH5xldM%TJFC8v90=2A8qq zWlL)**3Z!>f`?Gl|5qKsEF1;lTaFy;a++OOx}e*MU+g&Zvvkf5-W3mr+aLVO-Z_#S zF9=J~7%M6#yYhdpIahz>pMzo3PMwOaT~Nh(zoqKkU4rJs-m|C30qm&RveiQ%BR(DM znZTDcr*HV*ATaYxYmMz4L!kZrWdl|AO&aeLeAb@o$e@QAvszB1HigU8mF;O!n9Tj# zO_5d9@;er+64vvvI+}okC+@-pFE~9`H@Z~`(h3GXChyq&@s1ntZ8`D9!#eQ>flgQ5 zGkH^*$+}oDKM{cWfY>(n0c}^GT%@Pf&6uaR9>Ha_ccaJ;P3|Y(em=jPO8MVn51Ws3Cf{6sVGs-qCqz0Xy{--Z@_{>{|7t4j`dP z;WGu|l4xSTJ2x$gliDtgy#Nvw+DbJz8fj<})2#%0&%Si%#|X3?k!j%(B2joM za4$AuG!l`;b3(~bL0JNXM_Daom7o@RH%r4EGmzm6$jE17ni!|S;^?vmG0tAwPi=Ld z??BfD{+chSFA#f7E#Z;F!#j5pgM({-C@-5cXOuVS7H5I0Ls~W@{x!%Tv^=Bn1x!_> zp8n`7J3$-SGOiBSDFoVvbhz!}NU4ZCoLf_VM}z+_)Gba04iOG6_+sq4g~#6zEn1f) zTHJV)Ur`^WEbMZ&y0Go;3+jb6UA>%TNL1$;P=;bxtnvm;oxS@L`zyiIpnEq|IR{?M=2}Di-oW6whwS~iX}oh?UjWDl3Y3q=m}HE( z@ebtXM0o9<*^tVZM^AInWb380%n50->0V}VI<%#Zbo!%)#CoywxlQ1c9oFW`@%m-y z<8i<7uU(>5H3h-EPY_aLLIG%7X!tx#UoK}-#*fdGw1~VeNT3>AfWY$%Y=BO7!_82w z0gb06u0Vx-vTHmlo4Zj{Bwy@cEW7Nsm%R0k5Upg7+6J6pshu!*WaKU$+ggk_N5}p2 zuGfaui-UZ(qJpiw(4`tW>!jB+f4k+KyHwtOwS*o!9TbNhW-{&0pw>?~v0_{qSs#`f zsl>(MlD7vuZHDUXPr`HC0HuQb+Q`2VDJlZCW<`pvE1*ut^pbkIkYBE)CWU$HAQ}Eo z>Qj>OlQ#&|MrUWaY0nQ3S+08rpMO8jcZzgXF&oGsHGC zhRx>CZFn1KPo2}m4HfpiUm>JkG`O=hDV3Wj+e@M~(V>$&WWrVRBHKWZ=htTN6cztU z-2A~GC*r#@0zju5SG^szL+=<~_Tt~O9A)|I&H&wzb|F^c9k4c34L!O}$U8`G1vZ}~ zwhpo);K>>D4OcxD|FU>@cNagT{P2%7IL~*%y=ddcbU!#~Mt*aI?;r3W!ZU8LDAh{l zHJTv#PT5Ymbp{Z~dbBa1r4=GxEh1u6;H8d|U8-jDf>8|1O&U>VKN*C7lbD2=Gm zppPoJ?`=B$+drKY@#m+!X7jPw`1+)Zk``_GAAfA}R7iw0cP0ZTdL` z!R3+T&sxce{RuPvwPZbwbZ-0}C|c+rLx_VYIMF@@fHvq=o-+E6UOu;R642THi9ykG z#f->5C)cLDSSCaZoZZMdDa}QQYq3xfiOpvD@{~uN==Q@y>S3 zXCVwTh2jmDan#vx^WpLD)LxlyCo{6;qU`f+w1F>z9p!8pCv4T_0F^)x7`retX8kF+ zl3z0HFO*D>OS{JM3<+d!g`3Hib**jskxLjYPti=QbU&yXIgE=+ct<-4T{S@UIBw$t@7yt(LTP3>V5;gn&)=05Mfq5Km>xi#sB`1 zg`LsleI53P9qs?|9XDYTd}{MkjeGy#eF^*|59kY?Kcne}6%SiTO$H*2NRlG9`C5tJ zp8ctr&{ZL;Rvbi0n)80{CukpZR- zS>Qo;0#w4J5{U-lfztx*%&H5+ieD^{uXSE1@S?zYT^W{pq3_mujKBXZ-(~5W_NkYf<&y@ zsO@R%MJ(fhP(%?`(yQ6rCh!jV1<#Bklq55qI$h!zYPAI<+>PIxr-8fWrV-P&9Bi{i zW|VQdW<@RC#mq|%P?5+DlhNx}t={YN)2Q|O^}ILGk=c!t7t{-!@cqYWrugmr9e%6j zh7C<{>uU7^ElqIor-2ErSJq+}A8U195T0^!{eiOwga?IHE4IjZiWMct{X2Qatc#gF z{!qxHM(W8~wCiJTUA50)#WrfVS4UJxH=GW8Pu1P(*`b~$P6)@uKC5>Jhx8`Bd*IP3 ziI-8qQv%otH`Q5cs+z4Moi_pEUKD%9P=nH_G**%Ry=r1E&x#(H5E;;v9r~Y^eO6;^ z2%lM#rOI4Nb+T%2TJFJcym2_Ib*0u?J7vyL7a~ zW@OtWvL|@mh?tS%&G2$eED+^MYowG)m1zMLC0!FGyckqYk>R3OcG%152d{hOV@IM} z68PhEY7r!jh|y@y4o$HlgJBTte%Y2ED9O9-hF-3koN zQwj4TEjMYWfiD$%y}dK<+WGVD`FnTFq(!GWNe@IxJ@yc)!+o(`e{Z}cwPFbkBAuG_ zKCQFWz(#bw-03iRhj+T5p(LF#fGg03-*X*1~D~2#LoPq-i1Vdn-&2R2- zG$?vD{2K#l7elGRxLOka>F$^LM=eyDkRaX%7t#iP^2oaIK^GKuGsCR9t~zqz3&l!< zpsB>KtgM=xz%ZbU6(ak~+=?sFo(k%fYPb(AbZqJ7XXkZt<*^x3Iz@8TgBVu_QriCX z*DM^dNp&)7_Lqs>rlM2UKmGqEnmX~Xf30zq1{70IwwW_}QD~}oAUpEi=b@g1@flu` zi@X}5s`5(7OO%%C^hR>klAk&89z{QW)t|~<8QzejrM%G8>h_?{Pm-se!%&H# zuTxDCq+X=GiKj)iS&L=DMJ|unC>j`0+1^koE>_yQ!dbzuAx)~8GEopqs%PeDY`Iq@ z`g$jAvFVn+g^8xfb-n1Q_0E40JlZNGIOo2QT(ExiwfUL+|JX~L z9l;$R%x(Up{9hjxxH7cj*D01J_R*jZL)3HO`>%e~vcWpK@DViV?Hhr47xIZP>+I>N z!tA(ZOD2NQ;Gm#VtAl_G9h|A&C4_ty$weXuHs2vJ`01LK!u)#p%K}^juvPs$mxUfOqgxE0WRIAm13JX|NCPXFnh)8S) zSzcLGtyH6`<{_=B`Hu}SdR*76(hf0sGn+uK+rfo_3_IdWu)g@6oPNaN2NSi6(s206VFR9&|53qF_{0Ub^kB@a;SO-W@;hCumXswM7r9wHXOz zd$BC(1(ls(dqex_c1#nXB}t5%R-^%hIQ+wqM@HgZZ1A`4BM=dBhk3Bnj?99qBgw&H zuKl{e+^ViR<*n@W4by8}K=g1*Wh z?kp4Z2dc%i<~B92C-6+69|J#Qd|2$3%Tt{umWSnsX*3JIc1})^i_+g0q~>{ln`CB* zu1ZX-Tv(6i2;wC#Dw0K0dlK}-QVlh;MJY+T!gW#R8Uta}-M-|M%EExaoG?S8Ju~Rl z0k-SZ9wwELlT{XC^gEJM;_l>yI)kLZ7S%SLbXABW{Xy|=lXTQZHxe?BMigwhge<70MLfzV{DWj#d#V z$w8aBlih1P0#vkNc$6_UGwh>@G|rnH|2NHdrQP8h_Q$%l5esImRpzdTu&e1_Z+(##Jhp-HM6GSABfJ$4q_k9WH-3t;X)%fqY?DeSzA@(?%N&*-Sofh7k5RYsf&l>qpyL4Uc@W6`{WAngJNXt&!C&Py>Kx*qj zDOc?55l$@bsMtAsu?~YQF=zn&=9^;v73)p58{dGNne)PxZEJPre^H0%%Qrs6hiviU zKD*N4k#ambG0d5nvTD%bqRq`|u+N_l;P1%a_DQOGcyh7GruQ{w(-I-dRM(#cz{N`TXTZC`Z%p%EK zt(v1elihN<5{2*@gL$92Zslw#cce zGagI+4%alrd6xGyhqUJDC6h+UV8I#Rfsd@!481Q#xu@;G4vn(dWO=QBX79T1nO7s6 z!_zbt|FlG@=|ZxEt1v=Gf9^z|{m<;lJ@Va2GOk3U9Oxj_`1wZitPe4L#H$J?b{gsO z7C<6ax0p-9x70}cG=flmN;f*DJ+gc3ckZ%a4Y9^=2cdh+DD8|Xytojehm@t;AQ@X=9L#tDyf{#m;JCS}Fd z$Xk_)KfJ`dcrlh#qf^nOVAb<>+5g%NGauxc@7k@y@#$F*+yn8cYXEML*(Tw3Uf z{~}4O7=49uhYRZ6D4?L`wgck~u5d(BD~+$YYL|da7kP^8#Ey;Xy?KB4ZW0jNtI4fgL3O}*q>uHDzHHZ!_nX+nA1;^oT3z;99d3Wt1RB)3miNT=|4*BGzz|yW$%>+Vd zcg5(?OC$<=cqUe$gq_(~Z+m>fAo7*Yg@K$aDpSF}-q3pM=Enzx79-dXU~ifNw`}=fnZIhalfqj;I_* zFuz>2)hpIbe%OePVcB*PUfq^LQfG?3)O|6}ARQD+W1UCeD*dKUu1_Z%t+n+uDS9Q# zv(zHYbBSk~Mc05OJn_}C{VL_p6mt#tgE6e(M|H#DW_r@fMrDN-qf~aCn@`tqjX%;S zkKM|RMC7%npKXQH!~9EcK&M7V{k!Uyvs3($AHTal_5OGFcEgb7GPO)y-UiwvWo%3B zktGGLf7gcK3g>F~xy{%axIT`DuVbx!*6*p!oc_p)^b%(-q6kE|`nj|+3JM5Mc=i#2 zaNLs3S*c0nehS!oVmAh`6s(OdT#an=QVZAE?(c$|(KgI`t1JAoQ=%ZZ@ds{HOhRH= z-(ZV-#tAW!{HX*u<{mqthFx;6NOCt*Sy04xDZLj615Fi#h4tu;5&;ql#k?9tha(Q(=ak#v^x0kS;tt8D738Vb^5xjp6b8tj3bL8L0 zEq_an2SDB*BiELDEZKCK6QLv7H(P!rN8Az8aY(a}7iOF^{@nr;*=St|10W>W{~GMt zr&5D1Wb{M_+~syiH8F;Oee>>^hdt*NdK{uMBqr^W_VGx{RyDt0QB;>1bQn)#G! zvGx@h{C~Y!@7_mN7D3nW^Z0CDMBVI4PgZbqvbncBz8_aF8&pQ;YIZTO&m_mkn%!tQVb`p(MnkE#CTa zCeM8n`7+@@)!u!-YWw=0W5$Eo%M{VK#U$gs=DBf-bYP^VLGFIQF7}G7tAThzp%#I%yO(S~wXJU0RI2C3@$5V>dDXq^O zZB>czza7D}Czk>TmZhsHm)ParOEe)Q|4ZbPBotEJ&pvBN;y_W7w9zOG-&(!dAz}Wn z^XIN)TXMcVUxBON`4$AyKm=uPW3ja|G(T8d09RiD97f*LcxAKx2frm%o7!jKHQ$5=QQh``$mSUGH{>aKm<;V7C- zKsQ@OY+>C;I^MpOqqpo~7SzfAL3%}Yz{lX7 z+!LTKv23OV=yg0lmzBt0Ug|WsR-F|T7fXS>5ny=NiWWZC=cDif5-g(pVA_EK#%`# z9Jv<2);0en_GJ4-Q_gfL73k>TPo96%A*e;XpeOp7ciSem$!OG_!8PAJk8;4*Qt~?b zONysN!mUYO6;RY4Kko`oRA{ZMLXz`U!I7HHO5t=Bb4uJV*hDSO=O(Ys5BJ#uot2!V zwE*+hQTfC9-JkEx57C5eyhuyW&Y5UsSV<$nZu&w$Ier=84sW9{o$w`bhFTJmxxW5O zxcLclJA-NbKQj_nU*vp5xNn$9cCSr z-kb9ogaa@3AB5eQhaSXoLU+wZ!w9VY3OvH8v)q~Im3`yTa7+m;uWazX%V+a9IO<-u z$c{-(){%Zoq@{y(>;B|Sxx%rJIp4O`?e62bSpW)3r;>&GRDVr}-Y@wbd_;b^yA|o1 zg5OK^H5mggGNl&R;YvtrXe^`a$6SW(XP-dgk|826wL8xrwAfXVt#|o%hwHz$w|)Dy z%XJfH&CJFt1GMBB4y4)bW@&m5mR#rOJrD@~xlYrfkJl%TiJq{e;8L^!3+ERWl0DgB z(!!HLJ$P7f__(+dR$`9K7~nt8n6S2Oqv7wB z5>S*Axv_MNMS71v$0!DYa63Lk?ppLf?-q>YRF8eel0S!SP}mr@o!8&aGFL*i+1yR6 z`4ZqkW6w$}uSxcYuoyzeX7(@(~Sc(nASh z8g*vGtND&-Z;7)ZcF~aC_wt9-V+z=zq6F}wgaefQlk>c2y2_8uZonBIlUX!HZ_Kwi z6b;U+1)@6AEuShU-OA<(3=%`JwJocN(*aMNfSwrCKBp&nQbZIpCuRz^a|BUJDTff@WF#Eg-2=*`4kne1=;nMQ{EM=0s&CpPd zf0{Z(sToXyzLrdeNVb*yyKPsHA_xeiS|jk60Hp!h5njnDy^9PK)3~)ZaEb7X$^wLX zxKG5xN}q}R>vC|d_gkW+BtAcYf0CD7yUvwK>}`YSs3InoTki6tx&AOd!*dX%l@i#3 zIEv)n>(6cKxE^yrC+>BwAg6qiTS<;lr5&#AGy*@{9UYfzkSUzJYtRbd$z zmaX(~+OCpbO)OeykpU~aX`d#2v6~zM_GAi&roMi_A|HyrpHhkDXC_5=5|1fOtwLIZ z(1o!Qt&ZSwOL3dnuR*TJIdst?HH$3SJ5{`hs2iL|zEEOhsIZHDN!32wt)!!`Nfw#X z)sL3xq=N0E;wgU~T@Q_hd$VOkidE!n)H}jY$lF#;4_%`;WzXc*i#Nb)Bqg|U%hlkm z*Wxcuy6{hY)!lQ|qSeGG!UkR%Yzyl+r)l$$_uCSxYXt4Jg3K~oSBwd+YzQ<<*Zy_T zu28whW67UsrTSYxehFED=UQ7vNTi@NCaVCyRhN-uB0v5SHNTVN0yWfxT-%ivB%avg zL|IO~U>rqmObC#W&sL6s+@u1*$C(aUuMjZzGnR!U_+v>A|0NRwh6eJE=w~6tem?p+ zSdlFG+x^4kzY2c3b_hZGbhU|gGJ>TY5W*SETT>(tD->gZqQ!It3ybz4_L-@{9kpoW z?iE?*{YLrXvq@yz_!#RMI zKV9vl$)SiO)uNOrWuzO z4Uml)7rNyd65g%&j-jYpCNf(jze*^cz%3|`ky$&@T$D7;2T!vlfn6M*VK)vf6ZODH+WZl26cPr zdXp$`qG8up6wf{O+(2AWlo=xav3651P<|@gOTIMscPjDApNZt(D)xLniKqio!dGYz z@(QUy3@*yaWtNzV?J)sWIAzC#;lR)|U$-90M(BB?ZSo5=|9c9QeUUny)7Y>Dwlw}Sw^vnjuzPHT+2bKwvR3c(yuk2DKi&NchfoWhO z678Z@ZZkhwA`a7{XJ`gg=UsqRk;X3JmOcqo^17KLe%)69lLe0%IpJUV00H#?alhTGuC+=x;I& zK_HKf`sclbGftY&rKG_FH&&~>x8kzrpO+Ut%+}j^L_aX^+pm`$V%dPw4b|W=JnP!^ zi4*m0?Ayc_UkOzZl9xzUn8H28zQ=MRSd zshaGlw)Mo7R%&>2ll7mAcpF1%_7&_MPu-Obp81Maf50yAt#VS8`O`kk|4?6w9>pEo zl8C~4d{&pVE^VWoQD8SahIF;h8HL;`DIsn{N9L?De@)9LI18M_ zC4xkE6(DoP@_y!PTbW^$=ZHswz1(%8yVGso;LWHHI?toOpJ;4!%5}Syt>{TsE?h+X z&6QhEFya73K)S#7f5eP_Yaj60!NBqkgVeNWF#_zbq9t1?Nn9k$1LKHnp!XP5&NS@^^OMWSA+gYfu0OOVP*lD9dm<W{4}kX3q);a~!^ei3kvu z$$ddW%)ARx+vSXWQ}V_77$1-wj~ujD+XSIO2SWWxsyi0LTHVC|wU+axXLdH)A+%xl z;j%j)3_2VN+2=P&FF%{JcOw@C@Mmv2#x>L(`ybm;qo@g7@AwbL;;>M$AWSQW(~ht* zqCYBYvo%8j*T*rZ7I^btk&Gvv%40Q9=oFjMuG<3)3n(hCf;VR6ICMKhkUyoC`XfPY z7_+1NUizNy3NwGo&9ezt=tn%rtIHQq!LfvznskXJyc$vZ0Ht4!pB~l4qN2#Cwy5^K zhC_4^cc3_)pJf0OG)|PkOstc3+zZ;SfSy!Ei_@`1GI9VS3j$VoVlzB%R`L)JBY|`^ z9C|3%(RCoR0GIQ@#+#@Fo10>zb{%7ado*>DWfV3J+N!??~ zQBRB0GrnS>J<*v4u^P_@YswII<7grMvkm+r%RR z5m7M-A*3S+F)bXzv{Mp7Frp|ZH7d9kl|ZCpgkST2i6}8JGGQlKvDLd0eNBY(V&p*> z=~oCH>3=J!6}Zee!YRM;A41qQ+DeE8@Gb+;{vn^jLlhh?KtC92<*yZ*VpO9TReO9x zc3>rrzhbjv{)efST^fQVLgGW|By!jSYS12BEEW87lDL%*xCk2}4>WN28y zWy9=&i_wfw9^?fdLQSe;{-j+8ZHVm}OQu4}vDz{p=SWHe`8$nmMA;Dk^`m{`U!7mb zu-Y`?jF0p5ba>~9hR6E7hKwYdFdGskCS7}ci@`9*M8BL{C0HyoWhMAu?IM4zmDVq9 zq6PY+Zz-WT<;im^vi%NS;_{)Kaa<&}H9Mnmw$cMSg{Lr=7Md6SEy~=ZN$D)&RQZ*K zn9o0rvxb6Zo~hX;0Kwze@hkL$;gxu=xrtCdv-<_r{tE+*pGfAd}C)&nkVQv z{Yz4v`#OK?!#dWGJA_)@)`cy&wMs@pk*N?Gy=-wZn4x1u6^Wc@M%Mzf_K@h;nmC4u zx`1%R%!Z5ODBiU?2mqfNa2(SNCU8BBU%$S&to_P^e<~~UH|4;}*JE{+kjb_8`=+4t zERB=5Rby%(j)X8)9M2e_P+Lw2XQ3LRTwx3r(nX|bsE8Em3Uw3Nt)TSWfkl0_07WH{ z!$$l76R!0Bffqd1yFJWL$K{RA<6r7|$6H&Zc3SrN-k<+G{n49zdF4NUocOcWk)?R| zPtvDcOB-9hWZn;K8-3u85{sW?!`!anxnWh$Ld^?78)YHzoJdbuOsF4-i~HOi&kcXQ zJ>q2I1mKHUp||Bl#x%W-r2RTJ?d8hx0x87)Q-fR!lKaGG# z#ySEGPl0exn&4#r)C_wxY}Cl7(N?)Ax29a`2sSX_%t`$Qn0Z^J7#hO(u#1KrKrz@w z@UL$a$MImPh=lO98=#V4*IRB9ueR&r?%ksRoW#eDlZIDjcJ=WHv<{Ua$WM`j^gzF) z>852H#{8V7)Dw*DpPUUQL8H!|;h+rbuI~w%=XC`A|q9ECsE7T;dFg$E*)a4A!U%wRi&_}EsGRx?dksVp>ypJS))^vY3Vd7C6oRZtAFGMNEc8!kn>+u z1gi~%$n5eOJRNXa#M{Gk2=|i=nsYLIrgh(S~qf$JSO zDk6{5B!rmErD6q6fun8W3Jcx7$J%wck^cTuao zWLIEVLPg2`w{~5L;GRTr%f)rZVfMqnfNTD0g*v*Y>A>z|J<)1KPwbdQceCqd@vaLO z03+T9AJgh`kcz{?1;@vKRRvP+R}a^>>MM8Kn%D08LZZpor7fSi_8Nh%L%0m$$ZShI>Be4HNB~BJf_s3RGbU5360ZWGVPXlT zZ!mDb5-Ou_h)W$x_=@al29|5O{m`f^%R>BbB;I@M?4zej*fX|Of*P*>O=A#_XS#50 z!muRA0ytkyF)`~u1$AbCZaB=40yE>@AvqxjI5@RD#8%_0Qi|?W8kIg53RguS*Eg<9 z2vL`_f=$YkBf6GrF1kY;@BLwZ6Yt7AgDa@=5Gi+msO4szr>7*Rmi$gt;HlvDNd^DN zIH@?FZVL7*zFAI6-#t!Bgub(>39LvSBk=(JYXl8%XP3U@d5L4PkblQZMPOy}CCK!P zjRWg)Os!^Z?^TpzUaVEvXKg)%#G#!1y_Vu@8f+S)Ae^bDy-h{~uhWB>0i-^wii*Sl z!pN97ratpOKXO0{++71LIQ!_3?)-vX^uzWk2+cUnsNTNEIlZJ$H|jaN!M2|%e!c}f zZoBe?u#q89)BQE7lydAzP2#3R@u=1&f2&RmiLrbGQ=u4|qMB}sO_-^oU{VkmEIw*_ z4gYmB!mc#|hZu(LUsdpmRo?6SsIFjSzC>bYe!h72qu{(KP;`s2x#&w{-W6z*PF2Qp z>CyewsvzBjgvj1U^ZZYAC^c!n77rP~zaqQ;#1rl*M&yeK^nWhx-==xcicEc3zY;pT~X^mN5?tk~Gc!TEA;P@nxwv zjt%+7UlzCB4X~QEcJfek)dN8UxVVn|?UKO&bBQ3T0XW2P98b;nDY@n;_svM5Nb~dk zb3%4V$_p({Oxx>kHYdjFd)xfdr~oV8U&Ya5P7*;>!!O9cJw!{s>+{1EoBW)ct~C{e zfR3+#-J`+3&`6P!|2rr?kigl%uP=wR!S;bggE7R}G{SC8wS*O4-CUSy8pH9_Pw|eI z5?yyBm-BjnROEBxsJ?e9i83G*HgRxDNy=A~Enn2CH*mCXoYwZ@$KD{j26cp91RYGl5|9FuWx1k+psJ#t9ViUesl z#w)8!oGQp#jYcL-{&d6#NAiCWVzZg>#|B`AIO4AN77lzc$AUScH;~M-<=ygK>E6}L zX1GV^C-!pGyfB_gv3(t^m^Ii=YQ7Jc{&Q!P4~clQvT;ogK5FGpNn$x0l=XR@_xlzj z3*S_@t4v8t^B3RSvtLHK#Nliyuo&4>;63tmq=Wr`{k!F;;MHxfYo!i0@vH}8wN2Zm4XF9seWS3Lj$YzhW0}kVx2N(o#2Ru zL}Op7T`&K@fVOup=#BSYc;k)P#?R6$r1+a!sz^Rz_}5FAU#IUa(nig*XT>x3=s`J~ z3N;QbORV;o%BmPmS`#9M=6}f9oz2Z=3BzOgysr@Pb- z7RwJ>(O_;TKLJ54a_Cl^`6D{E6#oNQTM z9m~`xmiG!QSFoe}(vKM#Wlhj`)J%EV1UQOZwPRE-zl2lT&Yq|xw~yfz^4tlW0uG8OBnNTw9~FaoQW05W8hQgr>EdbNTzwVf+4j5F_@1Og zcVo22lFt63=*f`5qSb2a$6Td)> zT!tY6)ViV1pq47W+e1)J;SfZC%C_u~W32kRR=e{0=0%OBR}w+9e@EbvrpQI%*3zo@Hd{p;v!<;~Pd4uJ^Rx$MpS z|L2X?=X4}9#u$+fe5aO5kQSpgkw_WrbVNq+3^zJ&2oc;l8Wt_S#S{yHIkYpQzihCH z%Dh$=tlw7$Ls~BTi1=A>m;-JGv|b>z*T?Av-#6-mCuaYrGyK(!tU4LmP-n`?_B7$X zdB($(@Yb{(q;LUcK6i2G{CEZJkHaJ6m;Z*_Pb*k=-EPL{z~pDm@2J?GR(Iie=Cy_^kn%4rT>+iU#v6dx0bzLPn+$KFj?JLCAzLliNQR@^#m z(z2A3ln5+7hLgD*i5+))h|^ev7k3f96-sb`r2IdAOyf_Z-VfRUFfL3w8fB}-!1?pd z&}$e_s9Xt7AlMrX`W*$Pj>L#bahtfklZ2G{`Ftc=3s)pU_{t40$H+nP#JWx>2e&C` z@Fz)C*2@XX0P(*(Z<7?y{|6}H*oWRld-a#}#C?qDKWwx(SR5_#rx`tno9!rV8uA7Z zfViCom5`^TbcBlm1!&OZ0q9V5AVarD?=*@32eE zAp1~*p5ua5QHi=PgCy)oxzFZ=Vyh~L+vz#y&47FOm!rex z&eI%J8t|tE4-R)X1*91ar{U(07-jD-iP7we&_%n;;Iz{vCn#rzNlS^+Nvk`|0Pw8W zqgyS}dh`~hw!>(~-Cu@gSz+cr2M8llS|#%IIohz&C>v$4guF6sbphI4Q(dNp*8r3? zcF`3QA>8XcVn*NAS{ImIBDni@UheM{TVn3)Z-Yc?KNCqc-0LM<;j~hj)Fz!Ool-{5 z*V|0wGT(@3H@%~#^;te|lq{XPWo=C)+?|{28isW;tHb!v2R(c9xZ!$`bz|qZ4=vNb?Gr zC_wuKaPCJ#8W{=a@MY1`DM?5-qQ7HAr8lWLl$4ZI#jC3Xj9FPM98y)BACCeY*pB~F z`Rs_ru1@ePv(k8zfKn1{vxz3s4oJFQW~g-O0h zt?*g7?7NNMAK212aH)-OCv1YaIAa+ssMz#@Q63Ox-ZrhWJD(r$-R%D_hJJBGqsb_3 z9l9)N?8~R)bK*pc;Ps)_(hQB}$n($(uS?PooN_5Gsm-@`w5Y`D-%@|Xy(V5CW}o{z zz_Zef_$xy*`u`;s#kXbs+s29UqXnbtw*}u-vfk(nB%r7aMRkGJ*R?b%R#x;wB@a!< zn}kxRv(hxtC?YXZ9&iSyDBEecHHj9;l)B56QDPM$MQ<9VNwnb7>dvXeAUT65#%NL^ z9a_O-ifyFsE0M z0(H0fZ^GWtd~f-}8cEvui?MFMhE)Kqe-fMO>gwuE;-AbJ(`}faAikB`0o5Je3@C*_ zn1`#k;QF@rFd@|Jz#5Ge%P3_16r9plg<)6?nQXX>6v0^;psAiVRx_q180x2LOZ&&> zZfKgxFDcF?M~?eIxko&6G!Ccl8qlj%KtbBR{~IltyQ)AO*g)XHIlMgOb@V~;s%$gb z@+#iL>OgxnW*bZ&P8nHw>R^f$!GmB$c`~=w*<^^qw8+r3 zA{yi$xq1;|=$!?UitEr*<e|V<-6yy~ zVBqw~LCySa3Kl8VRXFpl5Trar=0)K=TyqtfSji+}v63AQj-|uY*BOHxeog(@>b}}l zxHKK4^ri9fcE|j*glUg|fq*BM4&(~&Zm==_Y!Mk#I{`JNQO|H+{B3E9#~t^*L6KE{ zPg%QQ_uAwB>P*FswU(S$2xpZnL3h~g@vg;GZSA$?R=)t@r}&8qHMdLsZ1V4WvO@lv zYrBk^|Keu7{~KwF?ZLi-^Jvb0dR48);T$FlOJE=Z@yU}qcEojk#wzeeEav-MMFC${6BRj($9b-H0ELY2uFL8+8vM1k$ z;IB65Dc?nSI*QrVq@%nzv|4L!9=Ss8Ck|ABD-2ej6W&8+zc@UQ&=zPh8|axhU*)t(rj~Ka(|t~157n(WvE1C zP$e%78|f)?s!&RpRVF~F)R@?aH~(%av5~)#PJ+cnb3Fnh03mBnW#7CL+fop9+al01 zKRZO>1K(FhhoLiHGNrTNq<0|mub~4`rpgUjF7F;F_X{J|TdWvzKaeZ*=xb%-?+T9?7Mm%7R?}^**uBm6&2j+TKIFDJzb>wz5<=hWki1 zO@9Xs815G3& N@8^`TrT4dASWrS`GH#$bul2(URm4^>hDaK)AJwRPlUqMeR++h; zDGM;PyOLK-tq1Lts!7oZ3Aw?cVM~adon|6UZF(WxBARC=MGiqkO0InMXeg72K#OS8 z3Fg?p2?`9rKnkbrmV?JRQ2or@rZFx8OGN*O_W4vnBwdtt@3k*1K@&uE^<9K(x=mj_ zz1x}6zIk`za0to)5%rqzaly05V;9f!Tt)f6lBk0vMGF?(+O{=2=a{omq8dEIyG~wS znm5YR0IOipf)gf_Huh!eTKQA9>U>3vVc~#WE_(3ye21V`(Pb}MyAhOpft#^hQ)EDfM=D%ld`);vX&SR0_RVWwLNvG?>IhJ;LA|BN_%A z*Tqa7lobR{j~OYIJt`{`n+giC0-W3iLLIC#qnd<*o1@7%<|J%|gh9P9{jNvrkzV8M z380v{721Qq3tX-WEFR$HEuu|I?49BhYcNP7&_`VC>8YGnSXfypth(TDl(v}Y3{uFB zb{n|QE39X+^sp?$z5$o7H)>}a>&`0oh?CG-a!(#xe>xkw@f7idCUxq1?(Nc(;KR5)69 zESb;IhuRUpE$6OyPsN~2X0bagAMNRxR{3~&cb(fg#!adGi#?U}&9a9se`@LPk5R?u zBmSHx;vsr*wXOSL4KV2WyPHJ1e39{KI~Dm|04LNA*hPJv^O6X?0iArpKmGZw66bYJ zG<1t*j&8Ct{#<~Hz&Jmc8F>($Ib|}c=YHBxm$28$d_dAmFHz_8^3X8}o?21Z`R$5U( zN#RshP_#AujBkE(wC?83xx1^8B?t&3-W1MevOi_1(ESC&RR(8}RG30ZN@jF-#6=^G?ahL+)0jrZW#+7PvCeSt;?8Pik`p;yso?+LWUkdw~s%kz(fZ8 zOfvf*%0HH|J3av1W}?GtRjn9qj1$^T6*DWZE` z@h|5_==ydjy-)t=A&Pq1x`L{d(GhjL&|qMw5{ZY>wqm#MGMyhb4d1%kR1`O7>Z2;H zuJ5tbesdyCuiitS(QESKH*y31gIiCzl~F?0lXbq$d^C`ls)}M}V?XGkxG^m=rjr_f z^0c@a7y0ho?YDsu3nKCi(+KCo4E5@*kfsa z^e0NK2Zr(K5oI&;bCE@X9^+K*yt{D0UdX;Z6&N)_pnLw;>U@E3HuW_R1H<0<%4J_+ z38Y$wcuZE3@Sd8gkD$x3k|b^455;x18}hC@_M&DQ_x@m6U22+X`a43?bBXKC40L(j z>T6t)LZT%OgNQ0%P~#}G&7UZTftN8#D2~>vXstm}eMyM+59D6APe)@>|NQUp=?cZC zt^2oY<*gLKNVI)q#bd3#=KG?=y!5=E1d(qHw>gH#jlmt;=FFaKXh=(YH7w|k}t~2{Yj0 zB!1XNP)6O}JUqh$N1gR{DW~8+;)TRtn&Rs6~(*KYo7(ZWEoyfhH9S?nI2gz zqx4%-=;T-6ctMl+`I1kSE;h10NZFdqP0Wouc#TY6%gn3EEm&G*eS$w;Mfh&$MKtF) zYkJIg@BV#U&}w)+wg5N^f3@c~IjveN6&#VJ`!Eno&iYIa-KNXUQ4iEwJqj7;Gbv?` z&XTib%6LO*;1Na;AY4pTcF*@$e{b>elFH9`w@QQ55?gYXi_G>{97=oMrUwMwjx$GO z^XJB-;frH6H6$45I2wCSK5{wse_A>8i360yg7m8hf4eNz%TH>M9v1|$=Ae>6k~ycK z(hA~pq`Fpvv)?>^yu>`kCGkB;*<(#U!l3JDMYa3=lab zY=M`FBjP}Y#!#uZfMekh6R|q4XvoVESkuEpJ^2ua6ItyEi@t(+&0EqxUB@6ZzWQW= zE}K)tk$UkVZse%|!50Xx`9#!LKUu-9v;N^$Updjr-4djebp@ul=z_nJl;dzU@Ih_vuWb40|dYC7l}J#g+%|&yjO0y zVs2n`o$|EaK7!vNTFWgTUFDfQQGj~ zG8_ES^OjrkX;+)1P3T z$>vl;1F!GsrfA)1P?z##2L-j62$954W)`~%^Ld@Vtga?be|6Bq!lZN zGcxYo>jYYu&COjVne6$qta*qH7uyCj!TQKu%P+|@bu~7cifl9Pvp!ueeLz3 zOieCJ?gcfH4z?l1?E++b`}&OH3Ea#tLQ_&%GMLKWKD^NX3)0i5RgwRcCewVWj*6oN zVpGD+m1%ZVN1YST0uYP_l#mw_3SfkVZP%-_T3GhZD|nXBQYvu`2B@AeQ?MQ1o(n-W z%i3q!$wgQ5rdp2Pz`!Zo2=xpluasAQF%{SMl{QS|8HAWs;i1$mUk@J+Pwyh_HeyUh z?3*(-f{q-(Z@W;rc@x(b7s=hTI(Z%KTl3edF(R-fOYNpYSIv<*6u1-|+;3Tl{S8nk z@3XYvTqJt3z!NS8Awi2_ztrR`XA@cte&o>=g(Id0m>{qfuD`j8MJ>UnK|p=>_dOQ> zN>ctqB?_7z0~;34y)|_8UWqc@BR=Hgv*mE5hrZB@v+7gdXB-(VJ^EMvTpkD-o0gI{4km}NAbL4 zTYG^JgvDA_??SV!2UT}52fp1c81U?+P?aOGfU`R9T{pqHaZYHD5=fcg^cMtu#ZuU> zdBg4(kr*P&QnOe*yk>`=Iat$63QM|?W_9P9N!WKAvK&Av|0eC^#U ze*K&!=)&R~_K3uIctwE57PGlUYq#y}$WYB2D%BpeU@VB>7*3^yG2%wXXjNbrSsj8> zQtQj?C4i!8=a4J`Wb2F5#%}fZ1W;qbz&OsiRpQiR1FiUz&81nivR^CjuX<6z*qsN9 zGp8i;;s-+aAp@ZY@V~BN|%ZbD~&&OHp>&m2BC1;s})YW+v9#I7+ z6fDKmyb$5aXb#9q>zeTwWP>$7-Y+v|@o}T7UH5XvG0~Lr80Dlg#x^d$Qu*hKRpgtt z9^#!UK(=>8r^`a7{a4~>TITO_NfxI&tic%?Z;;dh$~8NqyOf#i{;o|>gUH1CSC1fl zZ_K_u0ry-n#opk&C~6X1+ll`BFiCi$L7&jB=GSj8dXyeEDy-=A1ZHd2%(t=PU3=3I zCEByCt#R54x*vNhY2Xa2KQ5BSqOCp^&&TQS{50N15W8Fp6%{jGZ#bb-eT1GH_nA0Y z5Vvzt&5tws`zpv?RC{|~o(a&hr@K5;TS!lLbnxJ(n13`)osAi=&3IO|^uit_RhP~h z4(=A7EanpUiclY8`hBaXW{@d>Q0Fn-FRCPZ-9l{?)vqrpm^;9;TWL{|yS%ek!Jv#o z-VN#9yN4h1R2A&}JzuFstx@ocbY93{#JDSgjuDd5Y5MJ{-SW^)wRkw~Mk%>J3}1-o zV6p+YRf^J75?qhQ+88C^8+%9BO z?%l6>p{JYq4`TV;rmEWRM;;F!9`)b&LNhuH5TV7@Up;UF`(ylhTFns^QgIO@ehY*3 z!ho%O+CT*g$Q+Fi-_cCHsIF~V>40uxhSJgs>}r}*bP0jH`N$rG=@jM#*39#JIb-ZU z+qR;%EtN>NbWyY3{>{V}*6iA_(Yxx6Vz$zhJU_VOd%CF6H5aZLd%RPa9n3WbhcYnA z)0eQP_*9~of$ZG)Xy7$iBtZ5fy2VbmNoaw_JE$!^Gxp5zdGk&Y&I)ckX-j$0w3FR(q2behO5EJ|PYl|ujw@PnW}GS{Wb<>X{Fa6o z=1N}O1k-H$ovEAaf0+GsM`F}vE2U$}^>6ZX{%Tdu(VbxZKhL zg-TNyRYF<~unJTo#pyoVKvDSH+-Di=4tFRD0?cugNG*NM#H7a>rt;pK)aYT^fwPLL z(p%WR3IO{~`^-mgmEKQ(!W4s|mx}{J(g9Wl+%rQKnLj{^PRpS<9J`8HIv`Cm$_Ua_ ziRj4j-VtYVg)G~Bq^f9FMxhff-lMR@c?3;x1>GF%ehZ}ZUgWrf%_+sD{%?<>Ep)e# z^WPM*&jlq|_&>S9Hh?OTR^aH3dqi8xktUFl+9Gah?nN0gKF^mjCA_V@DD0nfzp5(! z7lC^w1%_13=K>VK4{Y27GXeW zWK79jc8{&x#oPw9zkHotO!(#neeFen$jSNP-19AquPWsmOtmO$Z`IVqWz?bPg!jyd z6E^{S1xeM+7g7>d%3Vg8oQ@_cZ!D5hk5Mq_-pSOU+;aw%^Qi+A{z<`CCXtd_$7%B# z(zEv(|1P3BbLRi22p%)TTi@0*H}C?SKP4Q^`y&xlsq0b7Na`E4NHgXf%5YAp1VMG% zUy!d%zdc(4vQ+SbmvJz%4bme0WPr{y_<`J5A|hs;SJ}G3jDtlsiwLAs?b)#$2(KY@ zUlRLMn8hRI8ZaR1vv#)Vs7V=i`eA}N`im>u21nycIav0U#~JyC3*H`I49)0iZzW>dA*4?)-je|9;w5jo^e5t={@;-!?E7-j-_)7q zwQsl|x>@_jT44HiiDR8 z8EH0cqX9KJ_Yn6_pAO0XQC?S*gh?K`+mFLL+`vG8_ zrU|o3grd!e3~DeG1kkJi(%EDJ5P#E?!DSN_zn0^!*+H-r5B7ViUo?IH{ph#5SB}lyxw+d}dGIYz!Dc!5)GsoDZtgDz*8T zm~JG;75RtK2njvP=2M_0^FzZ@~Vi5W&Fq* zds_VpT9|F}$US{2TRTmvkljDS@S;1-8N2XzfSS-0zcB2*>UnEsG6K|j0@g=N@!!3!j^~t0zDj@ObPZ?ye??<5)IyIV>11Znec3xBlP#ws zY(_Ocgq%8#R?~RnTSScj$HFJ%x<6v4`vvoZN*+7au z81Dw>6!|K*zn^vU<5xA^^$73Vd^0HHN3XqA4Z6I3*O>fO9^s+=@gLMfkR4N!tB)k;W! zij$?+5C6V;-+JznM+SI;uxWU><+XUG?(a9nIED;SbyqjbJTz$`+x4MHE|P>7il zZWL*UkOfVtn51-OZpcM?$aaPsvC*CVY*f=fKFAQ`(6T{HVOgWHZWgYQr0eeH9=T3t za9PxgNZP^v;03Z*KSsVqMo^+`%|wbzF(3H3V%-owC)ua^jmb_ZejcT6eX(B+p-ofh zNuNi>2R$j2pkp!V-5qO=Yt>^4`4HZ0R@bKma;DN99fXX%i`nI6UF8biFq1b217fRq zpVrRjVMa^~!%A$IJimvvq~lN!oA#y;I(C>BSgGerPhVmSaJ-7GWRHzYZ=2H}gH)_6 zjV$!~$Y)c^8dDT9owb?kZIuoHKnUE?or+)Fl`4cJwMPQmmx(Zk2m7(eykcg|g;#5Pn1)53<*uv+lZmH|T_wwefBBa1_Q#XNNq}sDsMEeaqG#vWM z=cC|0x_>3PxOi<;uJJaU{MQ2ZbW{#L$zx5tvAA-6blNHQKWjYl<~;86H=hF9Cv}p= zCgIo(lvnWo&uLW2nDE4o=eFeITTpXd>%e&%)Ez;K$&CCiPwVVGjyT>;! zlYM0YDb+(mYFuWNVInJm_6rOIs)DdmsRaFd3s8EoJ%^5TWlmpcQa;lo67g;?Q1J9O-@dSDQs= z!y_DHewGAdAte)&<^K%qd|g?#^-4a1(0Q+Xx2*P*TkvdkM+%-`5=LCmcSqh#)9a=!D3tl5OrG(w!63 zMMr}|WsA6Bt3^%!qGx%DkJ)yL0gthtCTTHXEE#=c$oBbROHw>@FZ%}Fe}jGd`x3d-?mky7&e!&;Lf=;fRSqAkz7*6L4KB)AwjT2Gd_wowg<2M(y&dT)|Ou$ z@UW1t(2AsK>JMBlT?L`-Z`7npgXw_b*0_o-;0UAv*|axjI>Op&S+okoiy#gQJeju3 z)f%RILqFrmiR3`1w1167wuMdn?(V#7U1rH3B_Iic?n8iCnRN|BI5F><7K!nbCdu7R z4c7~Ebw$xB;*@C99HbYy>cVQX7yUK@8I_{liyxw%u^oS>T4OTHNQxISyk?e{MaWq= z)0V!H&uNOASq!-DHR|5Ni@k|qQinn9x+J9X`YSN3+|j{?{-PRsVA`}qoIBKqznc-b z?~Hdz$&jtr4W9s7x{MA`eEip@pBH@)vMW+R#w(!vhjwYIwwfp+U zr3*OAtH^6pt4y3H$q0-K-3}V-FFGz0Bbm2uS4c9M3t=cUvKWBJ9L(Gm)c6aFLY1s^fSOsh00Bd=f%9yFSlCMX~a&ASDk*&0kgiABB z781cJtahq7Ncx+|pyEwkRZ{uE$|ySR8(b&qTiR_~k~9D`H<{JQifuRuoPZdp5rOs*WYQc?p5X>bOFK_FJDF6ElHHl8(Odw(uAso+vGi`t+K#6=%d? z=3&2_&)ws0T60@0z;`EUecYt*z{Jt3&(1H}Sl#QEevNRSF`#N{-!RzTcFcl;$NEX; zo92gVD1RPWB^3D6NRZweblv*jXF(+M^Q-_l!P}=pRjKqV$wxZS{Sb121`y>mBGQ_@ zp}>}_!*#IlhWD{d0Ru=d`A`yE+?1JT=q15yuc@<|*fr`H5;QiXc8eh zuHb~Uap@;_E5{YcC_WXmW)hd-h%=7EI;1bdk$QP!nm}Ee12BG#-SA~h=L-yyfKe{ZwuoR2+k}Fjx}s6S`zbF$B7?&7FCC zDb^}E(}%fB#XEU%(zJKy*(PRR7+t3k zBdyhR*r#6|UIq(=MMN38CH^n6z-|$QY&dg*6^C>=?Pcf6Qffsgs(AQU-kGhb$9y#R z!ak85U(4Rs>7P6&nD7`>PF2379wBa=xlKC4PiTqNH+Pqn12k1RoVOb@^Yt0yLu+GW00e-kefJ`>X2Sq972d@8`Xw;CO5UZ z8o}Ik)eb@+aU51}jv=V6%x^S_MyV!SLlw1rm)x|K05w3$ze}}q#v@GOP0A-17BBdT z!)Z@?nH4ABea8ZQwBnfi^;3mPMB*Ylje;#qeWFU+6uvN|Dr)($8OMDGl&se|SpSOp zN^NskYH4Dxqbf%0Qncvo+$gv(ZRXw?dtR{cFOe`TQ0=XzgPHKFqLx?k554zga>0>N zhap)^qJOhz{@$4>MUx`>-hj?aiu=ryuy-v zXmi38Tz2DIYf*N#>%EvZsb+=JAUtCbKJLF5*69_xt^ElalcrZnx99P{u$AT4N@C@r zPxHJRO1(ez;dFmH|ic?nU~{d1kI@OVA(?4RvRRyiF5pqbqJM`PoU{CbjcbUoE>|cp@_7hUIdc6_ufS zerj2a%uWF5SO(yobMS3`Sj>ZXSn$h!ZSnd@W8^2$2GZ#GQ2OY45}c{pML-jGInHv_ z_#Iq8B*%)SsVNxaY^h!XdNxJ@&o?y5cGH0orv|Xi&bnA6B?S3R9^C0XAiS~SW#G6O z*Q5@d+}O#JYTa*jhNMNpuFWjR@B^Z?r?B}|0g*fDs5Z&=*P+R#3@A--;zn@~8jRu% zDNMvbH4X$L6h zGLdQq+!uYjp?vZ9Ejp6!VX=7Rf$!x~e-rKAH{+M74}F=^)bb8((Zl8QUAJI?pHBZG z+4HZ-?S-edcUncAQ0QX3Yvul~oB7D_7EqVJaxp7clkYt}hIlrmmV5m0@Sc5ZkV&J# zKZ8qt!wg^k;wAsf{cFMwO`fMcoxHfm@#FM`?5~BBXrsnt(ocp0c*JCaufrz0UV}j7 zI5#owb{#g_0elyRIF=c@!;1fZw;w`)C)AoP39W!Vp>8d>`?nax(KD_>xX0w=8Osfa z{L*HAlRmV*9E;Ew%I5A}ESvW*wY8j=uDq@jYl4 z2d?bH$H+L>v8NgR(()N<1=Rt>hP7QZO%(7#9w-e$!328xxV41}N%+Pb%Xh$H-fPz1 z5qqTu$aZwuBhE!;m{ss)XYmIa%GBC6&|;4oO6_1FW5dti@`9`ra172p|E$DLceuWf zVM_KNhN0-QO~Qzl;-0{cZyiDm=Vltt9V--S@zicFF*=$L7!L-{;Nwf?GyJaB7NU)g zvn66&oSP`k-Pbc^s#~mj(QFmR>)F`R3#BEu)&c~lt&pZ6sXaO$A01<9o>-)1*%tjg z3RYeoNrn>YigI5SQ|7tj@P`pZ@=!7XO4VNs7DkD#B(m>4ecz)e~j6BYSJL&*ArSVn&t^J$7O@)S5N~M=jw{q)qwTt2(Wmxf2luwn% zolH{719DRk*J($JJl6>u-rZ;8Uh}9eHFk(%@9~<~_(@?fm zt>pjhCWmiXwUOsKwlD{WyS;iFdV9OqWesh8%z}Tu}4Kb={mf=Vo-Zx3>}8 zZ!_ab2PO^}TBL*0Ua6?i3_}F7^JsALK1f-RI+LTSCLHt%RbmfvbN*Cvr5v@Ep@`%h zrJ3j>>$WwU35*dO=y&sc`et1>Xn zI~O#){*+lNPG4?4y)~$=U`9eaS@5F-EPi9@-oH54T|MO!p8E`IYky)Y3@@qy%4|Y#?S=e9#fpCRSme_0^&Iz#n;YMu=x|s?_I*B6%?xQVkvDK!uhDCD zBe&*-4*Ye6UrWH@T$(+1fLa!l)3ZvxmB81um`y=zf@)Ikpji|>b0C|M6BChfe*!9a z899!nfuldV7ug4-gcQ83b+uYu$x{EtzU#Y|F+dzQR)AMv#|#=0h|~~A`=4i}1fl{+ z(7dZJoN#3H|7AmP`dLF{2bk4L9>|tu6c9Nqzv3XOD}yUI0;tKJ92Krxu-FwYfbyiq z+*HCf=lctcpRKtykd7Afey3ZKYxnuYtlYxb@AE@E(bvEV+c+{OY$TI+rK)#5xkPzx ziThi;xcegjlltLndb{Ko@x{TSFvn^(0tN_bQi^;`Dqp`|zmgWj7)h#U5Cit;OnSZT zUlwTgE3Vq?I7cU0xzaRYMIDuY8i9pcl=Jx(2sJ`$%JYR4Ko9#BS0^O#Dy1-r$qJ6r zpya}DmUgl=Z^mC-?72{o_-|_VzZh;9X`DtRZUE@r>4ysgS{SFl#M_G^`=Jf;i5>OqJok_e|M%j*;v-$o%1E83b>a=OJL zJjijju71YHT&m?O|(yif4Rxc`G#J$dW}VQj)bemg9~GsXg!LB zQf5*;xr^P|0fItg=Jp?hS@AEulG2gDDD+5~nk+kcjOSZ6}zB`wLBx+!3sBwz8#26w!VZZM;840mO zBDyqSTa6!dernbC@YH}Dx~8W!H^&9vORB-9#`D>d8jZ)Nyp%>!9M*uJgFjz#9)2w= z#w@I(U@2kbPbnSJPSKcAp}U#aj$9KEw~+B zZ+r%4RykBh8NIBkN&`Nv&xq@0-5M(W?LD-1&7vmHZzdAFcX`c;pZ_P_^Mj^e(tp3O z_RTu>>ZZb(fqCV&YAZOkU1F6(?Y>`Y*s{Q~APgw>QacBD^YRPf5CZ9aZ+6aW`h64S ztJ5V1pr~6}W#b}x=;QY;nF&pBpf!vV>qeuL#tM!w<205QBw3tOdqjfDNh~8V$oG!N z`%z-O(vlAZ6x56tuY_a@5Q>Tq;ZUc+dTFy%;ZgNb2nE>!Ad$yfO-P`=U>qf2rDia% z2pA#gn(H)f!kXw1$+z*+vQ-w|w*n@4$!k$<(688YvVH4GgD_>Hj*{SJ!g{>Q#Cq zPg3uYD#oLd<5hmY$}qh7PzEuyAgQMuoUAQa$Zf>q-(h^F@|Dy0qGs{yZF$_k5E z3N%gMlfr#v?7;o`1+DkVj{c|r-Gbt~gNnEmzz-YP@z)FS0uL^>+vmwp*?m{3@)sf> z^jsgt`fJ^*{vYODcE!U!AEx)+{Q)j_k2k+M1u%qh6s2nD=Uky%LBGx>-JE9}yxKks zpP#o{oo@NXV5}cIuZ9nGzVHov-(B#i*f8K$)-_!iTs{VEDE;Mg4ZbbArUGL@33Ci| z@{!cXDs{n=y?X|S3BnH+p@gCm-s3nzVZ4uM32}JZS4X#BP7!hTiFi0VJX**G%iM`M zY%DUs(7y7~Wpm=ck7YQv`PvA*RvKAh@(n3?eV9!i{*nlc5BtN*_5A=L-@o=9|Mi_} zkHS_P=LJiKt@+v&UmK8B27XfmPRY=urIGIDB6a@^a@XIXr`GUay5?@7+xIvo5{jaV z!pD2!x-vQulYTI@F%2hQB5|cN!WhZ}^KFUzN`f9PujF$!%on6@HO$`Xg#$$^P|^08 z(r$;8DtH0NFumXgf`2{1Ot$o;*M5c-Yubi<(z+_?nZ30C+(yqo?=J}3qP~?u%l~N0 zA*Q;rKf3)|np3DbZc6$9An#cbd#AP3HPt>? z>-X$6WovcIqU|5;BSshcvwlrYTTO4u$FD4!m+Iik)*x3vTCk|9vAbqo0o|w4IPIz$ zMTWw4G1Gk0S>3t`_|T%0S)ji^S~%hF`4;o_DtY`+b(APyRG@4t`Pl&5*7|g`*+J$i zpNQul2*$G^k%d%J-8}y(JDZXE@*aNS;*7%WUWEFrkjV^zO|mK{$S=hIwzU!Sa?$V* z%X8YTU6?l4ZDY_at3njf>9OYgUbrnYV5!)aFX#Y8xOOceo{yA)FWNiau;EzykY8zD zO^ong-r22+79RxIn&G{LU|YbCpwwGsAo@|YFO0@rcXV*MnJKpSwFwvq(!CMEBK$xb z$5kdKQ>Q=(zRck!ON?Z>R-dt*R4O}emZ(cc#n`vM<_k4W_Ga+djS10eGidA z+>?c2Wa>zhDm)-JO|KvoRcV#V(hY6}ZrxDW55hz6EjTKNpM?jS0bGXz_f&qk5nXi5 z_3^AahnO!yU%etlkwU8!(~^7M_6@qA$&=n%I=@o@W7=u*m*lmNjHw$9k~jbr7i0^mDYZRVSoN%-N(BEjX=V_~Qb5pAPDMRzei z3yYVxP7nco?wmP)eq#8%iF>6Xq+?gb?~`0{(QofREdZzf_^dQ}o#pj(g!0cbeg9i* zc9MJX129UmTW5p07FGNKW1tzA-LEwx%4Vvo&I}ErC6A%1)~!QdkOvMXdfQhkC>5`` zJD<200@E*pBV+mn0Tc=Y-!TD8P_cZ)nf2Kkj&@{e5MG)`acxbThlhsx`@sd~4ZmIG za_>L1%Vv2mj^MWYuR@J;VQ0P2G~M%0%KoMo>D=u6+cVP9f0J2<1NvB|L_=t)gzl)3 zmfJD4E)_H6E8}VE)jtT|XeL2CPYo*9()eQxw8CTha+dVK{g0xzANC+WPcmb9*cY8a zdq{;YKmQNz+Y{N;(%?tN$Z}%7U5KRa+@B#|vP6Zb5)DLC4KP|Tk6@y=GiVE{S<*v9 zAhyDGb(jOM;?Kh|5+gsvr-fn%0kEL&;&JlpAZ2G}Sgx<-n$KS3*r@A4_M2n97G$0u z1D8m156LUho5`Y6{y{`dvZS)NF}lgH=@9AQsnmHfD+G_uw4$)2^`4t=gfK5FemPB2 zK|dVr+-O!eoGJ$e#}Td1@`%=?2JYZUE- z)B8CwEg}dmfqdx`)^9I%OU&K3JE}jmV$1I60k7EWUF?;jAFOakT5Lc0G;4&-8#U=v zkft0C(Bc}hAZdxXLwok(8T8S+=z!98%wT1G$R$whsQNGI&s+%vxLfoggoB>0Z302w zOLkm)D}>cQrtO38Sgb&aBN+B3Eut@JAJ4M!nNLFni5<#qI)NGp0))VHD?|kc(pH{% zs|NmEs$c%V@B)GmQ8gVDY_{CxoyXfK)Ar6vd^W0o6~L_XrI(o_2fZ}stezb9!zV5- zWjHT*k@DOe&wGbfS46)R^I4e3w!DfL9+9VZ`<4q7xxF)J!&sXG{zxS)c=phQ=K?d8 zn}dc0HJm>qO}qUMo$x66@p90WuQMG1P?ErL^$%>2rcLBjJ!S$Q60l}i`jwjWz{UvB zdhXoo^rtnQ4!EE^B(Lp8bzV?FKExxFWmv1d9T((@i(ehyH{xIvaplh)PBLd^%c~n(IB>wR`VUT_)Np`o zBNz&jl?6$&mUtLJ!&bH1typCLIvAmm3ueVfQy)q_!`jhq4rp ztQ!VgC&V;Q&9JuEr7A9U;lh}d{Q(7^Q(DIM-?WY7DqNZtIWggHK*%&xN1 zVNiWU6-=>~`tKwbepERb7!6G!!G75K+$d_t4}YScxE*K$JBpmqzB1f&vzORgjK`lWH7!C|2Q0wJE!i zRvfyLW-gN)q2mwD^*U-FT<*{Fg=8GGHP^u=qTHtyEufSn43h>-c~?z9d1sC=7p4pJ8Uy#yHgs`6rP6;~gj2Bbmwf*^-MaC5&hjj&bN`!C$T$+0+F!z{8(+dgc(A>1Wxd`D3 zvWi%<77R#XyoRJ@tgwjqJ&PZ|kjv-PJ%?Ud>%CgwnELy;ES@nW=Y5<+)HzsOid2U` z%g&Y`mjLlFsg#>{f#dJz6*vF;mE;t5-@Y6btd9Eu{RULPwU7zlW{;Hbd~ z>=WFObkS3xMQjik37?7zZ4!pYn@9-~6_-Si?w((2L^Fr<<>aZfa*|GI%0LVt@sqPP zjg0f*eNhLN5u1)Bj7sagLszimuvUp4T!4c?h?_oK4T_qb;<*!D!pzfN9IO`#PXC8> zz5Ef+TxaUH=c8bWTR z5_AKy3Rmt1@#fA1+K$Zm2KE#cdi&U-O)n->9n#vcc{9a6d0@M|EPkr;RpZc5)#%2!uR2R_)zSN%@5^+J|we42^QJ+bL9IL7FIIU zeLfatxP8Qir)&&NWbv#_kkPuvo<5-<^T%#ruovi4s+FF{KA+t$4U8*NZ;b5~nQlZ; zWJa({apqk)6+HPM%j{Q=sHwI}#B#J8@J{jZ!(R`F!8cw7_q}UEK`iQn^#-Sa9NsXs z^S)M2&{{sm>)@$dL;FY8uR7)2@6Tn*qMLKw|K+N_D)I(9>|cexBu)?R*&&h@yFg0oyn^W6Wl{vJktz;cNO@;W&Mix7vX;VKxcNGmCA4 zCMhq{QX6)U!z%Z+w8aLY0cwoCw@=PxWNGTx@Sm8{XI#r;erANJ(;5F%`pj@`c5*~| zAyCr){zS_ltMRUl{0$`{or(N{{Tt?PrR|4d0=@+klPaZxjSnk-Q6MQ^=sz2^;)`pSUEUZ!ew6 zLwG^_a!nuRDWrJkBX0K_gA4;_O@6&y+9y44KxS;swPnZD>vu&5dNEdxEaZ!o?de&u zir0x=1j+6-Bt}v~L5H0rj{-?|f5x?EmKmo2pF|?BGww8Q9Eg~ce0W#mbw=tX`1fM2 z>rEQOg`XlOdS^Hh-07!3+O_1n*wbq_E<|Dn4lVmGeaWo*<^s&XdjyK1yvl4&*16il zU3=fX#w1F(&#I)o{ajwB;pCl?#D-qUsyYFq?_ z$VbYoBIKH%%J#W!p_=I|q>zRlxY9K>(A8^m#!-HFD=iyF{ueAKx-<%)Wh1-U(9+Pv zqODr|=PxEO@q6~U_@E?N(24!ywzm$B9S6ym25;N_(~Obk_(t9%mb?DA(ys9f=98t2 z&YxX^BXY9@SDo~JaB_684z?6hs;As5B8xp&@((+OH*@wIZx7G7RMD#423`%s*+7~|Z5bH;kYLA@St^9KdaxIpqHJ-Yr#~mB^I-yC#}bZHh$jp?y(r1ys1Xg&wjJAx1)t;;d8k)N;Nn2*F~Jh#&>{V*kjO$* z#cd7&MT(ab>Pd2t_cZS*d@W)1pCsE-Eqf(Zq2p_YiH!7&3}T)j+!W&0sM5@jX-+!` zY&Cs3?9yg6Bgt0HAi8YjknJ5}^ZDW7bCVJ18=`B6?EL77fcRJ(g6CQd#}YvcrP49- zpxc@??RF?VuL0^z;WHwN1EGnWImQ7!9SBw{l(`|_IoP1XC@W&q4ZhUd ziHP8Z8D0vp3mJwT!hm1~)`XQ}E3a^km2X-MKhV)THs@Czg@Rfe@%9aGXZA(eOSdRa zgX&(f)_b$Kuz)b0iTU*V*%6y=E*qwFkF%}#GPg3=ovge68sDt*$N6+Z|L*m`qFTf2 zvG|wxbLEYucD+~PGP0rqALp~SKJMG#xTkpWVJqj;FoQq^Gux_N5qp?jfh-*C?Ai=P zNUpZ^8NkSh!p(}F>tC764%@}P@G)A5MZAnzSrfb`bCV}lklTY*WHXVs(2-$tK*3bU zvTpeF0HGW=?8hTHIX_XcwKkW@2(YpI%7C@!ksE5Cm%hCAm_C|k9*l);$Jb3 z;FtdqywTaU=z9Js1xUplqg@ahEhLtC(Scq->Es4YX>U6XCQMl(Sc`ezng{dUA%P)J z5tqx>Mm@|3YkU}XHR<2UYVj=HpI4t>YrMEnaiNfPM^?TSePsbbT9vf`mhJ;PJSulG zU!WZ6^=T;0YbZhX>BL>VOunFpPf{B&Jg|Z;_JC~wHGPjR+gWWF1YO?N?y&GP4f3X| z$}SAdwQdlETFJdR4vJ$$oF&@;J*+LZ2=uuvgDUoHT86`>j-93Yth_<7GQUz%;)aF` z3s2HmB8Y5Jf1Ta0BichI-)~@Szi$1Z;?3vShBJM;z}A<%q6DpBuWwMql4ypBdr|LUuQ)yb24O1+=_G|GqWo*FXbe6?O+`piiF0@a-4 z#gR=pu;4d8JYXNj9Buq$Qzhs*%Bo-kB=Ne&(eoVM{jl2|3a>6{{mtiYsnLGvjB&F0G`tm>opr7AMk(^8IQcv``S`$zFK9MzGSd7CZI{R9M1>| zt1h+39{nnM-I=Yz%^?j-8+x(EACYD6LgOvY{rqY}{;5tJg5NSr-7?l6V>8kk*b>k8 zN0%LTQc%Ayd)01~to|yyXF&izMw1NJiTpLlL1ct|bcSBzd-iN#2J19Gv0j*aU*Bp! zJ*UY<&Yf5Ta<5&CoWV23`()H@j`Rx86nx#ui_m4t1Z(CcU4Gc{<2^|F+{Vwe!(Sb? z4qOO0Abb6IgIgiAa_LkKRt2o>=*~#q)~1-Gbss&MNy9zetS7?Xt`D@lyE&b0fjeZ< z1gKgdf=aa($f0-=nCd!lq7&QcB%sxy70{|n>S-}%Na7q>6We;B-PR70{QEO=fh0Hjk6~->Xcksvf@V5pWDJ*D@V|^$>oq4Vd@$hOW^xCwy(mYPlVdrGJrAxOsP!QByz@wXPEf@C{WYzvZS?*L z*?D&1ye_4(OZN;<%x-7*WBn46BL-j(0})MHH)u!*S+;3wcAwT-qy8`K`dUuh8>n+* zEsF^JTQ}lv^5jDI9T=bVeVmW^ko<^O7MbR|FOZD9a)yyVDh)l|XlS}hzcuqp)0nfN z8-x|RMj!Ab%yN@|kEX`f*RQ5wBd#Wf)K=$`I-@H;wvxu_DE*(qm_GLMo!DR3V%@LS zsE%j#;ICc7;Lnx39tHK)X)u(`{vwmj_K?z@ay!eUnW@fnS2j|yTEtjU5Ks}lfh(;* zfV4WJ8^`5B;%5U2OTKd9MEZY$xQMzq1|7#vRHfcb@@hx}r&|%xcWZLr{FIf0m!=$m z3u`y>27@+2=PHjB**H}rvk*gvGynd^DP(v;?J0t{dc^#D=7%5DzgT-pS9p=a%kR(A zfg$w$CT%{UaLx(2keH^+v=uSc#+3fkBKqfU{y^)=rD(2=c|yhWgJ;hSES?tf`7K|$ z`oc(v#QgIohqr1ethYz}IJT&?u~HD? zT!hd=7!Bx%0*8_LlGR1*1JvSZnQDZ{3hDf5e(*DD)K32=j;11l02N}uPtU!rai;y@5@j}|bhIIM+^ z8Juf3%uvYx|KH(6MEBGb*F;jWGMTcZQTUo)pcFc*Q7lBB>-hpfA&q$G*|HGFJXTE9bwcBu4YJSU5)20h2{<}u zhHWUXYSsum35zwxJ=L6mrr0LM64(U>7LSMv3Xh;HHT3@4l^?|7 zg)?SUi_RgA5C60AAt_>amJW;6Gm-CyaiCqc-~Mj_*FzwSP3f@Y5nV^Y5IAkh_@}=?_a--~*sgi; zJ9<5IITh9Gu0662+H%Gj6ewTAT@Yr=Q!Fn*&sz&{dUb zVs#&mog3Hor}e0DdiqG{K$U*GI$?9?f97`?eo`2`321KPjN*)C2rY}*WSutVl>OlV zbox!ID9m(~=&<7qJ$-2siCv&Za5J1u>7;%}#Xq_lnL)xI)ftGZL12$FsA>*58o! z$W7*pZ+jALG(uldBg|;8DVQ+A4Ds_Fl!?AF-tn{!5e4ydQ$w~A=dootlvJW%Q)62u zdGNN`UW3q2L?G2pi>*DGUeL2li#>6sKrIj=SZFPl2z{xOr*ATVF1#{%JT!UyI2|}0 zar@wLlVRjLj4Q=k5Vt7^$zVTNKnWtkqCA9@7V9iWf^ zwCuY-BAEURO){80t~QNGyuqO;LT%3EGftl4q7cZ*)hL_E8lVFxJQs#4Jz9fxpcS$$ zVxFA^37G}GGBwKF0AqZvo68U|Ja;hi)6&lH z`!4@9MbIgp{pVrUEaXslOVeaa1OjK`p@01l z>GgsKNP_0ADrBd~)ytx5a!Q;%e2U*LYUc|hW^t*rftEH24moRz$=D3WFPJF#nQYD( zr?9^g61Og|g1w+%30T9uG`DWD#cz{v#%{C?)CkFRfvPoEBC*&@rC8+)f|Ba~$rOVQ zc?pLsQg~;W8F=m+((GBKeV<8-L%cE6YCQrT$SU!Asta7jcyoBmXYA1Mg@;T&(R{zU*LK%uMAC{NAn7MQ0L z%FYgq{__*-Olpbh7=kPJuOl?Q0h8(!~96&lk^3|c}-R`p58 zpb(rEpR-wWWEe)ljZ_0feeJt}FGrUhM}0NIPS03QSU(^YN-tw&GDPn|f!!8ti1R5f z@X(rVGnSzRa>TKZ>r{Q4pUX9)qWye!pBlLXPvkH_N(7-IgHn7`1V|b^tZ6Gh(jwT1 zUg%q6htbiQOKR+f2EnvIRJA73w|3HpuxIHewFJ!(akLrBzjFCT_@Utay@P{>@+(7g zW)o{g6-2Sp?E&yj#TxZr0p11QR5Zeuka}`^;h@T#x{yw7c<)lGTEH)*2Zm&?t zOvo{}fHr$&T0L5`l!9G^2cdwzVAndjT9&|l>4g%R(qP((GL-duAJwtsSACPObWJjd zMW=u3P;{YG(Yq~Z$!a6+_i9AWR2%T^CGmN_nFo&F zVK?YB5|M#B;5`K#*CBKqrQx=>z9$=-?qTLoDgm$(1%ajjN-VZ)sT-grT9wiss6xhi zq=YYv1A@g?l^6K7or1n*I;pV!WJDpaD*pi>P14⋙yjbR3ueNNFV&!a&T4sXmK43 zH4B7cWAh17?o)AHq*_hvq?X_wB!dCXe#7^|Dk_GQxh1Gw`dU|tZ~a5 zHpikxp`|XL^=S9_V1&t`BgZG3@GJU>gF;wH$;{o16$1G|FT<)2h5y;e4QhnK-|X5i zqY6h}kqP;q`#s43Z~yH{S`>CSNj zU~o+aS*#CK2$Vj@%Y~|f@&ra}{zuI5N}j+vI+NO{hp%=6CH8|_wR_SiWv9uaZ04(; z#9ihw4|3u^k8LBCgus}a|9JWPx9#wUS7L-YH+Uu(Kq*4#fmpT%bG8s;IUVB8=I5Nc zUXY*a64Zj8HI)KuB0sGK?SY1o}ehJ4PLP&t^s>V1}mHTa(MF zVwz(GWt>XU)q`8zqVu^O)R*cKNgLJFqpqzCF!8mw5FzChBm)dJ6DELV4Tu3*=x-#)f3mf@V8De6z`BYv;w9rIYd)_e?o(AC4_-8)my z&5|4vt1H{uM#wMjNZU>}Y#%-!x3OxJl>f%ZRbA+$D0DMZOZH#72*HAo=V+#RLl%)3 z&ePEXiaUylL_d!(CMFy6Ps2&@H5li5+Cs{7R1>7JKv#gwzE?Gxt*VEMPw_BBn)qpB zna5HmL{K1oaOOY=IcJMwcUO?eX+P=@k;FO((JRcUUyy5}LjAtU^@b^{IEk9tpos)?a0b~J&>C7$;NGfeB;z!{b}0{h6wyJ1g_9{DSOFM=q*fsj z9BWxtNxYBzg$@L=mTul>ph56N6FXMEZ3CFSymm|W9QW7{HTl+muLb8HICH{Ir1`X; zL|mkDW0|6Tzi%SQWWZIN^7ne7L^(*bvO!&@6U42^V)r9X5lRp)ZEhMdbW47VgP4m& z<6o5g9E7|tN3#@Rk~(Jy{)lxn0kCGp_H@z}I|@FhV^r@&4$U1n<(9)v)2~k3OL0po zC9zt^cWOFi>^FTV2;oi4$Ca)915Tv5Y4iaPTV*I=MJ9sL<7JKdJ)e);>1epb4G)4M z?Qy7`#8!G_tVKa|B|D5!XEdI~0$F>zH|!Ka()Q~yS8wYQ_vcCRYUllWWn zVeQ7q72ZY2y11+_jjXE3t{L;#dK&Jp&Mb~9pvhZ>>c9J~Sp->)-qe*i5-~2dg9d9((iU(%aPFk){KhFL zA_B4J&w%Ntb4?x_R^y+IqDD}T!nTP)I68u*jBC-0(z;}#l}vI++v(F=w$T&z4scyv zrg0f~QyLAyH-CudgHb?V0a1ab(N2S5Hf=HvHo;SXnYmeJ4DPuS&-)Rp-)UGxs9Jy` zbPO;c`9EyjP@ObI*9ZwK=gCMZd1bPDj`Ppwh4xpplgb_Naglt4b^>MfVf0Dx5_Tr~I3x*m4O}EfDJ<39E!W;kM}_*9s)$!pRa|gxw?(L2_iQ2Rg4ZhZQfU z9c=YZte!`0XH86|vZ>^|d6s{h?Bq4D_juybTJL$4sg=5ZraIN^!Mupx6NyKN%}E?{ zMMsg`JRio_I%a{U>dDF$ZWOWl4Comfrzbo$AHCCV zLGbuT_jrK?DHUQ530Sj7i>8Ec%b1|&nABj2NmUZPyOV-KYv?D^oi;X)sTd?d=ILqfKXRCf{=LTMs7qNSy zKZvu;j>+?6^QtQ;p~^HaTkQGaZi)^J>>1<1sj7?)^#F0{88KcgS?yP0bkF>KoI=mY zDxM-SQ5?8W5}9b(#P!FSmL{?!jOyWZv=@`Sq87v~wOLEpFwEhyq1f4kHN@q>Fh>Vn zdc>fKTa7Z3)ZfN80Fu%*r&mn&GOSz@#$h$@bYQVTpCXywrVpB0!D_o97acq6zM@H^_rJGH!m70p#+C;Bd z_K~%YKC5r6rlCQM=dk%;9RL1%pq$^}wgs}l>w~n27fc!_-pRqH>wz5XiDD^5RAb}# zYoyqdEtE127^C{MWZix|+((aev2#^?%EE=wso+Aww3F>eW6zz=KN|D=_iZtU-uFn$ z%V=IvcQW+ANssf9#h;43Zj4%$VaO0&B&<7{Qg`gOs>=J^YtC(Oe$a}q$#ufrFW|UP zb(_ENoer0G4pP>#j-ybjX0KypapAF&Eu~w$W;UI`Iv%(*$TNZsQ0Xi=j&Pt{(e#dgY83*+q~Ow;>Ikh{ zNV`^v+KTf3C6d%@`|~;L?dp4`i-F2SoX?a@6eQ4qwTgpsvk+aDdZ{jh(#-x;|U3L4~CT_F5Uv<0I%1hVi> z`3_1PPyh|U3Oz75$5+ml(RU!!LSP^cF?E`T7vPM-9qtaWcub z7cl>rpm*T_*4EI&+!6*YU0^g)O2Asm00GD>!XYx+8q9`a>dJT&wqwsB?=cupufUQ2 z88-JiLi$k#z4<>b?0!eh7?Sp;7mkubRZo^Z>Glm@c$O#fK-|4V6W9PdK*YaQ`Q%A@ z>BIz6-I<0D!OZ2ueN93BGX~Pqs+L-{x4Q_}t_3P!!ZY5tf>!2_78GcLR~wDYY!13) zDxo(-cFE-P5y&~dZuj{hyCUQ9dBLA78DR8(yn_}fyg1^laI&MQ?}j5UK(gOUwtcp> zV8!X#A6HP5yp=cneD43Hq6UPdrCsx3JbWx-9Jjqq!E$mVR zY@Fy3`9RI{xvnnM3hG6{rYz8s)B{8f2}@kRv9|ien((3%)sPqQYHK>(UEW#bb(;A} z!6W`;-FoT6Z744wjM72EmUUxlt+i<>MkR7%v88RUW)k4wgbLKFpbgF=f}F7FsDiwf z8yipm!*C z^IhZ6$THfnpL5NEJ79fGULVT(y8chJ3b&}-fBW79A|3FPGx zn&k>g4BiA>OdE;k!#t|+A_U)3YN{PubJ>VQVr5#U^C=u*E=&#aisP#e+U9qBNf+kF zoMuFP6SpC_Z{KeI69v;O8?!+1N!$K6kV;rf$=`x#(B!Ly`W85RR^CY64iE8~hOUfH zQjgYZ3DX7V5%m`@j|_;K`YbytvRSxxm&wYg4w*(4l^-b-^Th(H6GrAoU2rb(N8Mok zYBe{q=Bm-)^9@aMh|Ee>@+;bZD$T-1B_eSgAxtz2oolU06bPB#C81Vbq@2sMjAA2; zIW6|W;=kxh8E|D4qA8kL4@tL3vCx?sT2)3+o(cJFpr|(jj1-*25+aQ~T!5aA3AZ5H zQHC9a;tGiD6W|+9f?y`%YdSFK-hrj(u&ym!eX-BhjT;|c5R7tXuUg%;>|=gsrC&MS zc$GR~u57+q*;~~zJ%hR!F3`xTo!Vr*L)Z~U@WC9ZBpl(&bUs-; zUKg|>9(W$g24DD%wpRH+g58s!mp3bsol*Tjj@*G*lLu;5cz}9RMFV!>R)EH zUgmaSyTulo{wHr5%Xc=LG_;;Bs#iKl27u~koJ8waJ8BV?3b1|P=i^{x<0 z&v^W#C3-f^?CZ*O)Fawgga}mMaea>)3$LK$MMCiO8vQDP z;)&D)cGm8A>Iuhglr}u~LyOLAyt~6tfQfr`D_2UkWM(*oNbTX}5|Ej-MUrufH&bV( z2;?*(Slnb|L#T9nYD@rQ@u6lva!`?1<tcfavk2whV(gzZKV z?v%QWmoR8iM+TkDQ7ugi)|FU*J1E!1xk6P=+U z>=Y&u(JJyxo?vT7cgO$(M_4yF^|XrD>U6n$M38pzuC!g$16%wCp;qsxDm`=ubfnzL zPfWIquuu^s;a(qP6yd$-V!lr6jf78vdyccPsrq1mJT1Y5dxPc#J4Yo0aqGeCoz(qX zydzW@GDG3+ykX{5raVt zYUkn#){*P*#Ce>a_YY3Z{hdBX+JdrU9-IrH3pxS zD$knqh}xV2JgF45CZ|L#7(~*JuDjy6_k#yUVi=)3#0x&CsOukzY?w9Ek7nACFPC#Iy-ryeXt&rQ;f8Haa6hiWNB^Qqx7C#N2&pRxxI84G2!cnIS0 z_S)e^JVWzTIKj(inEF=b#UIHO?#JIbWKwZO(#v7V;+M`lNgS+%B6&H!E|wspl@aTV zt;|dNYn>A>XLA9?yg?q_%W}kKQ!1aVTUQ)j1selfa|8=*2r!sU5ZQb9`M>>M7<-|7 zhIo3_?|m!wcszwc-Y8fP448dVKpLqaLq<2Q@E0R?=quv!Q8}N;;$wnR3(W$}YA3kX zs2oulXX%gwEc}M)@o2zRlMd72S}EZnHk?+5sP}6SY3BO8Z%Y-wDdJGs+48`++Q(Pb z(>o`sbr^&pR_v9;tYA`9nX=rS4LmqJC!u!Ws)6F+TyeHk#EkTU~W5uS&Ri~r$6IM8CnOqtnq#4d#!j(-S8L3N#Us5s>9xp$BkV&^Q z4Da0LmS2&g4XT#52ful~eo)oo3ANxcCeB_{S`=o17jt}vsIctNB+y& zm$Mr3YC6a`Z1=L*f+MfD{Pu}lD6|I#hgXzNX@ceCatbPs+wE^LQ_3&HPk-InI*X4> zB=~nR*XM;4#KAaMem$m+F@9lbGj|o)%7so)ku~@4vhvDkIGXCyfO!~|*?)q0X-YAc zxa%UAla>jF|FA(F5i3!oSBJ)XwpJcWEuKHu?Nq%K4B+$=eEMn}&zK zua*BY3MD0M#9B$55BCck#U`FpzMA|L@oQ)H^jqK>8+82*QOXp04Tgj#R_GUEEg7S+ z|3}H&TzzWTsgcb%m@^8eJUcFTbo=LEI9Cw^HWW8s$lM>UZN ze@-B4Miq1ab7K7y>A>e{L^6J4*Glr{7qNgLt(Bzdy5tRZYlT4u{L`D*Yvlqf&#WvX zTU(65ds(~q&)rqqthl=EqyFT4@1|?VUXLY)UVA-2Q!a;gk1jm@BL3~sEZwTlFsPN9 z$~Yt6jnHcLh&T&AJdY*a1j99^;`_{8YjaGktPv}kDx8=N~Z9H}tb zhOr3$J1Yd)>((ATd@_YyxgkeQU`rh;+`wEcCbM$}fM(xd6La(?Yv-}0Uwmqx62Pa? zT*H_A=rpPJvTynTW83(}KRHdTz2rNm-{YTTvbK6_3yOnS$#2M=wjHMdk3YxVM<7_N z-n=-eDFV7IwGB#)#$CIPR=jn(`M#cgYb;b1fC7`8R%ToU~NYZOVk1 zL>Y)x5p5$XNVahdLP+S%s_PpevHBx~YY-@jTtJD=lg%GAWMqs@)*R24fkhQ^QY7cu z8{dC?9#E0MB76{4MCFt422N|8PdWDHKP=uGH}viM4pY4mOm4E?(*U%MjWa6E#e`Wu zJc-RVVUmO8&D_BGY#EQb?l(!EGs zB}fi}BKQ84KiiVei@&ruuc_0^(+GNd2hylq3}J}Ti*Pf+f0t9~G-VIsKzdMjinD(M z{t1B)jxfY$GjPnqfqTu$@udkb)y#>;3r1KFgGU8^R+*W-VZ$G31kz!*%r(~gZ>h^4 z$m(5uC9&Pp z6zoIdXf}lNarWLm8DS|K zB(+8l&k`#8k}pAq3YJRe$Zz2cAETgi4sOqkp%jdeDDx9Je}g%tnTxxmwr;d5y$gId zZ4TWp?Q|dpel*(#P66IPdbIUOAQ~o}aW&JcHqJV)vg)HsY?KeimJNInw{Jy+`eVJ| zBQd1}r%C$O2iT0ofcaek?VJ>72yR4;z#?=Ky-lV>z5PXaR^~}SAw`8-X(V+RFt}7{ z6{}cA9CP53xB@T^Z zq7s@B?q1gQHZLZVrmUcovjqtI7YLy!AB!tmE#SzY6jUH0>_IN~03nsLyQj%12g97^v7!)e5L9v@f#U3DuWNUK%QGkH|Gkh{FfC^&C$IYSRPoJTOW@0=X*kT1soo66$YaTN9uo(_1F(c&or67Qz zGyGyz2KA2QgrcVC_Y9gwalBXEOOR1LVpvF#qpi>m$cRQe_^k&fitO-)Yf%=}Q3 z^^?1%kZ|n%+;NRV5_@tNG&RL~LBSGkIb|-{In6AD8A2hkfx#$?Q4h@^Na2c4Gn$ zltd^5M-hVmD_bY>zO~%)bw|*KkaX0NHo6+T(*CB^)-DpQFu1`#??uM;5Lg9ofTgBJVK~xT$#CK@ZwdSO3Kc@hn zZWRyVk^Yu$_uxAV-=hrg^S|^f>f)7cdv}s-%DdA{_W}?>FHEX@4in8g!UG!_+fdAxU6XeXAc^E<^Qc%k`yRlQtaQ_N0r|Wrs_*4^7IR$chiVnN@ODeTz8s z35ut12~N32LKXYo;^IGo(hB~~Ef<^qCV6bRlUw-C&%fd`#JtT{+z4KkvLF+@KFySt z_Q!@&@sh&Ct=VbxCMUV9bM7b3_tIsQ0w=vmpVnQNxNf?*<&W@ilP-8(UNh3nES!`+ zwaBTG?yXD@1{9ZUpzm3-h>Bsxm}XS?R3gESihF-&oMzBok9PxHx@j?AHh zk<+K8eOO2tDWG^KD%FPgmg9Tek_9&G3YdLiFR(D0G=-W?5X!VI)3XBj=`=NpOkCYQ z(l((2gHztHtNVOjbTn-?hiF)(ZIzipa!qD+V;;%fld$3bJDxMVw|g7{|48#vv5XN$ z8Gf5W^DA75$THkkVoRtBt?v!l>(V+6Df9lYX?PZ-zyg9K&?y<#NfVA%yG&e4v6sM- zdJ^=@WoF7c>{s1RW74KWZ*}KekMcg8q>Wpv8TsF!x`TMrHL*a^CXeM+=YOA5WJ~c1 zBTz=V1SB419#Ao!`#ktL?Ja(k~~I`uRC{?hI)?w37SDo;gQ{4HUvYM@7w@LqZRZgCW^$HR3WFbFzyIf%hy;d z=q2ly#8+FD-ZT^wQe%jyFhs=EbOu%%B84GHAK8LmI`8xvy)}+|`;R1^t1N+85V=H5 zuI=%25toxbWM&g=R(9{fc8?L!u zEUuM^oo&tSHSO)jsx&tpa%b@Hbo$PAA9S>4KHMlJz&UwMU8V+EBZRx4sp5nebD84) zVz=MnqyO%XK}CG|Tr;iq2Q^IVa{B|9L}><$=D*D6SI4H@UKJg_kAafoGh8ebBE$Q8 z6->HekZ`f^9J&fyOaNh<)}&g2$2|VBY+nbMIf?C^ZR1YTiL?!Zf{-!TdPoQRc>lO( za@K5?J9U{dq0)-pRv)X5g4DExXPx_p5ctnF&oL?-%AL`2o2)my0~-o#{U;p}Md$XW zf8mE16Mm+4p#|%d9clUQt4^ZwFHe64nvgC5vq$5DCi?X?2f?uBxk*=MT?+-KSB4l# z8%;3)JJ1ngVKWGwR5w1{Kx$mj)XsJ3^cz_t{0N#JgnQK0%V6vHOp|G~62J+F!*Ekn z@-LWa?O!iUwERWNm&@ln{;(MWmZ>?%u2|GIOI%jY^t76^=u?INu>-GgQD3v}%Y`}5jm44OPCNS`t{lCSe)wur! zot?&>Ar?mgsW zrJ)9U2qH0JRh-||mbo@YDrqj{veQP0gT@@pYEkH8eRgI2Q`on#s?c35h>%!!u zQ?nCWTKiH;;d<5nU)kdvu+y7gd9c`WF|eF(l*lNQ8IDXq`AWdoEFD~`z(E8;r22Av z-3qiVG$Pu#P2jq^X26g&EJ&Ht9;hPFcpq*8n<3Sg)&Zn9kw)DoV!fHNF_b_ypcQrB zC9+auL!&{vCIv|_#^aPczH*mYh2PkG(j()KO2 zPnUj);6l=llIfO-SO3+v5FH>Y%6Q>}dKrn^T|O&i&!|O$C-Lj34LIlcSzNx4PRLRQ zO%M1hE1qOqC#F}Wq>S(CDk}Wx4nKv5J{=8GF(;Q}E-SX7@3=m5jV1++P+vFq_M#~! zPPU|tL9Odq$e#I#-S}&hQ98FtfkQbkpTgxe3!!Pj0Sq_M(zcdnQ+!}z{LMx#VPj;* z@Cb&plG`3Wbcf&dx`pm@L`0BqNw1Hyy?U zWBj5OjZ?%J6YWz*n&{alRAFY6qMB#6Dh#_eHYN-rR2GRd0sYaJ^GS#-tCWKX+&sbP zF}BT1dEv@r9G%gJ`H*$2W{6}s37R@VUm{&cv)**miJd6^>8+Q_=Lz>66jG+rmh#hP zucuZTRO_em=^Na>TZ|%&DKk_7yaf?EQT)LXuOEtBvp7av^m{M0qTz8MByr%V$FwmS zk)BCw6I%`i42NjLK8&%BY+~CTN#G~f{{9xU`hxa$OKKE7owkVRL@!Am(#DI5h`*+QBY9-Zn9eNNK7y^Mr5ou4>bSWNr2XGl zXC{NA-$TF%XuM!6ME*-_Utxtuv_RP>p-%QrrWLSeP{Dn7xo2rxt+T{9gTa!bMkb9x z4lV)JmiCp5w&tZOxGl|Gr|wkk&A=u-ti9c+{(VSDOvAQlQ(ThQxxvG~+eu_+v&CuB z27^;#Rqbwz@{75SZuXJ1>yJB`$me}N(H)?E4g(J?BpuXV{??jnv1%u+V)w7lb}$+Zjr8G~pYnzcm9!qpT((i1X>T96 z?;n8g!vi9WTVYJg>vP|x_7bH@;OJ}08^+~jqma=M0ygJ;cV4U2Wa((jAtJY^;9%1Om8Xby234_Z?kMK(eb0eKTV&Y+(1V`F8k*d#NQHcL7&v1r${WX!3I+xSnV3N1LT)R*}MUjWHg;)Ty<3!g@a(5iJI!Dms^Bx z9#<19T}wy|Z-q@SUvbu4bOeJ2(IrLX^%uK|4-x=wzdJ^!uXt^U_|`z&Y>0MZ`pAaJ zo+v_aA4s4{+7c0zPZ@#1M5SC>5+0B4NPo!rq-D_t&nhj#m--Qo1;U4AWZ}#I@skf5 zGi;_@#k~b-m$XWX?85kk*29I#oP4Hm=#$(aX-Qon6Kpn9 zTk0(=7}(E^KYbT>X`eF1#Hy!;mjY?xgR4@~VsxH{K?n%3ywZL(4A$}3vT^kpRq%j0 zMcmz8k4ap+OQ-s+Wl&4OLV9q}wqaO|=~;;s%IuJv18taJqV8q*LmLt+ai4TS>WxFI z^7!jnp^ZG~w1S5veWWg)i$12n2>yPB$&5bSwZ{WLH@JPQv|1qoYR<hR9+iph9u!$}TWp0QKh4%lyD17GH0y>Ig%z;hU?ML8JBJ8E<_4RZ&=CMv=PauKs= zz8whj6y$X^!G*+7U+bfa#;SQ%!d?EdcG5S9{Y@*0fG|6OujGv8>xtl_pkWTFpnTXd zWXK3VO3aMR9$2)EI^f{mbc708HN49PzE7G<`mX8^j^350{r<;h}GZ47Q5Or&=MlibjcGyb5&(cgtLV~{^vcX6OYUb z+UkRk{=8fYMD<4sRQ{#}{8iz2r~N=Q(kC(w=SOWX(*ItU%HlFJ?I3=X?4N(sFzrD^eTd zhLa3v#{@Yn&I^K4Rg4~$%Er0{v+;riqZjouRBD>_g3jI5F=4ocDeXC|+-DiUvfT=A zvvxs3@pjsD#H5lpl?jscR^x))}Fx^t*eCboa_ zHRUwFBJ9s*Y#=5pdZI!msKPl}BNll{94q@`YG7)^7d)!Nwecwb4>SRfqAB7wfD$R@ zhMY@8-2_=7A`$JfzrfL=&Sm4i1kBl_8czgeE4JyG0pdL*u>2Wv{Q!TbIbtIGZ2vMB z$`0Km+06FG(k(bbP!NfYnO#^zjX2YDA2zLQ@7!45vOn&~`+ikR{l?Dr{MMWjbLXgy z!C=A2cST?VN@{|L=R#KKdHJZ<7x!e!2Z#CvLhEj){G$5v0DfXw^8E5sMhG`&ECiO8 z1jtdFR>r3D4PBFi$wR)&1%fFZ+d&Z;oW+2o>v z3dRkPa@VIl>$drB8D*M!IO!wPsU`&lTC&y>^ejSRmONeFKK`5ez6#BR11MNw7qUbj}*7Fpua5hC05Ey#)$Xi7^fP^w%= zo?hw5+xtzTx)UcF8;b5=+U7Uy+p6#Q}?9~g#7)>$BQQKrU+iDj|dx$ zYPPq85BR+|XL^bCR0YP4B-s0-A%y5?ZF%z`0wDw$gv^Fhcx!q)9#xN9$6e!<0I|Ed z9BuZ69Y-X;LCktot1zHCv5V{xSJFg@G(d@b9MPt0bNB_^LdLW}KY1QdfuyJdfOV!@Cgg7syAE6HATZ%)L9du}15*Yf0oMZu-QCG2e zumdxg^+$(>TPhJWJfL@B(U@{l`db@FN0v*l)vw`EV@win%_uEuVbpQIYTe)gSwV3F z5k;dRWW%V50=83(&YFt>%^U=My%>D}-x#070*5K}@$8}%B`*_@eo5q<{H^*089Dr^ zBp#eRo{>YI8-T2+y`82pq;kPi5+l*9g2;HC&ezqrGqS1@333MDH@)7^{+QYl z7pVwdxvTu7O%xX%K)7)Wi+rLshFi&y(7Rq{IyY}a%$m?4CQI}>lxl+p4J!6=b^a{? ze00{`nfV zjrsSs+p5M0qc*TFMYaIW9a_j86A`vOwdpM_wclfeU-pn2t#KVy`VamjeX!N%yQbFl z)_f-J@nZh|X>Dz3%u7RnmgYppd`r^%a%|8~O*zuKxQ#M5mz!1_d9SRd`d~GkM>ny+X?EqIl_ILyiZYg@E~~N z<;8=?XR{#gB?NS<$+^pb@ujT3H3>3Rxwm80UbFa{lo=?e(?4`3lkJn$HrGq;@`=V$|lu!T6D+1H;E9Cz6+k zOEc#dlLST~YvbF0`O$Bu1RNGc>Tht&Y`1;3Ao1p{JncYzL49@I?wamf@~2WRaiJPs z_5oAn&ZpDO#Ngn`igR~ch@~r}(y6QOe37OUToHq3Qpv434FqFWbWGwiv)d-3nw}ik z{n8de!-@X8Z~Rb4v21j7P9Fgj@2q;9oxNhIZpB^V*Ye}s*bjb-l_cDbtyv!aTt%CP z;=e`50g$oCHZZi>z3!{qZYrIA)M&G#;Z=TB45x1{;A*F-{$rwHlPuC3V39WE*Lmw;a!g!{@{^ zyuC3PMLDz$cSJj^Lz`=Ar8_$0NW$;yCEd&hdMXdGKKHi1K%AWGGHR6X=!+LUf(TPl z5ivM8tHJ~90nXv2b4x|qgYu+8p#aq1DF{_UPrSZh?aDL}!6YM}o6Xcqe${X*)sZzL zhh{HxpD3nktE%|@Hu=Jhi)sWpqWN=$VCQtZLhSlUBGDuX1RFQryT`E;s=smjdt%De z%xm6YSJW&(&qlP$-73U>jU z>@L$;OLzei_YsNp#*~Hn)ustCU85Dzc!yW}ywekxJ?BvPOr;&suQ7ljl;|(Oi+{C= zx=+l%&RQ{h<+rbDIQFArK?Ao(JQuO0znwBEvvkhOS&+Hp&~s$+sG$QP$;uvYDdG4g zvp!i&DHQUCY$v-`{laviL!tN+R(yt3{=~ zK1;k`m}%K-q-Wl;>?>7NEPKbjsB1-uip1sKk(W-lFIa)!t{TR=YQ0WIU2@`v`>3tr zq5x5*-EFh4C~wjLCMw+53R$y;u>A7KaI}m7Kchm6!hnlR4rymG!Twm#5yMAAP=L#mW zi72stAZbtf!z6oWUr&3uC23)Ac~av8@v!M2-0zz-;B@XX9Um2?G*Q> zoic3~Ui`(FHoLcLqprU{2Jj76VjMzcn*h!S#;GcxyMfbq>|HS1sEYk11SdOGn|3NaYkeNX<%?%1BvEE?gWHCMtnYeil1p#Wb-@PNIi+zx zVRq<5fDWsjzS}#O+_>@IFekCQQK>yS%e8UuT^G0U2M9jwiuhP*I2k$b-wl=IC5L}? z8pQ}-C_ew2#BLK$_@s0P4Jn!G`*sAz3v$A72zx8nE5X#O$Ku1FJ!7W9)a=I_E|bHA zl3xZ^54`5s&wCLKbC8%BVi-xQ6#OGSkxk>3AKe=^@B59lkb@pLSKGXH;=viT*MXG`p$K&cSHSO%yr*kzB#}7NhH%9UT15(NL6Uw+3 zP6w|nT2VcBI=wcsmM2CQpm?`8&z zLHe&va8`z5@O-xm+MS!n zTd+s?5?Vg!t*!mLYB>|jdnnBJJFOS`isDdz{V|||rep`SF66)eaEoX>enCWxKSR$IKXJ?m`@c-JaVQ$%{4DN)Zl7Ql#* zrkrTtlLlNF`^PM2cBS896W#wcXfZKlGtV-@HDixLgmF<436(6eIrvb122vv0ep6N zYfi1_?HT0A_kd*fO)L;P?(o|Q!}m7UY;UN)sG0xI!CtSxDrU3KS^6>k)eibSaQ~Yr z;At|6gT9D|3aTca-OS#9&xNM(H6?HT-{LtiR;KIr>|HpM zyj01vb71Ad+LHVir#Hdgga-@b*px*BP1VdYY;ZLeMOtLDlgqC`(~k(Tw01B5PO?yCfXwuDf9-Zw{brJBNq@FYM=4S|pg@sZB!oby z#m?%B0R(iV3^E*WT$7Yf@P6QQBe+9r493~(G!hQ4B|z07|qhe^0f z!zz|obgG(6WDSdTtbXwdmRL~QzGCJ!_x^9&&U-O6O*fe2mCRv&Q!8_F-g-X#@38$Y z8LR|X2MLD6=@gWrgt}!#PbOAH7{;-!u8I**;fE zt=Io!LJ;H4>q>ZjyT^w-x=l>wL8;V|BBw8qjc_{23~-`k|& zmNR0#n=~`0-8)Y7>ockyLzQpw5+0(vw}hKhEGc}M_b~m!@!_8Lo5Tl--`bqofZF;v zM8gwR&t+KcxH?-U={TaU7i49O>S22Z?nRtPS9G)Y-_<4hA$0SBkx^Nlcf3u5sNiS+ z)doUG+S<~^t*!2yHhoPE?C+OITH9bqL813p!?5?fiZ01;-0gIUDYi35Vi67Yk#1|O zs@p0R2M^x*>WgO2c6@RoR42`zOw?v)b2O6cCLLNA7aY({Mg7`k?po`fbP;eaG^G4L z^#!!he5y+sq^4!in8<=tR63-<*Bu0SD-aq3O=`A6B0+qd0}S0n9~8R%Q1 zeF)wd_t?LVcS#)D?{AR#H^(4ZTpTp0Y;knT`Z*L}yzp0YSMt_<0WsT`9Ap|Uj$!QZ z&khIviX)4|^Fzy2zn&;*ES6sRK!^17P^#pRgbxA$z<3XE1jV-;3ILkI z)ID)^-HTkMf+|~(A{SgdEvUkBx6`Gf=t42m{pvs+crY=SLmv)n(H6xCC3LkSmUAnE z9({q}0#aZjB~OWi^=m+&A*WG?@N1}96QUvoI||pCP4EHhBocV&WPBU&$VdwM{X7Nr zeu1Q!cEf^BZQFd(g*eSqqKS+fBI)s^`w>i!WSq{E?5++d2VVP6Wf-a*Gi9IV8)hY& z6UD)&MPE-QO>PZbSnMnzL5Fr9li%NB&1NQDv`swNN7rfmHSZK2uo4-f5eS$^4j~;@ zq@Ugm?YX0Qdf^5tG-@XJrxmMz+PwK#XXwe!Pa7M`j?S$>=4fnQ@d?RKE0MYXxYS=i zBXO(`{q`4MU$Ovi-GyW!6mDr!%Echt)-m;mMY><1P!xC}N$nlfG|>J8@5U#U6fyQ_ zLMy6G;=F9_nU7-7jLc}%5V7LA^*-ydvu+w|iV+BjAkXpRO;e^MyR10!(aEo;gF!(* z5-5q-1Z^j%%j2zPG=y8IxtGy|0>k_XEkS%Gytgyc*c5WXuttc&5`haU=++ilpRKs;z;5ebTmI{p120|W&%kfm%+pj;>NgSEQQAQqH0bzXos zWZ=kx_av41u!L+}JCA1_bOPbBM@f7%ES+SEKOrX+jMlP)r;Zkq6!-~n6)T)2U@yw- zophdybZ@OamHJ*U&FWKH8rhhs*~ue^_p9`;WFD?Gm9w3OX05v;1bA6gj*5%t^IYOq zhoyefbZfZjPK-?`Et#Nr{73E$iFndF0pBX^it{IL=nxS3NRBg zH+)qS5M~ZI;ymg6aM^Q4YKr4!5YJ;FdfiNM!N902Tz*yP6;6;Ugs#Ca* zb!@yln;*5YYMHO&%GkFtl&BR){hFRagyJu4X^obc=%iI?>Fn8HL?B_;w>Zo6%oTPBrqwbCrpt!N$X^%;rw*}i_&dE!J_`Dl4Lm>nKI zN7RRrB+j3NAf9lbzr8(QXPK$7^20nMq*F!}oIQXW6v4STf~iK0o7fDBH8xJ*(t#8tf@l$TqSs9fE0#F`XPRlhi903Dc7n>0Xv~eqX~6Ym%?**^-&Rp!v!Ig1rxM z%J|cDmy>@(Dfbg;-nwr*TYx1uK3PMO9hh5w zVZ#Ib8*CEfT!HGy;*LB)-&@zd%lPCg8821#xH|N4x>7|*Lr4WR0^ zY8~N5C8-W4H_{XH zWY{N=F~VOx%_T$FSQp498#1QQDPDd4RGb`R5e_MFOneDI=SBo^u?lW((Zj^uqQ+wb z(PG8X<4JcSC@IrD)`d&+@IOKR>vLa*K7X|iiuMrEAADfiD$W(3>A#NlCMv>%YhSOm%ZRMR>*u|CumMMLXK zUJz+VJ{H?%*Ag=b(#3D$BdptYhT*%Xy_eE9oRqC~etNdmm|X6IaSNhl1`lpmYZFQl zTcF&=ZvnA^Tjb+^ifTc&SqA#Cti zmKR=uHG_DI7~H3;dM2mNhfA^boTRW}FSeb<0W;H@^jN_-UMDrv)4)D2-)a86A20PA zDkFS6b=TmQs4%H2-I)wzt73;!TJ!x8-O*8E^7+<9P*)wr&_e$QFar<68*W&dWtdCI zNBmJlt${jqfEd9#<%+(>N-vaH+=G{&6pEox`aLdP;0Bgmm$qO+V&}Mee z6`bniX+8*12-)B6O96_8WBd9ue)}h_Zt-kWeu3)n7^RM=%cmY7fl4$YHX;~l4G}O` zLQBIGjRX_1j~4&8j9IvYD$=aTjrFr~y*{E8yFPu|4~&4bu$^0PZeCodGW{t82q3-) z;McmsX1{%?=2}(vwaCN6Spqas`bZK;j?|6PgutNOSm3tgg1tcp;)7o>K=c9etBa=^U~7095mbdIuN|AL4$1jtUsk!{Ic- zq#+}5_~rf;^x(DcO)@4kjDvY+V`Q=6h~5%5 zAz9w~8GhL}#Ax*(*0cVLqcTwGK2S(S&7W0ks zr>jK`0qw@RO+)V6QivV&GbnseboD3UKuggvpJ=!@q5E*!^J8&Qm+xAGuGx=9LEubB z`wxUxy_WXVr7JEH`Qx6RA7ld!OU_%0O|ihM7d-aKr)-yP$6Hd0jxqcskvE)Fw!%(1@(%;(K zyO&32rG51Xl7T0R-`NphFvR9Yuc@1IG9W{b^oo~fL=9;B%hH1MF%3W1`L2n94p+6O zwW%2h?j^`x8~*=J@|sVC58BClUsG)^F7&w}Vf<*??)cpd1zxK0A z*bqLM$B2ElA^#9e+5nr%KL9y*r5R0&lh5o71wMZe?qyx{6AW{pO;?}8TWa_ zns+?R<&V33SGpaUU#_J;dwt%Qtc~`TDys^V+Z5pKMiJxRd+0A+Z+baH>tHRk<_qFi zhnFsGaao7=hje|4oRJ25`D3_z(Kh|MP5Gn=e3adX-{SP*7f6bh|N7T^dKc+LlJ|q> zi-g<7>Ow^sKfEk71qio`jNd9|ELt_3c22F>X>OQj&yhWIB1=u}+#0c!$Omi`ywcmN zsMa$#UL9|B1WzVkKhfotEZ8@r9G7OdnPe1d2B(lSZQ0V=a4#p1Wzesm9BW-NX0j}o zqQbjA5%?;#16$ZMc5^~!gX^qUy>8E1B7ejXlib#<%P1Dp6>X(Oz4bj2vAy_PYy9G6 z6BGwAO{0jtCbd%!(GUY;C}o(yL5zu!-204AGDi(Qr5W!@H|d*0E3M7Gk;|8aRz2_W zdqtZ40(#5Yy2Q8FuvSnksoO6-iMME{=b8k}NRdOC^%!_M2nB-wOLgZ1mgji-uN7?( zoBCU1xIHh>@k4Gb(kk3(CKn&4E@{8-TYuS3X)|-gSkycv5*^ zZLBPd!Wfd&_x_3Q_LU5~V(+8yeS;j?kfixAAfeI>AeL-DXvTDjPIR7Pm%=SO>MnLz z7NvKdWYORr2vD;u5ZOt8bAhq&Xb;{V->&M&NTE_A;M@}u^kb3r3FQm zX;Leh8e#Rq%>fP@_QMMocA~{`NIdW*ITvT;m8Q%#FI{S$U6`j>Q7<6)rK?$Ti>Nkz zhH{&F3I|M8h!hVKILZn_VN5QLzyJQwl6QgQVoq#vmyB5Jk*Q|&(YZXd^MAMfg*oTX z^b0jbOCsZ3`d^`zn=ozww$3ykZ6Zb@9W)|C1O@t}d~+JZewN71%KRJ@VU1xxvn5%b zdkNU+^zn&mJ|5ZiS2mcw$L(p5X%wQ49sCE=|F)1YQ6wwiuMA@H^eAJPVBskGTdrmd z_35*gtE^(fFF4m+pZC^O6&+q}P*t}sig10}2Ab3yzz-d`Y-xLLsR!f>l zYlVAY>)FoIB0Dj&sOeJO5f{GBj1cBNFNmiOG%`7Q1QXj*TCI8!R+ zz1$k!M9g$DLdvyZ#wp$zv}6+Nxykb%VI{TZV!w*-Kaa6O!;| zjpiN7JHmW!(kiG`*%9$i%Cwg-!ipV)7gfz(ZA$N%G~(p8tmEaY;`aM47oCt_7fxac zb$PndM0PcQl4GgfVl3t_{`vLzZ!UA>NqIa6j!!4+a6z^Wm*PUnD>nAqNIQ&=qD4R! z6THJ0R~=98EFtK0#;;uTAF+l!^e+c58!VQoXKkE4XU)_X;t>20F-kCzG2y5Crrs3} zX17cvUU1L9uKQ!B(QALea1Tl~o{^z+QM{#CKSHNTfA!oJ(xq`By*yP`ab0Yn?3|K# zg%|+kqS#ih(WGc1xV}XZS~&SAm3rhz zOu2xTj(PxyN?3+d9bB5O$)B>2;nQu6A;`p$!hBqvvdayc&A~YORUo8&dvXRxkzjlX zB0%i!^MFINPq1fF5xHh%VCYc`8Vv}sKbhT{*)R?nlwOVORcSQSkvJsU`R9wpIHPk+ z5k8%pnv!~W{(^s#clqDSfONVTS3dzl&uOJ1_M`Rwo3RBTD)5>ATZ}mbEmooTx*m`* z>nWBf#0%2?#UL$f95Eu#yTRfa`y~sfC|7-7aO+Vk`Irn?P@5ZGj-QNYRh{o+IjOLj z<&|UZjag|YYlB1cI;+A0YUBg>%0<1A;j+`m`TCW{(BOu;WvDi)?Cy~a9?sq@cR;z1 zt1XHixLtwCQSG|1G8`P$v-@{>z1UelxVl=c36?2TncsCBDi`t@6v%Kw|GsR0{cpT1T9IB}9$)0M+{b7VrK-z$!(|?+^aNlPB;ll9ZR-EKSLj3Q zMEk}}1WeSoV2{5lqMmp(B`kalPaRDdIyvB0F2o?X(2qdRW5iBwMA+2UN#t7qMa;UP z4RJ6{bGj&heIS5s44bvlq#C{8>?Ufn45d#U@ABfpKjsypBc-ggG>19Rp`8w}VHhZ5r7Pa&=7BDw#DF3r# zlKb|zn=%lBOOLw!3uhYJvbuXVn)_Ar$E2>+WzgyFK~m>ib8N)s`g7+Fs;%)y5`e!@ zjL6#2(zSgdVKgZ|HL0b%U@jHKCsbHRoF^shiD4q~!$*{R4*k2k>z2Z{pwQ2Vbg^LDx?*tDucGYvK>pqHL6TJ^WX3-DMr|J;AG4j zhy2-C@lTa#CF8o)96jAZ6W!5Oi~%6TR~_+Arb;;zIY>O{Q|&=0npDdqKGP<-j|sbPy&$cHy&W}}s&M^#R!*!2Bsza24JwI9w*Lgm*K~3Gl%z{u zgj{OaQsE+>&WYLVa^k(o;GK5uTk1N?l)fafmJ0sRp91PMr=H{SP3?y{=VK3(!;)N+G znPE%gr-D2~1Z^KJU$m%bw!@E?qmL&NmPh!mi7jIb4=)blUR`v$SxT7P%NO$@F>hTU zX737V1T*(u$h`8(VkU4LW5hr0yZ7U_ESR5m@G$pR(Yh2HCYv+Ys5)96+2xz7hdTo) z(0{}Ql5-j@(>;G5^M7OCm1%I9Qbu*(pB_`X@81Y`^&7tzz&xZ|4N^)HPQx}B&oV&P zNKS^U(G_<6SlOLHQwrhpPvK9Oh(!mXdHqw1iw!j@`ux( zn}7zz9LX{#eAh!v#+F{Zcp>R28~L4n|J#~BMW5L{0{m$-FE1~4_9PIwkD>Sg=PZfF zk&j_^w%o_;CR@Hl@&l|B2hE_=K#8sn?635sXwx;y%o=DJC38TVkm7}&dDvP|Fgb^Y zAxt1yJx?xFi#e-bV7qSbRcw!GAo!y}0Kkl2<-r3fNn%;x;R}nS62(a}wp`5WXL+-A z;+?(V`!P1`Hc`2v4(umJ7{m}xHup|4uM;Ob`E3a}3v-7yImA@cxI5z~q)X6%U=kRD zDp3sVfM)xQT*x#Qu3}X+VWPaE@bh$L&L98(>3ZNf_cZ;@(T9-WxJbUPB*tteE;*29 z@eWX$7S2Y&*v-Vcr|$Y;(A=rQ`#p2@k?JO^FrVhU(;oagM0X{JVTFSUn_^{wj^+sM|E7 z=lG)Fn8<*rhz;sdj_*re&^>wl7a^=;^I66#DsJopZ|0#(RSg~IsPh>;>y>KFMHJu>bbtI{HL%vikSjhErmXUf6B-Ct?oLDD5x z7I^43=kp?3TL?=;o2mCw{UUS;vh+ENo)1__-W*&p20!-PrqbnJlF1oJfxnwyms|?c zPu6LS?poay{)Xcb>I*81s$;|yJ0fhc5QBpc8W*R}h#79zI!i8QFASbrnIrC!?By9F zULCopsBpu&M$ue1Tr#%)e_cv2n_xjJ*fKR@Zbpn84zxwD9pZ{k?|}zlyWCn{+H&aa z{&g>bQJDWA;-o2L4j2SaoV@Ki-oGg2K>}!g>P2weC6MBiSUsXy!;>Aj^Acn$2ALY> zF+6UtB4R_9MTvpvm;uI1?~;OY>#NUYf4*BLcC}i?uC>#qP^(ahGw>${ItlOGpI0%G zQyTb#>Hmq`82{}{UL(|A3(^F(lOO*~XpbBV>Rso894GVkfZn|+QvQwmYg~!n2JMX- z2IiI2q{WeV!66| z7Z(dd(x3C3t2jF5AZMmTvbCA63^d1!L&cPp)pd+{3>b-n3tL*Y$$5d>ho5n5$0&Eu z(&ouVS;-n^HDo%Vu$LjVkG;3E%ey46aN#1}&W=Ka_MS(w{xS=2Pwx>0L~gGX@ZNBo z5ocIP4g;UQ)1jT<(s+)k=EY@ zzTvi4Yieu7?h86Z@W}ddV&ldwo9A~BsgAx4x*5Xs1Mqv0QcV%7fr_?-nXwmj6L`{B zj~mRKgiIVX+j6=sVVNaf+8cZVi7eBvJ0SUN^FUjhPus{Ue8{UQbG!J505ayTtm-lG z@zI(YO?;x-qgA(O9Sv9E=@?$ehxl#hB56q}aXGl2&+UtU`QF3z@B1z}bM4MjgUOB0 zKU%4V!;vd?hi!Tf{G1%GP;7Pj7|9uZ+D@~H%;zi#K@q@YeL9qw+=Ynn-kgB46QjA2 zmUH%+=g0SoE9L5z+ya)J0sg<Z=F3X@92MK8){qLC_Sw5wVBsGpW&BR_mq3s znwu4hHHL{y2J|yZBzeZ6>A7-y)fZHlYQ{>Q^4NAu5`((wF&+C}2pB)7Bk@l`vS*K) z(A*s05+KFsgAJ22(Y4mA1oO8!P7^`4c{{!ZkavoV ze^S(!j=0Ns*>ynFcf1smnU4?5RjKZoOMs1e` zr=~9M_^D)c?vzR=o@V!Z>x($q>8QmW+XLpH?&D!y;x$q2WGkC$V#j;{(L_c@NQ2n6 zxR?FspWcD8NlV;sF|EnEO0-zmK6Eo4cXft4AQwM$i%JFmcGA(W*;z~AS$sX3%LFDQ zst%PmfsY@`t}*tIvUW}_B+$V5Q*FY%21%qFq;8u8_7T;Tz&+Vw2^{v;EPJg4JlTs4 z8jP`2uHzJ;OGe_ad{t%Nf7QM&s03ao7Y9 zG;K6B;MIwgBupB48JQRQ(+jNJ2Az!X&2HqX?IGkjJo_gB??De|CjVgPdbPcl_?rLY;(}pKZ_CqVA~_D$Q~EXRYlCwr5d!^sjnO&X&$R~T+pNFr?|V6; zjUC-;yw2-!EeFHV9l*EDW%mx|C4mq%{AKyXd)R2VS={k2N%8!83-eQa1g{xQqjL#^#IXGs*wR0XmV3`&ep-J9x*~*{OPT*B^`a$ixYJ}Y!*Virg~t*lh?Y5VEL0rTpP+7>vzN=9Fw>DKw~XfAv( zwrz{prOS`Tz?Mu)467w z&B3#vRie*%m&{sA1ofst=HA8MZ#}59QCCUHAA~~5jZ`>;uYSG#%{m^`FzR_bK7KrtipJ&pG_U*uMQ}#AFa$DR)vtQXlqh8QmYLHZf{8 z`SB!E=Dpfw}0KlO(G zxi+1e@J8mELh{0si$7kahU`vkknUR+$V$F^f;9XID`zAjiilFjobLhs_OT_UX`X(x zg>BjA5ummT)f;of#6e%hAOZzW^4RdmiMNK-?K{+eQVM*1X^vyN_@Js`rANp(jk`7> z;(6|{$v*;k|LhL@psSD)QdC=;kjk!jE@gix=)U@Oa;F>+V^qEdwNi8uTz|Ef2dlF! zxr^T0u(+*4;rCAAWfAKwo_C7UnvSx#Gn1pQR#3k9UUbvP3Z;o}c>iUaRT|yc**@dO zoVptu0kRWo#fD87PV6KVFuUY~8*lN}r6$3>Q24#6HZ^VH_lW7AK3$-oxj??6-;CvT zfv`%yT2%7U1#*PS)d>48!4fk?frw-KP3tT@aCw37wtql4S(FK({MBfO2pV!J9Nh66 zUXzdEJUwz?>REc*;NfjaAH+DNewMWRxS_vOnfq(y_qo3cfMKv1C0n&tZ89=Lgw##) zu!ZAyQyB6lHHw0~-|4V9p8MO$DDrpY6SXj&IEN4kd0A^VE=*5Mz|a}1_{F2WkAS8; z;t#{kbEdesQmd4)>B>Wy2 zgfRm*=*eEPj8`aS&!KBFDX(n%^dbvxw0l7DS#lUfD6mxMx|H~F;_7Vy!y(wwsvaK& z7%ey4PfdI#p`-TQ8eEcJsmJN$Go@4#Be^cVTflLxMqHC6qKH|C+?Y$6$|(%<@`oC5 z*h_PU4DExut{SX&1?}V}&;KON`7%NN=Vs(jGB@9q`^H@!q@G$1bEA`6DC2`QpQ22^aIw05Jq zNUPc*w(dvcNY4TGYp9sqdn$BA3rL7_)bPi=noMS#Z+^0FdKTScsDDu6y z8Hq4dGI&WRg#}6u%HSk>vv6u@wu@!5ya7)7enx9gMca=q__^b^+?bvdg?Q@%r&i(d zPX_9P1WA=d@)}*1fRJx%arFyOdPF8iV$`Nh zct}?Fih_dRAHbbc-9}&J%mG81nr5V=Op^6d2(H9{3f9rw81O-|=+6h+Sl(=zVXS7x zVa3Kg&!>1~==M+D;=~`XcQ0WB(@b(+&$ky43fYX9mimY8pyMV(*5qSZI2H}%L}7jw zb$PVN+U9z8noY)->QDgEd+vP=`(e(G86h5_2{B8#?8X$O;(Joro_P#zzn>r^kIq zJFrrZNkInQ&?2NYy1`>SL7{-WERyE4i4?BZJ2#|Sz;rSTok!i2$s^j?3se@ZFWl%t z6$*`pTYB~D^#*h0Bw5bVN>MY0BheA({bI;iA+I&Yl^G_}*MdM&n*nw181#rTr?i5y zgQ8$-75;gW4dg6NZW5p*epefyUbqDCT>!|SYswFMElj$l3YU0#8fPn>>Z%##q}zE9 zTVGg+Q3h%yFD!)Vap(4TUs$btoV|K_dx3?bZOJC!lG<$hRP=T}ii>Nd-(7$B2KQCw zlD@l*TwJ^cq;)QT&;9rq&=A>%!BcxyQ?WQ$FFqz7HdM#y5&Hg?F=^bV6Wwv+kt-wLsPz8Thee0IhFG z>D|{itK0scf0iToLgI$BKV@MCifjt-s+5@2mURVf`g3shX#g3S((?Nw&tnU?>rx-2 z?k_C-jZ(7dOTWmXOHUV-bd7ekoGA3YP7(#pDzTG}9ocfeQus63zQyF(FePVquS}L0 z+15HyUF{27k;CE=WcSu>6=qI-?f$ql%j=epm}uMZ|3{al+&RcwjuOloI=3?Ord9K< zt3bw(8JXd-xTyP-TA?0-&M_ z>Pqj}azv4ldt(4Ssg3+s=yKB!7E;4)eJyeh zt~@^|UfKdl6Uz3q^;{LD``$@~YoZ&*DvT?z(b>%e?GCdhu?))&wjcJZ?IAR4>pl0q z^s3GJAw13R+FxO9%!<}dN!l2Y0W*|X?l;`S;@(iHZxgL1FeS}y^mXOq)+R5&Kd~AV zOR`P!We@bfg&#D+QXaG`tm3YFLDELMp%}c1A7&>It-Flr&Q$&mCqq*p@RJZ%Lp?mJ z;}ap#!F4zfjxVvCJXiS~Vjk51>xyn1UA9Y|TIgx{kE}iDjJ=xlOu5jBr%EZeuIUDm zJ$ZxuxG%sF=?TF#Rx^{+Uo39rGdyc%M3hTc1wMsW(x9I8&(zr(Y$wFCZxq=fJ zsJYwZKPI5~wFA}ef$qxaqrE9~T=YMO08El7EG7VUE-vVPK&w_^Q?KtFJ zJ!5i1h7?5>h9fKknj%f;MMr5;&tE=@9aI;_0rn&H4fgX45C;L^+4vnmMveU$M&vMCGBSNeGv$!FFqyxWE*UGdoikn4s#4Ve$H`Vd9UnQv=PnezzhY4R zSEEy|#xguSN0VbljA1*|I}Up3*>CXO(h!IBVxD8F8K;vmCurGYg58iwCx=1&F5N6( zVXVBWNDw^IMNGPe=Ma7&-{Xdidob8d@i*hJa1ZR-S+txqFHvV@!DUKrGi+Er-8E7) zCFQ2{e&RwqM#ZA3&9G>JOD82PQqym{@3YYi9Q7hAE}M&LQs#g9i+kO%!KhdTzG9-!qPUC03t|FKe?1e_7mR#tDfN(k`0P;G;4mpn5It}1 z-#~qnFNX>)OcH~GOV5(~4NF8XUa&c5^3PDj0!0M#vH%q&xNkfu6bhBJ1+BTaI4WA( zaDb{`TAAa-D1sCY_n07-rz(w4(Kk(`o?44a7IvnG@GCc2p8e_KT@e-YBa06%zDur6 zQY&ATce9C^`g`Qm=sAsS;sWO0Ei`dYw8egD)1vfhhjc=W1tL?o2hqG(a4MXT@02W` zX3;8cHqB2>?wyg%gfQwa2y>A>K#v0}of8+km0KGSQrk2eAe1GIjBL$)l70VzZBlVGFlV6C<9~FkHZ6M`| z$O!QF<&3|!F0MM58M;JOiAWHWR|B57ADWgHC3xcxdiT~?Ck&1Txp3%u`~MQm6TsPy z|D|)B!}Atv1Q$ud|XM6i<_rWqymhpfES5u*k4 zCZb{_50)#>%}kzX3U=75^+O*Gae-wqR@9!dJYvbNBM47NZC}|wIOw>2s^Sh#Mk|tUJXv!vpAin+!NrH5touDsH3f> z#AU$j_B$t0%1QA}5u2tH>+4+Oi9a3Dd^s!7SNXH5SJkxS26;)iP5&_ zz8l6ZM_IfTrjYkcGkii3Ngs#j^4%aq9vINh`Qc6BSq`*Z!_85h8(E-R$#A>+FmGcm zdQtZ0ivHpH=I`<8E=`0CV)|h;>sFU&f!T{XM+=p`Agt06bd?j1?nvw8$;`|}lVYa) zxLnbV{(<%mm}=5ttyEtk!y^QO-Db68>esNVs34$f?!A7UGB`-=-yf_)ZaA}rgfd)KT1 z2`Fl_w0v-hKRbxll{BhL=z`T&OhZ%~Y{@m*Q477yY+BfX(BFU?c-0gDhQlp9(VwL< z#ADx41Uq@|vl5EHaR!`zw|2cd97^Vd+I2=i{;1_Tn;R+N&75Tn^*1CCfv#%2j{Hr? zl1m>%eZpYUUv=qfPzfQNY=a~Sd8e8wN!CfC+dz49I|va)8fjCidCA5^7l$+HttBcN z(LGk5(evMWo&zMq$W1?9>;$-O$H^LiZGexrb0wjy{6vCfj*vtTd=ip39 z!{vHCNg4Qo(M?1BM&@5-pJW@4KFI$Rh*W&a(c@UGJ8iW%}PQSao=tGQp*#w0z!taLM%BAu9$Ax|yLTN6>E0uOn(+C+T7m4dQS zZen)d2j%-sC5wz(?M!`{hZ%U_DyJX?Yfy^-Eg4^eEc)L4Ah%dB3TZE zZ^AYhLsUXZDpdwTCl06k>sw;tC*U0I*Bsv}U!EQAwr`QCF7wyW-IBWCrn?$Ow3jbBRDuAXPHZg$&~7-EB~w2q0|>;(`R!nA`UYB^PPuYU0o zcfD^BSFMcu$*(;HheiA+_FzNX4d9LeL z<2=)Oo{Ppz#NB4r$Fj%Ig=rV+Zt;3e zKB_ny@{SyB3J64cJZ3G;%1BC`TYCq9^!+X&!4cCSGT6{6^Str_OfadW#a+-tJgsIG zusyid(D`KpYWjtSe^jI27{Bs6u6d1{OVoK*aLE6RFRb-bIqNRL$j#=+NpjIFY=xGdFy&$ zGFxPluaE@`>g<|oId=Qe@+vdUk{5(wFt^^Aq(9vUTfa|Yn{)l-Ryg0^XjiQzr~~rL zq!kmxv*ipk69(Lnq|oa>Hiev5Rh1`X);Ugm2=WYSJ&4O6D0B&_@u~44N&D@jZm5Rz zfrSgpR6IZ`zn|X+zrMajZS|)R(^@-f(w6Q)_sk8|hWLU>h#PSA2G=@G~>WIuSC8X}<7 ztHEvcNJMT|Ux5qSdY%%B4*YQikpJg4j@~$mCT`rcfZP+$C}WgVN-`a!8js>uyns$v ziyW;iqL4-qlMwEyCSRBZ5R>{MDTNV;#uF>C;jfb7>akw4F(CLT0A0$0l&-p!2(Q7l zV!mXE7Mae$%=>_4Jrof{n!S-Tnx%KeMHPgZRM4A(^+G!pWDus3g;L5;igGR|Eu>p2 z0w@XxX~~8_k%WXmRJT)2!81K=JP09Yv|;-jGVSQoc2jjTTmL0kQ$k`y%;jvMbiADU z@UI?_=$ZL|GR9a)ZM6Mq&{TC*?P>(F4Awo82yyJ7YQ_?xE_h@FN_hl{_!AIdb7^fbsh><_vM|Hu9omnO>|J@ z$kakpufsIEpCfHXN&9qjCYWc6B9U_-55xG@5@*uBMgFS0kq_z$yAaF==9$ zocrQV*{c>-7d%0PJH1AtMagoV!RP-~CpPZMB%H^iHa{=(ikNOH{y4*W? zKG}8J;3DvPv0fZW{Fp8LC6_^j=3cxWuX+%sz7T&j(;0MWa zLhD__HM0QG$6Q%11Y#2~0=p4_qc$PG?RHU_1c8ZpWC{kpEaD}uc-e18&U<8IIHdOl z!*Uw8pIeJYZCV}4cotV=QJT$_q6MV%IicXCy&5lJ9Zsn{=(@aX*JagSN2zBv-B}66KMv0|iL}Mrv8oNS=uzj(w{J2+x^a1`3+pC%9J3Vbdh-`&D z5J)jP+NT-r)0A3|rZ{&dZ!#;PSoQkhRrvhi;9&Ic9O<}BtLoLy%uQrI$KVYO{jqRd z%Xerrg8{gQR9p7#0RMh<@jgeX2Tiv4-Mwp%9SDZ3ia-D5G340+vYkHQLs1BF1&!=y z4PLxU?YA<5yhH|)%YtjdUb6&+1~o4WT9)K#O)mQ-LexbTH+_>4xS%V+&WCmP*OhoM zC9a91dCHX(`Y$P6)!nhGY>fgc*@+W$`jSok{nbr&<{QC9+s!H%j6j?0jVJ#R;rI{J zc>U0#e-y)~_C?hmSjS!j>CIG*y5-gp@ks1h+_4Hi$)lrqouadSJOM8%K@x5Xm++O* z`KlUei&pYqwr@D-rSf57oRW)LXYZadn-+YDBU$buxv!WxuT}|DphkD|)zM|`EAX`e@MBLe;HWi~o<*@@+$^*g>WO;HYM)h~ z%|jm`tT*J2hVx@DEJCXN?h)cIQG_;G80ZuT?_~rmN1SXF5w%96PC3-6H7-{&4TSTm z4wkR~hE5C$-4#C^7`?W=k@WbV>Ba_MxCEX+I+*B|gI&1OY_YrIeYWMKKMsxJKT zg(VsJQ9kB(E&(Sc*UjXmoLiBBqHN~YDHZtS>yNA1U6oL~HPvZehb$K<%*Sk}J z-y+)u1nIv6BZ+_wf+;ph4Q|GnbFw~e^mn#q@&==M+<4OwTrHv4=VKN*_j;Cr9!X2A z2*;1K>^9CvaT$us6{|xF_)9GST_1-%JSt3GYmg|*Y88GBbOf-qN<`-fF1u_QGIX|u zT~_mCeE#sAJ1pNLm5+DW?_@uP=il*L&VSYY8Gpgq8AuTw(Ex_7Fz>No{QEY|WM=j| zCaMWS9HP%OlYP$ncPYxAq(DvDaXfC}fXsmZ5+N39(GAlP%(X~^fU{=1RE6iB&7W!zMd)e5C6 zVD0&I?OU=eX&%rAz=9&Djzy>rQ(nqQ^$ z6GPZQ02GX))1~o0NFj$i9SN|vo7c!6eAnnv1!7j3^;$YCot(}Y3AqqNQ3 zsbrei3>h++*IX|BOiE`v&>cRhzF0uQILvjG0x^T-lq4&Vk`X0-Rg}EWs$%()Il+Xo zh-cyEhIcAv%NS~>cf|f_)jv|75E63q6QZsK-VQ$*{*gOnj!s&;bg2yknJc8C-i*5M zZV4ZY5kgJm0GgXp*&Z&6hDsZp6s?z)|SF;WyCXodm2D6EakOMzuAjk|z}q%QwraL=nKp?pO(jCr{siuK_xo9wzkoFB(3W5hZB z<{ENgzKqv8?SjW`s|vnf;)x^f>bKVqjC~wE@5c3)q<MOiZo7XSgi6( z7uNs%SHgIYZ^5`9U!krHD6Rd>%gOs}CfhNjpf1^1B#Gf$t$Zu~>yN>h!gPY>B1vAo zL(hsKNJ5}Bir`ITY=m5}0Ro`6LP3f|=78+vVA#rZQJ>#`U>o?1d23eoOZ&fV(SEaE zxxA_IMNL5Yn~SC`=6_ay1!vRGBTNEKgJIw+erS%`9ukt=JWxZ_FF#*>O1I~`wkw^H zK@oqIQ$r7}=7Q8JNNj#(BZ$Y8=6=7zB*`fml4yN?cs*d?4;vO9a*tj9x2LIT`GvOc z_UKMkpI=^2wAQsH_^VbW%Xg|QK>L!3;rUWtKq{H;^AD*)5nx1j6DJ!pbFojd5|}^= z#D@8p5dAPmN$fl34M|*N5x_`lxYk!1K)z@w6kpI>O?CM{S+I;!wq=@&)B}>wI8Cs# zO6Rjm^-lQ>4$O#l;w))C>&=9a+?>|Oh4CjBU~LyKOpm%;X=|BTF(~%@_zUFu@G2z2 zT`Oi!E4D36P+Rw%b-Ox)t;B)&x{Ag_7gsWAEW)^1n5tHCJ7S|P2WeaKwpS^KC1Ht{ zUd&#*{x`qp2ucjO6Ci30Hc56by(2*Z4IrjwLd$Vp)c$Gv;?$S!{_kZy#Bx+#T%V`v zRqIBz=%uy#9qJGcF3pFkwH`kRWo<_6s3zA3ZHdMxE^a+=MQr81v3=&d^j|a#nITIH zA~s?}gH}D?IK>uLiB%vhsP{OE_g_fHca6Tnl<{wOXJz1r^4dNvL4+F`D~pS30X3IB ze%SkYvZbi+brml6Sd!ibAi;z$%K&eXiZR!Mh{LFx+2PqmsiP7Sj2bXew~yH%qB8 zr&E_+`V4(v+@n%i53Skl9pxkRt~pW3`x~gTl3aB9NIqKOB%{BP(U4L?kw*Pd0Vj*| zCf^dB0+*VQz$ml%rDmeCol>aMkGp8#gpmg^7F(0`oAP&jSwNV(In^6dvH*91h@|!f$h!btYsnwx_-F^mdSE!p3v&+h~$H87X zlsKY0+2(kwgbaE`yt-d_J{fxwShQn!`>U06=R4M7&2=8K?*^7>;Kl*VcdKCYm2IBD z$>#*@d7HBq%wzyVK)k5;j}zP2TMZSHO<*NeMDG==jvi z_BnHiHY;zJT8V(nv&1D~TD6SM(#IPOHcg$jVhE@_uxb^NntI}eYpd|y$pZgK0^_?y zf#v@u#?Ch}8o~_hPwyT@b%{gZnbOHdU&&Fqo-HqaD|EBB5Gq!!M4j@o6fNj7d+-;~ zLkxJAD2@_-aaDRcvGknSQee%e|ET3b11Py8B^!#vmToR{&RYA}Uh#64OqeZ&JE}$; z5@mDPU`auQB>lSZ1NLMBN1a>3aAHSb*lMJr^r37?#9!Z|2YUh<%WGOq zI0n!sc6oF&{W1-%1SOdg7XLwmEYZ4vjWj0gVn0Lc_}K`{G*=+$58>JK5LkDjpy0Qd z9A?D+>3c#|)$u`?uE<-IE0%be(9|L$)?tJ|n;d9O#Dv*qYBjvLk z9I%kniY$n$Yx-9aD8}?~j2i`ttTwG{zY#T_q{)pQb!A_~6jEk8LQyZly+H}Cn_poe zG4Qb6Qd;&(>TPrVG|SET6tlviNre{Ad0&jh+@I)}M#r?{@i(I!V%0jzROfVyIQ+>47iHAd$vx8UGJYYf5BO|iqXC$*~0$9-$%W0)e(`$N&mLWT4y@KeK+y$;tWo(UjsQ+c;A6CBV{`1F#6&{BU1fhQIE;#r;n4ss(~n zX6KC%)vT@}rl+r;k!9Wn@?L5l^6tY3xWAWVX!_zFmSd`RtggPL6_1%8NOLx{WVgt4 zH5;SNJjMhySQw}y{dZ`12ZVNWBFLWrF7ydXXW#FYco%HiM1ZTMJGXPP;8ot%a|HVQ zp9L{A+f9j&lAxN8%GU(lz1ej9{VbeRt}x%0NTIaq=< z!x@c#YS#aE(uQpTB#^>>LE3ohCD|+)aY)0mvG}5Hzb!_d!IzJBW~Ny!k85K-Pl`bp z=0t>3fPl+iG$UpC!#M%pbi`)jy?zn4!ui>MBA=?%? z($KbryoN2=$F>om8N^K(-5~yJt{`UKueDlj?LT6N6?O1kIRrI5D^Lrh5NWNzZcNwX z%p1>Y#_4)-Xbsw(`#HzE*o8nes(Bac5wV9*0^-6!yh{?LAGPOR!On_ICVr3T_<$e% zo}N1OkBDxo6qAZrMpD!XE+SumyhN0z^?Tp5`lR~vmHGMM`jfkHc+L|}IhXC<05>}T z9^_L%yxVu?_Q*QH*pt4>;3x)U!h--3`w@^svIjR+iu92N;{yKga>Js@H2L`x;UsQ7 z6K#a1pvCysoESJ4n-0uU{=l3!+(kMd6zsUwp?oR%i4Lugn=s?Vhnnv8_)c`_={b!x zS(|t#Bj=me+~3OSl8=0{Z}0FezYdexKUf9gs%UX!lBg^(b-do@=u&&LD3;F1Bsfen)l5 zxir`pp{&6S9qr;=Nb_O*m?Y)K7za~9P!Rw){m2D1*It-v0J7n;#`3sV%oesr9KI6 zpRUDwk*!kWTezK0gzUEVsbrCC8baEDBb{AM5ZO8;_5G>->M_WnM>(e>8;ltEpAaK> z%(5cb!B)$K*N`Cuqmm_0iNSi;#osNR(>+&cVm;E{WxmISjyDITr33tE+#p%mM2D24 z(JpsQC7X9c6`|=&-#H`LZxUmOaY=ViT{-mq8EgA9)~pTtnHO1VFAFc#lS>Tb(yTSP zZn2OXgB6IkrV#uQ61*X@QS<1kP}@S9N4_}t&rSgo zHHo>|p!j-xn$ha77UiU08vNJm|BMq)jdQ*E_Y`$quSYN(E+ogafy&RS3oE7uh|Pu7 z!k3R=|0IUX|I+^`I6yr+yc^kx&Px1urSPg1Iv_L5T@I<-s+WT*NCJSRK+5M6!TC`@>Dc(`+k0Nt1`9Mf?F485WQSkH-; zT>lzjk{y9)|M!?f*pHJ*u!tEG=^+kE4_Ta2swc;Uumodll6-}!Hf)~n%5e=p{>tg4 zq{>=By>`@#bD)z&QzHI8lLc=YUMJ3cHJX;z#DM6Ie4pEuctv};E{|nv55l4pRm2p*umcFc;4!mT5TkOMUzrm5zxznIOf7H>%^eh2@<2*pDP`jC z797bJL$=`eRQ&LIW2(C{sJu>VuyVhk=1=!c6(Zp!ctc7`mIJKPay)3Uk0|-Ko?en~ zIRRK38>-SaOVAoe_#ukGb;l22* z_vN^3gH2?VkIFpsC8QX4jl`u*0c+D*dm57eW!JDvY@G8NA}$l@_psXinpUL?3_#aE}CE-DiPFV7pXsK;T1#b}4V%c(N=F(0R8NpXJwD()WND7i`|0CtnlEHm%qiw{79Vb64uD|&X@ z7_9+IuJ4n9V6^+j{Q7byc=QdNCpMw-)Il*i(f$JqF>=HqWXb=&g`;J2<(N~$%ls`j zS1Pg~eg%_{YUdROi*VjXJ>xLGNx~u;j}MvFXHEK6*I24|3#?S-k1o-s*|i`7%RC+w zy=_>!h-3+}XU2CLZC!?-|G6)%)m00=wAf;$_wvSeMYA*=#*bc{Z3>WTspUQJf{k1R zXSD`bHnGIwh0p2&7KR|QIrPP&)&`+)bBE=OP6*;PhP@shPQ-gRE{<5;KN|dKZ(gqO zurS^r>}_dqer|!WzWVKP6!V!|1rR;_BaPOL7Wf@a=~0zus1_ z?jzDExFOxXrg_MmWdBxmdHlTU?=5b0^=&=YdJ9M0gY~d|EPC&CXfDK~3&F{iANAO=Ex2anf0N;m4S>V1 z!|h`Z^G`2rQ(@D~jXibb-b`Q0aDO3|wTL5nG;F;mf8F(}XgGOLF50d1!567Hp61T% zNKa=Rv>n3jAl{;um0N!sI6W#q|KOotKEd5$#MI9i^N`|K!$S<~&`!b?kNOrDKYt;+IH>P#*$yDb(+J*K8>;L2BCTYV$ z3P$aAK0rSgT#UcgAZ*8l+^uLYsLOxYiKdpwg7HN~MJ32>Qs=?JC4XkE(13b=cuiDe z*=E zY+EHEFwCP2tzQ0xg_aJ&L9e?vFsib$Khmzr|LchbdMv7*3E!I9>eA$0{HNTd)+9SOP9 z4me?<6=I2Ru%br9HA9CwUk<7R56?7i6RBG)5ysiZ0hY^R3Dj%2?(@lPNzOPCN$*&KCrd)?alsFQEi9gRMQ z-xl7xwW%b(Z~^4vf=Lf3=ZkHUYqJ6~qUD)KE3SdUgnh4Bp4 zhDl7~SwYFXZFZ3exf<6SV+a@`%2HmVLfO!zn}zfTMqPC~k*ytI*1^Z$E|mWXvPW;f z9uT;!YIQ=1(Jp@@UYGrz?%Wx++lTx?pEG#6MrcfLeW3zGk!9MEYtBcB>Er7u778F! zHmuqdZM8P^Vtfwyzn)6FEH@?2c{v-wKR6$|l~kBlrYb|>ynZI@)q~7+7(iOF@cosL z91^0Eo#r!4x+JPW))Xf{SdcuK@vLQTon3(*$$g9F$m#W%d-~56B0_^E7i*{0#}vxF zaYmgp&%)?FZc(TS=`pd|A7`+=73tq! zXe-;}On&@zXY{IUMb3sx>M1tk(hD5s%q$P6ED$Ezri*r(zVb4a}5vtZyszD|B5WzrTO4(NNQe?)rxR+b;Rl(on0kM7!0 z@hMx5W5WJROBgipGk6QqQc{w%AL0H+Tybs2k`c+be^NZphzmyCZgY5hZeI7Xwh6O0 zw;f4qGPivg>tfY-Bzr?t!yez3!bD=cykZQMY@QRM?WH; zo>+b5?)aYp_{563q%@^L8Jh=1%aV3iZ6mojC3rjgMaOPuN!;@HvK{_abJTM7qjJ9L z^LsN{CqGUrka`6A-}G^e!4=WDF)YCC5mW)1B%zPj%^Pp`r~mA^<88ud-x8MZPcg&v zB3@8#pf8CmG|}`wwB#*gIjJ1DA4400l0}K&$fx+i`+|W2M{tkfy+ z@d`mX)swBqZ@LM)KV;Wepbia}i^9YPZvT+)nB35X>>HDp(~|F)%(Rwl$HXPK3p<3IZ#r!tp6WOQqy^p`{K)s?IA9i-Ib6D1 zW-%SK)kveEA^5hv7ebGSDl;{564npYyIU{qD-4qAF}`rIiiG@AD`hmv+&V2H75d)f z2^5mKd;>odE*-ulXg7glDfiX|V?Xhple}3k69$ zYmz0_Ti>~2&5fHCKrPS{2VB_2ro*wy-gc!XmoZJyY!dQE>x#p)gGPmM4e|rtO9t@xdmB5DO=00AmajwFxok#Zh&CaoGfSEL7^OqVP!QR_r0xNK>0lQ**S%!I zmz(_7*11G-9q=bK4}#@Geta^UQf(DOGD_(I9iuFQZ+Ea`&_k)ma|JmN^ytETLOCw` zZo5fKB5=;7F}$I6PyUX!d=35{ld0ZMXbgTG3t1oBR+!j$T59e zj%__2iV4#8POPVOMg9eY7{O94V8jS?jNq;lOP~i7lxM2KqtUSD{;a#qw1ng8Io$$? zc%yL}GWOC3xzhoMTEbl`Q&PebJpa#i|C|2MCC@bE_=PaU}78a zH9wEjK8IK(oAV;=_hO`!fZDdjKHaGm$@3{qYypuk=*AM4t(~8A$M;7(;QvwIeu zNtjzR1LuazteSLZ;fN=CZi)>bRcR;JA9h%V;fHi z3{UrzA)<)`sKzSU{7#8Y6r{vuWlJRNiC2;J`Ds>3COx>yFK>iL-&5?)-{(>FZzGD7!t)y-@1eih-z|M zR!_c|(|NTHn7`eu6Q!XUjx`G3|2(KDX%_XZL8ee-iY<&qsto{jAWs}{VLGAtQ1%T3TiE|p~)cSWChSc2hwf9-cfxg zGc3o^V1ksTNnRj_m)fT1@V6c7etC;M>gwhQ&sUy0U|GveW{5>pdW`(C3j~-ZIbb>n zPSa#uTDp<6>PgzSVD}Jo^U`SJb^(5tMlqpL;Lo*XR(S>~n`=8-&?!B0rY zh21!IB0C^1|DcHE0L(MR4!bWU?X2Su0bk)j36Z8iHkKj^wg4r`fCE5l1mCHqMKm3X zxYl!+_>OhIyw!V(>@mJ2KFwF+)`|9=lBh^33?Pm9)A@mzgHi$(lTg)V=8XJI4&w~M zza2<K*KK3DHEV#2W#Un4-}mqLGp4BFzHCM!;W)2(+^?K zbxoauzaIQ{`a$a#tT-d-j&RS~XhI#Og& zK>?H$eaLhu$_mlX<8j)+Gfx4-mBGL2PbjQoVoZr@29&@AVHL&HuQE;vUb74>+-)FIG*i~@{F-aVg7bBnEIxfNssXmd_4Gp;&dO^&NRv^3aI#Eg5WIE zzItp0T%>8q$t~ z4M=DcR9?rHB!-&#VQuR563Z))a27a%hYd~b;F|e%pEm>ZxFBZcakWg2PaSe1@75#p z^qmFgw{20ixSuD5${e&iYIj3@q0<|T&}G@_j@FwO(`K2rVkyyZ>+Q1*?k$G|_tSfl zLXLiJtBhOL1n1aAwp5)hAZfVd`|)wA;_d$OZGbUnvGWR@rU@`BUX;z@6N!N{iY*HUM5YI9)8UrB!PL{jm!oMxWY z(lz|U5sm(KPZ$K%v@DwMd(Xg+Dg1(rJ*W9360ZF(Dhxl$RhUq}l$ViNfY6tXQ6Pq! zcV*-#!l$D+{2uY%IUw8u{or|y(d{{R6irfGWr^^i3&ZOx=OzbnTvflxEk9T#?hy;2 zaUx^j83k|CED&}n8EJ7>%>d*Q1h3(`5?gQ zqHk#JW0TB{<(1QQial&p|%BPaWQy8mt+k5%(b0Z^kt3Z81Pv**q;SzV3#$QY4;t*VYWs;rwRK zwzb<2H(>T@^#I?iqsv@QLz|KVKC|9w;sdtN{1}fmojr)LFFNo{Apn%cvoCZn2Q5A=S#yfZ<9J9;ZdkPG(RGJ2sqX)~bWEu} z`T;-pgnO(*d_hQY^Wqcrvv-pDm&;xJ6AP$(EJ4!=dQ89EI**qTV{*Db%{bdb572L4 z_Au7YtS`@YnM|`=?O6~{2Jt87@7e$k70xKCauXL$r>2|s##hv~@GciM=@0r~-+ohl zeSFcrf_Wgh)_<^i=WMdxoSV^0OvDr78PE|>mg8(!9kcJ~WQ?jzIP?LZ7(kw&Cd2J` z54sUn+Gpvhf&=FI>%3opxPz>*EKGF&v$xy-4>Ma)$rM6jF?YkBe&y2XAgfu|{j>Td zs-K>c=8%zfx*sZJ@BVg(9c89RQC=GoSv2~IU)+!XLceif(Hql~_M^lbhST@U)^62^HY6 z!kMN@600&G%loX<&PjA)O6pe0Y|nl3hVxbsM5j*Wd8xm@t~UKgY3@I?sEK4Lr1@bv z&Q8LUbFoNn{x{cUGByF-rHI7X(5F0hd9xvW?rxCC`cDsg`)&K^#Y(}d`N76L)zo$* zV}9a&HS}HU+8n&!EWPCTo7WK@$1GCDnlD~N{g5D0j@cxZ;~Y-W>`>=oL1mid7~R$i zYIPUGDKig+gVg>uYPuwkmK?5cq_Ux&Oqz9_QT|k>$C8f!ms9=~V|CjPug4Pee;L)Z z4+UVNkqg-Yrz~DgT%!sk9V^Wfa!cEyQ;Rmv_95&}%Ai#g#!;)jGLBQ|{(4%0ggvtW9~%Ey20cle^zR zL1v9f5-K#6!gR<@tLxMIDg(>D%5Kh^1==_o_v*KYw#NrJjvjlAGc!&{w333qF7<3V z$r%L8)9B5+wpffT`{VTX0f#*o8@GHjDDZW8H6IQXE0P0Cb9v!w=5ev~+*)+ZcIZ+Q ze%woK!b8*qUndX-#j2BnR7y#*{yOWjG+4QPsh3{4TSn}IVN8kJWrc6#x$BCh+@A)InW1ybwB3|+=4@s> zq;{&5|Mg|1!P$c5;|#g8@7_I}t@8GZRrn&3B^$XnPC{(2b6T9QYdzXOJ|Hxd|65!_fCnKI`6~MFblKN=T&}@Qxale#UlOU<}dG(fpUc z`R-T2`eM8Nb<`QDI1HiEF3>0!-l$#R2k%U#fD5Ge^bZdu%} z(o)hk#tp2vJ;9Xdr?J79e82`xr0XftDmC6P!}g&pQl zs*>D0>ALlQ+_B$`YD%{j%KiFqCAFlDJtz3618X#dCa- z!$j&z-q+8I-UGZ)EF)Rf>LiMX6UjaWKm{}ERU8W$9Xg+MbW3gTU-I5Dx_~)y$Xyzc z8WIr#&$!O=R^LsfhsnZ^$e`>Z4iq3FkSs+0)bqgs&IaaCk{qj{Ed;Wmaloy^4^Lso{vGu@`X(|cXwc%0Z*AHf# z%8KWHjd39yZrUYab%OXZF)Sp7l__=d8)5NQ$TF?kn(%l-LU#s1+lC1O!%cNy<7>Vf z>oQt1yjMkew^Qs=B%sjw>9*-sL4;#rSpHzWSmJ!}Dvs-3ys*$18H-|Y)wwadG#uC* z&%`?~-_7+IEg631?Mo}?{Ql3|+Kw0h1d;L+TOHn}xLjWh9R91DJ*y;c3lfxMhHdyX ze8C@iGeIj5oWc=PJ6ybY43+fB%$=J=OEIGoOl51pzX=g&&=kKJFG3sO_F zOv@a~7MPyMsW@k!8(+z0X%+>C513Ew{OM!A^m1YH=dSk*dp0r)e=lJsyAR{yK3*r% zLXTiLPL*E~Z%eHU6Ol)q7jGjaC&LyPwb5XQ#OJjQ!IoqRYwsH80v0Fh=9EuR?jB2n zUFx}YD(%6%dzn_O;?$q(SVhrA9j|C}6$9iUF1-IB;_1_fJAaVJ5r?>s*!7p`& zlu%U_x{!!qNK&Q&zt#rF5Q#+$rq@mKK;tB2w+3sbt9^7oRiG6w*^aidn!(4^GXMba zVU|ZSwuK33laNxzL7 z^C@rPc-7sK3N1O+tLb@pxGVz2C3>~=BV(uLG2R|jtJMUAkbHPTCOpE|HA6=GD2tF3 zec@tO?kPED4UjC2*1)VM=^`BWGP&AH@BQcvl} zHW8j;8!S`aw0}-e7(SRKl36Jq_H=ZS$KnXGegqlYn)8wE);KKvyALsrtr<_N^%$La zjmA_bjkD;g$L9J>K9EXoA1?)?_}BPuJ`B;X(KUjMeTUIqEMJf9BKYyur{Pj;DC*29 z@eHBO>)m&it8sO}!w)j<3+h9VU!(P&O(+b3#7jryBHb>#mHSRYNYJwXa^qJoJjjZ7 zoS?d_+(t{6r9pYu{g3pIsJGR=jg3ROIk3joQ|)te(kL>vaCPo}KLi+p@JZ>ewBYVF zJIuaO40hQ9%KgvUaKOd+bJ^ZZ;HFQmC5=}>j=5K1WMe94M{&FGjQ4()YF6(NBT*yn zl}V44-K8Bt#x5E_-oN7*Os30l6+f+?+L9kWhHRZ1WUxb7p4+w=W*R@IU{XMfp$G@| zdx$78!WFuD*HCDhME^bN=GT-nBiD^P^Zs4qP?mxGi`xW^AATUOUISI$1TJUGMYrPe z>s$!L?EYB@&uz#?Wwgtduwg%wg_A+`u(t$FCCyq~bm3Zgh_?cs?}V;Ol0W;xm<3aL zF7*LJiA2(Pe)wEW!y}<>!STj;Om84+^qNB=f2MyJ5>FbCcGv_I88@!UQa^)XT#bwk zh7+>~fzf+EqDi}x6I^12EuhutV3ac7I;8bGH4|$PBfZ`f)HBRlK=#-gIzuP^o zlk0$}0HQ`H9&-gC$Tg$8jOTLjn8aN*0JU22;6Fl~LZArV_W67W zdd4J;oEBD#JRk7#K*hEC1eFpU_A<5~n{mn|f|1-fJ<$*0!1kp~&JwjQ&s+6GIr=#R z?QUsqZ3#FsA+%FsRH0pl6a&@%uxO`Bk-8bm6)7G1&_uq(8V72TOEUxgaqWv_WJ{+n z+$lmy-~q=3gK>R_#zbY_%rAo=mYoCTQFRAs7lC zH-OtZZr*E48$#^E_<~Bb-@b5>uzfCntNiD0qvzL}=e+eNZbk|lvnu7nDSTtb?0*3S zW;9zMe0#f&8SJecDXxK2oT>iI9L_j&_@}dqYOiZp9Rmnh*a$d#HV6D(p!0#xzBf$*c5@@M z`V2+v*559H!PJN9G1_&(KnGX5*%E0o0wFTrWlh&SRJ65ls0^e=XJA?(W&ssO#HUe6 z(zpTh43Vv*5h%USnD{xbcMN6crw@RjODP{^Ye%rkQvM-p|Ghz7eq$p-MyYgn<+r=R zL6;o5{&VM^L3$LgCH)V@2bVmRZOLqvM+tbHma;~y?C#$Zg6gw#7gPiVKdIP-NN^2)!{)U}(#_{~obweik&1I}p5lmJdhK8;E+-?fVzmn-UHVQW~8#y^Avw2kVeN1eYUU;Dm$T)Y^rxkwPIfRu(2h53A zq&GB1ErabP9O}#(+@%^)@#E9ta*M&Z;tu!LI^Fws52uX4U}P_HImP^l{gV-_Kjju~ zu0KpYSZW-^?8Wk%lQMPIYret^Kf}m2TZ*@1gliT;`fY~(RKtwO61k5$5~b9SjW>fR z;3zItBQ{2>LTn7R@f#(X^@!Cu0B@>G1gif_lg1H}R3nv5G}408`b?rioyO@l!#!!( zoC=Dki^UT&XCP={%ahfs4AvUNPm}>cXJ$gUrt{|`O;mzf^e-mlaUEk;J=)_=gac!q zXl+E1Nj)!8z{w+i=Be9t2n8NbCNmon>J<^HpYZF5x^C(#V7$^KS<|c`Dou3E)J1vB z81{e~3>YaS@ohU?&gPu$(@l^SppJ=vk(H40W1BJes^xuv9l5qWg?^bIZFIcZ%;u;~ z+GXx)z0ItR+U3XA=;Mm*OY75G{Z}ojSg^dZGkkCA8A3HZC#FEsO5>%PI-MlPQ}==z zxt15XnP>~*i`V%aox2w+uLZ@yDZg6sM~+FCp{}XliBqC*gtcL648l9nW<9S0ROBz> z+WGPLAOUFQDGJaHn>z)x5nOUNFKfSyN_(OwcNXCz6Ay#*G+>=hf_Uv#7rnS}$V>!G z!hi2z2t_a&JoykEt>EsY8)=9YJ04r*$Jezq&-_#Y&YVE42Iyi6C^?%8(AgVs zkjzobKK7@^2FHB(wx(Ukf#PyLKAiKi0_XyWqKr;ZE|SEcZhQzIFtB4sWOQ1Bax zB8kKZGjYYu&}OJ&TjsHWIX~B1RR{`8A+RV%|4KmL6P=j(jMoMi1&2vTyOk`~v z3ehwKwyD3%HZM z+O?Qw)LM_rqt+|zZFLKm^fkYs_(y7QZag`&WX?-IrcFs|#wLB5`C27J5kv)qF(vMd zqHAnSw~l()t#3NJ^&9c4O^IrG0 zYbC2Ss!?fE+J;nAyqa>1p|@MnR>}so#;n*t3phuH&QszJNT#)gn4Er`BTXabZdG(K z?Rfhh-WF}7mm>gRL3-`FgC2+1`Xs++#DzSI+=K>Ak863S^cUx8FbS*T0_1{MMZyEo z!q!nZNAOg?7+!sWHp)RYq*g?-k03uuWy4)H^sa1B5SU-wv6`pV0+lo=5lO7sJ5q4u#@nd^JsL=61A#!r(2wG7@*; zN>xBO+&u@E-T1M9cMeHafwak4mrD-4@b>31Pppi>ms$AE&i$J`ote3l3N)8u02aKVQlWpz5m24|ionZHcdQqTIcU z_{$@;D(ZwL(Ee267Ll2$(v9QP#Psi-e4bH!5owsJj^HC^j}DuZek0$SI>?n8TRKo( zpPD=#$(%4_5bqulXqh51tdXZOaMv?C zX8N8>&pVzWKfws|l@*-VPcssT*duboOd1Se%4LFEIpP=Imp7KiC&QUsFc`IF6K8?1 zd3$`?hKQQN)hOeZe^UA@lKp#;l;??$xd<$Yy2VN$`H=ld+kXUDg|Ht0U=eu{%i-XhS4->^n@|YhTJqlb>lq{Pa;Z6doHxZ`3CzIo? zCL%cdTx5D5qgSQb)a)i6{_V>qYgGYt5!+ar>Nz;)uOLHq!k?uY%d+#oBf;S9?i{S~ z{~cFe9NKc95CuP5vAHKr z5gxb4Yfy~otqn%D3#03fYfrH|Z{e_%Vds*SH+A!qMRRk?^Jy|CTJrcFVnynDVC z?p4tD7x}C*e2A^_pX=j@R(g#;9t52{`%-yb9;^ooAUCV6J8u=gz%Kp4zo26 z_2xLGUuU>nSyyQWojYmIxNhgIO0rlm*T@e)0q92gY5ZIp1JE2q;A=>( ztvoXmdYr%=4y%@yAe-xTpAj~9)B?p}@(>xB@Bk@0^Mv-ygC;`%Mj{e3 zgFwn)kQ)P!oStF9=3)0x#fn-Ilq@typpw>n1e^ZPObNIWivROkGb#RmSn-dt;7ZsR zdqQm-)$fKJW$eJuoG6_Am`mK5xRM=pky6xs8&ucKHiCh()``W?eyUIV{MDiH^Zo}H zC-DtpV-{bMB;lWiD81V1d8&_jW%;3NsP^nlPsaYfXf>!tkP0NE41*6sMS>dn zw;-S$1Zj~P0z&jG_~#{~-s>{*;W)kc#Jcm&gShoYp@+QYxIn_Y{e&U@;Vp02H|FHH z(B5c`T(MAc#|Tz4YYz}5(#}qZtlc%8Qzut@$n)Ve#B<_T=9p8-uVmac3Fh*CPx@x@ zvZP;M8#7tgq8CXsj);1dPXl-tnQA^;q^h=EH@_P9Lh5&br}5V3s&lRjdMA*{%&Hfv zw16txr$*V&&4*7={|~l<<&-#NO;UwG`{pYJcLU0ypvfN$Ghjtmm--aaht-AE>eI^l3E4xfb+q5<)eELgu3FVbe+s^< z7ff#4SVxZuAx$&szhXI0;Xn*>n*{rMTvn63 z{_R`m_dm(b_94KMcyfU&Ta=#{$j{}`+MUm{RkIA% zHeiHZ{xr7W!@+k@lD;&`|u;k>?;tTN3+l=FgfG7chu_nr$ z%|7^!W$piu3vlnWAKcYbsuR}zw5r_=w$q06Me9?-U>Yx#0S@n4QG8f9s(EAoAIg9K zVL}-hxUR?*l{B5FsODKugr7}p4GNa$rR0aK{pItYZW6HR_ovN*jKj&NIU*+TV*N7z z&gz5rBE2t8?#MRAH2$>OZU6trgX@$`9=9rJ*P~}2n>Ui1mfmMos;8H|&YTsL8~jT3 z)zMJJ298N=*{a}>i-U+vm)!#YonJXP=`AzeXY`efy$?bP@{dm(#u{MNNe{;5*bw8M zY|utq{+C$wHS(Ja>$QM2R=UN*dNLqzn!E*(sd``P>R$8L3syf9AcN((F%)d!cH#l& z+^j%ZrMRaEK8@;7y)=%MJ**z`)@W;%V@tsQ+^nJieW#=tMt@qV0l1@%`^WG1vkB=% zp+!*Cumdi&Wn#kA+U%s1t&;*v7IokM^jf(%KPAOn7yS_xe`IczJvlCwk4y6Nk-0eZjH!z%fR7M1;ZFnZThk%w}ls2XV2E}82Dzh05bDZ5G9k0NOPMh_n1SU=X?&xVV%Ymm5s8Uq5IGr_|2&)1taORjVXdA00`&z` z*Xr4^;wRH%(e91J;NZc-?X5K1HM50UCZK!Kg0OEmkWG491im-&GCAs39=y5zC%32V z<>Vc4DH3ns^S5mUf$nXKYZ^9?W?nf%O^7Dv$e)Ri$h$|%wz_NODBI?A1wNAKH@0vQ zdv=c;s~4|Tp9q-MPgc#vbM%VkrCli}-9L6WS5v&&FHPJl4tuvrh<51Ib4w8rB6xSQ*c}@Wb*2MV7FFwjr&717d2b;YLnSwy=`?Szx$(U8di%~&Tv0P$( z9+HFZRRRE<1}Np*N6JMjzuzqPl05j5-#3_ZxaB#}obOdrz4#PEk!EWSVhp1T>8d;E z19YJi7=QGe_n~j>r zE6Bjq_dYtiJi0_yoq|$^DEOC8x}JEX*f(P{q9#AOPcdYMAL*Fy!w|AyZlJa)LYG)4 z8>bLPAWE~g%*>}jP;xg2zq>D9oW}3!;%lB+7-6hZcIg05K(N07V}dMprtxtP#L(ae zs&BoUfMQt0RKpDozQtdbe2!dkpRmcSDJhrW${;G>h^6bR}>em zbI5dow@(dQEi*3k;}7%sWtw0yR5{oD#yV%x>0=HN$qQD1BiC(l%CwM=rjQLRgNGVa#dBtW5$%kC%MW>jvAvhk5hd> zr2Y;GZS{wT$w`HgGos8U*nG*S29(TJ4Yiy6nFGQ(kmWN}awOMG$@o@aVGJ44>+vAN zks&bXbyd)}gB@|2abiR`Yvs{rLGt%wP7E~Zys<0eh&oSj_+i#|sXNn}f^{M%u~`Lb zRIj>dK}HDYY+neCFd!tDwx12M@b>SPE==xi#*TnrueEJQ3a^y_ORgkiB%e%K! zynX%wa0TtYKLPFKOxyh~>yruq1uPXOkL zWa7(5X!7E*%*gg^U~S~aX_b#28Dcpi%(KQTMF1>{t}7drw?uHv+IZ~*c`O(5!`yZM z1YWp~8H@dW4t(3;ZBMc$%42N|)ZN8fs^k4FkN#1)3_UA(=BvfV=fEf(M1_il{$X+|n=yFZ6s^m&a+!ltZf@UW}WQx~KlwpDMSsKNv$)Q%9~V2u_cu|TWUBm;N* z*tRM|{p6(FC<)ev7}DV(;%^J#79LGCj0prH`T>sGI{llm=uU2z7r|<^#$^NFr9pJo zs3T`-KZz0MA)%6BusnglP=&3~w>?s+?&*JxPJRV;uvpu(Q}&>A;EsHC)(VD*F{zH9 zSjfRfw}->Oc^(1%uS1QSJ%h&Q6YOJCK;WV!yLI7f7mW89Qt3^|h{4FdBycVP*TW@) z1mPo5=ZoH`6bKQucqafX_?GKO{w2=VXkP|L?qN5R%%hD~qEi4&bZagwc5|x?_cB>K zR`pJ~lzjDodFjMWR)TrRlcvLaV@onr8LGUkJTcf|WtILAE72$rRlgbZ4d0zg`l9Qt z$55{a%^w@#;_J$EK5>i1xgY$EkB#o$Mf$#&UBvqPR-^At6*)-8um!(*Zhcy4+qHdF zTW*#U6fJ)&zbvA6^OH*N!gW!_%EG$d=#EGmj$le2S~>WzLr{<+y0Um3c&e%)xGqiIIjAm-KAB7r2H(KYFR5}|ZyJ!Meibns~$ z)ECGrVD92MR0pEN@-gE4YYIZRu3t?^AV1&-1K(=NZz_))hd$%5W%%kF(8x(;U37jEe7sn)MMY}8uY2ptLP2*Ucq-0GSghhQG_9)zd znH%3nrh*~`Ye)+ywJ~BE={n#a3&8;)mbhV1RhWCFV{c_IN_A~sIUzXD>$K8z;8|vy zPTlYldq$iiCuOReYyBD&)EkPn7u9(s3-<-QdV8uiKjFNG#+x6lOc4 zQ5UVJs*NqnKK6YbSVgjVu0DbO-UOv5K7_FIg1a6seoNGz=dW*~-LcoeHTR@6>U(kY z`+|)r;Xd-|?@fai-=sq}l~~5-A+7P&vL{ZD8T*bWyYqhM=i79j5Zlaj-^7|FdA<^= zY>;sL?m6U-e3H7Ou&BAVA+@Swi2%q-#)sbPhxlR`+=ePpta7G1}8?0^5hxx|tm z!Crcg5GP{z{g)BboE+l#jZeI)zlE{CF?0NHFdpH?0W81ZpANZe@?!QrSr@R(>_s|JTm2g{y%{98OP7!WNeQeK9Sq%S$61%+2VTC1o`1 zZaR1nAC}9@eDwOGN5!(mmJVA$eqGG(<z|$MtB&oOYc5+yEp*EZ!Ni-Eu~x3MXovv1 zi>n~tComyu&SGtyFm;1rljf4Y0K6U7lPKE044W))%WW!lOU8+!Gd`30uSm6ljJQ6^w!!3|gezpYANANc%067Fs}{J2O^V(k20;NYU#t2x^~Rwdq>zs6xmF zPt6r(ZB6Y>%Y((|&)w;ZQ*y-#TTzelzV^{aYBX$~cZ))fe8UKe^V$kgFz-{GU8X>h zJLJ2L_4u<@ZiS(Z*oJsx76SxFC-Jvp$0=`+?5wJN6%@e5RTS?JNHI zllUk(V8^6z=R>7JacYtL&{~!_3oOZBOG2mOYr(5q)l^s%mTUl$DwASDtYzRnK-x*? z2zfP5bGw-VGGHYMR+eE@p_Sg!ck6cN=9z;-Kjkd>$qyvNa;Jnu6#f$Z-X|PP*i`T` z$I?y&45!ExmFE-bWQ>C~J zh^Xg=3;RiJseYR!d%WW%?Z?h8WLm_}^4|UY?@OHGsQwT`jdcw_PkL@@zZXHGm+@JW z{U`gdv2o+sL{k=kup5_}JNwN6+;jP3Hu~K=;pAgxmo5{1*4&A&{?;zN)V({+Z!@g9 z5WB2dn`-x{IsOVWkE=nni61-F97yS7Z!W0jvrh;m}84+tgRG1Uz25}qqqF?UI<>u_UE@<^m(Yf<3Y`=H?EYW_9H4;eMn-*F` zWzS`yS(Dry4s&o_W~uf%KF+(PN*iTI9;xg}%V;56{6<-(t*z3gEYS_UIV^t=deS~jK_=s2a2#x|CFXQN1G{zrD~;c%u)#2HhD z)&L>Ni4_PV_Mj=2`Cq+R!#*)Cq?@nGDh6-#PIoB-kLn_{$>shR$r-xNebbGH?P)8#JkLs*(yCl>b!{h$Z)W9n`zW9CT3)#^p`j-S< zi482!e0`Qf*FlDLO=H3DU0zL#WM1TjUD5Fq9mF42@J7xw=kq2kjNkWfBD8eW z&43kF(C2IWvR%hMyK1CapRej`_6P+%Jlh*)g693FzmjmhBJJ|O+J&Eu5ZeCI_=fk2 zRrZlGfI_iBKiUsl_HXMlG9g$<+bSiha z_UYvL;G{(5&QrY)RhxV;m*9%_Fb{i=trr-rj_3YsK8*?yJ$ex2k$GT-d&n=RNX%;l zK+qU#8fe@?+Pa`@Lk|$}XiULznoERP40dnrD8yw%#{Vr3lyV>2PI71jG|F$Dg3ub{ z(QzqLDvz4QfA0qj(45I!MX2uRltHQp&5Oo?g~dLWphlq;yqRkty0|Dr+UE!YqJdBZ zq4OjjQdjwH#!V7VZNc450UPa;8T!aqUnF--e|lW!m$YUB!>-~ak6iNqzLRY>bT51J6|ZN!leFG0SWWh*wdIPrVP?d$4e^ezo@=JZPegDXr8j5$A;ZP4H^G~3pAm9Tg5rcvAtTRIwgAmVZ-DBb z=6s%FF;<^;HMoRv2fb8eCn%cEd0PaR_uC#WDTL{C6K)~Kzp+M;TL=Oj;+q*yv#irv zSB_}@(f3=^4yx%0>msRLe$SH=XfK{ts}w#z$Q9j0_}cxqXYxOBqP8d4c4ULwpseX>wu%R>{K#Y@X)W*$_i%aZU4<-sSrFS7jrGw75 z{6*Eg5K3aR=_38I{-3_y?wLQoY$Kzf`(zZi9KYv`+PbY2K7U{G4Hp*W8ywYL?|)3s z8_I$O1#Z>5aY!yxv?s z*b;6~e#{q)rG5>k$|XM-K3JJK0%d19ajp!D$XDmburV~o^QWG&vadi#84HnL@L~V0 zm@Fo^X-+H`4%T|bCM5gI5fJx|q7)^gBl-Tdoq2+Y4mo_du>`nZ-hTz~sg{WVbIY{T zxR-3J-rMGfs>fvbtsipSXwfTJhoIUQIUwO@UrPlK#AI>-%T6&|&4U31gT^6-^(e=Y?W~n3Cg%AJE zV%?z5bU)<{bm+w^As+CJkI?9Pi!7Izxy4BN@Fq8FB8R zk?g;=K{|AVvt=v|yF2F0HHP!*?bf{#{J1Ymk3Xn#RXx3CVIkNr{z_S5;69DEL?+uR zMo5EUeeBz3D%cR9*%#wjLB=aR!{__Z_DEAeS+`H4E&knN0Gx;9T{`h`-&~FZvn3tA zYu&}NRzjJ1L>Ptt&T!Oq%b;?&fM>jWh2N<9nJ$ejf8CU{+Ihv|d}uF+69(96X5Y$r z=0PoGd-Htp{I2B`p;^I$0lr!(QD&&Sb#jo;Fu~2vW1^yH(CmavhMDj1+{zQ`9CL@B zF=>OL88Vz>P9Qv$t1ozNhsWa+4O*C;hUGef&Z+kK8_ed$O7en^rK3|l8a}$fuTxV~ z+^r)U=C>Qk?U1jU4;J54`#E=R9XG~l+XG&Kb|U}!N#wuG|B$Wuyhd4L>3%Y6?yCtY zn}0xaA0egfq5E>`Qw{`=w@f%6)ED^1#x`72P2&@fWyLmJ%-0mF)dVxnW8GRyBo-Z2 zw&N{w+VxQLd1nEao^6<70Z76^f#5T2b$0DKh$n0Ku%TwnKoO7rE~AW)8TigM6^2_q z_k}m<5jBR8hn58)X##)OT9VRB673So(*A^FcTn8ikJV50;jU(^bWJd1*pE|K)%>A^2uP1m#gB3`Am`y_g6{clUFPJYI2w zo^VGKJ~_!1C#}j!@tD5&T16Exy0$uyBXrBeydnlHG4~~1j{%PiSE)#@fU7Hni&z&n z679qn!t19-(peW$4X{RDLA;Zfb`J{H#|UC1iiQ)^3(^Zwgct08i*tVw8QA;ZmhZUY z)fOb#Lsrk>%?KveB|djgprsQnp&okr*@x>L?aJD$_^^Jwkac*+Pu>sL4UpnXCH{QY zOj8;6h`N80PODtDQdAHc!TtQ`7G|_!NS295e4Z}(^y3fOh@f=FGH5`|<*hxuhhodf zUJ+T;s+r{U>f{-Bp*RUq8xrP2vzAX1j^Sy5*-}^B%W-2VLPF~fz zlk)t~p^oFH0mma{%+f~UBYGk<$>P=Bmw3QZkN zMH?*K%4}ymbigQzv)MVxa$(l2-riZWR;9&{ziYUz*Pn-r;D1=&US_Rrx;khbWYk5u z=qQ?M^l|N9#ZY&x79GgZF@iim3;00#K|z7)boZ4ZA_M)Ikf|BmqJ(-df4Q^0m|UMw zB+YAeWBdb+a!R(s)gmBm0dx9H)=x21jNHyW^nkPR`MOQ663Qizdv}{>`HAL@3_dW@Odkp+i2ZL6tIvMHJIAb0foWH#J3UiMD`6bB&^Wc|?(AE9M7!0G9M zjdA+}*^5gU%{CP;<(q}rA%X5oh7cf4(I7~S99xyotzZS-pC!xcpWRPju_P74QqIIm zA4NpDNtY_aG$X~M`9r+dUIC6P24JIxG0r}^{h5VbXV*BUzDcciX;d69vQ||H@HhgG zDt_#c-Ri~#R%R-E%~4Y= zR*ez`Hxj7+x~M88omfbt#VOx$4XQ;oBFlaz8;CheGzBEqE4U2*3DmxvwEAzHYLm-c zru1aUPgz=%_LxPa^LmNik=_z^QMtTcXJMa?!s=WYy{TBVI$?E7yV^kGOM-am>y-3= zbAXkn@tNLLG2BLYfv74NR28#Pcy+N#QLbLloL5SpBtn7WyYApEdwm?NU zdJGftULt}cOV75CT>DL`7>Lz6igW@v@|(2ACT@D*Mr{*!)J8xG7HN$+^KB==gRmLt zgD3IU7y3_r#ts;tj#v7I%OA6H={%lpS&G(*`H_5iMKmQHauB_U9SBVp>I8v%r~Aeh zh}XQAA55!q&gRcUdK*HXxFd(0oif+mE9`4;euO@*I_01$uiiZBshRl(f?k)j+Kr+~ zeLPNiadw#4`3i~R$8K$#IxU0pdxE=_zE$Ll9(f6ly58(NIeb%yaS5fuy}^~JXHZ^x z%J4L8T~Hv}OKh(Py}oDc&;3!bkQ03Q)d;XGnmvDhV9|^tPN~xgp8nnZ5bcWoGVyj3 z`@e1Yr|wd>JNz{e4rQ9o<)J}H^1;BMcuQQw^dHa0kG7dvgKjBf^{iMBw{ByQCjnmW zxG?n%q~JzusVjZP;278?^IrJdgIy}RO{&Lu6;73$nnLnc2f3Zf8lnBdf&WAtGsO#q zWud)BI^W(59XxQ%iae$xAST`6d0Ci96mP%DhG_dcaoo0_cQxcl*c7Dy&5$+D%P-Baw|R|3M?i4_nTrp-(81)h>&&p9Ux}K2XhqsW#aLnEV+aC6dr)>6{aur|zWho0Etq>MC%XG;*1HV{*RARXoG-E1m-1 z_q{M+PT70LoXprrWzo5?1DU%f=_$UeE`D~~7LqSTe{Y#nG}Z$?RM*7L_8c)klBi%mVWgrac3^Dro~iR;cu|`VyWP{* z!It14FPt&?KRu#Htq_ewTlP6iF6dlKw>CYC8r<3+0fpikttL)pil3sPMp3mSi34;eAy5luK0W(b; zy!UUw(x5JX{i;;88qdzzxxM9`^E4Crw~ZhIY!05xy~dtLvg;$3b8up-Bi(8pf%fVw zvFzGIbZIDUYfYLx4TXZ0O1m_V-PV*;?2{N0yJQpZ9k_Hh&r!$*RD(7*7b<0+PWhK zu}IjAkTXfL?ThlDjtI_s%R0An3BFtg45tP>K>RB_@Hk{lt>~=cEy{IIOe-E+9DvVk z%cgtt18OO4G#bz?p&07s_#?aJ;7IGIviM2Cn)IZa`h|H}n-{N>fCf@@xAJULr_5e0 zw7m1&%*K$q_O|M|=TfsDK9a#jixep|L!e2MWf<6`4y^gvIwW?{dW)p_sf|B>3JhFU z)!rxAl$r2a%;Hxcuhf?ZlM+YUS_1-*)d54hUBKCC;Kkkz{Mw7bU_*Potz-d~n@vj! zxyN_iN@!7Y%R@?;pDQ0Z-J~l&(3GzeL^*!!LNh^<7BJ%0x1-TMV$P!R? zNTnij$eG2SIl15K(=+BWz|m;E>z%n@RLZB#exM-oX*8+e=U6hQ%s=>H&yxV7jK?5@ zOQ~lzD3>{1p_4U~dD9LYnn4j4qZ{Wx-N9u&dkd^Oa1TLYCPtHY%M;p%4CKDGj_+k- zl5PhW8QGI22blf7wWKYfyBsA0oI3}!t|7HqleO@lL9U$S`ugQQi}3sFsSDTeEghw= z&j8qQk=HS=SH?^rbu%WRXOXxW>AO`#b#-?3HL-_QRS}6n3{n5qu%d=F{0CZ6&b*s_ z;5}Ja*ubxK%a!JC(o5M4U8zl}?_M>uhHRg+Eb_{*swUCur#^Ib*pkHFoYbZ>>HS{+ zPgah#1bYw4s2^IaB2fQFegT$4dn5QuS!p&?y5HRbqlTi;OkLZ@%S9ngL;eIQ9TEAn zO-0N=+U>S;WaWXz*1`hIAVlvDwbx?FoObK7tL+}MmYhwi2wSs2@H3}+&-qI z{)i9yGUB7Yf79Y)9jEPvT=VxQPA6@pB9 z&)0ua95(C~PHYqVML=;hs>o z0|Ub>`6~}+Xt*HQHGJOU`d@D>2j!=0{z${zdBb}KiRXDI=_y@oZ#IjS!c(FriAhBx zlacV>1aEK9f|O5IhQPm#aVQcCe+m?e>JeqgkLdla-F&_8tsUiRhN&?iA?n%+>T&6S ze@|gL@QEW!=QtwK9S_3Bj4-1}Dl&;a2k!^A+h-9@r`75SB#DVRkrjz$ed)?8nA%G| zx{&QB{E~9f=-1oxdL$ zwZ~zqB*yvU-`6R=+PokB&N`TkYf7@URe!&UYnRRw4TO*$sjN}c!RcNO6jWBH=yDGR#wNuyLN(X*@RF@du4wx7R5-*bHKf&;WqF2P z%5a1y!KDwV5Tr-b-3)sJlBs2-o$U%u_;a(~k%vQ=;Jzy6{L2R=-RR@+Sb z@TtBJx$pGP-qovJ;7mh)z#Y%Z@iU`M1qB5(Mg6(rv`o$f`@@S;6!ds6y^Fj}C)9+D zizeSZIDBJU7!!?=G9^v$BhJSJBh;)#w*2X@>&I`Nzx|cO3>o;ih@@qmK zTc1KUA>fVvQ|5_KR&KV6wZoq9oE@o*u&0U`WKZy@MLRNEg*9@mp?9dm8#7Od3;m1_ z35^0$JWd;NEZVa!7QHU!ofb#FO^R{aF1H?Dy`sE6(~YytR_+lJ|2QK(W~3tzS+CO4 z*8%Ote^Hw>!Ds&C7+f6Dx&@uTZf*T0oF`Oyg&8qN@2v=^B;AV3B9zC@WlsS{MqRD! zpXU)>XY|)kYRKE=FbNRN(R!2TX=hW=)h)Y61wM;>x2zIZUz-yAp>Ma>LNS;a$-6VM zrO}OK@9*9X!cQI>cdg=aIV}m*kcf^2Qf%Fkh#>mtVC5-~tZw&P2|nw8q(Tb6Fm#U# zx&2F>3k*Tm|0qjE);}nOL+vrr9LL!@c2~0D@$5t|Yg9|jx(XMWa^-8zbNL~%_^ysk zO(O;RjFO<{fkuFoEH zTgO4eze~HAxvy4*#{RAbE?avP-gz){W&|D#` zMvlmqym(i|EtTKRSaJ8o5W7u0R<<0?{1NjbNTWthDac>p^ciey>+;wLy#yL$p*FkM_^X6XNHUyM*9l+bHNB5d}%k9+Z{8J-m zIxC{Bx=E!@VEB)X{@|`U^5s&%dTZE{&V^9syCQW0x4fprJM&^cVuZPy>>8E^X*c6Q zwGC^c#(8kH`Fb9*KKt0Lron|E@Z8|kN*s7NVE?sy-cI)Rj~^C$0j%qzx?uikQDd<8 zEqZyyiC{05DG|s*pb_6QF{)s!u1)DJTzJK)3_IDH`Eu!X6}@JL z52pp>h*mGqhFEZ)Xi|ZTEGoy`1?RZ^t^T5%+sf@}rAi<3dBKWiXI_|x`?T&MIQEOb zr*!2_+nrF>*wh8Iw0fO;xXTIU61t^pyc)yK6DUrr3t>X!QNVVbW6~4Z zUS!zBI{&@Ln5LZU`su=J6?6bIs1g$wuC;h)p5D{EgWy(UAOJ!wB zbYPDgqgv5RK}omz*Rv#+DaS&`VURE5^^jMhWX7;@7V+@w(t|*UhLnVoEiM3V9YG6p zt66){?l5hBfe)}?#MjISn@C@on!~W!aSV(9`?boesxfY4VSij>iRWTlY48gRPGYubp$q54?p<`tcNImAw1Q`KK;USd2HLv0rIT~aX^JHw< zIG)23jXP<{v|c=udEgr_C-CC-G9IQtq55Hl;2WN&r76yVE*-CKXO`j3u{_+;?$W)C zDfwPGLQh-4Km}nSBjxOz?#w7SG_OU955&~K40V!xl#k}034bi{%{$H*=lDH;xj~ov z0zxVUcPL7;o@d0mQ&IdIPxN_fPKf`#iQuie-+o0p!RL2eOH!J7y&>tn3BEdcvg%Af zxO>2wn?!9y{vWK)z6LDdqQSKTq}FZrObOpdhx>^-L^<8Rbm5$3gW%lku)M@PDtbrk zPR6gak>vq=WcDQxY#BJdGjPQeFJ7;9NmM=vKJrgu(g>t)4Oz9dl|>yb8<(aJ=YyVP z3t_3{AA>PBZ2dfcNg&DpJY+d=(&xcgh}0u)TCM;WyML(K;@|JOc$e)T(P`Ujw(RT$ zFR$o+Sh2ouDl)#9%#ypR-{B^H^+0&iz(70O_koSGV!{MI%*U99BQeqQ16G55 zF2X~(xq6!#Quy-vQk)-|QI~R-Lx4RZVu{!`CvN_H0PC6ibM9`z*cfBW09=hcYY53R z@$2jt(DsGK5Ib-7$Pv4ovp-|l(9z@Fw~9OtxL*Ww(kN|NMej2RMPV4E4bLh2dB(8b zZ>F3zo&v4V6l=!*1jnCXxXF8f)TCOrGfiV7(FXQ!TT`wmdDTw$mqFDLyVPy00V-NN&DfDedBB|Ar7G!M@X2^Eh zEcSe>47XIHzV_yleMt!crR8CRqk+Ygkb>!GGg~JP(aD}Iy}8-1K0rbgk?tt+-V+8p zGpZ$W38a1m)&|za=4fgd8tJOMv&(tdUmzyM0*#WLIL==j5fK4+!)tlCG_4~iw#!VB z#1Yrc4q7+)?uS7~cBF%~pp-(q+IxiOr`8|d6#@TrphXR2mEJ@v##v;_b!RKrjLcJ1 zA73s_Lo?f6Ho{gL3&N7$iQ`xUNc zpL74uiKs;-)Euj1-=YlnIBUVWA0~bF45_60!^v3l&EEl(BfPPluA2Qtljtxrl2$T! zW*&4|u5)@_lCKI5$?Xk`c^D|TXAZi3x&IcG)Ep6*J{J}TVHCKSv~lvu<=H!t-Sf|> z!m*o{Zqwnxv01B-(krj0(~a}%%=e^+fn|Ke;>(y8!$Ul{U{3{OpB$nBjQ>5%A&ursEsI3FUZke zbgL6b%PX5s&3IpC?u&iG%V)fBsK~_)xLgMiWO^X*UERfrJy13RQ=j^NPjY4oKrIwc z?)=>iHY8O|Ch9rqL?ES`{AvyI@)73HstqHbF@H-#7?`qOn364gxf`|A_LcNXIg@~kztoYImPHf zkw2AsQakB52uTjT6^W`Rc&Dd7B!!1*oP??CJgtXZf`>h!=gB(u+O(>3`k@R-A%ox4Nyuys1fqx$-lfci0@`g$@_>FFbXL1@z zcrSE?;ZYy{BnuWxw+!@Q`$0p*K((hac+jxOfZ++q zcFJo{&L5j4q9uW_%82O~bJ&Jy^l}XC*KmhV;Ld2{x_=5RbT6il17*mw$c#IO-tf=2 zcZKoJ{d<7|4s>{>dwsvX|EBa>-Q(eI^a2h(oPKP2M_keF_{z7}LO4_%=>MkFFm5{d z+GlMnt5QeK9(U`#%|ona>(7@4F(kzoe`}eHIt%nw!-w1y+>o^~u5x?Gm-h-iF%XKL zZD>BDxJZ=CQZi=Omu|HIUWC`9y4c|RQqJ*Jd95`=$8s%L{i{VJ(kj}8u+GPGb}Pyq zl_9C=Neznj%{y@Dy9;}DGpA3RxRusysKDGs3%5VKdGG0-h0S!=0%E-FyYUF=+XjAy zIkhV_5j>EE4IVkevEffV#?9lfo7;RPsT)}#<^_}^FpaMO5&LAH7sgULp(m(L z948ar$vD}d5%asZSr!~q%JWtK-Jm4uB|zFCA@?13K$FvGuo=d>;K+T#wGq(78pAia zLvjMQcy?t5S@rbez?#y_(wD?nXMFe*1=ES^BCmT;zCRUTAHO7b%9=pbIr|6+Fj{r`_bTP#4Mgk<#;u*$ytTX6H4D zr_8IEa?mE+=A|#-CtKcLtq$X6H3ht>agDm~ZfxWxm7I_0nOUXXnk~bEO6`8pI4=`Nd5)13P4x z5I{s?i)mRTCeb1|16{LgXVhAe@_eq26V^59xN8JF8gB^J{IzLd#}hs#3~{~F32(+& zUXc>>Gc`qYFqt5-Tlb)yP+;O3Z=|j?WYX+#g!+p0OeSKE&*zSu(+E6%e)AMPoh3qz zjj>r)%^fi1@&$;WU<;ple5HtGvuJXDY1ADsE+W2IABk8t{&Q+F>#U|3*IlTGWaqgM zyDF2J?I*{Bxg}g#e*I#>kMleF(=PN1uQh3jt5diT+e@b-WSC}5Le|hth7@G4DRzGo zMdiz3QIu*(A0*O((WWFz)|W^2@Q5m0afJ&ad9JyU;d}};MvZ%;4tIl>1HuLM*QPgb z4uXP|wqBW>v>7 z1$PLGmoEzow<#z;N)2(zTBe7zHQrOynNZM20#AjZyFpppxm018x9nqRz0RxXl0NB zRW(b7$hErON3*f5o&$B1lO3!auKQkT1a;mszRR1&Nnmpo>p!uST$-l+31GYUI_OPSpA)*br{1B+J4 z(+r{^3B@5wC;)3)5Hd>Xh_>FqzeqTn&KQEangWr{CHF_JUiCeQaMmNDhv*y{5W7W< zKTX5K)2N377JA`wD|PTM)*{(&j{rb-0223g>Ix3M{Q4 zO8HkXH`7GnRGUeyq}c@81uu;X>h)F2O~gVT0XJzu`BC=nMKUq6ix{ay zd`=!y5CPGe`>eAn2?YxeJ6L!_?2{rg-1wz8*=W1_vMUMi>nh{BnQ$8F=AKL38Yrp5 z91m;Yq%+?A@MJ#&9@@UXTiHxKqB#sg7iQCT z^;Bwfq2lDjBJuq`)Qp0im}k8yeCm45#5|MjfoR}${1l;8|X#T9|CO$)xsf^x;Hh#L=uQNvPM3T z4^W!`!t}_*aX=@s*+$xZz>=;lR};9l;5>EF$}ENqGl{X?K@F5qRPD#~sF@8wLBWv< zv!H}H${1mHLlU`ky&B+#;J>J2TZvh7pw_dE(RB{lqEQ~*^(~8YbBougX-zz3LAAQ1 z&7a5_%{|+51%XTG4_&G-ZC`t~4iGKH%KJd`Ywp==g;t?26=ffrxBcX5hkLZ;y=>~x zDX-?bO=+Y~zLQ!r=+92N$KTm3c1|PA+f!2uDMvNpl!cowbLX*(sl-|H9$zX=pumfy zXt;E=4hRzLF=68X>#EXloy0w(x4m*=ynmb!XxrT$KQnPT=I8erF<51C=TnaK-nGqH zwaWI09?F3;LaR*p6Vc_usgaW z3ueSQpyjoarKKx_d8-aBFKlQaXrR{()SyS>r;L-)(9lqtJ*rcy87Yev4gL34fgJre zGT-Xazv`8VA7Aw)SJ_k8UPQGwf znw>|@(w6#+5B@|@n`SnQ$N%o?;7iT(1{wDk;{7q4hU3>7y>A^wqAD{=rMz`={4;UN z1V;b2c;y0a5$6R)(!Pp&{{vj(#I7I_NhN;}>ic;$3kX#Op6C z*tm~<>sa`ko%ii5g|Qu3z1+_7=<{wFGXiZpV)PjeV#;|GlM)6Vw*KvGJq6Lgz zl%lZ+2h_=SD@)KP0joRX2Y-e{DtG&Tu7vroXIM4}w9>v_NF>*+x?$=xsj7?)hq7RI z9P8!g;rvE~cG(@oFFNTEk1g2Zr`IgLfkNDE%x$LKYMLHtRmm^UNmN3!>a29hgJ}Pb z-Ijf|A??N%Ww(jwB7igr$lZ70lEl3|&A`Tr)lQI|w{U4RiffK&jzcLM5-y3tTFy%q z*VH76YO39zZ1_^n&TC#6rPPXg+3Kvmf)-m?=9h8J>?6}cDgto&veeNM_9ExXgFu4!adZSuXH6wk~;?qFL>XyUOMlibZ$RQ&u68u^_dEH&qbL^)^5M! zXe4*ByzuE@&mQFY!R{z;d>Xj7Cl4yMoX2PLXrX42qLeL^b#L#e?IKaE95y{|)}Xny zrFh^ad0180{5CJd-=AIfUo7x9bf{M90FKrh;5HC>S%(;<;b=T z6f0jbfD$yu7|8RAna*fTp}gKNa4AYzlSUiNWL1-3Ha<3nlBvTQQqxw*Z4WSl1axUk&keuV)A#u-<+VZGW>gP=tQo&Vu?>Q>Qjb5Jx$fSEW z-gEUHE9^7HFT27YyX+h;3O?~0?bP3HcZJiS>B2g=PB^{C{xkHH^gQ>og>PQGoOqVU{F*l#)7WhZzK`Y!#LL7~T>dA17Vz)Fi#l*eB3%G#V9^1wlkx(`i-CJ54X-Z$gIsnd0M z%zwq>z08qHxIILUuY-vM8me_2!KJ^lBA13C;(I%ht)c2kcIXYnBVn5|Fi_8kNftLC zq~6w(JH6>?JB_haF)A#5WUT-{K)}Cb6A9QfJ_j*1hoa_$aDybdlK6Vd(My*r1mgEf z$UXNeAaHKyPCuQZ)-9*%408FJI!^Fj(}O+>-Ujyf(uIrNczc+#{8mg|hxF*7SpW+h z`X{AmRKcOMcY17VR`&Z;r$Pe5@4BJpq$O1cKRP2=PjpCzJAO|&w#=7o;2eHvV&d9m z<`p8C{2}Q7TQriW-a`meq*v*Q?|LN9DfMUc`!@7k>{X{LiF2p`n1_3nN}{_1o@TqP{-b>MaIp{Q#g6sO_{1+Oab zYQZ0};GUGPo*Nh~2hm==X!us|LB%0_gc!jO9bA=8-da8}s--&KGHJrMq7c_971WY` zK|4fl&a1f6GX5lyGt{vFLb!S*iP(tj{s7sw`lQ((SpXbDzQO5mP_t`N$J1L$s@~N?i@kcN1mygQS1f}M$;pi$NZCJ6ZVP{MDF9iSyD!6-MDPn zJTB6joA!CMMchl1Gt~vj1^nH&t_n)*gY)Bk@`K82Z3OTaVB;UO$Z9*?{dHn$Xh2^& z8v~&l`89{4J1LaNn;_69k^RZyN2Zgn|7*W|?0~D6_FBXA&(i%*PobrDK@$qC#|4$s zUUdAR!vWpu3wn+p6%qs0(kGwpiYQ5j{l62Yb6-#EOu7sHpT^h?TUv?wx^eeQ%i5H+ zYcAE*i}MZls6qO?7Oh|M>T1_tG>%pJ*m10v==DEQH6z8vx1Y2%Hg<5-dr+Q7(_Pbm z40+tT1P^(%xfsf=b2jM^Ycvh+p}11Rxeto8mTsx?&H~ZD7!EELrd#8`;PJRQm9Kawj;{MxY8N|Ho8H_T6i5BL4Q#pXoX>GW^AB8I;8Dtgl+m`?++B4_H5rT*b-v@;7%2ulege0 zvfT61fn$0?uSXb^8_+j={$8SX_({)m5o^ojn`;xN!jC&z`Jwpg%JmpF`Zo$F+kKkv zXGu1$%GnLCQoPx1pYSFr`;U~%+4<}_#l5lwOuqiDCu#ud6)%dbgc=NnOVho(pxyHQ zq?(0U8Aws%A8Dn+g^;sN;__`kl#xU)D9~aj`KRSaQ}v4S-d(+pU$DK|;#=;i3V-ug zM`%vICjGArd+wbLH+KA2E^ z$WNgah9f+cd?sK<(W-%7heIOSgV0w*|D@Y>zRz+WL94)XVh%DDUpsE%{3fp?UlV&H zpZ!bXpWpI27iMOPxk+p<)`V3n?vVKG_73skFowf6GvT|Z=HJPQ1R3~KeH=;9vHV|!4*`)}PR^~WW;kNAUG ze2{M|({;7hvC)a$5+YNe*y$=2Z_`}pD)w%S{ywPORv1zs3~lJNgh*1|r@&wFf@irm zoa@w?w60L9_<4RRtcIkSbU(jA-O7CNI_I9F)V9>Z7e_c`XVa&`lU2qHoO7e4xmEl0 zD6i^=g*@Cq{NQ`lZ6oCui>O8(4<-{?-P7^Jd}D)@X<7`d@kf?%#YtVXwmYH`Dune~ zNx)u^lJtY^MWkH`Mm;|fJE21)Bg zOc+%7$(CFT6alhH%ak`yFeK~e`B{{$E0wibWZlA;iW|4Ek8QEUub&owNbO=7^y*#j zYaO+jTeo{&(WZ3RH#cX7<49?e+pnV5HcM`Y%YGn6bu%cs)R-V{P4IEV+7*JPWd^f) z=sLQMExb!~Rq@o+$RL&w_E~YXK4Ko(Ab#a?Mdg)GUt^2G|nhMbHeQW%ZbMPqy(jxqg!Jx`cJt@sGtbnxif< zB?~*IPwt)?o*Q(7Xr4t#*<=?B3rt=>yn{*v#cKF}3^*<`pPD9j#|AE4YEGpXgN@zI z|AWrMiw^qw-rnAke`2`GAZ!BljhS4eAjF@@&|NcODO3vC_-~9K#&|B3*+`!C033iv zsMs;>&}#A9`RQDtg))&jb_5Sat{2I2z~jOPR)ejX?P*}gO?BpsZB@ zUcN0?Pnz=7uqUdwpd;EIho?4VGeIjlcew0=#k*9zLc;tnbW6 z7QH+jRwiC}+yP%cx&hg`w-xDpc?v9f`3#sD>+!SL=2>{s6sV}Ir0iSz1l{^{8=Lgi z+#~IZW_2cDE)OW|*lQ+?vnR$+F`v6IZ#g`V2)i zb7XJxpEQYB^3r|~8Rd0H2A5AW=aNr3p0N22R&a#XFBV=hC$yhj8q&hht}c)8C3Qm| zxR6$bRxHs)#kog!K&TMF?Th5w@+u3EOn9s_9FxkE^vh{A<^6!Dg58{@gjG7PIWH{u zV7;~VvU}fq?$P_K&R<3{2Z`iQU^DVord2?epbr=kQN!}Kjg&XxeMaAJOKXhH zUeG8{v}6iz_HoH8y6wqW{ZD{6$z2MuNYH$Ve=#9Fg6?p9TJb@Q6$RR?o9qEr?XRDd zcHfc1*(1Mop%k19@~r0EId&}Z=Xn3P$|TJn`x~?4@tBD#N&Qs0dJssCp^PyK9pp_3xD)s%0G_0oE2g0NEK97#tO)XnT5N2Ol{SlLT=REW zCTJ>$$!}41fW{wGnqXY^tgYFaHUMEHYVn`e(C8m zxIh2-0c%||J$-*5j6~gAyhW5`tfkqI^qgwBg#BXwp)FFSQaN;5YhWmPd<81WD><6~ z9U7A#9c6}`-TK@m_=n2j_o{VaBp-_&hbKdsT$c55fs^p@_G9fIBsl&<%l(i+7@tB7 zx4I3s62iAOUVF@5qxvNXt28sGcj?xs>r)++C^zi|)v~75U zuf|>vG${;*fJ!35o&T7k+&mZPu8*o*bYh`9F^CLPTQ`O+=uvwSJFh<*xNfm<$t6&c zHccb%D@4c(|Gd@zcz~qX=8*qTOk@&vh!G&|yQx!a8$2sgdKN#gQ&I7ML?Y1!&I@0I zTx=am68FpJ?(53ILC!p}I~xj}r z#{*WJ<$`b&c6DbqAeFF(@A*vzmw|%WZkWC_1p-a`{rJ(pE4k2F`*VXzON`i`_ZC36 zt2H-kAd4ai@Xk}Tqdpz{!$AqU&9z{`MQaxfYB1uyc=yz)OImS%z22`qzo=+O(d17J+pyU~V*BzEQUqIw{|sdJ)5dY9 zS>XR>qKo|gf+f5_IHjS& zarBNSBmZ)2(Ld!DH`cD`tk%flV^`F66ScVQ(vnl2FaPOX=%D}^r{mO5-lT=}LZa;b z`wJAie7T7D<5PP3smhmCs+@+kMP{ClBcO@BI7vN+XWB09&GnhBIUwsN5OGkC9syDc z9|B~vdF82gOf9%dk)mZ^q6nQ$tH;L!Wgw!Pd|s{l45>IBBZbgBKE7@Bx#pYYH_#rD z#iCX!mDxA<-OL6oNBqX89ZV{c@LXN@AT8Tl(FJhATwAr@yWKN{870i_p=>{537 zLGwu8(B1V2PreU+(&irEX5xo$?{l6dI5aJ8gU^a`VQHzZVULxw?ue|WMpndmP+?^- zHm_@IZ4IrOD#8Q*zcu^^(HH)gWvszB+VQuoK0|2W@f375Ru^pSyI)*V*o#nl!1vgn zr;y%iOO6~=X7nuOms-FM9WcGE5PjiC^oG>|Fu?8|Av8!?o07y28En zb{J@aXSMjb8(uW^G`Vtoh%Cv5#;(Ujcj;Kb14Zx=jdP zkIMJfg3Y68we;GpNM2h$pxDNKWqBT@;iWBaM7}!Pw(?Qk6SB?On-6@SN{N4_KFB|^9~1(K|s3T7$1UU?x2&09OU2Srt< zA;>df(`k`|9}1o9h+9}2i+l5vEQONlH#Z7RZjrG}P}fVoJn?bfK0b9-&UQ1HjstyJ z7{m~7pR!H{r(pu6z8`=i@vVBjr;FQ&s2VlWUhxA}m#10U@3+%_oCa#oA#w4k^?UlOOZ&tzTk&HLYYWXo( z0r6PzP}0{2oOT)IhW5axvgc@xd~(RM!_%K`?KZ*7U`ZDd%nvlhH8N6=txI&tD5u5l2n))6%Drix)+@Z+LLLhK5h8of58=a8gK}doYyzU&3+z9wB>Iu~}ZP zK$b;UblIWUiqE7#CIn6l#e^>1=v|dj60xz`{Vp7Hb?%8cV0Fc4Gh#S9S2JTcj#%t^ z7*G9*>eKEgcyxtI^=N(D#*LtFN)iaY+U!4Ysb0P{)5!OpS%k2q!+l*{LkMxN2L_0> zYd78KTJ0vl1>#!O+y<4Z;-yL@M9O_fD}SgM$8lSELU|YlS2tIm+*-W3bMqoEMvvcK z>E;}62sY33!KSSI*KQ(Q7-1;hD~8E^4#X{*e%d!;UMYif&OG#HL(0>WBw?)^L{W<2 zS)>bf)WtdBMJ{QOD7|}QXqkFJ(~tWI8GTShB@W7(DMw}jpLfST&k6*d9V<&cxue`e zTO94sL6n1?o3swpH>N))+#_Z9$}A5*T`eFS#V*P6*#(;27JlyFQy}=wNCbojt z;14S1(;ExF&w+qRU1rVvnsNoq+w9+T8Iku4Bl~q(`${cE+(M4nhU35a24@e`ow zKe_Z3t(^Z6gq*IwxMun7^!cE6T<#S{jyzVq>d+Jj5Et^>gsO)k zLMnQ(Cum4R#n_MVmbnDvm*s~qY&XO!XHCgmPM|e%#T%W3Se(Qvc!fy{I3-#y*nQ5w|bH&?VUD=V{(r#K<3f8WrAI$>N46m^v>wMRTi&fkHjQN78Rkk)~28M(5DNUEY z(u+lwEkBH(66wbIVXJUWo48`OxT9S>HYVBwViG5}ee*iCIkOLU z&u(W^TU$jOF9zpA-W+|*eo)e9UqRR&uW%E>6|F?qcXr+J3%8z3X>SJU+>C*)>)UT- zXKpOOYseF1S(|dQ0K>_bU~BJ!@s7UTg@Me&t7U$3)!vTy)KQ;X5{-Q`;c%{KCHO1c zL{sQ5q>jEcaD{HGE<1a*BIz3!In>Pvac@q_>?fRkIzQO*yOSH&fV_UG^5W>Cg~Mb; zlT=c?BQmTV{vGy+Oy}N7_3=%kM@>5J$5-BA>r>Te#>#F20p%A)3+4&d*vp>bP7tSG zjL%ojtyoqRvh1{ddfnD5`MK5rkY4CIR3|Ie>G^uLc^ff`UE`15RggU7pj!cFQjMx5 zAw|WUPFGDOSBchngHpYtyFCD!sH}iU&vFa%%&!=E9uIbcCmz#0Qn= z@19E@T&kIQl_XSXdPipp!`mmIpvbGEclC#LtQmsdUo`X254+T`&CPx~Y)%XYRw@wo zbkmK~MRixJF0as&Su^-TIa{`?!xEh}Zj#Mf*s8gsjaL5QNk_8_cSC~3uS~=xWDhy{ z0XzsG!;1iMy-@$0ikw;q{eL$-;8|1XS{%oNsJbBTH+ zLA+$9G`rNq2^GkcM?%Uy$4?~rfs&hT6g#>BA*Gt;-;MjQ)J4X)l1Xqk-Ou+J_QV~;2%8g$2HA4 z`O>(@0}&kiM92JwJ<^1r*{K(Hnsbqc7@7serxSN_THyz9#@6U8*0nGSdz?Cmn(BGc zhxEw=#iKiR+FwP|kUVavAG@2eP@Bry`o+47=3hI`{w{FxUt5CU=wO_qztWNKaO|N= zMeQy#*#S)HI;DfzwK4TavSt|OCHKv#yrWPm-uMYUo4fs{=e{3q2nY8(C19Gl{ZKP^ z&ZhZM0&wn--7YW);-u{?Z8Onw(dSbElex3N2>*B#a$JECX})7-R}+VcyfNlVW(k||lTKXOyb_+rhr+)C#n!FLR zL6N4|96YU3@2`m^WwbJQ&%O-8$f*~~S@fp$oGoA50p+}cGSWzAF=#jnH6jJ4%7|qX z;vNEJ9Pq(dereE51uPlK!Qn_HLheNEEgR8Fmxv#^leUiH0qZt9vySo|?J-5INsJu=UPX+E~NFHv^NVH;2Ktu;wH(GbG-M z2-}35SOt`#$sjHWOYLE=KiOrPJp{tM&C=>;3^upn2}L7E?O1U8`E{f(pxJ-=Biwyoz8xo zfnjJY3VQ5dNIKrs3L6`9OW)Xj5Tr5b9I0$^pW#uE|h4eXLY7Y`0kfS#Xm#QRF`I^3O470xB4Q3 zL1oY^q+||~|LghsK%Yu`-|Z6srce0*eO(%g5WUjYwDFCVQ=Myk%{VN&e7kOG*64K2 zb7_0`(I6GOnnt?xJ3E(iVclj8Ro+7UsL-&ozC%|``YnZxZHz zZQ{Eo>k&R=d`FnLx>TK)!4B*A0X41i<319wMj*)7czZ;Gsui7lr3m#8TVB@%`uLDp zBlsf&0yv3V>y`$!eL`2%b%#YFp6|mB{+usc;+4qgJg6zc2H~bgg(ik34c5(z^MXRS zP-4TTc2c5eWE_?zdYTt3jSb+2EJ|opH$n#{boU2>;vROnSlDfHq>KNiHE{gA*m7)P ziqtDO=8iu@!&c@iOE$=`Uo8EuPC9kcUIm!NU~jXC3GXe5CSO&5&IBW(ab348U@fR2 z)m@O7(*S%BoR4=QPb$@rst0>clk@Y1SrM*LZ@T&t@k0b&rWZ0WE{mc2r^yD_k74z9 zN_!MzDeCrMjRMQr>*6nWqD>XP6)MHi2*PHO{6Py2s|&;fL#5wLA$hI|=_9S069QBK zOFcg$_17OrO1Vbf8W>En8ow6V{Ul^1OJ2d~`Wh#E7-s7%!!2tf5k-0A4w&KapV>l4 z+lMV{KR8-Pn~_v*^gK3cvPwakP{n?Q2TF1V19XQzv+&LZqkh1moPrl`$&a+riZBc- znpEjH&x`DYHFb;iu;QY``L3;WiN@2U0n(|*)Miz!Qmk=?3aNoe($0*$DJwWs=Sqlm z+`->?V4%rD;73y4D(w=vPQa*H6M|NTw6IF9f&EKc9$;ZkDNQ7QO1|@rFjaQNfpsa)7qwXdc-Fmt*{`rKvQB}gIleEUJ zpB^)y0Myw|KM_1cB5PDT#9^-NH&lKTthc5+Y@rLgzT>GdCFM^RGljHZ}55p>MON z`@SQ@Gw(ZC<06EJ;p@0^0El@tqgG9911at1){!A-t=n=3pOGQT81X~8G_29pIzY0{45aXhlp)uO8i1K5<|22&O9*On9tuN<~C6{};QKZ4w)HWz5(SjBs zn{aGb)LZ1{9<}6)BQ3LPJWP|XDodk}-`UZZugh}5xStZvLV(~LsHF{8?}>n*eg^n+ zz$aJBbS#HS`Bb8wAW%*xQ;|YGGSwO- zx=OApGJ#n*!dS%-18KCj;yO`^z!mwFV{Jwq$t`X3@ZTm3YPsm$nogy;^1o}@?+?c( ze2F_jRUP9UcceqUSkFofK_$We6=cylKGzdwS}Erw(Ja}bQI4=gP~HhM6=MCg=9i|u z{O)y6b(;|)vT__BFD&5>)eVH=!C4`Zm(RPmK}vmsf2b6d!600!(zD<+(Aj;#Ti~-> zsC-)4YiV!q24UElLWvA`rOM2k`=y6S(8Ej2W5uaK1KC%^7#V2SQ?1H|s2_A!6ks)D z8TQF5u=x7riyH0x!h!?*`NZF7MkhX9Zg;q#aK2V-w1B;dEGfV|z!u*Rc*IM}4H75e zr(bQ6F*ZRmc{))kf(I&i8cQCdc86(P@=(kv#IarO<3gIoib@xZ4;|MN?jYGz_Yus? zOHh2prOvas9Npgq{Ur!$`p=rO0sC3td{DLJIiV#4%Jw%rgyT1P)}gz|z<9>Y+=^K9 zm7tknZe_bqn6dV4doy?D%(Z`uRxV;BL>;EZnRPnI=$)S-*G>T&q3?Nn)$juI@Z8Lo zGmK%AN{2O@%sBm68sV=&%eRrTuz=N>ZDQo}B2s9rRho%-7Mz#h4m|wL0S`g3Odqo?X{#sdMWF;xmtRpB zm5og$ZIc|PBnH}J;^!FFrw_KaS<>Nyq|9ljrGM$Jq5snOd~Mzm*S1+`^+;1$A{~!l z$yBDBdtu}>yHJC1(&-aFf{@T#QS`{HH;NmZU?qyuXkt7<5dK|7v&h(U{ zmxFr>1YP0E1B0vKgI;uNbF@eJIR5?dLg)db{D&|G0L}hq>g&O-RGPcELS?nmEI$s9P&{5>8 zA-|iKXqh2+(07T@^TQAKC=MFYnk-vQ40UMK#5Q~+bVYraB=HP-9S#mFXUuJG^_0G; zJIl&9RQXo;b5>p=0_dYKP}nT+@gP|f$f$Bx2Q{uv@C0Zl2T&H?X~CoUGQ8tY>>|M{ zoZVfn^&Z}~+2oUSnPS|3eqV_E<<($%4~8d2cIx|CB?{m|`5D#(KDG1=H4=yr*v4Y@$MdO9D5_z8@aB_(ROghNTpe zg(zSUyfmd~C9;h$;N)Sh!obM<4TrmLm_Po}{O|iwv%A*O8o4$L&7jVYOvanmY?gLS zlGL{Ge(wU=Lj#D%pjf&{xgw3Rjhim%_jG?E9u;Tw!M`xae zqo8K=l1jmX_Zk(b4LqFts_(O{cB)|==LUFvI$YxGa*`*e3Dc5mP-e+Nfp1D?LPD8} z8diwJ1%;eKvA9rNSjaAv0IS9jO|Ucz!CS0hBt`XVL=@z4KZ{E(t#3Y$2vUoRvy`(` z)xvs#csi1qp;`8ywg_g1|8mxT;V1eMudVlf zzkJOn5kZFtSJipi5x*V(v0lN+fbGJqYBZbjodOkz;*F!WZ8r%1j@ z>k@+2hlR#EwdO!cv7+CDV#>J&cD}NJEj5$_N8`!A1Z&-ii`_n)Vt?$HAh_H&CPC_{ z(BP%dq+Aw;2l=ZSvcsCrJq^B%XB7#$W;__tr$(aeCrY22CNl|T8; zqNV+WB3gtOFRslhXh)&k%oe)8&m{+{XSbS_FdC&sL~gSUHZtnsk53dWB1+SdW0gwS zF}`;0c`dCya4v4_2hMbH|3AZN<4*Kgep8_Y52HhKSS0?M6Wgs%x*TaA86iE8$?p#c zU}GPdMNv1n4v|8&495aIpb4!tv*z z9|cm8m${Bn5&9rINFvYZARGb-ie#y>pLj^&*QRKobjK`6m^Aa_69a1MVwYiz)tzmC_2wC5#t3F0-Ej5#z*3!d`5(gi7AiNp2l_UP ztf_-pPNLhCg(^_@EZM%{O5$7g5wlg~EiNCku-ysRcB_v&x?@|PP{1!jX4Zfy+X6hE zJfSKh-FvB$m_ujE%l7vSAmC(D;q^`irf;;L`dyyl>X5*mg3dsD`-83s2ZOm?7 zZ@qn4B}j?GpqovS{e=umLvoY!?S@(mnX6(ATefN5G5UJ9$yNp|(I1U5IkD_CmNwLq<*^!1JWHYoV$l$NTM9H{e51+TKLl&O7JEOzGK& zyxuUz*9y<#5oDqYR zIQOM1an3ymh6#ELB6Bk|`ut+o2Z7_-k@bv4?*(CGf#*5t45kRl}kidxItp{&8wx9#=cbA0vki6`b9x1dmW@ElBn?cmHLTts>uC26I zlU8j>&6NZlludR5G>2TZT=8#T6{}*oi>6lr`(e7-sZFU=jtkRV9gKBx-q1)UU)5Ro zWlM6OH%iNjVhGkS*I$aIbRCy5FS<#ZAZ!j%w9kGPCtl@V{vF1X+kWCc6(&vrgK1|$ z%O~+?Ut@&y+!4Pu?-1`WKh}WHu6!4@0SY!=?se2p!WfSry9V!bRMF8sT^*Ccz!s=Jisz;^M zS~@H8s?m1|$6It^_RWJ!GfPWX_n7lxhlYU0$aj8D=AIz$pbEKMm^6F5n!`>2y@GmBgtW zu~>2>M8gkQZrvPKe*cq~HQ&R-YEpG=jKfQ4{?*bO+NIE`o=6s9U#APTuC%%~*n7v& zSs4`dv6bsLJAVHr-3!pCsSDPyVeig{OY!gj&$qhR)Bop(eq`yi2e7T{0~(Ff3GCtR z6)K9=QV^7^y(SU7I_rxfm0xZn#=bc|+vwV$yO^d*N1=bUfPv5A=}mzT9LH zl5;|73t#^mk8Y@{`=`TD>e3J=I4(oP1yiz;YTu;=8TW52%pA9!imlcE(FG^Le{zD4K@E&R9 zG_p3f%WPQwK1IsgqgB_AeidVmKRi$rH8bPxl&;v9zHde8PtjsTHsa`TYU&@AVo3JP zC}jh&uavaBVhuH8TeHBt6lo+gEc;`H&aamiH`Mmew52WjO3>Y~o$ZzW$NdfmHiEoG z!?(y3$Qv1Z(x)8@YrorvSK5;lW76|cZP(}%P5#BvagF1g853GyC+)rWL^N?{#CQDn zPLrvZ`H%|Z(2htRRL4USXaU8L&cCCUAyKP6Ktq9hGF-@r_#h>z(XEjPA14KYprt2 zzp)Ds1U-^i^|mcvvt?No@?S<|`hWi`7v5=L0YFQYab1i)EZwmc;eE|j#@^}Hw6-)W z-bw*Nm|zz;g+9r$hK-h?PGU~!a|sf>4Q0q`LO9~A3)}*369US=^R7FDHv6N zB)45{9`wRVjc@C)Eb)Wh1dSv`cc$S+j<)`Zpo(u!*p~V0VeU&%&p# zGWTBgFBpg3uY^W2djG@Fw_o6Tf?v7+e(M&aS?>ube3x_R`b#CypY302pzrt#`->Q= zc^t(=xyqGw_t$~9zL7zP%x^Z}14K;ZsP^XzdCu2O282Mg=v$97lfa&m0PjWcAaT8! zWLjrBzz&$s2=jzH*UDp~R&0MACo#Sec%*doZloCy*z8JfH;2C_GW}pisX~PzU~e`$ z!X!tLmwG>+sY=^#dYFi`mf(sI@;iU}Vcfkw0wAknBy!{8`%gp4!YKve{FMD~G(mog zf~Vd}o-nK9@oH0J%{$m=&+w$lsyMj?T-X^YyJ^+_>mXOAQ4Nl;gY;ic^tpt4CKj#% ze5La9HVqV;pD3e8gz_zUMQ|GqqPUVyg*t)pIbgjJGnecrCq+Wy4uxYXotrfvU;DN7 zts2(tKvqBC9Sz_vyJy7bASwY!PzSqxxkrC@{!1jr$dz3)bwKYc`qlC-d}IXJxkPGF zl3H3GN^~o(45##xo+FHaMB@Vt zwjWFX&1LwNm0c>WQgR9(A7jgM=cqe6eQ2R4RL2hESIwk4C)L+94O`MgsjDTm#LQRc zt}a~7K4pBVoi!Y;(d%f)X@LT00R^r3*}w@{lYB&#^1@LOsUdwk|xtD2-uUTI}8g4D5hbN~6`xQMpy&*rW&dnInLjGA>RDnZ=GxK36;J;w~K6ZmCuGpx*s zoIrpzo;Dx#GsSrNOrdt_3{60wu#9MFu7H=g5>^UlmQq2V%osQ2RZjT$;h1ty1PR8A zXg)^+Y75hx0K43<8iwd>3sT~gw)$O^ine1VgfGZ#O&~cihI)oaM_|+rN+q2UjTJ4? zvSFpPcO)<@ji)@KSBZOSNf*Gwc4lI=zV^4QNZ>nA6Hn=DkssMgzjlxJts2Y%r9X&u zDxn-bnZa5~0cM8V3a#4yRAE6`iEHV>no7Y8!J;VOmZnJSO0y*W^kn&OUvR@S!}5zq z5V66`+||zgJ4`<+%zv6Ok(y+gan4gT)kE45j3cb)*4~yxZV0XU_nAxbAtEi%2v0px zZmwssZde*5Dz><*jn{h}w795`3^fEC&Z4tplz= z4w3TpI21~5E1E`bNJ+aXz0d%!<%7z0j<^XbZfYZ?Ah`%|q^e3U0O;I1kB?vDm;4VU zftw*aB&4j6o277L$wGtd+_zdhOm%9qzJUaewD_}X3$88I^3-YNRN(RE-gJbwU1Lx) zz1~czy9!EIkI`b?#AU|YgglL!XtC3^xp>rg7+v}(L{IDviTVXnBPH80F>1zwSQU1A z6Xei7cMd4AbdztxhmyAX4UZacDvcv2{Q$aFlJ4V{x7-eqHd_Ke{JMs%mfdM98+dP> zYWFBo3rk?*zsxuUxT}{?N4e!}t+f|qOiBn+ zP|hT3zCZ?2OW*YlQc1jl+5Vtk8fNwr&dmpDN1}7Rx66(^oI^6^@HOP55w=>{_tX24HXCf&9IqMGbt~T-KrZ{^IT43>85t= zk@r;VUh(<76-lJ!wVTsZXoZa{8;zB?2I)(zlaDoKbTz8hVspg7IU!$wdc|2B)VOf$ z>K+*p=vD?Wqtc2=^E|2vPejkOFGTRpxUAIn>hx<6R4F0;6b3kX0N%alZQ(UWYu>~o zgh%@%-pbh#lCww|7PBR=n>T&mhvEN|8t+xuXI*;TEf2NPLgyJmI}Mvo-;gO3Dq{>V3 ztNV+4f^Mfbf`+HPdbRlJJOU3)-zfenmD;o725sadHE$qLOnRm^?NsuTH2TV$#z0=vaweMd07#&MxN-f@|e+!ZkhFh!Kd=`s1#|HFDQqjAHc1~$gQ*HxXlcQBsh9#mUqQ%C1Tpwn~{w` z?nn~gLW7{lWbdm+C1v)OClTWvF}r8whPy*EDNkD6HX`&VZuy)PwhcMkBI{X!Zls!x z!dN1wR(nu$cbaiKt4TNBEWD$zqe1fG&InlP&1t<)+Xi#6*PKMQa?m~%SG_$!*bh7tscR9T*mD3a^IXVPZH2cOOkN-gfzsS1iix;o3N}fX+6$< zIYB28LRaEie*ZB!cd@lJB%7As(aoh9^sSqko~;rFsFt=Q6sV+-Kx$k=(n!be8@{EY z5^Dc5g(HPTi$5D+d~cxIX*qFJU zGcHe)C^PG_rR)J+J&#Y-YtGIxcPLG#Wdf3sm zS@$~2Qjc5E+Q-|ztI=zhz9$roZ>ryRdDYfC)u>C8w@!ou-on&nN&YAu%RjEp!RFdv3Rj_8Z zDD|Un9Dr+eBY!>PZUtpH+Bs@aT}2w)f6kn#5Zpj>W9m*c&kwQnZk*-z`!u*z-t0nu z9O^@&-$_bI4WkQ(Yuri%iA2Zi4oD>y#J2FKSyv00?wo+ImsA&|&w;^;Zz??J+s$xq z%i8FZ`1zMPEdRhpw}oJTs|<19s!_i$`e9tsqT;ZDly>oRyDJn(zMzlF*3h2`adn6V z0}zz`b{O4dJQ3Oj^nNFVGC5pxGG?H1pF9mP2n9onwrz2mgBi(%(nmQOQRav5oh<;( z$e(XR)Q5(e-@owi4W?nqEvDxrk({TC@oH$VXwLx6QB>o%y-gwpU^>xNzxSrg!-{JD za%EOq<`@_EEx4jDRAh#l011wmmZfS|AtW`17Xby0tSW8t4Ke;kzZC^yNM$z4JyR$Oivg#vM`bz;l)wV0f5{^((X!zQTSp#WB zW!^)E@Kis!7;u?8SnrWm=v8q0NOD$K zYNll>V!6m0jV1o%M@3!Q@J|a&9M6${V|^;XI6BCJ@tQY5PH62f8aV)4h|U3Z&hJCX zfRS@?%@OJfR&X!l%tp!j;)uI9Asct)1!qZrEn?4nGWK2t4)bsh$9{5~4|65}-YkLQ z(e0W?DG-5 zH})h*2e$fj9C;v)S_l-02hESFcgB>^ASpTmhx%=9}7n*;{I~L zlC(hRP}2;rRJ&WAkaq7hI=eTtT)wBv_&ef<*}TH>cK&xD3wZ$GTU`-pabs14(z)q5 zC5XmM0-@(ik8D)*)#5PbNvh7h=nP+R-`&M10_&sqi4Yn%De$q95IgRz-kg@t=pqqW znH7@c&I3*g6339^VIK&lqU%vy0V1ly)BHlWI9iPMYrIUaFvz#yx}N4@?EX?2DEUVG zTzXa;g0lFOw4RtXu0ZOk=}!81b(Z4~C#z-9;^1FIp%xpDqmqfAB{Y&@4&LK~HiNV9 zjINjwDUA)GEo6CY4}a?nW!omQWv<#mBqZwaHR9R%%zaw1Nk+OD zItlz@Jzr5(P0o1&d3AgP3#5>?q`JYvSP~l^89M#RB6Ni(+>3DR3WH-w3N)L zB9PYu5*Y`S3d|CUvPe`gR-H+U4qGIUqDv+LngC}wjRhVw5h~)4r{*6(^Dl6O5e#_u z7SbYO@-=gXzH6rRp#?t*r~!KI(;G4$v!O&5@m1^SSK<;DNrX#z_|xi)plq*kZeS(-rWiTVENUv%5m+92gEiAF05`y zV8l}HYQh%dr}GS%9b_h)D9MSA9t;#0!gMYb1alwyO?zme?6LKti8_KU54GX6#iLW9 z@}yInn{38LLUOI0*JLH@)%?61C+#eF#}au`D?(EOU}Sx|*JX9nu$(q6b|xufsuJMO zAoM%{P{+@mlxob>^cOEm`eElBu9qi`JkiAl;-v9h;oV3B>2@PGu!ADx4J2$^DmFXX zT%4|uij1#QGcpR40$Z#tA|m=+%*Esm-@jti+bSM8as-LlXON_DsExCu>UT`f2qQtN zo+$!NtjY8smv=bDN^lM*RR0ZD8fE4&PGjSf#|+p)_A9xmVoc<$LK*9H*!Oq+aq6`h zXtL=(C&YM6T12yT>^Y>V1iQ>D?q});K<&=Kn@_ameS24D&_*V*(5*-+a_StKgrBZK zK~Okweu&!ZiM)Ljypl1$-D!D27FRptV!!qD$2XadAo%?H&s-+C{U2j*cf&_d2dG5- zY?9Z|a1znTJV)*LPm)Xbsbk4&It=&;j*_OxuD|z<;Q_d0oE!X%?b+lHr3x(YjiEqA z6b93iTbv_^F7&o(x#A~CTzkpxJNoM^G*NfD#x1C2Q>n-RHeL1|3-W>(^8r+Cg>G({ zcZ?1U$;Svdn|Mf7G^=^_$x8m#9MaXw)Ro?y1Uopy+f&Bw z&REB7mP8mb(3z2LxRMZeyGaBf6ZPY0M@l-okoP;DjdWYchx`I8pXCYExkE;sO88?( zZAF@uz;tB(>VkEC)@GIeTt3oBCWSj6Ak3&rq<-**)qNgW2X8N0jat=8Hr*ZZhLh&~ z!3Q8!36L?MbIo2tBB)MZAE65AailA~YDe8seG_@nF#5c2fxmCs^*~_GZPLUu&Q6uC z0Zsh*3`&f&U^VTdVD#BXmd-~#*Co9hTiJE$L5Cd{OzPA4M|Aj&`5V=)l}uHQ^K-rI z^osU#75HkDG)NpEWrk4okjZxQK|GiH#cC|CHXL|ts{X5Igy&_WLSV% zBh{e@b*fWBd_yjxrSke+&EjL=Jz0|MZg0yllsO5hnTo{i0|{^?C$UvI98Q%aina+l zx1?l7Ta5JpgOnDKlmvXI74icmR4=F1PYaUUNC4RBAPOjLFij{$S+$f(Zyls2Tp0|L zpgPzjNdA0o64@z&C`ZJh#v^%wGN>oi3nSLl&Lk4< zLi9}#qG!Fm>UnB$B+t$tw}ciF%T~QsLatja$QG?#+IYTxua$m9Urz?tBr1NX%#DHt z=!Wj9imV)&aY`-CVC<*VdS!b$LEUaT-wX-+Q3 zu63|bdo1m`f23^txFgdkK8vfP`S^m%!Qcjbr@$_U28y^4f7M@`Tx&kbc3w>N_yG7% z69+s|w>^;d;WWLBZ$ty1N5vdYR-K%-hZ_^scQQ=}E3qj0Nx#F)T6}w61bD&-5*Rd( zD~&XYOIDGo$Af9% zHxMh}SkxB0^_T*(zn|B=i;}_tppv73$f&Qda16pWi-C4e3L{eBOmWHB%U6h>zFSrsqVT+=9r^{u_?5_SYUv&&trSg$Synk zH?=s!IF!1xT93G>XC7vEaQ5h8iS^=P1vuO1gGw@1Zf<_Q=tu|(8C>i?X{e9OiKf2LS<=-kMS2eRP$YenbR0a+EESfj z%_)$@9`+o4livH`;vWtA-dkF%8If6k_iH_76RpEyMMKhT?<_}swatUfn9j)2?;eAv z^1NRR#N!EAQ7I(=ehVr?Kh{v6?|jgChuUo{x0K9(mLWHd%Dzs8T~T`%MA&mA=VbK? z%*s55UymguOS)gU69>_PWC9=1#F>cPA=qv!xpj_6PmH9A$li}7hZeu9!3 z*m+eE$p{pE3%FQ+%+llKjHiqt0f{e!T&-}K%%i$KGPVA2ikZwaF9jqUjq-=nd`0;& z{L6|t#%@AB#qoCH-WJKmnFUpf06M)&l1XH5H=6JHVph|6)|)+gAc{O;BQ*Mom4{p@ zU~Rj+y(4Ucb+;aRHlF~H79t-!nvQ{f?v){q22YcHbtVV~+kJ>l%=zED%6jFiG>l91non@EN z6`Eg!MQFeMVw) z@tgZmLF%re;=ou{N&Mw}HAWvcfn8#d)q3<+(HI6*<>b@tG#gz(tD>K$MueOw-K}ysxLI zM+w-mZf12J?dKa{v2{$x!?D=T-JDoTNyV(1+_g!-b6v3|_#6#(tINRc&O`}UonZ?@ zXlBJ;CByP-F$T-Q!nH<(o_Za;NpF)#Rk!cP z1&S+Gy8>d_ajuetblRin!D9cq8+)Ri@Zt4fedR9|Ke>u|CW@AxLss01_Ees6Ot4orAXK+2W4O%jGZ_31Yj#ZJuacfIBU?NiDE z!_kO2Nuqf+PLQF%n0><`xF~<3zT9EQ2Gk@=WJ&LG1_B14) zy9k>m7*5ynvBm%BoV;T8bn9l~nqm3Y$`88ed;h_zF=*+{@pbkok*Sa~ch=5k4?{CJSpWl5i zC3v)!XH2+e<}YD4229#len84WU9JKwiE;AP(kWeT8+^kGMK_Mup=WUUSIo8WI#5mI zNs>7f0IJqsybwhXN)lBECy5Hbp9PbY-xN$Exa&2I=;Wk&lE!ajn@@MNt1@M1Xe%F0 zC(4TtNIJP1&L7dv`ib)>Qac1RC>zb0zew}oPUk2aziMpKHBJO}Nli{~#X#LJ4_?|) zDkMlk9kem?TrXnFq?xGVRz#$e7W7*f{$R(bH_4c22e52FCeUmkdICJk?;iH7&X%1j z=PV>W_3!$k)kBi-6hNt|gy%O*&dN&GbW zDuWV4>Fz@%T!$UQ^Nl^;s`ScKY#Yv-Q-1gPd2b>63k!}uENdHmo}o*2WE6`oy)R_| ztkqcxon_3;O2JR68aJ$}?-9eEiq#v(M_QU^Lr`3n%Ozjzhh>+{)DR$_v(!V7DY_qy z!kk-wz$gQD+NVp$dAOI`6|0{#^M8tWl}w-xHaL%D=-non27_DJRFD)#7V~s$rHaQ) zm7}9K^4tRy)`bMbW08QS5*~${G3|SiMG~h~CW-WTRjPNvL;~B)-zKiwJ=|iwSH^y% zh**N`$vc8L`O^4!P-D;HNgyX&)IQZB!ImNO|EETXu{%+E7zG$GIqYaP;A&x>Rz zIi|cuyJLi2LH4PbVf8n3l#`^h#t1GQtV{u=7>cL`qj((5V{B* z#O6s8H7f*;eYvkUst|bsC|wx8wWR*s(N(Q9D{(gccH`KSuSzH8Y$N~`+Zsh)ft`#Y z?FO6M#zR_f+l`KY&ecO!#7Hyg zBjVMX zJ(aZ~sd(5?M&083t$PyWn1(xec}W?*0!%ol`i3)J9&+j~LjZ3dv+P@cm5Ls&#ZuJl z^6Jz%@;Kb3{JTiiy=j^8h64tmE8VHoBwI&#h4ZYcT=9t8IU#|&k@$#G*hYiHJx!^N z?#g-0s@rN#w}4-h9!4iNh(!QnT@hW5HoCv>aiOP_Ha2#BRUB@v{dISW3-h6UM=bHl z_1r7NC=9PC&{WyD?Z6H9%qvG>w@Mk2MB zrqRMLTN9Iq)xMMiobzHo9R%1x`iN&i;+fW62*vNlzt8X13;-KTBOEQ3;ah6~JOf8< z2hmQ^3^n!Xqi$hir9T6j=}o97d(^7^VC$CAO1C!6p7_2*+MJ9t7O9@m+*VW+sQDR9 zShnwU@+-waRYPUzEoC`H)1mYUU%q+N&(@WnBRh~V8#(OV(cSvTbW1>>iL9u@d9c%0#H+Hsw254tYlqkzX0kq2q) z8_b-U8tn?=)1cIma29;93$d_mZPtxC@w@salLqye%daVX<5}bASuLzK^9^c`CTJ}i zuJt0;;F{X!W8AJh)7z-Vrxl~&8^^W_PuQd_#`EM)8MuZ4bxat;n%8492q8ad0GwrH zdBRAED1(gLv>oH~Co=7TB(JdOgbm_{(V6h?0^8)}DU*}>XC9dx96bs?5D|HWs8W!y zrHM03_BC{BwFwzOZxnScKorSAd3?7{H(q2N<4kQzbeLm+5G`Hgo#^nL zoIb-|r&&%-5NLiraX=+M!m8@64$^cY#Qo7pEN$v&`D|wzoF!HJYcb!>bfXgA%R~K^ zW?^}QtsGTIazvYAqgID-IPhaP~8Qt^a~?E;6m!KYc^+9Q#OmY*}jEX3X|+8VfqXH*&)G z?a2r}6a!167QDP*?VKpOV2 zbLykdcA4ISB)Iwjchu*nq4xL>cTJ0~FN-PNF6|oQGqfDUmTduJ)fEKX`V)Jx8e+GI zYRcLOe>ycH(?r}9TG5CN7Kx!%?k?yCBf}4mf)uazgz{N)665$Q))W#`p=7Sccy835 zJw`>sR;kSNw0pJtdSFbTHLdBmIv|6S;LCyQ&0ysGpCMNK_h2p0<@FUeO*ImNEoxY$ zH)e!!_auL9O4u#Wb$T*HFeBY55VjYmZ1?1wIz>A)T)x*_?`NT5s{dZlLG*b`HhYh}I@HLx^T4DwBg_h+CgQ{Z8c7ES|}w55;p& zCN|_5I6oHs%;n$xU&*)^9c4UT2Pi8Ng6H9|U(@U&@qH;=;W~^Fh ziql9uv*Cexg0lm19r8GDC1f@Y((3f}ov2e3=n z*mXCK^0D~n4#}%@@?h(BFB6Y>X}Ml$`*?(CHm^wVimD31q0XfH;L~WTkgTGvw8+eW zZJ;3jjgqa_B}Jv}p(@;vzY$E7nn41e5yCW6*KeaW?>BHtlvHoh)aTdIL?fm&OL`x@ zcHF-I#BeuhE-P0X|3cGysw*yubMHs~Ce{CPK|zO5aaZU8;Zg8B>|z8FE1CjY{7{2y zz2Ai|{l&35fLC))Fj2*`Ngv?Eay9mFawxd{e*74MnSUwad=u+Qe;Sk8QVYKp{UHAG z$Z+HJAw|HZdwX7sy#Z_~1#cYZd-eS+v9y6POgQYjCNLVsu?nvUaLp6EV)^uzeM4|k zz;g8YXg?1!<|?-qcZr zT{b@Z=s;b7+QtePBjMcwc=QGC`$FOtWY&F!H_{D9f`liZjCyPz#xk&}BEgBH=8(nN z^{fgFmWNY4G=yZc>pOBf?y*k?or@9bIyW__p)9iy-5ZxG*Kq-$S64W~^F{4Kk?YPL zHFk$;lB}X&Ss7?`OQkqSsM9EMp-wJPBL4t~)$(KgTUZY*?lt{ehN9Rgd_rtRcJmbp z-$>9tvlKo2>Y7@WaTsW^JN^t*Ytd)5efG&RrB0!REcH9LyUcuky~0Sn>4(s4!0GD{ zQ(J!&DVl#?u7Un z54x>SzP^8g>V^v42A7zI8@=|U91bl#4m4YiJbf0x>X%5}7txrPS-tONA0KTw|66)t zwK%l#YCMME*z)33>*U1qrc6SAh4g$4op_aXkTzfVY+L!NclzRc+a@BvKeUmSctM2I z|Bi$ZB`j4;b#g{p!x$Na=DirX&jDx(($EF*+e)$! z3CapG@bz;Fa$h1?r=?*lK-02cGaRR75ZmvjCqMmyV;Y0X1J93%grH$#9wH61v>zgi zvI{o>dq$HNM|Q@-LsJr@GWyfIGA>1s16^5B1fW!slV~Pggg|jWwuNuZ9JV}`<13n) zJj$J#G6{xJ8{AK;M@7H(i3keLw`U8A^pB7`SK!1U(m69naO7d*+c!^OIpVZ2BYQ9f zk`>b@caV9*mNhG92t}jk*Dr6Mko=I*dZA-;u@iT%Ap~R8i4%s=B@=*o^T+U_am)Jk z%lNWMtGo9C|F%)y8X}SsL)7)6WqDGK1nnNq~(FZgBWp+@_#2-Qa!y$$A6>f)4mZgvozo5e6c6CF1!xG53zM@;T zNaRgXgliA+NQu+I2bt~_>$x;DzP7PD4w ztRlBRKj-{o^gp3c|1vx7DK{U~e>fx`DFz^_JhNSQVIiZUaD9G#cD1Og^;*gY?Mcf0>g-C<9UdLO%$b zOG;B(h+FtqE;I_WL`)-$3X?6(u!p?^^s(yZ!5P-4Y&s6a!M|r+=|X;QxA}g!dlX zd$jTLeS!iL%4TE-3lTJ^X6N=5CsrzE<@`0Q@6g2E!B2@ImCxKPSfXeF;%x6WW!5Zb zYyE%a^Zxg4`w+OR?0$~kCu|H0Mk-<4(~YOLxU z9f$h|b&`ksjVl?}ReV^H#Q)+^+__UG4#M`$+m|mMf_9HRn>Q}Tcc0yTIy!xbuwcY; zYg~y_Bu#3YJ#*Bl)k^E#^OntBTG~H;u;a)T);;St18o{w-?v>kbt@ZR|KIpJiNbeC z$8U1WPYTc7-@9#DGo?*#`|ayDEL~oEuN^zIY#s-1?>{_!nD!Ml2_4QIHo>pW=gL)D z<%_Iqlq;207Rzk@8Z7<)53&9$&NcU`Jd>)82wtzW3g@D-R$ZS_XRS%Z9w>ii`uv%{ z^AD{Y6Q|xAmtXmzMCIWq#6ykMBQb>~RF!4EOaGON^6vslzJH9KsOMj1AK?5W$bUE_ zVu;8%NtwxI+^_gKP;@3TOI@vl{cWu0KauPV0-yfX(f(bW7$`bGUTA!Pk*K=B*5Ler z5GgxBUuk_okg2o5+u{B3j|J!d709vww*~wJ_ZRLX%{Sabi&vgw1v%cqg-a(h8%+3- z(JWXl)f!Ctl2A-&HQDb@{Gwpk@O--2Mf`~ro{c3N{hv-4{%`63vk8WdpX<-Ro*5M8 zKTHiR_05f~^~{W{3@l78w~qQsSPtp6TI|mUD!3jAxZQ8g`pdpw@_N49oDWv<{r+#L z3UL3Q|NN>j`9W#^Ppb;|f3u3e7{$+jPOI3U`1-F_Ve-c)XwCmQt)d|4>)(1<;y9Z4 zzvR!exZ&Y4(&J-vv=!x6mgi^qcp2&1TI*{(-0f{%p6_q}Z4x&cTHa58bJ7MU`^Sf; zgGKX8h{y;@iA{C|GocoaCD;8J4h7&goGm$Q4TZ2^R<1SOZViWhC+v88`tp;A5gg_h zNi-!ZWLPh1Fe!6@WFAX0EnCp&F04OsjWG59+!FG-e)Br6bo$1@)7yWT?{B0X#Do&j z4^bvpqf{}EP%Zk7C1V^mZ|uUZZ5_4v_1{wvs=p}~#ngn9q%;Q<-`1&a@Jo$*MYcW%MSI* zg|u^PANI_Nq|@^c*N%;>ONK%%^HYOLuZvd!C?u4>hAM~{mh86M-C{qHkUxRJKq4S# zMaxeG#}J7G;z39%7f)x41QC1@l}@ht(I1Ep`Bhe{>3XX_=)X@UE{E{xuM3I#8U0rz z`k_RJrUoWPX8OiJD;bYzR2%lE!fQI8aoFzlrNF9Luen|A^`{}~djI#as6VBUX!SYn zTK5MyxQKss0wVwJ1=yVq)&iu|D%YEw4mW;@$z`^?-XE+7$?0~yKiwbx_ff^A;-`PB z{mA~$yl(1GiShpwI{v4Nm4Vqo$`4hC! z;a*;pb0K*wQAfp^dv)^lcpXE82hb}T!OKb(U`!NUtzDbsw~FE$Fl2Fhn~I)J^7N(d zkxkg@eASf^4bAwqgJ&c9E|E4$upR{QP11RfJ6)0Tw;(E4$(5UDP5e!&dh^nG@(iJg zG=m1^_b0p>3(P#CovRMvdiJtww7z&@4$Wi?BVV)hPmB}eoR&C6c?!239WoNDO}IuB z)eOtw-lkXBh4zJbHk^%Nz1N<=>}bPrY$fphaMv3YY(tZ)f~8@EB|v5x+r40)kXuBV z=3YAm_@f_bE1tdQo;3cxv*_?*y2K5si5MaCH>s07!=9{QP#q|Fp+TOc)~V7n#zl9= zU$1gIoPs^St{>hg9f-(@=`dn(P)5<#X}SBp92=Oqz*}u#buj7>>XPPj`WB2s;q4Q3 z!QI}uJ!)may&($NqzrX1=8DL(WZh^DL;kF(cZ;sj(K8K`RtB8Qc*VXoVlerYlYvgC z$KD^szBoL%EC9-xSE zCGBu@PAk-GTLzx1h8SlU3#@n2dgV1^K5>d@JU!*N$O_0wxckcOtZJNSHt$|wUhRkO z>K0|UUVFunu9v8CoTtiN$EAIqtRR*v(%yJl2WGK^;G z`|gU;o$i+CRTp(M^cm4tI0ri=+2dPg(zMlp&`G_V6(;i2=x51MnPds_gaKAQk1jQa zIpBjkRo}Z)^rcpDN`%&LVI-+HMcXOJy9}lPfyrJocyv|PkXRshTE*lFgfxa?Rkf9x z8OK*|2xwGp99$(sN+qW6uVRvC1ue`}%F=G3IuOhcYf{My>l;5fCcmOAz@U|IS4qAa z%9k`c&05DJQY6w`XBNE_yjlK+-EESi=?fK-DJzEy)i-6VJM(mfnjC;!!fpe{pNul< zPVYcx46;yds^dAuJ-U9A+iy8hw?9M52%B_gjW^b@Vq9mOs3Q)<3x!-vZ{WVo{*rwd zV0fgENP4y&m>a!V8qgHx86~lV(NbkgGfYk18p-o%6?wF})x!^ejWT3?)+RPsjC{lo zmq&`TF*GWIE{O_v_=NDw&`*roiUXF=ZGyTNib|&F@l~ z`DvjKl_s)6o9r)CNL7Pjm)TrJiX?W9O?nW_Tj;*M;gK6Q$4PxX_;SwsXmk(9BoiXT!u$E$TLnDZCQ=ip^bW%}MOcUf+T zEwA;VK|T_QkW=2yJgTwV2f45f2Frk?eWG7KlCq6wI?Xz1Bjs8A^q`HRz%2>ge(u<> zb!k&#E@V+8lfyzY3HrfTdta>~6oAL1ODC%}G-b#ojy(2NtNz?+BB2!%Nq^gFPopr* z)E^Bwy zNL=_I!{+L6(KVCh2(Ho#&xyXxELE_M*NDkP=92H_6{%MW|evfytwjpw1<@95{_I@2C&g`AX_!7n^OLuSAoGf;90$!IH#=kVnBU=srh;?mv+ zxZHgZr|9`1Hvaa9{Q1|yK;FPw+ZM{1LGs~>JXmp{!--e#hy1}Hi{-MO7tf`GJA0`j z_5!tPPcMO4%6}+-RwM#IphI^u~KE{A4x?N zI$%$Vs=1+L|3e#7JZy3{)VI9Yky2}TZ0Qt6ekkOYs%b~xuj7|6_c~V{jFmh9Z+tB| zw67G_lD&0Kg^-xymHjI}-3YPY$d4a$Dk2?g5Unz%xWUa&Mf>kS<6*W&YvoE)UPtV?yETIy3CJ)aoNcKFn{PcUlItrIP1akRpo-hb^K>Yh zec+waHC?2wu@BD(coSf6>?=&=nRqMxMY6A?ii6yuCTzx&U@u=HV0)Z z8C%8yQ%qe_2N~oq-0mwN#c`KyBYwGmv9O zOEdeTwf!vAU?CQ(mq(Au`(*?DN(7;(i!$%Sy?Gts?E+P#AC{u-v(8Up6-KkZBWP8v zz5+OM`2{Yan9mm_vt<%dy1r7*1n7P1b0dExxUx1;DA295i(s+Ta`$E5y-b{K5lo4N z`z1xAR~bm@VdW#1%rK!zrj1LgqE1q=<&K<}Q6^gM8c^Emz4Ey+U!kD_RS~yX*Meo} z9FR`Rb8W4MJ4>H<1Q#o-Kz&_9 zzy=4D40HEzzM=l`aJH=oTzpW|AqW)y_|0BXfZHxY9%fF>Ak{Zp@L0Msz{p~jrz#+O zXXLw+&oBwkur#MNss8g4+pjMv%|#pzS+Tdn@`1M-$wRiFSSdA{ynmJ>7i;cNg7YPM zE)W(ujUeDvQ?Ag}Oamx`_s;$6?4ZkmFs9${PCS@L@YrTv=L*4W;S6m0YjMQJ)wTXD z`T`wPNlmbrQrZQC27xxK66^0Ni3D-}<^ooQ@oW%impU!hP_h-WHBQMa>FHDKa)wN1 zxe50@qqqhQhgLSsIn3a;2fOL8R6iIkeO-NTtkZC0AHP5gwHi2H2hI>UU8@%nIdZ?n+&v$+MW zRd`!m3pfwSS&aCM>R@gCXrc1z^|}{H6`LgbC(?b8BDuAAG>uV}VT_C=aJ70<_ciCH zOC>>AS~i8=<|6bMWzwd5=`RiAL_&yWu+lD9HJ%*iTLA^Rh#6iWR&kd?A}yS=xqeFz zno712FEjbv_SX2-gx@2c)OZC$FD=N@k?W`iU1Rje+TOBJ?Z*vyF50Z|Y2D_aMztD< z6?e!>2w?3}aT{w!rLoA0jCIyN?{`fISoJcWrjFW%xo72o_& zJ0v;b)@O>&NMxuc<4uf6``i}m6R#Ar)zOPlY>eH5-&PqbSToNW_Jq;1#8|d@k?AxN zSQsOn?DYLB?aLEO3x61(ib#)vsFB)&fE8aN2(Cyb*T(<%YuW=pr_RCe-*haYtQFPI zSm6~IkJ{JAXXr*U)0b9Vm!tGUCWw~PR`EJAgz?&lU+UqeP6?TJw&H|;&34JUcKN0- z9EIK&iUjh`a`s=1ZwuTHeVw!%GtLVcNSu|@D?-txb9z6sBnuEuDO<-k)23sB1!`Ze(LCFrcU+e|Rqb4Kr~JF_mS( z(&W+H<_A2gLLz(4AxFL=uElknC7MV0*y*ZEIHG{CoAbmq6Ytgv!moB`*W&84NutAN zoVQyx8RQM2x+`TlO-y{GuE5MP91tI8bfi?Tp7G=V&?IkDY3H$-azI%ZLRx*8-K?3rxPxdFh<<$r8Ss0u$BiQGC2GW zyi4YB%ua;hU_bX$(1nt0BdMNH;3PK!{p1x3DIuQizzwz_INdfV~9icFyVG>h+I zTmr}EkILhavA~;qiIvM0CZC8Lg8gq=>CafDJmsG3!t=c&{ol$6ROvUBcQNM^y!q>_ z#Rn@>ZSlRdT5mH!vfIjs3moaEYb}OS^IIHO&p{PM&yjoyQ9gNbl~K3l${|vO?&vp7^a;1eUwkuOcw73Tn@)Sgc>OmoQl@QJg)o4iWcOy~jGE`e^~Cvg4o=Z> z;u0q>`{?L7Ry`3S`F3Y*Tg@s7tp)dbz@!pK)E`IC_(Zq?{GGjHC27`pHI8i_-*lX| zsCZ>WaCW&aUnHN~T`A+noIwbRbzaGY;*I*GBn9cfFPfY;Ecqv;p4sL}fx{WJI)hheD!K2|pIFieKuO zW0E4a%dzswv@yA>@GAt9b}_kclwnMHA(UsRmvd|y0N!X7h95Jstq@=b{aZ(#er7x{ zupLxF#kZb~wpH21M}(W3l$Uqu$^-QBcbV@$Ze4x92Q>`4rH#xRG{<;Fltj|c;AS59 zU;k)QfwedT!u5U@cLTaxJ#r}$Z0v|*DKPe@fUe3V=$Z>PkO69V-z$ zlI~1R0LFVf+h`s`&|cg2pcIU0jD}}^Ff2+E_xaHCq4`~L(H3NNS67(0Fu1*RbFzT5 zui4Oo169vn!%9r>fd0D7!0VUiPCXfZBT4jK4P5|N2AG(G+DL5XJZ0Yc{1EOyz-VUh z-bb67m4-p|d_yrX7F1eA)A9_XpvtCl2#B8VI<>g`bGpf0n_;jxgVpNOt*c7T(~Ta^Bx(Mw8+?7B!s8nQ@No@nJILYptGz zGM0kCrKbu;&4#%|qcIbEA3N?QqGx0c9|2_Qt0K8ynUS{sD@Xo*0b~3q$ys`K;o)NH zUS;SP6_vvupC>BepFb5kBqlu-Iuw;v#X7hq#WuK zxHsiJI53A?2&%nbDl?hwfnbL_5?*mIIta zYcl6TwTL_~gX2}uPf&`eI52oU66-7JUj;1r_#m(JOFm*Uj+|wr^Ml2?uF3jA&w}hB za+m=%7Z~hocQOdE2B3nA@)%1UqJG*a7v1+(UfByVA9v3m`?R2vRz26rj*tS+6sx=-8YhN5 zTFbUdcDhM{FEizFRQ5aWXVKSJaD2D*&gyAT^RU>36QYti0sHz~;TgjWVGWHbqTlaC zm(0Ts$+we$)hjT!$aA+Rbm&1_Yc>t!y>m+C5>XoVb;wB$cMG?Sx@C8Rs6hD`iXvKK zn#j9I(Z`a0I!?3x_;wFT0W(0LJhbl_^=}2qa)hSUn6clb%aUj+MxoWWT-kJJqy%R5 zcDdtFc!akcu~$4RCdA3Z6<$`9(6#jMw~He-+0+PIhX^qZ%W`1Y1a63{9qQx#0(lOzB!2+iVFkUsb)$%kcTp;Jw zx_IjJ7^BCMEexkI5kjVTk|xO?tfE-1TbcQod+m#MFE$&`-|#E^L^DY#E!lAVtf?(>cuDu&@8QY&f?%ozeXy~ z;a$_a>0Uk+24>|oYxxqM2JLngRJU>!nGixSuD?eSxmjmu{5oo`7xPrLZ~-s!vZ$sU zukU-xc*yFirY*5OM?-%;+V%FS7lGxihhjAqRH2=)xOx$sU_@`nPZfeo-aUeBa86A` zM7c178ji5&8Ovuz-JaL26cztmz4SwLaN@6*3tE5|!;Yv-T(pck{4X1MjZ<y`Ly8-2n1yr;Se&{qB*EePKBleaVVM$GBM#xE@S@N&Ol%g)R(-OaY&ftj z)LkC?{HM6xu=E$CroD{#QooFr+HPW0o&81T1|L*a)@>(ReLCR!=LMkZGV*jc76|TS z!1^!-KdtqbF0$*=zrFT~iA5hSapSSH@Rlqh>?(;UH4n4j=ul7OV9hmT804ur!Krp? zW5D-_BIHXjZ#zR^wd?{nMjaHL(LCE-D|PALC;tZkU_hV0;#R-%f#m3+iwu1$tiCUU z;LTIIjB8&D9NW9~-Z<&;e)|eWHbVe`zpDzt#>z$>54WE%Od0 z(6GMxzA-taw(Jhr>DdTNIaB8rD3a8^c3kj=1mT_Ttr3PTN`Ep=dp+T{_~HZ<3e$J# zr``7_UGLHdZM?ErkonAwravp0>Ckivq z&OUgX`G2EtG)sbCv(iflE4ar)e3qF(iegZL;!$jAYAO@KTl5_py%&-u=xai`0(CdY z?esOe@6Z&VB)|dGwz8E*y znEc0C8W3f)2OA0!hr>;)Kd#7urh64zK&F$BRHr<~jV)>jBn@Gz(u>p4tTRRfhCi?w zR8WuaN6mnMI-e8IH4t~ zbkevC)&lB{v%`JV*;S4uY?mzMi*2^SgV=Xx_^NAR|8HesN?K&eCT!<9_)umm`^KTS z&V`r8w-O#`Yg04%hhtxQZygzBT(=ZC&HW)9qtm?o&;#W!o0TBWnoRxJTYlgvE@+Fq zm0u4!lx7R`##v<((d+MQGJ^A+-vP=UAiIpxu_zHynx-JJ2@~)Z z^TA2Bh5T@QI=4=AJg!~!@L9B866+AnuD)ssPwcEZpWV7Tq|rfahxkiDvG7EsNj>b< zRM;qx4VS)3Si}(Px2Jjc%wdP-HT?AKsGW5& zs7306S$B1mH(IgHHpwU?R-NoNsKC-DONC-FZUt;nF?N@6znOSq{}ocV9r65WX4plK z^@{;cFjX*Ghb4kAm`y@HvTqffy9P3*254tc%^%cgMp>N)8+8eLS!9Kq+@T6UoysyJ zlFX{As@WFQo=qHI0$?3g@%FJQ)ZZEbuOZ*e&ub9skTrVgCh|(#!GP-7lm(R=%NC6d(@UT3R?q({*Hwk<$7=}b&9!BnLanZ&6{Zw zy?^0libzDZRgdcDoEQGHF6>J633F0>lRYL$5cmp0idJKTk42tZWsW;%<@*2jX~U;3 zW!=ELDgU*&)#|$yKUsOhE-2OPh$WG=5E?rXMo3S}mcuC?yD@15CmXTHUHNod?iY|ymU66yURwtwR)n}G!e>;Y z&oTP#@PJtl*!CgT{!f%?Kg|GtP+t?OrLF2jR8|A2#qxN9cBJng@59icH#?j6%s&0% zS=bYCpq^znikHopw%9){GFYw5`1Oxc16 zE=kh}j&_2D(|7$_H zoQdaTF%pPzi$%T6JNgsKJv;w1P|v^*e^Y~d1uggb>qjfD22@AZ&mrsCaALk%|?7nEY-;q-J+R>@z|AVM6o={ zgQigh1qboay)1@%jeDr?`F0o}-%}o#_WgB=wpB3uASI7SG2ADZ>JI(hc-R$j@1Bxh zt?qB0O#7yqLTNl{^ZO5@R^V(HA=Et7yn6#eB8Y1`Vn&?u6r;991g)>P*FoRAT2eaFNw+FT(ArGE*ODZf zRVC_dJfb&6iO)RoUc-s79+13b1fSD=snmpMlL-uy>!a_KM+T+2g-u)|Y-Nmw#Rl50 z-xw6Gj`VYOH0xDPRKi>s7m{h?-EC!}y?Qa`jU@Vkw=rnTD*!4GI}eHi`COxJ}H zXfZ=oNR~RN-qZAb<|KB?zsaWSVa9)h&(Uf4wfz-gvU*K_SwTwn+Wx*Wz0+&@$8UNG zC#9ha5%AgAr54o$JTt1A%+xM46z5O^PAU1>z=BZdEFUU8pTbq(9IjSWkS)e?gGqQP zacv9JwV~)?<$PKDWbFt-TTB+YDSoi#NRpTwT0ZSwm`OSv$d>SOeBmq zs#ka&6e30KdcDM{Taivt(H%NaXxWpgsi?hr4`HSOy1J@*WeV)4hu1~;s8CfDI2?=o zn&!aQKP-CluAfv!lRj%3v+Go3+c_YM*ls(;-(t2HiiPDJHR@0YwMNg~8VyvWri!+K zI~hISL_%@J2l zhv3iZJ^gC*BPO-M!Mk?^&Gm9Eu>*###VQqU$ zK5ZkqDh~Fq20oP(DumKyA8z>}J5N@@*LS>WaJel7jvD|lsrHe0fcWI*-1872!tEA|%vcraBOeh2CNf4*^Tz_Q#^!#S91 z>zLn0u1)@8{P;C{5}Kfc(JWlqZCUVvYY86`u}{#(0k`?F@8HVuHMPoXbN z8KBeKXRA}hl`@XGO*EOjHN|d6k7tIAvF!0T=Z@p-lAY!*d0}Nrc^eR6Y3l7DyS8Rf9d4AZQI*5&&ZkkBlVhNAw*RAD`PXF%TM|HZ_3plRGgf)?9v_Hm|Zo1FBoSM=I@=2 zZ|J7b$nv!YA>ieecGb?K%nWrxSzuD0K-$M$fwSqA^7bw{UvF|RExB{KO2;Bq<$Y)iXl0|9ZIto z=d9|gj0kaC&A)F+>r3-eM69DXbEIv}^WTP_A^+m#pS7L0D1C}JOD1ZRWJU+Xbwc4_ z0=R3tyHW^Sx5ZPr9T!$JpXxh?M*eOMRAv6$R@cNI2bt;R1(toZSQd9way*WEBRX3o z;J78;&dFg!%SZ{KD%?mt%zJiij9Sv}{Fz%J$juhmazGEQ>AL`579st{wZB4dqlzpQ zkIpWYpzxTkfusOtrnmW4=hdAJKlPihrm2)NH42_*%!7;nyfxn3KExW1rgB1G3SJbW zOevB;2Mh$~N2gM6#rMJfD$1pd^(`4mDS3Zs39ROSwt{iYN)6T|lOP(}O9gb#P zK;i;lWl^5&rP768OKKHBU$VGTR*2Ig_%cq2nDVn2s~k~kE)up}cjmKmyR#V<8Z_{V z9JxuJ<>lGUzr_l4XA4kAY`T6(TEbY^Po>rTg1q&J6Ew5^vr>DnCv_ECQ`P>TQE0F! z%};IGYwR6U{i*avo#^uG$e9wc!7n4`pRCX=6MHah2hGkGEB5G%V*bosudJ^6_qgmcqm9l%Yv7;r z+f3H*8u@a-$C2kw1;y}HCvEyntRT{X6IcF7GRg45zNd&`5_yz+*bU>Po%Z#_ZhHKah|-9y5Paa6*vFD966ld8xIoG^TA`F)flb(GVeRYp}O&2_zfr@_p=Q z_o?pG0d^VwBHCU@C59($;}fdV=*=ko@*gV|5Vwj0R6S`C0qU0Yv644phBDs=A~~!U z)$yI& z>EO`~Jey z-(J`A-$gARky7A8b<8I7Cv#Eqp15Z{w|-~Us}~zlQ-$oni@K^Qt%cnF?IR*T%WkBU z*BU2Y6HrTKjD+Yu^-RD}in=YP-x-F)F#QdFyOJ?t@%%OG4tCUe=7L-pkw8mF7Mf*k zxC}m-QD|n3_$9@p4c~b1C5eFhykfg#X2XXZz{M<`6ufE0RYH=>xqG*&d~<=La^L0KS~0wv@vzTnhfB<@>yqi33D7) zJ}i-loAl4CZ1E)ZJO18Ii%Q4k+Kom=LlVqBrYvYNXy%v}Z*aanpIdZpmNdkl#|5Wo zfA^XD(R45HqwUzyD7+Dnf4ng>@#9LQzpKuiuVYj%^{vL9fv6EB*2S+3a1BVctHNA( z-9Y-hu){ATrl(0rlBdFNQYzv1fJnA#lQc|)Fbw0}GvRMXC_T>r1n?At&AfY|2zNw{ z1-;XwWHEZ}8$ZK@F}WY~9np6yx1z+AsI+n=DYr#`-LJJ9%@-2%w^B=9GzM6Q8XrA~ z!H`Pfo)sGC1E^QNSa6Z|oMnSpcKa2`r|jukJeNWy zc?CMsu4k@xNoje!TqqnKQV;P?c!Dv^+;rX!sAymVjVJ2aWj^t{7~n8e$w*+LY~Hs1 zL{Ke3nO4tS`LU+3wtm}TL>CFLYwT``9`Brg_sn4}&3?6Zx_=S3#Fu>CzoTt?E4+ZyAQ9QKA4*=JvvS;^Sn=(c) zxh*#XF;RpbL~Vn8ROZQua$uFs4pwXfw51HxDrpeZ5nbX|0S`D7zzSs^X@WITBz7(+ zt0g}~DoxvBqr6-Htub zJ0V~{B+vk=8Pw9H%Jmf+q`B;6>s3R5uEO#?YMeBd#GCs=9hD>PfeXH%ohWM7l2kk) zRf}B$H#un~k!GI+buddT@5F(3!qY+L-*Vu8A39pXezzID7v&A5{1x*xU&?X(`qkgA ztTH<&rG8e}Vmd^RB$blUXrD-{P7`UHshGovr6Q9ZZHPNx;D&r4XfCoI&Ru6gxXh;B zIRPHf;G#ot{te-mki=Hex?Ir((6Zjh^w#^3n%_>}KT0f(GSxenU~>zCxN21q3-Of# zWwT^dLoBRC6S(ZP0&#|96XlVK^P|I4I#|X_Gnd?!3hy0`AO4=Tnxsh=cJv-F-gmwl z0?~W5;HtsKo7Wtr{?afq)l3zv7rHG#Cy~QtQ23I-4WBPGeCpu*g|s!Vm$XH~rY(bXpvH$anvC;i)NwkLjV&@x z^jO^zfXw6=7EX_Ab*Q+M8j>dp$*E2BJMijCpPkU{Lhxl`= zty*_0&3VVrgMPP9P!J$Nfrb&LKXYVLQ#@J%VTr8P?TCHmj2h?7vJ(e<#CE3(KFOTi z(;5fEftOA+H2POtzyT`)?;nkBju z+g{aZw8(j?L$t`Eb%v85Ns9D+^x~~OS!_v&r9L^_qI4W0q1bj`$9NlOT-jH99EVeu zxThf>5PA1MC?-O5v$G#veaAJ~o&2VPiy2N$uTs`$bR^4>ST;+>8ZMZh(y>cS$w#x4 z#&|neBZvM{xyMsrv}yS!R)g+qVw1B@UY1o~M?Jcb68e>OZdicRZFK=ipVor+ity`( zGr^ApUp!t4+rPUn6pMPV!1a1KdlYxM!rnvfpye+OK8=bKpZ!}8hRJ_0N!_rtnL?#! zebis&<#LK%nrD{dt%4}Y-Zn+m?7&Bd2s@lEcb;!%;*NSBg;u9`H5g51-)DQxibrK=(|L?YvACgN_}v)bfH_ zhbBU0E}tK3PmCzo>xj@lU9wDJgWFSQkTtS%I6OEaWnr&g2*3by|iAQ%Oz%F_1lv0i3)8 z-WR^X1{<;|g}o4`mLm9h6)R;?cdXq?Rp^%#GT%eLBo}3R;s#tR0ZXx%XX5_GE+MT?H_R?OHa}pdyxPS~5HC&R z@=i$0bJ#OWJ7PVU3s=2Xg9C0XUFlyhPx@k~H^hQ?%lty#cIs$_EL4=*Q|t`*gN+(b z<^@@)PcZytTYh$B&_=lwl`mDL&{!RNBM?qlQ0UGlov=weOtmWJLADH>eu4zP&uuNz zWF<+@uIOKRJ=-(Q8~Yf^nC8o&~0pP=$uD-{{?AykLx`6(L$L>g?=SJ8LTXb4=8RnjMasLj zXajia34U>DD_-&+M(&xMIeTZC>@1S+3c-K7X2~8qA*ZA5Fm8jO-~wo{Vv9*2ag%My zx_-eG9TL(H8_JKley1c2*shBhxSw!#{$79a${BE%qCf)pgnkb`V*cn5FWU<)=YP=aC=YEZ2~3!3e)2fG14 z0QR|k+S7KdLl3$kV1PzI0T}}aY{%`W9XsI+PP=Yb?br=>aNDyyo((v2a(bP0rVE{Z zP9d)npYW+jmrm>)vdUGbH@16P9(8#wbYYU*w0AgCx+14e=a9+hOpaivD~4ShE=b8 zd{YP=#u2Ahh_#*dVVu)2>kYG+J$?L?T|11z?DJ*cx3T12-vuN;fjnVYwqE3S(E+;) z?h>!f3@Qf9Kl3|6Qsu*|V8Lyca`MZP+5xIxqqJ4ohgIBTR=&gw$90IZqP8WLx@x>( zW%=y=L!%*f6|UZW5@TnSQ_?!)>`^|vKlrMM!I>xJx%*(A59DK#E8W}}wNg@$Kfsu3 zP(5UYg(h3uS{KCqtMEB95@Z{eKaR3D3D%yC(q3jJgQTBAT^3ump3i!9*nLy;?h^P@ zA`eB1A`&Pgi7HZ4mz=#h*4~_IZ_c#`OV#KkR^v6)n7{rOKn1@DsQrfNxkq3Q8H>tl z!ZlRs!11g~?bLEj+TH6LjP)1W>HG0M>Cf9wY2}^9(jTwr#Fl$xPNU9h;p2Ck(b9yh;LQ zGC3JiB6Z)P?TjdAO#&iZt;kNS2c7LCt#P7NVZ@Xhf;^UY^2$YS`j%W$-)?QJ4jOT@ zyYjp&TaWWt<Hlhk>sxhw=?HP{fdNDLg2GgH~vSp;q zUoOi9{MhaQZLO=|s$_uQdDH=VKaBzUau`3C_7H0Xk`;|)&zG&|v(>XzZjZ=*n2Q-~ zVu6}!RTX6*5@~o<&r|tEn&l2#Z0HBK^~K&O<2}N24wOvZ^wf1)MMCO z>`hjRhAREl>JS5y3bkvNz8wfk4=EVPa8v6kiQ~ahb<$TLKJm0Pq6=*q^j6BcMS)j+ zSGz0{paUV&pKoOD-W&S6oR*jEFF@EU(Pj=*9^vchr-h`L?EeP_BHM45$X5H7@UVSZ z0!%CZaS(4+O5L6fLM411F*YFRX8bBI9ku8c1x-bwen+);AI6bh1lbw*-)^48XMTgURIRZ zgi2k0zMUzzSd>A5Uli#;v#xuB0=FFR12FB^4p+0ClUkc!%I3kExsVUR%ynr?#|RO% z2khpTWXexTuIxy~5EoSG@mSJ4BW)TE*j4$Ehd7=_cHpp&4}|ctM7E$>x7vg^xY_7Z zz!#$2VWX%vpO@xlxxq*BY`r3Hmu5HjARMOF0(tAyR-Y3je-4|z0+k%9;-OjtvPdkF zi_9Wh-_iS&FFHmw&l)SVK_R>)=F9}@KEEC3fX@u$aIt!Xle^5HsqDa_N+2J|eK{b; zbhG)&xR~~AaGtc6zGS~kgaLAI+iVtD4v@F>pS_kjA(b(*v8Nm7B$d2BRvGLX#TX~< zOQV)O9}7BlzTCFSelNOLLJNTD(@I@9t?(USk8ourBYm?aoTm7 zKp@l>fR5e_>SG69*qi36hQnt>6dOyWxDyD@h?y9+jmtjfsb^5a^)mycV9m>)agX`czNqH;oz_Mu>{Mo2U z)IV1gS2d4o2&YA9@2QQ!=#Ue+kPha9Xe4jWRN!@A?S0?Jxv^<{2izzf)YD7fmZalx z;>vY`S$2irNDSIi^Ah;NOj6n{9W|S)BCKy9IOk;d&-+Q3n?}V9(3Tm`DMEFSIa0%f#fWH0%n(U}?8zkOp*&MK z6C*~HBCSMZ!k(xwC~LjU+kMJMBi^f!bwajd3Jof2qlHUEq?t?~_h9H^%bK~7LH9TE zw^bBt=fc3Bd+?uM;O47L8N2>d^Kkm^gQ`h<9fuMXVOg7Y-Y zKM1o4X-1eXB9}#=@fR|ruiDbznVb?Wb6mg+NG;6>lviGl1G|rHYKj6Oo4@`xShLi* zS}GD6t`B?{F;dvN&-+q&Gt>T6KKng&B~j@%g0j{-$yu3TtoW&~{|KIcB|h+hANXUg z^Ogw4TH#`{?!_b!eJoXHix@W?E-8lexOt%c3&p1@Ri-$MKIXjLx{KTDV2%fGknuCr zUfAsPCB;MUYe#q78*mSOQPed)t9KutU1UxjQ84B(6_zjc|tu|-J$~VT&9Q2FhNpT*-V;+Z)bbqZ?$i zh}y5$$r-1orG9)h73M^)K+usfqw^(R&><$8>s2)XAAK zWMA?dogU3Ym_#@r!j6DsMNNmX`l;HosNR6*VJwmxFb~BdD;4lMtUTBBY4xq5iupd< zdWCcxNgY9Te<3|edDIN)n?l~lE4iH>CB`?uw2fienk{WK_B*>IOsNK=+igfLJ8j*0 zdVo7XBlrj0vetc*8B^x_c-m#xwzh+>oD&n8>4q9bjO<4B7f3p2?rnM!M}n~G?#fr_ zW_&V%^Ay#RQ7AHF7dqi+8){)=)$glze;kK za+FQceP)~+*1RRjS^q+1lM*N^7Tk5%AicGht>>$bsLNpjjj(9Vbs>1|Mkh5_uQ<$j zDW<-nP&ZU=sEjWK!pb8gXSDX}{(Ymjg>TTeMG>I#d{OseQp&Db*1IW<9-@YS*?O!J z1^yagm+hRnb|OpQzN!HWhEAKIY5fa@*&5}td^mWk9uu|yG5rtQqxJvk6#0jGk?iA* zo5ma;c+VW44Qap9e}uc*UFJ_4-wy!;2#}ya!w3`1U6jkAH~U!c7F$OCxD-=N40_0Eo~F(lFp__` z);||0COxVGXUv2o+gAz&|2lNJ``$8dc|x0*)L4r8mog*{9URe?L5D`zG{{AQ_MI`lzT-DyV>=!|~ zMC}KZX)lbinOvKVN-OEuWFmD#boWfKkMHaJ)ZSYRL>>1T8jGyctnDzeg(8AnLiR6) zUlUu1VDoLI%f1K(TyU4$j%Frhr|Gr0TH<`u&YHmFur0|uZ47hnDG1&acN)LM^7O>@ zf}H=R^%JFZ) z|7R}XAx%Vw|NRyruuq_Z(STu5l5hB5drI#ZVeZYJp7V>%fq;|8E`Hi=^VOT3)E3+w z%%!%V4HMn2c8L3$GHXL>9D}SO1Mpp8Pcv}I*gHMSvCLT1VYYT$z@LxW#byQEnTG~U zXEjsn_?(scMfloEP*>l=L0%Mrf8K@7g)_an{;^r}od4$Wp{hiUBV) zx2Q@nP^kd`3()D;cfY3?`M~~#A}1*^opLWk+7`S`q6LWc;yr=2D!*78XeoOH+j-O$ zy)Q7KqOIhD6;3V{*!enA#R6pcR4x6pUI35V<<-3n>btD3ympgrRY{G>YQ(ExTiGxp zac1TEickgAB5;7L1v&(3rStGk-}8ec6R25BuJHXi<5B) z3k}q(I)i|%>+78Lqkc$yc0qOzbKSZ8M;MAU?D_|9m^1`QW9Ol7tN!^o|KK^R^#9Jk z{Ez0`DjVF$ul2OqiV`}+;Ur1P*)Vk7RJI3)g|_zTW~jMCRJ_2L*pzrrKP)q82D1N zRWA98?De|e%OJ*=+!mU4h*v|v_qLqa6?gB}_hC@gjVJ8VD!OL}L@be*T%j>qLVKKD z3r3cEvg=cV(!Q5eT82s1l!;vN_UL&(U@2s>@WSfdr|wL;Ygh0COebW1seG!%vQH5( zUfW1{&swFKi`I?R$3s4XhXO*Dn`fEt1Z)O8eB5d840`HW+Yv! zLIdcon6k!BETd&I4{RA*&!^lTo2j;ZFqga{TX*(DeqOQfqi5Da>l^(i5Le@v;SC&&$tRY}N`GTatTO;chTHMrxI!)?uSl6M=}drn;C zNs5^pqquy;-N-#>%N9PAG9*S;Tz9dX?pnYNftR}g?4hA9f6qpzp22bkg$Gn~jh!CN z?2*evsf`tDizpVXbl*vH_gFptVoMVaV}KLOVA>Az*(Ibmv~`S&Oa74azL$?Y*l(8Q zHK~bg$p9gZWH`|X*1V4v6QD}TIF39<`sC2*r#Z!Dm7l|=rH}^=#NE@l4HYFj2;{G)lV3`q3Cx+l-8evAb`oJ`V8R2kocm( z)hfh&FwSzL92=KS(oljQ$v-T#__%A-s&`@lD+|n$o{~L+WV7?H$nIvcvk9Z1?Y?5h zjj+SnGO3(#b=%)ExBNcd9p`g(yL6aWi*td;tQlckVq_{Ag6$L+KGy=9E3Ta~u{1+d zjkdhzMIB2^ATuS&UB|=FV!sGl!qGo4Sk!t^;M#dsQG!`S4rO2EJ}W@m7b^ z7v>Z2Kc+h_RtS<-)gNai6aa?|w6gffNn^Mhi*fq+m%ZRXEuOSr&RPp-b&!vuXVrQx z0W;8Ct%>YYZhp}(?mQKE6^P8>`{ij%3Kta_Rs@R>C`_~+mbGxb=%ra&ppUGJ(7gfY ztZ7hr-GaMSQu7Jz^`h*U4EBu1vcF>P#(O0Z($RJiweb5CFX{9KGmVnSxj3ui2<750 z7I$U%e?wAAqbALdX0jysKvE*OHdQt0CrX{)?{1ewgsrlEPsJ+A+V!bEhFVt%Yl)O2+$J8F$g`R- zdF9{s7+T5_KYp0uan=GJ5WZ~j(XxK!)@l3IX=QO5OHangB94H(Xey>AG`vdq1=TZH zHa3a2wy`BTnMW%=x zG}iltLlB!wd|<^`nS3CH{{?qBf|?wA^I-o%v7eOyl5 zmT>`GpzXB6c)-y)j~kY)umEBuF*Sm%`S&>NY3(f_2nIVPjAT6Wn++f%I!y6b23BS` z@0goxARpB-XCO$55{4ZGQ1+&pP^h$TcElJy)#m~ltvQSjQxST8D!a_J9xIr-ni50^ ze3^n-P7#ilp!is;-@nX!_CLx?25p?BvWUuIHv<~V-XUlXI{m814q=R)%hszhp7)0~ zI6 zdmN+H0}yz>cPrloQac8q>M8*Y7uNH!#_!?m();P5U$6hA)6#dc`n%Tm13YJcjZllX zNF5uom5ye@x)W?TD3~O+3fD7?)ObsO^Oc155STrG3m4d8Qcpr7kRb8yiLo0dJZgQX4|wHGTrJ$ zFU9CVq855pou@N|ROuuL^YtCR?vs^X(V|76m(uXpgD zpQyvosj~XJDtfm;fCL5lI$rW0|L61Zx4OIb?+@1M`Qk|Y*zd18*Ip$Jv%-q9;BJ&f zquQHsGF{=Mb~-S1Y-gnDLQh2YNHI6<8u$v7_ychoW93>sRaGOEP3jz%)wbe?!o^{+ z0)Ax*5?|8$z-}E)aU*72;MMQ~(>p4Jn7YC=jM0spFo!py)hZvSmt5X$hxuZ<2F#9p z*!}aIxP1$i^M<#S=}B3+k{cDz?wsk00B3gd(95^(4c)XW*31(O;R0 z7Ujv{I|GdIk!)N&QzvK(YbLB2Asu?dn2k8&p$wTEYs!__h-n>>H%}&Xg(%gLyaIJ7W2q_`KErEbAmvADarx-B(9>QwoqL_ABaBxW**v6QV+ z>0o#jjAcF5;Hnm3q)YJ(#j0cfVk@Nwp1ek@aFrLfJRZmt!ZnS^S^(JVkYEVpQ?!7KqW0xIoyX&WE#5mcvUpB;L!59K2c-`s%4bZ$Kn z<%z7%8q8tX*&)sNv$JDEJUIJ~vcYWd-~cNg8-c(RQj8j$A|v)Ts|yzk5v>v`WdF z;R4%MHDFV%b1+8zA2VUZF<>I7vXdoxWlP0&UDcj2r>if?4L@~5br{lMgt1W@cCs@F{qaBQ?uO0E zmDe4P$=>#mk09SArZ1bHmcHBmDF~cxrUqR8`V&&0)^?cxNCMykDM^Vo0g2h?99k{j z{UgOjAn{6&?0wH1pGiek8gi;>Zk}%T-#7RetcUw$o9_E#TMAjee5su+#?U*2E~0)% zS(vQFV#sGD-L&U8@}5{T(5H5cT`@YJju<cfeT}8O(|g61j^C$&IF;3b7z9hNnk|&UTcWQjy9FXFSxAOVB20J zkW}VYpv5{<3sWXza>vJs@)Bc~r*uhbiQBd)6*kRDtei}ZHM{ncq2RLp2xJCXtB({sIl^szC;V|`ic#4tRu4K0gYwZ zo2j=xh>IGwn(NDilPpwEgL$31LKO6}9ot`38NPZO2(HI1%98S~1F<;fw+Bmk;?wRoLPt}&d_6FR;Tx3pN zq?)}(lua%+ej}#DOeo9SIWTu9Bd7YzVXf&y=}Kf1AKhyKO$G!MmaPH=qH{8BDTf6& z;n~Rz;k1?fz6?9pNn7^@JY&>)6l@%_m%Br);+`-n91Z#32Boas9l$o~c0uy`0kz;7 zN6eB--?e+A@wO(v#^2?DwM7wDJ=|;f&6~f^KjxqFule`pz(cfB*!Cm&ojmEyE<&X|`24Y|Dwl6&ugZ5z%M-!38cS_Y{$z1M2Lwr-67p zt(@aAW3~}zj_Ez&o7TjfD)qqp#9SjXH2|9AmSm`>Ppk+HT4xhD5@R3eH z`8w5OxuI7p_BFJ}i{|4B6nevpbWo&grN;7EgLbD!W7~n}EpbyW5Gijp0`b{^Ix#0_ zAdK7N`kg7ad8y*EyyUn2X)oID4a+{84rA8g-5%wXtXxSBTC>hFTX2`CDVoLS4Ca)e z6zI6AjTL~L0h>pFo&j`w*jLnuDdG7Ve6^I&a)?>toYaij_2t~nLsVO|=pk|-)>c-Z zmiGYBx4Ji|dY+drxi|c!g(yAypG)QqTmyEtfs(&_{e*{RWLk^t;fj1HDaoW{3J3Z( z0|~rtBEhGBp=id)14TU4d_Y}tuDME-)nf@P|Bd)7a8x3Fsv_sIwbz#$T_%+gzWg#S z@qo8ip`20dv1#$p+L&eY2e+_EBYrtw%0@k@0N>(sZw&_^0nA6nJ=2IeH;&B7rR5%2CsPm&kExzMrK z)<}%%qdsxOQg{|YRZq8{3R_E!dP1(AIC}Wv?tRg->RY%}S+!t|$u=5FGxmb3Nz)$2 zq$ee~s~xgdPZZ!?VR;z(-&7E_^#lD!&A815YG%5T`+pTkm>r-^moaLjJvtTB4JRad z#pA6aYw}k%M72K0U547rR2cWo9(*OyE?>$|WZw+%!6mxL3Tx(O4h+RyxZ7Vms*g@&Ib_W;;MdMf7VZM5UEKgs1 z$>EU;QUHwyptYs$0PiI2sU|_=A`NapMikqXG1b$wAgQmp;{1V3-bUzi*UN1q7kj|2 z0?AT$l|tNzna`fjyMD;xY;Pzp$z8BcU2g9o`5*)Sm9+#*q-;pvC~TiEF~onC3TpSa zfgc=%jeTGu&-O<&0gGS(263LQHr5bk0j7HH_z_mK1p?wQQ6D!NBBHtSw{jINTaSXk zc{D!UMo-41%XZE?Yp#k~fdnOlS>Nhb;mc*G9+m+n5nw++@)1}!YnJv=N1i$}bSFjl zk@SK0EaBG|7`xXi*gqJ}?R@ZZ4mF@VY(2-D-2uozE*HAE-q|iG{AHQ7lWRAc0zSd@ z7S`@Qgg&6Rw)T+0C?gXBCqgIu{@Psg(ZQl=83!oHqsugbl^>;8+i zk96z_T%PN}1Zqel+x9qaV7_{+?7~W$Lz- zq>Ftmut0Ct3b$1@Vq&_Zw3;kC5GHXcByLFw#G>%F!phTFXtKR~y+Xb`+p~Y!zor_n zi*>%=l$Y(=ZK9yCAnBi(hp~XFNiKGKHUg=xFX4cWb^Jact@c>A6;9KAjapA1s_Da} zUT)lClrgxX&NusXq;0b?bc+V2?fy`hU6oEWuYtL;|4 zI`wSeqrp`#hhZ&s29m1V>Yv|uROMCr!$kcFkbK!rYyg{VD7zETj*4yGfBSU7&x{N1 zav-H_o6pKr(Srw|2*;Sqe6|!Oov?qacOUY-mHn$uZdmMFB~%8bcG_%r+hLig@}Vtl z{T;R!?vi;`e?t?qi5;8);VjH-vuYu`F3DB-_F>C07#-?YXd2{ita>V?YZj-j_ix>w z5TSq3r0DC3RyJ3qQ+ts`!}5BS8#lD$5=h(R7yuO;jBWu0W~VFmV?()8-Xf1ZvunZC z6KSKeM%~6(@Mjx1I}#+|4$$F)vCH?S8IUcBkdK?9ASVQAEu)u^4^jl#%T9b*cXyv^ z!^WY#F#Y}seMFeH4Gf8psG+)Ht(!|+`x_?6!Xu9?kP^MGQB$_U!on_VATJ`09`eAMH|gRoR~% zVW^g71HYsm0wZ!Q63W70!B_LO)!`f(5uPMjd}2xwb>HbE>fLVAp>pg}l7+%hEaWDY zrEi7Ta9VjS)4~^QJhZL>(NIwcC()(8iMwZlXcL5}%BcI&c|FKuie1wK^0OlL zvh}zs3tbA`yJqQu^fNE9JP?I1;bW@O!4v54{{7|S*tm0q`#L6gg?x@HA4>es@ECa; zuI%hqh0PlmCuk9CDDipD!j;=r)>m7}3MdT76#6cm6 zV{y--{tZ&hq1Y7dI|TR|s34e*2FU_l)``GS{3;nWO*mnKE^Bum0Bg73F$+Ezwa^2w z0wFiyB@vy3`>O*1{(eFWKHg#K=Hs}BN!IG|4?8TlCLAXZc%LkYzjV|PcEdt{@?|?g zV)iGFkBqmjrcdn98zxT17VGI1^R`U0n5~&Hgu#efBY{eHJ`(*>3V6HgG>VnuO?yc4 zkht}Q#lLW$a5rwqz07MDn^SW*_TRRzJoL`bL3f838llwe9dffN=C|X@KP`bZKb)bu z_UEn7x*3Wag-fER{ZcD*E!sKUAkE`on0gt*jhYWKDw^?v4p|JH(Ori z?^~BuH*ifc07jLERd)xKm;SPcRlmD{npJ<<>XrSa@nu_K0M`camp1s$fWP&@cL5K6 zXCPjwDByZoe1r5I+K(V!jSxQ+(id$)-|%^*RR+DNS};E(Tu4*hLKDh$NHOml#x3{# zZAWowlB(H~KX1W(&assi>SX4}4$f-f=g3-~>Dc$&&9U#-I?2T3?*x|iC3inoGEoAD z^c^;e6uWWAorVdu61X9j*$b0%wB2OcUiIWbm`yfPEacniwR>hJQOjq?L{d7{nk;Qc zRRy2U81-eBfsXs-B@C#ES@xT|~;!}=YW-4x5IaiybuC?PF{w&$++V5AF}2TQI*J3 zE6rU&yEu6WK*5eT>x_lo?mg(Ovu6YI;8Nj>>XT1Qe(hslOE}l^2fT}z#Fg?)v-yZy z!v7|I=>Pma4C{=qIYK`|3`S9(eQof+Kj{Db-z@;n8(Em;ayj7rg%1oxG04%-Y9w}= z4g`mt3glSB2NPno>I(sw2ydtSNaeNtopsi+_HY&9$`Vr~$BMj#X>N0!wUjDr=aI=Q zvmFbf28zXOC#E8u9siL8#PAyZVvotvv)cObW>%Y>R;LnKdv*|@n>ld)X;)ekt;KuG zCeX5zfsuC%!}aJ4(Dw^{)r(TPIqbRogh(+YB7dh`c2NJ#n2%7cSTk`enJ+9Rzk zf%67Cf^w=au-de7O|)b6>d%DoN_Jr+)pa1fvW(-7F+vDqS~pTU$1uS>q!7wh2nk z;$uSj4)QKZjK|LCN!N_L6|GnNz|adH8Ra7AuWO}SEAzm93^hT41y>Xo%a)1(7JD}E za7zGwg@c7`q}*@mPu8N5a?+{;-r0-@y&YCIApDzxI)Ycxk8sCddYFTS2DQZDAD1T8 z2*M*zG}PY@ljO$5#P10QBIje-3Q6dPp$`1QA1#zHO=GJ3si9>*y8hRWUHJcA`pdYf zVFO5aNc%DF{gsU=M-Ce|-QBQns28<705V;(F#5f7Yss~4nahqt!LBD)c2eEUFY6FB z_N**)ZHJ?O%RGZ`wSAYrU&=tRQb4|izpq@)Cik~zEiUk32fT|?`AC}o5+vQIZ%~(k+42VP6F!^gW>JoD)2 za2GB~W*x7_dtLb~-d@4PJE53?H1yM5+vx z?hl+P51I>$$fKm<$7~4bUm`s8h%qCe8&wZ8w7xbx?0JP*a}UN<50G(oNB zDN@WeA$C6uonTSjCkFktmcjCfR+bq$n-jw1kc$+TG(wOfkTEl{yxcO#(DI7M#X z=yYP6%=%jhJ2GY5;?c0UiAbc)h4YW&=ssVb?&5`HV_blll1d;^U5+T~HJWtrYA)=D z@)jq+WCLvH&*vk{N&#Un;3c0wOtabMefYd3zjaYb8yVCJ}6Hey+K-818{ zSiVxZZUn(;xmK~iYyX@7Np7hrVlGV+Y0qoU3xlMUy-z zdeSc2fCEx^8sF&jBp-^1#7No&_mkb#^`vb&Djj<$8}4rBsE4wwuh6Nd3N$UZabfK?MMr?e`U`W&i8b4d0&=s!~v0+xh% zkdsp~$qlkvetI9mfbVsu};tr@zRqX<5;bVtTTFUmO7^nm^sKJ zw1k}TG}FcaeU3O!?;*l*jGh78G-b`!d|5`(JL4T}_Nn*KxcY4x$ zRSY!-t`9A4dwOW+`rq7$}|!C zVbJuuOsFeD*!{zHL=KYtywUS(%K24MTX0J(qPF0*S))J=w~SN;X(n1w5JhB>ObZuU z5sygCL_Zxa030Eetw8`L%*&a*5kx-rkF6KjO9nHN0D^>A&iR{82>$Vsw7l26)(qMfc~5wjAO>iu*xnrG5JT7%NP_ z5kyQ0w1+H}A0wGQ&!5YQw^+t(|!`A418|oifs!L`Yo5)yqq=OsptKR{g2^Ue0X{4G;hr zupvHH%c*+X@&-d3-xOB+qo&+wC=*_6jOoxERyTh0QB2=-%!_X4a4h&$inF;z?p*k+ zKXRqCVW{yl?aTJiXa7B&RBtfBz{3vyvnd9gxx(rU1gXpH${FbqHF{P1qC{fM|76g= zrJneg2^N|SSpZ*K&_$7W}?AjKbc1}+9L8IFi0 zBqNnZTXM<~F=1#@2%^SB1)ju#j2KaQb;~5J1CM%=y^zdpL{|Q4!5yoSj1`Rx3GS{i@G*PZMeQNS8S@c^RyT)hi8yQV|@z49@_EDrs1kN5ox`oWGY ziSyb<+b%a2mDl=>UBA)mw22-$ffCkZ+)!v2GwQ0LZ2Y-oy_z#%cDVZguYyt;S(v+MbQ+)`uFQz@Lq zG_GYEkRcyk#m0K5x`V3MQ;89*EL>&`D`Cl7!SQn(xx*(dcc|H9Wxvly0c*EW(=)l= z_5~tJB~w>#ZTA)@XABssb8b#(kj8A0NJ+cb{cdc>%9$YCp;VYZ=+nh4+gdR6r@yyd z4cbu3=H^{X39Ap2Kc zSF~F7>Wzmorj&2?WuY|8_(aGj)K7aarP-5ktRy>$2_d`sd)@w-gu=w{%?tdv&jJ0C z53>%~$BgG(?MVd9f3MY3Az`^`<9+lB&-1#=rqo6##6QLzW`;ObTzf5D=W2dW zD79z{x+jbO*{=B|rF-z`%cae`FHg$Y@Ej2r`Zf(pnUlzh~gvFX5jqu1sm2->b$+UZ3 z0$@>AfS~TB-ZS9<*pyPhzz1NcD688S9}Jiz^&Fyx&5F-ipoJ2A0Bj0TSxd-!8fQvF z%zl~@AtQ#mlv|(ZdIQaIEN4(XHHH81Vu;BgD~J+UTk1H9JrN2ZYbSXqhf<1p z5m+=WDA0XEDi)b!Xpw9!>zM(l%azy}dF9G_Oj9Fag_i;`|LChkt%z7+Ai84NWb`$M zMw{Mz^9-BmI%|s(h)UV%kA_-y%`4~Ys>)5CQs|j)7tGtPOqu#uRlixgjcz;2-j-@R zY8L;f^y85tED6cmk}4sJ)w`f7ZuJu9`6xQv@wqskagjJ3iV;92FcE;xAlWi@Yu5;Z zo(K}ykIRpQeY-6UZMo4ZXq4?*DSl?V#sa4Bz4XC;4aBzf7dlTjep{ zPsdwuff2zfUaAzzEI-1%r&|n~Pq-P!fQYhpJL2t`E(8!$RY{#3vU-vioG)=9vQz^h z$QaNFA*XC@9soc_jHO6EuY3U3|KyzfOf~$Rjb8VRr-lCf0rOwVMIR72De~55S}kMc zo#sOA?~ZtQXw@O-1Rxy}OHDRBRgF_-%GMh4Zx>Ytdp3wlXvGn&{u)A6V?6h2@87x| z1|F?Zxo63q?^`~_yYcL1nZl-WnXcV>*?rtsgxV7E+BK6Q+!1v<{8|G3MAcrRdcy3TrM_BT?Q1Wu zUV28qR1Lyc#B?iipW%9ECaG0tA${mRmOsk+SuI99JjO;F_ZaT`3VmgY z!#P8Kuu*0lUW?J$p%4&UhW^cviAwi}=AxrS4DDZ)X<)Uk1OE^+yBV1sL?8O6a8CJ& z;t--%KEmQS7th(d9`r+)f5{H9QHb@o5RXr{sWCP&W!R?jn?o4OACkmm;Mfw5bC2f; z7yH`ZJ5wju-`xPRHlRqwY|qGhZygMbF;$iz}(B}_~hD5Y>?v{GbuG2 zuum`NJfNq5-avaC-oy?7GHmHgs*|*Lt4Otc*_!T_u$J47O3X;n#&hw(*RhUY&Ko`Y z;<_%}FQDwQs|;?xwqhqP&KKP?!-g<7v9cOy1}IPar3=?qma}&Fmj53oz>@K5EX+1@ zPt2D7WPj4MF5T<@$jn274+w3g1OMgLk~~k|=?|~>9V$SZukjmiCjuJY%^uzLB5Ue4 zWwxr!R(*x`72QUCP_I@9L_rrKf;^#BAq{D*m7;V&FYD-#K~mDTF%0o4Pdi2aA#!&;Hg)J)4ksdA8njUg4Ny+0;boyqz0gW;S4d`T$wH0}X2!`ACx zI3J66oIwDb7_)-eMT~i<6qYx(?Wk1m!ygSY z{ukI(rV<%H9rI@()ImSaoO*!;P!4q<44==66cVDSd=|hY1B>NsN@7HvZtW$Lt zAUZ;YvfjI`-UXb(Y0N{ONUG)2GX4clnK$}?6eyV#j$z47JJUao%AW#XdEl$vLYho? zvH8^qeC4O@Stzt49!J#NCU1t~biHzAeY}&Mhjhs9XbziAR~BxjuVG3TfPeXQLZXtsM8 zALwr^14986IWUzMRe9owu4Qm0){RiAh923E^~$4mNwOd?j)n=t$7ldJ5$6h#Y?M4DMa%*Tx3^1_{@Oeah`9`IT{)6w-i zE@QTbTvyA}4+fe~=p$ffp02%Fx|a@8o)CTlSiK8^{vcjRpz=e6?JEoJ z#ZS(t8!>dm(K)|vY+E7s5-%r2jDxE(YegA?-Pb`cVn}NcUIBCx(Dz+pcwe<^Pp)jLu3t)tHBko8i0u#beQE ze5Kk0>!vY>vlW_wI3Z5R6Y84I(tvzV4UE=v3pBw|k@|^29|KiMh0uxBv=)*Cl6L?~ zA79b83DJ(|Zv+RFdNn;mP+^OCy}xY);gK6;#g*zHaS^jVx~u#oLd&oy*r$5~?V}&# z$pU)nX&^FB4}v;Kqkg7?ogR}Svfxp1CdN#m3&lw z9&yQSAc3X@;DM&G(9OHWZlmpB`r{?auKC~;!CS)}>b7aG-FU9XtA^BzpZs2j(8cA& zk~?dg0r&xKe+i-D2?EyNvPS)&kCyq}r0)5*W#REZj|?ETL%!dqYI7j#slI*+-BDV;KW}*iQ zB&{d>Nx}k?H^8g4?gxFKCAXDZVN$x7v9CLstB;VA!Ub2`=Q)#b3V!asiE8m9VZVgQ4}K^w?y(i zVMWDzMPZ6qWL17vh5v!W=v)B7srirp&Jon>B9O@)Ybn54^}T?6zvGJ6??dDssD7*2 zEVkcsGTUR#r%m2A@aGqAhe5X!%D5MWIkN9vH!DL0GAErui&6|5J>(;7zAcV=*PC;A zF;wrTXIP;7b~sFCiuJ6uMS@nuKV-~nEP)eACm(a&ptRa9h(v@F3v@kOG`4{ zPokONwqSKD37+vYL~cHQU7UOE#zIhAGTumaRYIM&G`+N}U)k4mJ7^=uw(6nNIs6NAkyJcHnw)p#X8MSv_HPysX zB?yyY$=aTwm!1BF^LQt?KFCyi~DTGh~>u+|i&o(P65g@?I^*8#$0wuq37DvMnavTFpn2C#>>!No&tsa{jlFd*+YXi zYti|~ei3gNp=Bph4$Or5MnCL#un-~AvCY0-hb{jZ^L;6sYi{-ofgm;CJ=R6ibOQdV z?vGOUL|rQB_jj^-hLmZiXZ1rQ+Kg37;Ku-GWm;cssPGX3A@KemWCrIdQ6^L1R&_o) zZHn-g;*o<%O`FLV`ha&)s9qRTH@&ke`i}Z+Hhoc?>t#!>mPPK~gL!t8M<1hw?DQma z=D9)qiQ0}>RYITTM~e3)L>r)kOn^ubsk{&zlTHmTvRteySC(Uf8-;XT?MU7ZEe;zg z4n+@n3~6UUaN{0wh}1jxAs=Br&U2l$Q^@BLo-4o1Uprhp2?nUsCUR~zo~|H(s|$5z zEgj(LY#=<+?Fb&WY&3(x(G?$&*fV)f0J_5v|1A)vVHvu8l;$SIfE-B-wH@VebIa?0 zvemb!e;p}YeZq49qy(g@WpPtKhOUiW~j_Gt-r7Y*7#fGeR^)UToZNg zO7)gnE|w!#rNJ2L05UeWO1ZT%e#3=Uy;Fx0p$X9XY~;y6#(Imc1mDjE)D!)U(t zq{`l0SitHvN*Cb3Kg6t8ZPC4>?Y>qSJ{cJ)}7iruI4w rt&Z0;{lu<)ehs<)77`T;__c!~Etne52YSBBSx~z$wG_Zl{|f*BuebqR literal 0 HcmV?d00001 diff --git a/addons/dashboard/dist/assets/social-google-a359a253.svg b/addons/dashboard/dist/assets/social-google-a359a253.svg new file mode 100644 index 000000000..2231ce986 --- /dev/null +++ b/addons/dashboard/dist/assets/social-google-a359a253.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/addons/dashboard/dist/favicon.svg b/addons/dashboard/dist/favicon.svg new file mode 100644 index 000000000..db85f3f33 --- /dev/null +++ b/addons/dashboard/dist/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/dashboard/dist/index.html b/addons/dashboard/dist/index.html new file mode 100644 index 000000000..4fef00a16 --- /dev/null +++ b/addons/dashboard/dist/index.html @@ -0,0 +1,21 @@ + + + + + + + + + + AstrBot - 仪表盘 + + + + +
    + + + diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py index 128be13bf..9b8124495 100644 --- a/addons/dashboard/server.py +++ b/addons/dashboard/server.py @@ -21,12 +21,25 @@ class Response(): class AstrBotDashBoard(): def __init__(self, dashboard_data: DashBoardData): self.dashboard_data = dashboard_data - self.dashboard_be = Flask(__name__) + self.dashboard_be = Flask(__name__, static_folder="dist", static_url_path="/") log = logging.getLogger('werkzeug') log.setLevel(logging.ERROR) self.funcs = {} + + + @self.dashboard_be.get("/") + def index(): + # 返回页面 + return self.dashboard_be.send_static_file("index.html") + + # 如果是以.js结尾的 + # @self.dashboard_be.get("/.js") + # def js(path): + # return self.dashboard_be.send_static_file(path + ".js") + + - @self.dashboard_be.get("/stats") + @self.dashboard_be.get("/api/stats") def get_stats(): return Response( status="success", @@ -34,7 +47,7 @@ class AstrBotDashBoard(): data=self.dashboard_data.stats ).__dict__ - @self.dashboard_be.get("/configs") + @self.dashboard_be.get("/api/configs") def get_configs(): return Response( status="success", @@ -42,7 +55,7 @@ class AstrBotDashBoard(): data=self.dashboard_data.configs ).__dict__ - @self.dashboard_be.post("/configs") + @self.dashboard_be.post("/api/configs") def post_configs(): post_configs = request.json try: @@ -59,7 +72,7 @@ class AstrBotDashBoard(): data=self.dashboard_data.configs ).__dict__ - @self.dashboard_be.get("/logs") + @self.dashboard_be.get("/api/logs") def get_logs(): return Response( status="success", diff --git a/cores/qqbot/core.py b/cores/qqbot/core.py index fb8de10a3..bfd8efdea 100644 --- a/cores/qqbot/core.py +++ b/cores/qqbot/core.py @@ -469,6 +469,7 @@ def run_qqchan_bot(cfg, loop, qqchannel_bot: QQChan): try: qqchannel_bot.run_bot(client, cfg['qqbot']['appid'], cfg['qqbot']['token']) except BaseException as e: + raise e gu.log("启动QQ频道机器人时出现错误, 原因如下: " + str(e), gu.LEVEL_CRITICAL, tag="QQ频道") gu.log(r"如果您是初次启动,请修改配置文件(QQChannelChatGPT/config.yaml)详情请看:https://github.com/Soulter/QQChannelChatGPT/wiki。" + str(e), gu.LEVEL_CRITICAL, tag="System") diff --git a/requirements.txt b/requirements.txt index 1ba3529bb..bdd5ec0e0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ pydantic~=1.10.4 requests~=2.28.1 openai~=1.2.3 -qq-botpy +qq-botpy==1.1.2 chardet~=5.1.0 Pillow~=9.4.0 GitPython~=3.1.31 @@ -12,4 +12,6 @@ tiktoken readability-lxml revChatGPT~=6.8.6 baidu-aip~=4.16.9 -websockets \ No newline at end of file +websockets +flask +psutil \ No newline at end of file diff --git a/util/general_utils.py b/util/general_utils.py index 6ec3c0eba..db8185f9c 100644 --- a/util/general_utils.py +++ b/util/general_utils.py @@ -112,7 +112,7 @@ def log( ret = "" for line in pres: ret += f"\033[{fg};{bg}m{line}\033[0m\n" - print(ret) + print(ret[:-1]) def port_checker(port: int, host: str = "localhost"): From 84d1293fd016e00e9ac1e1621c0901003f60116b Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Thu, 14 Dec 2023 16:41:05 +0800 Subject: [PATCH 06/17] =?UTF-8?q?=F0=9F=90=9B=20FIX:=20=E7=A7=BB=E9=99=A4?= =?UTF-8?q?=E4=B8=80=E4=BA=9B=E4=B8=8D=E5=BF=85=E8=A6=81=E7=9A=84=E6=8A=A5?= =?UTF-8?q?=E9=94=99=E6=8A=9B=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cores/qqbot/core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cores/qqbot/core.py b/cores/qqbot/core.py index bfd8efdea..fb8de10a3 100644 --- a/cores/qqbot/core.py +++ b/cores/qqbot/core.py @@ -469,7 +469,6 @@ def run_qqchan_bot(cfg, loop, qqchannel_bot: QQChan): try: qqchannel_bot.run_bot(client, cfg['qqbot']['appid'], cfg['qqbot']['token']) except BaseException as e: - raise e gu.log("启动QQ频道机器人时出现错误, 原因如下: " + str(e), gu.LEVEL_CRITICAL, tag="QQ频道") gu.log(r"如果您是初次启动,请修改配置文件(QQChannelChatGPT/config.yaml)详情请看:https://github.com/Soulter/QQChannelChatGPT/wiki。" + str(e), gu.LEVEL_CRITICAL, tag="System") From c2ca365312a3a5562aced9087a8c7d1ca2cb8c9b Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Thu, 14 Dec 2023 19:59:15 +0800 Subject: [PATCH 07/17] =?UTF-8?q?=F0=9F=93=A6=20NEW:=20=E9=9D=A2=E6=9D=BF?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E6=9B=B4=E5=A4=9A=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...e_vue_type_style_index_0_lang-9e4c303d.js} | 2 +- ...ut-d60a3667.js => BlankLayout-a7e52bd5.js} | 2 +- ...Page-ed37a0a8.js => ColorPage-3951c8fd.js} | 2 +- .../dist/assets/ConfigPage-25c22b8a.js | 1 - .../dist/assets/ConfigPage-6b137b58.js | 1 + ...5eb9fa.js => DefaultDashboard-e7ebbe76.js} | 2 +- ...e-cf3bd987.js => Error404Page-251ea613.js} | 2 +- ...-134b32c8.js => ExtensionPage-33ae6daa.js} | 2 +- ...out-b0552666.js => FullLayout-26975c54.js} | 2 +- ...Page-bfc811c9.js => LoginPage-5a7d822f.js} | 2 +- ...e_type_script_setup_true_lang-ca677c1b.js} | 2 +- ...-5aa79b4a.js => MaterialIcons-5e4ea3a4.js} | 2 +- ...e-f5bc57b5.js => RegisterPage-9891b830.js} | 2 +- ...age-4627a05c.js => ShadowPage-7cdf646f.js} | 2 +- ...ge-64b013bc.js => StarterPage-61f71e79.js} | 2 +- ...ns-cf6c4112.js => TablerIcons-51a61cf9.js} | 2 +- ...8db478a1.js => TypographyPage-9d394cd9.js} | 2 +- ...e_type_script_setup_true_lang-4ffca123.js} | 2 +- .../{index-ab39813a.js => index-78c50a9e.js} | 4 +- addons/dashboard/dist/index.html | 2 +- addons/dashboard/helper.py | 355 +++++++++++++++++- 21 files changed, 364 insertions(+), 31 deletions(-) rename addons/dashboard/dist/assets/{BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js => BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js} (93%) rename addons/dashboard/dist/assets/{BlankLayout-d60a3667.js => BlankLayout-a7e52bd5.js} (70%) rename addons/dashboard/dist/assets/{ColorPage-ed37a0a8.js => ColorPage-3951c8fd.js} (83%) delete mode 100644 addons/dashboard/dist/assets/ConfigPage-25c22b8a.js create mode 100644 addons/dashboard/dist/assets/ConfigPage-6b137b58.js rename addons/dashboard/dist/assets/{DefaultDashboard-e25eb9fa.js => DefaultDashboard-e7ebbe76.js} (99%) rename addons/dashboard/dist/assets/{Error404Page-cf3bd987.js => Error404Page-251ea613.js} (94%) rename addons/dashboard/dist/assets/{ExtensionPage-134b32c8.js => ExtensionPage-33ae6daa.js} (97%) rename addons/dashboard/dist/assets/{FullLayout-b0552666.js => FullLayout-26975c54.js} (96%) rename addons/dashboard/dist/assets/{LoginPage-bfc811c9.js => LoginPage-5a7d822f.js} (98%) rename addons/dashboard/dist/assets/{LogoDark.vue_vue_type_script_setup_true_lang-16088022.js => LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js} (88%) rename addons/dashboard/dist/assets/{MaterialIcons-5aa79b4a.js => MaterialIcons-5e4ea3a4.js} (70%) rename addons/dashboard/dist/assets/{RegisterPage-f5bc57b5.js => RegisterPage-9891b830.js} (63%) rename addons/dashboard/dist/assets/{ShadowPage-4627a05c.js => ShadowPage-7cdf646f.js} (81%) rename addons/dashboard/dist/assets/{StarterPage-64b013bc.js => StarterPage-61f71e79.js} (83%) rename addons/dashboard/dist/assets/{TablerIcons-cf6c4112.js => TablerIcons-51a61cf9.js} (69%) rename addons/dashboard/dist/assets/{TypographyPage-8db478a1.js => TypographyPage-9d394cd9.js} (94%) rename addons/dashboard/dist/assets/{UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js => UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js} (88%) rename addons/dashboard/dist/assets/{index-ab39813a.js => index-78c50a9e.js} (99%) diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js similarity index 93% rename from addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js rename to addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js index 77cc5e5f5..bd77d9e34 100644 --- a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js +++ b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js @@ -1 +1 @@ -import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a5 as p,B as n,a6 as o,j as f}from"./index-ab39813a.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; +import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a6 as p,B as n,a7 as o,j as f}from"./index-78c50a9e.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/addons/dashboard/dist/assets/BlankLayout-d60a3667.js b/addons/dashboard/dist/assets/BlankLayout-a7e52bd5.js similarity index 70% rename from addons/dashboard/dist/assets/BlankLayout-d60a3667.js rename to addons/dashboard/dist/assets/BlankLayout-a7e52bd5.js index bbbcd4f91..11d8e92f7 100644 --- a/addons/dashboard/dist/assets/BlankLayout-d60a3667.js +++ b/addons/dashboard/dist/assets/BlankLayout-a7e52bd5.js @@ -1 +1 @@ -import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-ab39813a.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; +import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-78c50a9e.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/ColorPage-ed37a0a8.js b/addons/dashboard/dist/assets/ColorPage-3951c8fd.js similarity index 83% rename from addons/dashboard/dist/assets/ColorPage-ed37a0a8.js rename to addons/dashboard/dist/assets/ColorPage-3951c8fd.js index b0bbb2b39..44995463b 100644 --- a/addons/dashboard/dist/assets/ColorPage-ed37a0a8.js +++ b/addons/dashboard/dist/assets/ColorPage-3951c8fd.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-ab39813a.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-78c50a9e.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-25c22b8a.js b/addons/dashboard/dist/assets/ConfigPage-25c22b8a.js deleted file mode 100644 index dc966cb8c..000000000 --- a/addons/dashboard/dist/assets/ConfigPage-25c22b8a.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as p}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{a as m}from"./axios-21b846bc.js";import{o as a,s as l,a as i,w as d,f,F as n,u as g,V as v,d as V,e as h,t as k,a2 as y,c as r,a3 as b,a4 as C,k as _,A as x}from"./index-ab39813a.js";const U={name:"ConfigPage",components:{UiParentCard:p},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){m.get("/api/configs").then(s=>{this.config_data=s.data.data,console.log(this.config_data)})},updateConfig(){m.post("/api/configs",this.config_data).then(s=>{console.log(this.config_data),s.data.status==="success"?(this.save_message=s.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=s.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},N=Object.assign(U,{setup(s){return(t,c)=>(a(),l(n,null,[i(v,null,{default:d(()=>[i(f,{cols:"12",md:"12"},{default:d(()=>[(a(!0),l(n,null,g(t.config_data.data,o=>(a(),r(p,{key:o.name,title:o.name,style:{"margin-bottom":"16px"}},{default:d(()=>[(a(!0),l(n,null,g(o.body,e=>(a(),l(n,null,[e.config_type==="item"?(a(),l(n,{key:0},[e.val_type==="bool"?(a(),r(b,{key:0,modelValue:e.value,"onUpdate:modelValue":u=>e.value=u,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(C,{key:1,modelValue:e.value,"onUpdate:modelValue":u=>e.value=u,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):_("",!0)],64)):e.config_type==="divider"?(a(),r(x,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):_("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),i(V,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:t.updateConfig},null,8,["onClick"]),i(y,{timeout:2e3,elevation:"24",color:t.save_message_success,modelValue:t.save_message_snack,"onUpdate:modelValue":c[0]||(c[0]=o=>t.save_message_snack=o)},{default:d(()=>[h(k(t.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{N as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-6b137b58.js b/addons/dashboard/dist/assets/ConfigPage-6b137b58.js new file mode 100644 index 000000000..87b736543 --- /dev/null +++ b/addons/dashboard/dist/assets/ConfigPage-6b137b58.js @@ -0,0 +1 @@ +import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{a as g}from"./axios-21b846bc.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as _,V as C,d as U,e as x,t as c,a2 as B,c as r,a3 as w,a4 as v,b as V,a5 as N,i as F,q as P,k as f,A as S}from"./index-78c50a9e.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){g.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){g.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},z=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,_(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,_(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":T=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{z as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-e25eb9fa.js b/addons/dashboard/dist/assets/DefaultDashboard-e7ebbe76.js similarity index 99% rename from addons/dashboard/dist/assets/DefaultDashboard-e25eb9fa.js rename to addons/dashboard/dist/assets/DefaultDashboard-e7ebbe76.js index a9395e20c..0659ae7ff 100644 --- a/addons/dashboard/dist/assets/DefaultDashboard-e25eb9fa.js +++ b/addons/dashboard/dist/assets/DefaultDashboard-e7ebbe76.js @@ -1 +1 @@ -import{y as Q,p as i,o as r,c as _,w as e,a as t,O as g,b as a,d as f,j as w,P as M,q as z,Q as F,z as T,s as C,F as D,u as j,n as y,r as R,l as $,e as v,t as V,S as h,T as N,D as O,U as k,W as U,X as I,Y as W,Z as L,V as S,f as d,G as X,_ as E}from"./index-ab39813a.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";import{a as G}from"./axios-21b846bc.js";const Y={class:"d-flex align-start mb-6"},q={class:"ml-auto z-1"},A=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),H=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),Z={name:"TotalMessage",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},J=Object.assign(Z,{setup(s){const o=Q([{title:"移除",icon:N}]);return(p,b)=>{const u=i("DotsIcon");return r(),_(h,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",Y,[t(f,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-message"})]),_:1}),a("div",q,[t(M,{"close-on-content-click":!1},{activator:e(({props:n})=>[t(f,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},n),{default:e(()=>[t(u,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(T,{density:"compact"},{default:e(()=>[(r(!0),C(D,null,j(o.value,(n,c)=>(r(),_(y,{key:c,value:c},{prepend:e(()=>[(r(),_(R(n.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t($,{class:"ml-2"},{default:e(()=>[v(V(n.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),A,H]),_:1})]),_:1})}}}),K={class:"d-flex align-start mb-3"},tt={class:"ml-auto z-1"},et=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),at=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),st=a("h2",{class:"text-h1 font-weight-medium"}," 198 ",-1),ot=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),lt={name:"TotalSession",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},nt=Object.assign(lt,{setup(s){const o=O("1"),p=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),b={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},u=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),n={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(c,l)=>{const m=i("apexchart");return r(),_(h,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",K,[t(f,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",tt,[t(U,{modelValue:o.value,"onUpdate:modelValue":l[0]||(l[0]=x=>o.value=x),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(I,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[v("按日")]),_:1}),t(I,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[v("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(W,{modelValue:o.value,"onUpdate:modelValue":l[1]||(l[1]=x=>o.value=x),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"6"},{default:e(()=>[et,at]),_:1}),t(d,{cols:"6"},{default:e(()=>[t(m,{type:"line",height:"90",options:p.value,series:b.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"6"},{default:e(()=>[st,ot]),_:1}),t(d,{cols:"6"},{default:e(()=>[t(m,{type:"line",height:"90",options:u.value,series:n.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),it={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.memory=s.sys_perf.memory},deep:!0}},data:()=>({_stat:{},memory:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},rt=a("div",null,[a("h4",{class:"text-h4 font-weight-medium"},"?? 天 ?? 时 ?? 秒"),a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间")],-1),ct={class:"d-flex align-center gap-3"},ut={class:"text-h4 font-weight-medium"},mt=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function _t(s,o,p,b,u,n){return r(),C(D,null,[t(h,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(g,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(f,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-clock"})]),_:1}),rt,t(X),a("div",null,[t(f,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t(w,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(h,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(g,{class:"pa-5"},{default:e(()=>[a("div",ct,[t(f,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",ut,V(s.memory)+" MiB",1),mt])])]),_:1})]),_:1})],64)}const ft=B(it,[["render",_t]]),ht=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),pt=a("h3",{class:"text-h3 mt-1"},"??",-1),bt={class:"mt-4"},vt={name:"MessageStat",components:{},props:["stat"],data:()=>({}),mounted(){}},gt=Object.assign(vt,{setup(s){const o=O({state:"Today",abbr:"FL"}),p=[{state:"今天",abbr:"FL"},{state:"今月",abbr:"GA"},{state:"今年",abbr:"NE"}],b=k(()=>({chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:["1","2","3","4","5","6","7","8","9","10","11","12"]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}})),u={series:[{name:"消息条数",data:[35,145,35,35,20,105,100,10,65,45,30,10]}]};return(n,c)=>{const l=i("apexchart");return r(),_(h,{elevation:"0"},{default:e(()=>[t(h,{variant:"outlined"},{default:e(()=>[t(g,null,{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"12",sm:"9"},{default:e(()=>[ht,pt]),_:1}),t(d,{cols:"12",sm:"3"},{default:e(()=>[t(E,{color:"primary",variant:"outlined","hide-details":"",modelValue:o.value,"onUpdate:modelValue":c[0]||(c[0]=m=>o.value=m),items:p,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue"])]),_:1})]),_:1}),a("div",bt,[t(l,{type:"bar",height:"280",options:b.value,series:u.series},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},yt=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),wt={class:"ml-auto"},$t={class:"mt-4"},Vt={class:"d-inline-flex align-center justify-space-between w-100"},kt={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},St={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Tt={class:"text-center mt-3"},Ct={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.stat=s},deep:!0}},data:()=>({}),mounted(){}},Dt=Object.assign(Ct,{setup(s){k(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}}));const o=O([{name:"QQ 群",count:14124},{name:"QQ 频道",count:612},{name:"Discord",count:123}]);return(p,b)=>{const u=i("DotsIcon"),n=i("perfect-scrollbar"),c=i("ChevronRightIcon");return r(),_(h,{elevation:"0"},{default:e(()=>[t(h,{variant:"outlined"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",xt,[yt,a("div",wt,[t(M,{transition:"slide-y-transition"},{activator:e(({props:l})=>[t(f,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},l),{default:e(()=>[t(u,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(T,null,{default:e(()=>[t(y,{value:"1"},{default:e(()=>[t($,null,{default:e(()=>[v("今天")]),_:1})]),_:1}),t(y,{value:"2"},{default:e(()=>[t($,null,{default:e(()=>[v("今月")]),_:1})]),_:1}),t(y,{value:"3"},{default:e(()=>[t($,null,{default:e(()=>[v("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",$t,[t(n,{style:{height:"270px"}},{default:e(()=>[t(T,{lines:"two",class:"py-0"},{default:e(()=>[(r(!0),C(D,null,j(o.value,(l,m)=>(r(),_(y,{key:m,value:l,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Vt,[a("div",null,[a("h6",kt,V(l.name),1)]),a("div",St,V(l.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Tt,[t(f,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[v("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Ot={name:"DefaultDashboard",components:{TotalMessage:J,TotalSession:nt,OnlineTime:ft,MessageStat:gt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){G.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,o,p,b,u,n){const c=i("TotalMessage"),l=i("TotalSession"),m=i("OnlineTime"),x=i("MessageStat"),P=i("PlatformStat");return r(),_(S,null,{default:e(()=>[t(d,{cols:"12",md:"4"},{default:e(()=>[t(c,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",md:"4"},{default:e(()=>[t(l,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",md:"4"},{default:e(()=>[t(m,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",lg:"8"},{default:e(()=>[t(x,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",lg:"4"},{default:e(()=>[t(P,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const Ft=B(Ot,[["render",It]]);export{Ft as default}; +import{y as Q,p as i,o as r,c as _,w as e,a as t,O as g,b as a,d as f,j as w,P as M,q as z,Q as F,z as T,s as C,F as D,u as j,n as y,r as R,l as $,e as v,t as V,S as h,T as N,D as O,U as k,W as U,X as I,Y as W,Z as L,V as S,f as d,G as X,_ as E}from"./index-78c50a9e.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";import{a as G}from"./axios-21b846bc.js";const Y={class:"d-flex align-start mb-6"},q={class:"ml-auto z-1"},A=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),H=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),Z={name:"TotalMessage",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},J=Object.assign(Z,{setup(s){const o=Q([{title:"移除",icon:N}]);return(p,b)=>{const u=i("DotsIcon");return r(),_(h,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",Y,[t(f,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-message"})]),_:1}),a("div",q,[t(M,{"close-on-content-click":!1},{activator:e(({props:n})=>[t(f,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},n),{default:e(()=>[t(u,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(T,{density:"compact"},{default:e(()=>[(r(!0),C(D,null,j(o.value,(n,c)=>(r(),_(y,{key:c,value:c},{prepend:e(()=>[(r(),_(R(n.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t($,{class:"ml-2"},{default:e(()=>[v(V(n.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),A,H]),_:1})]),_:1})}}}),K={class:"d-flex align-start mb-3"},tt={class:"ml-auto z-1"},et=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),at=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),st=a("h2",{class:"text-h1 font-weight-medium"}," 198 ",-1),ot=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),lt={name:"TotalSession",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},nt=Object.assign(lt,{setup(s){const o=O("1"),p=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),b={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},u=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),n={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(c,l)=>{const m=i("apexchart");return r(),_(h,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",K,[t(f,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",tt,[t(U,{modelValue:o.value,"onUpdate:modelValue":l[0]||(l[0]=x=>o.value=x),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(I,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[v("按日")]),_:1}),t(I,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[v("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(W,{modelValue:o.value,"onUpdate:modelValue":l[1]||(l[1]=x=>o.value=x),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"6"},{default:e(()=>[et,at]),_:1}),t(d,{cols:"6"},{default:e(()=>[t(m,{type:"line",height:"90",options:p.value,series:b.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"6"},{default:e(()=>[st,ot]),_:1}),t(d,{cols:"6"},{default:e(()=>[t(m,{type:"line",height:"90",options:u.value,series:n.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),it={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.memory=s.sys_perf.memory},deep:!0}},data:()=>({_stat:{},memory:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},rt=a("div",null,[a("h4",{class:"text-h4 font-weight-medium"},"?? 天 ?? 时 ?? 秒"),a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间")],-1),ct={class:"d-flex align-center gap-3"},ut={class:"text-h4 font-weight-medium"},mt=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function _t(s,o,p,b,u,n){return r(),C(D,null,[t(h,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(g,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(f,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-clock"})]),_:1}),rt,t(X),a("div",null,[t(f,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t(w,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(h,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(g,{class:"pa-5"},{default:e(()=>[a("div",ct,[t(f,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",ut,V(s.memory)+" MiB",1),mt])])]),_:1})]),_:1})],64)}const ft=B(it,[["render",_t]]),ht=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),pt=a("h3",{class:"text-h3 mt-1"},"??",-1),bt={class:"mt-4"},vt={name:"MessageStat",components:{},props:["stat"],data:()=>({}),mounted(){}},gt=Object.assign(vt,{setup(s){const o=O({state:"Today",abbr:"FL"}),p=[{state:"今天",abbr:"FL"},{state:"今月",abbr:"GA"},{state:"今年",abbr:"NE"}],b=k(()=>({chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:["1","2","3","4","5","6","7","8","9","10","11","12"]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}})),u={series:[{name:"消息条数",data:[35,145,35,35,20,105,100,10,65,45,30,10]}]};return(n,c)=>{const l=i("apexchart");return r(),_(h,{elevation:"0"},{default:e(()=>[t(h,{variant:"outlined"},{default:e(()=>[t(g,null,{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"12",sm:"9"},{default:e(()=>[ht,pt]),_:1}),t(d,{cols:"12",sm:"3"},{default:e(()=>[t(E,{color:"primary",variant:"outlined","hide-details":"",modelValue:o.value,"onUpdate:modelValue":c[0]||(c[0]=m=>o.value=m),items:p,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue"])]),_:1})]),_:1}),a("div",bt,[t(l,{type:"bar",height:"280",options:b.value,series:u.series},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},yt=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),wt={class:"ml-auto"},$t={class:"mt-4"},Vt={class:"d-inline-flex align-center justify-space-between w-100"},kt={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},St={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Tt={class:"text-center mt-3"},Ct={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.stat=s},deep:!0}},data:()=>({}),mounted(){}},Dt=Object.assign(Ct,{setup(s){k(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}}));const o=O([{name:"QQ 群",count:14124},{name:"QQ 频道",count:612},{name:"Discord",count:123}]);return(p,b)=>{const u=i("DotsIcon"),n=i("perfect-scrollbar"),c=i("ChevronRightIcon");return r(),_(h,{elevation:"0"},{default:e(()=>[t(h,{variant:"outlined"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",xt,[yt,a("div",wt,[t(M,{transition:"slide-y-transition"},{activator:e(({props:l})=>[t(f,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},l),{default:e(()=>[t(u,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(T,null,{default:e(()=>[t(y,{value:"1"},{default:e(()=>[t($,null,{default:e(()=>[v("今天")]),_:1})]),_:1}),t(y,{value:"2"},{default:e(()=>[t($,null,{default:e(()=>[v("今月")]),_:1})]),_:1}),t(y,{value:"3"},{default:e(()=>[t($,null,{default:e(()=>[v("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",$t,[t(n,{style:{height:"270px"}},{default:e(()=>[t(T,{lines:"two",class:"py-0"},{default:e(()=>[(r(!0),C(D,null,j(o.value,(l,m)=>(r(),_(y,{key:m,value:l,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Vt,[a("div",null,[a("h6",kt,V(l.name),1)]),a("div",St,V(l.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Tt,[t(f,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[v("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Ot={name:"DefaultDashboard",components:{TotalMessage:J,TotalSession:nt,OnlineTime:ft,MessageStat:gt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){G.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,o,p,b,u,n){const c=i("TotalMessage"),l=i("TotalSession"),m=i("OnlineTime"),x=i("MessageStat"),P=i("PlatformStat");return r(),_(S,null,{default:e(()=>[t(d,{cols:"12",md:"4"},{default:e(()=>[t(c,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",md:"4"},{default:e(()=>[t(l,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",md:"4"},{default:e(()=>[t(m,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",lg:"8"},{default:e(()=>[t(x,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",lg:"4"},{default:e(()=>[t(P,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const Ft=B(Ot,[["render",It]]);export{Ft as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-cf3bd987.js b/addons/dashboard/dist/assets/Error404Page-251ea613.js similarity index 94% rename from addons/dashboard/dist/assets/Error404Page-cf3bd987.js rename to addons/dashboard/dist/assets/Error404Page-251ea613.js index 88f2b2c0b..531b5971c 100644 --- a/addons/dashboard/dist/assets/Error404Page-cf3bd987.js +++ b/addons/dashboard/dist/assets/Error404Page-251ea613.js @@ -1 +1 @@ -import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-ab39813a.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; +import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-78c50a9e.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-134b32c8.js b/addons/dashboard/dist/assets/ExtensionPage-33ae6daa.js similarity index 97% rename from addons/dashboard/dist/assets/ExtensionPage-134b32c8.js rename to addons/dashboard/dist/assets/ExtensionPage-33ae6daa.js index 0a9fa0992..f1ba42ae8 100644 --- a/addons/dashboard/dist/assets/ExtensionPage-134b32c8.js +++ b/addons/dashboard/dist/assets/ExtensionPage-33ae6daa.js @@ -1,4 +1,4 @@ -import{x as _,o as s,c as l,w as t,a as e,$ as f,b as r,a0 as h,e as i,t as d,G as g,d as m,A as V,O as v,a1 as x,S as k,D as p,s as C,F as w,u as S,f as y,j as b,V as B}from"./index-ab39813a.js";const P={class:"d-sm-flex align-center justify-space-between"},$=_({__name:"ExtensionCard",props:{title:String,link:String},setup(u){const n=u,c=o=>{window.open(o,"_blank")};return(o,a)=>(s(),l(k,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(f,{style:{padding:"10px 20px"}},{default:t(()=>[r("div",P,[e(h,null,{default:t(()=>[i(d(n.title),1)]),_:1}),e(g),e(m,{icon:"mdi-link",variant:"plain",onClick:a[0]||(a[0]=E=>c(n.link))})])]),_:1}),e(V),e(v,null,{default:t(()=>[x(o.$slots,"default")]),_:3})]),_:3}))}}),G={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},N={class:"d-flex align-center gap-3"},D=` +import{x as _,o as s,c as l,w as t,a as e,$ as f,b as r,a0 as h,e as i,t as d,G as g,d as m,A as V,O as v,a1 as x,S as k,D as p,s as C,F as w,u as S,f as y,j as b,V as B}from"./index-78c50a9e.js";const P={class:"d-sm-flex align-center justify-space-between"},$=_({__name:"ExtensionCard",props:{title:String,link:String},setup(u){const n=u,c=o=>{window.open(o,"_blank")};return(o,a)=>(s(),l(k,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(f,{style:{padding:"10px 20px"}},{default:t(()=>[r("div",P,[e(h,null,{default:t(()=>[i(d(n.title),1)]),_:1}),e(g),e(m,{icon:"mdi-link",variant:"plain",onClick:a[0]||(a[0]=E=>c(n.link))})])]),_:1}),e(V),e(v,null,{default:t(()=>[x(o.$slots,"default")]),_:3})]),_:3}))}}),G={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},N={class:"d-flex align-center gap-3"},D=` { "data": [ { diff --git a/addons/dashboard/dist/assets/FullLayout-b0552666.js b/addons/dashboard/dist/assets/FullLayout-26975c54.js similarity index 96% rename from addons/dashboard/dist/assets/FullLayout-b0552666.js rename to addons/dashboard/dist/assets/FullLayout-26975c54.js index 07a98c17c..99e3f2a21 100644 --- a/addons/dashboard/dist/assets/FullLayout-b0552666.js +++ b/addons/dashboard/dist/assets/FullLayout-26975c54.js @@ -1 +1 @@ -import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-ab39813a.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-16088022.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; +import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-78c50a9e.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; diff --git a/addons/dashboard/dist/assets/LoginPage-bfc811c9.js b/addons/dashboard/dist/assets/LoginPage-5a7d822f.js similarity index 98% rename from addons/dashboard/dist/assets/LoginPage-bfc811c9.js rename to addons/dashboard/dist/assets/LoginPage-5a7d822f.js index a79d0d7f7..380e61a64 100644 --- a/addons/dashboard/dist/assets/LoginPage-bfc811c9.js +++ b/addons/dashboard/dist/assets/LoginPage-5a7d822f.js @@ -1,4 +1,4 @@ -import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-16088022.js";import{x as ke,a7 as we,r as Ot,a8 as Vt,D as A,a9 as Be,U as P,B as I,aa as Q,ab as St,ac as Ne,ad as Ie,ae as Et,af as jt,ag as At,ah as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,ai as Ft,d as Pt,e as Ge,s as Ct,aj as Tt,t as Bt,k as Nt,ak as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-ab39813a.js";/** +import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js";import{x as ke,a8 as we,r as Ot,a9 as Vt,D as A,aa as Be,U as P,B as I,ab as Q,ac as St,ad as Ne,ae as Ie,af as Et,ag as jt,ah as At,ai as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,aj as Ft,d as Pt,e as Ge,s as Ct,ak as Tt,t as Bt,k as Nt,al as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-78c50a9e.js";/** * vee-validate v4.11.3 * (c) 2023 Abdelrahman Awad * @license MIT diff --git a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js similarity index 88% rename from addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js rename to addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js index 45675b044..fe62ede59 100644 --- a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js +++ b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js @@ -1 +1 @@ -import{am as _,x as d,D as n,o as c,s as m,a as p,w as f,an as r,b as a,ao as o,B as t,ap as h}from"./index-ab39813a.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; +import{an as _,x as d,D as n,o as c,s as m,a as p,w as f,ao as r,b as a,ap as o,B as t,aq as h}from"./index-78c50a9e.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/addons/dashboard/dist/assets/MaterialIcons-5aa79b4a.js b/addons/dashboard/dist/assets/MaterialIcons-5e4ea3a4.js similarity index 70% rename from addons/dashboard/dist/assets/MaterialIcons-5aa79b4a.js rename to addons/dashboard/dist/assets/MaterialIcons-5e4ea3a4.js index 3e5568536..5df8767be 100644 --- a/addons/dashboard/dist/assets/MaterialIcons-5aa79b4a.js +++ b/addons/dashboard/dist/assets/MaterialIcons-5e4ea3a4.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-ab39813a.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-78c50a9e.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-f5bc57b5.js b/addons/dashboard/dist/assets/RegisterPage-9891b830.js similarity index 63% rename from addons/dashboard/dist/assets/RegisterPage-f5bc57b5.js rename to addons/dashboard/dist/assets/RegisterPage-9891b830.js index 6f568fa11..618b96799 100644 --- a/addons/dashboard/dist/assets/RegisterPage-f5bc57b5.js +++ b/addons/dashboard/dist/assets/RegisterPage-9891b830.js @@ -1 +1 @@ -import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-16088022.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as i,A as _,e as f,V as r,a4 as m,ai as A,al as E,F,c as T,L as q,S as V,O as P}from"./index-ab39813a.js";const S="/assets/social-google-a359a253.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),d=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(i,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(i,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(i,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":d.value?"mdi-eye":"mdi-eye-off",type:d.value?"text":"password","onClick:append":l[4]||(l[4]=t=>d.value=!d.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,d)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(i,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(i,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(i,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; +import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,a4 as m,aj as A,am as E,F,c as T,L as q,S as V,O as P}from"./index-78c50a9e.js";const S="/assets/social-google-a359a253.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),j=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),D={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},G=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),L={class:"mt-5 text-right"},O=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),j,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",D,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),G]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",L,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(O)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/ShadowPage-4627a05c.js b/addons/dashboard/dist/assets/ShadowPage-7cdf646f.js similarity index 81% rename from addons/dashboard/dist/assets/ShadowPage-4627a05c.js rename to addons/dashboard/dist/assets/ShadowPage-7cdf646f.js index c6517b26d..9d9954bda 100644 --- a/addons/dashboard/dist/assets/ShadowPage-4627a05c.js +++ b/addons/dashboard/dist/assets/ShadowPage-7cdf646f.js @@ -1 +1 @@ -import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-ab39813a.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-78c50a9e.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/StarterPage-64b013bc.js b/addons/dashboard/dist/assets/StarterPage-61f71e79.js similarity index 83% rename from addons/dashboard/dist/assets/StarterPage-64b013bc.js rename to addons/dashboard/dist/assets/StarterPage-61f71e79.js index 6e3f8032b..a468c5358 100644 --- a/addons/dashboard/dist/assets/StarterPage-64b013bc.js +++ b/addons/dashboard/dist/assets/StarterPage-61f71e79.js @@ -1 +1 @@ -import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-ab39813a.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; +import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-78c50a9e.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; diff --git a/addons/dashboard/dist/assets/TablerIcons-cf6c4112.js b/addons/dashboard/dist/assets/TablerIcons-51a61cf9.js similarity index 69% rename from addons/dashboard/dist/assets/TablerIcons-cf6c4112.js rename to addons/dashboard/dist/assets/TablerIcons-51a61cf9.js index 30d2dfccf..1aaab935e 100644 --- a/addons/dashboard/dist/assets/TablerIcons-cf6c4112.js +++ b/addons/dashboard/dist/assets/TablerIcons-51a61cf9.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-ab39813a.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-78c50a9e.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/addons/dashboard/dist/assets/TypographyPage-8db478a1.js b/addons/dashboard/dist/assets/TypographyPage-9d394cd9.js similarity index 94% rename from addons/dashboard/dist/assets/TypographyPage-8db478a1.js rename to addons/dashboard/dist/assets/TypographyPage-9d394cd9.js index b3236af5b..b0345b48e 100644 --- a/addons/dashboard/dist/assets/TypographyPage-8db478a1.js +++ b/addons/dashboard/dist/assets/TypographyPage-9d394cd9.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-ab39813a.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-78c50a9e.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; diff --git a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js similarity index 88% rename from addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js rename to addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js index 8d093bc52..696bf2094 100644 --- a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js +++ b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js @@ -1 +1 @@ -import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-ab39813a.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; +import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-78c50a9e.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/addons/dashboard/dist/assets/index-ab39813a.js b/addons/dashboard/dist/assets/index-78c50a9e.js similarity index 99% rename from addons/dashboard/dist/assets/index-ab39813a.js rename to addons/dashboard/dist/assets/index-78c50a9e.js index 65a78dfa6..101b82dcd 100644 --- a/addons/dashboard/dist/assets/index-ab39813a.js +++ b/addons/dashboard/dist/assets/index-78c50a9e.js @@ -6,7 +6,7 @@ * vue-router v4.2.4 * (c) 2023 Eduardo San Martin Morote * @license MIT - */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-b0552666.js"),["assets/FullLayout-b0552666.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-e25eb9fa.js"),["assets/DefaultDashboard-e25eb9fa.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-134b32c8.js"),[])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-25c22b8a.js"),["assets/ConfigPage-25c22b8a.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js","assets/axios-21b846bc.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-e25eb9fa.js"),["assets/DefaultDashboard-e25eb9fa.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-64b013bc.js"),["assets/StarterPage-64b013bc.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-cf6c4112.js"),["assets/TablerIcons-cf6c4112.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-5aa79b4a.js"),["assets/MaterialIcons-5aa79b4a.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-8db478a1.js"),["assets/TypographyPage-8db478a1.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-4627a05c.js"),["assets/ShadowPage-4627a05c.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-ed37a0a8.js"),["assets/ColorPage-ed37a0a8.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-d429ad96.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b5d50914.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-d60a3667.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-bfc811c9.js"),["assets/LoginPage-bfc811c9.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-f5bc57b5.js"),["assets/RegisterPage-f5bc57b5.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-16088022.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-cf3bd987.js"),["assets/Error404Page-cf3bd987.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-cf3bd987.js"),["assets/Error404Page-cf3bd987.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} + */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-26975c54.js"),["assets/FullLayout-26975c54.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-e7ebbe76.js"),["assets/DefaultDashboard-e7ebbe76.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-33ae6daa.js"),[])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-6b137b58.js"),["assets/ConfigPage-6b137b58.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js","assets/axios-21b846bc.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-e7ebbe76.js"),["assets/DefaultDashboard-e7ebbe76.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-61f71e79.js"),["assets/StarterPage-61f71e79.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-51a61cf9.js"),["assets/TablerIcons-51a61cf9.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-5e4ea3a4.js"),["assets/MaterialIcons-5e4ea3a4.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-9d394cd9.js"),["assets/TypographyPage-9d394cd9.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-7cdf646f.js"),["assets/ShadowPage-7cdf646f.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-3951c8fd.js"),["assets/ColorPage-3951c8fd.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-a7e52bd5.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-5a7d822f.js"),["assets/LoginPage-5a7d822f.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-9891b830.js"),["assets/RegisterPage-9891b830.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-251ea613.js"),["assets/Error404Page-251ea613.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-251ea613.js"),["assets/Error404Page-251ea613.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function pl(n){const{h:l,s:r,v:h,a:u}=n,g=b=>{const z=(b+l/60)%6;return h-h*r*Math.max(Math.min(z,4-z,1),0)},v=[g(5),g(3),g(1)].map(b=>Math.round(b*255));return{r:v[0],g:v[1],b:v[2],a:u}}function A1(n){return pl(zh(n))}function ja(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,u=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;u!==g&&(u===l?v=60*(0+(r-h)/(u-g)):u===r?v=60*(2+(h-l)/(u-g)):u===h&&(v=60*(4+(l-r)/(u-g)))),v<0&&(v=v+360);const b=u===0?0:(u-g)/u,z=[v,b,u];return{h:z[0],s:z[1],v:z[2],a:n.a}}function zu(n){const{h:l,s:r,v:h,a:u}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:u}}function zh(n){const{h:l,s:r,l:h,a:u}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:u}}function Iu(n){let{r:l,g:r,b:h,a:u}=n;return u===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${u})`}function yu(n){return Iu(pl(n))}function Os(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Cu(n){let{r:l,g:r,b:h,a:u}=n;return`#${[Os(l),Os(r),Os(h),u!==void 0?Os(Math.round(u*255)):""].join("")}`}function Su(n){n=y5(n);let[l,r,h,u]=l5(n,2).map(g=>parseInt(g,16));return u=u===void 0?u:u/255,{r:l,g:r,b:h,a:u}}function I5(n){const l=Su(n);return ja(l)}function $u(n){return Cu(pl(n))}function y5(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=p1(p1(n,6),8,"F")),n}function C5(n,l){const r=bu(xh(n));return r[0]=r[0]+l*10,xu(Mu(r))}function S5(n,l){const r=bu(xh(n));return r[0]=r[0]-l*10,xu(Mu(r))}function o0(n){const l=_n(n);return xh(l)[1]}function $5(n,l){const r=o0(n),h=o0(l),u=Math.max(r,h),g=Math.min(r,h);return(u+.05)/(g+.05)}function Au(n){const l=Math.abs(C1(_n(0),_n(n)));return Math.abs(C1(_n(16777215),_n(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,u)=>{const v=typeof n[u]=="object"&&n[u]!=null&&!Array.isArray(n[u])?n[u]:{type:n[u]};return r&&u in r?h[u]={...v,default:r[u]}:h[u]=v,l&&!h[u].source&&(h[u].source=l),h},{})}const Wt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Pn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return pr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,u){const g=Ch();if(!g.value)return n._setup(h,u);const{props:v,provideSubDefaults:b}=D5(h,h._as??n.name,g),z=n._setup(v,u);return b(),z}}return n}function At(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Pn:mr)(l)}function Gn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return At()({name:r??fl(In(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Wt()},setup(h,u){let{slots:g}=u;return()=>{var v;return Hn(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Bu(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const Uo="cubic-bezier(0.4, 0, 0.2, 1)",A5="cubic-bezier(0.0, 0, 0.2, 1)",B5="cubic-bezier(0.4, 0, 1, 1)";function We(n,l){const r=nl();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function kl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=We(n).type;return ir((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Hu=0,qs=new WeakMap;function on(){const n=We("getUid");if(qs.has(n))return qs.get(n);{const l=Hu++;return qs.set(n,l),l}}on.reset=()=>{Hu=0,qs=new WeakMap};function Ih(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?H5(n):yh(n))return n;n=n.parentElement}return document.scrollingElement}function ra(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(yh(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function yh(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function H5(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function N5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:We("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function j5(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Lt(n){const l=We("useRender");l.render=n}const Zr=Symbol.for("vuetify:defaults");function P5(n){return Pt(n)}function Ch(){const n=he(Zr);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Fe(n,l){const r=Ch(),h=Pt(n),u=X(()=>{if(He(l==null?void 0:l.disabled))return r.value;const v=He(l==null?void 0:l.scoped),b=He(l==null?void 0:l.reset),z=He(l==null?void 0:l.root);if(h.value==null&&!(v||b||z))return r.value;let C=An(h.value,{prev:r.value});if(v)return C;if(b||z){const S=Number(b||1/0);for(let A=0;A<=S&&!(!C||!("prev"in C));A++)C=C.prev;return C&&typeof z=="string"&&z in C&&(C=An(An(C,{prev:C}),C[z])),C}return C.prev?An(C.prev,C):C});return ye(Zr,u),u}function L5(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[ir(l)])<"u"}function D5(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Ch();const h=We("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const u=X(()=>{var z;return(z=r.value)==null?void 0:z[n._as??l]}),g=new Proxy(n,{get(z,C){var A,B,P,D;const S=Reflect.get(z,C);return C==="class"||C==="style"?[(A=u.value)==null?void 0:A[C],S].filter(E=>E!=null):typeof C=="string"&&!L5(h.vnode,C)?((B=u.value)==null?void 0:B[C])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[C])??S:S}}),v=_t();fn(()=>{if(u.value){const z=Object.entries(u.value).filter(C=>{let[S]=C;return S.startsWith(S[0].toUpperCase())});v.value=z.length?Object.fromEntries(z):void 0}else v.value=void 0});function b(){const z=N5(Zr,h);ye(Zr,X(()=>v.value?An((z==null?void 0:z.value)??{},v.value):z==null?void 0:z.value))}return{props:g,provideSubDefaults:b}}const Pa=["sm","md","lg","xl","xxl"],s0=Symbol.for("vuetify:display"),B1={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},F5=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:B1;return An(B1,n)};function H1(n){return Me&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function N1(n){return Me&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function j1(n){const l=Me&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),u=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),b=r(/chrome/i),z=r(/edge/i),C=r(/firefox/i),S=r(/opera/i),A=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:u,cordova:g,electron:v,chrome:b,edge:z,firefox:C,opera:S,win:A,mac:B,linux:P,touch:Kf,ssr:l==="ssr"}}function O5(n,l){const{thresholds:r,mobileBreakpoint:h}=F5(n),u=_t(N1(l)),g=_t(j1(l)),v=Ye({}),b=_t(H1(l));function z(){u.value=N1(),b.value=H1()}function C(){z(),g.value=j1()}return fn(()=>{const S=b.value=r.xxl,Y=S?"xs":A?"sm":B?"md":P?"lg":D?"xl":"xxl",O=typeof h=="number"?h:r[h],H=b.valueHn($h,{...n,class:"mdi"})},te=[String,Function,Object,Array],a0=Symbol.for("vuetify:icons"),La=mt({icon:{type:te},tag:{type:String,required:!0}},"icon"),i0=At()({name:"VComponentIcon",props:La(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var u;return[n.icon?t(h,null,null):(u=r.default)==null?void 0:u.call(r)]}})}}}),Sh=Pn({name:"VSvgIcon",inheritAttrs:!1,props:La(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),E5=Pn({name:"VLigatureIcon",props:La(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),$h=Pn({name:"VClassIcon",props:La(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),V5={svg:{component:Sh},class:{component:$h}};function _5(n){return An({defaultSet:"mdi",sets:{...V5,mdi:R5},aliases:{...T5,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const W5=n=>{const l=he(a0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:X(()=>{var z;const h=He(n);if(!h)return{component:i0};let u=h;if(typeof u=="string"&&(u=u.trim(),u.startsWith("$")&&(u=(z=l.aliases)==null?void 0:z[u.slice(1)])),!u)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(u))return{component:Sh,icon:u};if(typeof u!="string")return{component:i0,icon:u};const g=Object.keys(l.sets).find(C=>typeof u=="string"&&u.startsWith(`${C}:`)),v=g?u.slice(g.length+1):u;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},X5={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},q5={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Vl(n,l){let r;function h(){r=Jr(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}Vt(n,u=>{u&&!r?h():u||(r==null||r.stop(),r=void 0)},{immediate:!0}),ln(()=>{r==null||r.stop()})}function ee(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:A=>A,u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:A=>A;const g=We("useProxiedModel"),v=Pt(n[l]!==void 0?n[l]:r),b=ir(l),C=X(b!==l?()=>{var A,B,P,D;return n[l],!!(((A=g.vnode.props)!=null&&A.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(b))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${b}`)))}:()=>{var A,B;return n[l],!!((A=g.vnode.props)!=null&&A.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Vl(()=>!C.value,()=>{Vt(()=>n[l],A=>{v.value=A})});const S=X({get(){const A=n[l];return h(C.value?A:v.value)},set(A){const B=u(A),P=ne(C.value?n[l]:v.value);P===B||h(P)===A||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>C.value?n[l]:v.value}),S}const P1="$vuetify.",L1=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),Nu=(n,l,r)=>function(h){for(var u=arguments.length,g=new Array(u>1?u-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function mi(n,l,r){const h=ee(n,l,n[l]??r.value);return h.value=n[l]??r.value,Vt(r,u=>{n[l]==null&&(h.value=r.value)}),h}function Pu(n){return l=>{const r=mi(l,"locale",n.current),h=mi(l,"fallback",n.fallback),u=mi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:u,t:Nu(r,h,u),n:ju(r,h),provide:Pu({current:r,fallback:h,messages:u})}}}function Y5(n){const l=_t((n==null?void 0:n.locale)??"en"),r=_t((n==null?void 0:n.fallback)??"en"),h=Pt({en:X5,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:Nu(l,r,h),n:ju(l,r),provide:Pu({current:l,fallback:r,messages:h})}}const Kr=Symbol.for("vuetify:locale");function G5(n){return n.name!=null}function U5(n){const l=n!=null&&n.adapter&&G5(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:Y5(n),r=K5(l,n);return{...l,...r}}function Ln(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function Z5(n){const l=he(Kr);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=Q5(r,l.rtl,n),u={...r,...h};return ye(Kr,u),u}function K5(n,l){const r=Pt((l==null?void 0:l.rtl)??q5),h=X(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Q5(n,l,r){const h=X(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Xe(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const Zo=Symbol.for("vuetify:theme"),ce=mt({theme:String},"theme"),ko={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function J5(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ko;if(!n)return{...ko,isDisabled:!0};const l={};for(const[u,g]of Object.entries(n.themes??{})){const v=g.dark||u==="dark"?(r=ko.themes)==null?void 0:r.dark:(h=ko.themes)==null?void 0:h.light;l[u]=An(v,g)}return An(ko,{...n,themes:l})}function tm(n){const l=J5(n),r=Pt(l.defaultTheme),h=Pt(l.themes),u=X(()=>{const S={};for(const[A,B]of Object.entries(h.value)){const P=S[A]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const E=P.colors[D];if(E)for(const Y of["lighten","darken"]){const O=Y==="lighten"?C5:S5;for(const H of il(l.variations[Y],1))P.colors[`${D}-${Y}-${H}`]=Cu(O(_n(E),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const E=`on-${D}`,Y=_n(P.colors[D]);P.colors[E]=Au(Y)}}return S}),g=X(()=>u.value[r.value]),v=X(()=>{const S=[];g.value.dark&&Jl(S,":root",["color-scheme: dark"]),Jl(S,":root",D1(g.value));for(const[D,E]of Object.entries(u.value))Jl(S,`.v-theme--${D}`,[`color-scheme: ${E.dark?"dark":"normal"}`,...D1(E)]);const A=[],B=[],P=new Set(Object.values(u.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?Jl(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(Jl(A,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),Jl(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),Jl(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...A,...B),S.map((D,E)=>E===0?D:` ${D}`).join("")});function b(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function z(S){if(l.isDisabled)return;const A=S._context.provides.usehead;if(A)if(A.push){const B=A.push(b);Me&&Vt(v,()=>{B.patch(b)})}else Me?(A.addHeadObjs(X(b)),fn(()=>A.updateDOM())):A.addHeadObjs(b());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=Me?document.getElementById("vuetify-theme-stylesheet"):null;Me?Vt(v,P,{immediate:!0}):P()}}const C=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:z,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:u,themeClasses:C,styles:v,global:{name:r,current:g}}}function ge(n){We("provideTheme");const l=he(Zo,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=X(()=>n.theme??(l==null?void 0:l.name.value)),h=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`),u={...l,name:r,themeClasses:h};return ye(Zo,u),u}function Lu(){We("useTheme");const n=he(Zo,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function Jl(n,l,r){n.push(`${l} { `,...r.map(h=>` ${h}; `),`} @@ -713,4 +713,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho .apexcharts-rangebar-goals-markers{ pointer-events: none -}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"Codedthemes",lastName:".com"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){const{username:D,password:E}=P(),Y=n.find(O=>O.username===D&&O.password===E);return Y?C({id:Y.id,username:Y.username,firstName:Y.firstName,lastName:Y.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,q6 as a5,lV as a6,Bt as a7,Hn as a8,Ye as a9,pe as aa,Te as ab,ke as ac,Vt as ad,ye as ae,no as af,fn as ag,jg as ah,Ik as ai,vk as aj,vh as ak,p8 as al,O3 as am,Ce as an,Nn as ao,Df as ap,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; +}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"Codedthemes",lastName:".com"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){const{username:D,password:E}=P(),Y=n.find(O=>O.username===D&&O.password===E);return Y?C({id:Y.id,username:Y.username,firstName:Y.firstName,lastName:Y.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,J7 as a5,q6 as a6,lV as a7,Bt as a8,Hn as a9,Ye as aa,pe as ab,Te as ac,ke as ad,Vt as ae,ye as af,no as ag,fn as ah,jg as ai,Ik as aj,vk as ak,vh as al,p8 as am,O3 as an,Ce as ao,Nn as ap,Df as aq,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; diff --git a/addons/dashboard/dist/index.html b/addons/dashboard/dist/index.html index 4fef00a16..becbf61d7 100644 --- a/addons/dashboard/dist/index.html +++ b/addons/dashboard/dist/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" /> AstrBot - 仪表盘 - + diff --git a/addons/dashboard/helper.py b/addons/dashboard/helper.py index c46e2ecce..ebb35d502 100644 --- a/addons/dashboard/helper.py +++ b/addons/dashboard/helper.py @@ -63,7 +63,7 @@ class DashBoardHelper(): config_type="item", val_type="bool", name="启用 QQ 频道平台", - description="机器人平台名称描述", + description="就是你想到的那个 QQ 频道平台。详见 q.qq.com", value=config['qqbot']['enable'], path="qqbot.enable", ), @@ -71,7 +71,7 @@ class DashBoardHelper(): config_type="item", val_type="string", name="QQ机器人APPID", - description="机器人平台名称描述", + description="详见 q.qq.com", value=config['qqbot']['appid'], path="qqbot.appid", ), @@ -79,7 +79,7 @@ class DashBoardHelper(): config_type="item", val_type="string", name="QQ机器人令牌", - description="机器人平台名称描述", + description="详见 q.qq.com", value=config['qqbot']['token'], path="qqbot.token", ), @@ -90,7 +90,7 @@ class DashBoardHelper(): config_type="item", val_type="bool", name="启用 GO-CQHTTP 平台", - description="机器人平台名称描述", + description="gocq 是一个基于 HTTP 协议的 CQHTTP 协议的实现。详见 github.com/Mrs4s/go-cqhttp", value=config['gocqbot']['enable'], path="gocqbot.enable", ) @@ -106,7 +106,7 @@ class DashBoardHelper(): config_type="item", val_type="string", name="HTTP 代理地址", - description="代理配置描述", + description="建议上下一致", value=config['http_proxy'], path="proxy", ), @@ -114,18 +114,133 @@ class DashBoardHelper(): config_type="item", val_type="string", name="HTTPS 代理地址", - description="代理配置描述", + description="建议上下一致", value=config['https_proxy'], path="proxy", ) ] ) - - other_group = DashBoardConfig( + ''' + { + "qq_forward_threshold": 200, + "qq_welcome": "欢迎加入本群!\n欢迎给https://github.com/Soulter/QQChannelChatGPT项目一个Star😊~\n输入help查看帮助~\n", + "bing_proxy": "", + "qq_pic_mode": false, + "rev_chatgpt_model": "", + "rev_chatgpt_plugin_ids": [], + "rev_chatgpt_PUID": "", + "rev_chatgpt_unverified_plugin_domains": [], + "gocq_host": "127.0.0.1", + "gocq_http_port": 5700, + "gocq_websocket_port": 6700, + "gocq_react_group": true, + "gocq_react_guild": true, + "gocq_react_friend": true, + "gocq_react_group_increase": true, + "gocq_qqchan_admin": "", + "other_admins": [], + "CHATGPT_BASE_URL": "", + "qqbot_appid": "", + "qqbot_secret": "", + "llm_env_prompt": "> hint: 末尾根据内容和心情添加 1-2 个emoji", + "default_personality_str": "", + "openai_image_generate": { + "model": "dall-e-3", + "size": "1024x1024", + "style": "vivid", + "quality": "standard" + }, + "http_proxy": "", + "https_proxy": "", + "qqbot": { + "enable": true, + "appid": "102041113", + "token": "JNni9hqaLM0rhwmocCE1F3Q8l8gW2r70" + }, + "gocqbot": { + "enable": false + }, + "uniqueSessionMode": false, + "version": 3.0, + "dump_history_interval": 10, + "limit": { + "time": 60, + "count": 5 + }, + "notice": "此机器人由Github项目QQChannelChatGPT驱动。", + "direct_message_mode": true, + "reply_prefix": { + "openai_official": "[GPT]", + "rev_chatgpt": "[Rev]", + "rev_edgegpt": "[RevBing]" + }, + "baidu_aip": { + "enable": false, + "app_id": null, + "api_key": null, + "secret_key": null + }, + "openai": { + "key": [ + null + ], + "api_base": "none", + "chatGPTConfigs": { + "model": "gpt-3.5-turbo", + "max_tokens": 3000, + "temperature": 0.9, + "top_p": 1, + "frequency_penalty": 0, + "presence_penalty": 0 + }, + "total_tokens_limit": 5000 + }, + "rev_ernie": { + "enable": false + }, + "rev_edgegpt": { + "enable": false + }, + "rev_ChatGPT": { + "enable": false, + "account": [ + { + "access_token": null + } + ] + }, + "proxy": "" +} + ''' + general_platform_detail_group = DashBoardConfig( config_type="group", - name="其他配置", - description="其他配置描述", + name="通用平台配置", + description="", body=[ + DashBoardConfig( + config_type="item", + val_type="bool", + name="启动消息文字转图片", + description="启动后,机器人会将消息转换为图片发送,以降低风控风险。", + value=config['qq_pic_mode'], + path="qq_pic_mode", + ), + DashBoardConfig( + config_type="item", + val_type="int", + name="消息限制时间", + description="在此时间内,机器人不会回复同一个用户的消息。单位:秒", + value=config['limit']['time'], + path="limit.time", + ), + DashBoardConfig( + config_type="item", + val_type="int", + name="消息限制次数", + description="在上面的时间内,如果用户发送消息超过此次数,则机器人不会回复。单位:次", + value=config['limit']['count'], + path="limit.count", + ), DashBoardConfig( config_type="item", val_type="string", @@ -133,13 +248,225 @@ class DashBoardHelper(): description="[xxxx] 你好! 其中xxxx是你可以填写的前缀。如果为空则不显示。", value=config['reply_prefix'], path="reply_prefix", - ) + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="管理员用户 ID", + description="对机器人 !myid 即可获得。如果此功能不可用,请加群 322154837", + value=config['gocq_qqchan_admin'], + path="gocq_qqchan_admin", + ), + ] + ) + + gocq_platform_detail_group = DashBoardConfig( + config_type="group", + name="GO-CQHTTP 平台配置", + description="", + body=[ + DashBoardConfig( + config_type="item", + val_type="string", + name="HTTP 服务器地址", + description="", + value=config['gocq_host'], + path="gocq_host", + ), + DashBoardConfig( + config_type="item", + val_type="int", + name="HTTP 服务器端口", + description="", + value=config['gocq_http_port'], + path="gocq_http_port", + ), + DashBoardConfig( + config_type="item", + val_type="int", + name="WebSocket 服务器端口", + description="", + value=config['gocq_websocket_port'], + path="gocq_websocket_port", + ), + DashBoardConfig( + config_type="item", + val_type="bool", + name="是否响应群消息", + description="", + value=config['gocq_react_group'], + path="gocq_react_group", + ), + DashBoardConfig( + config_type="item", + val_type="bool", + name="是否响应私聊消息", + description="", + value=config['gocq_react_friend'], + path="gocq_react_friend", + ), + DashBoardConfig( + config_type="item", + val_type="bool", + name="是否响应群成员增加消息", + description="", + value=config['gocq_react_group_increase'], + path="gocq_react_group_increase", + ), + DashBoardConfig( + config_type="item", + val_type="bool", + name="是否响应频道消息", + description="", + value=config['gocq_react_guild'], + path="gocq_react_guild", + ), + ] + ) + + llm_group = DashBoardConfig( + config_type="group", + name="LLM 配置", + description="", + body=[ + DashBoardConfig( + config_type="item", + val_type="list", + name="OpenAI API KEY", + description="OpenAI API 的 KEY。支持使用非官方但是兼容的 API。", + value=config['openai']['key'], + path="openai.key", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="OpenAI API 节点地址", + description="OpenAI API 的节点地址,配合非官方 API 使用。如果不想填写,那么请填写 none", + value=config['openai']['api_base'], + path="openai.api_base", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="OpenAI 模型", + description="OpenAI 模型。详见 https://platform.openai.com/docs/api-reference/chat", + value=config['openai']['chatGPTConfigs']['model'], + path="openai.chatGPTConfigs.model", + ), + DashBoardConfig( + config_type="item", + val_type="int", + name="OpenAI 最大生成长度", + description="OpenAI 最大生成长度。详见 https://platform.openai.com/docs/api-reference/chat", + value=config['openai']['chatGPTConfigs']['max_tokens'], + path="openai.chatGPTConfigs.max_tokens", + ), + DashBoardConfig( + config_type="item", + val_type="float", + name="OpenAI 温度", + description="OpenAI 温度。详见 https://platform.openai.com/docs/api-reference/chat", + value=config['openai']['chatGPTConfigs']['temperature'], + path="openai.chatGPTConfigs.temperature", + ), + DashBoardConfig( + config_type="item", + val_type="float", + name="OpenAI top_p", + description="OpenAI top_p。详见 https://platform.openai.com/docs/api-reference/chat", + value=config['openai']['chatGPTConfigs']['top_p'], + path="openai.chatGPTConfigs.top_p", + ), + DashBoardConfig( + config_type="item", + val_type="float", + name="OpenAI frequency_penalty", + description="OpenAI frequency_penalty。详见 https://platform.openai.com/docs/api-reference/chat", + value=config['openai']['chatGPTConfigs']['frequency_penalty'], + path="openai.chatGPTConfigs.frequency_penalty", + ), + DashBoardConfig( + config_type="item", + val_type="float", + name="OpenAI presence_penalty", + description="OpenAI presence_penalty。详见 https://platform.openai.com/docs/api-reference/chat", + value=config['openai']['chatGPTConfigs']['presence_penalty'], + path="openai.chatGPTConfigs.presence_penalty", + ), + DashBoardConfig( + config_type="item", + val_type="int", + name="OpenAI 总生成长度限制", + description="OpenAI 总生成长度限制。详见 https://platform.openai.com/docs/api-reference/chat", + value=config['openai']['total_tokens_limit'], + path="openai.total_tokens_limit", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="OpenAI 图像生成模型", + description="OpenAI 图像生成模型。", + value=config['openai_image_generate']['model'], + path="openai_image_generate.model", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="OpenAI 图像生成大小", + description="OpenAI 图像生成大小。", + value=config['openai_image_generate']['size'], + path="openai_image_generate.size", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="OpenAI 图像生成风格", + description="OpenAI 图像生成风格。修改前请参考 OpenAI 官方文档", + value=config['openai_image_generate']['style'], + path="openai_image_generate.style", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="OpenAI 图像生成质量", + description="OpenAI 图像生成质量。修改前请参考 OpenAI 官方文档", + value=config['openai_image_generate']['quality'], + path="openai_image_generate.quality", + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="大语言模型问题题首提示词", + description="如果填写了此项,在每个对大语言模型的请求中,都会在问题前加上此提示词。", + value=config['llm_env_prompt'], + path="llm_env_prompt", + ), + ] + ) + + other_group = DashBoardConfig( + config_type="group", + name="其他配置", + description="其他配置描述", + body=[ + # 人格 + DashBoardConfig( + config_type="item", + val_type="string", + name="默认人格文本", + description="默认人格文本", + value=config['default_personality_str'], + path="default_personality_str", + ), ] ) dashboard_data.configs['data'] = [ bot_platform_group, + general_platform_detail_group, + gocq_platform_detail_group, proxy_group, + llm_group, other_group ] @@ -188,6 +515,12 @@ class DashBoardHelper(): self.cc.put_by_dot_str(config['path'], float(config['value'])) except: raise ValueError(f"配置项 {config['name']} 的值必须是浮点数") + elif config['val_type'] == "list": + if config['value'] is None: + self.cc.put_by_dot_str(config['path'], []) + elif not isinstance(config['value'], list): + raise ValueError(f"配置项 {config['name']} 的值必须是列表") + self.cc.put_by_dot_str(config['path'], config['value']) else: raise NotImplementedError(f"未知或者未实现的的配置项类型:{config['val_type']}") From 5ace10d39fa8dea61372fa3af3ee3b5424afa808 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Fri, 15 Dec 2023 13:49:55 +0800 Subject: [PATCH 08/17] =?UTF-8?q?feat:=20=E8=81=94=E7=BD=91=E6=97=B6?= =?UTF-8?q?=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...e_vue_type_style_index_0_lang-4b2e13a6.js} | 2 +- ...ut-a7e52bd5.js => BlankLayout-7e3e95ce.js} | 2 +- ...Page-3951c8fd.js => ColorPage-31b12c0e.js} | 2 +- .../dist/assets/ConfigPage-190ac827.js | 1 + .../dist/assets/ConfigPage-6b137b58.js | 1 - .../dist/assets/DefaultDashboard-53cb3cac.js | 1 + .../dist/assets/DefaultDashboard-e7ebbe76.js | 1 - ...e-251ea613.js => Error404Page-4b58b90a.js} | 2 +- ...-33ae6daa.js => ExtensionPage-1c38b1c7.js} | 2 +- ...out-26975c54.js => FullLayout-fe9c6476.js} | 2 +- ...Page-5a7d822f.js => LoginPage-8d646748.js} | 2 +- ...e_type_script_setup_true_lang-36c35b56.js} | 2 +- ...-5e4ea3a4.js => MaterialIcons-d121ebb1.js} | 2 +- ...e-9891b830.js => RegisterPage-ccc92c7d.js} | 2 +- ...age-7cdf646f.js => ShadowPage-c6ba03ae.js} | 2 +- ...ge-61f71e79.js => StarterPage-64374263.js} | 2 +- ...ns-51a61cf9.js => TablerIcons-79a981d9.js} | 2 +- ...9d394cd9.js => TypographyPage-c91eea8c.js} | 2 +- ...e_type_script_setup_true_lang-b218ce2f.js} | 2 +- .../dashboard/dist/assets/axios-21b846bc.js | 5 - .../dashboard/dist/assets/axios-28bc18a3.js | 5 + .../{index-78c50a9e.js => index-96c19dfb.js} | 4 +- addons/dashboard/dist/index.html | 2 +- addons/dashboard/helper.py | 92 ------------------- cores/monitor/perf.py | 2 + 25 files changed, 27 insertions(+), 117 deletions(-) rename addons/dashboard/dist/assets/{BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js => BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js} (93%) rename addons/dashboard/dist/assets/{BlankLayout-a7e52bd5.js => BlankLayout-7e3e95ce.js} (70%) rename addons/dashboard/dist/assets/{ColorPage-3951c8fd.js => ColorPage-31b12c0e.js} (83%) create mode 100644 addons/dashboard/dist/assets/ConfigPage-190ac827.js delete mode 100644 addons/dashboard/dist/assets/ConfigPage-6b137b58.js create mode 100644 addons/dashboard/dist/assets/DefaultDashboard-53cb3cac.js delete mode 100644 addons/dashboard/dist/assets/DefaultDashboard-e7ebbe76.js rename addons/dashboard/dist/assets/{Error404Page-251ea613.js => Error404Page-4b58b90a.js} (94%) rename addons/dashboard/dist/assets/{ExtensionPage-33ae6daa.js => ExtensionPage-1c38b1c7.js} (97%) rename addons/dashboard/dist/assets/{FullLayout-26975c54.js => FullLayout-fe9c6476.js} (96%) rename addons/dashboard/dist/assets/{LoginPage-5a7d822f.js => LoginPage-8d646748.js} (98%) rename addons/dashboard/dist/assets/{LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js => LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js} (88%) rename addons/dashboard/dist/assets/{MaterialIcons-5e4ea3a4.js => MaterialIcons-d121ebb1.js} (70%) rename addons/dashboard/dist/assets/{RegisterPage-9891b830.js => RegisterPage-ccc92c7d.js} (63%) rename addons/dashboard/dist/assets/{ShadowPage-7cdf646f.js => ShadowPage-c6ba03ae.js} (81%) rename addons/dashboard/dist/assets/{StarterPage-61f71e79.js => StarterPage-64374263.js} (83%) rename addons/dashboard/dist/assets/{TablerIcons-51a61cf9.js => TablerIcons-79a981d9.js} (69%) rename addons/dashboard/dist/assets/{TypographyPage-9d394cd9.js => TypographyPage-c91eea8c.js} (94%) rename addons/dashboard/dist/assets/{UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js => UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js} (88%) delete mode 100644 addons/dashboard/dist/assets/axios-21b846bc.js create mode 100644 addons/dashboard/dist/assets/axios-28bc18a3.js rename addons/dashboard/dist/assets/{index-78c50a9e.js => index-96c19dfb.js} (99%) diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js similarity index 93% rename from addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js rename to addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js index bd77d9e34..caa462f61 100644 --- a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js +++ b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js @@ -1 +1 @@ -import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a6 as p,B as n,a7 as o,j as f}from"./index-78c50a9e.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; +import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a5 as p,B as n,a6 as o,j as f}from"./index-96c19dfb.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/addons/dashboard/dist/assets/BlankLayout-a7e52bd5.js b/addons/dashboard/dist/assets/BlankLayout-7e3e95ce.js similarity index 70% rename from addons/dashboard/dist/assets/BlankLayout-a7e52bd5.js rename to addons/dashboard/dist/assets/BlankLayout-7e3e95ce.js index 11d8e92f7..78201cb66 100644 --- a/addons/dashboard/dist/assets/BlankLayout-a7e52bd5.js +++ b/addons/dashboard/dist/assets/BlankLayout-7e3e95ce.js @@ -1 +1 @@ -import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-78c50a9e.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; +import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-96c19dfb.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/ColorPage-3951c8fd.js b/addons/dashboard/dist/assets/ColorPage-31b12c0e.js similarity index 83% rename from addons/dashboard/dist/assets/ColorPage-3951c8fd.js rename to addons/dashboard/dist/assets/ColorPage-31b12c0e.js index 44995463b..49b5144af 100644 --- a/addons/dashboard/dist/assets/ColorPage-3951c8fd.js +++ b/addons/dashboard/dist/assets/ColorPage-31b12c0e.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-78c50a9e.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-96c19dfb.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-190ac827.js b/addons/dashboard/dist/assets/ConfigPage-190ac827.js new file mode 100644 index 000000000..837c48680 --- /dev/null +++ b/addons/dashboard/dist/assets/ConfigPage-190ac827.js @@ -0,0 +1 @@ +import{_ as p}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{a as m}from"./axios-28bc18a3.js";import{o as a,s as l,a as i,w as d,f,F as n,u as g,V as v,d as V,e as h,t as k,a2 as y,c as r,a3 as b,a4 as C,k as _,A as x}from"./index-96c19dfb.js";const U={name:"ConfigPage",components:{UiParentCard:p},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){m.get("/api/configs").then(s=>{this.config_data=s.data.data,console.log(this.config_data)})},updateConfig(){m.post("/api/configs",this.config_data).then(s=>{console.log(this.config_data),s.data.status==="success"?(this.save_message=s.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=s.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},N=Object.assign(U,{setup(s){return(t,c)=>(a(),l(n,null,[i(v,null,{default:d(()=>[i(f,{cols:"12",md:"12"},{default:d(()=>[(a(!0),l(n,null,g(t.config_data.data,o=>(a(),r(p,{key:o.name,title:o.name,style:{"margin-bottom":"16px"}},{default:d(()=>[(a(!0),l(n,null,g(o.body,e=>(a(),l(n,null,[e.config_type==="item"?(a(),l(n,{key:0},[e.val_type==="bool"?(a(),r(b,{key:0,modelValue:e.value,"onUpdate:modelValue":u=>e.value=u,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(C,{key:1,modelValue:e.value,"onUpdate:modelValue":u=>e.value=u,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):_("",!0)],64)):e.config_type==="divider"?(a(),r(x,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):_("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),i(V,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:t.updateConfig},null,8,["onClick"]),i(y,{timeout:2e3,elevation:"24",color:t.save_message_success,modelValue:t.save_message_snack,"onUpdate:modelValue":c[0]||(c[0]=o=>t.save_message_snack=o)},{default:d(()=>[h(k(t.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{N as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-6b137b58.js b/addons/dashboard/dist/assets/ConfigPage-6b137b58.js deleted file mode 100644 index 87b736543..000000000 --- a/addons/dashboard/dist/assets/ConfigPage-6b137b58.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{a as g}from"./axios-21b846bc.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as _,V as C,d as U,e as x,t as c,a2 as B,c as r,a3 as w,a4 as v,b as V,a5 as N,i as F,q as P,k as f,A as S}from"./index-78c50a9e.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){g.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){g.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},z=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,_(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,_(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":T=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{z as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-53cb3cac.js b/addons/dashboard/dist/assets/DefaultDashboard-53cb3cac.js new file mode 100644 index 000000000..5d0a5dad0 --- /dev/null +++ b/addons/dashboard/dist/assets/DefaultDashboard-53cb3cac.js @@ -0,0 +1 @@ +import{y as R,p as c,o as m,c as h,w as e,a as t,O as y,b as a,d as p,j as w,P as z,q as F,Q as j,z as C,s as D,F as M,u as B,n as x,r as N,l as V,e as g,t as $,S as b,T as U,D as O,U as k,W,X as L,Y as X,Z as I,V as T,f as u,G as E,_ as G}from"./index-96c19dfb.js";import{_ as P}from"./_plugin-vue_export-helper-c27b6911.js";import{a as Y}from"./axios-28bc18a3.js";const q={class:"d-flex align-start mb-6"},A={class:"ml-auto z-1"},H=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),Z=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),J={name:"TotalMessage",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},K=Object.assign(J,{setup(s){const l=R([{title:"移除",icon:U}]);return(_,f)=>{const r=c("DotsIcon");return m(),h(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(y,null,{default:e(()=>[a("div",q,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-message"})]),_:1}),a("div",A,[t(z,{"close-on-content-click":!1},{activator:e(({props:n})=>[t(p,F({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},n),{default:e(()=>[t(r,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(j,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(C,{density:"compact"},{default:e(()=>[(m(!0),D(M,null,B(l.value,(n,i)=>(m(),h(x,{key:i,value:i},{prepend:e(()=>[(m(),h(N(n.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[g($(n.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),H,Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),st=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot=a("h2",{class:"text-h1 font-weight-medium"}," 198 ",-1),lt=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},it=Object.assign(nt,{setup(s){const l=O("1"),_=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),f={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},r=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),n={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(i,o)=>{const d=c("apexchart");return m(),h(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(y,null,{default:e(()=>[a("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",et,[t(W,{modelValue:l.value,"onUpdate:modelValue":o[0]||(o[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(L,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[g("按日")]),_:1}),t(L,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[g("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(X,{modelValue:l.value,"onUpdate:modelValue":o[1]||(o[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(I,{value:"1"},{default:e(()=>[t(T,null,{default:e(()=>[t(u,{cols:"6"},{default:e(()=>[at,st]),_:1}),t(u,{cols:"6"},{default:e(()=>[t(d,{type:"line",height:"90",options:_.value,series:f.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(I,{value:"2"},{default:e(()=>[t(T,null,{default:e(()=>[t(u,{cols:"6"},{default:e(()=>[ot,lt]),_:1}),t(u,{cols:"6"},{default:e(()=>[t(d,{type:"line",height:"90",options:r.value,series:n.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,l){this.memory=s.sys_perf.memory,this.runtime_str=s.sys_start_time;let _=new Date().getTime(),f=new Date(s.sys_start_time*1e3).getTime(),r=_-f,n=Math.floor(r/(24*3600*1e3)),i=r%(24*3600*1e3),o=Math.floor(i/(3600*1e3)),d=i%(3600*1e3),v=Math.floor(d/(60*1e3)),S=d%(60*1e3),Q=Math.round(S/1e3);this.runtime_str=n+"天"+o+"小时"+v+"分"+Q+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ft=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ht(s,l,_,f,r,n){return m(),D(M,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(y,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-clock"})]),_:1}),a("div",null,[a("h4",ct,$(s.runtime_str),1),ut]),t(E),a("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t(w,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(y,{class:"pa-5"},{default:e(()=>[a("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",_t,$(s.memory)+" MiB",1),ft])])]),_:1})]),_:1})],64)}const pt=P(rt,[["render",ht]]),bt=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),vt=a("h3",{class:"text-h3 mt-1"},"??",-1),gt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({}),mounted(){}},xt=Object.assign(yt,{setup(s){const l=O({state:"Today",abbr:"FL"}),_=[{state:"今天",abbr:"FL"},{state:"今月",abbr:"GA"},{state:"今年",abbr:"NE"}],f=k(()=>({chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:["1","2","3","4","5","6","7","8","9","10","11","12"]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}})),r={series:[{name:"消息条数",data:[35,145,35,35,20,105,100,10,65,45,30,10]}]};return(n,i)=>{const o=c("apexchart");return m(),h(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(y,null,{default:e(()=>[t(T,null,{default:e(()=>[t(u,{cols:"12",sm:"9"},{default:e(()=>[bt,vt]),_:1}),t(u,{cols:"12",sm:"3"},{default:e(()=>[t(G,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.value,"onUpdate:modelValue":i[0]||(i[0]=d=>l.value=d),items:_,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue"])]),_:1})]),_:1}),a("div",gt,[t(o,{type:"bar",height:"280",options:f.value,series:r.series},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),wt={class:"d-flex align-center"},$t=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Dt={class:"text-center mt-3"},Mt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,l){this.stat=s},deep:!0}},data:()=>({}),mounted(){}},Ot=Object.assign(Mt,{setup(s){k(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}}));const l=O([{name:"QQ 群",count:14124},{name:"QQ 频道",count:612},{name:"Discord",count:123}]);return(_,f)=>{const r=c("DotsIcon"),n=c("perfect-scrollbar"),i=c("ChevronRightIcon");return m(),h(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(y,null,{default:e(()=>[a("div",wt,[$t,a("div",Vt,[t(z,{transition:"slide-y-transition"},{activator:e(({props:o})=>[t(p,F({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},o),{default:e(()=>[t(r,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(j,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(C,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[g("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[g("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[g("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",kt,[t(n,{style:{height:"270px"}},{default:e(()=>[t(C,{lines:"two",class:"py-0"},{default:e(()=>[(m(!0),D(M,null,B(l.value,(o,d)=>(m(),h(x,{key:d,value:o,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Tt,[a("div",null,[a("h6",St,$(o.name),1)]),a("div",Ct,$(o.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Dt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(i,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[g("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:K,TotalSession:it,OnlineTime:pt,MessageStat:xt,PlatformStat:Ot},data:()=>({stat:{}}),mounted(){Y.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,l,_,f,r,n){const i=c("TotalMessage"),o=c("TotalSession"),d=c("OnlineTime"),v=c("MessageStat"),S=c("PlatformStat");return m(),h(T,null,{default:e(()=>[t(u,{cols:"12",md:"4"},{default:e(()=>[t(i,{stat:s.stat},null,8,["stat"])]),_:1}),t(u,{cols:"12",md:"4"},{default:e(()=>[t(o,{stat:s.stat},null,8,["stat"])]),_:1}),t(u,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:s.stat},null,8,["stat"])]),_:1}),t(u,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:s.stat},null,8,["stat"])]),_:1}),t(u,{cols:"12",lg:"4"},{default:e(()=>[t(S,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const Bt=P(Lt,[["render",It]]);export{Bt as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-e7ebbe76.js b/addons/dashboard/dist/assets/DefaultDashboard-e7ebbe76.js deleted file mode 100644 index 0659ae7ff..000000000 --- a/addons/dashboard/dist/assets/DefaultDashboard-e7ebbe76.js +++ /dev/null @@ -1 +0,0 @@ -import{y as Q,p as i,o as r,c as _,w as e,a as t,O as g,b as a,d as f,j as w,P as M,q as z,Q as F,z as T,s as C,F as D,u as j,n as y,r as R,l as $,e as v,t as V,S as h,T as N,D as O,U as k,W as U,X as I,Y as W,Z as L,V as S,f as d,G as X,_ as E}from"./index-78c50a9e.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";import{a as G}from"./axios-21b846bc.js";const Y={class:"d-flex align-start mb-6"},q={class:"ml-auto z-1"},A=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),H=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),Z={name:"TotalMessage",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},J=Object.assign(Z,{setup(s){const o=Q([{title:"移除",icon:N}]);return(p,b)=>{const u=i("DotsIcon");return r(),_(h,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",Y,[t(f,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-message"})]),_:1}),a("div",q,[t(M,{"close-on-content-click":!1},{activator:e(({props:n})=>[t(f,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},n),{default:e(()=>[t(u,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(T,{density:"compact"},{default:e(()=>[(r(!0),C(D,null,j(o.value,(n,c)=>(r(),_(y,{key:c,value:c},{prepend:e(()=>[(r(),_(R(n.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t($,{class:"ml-2"},{default:e(()=>[v(V(n.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),A,H]),_:1})]),_:1})}}}),K={class:"d-flex align-start mb-3"},tt={class:"ml-auto z-1"},et=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),at=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),st=a("h2",{class:"text-h1 font-weight-medium"}," 198 ",-1),ot=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),lt={name:"TotalSession",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},nt=Object.assign(lt,{setup(s){const o=O("1"),p=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),b={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},u=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),n={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(c,l)=>{const m=i("apexchart");return r(),_(h,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",K,[t(f,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",tt,[t(U,{modelValue:o.value,"onUpdate:modelValue":l[0]||(l[0]=x=>o.value=x),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(I,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[v("按日")]),_:1}),t(I,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[v("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(W,{modelValue:o.value,"onUpdate:modelValue":l[1]||(l[1]=x=>o.value=x),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"6"},{default:e(()=>[et,at]),_:1}),t(d,{cols:"6"},{default:e(()=>[t(m,{type:"line",height:"90",options:p.value,series:b.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"6"},{default:e(()=>[st,ot]),_:1}),t(d,{cols:"6"},{default:e(()=>[t(m,{type:"line",height:"90",options:u.value,series:n.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),it={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.memory=s.sys_perf.memory},deep:!0}},data:()=>({_stat:{},memory:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},rt=a("div",null,[a("h4",{class:"text-h4 font-weight-medium"},"?? 天 ?? 时 ?? 秒"),a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间")],-1),ct={class:"d-flex align-center gap-3"},ut={class:"text-h4 font-weight-medium"},mt=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function _t(s,o,p,b,u,n){return r(),C(D,null,[t(h,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(g,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(f,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-clock"})]),_:1}),rt,t(X),a("div",null,[t(f,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t(w,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(h,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(g,{class:"pa-5"},{default:e(()=>[a("div",ct,[t(f,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",ut,V(s.memory)+" MiB",1),mt])])]),_:1})]),_:1})],64)}const ft=B(it,[["render",_t]]),ht=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),pt=a("h3",{class:"text-h3 mt-1"},"??",-1),bt={class:"mt-4"},vt={name:"MessageStat",components:{},props:["stat"],data:()=>({}),mounted(){}},gt=Object.assign(vt,{setup(s){const o=O({state:"Today",abbr:"FL"}),p=[{state:"今天",abbr:"FL"},{state:"今月",abbr:"GA"},{state:"今年",abbr:"NE"}],b=k(()=>({chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:["1","2","3","4","5","6","7","8","9","10","11","12"]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}})),u={series:[{name:"消息条数",data:[35,145,35,35,20,105,100,10,65,45,30,10]}]};return(n,c)=>{const l=i("apexchart");return r(),_(h,{elevation:"0"},{default:e(()=>[t(h,{variant:"outlined"},{default:e(()=>[t(g,null,{default:e(()=>[t(S,null,{default:e(()=>[t(d,{cols:"12",sm:"9"},{default:e(()=>[ht,pt]),_:1}),t(d,{cols:"12",sm:"3"},{default:e(()=>[t(E,{color:"primary",variant:"outlined","hide-details":"",modelValue:o.value,"onUpdate:modelValue":c[0]||(c[0]=m=>o.value=m),items:p,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue"])]),_:1})]),_:1}),a("div",bt,[t(l,{type:"bar",height:"280",options:b.value,series:u.series},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},yt=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),wt={class:"ml-auto"},$t={class:"mt-4"},Vt={class:"d-inline-flex align-center justify-space-between w-100"},kt={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},St={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Tt={class:"text-center mt-3"},Ct={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.stat=s},deep:!0}},data:()=>({}),mounted(){}},Dt=Object.assign(Ct,{setup(s){k(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}}));const o=O([{name:"QQ 群",count:14124},{name:"QQ 频道",count:612},{name:"Discord",count:123}]);return(p,b)=>{const u=i("DotsIcon"),n=i("perfect-scrollbar"),c=i("ChevronRightIcon");return r(),_(h,{elevation:"0"},{default:e(()=>[t(h,{variant:"outlined"},{default:e(()=>[t(g,null,{default:e(()=>[a("div",xt,[yt,a("div",wt,[t(M,{transition:"slide-y-transition"},{activator:e(({props:l})=>[t(f,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},l),{default:e(()=>[t(u,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(T,null,{default:e(()=>[t(y,{value:"1"},{default:e(()=>[t($,null,{default:e(()=>[v("今天")]),_:1})]),_:1}),t(y,{value:"2"},{default:e(()=>[t($,null,{default:e(()=>[v("今月")]),_:1})]),_:1}),t(y,{value:"3"},{default:e(()=>[t($,null,{default:e(()=>[v("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",$t,[t(n,{style:{height:"270px"}},{default:e(()=>[t(T,{lines:"two",class:"py-0"},{default:e(()=>[(r(!0),C(D,null,j(o.value,(l,m)=>(r(),_(y,{key:m,value:l,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Vt,[a("div",null,[a("h6",kt,V(l.name),1)]),a("div",St,V(l.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Tt,[t(f,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[v("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Ot={name:"DefaultDashboard",components:{TotalMessage:J,TotalSession:nt,OnlineTime:ft,MessageStat:gt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){G.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,o,p,b,u,n){const c=i("TotalMessage"),l=i("TotalSession"),m=i("OnlineTime"),x=i("MessageStat"),P=i("PlatformStat");return r(),_(S,null,{default:e(()=>[t(d,{cols:"12",md:"4"},{default:e(()=>[t(c,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",md:"4"},{default:e(()=>[t(l,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",md:"4"},{default:e(()=>[t(m,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",lg:"8"},{default:e(()=>[t(x,{stat:s.stat},null,8,["stat"])]),_:1}),t(d,{cols:"12",lg:"4"},{default:e(()=>[t(P,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const Ft=B(Ot,[["render",It]]);export{Ft as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-251ea613.js b/addons/dashboard/dist/assets/Error404Page-4b58b90a.js similarity index 94% rename from addons/dashboard/dist/assets/Error404Page-251ea613.js rename to addons/dashboard/dist/assets/Error404Page-4b58b90a.js index 531b5971c..de4a5b842 100644 --- a/addons/dashboard/dist/assets/Error404Page-251ea613.js +++ b/addons/dashboard/dist/assets/Error404Page-4b58b90a.js @@ -1 +1 @@ -import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-78c50a9e.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; +import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-96c19dfb.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-33ae6daa.js b/addons/dashboard/dist/assets/ExtensionPage-1c38b1c7.js similarity index 97% rename from addons/dashboard/dist/assets/ExtensionPage-33ae6daa.js rename to addons/dashboard/dist/assets/ExtensionPage-1c38b1c7.js index f1ba42ae8..6316b7d3f 100644 --- a/addons/dashboard/dist/assets/ExtensionPage-33ae6daa.js +++ b/addons/dashboard/dist/assets/ExtensionPage-1c38b1c7.js @@ -1,4 +1,4 @@ -import{x as _,o as s,c as l,w as t,a as e,$ as f,b as r,a0 as h,e as i,t as d,G as g,d as m,A as V,O as v,a1 as x,S as k,D as p,s as C,F as w,u as S,f as y,j as b,V as B}from"./index-78c50a9e.js";const P={class:"d-sm-flex align-center justify-space-between"},$=_({__name:"ExtensionCard",props:{title:String,link:String},setup(u){const n=u,c=o=>{window.open(o,"_blank")};return(o,a)=>(s(),l(k,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(f,{style:{padding:"10px 20px"}},{default:t(()=>[r("div",P,[e(h,null,{default:t(()=>[i(d(n.title),1)]),_:1}),e(g),e(m,{icon:"mdi-link",variant:"plain",onClick:a[0]||(a[0]=E=>c(n.link))})])]),_:1}),e(V),e(v,null,{default:t(()=>[x(o.$slots,"default")]),_:3})]),_:3}))}}),G={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},N={class:"d-flex align-center gap-3"},D=` +import{x as _,o as s,c as l,w as t,a as e,$ as f,b as r,a0 as h,e as i,t as d,G as g,d as m,A as V,O as v,a1 as x,S as k,D as p,s as C,F as w,u as S,f as y,j as b,V as B}from"./index-96c19dfb.js";const P={class:"d-sm-flex align-center justify-space-between"},$=_({__name:"ExtensionCard",props:{title:String,link:String},setup(u){const n=u,c=o=>{window.open(o,"_blank")};return(o,a)=>(s(),l(k,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(f,{style:{padding:"10px 20px"}},{default:t(()=>[r("div",P,[e(h,null,{default:t(()=>[i(d(n.title),1)]),_:1}),e(g),e(m,{icon:"mdi-link",variant:"plain",onClick:a[0]||(a[0]=E=>c(n.link))})])]),_:1}),e(V),e(v,null,{default:t(()=>[x(o.$slots,"default")]),_:3})]),_:3}))}}),G={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},N={class:"d-flex align-center gap-3"},D=` { "data": [ { diff --git a/addons/dashboard/dist/assets/FullLayout-26975c54.js b/addons/dashboard/dist/assets/FullLayout-fe9c6476.js similarity index 96% rename from addons/dashboard/dist/assets/FullLayout-26975c54.js rename to addons/dashboard/dist/assets/FullLayout-fe9c6476.js index 99e3f2a21..08621b5cb 100644 --- a/addons/dashboard/dist/assets/FullLayout-26975c54.js +++ b/addons/dashboard/dist/assets/FullLayout-fe9c6476.js @@ -1 +1 @@ -import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-78c50a9e.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; +import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-96c19dfb.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; diff --git a/addons/dashboard/dist/assets/LoginPage-5a7d822f.js b/addons/dashboard/dist/assets/LoginPage-8d646748.js similarity index 98% rename from addons/dashboard/dist/assets/LoginPage-5a7d822f.js rename to addons/dashboard/dist/assets/LoginPage-8d646748.js index 380e61a64..e8a5c0b92 100644 --- a/addons/dashboard/dist/assets/LoginPage-5a7d822f.js +++ b/addons/dashboard/dist/assets/LoginPage-8d646748.js @@ -1,4 +1,4 @@ -import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js";import{x as ke,a8 as we,r as Ot,a9 as Vt,D as A,aa as Be,U as P,B as I,ab as Q,ac as St,ad as Ne,ae as Ie,af as Et,ag as jt,ah as At,ai as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,aj as Ft,d as Pt,e as Ge,s as Ct,ak as Tt,t as Bt,k as Nt,al as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-78c50a9e.js";/** +import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js";import{x as ke,a7 as we,r as Ot,a8 as Vt,D as A,a9 as Be,U as P,B as I,aa as Q,ab as St,ac as Ne,ad as Ie,ae as Et,af as jt,ag as At,ah as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,ai as Ft,d as Pt,e as Ge,s as Ct,aj as Tt,t as Bt,k as Nt,ak as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-96c19dfb.js";/** * vee-validate v4.11.3 * (c) 2023 Abdelrahman Awad * @license MIT diff --git a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js similarity index 88% rename from addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js rename to addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js index fe62ede59..ac4116b30 100644 --- a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js +++ b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js @@ -1 +1 @@ -import{an as _,x as d,D as n,o as c,s as m,a as p,w as f,ao as r,b as a,ap as o,B as t,aq as h}from"./index-78c50a9e.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; +import{am as _,x as d,D as n,o as c,s as m,a as p,w as f,an as r,b as a,ao as o,B as t,ap as h}from"./index-96c19dfb.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/addons/dashboard/dist/assets/MaterialIcons-5e4ea3a4.js b/addons/dashboard/dist/assets/MaterialIcons-d121ebb1.js similarity index 70% rename from addons/dashboard/dist/assets/MaterialIcons-5e4ea3a4.js rename to addons/dashboard/dist/assets/MaterialIcons-d121ebb1.js index 5df8767be..65de7b51f 100644 --- a/addons/dashboard/dist/assets/MaterialIcons-5e4ea3a4.js +++ b/addons/dashboard/dist/assets/MaterialIcons-d121ebb1.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-78c50a9e.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-96c19dfb.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-9891b830.js b/addons/dashboard/dist/assets/RegisterPage-ccc92c7d.js similarity index 63% rename from addons/dashboard/dist/assets/RegisterPage-9891b830.js rename to addons/dashboard/dist/assets/RegisterPage-ccc92c7d.js index 618b96799..7415de3c3 100644 --- a/addons/dashboard/dist/assets/RegisterPage-9891b830.js +++ b/addons/dashboard/dist/assets/RegisterPage-ccc92c7d.js @@ -1 +1 @@ -import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,a4 as m,aj as A,am as E,F,c as T,L as q,S as V,O as P}from"./index-78c50a9e.js";const S="/assets/social-google-a359a253.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),j=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),D={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},G=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),L={class:"mt-5 text-right"},O=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),j,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",D,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),G]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",L,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(O)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; +import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as i,A as _,e as f,V as r,a4 as m,ai as A,al as E,F,c as T,L as q,S as V,O as P}from"./index-96c19dfb.js";const S="/assets/social-google-a359a253.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),d=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(i,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(i,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(i,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":d.value?"mdi-eye":"mdi-eye-off",type:d.value?"text":"password","onClick:append":l[4]||(l[4]=t=>d.value=!d.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,d)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(i,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(i,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(i,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/ShadowPage-7cdf646f.js b/addons/dashboard/dist/assets/ShadowPage-c6ba03ae.js similarity index 81% rename from addons/dashboard/dist/assets/ShadowPage-7cdf646f.js rename to addons/dashboard/dist/assets/ShadowPage-c6ba03ae.js index 9d9954bda..001ac5ce9 100644 --- a/addons/dashboard/dist/assets/ShadowPage-7cdf646f.js +++ b/addons/dashboard/dist/assets/ShadowPage-c6ba03ae.js @@ -1 +1 @@ -import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-78c50a9e.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-96c19dfb.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/StarterPage-61f71e79.js b/addons/dashboard/dist/assets/StarterPage-64374263.js similarity index 83% rename from addons/dashboard/dist/assets/StarterPage-61f71e79.js rename to addons/dashboard/dist/assets/StarterPage-64374263.js index a468c5358..abefed22b 100644 --- a/addons/dashboard/dist/assets/StarterPage-61f71e79.js +++ b/addons/dashboard/dist/assets/StarterPage-64374263.js @@ -1 +1 @@ -import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-78c50a9e.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; +import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-96c19dfb.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; diff --git a/addons/dashboard/dist/assets/TablerIcons-51a61cf9.js b/addons/dashboard/dist/assets/TablerIcons-79a981d9.js similarity index 69% rename from addons/dashboard/dist/assets/TablerIcons-51a61cf9.js rename to addons/dashboard/dist/assets/TablerIcons-79a981d9.js index 1aaab935e..93c05291b 100644 --- a/addons/dashboard/dist/assets/TablerIcons-51a61cf9.js +++ b/addons/dashboard/dist/assets/TablerIcons-79a981d9.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-78c50a9e.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-96c19dfb.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/addons/dashboard/dist/assets/TypographyPage-9d394cd9.js b/addons/dashboard/dist/assets/TypographyPage-c91eea8c.js similarity index 94% rename from addons/dashboard/dist/assets/TypographyPage-9d394cd9.js rename to addons/dashboard/dist/assets/TypographyPage-c91eea8c.js index b0345b48e..621b439e6 100644 --- a/addons/dashboard/dist/assets/TypographyPage-9d394cd9.js +++ b/addons/dashboard/dist/assets/TypographyPage-c91eea8c.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-78c50a9e.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-96c19dfb.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; diff --git a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js similarity index 88% rename from addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js rename to addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js index 696bf2094..8d7b4fc8d 100644 --- a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js +++ b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js @@ -1 +1 @@ -import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-78c50a9e.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; +import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-96c19dfb.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/addons/dashboard/dist/assets/axios-21b846bc.js b/addons/dashboard/dist/assets/axios-21b846bc.js deleted file mode 100644 index 801375a47..000000000 --- a/addons/dashboard/dist/assets/axios-21b846bc.js +++ /dev/null @@ -1,5 +0,0 @@ -function me(e,t){return function(){return e.apply(t,arguments)}}const{toString:je}=Object.prototype,{getPrototypeOf:Z}=Object,H=(e=>t=>{const n=je.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),A=e=>(e=e.toLowerCase(),t=>H(t)===e),I=e=>t=>typeof t===e,{isArray:P}=Array,F=I("undefined");function ke(e){return e!==null&&!F(e)&&e.constructor!==null&&!F(e.constructor)&&S(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ye=A("ArrayBuffer");function He(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ye(e.buffer),t}const Ie=I("string"),S=I("function"),Ee=I("number"),q=e=>e!==null&&typeof e=="object",qe=e=>e===!0||e===!1,L=e=>{if(H(e)!=="object")return!1;const t=Z(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},Me=A("Date"),ze=A("File"),Je=A("Blob"),$e=A("FileList"),Ve=e=>q(e)&&S(e.pipe),We=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||S(e.append)&&((t=H(e))==="formdata"||t==="object"&&S(e.toString)&&e.toString()==="[object FormData]"))},Ke=A("URLSearchParams"),Ge=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function B(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),P(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const be=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Se=e=>!F(e)&&e!==be;function K(){const{caseless:e}=Se(this)&&this||{},t={},n=(r,s)=>{const o=e&&we(t,s)||s;L(t[o])&&L(r)?t[o]=K(t[o],r):L(r)?t[o]=K({},r):P(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(B(t,(s,o)=>{n&&S(s)?e[o]=me(s,n):e[o]=s},{allOwnKeys:r}),e),ve=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Qe=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Ze=(e,t,n,r)=>{let s,o,i;const u={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!u[i]&&(t[i]=e[i],u[i]=!0);e=n!==!1&&Z(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Ye=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},et=e=>{if(!e)return null;if(P(e))return e;let t=e.length;if(!Ee(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},tt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Z(Uint8Array)),nt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},rt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},st=A("HTMLFormElement"),ot=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),it=A("RegExp"),Re=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};B(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},at=e=>{Re(e,(t,n)=>{if(S(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(S(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},ct=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return P(e)?r(e):r(String(e).split(t)),n},ut=()=>{},lt=(e,t)=>(e=+e,Number.isFinite(e)?e:t),J="abcdefghijklmnopqrstuvwxyz",oe="0123456789",Oe={DIGIT:oe,ALPHA:J,ALPHA_DIGIT:J+J.toUpperCase()+oe},ft=(e=16,t=Oe.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function dt(e){return!!(e&&S(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const pt=e=>{const t=new Array(10),n=(r,s)=>{if(q(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=P(r)?[]:{};return B(r,(i,u)=>{const f=n(i,s+1);!F(f)&&(o[u]=f)}),t[s]=void 0,o}}return r};return n(e,0)},ht=A("AsyncFunction"),mt=e=>e&&(q(e)||S(e))&&S(e.then)&&S(e.catch),a={isArray:P,isArrayBuffer:ye,isBuffer:ke,isFormData:We,isArrayBufferView:He,isString:Ie,isNumber:Ee,isBoolean:qe,isObject:q,isPlainObject:L,isUndefined:F,isDate:Me,isFile:ze,isBlob:Je,isRegExp:it,isFunction:S,isStream:Ve,isURLSearchParams:Ke,isTypedArray:tt,isFileList:$e,forEach:B,merge:K,extend:Xe,trim:Ge,stripBOM:ve,inherits:Qe,toFlatObject:Ze,kindOf:H,kindOfTest:A,endsWith:Ye,toArray:et,forEachEntry:nt,matchAll:rt,isHTMLForm:st,hasOwnProperty:se,hasOwnProp:se,reduceDescriptors:Re,freezeMethods:at,toObjectSet:ct,toCamelCase:ot,noop:ut,toFiniteNumber:lt,findKey:we,global:be,isContextDefined:Se,ALPHABET:Oe,generateString:ft,isSpecCompliantForm:dt,toJSONObject:pt,isAsyncFn:ht,isThenable:mt};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ae=m.prototype,Te={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Te[e]={value:e}});Object.defineProperties(m,Te);Object.defineProperty(Ae,"isAxiosError",{value:!0});m.from=(e,t,n,r,s,o)=>{const i=Object.create(Ae);return a.toFlatObject(e,i,function(f){return f!==Error.prototype},u=>u!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const yt=null;function G(e){return a.isPlainObject(e)||a.isArray(e)}function ge(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function ie(e,t,n){return e?e.concat(t).map(function(s,o){return s=ge(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function Et(e){return a.isArray(e)&&!e.some(G)}const wt=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function M(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(h,b){return!a.isUndefined(b[h])});const r=n.metaTokens,s=n.visitor||c,o=n.dots,i=n.indexes,f=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function d(l){if(l===null)return"";if(a.isDate(l))return l.toISOString();if(!f&&a.isBlob(l))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(l)||a.isTypedArray(l)?f&&typeof Blob=="function"?new Blob([l]):Buffer.from(l):l}function c(l,h,b){let T=l;if(l&&!b&&typeof l=="object"){if(a.endsWith(h,"{}"))h=r?h:h.slice(0,-2),l=JSON.stringify(l);else if(a.isArray(l)&&Et(l)||(a.isFileList(l)||a.endsWith(h,"[]"))&&(T=a.toArray(l)))return h=ge(h),T.forEach(function(_,Ue){!(a.isUndefined(_)||_===null)&&t.append(i===!0?ie([h],Ue,o):i===null?h:h+"[]",d(_))}),!1}return G(l)?!0:(t.append(ie(b,h,o),d(l)),!1)}const p=[],E=Object.assign(wt,{defaultVisitor:c,convertValue:d,isVisitable:G});function w(l,h){if(!a.isUndefined(l)){if(p.indexOf(l)!==-1)throw Error("Circular reference detected in "+h.join("."));p.push(l),a.forEach(l,function(T,R){(!(a.isUndefined(T)||T===null)&&s.call(t,T,a.isString(R)?R.trim():R,h,E))===!0&&w(T,h?h.concat(R):[R])}),p.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return w(e),t}function ae(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Y(e,t){this._pairs=[],e&&M(e,this,t)}const xe=Y.prototype;xe.append=function(t,n){this._pairs.push([t,n])};xe.toString=function(t){const n=t?function(r){return t.call(this,r,ae)}:ae;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function bt(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ne(e,t,n){if(!t)return e;const r=n&&n.encode||bt,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new Y(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class St{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const ce=St,Pe={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Rt=typeof URLSearchParams<"u"?URLSearchParams:Y,Ot=typeof FormData<"u"?FormData:null,At=typeof Blob<"u"?Blob:null,Tt=(()=>{let e;return typeof navigator<"u"&&((e=navigator.product)==="ReactNative"||e==="NativeScript"||e==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),gt=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),O={isBrowser:!0,classes:{URLSearchParams:Rt,FormData:Ot,Blob:At},isStandardBrowserEnv:Tt,isStandardBrowserWebWorkerEnv:gt,protocols:["http","https","file","blob","url","data"]};function xt(e,t){return M(e,new O.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return O.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Nt(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Pt(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return i=!i&&a.isArray(s)?s.length:i,f?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!u):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=Pt(s[i])),!u)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(Nt(r),s,n,0)}),n}return null}function Ct(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const ee={transitional:Pe,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s&&s?JSON.stringify(Ce(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let u;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return xt(t,this.formSerializer).toString();if((u=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const f=this.env&&this.env.FormData;return M(u?{"files[]":t}:t,f&&new f,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Ct(t)):t}],transformResponse:[function(t){const n=this.transitional||ee.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(u){if(i)throw u.name==="SyntaxError"?m.from(u,m.ERR_BAD_RESPONSE,this,null,this.response):u}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:O.classes.FormData,Blob:O.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{ee.headers[e]={}});const te=ee,Ft=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Bt=e=>{const t={};let n,r,s;return e&&e.split(` -`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Ft[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},ue=Symbol("internals");function C(e){return e&&String(e).trim().toLowerCase()}function U(e){return e===!1||e==null?e:a.isArray(e)?e.map(U):String(e)}function Dt(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const _t=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function $(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function Lt(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Ut(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class z{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(u,f,d){const c=C(f);if(!c)throw new Error("header name must be a non-empty string");const p=a.findKey(s,c);(!p||s[p]===void 0||d===!0||d===void 0&&s[p]!==!1)&&(s[p||f]=U(u))}const i=(u,f)=>a.forEach(u,(d,c)=>o(d,c,f));return a.isPlainObject(t)||t instanceof this.constructor?i(t,n):a.isString(t)&&(t=t.trim())&&!_t(t)?i(Bt(t),n):t!=null&&o(n,t,r),this}get(t,n){if(t=C(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Dt(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=C(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||$(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=C(i),i){const u=a.findKey(r,i);u&&(!n||$(r,r[u],u,n))&&(delete r[u],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||$(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=U(s),delete n[o];return}const u=t?Lt(o):String(o).trim();u!==o&&delete n[o],n[u]=U(s),r[u]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` -`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[ue]=this[ue]={accessors:{}}).accessors,s=this.prototype;function o(i){const u=C(i);r[u]||(Ut(s,i),r[u]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}z.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(z.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(z);const g=z;function V(e,t){const n=this||te,r=t||n,s=g.from(r.headers);let o=r.data;return a.forEach(e,function(u){o=u.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function Fe(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,m,{__CANCEL__:!0});function jt(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const kt=O.isStandardBrowserEnv?function(){return{write:function(n,r,s,o,i,u){const f=[];f.push(n+"="+encodeURIComponent(r)),a.isNumber(s)&&f.push("expires="+new Date(s).toGMTString()),a.isString(o)&&f.push("path="+o),a.isString(i)&&f.push("domain="+i),u===!0&&f.push("secure"),document.cookie=f.join("; ")},read:function(n){const r=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return r?decodeURIComponent(r[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function Ht(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function It(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}function Be(e,t){return e&&!Ht(t)?It(e,t):t}const qt=O.isStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const u=a.isString(i)?s(i):i;return u.protocol===r.protocol&&u.host===r.host}}():function(){return function(){return!0}}();function Mt(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function zt(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(f){const d=Date.now(),c=r[o];i||(i=d),n[s]=f,r[s]=d;let p=o,E=0;for(;p!==s;)E+=n[p++],p=p%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),d-i{const o=s.loaded,i=s.lengthComputable?s.total:void 0,u=o-n,f=r(u),d=o<=i;n=o;const c={loaded:o,total:i,progress:i?o/i:void 0,bytes:u,rate:f||void 0,estimated:f&&i&&d?(i-o)/f:void 0,event:s};c[t?"download":"upload"]=!0,e(c)}}const Jt=typeof XMLHttpRequest<"u",$t=Jt&&function(e){return new Promise(function(n,r){let s=e.data;const o=g.from(e.headers).normalize(),i=e.responseType;let u;function f(){e.cancelToken&&e.cancelToken.unsubscribe(u),e.signal&&e.signal.removeEventListener("abort",u)}let d;a.isFormData(s)&&(O.isStandardBrowserEnv||O.isStandardBrowserWebWorkerEnv?o.setContentType(!1):o.getContentType(/^\s*multipart\/form-data/)?a.isString(d=o.getContentType())&&o.setContentType(d.replace(/^\s*(multipart\/form-data);+/,"$1")):o.setContentType("multipart/form-data"));let c=new XMLHttpRequest;if(e.auth){const l=e.auth.username||"",h=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(l+":"+h))}const p=Be(e.baseURL,e.url);c.open(e.method.toUpperCase(),Ne(p,e.params,e.paramsSerializer),!0),c.timeout=e.timeout;function E(){if(!c)return;const l=g.from("getAllResponseHeaders"in c&&c.getAllResponseHeaders()),b={data:!i||i==="text"||i==="json"?c.responseText:c.response,status:c.status,statusText:c.statusText,headers:l,config:e,request:c};jt(function(R){n(R),f()},function(R){r(R),f()},b),c=null}if("onloadend"in c?c.onloadend=E:c.onreadystatechange=function(){!c||c.readyState!==4||c.status===0&&!(c.responseURL&&c.responseURL.indexOf("file:")===0)||setTimeout(E)},c.onabort=function(){c&&(r(new m("Request aborted",m.ECONNABORTED,e,c)),c=null)},c.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,c)),c=null},c.ontimeout=function(){let h=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const b=e.transitional||Pe;e.timeoutErrorMessage&&(h=e.timeoutErrorMessage),r(new m(h,b.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,c)),c=null},O.isStandardBrowserEnv){const l=(e.withCredentials||qt(p))&&e.xsrfCookieName&&kt.read(e.xsrfCookieName);l&&o.set(e.xsrfHeaderName,l)}s===void 0&&o.setContentType(null),"setRequestHeader"in c&&a.forEach(o.toJSON(),function(h,b){c.setRequestHeader(b,h)}),a.isUndefined(e.withCredentials)||(c.withCredentials=!!e.withCredentials),i&&i!=="json"&&(c.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&c.addEventListener("progress",le(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&c.upload&&c.upload.addEventListener("progress",le(e.onUploadProgress)),(e.cancelToken||e.signal)&&(u=l=>{c&&(r(!l||l.type?new D(null,e,c):l),c.abort(),c=null)},e.cancelToken&&e.cancelToken.subscribe(u),e.signal&&(e.signal.aborted?u():e.signal.addEventListener("abort",u)));const w=Mt(p);if(w&&O.protocols.indexOf(w)===-1){r(new m("Unsupported protocol "+w+":",m.ERR_BAD_REQUEST,e));return}c.send(s||null)})},X={http:yt,xhr:$t};a.forEach(X,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const fe=e=>`- ${e}`,Vt=e=>a.isFunction(e)||e===null||e===!1,De={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o`adapter ${u} `+(f===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since : -`+o.map(fe).join(` -`):" "+fe(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:X};function W(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new D(null,e)}function de(e){return W(e),e.headers=g.from(e.headers),e.data=V.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),De.getAdapter(e.adapter||te.adapter)(e).then(function(r){return W(e),r.data=V.call(e,e.transformResponse,r),r.headers=g.from(r.headers),r},function(r){return Fe(r)||(W(e),r&&r.response&&(r.response.data=V.call(e,e.transformResponse,r.response),r.response.headers=g.from(r.response.headers))),Promise.reject(r)})}const pe=e=>e instanceof g?e.toJSON():e;function N(e,t){t=t||{};const n={};function r(d,c,p){return a.isPlainObject(d)&&a.isPlainObject(c)?a.merge.call({caseless:p},d,c):a.isPlainObject(c)?a.merge({},c):a.isArray(c)?c.slice():c}function s(d,c,p){if(a.isUndefined(c)){if(!a.isUndefined(d))return r(void 0,d,p)}else return r(d,c,p)}function o(d,c){if(!a.isUndefined(c))return r(void 0,c)}function i(d,c){if(a.isUndefined(c)){if(!a.isUndefined(d))return r(void 0,d)}else return r(void 0,c)}function u(d,c,p){if(p in t)return r(d,c);if(p in e)return r(void 0,d)}const f={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:u,headers:(d,c)=>s(pe(d),pe(c),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(c){const p=f[c]||s,E=p(e[c],t[c],c);a.isUndefined(E)&&p!==u||(n[c]=E)}),n}const _e="1.5.1",ne={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ne[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const he={};ne.transitional=function(t,n,r){function s(o,i){return"[Axios v"+_e+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,u)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!he[i]&&(he[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,u):!0}};function Wt(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const u=e[o],f=u===void 0||i(u,o,e);if(f!==!0)throw new m("option "+o+" must be "+f,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const v={assertOptions:Wt,validators:ne},x=v.validators;class k{constructor(t){this.defaults=t,this.interceptors={request:new ce,response:new ce}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=N(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&v.assertOptions(r,{silentJSONParsing:x.transitional(x.boolean),forcedJSONParsing:x.transitional(x.boolean),clarifyTimeoutError:x.transitional(x.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:v.assertOptions(s,{encode:x.function,serialize:x.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],l=>{delete o[l]}),n.headers=g.concat(i,o);const u=[];let f=!0;this.interceptors.request.forEach(function(h){typeof h.runWhen=="function"&&h.runWhen(n)===!1||(f=f&&h.synchronous,u.unshift(h.fulfilled,h.rejected))});const d=[];this.interceptors.response.forEach(function(h){d.push(h.fulfilled,h.rejected)});let c,p=0,E;if(!f){const l=[de.bind(this),void 0];for(l.unshift.apply(l,u),l.push.apply(l,d),E=l.length,c=Promise.resolve(n);p{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(u=>{r.subscribe(u),o=u}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,u){r.reason||(r.reason=new D(o,i,u),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new re(function(s){t=s}),cancel:t}}}const Kt=re;function Gt(e){return function(n){return e.apply(null,n)}}function Xt(e){return a.isObject(e)&&e.isAxiosError===!0}const Q={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Q).forEach(([e,t])=>{Q[t]=e});const vt=Q;function Le(e){const t=new j(e),n=me(j.prototype.request,t);return a.extend(n,j.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Le(N(e,s))},n}const y=Le(te);y.Axios=j;y.CanceledError=D;y.CancelToken=Kt;y.isCancel=Fe;y.VERSION=_e;y.toFormData=M;y.AxiosError=m;y.Cancel=y.CanceledError;y.all=function(t){return Promise.all(t)};y.spread=Gt;y.isAxiosError=Xt;y.mergeConfig=N;y.AxiosHeaders=g;y.formToJSON=e=>Ce(a.isHTMLForm(e)?new FormData(e):e);y.getAdapter=De.getAdapter;y.HttpStatusCode=vt;y.default=y;const Qt=y;export{Qt as a}; diff --git a/addons/dashboard/dist/assets/axios-28bc18a3.js b/addons/dashboard/dist/assets/axios-28bc18a3.js new file mode 100644 index 000000000..3dfffb745 --- /dev/null +++ b/addons/dashboard/dist/assets/axios-28bc18a3.js @@ -0,0 +1,5 @@ +function me(e,t){return function(){return e.apply(t,arguments)}}const{toString:ke}=Object.prototype,{getPrototypeOf:Z}=Object,H=(e=>t=>{const n=ke.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),A=e=>(e=e.toLowerCase(),t=>H(t)===e),I=e=>t=>typeof t===e,{isArray:C}=Array,_=I("undefined");function He(e){return e!==null&&!_(e)&&e.constructor!==null&&!_(e.constructor)&&R(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ye=A("ArrayBuffer");function Ie(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ye(e.buffer),t}const qe=I("string"),R=I("function"),Ee=I("number"),q=e=>e!==null&&typeof e=="object",Me=e=>e===!0||e===!1,L=e=>{if(H(e)!=="object")return!1;const t=Z(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},ze=A("Date"),Je=A("File"),$e=A("Blob"),Ve=A("FileList"),We=e=>q(e)&&R(e.pipe),Ke=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||R(e.append)&&((t=H(e))==="formdata"||t==="object"&&R(e.toString)&&e.toString()==="[object FormData]"))},Ge=A("URLSearchParams"),Xe=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function B(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),C(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const we=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Se=e=>!_(e)&&e!==we;function K(){const{caseless:e}=Se(this)&&this||{},t={},n=(r,s)=>{const o=e&&be(t,s)||s;L(t[o])&&L(r)?t[o]=K(t[o],r):L(r)?t[o]=K({},r):C(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(B(t,(s,o)=>{n&&R(s)?e[o]=me(s,n):e[o]=s},{allOwnKeys:r}),e),Qe=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Ze=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Ye=(e,t,n,r)=>{let s,o,i;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!c[i]&&(t[i]=e[i],c[i]=!0);e=n!==!1&&Z(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},et=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},tt=e=>{if(!e)return null;if(C(e))return e;let t=e.length;if(!Ee(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},nt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Z(Uint8Array)),rt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},st=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},ot=A("HTMLFormElement"),it=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),at=A("RegExp"),Re=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};B(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},ct=e=>{Re(e,(t,n)=>{if(R(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(R(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},ut=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return C(e)?r(e):r(String(e).split(t)),n},lt=()=>{},ft=(e,t)=>(e=+e,Number.isFinite(e)?e:t),J="abcdefghijklmnopqrstuvwxyz",oe="0123456789",Oe={DIGIT:oe,ALPHA:J,ALPHA_DIGIT:J+J.toUpperCase()+oe},dt=(e=16,t=Oe.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function pt(e){return!!(e&&R(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const ht=e=>{const t=new Array(10),n=(r,s)=>{if(q(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=C(r)?[]:{};return B(r,(i,c)=>{const p=n(i,s+1);!_(p)&&(o[c]=p)}),t[s]=void 0,o}}return r};return n(e,0)},mt=A("AsyncFunction"),yt=e=>e&&(q(e)||R(e))&&R(e.then)&&R(e.catch),a={isArray:C,isArrayBuffer:ye,isBuffer:He,isFormData:Ke,isArrayBufferView:Ie,isString:qe,isNumber:Ee,isBoolean:Me,isObject:q,isPlainObject:L,isUndefined:_,isDate:ze,isFile:Je,isBlob:$e,isRegExp:at,isFunction:R,isStream:We,isURLSearchParams:Ge,isTypedArray:nt,isFileList:Ve,forEach:B,merge:K,extend:ve,trim:Xe,stripBOM:Qe,inherits:Ze,toFlatObject:Ye,kindOf:H,kindOfTest:A,endsWith:et,toArray:tt,forEachEntry:rt,matchAll:st,isHTMLForm:ot,hasOwnProperty:se,hasOwnProp:se,reduceDescriptors:Re,freezeMethods:ct,toObjectSet:ut,toCamelCase:it,noop:lt,toFiniteNumber:ft,findKey:be,global:we,isContextDefined:Se,ALPHABET:Oe,generateString:dt,isSpecCompliantForm:pt,toJSONObject:ht,isAsyncFn:mt,isThenable:yt};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ae=m.prototype,Te={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Te[e]={value:e}});Object.defineProperties(m,Te);Object.defineProperty(Ae,"isAxiosError",{value:!0});m.from=(e,t,n,r,s,o)=>{const i=Object.create(Ae);return a.toFlatObject(e,i,function(p){return p!==Error.prototype},c=>c!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const Et=null;function G(e){return a.isPlainObject(e)||a.isArray(e)}function ge(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function ie(e,t,n){return e?e.concat(t).map(function(s,o){return s=ge(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function bt(e){return a.isArray(e)&&!e.some(G)}const wt=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function M(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(d,b){return!a.isUndefined(b[d])});const r=n.metaTokens,s=n.visitor||l,o=n.dots,i=n.indexes,p=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function h(f){if(f===null)return"";if(a.isDate(f))return f.toISOString();if(!p&&a.isBlob(f))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(f)||a.isTypedArray(f)?p&&typeof Blob=="function"?new Blob([f]):Buffer.from(f):f}function l(f,d,b){let w=f;if(f&&!b&&typeof f=="object"){if(a.endsWith(d,"{}"))d=r?d:d.slice(0,-2),f=JSON.stringify(f);else if(a.isArray(f)&&bt(f)||(a.isFileList(f)||a.endsWith(d,"[]"))&&(w=a.toArray(f)))return d=ge(d),w.forEach(function(x,je){!(a.isUndefined(x)||x===null)&&t.append(i===!0?ie([d],je,o):i===null?d:d+"[]",h(x))}),!1}return G(f)?!0:(t.append(ie(b,d,o),h(f)),!1)}const u=[],E=Object.assign(wt,{defaultVisitor:l,convertValue:h,isVisitable:G});function S(f,d){if(!a.isUndefined(f)){if(u.indexOf(f)!==-1)throw Error("Circular reference detected in "+d.join("."));u.push(f),a.forEach(f,function(w,g){(!(a.isUndefined(w)||w===null)&&s.call(t,w,a.isString(g)?g.trim():g,d,E))===!0&&S(w,d?d.concat(g):[g])}),u.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return S(e),t}function ae(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Y(e,t){this._pairs=[],e&&M(e,this,t)}const xe=Y.prototype;xe.append=function(t,n){this._pairs.push([t,n])};xe.toString=function(t){const n=t?function(r){return t.call(this,r,ae)}:ae;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function St(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ne(e,t,n){if(!t)return e;const r=n&&n.encode||St,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new Y(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class Rt{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const ce=Rt,Pe={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Ot=typeof URLSearchParams<"u"?URLSearchParams:Y,At=typeof FormData<"u"?FormData:null,Tt=typeof Blob<"u"?Blob:null,gt={isBrowser:!0,classes:{URLSearchParams:Ot,FormData:At,Blob:Tt},protocols:["http","https","file","blob","url","data"]},Ce=typeof window<"u"&&typeof document<"u",xt=(e=>Ce&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),Nt=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Pt=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Ce,hasStandardBrowserEnv:xt,hasStandardBrowserWebWorkerEnv:Nt},Symbol.toStringTag,{value:"Module"})),O={...Pt,...gt};function Ct(e,t){return M(e,new O.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return O.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Ft(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function _t(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return i=!i&&a.isArray(s)?s.length:i,p?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!c):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=_t(s[i])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(Ft(r),s,n,0)}),n}return null}function Bt(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const ee={transitional:Pe,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s&&s?JSON.stringify(Fe(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return Ct(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const p=this.env&&this.env.FormData;return M(c?{"files[]":t}:t,p&&new p,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Bt(t)):t}],transformResponse:[function(t){const n=this.transitional||ee.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(c){if(i)throw c.name==="SyntaxError"?m.from(c,m.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:O.classes.FormData,Blob:O.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{ee.headers[e]={}});const te=ee,Dt=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Lt=e=>{const t={};let n,r,s;return e&&e.split(` +`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Dt[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},ue=Symbol("internals");function F(e){return e&&String(e).trim().toLowerCase()}function U(e){return e===!1||e==null?e:a.isArray(e)?e.map(U):String(e)}function Ut(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const jt=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function $(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function kt(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Ht(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class z{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(c,p,h){const l=F(p);if(!l)throw new Error("header name must be a non-empty string");const u=a.findKey(s,l);(!u||s[u]===void 0||h===!0||h===void 0&&s[u]!==!1)&&(s[u||p]=U(c))}const i=(c,p)=>a.forEach(c,(h,l)=>o(h,l,p));return a.isPlainObject(t)||t instanceof this.constructor?i(t,n):a.isString(t)&&(t=t.trim())&&!jt(t)?i(Lt(t),n):t!=null&&o(n,t,r),this}get(t,n){if(t=F(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Ut(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=F(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||$(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=F(i),i){const c=a.findKey(r,i);c&&(!n||$(r,r[c],c,n))&&(delete r[c],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||$(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=U(s),delete n[o];return}const c=t?kt(o):String(o).trim();c!==o&&delete n[o],n[c]=U(s),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[ue]=this[ue]={accessors:{}}).accessors,s=this.prototype;function o(i){const c=F(i);r[c]||(Ht(s,i),r[c]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}z.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(z.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(z);const T=z;function V(e,t){const n=this||te,r=t||n,s=T.from(r.headers);let o=r.data;return a.forEach(e,function(c){o=c.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function _e(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,m,{__CANCEL__:!0});function It(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const qt=O.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const i=[e+"="+encodeURIComponent(t)];a.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),a.isString(r)&&i.push("path="+r),a.isString(s)&&i.push("domain="+s),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function Mt(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function zt(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}function Be(e,t){return e&&!Mt(t)?zt(e,t):t}const Jt=O.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const c=a.isString(i)?s(i):i;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}();function $t(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function Vt(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(p){const h=Date.now(),l=r[o];i||(i=h),n[s]=p,r[s]=h;let u=o,E=0;for(;u!==s;)E+=n[u++],u=u%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),h-i{const o=s.loaded,i=s.lengthComputable?s.total:void 0,c=o-n,p=r(c),h=o<=i;n=o;const l={loaded:o,total:i,progress:i?o/i:void 0,bytes:c,rate:p||void 0,estimated:p&&i&&h?(i-o)/p:void 0,event:s};l[t?"download":"upload"]=!0,e(l)}}const Wt=typeof XMLHttpRequest<"u",Kt=Wt&&function(e){return new Promise(function(n,r){let s=e.data;const o=T.from(e.headers).normalize();let{responseType:i,withXSRFToken:c}=e,p;function h(){e.cancelToken&&e.cancelToken.unsubscribe(p),e.signal&&e.signal.removeEventListener("abort",p)}let l;if(a.isFormData(s)){if(O.hasStandardBrowserEnv||O.hasStandardBrowserWebWorkerEnv)o.setContentType(!1);else if((l=o.getContentType())!==!1){const[d,...b]=l?l.split(";").map(w=>w.trim()).filter(Boolean):[];o.setContentType([d||"multipart/form-data",...b].join("; "))}}let u=new XMLHttpRequest;if(e.auth){const d=e.auth.username||"",b=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(d+":"+b))}const E=Be(e.baseURL,e.url);u.open(e.method.toUpperCase(),Ne(E,e.params,e.paramsSerializer),!0),u.timeout=e.timeout;function S(){if(!u)return;const d=T.from("getAllResponseHeaders"in u&&u.getAllResponseHeaders()),w={data:!i||i==="text"||i==="json"?u.responseText:u.response,status:u.status,statusText:u.statusText,headers:d,config:e,request:u};It(function(x){n(x),h()},function(x){r(x),h()},w),u=null}if("onloadend"in u?u.onloadend=S:u.onreadystatechange=function(){!u||u.readyState!==4||u.status===0&&!(u.responseURL&&u.responseURL.indexOf("file:")===0)||setTimeout(S)},u.onabort=function(){u&&(r(new m("Request aborted",m.ECONNABORTED,e,u)),u=null)},u.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,u)),u=null},u.ontimeout=function(){let b=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const w=e.transitional||Pe;e.timeoutErrorMessage&&(b=e.timeoutErrorMessage),r(new m(b,w.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,u)),u=null},O.hasStandardBrowserEnv&&(c&&a.isFunction(c)&&(c=c(e)),c||c!==!1&&Jt(E))){const d=e.xsrfHeaderName&&e.xsrfCookieName&&qt.read(e.xsrfCookieName);d&&o.set(e.xsrfHeaderName,d)}s===void 0&&o.setContentType(null),"setRequestHeader"in u&&a.forEach(o.toJSON(),function(b,w){u.setRequestHeader(w,b)}),a.isUndefined(e.withCredentials)||(u.withCredentials=!!e.withCredentials),i&&i!=="json"&&(u.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&u.addEventListener("progress",le(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&u.upload&&u.upload.addEventListener("progress",le(e.onUploadProgress)),(e.cancelToken||e.signal)&&(p=d=>{u&&(r(!d||d.type?new D(null,e,u):d),u.abort(),u=null)},e.cancelToken&&e.cancelToken.subscribe(p),e.signal&&(e.signal.aborted?p():e.signal.addEventListener("abort",p)));const f=$t(E);if(f&&O.protocols.indexOf(f)===-1){r(new m("Unsupported protocol "+f+":",m.ERR_BAD_REQUEST,e));return}u.send(s||null)})},X={http:Et,xhr:Kt};a.forEach(X,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const fe=e=>`- ${e}`,Gt=e=>a.isFunction(e)||e===null||e===!1,De={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o`adapter ${c} `+(p===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since : +`+o.map(fe).join(` +`):" "+fe(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:X};function W(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new D(null,e)}function de(e){return W(e),e.headers=T.from(e.headers),e.data=V.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),De.getAdapter(e.adapter||te.adapter)(e).then(function(r){return W(e),r.data=V.call(e,e.transformResponse,r),r.headers=T.from(r.headers),r},function(r){return _e(r)||(W(e),r&&r.response&&(r.response.data=V.call(e,e.transformResponse,r.response),r.response.headers=T.from(r.response.headers))),Promise.reject(r)})}const pe=e=>e instanceof T?e.toJSON():e;function P(e,t){t=t||{};const n={};function r(h,l,u){return a.isPlainObject(h)&&a.isPlainObject(l)?a.merge.call({caseless:u},h,l):a.isPlainObject(l)?a.merge({},l):a.isArray(l)?l.slice():l}function s(h,l,u){if(a.isUndefined(l)){if(!a.isUndefined(h))return r(void 0,h,u)}else return r(h,l,u)}function o(h,l){if(!a.isUndefined(l))return r(void 0,l)}function i(h,l){if(a.isUndefined(l)){if(!a.isUndefined(h))return r(void 0,h)}else return r(void 0,l)}function c(h,l,u){if(u in t)return r(h,l);if(u in e)return r(void 0,h)}const p={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:c,headers:(h,l)=>s(pe(h),pe(l),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(l){const u=p[l]||s,E=u(e[l],t[l],l);a.isUndefined(E)&&u!==c||(n[l]=E)}),n}const Le="1.6.2",ne={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ne[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const he={};ne.transitional=function(t,n,r){function s(o,i){return"[Axios v"+Le+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,c)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!he[i]&&(he[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,c):!0}};function Xt(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const c=e[o],p=c===void 0||i(c,o,e);if(p!==!0)throw new m("option "+o+" must be "+p,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const v={assertOptions:Xt,validators:ne},N=v.validators;class k{constructor(t){this.defaults=t,this.interceptors={request:new ce,response:new ce}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=P(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&v.assertOptions(r,{silentJSONParsing:N.transitional(N.boolean),forcedJSONParsing:N.transitional(N.boolean),clarifyTimeoutError:N.transitional(N.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:v.assertOptions(s,{encode:N.function,serialize:N.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],f=>{delete o[f]}),n.headers=T.concat(i,o);const c=[];let p=!0;this.interceptors.request.forEach(function(d){typeof d.runWhen=="function"&&d.runWhen(n)===!1||(p=p&&d.synchronous,c.unshift(d.fulfilled,d.rejected))});const h=[];this.interceptors.response.forEach(function(d){h.push(d.fulfilled,d.rejected)});let l,u=0,E;if(!p){const f=[de.bind(this),void 0];for(f.unshift.apply(f,c),f.push.apply(f,h),E=f.length,l=Promise.resolve(n);u{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(c=>{r.subscribe(c),o=c}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,c){r.reason||(r.reason=new D(o,i,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new re(function(s){t=s}),cancel:t}}}const vt=re;function Qt(e){return function(n){return e.apply(null,n)}}function Zt(e){return a.isObject(e)&&e.isAxiosError===!0}const Q={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Q).forEach(([e,t])=>{Q[t]=e});const Yt=Q;function Ue(e){const t=new j(e),n=me(j.prototype.request,t);return a.extend(n,j.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Ue(P(e,s))},n}const y=Ue(te);y.Axios=j;y.CanceledError=D;y.CancelToken=vt;y.isCancel=_e;y.VERSION=Le;y.toFormData=M;y.AxiosError=m;y.Cancel=y.CanceledError;y.all=function(t){return Promise.all(t)};y.spread=Qt;y.isAxiosError=Zt;y.mergeConfig=P;y.AxiosHeaders=T;y.formToJSON=e=>Fe(a.isHTMLForm(e)?new FormData(e):e);y.getAdapter=De.getAdapter;y.HttpStatusCode=Yt;y.default=y;const en=y;export{en as a}; diff --git a/addons/dashboard/dist/assets/index-78c50a9e.js b/addons/dashboard/dist/assets/index-96c19dfb.js similarity index 99% rename from addons/dashboard/dist/assets/index-78c50a9e.js rename to addons/dashboard/dist/assets/index-96c19dfb.js index 101b82dcd..31e3c5e8d 100644 --- a/addons/dashboard/dist/assets/index-78c50a9e.js +++ b/addons/dashboard/dist/assets/index-96c19dfb.js @@ -6,7 +6,7 @@ * vue-router v4.2.4 * (c) 2023 Eduardo San Martin Morote * @license MIT - */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-26975c54.js"),["assets/FullLayout-26975c54.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-e7ebbe76.js"),["assets/DefaultDashboard-e7ebbe76.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-33ae6daa.js"),[])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-6b137b58.js"),["assets/ConfigPage-6b137b58.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js","assets/axios-21b846bc.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-e7ebbe76.js"),["assets/DefaultDashboard-e7ebbe76.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-61f71e79.js"),["assets/StarterPage-61f71e79.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-51a61cf9.js"),["assets/TablerIcons-51a61cf9.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-5e4ea3a4.js"),["assets/MaterialIcons-5e4ea3a4.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-9d394cd9.js"),["assets/TypographyPage-9d394cd9.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-7cdf646f.js"),["assets/ShadowPage-7cdf646f.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-3951c8fd.js"),["assets/ColorPage-3951c8fd.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9e4c303d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4ffca123.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-a7e52bd5.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-5a7d822f.js"),["assets/LoginPage-5a7d822f.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-9891b830.js"),["assets/RegisterPage-9891b830.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-ca677c1b.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-251ea613.js"),["assets/Error404Page-251ea613.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-251ea613.js"),["assets/Error404Page-251ea613.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} + */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-fe9c6476.js"),["assets/FullLayout-fe9c6476.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-53cb3cac.js"),["assets/DefaultDashboard-53cb3cac.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-28bc18a3.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-1c38b1c7.js"),[])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-190ac827.js"),["assets/ConfigPage-190ac827.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js","assets/axios-28bc18a3.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-53cb3cac.js"),["assets/DefaultDashboard-53cb3cac.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-28bc18a3.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-64374263.js"),["assets/StarterPage-64374263.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-79a981d9.js"),["assets/TablerIcons-79a981d9.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-d121ebb1.js"),["assets/MaterialIcons-d121ebb1.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-c91eea8c.js"),["assets/TypographyPage-c91eea8c.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-c6ba03ae.js"),["assets/ShadowPage-c6ba03ae.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-31b12c0e.js"),["assets/ColorPage-31b12c0e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-7e3e95ce.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-8d646748.js"),["assets/LoginPage-8d646748.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-ccc92c7d.js"),["assets/RegisterPage-ccc92c7d.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-4b58b90a.js"),["assets/Error404Page-4b58b90a.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-4b58b90a.js"),["assets/Error404Page-4b58b90a.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function pl(n){const{h:l,s:r,v:h,a:u}=n,g=b=>{const z=(b+l/60)%6;return h-h*r*Math.max(Math.min(z,4-z,1),0)},v=[g(5),g(3),g(1)].map(b=>Math.round(b*255));return{r:v[0],g:v[1],b:v[2],a:u}}function A1(n){return pl(zh(n))}function ja(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,u=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;u!==g&&(u===l?v=60*(0+(r-h)/(u-g)):u===r?v=60*(2+(h-l)/(u-g)):u===h&&(v=60*(4+(l-r)/(u-g)))),v<0&&(v=v+360);const b=u===0?0:(u-g)/u,z=[v,b,u];return{h:z[0],s:z[1],v:z[2],a:n.a}}function zu(n){const{h:l,s:r,v:h,a:u}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:u}}function zh(n){const{h:l,s:r,l:h,a:u}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:u}}function Iu(n){let{r:l,g:r,b:h,a:u}=n;return u===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${u})`}function yu(n){return Iu(pl(n))}function Os(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Cu(n){let{r:l,g:r,b:h,a:u}=n;return`#${[Os(l),Os(r),Os(h),u!==void 0?Os(Math.round(u*255)):""].join("")}`}function Su(n){n=y5(n);let[l,r,h,u]=l5(n,2).map(g=>parseInt(g,16));return u=u===void 0?u:u/255,{r:l,g:r,b:h,a:u}}function I5(n){const l=Su(n);return ja(l)}function $u(n){return Cu(pl(n))}function y5(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=p1(p1(n,6),8,"F")),n}function C5(n,l){const r=bu(xh(n));return r[0]=r[0]+l*10,xu(Mu(r))}function S5(n,l){const r=bu(xh(n));return r[0]=r[0]-l*10,xu(Mu(r))}function o0(n){const l=_n(n);return xh(l)[1]}function $5(n,l){const r=o0(n),h=o0(l),u=Math.max(r,h),g=Math.min(r,h);return(u+.05)/(g+.05)}function Au(n){const l=Math.abs(C1(_n(0),_n(n)));return Math.abs(C1(_n(16777215),_n(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,u)=>{const v=typeof n[u]=="object"&&n[u]!=null&&!Array.isArray(n[u])?n[u]:{type:n[u]};return r&&u in r?h[u]={...v,default:r[u]}:h[u]=v,l&&!h[u].source&&(h[u].source=l),h},{})}const Wt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Pn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return pr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,u){const g=Ch();if(!g.value)return n._setup(h,u);const{props:v,provideSubDefaults:b}=D5(h,h._as??n.name,g),z=n._setup(v,u);return b(),z}}return n}function At(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Pn:mr)(l)}function Gn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return At()({name:r??fl(In(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Wt()},setup(h,u){let{slots:g}=u;return()=>{var v;return Hn(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Bu(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const Uo="cubic-bezier(0.4, 0, 0.2, 1)",A5="cubic-bezier(0.0, 0, 0.2, 1)",B5="cubic-bezier(0.4, 0, 1, 1)";function We(n,l){const r=nl();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function kl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=We(n).type;return ir((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Hu=0,qs=new WeakMap;function on(){const n=We("getUid");if(qs.has(n))return qs.get(n);{const l=Hu++;return qs.set(n,l),l}}on.reset=()=>{Hu=0,qs=new WeakMap};function Ih(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?H5(n):yh(n))return n;n=n.parentElement}return document.scrollingElement}function ra(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(yh(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function yh(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function H5(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function N5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:We("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function j5(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Lt(n){const l=We("useRender");l.render=n}const Zr=Symbol.for("vuetify:defaults");function P5(n){return Pt(n)}function Ch(){const n=he(Zr);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Fe(n,l){const r=Ch(),h=Pt(n),u=X(()=>{if(He(l==null?void 0:l.disabled))return r.value;const v=He(l==null?void 0:l.scoped),b=He(l==null?void 0:l.reset),z=He(l==null?void 0:l.root);if(h.value==null&&!(v||b||z))return r.value;let C=An(h.value,{prev:r.value});if(v)return C;if(b||z){const S=Number(b||1/0);for(let A=0;A<=S&&!(!C||!("prev"in C));A++)C=C.prev;return C&&typeof z=="string"&&z in C&&(C=An(An(C,{prev:C}),C[z])),C}return C.prev?An(C.prev,C):C});return ye(Zr,u),u}function L5(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[ir(l)])<"u"}function D5(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Ch();const h=We("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const u=X(()=>{var z;return(z=r.value)==null?void 0:z[n._as??l]}),g=new Proxy(n,{get(z,C){var A,B,P,D;const S=Reflect.get(z,C);return C==="class"||C==="style"?[(A=u.value)==null?void 0:A[C],S].filter(E=>E!=null):typeof C=="string"&&!L5(h.vnode,C)?((B=u.value)==null?void 0:B[C])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[C])??S:S}}),v=_t();fn(()=>{if(u.value){const z=Object.entries(u.value).filter(C=>{let[S]=C;return S.startsWith(S[0].toUpperCase())});v.value=z.length?Object.fromEntries(z):void 0}else v.value=void 0});function b(){const z=N5(Zr,h);ye(Zr,X(()=>v.value?An((z==null?void 0:z.value)??{},v.value):z==null?void 0:z.value))}return{props:g,provideSubDefaults:b}}const Pa=["sm","md","lg","xl","xxl"],s0=Symbol.for("vuetify:display"),B1={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},F5=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:B1;return An(B1,n)};function H1(n){return Me&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function N1(n){return Me&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function j1(n){const l=Me&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),u=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),b=r(/chrome/i),z=r(/edge/i),C=r(/firefox/i),S=r(/opera/i),A=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:u,cordova:g,electron:v,chrome:b,edge:z,firefox:C,opera:S,win:A,mac:B,linux:P,touch:Kf,ssr:l==="ssr"}}function O5(n,l){const{thresholds:r,mobileBreakpoint:h}=F5(n),u=_t(N1(l)),g=_t(j1(l)),v=Ye({}),b=_t(H1(l));function z(){u.value=N1(),b.value=H1()}function C(){z(),g.value=j1()}return fn(()=>{const S=b.value=r.xxl,Y=S?"xs":A?"sm":B?"md":P?"lg":D?"xl":"xxl",O=typeof h=="number"?h:r[h],H=b.valueHn($h,{...n,class:"mdi"})},te=[String,Function,Object,Array],a0=Symbol.for("vuetify:icons"),La=mt({icon:{type:te},tag:{type:String,required:!0}},"icon"),i0=At()({name:"VComponentIcon",props:La(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var u;return[n.icon?t(h,null,null):(u=r.default)==null?void 0:u.call(r)]}})}}}),Sh=Pn({name:"VSvgIcon",inheritAttrs:!1,props:La(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),E5=Pn({name:"VLigatureIcon",props:La(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),$h=Pn({name:"VClassIcon",props:La(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),V5={svg:{component:Sh},class:{component:$h}};function _5(n){return An({defaultSet:"mdi",sets:{...V5,mdi:R5},aliases:{...T5,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const W5=n=>{const l=he(a0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:X(()=>{var z;const h=He(n);if(!h)return{component:i0};let u=h;if(typeof u=="string"&&(u=u.trim(),u.startsWith("$")&&(u=(z=l.aliases)==null?void 0:z[u.slice(1)])),!u)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(u))return{component:Sh,icon:u};if(typeof u!="string")return{component:i0,icon:u};const g=Object.keys(l.sets).find(C=>typeof u=="string"&&u.startsWith(`${C}:`)),v=g?u.slice(g.length+1):u;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},X5={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},q5={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Vl(n,l){let r;function h(){r=Jr(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}Vt(n,u=>{u&&!r?h():u||(r==null||r.stop(),r=void 0)},{immediate:!0}),ln(()=>{r==null||r.stop()})}function ee(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:A=>A,u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:A=>A;const g=We("useProxiedModel"),v=Pt(n[l]!==void 0?n[l]:r),b=ir(l),C=X(b!==l?()=>{var A,B,P,D;return n[l],!!(((A=g.vnode.props)!=null&&A.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(b))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${b}`)))}:()=>{var A,B;return n[l],!!((A=g.vnode.props)!=null&&A.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Vl(()=>!C.value,()=>{Vt(()=>n[l],A=>{v.value=A})});const S=X({get(){const A=n[l];return h(C.value?A:v.value)},set(A){const B=u(A),P=ne(C.value?n[l]:v.value);P===B||h(P)===A||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>C.value?n[l]:v.value}),S}const P1="$vuetify.",L1=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),Nu=(n,l,r)=>function(h){for(var u=arguments.length,g=new Array(u>1?u-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function mi(n,l,r){const h=ee(n,l,n[l]??r.value);return h.value=n[l]??r.value,Vt(r,u=>{n[l]==null&&(h.value=r.value)}),h}function Pu(n){return l=>{const r=mi(l,"locale",n.current),h=mi(l,"fallback",n.fallback),u=mi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:u,t:Nu(r,h,u),n:ju(r,h),provide:Pu({current:r,fallback:h,messages:u})}}}function Y5(n){const l=_t((n==null?void 0:n.locale)??"en"),r=_t((n==null?void 0:n.fallback)??"en"),h=Pt({en:X5,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:Nu(l,r,h),n:ju(l,r),provide:Pu({current:l,fallback:r,messages:h})}}const Kr=Symbol.for("vuetify:locale");function G5(n){return n.name!=null}function U5(n){const l=n!=null&&n.adapter&&G5(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:Y5(n),r=K5(l,n);return{...l,...r}}function Ln(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function Z5(n){const l=he(Kr);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=Q5(r,l.rtl,n),u={...r,...h};return ye(Kr,u),u}function K5(n,l){const r=Pt((l==null?void 0:l.rtl)??q5),h=X(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Q5(n,l,r){const h=X(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Xe(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const Zo=Symbol.for("vuetify:theme"),ce=mt({theme:String},"theme"),ko={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function J5(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ko;if(!n)return{...ko,isDisabled:!0};const l={};for(const[u,g]of Object.entries(n.themes??{})){const v=g.dark||u==="dark"?(r=ko.themes)==null?void 0:r.dark:(h=ko.themes)==null?void 0:h.light;l[u]=An(v,g)}return An(ko,{...n,themes:l})}function tm(n){const l=J5(n),r=Pt(l.defaultTheme),h=Pt(l.themes),u=X(()=>{const S={};for(const[A,B]of Object.entries(h.value)){const P=S[A]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const E=P.colors[D];if(E)for(const Y of["lighten","darken"]){const O=Y==="lighten"?C5:S5;for(const H of il(l.variations[Y],1))P.colors[`${D}-${Y}-${H}`]=Cu(O(_n(E),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const E=`on-${D}`,Y=_n(P.colors[D]);P.colors[E]=Au(Y)}}return S}),g=X(()=>u.value[r.value]),v=X(()=>{const S=[];g.value.dark&&Jl(S,":root",["color-scheme: dark"]),Jl(S,":root",D1(g.value));for(const[D,E]of Object.entries(u.value))Jl(S,`.v-theme--${D}`,[`color-scheme: ${E.dark?"dark":"normal"}`,...D1(E)]);const A=[],B=[],P=new Set(Object.values(u.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?Jl(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(Jl(A,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),Jl(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),Jl(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...A,...B),S.map((D,E)=>E===0?D:` ${D}`).join("")});function b(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function z(S){if(l.isDisabled)return;const A=S._context.provides.usehead;if(A)if(A.push){const B=A.push(b);Me&&Vt(v,()=>{B.patch(b)})}else Me?(A.addHeadObjs(X(b)),fn(()=>A.updateDOM())):A.addHeadObjs(b());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=Me?document.getElementById("vuetify-theme-stylesheet"):null;Me?Vt(v,P,{immediate:!0}):P()}}const C=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:z,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:u,themeClasses:C,styles:v,global:{name:r,current:g}}}function ge(n){We("provideTheme");const l=he(Zo,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=X(()=>n.theme??(l==null?void 0:l.name.value)),h=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`),u={...l,name:r,themeClasses:h};return ye(Zo,u),u}function Lu(){We("useTheme");const n=he(Zo,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function Jl(n,l,r){n.push(`${l} { `,...r.map(h=>` ${h}; `),`} @@ -713,4 +713,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho .apexcharts-rangebar-goals-markers{ pointer-events: none -}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"Codedthemes",lastName:".com"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){const{username:D,password:E}=P(),Y=n.find(O=>O.username===D&&O.password===E);return Y?C({id:Y.id,username:Y.username,firstName:Y.firstName,lastName:Y.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,J7 as a5,q6 as a6,lV as a7,Bt as a8,Hn as a9,Ye as aa,pe as ab,Te as ac,ke as ad,Vt as ae,ye as af,no as ag,fn as ah,jg as ai,Ik as aj,vk as ak,vh as al,p8 as am,O3 as an,Ce as ao,Nn as ap,Df as aq,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; +}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"Codedthemes",lastName:".com"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){const{username:D,password:E}=P(),Y=n.find(O=>O.username===D&&O.password===E);return Y?C({id:Y.id,username:Y.username,firstName:Y.firstName,lastName:Y.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,q6 as a5,lV as a6,Bt as a7,Hn as a8,Ye as a9,pe as aa,Te as ab,ke as ac,Vt as ad,ye as ae,no as af,fn as ag,jg as ah,Ik as ai,vk as aj,vh as ak,p8 as al,O3 as am,Ce as an,Nn as ao,Df as ap,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; diff --git a/addons/dashboard/dist/index.html b/addons/dashboard/dist/index.html index becbf61d7..8ce8f8850 100644 --- a/addons/dashboard/dist/index.html +++ b/addons/dashboard/dist/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" /> AstrBot - 仪表盘 - + diff --git a/addons/dashboard/helper.py b/addons/dashboard/helper.py index ebb35d502..fc764fa67 100644 --- a/addons/dashboard/helper.py +++ b/addons/dashboard/helper.py @@ -120,98 +120,6 @@ class DashBoardHelper(): ) ] ) - ''' - { - "qq_forward_threshold": 200, - "qq_welcome": "欢迎加入本群!\n欢迎给https://github.com/Soulter/QQChannelChatGPT项目一个Star😊~\n输入help查看帮助~\n", - "bing_proxy": "", - "qq_pic_mode": false, - "rev_chatgpt_model": "", - "rev_chatgpt_plugin_ids": [], - "rev_chatgpt_PUID": "", - "rev_chatgpt_unverified_plugin_domains": [], - "gocq_host": "127.0.0.1", - "gocq_http_port": 5700, - "gocq_websocket_port": 6700, - "gocq_react_group": true, - "gocq_react_guild": true, - "gocq_react_friend": true, - "gocq_react_group_increase": true, - "gocq_qqchan_admin": "", - "other_admins": [], - "CHATGPT_BASE_URL": "", - "qqbot_appid": "", - "qqbot_secret": "", - "llm_env_prompt": "> hint: 末尾根据内容和心情添加 1-2 个emoji", - "default_personality_str": "", - "openai_image_generate": { - "model": "dall-e-3", - "size": "1024x1024", - "style": "vivid", - "quality": "standard" - }, - "http_proxy": "", - "https_proxy": "", - "qqbot": { - "enable": true, - "appid": "102041113", - "token": "JNni9hqaLM0rhwmocCE1F3Q8l8gW2r70" - }, - "gocqbot": { - "enable": false - }, - "uniqueSessionMode": false, - "version": 3.0, - "dump_history_interval": 10, - "limit": { - "time": 60, - "count": 5 - }, - "notice": "此机器人由Github项目QQChannelChatGPT驱动。", - "direct_message_mode": true, - "reply_prefix": { - "openai_official": "[GPT]", - "rev_chatgpt": "[Rev]", - "rev_edgegpt": "[RevBing]" - }, - "baidu_aip": { - "enable": false, - "app_id": null, - "api_key": null, - "secret_key": null - }, - "openai": { - "key": [ - null - ], - "api_base": "none", - "chatGPTConfigs": { - "model": "gpt-3.5-turbo", - "max_tokens": 3000, - "temperature": 0.9, - "top_p": 1, - "frequency_penalty": 0, - "presence_penalty": 0 - }, - "total_tokens_limit": 5000 - }, - "rev_ernie": { - "enable": false - }, - "rev_edgegpt": { - "enable": false - }, - "rev_ChatGPT": { - "enable": false, - "account": [ - { - "access_token": null - } - ] - }, - "proxy": "" -} - ''' general_platform_detail_group = DashBoardConfig( config_type="group", name="通用平台配置", diff --git a/cores/monitor/perf.py b/cores/monitor/perf.py index e9388be64..1ff19ea66 100644 --- a/cores/monitor/perf.py +++ b/cores/monitor/perf.py @@ -10,6 +10,7 @@ import time def run_monitor(global_object: GlobalObject): '''运行监测''' + start_time = time.time() while True: stat = global_object.dashboard_data.stats # 程序占用的内存大小 @@ -18,4 +19,5 @@ def run_monitor(global_object: GlobalObject): 'memory': mem, 'cpu': psutil.cpu_percent() } + stat['sys_start_time'] = start_time time.sleep(30) \ No newline at end of file From b5f8df4bb640fd244f921c42a1d0b25ebcc22ae2 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sun, 17 Dec 2023 14:21:34 +0800 Subject: [PATCH 09/17] =?UTF-8?q?feat:=20dashboard=20=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E5=AE=9E=E7=8E=B0=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...e_vue_type_style_index_0_lang-41278dd3.js} | 2 +- ...ut-7e3e95ce.js => BlankLayout-d8e66a96.js} | 2 +- ...Page-31b12c0e.js => ColorPage-0d29251d.js} | 2 +- .../dist/assets/ConfigPage-190ac827.js | 1 - .../dist/assets/ConfigPage-35ce811b.js | 1 + .../dist/assets/DefaultDashboard-53cb3cac.js | 1 - .../dist/assets/DefaultDashboard-c5705817.js | 1 + .../dist/assets/Error404Page-4b58b90a.js | 1 - .../dist/assets/Error404Page-4fa52dd2.js | 1 + ...-1c38b1c7.js => ExtensionPage-f1d3423c.js} | 2 +- ...out-fe9c6476.js => FullLayout-fe599500.js} | 2 +- ...Page-8d646748.js => LoginPage-e10572ff.js} | 2 +- ...e_type_script_setup_true_lang-7c7e1990.js} | 2 +- ...-d121ebb1.js => MaterialIcons-32e7c9d7.js} | 2 +- ...e-ccc92c7d.js => RegisterPage-a8dce7a5.js} | 2 +- ...age-c6ba03ae.js => ShadowPage-3496744d.js} | 2 +- ...ge-64374263.js => StarterPage-d0170d1e.js} | 2 +- ...ns-79a981d9.js => TablerIcons-c6c2a44b.js} | 2 +- ...c91eea8c.js => TypographyPage-359434da.js} | 2 +- ...e_type_script_setup_true_lang-efd0bf02.js} | 2 +- .../dashboard/dist/assets/axios-21b846bc.js | 5 + .../dashboard/dist/assets/axios-28bc18a3.js | 5 - ...rd-5ebb8a56.svg => icon-card-3764c5da.svg} | 0 ...ab6474a0.svg => img-error-bg-41f65efa.svg} | 0 ...75a7a9.svg => img-error-blue-f50c8e77.svg} | 0 ...3fbc.svg => img-error-purple-b97a483b.svg} | 0 ...aebfa0.svg => img-error-text-630dc36d.svg} | 0 .../{index-96c19dfb.js => index-3dd1d45b.js} | 4 +- ...359a253.svg => social-google-9b2fa67a.svg} | 0 addons/dashboard/dist/index.html | 2 +- addons/dashboard/server.py | 13 +- cores/database/conn.py | 196 +++++++++++++++++- cores/qqbot/core.py | 47 ++++- cores/qqbot/global_object.py | 22 ++ main.py | 20 +- nonebot_plugin_gspanel | 1 - 36 files changed, 289 insertions(+), 60 deletions(-) rename addons/dashboard/dist/assets/{BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js => BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js} (93%) rename addons/dashboard/dist/assets/{BlankLayout-7e3e95ce.js => BlankLayout-d8e66a96.js} (70%) rename addons/dashboard/dist/assets/{ColorPage-31b12c0e.js => ColorPage-0d29251d.js} (83%) delete mode 100644 addons/dashboard/dist/assets/ConfigPage-190ac827.js create mode 100644 addons/dashboard/dist/assets/ConfigPage-35ce811b.js delete mode 100644 addons/dashboard/dist/assets/DefaultDashboard-53cb3cac.js create mode 100644 addons/dashboard/dist/assets/DefaultDashboard-c5705817.js delete mode 100644 addons/dashboard/dist/assets/Error404Page-4b58b90a.js create mode 100644 addons/dashboard/dist/assets/Error404Page-4fa52dd2.js rename addons/dashboard/dist/assets/{ExtensionPage-1c38b1c7.js => ExtensionPage-f1d3423c.js} (97%) rename addons/dashboard/dist/assets/{FullLayout-fe9c6476.js => FullLayout-fe599500.js} (96%) rename addons/dashboard/dist/assets/{LoginPage-8d646748.js => LoginPage-e10572ff.js} (98%) rename addons/dashboard/dist/assets/{LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js => LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js} (88%) rename addons/dashboard/dist/assets/{MaterialIcons-d121ebb1.js => MaterialIcons-32e7c9d7.js} (70%) rename addons/dashboard/dist/assets/{RegisterPage-ccc92c7d.js => RegisterPage-a8dce7a5.js} (61%) rename addons/dashboard/dist/assets/{ShadowPage-c6ba03ae.js => ShadowPage-3496744d.js} (81%) rename addons/dashboard/dist/assets/{StarterPage-64374263.js => StarterPage-d0170d1e.js} (83%) rename addons/dashboard/dist/assets/{TablerIcons-79a981d9.js => TablerIcons-c6c2a44b.js} (69%) rename addons/dashboard/dist/assets/{TypographyPage-c91eea8c.js => TypographyPage-359434da.js} (94%) rename addons/dashboard/dist/assets/{UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js => UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js} (88%) create mode 100644 addons/dashboard/dist/assets/axios-21b846bc.js delete mode 100644 addons/dashboard/dist/assets/axios-28bc18a3.js rename addons/dashboard/dist/assets/{icon-card-5ebb8a56.svg => icon-card-3764c5da.svg} (100%) rename addons/dashboard/dist/assets/{img-error-bg-ab6474a0.svg => img-error-bg-41f65efa.svg} (100%) rename addons/dashboard/dist/assets/{img-error-blue-2675a7a9.svg => img-error-blue-f50c8e77.svg} (100%) rename addons/dashboard/dist/assets/{img-error-purple-edee3fbc.svg => img-error-purple-b97a483b.svg} (100%) rename addons/dashboard/dist/assets/{img-error-text-a6aebfa0.svg => img-error-text-630dc36d.svg} (100%) rename addons/dashboard/dist/assets/{index-96c19dfb.js => index-3dd1d45b.js} (99%) rename addons/dashboard/dist/assets/{social-google-a359a253.svg => social-google-9b2fa67a.svg} (100%) delete mode 160000 nonebot_plugin_gspanel diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js similarity index 93% rename from addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js rename to addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js index caa462f61..bb8f05c92 100644 --- a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js +++ b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js @@ -1 +1 @@ -import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a5 as p,B as n,a6 as o,j as f}from"./index-96c19dfb.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; +import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a6 as p,B as n,a7 as o,j as f}from"./index-3dd1d45b.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/addons/dashboard/dist/assets/BlankLayout-7e3e95ce.js b/addons/dashboard/dist/assets/BlankLayout-d8e66a96.js similarity index 70% rename from addons/dashboard/dist/assets/BlankLayout-7e3e95ce.js rename to addons/dashboard/dist/assets/BlankLayout-d8e66a96.js index 78201cb66..e23889db0 100644 --- a/addons/dashboard/dist/assets/BlankLayout-7e3e95ce.js +++ b/addons/dashboard/dist/assets/BlankLayout-d8e66a96.js @@ -1 +1 @@ -import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-96c19dfb.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; +import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-3dd1d45b.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/ColorPage-31b12c0e.js b/addons/dashboard/dist/assets/ColorPage-0d29251d.js similarity index 83% rename from addons/dashboard/dist/assets/ColorPage-31b12c0e.js rename to addons/dashboard/dist/assets/ColorPage-0d29251d.js index 49b5144af..bcbd5c1fc 100644 --- a/addons/dashboard/dist/assets/ColorPage-31b12c0e.js +++ b/addons/dashboard/dist/assets/ColorPage-0d29251d.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-96c19dfb.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-3dd1d45b.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-190ac827.js b/addons/dashboard/dist/assets/ConfigPage-190ac827.js deleted file mode 100644 index 837c48680..000000000 --- a/addons/dashboard/dist/assets/ConfigPage-190ac827.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as p}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{a as m}from"./axios-28bc18a3.js";import{o as a,s as l,a as i,w as d,f,F as n,u as g,V as v,d as V,e as h,t as k,a2 as y,c as r,a3 as b,a4 as C,k as _,A as x}from"./index-96c19dfb.js";const U={name:"ConfigPage",components:{UiParentCard:p},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){m.get("/api/configs").then(s=>{this.config_data=s.data.data,console.log(this.config_data)})},updateConfig(){m.post("/api/configs",this.config_data).then(s=>{console.log(this.config_data),s.data.status==="success"?(this.save_message=s.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=s.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},N=Object.assign(U,{setup(s){return(t,c)=>(a(),l(n,null,[i(v,null,{default:d(()=>[i(f,{cols:"12",md:"12"},{default:d(()=>[(a(!0),l(n,null,g(t.config_data.data,o=>(a(),r(p,{key:o.name,title:o.name,style:{"margin-bottom":"16px"}},{default:d(()=>[(a(!0),l(n,null,g(o.body,e=>(a(),l(n,null,[e.config_type==="item"?(a(),l(n,{key:0},[e.val_type==="bool"?(a(),r(b,{key:0,modelValue:e.value,"onUpdate:modelValue":u=>e.value=u,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(C,{key:1,modelValue:e.value,"onUpdate:modelValue":u=>e.value=u,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):_("",!0)],64)):e.config_type==="divider"?(a(),r(x,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):_("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),i(V,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:t.updateConfig},null,8,["onClick"]),i(y,{timeout:2e3,elevation:"24",color:t.save_message_success,modelValue:t.save_message_snack,"onUpdate:modelValue":c[0]||(c[0]=o=>t.save_message_snack=o)},{default:d(()=>[h(k(t.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{N as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-35ce811b.js b/addons/dashboard/dist/assets/ConfigPage-35ce811b.js new file mode 100644 index 000000000..a3645e782 --- /dev/null +++ b/addons/dashboard/dist/assets/ConfigPage-35ce811b.js @@ -0,0 +1 @@ +import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{a as g}from"./axios-21b846bc.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as _,V as C,d as U,e as x,t as c,a2 as B,c as r,a3 as w,a4 as v,b as V,a5 as N,i as F,q as P,k as f,A as S}from"./index-3dd1d45b.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){g.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){g.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},z=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,_(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,_(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":T=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{z as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-53cb3cac.js b/addons/dashboard/dist/assets/DefaultDashboard-53cb3cac.js deleted file mode 100644 index 5d0a5dad0..000000000 --- a/addons/dashboard/dist/assets/DefaultDashboard-53cb3cac.js +++ /dev/null @@ -1 +0,0 @@ -import{y as R,p as c,o as m,c as h,w as e,a as t,O as y,b as a,d as p,j as w,P as z,q as F,Q as j,z as C,s as D,F as M,u as B,n as x,r as N,l as V,e as g,t as $,S as b,T as U,D as O,U as k,W,X as L,Y as X,Z as I,V as T,f as u,G as E,_ as G}from"./index-96c19dfb.js";import{_ as P}from"./_plugin-vue_export-helper-c27b6911.js";import{a as Y}from"./axios-28bc18a3.js";const q={class:"d-flex align-start mb-6"},A={class:"ml-auto z-1"},H=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),Z=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),J={name:"TotalMessage",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},K=Object.assign(J,{setup(s){const l=R([{title:"移除",icon:U}]);return(_,f)=>{const r=c("DotsIcon");return m(),h(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(y,null,{default:e(()=>[a("div",q,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-message"})]),_:1}),a("div",A,[t(z,{"close-on-content-click":!1},{activator:e(({props:n})=>[t(p,F({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},n),{default:e(()=>[t(r,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(j,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(C,{density:"compact"},{default:e(()=>[(m(!0),D(M,null,B(l.value,(n,i)=>(m(),h(x,{key:i,value:i},{prepend:e(()=>[(m(),h(N(n.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[g($(n.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),H,Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at=a("h2",{class:"text-h1 font-weight-medium"}," ?? ",-1),st=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot=a("h2",{class:"text-h1 font-weight-medium"}," 198 ",-1),lt=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],data:()=>({stat:{}}),mounted(){}},it=Object.assign(nt,{setup(s){const l=O("1"),_=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),f={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},r=k(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),n={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(i,o)=>{const d=c("apexchart");return m(),h(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(y,null,{default:e(()=>[a("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",et,[t(W,{modelValue:l.value,"onUpdate:modelValue":o[0]||(o[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(L,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[g("按日")]),_:1}),t(L,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[g("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(X,{modelValue:l.value,"onUpdate:modelValue":o[1]||(o[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(I,{value:"1"},{default:e(()=>[t(T,null,{default:e(()=>[t(u,{cols:"6"},{default:e(()=>[at,st]),_:1}),t(u,{cols:"6"},{default:e(()=>[t(d,{type:"line",height:"90",options:_.value,series:f.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(I,{value:"2"},{default:e(()=>[t(T,null,{default:e(()=>[t(u,{cols:"6"},{default:e(()=>[ot,lt]),_:1}),t(u,{cols:"6"},{default:e(()=>[t(d,{type:"line",height:"90",options:r.value,series:n.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,l){this.memory=s.sys_perf.memory,this.runtime_str=s.sys_start_time;let _=new Date().getTime(),f=new Date(s.sys_start_time*1e3).getTime(),r=_-f,n=Math.floor(r/(24*3600*1e3)),i=r%(24*3600*1e3),o=Math.floor(i/(3600*1e3)),d=i%(3600*1e3),v=Math.floor(d/(60*1e3)),S=d%(60*1e3),Q=Math.round(S/1e3);this.runtime_str=n+"天"+o+"小时"+v+"分"+Q+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ft=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ht(s,l,_,f,r,n){return m(),D(M,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(y,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-clock"})]),_:1}),a("div",null,[a("h4",ct,$(s.runtime_str),1),ut]),t(E),a("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t(w,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(y,{class:"pa-5"},{default:e(()=>[a("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t(w,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",_t,$(s.memory)+" MiB",1),ft])])]),_:1})]),_:1})],64)}const pt=P(rt,[["render",ht]]),bt=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),vt=a("h3",{class:"text-h3 mt-1"},"??",-1),gt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({}),mounted(){}},xt=Object.assign(yt,{setup(s){const l=O({state:"Today",abbr:"FL"}),_=[{state:"今天",abbr:"FL"},{state:"今月",abbr:"GA"},{state:"今年",abbr:"NE"}],f=k(()=>({chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:["1","2","3","4","5","6","7","8","9","10","11","12"]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}})),r={series:[{name:"消息条数",data:[35,145,35,35,20,105,100,10,65,45,30,10]}]};return(n,i)=>{const o=c("apexchart");return m(),h(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(y,null,{default:e(()=>[t(T,null,{default:e(()=>[t(u,{cols:"12",sm:"9"},{default:e(()=>[bt,vt]),_:1}),t(u,{cols:"12",sm:"3"},{default:e(()=>[t(G,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.value,"onUpdate:modelValue":i[0]||(i[0]=d=>l.value=d),items:_,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue"])]),_:1})]),_:1}),a("div",gt,[t(o,{type:"bar",height:"280",options:f.value,series:r.series},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),wt={class:"d-flex align-center"},$t=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Dt={class:"text-center mt-3"},Mt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,l){this.stat=s},deep:!0}},data:()=>({}),mounted(){}},Ot=Object.assign(Mt,{setup(s){k(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}}));const l=O([{name:"QQ 群",count:14124},{name:"QQ 频道",count:612},{name:"Discord",count:123}]);return(_,f)=>{const r=c("DotsIcon"),n=c("perfect-scrollbar"),i=c("ChevronRightIcon");return m(),h(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(y,null,{default:e(()=>[a("div",wt,[$t,a("div",Vt,[t(z,{transition:"slide-y-transition"},{activator:e(({props:o})=>[t(p,F({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},o),{default:e(()=>[t(r,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(j,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(C,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[g("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[g("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[g("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",kt,[t(n,{style:{height:"270px"}},{default:e(()=>[t(C,{lines:"two",class:"py-0"},{default:e(()=>[(m(!0),D(M,null,B(l.value,(o,d)=>(m(),h(x,{key:d,value:o,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Tt,[a("div",null,[a("h6",St,$(o.name),1)]),a("div",Ct,$(o.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Dt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(i,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[g("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:K,TotalSession:it,OnlineTime:pt,MessageStat:xt,PlatformStat:Ot},data:()=>({stat:{}}),mounted(){Y.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,l,_,f,r,n){const i=c("TotalMessage"),o=c("TotalSession"),d=c("OnlineTime"),v=c("MessageStat"),S=c("PlatformStat");return m(),h(T,null,{default:e(()=>[t(u,{cols:"12",md:"4"},{default:e(()=>[t(i,{stat:s.stat},null,8,["stat"])]),_:1}),t(u,{cols:"12",md:"4"},{default:e(()=>[t(o,{stat:s.stat},null,8,["stat"])]),_:1}),t(u,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:s.stat},null,8,["stat"])]),_:1}),t(u,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:s.stat},null,8,["stat"])]),_:1}),t(u,{cols:"12",lg:"4"},{default:e(()=>[t(S,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const Bt=P(Lt,[["render",It]]);export{Bt as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-c5705817.js b/addons/dashboard/dist/assets/DefaultDashboard-c5705817.js new file mode 100644 index 000000000..3a69e8388 --- /dev/null +++ b/addons/dashboard/dist/assets/DefaultDashboard-c5705817.js @@ -0,0 +1 @@ +import{y as R,p as u,o as _,c as f,w as e,a as t,O as w,b as s,d as p,j as $,P as I,q as z,Q as F,z as S,s as O,F as M,u as j,n as x,r as U,l as V,e as y,t as h,S as b,T as W,D as N,U as C,W as X,X as D,Y as G,Z as L,V as k,f as m,G as H,_ as Y}from"./index-3dd1d45b.js";import{_ as P}from"./_plugin-vue_export-helper-c27b6911.js";import{a as q}from"./axios-21b846bc.js";const A={class:"d-flex align-start mb-6"},E={class:"ml-auto z-1"},Q={class:"text-h1 font-weight-medium"},Z=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),J={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.message_total=a.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},K=Object.assign(J,{setup(a){const l=R([{title:"移除",icon:W}]);return(n,i)=>{const o=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",A,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),s("div",E,[t(I,{"close-on-content-click":!1},{activator:e(({props:c})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},c),{default:e(()=>[t(o,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),O(M,null,j(l.value,(c,r)=>(_(),f(x,{key:r,value:r},{prepend:e(()=>[(_(),f(U(c.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(c.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),s("h2",Q,h(n.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.session_total=a.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(a){const l=N("1"),n=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),i={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},o=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(r,d)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),s("div",et,[t(X,{modelValue:l.value,"onUpdate:modelValue":d[0]||(d[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(D,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(D,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(G,{modelValue:l.value,"onUpdate:modelValue":d[1]||(d[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",at,h(r.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:n.value,series:i.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",ot,h(r.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:o.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.memory=a.sys_perf.memory,this.runtime_str=a.sys_start_time;let n=new Date().getTime(),i=new Date(a.sys_start_time*1e3).getTime(),o=n-i,c=Math.floor(o/(24*3600*1e3)),r=o%(24*3600*1e3),d=Math.floor(r/(3600*1e3)),g=r%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),B=Math.round(T/1e3);this.runtime_str=c+"天"+d+"小时"+v+"分"+B+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=s("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=s("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(a,l,n,i,o,c){return _(),O(M,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),s("div",null,[s("h4",ct,h(a.runtime_str),1),ut]),t(H),s("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),s("div",null,[s("h4",_t,h(a.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=P(rt,[["render",ft]]),bt=s("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(a,l){let n=[],i=[];for(let o=0;o{const i=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,s("h3",gt,h(l.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(Y,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.select,"onUpdate:modelValue":n[0]||(n[0]=o=>l.select=o),items:l.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),s("div",vt,[t(i,{type:"bar",height:"280",options:l.chartOptions1,series:l.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=s("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Ot={class:"text-center mt-3"},Mt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(a,l){let n={};for(let i=0;i({platforms:[]}),mounted(){}},Dt=Object.assign(Mt,{setup(a){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(l,n)=>{const i=u("DotsIcon"),o=u("perfect-scrollbar"),c=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",xt,[$t,s("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:r})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},r),{default:e(()=>[t(i,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),s("div",kt,[t(o,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),O(M,null,j(l.platforms,(r,d)=>(_(),f(x,{key:d,value:r,color:"secondary",rounded:"sm"},{default:e(()=>[s("div",Tt,[s("div",null,[s("h6",St,h(r.name),1)]),s("div",Ct,h(r.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),s("div",Ot,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:K,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){q.get("/api/stats").then(a=>{console.log("stat",a.data.data),this.stat=a.data.data})}};function It(a,l,n,i,o,c){const r=u("TotalMessage"),d=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(r,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:a.stat},null,8,["stat"])]),_:1})]),_:1})}const Pt=P(Lt,[["render",It]]);export{Pt as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-4b58b90a.js b/addons/dashboard/dist/assets/Error404Page-4b58b90a.js deleted file mode 100644 index de4a5b842..000000000 --- a/addons/dashboard/dist/assets/Error404Page-4b58b90a.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-96c19dfb.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-4fa52dd2.js b/addons/dashboard/dist/assets/Error404Page-4fa52dd2.js new file mode 100644 index 000000000..cce59ff0d --- /dev/null +++ b/addons/dashboard/dist/assets/Error404Page-4fa52dd2.js @@ -0,0 +1 @@ +import{_ as a}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as t,b as e,d as l,e as r,f as d}from"./index-3dd1d45b.js";const n="/assets/img-error-bg-41f65efa.svg",_="/assets/img-error-blue-f50c8e77.svg",m="/assets/img-error-text-630dc36d.svg",g="/assets/img-error-purple-b97a483b.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[r("The page you are looking was moved, removed, "),e("br"),r("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[t(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,t(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[r(" Home")]),_:1})])]),_:1})]),_:1})}const C=a(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-1c38b1c7.js b/addons/dashboard/dist/assets/ExtensionPage-f1d3423c.js similarity index 97% rename from addons/dashboard/dist/assets/ExtensionPage-1c38b1c7.js rename to addons/dashboard/dist/assets/ExtensionPage-f1d3423c.js index 6316b7d3f..dce33e064 100644 --- a/addons/dashboard/dist/assets/ExtensionPage-1c38b1c7.js +++ b/addons/dashboard/dist/assets/ExtensionPage-f1d3423c.js @@ -1,4 +1,4 @@ -import{x as _,o as s,c as l,w as t,a as e,$ as f,b as r,a0 as h,e as i,t as d,G as g,d as m,A as V,O as v,a1 as x,S as k,D as p,s as C,F as w,u as S,f as y,j as b,V as B}from"./index-96c19dfb.js";const P={class:"d-sm-flex align-center justify-space-between"},$=_({__name:"ExtensionCard",props:{title:String,link:String},setup(u){const n=u,c=o=>{window.open(o,"_blank")};return(o,a)=>(s(),l(k,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(f,{style:{padding:"10px 20px"}},{default:t(()=>[r("div",P,[e(h,null,{default:t(()=>[i(d(n.title),1)]),_:1}),e(g),e(m,{icon:"mdi-link",variant:"plain",onClick:a[0]||(a[0]=E=>c(n.link))})])]),_:1}),e(V),e(v,null,{default:t(()=>[x(o.$slots,"default")]),_:3})]),_:3}))}}),G={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},N={class:"d-flex align-center gap-3"},D=` +import{x as _,o as s,c as l,w as t,a as e,$ as f,b as r,a0 as h,e as i,t as d,G as g,d as m,A as V,O as v,a1 as x,S as k,D as p,s as C,F as w,u as S,f as y,j as b,V as B}from"./index-3dd1d45b.js";const P={class:"d-sm-flex align-center justify-space-between"},$=_({__name:"ExtensionCard",props:{title:String,link:String},setup(u){const n=u,c=o=>{window.open(o,"_blank")};return(o,a)=>(s(),l(k,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(f,{style:{padding:"10px 20px"}},{default:t(()=>[r("div",P,[e(h,null,{default:t(()=>[i(d(n.title),1)]),_:1}),e(g),e(m,{icon:"mdi-link",variant:"plain",onClick:a[0]||(a[0]=E=>c(n.link))})])]),_:1}),e(V),e(v,null,{default:t(()=>[x(o.$slots,"default")]),_:3})]),_:3}))}}),G={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},N={class:"d-flex align-center gap-3"},D=` { "data": [ { diff --git a/addons/dashboard/dist/assets/FullLayout-fe9c6476.js b/addons/dashboard/dist/assets/FullLayout-fe599500.js similarity index 96% rename from addons/dashboard/dist/assets/FullLayout-fe9c6476.js rename to addons/dashboard/dist/assets/FullLayout-fe599500.js index 08621b5cb..82d769112 100644 --- a/addons/dashboard/dist/assets/FullLayout-fe9c6476.js +++ b/addons/dashboard/dist/assets/FullLayout-fe599500.js @@ -1 +1 @@ -import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-96c19dfb.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; +import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-3dd1d45b.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; diff --git a/addons/dashboard/dist/assets/LoginPage-8d646748.js b/addons/dashboard/dist/assets/LoginPage-e10572ff.js similarity index 98% rename from addons/dashboard/dist/assets/LoginPage-8d646748.js rename to addons/dashboard/dist/assets/LoginPage-e10572ff.js index e8a5c0b92..21f327489 100644 --- a/addons/dashboard/dist/assets/LoginPage-8d646748.js +++ b/addons/dashboard/dist/assets/LoginPage-e10572ff.js @@ -1,4 +1,4 @@ -import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js";import{x as ke,a7 as we,r as Ot,a8 as Vt,D as A,a9 as Be,U as P,B as I,aa as Q,ab as St,ac as Ne,ad as Ie,ae as Et,af as jt,ag as At,ah as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,ai as Ft,d as Pt,e as Ge,s as Ct,aj as Tt,t as Bt,k as Nt,ak as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-96c19dfb.js";/** +import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js";import{x as ke,a8 as we,r as Ot,a9 as Vt,D as A,aa as Be,U as P,B as I,ab as Q,ac as St,ad as Ne,ae as Ie,af as Et,ag as jt,ah as At,ai as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,aj as Ft,d as Pt,e as Ge,s as Ct,ak as Tt,t as Bt,k as Nt,al as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-3dd1d45b.js";/** * vee-validate v4.11.3 * (c) 2023 Abdelrahman Awad * @license MIT diff --git a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js similarity index 88% rename from addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js rename to addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js index ac4116b30..d91b347a6 100644 --- a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js +++ b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js @@ -1 +1 @@ -import{am as _,x as d,D as n,o as c,s as m,a as p,w as f,an as r,b as a,ao as o,B as t,ap as h}from"./index-96c19dfb.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; +import{an as _,x as d,D as n,o as c,s as m,a as p,w as f,ao as r,b as a,ap as o,B as t,aq as h}from"./index-3dd1d45b.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/addons/dashboard/dist/assets/MaterialIcons-d121ebb1.js b/addons/dashboard/dist/assets/MaterialIcons-32e7c9d7.js similarity index 70% rename from addons/dashboard/dist/assets/MaterialIcons-d121ebb1.js rename to addons/dashboard/dist/assets/MaterialIcons-32e7c9d7.js index 65de7b51f..381948f98 100644 --- a/addons/dashboard/dist/assets/MaterialIcons-d121ebb1.js +++ b/addons/dashboard/dist/assets/MaterialIcons-32e7c9d7.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-96c19dfb.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-3dd1d45b.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-ccc92c7d.js b/addons/dashboard/dist/assets/RegisterPage-a8dce7a5.js similarity index 61% rename from addons/dashboard/dist/assets/RegisterPage-ccc92c7d.js rename to addons/dashboard/dist/assets/RegisterPage-a8dce7a5.js index 7415de3c3..544ce0cbc 100644 --- a/addons/dashboard/dist/assets/RegisterPage-ccc92c7d.js +++ b/addons/dashboard/dist/assets/RegisterPage-a8dce7a5.js @@ -1 +1 @@ -import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as i,A as _,e as f,V as r,a4 as m,ai as A,al as E,F,c as T,L as q,S as V,O as P}from"./index-96c19dfb.js";const S="/assets/social-google-a359a253.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),d=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(i,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(i,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(i,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":d.value?"mdi-eye":"mdi-eye-off",type:d.value?"text":"password","onClick:append":l[4]||(l[4]=t=>d.value=!d.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,d)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(i,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(i,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(i,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; +import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,a4 as m,aj as A,am as E,F,c as T,L as q,S as V,O as P}from"./index-3dd1d45b.js";const S="/assets/social-google-9b2fa67a.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),j=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),D={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},G=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),L={class:"mt-5 text-right"},O=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),j,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",D,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),G]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",L,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(O)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/ShadowPage-c6ba03ae.js b/addons/dashboard/dist/assets/ShadowPage-3496744d.js similarity index 81% rename from addons/dashboard/dist/assets/ShadowPage-c6ba03ae.js rename to addons/dashboard/dist/assets/ShadowPage-3496744d.js index 001ac5ce9..fdf2858d0 100644 --- a/addons/dashboard/dist/assets/ShadowPage-c6ba03ae.js +++ b/addons/dashboard/dist/assets/ShadowPage-3496744d.js @@ -1 +1 @@ -import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-96c19dfb.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-3dd1d45b.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/StarterPage-64374263.js b/addons/dashboard/dist/assets/StarterPage-d0170d1e.js similarity index 83% rename from addons/dashboard/dist/assets/StarterPage-64374263.js rename to addons/dashboard/dist/assets/StarterPage-d0170d1e.js index abefed22b..c6c7e3b76 100644 --- a/addons/dashboard/dist/assets/StarterPage-64374263.js +++ b/addons/dashboard/dist/assets/StarterPage-d0170d1e.js @@ -1 +1 @@ -import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-96c19dfb.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; +import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-3dd1d45b.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; diff --git a/addons/dashboard/dist/assets/TablerIcons-79a981d9.js b/addons/dashboard/dist/assets/TablerIcons-c6c2a44b.js similarity index 69% rename from addons/dashboard/dist/assets/TablerIcons-79a981d9.js rename to addons/dashboard/dist/assets/TablerIcons-c6c2a44b.js index 93c05291b..f92d8f3c7 100644 --- a/addons/dashboard/dist/assets/TablerIcons-79a981d9.js +++ b/addons/dashboard/dist/assets/TablerIcons-c6c2a44b.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-96c19dfb.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-3dd1d45b.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/addons/dashboard/dist/assets/TypographyPage-c91eea8c.js b/addons/dashboard/dist/assets/TypographyPage-359434da.js similarity index 94% rename from addons/dashboard/dist/assets/TypographyPage-c91eea8c.js rename to addons/dashboard/dist/assets/TypographyPage-359434da.js index 621b439e6..cc24245de 100644 --- a/addons/dashboard/dist/assets/TypographyPage-c91eea8c.js +++ b/addons/dashboard/dist/assets/TypographyPage-359434da.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-96c19dfb.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-3dd1d45b.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; diff --git a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js similarity index 88% rename from addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js rename to addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js index 8d7b4fc8d..f74d42ff2 100644 --- a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js +++ b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js @@ -1 +1 @@ -import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-96c19dfb.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; +import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-3dd1d45b.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/addons/dashboard/dist/assets/axios-21b846bc.js b/addons/dashboard/dist/assets/axios-21b846bc.js new file mode 100644 index 000000000..801375a47 --- /dev/null +++ b/addons/dashboard/dist/assets/axios-21b846bc.js @@ -0,0 +1,5 @@ +function me(e,t){return function(){return e.apply(t,arguments)}}const{toString:je}=Object.prototype,{getPrototypeOf:Z}=Object,H=(e=>t=>{const n=je.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),A=e=>(e=e.toLowerCase(),t=>H(t)===e),I=e=>t=>typeof t===e,{isArray:P}=Array,F=I("undefined");function ke(e){return e!==null&&!F(e)&&e.constructor!==null&&!F(e.constructor)&&S(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ye=A("ArrayBuffer");function He(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ye(e.buffer),t}const Ie=I("string"),S=I("function"),Ee=I("number"),q=e=>e!==null&&typeof e=="object",qe=e=>e===!0||e===!1,L=e=>{if(H(e)!=="object")return!1;const t=Z(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},Me=A("Date"),ze=A("File"),Je=A("Blob"),$e=A("FileList"),Ve=e=>q(e)&&S(e.pipe),We=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||S(e.append)&&((t=H(e))==="formdata"||t==="object"&&S(e.toString)&&e.toString()==="[object FormData]"))},Ke=A("URLSearchParams"),Ge=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function B(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),P(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const be=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Se=e=>!F(e)&&e!==be;function K(){const{caseless:e}=Se(this)&&this||{},t={},n=(r,s)=>{const o=e&&we(t,s)||s;L(t[o])&&L(r)?t[o]=K(t[o],r):L(r)?t[o]=K({},r):P(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(B(t,(s,o)=>{n&&S(s)?e[o]=me(s,n):e[o]=s},{allOwnKeys:r}),e),ve=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Qe=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Ze=(e,t,n,r)=>{let s,o,i;const u={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!u[i]&&(t[i]=e[i],u[i]=!0);e=n!==!1&&Z(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Ye=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},et=e=>{if(!e)return null;if(P(e))return e;let t=e.length;if(!Ee(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},tt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Z(Uint8Array)),nt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},rt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},st=A("HTMLFormElement"),ot=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),it=A("RegExp"),Re=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};B(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},at=e=>{Re(e,(t,n)=>{if(S(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(S(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},ct=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return P(e)?r(e):r(String(e).split(t)),n},ut=()=>{},lt=(e,t)=>(e=+e,Number.isFinite(e)?e:t),J="abcdefghijklmnopqrstuvwxyz",oe="0123456789",Oe={DIGIT:oe,ALPHA:J,ALPHA_DIGIT:J+J.toUpperCase()+oe},ft=(e=16,t=Oe.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function dt(e){return!!(e&&S(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const pt=e=>{const t=new Array(10),n=(r,s)=>{if(q(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=P(r)?[]:{};return B(r,(i,u)=>{const f=n(i,s+1);!F(f)&&(o[u]=f)}),t[s]=void 0,o}}return r};return n(e,0)},ht=A("AsyncFunction"),mt=e=>e&&(q(e)||S(e))&&S(e.then)&&S(e.catch),a={isArray:P,isArrayBuffer:ye,isBuffer:ke,isFormData:We,isArrayBufferView:He,isString:Ie,isNumber:Ee,isBoolean:qe,isObject:q,isPlainObject:L,isUndefined:F,isDate:Me,isFile:ze,isBlob:Je,isRegExp:it,isFunction:S,isStream:Ve,isURLSearchParams:Ke,isTypedArray:tt,isFileList:$e,forEach:B,merge:K,extend:Xe,trim:Ge,stripBOM:ve,inherits:Qe,toFlatObject:Ze,kindOf:H,kindOfTest:A,endsWith:Ye,toArray:et,forEachEntry:nt,matchAll:rt,isHTMLForm:st,hasOwnProperty:se,hasOwnProp:se,reduceDescriptors:Re,freezeMethods:at,toObjectSet:ct,toCamelCase:ot,noop:ut,toFiniteNumber:lt,findKey:we,global:be,isContextDefined:Se,ALPHABET:Oe,generateString:ft,isSpecCompliantForm:dt,toJSONObject:pt,isAsyncFn:ht,isThenable:mt};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ae=m.prototype,Te={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Te[e]={value:e}});Object.defineProperties(m,Te);Object.defineProperty(Ae,"isAxiosError",{value:!0});m.from=(e,t,n,r,s,o)=>{const i=Object.create(Ae);return a.toFlatObject(e,i,function(f){return f!==Error.prototype},u=>u!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const yt=null;function G(e){return a.isPlainObject(e)||a.isArray(e)}function ge(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function ie(e,t,n){return e?e.concat(t).map(function(s,o){return s=ge(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function Et(e){return a.isArray(e)&&!e.some(G)}const wt=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function M(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(h,b){return!a.isUndefined(b[h])});const r=n.metaTokens,s=n.visitor||c,o=n.dots,i=n.indexes,f=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function d(l){if(l===null)return"";if(a.isDate(l))return l.toISOString();if(!f&&a.isBlob(l))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(l)||a.isTypedArray(l)?f&&typeof Blob=="function"?new Blob([l]):Buffer.from(l):l}function c(l,h,b){let T=l;if(l&&!b&&typeof l=="object"){if(a.endsWith(h,"{}"))h=r?h:h.slice(0,-2),l=JSON.stringify(l);else if(a.isArray(l)&&Et(l)||(a.isFileList(l)||a.endsWith(h,"[]"))&&(T=a.toArray(l)))return h=ge(h),T.forEach(function(_,Ue){!(a.isUndefined(_)||_===null)&&t.append(i===!0?ie([h],Ue,o):i===null?h:h+"[]",d(_))}),!1}return G(l)?!0:(t.append(ie(b,h,o),d(l)),!1)}const p=[],E=Object.assign(wt,{defaultVisitor:c,convertValue:d,isVisitable:G});function w(l,h){if(!a.isUndefined(l)){if(p.indexOf(l)!==-1)throw Error("Circular reference detected in "+h.join("."));p.push(l),a.forEach(l,function(T,R){(!(a.isUndefined(T)||T===null)&&s.call(t,T,a.isString(R)?R.trim():R,h,E))===!0&&w(T,h?h.concat(R):[R])}),p.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return w(e),t}function ae(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Y(e,t){this._pairs=[],e&&M(e,this,t)}const xe=Y.prototype;xe.append=function(t,n){this._pairs.push([t,n])};xe.toString=function(t){const n=t?function(r){return t.call(this,r,ae)}:ae;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function bt(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ne(e,t,n){if(!t)return e;const r=n&&n.encode||bt,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new Y(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class St{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const ce=St,Pe={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Rt=typeof URLSearchParams<"u"?URLSearchParams:Y,Ot=typeof FormData<"u"?FormData:null,At=typeof Blob<"u"?Blob:null,Tt=(()=>{let e;return typeof navigator<"u"&&((e=navigator.product)==="ReactNative"||e==="NativeScript"||e==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),gt=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),O={isBrowser:!0,classes:{URLSearchParams:Rt,FormData:Ot,Blob:At},isStandardBrowserEnv:Tt,isStandardBrowserWebWorkerEnv:gt,protocols:["http","https","file","blob","url","data"]};function xt(e,t){return M(e,new O.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return O.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Nt(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Pt(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return i=!i&&a.isArray(s)?s.length:i,f?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!u):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=Pt(s[i])),!u)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(Nt(r),s,n,0)}),n}return null}function Ct(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const ee={transitional:Pe,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s&&s?JSON.stringify(Ce(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let u;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return xt(t,this.formSerializer).toString();if((u=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const f=this.env&&this.env.FormData;return M(u?{"files[]":t}:t,f&&new f,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Ct(t)):t}],transformResponse:[function(t){const n=this.transitional||ee.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(u){if(i)throw u.name==="SyntaxError"?m.from(u,m.ERR_BAD_RESPONSE,this,null,this.response):u}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:O.classes.FormData,Blob:O.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{ee.headers[e]={}});const te=ee,Ft=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Bt=e=>{const t={};let n,r,s;return e&&e.split(` +`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Ft[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},ue=Symbol("internals");function C(e){return e&&String(e).trim().toLowerCase()}function U(e){return e===!1||e==null?e:a.isArray(e)?e.map(U):String(e)}function Dt(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const _t=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function $(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function Lt(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Ut(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class z{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(u,f,d){const c=C(f);if(!c)throw new Error("header name must be a non-empty string");const p=a.findKey(s,c);(!p||s[p]===void 0||d===!0||d===void 0&&s[p]!==!1)&&(s[p||f]=U(u))}const i=(u,f)=>a.forEach(u,(d,c)=>o(d,c,f));return a.isPlainObject(t)||t instanceof this.constructor?i(t,n):a.isString(t)&&(t=t.trim())&&!_t(t)?i(Bt(t),n):t!=null&&o(n,t,r),this}get(t,n){if(t=C(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Dt(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=C(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||$(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=C(i),i){const u=a.findKey(r,i);u&&(!n||$(r,r[u],u,n))&&(delete r[u],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||$(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=U(s),delete n[o];return}const u=t?Lt(o):String(o).trim();u!==o&&delete n[o],n[u]=U(s),r[u]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[ue]=this[ue]={accessors:{}}).accessors,s=this.prototype;function o(i){const u=C(i);r[u]||(Ut(s,i),r[u]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}z.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(z.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(z);const g=z;function V(e,t){const n=this||te,r=t||n,s=g.from(r.headers);let o=r.data;return a.forEach(e,function(u){o=u.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function Fe(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,m,{__CANCEL__:!0});function jt(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const kt=O.isStandardBrowserEnv?function(){return{write:function(n,r,s,o,i,u){const f=[];f.push(n+"="+encodeURIComponent(r)),a.isNumber(s)&&f.push("expires="+new Date(s).toGMTString()),a.isString(o)&&f.push("path="+o),a.isString(i)&&f.push("domain="+i),u===!0&&f.push("secure"),document.cookie=f.join("; ")},read:function(n){const r=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return r?decodeURIComponent(r[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function Ht(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function It(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}function Be(e,t){return e&&!Ht(t)?It(e,t):t}const qt=O.isStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const u=a.isString(i)?s(i):i;return u.protocol===r.protocol&&u.host===r.host}}():function(){return function(){return!0}}();function Mt(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function zt(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(f){const d=Date.now(),c=r[o];i||(i=d),n[s]=f,r[s]=d;let p=o,E=0;for(;p!==s;)E+=n[p++],p=p%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),d-i{const o=s.loaded,i=s.lengthComputable?s.total:void 0,u=o-n,f=r(u),d=o<=i;n=o;const c={loaded:o,total:i,progress:i?o/i:void 0,bytes:u,rate:f||void 0,estimated:f&&i&&d?(i-o)/f:void 0,event:s};c[t?"download":"upload"]=!0,e(c)}}const Jt=typeof XMLHttpRequest<"u",$t=Jt&&function(e){return new Promise(function(n,r){let s=e.data;const o=g.from(e.headers).normalize(),i=e.responseType;let u;function f(){e.cancelToken&&e.cancelToken.unsubscribe(u),e.signal&&e.signal.removeEventListener("abort",u)}let d;a.isFormData(s)&&(O.isStandardBrowserEnv||O.isStandardBrowserWebWorkerEnv?o.setContentType(!1):o.getContentType(/^\s*multipart\/form-data/)?a.isString(d=o.getContentType())&&o.setContentType(d.replace(/^\s*(multipart\/form-data);+/,"$1")):o.setContentType("multipart/form-data"));let c=new XMLHttpRequest;if(e.auth){const l=e.auth.username||"",h=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(l+":"+h))}const p=Be(e.baseURL,e.url);c.open(e.method.toUpperCase(),Ne(p,e.params,e.paramsSerializer),!0),c.timeout=e.timeout;function E(){if(!c)return;const l=g.from("getAllResponseHeaders"in c&&c.getAllResponseHeaders()),b={data:!i||i==="text"||i==="json"?c.responseText:c.response,status:c.status,statusText:c.statusText,headers:l,config:e,request:c};jt(function(R){n(R),f()},function(R){r(R),f()},b),c=null}if("onloadend"in c?c.onloadend=E:c.onreadystatechange=function(){!c||c.readyState!==4||c.status===0&&!(c.responseURL&&c.responseURL.indexOf("file:")===0)||setTimeout(E)},c.onabort=function(){c&&(r(new m("Request aborted",m.ECONNABORTED,e,c)),c=null)},c.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,c)),c=null},c.ontimeout=function(){let h=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const b=e.transitional||Pe;e.timeoutErrorMessage&&(h=e.timeoutErrorMessage),r(new m(h,b.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,c)),c=null},O.isStandardBrowserEnv){const l=(e.withCredentials||qt(p))&&e.xsrfCookieName&&kt.read(e.xsrfCookieName);l&&o.set(e.xsrfHeaderName,l)}s===void 0&&o.setContentType(null),"setRequestHeader"in c&&a.forEach(o.toJSON(),function(h,b){c.setRequestHeader(b,h)}),a.isUndefined(e.withCredentials)||(c.withCredentials=!!e.withCredentials),i&&i!=="json"&&(c.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&c.addEventListener("progress",le(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&c.upload&&c.upload.addEventListener("progress",le(e.onUploadProgress)),(e.cancelToken||e.signal)&&(u=l=>{c&&(r(!l||l.type?new D(null,e,c):l),c.abort(),c=null)},e.cancelToken&&e.cancelToken.subscribe(u),e.signal&&(e.signal.aborted?u():e.signal.addEventListener("abort",u)));const w=Mt(p);if(w&&O.protocols.indexOf(w)===-1){r(new m("Unsupported protocol "+w+":",m.ERR_BAD_REQUEST,e));return}c.send(s||null)})},X={http:yt,xhr:$t};a.forEach(X,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const fe=e=>`- ${e}`,Vt=e=>a.isFunction(e)||e===null||e===!1,De={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o`adapter ${u} `+(f===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since : +`+o.map(fe).join(` +`):" "+fe(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:X};function W(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new D(null,e)}function de(e){return W(e),e.headers=g.from(e.headers),e.data=V.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),De.getAdapter(e.adapter||te.adapter)(e).then(function(r){return W(e),r.data=V.call(e,e.transformResponse,r),r.headers=g.from(r.headers),r},function(r){return Fe(r)||(W(e),r&&r.response&&(r.response.data=V.call(e,e.transformResponse,r.response),r.response.headers=g.from(r.response.headers))),Promise.reject(r)})}const pe=e=>e instanceof g?e.toJSON():e;function N(e,t){t=t||{};const n={};function r(d,c,p){return a.isPlainObject(d)&&a.isPlainObject(c)?a.merge.call({caseless:p},d,c):a.isPlainObject(c)?a.merge({},c):a.isArray(c)?c.slice():c}function s(d,c,p){if(a.isUndefined(c)){if(!a.isUndefined(d))return r(void 0,d,p)}else return r(d,c,p)}function o(d,c){if(!a.isUndefined(c))return r(void 0,c)}function i(d,c){if(a.isUndefined(c)){if(!a.isUndefined(d))return r(void 0,d)}else return r(void 0,c)}function u(d,c,p){if(p in t)return r(d,c);if(p in e)return r(void 0,d)}const f={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:u,headers:(d,c)=>s(pe(d),pe(c),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(c){const p=f[c]||s,E=p(e[c],t[c],c);a.isUndefined(E)&&p!==u||(n[c]=E)}),n}const _e="1.5.1",ne={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ne[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const he={};ne.transitional=function(t,n,r){function s(o,i){return"[Axios v"+_e+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,u)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!he[i]&&(he[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,u):!0}};function Wt(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const u=e[o],f=u===void 0||i(u,o,e);if(f!==!0)throw new m("option "+o+" must be "+f,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const v={assertOptions:Wt,validators:ne},x=v.validators;class k{constructor(t){this.defaults=t,this.interceptors={request:new ce,response:new ce}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=N(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&v.assertOptions(r,{silentJSONParsing:x.transitional(x.boolean),forcedJSONParsing:x.transitional(x.boolean),clarifyTimeoutError:x.transitional(x.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:v.assertOptions(s,{encode:x.function,serialize:x.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],l=>{delete o[l]}),n.headers=g.concat(i,o);const u=[];let f=!0;this.interceptors.request.forEach(function(h){typeof h.runWhen=="function"&&h.runWhen(n)===!1||(f=f&&h.synchronous,u.unshift(h.fulfilled,h.rejected))});const d=[];this.interceptors.response.forEach(function(h){d.push(h.fulfilled,h.rejected)});let c,p=0,E;if(!f){const l=[de.bind(this),void 0];for(l.unshift.apply(l,u),l.push.apply(l,d),E=l.length,c=Promise.resolve(n);p{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(u=>{r.subscribe(u),o=u}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,u){r.reason||(r.reason=new D(o,i,u),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new re(function(s){t=s}),cancel:t}}}const Kt=re;function Gt(e){return function(n){return e.apply(null,n)}}function Xt(e){return a.isObject(e)&&e.isAxiosError===!0}const Q={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Q).forEach(([e,t])=>{Q[t]=e});const vt=Q;function Le(e){const t=new j(e),n=me(j.prototype.request,t);return a.extend(n,j.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Le(N(e,s))},n}const y=Le(te);y.Axios=j;y.CanceledError=D;y.CancelToken=Kt;y.isCancel=Fe;y.VERSION=_e;y.toFormData=M;y.AxiosError=m;y.Cancel=y.CanceledError;y.all=function(t){return Promise.all(t)};y.spread=Gt;y.isAxiosError=Xt;y.mergeConfig=N;y.AxiosHeaders=g;y.formToJSON=e=>Ce(a.isHTMLForm(e)?new FormData(e):e);y.getAdapter=De.getAdapter;y.HttpStatusCode=vt;y.default=y;const Qt=y;export{Qt as a}; diff --git a/addons/dashboard/dist/assets/axios-28bc18a3.js b/addons/dashboard/dist/assets/axios-28bc18a3.js deleted file mode 100644 index 3dfffb745..000000000 --- a/addons/dashboard/dist/assets/axios-28bc18a3.js +++ /dev/null @@ -1,5 +0,0 @@ -function me(e,t){return function(){return e.apply(t,arguments)}}const{toString:ke}=Object.prototype,{getPrototypeOf:Z}=Object,H=(e=>t=>{const n=ke.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),A=e=>(e=e.toLowerCase(),t=>H(t)===e),I=e=>t=>typeof t===e,{isArray:C}=Array,_=I("undefined");function He(e){return e!==null&&!_(e)&&e.constructor!==null&&!_(e.constructor)&&R(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ye=A("ArrayBuffer");function Ie(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ye(e.buffer),t}const qe=I("string"),R=I("function"),Ee=I("number"),q=e=>e!==null&&typeof e=="object",Me=e=>e===!0||e===!1,L=e=>{if(H(e)!=="object")return!1;const t=Z(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},ze=A("Date"),Je=A("File"),$e=A("Blob"),Ve=A("FileList"),We=e=>q(e)&&R(e.pipe),Ke=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||R(e.append)&&((t=H(e))==="formdata"||t==="object"&&R(e.toString)&&e.toString()==="[object FormData]"))},Ge=A("URLSearchParams"),Xe=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function B(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),C(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const we=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Se=e=>!_(e)&&e!==we;function K(){const{caseless:e}=Se(this)&&this||{},t={},n=(r,s)=>{const o=e&&be(t,s)||s;L(t[o])&&L(r)?t[o]=K(t[o],r):L(r)?t[o]=K({},r):C(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(B(t,(s,o)=>{n&&R(s)?e[o]=me(s,n):e[o]=s},{allOwnKeys:r}),e),Qe=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Ze=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Ye=(e,t,n,r)=>{let s,o,i;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!c[i]&&(t[i]=e[i],c[i]=!0);e=n!==!1&&Z(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},et=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},tt=e=>{if(!e)return null;if(C(e))return e;let t=e.length;if(!Ee(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},nt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Z(Uint8Array)),rt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},st=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},ot=A("HTMLFormElement"),it=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),at=A("RegExp"),Re=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};B(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},ct=e=>{Re(e,(t,n)=>{if(R(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(R(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},ut=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return C(e)?r(e):r(String(e).split(t)),n},lt=()=>{},ft=(e,t)=>(e=+e,Number.isFinite(e)?e:t),J="abcdefghijklmnopqrstuvwxyz",oe="0123456789",Oe={DIGIT:oe,ALPHA:J,ALPHA_DIGIT:J+J.toUpperCase()+oe},dt=(e=16,t=Oe.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function pt(e){return!!(e&&R(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const ht=e=>{const t=new Array(10),n=(r,s)=>{if(q(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=C(r)?[]:{};return B(r,(i,c)=>{const p=n(i,s+1);!_(p)&&(o[c]=p)}),t[s]=void 0,o}}return r};return n(e,0)},mt=A("AsyncFunction"),yt=e=>e&&(q(e)||R(e))&&R(e.then)&&R(e.catch),a={isArray:C,isArrayBuffer:ye,isBuffer:He,isFormData:Ke,isArrayBufferView:Ie,isString:qe,isNumber:Ee,isBoolean:Me,isObject:q,isPlainObject:L,isUndefined:_,isDate:ze,isFile:Je,isBlob:$e,isRegExp:at,isFunction:R,isStream:We,isURLSearchParams:Ge,isTypedArray:nt,isFileList:Ve,forEach:B,merge:K,extend:ve,trim:Xe,stripBOM:Qe,inherits:Ze,toFlatObject:Ye,kindOf:H,kindOfTest:A,endsWith:et,toArray:tt,forEachEntry:rt,matchAll:st,isHTMLForm:ot,hasOwnProperty:se,hasOwnProp:se,reduceDescriptors:Re,freezeMethods:ct,toObjectSet:ut,toCamelCase:it,noop:lt,toFiniteNumber:ft,findKey:be,global:we,isContextDefined:Se,ALPHABET:Oe,generateString:dt,isSpecCompliantForm:pt,toJSONObject:ht,isAsyncFn:mt,isThenable:yt};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ae=m.prototype,Te={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Te[e]={value:e}});Object.defineProperties(m,Te);Object.defineProperty(Ae,"isAxiosError",{value:!0});m.from=(e,t,n,r,s,o)=>{const i=Object.create(Ae);return a.toFlatObject(e,i,function(p){return p!==Error.prototype},c=>c!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const Et=null;function G(e){return a.isPlainObject(e)||a.isArray(e)}function ge(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function ie(e,t,n){return e?e.concat(t).map(function(s,o){return s=ge(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function bt(e){return a.isArray(e)&&!e.some(G)}const wt=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function M(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(d,b){return!a.isUndefined(b[d])});const r=n.metaTokens,s=n.visitor||l,o=n.dots,i=n.indexes,p=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function h(f){if(f===null)return"";if(a.isDate(f))return f.toISOString();if(!p&&a.isBlob(f))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(f)||a.isTypedArray(f)?p&&typeof Blob=="function"?new Blob([f]):Buffer.from(f):f}function l(f,d,b){let w=f;if(f&&!b&&typeof f=="object"){if(a.endsWith(d,"{}"))d=r?d:d.slice(0,-2),f=JSON.stringify(f);else if(a.isArray(f)&&bt(f)||(a.isFileList(f)||a.endsWith(d,"[]"))&&(w=a.toArray(f)))return d=ge(d),w.forEach(function(x,je){!(a.isUndefined(x)||x===null)&&t.append(i===!0?ie([d],je,o):i===null?d:d+"[]",h(x))}),!1}return G(f)?!0:(t.append(ie(b,d,o),h(f)),!1)}const u=[],E=Object.assign(wt,{defaultVisitor:l,convertValue:h,isVisitable:G});function S(f,d){if(!a.isUndefined(f)){if(u.indexOf(f)!==-1)throw Error("Circular reference detected in "+d.join("."));u.push(f),a.forEach(f,function(w,g){(!(a.isUndefined(w)||w===null)&&s.call(t,w,a.isString(g)?g.trim():g,d,E))===!0&&S(w,d?d.concat(g):[g])}),u.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return S(e),t}function ae(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Y(e,t){this._pairs=[],e&&M(e,this,t)}const xe=Y.prototype;xe.append=function(t,n){this._pairs.push([t,n])};xe.toString=function(t){const n=t?function(r){return t.call(this,r,ae)}:ae;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function St(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ne(e,t,n){if(!t)return e;const r=n&&n.encode||St,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new Y(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class Rt{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const ce=Rt,Pe={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Ot=typeof URLSearchParams<"u"?URLSearchParams:Y,At=typeof FormData<"u"?FormData:null,Tt=typeof Blob<"u"?Blob:null,gt={isBrowser:!0,classes:{URLSearchParams:Ot,FormData:At,Blob:Tt},protocols:["http","https","file","blob","url","data"]},Ce=typeof window<"u"&&typeof document<"u",xt=(e=>Ce&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),Nt=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Pt=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Ce,hasStandardBrowserEnv:xt,hasStandardBrowserWebWorkerEnv:Nt},Symbol.toStringTag,{value:"Module"})),O={...Pt,...gt};function Ct(e,t){return M(e,new O.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return O.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Ft(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function _t(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return i=!i&&a.isArray(s)?s.length:i,p?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!c):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=_t(s[i])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(Ft(r),s,n,0)}),n}return null}function Bt(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const ee={transitional:Pe,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s&&s?JSON.stringify(Fe(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return Ct(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const p=this.env&&this.env.FormData;return M(c?{"files[]":t}:t,p&&new p,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Bt(t)):t}],transformResponse:[function(t){const n=this.transitional||ee.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(c){if(i)throw c.name==="SyntaxError"?m.from(c,m.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:O.classes.FormData,Blob:O.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{ee.headers[e]={}});const te=ee,Dt=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Lt=e=>{const t={};let n,r,s;return e&&e.split(` -`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Dt[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},ue=Symbol("internals");function F(e){return e&&String(e).trim().toLowerCase()}function U(e){return e===!1||e==null?e:a.isArray(e)?e.map(U):String(e)}function Ut(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const jt=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function $(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function kt(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Ht(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class z{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(c,p,h){const l=F(p);if(!l)throw new Error("header name must be a non-empty string");const u=a.findKey(s,l);(!u||s[u]===void 0||h===!0||h===void 0&&s[u]!==!1)&&(s[u||p]=U(c))}const i=(c,p)=>a.forEach(c,(h,l)=>o(h,l,p));return a.isPlainObject(t)||t instanceof this.constructor?i(t,n):a.isString(t)&&(t=t.trim())&&!jt(t)?i(Lt(t),n):t!=null&&o(n,t,r),this}get(t,n){if(t=F(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Ut(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=F(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||$(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=F(i),i){const c=a.findKey(r,i);c&&(!n||$(r,r[c],c,n))&&(delete r[c],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||$(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=U(s),delete n[o];return}const c=t?kt(o):String(o).trim();c!==o&&delete n[o],n[c]=U(s),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` -`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[ue]=this[ue]={accessors:{}}).accessors,s=this.prototype;function o(i){const c=F(i);r[c]||(Ht(s,i),r[c]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}z.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(z.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(z);const T=z;function V(e,t){const n=this||te,r=t||n,s=T.from(r.headers);let o=r.data;return a.forEach(e,function(c){o=c.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function _e(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,m,{__CANCEL__:!0});function It(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const qt=O.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const i=[e+"="+encodeURIComponent(t)];a.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),a.isString(r)&&i.push("path="+r),a.isString(s)&&i.push("domain="+s),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function Mt(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function zt(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}function Be(e,t){return e&&!Mt(t)?zt(e,t):t}const Jt=O.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const c=a.isString(i)?s(i):i;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}();function $t(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function Vt(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(p){const h=Date.now(),l=r[o];i||(i=h),n[s]=p,r[s]=h;let u=o,E=0;for(;u!==s;)E+=n[u++],u=u%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),h-i{const o=s.loaded,i=s.lengthComputable?s.total:void 0,c=o-n,p=r(c),h=o<=i;n=o;const l={loaded:o,total:i,progress:i?o/i:void 0,bytes:c,rate:p||void 0,estimated:p&&i&&h?(i-o)/p:void 0,event:s};l[t?"download":"upload"]=!0,e(l)}}const Wt=typeof XMLHttpRequest<"u",Kt=Wt&&function(e){return new Promise(function(n,r){let s=e.data;const o=T.from(e.headers).normalize();let{responseType:i,withXSRFToken:c}=e,p;function h(){e.cancelToken&&e.cancelToken.unsubscribe(p),e.signal&&e.signal.removeEventListener("abort",p)}let l;if(a.isFormData(s)){if(O.hasStandardBrowserEnv||O.hasStandardBrowserWebWorkerEnv)o.setContentType(!1);else if((l=o.getContentType())!==!1){const[d,...b]=l?l.split(";").map(w=>w.trim()).filter(Boolean):[];o.setContentType([d||"multipart/form-data",...b].join("; "))}}let u=new XMLHttpRequest;if(e.auth){const d=e.auth.username||"",b=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(d+":"+b))}const E=Be(e.baseURL,e.url);u.open(e.method.toUpperCase(),Ne(E,e.params,e.paramsSerializer),!0),u.timeout=e.timeout;function S(){if(!u)return;const d=T.from("getAllResponseHeaders"in u&&u.getAllResponseHeaders()),w={data:!i||i==="text"||i==="json"?u.responseText:u.response,status:u.status,statusText:u.statusText,headers:d,config:e,request:u};It(function(x){n(x),h()},function(x){r(x),h()},w),u=null}if("onloadend"in u?u.onloadend=S:u.onreadystatechange=function(){!u||u.readyState!==4||u.status===0&&!(u.responseURL&&u.responseURL.indexOf("file:")===0)||setTimeout(S)},u.onabort=function(){u&&(r(new m("Request aborted",m.ECONNABORTED,e,u)),u=null)},u.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,u)),u=null},u.ontimeout=function(){let b=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const w=e.transitional||Pe;e.timeoutErrorMessage&&(b=e.timeoutErrorMessage),r(new m(b,w.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,u)),u=null},O.hasStandardBrowserEnv&&(c&&a.isFunction(c)&&(c=c(e)),c||c!==!1&&Jt(E))){const d=e.xsrfHeaderName&&e.xsrfCookieName&&qt.read(e.xsrfCookieName);d&&o.set(e.xsrfHeaderName,d)}s===void 0&&o.setContentType(null),"setRequestHeader"in u&&a.forEach(o.toJSON(),function(b,w){u.setRequestHeader(w,b)}),a.isUndefined(e.withCredentials)||(u.withCredentials=!!e.withCredentials),i&&i!=="json"&&(u.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&u.addEventListener("progress",le(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&u.upload&&u.upload.addEventListener("progress",le(e.onUploadProgress)),(e.cancelToken||e.signal)&&(p=d=>{u&&(r(!d||d.type?new D(null,e,u):d),u.abort(),u=null)},e.cancelToken&&e.cancelToken.subscribe(p),e.signal&&(e.signal.aborted?p():e.signal.addEventListener("abort",p)));const f=$t(E);if(f&&O.protocols.indexOf(f)===-1){r(new m("Unsupported protocol "+f+":",m.ERR_BAD_REQUEST,e));return}u.send(s||null)})},X={http:Et,xhr:Kt};a.forEach(X,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const fe=e=>`- ${e}`,Gt=e=>a.isFunction(e)||e===null||e===!1,De={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o`adapter ${c} `+(p===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since : -`+o.map(fe).join(` -`):" "+fe(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:X};function W(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new D(null,e)}function de(e){return W(e),e.headers=T.from(e.headers),e.data=V.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),De.getAdapter(e.adapter||te.adapter)(e).then(function(r){return W(e),r.data=V.call(e,e.transformResponse,r),r.headers=T.from(r.headers),r},function(r){return _e(r)||(W(e),r&&r.response&&(r.response.data=V.call(e,e.transformResponse,r.response),r.response.headers=T.from(r.response.headers))),Promise.reject(r)})}const pe=e=>e instanceof T?e.toJSON():e;function P(e,t){t=t||{};const n={};function r(h,l,u){return a.isPlainObject(h)&&a.isPlainObject(l)?a.merge.call({caseless:u},h,l):a.isPlainObject(l)?a.merge({},l):a.isArray(l)?l.slice():l}function s(h,l,u){if(a.isUndefined(l)){if(!a.isUndefined(h))return r(void 0,h,u)}else return r(h,l,u)}function o(h,l){if(!a.isUndefined(l))return r(void 0,l)}function i(h,l){if(a.isUndefined(l)){if(!a.isUndefined(h))return r(void 0,h)}else return r(void 0,l)}function c(h,l,u){if(u in t)return r(h,l);if(u in e)return r(void 0,h)}const p={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:c,headers:(h,l)=>s(pe(h),pe(l),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(l){const u=p[l]||s,E=u(e[l],t[l],l);a.isUndefined(E)&&u!==c||(n[l]=E)}),n}const Le="1.6.2",ne={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ne[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const he={};ne.transitional=function(t,n,r){function s(o,i){return"[Axios v"+Le+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,c)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!he[i]&&(he[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,c):!0}};function Xt(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const c=e[o],p=c===void 0||i(c,o,e);if(p!==!0)throw new m("option "+o+" must be "+p,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const v={assertOptions:Xt,validators:ne},N=v.validators;class k{constructor(t){this.defaults=t,this.interceptors={request:new ce,response:new ce}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=P(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&v.assertOptions(r,{silentJSONParsing:N.transitional(N.boolean),forcedJSONParsing:N.transitional(N.boolean),clarifyTimeoutError:N.transitional(N.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:v.assertOptions(s,{encode:N.function,serialize:N.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],f=>{delete o[f]}),n.headers=T.concat(i,o);const c=[];let p=!0;this.interceptors.request.forEach(function(d){typeof d.runWhen=="function"&&d.runWhen(n)===!1||(p=p&&d.synchronous,c.unshift(d.fulfilled,d.rejected))});const h=[];this.interceptors.response.forEach(function(d){h.push(d.fulfilled,d.rejected)});let l,u=0,E;if(!p){const f=[de.bind(this),void 0];for(f.unshift.apply(f,c),f.push.apply(f,h),E=f.length,l=Promise.resolve(n);u{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(c=>{r.subscribe(c),o=c}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,c){r.reason||(r.reason=new D(o,i,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new re(function(s){t=s}),cancel:t}}}const vt=re;function Qt(e){return function(n){return e.apply(null,n)}}function Zt(e){return a.isObject(e)&&e.isAxiosError===!0}const Q={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Q).forEach(([e,t])=>{Q[t]=e});const Yt=Q;function Ue(e){const t=new j(e),n=me(j.prototype.request,t);return a.extend(n,j.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Ue(P(e,s))},n}const y=Ue(te);y.Axios=j;y.CanceledError=D;y.CancelToken=vt;y.isCancel=_e;y.VERSION=Le;y.toFormData=M;y.AxiosError=m;y.Cancel=y.CanceledError;y.all=function(t){return Promise.all(t)};y.spread=Qt;y.isAxiosError=Zt;y.mergeConfig=P;y.AxiosHeaders=T;y.formToJSON=e=>Fe(a.isHTMLForm(e)?new FormData(e):e);y.getAdapter=De.getAdapter;y.HttpStatusCode=Yt;y.default=y;const en=y;export{en as a}; diff --git a/addons/dashboard/dist/assets/icon-card-5ebb8a56.svg b/addons/dashboard/dist/assets/icon-card-3764c5da.svg similarity index 100% rename from addons/dashboard/dist/assets/icon-card-5ebb8a56.svg rename to addons/dashboard/dist/assets/icon-card-3764c5da.svg diff --git a/addons/dashboard/dist/assets/img-error-bg-ab6474a0.svg b/addons/dashboard/dist/assets/img-error-bg-41f65efa.svg similarity index 100% rename from addons/dashboard/dist/assets/img-error-bg-ab6474a0.svg rename to addons/dashboard/dist/assets/img-error-bg-41f65efa.svg diff --git a/addons/dashboard/dist/assets/img-error-blue-2675a7a9.svg b/addons/dashboard/dist/assets/img-error-blue-f50c8e77.svg similarity index 100% rename from addons/dashboard/dist/assets/img-error-blue-2675a7a9.svg rename to addons/dashboard/dist/assets/img-error-blue-f50c8e77.svg diff --git a/addons/dashboard/dist/assets/img-error-purple-edee3fbc.svg b/addons/dashboard/dist/assets/img-error-purple-b97a483b.svg similarity index 100% rename from addons/dashboard/dist/assets/img-error-purple-edee3fbc.svg rename to addons/dashboard/dist/assets/img-error-purple-b97a483b.svg diff --git a/addons/dashboard/dist/assets/img-error-text-a6aebfa0.svg b/addons/dashboard/dist/assets/img-error-text-630dc36d.svg similarity index 100% rename from addons/dashboard/dist/assets/img-error-text-a6aebfa0.svg rename to addons/dashboard/dist/assets/img-error-text-630dc36d.svg diff --git a/addons/dashboard/dist/assets/index-96c19dfb.js b/addons/dashboard/dist/assets/index-3dd1d45b.js similarity index 99% rename from addons/dashboard/dist/assets/index-96c19dfb.js rename to addons/dashboard/dist/assets/index-3dd1d45b.js index 31e3c5e8d..c0b61e63e 100644 --- a/addons/dashboard/dist/assets/index-96c19dfb.js +++ b/addons/dashboard/dist/assets/index-3dd1d45b.js @@ -6,7 +6,7 @@ * vue-router v4.2.4 * (c) 2023 Eduardo San Martin Morote * @license MIT - */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-fe9c6476.js"),["assets/FullLayout-fe9c6476.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-53cb3cac.js"),["assets/DefaultDashboard-53cb3cac.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-28bc18a3.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-1c38b1c7.js"),[])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-190ac827.js"),["assets/ConfigPage-190ac827.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js","assets/axios-28bc18a3.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-53cb3cac.js"),["assets/DefaultDashboard-53cb3cac.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-28bc18a3.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-64374263.js"),["assets/StarterPage-64374263.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-79a981d9.js"),["assets/TablerIcons-79a981d9.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-d121ebb1.js"),["assets/MaterialIcons-d121ebb1.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-c91eea8c.js"),["assets/TypographyPage-c91eea8c.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-c6ba03ae.js"),["assets/ShadowPage-c6ba03ae.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-31b12c0e.js"),["assets/ColorPage-31b12c0e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-4b2e13a6.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-b218ce2f.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-7e3e95ce.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-8d646748.js"),["assets/LoginPage-8d646748.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-ccc92c7d.js"),["assets/RegisterPage-ccc92c7d.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-36c35b56.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-4b58b90a.js"),["assets/Error404Page-4b58b90a.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-4b58b90a.js"),["assets/Error404Page-4b58b90a.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} + */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-fe599500.js"),["assets/FullLayout-fe599500.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-c5705817.js"),["assets/DefaultDashboard-c5705817.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-f1d3423c.js"),[])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-35ce811b.js"),["assets/ConfigPage-35ce811b.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js","assets/axios-21b846bc.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-c5705817.js"),["assets/DefaultDashboard-c5705817.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-d0170d1e.js"),["assets/StarterPage-d0170d1e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-c6c2a44b.js"),["assets/TablerIcons-c6c2a44b.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-32e7c9d7.js"),["assets/MaterialIcons-32e7c9d7.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-359434da.js"),["assets/TypographyPage-359434da.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-3496744d.js"),["assets/ShadowPage-3496744d.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-0d29251d.js"),["assets/ColorPage-0d29251d.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-d8e66a96.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-e10572ff.js"),["assets/LoginPage-e10572ff.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-a8dce7a5.js"),["assets/RegisterPage-a8dce7a5.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-4fa52dd2.js"),["assets/Error404Page-4fa52dd2.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-4fa52dd2.js"),["assets/Error404Page-4fa52dd2.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function pl(n){const{h:l,s:r,v:h,a:u}=n,g=b=>{const z=(b+l/60)%6;return h-h*r*Math.max(Math.min(z,4-z,1),0)},v=[g(5),g(3),g(1)].map(b=>Math.round(b*255));return{r:v[0],g:v[1],b:v[2],a:u}}function A1(n){return pl(zh(n))}function ja(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,u=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;u!==g&&(u===l?v=60*(0+(r-h)/(u-g)):u===r?v=60*(2+(h-l)/(u-g)):u===h&&(v=60*(4+(l-r)/(u-g)))),v<0&&(v=v+360);const b=u===0?0:(u-g)/u,z=[v,b,u];return{h:z[0],s:z[1],v:z[2],a:n.a}}function zu(n){const{h:l,s:r,v:h,a:u}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:u}}function zh(n){const{h:l,s:r,l:h,a:u}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:u}}function Iu(n){let{r:l,g:r,b:h,a:u}=n;return u===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${u})`}function yu(n){return Iu(pl(n))}function Os(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Cu(n){let{r:l,g:r,b:h,a:u}=n;return`#${[Os(l),Os(r),Os(h),u!==void 0?Os(Math.round(u*255)):""].join("")}`}function Su(n){n=y5(n);let[l,r,h,u]=l5(n,2).map(g=>parseInt(g,16));return u=u===void 0?u:u/255,{r:l,g:r,b:h,a:u}}function I5(n){const l=Su(n);return ja(l)}function $u(n){return Cu(pl(n))}function y5(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=p1(p1(n,6),8,"F")),n}function C5(n,l){const r=bu(xh(n));return r[0]=r[0]+l*10,xu(Mu(r))}function S5(n,l){const r=bu(xh(n));return r[0]=r[0]-l*10,xu(Mu(r))}function o0(n){const l=_n(n);return xh(l)[1]}function $5(n,l){const r=o0(n),h=o0(l),u=Math.max(r,h),g=Math.min(r,h);return(u+.05)/(g+.05)}function Au(n){const l=Math.abs(C1(_n(0),_n(n)));return Math.abs(C1(_n(16777215),_n(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,u)=>{const v=typeof n[u]=="object"&&n[u]!=null&&!Array.isArray(n[u])?n[u]:{type:n[u]};return r&&u in r?h[u]={...v,default:r[u]}:h[u]=v,l&&!h[u].source&&(h[u].source=l),h},{})}const Wt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Pn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return pr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,u){const g=Ch();if(!g.value)return n._setup(h,u);const{props:v,provideSubDefaults:b}=D5(h,h._as??n.name,g),z=n._setup(v,u);return b(),z}}return n}function At(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Pn:mr)(l)}function Gn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return At()({name:r??fl(In(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Wt()},setup(h,u){let{slots:g}=u;return()=>{var v;return Hn(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Bu(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const Uo="cubic-bezier(0.4, 0, 0.2, 1)",A5="cubic-bezier(0.0, 0, 0.2, 1)",B5="cubic-bezier(0.4, 0, 1, 1)";function We(n,l){const r=nl();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function kl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=We(n).type;return ir((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Hu=0,qs=new WeakMap;function on(){const n=We("getUid");if(qs.has(n))return qs.get(n);{const l=Hu++;return qs.set(n,l),l}}on.reset=()=>{Hu=0,qs=new WeakMap};function Ih(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?H5(n):yh(n))return n;n=n.parentElement}return document.scrollingElement}function ra(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(yh(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function yh(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function H5(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function N5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:We("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function j5(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Lt(n){const l=We("useRender");l.render=n}const Zr=Symbol.for("vuetify:defaults");function P5(n){return Pt(n)}function Ch(){const n=he(Zr);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Fe(n,l){const r=Ch(),h=Pt(n),u=X(()=>{if(He(l==null?void 0:l.disabled))return r.value;const v=He(l==null?void 0:l.scoped),b=He(l==null?void 0:l.reset),z=He(l==null?void 0:l.root);if(h.value==null&&!(v||b||z))return r.value;let C=An(h.value,{prev:r.value});if(v)return C;if(b||z){const S=Number(b||1/0);for(let A=0;A<=S&&!(!C||!("prev"in C));A++)C=C.prev;return C&&typeof z=="string"&&z in C&&(C=An(An(C,{prev:C}),C[z])),C}return C.prev?An(C.prev,C):C});return ye(Zr,u),u}function L5(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[ir(l)])<"u"}function D5(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Ch();const h=We("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const u=X(()=>{var z;return(z=r.value)==null?void 0:z[n._as??l]}),g=new Proxy(n,{get(z,C){var A,B,P,D;const S=Reflect.get(z,C);return C==="class"||C==="style"?[(A=u.value)==null?void 0:A[C],S].filter(E=>E!=null):typeof C=="string"&&!L5(h.vnode,C)?((B=u.value)==null?void 0:B[C])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[C])??S:S}}),v=_t();fn(()=>{if(u.value){const z=Object.entries(u.value).filter(C=>{let[S]=C;return S.startsWith(S[0].toUpperCase())});v.value=z.length?Object.fromEntries(z):void 0}else v.value=void 0});function b(){const z=N5(Zr,h);ye(Zr,X(()=>v.value?An((z==null?void 0:z.value)??{},v.value):z==null?void 0:z.value))}return{props:g,provideSubDefaults:b}}const Pa=["sm","md","lg","xl","xxl"],s0=Symbol.for("vuetify:display"),B1={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},F5=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:B1;return An(B1,n)};function H1(n){return Me&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function N1(n){return Me&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function j1(n){const l=Me&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),u=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),b=r(/chrome/i),z=r(/edge/i),C=r(/firefox/i),S=r(/opera/i),A=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:u,cordova:g,electron:v,chrome:b,edge:z,firefox:C,opera:S,win:A,mac:B,linux:P,touch:Kf,ssr:l==="ssr"}}function O5(n,l){const{thresholds:r,mobileBreakpoint:h}=F5(n),u=_t(N1(l)),g=_t(j1(l)),v=Ye({}),b=_t(H1(l));function z(){u.value=N1(),b.value=H1()}function C(){z(),g.value=j1()}return fn(()=>{const S=b.value=r.xxl,Y=S?"xs":A?"sm":B?"md":P?"lg":D?"xl":"xxl",O=typeof h=="number"?h:r[h],H=b.valueHn($h,{...n,class:"mdi"})},te=[String,Function,Object,Array],a0=Symbol.for("vuetify:icons"),La=mt({icon:{type:te},tag:{type:String,required:!0}},"icon"),i0=At()({name:"VComponentIcon",props:La(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var u;return[n.icon?t(h,null,null):(u=r.default)==null?void 0:u.call(r)]}})}}}),Sh=Pn({name:"VSvgIcon",inheritAttrs:!1,props:La(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),E5=Pn({name:"VLigatureIcon",props:La(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),$h=Pn({name:"VClassIcon",props:La(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),V5={svg:{component:Sh},class:{component:$h}};function _5(n){return An({defaultSet:"mdi",sets:{...V5,mdi:R5},aliases:{...T5,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const W5=n=>{const l=he(a0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:X(()=>{var z;const h=He(n);if(!h)return{component:i0};let u=h;if(typeof u=="string"&&(u=u.trim(),u.startsWith("$")&&(u=(z=l.aliases)==null?void 0:z[u.slice(1)])),!u)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(u))return{component:Sh,icon:u};if(typeof u!="string")return{component:i0,icon:u};const g=Object.keys(l.sets).find(C=>typeof u=="string"&&u.startsWith(`${C}:`)),v=g?u.slice(g.length+1):u;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},X5={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},q5={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Vl(n,l){let r;function h(){r=Jr(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}Vt(n,u=>{u&&!r?h():u||(r==null||r.stop(),r=void 0)},{immediate:!0}),ln(()=>{r==null||r.stop()})}function ee(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:A=>A,u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:A=>A;const g=We("useProxiedModel"),v=Pt(n[l]!==void 0?n[l]:r),b=ir(l),C=X(b!==l?()=>{var A,B,P,D;return n[l],!!(((A=g.vnode.props)!=null&&A.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(b))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${b}`)))}:()=>{var A,B;return n[l],!!((A=g.vnode.props)!=null&&A.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Vl(()=>!C.value,()=>{Vt(()=>n[l],A=>{v.value=A})});const S=X({get(){const A=n[l];return h(C.value?A:v.value)},set(A){const B=u(A),P=ne(C.value?n[l]:v.value);P===B||h(P)===A||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>C.value?n[l]:v.value}),S}const P1="$vuetify.",L1=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),Nu=(n,l,r)=>function(h){for(var u=arguments.length,g=new Array(u>1?u-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function mi(n,l,r){const h=ee(n,l,n[l]??r.value);return h.value=n[l]??r.value,Vt(r,u=>{n[l]==null&&(h.value=r.value)}),h}function Pu(n){return l=>{const r=mi(l,"locale",n.current),h=mi(l,"fallback",n.fallback),u=mi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:u,t:Nu(r,h,u),n:ju(r,h),provide:Pu({current:r,fallback:h,messages:u})}}}function Y5(n){const l=_t((n==null?void 0:n.locale)??"en"),r=_t((n==null?void 0:n.fallback)??"en"),h=Pt({en:X5,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:Nu(l,r,h),n:ju(l,r),provide:Pu({current:l,fallback:r,messages:h})}}const Kr=Symbol.for("vuetify:locale");function G5(n){return n.name!=null}function U5(n){const l=n!=null&&n.adapter&&G5(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:Y5(n),r=K5(l,n);return{...l,...r}}function Ln(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function Z5(n){const l=he(Kr);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=Q5(r,l.rtl,n),u={...r,...h};return ye(Kr,u),u}function K5(n,l){const r=Pt((l==null?void 0:l.rtl)??q5),h=X(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Q5(n,l,r){const h=X(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Xe(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const Zo=Symbol.for("vuetify:theme"),ce=mt({theme:String},"theme"),ko={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function J5(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ko;if(!n)return{...ko,isDisabled:!0};const l={};for(const[u,g]of Object.entries(n.themes??{})){const v=g.dark||u==="dark"?(r=ko.themes)==null?void 0:r.dark:(h=ko.themes)==null?void 0:h.light;l[u]=An(v,g)}return An(ko,{...n,themes:l})}function tm(n){const l=J5(n),r=Pt(l.defaultTheme),h=Pt(l.themes),u=X(()=>{const S={};for(const[A,B]of Object.entries(h.value)){const P=S[A]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const E=P.colors[D];if(E)for(const Y of["lighten","darken"]){const O=Y==="lighten"?C5:S5;for(const H of il(l.variations[Y],1))P.colors[`${D}-${Y}-${H}`]=Cu(O(_n(E),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const E=`on-${D}`,Y=_n(P.colors[D]);P.colors[E]=Au(Y)}}return S}),g=X(()=>u.value[r.value]),v=X(()=>{const S=[];g.value.dark&&Jl(S,":root",["color-scheme: dark"]),Jl(S,":root",D1(g.value));for(const[D,E]of Object.entries(u.value))Jl(S,`.v-theme--${D}`,[`color-scheme: ${E.dark?"dark":"normal"}`,...D1(E)]);const A=[],B=[],P=new Set(Object.values(u.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?Jl(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(Jl(A,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),Jl(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),Jl(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...A,...B),S.map((D,E)=>E===0?D:` ${D}`).join("")});function b(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function z(S){if(l.isDisabled)return;const A=S._context.provides.usehead;if(A)if(A.push){const B=A.push(b);Me&&Vt(v,()=>{B.patch(b)})}else Me?(A.addHeadObjs(X(b)),fn(()=>A.updateDOM())):A.addHeadObjs(b());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=Me?document.getElementById("vuetify-theme-stylesheet"):null;Me?Vt(v,P,{immediate:!0}):P()}}const C=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:z,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:u,themeClasses:C,styles:v,global:{name:r,current:g}}}function ge(n){We("provideTheme");const l=he(Zo,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=X(()=>n.theme??(l==null?void 0:l.name.value)),h=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`),u={...l,name:r,themeClasses:h};return ye(Zo,u),u}function Lu(){We("useTheme");const n=he(Zo,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function Jl(n,l,r){n.push(`${l} { `,...r.map(h=>` ${h}; `),`} @@ -713,4 +713,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho .apexcharts-rangebar-goals-markers{ pointer-events: none -}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"Codedthemes",lastName:".com"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){const{username:D,password:E}=P(),Y=n.find(O=>O.username===D&&O.password===E);return Y?C({id:Y.id,username:Y.username,firstName:Y.firstName,lastName:Y.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,q6 as a5,lV as a6,Bt as a7,Hn as a8,Ye as a9,pe as aa,Te as ab,ke as ac,Vt as ad,ye as ae,no as af,fn as ag,jg as ah,Ik as ai,vk as aj,vh as ak,p8 as al,O3 as am,Ce as an,Nn as ao,Df as ap,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; +}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"Codedthemes",lastName:".com"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){const{username:D,password:E}=P(),Y=n.find(O=>O.username===D&&O.password===E);return Y?C({id:Y.id,username:Y.username,firstName:Y.firstName,lastName:Y.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,J7 as a5,q6 as a6,lV as a7,Bt as a8,Hn as a9,Ye as aa,pe as ab,Te as ac,ke as ad,Vt as ae,ye as af,no as ag,fn as ah,jg as ai,Ik as aj,vk as ak,vh as al,p8 as am,O3 as an,Ce as ao,Nn as ap,Df as aq,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; diff --git a/addons/dashboard/dist/assets/social-google-a359a253.svg b/addons/dashboard/dist/assets/social-google-9b2fa67a.svg similarity index 100% rename from addons/dashboard/dist/assets/social-google-a359a253.svg rename to addons/dashboard/dist/assets/social-google-9b2fa67a.svg diff --git a/addons/dashboard/dist/index.html b/addons/dashboard/dist/index.html index 8ce8f8850..d83ab1eea 100644 --- a/addons/dashboard/dist/index.html +++ b/addons/dashboard/dist/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" /> AstrBot - 仪表盘 - + diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py index 9b8124495..208dcf97f 100644 --- a/addons/dashboard/server.py +++ b/addons/dashboard/server.py @@ -5,6 +5,7 @@ import datetime from util import general_utils as gu from dataclasses import dataclass import logging +from cores.database.conn import dbConn @dataclass class DashBoardData(): @@ -36,11 +37,19 @@ class AstrBotDashBoard(): # @self.dashboard_be.get("/.js") # def js(path): # return self.dashboard_be.send_static_file(path + ".js") - - @self.dashboard_be.get("/api/stats") def get_stats(): + db_inst = dbConn() + all_session = db_inst.get_all_stat_session() + last_24_message = db_inst.get_last_24h_stat_message() + last_24_platform = db_inst.get_last_24h_stat_platform() + self.dashboard_data.stats["session"] = [] + self.dashboard_data.stats["session_total"] = db_inst.get_session_cnt_total() + self.dashboard_data.stats["message"] = last_24_message + self.dashboard_data.stats["message_total"] = db_inst.get_message_cnt_total() + self.dashboard_data.stats["platform"] = last_24_platform + return Response( status="success", message="", diff --git a/cores/database/conn.py b/cores/database/conn.py index 95851faaf..54dd4712a 100644 --- a/cores/database/conn.py +++ b/cores/database/conn.py @@ -1,7 +1,7 @@ import sqlite3 import yaml - -# TODO: 数据库缓存prompt +import time +from typing import Tuple class dbConn(): def __init__(self): @@ -15,7 +15,33 @@ class dbConn(): CREATE TABLE IF NOT EXISTS tb_session( qq_id VARCHAR(32) PRIMARY KEY, history TEXT - ) + ); + ''' + ) + c.execute( + ''' + CREATE TABLE IF NOT EXISTS tb_stat_session( + platform VARCHAR(32), + session_id VARCHAR(32), + cnt INTEGER + ); + ''' + ) + c.execute( + ''' + CREATE TABLE IF NOT EXISTS tb_stat_message( + ts INTEGER, + cnt INTEGER + ); + ''' + ) + c.execute( + ''' + CREATE TABLE IF NOT EXISTS tb_stat_platform( + ts INTEGER, + platform VARCHAR(32), + cnt INTEGER + ); ''' ) @@ -81,6 +107,170 @@ class dbConn(): ) conn.commit() + + def increment_stat_session(self, platform, session_id, cnt): + # if not exist, insert + conn = self.conn + c = conn.cursor() + + if self.check_stat_session(platform, session_id): + c.execute( + ''' + UPDATE tb_stat_session SET cnt = cnt + ? WHERE platform = ? AND session_id = ? + ''', (cnt, platform, session_id) + ) + conn.commit() + else: + c.execute( + ''' + INSERT INTO tb_stat_session(platform, session_id, cnt) VALUES (?, ?, ?) + ''', (platform, session_id, cnt) + ) + conn.commit() + + def check_stat_session(self, platform, session_id): + conn = self.conn + c = conn.cursor() + c.execute( + ''' + SELECT * FROM tb_stat_session WHERE platform = ? AND session_id = ? + ''', (platform, session_id) + ) + return c.fetchone() is not None + + def get_all_stat_session(self): + conn = self.conn + c = conn.cursor() + c.execute( + ''' + SELECT * FROM tb_stat_session + ''' + ) + return c.fetchall() + + def get_session_cnt_total(self): + conn = self.conn + c = conn.cursor() + c.execute( + ''' + SELECT COUNT(*) FROM tb_stat_session + ''' + ) + return c.fetchone()[0] + + def increment_stat_message(self, ts, cnt): + # 以一个小时为单位。ts的单位是秒。 + # 找到最近的一个小时,如果没有,就插入 + + conn = self.conn + c = conn.cursor() + + ok, new_ts = self.check_stat_message(ts) + + if ok: + c.execute( + ''' + UPDATE tb_stat_message SET cnt = cnt + ? WHERE ts = ? + ''', (cnt, new_ts) + ) + conn.commit() + else: + c.execute( + ''' + INSERT INTO tb_stat_message(ts, cnt) VALUES (?, ?) + ''', (new_ts, cnt) + ) + conn.commit() + + def check_stat_message(self, ts) -> Tuple[bool, int]: + # 换算成当地整点的时间戳 + + ts = ts - ts % 3600 + conn = self.conn + c = conn.cursor() + c.execute( + ''' + SELECT * FROM tb_stat_message WHERE ts = ? + ''', (ts, ) + ) + if c.fetchone() is not None: + return True, ts + else: + return False, ts + + def get_last_24h_stat_message(self): + # 获取最近24小时的消息统计 + conn = self.conn + c = conn.cursor() + c.execute( + ''' + SELECT * FROM tb_stat_message WHERE ts > ? + ''', (time.time() - 86400, ) + ) + return c.fetchall() + + def get_message_cnt_total(self) -> int: + conn = self.conn + c = conn.cursor() + c.execute( + ''' + SELECT SUM(cnt) FROM tb_stat_message + ''' + ) + return c.fetchone()[0] + + def increment_stat_platform(self, ts, platform, cnt): + # 以一个小时为单位。ts的单位是秒。 + # 找到最近的一个小时,如果没有,就插入 + + conn = self.conn + c = conn.cursor() + + ok, new_ts = self.check_stat_platform(ts, platform) + + if ok: + c.execute( + ''' + UPDATE tb_stat_platform SET cnt = cnt + ? WHERE ts = ? AND platform = ? + ''', (cnt, new_ts, platform) + ) + conn.commit() + else: + c.execute( + ''' + INSERT INTO tb_stat_platform(ts, platform, cnt) VALUES (?, ?, ?) + ''', (new_ts, platform, cnt) + ) + conn.commit() + + def check_stat_platform(self, ts, platform): + # 换算成当地整点的时间戳 + + ts = ts - ts % 3600 + conn = self.conn + c = conn.cursor() + c.execute( + ''' + SELECT * FROM tb_stat_platform WHERE ts = ? AND platform = ? + ''', (ts, platform) + ) + if c.fetchone() is not None: + return True, ts + else: + return False, ts + + def get_last_24h_stat_platform(self): + # 获取最近24小时的消息统计 + conn = self.conn + c = conn.cursor() + c.execute( + ''' + SELECT * FROM tb_stat_platform WHERE ts > ? + ''', (time.time() - 86400, ) + ) + return c.fetchall() + + def close(self): self.conn.close() \ No newline at end of file diff --git a/cores/qqbot/core.py b/cores/qqbot/core.py index fb8de10a3..1c21ff8af 100644 --- a/cores/qqbot/core.py +++ b/cores/qqbot/core.py @@ -42,6 +42,7 @@ from typing import Union, Callable from addons.dashboard.helper import DashBoardHelper from addons.dashboard.server import DashBoardData from cores.monitor.perf import run_monitor +from cores.database.conn import dbConn # 缓存的会话 session_dict = {} @@ -158,7 +159,7 @@ def _runner(func: Callable, args: tuple): loop.run_until_complete(func(*args)) loop.close() -# 上传统计信息并检查更新 +# 统计消息数据 def upload(): global version, gocq_bot, qqchannel_bot while True: @@ -197,13 +198,27 @@ def upload(): pass time.sleep(10*60) + +# 语言模型选择 +def privider_chooser(cfg): + l = [] + if 'rev_ChatGPT' in cfg and cfg['rev_ChatGPT']['enable']: + l.append('rev_chatgpt') + if 'rev_ernie' in cfg and cfg['rev_ernie']['enable']: + l.append('rev_ernie') + if 'rev_edgegpt' in cfg and cfg['rev_edgegpt']['enable']: + l.append('rev_edgegpt') + if 'openai' in cfg and len(cfg['openai']['key']) > 0 and cfg['openai']['key'][0] is not None: + l.append('openai_official') + return l + ''' 初始化机器人 ''' -def initBot(cfg, prov): +def initBot(cfg): global llm_instance, llm_command_instance global baidu_judge, chosen_provider - global frequency_count, frequency_time, announcement, direct_message_mode, version + global frequency_count, frequency_time, announcement, direct_message_mode global keywords, _global_object # 迁移旧配置 @@ -217,6 +232,9 @@ def initBot(cfg, prov): # 初始化 global_object _global_object = GlobalObject() _global_object.base_config = cfg + _global_object.stat['session'] = {} + _global_object.stat['message'] = {} + _global_object.stat['platform'] = {} if 'reply_prefix' in cfg: # 适配旧版配置 @@ -229,7 +247,7 @@ def initBot(cfg, prov): # 语言模型提供商 gu.log("--------加载语言模型--------", gu.LEVEL_INFO, fg=gu.FG_COLORS['yellow']) - + prov = privider_chooser(cfg) if REV_CHATGPT in prov: gu.log("- 逆向ChatGPT库 -", gu.LEVEL_INFO) if cfg['rev_ChatGPT']['enable']: @@ -383,8 +401,8 @@ def initBot(cfg, prov): _global_object.platform_qq = gocq_bot gu.log("机器人部署教程: https://github.com/Soulter/QQChannelChatGPT/wiki/", gu.LEVEL_INFO, fg=gu.FG_COLORS['yellow']) - gu.log("如果有任何问题, 请在 https://github.com/Soulter/QQChannelChatGPT 上提交issue或加群322154837", gu.LEVEL_INFO, fg=gu.FG_COLORS['yellow']) - gu.log("请给 https://github.com/Soulter/QQChannelChatGPT 点个star!", gu.LEVEL_INFO, fg=gu.FG_COLORS['yellow']) + gu.log("如果有任何问题, 请在 https://github.com/Soulter/QQChannelChatGPT 上提交 issue 或加群 322154837", gu.LEVEL_INFO, fg=gu.FG_COLORS['yellow']) + gu.log("请给 https://github.com/Soulter/QQChannelChatGPT 点个 star!", gu.LEVEL_INFO, fg=gu.FG_COLORS['yellow']) # QQ频道 if 'qqbot' in cfg and cfg['qqbot']['enable']: @@ -534,6 +552,8 @@ def check_frequency(id) -> bool: ''' async def send_message(platform, message, res, session_id = None): global qqchannel_bot, qqchannel_bot, gocq_loop, session_dict + + # 统计会话信息 if session_id is not None: if session_id not in session_dict: session_dict[session_id] = {'cnt': 1} @@ -541,15 +561,23 @@ async def send_message(platform, message, res, session_id = None): session_dict[session_id]['cnt'] += 1 else: session_dict[session_id]['cnt'] += 1 + + # TODO: 这里会非常吃资源。然而 sqlite3 不支持多线程,所以暂时这样写。 + curr_ts = int(time.time()) + db_inst = dbConn() + db_inst.increment_stat_session(platform, session_id, 1) + db_inst.increment_stat_message(curr_ts, 1) + db_inst.increment_stat_platform(curr_ts, platform, 1) + if platform == PLATFORM_QQCHAN: qqchannel_bot.send_qq_msg(message, res) - if platform == PLATFORM_GOCQ: + elif platform == PLATFORM_GOCQ: await gocq_bot.send_qq_msg(message, res) - if platform == PLATFROM_QQBOT: + elif platform == PLATFROM_QQBOT: message_chain = MessageChain() message_chain.parse_from_nakuru(res) await qq_bot.send(message, message_chain) - if platform == PLATFORM_CLI: + elif platform == PLATFORM_CLI: print(res) async def oper_msg(message: Union[GroupMessage, FriendMessage, GuildMessage, NakuruGuildMessage], @@ -769,7 +797,6 @@ async def oper_msg(message: Union[GroupMessage, FriendMessage, GuildMessage, Nak if hit: # 检查指令. command_result是一个元组:(指令调用是否成功, 指令返回的文本结果, 指令类型) if command_result == None: - # await send_message(platform, message, "指令调用未返回任何信息。", session_id=session_id) return command = command_result[2] diff --git a/cores/qqbot/global_object.py b/cores/qqbot/global_object.py index 4b660ff8e..89ceeff3f 100644 --- a/cores/qqbot/global_object.py +++ b/cores/qqbot/global_object.py @@ -46,6 +46,28 @@ class GlobalObject: self.default_personality = None self.dashboard_data = None self.stat = {} + ''' + + { + "config": {}, + "session": [ + { + "platform": "qq", + "session_id": 123456, + "cnt": 0 + }, + {...} + ], + "message": [ + // 以一小时为单位 + { + "ts": 1234567, + "cnt": 0 + } + ] + } + + ''' class AstrMessageEvent(): diff --git a/main.py b/main.py index 1169354d7..386e71b27 100644 --- a/main.py +++ b/main.py @@ -44,26 +44,8 @@ def main(): if not os.path.exists(abs_path + "temp"): os.mkdir(abs_path+"temp") - # 选择默认模型 - provider = privider_chooser(cfg) - if len(provider) == 0: - gu.log("注意:您目前未开启任何语言模型。", gu.LEVEL_WARNING) - # 启动主程序(cores/qqbot/core.py) - qqBot.initBot(cfg, provider) - -# 语言模型提供商选择器 -def privider_chooser(cfg): - l = [] - if 'rev_ChatGPT' in cfg and cfg['rev_ChatGPT']['enable']: - l.append('rev_chatgpt') - if 'rev_ernie' in cfg and cfg['rev_ernie']['enable']: - l.append('rev_ernie') - if 'rev_edgegpt' in cfg and cfg['rev_edgegpt']['enable']: - l.append('rev_edgegpt') - if 'openai' in cfg and len(cfg['openai']['key']) > 0 and cfg['openai']['key'][0] is not None: - l.append('openai_official') - return l + qqBot.initBot(cfg) def check_env(ch_mirror=False): if not (sys.version_info.major == 3 and sys.version_info.minor >= 9): diff --git a/nonebot_plugin_gspanel b/nonebot_plugin_gspanel deleted file mode 160000 index a6e45d311..000000000 --- a/nonebot_plugin_gspanel +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a6e45d3114f7f90d2d34c0b46fc87253da5514be From 5fefba458378f54facd2ea832b434ed92996cca4 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Tue, 19 Dec 2023 00:40:47 +0800 Subject: [PATCH 10/17] =?UTF-8?q?feat:=20=E6=8F=92=E4=BB=B6=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...e_vue_type_style_index_0_lang-9cbf7999.js} | 2 +- ...ut-d8e66a96.js => BlankLayout-f3cc4938.js} | 2 +- ...Page-0d29251d.js => ColorPage-52ebf493.js} | 2 +- ...age-35ce811b.js => ConfigPage-8eb2a382.js} | 2 +- ...705817.js => DefaultDashboard-5e53ba74.js} | 2 +- .../dist/assets/Error404Page-4fa52dd2.js | 1 - .../dist/assets/Error404Page-8268ca5d.js | 1 + .../dist/assets/ExtensionPage-62da0b9d.js | 1 + .../dist/assets/ExtensionPage-f1d3423c.js | 26 ----------------- ...out-fe599500.js => FullLayout-b2203f2d.js} | 2 +- ...Page-e10572ff.js => LoginPage-4d7f178b.js} | 2 +- ...e_type_script_setup_true_lang-8caac657.js} | 2 +- ...-32e7c9d7.js => MaterialIcons-e9dc1d9a.js} | 2 +- ...e-a8dce7a5.js => RegisterPage-08cedf17.js} | 2 +- ...age-3496744d.js => ShadowPage-c8e10c04.js} | 2 +- ...ge-d0170d1e.js => StarterPage-c10add8c.js} | 2 +- ...ns-c6c2a44b.js => TablerIcons-39aa3d62.js} | 2 +- ...359434da.js => TypographyPage-f435ac5f.js} | 2 +- ...e_type_script_setup_true_lang-6feeca73.js} | 2 +- ...rd-3764c5da.svg => icon-card-5ebb8a56.svg} | 0 ...41f65efa.svg => img-error-bg-ab6474a0.svg} | 0 ...0c8e77.svg => img-error-blue-2675a7a9.svg} | 0 ...483b.svg => img-error-purple-edee3fbc.svg} | 0 ...0dc36d.svg => img-error-text-a6aebfa0.svg} | 0 .../{index-3dd1d45b.js => index-a328f13b.js} | 4 +-- ...b2fa67a.svg => social-google-a359a253.svg} | 0 addons/dashboard/dist/index.html | 2 +- addons/dashboard/server.py | 29 +++++++++++++++++++ cores/qqbot/core.py | 3 +- model/command/command.py | 3 +- 30 files changed, 52 insertions(+), 48 deletions(-) rename addons/dashboard/dist/assets/{BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js => BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js} (93%) rename addons/dashboard/dist/assets/{BlankLayout-d8e66a96.js => BlankLayout-f3cc4938.js} (70%) rename addons/dashboard/dist/assets/{ColorPage-0d29251d.js => ColorPage-52ebf493.js} (83%) rename addons/dashboard/dist/assets/{ConfigPage-35ce811b.js => ConfigPage-8eb2a382.js} (95%) rename addons/dashboard/dist/assets/{DefaultDashboard-c5705817.js => DefaultDashboard-5e53ba74.js} (99%) delete mode 100644 addons/dashboard/dist/assets/Error404Page-4fa52dd2.js create mode 100644 addons/dashboard/dist/assets/Error404Page-8268ca5d.js create mode 100644 addons/dashboard/dist/assets/ExtensionPage-62da0b9d.js delete mode 100644 addons/dashboard/dist/assets/ExtensionPage-f1d3423c.js rename addons/dashboard/dist/assets/{FullLayout-fe599500.js => FullLayout-b2203f2d.js} (96%) rename addons/dashboard/dist/assets/{LoginPage-e10572ff.js => LoginPage-4d7f178b.js} (99%) rename addons/dashboard/dist/assets/{LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js => LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js} (94%) rename addons/dashboard/dist/assets/{MaterialIcons-32e7c9d7.js => MaterialIcons-e9dc1d9a.js} (70%) rename addons/dashboard/dist/assets/{RegisterPage-a8dce7a5.js => RegisterPage-08cedf17.js} (95%) rename addons/dashboard/dist/assets/{ShadowPage-3496744d.js => ShadowPage-c8e10c04.js} (81%) rename addons/dashboard/dist/assets/{StarterPage-d0170d1e.js => StarterPage-c10add8c.js} (83%) rename addons/dashboard/dist/assets/{TablerIcons-c6c2a44b.js => TablerIcons-39aa3d62.js} (69%) rename addons/dashboard/dist/assets/{TypographyPage-359434da.js => TypographyPage-f435ac5f.js} (94%) rename addons/dashboard/dist/assets/{UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js => UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js} (88%) rename addons/dashboard/dist/assets/{icon-card-3764c5da.svg => icon-card-5ebb8a56.svg} (100%) rename addons/dashboard/dist/assets/{img-error-bg-41f65efa.svg => img-error-bg-ab6474a0.svg} (100%) rename addons/dashboard/dist/assets/{img-error-blue-f50c8e77.svg => img-error-blue-2675a7a9.svg} (100%) rename addons/dashboard/dist/assets/{img-error-purple-b97a483b.svg => img-error-purple-edee3fbc.svg} (100%) rename addons/dashboard/dist/assets/{img-error-text-630dc36d.svg => img-error-text-a6aebfa0.svg} (100%) rename addons/dashboard/dist/assets/{index-3dd1d45b.js => index-a328f13b.js} (99%) rename addons/dashboard/dist/assets/{social-google-9b2fa67a.svg => social-google-a359a253.svg} (100%) diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js similarity index 93% rename from addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js rename to addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js index bb8f05c92..7b5aaf13b 100644 --- a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js +++ b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js @@ -1 +1 @@ -import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a6 as p,B as n,a7 as o,j as f}from"./index-3dd1d45b.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; +import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a6 as p,B as n,a7 as o,j as f}from"./index-a328f13b.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/addons/dashboard/dist/assets/BlankLayout-d8e66a96.js b/addons/dashboard/dist/assets/BlankLayout-f3cc4938.js similarity index 70% rename from addons/dashboard/dist/assets/BlankLayout-d8e66a96.js rename to addons/dashboard/dist/assets/BlankLayout-f3cc4938.js index e23889db0..50b9420e0 100644 --- a/addons/dashboard/dist/assets/BlankLayout-d8e66a96.js +++ b/addons/dashboard/dist/assets/BlankLayout-f3cc4938.js @@ -1 +1 @@ -import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-3dd1d45b.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; +import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-a328f13b.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/ColorPage-0d29251d.js b/addons/dashboard/dist/assets/ColorPage-52ebf493.js similarity index 83% rename from addons/dashboard/dist/assets/ColorPage-0d29251d.js rename to addons/dashboard/dist/assets/ColorPage-52ebf493.js index bcbd5c1fc..1efc7b856 100644 --- a/addons/dashboard/dist/assets/ColorPage-0d29251d.js +++ b/addons/dashboard/dist/assets/ColorPage-52ebf493.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-3dd1d45b.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-a328f13b.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-35ce811b.js b/addons/dashboard/dist/assets/ConfigPage-8eb2a382.js similarity index 95% rename from addons/dashboard/dist/assets/ConfigPage-35ce811b.js rename to addons/dashboard/dist/assets/ConfigPage-8eb2a382.js index a3645e782..59f82428c 100644 --- a/addons/dashboard/dist/assets/ConfigPage-35ce811b.js +++ b/addons/dashboard/dist/assets/ConfigPage-8eb2a382.js @@ -1 +1 @@ -import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{a as g}from"./axios-21b846bc.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as _,V as C,d as U,e as x,t as c,a2 as B,c as r,a3 as w,a4 as v,b as V,a5 as N,i as F,q as P,k as f,A as S}from"./index-3dd1d45b.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){g.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){g.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},z=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,_(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,_(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":T=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{z as default}; +import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{a as g}from"./axios-21b846bc.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as _,V as C,d as U,e as x,t as c,a2 as B,c as r,a3 as w,a4 as v,b as V,a5 as N,i as F,q as P,k as f,A as S}from"./index-a328f13b.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){g.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){g.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},z=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,_(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,_(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":T=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{z as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-c5705817.js b/addons/dashboard/dist/assets/DefaultDashboard-5e53ba74.js similarity index 99% rename from addons/dashboard/dist/assets/DefaultDashboard-c5705817.js rename to addons/dashboard/dist/assets/DefaultDashboard-5e53ba74.js index 3a69e8388..a3986e3bb 100644 --- a/addons/dashboard/dist/assets/DefaultDashboard-c5705817.js +++ b/addons/dashboard/dist/assets/DefaultDashboard-5e53ba74.js @@ -1 +1 @@ -import{y as R,p as u,o as _,c as f,w as e,a as t,O as w,b as s,d as p,j as $,P as I,q as z,Q as F,z as S,s as O,F as M,u as j,n as x,r as U,l as V,e as y,t as h,S as b,T as W,D as N,U as C,W as X,X as D,Y as G,Z as L,V as k,f as m,G as H,_ as Y}from"./index-3dd1d45b.js";import{_ as P}from"./_plugin-vue_export-helper-c27b6911.js";import{a as q}from"./axios-21b846bc.js";const A={class:"d-flex align-start mb-6"},E={class:"ml-auto z-1"},Q={class:"text-h1 font-weight-medium"},Z=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),J={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.message_total=a.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},K=Object.assign(J,{setup(a){const l=R([{title:"移除",icon:W}]);return(n,i)=>{const o=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",A,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),s("div",E,[t(I,{"close-on-content-click":!1},{activator:e(({props:c})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},c),{default:e(()=>[t(o,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),O(M,null,j(l.value,(c,r)=>(_(),f(x,{key:r,value:r},{prepend:e(()=>[(_(),f(U(c.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(c.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),s("h2",Q,h(n.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.session_total=a.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(a){const l=N("1"),n=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),i={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},o=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(r,d)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),s("div",et,[t(X,{modelValue:l.value,"onUpdate:modelValue":d[0]||(d[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(D,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(D,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(G,{modelValue:l.value,"onUpdate:modelValue":d[1]||(d[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",at,h(r.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:n.value,series:i.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",ot,h(r.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:o.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.memory=a.sys_perf.memory,this.runtime_str=a.sys_start_time;let n=new Date().getTime(),i=new Date(a.sys_start_time*1e3).getTime(),o=n-i,c=Math.floor(o/(24*3600*1e3)),r=o%(24*3600*1e3),d=Math.floor(r/(3600*1e3)),g=r%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),B=Math.round(T/1e3);this.runtime_str=c+"天"+d+"小时"+v+"分"+B+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=s("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=s("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(a,l,n,i,o,c){return _(),O(M,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),s("div",null,[s("h4",ct,h(a.runtime_str),1),ut]),t(H),s("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),s("div",null,[s("h4",_t,h(a.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=P(rt,[["render",ft]]),bt=s("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(a,l){let n=[],i=[];for(let o=0;o{const i=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,s("h3",gt,h(l.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(Y,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.select,"onUpdate:modelValue":n[0]||(n[0]=o=>l.select=o),items:l.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),s("div",vt,[t(i,{type:"bar",height:"280",options:l.chartOptions1,series:l.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=s("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Ot={class:"text-center mt-3"},Mt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(a,l){let n={};for(let i=0;i({platforms:[]}),mounted(){}},Dt=Object.assign(Mt,{setup(a){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(l,n)=>{const i=u("DotsIcon"),o=u("perfect-scrollbar"),c=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",xt,[$t,s("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:r})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},r),{default:e(()=>[t(i,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),s("div",kt,[t(o,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),O(M,null,j(l.platforms,(r,d)=>(_(),f(x,{key:d,value:r,color:"secondary",rounded:"sm"},{default:e(()=>[s("div",Tt,[s("div",null,[s("h6",St,h(r.name),1)]),s("div",Ct,h(r.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),s("div",Ot,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:K,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){q.get("/api/stats").then(a=>{console.log("stat",a.data.data),this.stat=a.data.data})}};function It(a,l,n,i,o,c){const r=u("TotalMessage"),d=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(r,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:a.stat},null,8,["stat"])]),_:1})]),_:1})}const Pt=P(Lt,[["render",It]]);export{Pt as default}; +import{y as R,p as u,o as _,c as f,w as e,a as t,O as w,b as s,d as p,j as $,P as I,q as z,Q as F,z as S,s as O,F as M,u as j,n as x,r as U,l as V,e as y,t as h,S as b,T as W,D as N,U as C,W as X,X as D,Y as G,Z as L,V as k,f as m,G as H,_ as Y}from"./index-a328f13b.js";import{_ as P}from"./_plugin-vue_export-helper-c27b6911.js";import{a as q}from"./axios-21b846bc.js";const A={class:"d-flex align-start mb-6"},E={class:"ml-auto z-1"},Q={class:"text-h1 font-weight-medium"},Z=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),J={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.message_total=a.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},K=Object.assign(J,{setup(a){const l=R([{title:"移除",icon:W}]);return(n,i)=>{const o=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",A,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),s("div",E,[t(I,{"close-on-content-click":!1},{activator:e(({props:c})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},c),{default:e(()=>[t(o,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),O(M,null,j(l.value,(c,r)=>(_(),f(x,{key:r,value:r},{prepend:e(()=>[(_(),f(U(c.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(c.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),s("h2",Q,h(n.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.session_total=a.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(a){const l=N("1"),n=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),i={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},o=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(r,d)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),s("div",et,[t(X,{modelValue:l.value,"onUpdate:modelValue":d[0]||(d[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(D,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(D,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(G,{modelValue:l.value,"onUpdate:modelValue":d[1]||(d[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",at,h(r.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:n.value,series:i.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",ot,h(r.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:o.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.memory=a.sys_perf.memory,this.runtime_str=a.sys_start_time;let n=new Date().getTime(),i=new Date(a.sys_start_time*1e3).getTime(),o=n-i,c=Math.floor(o/(24*3600*1e3)),r=o%(24*3600*1e3),d=Math.floor(r/(3600*1e3)),g=r%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),B=Math.round(T/1e3);this.runtime_str=c+"天"+d+"小时"+v+"分"+B+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=s("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=s("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(a,l,n,i,o,c){return _(),O(M,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),s("div",null,[s("h4",ct,h(a.runtime_str),1),ut]),t(H),s("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),s("div",null,[s("h4",_t,h(a.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=P(rt,[["render",ft]]),bt=s("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(a,l){let n=[],i=[];for(let o=0;o{const i=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,s("h3",gt,h(l.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(Y,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.select,"onUpdate:modelValue":n[0]||(n[0]=o=>l.select=o),items:l.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),s("div",vt,[t(i,{type:"bar",height:"280",options:l.chartOptions1,series:l.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=s("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Ot={class:"text-center mt-3"},Mt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(a,l){let n={};for(let i=0;i({platforms:[]}),mounted(){}},Dt=Object.assign(Mt,{setup(a){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(l,n)=>{const i=u("DotsIcon"),o=u("perfect-scrollbar"),c=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",xt,[$t,s("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:r})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},r),{default:e(()=>[t(i,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),s("div",kt,[t(o,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),O(M,null,j(l.platforms,(r,d)=>(_(),f(x,{key:d,value:r,color:"secondary",rounded:"sm"},{default:e(()=>[s("div",Tt,[s("div",null,[s("h6",St,h(r.name),1)]),s("div",Ct,h(r.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),s("div",Ot,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:K,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){q.get("/api/stats").then(a=>{console.log("stat",a.data.data),this.stat=a.data.data})}};function It(a,l,n,i,o,c){const r=u("TotalMessage"),d=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(r,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:a.stat},null,8,["stat"])]),_:1})]),_:1})}const Pt=P(Lt,[["render",It]]);export{Pt as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-4fa52dd2.js b/addons/dashboard/dist/assets/Error404Page-4fa52dd2.js deleted file mode 100644 index cce59ff0d..000000000 --- a/addons/dashboard/dist/assets/Error404Page-4fa52dd2.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as t,b as e,d as l,e as r,f as d}from"./index-3dd1d45b.js";const n="/assets/img-error-bg-41f65efa.svg",_="/assets/img-error-blue-f50c8e77.svg",m="/assets/img-error-text-630dc36d.svg",g="/assets/img-error-purple-b97a483b.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[r("The page you are looking was moved, removed, "),e("br"),r("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[t(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,t(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[r(" Home")]),_:1})])]),_:1})]),_:1})}const C=a(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-8268ca5d.js b/addons/dashboard/dist/assets/Error404Page-8268ca5d.js new file mode 100644 index 000000000..e43dabd0b --- /dev/null +++ b/addons/dashboard/dist/assets/Error404Page-8268ca5d.js @@ -0,0 +1 @@ +import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-a328f13b.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-62da0b9d.js b/addons/dashboard/dist/assets/ExtensionPage-62da0b9d.js new file mode 100644 index 000000000..50654fada --- /dev/null +++ b/addons/dashboard/dist/assets/ExtensionPage-62da0b9d.js @@ -0,0 +1 @@ +import{x as f,o as n,c as d,w as e,a as t,$ as h,b as s,a0 as x,e as r,t as c,G as p,d as m,A as k,O as v,a1 as V,S as w,f as i,s as b,u as C,F as y,V as E,j as S}from"./index-a328f13b.js";import{a as B}from"./axios-21b846bc.js";const $={class:"d-sm-flex align-center justify-space-between"},g=f({__name:"ExtensionCard",props:{title:String,link:String},setup(o){const l=o,_=a=>{window.open(a,"_blank")};return(a,u)=>(n(),d(w,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[t(h,{style:{padding:"10px 20px"}},{default:e(()=>[s("div",$,[t(x,null,{default:e(()=>[r(c(l.title),1)]),_:1}),t(p),t(m,{icon:"mdi-link",variant:"plain",onClick:u[0]||(u[0]=I=>_(l.link))})])]),_:1}),t(k),t(v,null,{default:e(()=>[V(a.$slots,"default")]),_:3})]),_:3}))}}),j=s("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[s("h3",null,"🧩 已安装的插件")],-1),N={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},T={class:"d-flex align-center gap-3"},D=s("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[s("h3",null,"🧩 插件市场 [待开发]")],-1),F={name:"ExtensionPage",components:{ExtensionCard:g},data(){return{extension_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getExtensions()},methods:{getExtensions(){B.get("/api/extensions").then(o=>{this.extension_data.data=o.data.data,console.log(this.extension_data)})}}},G=Object.assign(F,{setup(o){return(l,_)=>(n(),d(E,null,{default:e(()=>[t(i,{cols:"12",md:"12"},{default:e(()=>[j]),_:1}),(n(!0),b(y,null,C(l.extension_data.data,a=>(n(),d(i,{cols:"12",md:"6",lg:"4"},{default:e(()=>[(n(),d(g,{key:a.name,title:a.name,link:a.repo,style:{"margin-bottom":"16px"}},{default:e(()=>[s("p",N,c(a.desc),1),s("div",T,[t(S,null,{default:e(()=>[r("mdi-account")]),_:1}),s("span",null,c(a.author),1),t(p),t(m,{variant:"plain"},{default:e(()=>[r("卸 载[待开发]")]),_:1})])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),t(i,{cols:"12",md:"12"},{default:e(()=>[D]),_:1})]),_:1}))}});export{G as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-f1d3423c.js b/addons/dashboard/dist/assets/ExtensionPage-f1d3423c.js deleted file mode 100644 index dce33e064..000000000 --- a/addons/dashboard/dist/assets/ExtensionPage-f1d3423c.js +++ /dev/null @@ -1,26 +0,0 @@ -import{x as _,o as s,c as l,w as t,a as e,$ as f,b as r,a0 as h,e as i,t as d,G as g,d as m,A as V,O as v,a1 as x,S as k,D as p,s as C,F as w,u as S,f as y,j as b,V as B}from"./index-3dd1d45b.js";const P={class:"d-sm-flex align-center justify-space-between"},$=_({__name:"ExtensionCard",props:{title:String,link:String},setup(u){const n=u,c=o=>{window.open(o,"_blank")};return(o,a)=>(s(),l(k,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(f,{style:{padding:"10px 20px"}},{default:t(()=>[r("div",P,[e(h,null,{default:t(()=>[i(d(n.title),1)]),_:1}),e(g),e(m,{icon:"mdi-link",variant:"plain",onClick:a[0]||(a[0]=E=>c(n.link))})])]),_:1}),e(V),e(v,null,{default:t(()=>[x(o.$slots,"default")]),_:3})]),_:3}))}}),G={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},N={class:"d-flex align-center gap-3"},D=` -{ - "data": [ - { - "name": "GoodPlugins", - "repo": "https://gitee.com/soulter/goodplugins", - "author": "soulter", - "desc": "一些好用的插件,一些好用的插件,一些好用的插件。一些好用的插件。一些好用的插件,一些好用的插件。一些好用的插件,一些好用的插件。一些好用的插件,一些好用的插件,一些好用的插件。一些好用的插件。一些好用的插件,一些好用的插件。一些好用的插件,一些好用的插件", - "version": "1.0" - }, - { - "name": "GoodPlugins", - "repo": "https://gitee.com/soulter/goodplugins", - "author": "soulter", - "desc": "一些好用的插件", - "version": "1.0" - }, - { - "name": "GoodPlugins", - "repo": "https://gitee.com/soulter/goodplugins", - "author": "soulter", - "desc": "一些好用的插件", - "version": "1.0" - } - ] -}`,j=_({__name:"ExtensionPage",setup(u){p({title:"Sample Page"});const n=p(JSON.parse(D));return(c,o)=>(s(),l(B,null,{default:t(()=>[(s(!0),C(w,null,S(n.value.data,a=>(s(),l(y,{cols:"12",md:"6",lg:"4"},{default:t(()=>[(s(),l($,{key:a.name,title:a.name,link:a.repo,style:{"margin-bottom":"16px"}},{default:t(()=>[r("p",G,d(a.desc),1),r("div",N,[e(b,null,{default:t(()=>[i("mdi-account")]),_:1}),r("span",null,d(a.author),1),e(g),e(m,{variant:"plain"},{default:t(()=>[i("安 装")]),_:1})])]),_:2},1032,["title","link"]))]),_:2},1024))),256))]),_:1}))}});export{j as default}; diff --git a/addons/dashboard/dist/assets/FullLayout-fe599500.js b/addons/dashboard/dist/assets/FullLayout-b2203f2d.js similarity index 96% rename from addons/dashboard/dist/assets/FullLayout-fe599500.js rename to addons/dashboard/dist/assets/FullLayout-b2203f2d.js index 82d769112..72614e45c 100644 --- a/addons/dashboard/dist/assets/FullLayout-fe599500.js +++ b/addons/dashboard/dist/assets/FullLayout-b2203f2d.js @@ -1 +1 @@ -import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-3dd1d45b.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; +import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-a328f13b.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; diff --git a/addons/dashboard/dist/assets/LoginPage-e10572ff.js b/addons/dashboard/dist/assets/LoginPage-4d7f178b.js similarity index 99% rename from addons/dashboard/dist/assets/LoginPage-e10572ff.js rename to addons/dashboard/dist/assets/LoginPage-4d7f178b.js index 21f327489..9285099a2 100644 --- a/addons/dashboard/dist/assets/LoginPage-e10572ff.js +++ b/addons/dashboard/dist/assets/LoginPage-4d7f178b.js @@ -1,4 +1,4 @@ -import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js";import{x as ke,a8 as we,r as Ot,a9 as Vt,D as A,aa as Be,U as P,B as I,ab as Q,ac as St,ad as Ne,ae as Ie,af as Et,ag as jt,ah as At,ai as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,aj as Ft,d as Pt,e as Ge,s as Ct,ak as Tt,t as Bt,k as Nt,al as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-3dd1d45b.js";/** +import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js";import{x as ke,a8 as we,r as Ot,a9 as Vt,D as A,aa as Be,U as P,B as I,ab as Q,ac as St,ad as Ne,ae as Ie,af as Et,ag as jt,ah as At,ai as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,aj as Ft,d as Pt,e as Ge,s as Ct,ak as Tt,t as Bt,k as Nt,al as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-a328f13b.js";/** * vee-validate v4.11.3 * (c) 2023 Abdelrahman Awad * @license MIT diff --git a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js similarity index 94% rename from addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js rename to addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js index d91b347a6..d494cca1a 100644 --- a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js +++ b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js @@ -1 +1 @@ -import{an as _,x as d,D as n,o as c,s as m,a as p,w as f,ao as r,b as a,ap as o,B as t,aq as h}from"./index-3dd1d45b.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; +import{an as _,x as d,D as n,o as c,s as m,a as p,w as f,ao as r,b as a,ap as o,B as t,aq as h}from"./index-a328f13b.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/addons/dashboard/dist/assets/MaterialIcons-32e7c9d7.js b/addons/dashboard/dist/assets/MaterialIcons-e9dc1d9a.js similarity index 70% rename from addons/dashboard/dist/assets/MaterialIcons-32e7c9d7.js rename to addons/dashboard/dist/assets/MaterialIcons-e9dc1d9a.js index 381948f98..874b66831 100644 --- a/addons/dashboard/dist/assets/MaterialIcons-32e7c9d7.js +++ b/addons/dashboard/dist/assets/MaterialIcons-e9dc1d9a.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-3dd1d45b.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-a328f13b.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-a8dce7a5.js b/addons/dashboard/dist/assets/RegisterPage-08cedf17.js similarity index 95% rename from addons/dashboard/dist/assets/RegisterPage-a8dce7a5.js rename to addons/dashboard/dist/assets/RegisterPage-08cedf17.js index 544ce0cbc..9ca9dfc06 100644 --- a/addons/dashboard/dist/assets/RegisterPage-a8dce7a5.js +++ b/addons/dashboard/dist/assets/RegisterPage-08cedf17.js @@ -1 +1 @@ -import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,a4 as m,aj as A,am as E,F,c as T,L as q,S as V,O as P}from"./index-3dd1d45b.js";const S="/assets/social-google-9b2fa67a.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),j=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),D={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},G=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),L={class:"mt-5 text-right"},O=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),j,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",D,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),G]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",L,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(O)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; +import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,a4 as m,aj as A,am as E,F,c as T,L as q,S as V,O as P}from"./index-a328f13b.js";const S="/assets/social-google-a359a253.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),j=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),D={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},G=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),L={class:"mt-5 text-right"},O=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),j,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",D,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),G]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",L,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(O)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/ShadowPage-3496744d.js b/addons/dashboard/dist/assets/ShadowPage-c8e10c04.js similarity index 81% rename from addons/dashboard/dist/assets/ShadowPage-3496744d.js rename to addons/dashboard/dist/assets/ShadowPage-c8e10c04.js index fdf2858d0..e9117dde3 100644 --- a/addons/dashboard/dist/assets/ShadowPage-3496744d.js +++ b/addons/dashboard/dist/assets/ShadowPage-c8e10c04.js @@ -1 +1 @@ -import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-3dd1d45b.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-a328f13b.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/StarterPage-d0170d1e.js b/addons/dashboard/dist/assets/StarterPage-c10add8c.js similarity index 83% rename from addons/dashboard/dist/assets/StarterPage-d0170d1e.js rename to addons/dashboard/dist/assets/StarterPage-c10add8c.js index c6c7e3b76..95f29eb4d 100644 --- a/addons/dashboard/dist/assets/StarterPage-d0170d1e.js +++ b/addons/dashboard/dist/assets/StarterPage-c10add8c.js @@ -1 +1 @@ -import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-3dd1d45b.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; +import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-a328f13b.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; diff --git a/addons/dashboard/dist/assets/TablerIcons-c6c2a44b.js b/addons/dashboard/dist/assets/TablerIcons-39aa3d62.js similarity index 69% rename from addons/dashboard/dist/assets/TablerIcons-c6c2a44b.js rename to addons/dashboard/dist/assets/TablerIcons-39aa3d62.js index f92d8f3c7..7b4f81977 100644 --- a/addons/dashboard/dist/assets/TablerIcons-c6c2a44b.js +++ b/addons/dashboard/dist/assets/TablerIcons-39aa3d62.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-3dd1d45b.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-a328f13b.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/addons/dashboard/dist/assets/TypographyPage-359434da.js b/addons/dashboard/dist/assets/TypographyPage-f435ac5f.js similarity index 94% rename from addons/dashboard/dist/assets/TypographyPage-359434da.js rename to addons/dashboard/dist/assets/TypographyPage-f435ac5f.js index cc24245de..316b8be09 100644 --- a/addons/dashboard/dist/assets/TypographyPage-359434da.js +++ b/addons/dashboard/dist/assets/TypographyPage-f435ac5f.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-3dd1d45b.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-a328f13b.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; diff --git a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js similarity index 88% rename from addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js rename to addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js index f74d42ff2..eadf73fdd 100644 --- a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js +++ b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js @@ -1 +1 @@ -import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-3dd1d45b.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; +import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-a328f13b.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/addons/dashboard/dist/assets/icon-card-3764c5da.svg b/addons/dashboard/dist/assets/icon-card-5ebb8a56.svg similarity index 100% rename from addons/dashboard/dist/assets/icon-card-3764c5da.svg rename to addons/dashboard/dist/assets/icon-card-5ebb8a56.svg diff --git a/addons/dashboard/dist/assets/img-error-bg-41f65efa.svg b/addons/dashboard/dist/assets/img-error-bg-ab6474a0.svg similarity index 100% rename from addons/dashboard/dist/assets/img-error-bg-41f65efa.svg rename to addons/dashboard/dist/assets/img-error-bg-ab6474a0.svg diff --git a/addons/dashboard/dist/assets/img-error-blue-f50c8e77.svg b/addons/dashboard/dist/assets/img-error-blue-2675a7a9.svg similarity index 100% rename from addons/dashboard/dist/assets/img-error-blue-f50c8e77.svg rename to addons/dashboard/dist/assets/img-error-blue-2675a7a9.svg diff --git a/addons/dashboard/dist/assets/img-error-purple-b97a483b.svg b/addons/dashboard/dist/assets/img-error-purple-edee3fbc.svg similarity index 100% rename from addons/dashboard/dist/assets/img-error-purple-b97a483b.svg rename to addons/dashboard/dist/assets/img-error-purple-edee3fbc.svg diff --git a/addons/dashboard/dist/assets/img-error-text-630dc36d.svg b/addons/dashboard/dist/assets/img-error-text-a6aebfa0.svg similarity index 100% rename from addons/dashboard/dist/assets/img-error-text-630dc36d.svg rename to addons/dashboard/dist/assets/img-error-text-a6aebfa0.svg diff --git a/addons/dashboard/dist/assets/index-3dd1d45b.js b/addons/dashboard/dist/assets/index-a328f13b.js similarity index 99% rename from addons/dashboard/dist/assets/index-3dd1d45b.js rename to addons/dashboard/dist/assets/index-a328f13b.js index c0b61e63e..8dc71fc64 100644 --- a/addons/dashboard/dist/assets/index-3dd1d45b.js +++ b/addons/dashboard/dist/assets/index-a328f13b.js @@ -6,7 +6,7 @@ * vue-router v4.2.4 * (c) 2023 Eduardo San Martin Morote * @license MIT - */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-fe599500.js"),["assets/FullLayout-fe599500.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-c5705817.js"),["assets/DefaultDashboard-c5705817.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-f1d3423c.js"),[])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-35ce811b.js"),["assets/ConfigPage-35ce811b.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js","assets/axios-21b846bc.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-c5705817.js"),["assets/DefaultDashboard-c5705817.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-d0170d1e.js"),["assets/StarterPage-d0170d1e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-c6c2a44b.js"),["assets/TablerIcons-c6c2a44b.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-32e7c9d7.js"),["assets/MaterialIcons-32e7c9d7.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-359434da.js"),["assets/TypographyPage-359434da.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-3496744d.js"),["assets/ShadowPage-3496744d.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-0d29251d.js"),["assets/ColorPage-0d29251d.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-41278dd3.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-efd0bf02.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-d8e66a96.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-e10572ff.js"),["assets/LoginPage-e10572ff.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-a8dce7a5.js"),["assets/RegisterPage-a8dce7a5.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-7c7e1990.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-4fa52dd2.js"),["assets/Error404Page-4fa52dd2.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-4fa52dd2.js"),["assets/Error404Page-4fa52dd2.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} + */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-b2203f2d.js"),["assets/FullLayout-b2203f2d.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-5e53ba74.js"),["assets/DefaultDashboard-5e53ba74.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-62da0b9d.js"),["assets/ExtensionPage-62da0b9d.js","assets/axios-21b846bc.js"])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-8eb2a382.js"),["assets/ConfigPage-8eb2a382.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js","assets/axios-21b846bc.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-5e53ba74.js"),["assets/DefaultDashboard-5e53ba74.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-c10add8c.js"),["assets/StarterPage-c10add8c.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-39aa3d62.js"),["assets/TablerIcons-39aa3d62.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-e9dc1d9a.js"),["assets/MaterialIcons-e9dc1d9a.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-f435ac5f.js"),["assets/TypographyPage-f435ac5f.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-c8e10c04.js"),["assets/ShadowPage-c8e10c04.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-52ebf493.js"),["assets/ColorPage-52ebf493.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-f3cc4938.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-4d7f178b.js"),["assets/LoginPage-4d7f178b.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-08cedf17.js"),["assets/RegisterPage-08cedf17.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-8268ca5d.js"),["assets/Error404Page-8268ca5d.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-8268ca5d.js"),["assets/Error404Page-8268ca5d.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function pl(n){const{h:l,s:r,v:h,a:u}=n,g=b=>{const z=(b+l/60)%6;return h-h*r*Math.max(Math.min(z,4-z,1),0)},v=[g(5),g(3),g(1)].map(b=>Math.round(b*255));return{r:v[0],g:v[1],b:v[2],a:u}}function A1(n){return pl(zh(n))}function ja(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,u=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;u!==g&&(u===l?v=60*(0+(r-h)/(u-g)):u===r?v=60*(2+(h-l)/(u-g)):u===h&&(v=60*(4+(l-r)/(u-g)))),v<0&&(v=v+360);const b=u===0?0:(u-g)/u,z=[v,b,u];return{h:z[0],s:z[1],v:z[2],a:n.a}}function zu(n){const{h:l,s:r,v:h,a:u}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:u}}function zh(n){const{h:l,s:r,l:h,a:u}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:u}}function Iu(n){let{r:l,g:r,b:h,a:u}=n;return u===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${u})`}function yu(n){return Iu(pl(n))}function Os(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Cu(n){let{r:l,g:r,b:h,a:u}=n;return`#${[Os(l),Os(r),Os(h),u!==void 0?Os(Math.round(u*255)):""].join("")}`}function Su(n){n=y5(n);let[l,r,h,u]=l5(n,2).map(g=>parseInt(g,16));return u=u===void 0?u:u/255,{r:l,g:r,b:h,a:u}}function I5(n){const l=Su(n);return ja(l)}function $u(n){return Cu(pl(n))}function y5(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=p1(p1(n,6),8,"F")),n}function C5(n,l){const r=bu(xh(n));return r[0]=r[0]+l*10,xu(Mu(r))}function S5(n,l){const r=bu(xh(n));return r[0]=r[0]-l*10,xu(Mu(r))}function o0(n){const l=_n(n);return xh(l)[1]}function $5(n,l){const r=o0(n),h=o0(l),u=Math.max(r,h),g=Math.min(r,h);return(u+.05)/(g+.05)}function Au(n){const l=Math.abs(C1(_n(0),_n(n)));return Math.abs(C1(_n(16777215),_n(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,u)=>{const v=typeof n[u]=="object"&&n[u]!=null&&!Array.isArray(n[u])?n[u]:{type:n[u]};return r&&u in r?h[u]={...v,default:r[u]}:h[u]=v,l&&!h[u].source&&(h[u].source=l),h},{})}const Wt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Pn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return pr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,u){const g=Ch();if(!g.value)return n._setup(h,u);const{props:v,provideSubDefaults:b}=D5(h,h._as??n.name,g),z=n._setup(v,u);return b(),z}}return n}function At(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Pn:mr)(l)}function Gn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return At()({name:r??fl(In(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Wt()},setup(h,u){let{slots:g}=u;return()=>{var v;return Hn(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Bu(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const Uo="cubic-bezier(0.4, 0, 0.2, 1)",A5="cubic-bezier(0.0, 0, 0.2, 1)",B5="cubic-bezier(0.4, 0, 1, 1)";function We(n,l){const r=nl();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function kl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=We(n).type;return ir((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Hu=0,qs=new WeakMap;function on(){const n=We("getUid");if(qs.has(n))return qs.get(n);{const l=Hu++;return qs.set(n,l),l}}on.reset=()=>{Hu=0,qs=new WeakMap};function Ih(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?H5(n):yh(n))return n;n=n.parentElement}return document.scrollingElement}function ra(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(yh(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function yh(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function H5(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function N5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:We("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function j5(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Lt(n){const l=We("useRender");l.render=n}const Zr=Symbol.for("vuetify:defaults");function P5(n){return Pt(n)}function Ch(){const n=he(Zr);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Fe(n,l){const r=Ch(),h=Pt(n),u=X(()=>{if(He(l==null?void 0:l.disabled))return r.value;const v=He(l==null?void 0:l.scoped),b=He(l==null?void 0:l.reset),z=He(l==null?void 0:l.root);if(h.value==null&&!(v||b||z))return r.value;let C=An(h.value,{prev:r.value});if(v)return C;if(b||z){const S=Number(b||1/0);for(let A=0;A<=S&&!(!C||!("prev"in C));A++)C=C.prev;return C&&typeof z=="string"&&z in C&&(C=An(An(C,{prev:C}),C[z])),C}return C.prev?An(C.prev,C):C});return ye(Zr,u),u}function L5(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[ir(l)])<"u"}function D5(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Ch();const h=We("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const u=X(()=>{var z;return(z=r.value)==null?void 0:z[n._as??l]}),g=new Proxy(n,{get(z,C){var A,B,P,D;const S=Reflect.get(z,C);return C==="class"||C==="style"?[(A=u.value)==null?void 0:A[C],S].filter(E=>E!=null):typeof C=="string"&&!L5(h.vnode,C)?((B=u.value)==null?void 0:B[C])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[C])??S:S}}),v=_t();fn(()=>{if(u.value){const z=Object.entries(u.value).filter(C=>{let[S]=C;return S.startsWith(S[0].toUpperCase())});v.value=z.length?Object.fromEntries(z):void 0}else v.value=void 0});function b(){const z=N5(Zr,h);ye(Zr,X(()=>v.value?An((z==null?void 0:z.value)??{},v.value):z==null?void 0:z.value))}return{props:g,provideSubDefaults:b}}const Pa=["sm","md","lg","xl","xxl"],s0=Symbol.for("vuetify:display"),B1={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},F5=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:B1;return An(B1,n)};function H1(n){return Me&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function N1(n){return Me&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function j1(n){const l=Me&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),u=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),b=r(/chrome/i),z=r(/edge/i),C=r(/firefox/i),S=r(/opera/i),A=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:u,cordova:g,electron:v,chrome:b,edge:z,firefox:C,opera:S,win:A,mac:B,linux:P,touch:Kf,ssr:l==="ssr"}}function O5(n,l){const{thresholds:r,mobileBreakpoint:h}=F5(n),u=_t(N1(l)),g=_t(j1(l)),v=Ye({}),b=_t(H1(l));function z(){u.value=N1(),b.value=H1()}function C(){z(),g.value=j1()}return fn(()=>{const S=b.value=r.xxl,Y=S?"xs":A?"sm":B?"md":P?"lg":D?"xl":"xxl",O=typeof h=="number"?h:r[h],H=b.valueHn($h,{...n,class:"mdi"})},te=[String,Function,Object,Array],a0=Symbol.for("vuetify:icons"),La=mt({icon:{type:te},tag:{type:String,required:!0}},"icon"),i0=At()({name:"VComponentIcon",props:La(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var u;return[n.icon?t(h,null,null):(u=r.default)==null?void 0:u.call(r)]}})}}}),Sh=Pn({name:"VSvgIcon",inheritAttrs:!1,props:La(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),E5=Pn({name:"VLigatureIcon",props:La(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),$h=Pn({name:"VClassIcon",props:La(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),V5={svg:{component:Sh},class:{component:$h}};function _5(n){return An({defaultSet:"mdi",sets:{...V5,mdi:R5},aliases:{...T5,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const W5=n=>{const l=he(a0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:X(()=>{var z;const h=He(n);if(!h)return{component:i0};let u=h;if(typeof u=="string"&&(u=u.trim(),u.startsWith("$")&&(u=(z=l.aliases)==null?void 0:z[u.slice(1)])),!u)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(u))return{component:Sh,icon:u};if(typeof u!="string")return{component:i0,icon:u};const g=Object.keys(l.sets).find(C=>typeof u=="string"&&u.startsWith(`${C}:`)),v=g?u.slice(g.length+1):u;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},X5={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},q5={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Vl(n,l){let r;function h(){r=Jr(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}Vt(n,u=>{u&&!r?h():u||(r==null||r.stop(),r=void 0)},{immediate:!0}),ln(()=>{r==null||r.stop()})}function ee(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:A=>A,u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:A=>A;const g=We("useProxiedModel"),v=Pt(n[l]!==void 0?n[l]:r),b=ir(l),C=X(b!==l?()=>{var A,B,P,D;return n[l],!!(((A=g.vnode.props)!=null&&A.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(b))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${b}`)))}:()=>{var A,B;return n[l],!!((A=g.vnode.props)!=null&&A.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Vl(()=>!C.value,()=>{Vt(()=>n[l],A=>{v.value=A})});const S=X({get(){const A=n[l];return h(C.value?A:v.value)},set(A){const B=u(A),P=ne(C.value?n[l]:v.value);P===B||h(P)===A||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>C.value?n[l]:v.value}),S}const P1="$vuetify.",L1=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),Nu=(n,l,r)=>function(h){for(var u=arguments.length,g=new Array(u>1?u-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function mi(n,l,r){const h=ee(n,l,n[l]??r.value);return h.value=n[l]??r.value,Vt(r,u=>{n[l]==null&&(h.value=r.value)}),h}function Pu(n){return l=>{const r=mi(l,"locale",n.current),h=mi(l,"fallback",n.fallback),u=mi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:u,t:Nu(r,h,u),n:ju(r,h),provide:Pu({current:r,fallback:h,messages:u})}}}function Y5(n){const l=_t((n==null?void 0:n.locale)??"en"),r=_t((n==null?void 0:n.fallback)??"en"),h=Pt({en:X5,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:Nu(l,r,h),n:ju(l,r),provide:Pu({current:l,fallback:r,messages:h})}}const Kr=Symbol.for("vuetify:locale");function G5(n){return n.name!=null}function U5(n){const l=n!=null&&n.adapter&&G5(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:Y5(n),r=K5(l,n);return{...l,...r}}function Ln(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function Z5(n){const l=he(Kr);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=Q5(r,l.rtl,n),u={...r,...h};return ye(Kr,u),u}function K5(n,l){const r=Pt((l==null?void 0:l.rtl)??q5),h=X(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Q5(n,l,r){const h=X(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Xe(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const Zo=Symbol.for("vuetify:theme"),ce=mt({theme:String},"theme"),ko={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function J5(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ko;if(!n)return{...ko,isDisabled:!0};const l={};for(const[u,g]of Object.entries(n.themes??{})){const v=g.dark||u==="dark"?(r=ko.themes)==null?void 0:r.dark:(h=ko.themes)==null?void 0:h.light;l[u]=An(v,g)}return An(ko,{...n,themes:l})}function tm(n){const l=J5(n),r=Pt(l.defaultTheme),h=Pt(l.themes),u=X(()=>{const S={};for(const[A,B]of Object.entries(h.value)){const P=S[A]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const E=P.colors[D];if(E)for(const Y of["lighten","darken"]){const O=Y==="lighten"?C5:S5;for(const H of il(l.variations[Y],1))P.colors[`${D}-${Y}-${H}`]=Cu(O(_n(E),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const E=`on-${D}`,Y=_n(P.colors[D]);P.colors[E]=Au(Y)}}return S}),g=X(()=>u.value[r.value]),v=X(()=>{const S=[];g.value.dark&&Jl(S,":root",["color-scheme: dark"]),Jl(S,":root",D1(g.value));for(const[D,E]of Object.entries(u.value))Jl(S,`.v-theme--${D}`,[`color-scheme: ${E.dark?"dark":"normal"}`,...D1(E)]);const A=[],B=[],P=new Set(Object.values(u.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?Jl(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(Jl(A,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),Jl(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),Jl(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...A,...B),S.map((D,E)=>E===0?D:` ${D}`).join("")});function b(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function z(S){if(l.isDisabled)return;const A=S._context.provides.usehead;if(A)if(A.push){const B=A.push(b);Me&&Vt(v,()=>{B.patch(b)})}else Me?(A.addHeadObjs(X(b)),fn(()=>A.updateDOM())):A.addHeadObjs(b());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=Me?document.getElementById("vuetify-theme-stylesheet"):null;Me?Vt(v,P,{immediate:!0}):P()}}const C=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:z,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:u,themeClasses:C,styles:v,global:{name:r,current:g}}}function ge(n){We("provideTheme");const l=he(Zo,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=X(()=>n.theme??(l==null?void 0:l.name.value)),h=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`),u={...l,name:r,themeClasses:h};return ye(Zo,u),u}function Lu(){We("useTheme");const n=he(Zo,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function Jl(n,l,r){n.push(`${l} { `,...r.map(h=>` ${h}; `),`} @@ -713,4 +713,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho .apexcharts-rangebar-goals-markers{ pointer-events: none -}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"Codedthemes",lastName:".com"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){const{username:D,password:E}=P(),Y=n.find(O=>O.username===D&&O.password===E);return Y?C({id:Y.id,username:Y.username,firstName:Y.firstName,lastName:Y.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,J7 as a5,q6 as a6,lV as a7,Bt as a8,Hn as a9,Ye as aa,pe as ab,Te as ac,ke as ad,Vt as ae,ye as af,no as ag,fn as ah,jg as ai,Ik as aj,vk as ak,vh as al,p8 as am,O3 as an,Ce as ao,Nn as ap,Df as aq,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; +}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"AstrBot",lastName:"dev"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){P();const D=n[0];return D?C({id:D.id,username:D.username,firstName:D.firstName,lastName:D.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,J7 as a5,q6 as a6,lV as a7,Bt as a8,Hn as a9,Ye as aa,pe as ab,Te as ac,ke as ad,Vt as ae,ye as af,no as ag,fn as ah,jg as ai,Ik as aj,vk as ak,vh as al,p8 as am,O3 as an,Ce as ao,Nn as ap,Df as aq,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; diff --git a/addons/dashboard/dist/assets/social-google-9b2fa67a.svg b/addons/dashboard/dist/assets/social-google-a359a253.svg similarity index 100% rename from addons/dashboard/dist/assets/social-google-9b2fa67a.svg rename to addons/dashboard/dist/assets/social-google-a359a253.svg diff --git a/addons/dashboard/dist/index.html b/addons/dashboard/dist/index.html index d83ab1eea..3b37e8933 100644 --- a/addons/dashboard/dist/index.html +++ b/addons/dashboard/dist/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" /> AstrBot - 仪表盘 - + diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py index 208dcf97f..cce4a15b0 100644 --- a/addons/dashboard/server.py +++ b/addons/dashboard/server.py @@ -12,6 +12,7 @@ class DashBoardData(): stats: dict configs: dict logs: dict + plugins: list[dict] @dataclass class Response(): @@ -88,6 +89,34 @@ class AstrBotDashBoard(): message="", data=self.dashboard_data.logs ).__dict__ + + @self.dashboard_be.get("/api/extensions") + def get_plugins(): + """ + { + "name": "GoodPlugins", + "repo": "https://gitee.com/soulter/goodplugins", + "author": "soulter", + "desc": "一些好用的插件", + "version": "1.0" + } + """ + _plugin_resp = [] + for plugin in self.dashboard_data.plugins: + _p = self.dashboard_data.plugins[plugin] + _t = { + "name": _p["info"]["name"], + "repo": '' if "repo" not in _p["info"] else _p["info"]["repo"], + "author": _p["info"]["author"], + "desc": _p["info"]["desc"], + "version": _p["info"]["version"] + } + _plugin_resp.append(_t) + return Response( + status="success", + message="", + data=_plugin_resp + ).__dict__ def register(self, name: str): def decorator(func): diff --git a/cores/qqbot/core.py b/cores/qqbot/core.py index 1c21ff8af..6634b0d19 100644 --- a/cores/qqbot/core.py +++ b/cores/qqbot/core.py @@ -430,7 +430,8 @@ def initBot(cfg): _global_object.dashboard_data = DashBoardData( stats={}, configs={}, - logs={} + logs={}, + plugins=_global_object.cached_plugins, ) dashboard_helper = DashBoardHelper(_global_object.dashboard_data, config=cc.get_all()) dashboard_thread = threading.Thread(target=dashboard_helper.run, daemon=True) diff --git a/model/command/command.py b/model/command/command.py index 907bf58f3..0d70f8ce8 100644 --- a/model/command/command.py +++ b/model/command/command.py @@ -121,10 +121,9 @@ class Command: def plugin_reload(self, cached_plugins: dict, target: str = None, all: bool = False): plugins = self.get_plugin_modules() - fail_rec = "" if plugins is None: return False, "未找到任何插件模块" - + fail_rec = "" for plugin in plugins: try: p = plugin['module'] From 75f9d383cb42a346a6fbb35f9bcd432ac2d54707 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Tue, 19 Dec 2023 18:36:33 +0800 Subject: [PATCH 11/17] =?UTF-8?q?feat:=20=E8=A1=A5=E5=85=85=E4=B8=80?= =?UTF-8?q?=E4=BA=9Bconfig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- addons/dashboard/helper.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/dashboard/helper.py b/addons/dashboard/helper.py index fc764fa67..0c39b88c9 100644 --- a/addons/dashboard/helper.py +++ b/addons/dashboard/helper.py @@ -83,6 +83,14 @@ class DashBoardHelper(): value=config['qqbot']['token'], path="qqbot.token", ), + DashBoardConfig( + config_type="item", + val_type="string", + name="QQ机器人 Secret", + description="详见 q.qq.com", + value=config['qqbot_secret'], + path="qqbot_secret", + ), DashBoardConfig( config_type="divider" ), @@ -165,6 +173,14 @@ class DashBoardHelper(): value=config['gocq_qqchan_admin'], path="gocq_qqchan_admin", ), + DashBoardConfig( + config_type="item", + val_type="bool", + name="独立会话", + description="是否启用独立会话模式,即 1 个用户自然账号 1 个会话。", + value=config['uniqueSessionMode'], + path="uniqueSessionMode", + ), ] ) From 1b1e558a3ba3d53c59d8152dba4b8227df674be5 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 20 Dec 2023 19:13:38 +0800 Subject: [PATCH 12/17] =?UTF-8?q?feat:=20dashboard=20=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E3=80=81=E9=87=8D=E7=BD=AE=E5=AF=86=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...e_vue_type_style_index_0_lang-f4cd58c1.js} | 2 +- .../dist/assets/BlankLayout-525cd529.js | 1 + .../dist/assets/BlankLayout-f3cc4938.js | 1 - ...Page-52ebf493.js => ColorPage-55b28b0b.js} | 2 +- .../dist/assets/ConfigPage-8eb2a382.js | 1 - .../dist/assets/ConfigPage-9cac3e0c.js | 1 + .../dist/assets/DefaultDashboard-4eca906c.js | 1 + .../dist/assets/DefaultDashboard-5e53ba74.js | 1 - ...e-8268ca5d.js => Error404Page-81062baf.js} | 2 +- .../dist/assets/ExtensionPage-62da0b9d.js | 1 - .../dist/assets/ExtensionPage-dd2d5b82.js | 1 + .../dist/assets/FullLayout-43cdec2d.js | 1 + .../dist/assets/FullLayout-b2203f2d.js | 1 - ...Page-4d7f178b.js => LoginPage-83b1dbf4.js} | 4 +- ...e_type_script_setup_true_lang-adfb09fe.js} | 2 +- ...-e9dc1d9a.js => MaterialIcons-dc137c6e.js} | 2 +- .../dist/assets/RegisterPage-08cedf17.js | 1 - .../dist/assets/RegisterPage-2c6d8bac.js | 1 + ...age-c8e10c04.js => ShadowPage-1e332d97.js} | 2 +- ...ge-c10add8c.js => StarterPage-b0efbf05.js} | 2 +- ...ns-39aa3d62.js => TablerIcons-ee63977c.js} | 2 +- ...f435ac5f.js => TypographyPage-bc8b4876.js} | 2 +- ...e_type_script_setup_true_lang-4e20b330.js} | 2 +- .../dashboard/dist/assets/axios-21b846bc.js | 5 - .../dist/assets/icon-card-5ebb8a56.svg | 5 - .../{index-a328f13b.js => index-c75f6ac5.js} | 50 +++--- addons/dashboard/dist/assets/md5-3db5e3e8.js | 9 + addons/dashboard/dist/index.html | 2 +- addons/dashboard/helper.py | 8 + addons/dashboard/server.py | 46 ++++- app.py | 159 ++++++++++++++++++ cores/qqbot/core.py | 2 + 32 files changed, 266 insertions(+), 56 deletions(-) rename addons/dashboard/dist/assets/{BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js => BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js} (54%) create mode 100644 addons/dashboard/dist/assets/BlankLayout-525cd529.js delete mode 100644 addons/dashboard/dist/assets/BlankLayout-f3cc4938.js rename addons/dashboard/dist/assets/{ColorPage-52ebf493.js => ColorPage-55b28b0b.js} (78%) delete mode 100644 addons/dashboard/dist/assets/ConfigPage-8eb2a382.js create mode 100644 addons/dashboard/dist/assets/ConfigPage-9cac3e0c.js create mode 100644 addons/dashboard/dist/assets/DefaultDashboard-4eca906c.js delete mode 100644 addons/dashboard/dist/assets/DefaultDashboard-5e53ba74.js rename addons/dashboard/dist/assets/{Error404Page-8268ca5d.js => Error404Page-81062baf.js} (94%) delete mode 100644 addons/dashboard/dist/assets/ExtensionPage-62da0b9d.js create mode 100644 addons/dashboard/dist/assets/ExtensionPage-dd2d5b82.js create mode 100644 addons/dashboard/dist/assets/FullLayout-43cdec2d.js delete mode 100644 addons/dashboard/dist/assets/FullLayout-b2203f2d.js rename addons/dashboard/dist/assets/{LoginPage-4d7f178b.js => LoginPage-83b1dbf4.js} (56%) rename addons/dashboard/dist/assets/{LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js => LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js} (77%) rename addons/dashboard/dist/assets/{MaterialIcons-e9dc1d9a.js => MaterialIcons-dc137c6e.js} (70%) delete mode 100644 addons/dashboard/dist/assets/RegisterPage-08cedf17.js create mode 100644 addons/dashboard/dist/assets/RegisterPage-2c6d8bac.js rename addons/dashboard/dist/assets/{ShadowPage-c8e10c04.js => ShadowPage-1e332d97.js} (68%) rename addons/dashboard/dist/assets/{StarterPage-c10add8c.js => StarterPage-b0efbf05.js} (83%) rename addons/dashboard/dist/assets/{TablerIcons-39aa3d62.js => TablerIcons-ee63977c.js} (69%) rename addons/dashboard/dist/assets/{TypographyPage-f435ac5f.js => TypographyPage-bc8b4876.js} (72%) rename addons/dashboard/dist/assets/{UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js => UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js} (76%) delete mode 100644 addons/dashboard/dist/assets/axios-21b846bc.js delete mode 100644 addons/dashboard/dist/assets/icon-card-5ebb8a56.svg rename addons/dashboard/dist/assets/{index-a328f13b.js => index-c75f6ac5.js} (64%) create mode 100644 addons/dashboard/dist/assets/md5-3db5e3e8.js create mode 100644 app.py diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js similarity index 54% rename from addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js rename to addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js index 7b5aaf13b..20f24d19b 100644 --- a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js +++ b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js @@ -1 +1 @@ -import{x as i,o as l,c as _,w as s,a as e,f as a,S as m,V as c,b as t,t as u,a6 as p,B as n,a7 as o,j as f}from"./index-a328f13b.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const r=d;return(x,B)=>(l(),_(c,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(c,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(r.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:r.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; +import{x as i,o as l,c as _,w as s,a as e,f as a,J as m,V as r,b as t,t as u,ab as p,B as n,ac as o,j as f}from"./index-c75f6ac5.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const c=d;return(x,B)=>(l(),_(r,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(r,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(c.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:c.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/addons/dashboard/dist/assets/BlankLayout-525cd529.js b/addons/dashboard/dist/assets/BlankLayout-525cd529.js new file mode 100644 index 000000000..b1971af13 --- /dev/null +++ b/addons/dashboard/dist/assets/BlankLayout-525cd529.js @@ -0,0 +1 @@ +import{x as e,o as a,c as t,w as o,a as s,B as n,X as r,T as c}from"./index-c75f6ac5.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/BlankLayout-f3cc4938.js b/addons/dashboard/dist/assets/BlankLayout-f3cc4938.js deleted file mode 100644 index 50b9420e0..000000000 --- a/addons/dashboard/dist/assets/BlankLayout-f3cc4938.js +++ /dev/null @@ -1 +0,0 @@ -import{x as e,o as a,c as t,w as o,a as s,B as n,R as r,I as c}from"./index-a328f13b.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/ColorPage-52ebf493.js b/addons/dashboard/dist/assets/ColorPage-55b28b0b.js similarity index 78% rename from addons/dashboard/dist/assets/ColorPage-52ebf493.js rename to addons/dashboard/dist/assets/ColorPage-55b28b0b.js index 1efc7b856..7b67b48bf 100644 --- a/addons/dashboard/dist/assets/ColorPage-52ebf493.js +++ b/addons/dashboard/dist/assets/ColorPage-55b28b0b.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,Q as b,e as x,t as y}from"./index-a328f13b.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,_ as b,e as x,t as y}from"./index-c75f6ac5.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-8eb2a382.js b/addons/dashboard/dist/assets/ConfigPage-8eb2a382.js deleted file mode 100644 index 59f82428c..000000000 --- a/addons/dashboard/dist/assets/ConfigPage-8eb2a382.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{a as g}from"./axios-21b846bc.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as _,V as C,d as U,e as x,t as c,a2 as B,c as r,a3 as w,a4 as v,b as V,a5 as N,i as F,q as P,k as f,A as S}from"./index-a328f13b.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){g.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){g.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},z=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,_(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,_(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":T=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{z as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-9cac3e0c.js b/addons/dashboard/dist/assets/ConfigPage-9cac3e0c.js new file mode 100644 index 000000000..8900488d7 --- /dev/null +++ b/addons/dashboard/dist/assets/ConfigPage-9cac3e0c.js @@ -0,0 +1 @@ +import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as g,V as C,d as U,e as x,t as c,a8 as B,R as _,c as r,a9 as w,O as v,b as V,aa as N,i as F,q as P,k as f,A as S}from"./index-c75f6ac5.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){_.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){_.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},$=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,g(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,g(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":O=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{$ as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-4eca906c.js b/addons/dashboard/dist/assets/DefaultDashboard-4eca906c.js new file mode 100644 index 000000000..bcc8fd86f --- /dev/null +++ b/addons/dashboard/dist/assets/DefaultDashboard-4eca906c.js @@ -0,0 +1 @@ +import{y as R,p as u,o as _,c as f,w as e,a as t,L as w,b as s,d as p,j as $,Z as I,q as z,_ as F,z as S,s as M,F as O,u as j,n as x,r as N,l as V,e as y,t as h,J as b,$ as U,D as W,a0 as C,a1 as G,a2 as D,a3 as H,a4 as L,V as k,f as m,G as X,a5 as q,R as A}from"./index-c75f6ac5.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";const E={class:"d-flex align-start mb-6"},J={class:"ml-auto z-1"},Y={class:"text-h1 font-weight-medium"},Z=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),K={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.message_total=a.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},Q=Object.assign(K,{setup(a){const l=R([{title:"移除",icon:U}]);return(n,i)=>{const o=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",E,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),s("div",J,[t(I,{"close-on-content-click":!1},{activator:e(({props:c})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},c),{default:e(()=>[t(o,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),M(O,null,j(l.value,(c,r)=>(_(),f(x,{key:r,value:r},{prepend:e(()=>[(_(),f(N(c.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(c.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),s("h2",Y,h(n.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.session_total=a.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(a){const l=W("1"),n=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),i={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},o=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(r,d)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),s("div",et,[t(G,{modelValue:l.value,"onUpdate:modelValue":d[0]||(d[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(D,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(D,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(H,{modelValue:l.value,"onUpdate:modelValue":d[1]||(d[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",at,h(r.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:n.value,series:i.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",ot,h(r.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:o.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.memory=a.sys_perf.memory,this.runtime_str=a.sys_start_time;let n=new Date().getTime(),i=new Date(a.sys_start_time*1e3).getTime(),o=n-i,c=Math.floor(o/(24*3600*1e3)),r=o%(24*3600*1e3),d=Math.floor(r/(3600*1e3)),g=r%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),P=Math.round(T/1e3);this.runtime_str=c+"天"+d+"小时"+v+"分"+P+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=s("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=s("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(a,l,n,i,o,c){return _(),M(O,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),s("div",null,[s("h4",ct,h(a.runtime_str),1),ut]),t(X),s("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),s("div",null,[s("h4",_t,h(a.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=B(rt,[["render",ft]]),bt=s("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(a,l){let n=[],i=[];for(let o=0;o{const i=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,s("h3",gt,h(l.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(q,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.select,"onUpdate:modelValue":n[0]||(n[0]=o=>l.select=o),items:l.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),s("div",vt,[t(i,{type:"bar",height:"280",options:l.chartOptions1,series:l.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=s("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Mt={class:"text-center mt-3"},Ot={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(a,l){let n={};for(let i=0;i({platforms:[]}),mounted(){}},Dt=Object.assign(Ot,{setup(a){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(l,n)=>{const i=u("DotsIcon"),o=u("perfect-scrollbar"),c=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",xt,[$t,s("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:r})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},r),{default:e(()=>[t(i,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),s("div",kt,[t(o,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),M(O,null,j(l.platforms,(r,d)=>(_(),f(x,{key:d,value:r,color:"secondary",rounded:"sm"},{default:e(()=>[s("div",Tt,[s("div",null,[s("h6",St,h(r.name),1)]),s("div",Ct,h(r.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),s("div",Mt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:Q,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){A.get("/api/stats").then(a=>{console.log("stat",a.data.data),this.stat=a.data.data})}};function It(a,l,n,i,o,c){const r=u("TotalMessage"),d=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(r,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:a.stat},null,8,["stat"])]),_:1})]),_:1})}const jt=B(Lt,[["render",It]]);export{jt as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-5e53ba74.js b/addons/dashboard/dist/assets/DefaultDashboard-5e53ba74.js deleted file mode 100644 index a3986e3bb..000000000 --- a/addons/dashboard/dist/assets/DefaultDashboard-5e53ba74.js +++ /dev/null @@ -1 +0,0 @@ -import{y as R,p as u,o as _,c as f,w as e,a as t,O as w,b as s,d as p,j as $,P as I,q as z,Q as F,z as S,s as O,F as M,u as j,n as x,r as U,l as V,e as y,t as h,S as b,T as W,D as N,U as C,W as X,X as D,Y as G,Z as L,V as k,f as m,G as H,_ as Y}from"./index-a328f13b.js";import{_ as P}from"./_plugin-vue_export-helper-c27b6911.js";import{a as q}from"./axios-21b846bc.js";const A={class:"d-flex align-start mb-6"},E={class:"ml-auto z-1"},Q={class:"text-h1 font-weight-medium"},Z=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),J={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.message_total=a.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},K=Object.assign(J,{setup(a){const l=R([{title:"移除",icon:W}]);return(n,i)=>{const o=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",A,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),s("div",E,[t(I,{"close-on-content-click":!1},{activator:e(({props:c})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},c),{default:e(()=>[t(o,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),O(M,null,j(l.value,(c,r)=>(_(),f(x,{key:r,value:r},{prepend:e(()=>[(_(),f(U(c.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(c.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),s("h2",Q,h(n.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.session_total=a.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(a){const l=N("1"),n=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),i={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},o=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(r,d)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),s("div",et,[t(X,{modelValue:l.value,"onUpdate:modelValue":d[0]||(d[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(D,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(D,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(G,{modelValue:l.value,"onUpdate:modelValue":d[1]||(d[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",at,h(r.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:n.value,series:i.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",ot,h(r.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:o.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.memory=a.sys_perf.memory,this.runtime_str=a.sys_start_time;let n=new Date().getTime(),i=new Date(a.sys_start_time*1e3).getTime(),o=n-i,c=Math.floor(o/(24*3600*1e3)),r=o%(24*3600*1e3),d=Math.floor(r/(3600*1e3)),g=r%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),B=Math.round(T/1e3);this.runtime_str=c+"天"+d+"小时"+v+"分"+B+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=s("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=s("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(a,l,n,i,o,c){return _(),O(M,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),s("div",null,[s("h4",ct,h(a.runtime_str),1),ut]),t(H),s("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),s("div",null,[s("h4",_t,h(a.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=P(rt,[["render",ft]]),bt=s("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(a,l){let n=[],i=[];for(let o=0;o{const i=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,s("h3",gt,h(l.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(Y,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.select,"onUpdate:modelValue":n[0]||(n[0]=o=>l.select=o),items:l.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),s("div",vt,[t(i,{type:"bar",height:"280",options:l.chartOptions1,series:l.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=s("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Ot={class:"text-center mt-3"},Mt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(a,l){let n={};for(let i=0;i({platforms:[]}),mounted(){}},Dt=Object.assign(Mt,{setup(a){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(l,n)=>{const i=u("DotsIcon"),o=u("perfect-scrollbar"),c=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",xt,[$t,s("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:r})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},r),{default:e(()=>[t(i,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),s("div",kt,[t(o,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),O(M,null,j(l.platforms,(r,d)=>(_(),f(x,{key:d,value:r,color:"secondary",rounded:"sm"},{default:e(()=>[s("div",Tt,[s("div",null,[s("h6",St,h(r.name),1)]),s("div",Ct,h(r.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),s("div",Ot,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:K,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){q.get("/api/stats").then(a=>{console.log("stat",a.data.data),this.stat=a.data.data})}};function It(a,l,n,i,o,c){const r=u("TotalMessage"),d=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(r,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:a.stat},null,8,["stat"])]),_:1})]),_:1})}const Pt=P(Lt,[["render",It]]);export{Pt as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-8268ca5d.js b/addons/dashboard/dist/assets/Error404Page-81062baf.js similarity index 94% rename from addons/dashboard/dist/assets/Error404Page-8268ca5d.js rename to addons/dashboard/dist/assets/Error404Page-81062baf.js index e43dabd0b..53dcadc8e 100644 --- a/addons/dashboard/dist/assets/Error404Page-8268ca5d.js +++ b/addons/dashboard/dist/assets/Error404Page-81062baf.js @@ -1 +1 @@ -import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-a328f13b.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; +import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-c75f6ac5.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-62da0b9d.js b/addons/dashboard/dist/assets/ExtensionPage-62da0b9d.js deleted file mode 100644 index 50654fada..000000000 --- a/addons/dashboard/dist/assets/ExtensionPage-62da0b9d.js +++ /dev/null @@ -1 +0,0 @@ -import{x as f,o as n,c as d,w as e,a as t,$ as h,b as s,a0 as x,e as r,t as c,G as p,d as m,A as k,O as v,a1 as V,S as w,f as i,s as b,u as C,F as y,V as E,j as S}from"./index-a328f13b.js";import{a as B}from"./axios-21b846bc.js";const $={class:"d-sm-flex align-center justify-space-between"},g=f({__name:"ExtensionCard",props:{title:String,link:String},setup(o){const l=o,_=a=>{window.open(a,"_blank")};return(a,u)=>(n(),d(w,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[t(h,{style:{padding:"10px 20px"}},{default:e(()=>[s("div",$,[t(x,null,{default:e(()=>[r(c(l.title),1)]),_:1}),t(p),t(m,{icon:"mdi-link",variant:"plain",onClick:u[0]||(u[0]=I=>_(l.link))})])]),_:1}),t(k),t(v,null,{default:e(()=>[V(a.$slots,"default")]),_:3})]),_:3}))}}),j=s("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[s("h3",null,"🧩 已安装的插件")],-1),N={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},T={class:"d-flex align-center gap-3"},D=s("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[s("h3",null,"🧩 插件市场 [待开发]")],-1),F={name:"ExtensionPage",components:{ExtensionCard:g},data(){return{extension_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getExtensions()},methods:{getExtensions(){B.get("/api/extensions").then(o=>{this.extension_data.data=o.data.data,console.log(this.extension_data)})}}},G=Object.assign(F,{setup(o){return(l,_)=>(n(),d(E,null,{default:e(()=>[t(i,{cols:"12",md:"12"},{default:e(()=>[j]),_:1}),(n(!0),b(y,null,C(l.extension_data.data,a=>(n(),d(i,{cols:"12",md:"6",lg:"4"},{default:e(()=>[(n(),d(g,{key:a.name,title:a.name,link:a.repo,style:{"margin-bottom":"16px"}},{default:e(()=>[s("p",N,c(a.desc),1),s("div",T,[t(S,null,{default:e(()=>[r("mdi-account")]),_:1}),s("span",null,c(a.author),1),t(p),t(m,{variant:"plain"},{default:e(()=>[r("卸 载[待开发]")]),_:1})])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),t(i,{cols:"12",md:"12"},{default:e(()=>[D]),_:1})]),_:1}))}});export{G as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-dd2d5b82.js b/addons/dashboard/dist/assets/ExtensionPage-dd2d5b82.js new file mode 100644 index 000000000..ac82b5d7e --- /dev/null +++ b/addons/dashboard/dist/assets/ExtensionPage-dd2d5b82.js @@ -0,0 +1 @@ +import{x as C,o as i,c,w as t,a as e,a6 as w,b as l,K as V,e as d,t as p,G as g,d as u,A as y,L as k,a7 as E,J as v,s as f,f as r,F as x,u as $,V as h,q as B,N as S,O as N,P as T,H as j,R as m,j as D}from"./index-c75f6ac5.js";const F={class:"d-sm-flex align-center justify-space-between"},b=C({__name:"ExtensionCard",props:{title:String,link:String},setup(o){const n=o,s=a=>{window.open(a,"_blank")};return(a,_)=>(i(),c(v,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(w,{style:{padding:"10px 20px"}},{default:t(()=>[l("div",F,[e(V,null,{default:t(()=>[d(p(n.title),1)]),_:1}),e(g),e(u,{icon:"mdi-link",variant:"plain",onClick:_[0]||(_[0]=U=>s(n.link))})])]),_:1}),e(y),e(k,null,{default:t(()=>[E(a.$slots,"default")]),_:3})]),_:3}))}}),G=l("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[l("h3",null,"🧩 已安装的插件")],-1),P={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},q={class:"d-flex align-center gap-3"},A=l("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[l("h3",null,"🧩 插件市场 [待开发]")],-1),I=l("span",{class:"text-h5"},"从 Git 仓库链接安装插件",-1),L=l("small",null,"github, gitee, gitlab 等公开的仓库都行。",-1),O=l("br",null,null,-1),R={name:"ExtensionPage",components:{ExtensionCard:b},data(){return{extension_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:"",extension_url:"",status:"",dialog:!1}},mounted(){this.getExtensions()},methods:{getExtensions(){m.get("/api/extensions").then(o=>{this.extension_data.data=o.data.data,console.log(this.extension_data)})},newExtension(o){m.post("/api/extensions/install",{url:o}).then(n=>{this.extension_data.data=n.data.data,console.log(this.extension_data)})},uninstallExtension(o){m.post("/api/extensions/uninstall",{name:o}).then(n=>{this.extension_data.data=n.data.data,console.log(this.extension_data)})}}},H=Object.assign(R,{setup(o){return(n,s)=>(i(),f(x,null,[e(h,null,{default:t(()=>[e(r,{cols:"12",md:"12"},{default:t(()=>[G]),_:1}),(i(!0),f(x,null,$(n.extension_data.data,a=>(i(),c(r,{cols:"12",md:"6",lg:"4"},{default:t(()=>[(i(),c(b,{key:a.name,title:a.name,link:a.repo,style:{"margin-bottom":"16px"}},{default:t(()=>[l("p",P,p(a.desc),1),l("div",q,[e(D,null,{default:t(()=>[d("mdi-account")]),_:1}),l("span",null,p(a.author),1),e(g),e(u,{variant:"plain",onClick:_=>n.uninstallExtension(a.name)},{default:t(()=>[d("卸 载[待开发]")]),_:2},1032,["onClick"])])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),e(r,{cols:"12",md:"12"},{default:t(()=>[A]),_:1})]),_:1}),e(j,{modelValue:n.dialog,"onUpdate:modelValue":s[3]||(s[3]=a=>n.dialog=a),persistent:"",width:"700"},{activator:t(({props:a})=>[e(u,B(a,{icon:"mdi-content-plus",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary"}),null,16)]),default:t(()=>[e(v,null,{default:t(()=>[e(V,null,{default:t(()=>[I]),_:1}),e(k,null,{default:t(()=>[e(S,null,{default:t(()=>[e(h,null,{default:t(()=>[e(r,{cols:"12"},{default:t(()=>[e(N,{label:"Git 库链接",modelValue:n.extension_url,"onUpdate:modelValue":s[0]||(s[0]=a=>n.extension_url=a),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),L,O,l("small",null,p(n.status),1)]),_:1}),e(T,null,{default:t(()=>[e(g),e(u,{color:"blue-darken-1",variant:"text",onClick:s[1]||(s[1]=a=>n.dialog=!1)},{default:t(()=>[d(" 关闭 ")]),_:1}),e(u,{color:"blue-darken-1",variant:"text",onClick:s[2]||(s[2]=a=>n.newExtension(n.extension_url))},{default:t(()=>[d(" 安装 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])],64))}});export{H as default}; diff --git a/addons/dashboard/dist/assets/FullLayout-43cdec2d.js b/addons/dashboard/dist/assets/FullLayout-43cdec2d.js new file mode 100644 index 000000000..64b7a33b1 --- /dev/null +++ b/addons/dashboard/dist/assets/FullLayout-43cdec2d.js @@ -0,0 +1 @@ +import{o as s,c as i,w as t,e as v,t as h,g as F,h as q,a as e,i as A,j as g,k as w,l as D,m as R,n as E,r as I,p as M,q as P,s as k,F as y,u as j,v as G,x as z,y as W,b as _,z as H,A as J,B as o,C as K,D as b,d as V,E as N,M as B,G as T,H as Q,I as C,J as X,K as Y,L as Z,N as O,V as ee,f as te,O as L,P as ae,Q as le,R as se,S as ie,T as ne,U as oe,W as re,X as ue,Y as de}from"./index-c75f6ac5.js";import{_ as ce,u as S}from"./LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js";import{m as $}from"./md5-3db5e3e8.js";const me=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],fe={__name:"NavGroup",props:{item:Object},setup(a){const l=a;return(n,r)=>(s(),i(F,{color:"darkText",class:"smallCap"},{default:t(()=>[v(h(l.item.header),1)]),_:1}))}},U={__name:"NavItem",props:{item:Object,level:Number},setup(a){return(l,n)=>(s(),i(E,{to:a.item.type==="external"?"":a.item.to,href:a.item.type==="external"?a.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:a.item.disabled,target:a.item.type==="external"?"_blank":""},q({prepend:t(()=>[a.item.icon?(s(),i(g,{key:0,color:a.item.iconColor,size:a.item.iconSize,class:"hide-menu",icon:a.item.icon},null,8,["color","size","icon"])):w("",!0)]),default:t(()=>[e(D,null,{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},[a.item.chip?{name:"append",fn:t(()=>[e(A,{color:a.item.chipColor,class:"sidebarchip hide-menu",size:a.item.chipIcon?"small":"default",variant:a.item.chipVariant,"prepend-icon":a.item.chipIcon},{default:t(()=>[v(h(a.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},pe={__name:"IconSet",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>l.level>0?(s(),i(I(l.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(s(),i(I(l.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ve={__name:"NavCollapse",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>{const u=M("NavCollapse",!0);return s(),i(G,{"no-action":""},{activator:t(({props:f})=>[e(E,P(f,{value:a.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[e(pe,{item:a.item.icon,level:a.level},null,8,["item","level"])]),default:t(()=>[e(D,{class:"mr-auto"},{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},1040,["value"])]),default:t(()=>[(s(!0),k(y,null,j(a.item.children,(f,d)=>(s(),k(y,{key:d},[f.children?(s(),i(u,{key:0,item:f,level:l.level+1},null,8,["item","level"])):(s(),i(U,{key:1,item:f,level:l.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},he={__name:"LogoMain",setup(a){return(l,n)=>(s(),i(ce))}},_e={class:"pa-5"},Ve={class:"pa-4 text-center"},be=z({__name:"VerticalSidebar",setup(a){const l=S(),n=W(me);return(r,u)=>{const f=M("perfect-scrollbar");return s(),i(K,{left:"",modelValue:o(l).Sidebar_drawer,"onUpdate:modelValue":u[0]||(u[0]=d=>o(l).Sidebar_drawer=d),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:o(l).mini_sidebar,"expand-on-hover":""},{default:t(()=>[_("div",_e,[e(he)]),e(f,{class:"scrollnavbar"},{default:t(()=>[e(H,{class:"pa-4"},{default:t(()=>[(s(!0),k(y,null,j(n.value,(d,x)=>(s(),k(y,{key:x},[d.header?(s(),i(fe,{item:d,key:d.title},null,8,["item"])):d.divider?(s(),i(J,{key:1,class:"my-3"})):d.children?(s(),i(ve,{key:2,class:"leftPadding",item:d,level:0},null,8,["item"])):(s(),i(U,{key:3,item:d,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),_("div",Ve,[e(A,{color:"inputBorder",size:"small"},{default:t(()=>[v(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),Ce=_("span",{class:"text-h5"},"密码修改",-1),ke=_("small",null,"如果是第一次修改密码,原密码请留空。",-1),ye=_("br",null,null,-1),xe=z({__name:"VerticalHeader",setup(a){const l=S();b(!1);let n=b(!1),r=b(""),u=b(""),f=b("");const d=p=>{window.open(p,"_blank")};function x(){r.value!=""&&(r.value=$.md5(r.value)),u.value=$.md5(u.value),se.post("/api/change_password",{password:r.value,new_password:u.value}).then(p=>{if(p.data.status=="error"){f.value=p.data.message,r.value="",u.value="";return}n.value=!n.value,f.value=p.data.message,setTimeout(()=>{ie().logout()},1e3)}).catch(p=>{console.log(p),f.value=p,r.value="",u.value=""})}return(p,c)=>(s(),i(le,{elevation:"0",height:"80"},{default:t(()=>[e(V,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=N(m=>o(l).SET_MINI_SIDEBAR(!o(l).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1}),e(V,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:N(o(l).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),e(T),e(Q,{modelValue:o(n),"onUpdate:modelValue":c[4]||(c[4]=m=>C(n)?n.value=m:n=m),persistent:"",width:"700"},{activator:t(({props:m})=>[e(V,P({class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},m),{default:t(()=>[e(g,{icon:"mdi-account-edit",size:"25"})]),_:2},1040)]),default:t(()=>[e(X,null,{default:t(()=>[e(Y,null,{default:t(()=>[Ce]),_:1}),e(Z,null,{default:t(()=>[e(O,null,{default:t(()=>[e(ee,null,{default:t(()=>[e(te,{cols:"12"},{default:t(()=>[e(L,{label:"原密码*",type:"password",modelValue:o(r),"onUpdate:modelValue":c[1]||(c[1]=m=>C(r)?r.value=m:r=m),required:""},null,8,["modelValue"]),e(L,{label:"新密码*",type:"password",modelValue:o(u),"onUpdate:modelValue":c[2]||(c[2]=m=>C(u)?u.value=m:u=m),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),ke,ye,_("small",null,h(o(f)),1)]),_:1}),e(ae,null,{default:t(()=>[e(T),e(V,{color:"blue-darken-1",variant:"text",onClick:c[3]||(c[3]=m=>C(n)?n.value=!1:n=!1)},{default:t(()=>[v(" 关闭 ")]),_:1}),e(V,{color:"blue-darken-1",variant:"text",onClick:x},{default:t(()=>[v(" 提交 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(V,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",onClick:c[5]||(c[5]=m=>d("https://github.com/Soulter/AstrBot")),rounded:"pill"},{default:t(()=>[e(g,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),Se=z({__name:"FullLayout",setup(a){const l=S();return(n,r)=>(s(),i(de,null,{default:t(()=>[e(ne,{theme:"PurpleTheme",class:oe([o(l).fontTheme,o(l).mini_sidebar?"mini-sidebar":"",o(l).inputBg?"inputWithbg":""])},{default:t(()=>[e(be),e(xe),e(re,null,{default:t(()=>[e(O,{fluid:"",class:"page-wrapper"},{default:t(()=>[_("div",null,[e(o(ue))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{Se as default}; diff --git a/addons/dashboard/dist/assets/FullLayout-b2203f2d.js b/addons/dashboard/dist/assets/FullLayout-b2203f2d.js deleted file mode 100644 index 72614e45c..000000000 --- a/addons/dashboard/dist/assets/FullLayout-b2203f2d.js +++ /dev/null @@ -1 +0,0 @@ -import{o as i,c as n,w as t,e as m,t as u,g as D,h as E,a as l,i as g,j as z,k as _,l as w,m as S,n as I,r as V,p as N,q as M,s as p,F as h,u as B,v as R,x as y,y as T,b,z as A,A as j,B as s,C as P,D as O,d as v,E as C,M as x,G as F,H as G,I as H,J as W,K as q,L as J,R as K,N as U}from"./index-a328f13b.js";import{_ as Q,u as k}from"./LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js";const X=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],Y={__name:"NavGroup",props:{item:Object},setup(e){const a=e;return(r,c)=>(i(),n(D,{color:"darkText",class:"smallCap"},{default:t(()=>[m(u(a.item.header),1)]),_:1}))}},L={__name:"NavItem",props:{item:Object,level:Number},setup(e){return(a,r)=>(i(),n(I,{to:e.item.type==="external"?"":e.item.to,href:e.item.type==="external"?e.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:e.item.disabled,target:e.item.type==="external"?"_blank":""},E({prepend:t(()=>[e.item.icon?(i(),n(z,{key:0,color:e.item.iconColor,size:e.item.iconSize,class:"hide-menu",icon:e.item.icon},null,8,["color","size","icon"])):_("",!0)]),default:t(()=>[l(w,null,{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},[e.item.chip?{name:"append",fn:t(()=>[l(g,{color:e.item.chipColor,class:"sidebarchip hide-menu",size:e.item.chipIcon?"small":"default",variant:e.item.chipVariant,"prepend-icon":e.item.chipIcon},{default:t(()=>[m(u(e.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},Z={__name:"IconSet",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>a.level>0?(i(),n(V(a.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(i(),n(V(a.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ee={__name:"NavCollapse",props:{item:Object,level:Number},setup(e){const a=e;return(r,c)=>{const f=N("NavCollapse",!0);return i(),n(R,{"no-action":""},{activator:t(({props:d})=>[l(I,M(d,{value:e.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[l(Z,{item:e.item.icon,level:e.level},null,8,["item","level"])]),default:t(()=>[l(w,{class:"mr-auto"},{default:t(()=>[m(u(e.item.title),1)]),_:1}),e.item.subCaption?(i(),n(S,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[m(u(e.item.subCaption),1)]),_:1})):_("",!0)]),_:2},1040,["value"])]),default:t(()=>[(i(!0),p(h,null,B(e.item.children,(d,o)=>(i(),p(h,{key:o},[d.children?(i(),n(f,{key:0,item:d,level:a.level+1},null,8,["item","level"])):(i(),n(L,{key:1,item:d,level:a.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},te={__name:"LogoMain",setup(e){return(a,r)=>(i(),n(Q))}},ae={class:"pa-5"},ie={class:"pa-4 text-center"},le=y({__name:"VerticalSidebar",setup(e){const a=k(),r=T(X);return(c,f)=>{const d=N("perfect-scrollbar");return i(),n(P,{left:"",modelValue:s(a).Sidebar_drawer,"onUpdate:modelValue":f[0]||(f[0]=o=>s(a).Sidebar_drawer=o),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:s(a).mini_sidebar,"expand-on-hover":""},{default:t(()=>[b("div",ae,[l(te)]),l(d,{class:"scrollnavbar"},{default:t(()=>[l(A,{class:"pa-4"},{default:t(()=>[(i(!0),p(h,null,B(r.value,(o,$)=>(i(),p(h,{key:$},[o.header?(i(),n(Y,{item:o,key:o.title},null,8,["item"])):o.divider?(i(),n(j,{key:1,class:"my-3"})):o.children?(i(),n(ee,{key:2,class:"leftPadding",item:o,level:0},null,8,["item"])):(i(),n(L,{key:3,item:o,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),b("div",ie,[l(g,{color:"inputBorder",size:"small"},{default:t(()=>[m(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),ne=y({__name:"VerticalHeader",setup(e){const a=k();return O(!1),(r,c)=>(i(),n(G,{elevation:"0",height:"80"},{default:t(()=>[l(v,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=C(f=>s(a).SET_MINI_SIDEBAR(!s(a).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1}),l(v,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:C(s(a).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[l(s(x),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),l(F),l(v,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},{default:t(()=>[l(z,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),re=y({__name:"FullLayout",setup(e){const a=k();return(r,c)=>(i(),n(U,null,{default:t(()=>[l(H,{theme:"PurpleTheme",class:W([s(a).fontTheme,s(a).mini_sidebar?"mini-sidebar":"",s(a).inputBg?"inputWithbg":""])},{default:t(()=>[l(le),l(ne),l(q,null,{default:t(()=>[l(J,{fluid:"",class:"page-wrapper"},{default:t(()=>[b("div",null,[l(s(K))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{re as default}; diff --git a/addons/dashboard/dist/assets/LoginPage-4d7f178b.js b/addons/dashboard/dist/assets/LoginPage-83b1dbf4.js similarity index 56% rename from addons/dashboard/dist/assets/LoginPage-4d7f178b.js rename to addons/dashboard/dist/assets/LoginPage-83b1dbf4.js index 9285099a2..dea3e203f 100644 --- a/addons/dashboard/dist/assets/LoginPage-4d7f178b.js +++ b/addons/dashboard/dist/assets/LoginPage-83b1dbf4.js @@ -1,5 +1,5 @@ -import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js";import{x as ke,a8 as we,r as Ot,a9 as Vt,D as A,aa as Be,U as P,B as I,ab as Q,ac as St,ad as Ne,ae as Ie,af as Et,ag as jt,ah as At,ai as G,y as wt,o as Re,c as tt,w as C,a as j,a4 as qe,b as ge,aj as Ft,d as Pt,e as Ge,s as Ct,ak as Tt,t as Bt,k as Nt,al as It,f as Fe,L as Rt,V as Pe,S as Ye,O as kt}from"./index-a328f13b.js";/** +import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js";import{x as ke,ad as we,r as Ot,ae as Vt,D as A,af as Ne,a0 as P,B as I,ag as Q,ah as St,I as Be,ai as Ie,aj as Et,ak as jt,al as At,am as G,y as wt,o as Re,c as tt,w as C,a as j,O as qe,b as ge,an as Ft,d as Pt,e as Ge,s as Ct,ao as Tt,t as Nt,k as Bt,S as It,f as Fe,N as Rt,V as Pe,J as Ye,L as kt}from"./index-c75f6ac5.js";import{a as Mt}from"./md5-3db5e3e8.js";/** * vee-validate v4.11.3 * (c) 2023 Abdelrahman Awad * @license MIT - */function R(e){return typeof e=="function"}function nt(e){return e==null}const Z=e=>e!==null&&!!e&&typeof e=="object"&&!Array.isArray(e);function Me(e){return Number(e)>=0}function Mt(e){return typeof e=="object"&&e!==null}function Ut(e){return e==null?e===void 0?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}function Dt(e){if(!Mt(e)||Ut(e)!=="[object Object]")return!1;if(Object.getPrototypeOf(e)===null)return!0;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function ye(e,t){return Object.keys(t).forEach(n=>{if(Dt(t[n])){e[n]||(e[n]={}),ye(e[n],t[n]);return}e[n]=t[n]}),e}function pe(e){const t=e.split(".");if(!t.length)return"";let n=String(t[0]);for(let i=1;iGt(l)&&o in l?l[o]:n,e):n}function Y(e,t,n){if(be(t)){e[De(t)]=n;return}const i=t.split(/\.|\[(\d+)\]/).filter(Boolean);let l=e;for(let o=0;oD(e,n.slice(0,d).join(".")));for(let o=l.length-1;o>=0;o--)if(Yt(l[o])){if(o===0){Ce(e,n[0]);continue}Ce(l[o-1],n[o-1])}}function U(e){return Object.keys(e)}function Qe(e,t=0){let n=null,i=[];return function(...l){return n&&clearTimeout(n),n=setTimeout(()=>{const o=e(...l);i.forEach(d=>d(o)),i=[]},t),new Promise(o=>i.push(o))}}function Kt(e,t){let n;return async function(...l){const o=e(...l);n=o;const d=await o;return o!==n||(n=void 0,t(d,l)),d}}function Xe(e){return Array.isArray(e)?e:e?[e]:[]}function ue(e,t){const n={};for(const i in e)t.includes(i)||(n[i]=e[i]);return n}function Jt(e){let t=null,n=[];return function(...i){const l=Q(()=>{if(t!==l)return;const o=e(...i);n.forEach(d=>d(o)),n=[],t=null});return t=l,new Promise(o=>n.push(o))}}const Qt=(e,t,n)=>t.slots.default?typeof e=="string"||!e?t.slots.default(n()):{default:()=>{var i,l;return(l=(i=t.slots).default)===null||l===void 0?void 0:l.call(i,n())}}:t.slots.default;function Te(e){if(lt(e))return e._value}function lt(e){return"_value"in e}function Xt(e){return e.type==="number"||e.type==="range"?Number.isNaN(e.valueAsNumber)?e.value:e.valueAsNumber:e.value}function Ze(e){if(!Ue(e))return e;const t=e.target;if(qt(t.type)&<(t))return Te(t);if(t.type==="file"&&t.files){const n=Array.from(t.files);return t.multiple?n:n[0]}if(Wt(t))return Array.from(t.options).filter(n=>n.selected&&!n.disabled).map(Te);if(at(t)){const n=Array.from(t.options).find(i=>i.selected);return n?Te(n):t.value}return Xt(t)}function Zt(e){const t={};return Object.defineProperty(t,"_$$isNormalized",{value:!0,writable:!1,enumerable:!1,configurable:!1}),e?Z(e)&&e._$$isNormalized?e:Z(e)?Object.keys(e).reduce((n,i)=>{const l=en(e[i]);return e[i]!==!1&&(n[i]=et(l)),n},t):typeof e!="string"?t:e.split("|").reduce((n,i)=>{const l=tn(i);return l.name&&(n[l.name]=et(l.params)),n},t):t}function en(e){return e===!0?[]:Array.isArray(e)||Z(e)?e:[e]}function et(e){const t=n=>typeof n=="string"&&n[0]==="@"?nn(n.slice(1)):n;return Array.isArray(e)?e.map(t):e instanceof RegExp?[e]:Object.keys(e).reduce((n,i)=>(n[i]=t(e[i]),n),{})}const tn=e=>{let t=[];const n=e.split(":")[0];return e.includes(":")&&(t=e.split(":").slice(1).join(":").split(",")),{name:n,params:t}};function nn(e){const t=n=>D(n,e)||n[e];return t.__locatorRef=e,t}const rn={generateMessage:({field:e})=>`${e} is not valid.`,bails:!0,validateOnBlur:!0,validateOnChange:!0,validateOnInput:!1,validateOnModelUpdate:!0};let an=Object.assign({},rn);const X=()=>an;async function ln(e,t,n={}){const i=n==null?void 0:n.bails,l={name:(n==null?void 0:n.name)||"{field}",rules:t,label:n==null?void 0:n.label,bails:i??!0,formData:(n==null?void 0:n.values)||{}},d=(await un(l,e)).errors;return{errors:d,valid:!d.length}}async function un(e,t){if(ee(e.rules)||rt(e.rules))return sn(t,e.rules);if(R(e.rules)||Array.isArray(e.rules)){const d={field:e.label||e.name,name:e.name,label:e.label,form:e.formData,value:t},h=Array.isArray(e.rules)?e.rules:[e.rules],f=h.length,c=[];for(let m=0;m{const f=h.path||"";return d[f]||(d[f]={errors:[],path:f}),d[f].errors.push(...h.errors),d},{});return{errors:Object.values(o)}}}}}async function sn(e,t){const i=await(ee(t)?t:ut(t)).parse(e),l=[];for(const o of i.errors)o.errors.length&&l.push(...o.errors);return{errors:l}}async function cn(e,t,n){const i=xt(n.name);if(!i)throw new Error(`No such validator '${n.name}' exists.`);const l=dn(n.params,e.formData),o={field:e.label||e.name,name:e.name,label:e.label,value:t,form:e.formData,rule:Object.assign(Object.assign({},n),{params:l})},d=await i(t,l,o);return typeof d=="string"?{error:d}:{error:d?void 0:ot(o)}}function ot(e){const t=X().generateMessage;return t?t(e):"Field is invalid"}function dn(e,t){const n=i=>Ht(i)?i(t):i;return Array.isArray(e)?e.map(n):Object.keys(e).reduce((i,l)=>(i[l]=n(e[l]),i),{})}async function fn(e,t){const i=await(ee(e)?e:ut(e)).parse(t),l={},o={};for(const d of i.errors){const h=d.errors,f=(d.path||"").replace(/\["(\d+)"\]/g,(c,m)=>`[${m}]`);l[f]={valid:!h.length,errors:h},h.length&&(o[f]=h[0])}return{valid:!i.errors.length,results:l,errors:o,values:i.value}}async function vn(e,t,n){const l=U(e).map(async c=>{var m,E,O;const b=(m=n==null?void 0:n.names)===null||m===void 0?void 0:m[c],T=await ln(D(t,c),e[c],{name:(b==null?void 0:b.name)||c,label:b==null?void 0:b.label,values:t,bails:(O=(E=n==null?void 0:n.bailsMap)===null||E===void 0?void 0:E[c])!==null&&O!==void 0?O:!0});return Object.assign(Object.assign({},T),{path:c})});let o=!0;const d=await Promise.all(l),h={},f={};for(const c of d)h[c.path]={valid:c.valid,errors:c.errors},c.valid||(o=!1,f[c.path]=c.errors[0]);return{valid:o,results:h,errors:f}}let mn=0;const oe=["bails","fieldsCount","id","multiple","type","validate"];function st(e){const t=I(e==null?void 0:e.initialValues)||{},n=I(e==null?void 0:e.validationSchema);return n&&ee(n)&&R(n.cast)?S(n.cast(t)||{}):S(t)}function hn(e){var t;const n=mn++;let i=0;const l=A(!1),o=A(!1),d=A(0),h=[],f=Be(st(e)),c=A([]),m=A({}),E=A({}),O=Jt(()=>{E.value=c.value.reduce((a,r)=>(a[pe(G(r.path))]=r,a),{})});function b(a,r){const u=w(a);if(!u){typeof a=="string"&&(m.value[pe(a)]=Xe(r));return}if(typeof a=="string"){const s=pe(a);m.value[s]&&delete m.value[s]}u.errors=Xe(r),u.valid=!u.errors.length}function T(a){U(a).forEach(r=>{b(r,a[r])})}e!=null&&e.initialErrors&&T(e.initialErrors);const W=P(()=>{const a=c.value.reduce((r,u)=>(u.errors.length&&(r[u.path]=u.errors),r),{});return Object.assign(Object.assign({},m.value),a)}),K=P(()=>U(W.value).reduce((a,r)=>{const u=W.value[r];return u!=null&&u.length&&(a[r]=u[0]),a},{})),te=P(()=>c.value.reduce((a,r)=>(a[r.path]={name:r.path||"",label:r.label||""},a),{})),ce=P(()=>c.value.reduce((a,r)=>{var u;return a[r.path]=(u=r.bails)!==null&&u!==void 0?u:!0,a},{})),ne=Object.assign({},(e==null?void 0:e.initialErrors)||{}),de=(t=e==null?void 0:e.keepValuesOnUnmount)!==null&&t!==void 0?t:!1,{initialValues:z,originalInitialValues:J,setInitialValues:fe}=yn(c,f,e),ve=pn(c,f,J,K),re=P(()=>c.value.reduce((a,r)=>{const u=D(f,r.path);return Y(a,r.path,u),a},{})),N=e==null?void 0:e.validationSchema;function H(a,r){var u,s;const p=P(()=>D(z.value,G(a))),v=E.value[G(a)];if(v){((r==null?void 0:r.type)==="checkbox"||(r==null?void 0:r.type)==="radio")&&(v.multiple=!0);const F=i++;return Array.isArray(v.id)?v.id.push(F):v.id=[v.id,F],v.fieldsCount++,v.__flags.pendingUnmount[F]=!1,v}const y=P(()=>D(f,G(a))),V=G(a),g=i++,_=Be({id:g,path:a,touched:!1,pending:!1,valid:!0,validated:!!(!((u=ne[V])===null||u===void 0)&&u.length),initialValue:p,errors:wt([]),bails:(s=r==null?void 0:r.bails)!==null&&s!==void 0?s:!1,label:r==null?void 0:r.label,type:(r==null?void 0:r.type)||"default",value:y,multiple:!1,__flags:{pendingUnmount:{[g]:!1}},fieldsCount:1,validate:r==null?void 0:r.validate,dirty:P(()=>!se(I(y),I(p)))});return c.value.push(_),E.value[V]=_,O(),K.value[V]&&!ne[V]&&Q(()=>{q(V,{mode:"silent"})}),Ne(a)&&Ie(a,F=>{O();const le=S(y.value);E.value[F]=_,Q(()=>{Y(f,F,le)})}),_}const _e=Qe(He,5),me=Qe(He,5),ae=Kt(async a=>await a==="silent"?_e():me(),(a,[r])=>{const u=U(M.errorBag.value);return[...new Set([...U(a.results),...c.value.map(p=>p.path),...u])].sort().reduce((p,v)=>{const y=v,V=w(y)||k(y),g=(a.results[y]||{errors:[]}).errors,_={errors:g,valid:!g.length};return p.results[y]=_,_.valid||(p.errors[y]=_.errors[0]),V&&m.value[y]&&delete m.value[y],V?(V.valid=_.valid,r==="silent"||r==="validated-only"&&!V.validated||b(V,_.errors),p):(b(y,g),p)},{valid:a.valid,results:{},errors:{}})});function x(a){c.value.forEach(a)}function w(a){const r=typeof a=="string"?pe(a):a;return typeof r=="string"?E.value[r]:r}function k(a){return c.value.filter(u=>a.startsWith(u.path)).reduce((u,s)=>u?s.path.length>u.path.length?s:u:s,void 0)}let B=[],L;function Oe(a){return B.push(a),L||(L=Q(()=>{[...B].sort().reverse().forEach(u=>{Je(f,u)}),B=[],L=null})),L}function ze(a){return function(u,s){return function(v){return v instanceof Event&&(v.preventDefault(),v.stopPropagation()),x(y=>y.touched=!0),l.value=!0,d.value++,ie().then(y=>{const V=S(f);if(y.valid&&typeof u=="function"){const g=S(re.value);let _=a?g:V;return y.values&&(_=y.values),u(_,{evt:v,controlledValues:g,setErrors:T,setFieldError:b,setTouched:Ee,setFieldTouched:he,setValues:Se,setFieldValue:$,resetForm:je,resetField:Le})}!y.valid&&typeof s=="function"&&s({values:V,evt:v,errors:y.errors,results:y.results})}).then(y=>(l.value=!1,y),y=>{throw l.value=!1,y})}}}const Ve=ze(!1);Ve.withControlled=ze(!0);function ct(a,r){const u=c.value.findIndex(p=>p.path===a),s=c.value[u];if(!(u===-1||!s)){if(Q(()=>{q(a,{mode:"silent",warn:!1})}),s.multiple&&s.fieldsCount&&s.fieldsCount--,Array.isArray(s.id)){const p=s.id.indexOf(r);p>=0&&s.id.splice(p,1),delete s.__flags.pendingUnmount[r]}(!s.multiple||s.fieldsCount<=0)&&(c.value.splice(u,1),$e(a),O(),delete E.value[a])}}function dt(a){return x(r=>{r.path.startsWith(a)&&U(r.__flags.pendingUnmount).forEach(u=>{r.__flags.pendingUnmount[u]=!0})})}const M={formId:n,values:f,controlledValues:re,errorBag:W,errors:K,schema:N,submitCount:d,meta:ve,isSubmitting:l,isValidating:o,fieldArrays:h,keepValuesOnUnmount:de,validateSchema:I(N)?ae:void 0,validate:ie,setFieldError:b,validateField:q,setFieldValue:$,setValues:Se,setErrors:T,setFieldTouched:he,setTouched:Ee,resetForm:je,resetField:Le,handleSubmit:Ve,stageInitialValue:pt,unsetInitialValue:$e,setFieldInitialValue:Ae,useFieldModel:ft,createPathState:H,getPathState:w,unsetPathValue:Oe,removePathState:ct,initialValues:z,getAllPathStates:()=>c.value,markForUnmount:dt,isFieldTouched:vt,isFieldDirty:mt,isFieldValid:ht};function $(a,r,u=!0){const s=S(r),p=typeof a=="string"?a:a.path;w(p)||H(p),Y(f,p,s),u&&q(p)}function Se(a,r=!0){ye(f,a),h.forEach(u=>u&&u.reset()),r&&ie()}function xe(a){const r=w(I(a))||H(a);return P({get(){return r.value},set(u){const s=I(a);$(s,u,!1),r.validated=!0,r.pending=!0,q(s).then(()=>{r.pending=!1})}})}function ft(a){return Array.isArray(a)?a.map(xe):xe(a)}function he(a,r){const u=w(a);u&&(u.touched=r)}function vt(a){var r;return!!(!((r=w(a))===null||r===void 0)&&r.touched)}function mt(a){var r;return!!(!((r=w(a))===null||r===void 0)&&r.dirty)}function ht(a){var r;return!!(!((r=w(a))===null||r===void 0)&&r.valid)}function Ee(a){if(typeof a=="boolean"){x(r=>{r.touched=a});return}U(a).forEach(r=>{he(r,!!a[r])})}function Le(a,r){var u;const s=r&&"value"in r?r.value:D(z.value,a);Ae(a,S(s)),$(a,s,!1),he(a,(u=r==null?void 0:r.touched)!==null&&u!==void 0?u:!1),b(a,(r==null?void 0:r.errors)||[])}function je(a){let r=a!=null&&a.values?a.values:J.value;r=ee(N)&&R(N.cast)?N.cast(r):r,fe(r),x(u=>{var s;u.validated=!1,u.touched=((s=a==null?void 0:a.touched)===null||s===void 0?void 0:s[u.path])||!1,$(u.path,D(r,u.path),!1),b(u.path,void 0)}),Se(r,!1),T((a==null?void 0:a.errors)||{}),d.value=(a==null?void 0:a.submitCount)||0,Q(()=>{ie({mode:"silent"})})}async function ie(a){const r=(a==null?void 0:a.mode)||"force";if(r==="force"&&x(v=>v.validated=!0),M.validateSchema)return M.validateSchema(r);o.value=!0;const u=await Promise.all(c.value.map(v=>v.validate?v.validate(a).then(y=>({key:v.path,valid:y.valid,errors:y.errors})):Promise.resolve({key:v.path,valid:!0,errors:[]})));o.value=!1;const s={},p={};for(const v of u)s[v.key]={valid:v.valid,errors:v.errors},v.errors.length&&(p[v.key]=v.errors[0]);return{valid:u.every(v=>v.valid),results:s,errors:p}}async function q(a,r){var u;const s=w(a);if(s&&(s.validated=!0),N){const{results:p}=await ae((r==null?void 0:r.mode)||"validated-only");return p[a]||{errors:[],valid:!0}}return s!=null&&s.validate?s.validate(r):(!s&&(u=r==null?void 0:r.warn),Promise.resolve({errors:[],valid:!0}))}function $e(a){Je(z.value,a)}function pt(a,r,u=!1){Ae(a,r),Y(f,a,r),u&&!(e!=null&&e.initialValues)&&Y(J.value,a,S(r))}function Ae(a,r){Y(z.value,a,S(r))}async function He(){const a=I(N);if(!a)return{valid:!0,results:{},errors:{}};o.value=!0;const r=rt(a)||ee(a)?await fn(a,f):await vn(a,f,{names:te.value,bailsMap:ce.value});return o.value=!1,r}const yt=Ve((a,{evt:r})=>{it(r)&&r.target.submit()});St(()=>{if(e!=null&&e.initialErrors&&T(e.initialErrors),e!=null&&e.initialTouched&&Ee(e.initialTouched),e!=null&&e.validateOnMount){ie();return}M.validateSchema&&M.validateSchema("silent")}),Ne(N)&&Ie(N,()=>{var a;(a=M.validateSchema)===null||a===void 0||a.call(M,"validated-only")}),Et(Lt,M);function gt(a,r){const u=w(G(a))||H(a),s=()=>R(r)?r(ue(u,oe)):r||{};function p(){var V;u.touched=!0,((V=s().validateOnBlur)!==null&&V!==void 0?V:X().validateOnBlur)&&q(u.path)}function v(V){var g;const _=(g=s().validateOnModelUpdate)!==null&&g!==void 0?g:X().validateOnModelUpdate;$(u.path,V,_)}return P(()=>{if(R(r)){const _=r(u),F=_.model||"modelValue";return Object.assign({onBlur:p,[F]:u.value,[`onUpdate:${F}`]:v},_.props||{})}const V=(r==null?void 0:r.model)||"modelValue",g={onBlur:p,[V]:u.value,[`onUpdate:${V}`]:v};return r!=null&&r.mapProps?Object.assign(Object.assign({},g),r.mapProps(ue(u,oe))):g})}function bt(a,r){const u=w(G(a))||H(a),s=()=>R(r)?r(ue(u,oe)):r||{};function p(){var g;u.touched=!0,((g=s().validateOnBlur)!==null&&g!==void 0?g:X().validateOnBlur)&&q(u.path)}function v(g){var _;const F=Ze(g),le=(_=s().validateOnInput)!==null&&_!==void 0?_:X().validateOnInput;$(u.path,F,le)}function y(g){var _;const F=Ze(g),le=(_=s().validateOnChange)!==null&&_!==void 0?_:X().validateOnChange;$(u.path,F,le)}return P(()=>{const g={value:u.value,onChange:y,onInput:v,onBlur:p};return R(r)?Object.assign(Object.assign({},g),r(ue(u,oe)).attrs||{}):r!=null&&r.mapAttrs?Object.assign(Object.assign({},g),r.mapAttrs(ue(u,oe))):g})}return Object.assign(Object.assign({},M),{values:jt(f),handleReset:()=>je(),submitForm:yt,defineComponentBinds:gt,defineInputBinds:bt})}function pn(e,t,n,i){const l={touched:"some",pending:"some",valid:"every"},o=P(()=>!se(t,I(n)));function d(){const f=e.value;return U(l).reduce((c,m)=>{const E=l[m];return c[m]=f[E](O=>O[m]),c},{})}const h=Be(d());return At(()=>{const f=d();h.touched=f.touched,h.valid=f.valid,h.pending=f.pending}),P(()=>Object.assign(Object.assign({initialValues:I(n)},h),{valid:h.valid&&!U(i.value).length,dirty:o.value}))}function yn(e,t,n){const i=st(n),l=n==null?void 0:n.initialValues,o=A(i),d=A(S(i));function h(f,c=!1){o.value=ye(S(o.value)||{},S(f)),d.value=ye(S(d.value)||{},S(f)),c&&e.value.forEach(m=>{if(m.touched)return;const O=D(o.value,m.path);Y(t,m.path,S(O))})}return Ne(l)&&Ie(l,f=>{f&&h(f,!0)},{deep:!0}),{initialValues:o,originalInitialValues:d,setInitialValues:h}}const gn=ke({name:"Form",inheritAttrs:!1,props:{as:{type:String,default:"form"},validationSchema:{type:Object,default:void 0},initialValues:{type:Object,default:void 0},initialErrors:{type:Object,default:void 0},initialTouched:{type:Object,default:void 0},validateOnMount:{type:Boolean,default:!1},onSubmit:{type:Function,default:void 0},onInvalidSubmit:{type:Function,default:void 0},keepValues:{type:Boolean,default:!1}},setup(e,t){const n=we(e,"initialValues"),i=we(e,"validationSchema"),l=we(e,"keepValues"),{errors:o,errorBag:d,values:h,meta:f,isSubmitting:c,isValidating:m,submitCount:E,controlledValues:O,validate:b,validateField:T,handleReset:W,resetForm:K,handleSubmit:te,setErrors:ce,setFieldError:ne,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetField:ve}=hn({validationSchema:i.value?i:void 0,initialValues:n,initialErrors:e.initialErrors,initialTouched:e.initialTouched,validateOnMount:e.validateOnMount,keepValuesOnUnmount:l}),re=te((k,{evt:B})=>{it(B)&&B.target.submit()},e.onInvalidSubmit),N=e.onSubmit?te(e.onSubmit,e.onInvalidSubmit):re;function H(k){Ue(k)&&k.preventDefault(),W(),typeof t.attrs.onReset=="function"&&t.attrs.onReset()}function _e(k,B){return te(typeof k=="function"&&!B?k:B,e.onInvalidSubmit)(k)}function me(){return S(h)}function ae(){return S(f.value)}function x(){return S(o.value)}function w(){return{meta:f.value,errors:o.value,errorBag:d.value,values:h,isSubmitting:c.value,isValidating:m.value,submitCount:E.value,controlledValues:O.value,validate:b,validateField:T,handleSubmit:_e,handleReset:W,submitForm:re,setErrors:ce,setFieldError:ne,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetForm:K,resetField:ve,getValues:me,getMeta:ae,getErrors:x}}return t.expose({setFieldError:ne,setErrors:ce,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetForm:K,validate:b,validateField:T,resetField:ve,getValues:me,getMeta:ae,getErrors:x}),function(){const B=e.as==="form"?e.as:Ot(e.as),L=Qt(B,t,w);if(!e.as)return L;const Oe=e.as==="form"?{novalidate:!0}:{};return Vt(B,Object.assign(Object.assign(Object.assign({},Oe),t.attrs),{onSubmit:N,onReset:H}),L)}}}),bn=gn,_n={class:"d-sm-flex align-center mt-2 mb-7 mb-sm-0"},On={key:0,class:"mt-2"},Vn=ke({__name:"AuthLogin",setup(e){const t=A(!1),n=A(!1),i=A(!1),l=A(""),o=A(""),d=A([c=>!!c||"需要填写:密码",c=>c&&c.length<=10||"Password must be less than 10 characters"]),h=A([c=>!!c||"需要填写:用户名",c=>/.+@.+\..+/.test(c)||"E-mail must be valid"]);function f(c,{setErrors:m}){return It().login(o.value,l.value).catch(O=>m({apiError:O}))}return(c,m)=>(Re(),tt(I(bn),{onSubmit:f,class:"mt-7 loginForm"},{default:C(({errors:E,isSubmitting:O})=>[j(qe,{modelValue:o.value,"onUpdate:modelValue":m[0]||(m[0]=b=>o.value=b),rules:h.value,label:"用户名",class:"mt-4 mb-8",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),j(qe,{modelValue:l.value,"onUpdate:modelValue":m[1]||(m[1]=b=>l.value=b),rules:d.value,label:"密码",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":m[2]||(m[2]=b=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),ge("div",_n,[j(Ft,{modelValue:t.value,"onUpdate:modelValue":m[3]||(m[3]=b=>t.value=b),rules:[b=>!!b||"You must agree to continue!"],label:"记住密码",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"])]),j(Pt,{color:"secondary",loading:O,block:"",class:"mt-2",variant:"flat",size:"large",disabled:n.value,type:"submit"},{default:C(()=>[Ge(" 登录")]),_:2},1032,["loading","disabled"]),E.apiError?(Re(),Ct("div",On,[j(Tt,{color:"error"},{default:C(()=>[Ge(Bt(E.apiError),1)]),_:2},1024)])):Nt("",!0)]),_:1}))}});const Sn={class:"pa-7 pa-sm-12"},En=ge("h2",{class:"text-secondary text-h2 mt-8"},"欢迎回来。",-1),jn=ge("h4",{class:"text-disabled text-h4 mt-3"},"输入凭证以继续。",-1),Pn=ke({__name:"LoginPage",setup(e){return(t,n)=>(Re(),tt(Pe,{class:"h-100vh","no-gutters":""},{default:C(()=>[j(Fe,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:C(()=>[j(Rt,null,{default:C(()=>[ge("div",Sn,[j(Pe,{justify:"center"},{default:C(()=>[j(Fe,{cols:"12",lg:"10",xl:"6",md:"7"},{default:C(()=>[j(Ye,{elevation:"0",class:"loginBox"},{default:C(()=>[j(Ye,{variant:"outlined"},{default:C(()=>[j(kt,{class:"pa-9"},{default:C(()=>[j(Pe,null,{default:C(()=>[j(Fe,{cols:"12",class:"text-center"},{default:C(()=>[j(_t),En,jn]),_:1})]),_:1}),j(Vn)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{Pn as default}; + */function R(e){return typeof e=="function"}function nt(e){return e==null}const Z=e=>e!==null&&!!e&&typeof e=="object"&&!Array.isArray(e);function Me(e){return Number(e)>=0}function Ut(e){return typeof e=="object"&&e!==null}function Dt(e){return e==null?e===void 0?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}function zt(e){if(!Ut(e)||Dt(e)!=="[object Object]")return!1;if(Object.getPrototypeOf(e)===null)return!0;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function ye(e,t){return Object.keys(t).forEach(n=>{if(zt(t[n])){e[n]||(e[n]={}),ye(e[n],t[n]);return}e[n]=t[n]}),e}function pe(e){const t=e.split(".");if(!t.length)return"";let n=String(t[0]);for(let i=1;iYt(l)&&o in l?l[o]:n,e):n}function Y(e,t,n){if(be(t)){e[De(t)]=n;return}const i=t.split(/\.|\[(\d+)\]/).filter(Boolean);let l=e;for(let o=0;oD(e,n.slice(0,c).join(".")));for(let o=l.length-1;o>=0;o--)if(Wt(l[o])){if(o===0){Ce(e,n[0]);continue}Ce(l[o-1],n[o-1])}}function U(e){return Object.keys(e)}function Qe(e,t=0){let n=null,i=[];return function(...l){return n&&clearTimeout(n),n=setTimeout(()=>{const o=e(...l);i.forEach(c=>c(o)),i=[]},t),new Promise(o=>i.push(o))}}function Jt(e,t){let n;return async function(...l){const o=e(...l);n=o;const c=await o;return o!==n||(n=void 0,t(c,l)),c}}function Xe(e){return Array.isArray(e)?e:e?[e]:[]}function ue(e,t){const n={};for(const i in e)t.includes(i)||(n[i]=e[i]);return n}function Qt(e){let t=null,n=[];return function(...i){const l=Q(()=>{if(t!==l)return;const o=e(...i);n.forEach(c=>c(o)),n=[],t=null});return t=l,new Promise(o=>n.push(o))}}const Xt=(e,t,n)=>t.slots.default?typeof e=="string"||!e?t.slots.default(n()):{default:()=>{var i,l;return(l=(i=t.slots).default)===null||l===void 0?void 0:l.call(i,n())}}:t.slots.default;function Te(e){if(lt(e))return e._value}function lt(e){return"_value"in e}function Zt(e){return e.type==="number"||e.type==="range"?Number.isNaN(e.valueAsNumber)?e.value:e.valueAsNumber:e.value}function Ze(e){if(!Ue(e))return e;const t=e.target;if(Gt(t.type)&<(t))return Te(t);if(t.type==="file"&&t.files){const n=Array.from(t.files);return t.multiple?n:n[0]}if(Kt(t))return Array.from(t.options).filter(n=>n.selected&&!n.disabled).map(Te);if(at(t)){const n=Array.from(t.options).find(i=>i.selected);return n?Te(n):t.value}return Zt(t)}function en(e){const t={};return Object.defineProperty(t,"_$$isNormalized",{value:!0,writable:!1,enumerable:!1,configurable:!1}),e?Z(e)&&e._$$isNormalized?e:Z(e)?Object.keys(e).reduce((n,i)=>{const l=tn(e[i]);return e[i]!==!1&&(n[i]=et(l)),n},t):typeof e!="string"?t:e.split("|").reduce((n,i)=>{const l=nn(i);return l.name&&(n[l.name]=et(l.params)),n},t):t}function tn(e){return e===!0?[]:Array.isArray(e)||Z(e)?e:[e]}function et(e){const t=n=>typeof n=="string"&&n[0]==="@"?rn(n.slice(1)):n;return Array.isArray(e)?e.map(t):e instanceof RegExp?[e]:Object.keys(e).reduce((n,i)=>(n[i]=t(e[i]),n),{})}const nn=e=>{let t=[];const n=e.split(":")[0];return e.includes(":")&&(t=e.split(":").slice(1).join(":").split(",")),{name:n,params:t}};function rn(e){const t=n=>D(n,e)||n[e];return t.__locatorRef=e,t}const an={generateMessage:({field:e})=>`${e} is not valid.`,bails:!0,validateOnBlur:!0,validateOnChange:!0,validateOnInput:!1,validateOnModelUpdate:!0};let ln=Object.assign({},an);const X=()=>ln;async function un(e,t,n={}){const i=n==null?void 0:n.bails,l={name:(n==null?void 0:n.name)||"{field}",rules:t,label:n==null?void 0:n.label,bails:i??!0,formData:(n==null?void 0:n.values)||{}},c=(await on(l,e)).errors;return{errors:c,valid:!c.length}}async function on(e,t){if(ee(e.rules)||rt(e.rules))return cn(t,e.rules);if(R(e.rules)||Array.isArray(e.rules)){const c={field:e.label||e.name,name:e.name,label:e.label,form:e.formData,value:t},h=Array.isArray(e.rules)?e.rules:[e.rules],f=h.length,d=[];for(let m=0;m{const f=h.path||"";return c[f]||(c[f]={errors:[],path:f}),c[f].errors.push(...h.errors),c},{});return{errors:Object.values(o)}}}}}async function cn(e,t){const i=await(ee(t)?t:ut(t)).parse(e),l=[];for(const o of i.errors)o.errors.length&&l.push(...o.errors);return{errors:l}}async function dn(e,t,n){const i=Lt(n.name);if(!i)throw new Error(`No such validator '${n.name}' exists.`);const l=fn(n.params,e.formData),o={field:e.label||e.name,name:e.name,label:e.label,value:t,form:e.formData,rule:Object.assign(Object.assign({},n),{params:l})},c=await i(t,l,o);return typeof c=="string"?{error:c}:{error:c?void 0:ot(o)}}function ot(e){const t=X().generateMessage;return t?t(e):"Field is invalid"}function fn(e,t){const n=i=>qt(i)?i(t):i;return Array.isArray(e)?e.map(n):Object.keys(e).reduce((i,l)=>(i[l]=n(e[l]),i),{})}async function vn(e,t){const i=await(ee(e)?e:ut(e)).parse(t),l={},o={};for(const c of i.errors){const h=c.errors,f=(c.path||"").replace(/\["(\d+)"\]/g,(d,m)=>`[${m}]`);l[f]={valid:!h.length,errors:h},h.length&&(o[f]=h[0])}return{valid:!i.errors.length,results:l,errors:o,values:i.value}}async function mn(e,t,n){const l=U(e).map(async d=>{var m,E,O;const b=(m=n==null?void 0:n.names)===null||m===void 0?void 0:m[d],T=await un(D(t,d),e[d],{name:(b==null?void 0:b.name)||d,label:b==null?void 0:b.label,values:t,bails:(O=(E=n==null?void 0:n.bailsMap)===null||E===void 0?void 0:E[d])!==null&&O!==void 0?O:!0});return Object.assign(Object.assign({},T),{path:d})});let o=!0;const c=await Promise.all(l),h={},f={};for(const d of c)h[d.path]={valid:d.valid,errors:d.errors},d.valid||(o=!1,f[d.path]=d.errors[0]);return{valid:o,results:h,errors:f}}let hn=0;const oe=["bails","fieldsCount","id","multiple","type","validate"];function st(e){const t=I(e==null?void 0:e.initialValues)||{},n=I(e==null?void 0:e.validationSchema);return n&&ee(n)&&R(n.cast)?S(n.cast(t)||{}):S(t)}function pn(e){var t;const n=hn++;let i=0;const l=A(!1),o=A(!1),c=A(0),h=[],f=Ne(st(e)),d=A([]),m=A({}),E=A({}),O=Qt(()=>{E.value=d.value.reduce((a,r)=>(a[pe(G(r.path))]=r,a),{})});function b(a,r){const u=w(a);if(!u){typeof a=="string"&&(m.value[pe(a)]=Xe(r));return}if(typeof a=="string"){const s=pe(a);m.value[s]&&delete m.value[s]}u.errors=Xe(r),u.valid=!u.errors.length}function T(a){U(a).forEach(r=>{b(r,a[r])})}e!=null&&e.initialErrors&&T(e.initialErrors);const W=P(()=>{const a=d.value.reduce((r,u)=>(u.errors.length&&(r[u.path]=u.errors),r),{});return Object.assign(Object.assign({},m.value),a)}),K=P(()=>U(W.value).reduce((a,r)=>{const u=W.value[r];return u!=null&&u.length&&(a[r]=u[0]),a},{})),te=P(()=>d.value.reduce((a,r)=>(a[r.path]={name:r.path||"",label:r.label||""},a),{})),ce=P(()=>d.value.reduce((a,r)=>{var u;return a[r.path]=(u=r.bails)!==null&&u!==void 0?u:!0,a},{})),ne=Object.assign({},(e==null?void 0:e.initialErrors)||{}),de=(t=e==null?void 0:e.keepValuesOnUnmount)!==null&&t!==void 0?t:!1,{initialValues:z,originalInitialValues:J,setInitialValues:fe}=gn(d,f,e),ve=yn(d,f,J,K),re=P(()=>d.value.reduce((a,r)=>{const u=D(f,r.path);return Y(a,r.path,u),a},{})),B=e==null?void 0:e.validationSchema;function H(a,r){var u,s;const p=P(()=>D(z.value,G(a))),v=E.value[G(a)];if(v){((r==null?void 0:r.type)==="checkbox"||(r==null?void 0:r.type)==="radio")&&(v.multiple=!0);const F=i++;return Array.isArray(v.id)?v.id.push(F):v.id=[v.id,F],v.fieldsCount++,v.__flags.pendingUnmount[F]=!1,v}const y=P(()=>D(f,G(a))),V=G(a),g=i++,_=Ne({id:g,path:a,touched:!1,pending:!1,valid:!0,validated:!!(!((u=ne[V])===null||u===void 0)&&u.length),initialValue:p,errors:wt([]),bails:(s=r==null?void 0:r.bails)!==null&&s!==void 0?s:!1,label:r==null?void 0:r.label,type:(r==null?void 0:r.type)||"default",value:y,multiple:!1,__flags:{pendingUnmount:{[g]:!1}},fieldsCount:1,validate:r==null?void 0:r.validate,dirty:P(()=>!se(I(y),I(p)))});return d.value.push(_),E.value[V]=_,O(),K.value[V]&&!ne[V]&&Q(()=>{q(V,{mode:"silent"})}),Be(a)&&Ie(a,F=>{O();const le=S(y.value);E.value[F]=_,Q(()=>{Y(f,F,le)})}),_}const _e=Qe(He,5),me=Qe(He,5),ae=Jt(async a=>await a==="silent"?_e():me(),(a,[r])=>{const u=U(M.errorBag.value);return[...new Set([...U(a.results),...d.value.map(p=>p.path),...u])].sort().reduce((p,v)=>{const y=v,V=w(y)||k(y),g=(a.results[y]||{errors:[]}).errors,_={errors:g,valid:!g.length};return p.results[y]=_,_.valid||(p.errors[y]=_.errors[0]),V&&m.value[y]&&delete m.value[y],V?(V.valid=_.valid,r==="silent"||r==="validated-only"&&!V.validated||b(V,_.errors),p):(b(y,g),p)},{valid:a.valid,results:{},errors:{}})});function x(a){d.value.forEach(a)}function w(a){const r=typeof a=="string"?pe(a):a;return typeof r=="string"?E.value[r]:r}function k(a){return d.value.filter(u=>a.startsWith(u.path)).reduce((u,s)=>u?s.path.length>u.path.length?s:u:s,void 0)}let N=[],L;function Oe(a){return N.push(a),L||(L=Q(()=>{[...N].sort().reverse().forEach(u=>{Je(f,u)}),N=[],L=null})),L}function ze(a){return function(u,s){return function(v){return v instanceof Event&&(v.preventDefault(),v.stopPropagation()),x(y=>y.touched=!0),l.value=!0,c.value++,ie().then(y=>{const V=S(f);if(y.valid&&typeof u=="function"){const g=S(re.value);let _=a?g:V;return y.values&&(_=y.values),u(_,{evt:v,controlledValues:g,setErrors:T,setFieldError:b,setTouched:Ee,setFieldTouched:he,setValues:Se,setFieldValue:$,resetForm:je,resetField:Le})}!y.valid&&typeof s=="function"&&s({values:V,evt:v,errors:y.errors,results:y.results})}).then(y=>(l.value=!1,y),y=>{throw l.value=!1,y})}}}const Ve=ze(!1);Ve.withControlled=ze(!0);function ct(a,r){const u=d.value.findIndex(p=>p.path===a),s=d.value[u];if(!(u===-1||!s)){if(Q(()=>{q(a,{mode:"silent",warn:!1})}),s.multiple&&s.fieldsCount&&s.fieldsCount--,Array.isArray(s.id)){const p=s.id.indexOf(r);p>=0&&s.id.splice(p,1),delete s.__flags.pendingUnmount[r]}(!s.multiple||s.fieldsCount<=0)&&(d.value.splice(u,1),$e(a),O(),delete E.value[a])}}function dt(a){return x(r=>{r.path.startsWith(a)&&U(r.__flags.pendingUnmount).forEach(u=>{r.__flags.pendingUnmount[u]=!0})})}const M={formId:n,values:f,controlledValues:re,errorBag:W,errors:K,schema:B,submitCount:c,meta:ve,isSubmitting:l,isValidating:o,fieldArrays:h,keepValuesOnUnmount:de,validateSchema:I(B)?ae:void 0,validate:ie,setFieldError:b,validateField:q,setFieldValue:$,setValues:Se,setErrors:T,setFieldTouched:he,setTouched:Ee,resetForm:je,resetField:Le,handleSubmit:Ve,stageInitialValue:pt,unsetInitialValue:$e,setFieldInitialValue:Ae,useFieldModel:ft,createPathState:H,getPathState:w,unsetPathValue:Oe,removePathState:ct,initialValues:z,getAllPathStates:()=>d.value,markForUnmount:dt,isFieldTouched:vt,isFieldDirty:mt,isFieldValid:ht};function $(a,r,u=!0){const s=S(r),p=typeof a=="string"?a:a.path;w(p)||H(p),Y(f,p,s),u&&q(p)}function Se(a,r=!0){ye(f,a),h.forEach(u=>u&&u.reset()),r&&ie()}function xe(a){const r=w(I(a))||H(a);return P({get(){return r.value},set(u){const s=I(a);$(s,u,!1),r.validated=!0,r.pending=!0,q(s).then(()=>{r.pending=!1})}})}function ft(a){return Array.isArray(a)?a.map(xe):xe(a)}function he(a,r){const u=w(a);u&&(u.touched=r)}function vt(a){var r;return!!(!((r=w(a))===null||r===void 0)&&r.touched)}function mt(a){var r;return!!(!((r=w(a))===null||r===void 0)&&r.dirty)}function ht(a){var r;return!!(!((r=w(a))===null||r===void 0)&&r.valid)}function Ee(a){if(typeof a=="boolean"){x(r=>{r.touched=a});return}U(a).forEach(r=>{he(r,!!a[r])})}function Le(a,r){var u;const s=r&&"value"in r?r.value:D(z.value,a);Ae(a,S(s)),$(a,s,!1),he(a,(u=r==null?void 0:r.touched)!==null&&u!==void 0?u:!1),b(a,(r==null?void 0:r.errors)||[])}function je(a){let r=a!=null&&a.values?a.values:J.value;r=ee(B)&&R(B.cast)?B.cast(r):r,fe(r),x(u=>{var s;u.validated=!1,u.touched=((s=a==null?void 0:a.touched)===null||s===void 0?void 0:s[u.path])||!1,$(u.path,D(r,u.path),!1),b(u.path,void 0)}),Se(r,!1),T((a==null?void 0:a.errors)||{}),c.value=(a==null?void 0:a.submitCount)||0,Q(()=>{ie({mode:"silent"})})}async function ie(a){const r=(a==null?void 0:a.mode)||"force";if(r==="force"&&x(v=>v.validated=!0),M.validateSchema)return M.validateSchema(r);o.value=!0;const u=await Promise.all(d.value.map(v=>v.validate?v.validate(a).then(y=>({key:v.path,valid:y.valid,errors:y.errors})):Promise.resolve({key:v.path,valid:!0,errors:[]})));o.value=!1;const s={},p={};for(const v of u)s[v.key]={valid:v.valid,errors:v.errors},v.errors.length&&(p[v.key]=v.errors[0]);return{valid:u.every(v=>v.valid),results:s,errors:p}}async function q(a,r){var u;const s=w(a);if(s&&(s.validated=!0),B){const{results:p}=await ae((r==null?void 0:r.mode)||"validated-only");return p[a]||{errors:[],valid:!0}}return s!=null&&s.validate?s.validate(r):(!s&&(u=r==null?void 0:r.warn),Promise.resolve({errors:[],valid:!0}))}function $e(a){Je(z.value,a)}function pt(a,r,u=!1){Ae(a,r),Y(f,a,r),u&&!(e!=null&&e.initialValues)&&Y(J.value,a,S(r))}function Ae(a,r){Y(z.value,a,S(r))}async function He(){const a=I(B);if(!a)return{valid:!0,results:{},errors:{}};o.value=!0;const r=rt(a)||ee(a)?await vn(a,f):await mn(a,f,{names:te.value,bailsMap:ce.value});return o.value=!1,r}const yt=Ve((a,{evt:r})=>{it(r)&&r.target.submit()});St(()=>{if(e!=null&&e.initialErrors&&T(e.initialErrors),e!=null&&e.initialTouched&&Ee(e.initialTouched),e!=null&&e.validateOnMount){ie();return}M.validateSchema&&M.validateSchema("silent")}),Be(B)&&Ie(B,()=>{var a;(a=M.validateSchema)===null||a===void 0||a.call(M,"validated-only")}),Et($t,M);function gt(a,r){const u=w(G(a))||H(a),s=()=>R(r)?r(ue(u,oe)):r||{};function p(){var V;u.touched=!0,((V=s().validateOnBlur)!==null&&V!==void 0?V:X().validateOnBlur)&&q(u.path)}function v(V){var g;const _=(g=s().validateOnModelUpdate)!==null&&g!==void 0?g:X().validateOnModelUpdate;$(u.path,V,_)}return P(()=>{if(R(r)){const _=r(u),F=_.model||"modelValue";return Object.assign({onBlur:p,[F]:u.value,[`onUpdate:${F}`]:v},_.props||{})}const V=(r==null?void 0:r.model)||"modelValue",g={onBlur:p,[V]:u.value,[`onUpdate:${V}`]:v};return r!=null&&r.mapProps?Object.assign(Object.assign({},g),r.mapProps(ue(u,oe))):g})}function bt(a,r){const u=w(G(a))||H(a),s=()=>R(r)?r(ue(u,oe)):r||{};function p(){var g;u.touched=!0,((g=s().validateOnBlur)!==null&&g!==void 0?g:X().validateOnBlur)&&q(u.path)}function v(g){var _;const F=Ze(g),le=(_=s().validateOnInput)!==null&&_!==void 0?_:X().validateOnInput;$(u.path,F,le)}function y(g){var _;const F=Ze(g),le=(_=s().validateOnChange)!==null&&_!==void 0?_:X().validateOnChange;$(u.path,F,le)}return P(()=>{const g={value:u.value,onChange:y,onInput:v,onBlur:p};return R(r)?Object.assign(Object.assign({},g),r(ue(u,oe)).attrs||{}):r!=null&&r.mapAttrs?Object.assign(Object.assign({},g),r.mapAttrs(ue(u,oe))):g})}return Object.assign(Object.assign({},M),{values:jt(f),handleReset:()=>je(),submitForm:yt,defineComponentBinds:gt,defineInputBinds:bt})}function yn(e,t,n,i){const l={touched:"some",pending:"some",valid:"every"},o=P(()=>!se(t,I(n)));function c(){const f=e.value;return U(l).reduce((d,m)=>{const E=l[m];return d[m]=f[E](O=>O[m]),d},{})}const h=Ne(c());return At(()=>{const f=c();h.touched=f.touched,h.valid=f.valid,h.pending=f.pending}),P(()=>Object.assign(Object.assign({initialValues:I(n)},h),{valid:h.valid&&!U(i.value).length,dirty:o.value}))}function gn(e,t,n){const i=st(n),l=n==null?void 0:n.initialValues,o=A(i),c=A(S(i));function h(f,d=!1){o.value=ye(S(o.value)||{},S(f)),c.value=ye(S(c.value)||{},S(f)),d&&e.value.forEach(m=>{if(m.touched)return;const O=D(o.value,m.path);Y(t,m.path,S(O))})}return Be(l)&&Ie(l,f=>{f&&h(f,!0)},{deep:!0}),{initialValues:o,originalInitialValues:c,setInitialValues:h}}const bn=ke({name:"Form",inheritAttrs:!1,props:{as:{type:String,default:"form"},validationSchema:{type:Object,default:void 0},initialValues:{type:Object,default:void 0},initialErrors:{type:Object,default:void 0},initialTouched:{type:Object,default:void 0},validateOnMount:{type:Boolean,default:!1},onSubmit:{type:Function,default:void 0},onInvalidSubmit:{type:Function,default:void 0},keepValues:{type:Boolean,default:!1}},setup(e,t){const n=we(e,"initialValues"),i=we(e,"validationSchema"),l=we(e,"keepValues"),{errors:o,errorBag:c,values:h,meta:f,isSubmitting:d,isValidating:m,submitCount:E,controlledValues:O,validate:b,validateField:T,handleReset:W,resetForm:K,handleSubmit:te,setErrors:ce,setFieldError:ne,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetField:ve}=pn({validationSchema:i.value?i:void 0,initialValues:n,initialErrors:e.initialErrors,initialTouched:e.initialTouched,validateOnMount:e.validateOnMount,keepValuesOnUnmount:l}),re=te((k,{evt:N})=>{it(N)&&N.target.submit()},e.onInvalidSubmit),B=e.onSubmit?te(e.onSubmit,e.onInvalidSubmit):re;function H(k){Ue(k)&&k.preventDefault(),W(),typeof t.attrs.onReset=="function"&&t.attrs.onReset()}function _e(k,N){return te(typeof k=="function"&&!N?k:N,e.onInvalidSubmit)(k)}function me(){return S(h)}function ae(){return S(f.value)}function x(){return S(o.value)}function w(){return{meta:f.value,errors:o.value,errorBag:c.value,values:h,isSubmitting:d.value,isValidating:m.value,submitCount:E.value,controlledValues:O.value,validate:b,validateField:T,handleSubmit:_e,handleReset:W,submitForm:re,setErrors:ce,setFieldError:ne,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetForm:K,resetField:ve,getValues:me,getMeta:ae,getErrors:x}}return t.expose({setFieldError:ne,setErrors:ce,setFieldValue:de,setValues:z,setFieldTouched:J,setTouched:fe,resetForm:K,validate:b,validateField:T,resetField:ve,getValues:me,getMeta:ae,getErrors:x}),function(){const N=e.as==="form"?e.as:Ot(e.as),L=Xt(N,t,w);if(!e.as)return L;const Oe=e.as==="form"?{novalidate:!0}:{};return Vt(N,Object.assign(Object.assign(Object.assign({},Oe),t.attrs),{onSubmit:B,onReset:H}),L)}}}),_n=bn,On={class:"d-sm-flex align-center mt-2 mb-7 mb-sm-0"},Vn={key:0,class:"mt-2"},Sn=ke({__name:"AuthLogin",setup(e){const t=A(!1),n=A(!1),i=A(!1),l=A(""),o=A(""),c=A([d=>!!d||"需要填写:密码"]),h=A([d=>!!d||"需要填写:用户名"]);function f(d,{setErrors:m}){return l.value!=""&&(l.value=Mt(l.value)),It().login(o.value,l.value).catch(O=>m({apiError:O}))}return(d,m)=>(Re(),tt(I(_n),{onSubmit:f,class:"mt-7 loginForm"},{default:C(({errors:E,isSubmitting:O})=>[j(qe,{modelValue:o.value,"onUpdate:modelValue":m[0]||(m[0]=b=>o.value=b),rules:h.value,label:"用户名",class:"mt-4 mb-8",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),j(qe,{modelValue:l.value,"onUpdate:modelValue":m[1]||(m[1]=b=>l.value=b),rules:c.value,label:"密码",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":m[2]||(m[2]=b=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),ge("div",On,[j(Ft,{modelValue:t.value,"onUpdate:modelValue":m[3]||(m[3]=b=>t.value=b),rules:[b=>!!b||"You must agree to continue!"],label:"记住密码",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"])]),j(Pt,{color:"secondary",loading:O,block:"",class:"mt-2",variant:"flat",size:"large",disabled:n.value,type:"submit"},{default:C(()=>[Ge(" 登录")]),_:2},1032,["loading","disabled"]),E.apiError?(Re(),Ct("div",Vn,[j(Tt,{color:"error"},{default:C(()=>[Ge(Nt(E.apiError),1)]),_:2},1024)])):Bt("",!0)]),_:1}))}});const En={class:"pa-7 pa-sm-12"},jn=ge("h2",{class:"text-secondary text-h2 mt-8"},"欢迎回来。",-1),An=ge("h4",{class:"text-disabled text-h4 mt-3"},"输入凭证以继续。",-1),Tn=ke({__name:"LoginPage",setup(e){return(t,n)=>(Re(),tt(Pe,{class:"h-100vh","no-gutters":""},{default:C(()=>[j(Fe,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:C(()=>[j(Rt,null,{default:C(()=>[ge("div",En,[j(Pe,{justify:"center"},{default:C(()=>[j(Fe,{cols:"12",lg:"10",xl:"6",md:"7"},{default:C(()=>[j(Ye,{elevation:"0",class:"loginBox"},{default:C(()=>[j(Ye,{variant:"outlined"},{default:C(()=>[j(kt,{class:"pa-9"},{default:C(()=>[j(Pe,null,{default:C(()=>[j(Fe,{cols:"12",class:"text-center"},{default:C(()=>[j(_t),jn,An]),_:1})]),_:1}),j(Sn)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{Tn as default}; diff --git a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js similarity index 77% rename from addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js rename to addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js index d494cca1a..c799d1b26 100644 --- a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js +++ b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js @@ -1 +1 @@ -import{an as _,x as d,D as n,o as c,s as m,a as p,w as f,ao as r,b as a,ap as o,B as t,aq as h}from"./index-a328f13b.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[p(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:f(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; +import{at as _,x as d,D as n,o as c,s as m,a as f,w as p,au as r,b as a,av as o,B as t,aw as h}from"./index-c75f6ac5.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[f(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:p(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/addons/dashboard/dist/assets/MaterialIcons-e9dc1d9a.js b/addons/dashboard/dist/assets/MaterialIcons-dc137c6e.js similarity index 70% rename from addons/dashboard/dist/assets/MaterialIcons-e9dc1d9a.js rename to addons/dashboard/dist/assets/MaterialIcons-dc137c6e.js index 874b66831..f7a848e10 100644 --- a/addons/dashboard/dist/assets/MaterialIcons-e9dc1d9a.js +++ b/addons/dashboard/dist/assets/MaterialIcons-dc137c6e.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-a328f13b.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-c75f6ac5.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-08cedf17.js b/addons/dashboard/dist/assets/RegisterPage-08cedf17.js deleted file mode 100644 index 9ca9dfc06..000000000 --- a/addons/dashboard/dist/assets/RegisterPage-08cedf17.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,a4 as m,aj as A,am as E,F,c as T,L as q,S as V,O as P}from"./index-a328f13b.js";const S="/assets/social-google-a359a253.svg",z=["src"],N=n("span",{class:"ml-2"},"Sign up with Google",-1),j=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),D={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},G=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),L={class:"mt-5 text-right"},O=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(S),alt:"google"},null,8,z),N]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),j,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",D,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),G]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",L,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},Y=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),H=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),Y,H]),_:1})]),_:1}),e(O)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-2c6d8bac.js b/addons/dashboard/dist/assets/RegisterPage-2c6d8bac.js new file mode 100644 index 000000000..4070c49f3 --- /dev/null +++ b/addons/dashboard/dist/assets/RegisterPage-2c6d8bac.js @@ -0,0 +1 @@ +import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,O as m,an as A,as as E,F,c as T,N as q,J as V,L as P}from"./index-c75f6ac5.js";const z="/assets/social-google-a359a253.svg",N=["src"],S=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(z),alt:"google"},null,8,N),S]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},J=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),Y=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),J,Y]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/ShadowPage-c8e10c04.js b/addons/dashboard/dist/assets/ShadowPage-1e332d97.js similarity index 68% rename from addons/dashboard/dist/assets/ShadowPage-c8e10c04.js rename to addons/dashboard/dist/assets/ShadowPage-1e332d97.js index e9117dde3..2486dc324 100644 --- a/addons/dashboard/dist/assets/ShadowPage-c8e10c04.js +++ b/addons/dashboard/dist/assets/ShadowPage-1e332d97.js @@ -1 +1 @@ -import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,S as p,J as b,b as h,t as g}from"./index-a328f13b.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(S,V)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,J as p,U as b,b as h,t as g}from"./index-c75f6ac5.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(V,x)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/StarterPage-c10add8c.js b/addons/dashboard/dist/assets/StarterPage-b0efbf05.js similarity index 83% rename from addons/dashboard/dist/assets/StarterPage-c10add8c.js rename to addons/dashboard/dist/assets/StarterPage-b0efbf05.js index 95f29eb4d..4ccf4bd5a 100644 --- a/addons/dashboard/dist/assets/StarterPage-c10add8c.js +++ b/addons/dashboard/dist/assets/StarterPage-b0efbf05.js @@ -1 +1 @@ -import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-a328f13b.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; +import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-c75f6ac5.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; diff --git a/addons/dashboard/dist/assets/TablerIcons-39aa3d62.js b/addons/dashboard/dist/assets/TablerIcons-ee63977c.js similarity index 69% rename from addons/dashboard/dist/assets/TablerIcons-39aa3d62.js rename to addons/dashboard/dist/assets/TablerIcons-ee63977c.js index 7b4f81977..95edcd607 100644 --- a/addons/dashboard/dist/assets/TablerIcons-39aa3d62.js +++ b/addons/dashboard/dist/assets/TablerIcons-ee63977c.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-a328f13b.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-c75f6ac5.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/addons/dashboard/dist/assets/TypographyPage-f435ac5f.js b/addons/dashboard/dist/assets/TypographyPage-bc8b4876.js similarity index 72% rename from addons/dashboard/dist/assets/TypographyPage-f435ac5f.js rename to addons/dashboard/dist/assets/TypographyPage-bc8b4876.js index 316b8be09..758bc3a0e 100644 --- a/addons/dashboard/dist/assets/TypographyPage-f435ac5f.js +++ b/addons/dashboard/dist/assets/TypographyPage-bc8b4876.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js";import{x as f,o as i,c as g,w as e,a,$ as y,a0 as b,e as w,t as d,A as C,O as V,a1 as L,S as _,D as o,s as h,f as k,b as t,F as x,u as B,J as H,V as T}from"./index-a328f13b.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),S={class:"d-flex flex-column gap-1"},D={class:"text-caption pa-2 bg-lightprimary"},$=t("div",{class:"text-grey"},"Class",-1),z={class:"font-weight-medium"},N=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),O=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(U,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",S,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",D,[$,t("div",z,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[N]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[O]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as f,o as i,c as g,w as e,a,a6 as y,K as b,e as w,t as d,A as C,L as V,a7 as L,J as _,D as o,s as h,f as k,b as t,F as x,u as B,U as H,V as T}from"./index-c75f6ac5.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),D={class:"d-flex flex-column gap-1"},S={class:"text-caption pa-2 bg-lightprimary"},z=t("div",{class:"text-grey"},"Class",-1),N={class:"font-weight-medium"},U=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),$=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(O,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",D,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",S,[z,t("div",N,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[U]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[$]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; diff --git a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js similarity index 76% rename from addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js rename to addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js index eadf73fdd..1d62b42f1 100644 --- a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js +++ b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js @@ -1 +1 @@ -import{x as n,o,c as i,w as e,a,$ as d,b as c,a0 as u,e as p,t as _,a1 as s,A as f,O as V,S as m}from"./index-a328f13b.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; +import{x as n,o,c as i,w as e,a,a6 as d,b as c,K as u,e as p,t as _,a7 as s,A as f,L as V,J as m}from"./index-c75f6ac5.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/addons/dashboard/dist/assets/axios-21b846bc.js b/addons/dashboard/dist/assets/axios-21b846bc.js deleted file mode 100644 index 801375a47..000000000 --- a/addons/dashboard/dist/assets/axios-21b846bc.js +++ /dev/null @@ -1,5 +0,0 @@ -function me(e,t){return function(){return e.apply(t,arguments)}}const{toString:je}=Object.prototype,{getPrototypeOf:Z}=Object,H=(e=>t=>{const n=je.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),A=e=>(e=e.toLowerCase(),t=>H(t)===e),I=e=>t=>typeof t===e,{isArray:P}=Array,F=I("undefined");function ke(e){return e!==null&&!F(e)&&e.constructor!==null&&!F(e.constructor)&&S(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ye=A("ArrayBuffer");function He(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ye(e.buffer),t}const Ie=I("string"),S=I("function"),Ee=I("number"),q=e=>e!==null&&typeof e=="object",qe=e=>e===!0||e===!1,L=e=>{if(H(e)!=="object")return!1;const t=Z(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},Me=A("Date"),ze=A("File"),Je=A("Blob"),$e=A("FileList"),Ve=e=>q(e)&&S(e.pipe),We=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||S(e.append)&&((t=H(e))==="formdata"||t==="object"&&S(e.toString)&&e.toString()==="[object FormData]"))},Ke=A("URLSearchParams"),Ge=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function B(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),P(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const be=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Se=e=>!F(e)&&e!==be;function K(){const{caseless:e}=Se(this)&&this||{},t={},n=(r,s)=>{const o=e&&we(t,s)||s;L(t[o])&&L(r)?t[o]=K(t[o],r):L(r)?t[o]=K({},r):P(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(B(t,(s,o)=>{n&&S(s)?e[o]=me(s,n):e[o]=s},{allOwnKeys:r}),e),ve=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Qe=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Ze=(e,t,n,r)=>{let s,o,i;const u={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!u[i]&&(t[i]=e[i],u[i]=!0);e=n!==!1&&Z(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Ye=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},et=e=>{if(!e)return null;if(P(e))return e;let t=e.length;if(!Ee(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},tt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Z(Uint8Array)),nt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},rt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},st=A("HTMLFormElement"),ot=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),it=A("RegExp"),Re=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};B(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},at=e=>{Re(e,(t,n)=>{if(S(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(S(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},ct=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return P(e)?r(e):r(String(e).split(t)),n},ut=()=>{},lt=(e,t)=>(e=+e,Number.isFinite(e)?e:t),J="abcdefghijklmnopqrstuvwxyz",oe="0123456789",Oe={DIGIT:oe,ALPHA:J,ALPHA_DIGIT:J+J.toUpperCase()+oe},ft=(e=16,t=Oe.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function dt(e){return!!(e&&S(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const pt=e=>{const t=new Array(10),n=(r,s)=>{if(q(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=P(r)?[]:{};return B(r,(i,u)=>{const f=n(i,s+1);!F(f)&&(o[u]=f)}),t[s]=void 0,o}}return r};return n(e,0)},ht=A("AsyncFunction"),mt=e=>e&&(q(e)||S(e))&&S(e.then)&&S(e.catch),a={isArray:P,isArrayBuffer:ye,isBuffer:ke,isFormData:We,isArrayBufferView:He,isString:Ie,isNumber:Ee,isBoolean:qe,isObject:q,isPlainObject:L,isUndefined:F,isDate:Me,isFile:ze,isBlob:Je,isRegExp:it,isFunction:S,isStream:Ve,isURLSearchParams:Ke,isTypedArray:tt,isFileList:$e,forEach:B,merge:K,extend:Xe,trim:Ge,stripBOM:ve,inherits:Qe,toFlatObject:Ze,kindOf:H,kindOfTest:A,endsWith:Ye,toArray:et,forEachEntry:nt,matchAll:rt,isHTMLForm:st,hasOwnProperty:se,hasOwnProp:se,reduceDescriptors:Re,freezeMethods:at,toObjectSet:ct,toCamelCase:ot,noop:ut,toFiniteNumber:lt,findKey:we,global:be,isContextDefined:Se,ALPHABET:Oe,generateString:ft,isSpecCompliantForm:dt,toJSONObject:pt,isAsyncFn:ht,isThenable:mt};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ae=m.prototype,Te={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Te[e]={value:e}});Object.defineProperties(m,Te);Object.defineProperty(Ae,"isAxiosError",{value:!0});m.from=(e,t,n,r,s,o)=>{const i=Object.create(Ae);return a.toFlatObject(e,i,function(f){return f!==Error.prototype},u=>u!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const yt=null;function G(e){return a.isPlainObject(e)||a.isArray(e)}function ge(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function ie(e,t,n){return e?e.concat(t).map(function(s,o){return s=ge(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function Et(e){return a.isArray(e)&&!e.some(G)}const wt=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function M(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(h,b){return!a.isUndefined(b[h])});const r=n.metaTokens,s=n.visitor||c,o=n.dots,i=n.indexes,f=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function d(l){if(l===null)return"";if(a.isDate(l))return l.toISOString();if(!f&&a.isBlob(l))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(l)||a.isTypedArray(l)?f&&typeof Blob=="function"?new Blob([l]):Buffer.from(l):l}function c(l,h,b){let T=l;if(l&&!b&&typeof l=="object"){if(a.endsWith(h,"{}"))h=r?h:h.slice(0,-2),l=JSON.stringify(l);else if(a.isArray(l)&&Et(l)||(a.isFileList(l)||a.endsWith(h,"[]"))&&(T=a.toArray(l)))return h=ge(h),T.forEach(function(_,Ue){!(a.isUndefined(_)||_===null)&&t.append(i===!0?ie([h],Ue,o):i===null?h:h+"[]",d(_))}),!1}return G(l)?!0:(t.append(ie(b,h,o),d(l)),!1)}const p=[],E=Object.assign(wt,{defaultVisitor:c,convertValue:d,isVisitable:G});function w(l,h){if(!a.isUndefined(l)){if(p.indexOf(l)!==-1)throw Error("Circular reference detected in "+h.join("."));p.push(l),a.forEach(l,function(T,R){(!(a.isUndefined(T)||T===null)&&s.call(t,T,a.isString(R)?R.trim():R,h,E))===!0&&w(T,h?h.concat(R):[R])}),p.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return w(e),t}function ae(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Y(e,t){this._pairs=[],e&&M(e,this,t)}const xe=Y.prototype;xe.append=function(t,n){this._pairs.push([t,n])};xe.toString=function(t){const n=t?function(r){return t.call(this,r,ae)}:ae;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function bt(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ne(e,t,n){if(!t)return e;const r=n&&n.encode||bt,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new Y(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class St{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const ce=St,Pe={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Rt=typeof URLSearchParams<"u"?URLSearchParams:Y,Ot=typeof FormData<"u"?FormData:null,At=typeof Blob<"u"?Blob:null,Tt=(()=>{let e;return typeof navigator<"u"&&((e=navigator.product)==="ReactNative"||e==="NativeScript"||e==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),gt=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),O={isBrowser:!0,classes:{URLSearchParams:Rt,FormData:Ot,Blob:At},isStandardBrowserEnv:Tt,isStandardBrowserWebWorkerEnv:gt,protocols:["http","https","file","blob","url","data"]};function xt(e,t){return M(e,new O.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return O.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Nt(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Pt(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return i=!i&&a.isArray(s)?s.length:i,f?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!u):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=Pt(s[i])),!u)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(Nt(r),s,n,0)}),n}return null}function Ct(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const ee={transitional:Pe,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s&&s?JSON.stringify(Ce(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let u;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return xt(t,this.formSerializer).toString();if((u=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const f=this.env&&this.env.FormData;return M(u?{"files[]":t}:t,f&&new f,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Ct(t)):t}],transformResponse:[function(t){const n=this.transitional||ee.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(u){if(i)throw u.name==="SyntaxError"?m.from(u,m.ERR_BAD_RESPONSE,this,null,this.response):u}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:O.classes.FormData,Blob:O.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{ee.headers[e]={}});const te=ee,Ft=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Bt=e=>{const t={};let n,r,s;return e&&e.split(` -`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Ft[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},ue=Symbol("internals");function C(e){return e&&String(e).trim().toLowerCase()}function U(e){return e===!1||e==null?e:a.isArray(e)?e.map(U):String(e)}function Dt(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const _t=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function $(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function Lt(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Ut(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class z{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(u,f,d){const c=C(f);if(!c)throw new Error("header name must be a non-empty string");const p=a.findKey(s,c);(!p||s[p]===void 0||d===!0||d===void 0&&s[p]!==!1)&&(s[p||f]=U(u))}const i=(u,f)=>a.forEach(u,(d,c)=>o(d,c,f));return a.isPlainObject(t)||t instanceof this.constructor?i(t,n):a.isString(t)&&(t=t.trim())&&!_t(t)?i(Bt(t),n):t!=null&&o(n,t,r),this}get(t,n){if(t=C(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Dt(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=C(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||$(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=C(i),i){const u=a.findKey(r,i);u&&(!n||$(r,r[u],u,n))&&(delete r[u],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||$(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=U(s),delete n[o];return}const u=t?Lt(o):String(o).trim();u!==o&&delete n[o],n[u]=U(s),r[u]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` -`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[ue]=this[ue]={accessors:{}}).accessors,s=this.prototype;function o(i){const u=C(i);r[u]||(Ut(s,i),r[u]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}z.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(z.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(z);const g=z;function V(e,t){const n=this||te,r=t||n,s=g.from(r.headers);let o=r.data;return a.forEach(e,function(u){o=u.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function Fe(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,m,{__CANCEL__:!0});function jt(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const kt=O.isStandardBrowserEnv?function(){return{write:function(n,r,s,o,i,u){const f=[];f.push(n+"="+encodeURIComponent(r)),a.isNumber(s)&&f.push("expires="+new Date(s).toGMTString()),a.isString(o)&&f.push("path="+o),a.isString(i)&&f.push("domain="+i),u===!0&&f.push("secure"),document.cookie=f.join("; ")},read:function(n){const r=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return r?decodeURIComponent(r[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function Ht(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function It(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}function Be(e,t){return e&&!Ht(t)?It(e,t):t}const qt=O.isStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const u=a.isString(i)?s(i):i;return u.protocol===r.protocol&&u.host===r.host}}():function(){return function(){return!0}}();function Mt(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function zt(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(f){const d=Date.now(),c=r[o];i||(i=d),n[s]=f,r[s]=d;let p=o,E=0;for(;p!==s;)E+=n[p++],p=p%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),d-i{const o=s.loaded,i=s.lengthComputable?s.total:void 0,u=o-n,f=r(u),d=o<=i;n=o;const c={loaded:o,total:i,progress:i?o/i:void 0,bytes:u,rate:f||void 0,estimated:f&&i&&d?(i-o)/f:void 0,event:s};c[t?"download":"upload"]=!0,e(c)}}const Jt=typeof XMLHttpRequest<"u",$t=Jt&&function(e){return new Promise(function(n,r){let s=e.data;const o=g.from(e.headers).normalize(),i=e.responseType;let u;function f(){e.cancelToken&&e.cancelToken.unsubscribe(u),e.signal&&e.signal.removeEventListener("abort",u)}let d;a.isFormData(s)&&(O.isStandardBrowserEnv||O.isStandardBrowserWebWorkerEnv?o.setContentType(!1):o.getContentType(/^\s*multipart\/form-data/)?a.isString(d=o.getContentType())&&o.setContentType(d.replace(/^\s*(multipart\/form-data);+/,"$1")):o.setContentType("multipart/form-data"));let c=new XMLHttpRequest;if(e.auth){const l=e.auth.username||"",h=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(l+":"+h))}const p=Be(e.baseURL,e.url);c.open(e.method.toUpperCase(),Ne(p,e.params,e.paramsSerializer),!0),c.timeout=e.timeout;function E(){if(!c)return;const l=g.from("getAllResponseHeaders"in c&&c.getAllResponseHeaders()),b={data:!i||i==="text"||i==="json"?c.responseText:c.response,status:c.status,statusText:c.statusText,headers:l,config:e,request:c};jt(function(R){n(R),f()},function(R){r(R),f()},b),c=null}if("onloadend"in c?c.onloadend=E:c.onreadystatechange=function(){!c||c.readyState!==4||c.status===0&&!(c.responseURL&&c.responseURL.indexOf("file:")===0)||setTimeout(E)},c.onabort=function(){c&&(r(new m("Request aborted",m.ECONNABORTED,e,c)),c=null)},c.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,c)),c=null},c.ontimeout=function(){let h=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const b=e.transitional||Pe;e.timeoutErrorMessage&&(h=e.timeoutErrorMessage),r(new m(h,b.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,c)),c=null},O.isStandardBrowserEnv){const l=(e.withCredentials||qt(p))&&e.xsrfCookieName&&kt.read(e.xsrfCookieName);l&&o.set(e.xsrfHeaderName,l)}s===void 0&&o.setContentType(null),"setRequestHeader"in c&&a.forEach(o.toJSON(),function(h,b){c.setRequestHeader(b,h)}),a.isUndefined(e.withCredentials)||(c.withCredentials=!!e.withCredentials),i&&i!=="json"&&(c.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&c.addEventListener("progress",le(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&c.upload&&c.upload.addEventListener("progress",le(e.onUploadProgress)),(e.cancelToken||e.signal)&&(u=l=>{c&&(r(!l||l.type?new D(null,e,c):l),c.abort(),c=null)},e.cancelToken&&e.cancelToken.subscribe(u),e.signal&&(e.signal.aborted?u():e.signal.addEventListener("abort",u)));const w=Mt(p);if(w&&O.protocols.indexOf(w)===-1){r(new m("Unsupported protocol "+w+":",m.ERR_BAD_REQUEST,e));return}c.send(s||null)})},X={http:yt,xhr:$t};a.forEach(X,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const fe=e=>`- ${e}`,Vt=e=>a.isFunction(e)||e===null||e===!1,De={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o`adapter ${u} `+(f===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since : -`+o.map(fe).join(` -`):" "+fe(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:X};function W(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new D(null,e)}function de(e){return W(e),e.headers=g.from(e.headers),e.data=V.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),De.getAdapter(e.adapter||te.adapter)(e).then(function(r){return W(e),r.data=V.call(e,e.transformResponse,r),r.headers=g.from(r.headers),r},function(r){return Fe(r)||(W(e),r&&r.response&&(r.response.data=V.call(e,e.transformResponse,r.response),r.response.headers=g.from(r.response.headers))),Promise.reject(r)})}const pe=e=>e instanceof g?e.toJSON():e;function N(e,t){t=t||{};const n={};function r(d,c,p){return a.isPlainObject(d)&&a.isPlainObject(c)?a.merge.call({caseless:p},d,c):a.isPlainObject(c)?a.merge({},c):a.isArray(c)?c.slice():c}function s(d,c,p){if(a.isUndefined(c)){if(!a.isUndefined(d))return r(void 0,d,p)}else return r(d,c,p)}function o(d,c){if(!a.isUndefined(c))return r(void 0,c)}function i(d,c){if(a.isUndefined(c)){if(!a.isUndefined(d))return r(void 0,d)}else return r(void 0,c)}function u(d,c,p){if(p in t)return r(d,c);if(p in e)return r(void 0,d)}const f={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:u,headers:(d,c)=>s(pe(d),pe(c),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(c){const p=f[c]||s,E=p(e[c],t[c],c);a.isUndefined(E)&&p!==u||(n[c]=E)}),n}const _e="1.5.1",ne={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ne[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const he={};ne.transitional=function(t,n,r){function s(o,i){return"[Axios v"+_e+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,u)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!he[i]&&(he[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,u):!0}};function Wt(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const u=e[o],f=u===void 0||i(u,o,e);if(f!==!0)throw new m("option "+o+" must be "+f,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const v={assertOptions:Wt,validators:ne},x=v.validators;class k{constructor(t){this.defaults=t,this.interceptors={request:new ce,response:new ce}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=N(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&v.assertOptions(r,{silentJSONParsing:x.transitional(x.boolean),forcedJSONParsing:x.transitional(x.boolean),clarifyTimeoutError:x.transitional(x.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:v.assertOptions(s,{encode:x.function,serialize:x.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],l=>{delete o[l]}),n.headers=g.concat(i,o);const u=[];let f=!0;this.interceptors.request.forEach(function(h){typeof h.runWhen=="function"&&h.runWhen(n)===!1||(f=f&&h.synchronous,u.unshift(h.fulfilled,h.rejected))});const d=[];this.interceptors.response.forEach(function(h){d.push(h.fulfilled,h.rejected)});let c,p=0,E;if(!f){const l=[de.bind(this),void 0];for(l.unshift.apply(l,u),l.push.apply(l,d),E=l.length,c=Promise.resolve(n);p{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(u=>{r.subscribe(u),o=u}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,u){r.reason||(r.reason=new D(o,i,u),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new re(function(s){t=s}),cancel:t}}}const Kt=re;function Gt(e){return function(n){return e.apply(null,n)}}function Xt(e){return a.isObject(e)&&e.isAxiosError===!0}const Q={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Q).forEach(([e,t])=>{Q[t]=e});const vt=Q;function Le(e){const t=new j(e),n=me(j.prototype.request,t);return a.extend(n,j.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Le(N(e,s))},n}const y=Le(te);y.Axios=j;y.CanceledError=D;y.CancelToken=Kt;y.isCancel=Fe;y.VERSION=_e;y.toFormData=M;y.AxiosError=m;y.Cancel=y.CanceledError;y.all=function(t){return Promise.all(t)};y.spread=Gt;y.isAxiosError=Xt;y.mergeConfig=N;y.AxiosHeaders=g;y.formToJSON=e=>Ce(a.isHTMLForm(e)?new FormData(e):e);y.getAdapter=De.getAdapter;y.HttpStatusCode=vt;y.default=y;const Qt=y;export{Qt as a}; diff --git a/addons/dashboard/dist/assets/icon-card-5ebb8a56.svg b/addons/dashboard/dist/assets/icon-card-5ebb8a56.svg deleted file mode 100644 index e877b599e..000000000 --- a/addons/dashboard/dist/assets/icon-card-5ebb8a56.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/addons/dashboard/dist/assets/index-a328f13b.js b/addons/dashboard/dist/assets/index-c75f6ac5.js similarity index 64% rename from addons/dashboard/dist/assets/index-a328f13b.js rename to addons/dashboard/dist/assets/index-c75f6ac5.js index 8dc71fc64..d1c6cd977 100644 --- a/addons/dashboard/dist/assets/index-a328f13b.js +++ b/addons/dashboard/dist/assets/index-c75f6ac5.js @@ -1,33 +1,37 @@ -(function(){const l=document.createElement("link").relList;if(l&&l.supports&&l.supports("modulepreload"))return;for(const u of document.querySelectorAll('link[rel="modulepreload"]'))h(u);new MutationObserver(u=>{for(const g of u)if(g.type==="childList")for(const v of g.addedNodes)v.tagName==="LINK"&&v.rel==="modulepreload"&&h(v)}).observe(document,{childList:!0,subtree:!0});function r(u){const g={};return u.integrity&&(g.integrity=u.integrity),u.referrerPolicy&&(g.referrerPolicy=u.referrerPolicy),u.crossOrigin==="use-credentials"?g.credentials="include":u.crossOrigin==="anonymous"?g.credentials="omit":g.credentials="same-origin",g}function h(u){if(u.ep)return;u.ep=!0;const g=r(u);fetch(u.href,g)}})();function Y4(n,l){const r=Object.create(null),h=n.split(",");for(let u=0;u!!r[u.toLowerCase()]:u=>!!r[u]}const G4=()=>{},H0=Object.assign,U4=Object.prototype.hasOwnProperty,ha=(n,l)=>U4.call(n,l),hl=Array.isArray,Vs=n=>ud(n)==="[object Map]",N0=n=>typeof n=="function",Z4=n=>typeof n=="string",j0=n=>typeof n=="symbol",es=n=>n!==null&&typeof n=="object",K4=Object.prototype.toString,ud=n=>K4.call(n),Q4=n=>ud(n).slice(8,-1),P0=n=>Z4(n)&&n!=="NaN"&&n[0]!=="-"&&""+parseInt(n,10)===n,L0=(n,l)=>!Object.is(n,l),J4=(n,l,r)=>{Object.defineProperty(n,l,{configurable:!0,enumerable:!1,value:r})};let bn;class D0{constructor(l=!1){this.detached=l,this._active=!0,this.effects=[],this.cleanups=[],this.parent=bn,!l&&bn&&(this.index=(bn.scopes||(bn.scopes=[])).push(this)-1)}get active(){return this._active}run(l){if(this._active){const r=bn;try{return bn=this,l()}finally{bn=r}}}on(){bn=this}off(){bn=this.parent}stop(l){if(this._active){let r,h;for(r=0,h=this.effects.length;r{const l=new Set(n);return l.w=0,l.n=0,l},gd=n=>(n.w&Dl)>0,wd=n=>(n.n&Dl)>0,tg=({deps:n})=>{if(n.length)for(let l=0;l{const{deps:l}=n;if(l.length){let r=0;for(let h=0;h{(S==="length"||S>=z)&&b.push(C)})}else switch(r!==void 0&&b.push(v.get(r)),l){case"add":hl(n)?P0(r)&&b.push(v.get("length")):(b.push(v.get(or)),Vs(n)&&b.push(v.get(yi)));break;case"delete":hl(n)||(b.push(v.get(or)),Vs(n)&&b.push(v.get(yi)));break;case"set":Vs(n)&&b.push(v.get(or));break}if(b.length===1)b[0]&&Ci(b[0]);else{const z=[];for(const C of b)C&&z.push(...C);Ci(O0(z))}}function Ci(n,l){const r=hl(n)?n:[...n];for(const h of r)h.computed&&a2(h);for(const h of r)h.computed||a2(h)}function a2(n,l){(n!==En||n.allowRecurse)&&(n.scheduler?n.scheduler():n.run())}function rg(n,l){var r;return(r=Gs.get(n))==null?void 0:r.get(l)}const og=Y4("__proto__,__v_isRef,__isVue"),md=new Set(Object.getOwnPropertyNames(Symbol).filter(n=>n!=="arguments"&&n!=="caller").map(n=>Symbol[n]).filter(j0)),sg=da(),ag=da(!1,!0),ig=da(!0),hg=da(!0,!0),i2=dg();function dg(){const n={};return["includes","indexOf","lastIndexOf"].forEach(l=>{n[l]=function(...r){const h=ne(this);for(let g=0,v=this.length;g{n[l]=function(...r){to();const h=ne(this)[l].apply(this,r);return eo(),h}}),n}function cg(n){const l=ne(this);return wn(l,"has",n),l.hasOwnProperty(n)}function da(n=!1,l=!1){return function(h,u,g){if(u==="__v_isReactive")return!n;if(u==="__v_isReadonly")return n;if(u==="__v_isShallow")return l;if(u==="__v_raw"&&g===(n?l?yd:Id:l?zd:xd).get(h))return h;const v=hl(h);if(!n){if(v&&ha(i2,u))return Reflect.get(i2,u,g);if(u==="hasOwnProperty")return cg}const b=Reflect.get(h,u,g);return(j0(u)?md.has(u):og(u))||(n||wn(h,"get",u),l)?b:ke(b)?v&&P0(u)?b:b.value:es(b)?n?no(b):Ye(b):b}}const ug=kd(),pg=kd(!0);function kd(n=!1){return function(r,h,u,g){let v=r[h];if(dr(v)&&ke(v)&&!ke(u))return!1;if(!n&&(!Fo(u)&&!dr(u)&&(v=ne(v),u=ne(u)),!hl(r)&&ke(v)&&!ke(u)))return v.value=u,!0;const b=hl(r)&&P0(h)?Number(h)n,ca=n=>Reflect.getPrototypeOf(n);function zs(n,l,r=!1,h=!1){n=n.__v_raw;const u=ne(n),g=ne(l);r||(l!==g&&wn(u,"get",l),wn(u,"get",g));const{has:v}=ca(u),b=h?T0:r?V0:Oo;if(v.call(u,l))return b(n.get(l));if(v.call(u,g))return b(n.get(g));n!==u&&n.get(l)}function Is(n,l=!1){const r=this.__v_raw,h=ne(r),u=ne(n);return l||(n!==u&&wn(h,"has",n),wn(h,"has",u)),n===u?r.has(n):r.has(n)||r.has(u)}function ys(n,l=!1){return n=n.__v_raw,!l&&wn(ne(n),"iterate",or),Reflect.get(n,"size",n)}function h2(n){n=ne(n);const l=ne(this);return ca(l).has.call(l,n)||(l.add(n),ul(l,"add",n,n)),this}function d2(n,l){l=ne(l);const r=ne(this),{has:h,get:u}=ca(r);let g=h.call(r,n);g||(n=ne(n),g=h.call(r,n));const v=u.call(r,n);return r.set(n,l),g?L0(l,v)&&ul(r,"set",n,l):ul(r,"add",n,l),this}function c2(n){const l=ne(this),{has:r,get:h}=ca(l);let u=r.call(l,n);u||(n=ne(n),u=r.call(l,n)),h&&h.call(l,n);const g=l.delete(n);return u&&ul(l,"delete",n,void 0),g}function u2(){const n=ne(this),l=n.size!==0,r=n.clear();return l&&ul(n,"clear",void 0,void 0),r}function Cs(n,l){return function(h,u){const g=this,v=g.__v_raw,b=ne(v),z=l?T0:n?V0:Oo;return!n&&wn(b,"iterate",or),v.forEach((C,S)=>h.call(u,z(C),z(S),g))}}function Ss(n,l,r){return function(...h){const u=this.__v_raw,g=ne(u),v=Vs(g),b=n==="entries"||n===Symbol.iterator&&v,z=n==="keys"&&v,C=u[n](...h),S=r?T0:l?V0:Oo;return!l&&wn(g,"iterate",z?yi:or),{next(){const{value:A,done:B}=C.next();return B?{value:A,done:B}:{value:b?[S(A[0]),S(A[1])]:S(A),done:B}},[Symbol.iterator](){return this}}}}function Il(n){return function(...l){return n==="delete"?!1:this}}function kg(){const n={get(g){return zs(this,g)},get size(){return ys(this)},has:Is,add:h2,set:d2,delete:c2,clear:u2,forEach:Cs(!1,!1)},l={get(g){return zs(this,g,!1,!0)},get size(){return ys(this)},has:Is,add:h2,set:d2,delete:c2,clear:u2,forEach:Cs(!1,!0)},r={get(g){return zs(this,g,!0)},get size(){return ys(this,!0)},has(g){return Is.call(this,g,!0)},add:Il("add"),set:Il("set"),delete:Il("delete"),clear:Il("clear"),forEach:Cs(!0,!1)},h={get(g){return zs(this,g,!0,!0)},get size(){return ys(this,!0)},has(g){return Is.call(this,g,!0)},add:Il("add"),set:Il("set"),delete:Il("delete"),clear:Il("clear"),forEach:Cs(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(g=>{n[g]=Ss(g,!1,!1),r[g]=Ss(g,!0,!1),l[g]=Ss(g,!1,!0),h[g]=Ss(g,!0,!0)}),[n,r,l,h]}const[bg,Mg,xg,zg]=kg();function ua(n,l){const r=l?n?zg:xg:n?Mg:bg;return(h,u,g)=>u==="__v_isReactive"?!n:u==="__v_isReadonly"?n:u==="__v_raw"?h:Reflect.get(ha(r,u)&&u in h?r:h,u,g)}const Ig={get:ua(!1,!1)},yg={get:ua(!1,!0)},Cg={get:ua(!0,!1)},Sg={get:ua(!0,!0)},xd=new WeakMap,zd=new WeakMap,Id=new WeakMap,yd=new WeakMap;function $g(n){switch(n){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Ag(n){return n.__v_skip||!Object.isExtensible(n)?0:$g(Q4(n))}function Ye(n){return dr(n)?n:pa(n,!1,bd,Ig,xd)}function R0(n){return pa(n,!1,fg,yg,zd)}function no(n){return pa(n,!0,Md,Cg,Id)}function Bg(n){return pa(n,!0,mg,Sg,yd)}function pa(n,l,r,h,u){if(!es(n)||n.__v_raw&&!(l&&n.__v_isReactive))return n;const g=u.get(n);if(g)return g;const v=Ag(n);if(v===0)return n;const b=new Proxy(n,v===2?h:r);return u.set(n,b),b}function dl(n){return dr(n)?dl(n.__v_raw):!!(n&&n.__v_isReactive)}function dr(n){return!!(n&&n.__v_isReadonly)}function Fo(n){return!!(n&&n.__v_isShallow)}function E0(n){return dl(n)||dr(n)}function ne(n){const l=n&&n.__v_raw;return l?ne(l):n}function ls(n){return J4(n,"__v_skip",!0),n}const Oo=n=>es(n)?Ye(n):n,V0=n=>es(n)?no(n):n;function _0(n){Pl&&En&&(n=ne(n),fd(n.dep||(n.dep=O0())))}function ga(n,l){n=ne(n);const r=n.dep;r&&Ci(r)}function ke(n){return!!(n&&n.__v_isRef===!0)}function Pt(n){return Cd(n,!1)}function _t(n){return Cd(n,!0)}function Cd(n,l){return ke(n)?n:new Hg(n,l)}class Hg{constructor(l,r){this.__v_isShallow=r,this.dep=void 0,this.__v_isRef=!0,this._rawValue=r?l:ne(l),this._value=r?l:Oo(l)}get value(){return _0(this),this._value}set value(l){const r=this.__v_isShallow||Fo(l)||dr(l);l=r?l:ne(l),L0(l,this._rawValue)&&(this._rawValue=l,this._value=r?l:Oo(l),ga(this))}}function Ng(n){ga(n)}function He(n){return ke(n)?n.value:n}function jg(n){return N0(n)?n():He(n)}const Pg={get:(n,l,r)=>He(Reflect.get(n,l,r)),set:(n,l,r,h)=>{const u=n[l];return ke(u)&&!ke(r)?(u.value=r,!0):Reflect.set(n,l,r,h)}};function W0(n){return dl(n)?n:new Proxy(n,Pg)}class Lg{constructor(l){this.dep=void 0,this.__v_isRef=!0;const{get:r,set:h}=l(()=>_0(this),()=>ga(this));this._get=r,this._set=h}get value(){return this._get()}set value(l){this._set(l)}}function Dg(n){return new Lg(n)}function rs(n){const l=hl(n)?new Array(n.length):{};for(const r in n)l[r]=Sd(n,r);return l}class Fg{constructor(l,r,h){this._object=l,this._key=r,this._defaultValue=h,this.__v_isRef=!0}get value(){const l=this._object[this._key];return l===void 0?this._defaultValue:l}set value(l){this._object[this._key]=l}get dep(){return rg(ne(this._object),this._key)}}class Og{constructor(l){this._getter=l,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Bt(n,l,r){return ke(n)?n:N0(n)?new Og(n):es(n)&&arguments.length>1?Sd(n,l,r):Pt(n)}function Sd(n,l,r){const h=n[l];return ke(h)?h:new Fg(n,l,r)}class Tg{constructor(l,r,h,u){this._setter=r,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new ns(l,()=>{this._dirty||(this._dirty=!0,ga(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!u,this.__v_isReadonly=h}get value(){const l=ne(this);return _0(l),(l._dirty||!l._cacheable)&&(l._dirty=!1,l._value=l.effect.run()),l._value}set value(l){this._setter(l)}}function Rg(n,l,r=!1){let h,u;const g=N0(n);return g?(h=n,u=G4):(h=n.get,u=n.set),new Tg(h,u,g||!u,r)}function $d(n,l){const r=Object.create(null),h=n.split(",");for(let u=0;u!!r[u.toLowerCase()]:u=>!!r[u]}const ze={},Rr=[],Jn=()=>{},Eg=()=>!1,Vg=/^on[^a-z]/,wa=n=>Vg.test(n),Ad=n=>n.startsWith("onUpdate:"),_e=Object.assign,X0=(n,l)=>{const r=n.indexOf(l);r>-1&&n.splice(r,1)},_g=Object.prototype.hasOwnProperty,ve=(n,l)=>_g.call(n,l),oe=Array.isArray,Bd=n=>va(n)==="[object Map]",Hd=n=>va(n)==="[object Set]",Wg=n=>va(n)==="[object RegExp]",re=n=>typeof n=="function",Oe=n=>typeof n=="string",De=n=>n!==null&&typeof n=="object",q0=n=>De(n)&&re(n.then)&&re(n.catch),Nd=Object.prototype.toString,va=n=>Nd.call(n),jd=n=>va(n)==="[object Object]",yo=$d(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),fa=n=>{const l=Object.create(null);return r=>l[r]||(l[r]=n(r))},Xg=/-(\w)/g,In=fa(n=>n.replace(Xg,(l,r)=>r?r.toUpperCase():"")),qg=/\B([A-Z])/g,ma=fa(n=>n.replace(qg,"-$1").toLowerCase()),fl=fa(n=>n.charAt(0).toUpperCase()+n.slice(1)),Co=fa(n=>n?`on${fl(n)}`:""),Si=(n,l)=>!Object.is(n,l),So=(n,l)=>{for(let r=0;r{Object.defineProperty(n,l,{configurable:!0,enumerable:!1,value:r})},Yg=n=>{const l=parseFloat(n);return isNaN(l)?n:l},Gg=n=>{const l=Oe(n)?Number(n):NaN;return isNaN(l)?n:l};let p2;const Ai=()=>p2||(p2=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),Ug="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console",Zg=$d(Ug);function os(n){if(oe(n)){const l={};for(let r=0;r{if(r){const h=r.split(Qg);h.length>1&&(l[h[0].trim()]=h[1].trim())}}),l}function ss(n){let l="";if(Oe(n))l=n;else if(oe(n))for(let r=0;rOe(n)?n:n==null?"":oe(n)||De(n)&&(n.toString===Nd||!re(n.toString))?JSON.stringify(n,Pd,2):String(n),Pd=(n,l)=>l&&l.__v_isRef?Pd(n,l.value):Bd(l)?{[`Map(${l.size})`]:[...l.entries()].reduce((r,[h,u])=>(r[`${h} =>`]=u,r),{})}:Hd(l)?{[`Set(${l.size})`]:[...l.values()]}:De(l)&&!oe(l)&&!jd(l)?String(l):l;function lw(n,...l){}function rw(n,l){}function cl(n,l,r,h){let u;try{u=h?n(...h):n()}catch(g){fr(g,l,r)}return u}function zn(n,l,r,h){if(re(n)){const g=cl(n,l,r,h);return g&&q0(g)&&g.catch(v=>{fr(v,l,r)}),g}const u=[];for(let g=0;g>>1;Ro(Je[h])Kn&&Je.splice(l,1)}function G0(n){oe(n)?Er.push(...n):(!sl||!sl.includes(n,n.allowRecurse?tr+1:tr))&&Er.push(n),Dd()}function g2(n,l=To?Kn+1:0){for(;lRo(r)-Ro(h)),tr=0;trn.id==null?1/0:n.id,iw=(n,l)=>{const r=Ro(n)-Ro(l);if(r===0){if(n.pre&&!l.pre)return-1;if(l.pre&&!n.pre)return 1}return r};function Fd(n){Bi=!1,To=!0,Je.sort(iw);const l=Jn;try{for(Kn=0;KnLr.emit(u,...g)),$s=[]):typeof window<"u"&&window.HTMLElement&&!((h=(r=window.navigator)==null?void 0:r.userAgent)!=null&&h.includes("jsdom"))?((l.__VUE_DEVTOOLS_HOOK_REPLAY__=l.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(g=>{Od(g,l)}),setTimeout(()=>{Lr||(l.__VUE_DEVTOOLS_HOOK_REPLAY__=null,$s=[])},3e3)):$s=[]}function hw(n,l,...r){if(n.isUnmounted)return;const h=n.vnode.props||ze;let u=r;const g=l.startsWith("update:"),v=g&&l.slice(7);if(v&&v in h){const S=`${v==="modelValue"?"model":v}Modifiers`,{number:A,trim:B}=h[S]||ze;B&&(u=r.map(P=>Oe(P)?P.trim():P)),A&&(u=r.map(Yg))}let b,z=h[b=Co(l)]||h[b=Co(In(l))];!z&&g&&(z=h[b=Co(ma(l))]),z&&zn(z,n,6,u);const C=h[b+"Once"];if(C){if(!n.emitted)n.emitted={};else if(n.emitted[b])return;n.emitted[b]=!0,zn(C,n,6,u)}}function Td(n,l,r=!1){const h=l.emitsCache,u=h.get(n);if(u!==void 0)return u;const g=n.emits;let v={},b=!1;if(!re(n)){const z=C=>{const S=Td(C,l,!0);S&&(b=!0,_e(v,S))};!r&&l.mixins.length&&l.mixins.forEach(z),n.extends&&z(n.extends),n.mixins&&n.mixins.forEach(z)}return!g&&!b?(De(n)&&h.set(n,null),null):(oe(g)?g.forEach(z=>v[z]=null):_e(v,g),De(n)&&h.set(n,v),v)}function ba(n,l){return!n||!wa(l)?!1:(l=l.slice(2).replace(/Once$/,""),ve(n,l[0].toLowerCase()+l.slice(1))||ve(n,ma(l))||ve(n,l))}let Ve=null,Ma=null;function Eo(n){const l=Ve;return Ve=n,Ma=n&&n.type.__scopeId||null,l}function dw(n){Ma=n}function cw(){Ma=null}const uw=n=>U0;function U0(n,l=Ve,r){if(!l||n._n)return n;const h=(...u)=>{h._d&&Fi(-1);const g=Eo(l);let v;try{v=n(...u)}finally{Eo(g),h._d&&Fi(1)}return v};return h._n=!0,h._c=!0,h._d=!0,h}function _s(n){const{type:l,vnode:r,proxy:h,withProxy:u,props:g,propsOptions:[v],slots:b,attrs:z,emit:C,render:S,renderCache:A,data:B,setupState:P,ctx:D,inheritAttrs:E}=n;let Y,O;const H=Eo(n);try{if(r.shapeFlag&4){const W=u||h;Y=Mn(S.call(W,W,A,g,P,B,D)),O=z}else{const W=l;Y=Mn(W.length>1?W(g,{attrs:z,slots:b,emit:C}):W(g,null)),O=l.props?z:gw(z)}}catch(W){Bo.length=0,fr(W,n,1),Y=t(nn)}let U=Y;if(O&&E!==!1){const W=Object.keys(O),{shapeFlag:_}=U;W.length&&_&7&&(v&&W.some(Ad)&&(O=ww(O,v)),U=Xn(U,O))}return r.dirs&&(U=Xn(U),U.dirs=U.dirs?U.dirs.concat(r.dirs):r.dirs),r.transition&&(U.transition=r.transition),Y=U,Eo(H),Y}function pw(n){let l;for(let r=0;r{let l;for(const r in n)(r==="class"||r==="style"||wa(r))&&((l||(l={}))[r]=n[r]);return l},ww=(n,l)=>{const r={};for(const h in n)(!Ad(h)||!(h.slice(9)in l))&&(r[h]=n[h]);return r};function vw(n,l,r){const{props:h,children:u,component:g}=n,{props:v,children:b,patchFlag:z}=l,C=g.emitsOptions;if(l.dirs||l.transition)return!0;if(r&&z>=0){if(z&1024)return!0;if(z&16)return h?w2(h,v,C):!!v;if(z&8){const S=l.dynamicProps;for(let A=0;An.__isSuspense,fw={name:"Suspense",__isSuspense:!0,process(n,l,r,h,u,g,v,b,z,C){n==null?kw(l,r,h,u,g,v,b,z,C):bw(n,l,r,h,u,v,b,z,C)},hydrate:Mw,create:K0,normalize:xw},mw=fw;function Vo(n,l){const r=n.props&&n.props[l];re(r)&&r()}function kw(n,l,r,h,u,g,v,b,z){const{p:C,o:{createElement:S}}=z,A=S("div"),B=n.suspense=K0(n,u,h,l,A,r,g,v,b,z);C(null,B.pendingBranch=n.ssContent,A,null,h,B,g,v),B.deps>0?(Vo(n,"onPending"),Vo(n,"onFallback"),C(null,n.ssFallback,l,r,h,null,g,v),Vr(B,n.ssFallback)):B.resolve(!1,!0)}function bw(n,l,r,h,u,g,v,b,{p:z,um:C,o:{createElement:S}}){const A=l.suspense=n.suspense;A.vnode=l,l.el=n.el;const B=l.ssContent,P=l.ssFallback,{activeBranch:D,pendingBranch:E,isInFallback:Y,isHydrating:O}=A;if(E)A.pendingBranch=B,Vn(B,E)?(z(E,B,A.hiddenContainer,null,u,A,g,v,b),A.deps<=0?A.resolve():Y&&(z(D,P,r,h,u,null,g,v,b),Vr(A,P))):(A.pendingId++,O?(A.isHydrating=!1,A.activeBranch=E):C(E,u,A),A.deps=0,A.effects.length=0,A.hiddenContainer=S("div"),Y?(z(null,B,A.hiddenContainer,null,u,A,g,v,b),A.deps<=0?A.resolve():(z(D,P,r,h,u,null,g,v,b),Vr(A,P))):D&&Vn(B,D)?(z(D,B,r,h,u,A,g,v,b),A.resolve(!0)):(z(null,B,A.hiddenContainer,null,u,A,g,v,b),A.deps<=0&&A.resolve()));else if(D&&Vn(B,D))z(D,B,r,h,u,A,g,v,b),Vr(A,B);else if(Vo(l,"onPending"),A.pendingBranch=B,A.pendingId++,z(null,B,A.hiddenContainer,null,u,A,g,v,b),A.deps<=0)A.resolve();else{const{timeout:H,pendingId:U}=A;H>0?setTimeout(()=>{A.pendingId===U&&A.fallback(P)},H):H===0&&A.fallback(P)}}function K0(n,l,r,h,u,g,v,b,z,C,S=!1){const{p:A,m:B,um:P,n:D,o:{parentNode:E,remove:Y}}=C;let O;const H=zw(n);H&&l!=null&&l.pendingBranch&&(O=l.pendingId,l.deps++);const U=n.props?Gg(n.props.timeout):void 0,W={vnode:n,parent:l,parentComponent:r,isSVG:v,container:h,hiddenContainer:u,anchor:g,deps:0,pendingId:0,timeout:typeof U=="number"?U:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:S,isUnmounted:!1,effects:[],resolve(_=!1,tt=!1){const{vnode:nt,activeBranch:q,pendingBranch:G,pendingId:et,effects:st,parentComponent:rt,container:ht}=W;if(W.isHydrating)W.isHydrating=!1;else if(!_){const xt=q&&G.transition&&G.transition.mode==="out-in";xt&&(q.transition.afterLeave=()=>{et===W.pendingId&&B(G,ht,wt,0)});let{anchor:wt}=W;q&&(wt=D(q),P(q,rt,W,!0)),xt||B(G,ht,wt,0)}Vr(W,G),W.pendingBranch=null,W.isInFallback=!1;let dt=W.parent,Ct=!1;for(;dt;){if(dt.pendingBranch){dt.effects.push(...st),Ct=!0;break}dt=dt.parent}Ct||G0(st),W.effects=[],H&&l&&l.pendingBranch&&O===l.pendingId&&(l.deps--,l.deps===0&&!tt&&l.resolve()),Vo(nt,"onResolve")},fallback(_){if(!W.pendingBranch)return;const{vnode:tt,activeBranch:nt,parentComponent:q,container:G,isSVG:et}=W;Vo(tt,"onFallback");const st=D(nt),rt=()=>{W.isInFallback&&(A(null,_,G,st,q,null,et,b,z),Vr(W,_))},ht=_.transition&&_.transition.mode==="out-in";ht&&(nt.transition.afterLeave=rt),W.isInFallback=!0,P(nt,q,null,!0),ht||rt()},move(_,tt,nt){W.activeBranch&&B(W.activeBranch,_,tt,nt),W.container=_},next(){return W.activeBranch&&D(W.activeBranch)},registerDep(_,tt){const nt=!!W.pendingBranch;nt&&W.deps++;const q=_.vnode.el;_.asyncDep.catch(G=>{fr(G,_,0)}).then(G=>{if(_.isUnmounted||W.isUnmounted||W.pendingId!==_.suspenseId)return;_.asyncResolved=!0;const{vnode:et}=_;Oi(_,G,!1),q&&(et.el=q);const st=!q&&_.subTree.el;tt(_,et,E(q||_.subTree.el),q?null:D(_.subTree),W,v,z),st&&Y(st),Z0(_,et.el),nt&&--W.deps===0&&W.resolve()})},unmount(_,tt){W.isUnmounted=!0,W.activeBranch&&P(W.activeBranch,r,_,tt),W.pendingBranch&&P(W.pendingBranch,r,_,tt)}};return W}function Mw(n,l,r,h,u,g,v,b,z){const C=l.suspense=K0(l,h,r,n.parentNode,document.createElement("div"),null,u,g,v,b,!0),S=z(n,C.pendingBranch=l.ssContent,r,C,g,v);return C.deps===0&&C.resolve(!1,!0),S}function xw(n){const{shapeFlag:l,children:r}=n,h=l&32;n.ssContent=v2(h?r.default:r),n.ssFallback=h?v2(r.fallback):t(nn)}function v2(n){let l;if(re(n)){const r=ur&&n._c;r&&(n._d=!1,ds()),n=n(),r&&(n._d=!0,l=gn,gc())}return oe(n)&&(n=pw(n)),n=Mn(n),l&&!n.dynamicChildren&&(n.dynamicChildren=l.filter(r=>r!==n)),n}function Ed(n,l){l&&l.pendingBranch?oe(n)?l.effects.push(...n):l.effects.push(n):G0(n)}function Vr(n,l){n.activeBranch=l;const{vnode:r,parentComponent:h}=n,u=r.el=l.el;h&&h.subTree===r&&(h.vnode.el=u,Z0(h,u))}function zw(n){var l;return((l=n.props)==null?void 0:l.suspensible)!=null&&n.props.suspensible!==!1}function fn(n,l){return as(n,null,l)}function Vd(n,l){return as(n,null,{flush:"post"})}function Iw(n,l){return as(n,null,{flush:"sync"})}const As={};function Vt(n,l,r){return as(n,l,r)}function as(n,l,{immediate:r,deep:h,flush:u,onTrack:g,onTrigger:v}=ze){var b;const z=F0()===((b=Le)==null?void 0:b.scope)?Le:null;let C,S=!1,A=!1;if(ke(n)?(C=()=>n.value,S=Fo(n)):dl(n)?(C=()=>n,h=!0):oe(n)?(A=!0,S=n.some(W=>dl(W)||Fo(W)),C=()=>n.map(W=>{if(ke(W))return W.value;if(dl(W))return nr(W);if(re(W))return cl(W,z,2)})):re(n)?l?C=()=>cl(n,z,2):C=()=>{if(!(z&&z.isUnmounted))return B&&B(),zn(n,z,3,[P])}:C=Jn,l&&h){const W=C;C=()=>nr(W())}let B,P=W=>{B=H.onStop=()=>{cl(W,z,4)}},D;if(Xr)if(P=Jn,l?r&&zn(l,z,3,[C(),A?[]:void 0,P]):C(),u==="sync"){const W=Ic();D=W.__watcherHandles||(W.__watcherHandles=[])}else return Jn;let E=A?new Array(n.length).fill(As):As;const Y=()=>{if(H.active)if(l){const W=H.run();(h||S||(A?W.some((_,tt)=>Si(_,E[tt])):Si(W,E)))&&(B&&B(),zn(l,z,3,[W,E===As?void 0:A&&E[0]===As?[]:E,P]),E=W)}else H.run()};Y.allowRecurse=!!l;let O;u==="sync"?O=Y:u==="post"?O=()=>qe(Y,z&&z.suspense):(Y.pre=!0,z&&(Y.id=z.uid),O=()=>ka(Y));const H=new ns(C,O);l?r?Y():E=H.run():u==="post"?qe(H.run.bind(H),z&&z.suspense):H.run();const U=()=>{H.stop(),z&&z.scope&&X0(z.scope.effects,H)};return D&&D.push(U),U}function yw(n,l,r){const h=this.proxy,u=Oe(n)?n.includes(".")?_d(h,n):()=>h[n]:n.bind(h,h);let g;re(l)?g=l:(g=l.handler,r=l);const v=Le;Tl(this);const b=as(u,g.bind(h),r);return v?Tl(v):Ll(),b}function _d(n,l){const r=l.split(".");return()=>{let h=n;for(let u=0;u{nr(r,l)});else if(jd(n))for(const r in n)nr(n[r],l);return n}function Ce(n,l){const r=Ve;if(r===null)return n;const h=$a(r)||r.proxy,u=n.dirs||(n.dirs=[]);for(let g=0;g{n.isMounted=!0}),Ue(()=>{n.isUnmounting=!0}),n}const $n=[Function,Array],J0={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:$n,onEnter:$n,onAfterEnter:$n,onEnterCancelled:$n,onBeforeLeave:$n,onLeave:$n,onAfterLeave:$n,onLeaveCancelled:$n,onBeforeAppear:$n,onAppear:$n,onAfterAppear:$n,onAppearCancelled:$n},Cw={name:"BaseTransition",props:J0,setup(n,{slots:l}){const r=nl(),h=Q0();let u;return()=>{const g=l.default&&xa(l.default(),!0);if(!g||!g.length)return;let v=g[0];if(g.length>1){for(const E of g)if(E.type!==nn){v=E;break}}const b=ne(n),{mode:z}=b;if(h.isLeaving)return li(v);const C=f2(v);if(!C)return li(v);const S=Wr(C,b,h,r);cr(C,S);const A=r.subTree,B=A&&f2(A);let P=!1;const{getTransitionKey:D}=C.type;if(D){const E=D();u===void 0?u=E:E!==u&&(u=E,P=!0)}if(B&&B.type!==nn&&(!Vn(C,B)||P)){const E=Wr(B,b,h,r);if(cr(B,E),z==="out-in")return h.isLeaving=!0,E.afterLeave=()=>{h.isLeaving=!1,r.update.active!==!1&&r.update()},li(v);z==="in-out"&&C.type!==nn&&(E.delayLeave=(Y,O,H)=>{const U=Xd(h,B);U[String(B.key)]=B,Y._leaveCb=()=>{O(),Y._leaveCb=void 0,delete S.delayedLeave},S.delayedLeave=H})}return v}}},Wd=Cw;function Xd(n,l){const{leavingVNodes:r}=n;let h=r.get(l.type);return h||(h=Object.create(null),r.set(l.type,h)),h}function Wr(n,l,r,h){const{appear:u,mode:g,persisted:v=!1,onBeforeEnter:b,onEnter:z,onAfterEnter:C,onEnterCancelled:S,onBeforeLeave:A,onLeave:B,onAfterLeave:P,onLeaveCancelled:D,onBeforeAppear:E,onAppear:Y,onAfterAppear:O,onAppearCancelled:H}=l,U=String(n.key),W=Xd(r,n),_=(q,G)=>{q&&zn(q,h,9,G)},tt=(q,G)=>{const et=G[1];_(q,G),oe(q)?q.every(st=>st.length<=1)&&et():q.length<=1&&et()},nt={mode:g,persisted:v,beforeEnter(q){let G=b;if(!r.isMounted)if(u)G=E||b;else return;q._leaveCb&&q._leaveCb(!0);const et=W[U];et&&Vn(n,et)&&et.el._leaveCb&&et.el._leaveCb(),_(G,[q])},enter(q){let G=z,et=C,st=S;if(!r.isMounted)if(u)G=Y||z,et=O||C,st=H||S;else return;let rt=!1;const ht=q._enterCb=dt=>{rt||(rt=!0,dt?_(st,[q]):_(et,[q]),nt.delayedLeave&&nt.delayedLeave(),q._enterCb=void 0)};G?tt(G,[q,ht]):ht()},leave(q,G){const et=String(n.key);if(q._enterCb&&q._enterCb(!0),r.isUnmounting)return G();_(A,[q]);let st=!1;const rt=q._leaveCb=ht=>{st||(st=!0,G(),ht?_(D,[q]):_(P,[q]),q._leaveCb=void 0,W[et]===n&&delete W[et])};W[et]=n,B?tt(B,[q,rt]):rt()},clone(q){return Wr(q,l,r,h)}};return nt}function li(n){if(is(n))return n=Xn(n),n.children=null,n}function f2(n){return is(n)?n.children?n.children[0]:void 0:n}function cr(n,l){n.shapeFlag&6&&n.component?cr(n.component.subTree,l):n.shapeFlag&128?(n.ssContent.transition=l.clone(n.ssContent),n.ssFallback.transition=l.clone(n.ssFallback)):n.transition=l}function xa(n,l=!1,r){let h=[],u=0;for(let g=0;g1)for(let g=0;g_e({name:n.name},l,{setup:n}))():n}const sr=n=>!!n.type.__asyncLoader;function Sw(n){re(n)&&(n={loader:n});const{loader:l,loadingComponent:r,errorComponent:h,delay:u=200,timeout:g,suspensible:v=!0,onError:b}=n;let z=null,C,S=0;const A=()=>(S++,z=null,B()),B=()=>{let P;return z||(P=z=l().catch(D=>{if(D=D instanceof Error?D:new Error(String(D)),b)return new Promise((E,Y)=>{b(D,()=>E(A()),()=>Y(D),S+1)});throw D}).then(D=>P!==z&&z?z:(D&&(D.__esModule||D[Symbol.toStringTag]==="Module")&&(D=D.default),C=D,D)))};return mr({name:"AsyncComponentWrapper",__asyncLoader:B,get __asyncResolved(){return C},setup(){const P=Le;if(C)return()=>ri(C,P);const D=H=>{z=null,fr(H,P,13,!h)};if(v&&P.suspense||Xr)return B().then(H=>()=>ri(H,P)).catch(H=>(D(H),()=>h?t(h,{error:H}):null));const E=Pt(!1),Y=Pt(),O=Pt(!!u);return u&&setTimeout(()=>{O.value=!1},u),g!=null&&setTimeout(()=>{if(!E.value&&!Y.value){const H=new Error(`Async component timed out after ${g}ms.`);D(H),Y.value=H}},g),B().then(()=>{E.value=!0,P.parent&&is(P.parent.vnode)&&ka(P.parent.update)}).catch(H=>{D(H),Y.value=H}),()=>{if(E.value&&C)return ri(C,P);if(Y.value&&h)return t(h,{error:Y.value});if(r&&!O.value)return t(r)}}})}function ri(n,l){const{ref:r,props:h,children:u,ce:g}=l.vnode,v=t(n,h,u);return v.ref=r,v.ce=g,delete l.vnode.ce,v}const is=n=>n.type.__isKeepAlive,$w={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(n,{slots:l}){const r=nl(),h=r.ctx;if(!h.renderer)return()=>{const H=l.default&&l.default();return H&&H.length===1?H[0]:H};const u=new Map,g=new Set;let v=null;const b=r.suspense,{renderer:{p:z,m:C,um:S,o:{createElement:A}}}=h,B=A("div");h.activate=(H,U,W,_,tt)=>{const nt=H.component;C(H,U,W,0,b),z(nt.vnode,H,U,W,nt,b,_,H.slotScopeIds,tt),qe(()=>{nt.isDeactivated=!1,nt.a&&So(nt.a);const q=H.props&&H.props.onVnodeMounted;q&&un(q,nt.parent,H)},b)},h.deactivate=H=>{const U=H.component;C(H,B,null,1,b),qe(()=>{U.da&&So(U.da);const W=H.props&&H.props.onVnodeUnmounted;W&&un(W,U.parent,H),U.isDeactivated=!0},b)};function P(H){oi(H),S(H,r,b,!0)}function D(H){u.forEach((U,W)=>{const _=Ri(U.type);_&&(!H||!H(_))&&E(W)})}function E(H){const U=u.get(H);!v||!Vn(U,v)?P(U):v&&oi(v),u.delete(H),g.delete(H)}Vt(()=>[n.include,n.exclude],([H,U])=>{H&&D(W=>xo(H,W)),U&&D(W=>!xo(U,W))},{flush:"post",deep:!0});let Y=null;const O=()=>{Y!=null&&u.set(Y,si(r.subTree))};return Te(O),Ia(O),Ue(()=>{u.forEach(H=>{const{subTree:U,suspense:W}=r,_=si(U);if(H.type===_.type&&H.key===_.key){oi(_);const tt=_.component.da;tt&&qe(tt,W);return}P(H)})}),()=>{if(Y=null,!l.default)return null;const H=l.default(),U=H[0];if(H.length>1)return v=null,H;if(!Ol(U)||!(U.shapeFlag&4)&&!(U.shapeFlag&128))return v=null,U;let W=si(U);const _=W.type,tt=Ri(sr(W)?W.type.__asyncResolved||{}:_),{include:nt,exclude:q,max:G}=n;if(nt&&(!tt||!xo(nt,tt))||q&&tt&&xo(q,tt))return v=W,U;const et=W.key==null?_:W.key,st=u.get(et);return W.el&&(W=Xn(W),U.shapeFlag&128&&(U.ssContent=W)),Y=et,st?(W.el=st.el,W.component=st.component,W.transition&&cr(W,W.transition),W.shapeFlag|=512,g.delete(et),g.add(et)):(g.add(et),G&&g.size>parseInt(G,10)&&E(g.values().next().value)),W.shapeFlag|=256,v=W,Rd(U.type)?U:W}}},Aw=$w;function xo(n,l){return oe(n)?n.some(r=>xo(r,l)):Oe(n)?n.split(",").includes(l):Wg(n)?n.test(l):!1}function th(n,l){qd(n,"a",l)}function eh(n,l){qd(n,"da",l)}function qd(n,l,r=Le){const h=n.__wdc||(n.__wdc=()=>{let u=r;for(;u;){if(u.isDeactivated)return;u=u.parent}return n()});if(za(l,h,r),r){let u=r.parent;for(;u&&u.parent;)is(u.parent.vnode)&&Bw(h,l,r,u),u=u.parent}}function Bw(n,l,r,h){const u=za(l,n,h,!0);ya(()=>{X0(h[l],u)},r)}function oi(n){n.shapeFlag&=-257,n.shapeFlag&=-513}function si(n){return n.shapeFlag&128?n.ssContent:n}function za(n,l,r=Le,h=!1){if(r){const u=r[n]||(r[n]=[]),g=l.__weh||(l.__weh=(...v)=>{if(r.isUnmounted)return;to(),Tl(r);const b=zn(l,r,n,v);return Ll(),eo(),b});return h?u.unshift(g):u.push(g),g}}const ml=n=>(l,r=Le)=>(!Xr||n==="sp")&&za(n,(...h)=>l(...h),r),hs=ml("bm"),Te=ml("m"),nh=ml("bu"),Ia=ml("u"),Ue=ml("bum"),ya=ml("um"),Yd=ml("sp"),Gd=ml("rtg"),Ud=ml("rtc");function Zd(n,l=Le){za("ec",n,l)}const lh="components",Hw="directives";function Nw(n,l){return rh(lh,n,!0,l)||n}const Kd=Symbol.for("v-ndc");function Qd(n){return Oe(n)?rh(lh,n,!1)||n:n||Kd}function mn(n){return rh(Hw,n)}function rh(n,l,r=!0,h=!1){const u=Ve||Le;if(u){const g=u.type;if(n===lh){const b=Ri(g,!1);if(b&&(b===l||b===In(l)||b===fl(In(l))))return g}const v=m2(u[n]||g[n],l)||m2(u.appContext[n],l);return!v&&h?g:v}}function m2(n,l){return n&&(n[l]||n[In(l)]||n[fl(In(l))])}function jw(n,l,r,h){let u;const g=r&&r[h];if(oe(n)||Oe(n)){u=new Array(n.length);for(let v=0,b=n.length;vl(v,b,void 0,g&&g[b]));else{const v=Object.keys(n);u=new Array(v.length);for(let b=0,z=v.length;b{const g=h.fn(...u);return g&&(g.key=h.key),g}:h.fn)}return n}function Lw(n,l,r={},h,u){if(Ve.isCE||Ve.parent&&sr(Ve.parent)&&Ve.parent.isCE)return l!=="default"&&(r.name=l),t("slot",r,h&&h());let g=n[l];g&&g._c&&(g._d=!1),ds();const v=g&&Jd(g(r)),b=Ca(Zt,{key:r.key||v&&v.key||`_${l}`},v||(h?h():[]),v&&n._===1?64:-2);return!u&&b.scopeId&&(b.slotScopeIds=[b.scopeId+"-s"]),g&&g._c&&(g._d=!0),b}function Jd(n){return n.some(l=>Ol(l)?!(l.type===nn||l.type===Zt&&!Jd(l.children)):!0)?n:null}function Dw(n,l){const r={};for(const h in n)r[l&&/[A-Z]/.test(h)?`on:${h}`:Co(h)]=n[h];return r}const Hi=n=>n?kc(n)?$a(n)||n.proxy:Hi(n.parent):null,$o=_e(Object.create(null),{$:n=>n,$el:n=>n.vnode.el,$data:n=>n.data,$props:n=>n.props,$attrs:n=>n.attrs,$slots:n=>n.slots,$refs:n=>n.refs,$parent:n=>Hi(n.parent),$root:n=>Hi(n.root),$emit:n=>n.emit,$options:n=>oh(n),$forceUpdate:n=>n.f||(n.f=()=>ka(n.update)),$nextTick:n=>n.n||(n.n=pe.bind(n.proxy)),$watch:n=>yw.bind(n)}),ai=(n,l)=>n!==ze&&!n.__isScriptSetup&&ve(n,l),Ni={get({_:n},l){const{ctx:r,setupState:h,data:u,props:g,accessCache:v,type:b,appContext:z}=n;let C;if(l[0]!=="$"){const P=v[l];if(P!==void 0)switch(P){case 1:return h[l];case 2:return u[l];case 4:return r[l];case 3:return g[l]}else{if(ai(h,l))return v[l]=1,h[l];if(u!==ze&&ve(u,l))return v[l]=2,u[l];if((C=n.propsOptions[0])&&ve(C,l))return v[l]=3,g[l];if(r!==ze&&ve(r,l))return v[l]=4,r[l];ji&&(v[l]=0)}}const S=$o[l];let A,B;if(S)return l==="$attrs"&&wn(n,"get",l),S(n);if((A=b.__cssModules)&&(A=A[l]))return A;if(r!==ze&&ve(r,l))return v[l]=4,r[l];if(B=z.config.globalProperties,ve(B,l))return B[l]},set({_:n},l,r){const{data:h,setupState:u,ctx:g}=n;return ai(u,l)?(u[l]=r,!0):h!==ze&&ve(h,l)?(h[l]=r,!0):ve(n.props,l)||l[0]==="$"&&l.slice(1)in n?!1:(g[l]=r,!0)},has({_:{data:n,setupState:l,accessCache:r,ctx:h,appContext:u,propsOptions:g}},v){let b;return!!r[v]||n!==ze&&ve(n,v)||ai(l,v)||(b=g[0])&&ve(b,v)||ve(h,v)||ve($o,v)||ve(u.config.globalProperties,v)},defineProperty(n,l,r){return r.get!=null?n._.accessCache[l]=0:ve(r,"value")&&this.set(n,l,r.value,null),Reflect.defineProperty(n,l,r)}},Fw=_e({},Ni,{get(n,l){if(l!==Symbol.unscopables)return Ni.get(n,l,n)},has(n,l){return l[0]!=="_"&&!Zg(l)}});function Ow(){return null}function Tw(){return null}function Rw(n){}function Ew(n){}function Vw(){return null}function _w(){}function Ww(n,l){return null}function Xw(){return tc().slots}function qw(){return tc().attrs}function Yw(n,l,r){const h=nl();if(r&&r.local){const u=Pt(n[l]);return Vt(()=>n[l],g=>u.value=g),Vt(u,g=>{g!==n[l]&&h.emit(`update:${l}`,g)}),u}else return{__v_isRef:!0,get value(){return n[l]},set value(u){h.emit(`update:${l}`,u)}}}function tc(){const n=nl();return n.setupContext||(n.setupContext=xc(n))}function _o(n){return oe(n)?n.reduce((l,r)=>(l[r]=null,l),{}):n}function Gw(n,l){const r=_o(n);for(const h in l){if(h.startsWith("__skip"))continue;let u=r[h];u?oe(u)||re(u)?u=r[h]={type:u,default:l[h]}:u.default=l[h]:u===null&&(u=r[h]={default:l[h]}),u&&l[`__skip_${h}`]&&(u.skipFactory=!0)}return r}function Uw(n,l){return!n||!l?n||l:oe(n)&&oe(l)?n.concat(l):_e({},_o(n),_o(l))}function Zw(n,l){const r={};for(const h in n)l.includes(h)||Object.defineProperty(r,h,{enumerable:!0,get:()=>n[h]});return r}function Kw(n){const l=nl();let r=n();return Ll(),q0(r)&&(r=r.catch(h=>{throw Tl(l),h})),[r,()=>Tl(l)]}let ji=!0;function Qw(n){const l=oh(n),r=n.proxy,h=n.ctx;ji=!1,l.beforeCreate&&k2(l.beforeCreate,n,"bc");const{data:u,computed:g,methods:v,watch:b,provide:z,inject:C,created:S,beforeMount:A,mounted:B,beforeUpdate:P,updated:D,activated:E,deactivated:Y,beforeDestroy:O,beforeUnmount:H,destroyed:U,unmounted:W,render:_,renderTracked:tt,renderTriggered:nt,errorCaptured:q,serverPrefetch:G,expose:et,inheritAttrs:st,components:rt,directives:ht,filters:dt}=l;if(C&&Jw(C,h,null),v)for(const wt in v){const gt=v[wt];re(gt)&&(h[wt]=gt.bind(r))}if(u){const wt=u.call(r,r);De(wt)&&(n.data=Ye(wt))}if(ji=!0,g)for(const wt in g){const gt=g[wt],It=re(gt)?gt.bind(r,r):re(gt.get)?gt.get.bind(r,r):Jn,$t=!re(gt)&&re(gt.set)?gt.set.bind(r):Jn,Tt=X({get:It,set:$t});Object.defineProperty(h,wt,{enumerable:!0,configurable:!0,get:()=>Tt.value,set:Ft=>Tt.value=Ft})}if(b)for(const wt in b)ec(b[wt],h,r,wt);if(z){const wt=re(z)?z.call(r):z;Reflect.ownKeys(wt).forEach(gt=>{ye(gt,wt[gt])})}S&&k2(S,n,"c");function xt(wt,gt){oe(gt)?gt.forEach(It=>wt(It.bind(r))):gt&&wt(gt.bind(r))}if(xt(hs,A),xt(Te,B),xt(nh,P),xt(Ia,D),xt(th,E),xt(eh,Y),xt(Zd,q),xt(Ud,tt),xt(Gd,nt),xt(Ue,H),xt(ya,W),xt(Yd,G),oe(et))if(et.length){const wt=n.exposed||(n.exposed={});et.forEach(gt=>{Object.defineProperty(wt,gt,{get:()=>r[gt],set:It=>r[gt]=It})})}else n.exposed||(n.exposed={});_&&n.render===Jn&&(n.render=_),st!=null&&(n.inheritAttrs=st),rt&&(n.components=rt),ht&&(n.directives=ht)}function Jw(n,l,r=Jn){oe(n)&&(n=Pi(n));for(const h in n){const u=n[h];let g;De(u)?"default"in u?g=he(u.from||h,u.default,!0):g=he(u.from||h):g=he(u),ke(g)?Object.defineProperty(l,h,{enumerable:!0,configurable:!0,get:()=>g.value,set:v=>g.value=v}):l[h]=g}}function k2(n,l,r){zn(oe(n)?n.map(h=>h.bind(l.proxy)):n.bind(l.proxy),l,r)}function ec(n,l,r,h){const u=h.includes(".")?_d(r,h):()=>r[h];if(Oe(n)){const g=l[n];re(g)&&Vt(u,g)}else if(re(n))Vt(u,n.bind(r));else if(De(n))if(oe(n))n.forEach(g=>ec(g,l,r,h));else{const g=re(n.handler)?n.handler.bind(r):l[n.handler];re(g)&&Vt(u,g,n)}}function oh(n){const l=n.type,{mixins:r,extends:h}=l,{mixins:u,optionsCache:g,config:{optionMergeStrategies:v}}=n.appContext,b=g.get(l);let z;return b?z=b:!u.length&&!r&&!h?z=l:(z={},u.length&&u.forEach(C=>Zs(z,C,v,!0)),Zs(z,l,v)),De(l)&&g.set(l,z),z}function Zs(n,l,r,h=!1){const{mixins:u,extends:g}=l;g&&Zs(n,g,r,!0),u&&u.forEach(v=>Zs(n,v,r,!0));for(const v in l)if(!(h&&v==="expose")){const b=tv[v]||r&&r[v];n[v]=b?b(n[v],l[v]):l[v]}return n}const tv={data:b2,props:M2,emits:M2,methods:zo,computed:zo,beforeCreate:hn,created:hn,beforeMount:hn,mounted:hn,beforeUpdate:hn,updated:hn,beforeDestroy:hn,beforeUnmount:hn,destroyed:hn,unmounted:hn,activated:hn,deactivated:hn,errorCaptured:hn,serverPrefetch:hn,components:zo,directives:zo,watch:nv,provide:b2,inject:ev};function b2(n,l){return l?n?function(){return _e(re(n)?n.call(this,this):n,re(l)?l.call(this,this):l)}:l:n}function ev(n,l){return zo(Pi(n),Pi(l))}function Pi(n){if(oe(n)){const l={};for(let r=0;r1)return r&&re(l)?l.call(h&&h.proxy):l}}function lc(){return!!(Le||Ve||Wo)}function ov(n,l,r,h=!1){const u={},g={};$i(g,Sa,1),n.propsDefaults=Object.create(null),rc(n,l,u,g);for(const v in n.propsOptions[0])v in u||(u[v]=void 0);r?n.props=h?u:R0(u):n.type.props?n.props=u:n.props=g,n.attrs=g}function sv(n,l,r,h){const{props:u,attrs:g,vnode:{patchFlag:v}}=n,b=ne(u),[z]=n.propsOptions;let C=!1;if((h||v>0)&&!(v&16)){if(v&8){const S=n.vnode.dynamicProps;for(let A=0;A{z=!0;const[B,P]=oc(A,l,!0);_e(v,B),P&&b.push(...P)};!r&&l.mixins.length&&l.mixins.forEach(S),n.extends&&S(n.extends),n.mixins&&n.mixins.forEach(S)}if(!g&&!z)return De(n)&&h.set(n,Rr),Rr;if(oe(g))for(let S=0;S-1,P[1]=E<0||D-1||ve(P,"default"))&&b.push(A)}}}const C=[v,b];return De(n)&&h.set(n,C),C}function x2(n){return n[0]!=="$"}function z2(n){const l=n&&n.toString().match(/^\s*(function|class) (\w+)/);return l?l[2]:n===null?"null":""}function I2(n,l){return z2(n)===z2(l)}function y2(n,l){return oe(l)?l.findIndex(r=>I2(r,n)):re(l)&&I2(l,n)?0:-1}const sc=n=>n[0]==="_"||n==="$stable",sh=n=>oe(n)?n.map(Mn):[Mn(n)],av=(n,l,r)=>{if(l._n)return l;const h=U0((...u)=>sh(l(...u)),r);return h._c=!1,h},ac=(n,l,r)=>{const h=n._ctx;for(const u in n){if(sc(u))continue;const g=n[u];if(re(g))l[u]=av(u,g,h);else if(g!=null){const v=sh(g);l[u]=()=>v}}},ic=(n,l)=>{const r=sh(l);n.slots.default=()=>r},iv=(n,l)=>{if(n.vnode.shapeFlag&32){const r=l._;r?(n.slots=ne(l),$i(l,"_",r)):ac(l,n.slots={})}else n.slots={},l&&ic(n,l);$i(n.slots,Sa,1)},hv=(n,l,r)=>{const{vnode:h,slots:u}=n;let g=!0,v=ze;if(h.shapeFlag&32){const b=l._;b?r&&b===1?g=!1:(_e(u,l),!r&&b===1&&delete u._):(g=!l.$stable,ac(l,u)),v=l}else l&&(ic(n,l),v={default:1});if(g)for(const b in u)!sc(b)&&!(b in v)&&delete u[b]};function Ks(n,l,r,h,u=!1){if(oe(n)){n.forEach((B,P)=>Ks(B,l&&(oe(l)?l[P]:l),r,h,u));return}if(sr(h)&&!u)return;const g=h.shapeFlag&4?$a(h.component)||h.component.proxy:h.el,v=u?null:g,{i:b,r:z}=n,C=l&&l.r,S=b.refs===ze?b.refs={}:b.refs,A=b.setupState;if(C!=null&&C!==z&&(Oe(C)?(S[C]=null,ve(A,C)&&(A[C]=null)):ke(C)&&(C.value=null)),re(z))cl(z,b,12,[v,S]);else{const B=Oe(z),P=ke(z);if(B||P){const D=()=>{if(n.f){const E=B?ve(A,z)?A[z]:S[z]:z.value;u?oe(E)&&X0(E,g):oe(E)?E.includes(g)||E.push(g):B?(S[z]=[g],ve(A,z)&&(A[z]=S[z])):(z.value=[g],n.k&&(S[n.k]=z.value))}else B?(S[z]=v,ve(A,z)&&(A[z]=v)):P&&(z.value=v,n.k&&(S[n.k]=v))};v?(D.id=-1,qe(D,r)):D()}}}let yl=!1;const Bs=n=>/svg/.test(n.namespaceURI)&&n.tagName!=="foreignObject",Hs=n=>n.nodeType===8;function dv(n){const{mt:l,p:r,o:{patchProp:h,createText:u,nextSibling:g,parentNode:v,remove:b,insert:z,createComment:C}}=n,S=(O,H)=>{if(!H.hasChildNodes()){r(null,O,H),Us(),H._vnode=O;return}yl=!1,A(H.firstChild,O,null,null,null),Us(),H._vnode=O,yl&&console.error("Hydration completed but contains mismatches.")},A=(O,H,U,W,_,tt=!1)=>{const nt=Hs(O)&&O.data==="[",q=()=>E(O,H,U,W,_,nt),{type:G,ref:et,shapeFlag:st,patchFlag:rt}=H;let ht=O.nodeType;H.el=O,rt===-2&&(tt=!1,H.dynamicChildren=null);let dt=null;switch(G){case Fl:ht!==3?H.children===""?(z(H.el=u(""),v(O),O),dt=O):dt=q():(O.data!==H.children&&(yl=!0,O.data=H.children),dt=g(O));break;case nn:ht!==8||nt?dt=q():dt=g(O);break;case ar:if(nt&&(O=g(O),ht=O.nodeType),ht===1||ht===3){dt=O;const Ct=!H.children.length;for(let xt=0;xt{tt=tt||!!H.dynamicChildren;const{type:nt,props:q,patchFlag:G,shapeFlag:et,dirs:st}=H,rt=nt==="input"&&st||nt==="option";if(rt||G!==-1){if(st&&Zn(H,null,U,"created"),q)if(rt||!tt||G&48)for(const dt in q)(rt&&dt.endsWith("value")||wa(dt)&&!yo(dt))&&h(O,dt,null,q[dt],!1,void 0,U);else q.onClick&&h(O,"onClick",null,q.onClick,!1,void 0,U);let ht;if((ht=q&&q.onVnodeBeforeMount)&&un(ht,U,H),st&&Zn(H,null,U,"beforeMount"),((ht=q&&q.onVnodeMounted)||st)&&Ed(()=>{ht&&un(ht,U,H),st&&Zn(H,null,U,"mounted")},W),et&16&&!(q&&(q.innerHTML||q.textContent))){let dt=P(O.firstChild,H,O,U,W,_,tt);for(;dt;){yl=!0;const Ct=dt;dt=dt.nextSibling,b(Ct)}}else et&8&&O.textContent!==H.children&&(yl=!0,O.textContent=H.children)}return O.nextSibling},P=(O,H,U,W,_,tt,nt)=>{nt=nt||!!H.dynamicChildren;const q=H.children,G=q.length;for(let et=0;et{const{slotScopeIds:nt}=H;nt&&(_=_?_.concat(nt):nt);const q=v(O),G=P(g(O),H,q,U,W,_,tt);return G&&Hs(G)&&G.data==="]"?g(H.anchor=G):(yl=!0,z(H.anchor=C("]"),q,G),G)},E=(O,H,U,W,_,tt)=>{if(yl=!0,H.el=null,tt){const G=Y(O);for(;;){const et=g(O);if(et&&et!==G)b(et);else break}}const nt=g(O),q=v(O);return b(O),r(null,H,q,nt,U,W,Bs(q),_),nt},Y=O=>{let H=0;for(;O;)if(O=g(O),O&&Hs(O)&&(O.data==="["&&H++,O.data==="]")){if(H===0)return g(O);H--}return O};return[S,A]}const qe=Ed;function hc(n){return cc(n)}function dc(n){return cc(n,dv)}function cc(n,l){const r=Ai();r.__VUE__=!0;const{insert:h,remove:u,patchProp:g,createElement:v,createText:b,createComment:z,setText:C,setElementText:S,parentNode:A,nextSibling:B,setScopeId:P=Jn,insertStaticContent:D}=n,E=(J,lt,at,ct=null,kt=null,yt=null,Dt=!1,St=null,Ot=!!lt.dynamicChildren)=>{if(J===lt)return;J&&!Vn(J,lt)&&(ct=pt(J),Ft(J,kt,yt,!0),J=null),lt.patchFlag===-2&&(Ot=!1,lt.dynamicChildren=null);const{type:jt,ref:Ut,shapeFlag:Yt}=lt;switch(jt){case Fl:Y(J,lt,at,ct);break;case nn:O(J,lt,at,ct);break;case ar:J==null&&H(lt,at,ct,Dt);break;case Zt:rt(J,lt,at,ct,kt,yt,Dt,St,Ot);break;default:Yt&1?_(J,lt,at,ct,kt,yt,Dt,St,Ot):Yt&6?ht(J,lt,at,ct,kt,yt,Dt,St,Ot):(Yt&64||Yt&128)&&jt.process(J,lt,at,ct,kt,yt,Dt,St,Ot,Nt)}Ut!=null&&kt&&Ks(Ut,J&&J.ref,yt,lt||J,!lt)},Y=(J,lt,at,ct)=>{if(J==null)h(lt.el=b(lt.children),at,ct);else{const kt=lt.el=J.el;lt.children!==J.children&&C(kt,lt.children)}},O=(J,lt,at,ct)=>{J==null?h(lt.el=z(lt.children||""),at,ct):lt.el=J.el},H=(J,lt,at,ct)=>{[J.el,J.anchor]=D(J.children,lt,at,ct,J.el,J.anchor)},U=({el:J,anchor:lt},at,ct)=>{let kt;for(;J&&J!==lt;)kt=B(J),h(J,at,ct),J=kt;h(lt,at,ct)},W=({el:J,anchor:lt})=>{let at;for(;J&&J!==lt;)at=B(J),u(J),J=at;u(lt)},_=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{Dt=Dt||lt.type==="svg",J==null?tt(lt,at,ct,kt,yt,Dt,St,Ot):G(J,lt,kt,yt,Dt,St,Ot)},tt=(J,lt,at,ct,kt,yt,Dt,St)=>{let Ot,jt;const{type:Ut,props:Yt,shapeFlag:Gt,transition:Jt,dirs:se}=J;if(Ot=J.el=v(J.type,yt,Yt&&Yt.is,Yt),Gt&8?S(Ot,J.children):Gt&16&&q(J.children,Ot,null,ct,kt,yt&&Ut!=="foreignObject",Dt,St),se&&Zn(J,null,ct,"created"),nt(Ot,J,J.scopeId,Dt,ct),Yt){for(const ue in Yt)ue!=="value"&&!yo(ue)&&g(Ot,ue,null,Yt[ue],yt,J.children,ct,kt,ut);"value"in Yt&&g(Ot,"value",null,Yt.value),(jt=Yt.onVnodeBeforeMount)&&un(jt,ct,J)}se&&Zn(J,null,ct,"beforeMount");const me=(!kt||kt&&!kt.pendingBranch)&&Jt&&!Jt.persisted;me&&Jt.beforeEnter(Ot),h(Ot,lt,at),((jt=Yt&&Yt.onVnodeMounted)||me||se)&&qe(()=>{jt&&un(jt,ct,J),me&&Jt.enter(Ot),se&&Zn(J,null,ct,"mounted")},kt)},nt=(J,lt,at,ct,kt)=>{if(at&&P(J,at),ct)for(let yt=0;yt{for(let jt=Ot;jt{const St=lt.el=J.el;let{patchFlag:Ot,dynamicChildren:jt,dirs:Ut}=lt;Ot|=J.patchFlag&16;const Yt=J.props||ze,Gt=lt.props||ze;let Jt;at&&Zl(at,!1),(Jt=Gt.onVnodeBeforeUpdate)&&un(Jt,at,lt,J),Ut&&Zn(lt,J,at,"beforeUpdate"),at&&Zl(at,!0);const se=kt&<.type!=="foreignObject";if(jt?et(J.dynamicChildren,jt,St,at,ct,se,yt):Dt||gt(J,lt,St,null,at,ct,se,yt,!1),Ot>0){if(Ot&16)st(St,lt,Yt,Gt,at,ct,kt);else if(Ot&2&&Yt.class!==Gt.class&&g(St,"class",null,Gt.class,kt),Ot&4&&g(St,"style",Yt.style,Gt.style,kt),Ot&8){const me=lt.dynamicProps;for(let ue=0;ue{Jt&&un(Jt,at,lt,J),Ut&&Zn(lt,J,at,"updated")},ct)},et=(J,lt,at,ct,kt,yt,Dt)=>{for(let St=0;St{if(at!==ct){if(at!==ze)for(const St in at)!yo(St)&&!(St in ct)&&g(J,St,at[St],null,Dt,lt.children,kt,yt,ut);for(const St in ct){if(yo(St))continue;const Ot=ct[St],jt=at[St];Ot!==jt&&St!=="value"&&g(J,St,jt,Ot,Dt,lt.children,kt,yt,ut)}"value"in ct&&g(J,"value",at.value,ct.value)}},rt=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{const jt=lt.el=J?J.el:b(""),Ut=lt.anchor=J?J.anchor:b("");let{patchFlag:Yt,dynamicChildren:Gt,slotScopeIds:Jt}=lt;Jt&&(St=St?St.concat(Jt):Jt),J==null?(h(jt,at,ct),h(Ut,at,ct),q(lt.children,at,Ut,kt,yt,Dt,St,Ot)):Yt>0&&Yt&64&&Gt&&J.dynamicChildren?(et(J.dynamicChildren,Gt,at,kt,yt,Dt,St),(lt.key!=null||kt&<===kt.subTree)&&ah(J,lt,!0)):gt(J,lt,at,Ut,kt,yt,Dt,St,Ot)},ht=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{lt.slotScopeIds=St,J==null?lt.shapeFlag&512?kt.ctx.activate(lt,at,ct,Dt,Ot):dt(lt,at,ct,kt,yt,Dt,Ot):Ct(J,lt,Ot)},dt=(J,lt,at,ct,kt,yt,Dt)=>{const St=J.component=mc(J,ct,kt);if(is(J)&&(St.ctx.renderer=Nt),bc(St),St.asyncDep){if(kt&&kt.registerDep(St,xt),!J.el){const Ot=St.subTree=t(nn);O(null,Ot,lt,at)}return}xt(St,J,lt,at,kt,yt,Dt)},Ct=(J,lt,at)=>{const ct=lt.component=J.component;if(vw(J,lt,at))if(ct.asyncDep&&!ct.asyncResolved){wt(ct,lt,at);return}else ct.next=lt,aw(ct.update),ct.update();else lt.el=J.el,ct.vnode=lt},xt=(J,lt,at,ct,kt,yt,Dt)=>{const St=()=>{if(J.isMounted){let{next:Ut,bu:Yt,u:Gt,parent:Jt,vnode:se}=J,me=Ut,ue;Zl(J,!1),Ut?(Ut.el=se.el,wt(J,Ut,Dt)):Ut=se,Yt&&So(Yt),(ue=Ut.props&&Ut.props.onVnodeBeforeUpdate)&&un(ue,Jt,Ut,se),Zl(J,!0);const Se=_s(J),kn=J.subTree;J.subTree=Se,E(kn,Se,A(kn.el),pt(kn),J,kt,yt),Ut.el=Se.el,me===null&&Z0(J,Se.el),Gt&&qe(Gt,kt),(ue=Ut.props&&Ut.props.onVnodeUpdated)&&qe(()=>un(ue,Jt,Ut,se),kt)}else{let Ut;const{el:Yt,props:Gt}=lt,{bm:Jt,m:se,parent:me}=J,ue=sr(lt);if(Zl(J,!1),Jt&&So(Jt),!ue&&(Ut=Gt&&Gt.onVnodeBeforeMount)&&un(Ut,me,lt),Zl(J,!0),Yt&&ft){const Se=()=>{J.subTree=_s(J),ft(Yt,J.subTree,J,kt,null)};ue?lt.type.__asyncLoader().then(()=>!J.isUnmounted&&Se()):Se()}else{const Se=J.subTree=_s(J);E(null,Se,at,ct,J,kt,yt),lt.el=Se.el}if(se&&qe(se,kt),!ue&&(Ut=Gt&&Gt.onVnodeMounted)){const Se=lt;qe(()=>un(Ut,me,Se),kt)}(lt.shapeFlag&256||me&&sr(me.vnode)&&me.vnode.shapeFlag&256)&&J.a&&qe(J.a,kt),J.isMounted=!0,lt=at=ct=null}},Ot=J.effect=new ns(St,()=>ka(jt),J.scope),jt=J.update=()=>Ot.run();jt.id=J.uid,Zl(J,!0),jt()},wt=(J,lt,at)=>{lt.component=J;const ct=J.vnode.props;J.vnode=lt,J.next=null,sv(J,lt.props,ct,at),hv(J,lt.children,at),to(),g2(),eo()},gt=(J,lt,at,ct,kt,yt,Dt,St,Ot=!1)=>{const jt=J&&J.children,Ut=J?J.shapeFlag:0,Yt=lt.children,{patchFlag:Gt,shapeFlag:Jt}=lt;if(Gt>0){if(Gt&128){$t(jt,Yt,at,ct,kt,yt,Dt,St,Ot);return}else if(Gt&256){It(jt,Yt,at,ct,kt,yt,Dt,St,Ot);return}}Jt&8?(Ut&16&&ut(jt,kt,yt),Yt!==jt&&S(at,Yt)):Ut&16?Jt&16?$t(jt,Yt,at,ct,kt,yt,Dt,St,Ot):ut(jt,kt,yt,!0):(Ut&8&&S(at,""),Jt&16&&q(Yt,at,ct,kt,yt,Dt,St,Ot))},It=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{J=J||Rr,lt=lt||Rr;const jt=J.length,Ut=lt.length,Yt=Math.min(jt,Ut);let Gt;for(Gt=0;GtUt?ut(J,kt,yt,!0,!1,Yt):q(lt,at,ct,kt,yt,Dt,St,Ot,Yt)},$t=(J,lt,at,ct,kt,yt,Dt,St,Ot)=>{let jt=0;const Ut=lt.length;let Yt=J.length-1,Gt=Ut-1;for(;jt<=Yt&&jt<=Gt;){const Jt=J[jt],se=lt[jt]=Ot?Bl(lt[jt]):Mn(lt[jt]);if(Vn(Jt,se))E(Jt,se,at,null,kt,yt,Dt,St,Ot);else break;jt++}for(;jt<=Yt&&jt<=Gt;){const Jt=J[Yt],se=lt[Gt]=Ot?Bl(lt[Gt]):Mn(lt[Gt]);if(Vn(Jt,se))E(Jt,se,at,null,kt,yt,Dt,St,Ot);else break;Yt--,Gt--}if(jt>Yt){if(jt<=Gt){const Jt=Gt+1,se=JtGt)for(;jt<=Yt;)Ft(J[jt],kt,yt,!0),jt++;else{const Jt=jt,se=jt,me=new Map;for(jt=se;jt<=Gt;jt++){const an=lt[jt]=Ot?Bl(lt[jt]):Mn(lt[jt]);an.key!=null&&me.set(an.key,jt)}let ue,Se=0;const kn=Gt-se+1;let ll=!1,bs=0;const zl=new Array(kn);for(jt=0;jt=kn){Ft(an,kt,yt,!0);continue}let Sn;if(an.key!=null)Sn=me.get(an.key);else for(ue=se;ue<=Gt;ue++)if(zl[ue-se]===0&&Vn(an,lt[ue])){Sn=ue;break}Sn===void 0?Ft(an,kt,yt,!0):(zl[Sn-se]=jt+1,Sn>=bs?bs=Sn:ll=!0,E(an,lt[Sn],at,null,kt,yt,Dt,St,Ot),Se++)}const Ms=ll?cv(zl):Rr;for(ue=Ms.length-1,jt=kn-1;jt>=0;jt--){const an=se+jt,Sn=lt[an],wo=an+1{const{el:yt,type:Dt,transition:St,children:Ot,shapeFlag:jt}=J;if(jt&6){Tt(J.component.subTree,lt,at,ct);return}if(jt&128){J.suspense.move(lt,at,ct);return}if(jt&64){Dt.move(J,lt,at,Nt);return}if(Dt===Zt){h(yt,lt,at);for(let Yt=0;YtSt.enter(yt),kt);else{const{leave:Yt,delayLeave:Gt,afterLeave:Jt}=St,se=()=>h(yt,lt,at),me=()=>{Yt(yt,()=>{se(),Jt&&Jt()})};Gt?Gt(yt,se,me):me()}else h(yt,lt,at)},Ft=(J,lt,at,ct=!1,kt=!1)=>{const{type:yt,props:Dt,ref:St,children:Ot,dynamicChildren:jt,shapeFlag:Ut,patchFlag:Yt,dirs:Gt}=J;if(St!=null&&Ks(St,null,at,J,!0),Ut&256){lt.ctx.deactivate(J);return}const Jt=Ut&1&&Gt,se=!sr(J);let me;if(se&&(me=Dt&&Dt.onVnodeBeforeUnmount)&&un(me,lt,J),Ut&6)Rt(J.component,at,ct);else{if(Ut&128){J.suspense.unmount(at,ct);return}Jt&&Zn(J,null,lt,"beforeUnmount"),Ut&64?J.type.remove(J,lt,at,kt,Nt,ct):jt&&(yt!==Zt||Yt>0&&Yt&64)?ut(jt,lt,at,!1,!0):(yt===Zt&&Yt&384||!kt&&Ut&16)&&ut(Ot,lt,at),ct&&Kt(J)}(se&&(me=Dt&&Dt.onVnodeUnmounted)||Jt)&&qe(()=>{me&&un(me,lt,J),Jt&&Zn(J,null,lt,"unmounted")},at)},Kt=J=>{const{type:lt,el:at,anchor:ct,transition:kt}=J;if(lt===Zt){Qt(at,ct);return}if(lt===ar){W(J);return}const yt=()=>{u(at),kt&&!kt.persisted&&kt.afterLeave&&kt.afterLeave()};if(J.shapeFlag&1&&kt&&!kt.persisted){const{leave:Dt,delayLeave:St}=kt,Ot=()=>Dt(at,yt);St?St(J.el,yt,Ot):Ot()}else yt()},Qt=(J,lt)=>{let at;for(;J!==lt;)at=B(J),u(J),J=at;u(lt)},Rt=(J,lt,at)=>{const{bum:ct,scope:kt,update:yt,subTree:Dt,um:St}=J;ct&&So(ct),kt.stop(),yt&&(yt.active=!1,Ft(Dt,J,lt,at)),St&&qe(St,lt),qe(()=>{J.isUnmounted=!0},lt),lt&<.pendingBranch&&!lt.isUnmounted&&J.asyncDep&&!J.asyncResolved&&J.suspenseId===lt.pendingId&&(lt.deps--,lt.deps===0&<.resolve())},ut=(J,lt,at,ct=!1,kt=!1,yt=0)=>{for(let Dt=yt;DtJ.shapeFlag&6?pt(J.component.subTree):J.shapeFlag&128?J.suspense.next():B(J.anchor||J.el),Ht=(J,lt,at)=>{J==null?lt._vnode&&Ft(lt._vnode,null,null,!0):E(lt._vnode||null,J,lt,null,null,null,at),g2(),Us(),lt._vnode=J},Nt={p:E,um:Ft,m:Tt,r:Kt,mt:dt,mc:q,pc:gt,pbc:et,n:pt,o:n};let bt,ft;return l&&([bt,ft]=l(Nt)),{render:Ht,hydrate:bt,createApp:rv(Ht,bt)}}function Zl({effect:n,update:l},r){n.allowRecurse=l.allowRecurse=r}function ah(n,l,r=!1){const h=n.children,u=l.children;if(oe(h)&&oe(u))for(let g=0;g>1,n[r[b]]0&&(l[h]=r[g-1]),r[g]=h)}}for(g=r.length,v=r[g-1];g-- >0;)r[g]=v,v=l[v];return r}const uv=n=>n.__isTeleport,Ao=n=>n&&(n.disabled||n.disabled===""),C2=n=>typeof SVGElement<"u"&&n instanceof SVGElement,Di=(n,l)=>{const r=n&&n.to;return Oe(r)?l?l(r):null:r},pv={__isTeleport:!0,process(n,l,r,h,u,g,v,b,z,C){const{mc:S,pc:A,pbc:B,o:{insert:P,querySelector:D,createText:E,createComment:Y}}=C,O=Ao(l.props);let{shapeFlag:H,children:U,dynamicChildren:W}=l;if(n==null){const _=l.el=E(""),tt=l.anchor=E("");P(_,r,h),P(tt,r,h);const nt=l.target=Di(l.props,D),q=l.targetAnchor=E("");nt&&(P(q,nt),v=v||C2(nt));const G=(et,st)=>{H&16&&S(U,et,st,u,g,v,b,z)};O?G(r,tt):nt&&G(nt,q)}else{l.el=n.el;const _=l.anchor=n.anchor,tt=l.target=n.target,nt=l.targetAnchor=n.targetAnchor,q=Ao(n.props),G=q?r:tt,et=q?_:nt;if(v=v||C2(tt),W?(B(n.dynamicChildren,W,G,u,g,v,b),ah(n,l,!0)):z||A(n,l,G,et,u,g,v,b,!1),O)q||Ns(l,r,_,C,1);else if((l.props&&l.props.to)!==(n.props&&n.props.to)){const st=l.target=Di(l.props,D);st&&Ns(l,st,null,C,0)}else q&&Ns(l,tt,nt,C,1)}pc(l)},remove(n,l,r,h,{um:u,o:{remove:g}},v){const{shapeFlag:b,children:z,anchor:C,targetAnchor:S,target:A,props:B}=n;if(A&&g(S),(v||!Ao(B))&&(g(C),b&16))for(let P=0;P0?gn||Rr:null,gc(),ur>0&&gn&&gn.push(n),n}function wv(n,l,r,h,u,g){return wc(ih(n,l,r,h,u,g,!0))}function Ca(n,l,r,h,u){return wc(t(n,l,r,h,u,!0))}function Ol(n){return n?n.__v_isVNode===!0:!1}function Vn(n,l){return n.type===l.type&&n.key===l.key}function vv(n){}const Sa="__vInternal",vc=({key:n})=>n??null,Ws=({ref:n,ref_key:l,ref_for:r})=>(typeof n=="number"&&(n=""+n),n!=null?Oe(n)||ke(n)||re(n)?{i:Ve,r:n,k:l,f:!!r}:n:null);function ih(n,l=null,r=null,h=0,u=null,g=n===Zt?0:1,v=!1,b=!1){const z={__v_isVNode:!0,__v_skip:!0,type:n,props:l,key:l&&vc(l),ref:l&&Ws(l),scopeId:Ma,slotScopeIds:null,children:r,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:g,patchFlag:h,dynamicProps:u,dynamicChildren:null,appContext:null,ctx:Ve};return b?(hh(z,r),g&128&&n.normalize(z)):r&&(z.shapeFlag|=Oe(r)?8:16),ur>0&&!v&&gn&&(z.patchFlag>0||g&6)&&z.patchFlag!==32&&gn.push(z),z}const t=fv;function fv(n,l=null,r=null,h=0,u=null,g=!1){if((!n||n===Kd)&&(n=nn),Ol(n)){const b=Xn(n,l,!0);return r&&hh(b,r),ur>0&&!g&&gn&&(b.shapeFlag&6?gn[gn.indexOf(n)]=b:gn.push(b)),b.patchFlag|=-2,b}if(Cv(n)&&(n=n.__vccOpts),l){l=fc(l);let{class:b,style:z}=l;b&&!Oe(b)&&(l.class=ss(b)),De(z)&&(E0(z)&&!oe(z)&&(z=_e({},z)),l.style=os(z))}const v=Oe(n)?1:Rd(n)?128:uv(n)?64:De(n)?4:re(n)?2:0;return ih(n,l,r,h,u,v,g,!0)}function fc(n){return n?E0(n)||Sa in n?_e({},n):n:null}function Xn(n,l,r=!1){const{props:h,ref:u,patchFlag:g,children:v}=n,b=l?o(h||{},l):h;return{__v_isVNode:!0,__v_skip:!0,type:n.type,props:b,key:b&&vc(b),ref:l&&l.ref?r&&u?oe(u)?u.concat(Ws(l)):[u,Ws(l)]:Ws(l):u,scopeId:n.scopeId,slotScopeIds:n.slotScopeIds,children:v,target:n.target,targetAnchor:n.targetAnchor,staticCount:n.staticCount,shapeFlag:n.shapeFlag,patchFlag:l&&n.type!==Zt?g===-1?16:g|16:g,dynamicProps:n.dynamicProps,dynamicChildren:n.dynamicChildren,appContext:n.appContext,dirs:n.dirs,transition:n.transition,component:n.component,suspense:n.suspense,ssContent:n.ssContent&&Xn(n.ssContent),ssFallback:n.ssFallback&&Xn(n.ssFallback),el:n.el,anchor:n.anchor,ctx:n.ctx,ce:n.ce}}function e(n=" ",l=0){return t(Fl,null,n,l)}function mv(n,l){const r=t(ar,null,n);return r.staticCount=l,r}function kv(n="",l=!1){return l?(ds(),Ca(nn,null,n)):t(nn,null,n)}function Mn(n){return n==null||typeof n=="boolean"?t(nn):oe(n)?t(Zt,null,n.slice()):typeof n=="object"?Bl(n):t(Fl,null,String(n))}function Bl(n){return n.el===null&&n.patchFlag!==-1||n.memo?n:Xn(n)}function hh(n,l){let r=0;const{shapeFlag:h}=n;if(l==null)l=null;else if(oe(l))r=16;else if(typeof l=="object")if(h&65){const u=l.default;u&&(u._c&&(u._d=!1),hh(n,u()),u._c&&(u._d=!0));return}else{r=32;const u=l._;!u&&!(Sa in l)?l._ctx=Ve:u===3&&Ve&&(Ve.slots._===1?l._=1:(l._=2,n.patchFlag|=1024))}else re(l)?(l={default:l,_ctx:Ve},r=32):(l=String(l),h&64?(r=16,l=[e(l)]):r=8);n.children=l,n.shapeFlag|=r}function o(...n){const l={};for(let r=0;rLe||Ve;let dh,$r,S2="__VUE_INSTANCE_SETTERS__";($r=Ai()[S2])||($r=Ai()[S2]=[]),$r.push(n=>Le=n),dh=n=>{$r.length>1?$r.forEach(l=>l(n)):$r[0](n)};const Tl=n=>{dh(n),n.scope.on()},Ll=()=>{Le&&Le.scope.off(),dh(null)};function kc(n){return n.vnode.shapeFlag&4}let Xr=!1;function bc(n,l=!1){Xr=l;const{props:r,children:h}=n.vnode,u=kc(n);ov(n,r,u,l),iv(n,h);const g=u?xv(n,l):void 0;return Xr=!1,g}function xv(n,l){const r=n.type;n.accessCache=Object.create(null),n.proxy=ls(new Proxy(n.ctx,Ni));const{setup:h}=r;if(h){const u=n.setupContext=h.length>1?xc(n):null;Tl(n),to();const g=cl(h,n,0,[n.props,u]);if(eo(),Ll(),q0(g)){if(g.then(Ll,Ll),l)return g.then(v=>{Oi(n,v,l)}).catch(v=>{fr(v,n,0)});n.asyncDep=g}else Oi(n,g,l)}else Mc(n,l)}function Oi(n,l,r){re(l)?n.type.__ssrInlineRender?n.ssrRender=l:n.render=l:De(l)&&(n.setupState=W0(l)),Mc(n,r)}let Qs,Ti;function zv(n){Qs=n,Ti=l=>{l.render._rc&&(l.withProxy=new Proxy(l.ctx,Fw))}}const Iv=()=>!Qs;function Mc(n,l,r){const h=n.type;if(!n.render){if(!l&&Qs&&!h.render){const u=h.template||oh(n).template;if(u){const{isCustomElement:g,compilerOptions:v}=n.appContext.config,{delimiters:b,compilerOptions:z}=h,C=_e(_e({isCustomElement:g,delimiters:b},v),z);h.render=Qs(u,C)}}n.render=h.render||Jn,Ti&&Ti(n)}Tl(n),to(),Qw(n),eo(),Ll()}function yv(n){return n.attrsProxy||(n.attrsProxy=new Proxy(n.attrs,{get(l,r){return wn(n,"get","$attrs"),l[r]}}))}function xc(n){const l=r=>{n.exposed=r||{}};return{get attrs(){return yv(n)},slots:n.slots,emit:n.emit,expose:l}}function $a(n){if(n.exposed)return n.exposeProxy||(n.exposeProxy=new Proxy(W0(ls(n.exposed)),{get(l,r){if(r in l)return l[r];if(r in $o)return $o[r](n)},has(l,r){return r in l||r in $o}}))}function Ri(n,l=!0){return re(n)?n.displayName||n.name:n.name||l&&n.__name}function Cv(n){return re(n)&&"__vccOpts"in n}const X=(n,l)=>Rg(n,l,Xr);function Hn(n,l,r){const h=arguments.length;return h===2?De(l)&&!oe(l)?Ol(l)?t(n,null,[l]):t(n,l):t(n,null,l):(h>3?r=Array.prototype.slice.call(arguments,2):h===3&&Ol(r)&&(r=[r]),t(n,l,r))}const zc=Symbol.for("v-scx"),Ic=()=>he(zc);function Sv(){}function $v(n,l,r,h){const u=r[h];if(u&&yc(u,n))return u;const g=l();return g.memo=n.slice(),r[h]=g}function yc(n,l){const r=n.memo;if(r.length!=l.length)return!1;for(let h=0;h0&&gn&&gn.push(n),!0}const Cc="3.3.4",Av={createComponentInstance:mc,setupComponent:bc,renderComponentRoot:_s,setCurrentRenderingInstance:Eo,isVNode:Ol,normalizeVNode:Mn},Bv=Av,Hv=null,Nv=null;function jv(n,l){const r=Object.create(null),h=n.split(",");for(let u=0;u!!r[u.toLowerCase()]:u=>!!r[u]}const ii={},Pv=/^on[^a-z]/,Lv=n=>Pv.test(n),Dv=n=>n.startsWith("onUpdate:"),cs=Object.assign,vn=Array.isArray,us=n=>$c(n)==="[object Set]",$2=n=>$c(n)==="[object Date]",Sc=n=>typeof n=="function",Xo=n=>typeof n=="string",A2=n=>typeof n=="symbol",Ei=n=>n!==null&&typeof n=="object",Fv=Object.prototype.toString,$c=n=>Fv.call(n),ch=n=>{const l=Object.create(null);return r=>l[r]||(l[r]=n(r))},Ov=/-(\w)/g,hi=ch(n=>n.replace(Ov,(l,r)=>r?r.toUpperCase():"")),Tv=/\B([A-Z])/g,Nl=ch(n=>n.replace(Tv,"-$1").toLowerCase()),Rv=ch(n=>n.charAt(0).toUpperCase()+n.slice(1)),Ev=(n,l)=>{for(let r=0;r{const l=parseFloat(n);return isNaN(l)?n:l},_i=n=>{const l=Xo(n)?Number(n):NaN;return isNaN(l)?n:l},Vv="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",_v=jv(Vv);function Ac(n){return!!n||n===""}function Wv(n,l){if(n.length!==l.length)return!1;let r=!0;for(let h=0;r&&hRl(r,l))}const Xv="http://www.w3.org/2000/svg",er=typeof document<"u"?document:null,B2=er&&er.createElement("template"),qv={insert:(n,l,r)=>{l.insertBefore(n,r||null)},remove:n=>{const l=n.parentNode;l&&l.removeChild(n)},createElement:(n,l,r,h)=>{const u=l?er.createElementNS(Xv,n):er.createElement(n,r?{is:r}:void 0);return n==="select"&&h&&h.multiple!=null&&u.setAttribute("multiple",h.multiple),u},createText:n=>er.createTextNode(n),createComment:n=>er.createComment(n),setText:(n,l)=>{n.nodeValue=l},setElementText:(n,l)=>{n.textContent=l},parentNode:n=>n.parentNode,nextSibling:n=>n.nextSibling,querySelector:n=>er.querySelector(n),setScopeId(n,l){n.setAttribute(l,"")},insertStaticContent(n,l,r,h,u,g){const v=r?r.previousSibling:l.lastChild;if(u&&(u===g||u.nextSibling))for(;l.insertBefore(u.cloneNode(!0),r),!(u===g||!(u=u.nextSibling)););else{B2.innerHTML=h?`${n}`:n;const b=B2.content;if(h){const z=b.firstChild;for(;z.firstChild;)b.appendChild(z.firstChild);b.removeChild(z)}l.insertBefore(b,r)}return[v?v.nextSibling:l.firstChild,r?r.previousSibling:l.lastChild]}};function Yv(n,l,r){const h=n._vtc;h&&(l=(l?[l,...h]:[...h]).join(" ")),l==null?n.removeAttribute("class"):r?n.setAttribute("class",l):n.className=l}function Gv(n,l,r){const h=n.style,u=Xo(r);if(r&&!u){if(l&&!Xo(l))for(const g in l)r[g]==null&&Wi(h,g,"");for(const g in r)Wi(h,g,r[g])}else{const g=h.display;u?l!==r&&(h.cssText=r):l&&n.removeAttribute("style"),"_vod"in n&&(h.display=g)}}const H2=/\s*!important$/;function Wi(n,l,r){if(vn(r))r.forEach(h=>Wi(n,l,h));else if(r==null&&(r=""),l.startsWith("--"))n.setProperty(l,r);else{const h=Uv(n,l);H2.test(r)?n.setProperty(Nl(h),r.replace(H2,""),"important"):n[h]=r}}const N2=["Webkit","Moz","ms"],di={};function Uv(n,l){const r=di[l];if(r)return r;let h=In(l);if(h!=="filter"&&h in n)return di[l]=h;h=Rv(h);for(let u=0;uci||(e3.then(()=>ci=0),ci=Date.now());function l3(n,l){const r=h=>{if(!h._vts)h._vts=Date.now();else if(h._vts<=r.attached)return;zn(r3(h,r.value),l,5,[h])};return r.value=n,r.attached=n3(),r}function r3(n,l){if(vn(l)){const r=n.stopImmediatePropagation;return n.stopImmediatePropagation=()=>{r.call(n),n._stopped=!0},l.map(h=>u=>!u._stopped&&h&&h(u))}else return l}const L2=/^on[a-z]/,o3=(n,l,r,h,u=!1,g,v,b,z)=>{l==="class"?Yv(n,h,u):l==="style"?Gv(n,r,h):Lv(l)?Dv(l)||Jv(n,l,r,h,v):(l[0]==="."?(l=l.slice(1),!0):l[0]==="^"?(l=l.slice(1),!1):s3(n,l,h,u))?Kv(n,l,h,g,v,b,z):(l==="true-value"?n._trueValue=h:l==="false-value"&&(n._falseValue=h),Zv(n,l,h,u))};function s3(n,l,r,h){return h?!!(l==="innerHTML"||l==="textContent"||l in n&&L2.test(l)&&Sc(r)):l==="spellcheck"||l==="draggable"||l==="translate"||l==="form"||l==="list"&&n.tagName==="INPUT"||l==="type"&&n.tagName==="TEXTAREA"||L2.test(l)&&Xo(r)?!1:l in n}function Bc(n,l){const r=mr(n);class h extends Ba{constructor(g){super(r,g,l)}}return h.def=r,h}const a3=n=>Bc(n,qc),i3=typeof HTMLElement<"u"?HTMLElement:class{};class Ba extends i3{constructor(l,r={},h){super(),this._def=l,this._props=r,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&h?h(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,pe(()=>{this._connected||(Yi(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let h=0;h{for(const u of h)this._setAttr(u.attributeName)}).observe(this,{attributes:!0});const l=(h,u=!1)=>{const{props:g,styles:v}=h;let b;if(g&&!vn(g))for(const z in g){const C=g[z];(C===Number||C&&C.type===Number)&&(z in this._props&&(this._props[z]=_i(this._props[z])),(b||(b=Object.create(null)))[hi(z)]=!0)}this._numberProps=b,u&&this._resolveProps(h),this._applyStyles(v),this._update()},r=this._def.__asyncLoader;r?r().then(h=>l(h,!0)):l(this._def)}_resolveProps(l){const{props:r}=l,h=vn(r)?r:Object.keys(r||{});for(const u of Object.keys(this))u[0]!=="_"&&h.includes(u)&&this._setProp(u,this[u],!0,!1);for(const u of h.map(hi))Object.defineProperty(this,u,{get(){return this._getProp(u)},set(g){this._setProp(u,g)}})}_setAttr(l){let r=this.getAttribute(l);const h=hi(l);this._numberProps&&this._numberProps[h]&&(r=_i(r)),this._setProp(h,r,!1)}_getProp(l){return this._props[l]}_setProp(l,r,h=!0,u=!0){r!==this._props[l]&&(this._props[l]=r,u&&this._instance&&this._update(),h&&(r===!0?this.setAttribute(Nl(l),""):typeof r=="string"||typeof r=="number"?this.setAttribute(Nl(l),r+""):r||this.removeAttribute(Nl(l))))}_update(){Yi(this._createVNode(),this.shadowRoot)}_createVNode(){const l=t(this._def,cs({},this._props));return this._instance||(l.ce=r=>{this._instance=r,r.isCE=!0;const h=(g,v)=>{this.dispatchEvent(new CustomEvent(g,{detail:v}))};r.emit=(g,...v)=>{h(g,v),Nl(g)!==g&&h(Nl(g),v)};let u=this;for(;u=u&&(u.parentNode||u.host);)if(u instanceof Ba){r.parent=u._instance,r.provides=u._instance.provides;break}}),l}_applyStyles(l){l&&l.forEach(r=>{const h=document.createElement("style");h.textContent=r,this.shadowRoot.appendChild(h)})}}function h3(n="$style"){{const l=nl();if(!l)return ii;const r=l.type.__cssModules;if(!r)return ii;const h=r[n];return h||ii}}function d3(n){const l=nl();if(!l)return;const r=l.ut=(u=n(l.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${l.uid}"]`)).forEach(g=>qi(g,u))},h=()=>{const u=n(l.proxy);Xi(l.subTree,u),r(u)};Vd(h),Te(()=>{const u=new MutationObserver(h);u.observe(l.subTree.el.parentNode,{childList:!0}),ya(()=>u.disconnect())})}function Xi(n,l){if(n.shapeFlag&128){const r=n.suspense;n=r.activeBranch,r.pendingBranch&&!r.isHydrating&&r.effects.push(()=>{Xi(r.activeBranch,l)})}for(;n.component;)n=n.component.subTree;if(n.shapeFlag&1&&n.el)qi(n.el,l);else if(n.type===Zt)n.children.forEach(r=>Xi(r,l));else if(n.type===ar){let{el:r,anchor:h}=n;for(;r&&(qi(r,l),r!==h);)r=r.nextSibling}}function qi(n,l){if(n.nodeType===1){const r=n.style;for(const h in l)r.setProperty(`--${h}`,l[h])}}const Cl="transition",vo="animation",qn=(n,{slots:l})=>Hn(Wd,Nc(n),l);qn.displayName="Transition";const Hc={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},c3=qn.props=cs({},J0,Hc),Kl=(n,l=[])=>{vn(n)?n.forEach(r=>r(...l)):n&&n(...l)},D2=n=>n?vn(n)?n.some(l=>l.length>1):n.length>1:!1;function Nc(n){const l={};for(const rt in n)rt in Hc||(l[rt]=n[rt]);if(n.css===!1)return l;const{name:r="v",type:h,duration:u,enterFromClass:g=`${r}-enter-from`,enterActiveClass:v=`${r}-enter-active`,enterToClass:b=`${r}-enter-to`,appearFromClass:z=g,appearActiveClass:C=v,appearToClass:S=b,leaveFromClass:A=`${r}-leave-from`,leaveActiveClass:B=`${r}-leave-active`,leaveToClass:P=`${r}-leave-to`}=n,D=u3(u),E=D&&D[0],Y=D&&D[1],{onBeforeEnter:O,onEnter:H,onEnterCancelled:U,onLeave:W,onLeaveCancelled:_,onBeforeAppear:tt=O,onAppear:nt=H,onAppearCancelled:q=U}=l,G=(rt,ht,dt)=>{$l(rt,ht?S:b),$l(rt,ht?C:v),dt&&dt()},et=(rt,ht)=>{rt._isLeaving=!1,$l(rt,A),$l(rt,P),$l(rt,B),ht&&ht()},st=rt=>(ht,dt)=>{const Ct=rt?nt:H,xt=()=>G(ht,rt,dt);Kl(Ct,[ht,xt]),F2(()=>{$l(ht,rt?z:g),ol(ht,rt?S:b),D2(Ct)||O2(ht,h,E,xt)})};return cs(l,{onBeforeEnter(rt){Kl(O,[rt]),ol(rt,g),ol(rt,v)},onBeforeAppear(rt){Kl(tt,[rt]),ol(rt,z),ol(rt,C)},onEnter:st(!1),onAppear:st(!0),onLeave(rt,ht){rt._isLeaving=!0;const dt=()=>et(rt,ht);ol(rt,A),Pc(),ol(rt,B),F2(()=>{rt._isLeaving&&($l(rt,A),ol(rt,P),D2(W)||O2(rt,h,Y,dt))}),Kl(W,[rt,dt])},onEnterCancelled(rt){G(rt,!1),Kl(U,[rt])},onAppearCancelled(rt){G(rt,!0),Kl(q,[rt])},onLeaveCancelled(rt){et(rt),Kl(_,[rt])}})}function u3(n){if(n==null)return null;if(Ei(n))return[ui(n.enter),ui(n.leave)];{const l=ui(n);return[l,l]}}function ui(n){return _i(n)}function ol(n,l){l.split(/\s+/).forEach(r=>r&&n.classList.add(r)),(n._vtc||(n._vtc=new Set)).add(l)}function $l(n,l){l.split(/\s+/).forEach(h=>h&&n.classList.remove(h));const{_vtc:r}=n;r&&(r.delete(l),r.size||(n._vtc=void 0))}function F2(n){requestAnimationFrame(()=>{requestAnimationFrame(n)})}let p3=0;function O2(n,l,r,h){const u=n._endId=++p3,g=()=>{u===n._endId&&h()};if(r)return setTimeout(g,r);const{type:v,timeout:b,propCount:z}=jc(n,l);if(!v)return h();const C=v+"end";let S=0;const A=()=>{n.removeEventListener(C,B),g()},B=P=>{P.target===n&&++S>=z&&A()};setTimeout(()=>{S(r[D]||"").split(", "),u=h(`${Cl}Delay`),g=h(`${Cl}Duration`),v=T2(u,g),b=h(`${vo}Delay`),z=h(`${vo}Duration`),C=T2(b,z);let S=null,A=0,B=0;l===Cl?v>0&&(S=Cl,A=v,B=g.length):l===vo?C>0&&(S=vo,A=C,B=z.length):(A=Math.max(v,C),S=A>0?v>C?Cl:vo:null,B=S?S===Cl?g.length:z.length:0);const P=S===Cl&&/\b(transform|all)(,|$)/.test(h(`${Cl}Property`).toString());return{type:S,timeout:A,propCount:B,hasTransform:P}}function T2(n,l){for(;n.lengthR2(r)+R2(n[h])))}function R2(n){return Number(n.slice(0,-1).replace(",","."))*1e3}function Pc(){return document.body.offsetHeight}const Lc=new WeakMap,Dc=new WeakMap,Fc={name:"TransitionGroup",props:cs({},c3,{tag:String,moveClass:String}),setup(n,{slots:l}){const r=nl(),h=Q0();let u,g;return Ia(()=>{if(!u.length)return;const v=n.moveClass||`${n.name||"v"}-move`;if(!m3(u[0].el,r.vnode.el,v))return;u.forEach(w3),u.forEach(v3);const b=u.filter(f3);Pc(),b.forEach(z=>{const C=z.el,S=C.style;ol(C,v),S.transform=S.webkitTransform=S.transitionDuration="";const A=C._moveCb=B=>{B&&B.target!==C||(!B||/transform$/.test(B.propertyName))&&(C.removeEventListener("transitionend",A),C._moveCb=null,$l(C,v))};C.addEventListener("transitionend",A)})}),()=>{const v=ne(n),b=Nc(v);let z=v.tag||Zt;u=g,g=l.default?xa(l.default()):[];for(let C=0;Cdelete n.mode;Fc.props;const Oc=Fc;function w3(n){const l=n.el;l._moveCb&&l._moveCb(),l._enterCb&&l._enterCb()}function v3(n){Dc.set(n,n.el.getBoundingClientRect())}function f3(n){const l=Lc.get(n),r=Dc.get(n),h=l.left-r.left,u=l.top-r.top;if(h||u){const g=n.el.style;return g.transform=g.webkitTransform=`translate(${h}px,${u}px)`,g.transitionDuration="0s",n}}function m3(n,l,r){const h=n.cloneNode();n._vtc&&n._vtc.forEach(v=>{v.split(/\s+/).forEach(b=>b&&h.classList.remove(b))}),r.split(/\s+/).forEach(v=>v&&h.classList.add(v)),h.style.display="none";const u=l.nodeType===1?l:l.parentNode;u.appendChild(h);const{hasTransform:g}=jc(h);return u.removeChild(h),g}const El=n=>{const l=n.props["onUpdate:modelValue"]||!1;return vn(l)?r=>Ev(l,r):l};function k3(n){n.target.composing=!0}function E2(n){const l=n.target;l.composing&&(l.composing=!1,l.dispatchEvent(new Event("input")))}const qo={created(n,{modifiers:{lazy:l,trim:r,number:h}},u){n._assign=El(u);const g=h||u.props&&u.props.type==="number";al(n,l?"change":"input",v=>{if(v.target.composing)return;let b=n.value;r&&(b=b.trim()),g&&(b=Vi(b)),n._assign(b)}),r&&al(n,"change",()=>{n.value=n.value.trim()}),l||(al(n,"compositionstart",k3),al(n,"compositionend",E2),al(n,"change",E2))},mounted(n,{value:l}){n.value=l??""},beforeUpdate(n,{value:l,modifiers:{lazy:r,trim:h,number:u}},g){if(n._assign=El(g),n.composing||document.activeElement===n&&n.type!=="range"&&(r||h&&n.value.trim()===l||(u||n.type==="number")&&Vi(n.value)===l))return;const v=l??"";n.value!==v&&(n.value=v)}},uh={deep:!0,created(n,l,r){n._assign=El(r),al(n,"change",()=>{const h=n._modelValue,u=qr(n),g=n.checked,v=n._assign;if(vn(h)){const b=Aa(h,u),z=b!==-1;if(g&&!z)v(h.concat(u));else if(!g&&z){const C=[...h];C.splice(b,1),v(C)}}else if(us(h)){const b=new Set(h);g?b.add(u):b.delete(u),v(b)}else v(Rc(n,g))})},mounted:V2,beforeUpdate(n,l,r){n._assign=El(r),V2(n,l,r)}};function V2(n,{value:l,oldValue:r},h){n._modelValue=l,vn(l)?n.checked=Aa(l,h.props.value)>-1:us(l)?n.checked=l.has(h.props.value):l!==r&&(n.checked=Rl(l,Rc(n,!0)))}const ph={created(n,{value:l},r){n.checked=Rl(l,r.props.value),n._assign=El(r),al(n,"change",()=>{n._assign(qr(n))})},beforeUpdate(n,{value:l,oldValue:r},h){n._assign=El(h),l!==r&&(n.checked=Rl(l,h.props.value))}},Tc={deep:!0,created(n,{value:l,modifiers:{number:r}},h){const u=us(l);al(n,"change",()=>{const g=Array.prototype.filter.call(n.options,v=>v.selected).map(v=>r?Vi(qr(v)):qr(v));n._assign(n.multiple?u?new Set(g):g:g[0])}),n._assign=El(h)},mounted(n,{value:l}){_2(n,l)},beforeUpdate(n,l,r){n._assign=El(r)},updated(n,{value:l}){_2(n,l)}};function _2(n,l){const r=n.multiple;if(!(r&&!vn(l)&&!us(l))){for(let h=0,u=n.options.length;h-1:g.selected=l.has(v);else if(Rl(qr(g),l)){n.selectedIndex!==h&&(n.selectedIndex=h);return}}!r&&n.selectedIndex!==-1&&(n.selectedIndex=-1)}}function qr(n){return"_value"in n?n._value:n.value}function Rc(n,l){const r=l?"_trueValue":"_falseValue";return r in n?n[r]:l}const Ec={created(n,l,r){js(n,l,r,null,"created")},mounted(n,l,r){js(n,l,r,null,"mounted")},beforeUpdate(n,l,r,h){js(n,l,r,h,"beforeUpdate")},updated(n,l,r,h){js(n,l,r,h,"updated")}};function Vc(n,l){switch(n){case"SELECT":return Tc;case"TEXTAREA":return qo;default:switch(l){case"checkbox":return uh;case"radio":return ph;default:return qo}}}function js(n,l,r,h,u){const v=Vc(n.tagName,r.props&&r.props.type)[u];v&&v(n,l,r,h)}function b3(){qo.getSSRProps=({value:n})=>({value:n}),ph.getSSRProps=({value:n},l)=>{if(l.props&&Rl(l.props.value,n))return{checked:!0}},uh.getSSRProps=({value:n},l)=>{if(vn(n)){if(l.props&&Aa(n,l.props.value)>-1)return{checked:!0}}else if(us(n)){if(l.props&&n.has(l.props.value))return{checked:!0}}else if(n)return{checked:!0}},Ec.getSSRProps=(n,l)=>{if(typeof l.type!="string")return;const r=Vc(l.type.toUpperCase(),l.props&&l.props.type);if(r.getSSRProps)return r.getSSRProps(n,l)}}const M3=["ctrl","shift","alt","meta"],x3={stop:n=>n.stopPropagation(),prevent:n=>n.preventDefault(),self:n=>n.target!==n.currentTarget,ctrl:n=>!n.ctrlKey,shift:n=>!n.shiftKey,alt:n=>!n.altKey,meta:n=>!n.metaKey,left:n=>"button"in n&&n.button!==0,middle:n=>"button"in n&&n.button!==1,right:n=>"button"in n&&n.button!==2,exact:(n,l)=>M3.some(r=>n[`${r}Key`]&&!l.includes(r))},z3=(n,l)=>(r,...h)=>{for(let u=0;ur=>{if(!("key"in r))return;const h=Nl(r.key);if(l.some(u=>u===h||I3[u]===h))return n(r)},Nn={beforeMount(n,{value:l},{transition:r}){n._vod=n.style.display==="none"?"":n.style.display,r&&l?r.beforeEnter(n):fo(n,l)},mounted(n,{value:l},{transition:r}){r&&l&&r.enter(n)},updated(n,{value:l,oldValue:r},{transition:h}){!l!=!r&&(h?l?(h.beforeEnter(n),fo(n,!0),h.enter(n)):h.leave(n,()=>{fo(n,!1)}):fo(n,l))},beforeUnmount(n,{value:l}){fo(n,l)}};function fo(n,l){n.style.display=l?n._vod:"none"}function C3(){Nn.getSSRProps=({value:n})=>{if(!n)return{style:{display:"none"}}}}const _c=cs({patchProp:o3},qv);let Ho,W2=!1;function Wc(){return Ho||(Ho=hc(_c))}function Xc(){return Ho=W2?Ho:dc(_c),W2=!0,Ho}const Yi=(...n)=>{Wc().render(...n)},qc=(...n)=>{Xc().hydrate(...n)},Yc=(...n)=>{const l=Wc().createApp(...n),{mount:r}=l;return l.mount=h=>{const u=Gc(h);if(!u)return;const g=l._component;!Sc(g)&&!g.render&&!g.template&&(g.template=u.innerHTML),u.innerHTML="";const v=r(u,!1,u instanceof SVGElement);return u instanceof Element&&(u.removeAttribute("v-cloak"),u.setAttribute("data-v-app","")),v},l},S3=(...n)=>{const l=Xc().createApp(...n),{mount:r}=l;return l.mount=h=>{const u=Gc(h);if(u)return r(u,!0,u instanceof SVGElement)},l};function Gc(n){return Xo(n)?document.querySelector(n):n}let X2=!1;const $3=()=>{X2||(X2=!0,b3(),C3())},A3=()=>{},B3=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:Wd,BaseTransitionPropsValidators:J0,Comment:nn,EffectScope:D0,Fragment:Zt,KeepAlive:Aw,ReactiveEffect:ns,Static:ar,Suspense:mw,Teleport:uc,Text:Fl,Transition:qn,TransitionGroup:Oc,VueElement:Ba,assertNumber:rw,callWithAsyncErrorHandling:zn,callWithErrorHandling:cl,camelize:In,capitalize:fl,cloneVNode:Xn,compatUtils:Nv,compile:A3,computed:X,createApp:Yc,createBlock:Ca,createCommentVNode:kv,createElementBlock:wv,createElementVNode:ih,createHydrationRenderer:dc,createPropsRestProxy:Zw,createRenderer:hc,createSSRApp:S3,createSlots:Pw,createStaticVNode:mv,createTextVNode:e,createVNode:t,customRef:Dg,defineAsyncComponent:Sw,defineComponent:mr,defineCustomElement:Bc,defineEmits:Tw,defineExpose:Rw,defineModel:_w,defineOptions:Ew,defineProps:Ow,defineSSRCustomElement:a3,defineSlots:Vw,get devtools(){return Lr},effect:ng,effectScope:Jr,getCurrentInstance:nl,getCurrentScope:F0,getTransitionRawChildren:xa,guardReactiveProps:fc,h:Hn,handleError:fr,hasInjectionContext:lc,hydrate:qc,initCustomFormatter:Sv,initDirectivesForSSR:$3,inject:he,isMemoSame:yc,isProxy:E0,isReactive:dl,isReadonly:dr,isRef:ke,isRuntimeOnly:Iv,isShallow:Fo,isVNode:Ol,markRaw:ls,mergeDefaults:Gw,mergeModels:Uw,mergeProps:o,nextTick:pe,normalizeClass:ss,normalizeProps:ew,normalizeStyle:os,onActivated:th,onBeforeMount:hs,onBeforeUnmount:Ue,onBeforeUpdate:nh,onDeactivated:eh,onErrorCaptured:Zd,onMounted:Te,onRenderTracked:Ud,onRenderTriggered:Gd,onScopeDispose:ln,onServerPrefetch:Yd,onUnmounted:ya,onUpdated:Ia,openBlock:ds,popScopeId:cw,provide:ye,proxyRefs:W0,pushScopeId:dw,queuePostFlushCb:G0,reactive:Ye,readonly:no,ref:Pt,registerRuntimeCompiler:zv,render:Yi,renderList:jw,renderSlot:Lw,resolveComponent:Nw,resolveDirective:mn,resolveDynamicComponent:Qd,resolveFilter:Hv,resolveTransitionHooks:Wr,setBlockTracking:Fi,setDevtoolsHook:Od,setTransitionHooks:cr,shallowReactive:R0,shallowReadonly:Bg,shallowRef:_t,ssrContextKey:zc,ssrUtils:Bv,stop:lg,toDisplayString:nw,toHandlerKey:Co,toHandlers:Dw,toRaw:ne,toRef:Bt,toRefs:rs,toValue:jg,transformVNodeArgs:vv,triggerRef:Ng,unref:He,useAttrs:qw,useCssModule:h3,useCssVars:d3,useModel:Yw,useSSRContext:Ic,useSlots:Xw,useTransitionState:Q0,vModelCheckbox:uh,vModelDynamic:Ec,vModelRadio:ph,vModelSelect:Tc,vModelText:qo,vShow:Nn,version:Cc,warn:lw,watch:Vt,watchEffect:fn,watchPostEffect:Vd,watchSyncEffect:Iw,withAsyncContext:Kw,withCtx:U0,withDefaults:Ww,withDirectives:Ce,withKeys:y3,withMemo:$v,withModifiers:z3,withScopeId:uw},Symbol.toStringTag,{value:"Module"}));var H3=!1;/*! +(function(){const l=document.createElement("link").relList;if(l&&l.supports&&l.supports("modulepreload"))return;for(const c of document.querySelectorAll('link[rel="modulepreload"]'))h(c);new MutationObserver(c=>{for(const g of c)if(g.type==="childList")for(const v of g.addedNodes)v.tagName==="LINK"&&v.rel==="modulepreload"&&h(v)}).observe(document,{childList:!0,subtree:!0});function r(c){const g={};return c.integrity&&(g.integrity=c.integrity),c.referrerPolicy&&(g.referrerPolicy=c.referrerPolicy),c.crossOrigin==="use-credentials"?g.credentials="include":c.crossOrigin==="anonymous"?g.credentials="omit":g.credentials="same-origin",g}function h(c){if(c.ep)return;c.ep=!0;const g=r(c);fetch(c.href,g)}})();function aw(n,l){const r=Object.create(null),h=n.split(",");for(let c=0;c!!r[c.toLowerCase()]:c=>!!r[c]}const iw=()=>{},ih=Object.assign,hw=Object.prototype.hasOwnProperty,Ca=(n,l)=>hw.call(n,l),wl=Array.isArray,ea=n=>oc(n)==="[object Map]",hh=n=>typeof n=="function",dw=n=>typeof n=="string",dh=n=>typeof n=="symbol",ps=n=>n!==null&&typeof n=="object",cw=Object.prototype.toString,oc=n=>cw.call(n),uw=n=>oc(n).slice(8,-1),ch=n=>dw(n)&&n!=="NaN"&&n[0]!=="-"&&""+parseInt(n,10)===n,uh=(n,l)=>!Object.is(n,l),pw=(n,l,r)=>{Object.defineProperty(n,l,{configurable:!0,enumerable:!1,value:r})};let zn;class ph{constructor(l=!1){this.detached=l,this._active=!0,this.effects=[],this.cleanups=[],this.parent=zn,!l&&zn&&(this.index=(zn.scopes||(zn.scopes=[])).push(this)-1)}get active(){return this._active}run(l){if(this._active){const r=zn;try{return zn=this,l()}finally{zn=r}}}on(){zn=this}off(){zn=this.parent}stop(l){if(this._active){let r,h;for(r=0,h=this.effects.length;r{const l=new Set(n);return l.w=0,l.n=0,l},ac=n=>(n.w&Wl)>0,ic=n=>(n.n&Wl)>0,gw=({deps:n})=>{if(n.length)for(let l=0;l{const{deps:l}=n;if(l.length){let r=0;for(let h=0;h{(S==="length"||S>=x)&&k.push(I)})}else switch(r!==void 0&&k.push(v.get(r)),l){case"add":wl(n)?ch(r)&&k.push(v.get("length")):(k.push(v.get(pr)),ea(n)&&k.push(v.get(Ki)));break;case"delete":wl(n)||(k.push(v.get(pr)),ea(n)&&k.push(v.get(Ki)));break;case"set":ea(n)&&k.push(v.get(pr));break}if(k.length===1)k[0]&&Qi(k[0]);else{const x=[];for(const I of k)I&&x.push(...I);Qi(wh(x))}}function Qi(n,l){const r=wl(n)?n:[...n];for(const h of r)h.computed&&_2(h);for(const h of r)h.computed||_2(h)}function _2(n,l){(n!==Xn||n.allowRecurse)&&(n.scheduler?n.scheduler():n.run())}function mw(n,l){var r;return(r=da.get(n))==null?void 0:r.get(l)}const kw=aw("__proto__,__v_isRef,__isVue"),cc=new Set(Object.getOwnPropertyNames(Symbol).filter(n=>n!=="arguments"&&n!=="caller").map(n=>Symbol[n]).filter(dh)),bw=Sa(),Mw=Sa(!1,!0),xw=Sa(!0),zw=Sa(!0,!0),W2=Iw();function Iw(){const n={};return["includes","indexOf","lastIndexOf"].forEach(l=>{n[l]=function(...r){const h=le(this);for(let g=0,v=this.length;g{n[l]=function(...r){ho();const h=le(this)[l].apply(this,r);return co(),h}}),n}function yw(n){const l=le(this);return mn(l,"has",n),l.hasOwnProperty(n)}function Sa(n=!1,l=!1){return function(h,c,g){if(c==="__v_isReactive")return!n;if(c==="__v_isReadonly")return n;if(c==="__v_isShallow")return l;if(c==="__v_raw"&&g===(n?l?mc:fc:l?vc:wc).get(h))return h;const v=wl(h);if(!n){if(v&&Ca(W2,c))return Reflect.get(W2,c,g);if(c==="hasOwnProperty")return yw}const k=Reflect.get(h,c,g);return(dh(c)?cc.has(c):kw(c))||(n||mn(h,"get",c),l)?k:Me(k)?v&&ch(c)?k:k.value:ps(k)?n?uo(k):Ze(k):k}}const Cw=uc(),Sw=uc(!0);function uc(n=!1){return function(r,h,c,g){let v=r[h];if(mr(v)&&Me(v)&&!Me(c))return!1;if(!n&&(!Uo(c)&&!mr(c)&&(v=le(v),c=le(c)),!wl(r)&&Me(v)&&!Me(c)))return v.value=c,!0;const k=wl(r)&&ch(h)?Number(h)n,$a=n=>Reflect.getPrototypeOf(n);function Os(n,l,r=!1,h=!1){n=n.__v_raw;const c=le(n),g=le(l);r||(l!==g&&mn(c,"get",l),mn(c,"get",g));const{has:v}=$a(c),k=h?vh:r?kh:Go;if(v.call(c,l))return k(n.get(l));if(v.call(c,g))return k(n.get(g));n!==c&&n.get(l)}function Fs(n,l=!1){const r=this.__v_raw,h=le(r),c=le(n);return l||(n!==c&&mn(h,"has",n),mn(h,"has",c)),n===c?r.has(n):r.has(n)||r.has(c)}function Rs(n,l=!1){return n=n.__v_raw,!l&&mn(le(n),"iterate",pr),Reflect.get(n,"size",n)}function X2(n){n=le(n);const l=le(this);return $a(l).has.call(l,n)||(l.add(n),kl(l,"add",n,n)),this}function q2(n,l){l=le(l);const r=le(this),{has:h,get:c}=$a(r);let g=h.call(r,n);g||(n=le(n),g=h.call(r,n));const v=c.call(r,n);return r.set(n,l),g?uh(l,v)&&kl(r,"set",n,l):kl(r,"add",n,l),this}function Y2(n){const l=le(this),{has:r,get:h}=$a(l);let c=r.call(l,n);c||(n=le(n),c=r.call(l,n)),h&&h.call(l,n);const g=l.delete(n);return c&&kl(l,"delete",n,void 0),g}function U2(){const n=le(this),l=n.size!==0,r=n.clear();return l&&kl(n,"clear",void 0,void 0),r}function Ts(n,l){return function(h,c){const g=this,v=g.__v_raw,k=le(v),x=l?vh:n?kh:Go;return!n&&mn(k,"iterate",pr),v.forEach((I,S)=>h.call(c,x(I),x(S),g))}}function Es(n,l,r){return function(...h){const c=this.__v_raw,g=le(c),v=ea(g),k=n==="entries"||n===Symbol.iterator&&v,x=n==="keys"&&v,I=c[n](...h),S=r?vh:l?kh:Go;return!l&&mn(g,"iterate",x?Ki:pr),{next(){const{value:$,done:B}=I.next();return B?{value:$,done:B}:{value:k?[S($[0]),S($[1])]:S($),done:B}},[Symbol.iterator](){return this}}}}function Hl(n){return function(...l){return n==="delete"?!1:this}}function jw(){const n={get(g){return Os(this,g)},get size(){return Rs(this)},has:Fs,add:X2,set:q2,delete:Y2,clear:U2,forEach:Ts(!1,!1)},l={get(g){return Os(this,g,!1,!0)},get size(){return Rs(this)},has:Fs,add:X2,set:q2,delete:Y2,clear:U2,forEach:Ts(!1,!0)},r={get(g){return Os(this,g,!0)},get size(){return Rs(this,!0)},has(g){return Fs.call(this,g,!0)},add:Hl("add"),set:Hl("set"),delete:Hl("delete"),clear:Hl("clear"),forEach:Ts(!0,!1)},h={get(g){return Os(this,g,!0,!0)},get size(){return Rs(this,!0)},has(g){return Fs.call(this,g,!0)},add:Hl("add"),set:Hl("set"),delete:Hl("delete"),clear:Hl("clear"),forEach:Ts(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(g=>{n[g]=Es(g,!1,!1),r[g]=Es(g,!0,!1),l[g]=Es(g,!1,!0),h[g]=Es(g,!0,!0)}),[n,r,l,h]}const[Pw,Lw,Dw,Ow]=jw();function Aa(n,l){const r=l?n?Ow:Dw:n?Lw:Pw;return(h,c,g)=>c==="__v_isReactive"?!n:c==="__v_isReadonly"?n:c==="__v_raw"?h:Reflect.get(Ca(r,c)&&c in h?r:h,c,g)}const Fw={get:Aa(!1,!1)},Rw={get:Aa(!1,!0)},Tw={get:Aa(!0,!1)},Ew={get:Aa(!0,!0)},wc=new WeakMap,vc=new WeakMap,fc=new WeakMap,mc=new WeakMap;function Vw(n){switch(n){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function _w(n){return n.__v_skip||!Object.isExtensible(n)?0:Vw(uw(n))}function Ze(n){return mr(n)?n:Ba(n,!1,pc,Fw,wc)}function fh(n){return Ba(n,!1,Hw,Rw,vc)}function uo(n){return Ba(n,!0,gc,Tw,fc)}function Ww(n){return Ba(n,!0,Nw,Ew,mc)}function Ba(n,l,r,h,c){if(!ps(n)||n.__v_raw&&!(l&&n.__v_isReactive))return n;const g=c.get(n);if(g)return g;const v=_w(n);if(v===0)return n;const k=new Proxy(n,v===2?h:r);return c.set(n,k),k}function vl(n){return mr(n)?vl(n.__v_raw):!!(n&&n.__v_isReactive)}function mr(n){return!!(n&&n.__v_isReadonly)}function Uo(n){return!!(n&&n.__v_isShallow)}function mh(n){return vl(n)||mr(n)}function le(n){const l=n&&n.__v_raw;return l?le(l):n}function ws(n){return pw(n,"__v_skip",!0),n}const Go=n=>ps(n)?Ze(n):n,kh=n=>ps(n)?uo(n):n;function bh(n){Vl&&Xn&&(n=le(n),dc(n.dep||(n.dep=wh())))}function Ha(n,l){n=le(n);const r=n.dep;r&&Qi(r)}function Me(n){return!!(n&&n.__v_isRef===!0)}function Lt(n){return kc(n,!1)}function Wt(n){return kc(n,!0)}function kc(n,l){return Me(n)?n:new Xw(n,l)}class Xw{constructor(l,r){this.__v_isShallow=r,this.dep=void 0,this.__v_isRef=!0,this._rawValue=r?l:le(l),this._value=r?l:Go(l)}get value(){return bh(this),this._value}set value(l){const r=this.__v_isShallow||Uo(l)||mr(l);l=r?l:le(l),uh(l,this._rawValue)&&(this._rawValue=l,this._value=r?l:Go(l),Ha(this))}}function qw(n){Ha(n)}function je(n){return Me(n)?n.value:n}function Yw(n){return hh(n)?n():je(n)}const Uw={get:(n,l,r)=>je(Reflect.get(n,l,r)),set:(n,l,r,h)=>{const c=n[l];return Me(c)&&!Me(r)?(c.value=r,!0):Reflect.set(n,l,r,h)}};function Mh(n){return vl(n)?n:new Proxy(n,Uw)}class Gw{constructor(l){this.dep=void 0,this.__v_isRef=!0;const{get:r,set:h}=l(()=>bh(this),()=>Ha(this));this._get=r,this._set=h}get value(){return this._get()}set value(l){this._set(l)}}function Zw(n){return new Gw(n)}function vs(n){const l=wl(n)?new Array(n.length):{};for(const r in n)l[r]=bc(n,r);return l}class Kw{constructor(l,r,h){this._object=l,this._key=r,this._defaultValue=h,this.__v_isRef=!0}get value(){const l=this._object[this._key];return l===void 0?this._defaultValue:l}set value(l){this._object[this._key]=l}get dep(){return mw(le(this._object),this._key)}}class Qw{constructor(l){this._getter=l,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Ht(n,l,r){return Me(n)?n:hh(n)?new Qw(n):ps(n)&&arguments.length>1?bc(n,l,r):Lt(n)}function bc(n,l,r){const h=n[l];return Me(h)?h:new Kw(n,l,r)}class Jw{constructor(l,r,h,c){this._setter=r,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new gs(l,()=>{this._dirty||(this._dirty=!0,Ha(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!c,this.__v_isReadonly=h}get value(){const l=le(this);return bh(l),(l._dirty||!l._cacheable)&&(l._dirty=!1,l._value=l.effect.run()),l._value}set value(l){this._setter(l)}}function tv(n,l,r=!1){let h,c;const g=hh(n);return g?(h=n,c=iw):(h=n.get,c=n.set),new Jw(h,c,g||!c,r)}function Mc(n,l){const r=Object.create(null),h=n.split(",");for(let c=0;c!!r[c.toLowerCase()]:c=>!!r[c]}const ye={},Ur=[],rl=()=>{},ev=()=>!1,nv=/^on[^a-z]/,Na=n=>nv.test(n),xc=n=>n.startsWith("onUpdate:"),qe=Object.assign,xh=(n,l)=>{const r=n.indexOf(l);r>-1&&n.splice(r,1)},lv=Object.prototype.hasOwnProperty,me=(n,l)=>lv.call(n,l),se=Array.isArray,zc=n=>ja(n)==="[object Map]",Ic=n=>ja(n)==="[object Set]",rv=n=>ja(n)==="[object RegExp]",oe=n=>typeof n=="function",Ee=n=>typeof n=="string",Fe=n=>n!==null&&typeof n=="object",zh=n=>Fe(n)&&oe(n.then)&&oe(n.catch),yc=Object.prototype.toString,ja=n=>yc.call(n),Cc=n=>ja(n)==="[object Object]",Do=Mc(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Pa=n=>{const l=Object.create(null);return r=>l[r]||(l[r]=n(r))},ov=/-(\w)/g,Sn=Pa(n=>n.replace(ov,(l,r)=>r?r.toUpperCase():"")),sv=/\B([A-Z])/g,La=Pa(n=>n.replace(sv,"-$1").toLowerCase()),Il=Pa(n=>n.charAt(0).toUpperCase()+n.slice(1)),Oo=Pa(n=>n?`on${Il(n)}`:""),Ji=(n,l)=>!Object.is(n,l),Fo=(n,l)=>{for(let r=0;r{Object.defineProperty(n,l,{configurable:!0,enumerable:!1,value:r})},av=n=>{const l=parseFloat(n);return isNaN(l)?n:l},iv=n=>{const l=Ee(n)?Number(n):NaN;return isNaN(l)?n:l};let G2;const e0=()=>G2||(G2=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),hv="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console",dv=Mc(hv);function fs(n){if(se(n)){const l={};for(let r=0;r{if(r){const h=r.split(uv);h.length>1&&(l[h[0].trim()]=h[1].trim())}}),l}function ms(n){let l="";if(Ee(n))l=n;else if(se(n))for(let r=0;rEe(n)?n:n==null?"":se(n)||Fe(n)&&(n.toString===yc||!oe(n.toString))?JSON.stringify(n,Sc,2):String(n),Sc=(n,l)=>l&&l.__v_isRef?Sc(n,l.value):zc(l)?{[`Map(${l.size})`]:[...l.entries()].reduce((r,[h,c])=>(r[`${h} =>`]=c,r),{})}:Ic(l)?{[`Set(${l.size})`]:[...l.values()]}:Fe(l)&&!se(l)&&!Cc(l)?String(l):l;function fv(n,...l){}function mv(n,l){}function fl(n,l,r,h){let c;try{c=h?n(...h):n()}catch(g){yr(g,l,r)}return c}function Cn(n,l,r,h){if(oe(n)){const g=fl(n,l,r,h);return g&&zh(g)&&g.catch(v=>{yr(v,l,r)}),g}const c=[];for(let g=0;g>>1;Ko(nn[h])el&&nn.splice(l,1)}function yh(n){se(n)?Gr.push(...n):(!ul||!ul.includes(n,n.allowRecurse?ir+1:ir))&&Gr.push(n),Ac()}function Z2(n,l=Zo?el+1:0){for(;lKo(r)-Ko(h)),ir=0;irn.id==null?1/0:n.id,xv=(n,l)=>{const r=Ko(n)-Ko(l);if(r===0){if(n.pre&&!l.pre)return-1;if(l.pre&&!n.pre)return 1}return r};function Bc(n){n0=!1,Zo=!0,nn.sort(xv);const l=rl;try{for(el=0;el_r.emit(c,...g)),Vs=[]):typeof window<"u"&&window.HTMLElement&&!((h=(r=window.navigator)==null?void 0:r.userAgent)!=null&&h.includes("jsdom"))?((l.__VUE_DEVTOOLS_HOOK_REPLAY__=l.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(g=>{Hc(g,l)}),setTimeout(()=>{_r||(l.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Vs=[])},3e3)):Vs=[]}function zv(n,l,...r){if(n.isUnmounted)return;const h=n.vnode.props||ye;let c=r;const g=l.startsWith("update:"),v=g&&l.slice(7);if(v&&v in h){const S=`${v==="modelValue"?"model":v}Modifiers`,{number:$,trim:B}=h[S]||ye;B&&(c=r.map(P=>Ee(P)?P.trim():P)),$&&(c=r.map(av))}let k,x=h[k=Oo(l)]||h[k=Oo(Sn(l))];!x&&g&&(x=h[k=Oo(La(l))]),x&&Cn(x,n,6,c);const I=h[k+"Once"];if(I){if(!n.emitted)n.emitted={};else if(n.emitted[k])return;n.emitted[k]=!0,Cn(I,n,6,c)}}function Nc(n,l,r=!1){const h=l.emitsCache,c=h.get(n);if(c!==void 0)return c;const g=n.emits;let v={},k=!1;if(!oe(n)){const x=I=>{const S=Nc(I,l,!0);S&&(k=!0,qe(v,S))};!r&&l.mixins.length&&l.mixins.forEach(x),n.extends&&x(n.extends),n.mixins&&n.mixins.forEach(x)}return!g&&!k?(Fe(n)&&h.set(n,null),null):(se(g)?g.forEach(x=>v[x]=null):qe(v,g),Fe(n)&&h.set(n,v),v)}function Oa(n,l){return!n||!Na(l)?!1:(l=l.slice(2).replace(/Once$/,""),me(n,l[0].toLowerCase()+l.slice(1))||me(n,La(l))||me(n,l))}let Xe=null,Fa=null;function Qo(n){const l=Xe;return Xe=n,Fa=n&&n.type.__scopeId||null,l}function Iv(n){Fa=n}function yv(){Fa=null}const Cv=n=>Ch;function Ch(n,l=Xe,r){if(!l||n._n)return n;const h=(...c)=>{h._d&&h0(-1);const g=Qo(l);let v;try{v=n(...c)}finally{Qo(g),h._d&&h0(1)}return v};return h._n=!0,h._c=!0,h._d=!0,h}function na(n){const{type:l,vnode:r,proxy:h,withProxy:c,props:g,propsOptions:[v],slots:k,attrs:x,emit:I,render:S,renderCache:$,data:B,setupState:P,ctx:D,inheritAttrs:F}=n;let X,R;const H=Qo(n);try{if(r.shapeFlag&4){const W=c||h;X=In(S.call(W,W,$,g,P,B,D)),R=x}else{const W=l;X=In(W.length>1?W(g,{attrs:x,slots:k,emit:I}):W(g,null)),R=l.props?x:$v(x)}}catch(W){Eo.length=0,yr(W,n,1),X=t(on)}let U=X;if(R&&F!==!1){const W=Object.keys(R),{shapeFlag:_}=U;W.length&&_&7&&(v&&W.some(xc)&&(R=Av(R,v)),U=Gn(U,R))}return r.dirs&&(U=Gn(U),U.dirs=U.dirs?U.dirs.concat(r.dirs):r.dirs),r.transition&&(U.transition=r.transition),X=U,Qo(H),X}function Sv(n){let l;for(let r=0;r{let l;for(const r in n)(r==="class"||r==="style"||Na(r))&&((l||(l={}))[r]=n[r]);return l},Av=(n,l)=>{const r={};for(const h in n)(!xc(h)||!(h.slice(9)in l))&&(r[h]=n[h]);return r};function Bv(n,l,r){const{props:h,children:c,component:g}=n,{props:v,children:k,patchFlag:x}=l,I=g.emitsOptions;if(l.dirs||l.transition)return!0;if(r&&x>=0){if(x&1024)return!0;if(x&16)return h?K2(h,v,I):!!v;if(x&8){const S=l.dynamicProps;for(let $=0;$n.__isSuspense,Hv={name:"Suspense",__isSuspense:!0,process(n,l,r,h,c,g,v,k,x,I){n==null?jv(l,r,h,c,g,v,k,x,I):Pv(n,l,r,h,c,v,k,x,I)},hydrate:Lv,create:$h,normalize:Dv},Nv=Hv;function Jo(n,l){const r=n.props&&n.props[l];oe(r)&&r()}function jv(n,l,r,h,c,g,v,k,x){const{p:I,o:{createElement:S}}=x,$=S("div"),B=n.suspense=$h(n,c,h,l,$,r,g,v,k,x);I(null,B.pendingBranch=n.ssContent,$,null,h,B,g,v),B.deps>0?(Jo(n,"onPending"),Jo(n,"onFallback"),I(null,n.ssFallback,l,r,h,null,g,v),Zr(B,n.ssFallback)):B.resolve(!1,!0)}function Pv(n,l,r,h,c,g,v,k,{p:x,um:I,o:{createElement:S}}){const $=l.suspense=n.suspense;$.vnode=l,l.el=n.el;const B=l.ssContent,P=l.ssFallback,{activeBranch:D,pendingBranch:F,isInFallback:X,isHydrating:R}=$;if(F)$.pendingBranch=B,qn(B,F)?(x(F,B,$.hiddenContainer,null,c,$,g,v,k),$.deps<=0?$.resolve():X&&(x(D,P,r,h,c,null,g,v,k),Zr($,P))):($.pendingId++,R?($.isHydrating=!1,$.activeBranch=F):I(F,c,$),$.deps=0,$.effects.length=0,$.hiddenContainer=S("div"),X?(x(null,B,$.hiddenContainer,null,c,$,g,v,k),$.deps<=0?$.resolve():(x(D,P,r,h,c,null,g,v,k),Zr($,P))):D&&qn(B,D)?(x(D,B,r,h,c,$,g,v,k),$.resolve(!0)):(x(null,B,$.hiddenContainer,null,c,$,g,v,k),$.deps<=0&&$.resolve()));else if(D&&qn(B,D))x(D,B,r,h,c,$,g,v,k),Zr($,B);else if(Jo(l,"onPending"),$.pendingBranch=B,$.pendingId++,x(null,B,$.hiddenContainer,null,c,$,g,v,k),$.deps<=0)$.resolve();else{const{timeout:H,pendingId:U}=$;H>0?setTimeout(()=>{$.pendingId===U&&$.fallback(P)},H):H===0&&$.fallback(P)}}function $h(n,l,r,h,c,g,v,k,x,I,S=!1){const{p:$,m:B,um:P,n:D,o:{parentNode:F,remove:X}}=I;let R;const H=Ov(n);H&&l!=null&&l.pendingBranch&&(R=l.pendingId,l.deps++);const U=n.props?iv(n.props.timeout):void 0,W={vnode:n,parent:l,parentComponent:r,isSVG:v,container:h,hiddenContainer:c,anchor:g,deps:0,pendingId:0,timeout:typeof U=="number"?U:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:S,isUnmounted:!1,effects:[],resolve(_=!1,tt=!1){const{vnode:nt,activeBranch:Y,pendingBranch:G,pendingId:et,effects:st,parentComponent:rt,container:ht}=W;if(W.isHydrating)W.isHydrating=!1;else if(!_){const xt=Y&&G.transition&&G.transition.mode==="out-in";xt&&(Y.transition.afterLeave=()=>{et===W.pendingId&&B(G,ht,wt,0)});let{anchor:wt}=W;Y&&(wt=D(Y),P(Y,rt,W,!0)),xt||B(G,ht,wt,0)}Zr(W,G),W.pendingBranch=null,W.isInFallback=!1;let dt=W.parent,Ct=!1;for(;dt;){if(dt.pendingBranch){dt.effects.push(...st),Ct=!0;break}dt=dt.parent}Ct||yh(st),W.effects=[],H&&l&&l.pendingBranch&&R===l.pendingId&&(l.deps--,l.deps===0&&!tt&&l.resolve()),Jo(nt,"onResolve")},fallback(_){if(!W.pendingBranch)return;const{vnode:tt,activeBranch:nt,parentComponent:Y,container:G,isSVG:et}=W;Jo(tt,"onFallback");const st=D(nt),rt=()=>{W.isInFallback&&($(null,_,G,st,Y,null,et,k,x),Zr(W,_))},ht=_.transition&&_.transition.mode==="out-in";ht&&(nt.transition.afterLeave=rt),W.isInFallback=!0,P(nt,Y,null,!0),ht||rt()},move(_,tt,nt){W.activeBranch&&B(W.activeBranch,_,tt,nt),W.container=_},next(){return W.activeBranch&&D(W.activeBranch)},registerDep(_,tt){const nt=!!W.pendingBranch;nt&&W.deps++;const Y=_.vnode.el;_.asyncDep.catch(G=>{yr(G,_,0)}).then(G=>{if(_.isUnmounted||W.isUnmounted||W.pendingId!==_.suspenseId)return;_.asyncResolved=!0;const{vnode:et}=_;d0(_,G,!1),Y&&(et.el=Y);const st=!Y&&_.subTree.el;tt(_,et,F(Y||_.subTree.el),Y?null:D(_.subTree),W,v,x),st&&X(st),Sh(_,et.el),nt&&--W.deps===0&&W.resolve()})},unmount(_,tt){W.isUnmounted=!0,W.activeBranch&&P(W.activeBranch,r,_,tt),W.pendingBranch&&P(W.pendingBranch,r,_,tt)}};return W}function Lv(n,l,r,h,c,g,v,k,x){const I=l.suspense=$h(l,h,r,n.parentNode,document.createElement("div"),null,c,g,v,k,!0),S=x(n,I.pendingBranch=l.ssContent,r,I,g,v);return I.deps===0&&I.resolve(!1,!0),S}function Dv(n){const{shapeFlag:l,children:r}=n,h=l&32;n.ssContent=Q2(h?r.default:r),n.ssFallback=h?Q2(r.fallback):t(on)}function Q2(n){let l;if(oe(n)){const r=br&&n._c;r&&(n._d=!1,xs()),n=n(),r&&(n._d=!0,l=fn,au())}return se(n)&&(n=Sv(n)),n=In(n),l&&!n.dynamicChildren&&(n.dynamicChildren=l.filter(r=>r!==n)),n}function Pc(n,l){l&&l.pendingBranch?se(n)?l.effects.push(...n):l.effects.push(n):yh(n)}function Zr(n,l){n.activeBranch=l;const{vnode:r,parentComponent:h}=n,c=r.el=l.el;h&&h.subTree===r&&(h.vnode.el=c,Sh(h,c))}function Ov(n){var l;return((l=n.props)==null?void 0:l.suspensible)!=null&&n.props.suspensible!==!1}function bn(n,l){return ks(n,null,l)}function Lc(n,l){return ks(n,null,{flush:"post"})}function Fv(n,l){return ks(n,null,{flush:"sync"})}const _s={};function _t(n,l,r){return ks(n,l,r)}function ks(n,l,{immediate:r,deep:h,flush:c,onTrack:g,onTrigger:v}=ye){var k;const x=gh()===((k=Oe)==null?void 0:k.scope)?Oe:null;let I,S=!1,$=!1;if(Me(n)?(I=()=>n.value,S=Uo(n)):vl(n)?(I=()=>n,h=!0):se(n)?($=!0,S=n.some(W=>vl(W)||Uo(W)),I=()=>n.map(W=>{if(Me(W))return W.value;if(vl(W))return dr(W);if(oe(W))return fl(W,x,2)})):oe(n)?l?I=()=>fl(n,x,2):I=()=>{if(!(x&&x.isUnmounted))return B&&B(),Cn(n,x,3,[P])}:I=rl,l&&h){const W=I;I=()=>dr(W())}let B,P=W=>{B=H.onStop=()=>{fl(W,x,4)}},D;if(Jr)if(P=rl,l?r&&Cn(l,x,3,[I(),$?[]:void 0,P]):I(),c==="sync"){const W=fu();D=W.__watcherHandles||(W.__watcherHandles=[])}else return rl;let F=$?new Array(n.length).fill(_s):_s;const X=()=>{if(H.active)if(l){const W=H.run();(h||S||($?W.some((_,tt)=>Ji(_,F[tt])):Ji(W,F)))&&(B&&B(),Cn(l,x,3,[W,F===_s?void 0:$&&F[0]===_s?[]:F,P]),F=W)}else H.run()};X.allowRecurse=!!l;let R;c==="sync"?R=X:c==="post"?R=()=>Ge(X,x&&x.suspense):(X.pre=!0,x&&(X.id=x.uid),R=()=>Da(X));const H=new gs(I,R);l?r?X():F=H.run():c==="post"?Ge(H.run.bind(H),x&&x.suspense):H.run();const U=()=>{H.stop(),x&&x.scope&&xh(x.scope.effects,H)};return D&&D.push(U),U}function Rv(n,l,r){const h=this.proxy,c=Ee(n)?n.includes(".")?Dc(h,n):()=>h[n]:n.bind(h,h);let g;oe(l)?g=l:(g=l.handler,r=l);const v=Oe;Yl(this);const k=ks(c,g.bind(h),r);return v?Yl(v):_l(),k}function Dc(n,l){const r=l.split(".");return()=>{let h=n;for(let c=0;c{dr(r,l)});else if(Cc(n))for(const r in n)dr(n[r],l);return n}function $e(n,l){const r=Xe;if(r===null)return n;const h=Xa(r)||r.proxy,c=n.dirs||(n.dirs=[]);for(let g=0;g{n.isMounted=!0}),Qe(()=>{n.isUnmounting=!0}),n}const Hn=[Function,Array],Bh={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Hn,onEnter:Hn,onAfterEnter:Hn,onEnterCancelled:Hn,onBeforeLeave:Hn,onLeave:Hn,onAfterLeave:Hn,onLeaveCancelled:Hn,onBeforeAppear:Hn,onAppear:Hn,onAfterAppear:Hn,onAppearCancelled:Hn},Tv={name:"BaseTransition",props:Bh,setup(n,{slots:l}){const r=al(),h=Ah();let c;return()=>{const g=l.default&&Ra(l.default(),!0);if(!g||!g.length)return;let v=g[0];if(g.length>1){for(const F of g)if(F.type!==on){v=F;break}}const k=le(n),{mode:x}=k;if(h.isLeaving)return yi(v);const I=J2(v);if(!I)return yi(v);const S=Qr(I,k,h,r);kr(I,S);const $=r.subTree,B=$&&J2($);let P=!1;const{getTransitionKey:D}=I.type;if(D){const F=D();c===void 0?c=F:F!==c&&(c=F,P=!0)}if(B&&B.type!==on&&(!qn(I,B)||P)){const F=Qr(B,k,h,r);if(kr(B,F),x==="out-in")return h.isLeaving=!0,F.afterLeave=()=>{h.isLeaving=!1,r.update.active!==!1&&r.update()},yi(v);x==="in-out"&&I.type!==on&&(F.delayLeave=(X,R,H)=>{const U=Fc(h,B);U[String(B.key)]=B,X._leaveCb=()=>{R(),X._leaveCb=void 0,delete S.delayedLeave},S.delayedLeave=H})}return v}}},Oc=Tv;function Fc(n,l){const{leavingVNodes:r}=n;let h=r.get(l.type);return h||(h=Object.create(null),r.set(l.type,h)),h}function Qr(n,l,r,h){const{appear:c,mode:g,persisted:v=!1,onBeforeEnter:k,onEnter:x,onAfterEnter:I,onEnterCancelled:S,onBeforeLeave:$,onLeave:B,onAfterLeave:P,onLeaveCancelled:D,onBeforeAppear:F,onAppear:X,onAfterAppear:R,onAppearCancelled:H}=l,U=String(n.key),W=Fc(r,n),_=(Y,G)=>{Y&&Cn(Y,h,9,G)},tt=(Y,G)=>{const et=G[1];_(Y,G),se(Y)?Y.every(st=>st.length<=1)&&et():Y.length<=1&&et()},nt={mode:g,persisted:v,beforeEnter(Y){let G=k;if(!r.isMounted)if(c)G=F||k;else return;Y._leaveCb&&Y._leaveCb(!0);const et=W[U];et&&qn(n,et)&&et.el._leaveCb&&et.el._leaveCb(),_(G,[Y])},enter(Y){let G=x,et=I,st=S;if(!r.isMounted)if(c)G=X||x,et=R||I,st=H||S;else return;let rt=!1;const ht=Y._enterCb=dt=>{rt||(rt=!0,dt?_(st,[Y]):_(et,[Y]),nt.delayedLeave&&nt.delayedLeave(),Y._enterCb=void 0)};G?tt(G,[Y,ht]):ht()},leave(Y,G){const et=String(n.key);if(Y._enterCb&&Y._enterCb(!0),r.isUnmounting)return G();_($,[Y]);let st=!1;const rt=Y._leaveCb=ht=>{st||(st=!0,G(),ht?_(D,[Y]):_(P,[Y]),Y._leaveCb=void 0,W[et]===n&&delete W[et])};W[et]=n,B?tt(B,[Y,rt]):rt()},clone(Y){return Qr(Y,l,r,h)}};return nt}function yi(n){if(bs(n))return n=Gn(n),n.children=null,n}function J2(n){return bs(n)?n.children?n.children[0]:void 0:n}function kr(n,l){n.shapeFlag&6&&n.component?kr(n.component.subTree,l):n.shapeFlag&128?(n.ssContent.transition=l.clone(n.ssContent),n.ssFallback.transition=l.clone(n.ssFallback)):n.transition=l}function Ra(n,l=!1,r){let h=[],c=0;for(let g=0;g1)for(let g=0;gqe({name:n.name},l,{setup:n}))():n}const gr=n=>!!n.type.__asyncLoader;function Ev(n){oe(n)&&(n={loader:n});const{loader:l,loadingComponent:r,errorComponent:h,delay:c=200,timeout:g,suspensible:v=!0,onError:k}=n;let x=null,I,S=0;const $=()=>(S++,x=null,B()),B=()=>{let P;return x||(P=x=l().catch(D=>{if(D=D instanceof Error?D:new Error(String(D)),k)return new Promise((F,X)=>{k(D,()=>F($()),()=>X(D),S+1)});throw D}).then(D=>P!==x&&x?x:(D&&(D.__esModule||D[Symbol.toStringTag]==="Module")&&(D=D.default),I=D,D)))};return Cr({name:"AsyncComponentWrapper",__asyncLoader:B,get __asyncResolved(){return I},setup(){const P=Oe;if(I)return()=>Ci(I,P);const D=H=>{x=null,yr(H,P,13,!h)};if(v&&P.suspense||Jr)return B().then(H=>()=>Ci(H,P)).catch(H=>(D(H),()=>h?t(h,{error:H}):null));const F=Lt(!1),X=Lt(),R=Lt(!!c);return c&&setTimeout(()=>{R.value=!1},c),g!=null&&setTimeout(()=>{if(!F.value&&!X.value){const H=new Error(`Async component timed out after ${g}ms.`);D(H),X.value=H}},g),B().then(()=>{F.value=!0,P.parent&&bs(P.parent.vnode)&&Da(P.parent.update)}).catch(H=>{D(H),X.value=H}),()=>{if(F.value&&I)return Ci(I,P);if(X.value&&h)return t(h,{error:X.value});if(r&&!R.value)return t(r)}}})}function Ci(n,l){const{ref:r,props:h,children:c,ce:g}=l.vnode,v=t(n,h,c);return v.ref=r,v.ce=g,delete l.vnode.ce,v}const bs=n=>n.type.__isKeepAlive,Vv={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(n,{slots:l}){const r=al(),h=r.ctx;if(!h.renderer)return()=>{const H=l.default&&l.default();return H&&H.length===1?H[0]:H};const c=new Map,g=new Set;let v=null;const k=r.suspense,{renderer:{p:x,m:I,um:S,o:{createElement:$}}}=h,B=$("div");h.activate=(H,U,W,_,tt)=>{const nt=H.component;I(H,U,W,0,k),x(nt.vnode,H,U,W,nt,k,_,H.slotScopeIds,tt),Ge(()=>{nt.isDeactivated=!1,nt.a&&Fo(nt.a);const Y=H.props&&H.props.onVnodeMounted;Y&&wn(Y,nt.parent,H)},k)},h.deactivate=H=>{const U=H.component;I(H,B,null,1,k),Ge(()=>{U.da&&Fo(U.da);const W=H.props&&H.props.onVnodeUnmounted;W&&wn(W,U.parent,H),U.isDeactivated=!0},k)};function P(H){Si(H),S(H,r,k,!0)}function D(H){c.forEach((U,W)=>{const _=u0(U.type);_&&(!H||!H(_))&&F(W)})}function F(H){const U=c.get(H);!v||!qn(U,v)?P(U):v&&Si(v),c.delete(H),g.delete(H)}_t(()=>[n.include,n.exclude],([H,U])=>{H&&D(W=>jo(H,W)),U&&D(W=>!jo(U,W))},{flush:"post",deep:!0});let X=null;const R=()=>{X!=null&&c.set(X,$i(r.subTree))};return Ve(R),Ea(R),Qe(()=>{c.forEach(H=>{const{subTree:U,suspense:W}=r,_=$i(U);if(H.type===_.type&&H.key===_.key){Si(_);const tt=_.component.da;tt&&Ge(tt,W);return}P(H)})}),()=>{if(X=null,!l.default)return null;const H=l.default(),U=H[0];if(H.length>1)return v=null,H;if(!ql(U)||!(U.shapeFlag&4)&&!(U.shapeFlag&128))return v=null,U;let W=$i(U);const _=W.type,tt=u0(gr(W)?W.type.__asyncResolved||{}:_),{include:nt,exclude:Y,max:G}=n;if(nt&&(!tt||!jo(nt,tt))||Y&&tt&&jo(Y,tt))return v=W,U;const et=W.key==null?_:W.key,st=c.get(et);return W.el&&(W=Gn(W),U.shapeFlag&128&&(U.ssContent=W)),X=et,st?(W.el=st.el,W.component=st.component,W.transition&&kr(W,W.transition),W.shapeFlag|=512,g.delete(et),g.add(et)):(g.add(et),G&&g.size>parseInt(G,10)&&F(g.values().next().value)),W.shapeFlag|=256,v=W,jc(U.type)?U:W}}},_v=Vv;function jo(n,l){return se(n)?n.some(r=>jo(r,l)):Ee(n)?n.split(",").includes(l):rv(n)?n.test(l):!1}function Hh(n,l){Rc(n,"a",l)}function Nh(n,l){Rc(n,"da",l)}function Rc(n,l,r=Oe){const h=n.__wdc||(n.__wdc=()=>{let c=r;for(;c;){if(c.isDeactivated)return;c=c.parent}return n()});if(Ta(l,h,r),r){let c=r.parent;for(;c&&c.parent;)bs(c.parent.vnode)&&Wv(h,l,r,c),c=c.parent}}function Wv(n,l,r,h){const c=Ta(l,n,h,!0);Va(()=>{xh(h[l],c)},r)}function Si(n){n.shapeFlag&=-257,n.shapeFlag&=-513}function $i(n){return n.shapeFlag&128?n.ssContent:n}function Ta(n,l,r=Oe,h=!1){if(r){const c=r[n]||(r[n]=[]),g=l.__weh||(l.__weh=(...v)=>{if(r.isUnmounted)return;ho(),Yl(r);const k=Cn(l,r,n,v);return _l(),co(),k});return h?c.unshift(g):c.push(g),g}}const yl=n=>(l,r=Oe)=>(!Jr||n==="sp")&&Ta(n,(...h)=>l(...h),r),Ms=yl("bm"),Ve=yl("m"),jh=yl("bu"),Ea=yl("u"),Qe=yl("bum"),Va=yl("um"),Tc=yl("sp"),Ec=yl("rtg"),Vc=yl("rtc");function _c(n,l=Oe){Ta("ec",n,l)}const Ph="components",Xv="directives";function qv(n,l){return Lh(Ph,n,!0,l)||n}const Wc=Symbol.for("v-ndc");function Xc(n){return Ee(n)?Lh(Ph,n,!1)||n:n||Wc}function Mn(n){return Lh(Xv,n)}function Lh(n,l,r=!0,h=!1){const c=Xe||Oe;if(c){const g=c.type;if(n===Ph){const k=u0(g,!1);if(k&&(k===l||k===Sn(l)||k===Il(Sn(l))))return g}const v=t1(c[n]||g[n],l)||t1(c.appContext[n],l);return!v&&h?g:v}}function t1(n,l){return n&&(n[l]||n[Sn(l)]||n[Il(Sn(l))])}function Yv(n,l,r,h){let c;const g=r&&r[h];if(se(n)||Ee(n)){c=new Array(n.length);for(let v=0,k=n.length;vl(v,k,void 0,g&&g[k]));else{const v=Object.keys(n);c=new Array(v.length);for(let k=0,x=v.length;k{const g=h.fn(...c);return g&&(g.key=h.key),g}:h.fn)}return n}function Gv(n,l,r={},h,c){if(Xe.isCE||Xe.parent&&gr(Xe.parent)&&Xe.parent.isCE)return l!=="default"&&(r.name=l),t("slot",r,h&&h());let g=n[l];g&&g._c&&(g._d=!1),xs();const v=g&&qc(g(r)),k=_a(Kt,{key:r.key||v&&v.key||`_${l}`},v||(h?h():[]),v&&n._===1?64:-2);return!c&&k.scopeId&&(k.slotScopeIds=[k.scopeId+"-s"]),g&&g._c&&(g._d=!0),k}function qc(n){return n.some(l=>ql(l)?!(l.type===on||l.type===Kt&&!qc(l.children)):!0)?n:null}function Zv(n,l){const r={};for(const h in n)r[l&&/[A-Z]/.test(h)?`on:${h}`:Oo(h)]=n[h];return r}const l0=n=>n?uu(n)?Xa(n)||n.proxy:l0(n.parent):null,Ro=qe(Object.create(null),{$:n=>n,$el:n=>n.vnode.el,$data:n=>n.data,$props:n=>n.props,$attrs:n=>n.attrs,$slots:n=>n.slots,$refs:n=>n.refs,$parent:n=>l0(n.parent),$root:n=>l0(n.root),$emit:n=>n.emit,$options:n=>Dh(n),$forceUpdate:n=>n.f||(n.f=()=>Da(n.update)),$nextTick:n=>n.n||(n.n=we.bind(n.proxy)),$watch:n=>Rv.bind(n)}),Ai=(n,l)=>n!==ye&&!n.__isScriptSetup&&me(n,l),r0={get({_:n},l){const{ctx:r,setupState:h,data:c,props:g,accessCache:v,type:k,appContext:x}=n;let I;if(l[0]!=="$"){const P=v[l];if(P!==void 0)switch(P){case 1:return h[l];case 2:return c[l];case 4:return r[l];case 3:return g[l]}else{if(Ai(h,l))return v[l]=1,h[l];if(c!==ye&&me(c,l))return v[l]=2,c[l];if((I=n.propsOptions[0])&&me(I,l))return v[l]=3,g[l];if(r!==ye&&me(r,l))return v[l]=4,r[l];o0&&(v[l]=0)}}const S=Ro[l];let $,B;if(S)return l==="$attrs"&&mn(n,"get",l),S(n);if(($=k.__cssModules)&&($=$[l]))return $;if(r!==ye&&me(r,l))return v[l]=4,r[l];if(B=x.config.globalProperties,me(B,l))return B[l]},set({_:n},l,r){const{data:h,setupState:c,ctx:g}=n;return Ai(c,l)?(c[l]=r,!0):h!==ye&&me(h,l)?(h[l]=r,!0):me(n.props,l)||l[0]==="$"&&l.slice(1)in n?!1:(g[l]=r,!0)},has({_:{data:n,setupState:l,accessCache:r,ctx:h,appContext:c,propsOptions:g}},v){let k;return!!r[v]||n!==ye&&me(n,v)||Ai(l,v)||(k=g[0])&&me(k,v)||me(h,v)||me(Ro,v)||me(c.config.globalProperties,v)},defineProperty(n,l,r){return r.get!=null?n._.accessCache[l]=0:me(r,"value")&&this.set(n,l,r.value,null),Reflect.defineProperty(n,l,r)}},Kv=qe({},r0,{get(n,l){if(l!==Symbol.unscopables)return r0.get(n,l,n)},has(n,l){return l[0]!=="_"&&!dv(l)}});function Qv(){return null}function Jv(){return null}function t3(n){}function e3(n){}function n3(){return null}function l3(){}function r3(n,l){return null}function o3(){return Yc().slots}function s3(){return Yc().attrs}function a3(n,l,r){const h=al();if(r&&r.local){const c=Lt(n[l]);return _t(()=>n[l],g=>c.value=g),_t(c,g=>{g!==n[l]&&h.emit(`update:${l}`,g)}),c}else return{__v_isRef:!0,get value(){return n[l]},set value(c){h.emit(`update:${l}`,c)}}}function Yc(){const n=al();return n.setupContext||(n.setupContext=wu(n))}function ts(n){return se(n)?n.reduce((l,r)=>(l[r]=null,l),{}):n}function i3(n,l){const r=ts(n);for(const h in l){if(h.startsWith("__skip"))continue;let c=r[h];c?se(c)||oe(c)?c=r[h]={type:c,default:l[h]}:c.default=l[h]:c===null&&(c=r[h]={default:l[h]}),c&&l[`__skip_${h}`]&&(c.skipFactory=!0)}return r}function h3(n,l){return!n||!l?n||l:se(n)&&se(l)?n.concat(l):qe({},ts(n),ts(l))}function d3(n,l){const r={};for(const h in n)l.includes(h)||Object.defineProperty(r,h,{enumerable:!0,get:()=>n[h]});return r}function c3(n){const l=al();let r=n();return _l(),zh(r)&&(r=r.catch(h=>{throw Yl(l),h})),[r,()=>Yl(l)]}let o0=!0;function u3(n){const l=Dh(n),r=n.proxy,h=n.ctx;o0=!1,l.beforeCreate&&e1(l.beforeCreate,n,"bc");const{data:c,computed:g,methods:v,watch:k,provide:x,inject:I,created:S,beforeMount:$,mounted:B,beforeUpdate:P,updated:D,activated:F,deactivated:X,beforeDestroy:R,beforeUnmount:H,destroyed:U,unmounted:W,render:_,renderTracked:tt,renderTriggered:nt,errorCaptured:Y,serverPrefetch:G,expose:et,inheritAttrs:st,components:rt,directives:ht,filters:dt}=l;if(I&&p3(I,h,null),v)for(const wt in v){const gt=v[wt];oe(gt)&&(h[wt]=gt.bind(r))}if(c){const wt=c.call(r,r);Fe(wt)&&(n.data=Ze(wt))}if(o0=!0,g)for(const wt in g){const gt=g[wt],It=oe(gt)?gt.bind(r,r):oe(gt.get)?gt.get.bind(r,r):rl,At=!oe(gt)&&oe(gt.set)?gt.set.bind(r):rl,Tt=q({get:It,set:At});Object.defineProperty(h,wt,{enumerable:!0,configurable:!0,get:()=>Tt.value,set:Ft=>Tt.value=Ft})}if(k)for(const wt in k)Uc(k[wt],h,r,wt);if(x){const wt=oe(x)?x.call(r):x;Reflect.ownKeys(wt).forEach(gt=>{Se(gt,wt[gt])})}S&&e1(S,n,"c");function xt(wt,gt){se(gt)?gt.forEach(It=>wt(It.bind(r))):gt&&wt(gt.bind(r))}if(xt(Ms,$),xt(Ve,B),xt(jh,P),xt(Ea,D),xt(Hh,F),xt(Nh,X),xt(_c,Y),xt(Vc,tt),xt(Ec,nt),xt(Qe,H),xt(Va,W),xt(Tc,G),se(et))if(et.length){const wt=n.exposed||(n.exposed={});et.forEach(gt=>{Object.defineProperty(wt,gt,{get:()=>r[gt],set:It=>r[gt]=It})})}else n.exposed||(n.exposed={});_&&n.render===rl&&(n.render=_),st!=null&&(n.inheritAttrs=st),rt&&(n.components=rt),ht&&(n.directives=ht)}function p3(n,l,r=rl){se(n)&&(n=s0(n));for(const h in n){const c=n[h];let g;Fe(c)?"default"in c?g=de(c.from||h,c.default,!0):g=de(c.from||h):g=de(c),Me(g)?Object.defineProperty(l,h,{enumerable:!0,configurable:!0,get:()=>g.value,set:v=>g.value=v}):l[h]=g}}function e1(n,l,r){Cn(se(n)?n.map(h=>h.bind(l.proxy)):n.bind(l.proxy),l,r)}function Uc(n,l,r,h){const c=h.includes(".")?Dc(r,h):()=>r[h];if(Ee(n)){const g=l[n];oe(g)&&_t(c,g)}else if(oe(n))_t(c,n.bind(r));else if(Fe(n))if(se(n))n.forEach(g=>Uc(g,l,r,h));else{const g=oe(n.handler)?n.handler.bind(r):l[n.handler];oe(g)&&_t(c,g,n)}}function Dh(n){const l=n.type,{mixins:r,extends:h}=l,{mixins:c,optionsCache:g,config:{optionMergeStrategies:v}}=n.appContext,k=g.get(l);let x;return k?x=k:!c.length&&!r&&!h?x=l:(x={},c.length&&c.forEach(I=>ua(x,I,v,!0)),ua(x,l,v)),Fe(l)&&g.set(l,x),x}function ua(n,l,r,h=!1){const{mixins:c,extends:g}=l;g&&ua(n,g,r,!0),c&&c.forEach(v=>ua(n,v,r,!0));for(const v in l)if(!(h&&v==="expose")){const k=g3[v]||r&&r[v];n[v]=k?k(n[v],l[v]):l[v]}return n}const g3={data:n1,props:l1,emits:l1,methods:Po,computed:Po,beforeCreate:un,created:un,beforeMount:un,mounted:un,beforeUpdate:un,updated:un,beforeDestroy:un,beforeUnmount:un,destroyed:un,unmounted:un,activated:un,deactivated:un,errorCaptured:un,serverPrefetch:un,components:Po,directives:Po,watch:v3,provide:n1,inject:w3};function n1(n,l){return l?n?function(){return qe(oe(n)?n.call(this,this):n,oe(l)?l.call(this,this):l)}:l:n}function w3(n,l){return Po(s0(n),s0(l))}function s0(n){if(se(n)){const l={};for(let r=0;r1)return r&&oe(l)?l.call(h&&h.proxy):l}}function Zc(){return!!(Oe||Xe||es)}function k3(n,l,r,h=!1){const c={},g={};t0(g,Wa,1),n.propsDefaults=Object.create(null),Kc(n,l,c,g);for(const v in n.propsOptions[0])v in c||(c[v]=void 0);r?n.props=h?c:fh(c):n.type.props?n.props=c:n.props=g,n.attrs=g}function b3(n,l,r,h){const{props:c,attrs:g,vnode:{patchFlag:v}}=n,k=le(c),[x]=n.propsOptions;let I=!1;if((h||v>0)&&!(v&16)){if(v&8){const S=n.vnode.dynamicProps;for(let $=0;${x=!0;const[B,P]=Qc($,l,!0);qe(v,B),P&&k.push(...P)};!r&&l.mixins.length&&l.mixins.forEach(S),n.extends&&S(n.extends),n.mixins&&n.mixins.forEach(S)}if(!g&&!x)return Fe(n)&&h.set(n,Ur),Ur;if(se(g))for(let S=0;S-1,P[1]=F<0||D-1||me(P,"default"))&&k.push($)}}}const I=[v,k];return Fe(n)&&h.set(n,I),I}function r1(n){return n[0]!=="$"}function o1(n){const l=n&&n.toString().match(/^\s*(function|class) (\w+)/);return l?l[2]:n===null?"null":""}function s1(n,l){return o1(n)===o1(l)}function a1(n,l){return se(l)?l.findIndex(r=>s1(r,n)):oe(l)&&s1(l,n)?0:-1}const Jc=n=>n[0]==="_"||n==="$stable",Oh=n=>se(n)?n.map(In):[In(n)],M3=(n,l,r)=>{if(l._n)return l;const h=Ch((...c)=>Oh(l(...c)),r);return h._c=!1,h},tu=(n,l,r)=>{const h=n._ctx;for(const c in n){if(Jc(c))continue;const g=n[c];if(oe(g))l[c]=M3(c,g,h);else if(g!=null){const v=Oh(g);l[c]=()=>v}}},eu=(n,l)=>{const r=Oh(l);n.slots.default=()=>r},x3=(n,l)=>{if(n.vnode.shapeFlag&32){const r=l._;r?(n.slots=le(l),t0(l,"_",r)):tu(l,n.slots={})}else n.slots={},l&&eu(n,l);t0(n.slots,Wa,1)},z3=(n,l,r)=>{const{vnode:h,slots:c}=n;let g=!0,v=ye;if(h.shapeFlag&32){const k=l._;k?r&&k===1?g=!1:(qe(c,l),!r&&k===1&&delete c._):(g=!l.$stable,tu(l,c)),v=l}else l&&(eu(n,l),v={default:1});if(g)for(const k in c)!Jc(k)&&!(k in v)&&delete c[k]};function pa(n,l,r,h,c=!1){if(se(n)){n.forEach((B,P)=>pa(B,l&&(se(l)?l[P]:l),r,h,c));return}if(gr(h)&&!c)return;const g=h.shapeFlag&4?Xa(h.component)||h.component.proxy:h.el,v=c?null:g,{i:k,r:x}=n,I=l&&l.r,S=k.refs===ye?k.refs={}:k.refs,$=k.setupState;if(I!=null&&I!==x&&(Ee(I)?(S[I]=null,me($,I)&&($[I]=null)):Me(I)&&(I.value=null)),oe(x))fl(x,k,12,[v,S]);else{const B=Ee(x),P=Me(x);if(B||P){const D=()=>{if(n.f){const F=B?me($,x)?$[x]:S[x]:x.value;c?se(F)&&xh(F,g):se(F)?F.includes(g)||F.push(g):B?(S[x]=[g],me($,x)&&($[x]=S[x])):(x.value=[g],n.k&&(S[n.k]=x.value))}else B?(S[x]=v,me($,x)&&($[x]=v)):P&&(x.value=v,n.k&&(S[n.k]=v))};v?(D.id=-1,Ge(D,r)):D()}}}let Nl=!1;const Ws=n=>/svg/.test(n.namespaceURI)&&n.tagName!=="foreignObject",Xs=n=>n.nodeType===8;function I3(n){const{mt:l,p:r,o:{patchProp:h,createText:c,nextSibling:g,parentNode:v,remove:k,insert:x,createComment:I}}=n,S=(R,H)=>{if(!H.hasChildNodes()){r(null,R,H),ca(),H._vnode=R;return}Nl=!1,$(H.firstChild,R,null,null,null),ca(),H._vnode=R,Nl&&console.error("Hydration completed but contains mismatches.")},$=(R,H,U,W,_,tt=!1)=>{const nt=Xs(R)&&R.data==="[",Y=()=>F(R,H,U,W,_,nt),{type:G,ref:et,shapeFlag:st,patchFlag:rt}=H;let ht=R.nodeType;H.el=R,rt===-2&&(tt=!1,H.dynamicChildren=null);let dt=null;switch(G){case Xl:ht!==3?H.children===""?(x(H.el=c(""),v(R),R),dt=R):dt=Y():(R.data!==H.children&&(Nl=!0,R.data=H.children),dt=g(R));break;case on:ht!==8||nt?dt=Y():dt=g(R);break;case wr:if(nt&&(R=g(R),ht=R.nodeType),ht===1||ht===3){dt=R;const Ct=!H.children.length;for(let xt=0;xt{tt=tt||!!H.dynamicChildren;const{type:nt,props:Y,patchFlag:G,shapeFlag:et,dirs:st}=H,rt=nt==="input"&&st||nt==="option";if(rt||G!==-1){if(st&&tl(H,null,U,"created"),Y)if(rt||!tt||G&48)for(const dt in Y)(rt&&dt.endsWith("value")||Na(dt)&&!Do(dt))&&h(R,dt,null,Y[dt],!1,void 0,U);else Y.onClick&&h(R,"onClick",null,Y.onClick,!1,void 0,U);let ht;if((ht=Y&&Y.onVnodeBeforeMount)&&wn(ht,U,H),st&&tl(H,null,U,"beforeMount"),((ht=Y&&Y.onVnodeMounted)||st)&&Pc(()=>{ht&&wn(ht,U,H),st&&tl(H,null,U,"mounted")},W),et&16&&!(Y&&(Y.innerHTML||Y.textContent))){let dt=P(R.firstChild,H,R,U,W,_,tt);for(;dt;){Nl=!0;const Ct=dt;dt=dt.nextSibling,k(Ct)}}else et&8&&R.textContent!==H.children&&(Nl=!0,R.textContent=H.children)}return R.nextSibling},P=(R,H,U,W,_,tt,nt)=>{nt=nt||!!H.dynamicChildren;const Y=H.children,G=Y.length;for(let et=0;et{const{slotScopeIds:nt}=H;nt&&(_=_?_.concat(nt):nt);const Y=v(R),G=P(g(R),H,Y,U,W,_,tt);return G&&Xs(G)&&G.data==="]"?g(H.anchor=G):(Nl=!0,x(H.anchor=I("]"),Y,G),G)},F=(R,H,U,W,_,tt)=>{if(Nl=!0,H.el=null,tt){const G=X(R);for(;;){const et=g(R);if(et&&et!==G)k(et);else break}}const nt=g(R),Y=v(R);return k(R),r(null,H,Y,nt,U,W,Ws(Y),_),nt},X=R=>{let H=0;for(;R;)if(R=g(R),R&&Xs(R)&&(R.data==="["&&H++,R.data==="]")){if(H===0)return g(R);H--}return R};return[S,$]}const Ge=Pc;function nu(n){return ru(n)}function lu(n){return ru(n,I3)}function ru(n,l){const r=e0();r.__VUE__=!0;const{insert:h,remove:c,patchProp:g,createElement:v,createText:k,createComment:x,setText:I,setElementText:S,parentNode:$,nextSibling:B,setScopeId:P=rl,insertStaticContent:D}=n,F=(J,lt,at,ct=null,kt=null,yt=null,Ot=!1,$t=null,Rt=!!lt.dynamicChildren)=>{if(J===lt)return;J&&!qn(J,lt)&&(ct=pt(J),Ft(J,kt,yt,!0),J=null),lt.patchFlag===-2&&(Rt=!1,lt.dynamicChildren=null);const{type:Pt,ref:Zt,shapeFlag:Ut}=lt;switch(Pt){case Xl:X(J,lt,at,ct);break;case on:R(J,lt,at,ct);break;case wr:J==null&&H(lt,at,ct,Ot);break;case Kt:rt(J,lt,at,ct,kt,yt,Ot,$t,Rt);break;default:Ut&1?_(J,lt,at,ct,kt,yt,Ot,$t,Rt):Ut&6?ht(J,lt,at,ct,kt,yt,Ot,$t,Rt):(Ut&64||Ut&128)&&Pt.process(J,lt,at,ct,kt,yt,Ot,$t,Rt,jt)}Zt!=null&&kt&&pa(Zt,J&&J.ref,yt,lt||J,!lt)},X=(J,lt,at,ct)=>{if(J==null)h(lt.el=k(lt.children),at,ct);else{const kt=lt.el=J.el;lt.children!==J.children&&I(kt,lt.children)}},R=(J,lt,at,ct)=>{J==null?h(lt.el=x(lt.children||""),at,ct):lt.el=J.el},H=(J,lt,at,ct)=>{[J.el,J.anchor]=D(J.children,lt,at,ct,J.el,J.anchor)},U=({el:J,anchor:lt},at,ct)=>{let kt;for(;J&&J!==lt;)kt=B(J),h(J,at,ct),J=kt;h(lt,at,ct)},W=({el:J,anchor:lt})=>{let at;for(;J&&J!==lt;)at=B(J),c(J),J=at;c(lt)},_=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{Ot=Ot||lt.type==="svg",J==null?tt(lt,at,ct,kt,yt,Ot,$t,Rt):G(J,lt,kt,yt,Ot,$t,Rt)},tt=(J,lt,at,ct,kt,yt,Ot,$t)=>{let Rt,Pt;const{type:Zt,props:Ut,shapeFlag:Gt,transition:te,dirs:ae}=J;if(Rt=J.el=v(J.type,yt,Ut&&Ut.is,Ut),Gt&8?S(Rt,J.children):Gt&16&&Y(J.children,Rt,null,ct,kt,yt&&Zt!=="foreignObject",Ot,$t),ae&&tl(J,null,ct,"created"),nt(Rt,J,J.scopeId,Ot,ct),Ut){for(const ge in Ut)ge!=="value"&&!Do(ge)&&g(Rt,ge,null,Ut[ge],yt,J.children,ct,kt,ut);"value"in Ut&&g(Rt,"value",null,Ut.value),(Pt=Ut.onVnodeBeforeMount)&&wn(Pt,ct,J)}ae&&tl(J,null,ct,"beforeMount");const be=(!kt||kt&&!kt.pendingBranch)&&te&&!te.persisted;be&&te.beforeEnter(Rt),h(Rt,lt,at),((Pt=Ut&&Ut.onVnodeMounted)||be||ae)&&Ge(()=>{Pt&&wn(Pt,ct,J),be&&te.enter(Rt),ae&&tl(J,null,ct,"mounted")},kt)},nt=(J,lt,at,ct,kt)=>{if(at&&P(J,at),ct)for(let yt=0;yt{for(let Pt=Rt;Pt{const $t=lt.el=J.el;let{patchFlag:Rt,dynamicChildren:Pt,dirs:Zt}=lt;Rt|=J.patchFlag&16;const Ut=J.props||ye,Gt=lt.props||ye;let te;at&&rr(at,!1),(te=Gt.onVnodeBeforeUpdate)&&wn(te,at,lt,J),Zt&&tl(lt,J,at,"beforeUpdate"),at&&rr(at,!0);const ae=kt&<.type!=="foreignObject";if(Pt?et(J.dynamicChildren,Pt,$t,at,ct,ae,yt):Ot||gt(J,lt,$t,null,at,ct,ae,yt,!1),Rt>0){if(Rt&16)st($t,lt,Ut,Gt,at,ct,kt);else if(Rt&2&&Ut.class!==Gt.class&&g($t,"class",null,Gt.class,kt),Rt&4&&g($t,"style",Ut.style,Gt.style,kt),Rt&8){const be=lt.dynamicProps;for(let ge=0;ge{te&&wn(te,at,lt,J),Zt&&tl(lt,J,at,"updated")},ct)},et=(J,lt,at,ct,kt,yt,Ot)=>{for(let $t=0;$t{if(at!==ct){if(at!==ye)for(const $t in at)!Do($t)&&!($t in ct)&&g(J,$t,at[$t],null,Ot,lt.children,kt,yt,ut);for(const $t in ct){if(Do($t))continue;const Rt=ct[$t],Pt=at[$t];Rt!==Pt&&$t!=="value"&&g(J,$t,Pt,Rt,Ot,lt.children,kt,yt,ut)}"value"in ct&&g(J,"value",at.value,ct.value)}},rt=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{const Pt=lt.el=J?J.el:k(""),Zt=lt.anchor=J?J.anchor:k("");let{patchFlag:Ut,dynamicChildren:Gt,slotScopeIds:te}=lt;te&&($t=$t?$t.concat(te):te),J==null?(h(Pt,at,ct),h(Zt,at,ct),Y(lt.children,at,Zt,kt,yt,Ot,$t,Rt)):Ut>0&&Ut&64&&Gt&&J.dynamicChildren?(et(J.dynamicChildren,Gt,at,kt,yt,Ot,$t),(lt.key!=null||kt&<===kt.subTree)&&Fh(J,lt,!0)):gt(J,lt,at,Zt,kt,yt,Ot,$t,Rt)},ht=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{lt.slotScopeIds=$t,J==null?lt.shapeFlag&512?kt.ctx.activate(lt,at,ct,Ot,Rt):dt(lt,at,ct,kt,yt,Ot,Rt):Ct(J,lt,Rt)},dt=(J,lt,at,ct,kt,yt,Ot)=>{const $t=J.component=cu(J,ct,kt);if(bs(J)&&($t.ctx.renderer=jt),pu($t),$t.asyncDep){if(kt&&kt.registerDep($t,xt),!J.el){const Rt=$t.subTree=t(on);R(null,Rt,lt,at)}return}xt($t,J,lt,at,kt,yt,Ot)},Ct=(J,lt,at)=>{const ct=lt.component=J.component;if(Bv(J,lt,at))if(ct.asyncDep&&!ct.asyncResolved){wt(ct,lt,at);return}else ct.next=lt,Mv(ct.update),ct.update();else lt.el=J.el,ct.vnode=lt},xt=(J,lt,at,ct,kt,yt,Ot)=>{const $t=()=>{if(J.isMounted){let{next:Zt,bu:Ut,u:Gt,parent:te,vnode:ae}=J,be=Zt,ge;rr(J,!1),Zt?(Zt.el=ae.el,wt(J,Zt,Ot)):Zt=ae,Ut&&Fo(Ut),(ge=Zt.props&&Zt.props.onVnodeBeforeUpdate)&&wn(ge,te,Zt,ae),rr(J,!0);const Ae=na(J),xn=J.subTree;J.subTree=Ae,F(xn,Ae,$(xn.el),pt(xn),J,kt,yt),Zt.el=Ae.el,be===null&&Sh(J,Ae.el),Gt&&Ge(Gt,kt),(ge=Zt.props&&Zt.props.onVnodeUpdated)&&Ge(()=>wn(ge,te,Zt,ae),kt)}else{let Zt;const{el:Ut,props:Gt}=lt,{bm:te,m:ae,parent:be}=J,ge=gr(lt);if(rr(J,!1),te&&Fo(te),!ge&&(Zt=Gt&&Gt.onVnodeBeforeMount)&&wn(Zt,be,lt),rr(J,!0),Ut&&ft){const Ae=()=>{J.subTree=na(J),ft(Ut,J.subTree,J,kt,null)};ge?lt.type.__asyncLoader().then(()=>!J.isUnmounted&&Ae()):Ae()}else{const Ae=J.subTree=na(J);F(null,Ae,at,ct,J,kt,yt),lt.el=Ae.el}if(ae&&Ge(ae,kt),!ge&&(Zt=Gt&&Gt.onVnodeMounted)){const Ae=lt;Ge(()=>wn(Zt,be,Ae),kt)}(lt.shapeFlag&256||be&&gr(be.vnode)&&be.vnode.shapeFlag&256)&&J.a&&Ge(J.a,kt),J.isMounted=!0,lt=at=ct=null}},Rt=J.effect=new gs($t,()=>Da(Pt),J.scope),Pt=J.update=()=>Rt.run();Pt.id=J.uid,rr(J,!0),Pt()},wt=(J,lt,at)=>{lt.component=J;const ct=J.vnode.props;J.vnode=lt,J.next=null,b3(J,lt.props,ct,at),z3(J,lt.children,at),ho(),Z2(),co()},gt=(J,lt,at,ct,kt,yt,Ot,$t,Rt=!1)=>{const Pt=J&&J.children,Zt=J?J.shapeFlag:0,Ut=lt.children,{patchFlag:Gt,shapeFlag:te}=lt;if(Gt>0){if(Gt&128){At(Pt,Ut,at,ct,kt,yt,Ot,$t,Rt);return}else if(Gt&256){It(Pt,Ut,at,ct,kt,yt,Ot,$t,Rt);return}}te&8?(Zt&16&&ut(Pt,kt,yt),Ut!==Pt&&S(at,Ut)):Zt&16?te&16?At(Pt,Ut,at,ct,kt,yt,Ot,$t,Rt):ut(Pt,kt,yt,!0):(Zt&8&&S(at,""),te&16&&Y(Ut,at,ct,kt,yt,Ot,$t,Rt))},It=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{J=J||Ur,lt=lt||Ur;const Pt=J.length,Zt=lt.length,Ut=Math.min(Pt,Zt);let Gt;for(Gt=0;GtZt?ut(J,kt,yt,!0,!1,Ut):Y(lt,at,ct,kt,yt,Ot,$t,Rt,Ut)},At=(J,lt,at,ct,kt,yt,Ot,$t,Rt)=>{let Pt=0;const Zt=lt.length;let Ut=J.length-1,Gt=Zt-1;for(;Pt<=Ut&&Pt<=Gt;){const te=J[Pt],ae=lt[Pt]=Rt?Fl(lt[Pt]):In(lt[Pt]);if(qn(te,ae))F(te,ae,at,null,kt,yt,Ot,$t,Rt);else break;Pt++}for(;Pt<=Ut&&Pt<=Gt;){const te=J[Ut],ae=lt[Gt]=Rt?Fl(lt[Gt]):In(lt[Gt]);if(qn(te,ae))F(te,ae,at,null,kt,yt,Ot,$t,Rt);else break;Ut--,Gt--}if(Pt>Ut){if(Pt<=Gt){const te=Gt+1,ae=teGt)for(;Pt<=Ut;)Ft(J[Pt],kt,yt,!0),Pt++;else{const te=Pt,ae=Pt,be=new Map;for(Pt=ae;Pt<=Gt;Pt++){const cn=lt[Pt]=Rt?Fl(lt[Pt]):In(lt[Pt]);cn.key!=null&&be.set(cn.key,Pt)}let ge,Ae=0;const xn=Gt-ae+1;let hl=!1,Ps=0;const Bl=new Array(xn);for(Pt=0;Pt=xn){Ft(cn,kt,yt,!0);continue}let Bn;if(cn.key!=null)Bn=be.get(cn.key);else for(ge=ae;ge<=Gt;ge++)if(Bl[ge-ae]===0&&qn(cn,lt[ge])){Bn=ge;break}Bn===void 0?Ft(cn,kt,yt,!0):(Bl[Bn-ae]=Pt+1,Bn>=Ps?Ps=Bn:hl=!0,F(cn,lt[Bn],at,null,kt,yt,Ot,$t,Rt),Ae++)}const Ls=hl?y3(Bl):Ur;for(ge=Ls.length-1,Pt=xn-1;Pt>=0;Pt--){const cn=ae+Pt,Bn=lt[cn],yo=cn+1{const{el:yt,type:Ot,transition:$t,children:Rt,shapeFlag:Pt}=J;if(Pt&6){Tt(J.component.subTree,lt,at,ct);return}if(Pt&128){J.suspense.move(lt,at,ct);return}if(Pt&64){Ot.move(J,lt,at,jt);return}if(Ot===Kt){h(yt,lt,at);for(let Ut=0;Ut$t.enter(yt),kt);else{const{leave:Ut,delayLeave:Gt,afterLeave:te}=$t,ae=()=>h(yt,lt,at),be=()=>{Ut(yt,()=>{ae(),te&&te()})};Gt?Gt(yt,ae,be):be()}else h(yt,lt,at)},Ft=(J,lt,at,ct=!1,kt=!1)=>{const{type:yt,props:Ot,ref:$t,children:Rt,dynamicChildren:Pt,shapeFlag:Zt,patchFlag:Ut,dirs:Gt}=J;if($t!=null&&pa($t,null,at,J,!0),Zt&256){lt.ctx.deactivate(J);return}const te=Zt&1&&Gt,ae=!gr(J);let be;if(ae&&(be=Ot&&Ot.onVnodeBeforeUnmount)&&wn(be,lt,J),Zt&6)Et(J.component,at,ct);else{if(Zt&128){J.suspense.unmount(at,ct);return}te&&tl(J,null,lt,"beforeUnmount"),Zt&64?J.type.remove(J,lt,at,kt,jt,ct):Pt&&(yt!==Kt||Ut>0&&Ut&64)?ut(Pt,lt,at,!1,!0):(yt===Kt&&Ut&384||!kt&&Zt&16)&&ut(Rt,lt,at),ct&&Qt(J)}(ae&&(be=Ot&&Ot.onVnodeUnmounted)||te)&&Ge(()=>{be&&wn(be,lt,J),te&&tl(J,null,lt,"unmounted")},at)},Qt=J=>{const{type:lt,el:at,anchor:ct,transition:kt}=J;if(lt===Kt){Jt(at,ct);return}if(lt===wr){W(J);return}const yt=()=>{c(at),kt&&!kt.persisted&&kt.afterLeave&&kt.afterLeave()};if(J.shapeFlag&1&&kt&&!kt.persisted){const{leave:Ot,delayLeave:$t}=kt,Rt=()=>Ot(at,yt);$t?$t(J.el,yt,Rt):Rt()}else yt()},Jt=(J,lt)=>{let at;for(;J!==lt;)at=B(J),c(J),J=at;c(lt)},Et=(J,lt,at)=>{const{bum:ct,scope:kt,update:yt,subTree:Ot,um:$t}=J;ct&&Fo(ct),kt.stop(),yt&&(yt.active=!1,Ft(Ot,J,lt,at)),$t&&Ge($t,lt),Ge(()=>{J.isUnmounted=!0},lt),lt&<.pendingBranch&&!lt.isUnmounted&&J.asyncDep&&!J.asyncResolved&&J.suspenseId===lt.pendingId&&(lt.deps--,lt.deps===0&<.resolve())},ut=(J,lt,at,ct=!1,kt=!1,yt=0)=>{for(let Ot=yt;OtJ.shapeFlag&6?pt(J.component.subTree):J.shapeFlag&128?J.suspense.next():B(J.anchor||J.el),Nt=(J,lt,at)=>{J==null?lt._vnode&&Ft(lt._vnode,null,null,!0):F(lt._vnode||null,J,lt,null,null,null,at),Z2(),ca(),lt._vnode=J},jt={p:F,um:Ft,m:Tt,r:Qt,mt:dt,mc:Y,pc:gt,pbc:et,n:pt,o:n};let bt,ft;return l&&([bt,ft]=l(jt)),{render:Nt,hydrate:bt,createApp:m3(Nt,bt)}}function rr({effect:n,update:l},r){n.allowRecurse=l.allowRecurse=r}function Fh(n,l,r=!1){const h=n.children,c=l.children;if(se(h)&&se(c))for(let g=0;g>1,n[r[k]]0&&(l[h]=r[g-1]),r[g]=h)}}for(g=r.length,v=r[g-1];g-- >0;)r[g]=v,v=l[v];return r}const C3=n=>n.__isTeleport,To=n=>n&&(n.disabled||n.disabled===""),i1=n=>typeof SVGElement<"u"&&n instanceof SVGElement,i0=(n,l)=>{const r=n&&n.to;return Ee(r)?l?l(r):null:r},S3={__isTeleport:!0,process(n,l,r,h,c,g,v,k,x,I){const{mc:S,pc:$,pbc:B,o:{insert:P,querySelector:D,createText:F,createComment:X}}=I,R=To(l.props);let{shapeFlag:H,children:U,dynamicChildren:W}=l;if(n==null){const _=l.el=F(""),tt=l.anchor=F("");P(_,r,h),P(tt,r,h);const nt=l.target=i0(l.props,D),Y=l.targetAnchor=F("");nt&&(P(Y,nt),v=v||i1(nt));const G=(et,st)=>{H&16&&S(U,et,st,c,g,v,k,x)};R?G(r,tt):nt&&G(nt,Y)}else{l.el=n.el;const _=l.anchor=n.anchor,tt=l.target=n.target,nt=l.targetAnchor=n.targetAnchor,Y=To(n.props),G=Y?r:tt,et=Y?_:nt;if(v=v||i1(tt),W?(B(n.dynamicChildren,W,G,c,g,v,k),Fh(n,l,!0)):x||$(n,l,G,et,c,g,v,k,!1),R)Y||qs(l,r,_,I,1);else if((l.props&&l.props.to)!==(n.props&&n.props.to)){const st=l.target=i0(l.props,D);st&&qs(l,st,null,I,0)}else Y&&qs(l,tt,nt,I,1)}su(l)},remove(n,l,r,h,{um:c,o:{remove:g}},v){const{shapeFlag:k,children:x,anchor:I,targetAnchor:S,target:$,props:B}=n;if($&&g(S),(v||!To(B))&&(g(I),k&16))for(let P=0;P0?fn||Ur:null,au(),br>0&&fn&&fn.push(n),n}function A3(n,l,r,h,c,g){return iu(Rh(n,l,r,h,c,g,!0))}function _a(n,l,r,h,c){return iu(t(n,l,r,h,c,!0))}function ql(n){return n?n.__v_isVNode===!0:!1}function qn(n,l){return n.type===l.type&&n.key===l.key}function B3(n){}const Wa="__vInternal",hu=({key:n})=>n??null,la=({ref:n,ref_key:l,ref_for:r})=>(typeof n=="number"&&(n=""+n),n!=null?Ee(n)||Me(n)||oe(n)?{i:Xe,r:n,k:l,f:!!r}:n:null);function Rh(n,l=null,r=null,h=0,c=null,g=n===Kt?0:1,v=!1,k=!1){const x={__v_isVNode:!0,__v_skip:!0,type:n,props:l,key:l&&hu(l),ref:l&&la(l),scopeId:Fa,slotScopeIds:null,children:r,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:g,patchFlag:h,dynamicProps:c,dynamicChildren:null,appContext:null,ctx:Xe};return k?(Th(x,r),g&128&&n.normalize(x)):r&&(x.shapeFlag|=Ee(r)?8:16),br>0&&!v&&fn&&(x.patchFlag>0||g&6)&&x.patchFlag!==32&&fn.push(x),x}const t=H3;function H3(n,l=null,r=null,h=0,c=null,g=!1){if((!n||n===Wc)&&(n=on),ql(n)){const k=Gn(n,l,!0);return r&&Th(k,r),br>0&&!g&&fn&&(k.shapeFlag&6?fn[fn.indexOf(n)]=k:fn.push(k)),k.patchFlag|=-2,k}if(T3(n)&&(n=n.__vccOpts),l){l=du(l);let{class:k,style:x}=l;k&&!Ee(k)&&(l.class=ms(k)),Fe(x)&&(mh(x)&&!se(x)&&(x=qe({},x)),l.style=fs(x))}const v=Ee(n)?1:jc(n)?128:C3(n)?64:Fe(n)?4:oe(n)?2:0;return Rh(n,l,r,h,c,v,g,!0)}function du(n){return n?mh(n)||Wa in n?qe({},n):n:null}function Gn(n,l,r=!1){const{props:h,ref:c,patchFlag:g,children:v}=n,k=l?o(h||{},l):h;return{__v_isVNode:!0,__v_skip:!0,type:n.type,props:k,key:k&&hu(k),ref:l&&l.ref?r&&c?se(c)?c.concat(la(l)):[c,la(l)]:la(l):c,scopeId:n.scopeId,slotScopeIds:n.slotScopeIds,children:v,target:n.target,targetAnchor:n.targetAnchor,staticCount:n.staticCount,shapeFlag:n.shapeFlag,patchFlag:l&&n.type!==Kt?g===-1?16:g|16:g,dynamicProps:n.dynamicProps,dynamicChildren:n.dynamicChildren,appContext:n.appContext,dirs:n.dirs,transition:n.transition,component:n.component,suspense:n.suspense,ssContent:n.ssContent&&Gn(n.ssContent),ssFallback:n.ssFallback&&Gn(n.ssFallback),el:n.el,anchor:n.anchor,ctx:n.ctx,ce:n.ce}}function e(n=" ",l=0){return t(Xl,null,n,l)}function N3(n,l){const r=t(wr,null,n);return r.staticCount=l,r}function j3(n="",l=!1){return l?(xs(),_a(on,null,n)):t(on,null,n)}function In(n){return n==null||typeof n=="boolean"?t(on):se(n)?t(Kt,null,n.slice()):typeof n=="object"?Fl(n):t(Xl,null,String(n))}function Fl(n){return n.el===null&&n.patchFlag!==-1||n.memo?n:Gn(n)}function Th(n,l){let r=0;const{shapeFlag:h}=n;if(l==null)l=null;else if(se(l))r=16;else if(typeof l=="object")if(h&65){const c=l.default;c&&(c._c&&(c._d=!1),Th(n,c()),c._c&&(c._d=!0));return}else{r=32;const c=l._;!c&&!(Wa in l)?l._ctx=Xe:c===3&&Xe&&(Xe.slots._===1?l._=1:(l._=2,n.patchFlag|=1024))}else oe(l)?(l={default:l,_ctx:Xe},r=32):(l=String(l),h&64?(r=16,l=[e(l)]):r=8);n.children=l,n.shapeFlag|=r}function o(...n){const l={};for(let r=0;rOe||Xe;let Eh,Dr,h1="__VUE_INSTANCE_SETTERS__";(Dr=e0()[h1])||(Dr=e0()[h1]=[]),Dr.push(n=>Oe=n),Eh=n=>{Dr.length>1?Dr.forEach(l=>l(n)):Dr[0](n)};const Yl=n=>{Eh(n),n.scope.on()},_l=()=>{Oe&&Oe.scope.off(),Eh(null)};function uu(n){return n.vnode.shapeFlag&4}let Jr=!1;function pu(n,l=!1){Jr=l;const{props:r,children:h}=n.vnode,c=uu(n);k3(n,r,c,l),x3(n,h);const g=c?D3(n,l):void 0;return Jr=!1,g}function D3(n,l){const r=n.type;n.accessCache=Object.create(null),n.proxy=ws(new Proxy(n.ctx,r0));const{setup:h}=r;if(h){const c=n.setupContext=h.length>1?wu(n):null;Yl(n),ho();const g=fl(h,n,0,[n.props,c]);if(co(),_l(),zh(g)){if(g.then(_l,_l),l)return g.then(v=>{d0(n,v,l)}).catch(v=>{yr(v,n,0)});n.asyncDep=g}else d0(n,g,l)}else gu(n,l)}function d0(n,l,r){oe(l)?n.type.__ssrInlineRender?n.ssrRender=l:n.render=l:Fe(l)&&(n.setupState=Mh(l)),gu(n,r)}let ga,c0;function O3(n){ga=n,c0=l=>{l.render._rc&&(l.withProxy=new Proxy(l.ctx,Kv))}}const F3=()=>!ga;function gu(n,l,r){const h=n.type;if(!n.render){if(!l&&ga&&!h.render){const c=h.template||Dh(n).template;if(c){const{isCustomElement:g,compilerOptions:v}=n.appContext.config,{delimiters:k,compilerOptions:x}=h,I=qe(qe({isCustomElement:g,delimiters:k},v),x);h.render=ga(c,I)}}n.render=h.render||rl,c0&&c0(n)}Yl(n),ho(),u3(n),co(),_l()}function R3(n){return n.attrsProxy||(n.attrsProxy=new Proxy(n.attrs,{get(l,r){return mn(n,"get","$attrs"),l[r]}}))}function wu(n){const l=r=>{n.exposed=r||{}};return{get attrs(){return R3(n)},slots:n.slots,emit:n.emit,expose:l}}function Xa(n){if(n.exposed)return n.exposeProxy||(n.exposeProxy=new Proxy(Mh(ws(n.exposed)),{get(l,r){if(r in l)return l[r];if(r in Ro)return Ro[r](n)},has(l,r){return r in l||r in Ro}}))}function u0(n,l=!0){return oe(n)?n.displayName||n.name:n.name||l&&n.__name}function T3(n){return oe(n)&&"__vccOpts"in n}const q=(n,l)=>tv(n,l,Jr);function Ln(n,l,r){const h=arguments.length;return h===2?Fe(l)&&!se(l)?ql(l)?t(n,null,[l]):t(n,l):t(n,null,l):(h>3?r=Array.prototype.slice.call(arguments,2):h===3&&ql(r)&&(r=[r]),t(n,l,r))}const vu=Symbol.for("v-scx"),fu=()=>de(vu);function E3(){}function V3(n,l,r,h){const c=r[h];if(c&&mu(c,n))return c;const g=l();return g.memo=n.slice(),r[h]=g}function mu(n,l){const r=n.memo;if(r.length!=l.length)return!1;for(let h=0;h0&&fn&&fn.push(n),!0}const ku="3.3.4",_3={createComponentInstance:cu,setupComponent:pu,renderComponentRoot:na,setCurrentRenderingInstance:Qo,isVNode:ql,normalizeVNode:In},W3=_3,X3=null,q3=null;function Y3(n,l){const r=Object.create(null),h=n.split(",");for(let c=0;c!!r[c.toLowerCase()]:c=>!!r[c]}const Bi={},U3=/^on[^a-z]/,G3=n=>U3.test(n),Z3=n=>n.startsWith("onUpdate:"),zs=Object.assign,kn=Array.isArray,Is=n=>Mu(n)==="[object Set]",d1=n=>Mu(n)==="[object Date]",bu=n=>typeof n=="function",ns=n=>typeof n=="string",c1=n=>typeof n=="symbol",p0=n=>n!==null&&typeof n=="object",K3=Object.prototype.toString,Mu=n=>K3.call(n),Vh=n=>{const l=Object.create(null);return r=>l[r]||(l[r]=n(r))},Q3=/-(\w)/g,Hi=Vh(n=>n.replace(Q3,(l,r)=>r?r.toUpperCase():"")),J3=/\B([A-Z])/g,Tl=Vh(n=>n.replace(J3,"-$1").toLowerCase()),tf=Vh(n=>n.charAt(0).toUpperCase()+n.slice(1)),ef=(n,l)=>{for(let r=0;r{const l=parseFloat(n);return isNaN(l)?n:l},w0=n=>{const l=ns(n)?Number(n):NaN;return isNaN(l)?n:l},nf="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",lf=Y3(nf);function xu(n){return!!n||n===""}function rf(n,l){if(n.length!==l.length)return!1;let r=!0;for(let h=0;r&&hUl(r,l))}const of="http://www.w3.org/2000/svg",hr=typeof document<"u"?document:null,u1=hr&&hr.createElement("template"),sf={insert:(n,l,r)=>{l.insertBefore(n,r||null)},remove:n=>{const l=n.parentNode;l&&l.removeChild(n)},createElement:(n,l,r,h)=>{const c=l?hr.createElementNS(of,n):hr.createElement(n,r?{is:r}:void 0);return n==="select"&&h&&h.multiple!=null&&c.setAttribute("multiple",h.multiple),c},createText:n=>hr.createTextNode(n),createComment:n=>hr.createComment(n),setText:(n,l)=>{n.nodeValue=l},setElementText:(n,l)=>{n.textContent=l},parentNode:n=>n.parentNode,nextSibling:n=>n.nextSibling,querySelector:n=>hr.querySelector(n),setScopeId(n,l){n.setAttribute(l,"")},insertStaticContent(n,l,r,h,c,g){const v=r?r.previousSibling:l.lastChild;if(c&&(c===g||c.nextSibling))for(;l.insertBefore(c.cloneNode(!0),r),!(c===g||!(c=c.nextSibling)););else{u1.innerHTML=h?`${n}`:n;const k=u1.content;if(h){const x=k.firstChild;for(;x.firstChild;)k.appendChild(x.firstChild);k.removeChild(x)}l.insertBefore(k,r)}return[v?v.nextSibling:l.firstChild,r?r.previousSibling:l.lastChild]}};function af(n,l,r){const h=n._vtc;h&&(l=(l?[l,...h]:[...h]).join(" ")),l==null?n.removeAttribute("class"):r?n.setAttribute("class",l):n.className=l}function hf(n,l,r){const h=n.style,c=ns(r);if(r&&!c){if(l&&!ns(l))for(const g in l)r[g]==null&&v0(h,g,"");for(const g in r)v0(h,g,r[g])}else{const g=h.display;c?l!==r&&(h.cssText=r):l&&n.removeAttribute("style"),"_vod"in n&&(h.display=g)}}const p1=/\s*!important$/;function v0(n,l,r){if(kn(r))r.forEach(h=>v0(n,l,h));else if(r==null&&(r=""),l.startsWith("--"))n.setProperty(l,r);else{const h=df(n,l);p1.test(r)?n.setProperty(Tl(h),r.replace(p1,""),"important"):n[h]=r}}const g1=["Webkit","Moz","ms"],Ni={};function df(n,l){const r=Ni[l];if(r)return r;let h=Sn(l);if(h!=="filter"&&h in n)return Ni[l]=h;h=tf(h);for(let c=0;cji||(vf.then(()=>ji=0),ji=Date.now());function mf(n,l){const r=h=>{if(!h._vts)h._vts=Date.now();else if(h._vts<=r.attached)return;Cn(kf(h,r.value),l,5,[h])};return r.value=n,r.attached=ff(),r}function kf(n,l){if(kn(l)){const r=n.stopImmediatePropagation;return n.stopImmediatePropagation=()=>{r.call(n),n._stopped=!0},l.map(h=>c=>!c._stopped&&h&&h(c))}else return l}const f1=/^on[a-z]/,bf=(n,l,r,h,c=!1,g,v,k,x)=>{l==="class"?af(n,h,c):l==="style"?hf(n,r,h):G3(l)?Z3(l)||gf(n,l,r,h,v):(l[0]==="."?(l=l.slice(1),!0):l[0]==="^"?(l=l.slice(1),!1):Mf(n,l,h,c))?uf(n,l,h,g,v,k,x):(l==="true-value"?n._trueValue=h:l==="false-value"&&(n._falseValue=h),cf(n,l,h,c))};function Mf(n,l,r,h){return h?!!(l==="innerHTML"||l==="textContent"||l in n&&f1.test(l)&&bu(r)):l==="spellcheck"||l==="draggable"||l==="translate"||l==="form"||l==="list"&&n.tagName==="INPUT"||l==="type"&&n.tagName==="TEXTAREA"||f1.test(l)&&ns(r)?!1:l in n}function zu(n,l){const r=Cr(n);class h extends Ya{constructor(g){super(r,g,l)}}return h.def=r,h}const xf=n=>zu(n,Ru),zf=typeof HTMLElement<"u"?HTMLElement:class{};class Ya extends zf{constructor(l,r={},h){super(),this._def=l,this._props=r,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&h?h(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,we(()=>{this._connected||(k0(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let h=0;h{for(const c of h)this._setAttr(c.attributeName)}).observe(this,{attributes:!0});const l=(h,c=!1)=>{const{props:g,styles:v}=h;let k;if(g&&!kn(g))for(const x in g){const I=g[x];(I===Number||I&&I.type===Number)&&(x in this._props&&(this._props[x]=w0(this._props[x])),(k||(k=Object.create(null)))[Hi(x)]=!0)}this._numberProps=k,c&&this._resolveProps(h),this._applyStyles(v),this._update()},r=this._def.__asyncLoader;r?r().then(h=>l(h,!0)):l(this._def)}_resolveProps(l){const{props:r}=l,h=kn(r)?r:Object.keys(r||{});for(const c of Object.keys(this))c[0]!=="_"&&h.includes(c)&&this._setProp(c,this[c],!0,!1);for(const c of h.map(Hi))Object.defineProperty(this,c,{get(){return this._getProp(c)},set(g){this._setProp(c,g)}})}_setAttr(l){let r=this.getAttribute(l);const h=Hi(l);this._numberProps&&this._numberProps[h]&&(r=w0(r)),this._setProp(h,r,!1)}_getProp(l){return this._props[l]}_setProp(l,r,h=!0,c=!0){r!==this._props[l]&&(this._props[l]=r,c&&this._instance&&this._update(),h&&(r===!0?this.setAttribute(Tl(l),""):typeof r=="string"||typeof r=="number"?this.setAttribute(Tl(l),r+""):r||this.removeAttribute(Tl(l))))}_update(){k0(this._createVNode(),this.shadowRoot)}_createVNode(){const l=t(this._def,zs({},this._props));return this._instance||(l.ce=r=>{this._instance=r,r.isCE=!0;const h=(g,v)=>{this.dispatchEvent(new CustomEvent(g,{detail:v}))};r.emit=(g,...v)=>{h(g,v),Tl(g)!==g&&h(Tl(g),v)};let c=this;for(;c=c&&(c.parentNode||c.host);)if(c instanceof Ya){r.parent=c._instance,r.provides=c._instance.provides;break}}),l}_applyStyles(l){l&&l.forEach(r=>{const h=document.createElement("style");h.textContent=r,this.shadowRoot.appendChild(h)})}}function If(n="$style"){{const l=al();if(!l)return Bi;const r=l.type.__cssModules;if(!r)return Bi;const h=r[n];return h||Bi}}function yf(n){const l=al();if(!l)return;const r=l.ut=(c=n(l.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${l.uid}"]`)).forEach(g=>m0(g,c))},h=()=>{const c=n(l.proxy);f0(l.subTree,c),r(c)};Lc(h),Ve(()=>{const c=new MutationObserver(h);c.observe(l.subTree.el.parentNode,{childList:!0}),Va(()=>c.disconnect())})}function f0(n,l){if(n.shapeFlag&128){const r=n.suspense;n=r.activeBranch,r.pendingBranch&&!r.isHydrating&&r.effects.push(()=>{f0(r.activeBranch,l)})}for(;n.component;)n=n.component.subTree;if(n.shapeFlag&1&&n.el)m0(n.el,l);else if(n.type===Kt)n.children.forEach(r=>f0(r,l));else if(n.type===wr){let{el:r,anchor:h}=n;for(;r&&(m0(r,l),r!==h);)r=r.nextSibling}}function m0(n,l){if(n.nodeType===1){const r=n.style;for(const h in l)r.setProperty(`--${h}`,l[h])}}const jl="transition",Co="animation",Zn=(n,{slots:l})=>Ln(Oc,yu(n),l);Zn.displayName="Transition";const Iu={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},Cf=Zn.props=zs({},Bh,Iu),or=(n,l=[])=>{kn(n)?n.forEach(r=>r(...l)):n&&n(...l)},m1=n=>n?kn(n)?n.some(l=>l.length>1):n.length>1:!1;function yu(n){const l={};for(const rt in n)rt in Iu||(l[rt]=n[rt]);if(n.css===!1)return l;const{name:r="v",type:h,duration:c,enterFromClass:g=`${r}-enter-from`,enterActiveClass:v=`${r}-enter-active`,enterToClass:k=`${r}-enter-to`,appearFromClass:x=g,appearActiveClass:I=v,appearToClass:S=k,leaveFromClass:$=`${r}-leave-from`,leaveActiveClass:B=`${r}-leave-active`,leaveToClass:P=`${r}-leave-to`}=n,D=Sf(c),F=D&&D[0],X=D&&D[1],{onBeforeEnter:R,onEnter:H,onEnterCancelled:U,onLeave:W,onLeaveCancelled:_,onBeforeAppear:tt=R,onAppear:nt=H,onAppearCancelled:Y=U}=l,G=(rt,ht,dt)=>{Dl(rt,ht?S:k),Dl(rt,ht?I:v),dt&&dt()},et=(rt,ht)=>{rt._isLeaving=!1,Dl(rt,$),Dl(rt,P),Dl(rt,B),ht&&ht()},st=rt=>(ht,dt)=>{const Ct=rt?nt:H,xt=()=>G(ht,rt,dt);or(Ct,[ht,xt]),k1(()=>{Dl(ht,rt?x:g),cl(ht,rt?S:k),m1(Ct)||b1(ht,h,F,xt)})};return zs(l,{onBeforeEnter(rt){or(R,[rt]),cl(rt,g),cl(rt,v)},onBeforeAppear(rt){or(tt,[rt]),cl(rt,x),cl(rt,I)},onEnter:st(!1),onAppear:st(!0),onLeave(rt,ht){rt._isLeaving=!0;const dt=()=>et(rt,ht);cl(rt,$),Su(),cl(rt,B),k1(()=>{rt._isLeaving&&(Dl(rt,$),cl(rt,P),m1(W)||b1(rt,h,X,dt))}),or(W,[rt,dt])},onEnterCancelled(rt){G(rt,!1),or(U,[rt])},onAppearCancelled(rt){G(rt,!0),or(Y,[rt])},onLeaveCancelled(rt){et(rt),or(_,[rt])}})}function Sf(n){if(n==null)return null;if(p0(n))return[Pi(n.enter),Pi(n.leave)];{const l=Pi(n);return[l,l]}}function Pi(n){return w0(n)}function cl(n,l){l.split(/\s+/).forEach(r=>r&&n.classList.add(r)),(n._vtc||(n._vtc=new Set)).add(l)}function Dl(n,l){l.split(/\s+/).forEach(h=>h&&n.classList.remove(h));const{_vtc:r}=n;r&&(r.delete(l),r.size||(n._vtc=void 0))}function k1(n){requestAnimationFrame(()=>{requestAnimationFrame(n)})}let $f=0;function b1(n,l,r,h){const c=n._endId=++$f,g=()=>{c===n._endId&&h()};if(r)return setTimeout(g,r);const{type:v,timeout:k,propCount:x}=Cu(n,l);if(!v)return h();const I=v+"end";let S=0;const $=()=>{n.removeEventListener(I,B),g()},B=P=>{P.target===n&&++S>=x&&$()};setTimeout(()=>{S(r[D]||"").split(", "),c=h(`${jl}Delay`),g=h(`${jl}Duration`),v=M1(c,g),k=h(`${Co}Delay`),x=h(`${Co}Duration`),I=M1(k,x);let S=null,$=0,B=0;l===jl?v>0&&(S=jl,$=v,B=g.length):l===Co?I>0&&(S=Co,$=I,B=x.length):($=Math.max(v,I),S=$>0?v>I?jl:Co:null,B=S?S===jl?g.length:x.length:0);const P=S===jl&&/\b(transform|all)(,|$)/.test(h(`${jl}Property`).toString());return{type:S,timeout:$,propCount:B,hasTransform:P}}function M1(n,l){for(;n.lengthx1(r)+x1(n[h])))}function x1(n){return Number(n.slice(0,-1).replace(",","."))*1e3}function Su(){return document.body.offsetHeight}const $u=new WeakMap,Au=new WeakMap,Bu={name:"TransitionGroup",props:zs({},Cf,{tag:String,moveClass:String}),setup(n,{slots:l}){const r=al(),h=Ah();let c,g;return Ea(()=>{if(!c.length)return;const v=n.moveClass||`${n.name||"v"}-move`;if(!jf(c[0].el,r.vnode.el,v))return;c.forEach(Bf),c.forEach(Hf);const k=c.filter(Nf);Su(),k.forEach(x=>{const I=x.el,S=I.style;cl(I,v),S.transform=S.webkitTransform=S.transitionDuration="";const $=I._moveCb=B=>{B&&B.target!==I||(!B||/transform$/.test(B.propertyName))&&(I.removeEventListener("transitionend",$),I._moveCb=null,Dl(I,v))};I.addEventListener("transitionend",$)})}),()=>{const v=le(n),k=yu(v);let x=v.tag||Kt;c=g,g=l.default?Ra(l.default()):[];for(let I=0;Idelete n.mode;Bu.props;const Hu=Bu;function Bf(n){const l=n.el;l._moveCb&&l._moveCb(),l._enterCb&&l._enterCb()}function Hf(n){Au.set(n,n.el.getBoundingClientRect())}function Nf(n){const l=$u.get(n),r=Au.get(n),h=l.left-r.left,c=l.top-r.top;if(h||c){const g=n.el.style;return g.transform=g.webkitTransform=`translate(${h}px,${c}px)`,g.transitionDuration="0s",n}}function jf(n,l,r){const h=n.cloneNode();n._vtc&&n._vtc.forEach(v=>{v.split(/\s+/).forEach(k=>k&&h.classList.remove(k))}),r.split(/\s+/).forEach(v=>v&&h.classList.add(v)),h.style.display="none";const c=l.nodeType===1?l:l.parentNode;c.appendChild(h);const{hasTransform:g}=Cu(h);return c.removeChild(h),g}const Gl=n=>{const l=n.props["onUpdate:modelValue"]||!1;return kn(l)?r=>ef(l,r):l};function Pf(n){n.target.composing=!0}function z1(n){const l=n.target;l.composing&&(l.composing=!1,l.dispatchEvent(new Event("input")))}const ls={created(n,{modifiers:{lazy:l,trim:r,number:h}},c){n._assign=Gl(c);const g=h||c.props&&c.props.type==="number";pl(n,l?"change":"input",v=>{if(v.target.composing)return;let k=n.value;r&&(k=k.trim()),g&&(k=g0(k)),n._assign(k)}),r&&pl(n,"change",()=>{n.value=n.value.trim()}),l||(pl(n,"compositionstart",Pf),pl(n,"compositionend",z1),pl(n,"change",z1))},mounted(n,{value:l}){n.value=l??""},beforeUpdate(n,{value:l,modifiers:{lazy:r,trim:h,number:c}},g){if(n._assign=Gl(g),n.composing||document.activeElement===n&&n.type!=="range"&&(r||h&&n.value.trim()===l||(c||n.type==="number")&&g0(n.value)===l))return;const v=l??"";n.value!==v&&(n.value=v)}},_h={deep:!0,created(n,l,r){n._assign=Gl(r),pl(n,"change",()=>{const h=n._modelValue,c=to(n),g=n.checked,v=n._assign;if(kn(h)){const k=qa(h,c),x=k!==-1;if(g&&!x)v(h.concat(c));else if(!g&&x){const I=[...h];I.splice(k,1),v(I)}}else if(Is(h)){const k=new Set(h);g?k.add(c):k.delete(c),v(k)}else v(ju(n,g))})},mounted:I1,beforeUpdate(n,l,r){n._assign=Gl(r),I1(n,l,r)}};function I1(n,{value:l,oldValue:r},h){n._modelValue=l,kn(l)?n.checked=qa(l,h.props.value)>-1:Is(l)?n.checked=l.has(h.props.value):l!==r&&(n.checked=Ul(l,ju(n,!0)))}const Wh={created(n,{value:l},r){n.checked=Ul(l,r.props.value),n._assign=Gl(r),pl(n,"change",()=>{n._assign(to(n))})},beforeUpdate(n,{value:l,oldValue:r},h){n._assign=Gl(h),l!==r&&(n.checked=Ul(l,h.props.value))}},Nu={deep:!0,created(n,{value:l,modifiers:{number:r}},h){const c=Is(l);pl(n,"change",()=>{const g=Array.prototype.filter.call(n.options,v=>v.selected).map(v=>r?g0(to(v)):to(v));n._assign(n.multiple?c?new Set(g):g:g[0])}),n._assign=Gl(h)},mounted(n,{value:l}){y1(n,l)},beforeUpdate(n,l,r){n._assign=Gl(r)},updated(n,{value:l}){y1(n,l)}};function y1(n,l){const r=n.multiple;if(!(r&&!kn(l)&&!Is(l))){for(let h=0,c=n.options.length;h-1:g.selected=l.has(v);else if(Ul(to(g),l)){n.selectedIndex!==h&&(n.selectedIndex=h);return}}!r&&n.selectedIndex!==-1&&(n.selectedIndex=-1)}}function to(n){return"_value"in n?n._value:n.value}function ju(n,l){const r=l?"_trueValue":"_falseValue";return r in n?n[r]:l}const Pu={created(n,l,r){Ys(n,l,r,null,"created")},mounted(n,l,r){Ys(n,l,r,null,"mounted")},beforeUpdate(n,l,r,h){Ys(n,l,r,h,"beforeUpdate")},updated(n,l,r,h){Ys(n,l,r,h,"updated")}};function Lu(n,l){switch(n){case"SELECT":return Nu;case"TEXTAREA":return ls;default:switch(l){case"checkbox":return _h;case"radio":return Wh;default:return ls}}}function Ys(n,l,r,h,c){const v=Lu(n.tagName,r.props&&r.props.type)[c];v&&v(n,l,r,h)}function Lf(){ls.getSSRProps=({value:n})=>({value:n}),Wh.getSSRProps=({value:n},l)=>{if(l.props&&Ul(l.props.value,n))return{checked:!0}},_h.getSSRProps=({value:n},l)=>{if(kn(n)){if(l.props&&qa(n,l.props.value)>-1)return{checked:!0}}else if(Is(n)){if(l.props&&n.has(l.props.value))return{checked:!0}}else if(n)return{checked:!0}},Pu.getSSRProps=(n,l)=>{if(typeof l.type!="string")return;const r=Lu(l.type.toUpperCase(),l.props&&l.props.type);if(r.getSSRProps)return r.getSSRProps(n,l)}}const Df=["ctrl","shift","alt","meta"],Of={stop:n=>n.stopPropagation(),prevent:n=>n.preventDefault(),self:n=>n.target!==n.currentTarget,ctrl:n=>!n.ctrlKey,shift:n=>!n.shiftKey,alt:n=>!n.altKey,meta:n=>!n.metaKey,left:n=>"button"in n&&n.button!==0,middle:n=>"button"in n&&n.button!==1,right:n=>"button"in n&&n.button!==2,exact:(n,l)=>Df.some(r=>n[`${r}Key`]&&!l.includes(r))},Ff=(n,l)=>(r,...h)=>{for(let c=0;cr=>{if(!("key"in r))return;const h=Tl(r.key);if(l.some(c=>c===h||Rf[c]===h))return n(r)},Dn={beforeMount(n,{value:l},{transition:r}){n._vod=n.style.display==="none"?"":n.style.display,r&&l?r.beforeEnter(n):So(n,l)},mounted(n,{value:l},{transition:r}){r&&l&&r.enter(n)},updated(n,{value:l,oldValue:r},{transition:h}){!l!=!r&&(h?l?(h.beforeEnter(n),So(n,!0),h.enter(n)):h.leave(n,()=>{So(n,!1)}):So(n,l))},beforeUnmount(n,{value:l}){So(n,l)}};function So(n,l){n.style.display=l?n._vod:"none"}function Ef(){Dn.getSSRProps=({value:n})=>{if(!n)return{style:{display:"none"}}}}const Du=zs({patchProp:bf},sf);let Vo,C1=!1;function Ou(){return Vo||(Vo=nu(Du))}function Fu(){return Vo=C1?Vo:lu(Du),C1=!0,Vo}const k0=(...n)=>{Ou().render(...n)},Ru=(...n)=>{Fu().hydrate(...n)},Tu=(...n)=>{const l=Ou().createApp(...n),{mount:r}=l;return l.mount=h=>{const c=Eu(h);if(!c)return;const g=l._component;!bu(g)&&!g.render&&!g.template&&(g.template=c.innerHTML),c.innerHTML="";const v=r(c,!1,c instanceof SVGElement);return c instanceof Element&&(c.removeAttribute("v-cloak"),c.setAttribute("data-v-app","")),v},l},Vf=(...n)=>{const l=Fu().createApp(...n),{mount:r}=l;return l.mount=h=>{const c=Eu(h);if(c)return r(c,!0,c instanceof SVGElement)},l};function Eu(n){return ns(n)?document.querySelector(n):n}let S1=!1;const _f=()=>{S1||(S1=!0,Lf(),Ef())},Wf=()=>{},Xf=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:Oc,BaseTransitionPropsValidators:Bh,Comment:on,EffectScope:ph,Fragment:Kt,KeepAlive:_v,ReactiveEffect:gs,Static:wr,Suspense:Nv,Teleport:ou,Text:Xl,Transition:Zn,TransitionGroup:Hu,VueElement:Ya,assertNumber:mv,callWithAsyncErrorHandling:Cn,callWithErrorHandling:fl,camelize:Sn,capitalize:Il,cloneVNode:Gn,compatUtils:q3,compile:Wf,computed:q,createApp:Tu,createBlock:_a,createCommentVNode:j3,createElementBlock:A3,createElementVNode:Rh,createHydrationRenderer:lu,createPropsRestProxy:d3,createRenderer:nu,createSSRApp:Vf,createSlots:Uv,createStaticVNode:N3,createTextVNode:e,createVNode:t,customRef:Zw,defineAsyncComponent:Ev,defineComponent:Cr,defineCustomElement:zu,defineEmits:Jv,defineExpose:t3,defineModel:l3,defineOptions:e3,defineProps:Qv,defineSSRCustomElement:xf,defineSlots:n3,get devtools(){return _r},effect:vw,effectScope:io,getCurrentInstance:al,getCurrentScope:gh,getTransitionRawChildren:Ra,guardReactiveProps:du,h:Ln,handleError:yr,hasInjectionContext:Zc,hydrate:Ru,initCustomFormatter:E3,initDirectivesForSSR:_f,inject:de,isMemoSame:mu,isProxy:mh,isReactive:vl,isReadonly:mr,isRef:Me,isRuntimeOnly:F3,isShallow:Uo,isVNode:ql,markRaw:ws,mergeDefaults:i3,mergeModels:h3,mergeProps:o,nextTick:we,normalizeClass:ms,normalizeProps:wv,normalizeStyle:fs,onActivated:Hh,onBeforeMount:Ms,onBeforeUnmount:Qe,onBeforeUpdate:jh,onDeactivated:Nh,onErrorCaptured:_c,onMounted:Ve,onRenderTracked:Vc,onRenderTriggered:Ec,onScopeDispose:sn,onServerPrefetch:Tc,onUnmounted:Va,onUpdated:Ea,openBlock:xs,popScopeId:yv,provide:Se,proxyRefs:Mh,pushScopeId:Iv,queuePostFlushCb:yh,reactive:Ze,readonly:uo,ref:Lt,registerRuntimeCompiler:O3,render:k0,renderList:Yv,renderSlot:Gv,resolveComponent:qv,resolveDirective:Mn,resolveDynamicComponent:Xc,resolveFilter:X3,resolveTransitionHooks:Qr,setBlockTracking:h0,setDevtoolsHook:Hc,setTransitionHooks:kr,shallowReactive:fh,shallowReadonly:Ww,shallowRef:Wt,ssrContextKey:vu,ssrUtils:W3,stop:fw,toDisplayString:vv,toHandlerKey:Oo,toHandlers:Zv,toRaw:le,toRef:Ht,toRefs:vs,toValue:Yw,transformVNodeArgs:B3,triggerRef:qw,unref:je,useAttrs:s3,useCssModule:If,useCssVars:yf,useModel:a3,useSSRContext:fu,useSlots:o3,useTransitionState:Ah,vModelCheckbox:_h,vModelDynamic:Pu,vModelRadio:Wh,vModelSelect:Nu,vModelText:ls,vShow:Dn,version:ku,warn:fv,watch:_t,watchEffect:bn,watchPostEffect:Lc,watchSyncEffect:Fv,withAsyncContext:c3,withCtx:Ch,withDefaults:r3,withDirectives:$e,withKeys:Tf,withMemo:V3,withModifiers:Ff,withScopeId:Cv},Symbol.toStringTag,{value:"Module"}));var qf=!1;/*! * pinia v2.1.6 * (c) 2023 Eduardo San Martin Morote * @license MIT - */let Uc;const Ha=n=>Uc=n,Zc=Symbol();function Gi(n){return n&&typeof n=="object"&&Object.prototype.toString.call(n)==="[object Object]"&&typeof n.toJSON!="function"}var No;(function(n){n.direct="direct",n.patchObject="patch object",n.patchFunction="patch function"})(No||(No={}));function N3(){const n=Jr(!0),l=n.run(()=>Pt({}));let r=[],h=[];const u=ls({install(g){Ha(u),u._a=g,g.provide(Zc,u),g.config.globalProperties.$pinia=u,h.forEach(v=>r.push(v)),h=[]},use(g){return!this._a&&!H3?h.push(g):r.push(g),this},_p:r,_a:null,_e:n,_s:new Map,state:l});return u}const Kc=()=>{};function q2(n,l,r,h=Kc){n.push(l);const u=()=>{const g=n.indexOf(l);g>-1&&(n.splice(g,1),h())};return!r&&F0()&&ln(u),u}function Ar(n,...l){n.slice().forEach(r=>{r(...l)})}const j3=n=>n();function Ui(n,l){n instanceof Map&&l instanceof Map&&l.forEach((r,h)=>n.set(h,r)),n instanceof Set&&l instanceof Set&&l.forEach(n.add,n);for(const r in l){if(!l.hasOwnProperty(r))continue;const h=l[r],u=n[r];Gi(u)&&Gi(h)&&n.hasOwnProperty(r)&&!ke(h)&&!dl(h)?n[r]=Ui(u,h):n[r]=h}return n}const P3=Symbol();function L3(n){return!Gi(n)||!n.hasOwnProperty(P3)}const{assign:Al}=Object;function D3(n){return!!(ke(n)&&n.effect)}function F3(n,l,r,h){const{state:u,actions:g,getters:v}=l,b=r.state.value[n];let z;function C(){b||(r.state.value[n]=u?u():{});const S=rs(r.state.value[n]);return Al(S,g,Object.keys(v||{}).reduce((A,B)=>(A[B]=ls(X(()=>{Ha(r);const P=r._s.get(n);return v[B].call(P,P)})),A),{}))}return z=Qc(n,C,l,r,h,!0),z}function Qc(n,l,r={},h,u,g){let v;const b=Al({actions:{}},r),z={deep:!0};let C,S,A=[],B=[],P;const D=h.state.value[n];!g&&!D&&(h.state.value[n]={}),Pt({});let E;function Y(q){let G;C=S=!1,typeof q=="function"?(q(h.state.value[n]),G={type:No.patchFunction,storeId:n,events:P}):(Ui(h.state.value[n],q),G={type:No.patchObject,payload:q,storeId:n,events:P});const et=E=Symbol();pe().then(()=>{E===et&&(C=!0)}),S=!0,Ar(A,G,h.state.value[n])}const O=g?function(){const{state:G}=r,et=G?G():{};this.$patch(st=>{Al(st,et)})}:Kc;function H(){v.stop(),A=[],B=[],h._s.delete(n)}function U(q,G){return function(){Ha(h);const et=Array.from(arguments),st=[],rt=[];function ht(xt){st.push(xt)}function dt(xt){rt.push(xt)}Ar(B,{args:et,name:q,store:_,after:ht,onError:dt});let Ct;try{Ct=G.apply(this&&this.$id===n?this:_,et)}catch(xt){throw Ar(rt,xt),xt}return Ct instanceof Promise?Ct.then(xt=>(Ar(st,xt),xt)).catch(xt=>(Ar(rt,xt),Promise.reject(xt))):(Ar(st,Ct),Ct)}}const W={_p:h,$id:n,$onAction:q2.bind(null,B),$patch:Y,$reset:O,$subscribe(q,G={}){const et=q2(A,q,G.detached,()=>st()),st=v.run(()=>Vt(()=>h.state.value[n],rt=>{(G.flush==="sync"?S:C)&&q({storeId:n,type:No.direct,events:P},rt)},Al({},z,G)));return et},$dispose:H},_=Ye(W);h._s.set(n,_);const tt=h._a&&h._a.runWithContext||j3,nt=h._e.run(()=>(v=Jr(),tt(()=>v.run(l))));for(const q in nt){const G=nt[q];if(ke(G)&&!D3(G)||dl(G))g||(D&&L3(G)&&(ke(G)?G.value=D[q]:Ui(G,D[q])),h.state.value[n][q]=G);else if(typeof G=="function"){const et=U(q,G);nt[q]=et,b.actions[q]=G}}return Al(_,nt),Al(ne(_),nt),Object.defineProperty(_,"$state",{get:()=>h.state.value[n],set:q=>{Y(G=>{Al(G,q)})}}),h._p.forEach(q=>{Al(_,v.run(()=>q({store:_,app:h._a,pinia:h,options:b})))}),D&&g&&r.hydrate&&r.hydrate(_.$state,D),C=!0,S=!0,_}function O3(n,l,r){let h,u;const g=typeof l=="function";typeof n=="string"?(h=n,u=g?r:l):(u=n,h=n.id);function v(b,z){const C=lc();return b=b||(C?he(Zc,null):null),b&&Ha(b),b=Uc,b._s.has(h)||(g?Qc(h,l,u,b):F3(h,u,b)),b._s.get(h)}return v.$id=h,v}/*! + */let Vu;const Ua=n=>Vu=n,_u=Symbol();function b0(n){return n&&typeof n=="object"&&Object.prototype.toString.call(n)==="[object Object]"&&typeof n.toJSON!="function"}var _o;(function(n){n.direct="direct",n.patchObject="patch object",n.patchFunction="patch function"})(_o||(_o={}));function Yf(){const n=io(!0),l=n.run(()=>Lt({}));let r=[],h=[];const c=ws({install(g){Ua(c),c._a=g,g.provide(_u,c),g.config.globalProperties.$pinia=c,h.forEach(v=>r.push(v)),h=[]},use(g){return!this._a&&!qf?h.push(g):r.push(g),this},_p:r,_a:null,_e:n,_s:new Map,state:l});return c}const Wu=()=>{};function $1(n,l,r,h=Wu){n.push(l);const c=()=>{const g=n.indexOf(l);g>-1&&(n.splice(g,1),h())};return!r&&gh()&&sn(c),c}function Or(n,...l){n.slice().forEach(r=>{r(...l)})}const Uf=n=>n();function M0(n,l){n instanceof Map&&l instanceof Map&&l.forEach((r,h)=>n.set(h,r)),n instanceof Set&&l instanceof Set&&l.forEach(n.add,n);for(const r in l){if(!l.hasOwnProperty(r))continue;const h=l[r],c=n[r];b0(c)&&b0(h)&&n.hasOwnProperty(r)&&!Me(h)&&!vl(h)?n[r]=M0(c,h):n[r]=h}return n}const Gf=Symbol();function Zf(n){return!b0(n)||!n.hasOwnProperty(Gf)}const{assign:Ol}=Object;function Kf(n){return!!(Me(n)&&n.effect)}function Qf(n,l,r,h){const{state:c,actions:g,getters:v}=l,k=r.state.value[n];let x;function I(){k||(r.state.value[n]=c?c():{});const S=vs(r.state.value[n]);return Ol(S,g,Object.keys(v||{}).reduce(($,B)=>($[B]=ws(q(()=>{Ua(r);const P=r._s.get(n);return v[B].call(P,P)})),$),{}))}return x=Xu(n,I,l,r,h,!0),x}function Xu(n,l,r={},h,c,g){let v;const k=Ol({actions:{}},r),x={deep:!0};let I,S,$=[],B=[],P;const D=h.state.value[n];!g&&!D&&(h.state.value[n]={}),Lt({});let F;function X(Y){let G;I=S=!1,typeof Y=="function"?(Y(h.state.value[n]),G={type:_o.patchFunction,storeId:n,events:P}):(M0(h.state.value[n],Y),G={type:_o.patchObject,payload:Y,storeId:n,events:P});const et=F=Symbol();we().then(()=>{F===et&&(I=!0)}),S=!0,Or($,G,h.state.value[n])}const R=g?function(){const{state:G}=r,et=G?G():{};this.$patch(st=>{Ol(st,et)})}:Wu;function H(){v.stop(),$=[],B=[],h._s.delete(n)}function U(Y,G){return function(){Ua(h);const et=Array.from(arguments),st=[],rt=[];function ht(xt){st.push(xt)}function dt(xt){rt.push(xt)}Or(B,{args:et,name:Y,store:_,after:ht,onError:dt});let Ct;try{Ct=G.apply(this&&this.$id===n?this:_,et)}catch(xt){throw Or(rt,xt),xt}return Ct instanceof Promise?Ct.then(xt=>(Or(st,xt),xt)).catch(xt=>(Or(rt,xt),Promise.reject(xt))):(Or(st,Ct),Ct)}}const W={_p:h,$id:n,$onAction:$1.bind(null,B),$patch:X,$reset:R,$subscribe(Y,G={}){const et=$1($,Y,G.detached,()=>st()),st=v.run(()=>_t(()=>h.state.value[n],rt=>{(G.flush==="sync"?S:I)&&Y({storeId:n,type:_o.direct,events:P},rt)},Ol({},x,G)));return et},$dispose:H},_=Ze(W);h._s.set(n,_);const tt=h._a&&h._a.runWithContext||Uf,nt=h._e.run(()=>(v=io(),tt(()=>v.run(l))));for(const Y in nt){const G=nt[Y];if(Me(G)&&!Kf(G)||vl(G))g||(D&&Zf(G)&&(Me(G)?G.value=D[Y]:M0(G,D[Y])),h.state.value[n][Y]=G);else if(typeof G=="function"){const et=U(Y,G);nt[Y]=et,k.actions[Y]=G}}return Ol(_,nt),Ol(le(_),nt),Object.defineProperty(_,"$state",{get:()=>h.state.value[n],set:Y=>{X(G=>{Ol(G,Y)})}}),h._p.forEach(Y=>{Ol(_,v.run(()=>Y({store:_,app:h._a,pinia:h,options:k})))}),D&&g&&r.hydrate&&r.hydrate(_.$state,D),I=!0,S=!0,_}function Jf(n,l,r){let h,c;const g=typeof l=="function";typeof n=="string"?(h=n,c=g?r:l):(c=n,h=n.id);function v(k,x){const I=Zc();return k=k||(I?de(_u,null):null),k&&Ua(k),k=Vu,k._s.has(h)||(g?Xu(h,l,c,k):Qf(h,c,k)),k._s.get(h)}return v.$id=h,v}/*! * vue-router v4.2.4 * (c) 2023 Eduardo San Martin Morote * @license MIT - */const Dr=typeof window<"u";function T3(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const we=Object.assign;function pi(n,l){const r={};for(const h in l){const u=l[h];r[h]=Yn(u)?u.map(n):n(u)}return r}const jo=()=>{},Yn=Array.isArray,R3=/\/$/,E3=n=>n.replace(R3,"");function gi(n,l,r="/"){let h,u={},g="",v="";const b=l.indexOf("#");let z=l.indexOf("?");return b=0&&(z=-1),z>-1&&(h=l.slice(0,z),g=l.slice(z+1,b>-1?b:l.length),u=n(g)),b>-1&&(h=h||l.slice(0,b),v=l.slice(b,l.length)),h=X3(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:u,hash:v}}function V3(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function Y2(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function _3(n,l,r){const h=l.matched.length-1,u=r.matched.length-1;return h>-1&&h===u&&Yr(l.matched[h],r.matched[u])&&Jc(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function Yr(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function Jc(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!W3(n[r],l[r]))return!1;return!0}function W3(n,l){return Yn(n)?G2(n,l):Yn(l)?G2(l,n):n===l}function G2(n,l){return Yn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function X3(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),u=h[h.length-1];(u===".."||u===".")&&h.push("");let g=r.length-1,v,b;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var Yo;(function(n){n.pop="pop",n.push="push"})(Yo||(Yo={}));var Po;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Po||(Po={}));function q3(n){if(!n)if(Dr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),E3(n)}const Y3=/^[^#]+#/;function G3(n,l){return n.replace(Y3,"#")+l}function U3(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Na=()=>({left:window.pageXOffset,top:window.pageYOffset});function Z3(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),u=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!u)return;l=U3(u,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function U2(n,l){return(history.state?history.state.position-l:-1)+n}const Zi=new Map;function K3(n,l){Zi.set(n,l)}function Q3(n){const l=Zi.get(n);return Zi.delete(n),l}let J3=()=>location.protocol+"//"+location.host;function tu(n,l){const{pathname:r,search:h,hash:u}=l,g=n.indexOf("#");if(g>-1){let b=u.includes(n.slice(g))?n.slice(g).length:1,z=u.slice(b);return z[0]!=="/"&&(z="/"+z),Y2(z,"")}return Y2(r,n)+h+u}function tf(n,l,r,h){let u=[],g=[],v=null;const b=({state:B})=>{const P=tu(n,location),D=r.value,E=l.value;let Y=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}Y=E?B.position-E.position:0}else h(P);u.forEach(O=>{O(r.value,D,{delta:Y,type:Yo.pop,direction:Y?Y>0?Po.forward:Po.back:Po.unknown})})};function z(){v=r.value}function C(B){u.push(B);const P=()=>{const D=u.indexOf(B);D>-1&&u.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(we({},B.state,{scroll:Na()}),"")}function A(){for(const B of g)B();g=[],window.removeEventListener("popstate",b),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",b),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:z,listen:C,destroy:A}}function Z2(n,l,r,h=!1,u=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:u?Na():null}}function ef(n){const{history:l,location:r}=window,h={value:tu(n,r)},u={value:l.state};u.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(z,C,S){const A=n.indexOf("#"),B=A>-1?(r.host&&document.querySelector("base")?n:n.slice(A))+z:J3()+n+z;try{l[S?"replaceState":"pushState"](C,"",B),u.value=C}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(z,C){const S=we({},l.state,Z2(u.value.back,z,u.value.forward,!0),C,{position:u.value.position});g(z,S,!0),h.value=z}function b(z,C){const S=we({},u.value,l.state,{forward:z,scroll:Na()});g(S.current,S,!0);const A=we({},Z2(h.value,z,null),{position:S.position+1},C);g(z,A,!1),h.value=z}return{location:h,state:u,push:b,replace:v}}function nf(n){n=q3(n);const l=ef(n),r=tf(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const u=we({location:"",base:n,go:h,createHref:G3.bind(null,n)},l,r);return Object.defineProperty(u,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(u,"state",{enumerable:!0,get:()=>l.state.value}),u}function lf(n){return typeof n=="string"||n&&typeof n=="object"}function eu(n){return typeof n=="string"||typeof n=="symbol"}const Sl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},nu=Symbol("");var K2;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(K2||(K2={}));function Gr(n,l){return we(new Error,{type:n,[nu]:!0},l)}function rl(n,l){return n instanceof Error&&nu in n&&(l==null||!!(n.type&l))}const Q2="[^/]+?",rf={sensitive:!1,strict:!1,start:!0,end:!0},of=/[.+*?^${}()[\]/\\]/g;function sf(n,l){const r=we({},rf,l),h=[];let u=r.start?"^":"";const g=[];for(const C of n){const S=C.length?[]:[90];r.strict&&!C.length&&(u+="/");for(let A=0;Al.length?l.length===1&&l[0]===40+40?1:-1:0}function hf(n,l){let r=0;const h=n.score,u=l.score;for(;r0&&l[l.length-1]<0}const df={type:0,value:""},cf=/[a-zA-Z0-9_]/;function uf(n){if(!n)return[[]];if(n==="/")return[[df]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${C}": ${P}`)}let r=0,h=r;const u=[];let g;function v(){g&&u.push(g),g=[]}let b=0,z,C="",S="";function A(){C&&(r===0?g.push({type:0,value:C}):r===1||r===2||r===3?(g.length>1&&(z==="*"||z==="+")&&l(`A repeatable param (${C}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:C,regexp:S,repeatable:z==="*"||z==="+",optional:z==="*"||z==="?"})):l("Invalid state to consume buffer"),C="")}function B(){C+=z}for(;b{v(H)}:jo}function v(S){if(eu(S)){const A=h.get(S);A&&(h.delete(S),r.splice(r.indexOf(A),1),A.children.forEach(v),A.alias.forEach(v))}else{const A=r.indexOf(S);A>-1&&(r.splice(A,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function b(){return r}function z(S){let A=0;for(;A=0&&(S.record.path!==r[A].record.path||!lu(S,r[A]));)A++;r.splice(A,0,S),S.record.name&&!e1(S)&&h.set(S.record.name,S)}function C(S,A){let B,P={},D,E;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw Gr(1,{location:S});E=B.record.name,P=we(t1(A.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&t1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),E=B.record.name);else{if(B=A.name?h.get(A.name):r.find(H=>H.re.test(A.path)),!B)throw Gr(1,{location:S,currentLocation:A});E=B.record.name,P=we({},A.params,S.params),D=B.stringify(P)}const Y=[];let O=B;for(;O;)Y.unshift(O.record),O=O.parent;return{name:E,path:D,params:P,matched:Y,meta:ff(Y)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:C,removeRoute:v,getRoutes:b,getRecordMatcher:u}}function t1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function wf(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:vf(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function vf(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function e1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function ff(n){return n.reduce((l,r)=>we(l,r.meta),{})}function n1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function lu(n,l){return l.children.some(r=>r===n||lu(n,r))}const ru=/#/g,mf=/&/g,kf=/\//g,bf=/=/g,Mf=/\?/g,ou=/\+/g,xf=/%5B/g,zf=/%5D/g,su=/%5E/g,If=/%60/g,au=/%7B/g,yf=/%7C/g,iu=/%7D/g,Cf=/%20/g;function gh(n){return encodeURI(""+n).replace(yf,"|").replace(xf,"[").replace(zf,"]")}function Sf(n){return gh(n).replace(au,"{").replace(iu,"}").replace(su,"^")}function Ki(n){return gh(n).replace(ou,"%2B").replace(Cf,"+").replace(ru,"%23").replace(mf,"%26").replace(If,"`").replace(au,"{").replace(iu,"}").replace(su,"^")}function $f(n){return Ki(n).replace(bf,"%3D")}function Af(n){return gh(n).replace(ru,"%23").replace(Mf,"%3F")}function Bf(n){return n==null?"":Af(n).replace(kf,"%2F")}function Js(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function Hf(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let u=0;ug&&Ki(g)):[h&&Ki(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function Nf(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Yn(h)?h.map(u=>u==null?null:""+u):h==null?h:""+h)}return l}const jf=Symbol(""),r1=Symbol(""),wh=Symbol(""),hu=Symbol(""),Qi=Symbol("");function mo(){let n=[];function l(h){return n.push(h),()=>{const u=n.indexOf(h);u>-1&&n.splice(u,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Hl(n,l,r,h,u){const g=h&&(h.enterCallbacks[u]=h.enterCallbacks[u]||[]);return()=>new Promise((v,b)=>{const z=A=>{A===!1?b(Gr(4,{from:r,to:l})):A instanceof Error?b(A):lf(A)?b(Gr(2,{from:l,to:A})):(g&&h.enterCallbacks[u]===g&&typeof A=="function"&&g.push(A),v())},C=n.call(h&&h.instances[u],l,r,z);let S=Promise.resolve(C);n.length<3&&(S=S.then(z)),S.catch(A=>b(A))})}function wi(n,l,r,h){const u=[];for(const g of n)for(const v in g.components){let b=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(Pf(b)){const C=(b.__vccOpts||b)[l];C&&u.push(Hl(C,r,h,g,v))}else{let z=b();u.push(()=>z.then(C=>{if(!C)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=T3(C)?C.default:C;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Hl(B,r,h,g,v)()}))}}return u}function Pf(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function o1(n){const l=he(wh),r=he(hu),h=X(()=>l.resolve(He(n.to))),u=X(()=>{const{matched:z}=h.value,{length:C}=z,S=z[C-1],A=r.matched;if(!S||!A.length)return-1;const B=A.findIndex(Yr.bind(null,S));if(B>-1)return B;const P=s1(z[C-2]);return C>1&&s1(S)===P&&A[A.length-1].path!==P?A.findIndex(Yr.bind(null,z[C-2])):B}),g=X(()=>u.value>-1&&Of(r.params,h.value.params)),v=X(()=>u.value>-1&&u.value===r.matched.length-1&&Jc(r.params,h.value.params));function b(z={}){return Ff(z)?l[He(n.replace)?"replace":"push"](He(n.to)).catch(jo):Promise.resolve()}return{route:h,href:X(()=>h.value.href),isActive:g,isExactActive:v,navigate:b}}const Lf=mr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:o1,setup(n,{slots:l}){const r=Ye(o1(n)),{options:h}=he(wh),u=X(()=>({[a1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[a1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Hn("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:u.value},g)}}}),Df=Lf;function Ff(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Of(n,l){for(const r in l){const h=l[r],u=n[r];if(typeof h=="string"){if(h!==u)return!1}else if(!Yn(u)||u.length!==h.length||h.some((g,v)=>g!==u[v]))return!1}return!0}function s1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const a1=(n,l,r)=>n??l??r,Tf=mr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=he(Qi),u=X(()=>n.route||h.value),g=he(r1,0),v=X(()=>{let C=He(g);const{matched:S}=u.value;let A;for(;(A=S[C])&&!A.components;)C++;return C}),b=X(()=>u.value.matched[v.value]);ye(r1,X(()=>v.value+1)),ye(jf,b),ye(Qi,u);const z=Pt();return Vt(()=>[z.value,b.value,n.name],([C,S,A],[B,P,D])=>{S&&(S.instances[A]=C,P&&P!==S&&C&&C===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),C&&S&&(!P||!Yr(S,P)||!B)&&(S.enterCallbacks[A]||[]).forEach(E=>E(C))},{flush:"post"}),()=>{const C=u.value,S=n.name,A=b.value,B=A&&A.components[S];if(!B)return i1(r.default,{Component:B,route:C});const P=A.props[S],D=P?P===!0?C.params:typeof P=="function"?P(C):P:null,Y=Hn(B,we({},D,l,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(A.instances[S]=null)},ref:z}));return i1(r.default,{Component:Y,route:C})||Y}}});function i1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const du=Tf;function Rf(n){const l=gf(n.routes,n),r=n.parseQuery||Hf,h=n.stringifyQuery||l1,u=n.history,g=mo(),v=mo(),b=mo(),z=_t(Sl);let C=Sl;Dr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=pi.bind(null,pt=>""+pt),A=pi.bind(null,Bf),B=pi.bind(null,Js);function P(pt,Ht){let Nt,bt;return eu(pt)?(Nt=l.getRecordMatcher(pt),bt=Ht):bt=pt,l.addRoute(bt,Nt)}function D(pt){const Ht=l.getRecordMatcher(pt);Ht&&l.removeRoute(Ht)}function E(){return l.getRoutes().map(pt=>pt.record)}function Y(pt){return!!l.getRecordMatcher(pt)}function O(pt,Ht){if(Ht=we({},Ht||z.value),typeof pt=="string"){const at=gi(r,pt,Ht.path),ct=l.resolve({path:at.path},Ht),kt=u.createHref(at.fullPath);return we(at,ct,{params:B(ct.params),hash:Js(at.hash),redirectedFrom:void 0,href:kt})}let Nt;if("path"in pt)Nt=we({},pt,{path:gi(r,pt.path,Ht.path).path});else{const at=we({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];Nt=we({},pt,{params:A(at)}),Ht.params=A(Ht.params)}const bt=l.resolve(Nt,Ht),ft=pt.hash||"";bt.params=S(B(bt.params));const J=V3(h,we({},pt,{hash:Sf(ft),path:bt.path})),lt=u.createHref(J);return we({fullPath:J,hash:ft,query:h===l1?Nf(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?gi(r,pt,z.value.path):we({},pt)}function U(pt,Ht){if(C!==pt)return Gr(8,{from:Ht,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(we(H(pt),{replace:!0}))}function tt(pt){const Ht=pt.matched[pt.matched.length-1];if(Ht&&Ht.redirect){const{redirect:Nt}=Ht;let bt=typeof Nt=="function"?Nt(pt):Nt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),we({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Ht){const Nt=C=O(pt),bt=z.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(Nt);if(at)return nt(we(H(at),{state:typeof at=="object"?we({},ft,at.state):ft,force:J,replace:lt}),Ht||Nt);const ct=Nt;ct.redirectedFrom=Ht;let kt;return!J&&_3(h,bt,Nt)&&(kt=Gr(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>rl(yt)?rl(yt,2)?yt:$t(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(rl(yt,2))return nt(we({replace:lt},H(yt.to),{state:typeof yt.to=="object"?we({},ft,yt.to.state):ft,force:J}),Ht||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function q(pt,Ht){const Nt=U(pt,Ht);return Nt?Promise.reject(Nt):Promise.resolve()}function G(pt){const Ht=Qt.values().next().value;return Ht&&typeof Ht.runWithContext=="function"?Ht.runWithContext(pt):pt()}function et(pt,Ht){let Nt;const[bt,ft,J]=Ef(pt,Ht);Nt=wi(bt.reverse(),"beforeRouteLeave",pt,Ht);for(const at of bt)at.leaveGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});const lt=q.bind(null,pt,Ht);return Nt.push(lt),ut(Nt).then(()=>{Nt=[];for(const at of g.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>{Nt=wi(ft,"beforeRouteUpdate",pt,Ht);for(const at of ft)at.updateGuards.forEach(ct=>{Nt.push(Hl(ct,pt,Ht))});return Nt.push(lt),ut(Nt)}).then(()=>{Nt=[];for(const at of J)if(at.beforeEnter)if(Yn(at.beforeEnter))for(const ct of at.beforeEnter)Nt.push(Hl(ct,pt,Ht));else Nt.push(Hl(at.beforeEnter,pt,Ht));return Nt.push(lt),ut(Nt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),Nt=wi(J,"beforeRouteEnter",pt,Ht),Nt.push(lt),ut(Nt))).then(()=>{Nt=[];for(const at of v.list())Nt.push(Hl(at,pt,Ht));return Nt.push(lt),ut(Nt)}).catch(at=>rl(at,8)?at:Promise.reject(at))}function st(pt,Ht,Nt){b.list().forEach(bt=>G(()=>bt(pt,Ht,Nt)))}function rt(pt,Ht,Nt,bt,ft){const J=U(pt,Ht);if(J)return J;const lt=Ht===Sl,at=Dr?history.state:{};Nt&&(bt||lt?u.replace(pt.fullPath,we({scroll:lt&&at&&at.scroll},ft)):u.push(pt.fullPath,ft)),z.value=pt,Tt(pt,Ht,Nt,lt),$t()}let ht;function dt(){ht||(ht=u.listen((pt,Ht,Nt)=>{if(!Rt.listening)return;const bt=O(pt),ft=tt(bt);if(ft){nt(we(ft,{replace:!0}),bt).catch(jo);return}C=bt;const J=z.value;Dr&&K3(U2(J.fullPath,Nt.delta),Na()),et(bt,J).catch(lt=>rl(lt,12)?lt:rl(lt,2)?(nt(lt.to,bt).then(at=>{rl(at,20)&&!Nt.delta&&Nt.type===Yo.pop&&u.go(-1,!1)}).catch(jo),Promise.reject()):(Nt.delta&&u.go(-Nt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(Nt.delta&&!rl(lt,8)?u.go(-Nt.delta,!1):Nt.type===Yo.pop&&rl(lt,20)&&u.go(-1,!1)),st(bt,J,lt)}).catch(jo)}))}let Ct=mo(),xt=mo(),wt;function gt(pt,Ht,Nt){$t(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Ht,Nt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&z.value!==Sl?Promise.resolve():new Promise((pt,Ht)=>{Ct.add([pt,Ht])})}function $t(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Ht,Nt])=>pt?Nt(pt):Ht()),Ct.reset()),pt}function Tt(pt,Ht,Nt,bt){const{scrollBehavior:ft}=n;if(!Dr||!ft)return Promise.resolve();const J=!Nt&&Q3(U2(pt.fullPath,0))||(bt||!Nt)&&history.state&&history.state.scroll||null;return pe().then(()=>ft(pt,Ht,J)).then(lt=>lt&&Z3(lt)).catch(lt=>gt(lt,pt,Ht))}const Ft=pt=>u.go(pt);let Kt;const Qt=new Set,Rt={currentRoute:z,listening:!0,addRoute:P,removeRoute:D,hasRoute:Y,getRoutes:E,resolve:O,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:b.add,onError:xt.add,isReady:It,install(pt){const Ht=this;pt.component("RouterLink",Df),pt.component("RouterView",du),pt.config.globalProperties.$router=Ht,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>He(z)}),Dr&&!Kt&&z.value===Sl&&(Kt=!0,W(u.location).catch(ft=>{}));const Nt={};for(const ft in Sl)Object.defineProperty(Nt,ft,{get:()=>z.value[ft],enumerable:!0});pt.provide(wh,Ht),pt.provide(hu,R0(Nt)),pt.provide(Qi,z);const bt=pt.unmount;Qt.add(pt),pt.unmount=function(){Qt.delete(pt),Qt.size<1&&(C=Sl,ht&&ht(),ht=null,z.value=Sl,Kt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Ht,Nt)=>Ht.then(()=>G(Nt)),Promise.resolve())}return Rt}function Ef(n,l){const r=[],h=[],u=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;vYr(C,b))?h.push(b):r.push(b));const z=n.matched[v];z&&(l.matched.find(C=>Yr(C,z))||u.push(z))}return[r,h,u]}const Vf=mr({__name:"App",setup(n){return(l,r)=>(ds(),Ca(He(du)))}}),_f="modulepreload",Wf=function(n){return"/"+n},h1={},Qe=function(l,r,h){if(!r||r.length===0)return l();const u=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=Wf(g),g in h1)return;h1[g]=!0;const v=g.endsWith(".css"),b=v?'[rel="stylesheet"]':"";if(!!h)for(let S=u.length-1;S>=0;S--){const A=u[S];if(A.href===g&&(!v||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${b}`))return;const C=document.createElement("link");if(C.rel=v?"stylesheet":_f,v||(C.as="script",C.crossOrigin=""),C.href=g,document.head.appendChild(C),v)return new Promise((S,A)=>{C.addEventListener("load",S),C.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},Xf={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>Qe(()=>import("./FullLayout-b2203f2d.js"),["assets/FullLayout-b2203f2d.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js"]),children:[{name:"Dashboard",path:"/",component:()=>Qe(()=>import("./DefaultDashboard-5e53ba74.js"),["assets/DefaultDashboard-5e53ba74.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Extensions",path:"/extension",component:()=>Qe(()=>import("./ExtensionPage-62da0b9d.js"),["assets/ExtensionPage-62da0b9d.js","assets/axios-21b846bc.js"])},{name:"Configs",path:"/config",component:()=>Qe(()=>import("./ConfigPage-8eb2a382.js"),["assets/ConfigPage-8eb2a382.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js","assets/axios-21b846bc.js"])},{name:"Default",path:"/dashboard/default",component:()=>Qe(()=>import("./DefaultDashboard-5e53ba74.js"),["assets/DefaultDashboard-5e53ba74.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/axios-21b846bc.js"])},{name:"Starter",path:"/starter",component:()=>Qe(()=>import("./StarterPage-c10add8c.js"),["assets/StarterPage-c10add8c.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>Qe(()=>import("./TablerIcons-39aa3d62.js"),["assets/TablerIcons-39aa3d62.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Material Icons",path:"/icons/material",component:()=>Qe(()=>import("./MaterialIcons-e9dc1d9a.js"),["assets/MaterialIcons-e9dc1d9a.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Typography",path:"/utils/typography",component:()=>Qe(()=>import("./TypographyPage-f435ac5f.js"),["assets/TypographyPage-f435ac5f.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>Qe(()=>import("./ShadowPage-c8e10c04.js"),["assets/ShadowPage-c8e10c04.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])},{name:"Colors",path:"/utils/colors",component:()=>Qe(()=>import("./ColorPage-52ebf493.js"),["assets/ColorPage-52ebf493.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-9cbf7999.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-6feeca73.js"])}]},qf={path:"/auth",component:()=>Qe(()=>import("./BlankLayout-f3cc4938.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>Qe(()=>import("./LoginPage-4d7f178b.js"),["assets/LoginPage-4d7f178b.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>Qe(()=>import("./RegisterPage-08cedf17.js"),["assets/RegisterPage-08cedf17.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-8caac657.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>Qe(()=>import("./Error404Page-8268ca5d.js"),["assets/Error404Page-8268ca5d.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]},Yf={get:Ps("GET"),post:Ps("POST"),put:Ps("PUT"),delete:Ps("DELETE")};function Ps(n){return(l,r)=>{const h={method:n,headers:Gf(l)};return r&&(h.headers["Content-Type"]="application/json",h.body=JSON.stringify(r)),fetch(l,h).then(Uf)}}function Gf(n){const{user:l}=vh(),r=!!(l!=null&&l.token),h=n.startsWith({}.VITE_API_URL);return r&&h?{Authorization:`Bearer ${l.token}`}:{}}function Uf(n){return n.text().then(l=>{const r=l&&JSON.parse(l);if(!n.ok){const{user:h,logout:u}=vh();[401,403].includes(n.status)&&h&&u();const g=r&&r.message||n.statusText;return Promise.reject(g)}return r})}const Zf=`${{}.VITE_API_URL}/users`,vh=O3({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){const r=await Yf.post(`${Zf}/authenticate`,{username:n,password:l});this.user=r,localStorage.setItem("user",JSON.stringify(r)),ta.push(this.returnUrl||"/dashboard/default")},logout(){this.user=null,localStorage.removeItem("user"),ta.push("/auth/login")}}}),ta=Rf({history:nf("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>Qe(()=>import("./Error404Page-8268ca5d.js"),["assets/Error404Page-8268ca5d.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},Xf,qf]});ta.beforeEach(async(n,l,r)=>{const u=!["/auth/login"].includes(n.path),g=vh();if(n.matched.some(v=>v.meta.requiresAuth)){if(u&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const Me=typeof window<"u",fh=Me&&"IntersectionObserver"in window,Kf=Me&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function d1(n,l,r){Qf(n,l),l.set(n,r)}function Qf(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Jf(n,l,r){var h=cu(n,l,"set");return t5(n,h,r),r}function t5(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function Ql(n,l){var r=cu(n,l,"get");return e5(n,r)}function cu(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function e5(n,l){return l.get?l.get.call(n):l.value}function uu(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let u=0;ukr(n[h],l[h]))}function Ji(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),uu(n,l.split("."),r))}function tn(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const u=l(n,r);return typeof u>"u"?r:u}if(typeof l=="string")return Ji(n,l,r);if(Array.isArray(l))return uu(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function il(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function Xt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function t0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function e0(n){return n&&"$el"in n?n.$el:n}const c1=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),n0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function pu(n){return Object.keys(n)}function lr(n,l){return l.every(r=>n.hasOwnProperty(r))}function pr(n,l,r){const h=Object.create(null),u=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:u[g]=n[g];return[h,u]}function jn(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const gu=/^on[^a-z]/,mh=n=>gu.test(n),n5=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function br(n){const[l,r]=pr(n,[gu]),h=jn(l,n5),[u,g]=pr(r,["class","style","id",/^data-/]);return Object.assign(u,l),Object.assign(g,h),[u,g]}function Bn(n){return n==null?[]:Array.isArray(n)?n:[n]}function en(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function u1(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function p1(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function l5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const u in n)h[u]=n[u];for(const u in l){const g=n[u],v=l[u];if(t0(g)&&t0(v)){h[u]=An(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[u]=r(g,v);continue}h[u]=v}return h}function wu(n){return n.map(l=>l.type===Zt?wu(l.children):l).flat()}function ir(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(ir.cache.has(n))return ir.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return ir.cache.set(n,l),l}ir.cache=new Map;function Lo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>Lo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>Lo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return Lo(n,l.component.subTree).flat(1)}return[]}var Ls=new WeakMap,Br=new WeakMap;class r5{constructor(l){d1(this,Ls,{writable:!0,value:[]}),d1(this,Br,{writable:!0,value:0}),this.size=l}push(l){Ql(this,Ls)[Ql(this,Br)]=l,Jf(this,Br,(Ql(this,Br)+1)%this.size)}values(){return Ql(this,Ls).slice(Ql(this,Br)).concat(Ql(this,Ls).slice(0,Ql(this,Br)))}}function o5(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function kh(n){const l=Ye({}),r=X(n);return fn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),rs(l)}function ea(n,l){return n.includes(l)}function vu(n){return n[2].toLowerCase()+n.slice(3)}const tl=()=>[Function,Array];function w1(n,l){return l="on"+fl(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function bh(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function fu(n,l,r){let h,u=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do u+=g,h=n[u];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&u=0);return h}function na(n,l){var h,u,g,v;const r=Go(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(u=r[0])==null||u.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const b=fu(r,l);b?b.focus():na(n,l==="next"?"first":"last")}}function mu(){}function Ur(n,l){if(!(Me&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const ku=["top","bottom"],s5=["start","end","left","right"];function l0(n,l){let[r,h]=n.split(" ");return h||(h=ea(ku,r)?"start":ea(s5,r)?"top":"center"),{side:r0(r,l),align:r0(h,l)}}function r0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function fi(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function v1(n){return{side:n.align,align:n.side}}function f1(n){return ea(ku,n.side)?"y":"x"}class _r{constructor(l){let{x:r,y:h,width:u,height:g}=l;this.x=r,this.y=h,this.width=u,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function m1(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function Mh(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let u,g,v,b,z;if(h.startsWith("matrix3d("))u=h.slice(9,-1).split(/, /),g=+u[0],v=+u[5],b=+u[12],z=+u[13];else if(h.startsWith("matrix("))u=h.slice(7,-1).split(/, /),g=+u[0],v=+u[3],b=+u[4],z=+u[5];else return new _r(l);const C=r.transformOrigin,S=l.x-b-(1-g)*parseFloat(C),A=l.y-z-(1-v)*parseFloat(C.slice(C.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new _r({x:S,y:A,width:B,height:P})}else return new _r(l)}function rr(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(u=>{h.onfinish=()=>{u(h)}})),h}const Xs=new WeakMap;function a5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);if(l[r]==null)u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))});else if(!u||![...u].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=u||new Set;g.add([h,l[r]]),Xs.has(n)||Xs.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function i5(n,l){Object.keys(l).forEach(r=>{if(mh(r)){const h=vu(r),u=Xs.get(n);u==null||u.forEach(g=>{const[v,b]=g;v===h&&(n.removeEventListener(h,b),u.delete(g))})}else n.removeAttribute(r)})}const Hr=2.4,k1=.2126729,b1=.7151522,M1=.072175,h5=.55,d5=.58,c5=.57,u5=.62,Ds=.03,x1=1.45,p5=5e-4,g5=1.25,w5=1.25,z1=.078,I1=12.82051282051282,Fs=.06,y1=.001;function C1(n,l){const r=(n.r/255)**Hr,h=(n.g/255)**Hr,u=(n.b/255)**Hr,g=(l.r/255)**Hr,v=(l.g/255)**Hr,b=(l.b/255)**Hr;let z=r*k1+h*b1+u*M1,C=g*k1+v*b1+b*M1;if(z<=Ds&&(z+=(Ds-z)**x1),C<=Ds&&(C+=(Ds-C)**x1),Math.abs(C-z)z){const A=(C**h5-z**d5)*g5;S=A-y1?0:A>-z1?A-A*I1*Fs:A+Fs}return S*100}function v5(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const la=.20689655172413793,f5=n=>n>la**3?Math.cbrt(n):n/(3*la**2)+4/29,m5=n=>n>la?n**3:3*la**2*(n-4/29);function bu(n){const l=f5,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Mu(n){const l=m5,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const k5=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],b5=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,M5=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],x5=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function xu(n){const l=Array(3),r=b5,h=k5;for(let u=0;u<3;++u)l[u]=Math.round(en(r(h[u][0]*n[0]+h[u][1]*n[1]+h[u][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function xh(n){let{r:l,g:r,b:h}=n;const u=[0,0,0],g=x5,v=M5;l=g(l/255),r=g(r/255),h=g(h/255);for(let b=0;b<3;++b)u[b]=v[b][0]*l+v[b][1]*r+v[b][2]*h;return u}function S1(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const $1=/^(?(?:rgb|hsl)a?)\((?.+)\)/,z5={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>A1({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>pl({h:n,s:l,v:r,a:h})};function _n(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&$1.test(n)){const{groups:l}=n.match($1),{fn:r,values:h}=l,u=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return z5[r](...u)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Su(l)}else if(typeof n=="object"){if(lr(n,["r","g","b"]))return n;if(lr(n,["h","s","l"]))return pl(zh(n));if(lr(n,["h","s","v"]))return pl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} -Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function pl(n){const{h:l,s:r,v:h,a:u}=n,g=b=>{const z=(b+l/60)%6;return h-h*r*Math.max(Math.min(z,4-z,1),0)},v=[g(5),g(3),g(1)].map(b=>Math.round(b*255));return{r:v[0],g:v[1],b:v[2],a:u}}function A1(n){return pl(zh(n))}function ja(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,u=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;u!==g&&(u===l?v=60*(0+(r-h)/(u-g)):u===r?v=60*(2+(h-l)/(u-g)):u===h&&(v=60*(4+(l-r)/(u-g)))),v<0&&(v=v+360);const b=u===0?0:(u-g)/u,z=[v,b,u];return{h:z[0],s:z[1],v:z[2],a:n.a}}function zu(n){const{h:l,s:r,v:h,a:u}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:u}}function zh(n){const{h:l,s:r,l:h,a:u}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:u}}function Iu(n){let{r:l,g:r,b:h,a:u}=n;return u===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${u})`}function yu(n){return Iu(pl(n))}function Os(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Cu(n){let{r:l,g:r,b:h,a:u}=n;return`#${[Os(l),Os(r),Os(h),u!==void 0?Os(Math.round(u*255)):""].join("")}`}function Su(n){n=y5(n);let[l,r,h,u]=l5(n,2).map(g=>parseInt(g,16));return u=u===void 0?u:u/255,{r:l,g:r,b:h,a:u}}function I5(n){const l=Su(n);return ja(l)}function $u(n){return Cu(pl(n))}function y5(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=p1(p1(n,6),8,"F")),n}function C5(n,l){const r=bu(xh(n));return r[0]=r[0]+l*10,xu(Mu(r))}function S5(n,l){const r=bu(xh(n));return r[0]=r[0]-l*10,xu(Mu(r))}function o0(n){const l=_n(n);return xh(l)[1]}function $5(n,l){const r=o0(n),h=o0(l),u=Math.max(r,h),g=Math.min(r,h);return(u+.05)/(g+.05)}function Au(n){const l=Math.abs(C1(_n(0),_n(n)));return Math.abs(C1(_n(16777215),_n(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,u)=>{const v=typeof n[u]=="object"&&n[u]!=null&&!Array.isArray(n[u])?n[u]:{type:n[u]};return r&&u in r?h[u]={...v,default:r[u]}:h[u]=v,l&&!h[u].source&&(h[u].source=l),h},{})}const Wt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Pn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return pr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,u){const g=Ch();if(!g.value)return n._setup(h,u);const{props:v,provideSubDefaults:b}=D5(h,h._as??n.name,g),z=n._setup(v,u);return b(),z}}return n}function At(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Pn:mr)(l)}function Gn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return At()({name:r??fl(In(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Wt()},setup(h,u){let{slots:g}=u;return()=>{var v;return Hn(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Bu(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const Uo="cubic-bezier(0.4, 0, 0.2, 1)",A5="cubic-bezier(0.0, 0, 0.2, 1)",B5="cubic-bezier(0.4, 0, 1, 1)";function We(n,l){const r=nl();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function kl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=We(n).type;return ir((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Hu=0,qs=new WeakMap;function on(){const n=We("getUid");if(qs.has(n))return qs.get(n);{const l=Hu++;return qs.set(n,l),l}}on.reset=()=>{Hu=0,qs=new WeakMap};function Ih(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?H5(n):yh(n))return n;n=n.parentElement}return document.scrollingElement}function ra(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(yh(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function yh(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function H5(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function N5(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:We("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function j5(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Lt(n){const l=We("useRender");l.render=n}const Zr=Symbol.for("vuetify:defaults");function P5(n){return Pt(n)}function Ch(){const n=he(Zr);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Fe(n,l){const r=Ch(),h=Pt(n),u=X(()=>{if(He(l==null?void 0:l.disabled))return r.value;const v=He(l==null?void 0:l.scoped),b=He(l==null?void 0:l.reset),z=He(l==null?void 0:l.root);if(h.value==null&&!(v||b||z))return r.value;let C=An(h.value,{prev:r.value});if(v)return C;if(b||z){const S=Number(b||1/0);for(let A=0;A<=S&&!(!C||!("prev"in C));A++)C=C.prev;return C&&typeof z=="string"&&z in C&&(C=An(An(C,{prev:C}),C[z])),C}return C.prev?An(C.prev,C):C});return ye(Zr,u),u}function L5(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[ir(l)])<"u"}function D5(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Ch();const h=We("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const u=X(()=>{var z;return(z=r.value)==null?void 0:z[n._as??l]}),g=new Proxy(n,{get(z,C){var A,B,P,D;const S=Reflect.get(z,C);return C==="class"||C==="style"?[(A=u.value)==null?void 0:A[C],S].filter(E=>E!=null):typeof C=="string"&&!L5(h.vnode,C)?((B=u.value)==null?void 0:B[C])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[C])??S:S}}),v=_t();fn(()=>{if(u.value){const z=Object.entries(u.value).filter(C=>{let[S]=C;return S.startsWith(S[0].toUpperCase())});v.value=z.length?Object.fromEntries(z):void 0}else v.value=void 0});function b(){const z=N5(Zr,h);ye(Zr,X(()=>v.value?An((z==null?void 0:z.value)??{},v.value):z==null?void 0:z.value))}return{props:g,provideSubDefaults:b}}const Pa=["sm","md","lg","xl","xxl"],s0=Symbol.for("vuetify:display"),B1={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},F5=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:B1;return An(B1,n)};function H1(n){return Me&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function N1(n){return Me&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function j1(n){const l=Me&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),u=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),b=r(/chrome/i),z=r(/edge/i),C=r(/firefox/i),S=r(/opera/i),A=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:u,cordova:g,electron:v,chrome:b,edge:z,firefox:C,opera:S,win:A,mac:B,linux:P,touch:Kf,ssr:l==="ssr"}}function O5(n,l){const{thresholds:r,mobileBreakpoint:h}=F5(n),u=_t(N1(l)),g=_t(j1(l)),v=Ye({}),b=_t(H1(l));function z(){u.value=N1(),b.value=H1()}function C(){z(),g.value=j1()}return fn(()=>{const S=b.value=r.xxl,Y=S?"xs":A?"sm":B?"md":P?"lg":D?"xl":"xxl",O=typeof h=="number"?h:r[h],H=b.valueHn($h,{...n,class:"mdi"})},te=[String,Function,Object,Array],a0=Symbol.for("vuetify:icons"),La=mt({icon:{type:te},tag:{type:String,required:!0}},"icon"),i0=At()({name:"VComponentIcon",props:La(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var u;return[n.icon?t(h,null,null):(u=r.default)==null?void 0:u.call(r)]}})}}}),Sh=Pn({name:"VSvgIcon",inheritAttrs:!1,props:La(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),E5=Pn({name:"VLigatureIcon",props:La(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),$h=Pn({name:"VClassIcon",props:La(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),V5={svg:{component:Sh},class:{component:$h}};function _5(n){return An({defaultSet:"mdi",sets:{...V5,mdi:R5},aliases:{...T5,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const W5=n=>{const l=he(a0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:X(()=>{var z;const h=He(n);if(!h)return{component:i0};let u=h;if(typeof u=="string"&&(u=u.trim(),u.startsWith("$")&&(u=(z=l.aliases)==null?void 0:z[u.slice(1)])),!u)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(u))return{component:Sh,icon:u};if(typeof u!="string")return{component:i0,icon:u};const g=Object.keys(l.sets).find(C=>typeof u=="string"&&u.startsWith(`${C}:`)),v=g?u.slice(g.length+1):u;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},X5={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},q5={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Vl(n,l){let r;function h(){r=Jr(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}Vt(n,u=>{u&&!r?h():u||(r==null||r.stop(),r=void 0)},{immediate:!0}),ln(()=>{r==null||r.stop()})}function ee(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:A=>A,u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:A=>A;const g=We("useProxiedModel"),v=Pt(n[l]!==void 0?n[l]:r),b=ir(l),C=X(b!==l?()=>{var A,B,P,D;return n[l],!!(((A=g.vnode.props)!=null&&A.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(b))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${b}`)))}:()=>{var A,B;return n[l],!!((A=g.vnode.props)!=null&&A.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Vl(()=>!C.value,()=>{Vt(()=>n[l],A=>{v.value=A})});const S=X({get(){const A=n[l];return h(C.value?A:v.value)},set(A){const B=u(A),P=ne(C.value?n[l]:v.value);P===B||h(P)===A||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>C.value?n[l]:v.value}),S}const P1="$vuetify.",L1=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),Nu=(n,l,r)=>function(h){for(var u=arguments.length,g=new Array(u>1?u-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function mi(n,l,r){const h=ee(n,l,n[l]??r.value);return h.value=n[l]??r.value,Vt(r,u=>{n[l]==null&&(h.value=r.value)}),h}function Pu(n){return l=>{const r=mi(l,"locale",n.current),h=mi(l,"fallback",n.fallback),u=mi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:u,t:Nu(r,h,u),n:ju(r,h),provide:Pu({current:r,fallback:h,messages:u})}}}function Y5(n){const l=_t((n==null?void 0:n.locale)??"en"),r=_t((n==null?void 0:n.fallback)??"en"),h=Pt({en:X5,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:Nu(l,r,h),n:ju(l,r),provide:Pu({current:l,fallback:r,messages:h})}}const Kr=Symbol.for("vuetify:locale");function G5(n){return n.name!=null}function U5(n){const l=n!=null&&n.adapter&&G5(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:Y5(n),r=K5(l,n);return{...l,...r}}function Ln(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function Z5(n){const l=he(Kr);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=Q5(r,l.rtl,n),u={...r,...h};return ye(Kr,u),u}function K5(n,l){const r=Pt((l==null?void 0:l.rtl)??q5),h=X(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Q5(n,l,r){const h=X(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:X(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Xe(){const n=he(Kr);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const Zo=Symbol.for("vuetify:theme"),ce=mt({theme:String},"theme"),ko={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function J5(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ko;if(!n)return{...ko,isDisabled:!0};const l={};for(const[u,g]of Object.entries(n.themes??{})){const v=g.dark||u==="dark"?(r=ko.themes)==null?void 0:r.dark:(h=ko.themes)==null?void 0:h.light;l[u]=An(v,g)}return An(ko,{...n,themes:l})}function tm(n){const l=J5(n),r=Pt(l.defaultTheme),h=Pt(l.themes),u=X(()=>{const S={};for(const[A,B]of Object.entries(h.value)){const P=S[A]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const E=P.colors[D];if(E)for(const Y of["lighten","darken"]){const O=Y==="lighten"?C5:S5;for(const H of il(l.variations[Y],1))P.colors[`${D}-${Y}-${H}`]=Cu(O(_n(E),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const E=`on-${D}`,Y=_n(P.colors[D]);P.colors[E]=Au(Y)}}return S}),g=X(()=>u.value[r.value]),v=X(()=>{const S=[];g.value.dark&&Jl(S,":root",["color-scheme: dark"]),Jl(S,":root",D1(g.value));for(const[D,E]of Object.entries(u.value))Jl(S,`.v-theme--${D}`,[`color-scheme: ${E.dark?"dark":"normal"}`,...D1(E)]);const A=[],B=[],P=new Set(Object.values(u.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?Jl(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(Jl(A,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),Jl(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),Jl(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...A,...B),S.map((D,E)=>E===0?D:` ${D}`).join("")});function b(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function z(S){if(l.isDisabled)return;const A=S._context.provides.usehead;if(A)if(A.push){const B=A.push(b);Me&&Vt(v,()=>{B.patch(b)})}else Me?(A.addHeadObjs(X(b)),fn(()=>A.updateDOM())):A.addHeadObjs(b());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=Me?document.getElementById("vuetify-theme-stylesheet"):null;Me?Vt(v,P,{immediate:!0}):P()}}const C=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:z,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:u,themeClasses:C,styles:v,global:{name:r,current:g}}}function ge(n){We("provideTheme");const l=he(Zo,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=X(()=>n.theme??(l==null?void 0:l.name.value)),h=X(()=>l.isDisabled?void 0:`v-theme--${r.value}`),u={...l,name:r,themeClasses:h};return ye(Zo,u),u}function Lu(){We("useTheme");const n=he(Zo,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function Jl(n,l,r){n.push(`${l} { + */const Wr=typeof window<"u";function t5(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const fe=Object.assign;function Li(n,l){const r={};for(const h in l){const c=l[h];r[h]=Kn(c)?c.map(n):n(c)}return r}const Wo=()=>{},Kn=Array.isArray,e5=/\/$/,n5=n=>n.replace(e5,"");function Di(n,l,r="/"){let h,c={},g="",v="";const k=l.indexOf("#");let x=l.indexOf("?");return k=0&&(x=-1),x>-1&&(h=l.slice(0,x),g=l.slice(x+1,k>-1?k:l.length),c=n(g)),k>-1&&(h=h||l.slice(0,k),v=l.slice(k,l.length)),h=s5(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:c,hash:v}}function l5(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function A1(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function r5(n,l,r){const h=l.matched.length-1,c=r.matched.length-1;return h>-1&&h===c&&eo(l.matched[h],r.matched[c])&&qu(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function eo(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function qu(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!o5(n[r],l[r]))return!1;return!0}function o5(n,l){return Kn(n)?B1(n,l):Kn(l)?B1(l,n):n===l}function B1(n,l){return Kn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function s5(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),c=h[h.length-1];(c===".."||c===".")&&h.push("");let g=r.length-1,v,k;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var rs;(function(n){n.pop="pop",n.push="push"})(rs||(rs={}));var Xo;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Xo||(Xo={}));function a5(n){if(!n)if(Wr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),n5(n)}const i5=/^[^#]+#/;function h5(n,l){return n.replace(i5,"#")+l}function d5(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Ga=()=>({left:window.pageXOffset,top:window.pageYOffset});function c5(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),c=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!c)return;l=d5(c,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function H1(n,l){return(history.state?history.state.position-l:-1)+n}const x0=new Map;function u5(n,l){x0.set(n,l)}function p5(n){const l=x0.get(n);return x0.delete(n),l}let g5=()=>location.protocol+"//"+location.host;function Yu(n,l){const{pathname:r,search:h,hash:c}=l,g=n.indexOf("#");if(g>-1){let k=c.includes(n.slice(g))?n.slice(g).length:1,x=c.slice(k);return x[0]!=="/"&&(x="/"+x),A1(x,"")}return A1(r,n)+h+c}function w5(n,l,r,h){let c=[],g=[],v=null;const k=({state:B})=>{const P=Yu(n,location),D=r.value,F=l.value;let X=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}X=F?B.position-F.position:0}else h(P);c.forEach(R=>{R(r.value,D,{delta:X,type:rs.pop,direction:X?X>0?Xo.forward:Xo.back:Xo.unknown})})};function x(){v=r.value}function I(B){c.push(B);const P=()=>{const D=c.indexOf(B);D>-1&&c.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(fe({},B.state,{scroll:Ga()}),"")}function $(){for(const B of g)B();g=[],window.removeEventListener("popstate",k),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",k),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:x,listen:I,destroy:$}}function N1(n,l,r,h=!1,c=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:c?Ga():null}}function v5(n){const{history:l,location:r}=window,h={value:Yu(n,r)},c={value:l.state};c.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(x,I,S){const $=n.indexOf("#"),B=$>-1?(r.host&&document.querySelector("base")?n:n.slice($))+x:g5()+n+x;try{l[S?"replaceState":"pushState"](I,"",B),c.value=I}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(x,I){const S=fe({},l.state,N1(c.value.back,x,c.value.forward,!0),I,{position:c.value.position});g(x,S,!0),h.value=x}function k(x,I){const S=fe({},c.value,l.state,{forward:x,scroll:Ga()});g(S.current,S,!0);const $=fe({},N1(h.value,x,null),{position:S.position+1},I);g(x,$,!1),h.value=x}return{location:h,state:c,push:k,replace:v}}function f5(n){n=a5(n);const l=v5(n),r=w5(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const c=fe({location:"",base:n,go:h,createHref:h5.bind(null,n)},l,r);return Object.defineProperty(c,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(c,"state",{enumerable:!0,get:()=>l.state.value}),c}function m5(n){return typeof n=="string"||n&&typeof n=="object"}function Uu(n){return typeof n=="string"||typeof n=="symbol"}const Pl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Gu=Symbol("");var j1;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(j1||(j1={}));function no(n,l){return fe(new Error,{type:n,[Gu]:!0},l)}function dl(n,l){return n instanceof Error&&Gu in n&&(l==null||!!(n.type&l))}const P1="[^/]+?",k5={sensitive:!1,strict:!1,start:!0,end:!0},b5=/[.+*?^${}()[\]/\\]/g;function M5(n,l){const r=fe({},k5,l),h=[];let c=r.start?"^":"";const g=[];for(const I of n){const S=I.length?[]:[90];r.strict&&!I.length&&(c+="/");for(let $=0;$l.length?l.length===1&&l[0]===40+40?1:-1:0}function z5(n,l){let r=0;const h=n.score,c=l.score;for(;r0&&l[l.length-1]<0}const I5={type:0,value:""},y5=/[a-zA-Z0-9_]/;function C5(n){if(!n)return[[]];if(n==="/")return[[I5]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${I}": ${P}`)}let r=0,h=r;const c=[];let g;function v(){g&&c.push(g),g=[]}let k=0,x,I="",S="";function $(){I&&(r===0?g.push({type:0,value:I}):r===1||r===2||r===3?(g.length>1&&(x==="*"||x==="+")&&l(`A repeatable param (${I}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:I,regexp:S,repeatable:x==="*"||x==="+",optional:x==="*"||x==="?"})):l("Invalid state to consume buffer"),I="")}function B(){I+=x}for(;k{v(H)}:Wo}function v(S){if(Uu(S)){const $=h.get(S);$&&(h.delete(S),r.splice(r.indexOf($),1),$.children.forEach(v),$.alias.forEach(v))}else{const $=r.indexOf(S);$>-1&&(r.splice($,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function k(){return r}function x(S){let $=0;for(;$=0&&(S.record.path!==r[$].record.path||!Zu(S,r[$]));)$++;r.splice($,0,S),S.record.name&&!O1(S)&&h.set(S.record.name,S)}function I(S,$){let B,P={},D,F;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw no(1,{location:S});F=B.record.name,P=fe(D1($.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&D1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),F=B.record.name);else{if(B=$.name?h.get($.name):r.find(H=>H.re.test($.path)),!B)throw no(1,{location:S,currentLocation:$});F=B.record.name,P=fe({},$.params,S.params),D=B.stringify(P)}const X=[];let R=B;for(;R;)X.unshift(R.record),R=R.parent;return{name:F,path:D,params:P,matched:X,meta:H5(X)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:I,removeRoute:v,getRoutes:k,getRecordMatcher:c}}function D1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function A5(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:B5(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function B5(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function O1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function H5(n){return n.reduce((l,r)=>fe(l,r.meta),{})}function F1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function Zu(n,l){return l.children.some(r=>r===n||Zu(n,r))}const Ku=/#/g,N5=/&/g,j5=/\//g,P5=/=/g,L5=/\?/g,Qu=/\+/g,D5=/%5B/g,O5=/%5D/g,Ju=/%5E/g,F5=/%60/g,tp=/%7B/g,R5=/%7C/g,ep=/%7D/g,T5=/%20/g;function Xh(n){return encodeURI(""+n).replace(R5,"|").replace(D5,"[").replace(O5,"]")}function E5(n){return Xh(n).replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function z0(n){return Xh(n).replace(Qu,"%2B").replace(T5,"+").replace(Ku,"%23").replace(N5,"%26").replace(F5,"`").replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function V5(n){return z0(n).replace(P5,"%3D")}function _5(n){return Xh(n).replace(Ku,"%23").replace(L5,"%3F")}function W5(n){return n==null?"":_5(n).replace(j5,"%2F")}function wa(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function X5(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let c=0;cg&&z0(g)):[h&&z0(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function q5(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Kn(h)?h.map(c=>c==null?null:""+c):h==null?h:""+h)}return l}const Y5=Symbol(""),T1=Symbol(""),qh=Symbol(""),np=Symbol(""),I0=Symbol("");function $o(){let n=[];function l(h){return n.push(h),()=>{const c=n.indexOf(h);c>-1&&n.splice(c,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Rl(n,l,r,h,c){const g=h&&(h.enterCallbacks[c]=h.enterCallbacks[c]||[]);return()=>new Promise((v,k)=>{const x=$=>{$===!1?k(no(4,{from:r,to:l})):$ instanceof Error?k($):m5($)?k(no(2,{from:l,to:$})):(g&&h.enterCallbacks[c]===g&&typeof $=="function"&&g.push($),v())},I=n.call(h&&h.instances[c],l,r,x);let S=Promise.resolve(I);n.length<3&&(S=S.then(x)),S.catch($=>k($))})}function Oi(n,l,r,h){const c=[];for(const g of n)for(const v in g.components){let k=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(U5(k)){const I=(k.__vccOpts||k)[l];I&&c.push(Rl(I,r,h,g,v))}else{let x=k();c.push(()=>x.then(I=>{if(!I)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=t5(I)?I.default:I;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Rl(B,r,h,g,v)()}))}}return c}function U5(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function E1(n){const l=de(qh),r=de(np),h=q(()=>l.resolve(je(n.to))),c=q(()=>{const{matched:x}=h.value,{length:I}=x,S=x[I-1],$=r.matched;if(!S||!$.length)return-1;const B=$.findIndex(eo.bind(null,S));if(B>-1)return B;const P=V1(x[I-2]);return I>1&&V1(S)===P&&$[$.length-1].path!==P?$.findIndex(eo.bind(null,x[I-2])):B}),g=q(()=>c.value>-1&&Q5(r.params,h.value.params)),v=q(()=>c.value>-1&&c.value===r.matched.length-1&&qu(r.params,h.value.params));function k(x={}){return K5(x)?l[je(n.replace)?"replace":"push"](je(n.to)).catch(Wo):Promise.resolve()}return{route:h,href:q(()=>h.value.href),isActive:g,isExactActive:v,navigate:k}}const G5=Cr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:E1,setup(n,{slots:l}){const r=Ze(E1(n)),{options:h}=de(qh),c=q(()=>({[_1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[_1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Ln("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:c.value},g)}}}),Z5=G5;function K5(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Q5(n,l){for(const r in l){const h=l[r],c=n[r];if(typeof h=="string"){if(h!==c)return!1}else if(!Kn(c)||c.length!==h.length||h.some((g,v)=>g!==c[v]))return!1}return!0}function V1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const _1=(n,l,r)=>n??l??r,J5=Cr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=de(I0),c=q(()=>n.route||h.value),g=de(T1,0),v=q(()=>{let I=je(g);const{matched:S}=c.value;let $;for(;($=S[I])&&!$.components;)I++;return I}),k=q(()=>c.value.matched[v.value]);Se(T1,q(()=>v.value+1)),Se(Y5,k),Se(I0,c);const x=Lt();return _t(()=>[x.value,k.value,n.name],([I,S,$],[B,P,D])=>{S&&(S.instances[$]=I,P&&P!==S&&I&&I===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),I&&S&&(!P||!eo(S,P)||!B)&&(S.enterCallbacks[$]||[]).forEach(F=>F(I))},{flush:"post"}),()=>{const I=c.value,S=n.name,$=k.value,B=$&&$.components[S];if(!B)return W1(r.default,{Component:B,route:I});const P=$.props[S],D=P?P===!0?I.params:typeof P=="function"?P(I):P:null,X=Ln(B,fe({},D,l,{onVnodeUnmounted:R=>{R.component.isUnmounted&&($.instances[S]=null)},ref:x}));return W1(r.default,{Component:X,route:I})||X}}});function W1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const lp=J5;function tm(n){const l=$5(n.routes,n),r=n.parseQuery||X5,h=n.stringifyQuery||R1,c=n.history,g=$o(),v=$o(),k=$o(),x=Wt(Pl);let I=Pl;Wr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=Li.bind(null,pt=>""+pt),$=Li.bind(null,W5),B=Li.bind(null,wa);function P(pt,Nt){let jt,bt;return Uu(pt)?(jt=l.getRecordMatcher(pt),bt=Nt):bt=pt,l.addRoute(bt,jt)}function D(pt){const Nt=l.getRecordMatcher(pt);Nt&&l.removeRoute(Nt)}function F(){return l.getRoutes().map(pt=>pt.record)}function X(pt){return!!l.getRecordMatcher(pt)}function R(pt,Nt){if(Nt=fe({},Nt||x.value),typeof pt=="string"){const at=Di(r,pt,Nt.path),ct=l.resolve({path:at.path},Nt),kt=c.createHref(at.fullPath);return fe(at,ct,{params:B(ct.params),hash:wa(at.hash),redirectedFrom:void 0,href:kt})}let jt;if("path"in pt)jt=fe({},pt,{path:Di(r,pt.path,Nt.path).path});else{const at=fe({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];jt=fe({},pt,{params:$(at)}),Nt.params=$(Nt.params)}const bt=l.resolve(jt,Nt),ft=pt.hash||"";bt.params=S(B(bt.params));const J=l5(h,fe({},pt,{hash:E5(ft),path:bt.path})),lt=c.createHref(J);return fe({fullPath:J,hash:ft,query:h===R1?q5(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?Di(r,pt,x.value.path):fe({},pt)}function U(pt,Nt){if(I!==pt)return no(8,{from:Nt,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(fe(H(pt),{replace:!0}))}function tt(pt){const Nt=pt.matched[pt.matched.length-1];if(Nt&&Nt.redirect){const{redirect:jt}=Nt;let bt=typeof jt=="function"?jt(pt):jt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),fe({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Nt){const jt=I=R(pt),bt=x.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(jt);if(at)return nt(fe(H(at),{state:typeof at=="object"?fe({},ft,at.state):ft,force:J,replace:lt}),Nt||jt);const ct=jt;ct.redirectedFrom=Nt;let kt;return!J&&r5(h,bt,jt)&&(kt=no(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>dl(yt)?dl(yt,2)?yt:At(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(dl(yt,2))return nt(fe({replace:lt},H(yt.to),{state:typeof yt.to=="object"?fe({},ft,yt.to.state):ft,force:J}),Nt||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function Y(pt,Nt){const jt=U(pt,Nt);return jt?Promise.reject(jt):Promise.resolve()}function G(pt){const Nt=Jt.values().next().value;return Nt&&typeof Nt.runWithContext=="function"?Nt.runWithContext(pt):pt()}function et(pt,Nt){let jt;const[bt,ft,J]=em(pt,Nt);jt=Oi(bt.reverse(),"beforeRouteLeave",pt,Nt);for(const at of bt)at.leaveGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});const lt=Y.bind(null,pt,Nt);return jt.push(lt),ut(jt).then(()=>{jt=[];for(const at of g.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>{jt=Oi(ft,"beforeRouteUpdate",pt,Nt);for(const at of ft)at.updateGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});return jt.push(lt),ut(jt)}).then(()=>{jt=[];for(const at of J)if(at.beforeEnter)if(Kn(at.beforeEnter))for(const ct of at.beforeEnter)jt.push(Rl(ct,pt,Nt));else jt.push(Rl(at.beforeEnter,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),jt=Oi(J,"beforeRouteEnter",pt,Nt),jt.push(lt),ut(jt))).then(()=>{jt=[];for(const at of v.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).catch(at=>dl(at,8)?at:Promise.reject(at))}function st(pt,Nt,jt){k.list().forEach(bt=>G(()=>bt(pt,Nt,jt)))}function rt(pt,Nt,jt,bt,ft){const J=U(pt,Nt);if(J)return J;const lt=Nt===Pl,at=Wr?history.state:{};jt&&(bt||lt?c.replace(pt.fullPath,fe({scroll:lt&&at&&at.scroll},ft)):c.push(pt.fullPath,ft)),x.value=pt,Tt(pt,Nt,jt,lt),At()}let ht;function dt(){ht||(ht=c.listen((pt,Nt,jt)=>{if(!Et.listening)return;const bt=R(pt),ft=tt(bt);if(ft){nt(fe(ft,{replace:!0}),bt).catch(Wo);return}I=bt;const J=x.value;Wr&&u5(H1(J.fullPath,jt.delta),Ga()),et(bt,J).catch(lt=>dl(lt,12)?lt:dl(lt,2)?(nt(lt.to,bt).then(at=>{dl(at,20)&&!jt.delta&&jt.type===rs.pop&&c.go(-1,!1)}).catch(Wo),Promise.reject()):(jt.delta&&c.go(-jt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(jt.delta&&!dl(lt,8)?c.go(-jt.delta,!1):jt.type===rs.pop&&dl(lt,20)&&c.go(-1,!1)),st(bt,J,lt)}).catch(Wo)}))}let Ct=$o(),xt=$o(),wt;function gt(pt,Nt,jt){At(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Nt,jt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&x.value!==Pl?Promise.resolve():new Promise((pt,Nt)=>{Ct.add([pt,Nt])})}function At(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Nt,jt])=>pt?jt(pt):Nt()),Ct.reset()),pt}function Tt(pt,Nt,jt,bt){const{scrollBehavior:ft}=n;if(!Wr||!ft)return Promise.resolve();const J=!jt&&p5(H1(pt.fullPath,0))||(bt||!jt)&&history.state&&history.state.scroll||null;return we().then(()=>ft(pt,Nt,J)).then(lt=>lt&&c5(lt)).catch(lt=>gt(lt,pt,Nt))}const Ft=pt=>c.go(pt);let Qt;const Jt=new Set,Et={currentRoute:x,listening:!0,addRoute:P,removeRoute:D,hasRoute:X,getRoutes:F,resolve:R,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:k.add,onError:xt.add,isReady:It,install(pt){const Nt=this;pt.component("RouterLink",Z5),pt.component("RouterView",lp),pt.config.globalProperties.$router=Nt,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>je(x)}),Wr&&!Qt&&x.value===Pl&&(Qt=!0,W(c.location).catch(ft=>{}));const jt={};for(const ft in Pl)Object.defineProperty(jt,ft,{get:()=>x.value[ft],enumerable:!0});pt.provide(qh,Nt),pt.provide(np,fh(jt)),pt.provide(I0,x);const bt=pt.unmount;Jt.add(pt),pt.unmount=function(){Jt.delete(pt),Jt.size<1&&(I=Pl,ht&&ht(),ht=null,x.value=Pl,Qt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Nt,jt)=>Nt.then(()=>G(jt)),Promise.resolve())}return Et}function em(n,l){const r=[],h=[],c=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;veo(I,k))?h.push(k):r.push(k));const x=n.matched[v];x&&(l.matched.find(I=>eo(I,x))||c.push(x))}return[r,h,c]}const nm=Cr({__name:"App",setup(n){return(l,r)=>(xs(),_a(je(lp)))}}),lm="modulepreload",rm=function(n){return"/"+n},X1={},en=function(l,r,h){if(!r||r.length===0)return l();const c=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=rm(g),g in X1)return;X1[g]=!0;const v=g.endsWith(".css"),k=v?'[rel="stylesheet"]':"";if(!!h)for(let S=c.length-1;S>=0;S--){const $=c[S];if($.href===g&&(!v||$.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${k}`))return;const I=document.createElement("link");if(I.rel=v?"stylesheet":lm,v||(I.as="script",I.crossOrigin=""),I.href=g,document.head.appendChild(I),v)return new Promise((S,$)=>{I.addEventListener("load",S),I.addEventListener("error",()=>$(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},om={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>en(()=>import("./FullLayout-43cdec2d.js"),["assets/FullLayout-43cdec2d.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js","assets/md5-3db5e3e8.js"]),children:[{name:"Dashboard",path:"/",component:()=>en(()=>import("./DefaultDashboard-4eca906c.js"),["assets/DefaultDashboard-4eca906c.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Extensions",path:"/extension",component:()=>en(()=>import("./ExtensionPage-dd2d5b82.js"),[])},{name:"Configs",path:"/config",component:()=>en(()=>import("./ConfigPage-9cac3e0c.js"),["assets/ConfigPage-9cac3e0c.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Default",path:"/dashboard/default",component:()=>en(()=>import("./DefaultDashboard-4eca906c.js"),["assets/DefaultDashboard-4eca906c.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Starter",path:"/starter",component:()=>en(()=>import("./StarterPage-b0efbf05.js"),["assets/StarterPage-b0efbf05.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>en(()=>import("./TablerIcons-ee63977c.js"),["assets/TablerIcons-ee63977c.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Material Icons",path:"/icons/material",component:()=>en(()=>import("./MaterialIcons-dc137c6e.js"),["assets/MaterialIcons-dc137c6e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Typography",path:"/utils/typography",component:()=>en(()=>import("./TypographyPage-bc8b4876.js"),["assets/TypographyPage-bc8b4876.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>en(()=>import("./ShadowPage-1e332d97.js"),["assets/ShadowPage-1e332d97.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Colors",path:"/utils/colors",component:()=>en(()=>import("./ColorPage-55b28b0b.js"),["assets/ColorPage-55b28b0b.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])}]},sm={path:"/auth",component:()=>en(()=>import("./BlankLayout-525cd529.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>en(()=>import("./LoginPage-83b1dbf4.js"),["assets/LoginPage-83b1dbf4.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js","assets/md5-3db5e3e8.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>en(()=>import("./RegisterPage-2c6d8bac.js"),["assets/RegisterPage-2c6d8bac.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>en(()=>import("./Error404Page-81062baf.js"),["assets/Error404Page-81062baf.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]};function rp(n,l){return function(){return n.apply(l,arguments)}}const{toString:am}=Object.prototype,{getPrototypeOf:Yh}=Object,Za=(n=>l=>{const r=am.call(l);return n[r]||(n[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),il=n=>(n=n.toLowerCase(),l=>Za(l)===n),Ka=n=>l=>typeof l===n,{isArray:po}=Array,os=Ka("undefined");function im(n){return n!==null&&!os(n)&&n.constructor!==null&&!os(n.constructor)&&jn(n.constructor.isBuffer)&&n.constructor.isBuffer(n)}const op=il("ArrayBuffer");function hm(n){let l;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?l=ArrayBuffer.isView(n):l=n&&n.buffer&&op(n.buffer),l}const dm=Ka("string"),jn=Ka("function"),sp=Ka("number"),Qa=n=>n!==null&&typeof n=="object",cm=n=>n===!0||n===!1,ra=n=>{if(Za(n)!=="object")return!1;const l=Yh(n);return(l===null||l===Object.prototype||Object.getPrototypeOf(l)===null)&&!(Symbol.toStringTag in n)&&!(Symbol.iterator in n)},um=il("Date"),pm=il("File"),gm=il("Blob"),wm=il("FileList"),vm=n=>Qa(n)&&jn(n.pipe),fm=n=>{let l;return n&&(typeof FormData=="function"&&n instanceof FormData||jn(n.append)&&((l=Za(n))==="formdata"||l==="object"&&jn(n.toString)&&n.toString()==="[object FormData]"))},mm=il("URLSearchParams"),km=n=>n.trim?n.trim():n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ys(n,l,{allOwnKeys:r=!1}={}){if(n===null||typeof n>"u")return;let h,c;if(typeof n!="object"&&(n=[n]),po(n))for(h=0,c=n.length;h0;)if(c=r[h],l===c.toLowerCase())return c;return null}const ip=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),hp=n=>!os(n)&&n!==ip;function y0(){const{caseless:n}=hp(this)&&this||{},l={},r=(h,c)=>{const g=n&&ap(l,c)||c;ra(l[g])&&ra(h)?l[g]=y0(l[g],h):ra(h)?l[g]=y0({},h):po(h)?l[g]=h.slice():l[g]=h};for(let h=0,c=arguments.length;h(ys(l,(c,g)=>{r&&jn(c)?n[g]=rp(c,r):n[g]=c},{allOwnKeys:h}),n),Mm=n=>(n.charCodeAt(0)===65279&&(n=n.slice(1)),n),xm=(n,l,r,h)=>{n.prototype=Object.create(l.prototype,h),n.prototype.constructor=n,Object.defineProperty(n,"super",{value:l.prototype}),r&&Object.assign(n.prototype,r)},zm=(n,l,r,h)=>{let c,g,v;const k={};if(l=l||{},n==null)return l;do{for(c=Object.getOwnPropertyNames(n),g=c.length;g-- >0;)v=c[g],(!h||h(v,n,l))&&!k[v]&&(l[v]=n[v],k[v]=!0);n=r!==!1&&Yh(n)}while(n&&(!r||r(n,l))&&n!==Object.prototype);return l},Im=(n,l,r)=>{n=String(n),(r===void 0||r>n.length)&&(r=n.length),r-=l.length;const h=n.indexOf(l,r);return h!==-1&&h===r},ym=n=>{if(!n)return null;if(po(n))return n;let l=n.length;if(!sp(l))return null;const r=new Array(l);for(;l-- >0;)r[l]=n[l];return r},Cm=(n=>l=>n&&l instanceof n)(typeof Uint8Array<"u"&&Yh(Uint8Array)),Sm=(n,l)=>{const h=(n&&n[Symbol.iterator]).call(n);let c;for(;(c=h.next())&&!c.done;){const g=c.value;l.call(n,g[0],g[1])}},$m=(n,l)=>{let r;const h=[];for(;(r=n.exec(l))!==null;)h.push(r);return h},Am=il("HTMLFormElement"),Bm=n=>n.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,h,c){return h.toUpperCase()+c}),q1=(({hasOwnProperty:n})=>(l,r)=>n.call(l,r))(Object.prototype),Hm=il("RegExp"),dp=(n,l)=>{const r=Object.getOwnPropertyDescriptors(n),h={};ys(r,(c,g)=>{let v;(v=l(c,g,n))!==!1&&(h[g]=v||c)}),Object.defineProperties(n,h)},Nm=n=>{dp(n,(l,r)=>{if(jn(n)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const h=n[r];if(jn(h)){if(l.enumerable=!1,"writable"in l){l.writable=!1;return}l.set||(l.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},jm=(n,l)=>{const r={},h=c=>{c.forEach(g=>{r[g]=!0})};return po(n)?h(n):h(String(n).split(l)),r},Pm=()=>{},Lm=(n,l)=>(n=+n,Number.isFinite(n)?n:l),Fi="abcdefghijklmnopqrstuvwxyz",Y1="0123456789",cp={DIGIT:Y1,ALPHA:Fi,ALPHA_DIGIT:Fi+Fi.toUpperCase()+Y1},Dm=(n=16,l=cp.ALPHA_DIGIT)=>{let r="";const{length:h}=l;for(;n--;)r+=l[Math.random()*h|0];return r};function Om(n){return!!(n&&jn(n.append)&&n[Symbol.toStringTag]==="FormData"&&n[Symbol.iterator])}const Fm=n=>{const l=new Array(10),r=(h,c)=>{if(Qa(h)){if(l.indexOf(h)>=0)return;if(!("toJSON"in h)){l[c]=h;const g=po(h)?[]:{};return ys(h,(v,k)=>{const x=r(v,c+1);!os(x)&&(g[k]=x)}),l[c]=void 0,g}}return h};return r(n,0)},Rm=il("AsyncFunction"),Tm=n=>n&&(Qa(n)||jn(n))&&jn(n.then)&&jn(n.catch),St={isArray:po,isArrayBuffer:op,isBuffer:im,isFormData:fm,isArrayBufferView:hm,isString:dm,isNumber:sp,isBoolean:cm,isObject:Qa,isPlainObject:ra,isUndefined:os,isDate:um,isFile:pm,isBlob:gm,isRegExp:Hm,isFunction:jn,isStream:vm,isURLSearchParams:mm,isTypedArray:Cm,isFileList:wm,forEach:ys,merge:y0,extend:bm,trim:km,stripBOM:Mm,inherits:xm,toFlatObject:zm,kindOf:Za,kindOfTest:il,endsWith:Im,toArray:ym,forEachEntry:Sm,matchAll:$m,isHTMLForm:Am,hasOwnProperty:q1,hasOwnProp:q1,reduceDescriptors:dp,freezeMethods:Nm,toObjectSet:jm,toCamelCase:Bm,noop:Pm,toFiniteNumber:Lm,findKey:ap,global:ip,isContextDefined:hp,ALPHABET:cp,generateString:Dm,isSpecCompliantForm:Om,toJSONObject:Fm,isAsyncFn:Rm,isThenable:Tm};function pe(n,l,r,h,c){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=n,this.name="AxiosError",l&&(this.code=l),r&&(this.config=r),h&&(this.request=h),c&&(this.response=c)}St.inherits(pe,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:St.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const up=pe.prototype,pp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(n=>{pp[n]={value:n}});Object.defineProperties(pe,pp);Object.defineProperty(up,"isAxiosError",{value:!0});pe.from=(n,l,r,h,c,g)=>{const v=Object.create(up);return St.toFlatObject(n,v,function(x){return x!==Error.prototype},k=>k!=="isAxiosError"),pe.call(v,n.message,l,r,h,c),v.cause=n,v.name=n.name,g&&Object.assign(v,g),v};const Em=null;function C0(n){return St.isPlainObject(n)||St.isArray(n)}function gp(n){return St.endsWith(n,"[]")?n.slice(0,-2):n}function U1(n,l,r){return n?n.concat(l).map(function(c,g){return c=gp(c),!r&&g?"["+c+"]":c}).join(r?".":""):l}function Vm(n){return St.isArray(n)&&!n.some(C0)}const _m=St.toFlatObject(St,{},null,function(l){return/^is[A-Z]/.test(l)});function Ja(n,l,r){if(!St.isObject(n))throw new TypeError("target must be an object");l=l||new FormData,r=St.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(F,X){return!St.isUndefined(X[F])});const h=r.metaTokens,c=r.visitor||S,g=r.dots,v=r.indexes,x=(r.Blob||typeof Blob<"u"&&Blob)&&St.isSpecCompliantForm(l);if(!St.isFunction(c))throw new TypeError("visitor must be a function");function I(D){if(D===null)return"";if(St.isDate(D))return D.toISOString();if(!x&&St.isBlob(D))throw new pe("Blob is not supported. Use a Buffer instead.");return St.isArrayBuffer(D)||St.isTypedArray(D)?x&&typeof Blob=="function"?new Blob([D]):Buffer.from(D):D}function S(D,F,X){let R=D;if(D&&!X&&typeof D=="object"){if(St.endsWith(F,"{}"))F=h?F:F.slice(0,-2),D=JSON.stringify(D);else if(St.isArray(D)&&Vm(D)||(St.isFileList(D)||St.endsWith(F,"[]"))&&(R=St.toArray(D)))return F=gp(F),R.forEach(function(U,W){!(St.isUndefined(U)||U===null)&&l.append(v===!0?U1([F],W,g):v===null?F:F+"[]",I(U))}),!1}return C0(D)?!0:(l.append(U1(X,F,g),I(D)),!1)}const $=[],B=Object.assign(_m,{defaultVisitor:S,convertValue:I,isVisitable:C0});function P(D,F){if(!St.isUndefined(D)){if($.indexOf(D)!==-1)throw Error("Circular reference detected in "+F.join("."));$.push(D),St.forEach(D,function(R,H){(!(St.isUndefined(R)||R===null)&&c.call(l,R,St.isString(H)?H.trim():H,F,B))===!0&&P(R,F?F.concat(H):[H])}),$.pop()}}if(!St.isObject(n))throw new TypeError("data must be an object");return P(n),l}function G1(n){const l={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(n).replace(/[!'()~]|%20|%00/g,function(h){return l[h]})}function Uh(n,l){this._pairs=[],n&&Ja(n,this,l)}const wp=Uh.prototype;wp.append=function(l,r){this._pairs.push([l,r])};wp.toString=function(l){const r=l?function(h){return l.call(this,h,G1)}:G1;return this._pairs.map(function(c){return r(c[0])+"="+r(c[1])},"").join("&")};function Wm(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function vp(n,l,r){if(!l)return n;const h=r&&r.encode||Wm,c=r&&r.serialize;let g;if(c?g=c(l,r):g=St.isURLSearchParams(l)?l.toString():new Uh(l,r).toString(h),g){const v=n.indexOf("#");v!==-1&&(n=n.slice(0,v)),n+=(n.indexOf("?")===-1?"?":"&")+g}return n}class Xm{constructor(){this.handlers=[]}use(l,r,h){return this.handlers.push({fulfilled:l,rejected:r,synchronous:h?h.synchronous:!1,runWhen:h?h.runWhen:null}),this.handlers.length-1}eject(l){this.handlers[l]&&(this.handlers[l]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(l){St.forEach(this.handlers,function(h){h!==null&&l(h)})}}const Z1=Xm,fp={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},qm=typeof URLSearchParams<"u"?URLSearchParams:Uh,Ym=typeof FormData<"u"?FormData:null,Um=typeof Blob<"u"?Blob:null,Gm={isBrowser:!0,classes:{URLSearchParams:qm,FormData:Ym,Blob:Um},protocols:["http","https","file","blob","url","data"]},mp=typeof window<"u"&&typeof document<"u",Zm=(n=>mp&&["ReactNative","NativeScript","NS"].indexOf(n)<0)(typeof navigator<"u"&&navigator.product),Km=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Qm=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:mp,hasStandardBrowserEnv:Zm,hasStandardBrowserWebWorkerEnv:Km},Symbol.toStringTag,{value:"Module"})),nl={...Qm,...Gm};function Jm(n,l){return Ja(n,new nl.classes.URLSearchParams,Object.assign({visitor:function(r,h,c,g){return nl.isNode&&St.isBuffer(r)?(this.append(h,r.toString("base64")),!1):g.defaultVisitor.apply(this,arguments)}},l))}function tk(n){return St.matchAll(/\w+|\[(\w*)]/g,n).map(l=>l[0]==="[]"?"":l[1]||l[0])}function ek(n){const l={},r=Object.keys(n);let h;const c=r.length;let g;for(h=0;h=r.length;return v=!v&&St.isArray(c)?c.length:v,x?(St.hasOwnProp(c,v)?c[v]=[c[v],h]:c[v]=h,!k):((!c[v]||!St.isObject(c[v]))&&(c[v]=[]),l(r,h,c[v],g)&&St.isArray(c[v])&&(c[v]=ek(c[v])),!k)}if(St.isFormData(n)&&St.isFunction(n.entries)){const r={};return St.forEachEntry(n,(h,c)=>{l(tk(h),c,r,0)}),r}return null}function nk(n,l,r){if(St.isString(n))try{return(l||JSON.parse)(n),St.trim(n)}catch(h){if(h.name!=="SyntaxError")throw h}return(r||JSON.stringify)(n)}const Gh={transitional:fp,adapter:["xhr","http"],transformRequest:[function(l,r){const h=r.getContentType()||"",c=h.indexOf("application/json")>-1,g=St.isObject(l);if(g&&St.isHTMLForm(l)&&(l=new FormData(l)),St.isFormData(l))return c&&c?JSON.stringify(kp(l)):l;if(St.isArrayBuffer(l)||St.isBuffer(l)||St.isStream(l)||St.isFile(l)||St.isBlob(l))return l;if(St.isArrayBufferView(l))return l.buffer;if(St.isURLSearchParams(l))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),l.toString();let k;if(g){if(h.indexOf("application/x-www-form-urlencoded")>-1)return Jm(l,this.formSerializer).toString();if((k=St.isFileList(l))||h.indexOf("multipart/form-data")>-1){const x=this.env&&this.env.FormData;return Ja(k?{"files[]":l}:l,x&&new x,this.formSerializer)}}return g||c?(r.setContentType("application/json",!1),nk(l)):l}],transformResponse:[function(l){const r=this.transitional||Gh.transitional,h=r&&r.forcedJSONParsing,c=this.responseType==="json";if(l&&St.isString(l)&&(h&&!this.responseType||c)){const v=!(r&&r.silentJSONParsing)&&c;try{return JSON.parse(l)}catch(k){if(v)throw k.name==="SyntaxError"?pe.from(k,pe.ERR_BAD_RESPONSE,this,null,this.response):k}}return l}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:nl.classes.FormData,Blob:nl.classes.Blob},validateStatus:function(l){return l>=200&&l<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};St.forEach(["delete","get","head","post","put","patch"],n=>{Gh.headers[n]={}});const Zh=Gh,lk=St.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),rk=n=>{const l={};let r,h,c;return n&&n.split(` +`).forEach(function(v){c=v.indexOf(":"),r=v.substring(0,c).trim().toLowerCase(),h=v.substring(c+1).trim(),!(!r||l[r]&&lk[r])&&(r==="set-cookie"?l[r]?l[r].push(h):l[r]=[h]:l[r]=l[r]?l[r]+", "+h:h)}),l},K1=Symbol("internals");function Ao(n){return n&&String(n).trim().toLowerCase()}function oa(n){return n===!1||n==null?n:St.isArray(n)?n.map(oa):String(n)}function ok(n){const l=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let h;for(;h=r.exec(n);)l[h[1]]=h[2];return l}const sk=n=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(n.trim());function Ri(n,l,r,h,c){if(St.isFunction(h))return h.call(this,l,r);if(c&&(l=r),!!St.isString(l)){if(St.isString(h))return l.indexOf(h)!==-1;if(St.isRegExp(h))return h.test(l)}}function ak(n){return n.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(l,r,h)=>r.toUpperCase()+h)}function ik(n,l){const r=St.toCamelCase(" "+l);["get","set","has"].forEach(h=>{Object.defineProperty(n,h+r,{value:function(c,g,v){return this[h].call(this,l,c,g,v)},configurable:!0})})}class ti{constructor(l){l&&this.set(l)}set(l,r,h){const c=this;function g(k,x,I){const S=Ao(x);if(!S)throw new Error("header name must be a non-empty string");const $=St.findKey(c,S);(!$||c[$]===void 0||I===!0||I===void 0&&c[$]!==!1)&&(c[$||x]=oa(k))}const v=(k,x)=>St.forEach(k,(I,S)=>g(I,S,x));return St.isPlainObject(l)||l instanceof this.constructor?v(l,r):St.isString(l)&&(l=l.trim())&&!sk(l)?v(rk(l),r):l!=null&&g(r,l,h),this}get(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);if(h){const c=this[h];if(!r)return c;if(r===!0)return ok(c);if(St.isFunction(r))return r.call(this,c,h);if(St.isRegExp(r))return r.exec(c);throw new TypeError("parser must be boolean|regexp|function")}}}has(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);return!!(h&&this[h]!==void 0&&(!r||Ri(this,this[h],h,r)))}return!1}delete(l,r){const h=this;let c=!1;function g(v){if(v=Ao(v),v){const k=St.findKey(h,v);k&&(!r||Ri(h,h[k],k,r))&&(delete h[k],c=!0)}}return St.isArray(l)?l.forEach(g):g(l),c}clear(l){const r=Object.keys(this);let h=r.length,c=!1;for(;h--;){const g=r[h];(!l||Ri(this,this[g],g,l,!0))&&(delete this[g],c=!0)}return c}normalize(l){const r=this,h={};return St.forEach(this,(c,g)=>{const v=St.findKey(h,g);if(v){r[v]=oa(c),delete r[g];return}const k=l?ak(g):String(g).trim();k!==g&&delete r[g],r[k]=oa(c),h[k]=!0}),this}concat(...l){return this.constructor.concat(this,...l)}toJSON(l){const r=Object.create(null);return St.forEach(this,(h,c)=>{h!=null&&h!==!1&&(r[c]=l&&St.isArray(h)?h.join(", "):h)}),r}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([l,r])=>l+": "+r).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(l){return l instanceof this?l:new this(l)}static concat(l,...r){const h=new this(l);return r.forEach(c=>h.set(c)),h}static accessor(l){const h=(this[K1]=this[K1]={accessors:{}}).accessors,c=this.prototype;function g(v){const k=Ao(v);h[k]||(ik(c,v),h[k]=!0)}return St.isArray(l)?l.forEach(g):g(l),this}}ti.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);St.reduceDescriptors(ti.prototype,({value:n},l)=>{let r=l[0].toUpperCase()+l.slice(1);return{get:()=>n,set(h){this[r]=h}}});St.freezeMethods(ti);const ml=ti;function Ti(n,l){const r=this||Zh,h=l||r,c=ml.from(h.headers);let g=h.data;return St.forEach(n,function(k){g=k.call(r,g,c.normalize(),l?l.status:void 0)}),c.normalize(),g}function bp(n){return!!(n&&n.__CANCEL__)}function Cs(n,l,r){pe.call(this,n??"canceled",pe.ERR_CANCELED,l,r),this.name="CanceledError"}St.inherits(Cs,pe,{__CANCEL__:!0});function hk(n,l,r){const h=r.config.validateStatus;!r.status||!h||h(r.status)?n(r):l(new pe("Request failed with status code "+r.status,[pe.ERR_BAD_REQUEST,pe.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r))}const dk=nl.hasStandardBrowserEnv?{write(n,l,r,h,c,g){const v=[n+"="+encodeURIComponent(l)];St.isNumber(r)&&v.push("expires="+new Date(r).toGMTString()),St.isString(h)&&v.push("path="+h),St.isString(c)&&v.push("domain="+c),g===!0&&v.push("secure"),document.cookie=v.join("; ")},read(n){const l=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return l?decodeURIComponent(l[3]):null},remove(n){this.write(n,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function ck(n){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(n)}function uk(n,l){return l?n.replace(/\/+$/,"")+"/"+l.replace(/^\/+/,""):n}function Mp(n,l){return n&&!ck(l)?uk(n,l):l}const pk=nl.hasStandardBrowserEnv?function(){const l=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");let h;function c(g){let v=g;return l&&(r.setAttribute("href",v),v=r.href),r.setAttribute("href",v),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:r.pathname.charAt(0)==="/"?r.pathname:"/"+r.pathname}}return h=c(window.location.href),function(v){const k=St.isString(v)?c(v):v;return k.protocol===h.protocol&&k.host===h.host}}():function(){return function(){return!0}}();function gk(n){const l=/^([-+\w]{1,25})(:?\/\/|:)/.exec(n);return l&&l[1]||""}function wk(n,l){n=n||10;const r=new Array(n),h=new Array(n);let c=0,g=0,v;return l=l!==void 0?l:1e3,function(x){const I=Date.now(),S=h[g];v||(v=I),r[c]=x,h[c]=I;let $=g,B=0;for(;$!==c;)B+=r[$++],$=$%n;if(c=(c+1)%n,c===g&&(g=(g+1)%n),I-v{const g=c.loaded,v=c.lengthComputable?c.total:void 0,k=g-r,x=h(k),I=g<=v;r=g;const S={loaded:g,total:v,progress:v?g/v:void 0,bytes:k,rate:x||void 0,estimated:x&&v&&I?(v-g)/x:void 0,event:c};S[l?"download":"upload"]=!0,n(S)}}const vk=typeof XMLHttpRequest<"u",fk=vk&&function(n){return new Promise(function(r,h){let c=n.data;const g=ml.from(n.headers).normalize();let{responseType:v,withXSRFToken:k}=n,x;function I(){n.cancelToken&&n.cancelToken.unsubscribe(x),n.signal&&n.signal.removeEventListener("abort",x)}let S;if(St.isFormData(c)){if(nl.hasStandardBrowserEnv||nl.hasStandardBrowserWebWorkerEnv)g.setContentType(!1);else if((S=g.getContentType())!==!1){const[F,...X]=S?S.split(";").map(R=>R.trim()).filter(Boolean):[];g.setContentType([F||"multipart/form-data",...X].join("; "))}}let $=new XMLHttpRequest;if(n.auth){const F=n.auth.username||"",X=n.auth.password?unescape(encodeURIComponent(n.auth.password)):"";g.set("Authorization","Basic "+btoa(F+":"+X))}const B=Mp(n.baseURL,n.url);$.open(n.method.toUpperCase(),vp(B,n.params,n.paramsSerializer),!0),$.timeout=n.timeout;function P(){if(!$)return;const F=ml.from("getAllResponseHeaders"in $&&$.getAllResponseHeaders()),R={data:!v||v==="text"||v==="json"?$.responseText:$.response,status:$.status,statusText:$.statusText,headers:F,config:n,request:$};hk(function(U){r(U),I()},function(U){h(U),I()},R),$=null}if("onloadend"in $?$.onloadend=P:$.onreadystatechange=function(){!$||$.readyState!==4||$.status===0&&!($.responseURL&&$.responseURL.indexOf("file:")===0)||setTimeout(P)},$.onabort=function(){$&&(h(new pe("Request aborted",pe.ECONNABORTED,n,$)),$=null)},$.onerror=function(){h(new pe("Network Error",pe.ERR_NETWORK,n,$)),$=null},$.ontimeout=function(){let X=n.timeout?"timeout of "+n.timeout+"ms exceeded":"timeout exceeded";const R=n.transitional||fp;n.timeoutErrorMessage&&(X=n.timeoutErrorMessage),h(new pe(X,R.clarifyTimeoutError?pe.ETIMEDOUT:pe.ECONNABORTED,n,$)),$=null},nl.hasStandardBrowserEnv&&(k&&St.isFunction(k)&&(k=k(n)),k||k!==!1&&pk(B))){const F=n.xsrfHeaderName&&n.xsrfCookieName&&dk.read(n.xsrfCookieName);F&&g.set(n.xsrfHeaderName,F)}c===void 0&&g.setContentType(null),"setRequestHeader"in $&&St.forEach(g.toJSON(),function(X,R){$.setRequestHeader(R,X)}),St.isUndefined(n.withCredentials)||($.withCredentials=!!n.withCredentials),v&&v!=="json"&&($.responseType=n.responseType),typeof n.onDownloadProgress=="function"&&$.addEventListener("progress",Q1(n.onDownloadProgress,!0)),typeof n.onUploadProgress=="function"&&$.upload&&$.upload.addEventListener("progress",Q1(n.onUploadProgress)),(n.cancelToken||n.signal)&&(x=F=>{$&&(h(!F||F.type?new Cs(null,n,$):F),$.abort(),$=null)},n.cancelToken&&n.cancelToken.subscribe(x),n.signal&&(n.signal.aborted?x():n.signal.addEventListener("abort",x)));const D=gk(B);if(D&&nl.protocols.indexOf(D)===-1){h(new pe("Unsupported protocol "+D+":",pe.ERR_BAD_REQUEST,n));return}$.send(c||null)})},S0={http:Em,xhr:fk};St.forEach(S0,(n,l)=>{if(n){try{Object.defineProperty(n,"name",{value:l})}catch{}Object.defineProperty(n,"adapterName",{value:l})}});const J1=n=>`- ${n}`,mk=n=>St.isFunction(n)||n===null||n===!1,xp={getAdapter:n=>{n=St.isArray(n)?n:[n];const{length:l}=n;let r,h;const c={};for(let g=0;g`adapter ${k} `+(x===!1?"is not supported by the environment":"is not available in the build"));let v=l?g.length>1?`since : +`+g.map(J1).join(` +`):" "+J1(g[0]):"as no adapter specified";throw new pe("There is no suitable adapter to dispatch the request "+v,"ERR_NOT_SUPPORT")}return h},adapters:S0};function Ei(n){if(n.cancelToken&&n.cancelToken.throwIfRequested(),n.signal&&n.signal.aborted)throw new Cs(null,n)}function td(n){return Ei(n),n.headers=ml.from(n.headers),n.data=Ti.call(n,n.transformRequest),["post","put","patch"].indexOf(n.method)!==-1&&n.headers.setContentType("application/x-www-form-urlencoded",!1),xp.getAdapter(n.adapter||Zh.adapter)(n).then(function(h){return Ei(n),h.data=Ti.call(n,n.transformResponse,h),h.headers=ml.from(h.headers),h},function(h){return bp(h)||(Ei(n),h&&h.response&&(h.response.data=Ti.call(n,n.transformResponse,h.response),h.response.headers=ml.from(h.response.headers))),Promise.reject(h)})}const ed=n=>n instanceof ml?n.toJSON():n;function lo(n,l){l=l||{};const r={};function h(I,S,$){return St.isPlainObject(I)&&St.isPlainObject(S)?St.merge.call({caseless:$},I,S):St.isPlainObject(S)?St.merge({},S):St.isArray(S)?S.slice():S}function c(I,S,$){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I,$)}else return h(I,S,$)}function g(I,S){if(!St.isUndefined(S))return h(void 0,S)}function v(I,S){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I)}else return h(void 0,S)}function k(I,S,$){if($ in l)return h(I,S);if($ in n)return h(void 0,I)}const x={url:g,method:g,data:g,baseURL:v,transformRequest:v,transformResponse:v,paramsSerializer:v,timeout:v,timeoutMessage:v,withCredentials:v,withXSRFToken:v,adapter:v,responseType:v,xsrfCookieName:v,xsrfHeaderName:v,onUploadProgress:v,onDownloadProgress:v,decompress:v,maxContentLength:v,maxBodyLength:v,beforeRedirect:v,transport:v,httpAgent:v,httpsAgent:v,cancelToken:v,socketPath:v,responseEncoding:v,validateStatus:k,headers:(I,S)=>c(ed(I),ed(S),!0)};return St.forEach(Object.keys(Object.assign({},n,l)),function(S){const $=x[S]||c,B=$(n[S],l[S],S);St.isUndefined(B)&&$!==k||(r[S]=B)}),r}const zp="1.6.2",Kh={};["object","boolean","number","function","string","symbol"].forEach((n,l)=>{Kh[n]=function(h){return typeof h===n||"a"+(l<1?"n ":" ")+n}});const nd={};Kh.transitional=function(l,r,h){function c(g,v){return"[Axios v"+zp+"] Transitional option '"+g+"'"+v+(h?". "+h:"")}return(g,v,k)=>{if(l===!1)throw new pe(c(v," has been removed"+(r?" in "+r:"")),pe.ERR_DEPRECATED);return r&&!nd[v]&&(nd[v]=!0,console.warn(c(v," has been deprecated since v"+r+" and will be removed in the near future"))),l?l(g,v,k):!0}};function kk(n,l,r){if(typeof n!="object")throw new pe("options must be an object",pe.ERR_BAD_OPTION_VALUE);const h=Object.keys(n);let c=h.length;for(;c-- >0;){const g=h[c],v=l[g];if(v){const k=n[g],x=k===void 0||v(k,g,n);if(x!==!0)throw new pe("option "+g+" must be "+x,pe.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new pe("Unknown option "+g,pe.ERR_BAD_OPTION)}}const $0={assertOptions:kk,validators:Kh},Ll=$0.validators;class va{constructor(l){this.defaults=l,this.interceptors={request:new Z1,response:new Z1}}request(l,r){typeof l=="string"?(r=r||{},r.url=l):r=l||{},r=lo(this.defaults,r);const{transitional:h,paramsSerializer:c,headers:g}=r;h!==void 0&&$0.assertOptions(h,{silentJSONParsing:Ll.transitional(Ll.boolean),forcedJSONParsing:Ll.transitional(Ll.boolean),clarifyTimeoutError:Ll.transitional(Ll.boolean)},!1),c!=null&&(St.isFunction(c)?r.paramsSerializer={serialize:c}:$0.assertOptions(c,{encode:Ll.function,serialize:Ll.function},!0)),r.method=(r.method||this.defaults.method||"get").toLowerCase();let v=g&&St.merge(g.common,g[r.method]);g&&St.forEach(["delete","get","head","post","put","patch","common"],D=>{delete g[D]}),r.headers=ml.concat(v,g);const k=[];let x=!0;this.interceptors.request.forEach(function(F){typeof F.runWhen=="function"&&F.runWhen(r)===!1||(x=x&&F.synchronous,k.unshift(F.fulfilled,F.rejected))});const I=[];this.interceptors.response.forEach(function(F){I.push(F.fulfilled,F.rejected)});let S,$=0,B;if(!x){const D=[td.bind(this),void 0];for(D.unshift.apply(D,k),D.push.apply(D,I),B=D.length,S=Promise.resolve(r);${if(!h._listeners)return;let g=h._listeners.length;for(;g-- >0;)h._listeners[g](c);h._listeners=null}),this.promise.then=c=>{let g;const v=new Promise(k=>{h.subscribe(k),g=k}).then(c);return v.cancel=function(){h.unsubscribe(g)},v},l(function(g,v,k){h.reason||(h.reason=new Cs(g,v,k),r(h.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(l){if(this.reason){l(this.reason);return}this._listeners?this._listeners.push(l):this._listeners=[l]}unsubscribe(l){if(!this._listeners)return;const r=this._listeners.indexOf(l);r!==-1&&this._listeners.splice(r,1)}static source(){let l;return{token:new Qh(function(c){l=c}),cancel:l}}}const bk=Qh;function Mk(n){return function(r){return n.apply(null,r)}}function xk(n){return St.isObject(n)&&n.isAxiosError===!0}const A0={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(A0).forEach(([n,l])=>{A0[l]=n});const zk=A0;function Ip(n){const l=new sa(n),r=rp(sa.prototype.request,l);return St.extend(r,sa.prototype,l,{allOwnKeys:!0}),St.extend(r,l,null,{allOwnKeys:!0}),r.create=function(c){return Ip(lo(n,c))},r}const Re=Ip(Zh);Re.Axios=sa;Re.CanceledError=Cs;Re.CancelToken=bk;Re.isCancel=bp;Re.VERSION=zp;Re.toFormData=Ja;Re.AxiosError=pe;Re.Cancel=Re.CanceledError;Re.all=function(l){return Promise.all(l)};Re.spread=Mk;Re.isAxiosError=xk;Re.mergeConfig=lo;Re.AxiosHeaders=ml;Re.formToJSON=n=>kp(St.isHTMLForm(n)?new FormData(n):n);Re.getAdapter=xp.getAdapter;Re.HttpStatusCode=zk;Re.default=Re;const Ik=Re,yk=Jf({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){Ik.post("/api/authenticate",{username:n,password:l}).then(r=>{console.log("auth",r),this.user=r.data.data,localStorage.setItem("user",JSON.stringify(this.user)),fa.push(this.returnUrl||"/dashboard/default")})},logout(){this.user=null,localStorage.removeItem("user"),fa.push("/auth/login")}}}),fa=tm({history:f5("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>en(()=>import("./Error404Page-81062baf.js"),["assets/Error404Page-81062baf.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},om,sm]});fa.beforeEach(async(n,l,r)=>{const c=!["/auth/login"].includes(n.path),g=yk();if(n.matched.some(v=>v.meta.requiresAuth)){if(c&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const ze=typeof window<"u",Jh=ze&&"IntersectionObserver"in window,Ck=ze&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function ld(n,l,r){Sk(n,l),l.set(n,r)}function Sk(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function $k(n,l,r){var h=yp(n,l,"set");return Ak(n,h,r),r}function Ak(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function sr(n,l){var r=yp(n,l,"get");return Bk(n,r)}function yp(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function Bk(n,l){return l.get?l.get.call(n):l.value}function Cp(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let c=0;cSr(n[h],l[h]))}function B0(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),Cp(n,l.split("."),r))}function ln(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const c=l(n,r);return typeof c>"u"?r:c}if(typeof l=="string")return B0(n,l,r);if(Array.isArray(l))return Cp(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function gl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function qt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function H0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function N0(n){return n&&"$el"in n?n.$el:n}const rd=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),j0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function Sp(n){return Object.keys(n)}function cr(n,l){return l.every(r=>n.hasOwnProperty(r))}function Mr(n,l,r){const h=Object.create(null),c=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:c[g]=n[g];return[h,c]}function On(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const $p=/^on[^a-z]/,t2=n=>$p.test(n),Hk=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function $r(n){const[l,r]=Mr(n,[$p]),h=On(l,Hk),[c,g]=Mr(r,["class","style","id",/^data-/]);return Object.assign(c,l),Object.assign(g,h),[c,g]}function Pn(n){return n==null?[]:Array.isArray(n)?n:[n]}function rn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function od(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function sd(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function Nk(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const c in n)h[c]=n[c];for(const c in l){const g=n[c],v=l[c];if(H0(g)&&H0(v)){h[c]=Nn(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[c]=r(g,v);continue}h[c]=v}return h}function Ap(n){return n.map(l=>l.type===Kt?Ap(l.children):l).flat()}function vr(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(vr.cache.has(n))return vr.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return vr.cache.set(n,l),l}vr.cache=new Map;function qo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>qo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>qo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return qo(n,l.component.subTree).flat(1)}return[]}var Us=new WeakMap,Fr=new WeakMap;class jk{constructor(l){ld(this,Us,{writable:!0,value:[]}),ld(this,Fr,{writable:!0,value:0}),this.size=l}push(l){sr(this,Us)[sr(this,Fr)]=l,$k(this,Fr,(sr(this,Fr)+1)%this.size)}values(){return sr(this,Us).slice(sr(this,Fr)).concat(sr(this,Us).slice(0,sr(this,Fr)))}}function Pk(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function e2(n){const l=Ze({}),r=q(n);return bn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),vs(l)}function ma(n,l){return n.includes(l)}function Bp(n){return n[2].toLowerCase()+n.slice(3)}const ol=()=>[Function,Array];function id(n,l){return l="on"+Il(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function n2(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function Hp(n,l,r){let h,c=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do c+=g,h=n[c];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&c=0);return h}function ka(n,l){var h,c,g,v;const r=ss(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(c=r[0])==null||c.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const k=Hp(r,l);k?k.focus():ka(n,l==="next"?"first":"last")}}function Np(){}function ro(n,l){if(!(ze&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const jp=["top","bottom"],Lk=["start","end","left","right"];function P0(n,l){let[r,h]=n.split(" ");return h||(h=ma(jp,r)?"start":ma(Lk,r)?"top":"center"),{side:L0(r,l),align:L0(h,l)}}function L0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function Vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function _i(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function hd(n){return{side:n.align,align:n.side}}function dd(n){return ma(jp,n.side)?"y":"x"}class Kr{constructor(l){let{x:r,y:h,width:c,height:g}=l;this.x=r,this.y=h,this.width=c,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function cd(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function l2(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let c,g,v,k,x;if(h.startsWith("matrix3d("))c=h.slice(9,-1).split(/, /),g=+c[0],v=+c[5],k=+c[12],x=+c[13];else if(h.startsWith("matrix("))c=h.slice(7,-1).split(/, /),g=+c[0],v=+c[3],k=+c[4],x=+c[5];else return new Kr(l);const I=r.transformOrigin,S=l.x-k-(1-g)*parseFloat(I),$=l.y-x-(1-v)*parseFloat(I.slice(I.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new Kr({x:S,y:$,width:B,height:P})}else return new Kr(l)}function ur(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(c=>{h.onfinish=()=>{c(h)}})),h}const aa=new WeakMap;function Dk(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);if(l[r]==null)c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))});else if(!c||![...c].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=c||new Set;g.add([h,l[r]]),aa.has(n)||aa.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function Ok(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))})}else n.removeAttribute(r)})}const Rr=2.4,ud=.2126729,pd=.7151522,gd=.072175,Fk=.55,Rk=.58,Tk=.57,Ek=.62,Gs=.03,wd=1.45,Vk=5e-4,_k=1.25,Wk=1.25,vd=.078,fd=12.82051282051282,Zs=.06,md=.001;function kd(n,l){const r=(n.r/255)**Rr,h=(n.g/255)**Rr,c=(n.b/255)**Rr,g=(l.r/255)**Rr,v=(l.g/255)**Rr,k=(l.b/255)**Rr;let x=r*ud+h*pd+c*gd,I=g*ud+v*pd+k*gd;if(x<=Gs&&(x+=(Gs-x)**wd),I<=Gs&&(I+=(Gs-I)**wd),Math.abs(I-x)x){const $=(I**Fk-x**Rk)*_k;S=$-md?0:$>-vd?$-$*fd*Zs:$+Zs}return S*100}function Xk(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const ba=.20689655172413793,qk=n=>n>ba**3?Math.cbrt(n):n/(3*ba**2)+4/29,Yk=n=>n>ba?n**3:3*ba**2*(n-4/29);function Pp(n){const l=qk,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Lp(n){const l=Yk,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const Uk=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],Gk=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,Zk=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],Kk=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function Dp(n){const l=Array(3),r=Gk,h=Uk;for(let c=0;c<3;++c)l[c]=Math.round(rn(r(h[c][0]*n[0]+h[c][1]*n[1]+h[c][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function r2(n){let{r:l,g:r,b:h}=n;const c=[0,0,0],g=Kk,v=Zk;l=g(l/255),r=g(r/255),h=g(h/255);for(let k=0;k<3;++k)c[k]=v[k][0]*l+v[k][1]*r+v[k][2]*h;return c}function bd(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const Md=/^(?(?:rgb|hsl)a?)\((?.+)\)/,Qk={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h})};function Yn(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&Md.test(n)){const{groups:l}=n.match(Md),{fn:r,values:h}=l,c=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return Qk[r](...c)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Ep(l)}else if(typeof n=="object"){if(cr(n,["r","g","b"]))return n;if(cr(n,["h","s","l"]))return bl(o2(n));if(cr(n,["h","s","v"]))return bl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} +Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function bl(n){const{h:l,s:r,v:h,a:c}=n,g=k=>{const x=(k+l/60)%6;return h-h*r*Math.max(Math.min(x,4-x,1),0)},v=[g(5),g(3),g(1)].map(k=>Math.round(k*255));return{r:v[0],g:v[1],b:v[2],a:c}}function xd(n){return bl(o2(n))}function ei(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,c=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;c!==g&&(c===l?v=60*(0+(r-h)/(c-g)):c===r?v=60*(2+(h-l)/(c-g)):c===h&&(v=60*(4+(l-r)/(c-g)))),v<0&&(v=v+360);const k=c===0?0:(c-g)/c,x=[v,k,c];return{h:x[0],s:x[1],v:x[2],a:n.a}}function Op(n){const{h:l,s:r,v:h,a:c}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:c}}function o2(n){const{h:l,s:r,l:h,a:c}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:c}}function Fp(n){let{r:l,g:r,b:h,a:c}=n;return c===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${c})`}function Rp(n){return Fp(bl(n))}function Ks(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Tp(n){let{r:l,g:r,b:h,a:c}=n;return`#${[Ks(l),Ks(r),Ks(h),c!==void 0?Ks(Math.round(c*255)):""].join("")}`}function Ep(n){n=t6(n);let[l,r,h,c]=Nk(n,2).map(g=>parseInt(g,16));return c=c===void 0?c:c/255,{r:l,g:r,b:h,a:c}}function Jk(n){const l=Ep(n);return ei(l)}function Vp(n){return Tp(bl(n))}function t6(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=sd(sd(n,6),8,"F")),n}function e6(n,l){const r=Pp(r2(n));return r[0]=r[0]+l*10,Dp(Lp(r))}function n6(n,l){const r=Pp(r2(n));return r[0]=r[0]-l*10,Dp(Lp(r))}function D0(n){const l=Yn(n);return r2(l)[1]}function l6(n,l){const r=D0(n),h=D0(l),c=Math.max(r,h),g=Math.min(r,h);return(c+.05)/(g+.05)}function _p(n){const l=Math.abs(kd(Yn(0),Yn(n)));return Math.abs(kd(Yn(16777215),Yn(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,c)=>{const v=typeof n[c]=="object"&&n[c]!=null&&!Array.isArray(n[c])?n[c]:{type:n[c]};return r&&c in r?h[c]={...v,default:r[c]}:h[c]=v,l&&!h[c].source&&(h[c].source=l),h},{})}const Xt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Fn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return Mr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,c){const g=i2();if(!g.value)return n._setup(h,c);const{props:v,provideSubDefaults:k}=c6(h,h._as??n.name,g),x=n._setup(v,c);return k(),x}}return n}function Bt(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Fn:Cr)(l)}function Qn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return Bt()({name:r??Il(Sn(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Xt()},setup(h,c){let{slots:g}=c;return()=>{var v;return Ln(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Wp(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const as="cubic-bezier(0.4, 0, 0.2, 1)",r6="cubic-bezier(0.0, 0, 0.2, 1)",o6="cubic-bezier(0.4, 0, 1, 1)";function Ye(n,l){const r=al();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function Cl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=Ye(n).type;return vr((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Xp=0,ia=new WeakMap;function hn(){const n=Ye("getUid");if(ia.has(n))return ia.get(n);{const l=Xp++;return ia.set(n,l),l}}hn.reset=()=>{Xp=0,ia=new WeakMap};function s2(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?s6(n):a2(n))return n;n=n.parentElement}return document.scrollingElement}function Ma(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(a2(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function a2(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function s6(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function a6(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Ye("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function i6(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Dt(n){const l=Ye("useRender");l.render=n}const oo=Symbol.for("vuetify:defaults");function h6(n){return Lt(n)}function i2(){const n=de(oo);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Te(n,l){const r=i2(),h=Lt(n),c=q(()=>{if(je(l==null?void 0:l.disabled))return r.value;const v=je(l==null?void 0:l.scoped),k=je(l==null?void 0:l.reset),x=je(l==null?void 0:l.root);if(h.value==null&&!(v||k||x))return r.value;let I=Nn(h.value,{prev:r.value});if(v)return I;if(k||x){const S=Number(k||1/0);for(let $=0;$<=S&&!(!I||!("prev"in I));$++)I=I.prev;return I&&typeof x=="string"&&x in I&&(I=Nn(Nn(I,{prev:I}),I[x])),I}return I.prev?Nn(I.prev,I):I});return Se(oo,c),c}function d6(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[vr(l)])<"u"}function c6(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:i2();const h=Ye("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const c=q(()=>{var x;return(x=r.value)==null?void 0:x[n._as??l]}),g=new Proxy(n,{get(x,I){var $,B,P,D;const S=Reflect.get(x,I);return I==="class"||I==="style"?[($=c.value)==null?void 0:$[I],S].filter(F=>F!=null):typeof I=="string"&&!d6(h.vnode,I)?((B=c.value)==null?void 0:B[I])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[I])??S:S}}),v=Wt();bn(()=>{if(c.value){const x=Object.entries(c.value).filter(I=>{let[S]=I;return S.startsWith(S[0].toUpperCase())});v.value=x.length?Object.fromEntries(x):void 0}else v.value=void 0});function k(){const x=a6(oo,h);Se(oo,q(()=>v.value?Nn((x==null?void 0:x.value)??{},v.value):x==null?void 0:x.value))}return{props:g,provideSubDefaults:k}}const ni=["sm","md","lg","xl","xxl"],O0=Symbol.for("vuetify:display"),zd={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},u6=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:zd;return Nn(zd,n)};function Id(n){return ze&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function yd(n){return ze&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function Cd(n){const l=ze&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),c=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),k=r(/chrome/i),x=r(/edge/i),I=r(/firefox/i),S=r(/opera/i),$=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:c,cordova:g,electron:v,chrome:k,edge:x,firefox:I,opera:S,win:$,mac:B,linux:P,touch:Ck,ssr:l==="ssr"}}function p6(n,l){const{thresholds:r,mobileBreakpoint:h}=u6(n),c=Wt(yd(l)),g=Wt(Cd(l)),v=Ze({}),k=Wt(Id(l));function x(){c.value=yd(),k.value=Id()}function I(){x(),g.value=Cd()}return bn(()=>{const S=k.value=r.xxl,X=S?"xs":$?"sm":B?"md":P?"lg":D?"xl":"xxl",R=typeof h=="number"?h:r[h],H=k.valueLn(d2,{...n,class:"mdi"})},ee=[String,Function,Object,Array],F0=Symbol.for("vuetify:icons"),li=mt({icon:{type:ee},tag:{type:String,required:!0}},"icon"),R0=Bt()({name:"VComponentIcon",props:li(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var c;return[n.icon?t(h,null,null):(c=r.default)==null?void 0:c.call(r)]}})}}}),h2=Fn({name:"VSvgIcon",inheritAttrs:!1,props:li(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),v6=Fn({name:"VLigatureIcon",props:li(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),d2=Fn({name:"VClassIcon",props:li(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),f6={svg:{component:h2},class:{component:d2}};function m6(n){return Nn({defaultSet:"mdi",sets:{...f6,mdi:w6},aliases:{...g6,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const k6=n=>{const l=de(F0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:q(()=>{var x;const h=je(n);if(!h)return{component:R0};let c=h;if(typeof c=="string"&&(c=c.trim(),c.startsWith("$")&&(c=(x=l.aliases)==null?void 0:x[c.slice(1)])),!c)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(c))return{component:h2,icon:c};if(typeof c!="string")return{component:R0,icon:c};const g=Object.keys(l.sets).find(I=>typeof c=="string"&&c.startsWith(`${I}:`)),v=g?c.slice(g.length+1):c;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},b6={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},M6={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Zl(n,l){let r;function h(){r=io(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}_t(n,c=>{c&&!r?h():c||(r==null||r.stop(),r=void 0)},{immediate:!0}),sn(()=>{r==null||r.stop()})}function ne(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:$=>$,c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:$=>$;const g=Ye("useProxiedModel"),v=Lt(n[l]!==void 0?n[l]:r),k=vr(l),I=q(k!==l?()=>{var $,B,P,D;return n[l],!!((($=g.vnode.props)!=null&&$.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(k))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${k}`)))}:()=>{var $,B;return n[l],!!(($=g.vnode.props)!=null&&$.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Zl(()=>!I.value,()=>{_t(()=>n[l],$=>{v.value=$})});const S=q({get(){const $=n[l];return h(I.value?$:v.value)},set($){const B=c($),P=le(I.value?n[l]:v.value);P===B||h(P)===$||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>I.value?n[l]:v.value}),S}const Sd="$vuetify.",$d=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),qp=(n,l,r)=>function(h){for(var c=arguments.length,g=new Array(c>1?c-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function Wi(n,l,r){const h=ne(n,l,n[l]??r.value);return h.value=n[l]??r.value,_t(r,c=>{n[l]==null&&(h.value=r.value)}),h}function Up(n){return l=>{const r=Wi(l,"locale",n.current),h=Wi(l,"fallback",n.fallback),c=Wi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:c,t:qp(r,h,c),n:Yp(r,h),provide:Up({current:r,fallback:h,messages:c})}}}function x6(n){const l=Wt((n==null?void 0:n.locale)??"en"),r=Wt((n==null?void 0:n.fallback)??"en"),h=Lt({en:b6,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:qp(l,r,h),n:Yp(l,r),provide:Up({current:l,fallback:r,messages:h})}}const so=Symbol.for("vuetify:locale");function z6(n){return n.name!=null}function I6(n){const l=n!=null&&n.adapter&&z6(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:x6(n),r=C6(l,n);return{...l,...r}}function Rn(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function y6(n){const l=de(so);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=S6(r,l.rtl,n),c={...r,...h};return Se(so,c),c}function C6(n,l){const r=Lt((l==null?void 0:l.rtl)??M6),h=q(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function S6(n,l,r){const h=q(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Ue(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const is=Symbol.for("vuetify:theme"),ue=mt({theme:String},"theme"),Bo={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function $6(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Bo;if(!n)return{...Bo,isDisabled:!0};const l={};for(const[c,g]of Object.entries(n.themes??{})){const v=g.dark||c==="dark"?(r=Bo.themes)==null?void 0:r.dark:(h=Bo.themes)==null?void 0:h.light;l[c]=Nn(v,g)}return Nn(Bo,{...n,themes:l})}function A6(n){const l=$6(n),r=Lt(l.defaultTheme),h=Lt(l.themes),c=q(()=>{const S={};for(const[$,B]of Object.entries(h.value)){const P=S[$]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const F=P.colors[D];if(F)for(const X of["lighten","darken"]){const R=X==="lighten"?e6:n6;for(const H of gl(l.variations[X],1))P.colors[`${D}-${X}-${H}`]=Tp(R(Yn(F),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const F=`on-${D}`,X=Yn(P.colors[D]);P.colors[F]=_p(X)}}return S}),g=q(()=>c.value[r.value]),v=q(()=>{const S=[];g.value.dark&&ar(S,":root",["color-scheme: dark"]),ar(S,":root",Ad(g.value));for(const[D,F]of Object.entries(c.value))ar(S,`.v-theme--${D}`,[`color-scheme: ${F.dark?"dark":"normal"}`,...Ad(F)]);const $=[],B=[],P=new Set(Object.values(c.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?ar(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(ar($,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),ar(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),ar(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...$,...B),S.map((D,F)=>F===0?D:` ${D}`).join("")});function k(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function x(S){if(l.isDisabled)return;const $=S._context.provides.usehead;if($)if($.push){const B=$.push(k);ze&&_t(v,()=>{B.patch(k)})}else ze?($.addHeadObjs(q(k)),bn(()=>$.updateDOM())):$.addHeadObjs(k());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=ze?document.getElementById("vuetify-theme-stylesheet"):null;ze?_t(v,P,{immediate:!0}):P()}}const I=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:x,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:c,themeClasses:I,styles:v,global:{name:r,current:g}}}function ve(n){Ye("provideTheme");const l=de(is,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=q(()=>n.theme??(l==null?void 0:l.name.value)),h=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`),c={...l,name:r,themeClasses:h};return Se(is,c),c}function Gp(){Ye("useTheme");const n=de(is,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function ar(n,l,r){n.push(`${l} { `,...r.map(h=>` ${h}; `),`} -`)}function D1(n){const l=n.dark?2:1,r=n.dark?1:2,h=[];for(const[u,g]of Object.entries(n.colors)){const v=_n(g);h.push(`--v-theme-${u}: ${v.r},${v.g},${v.b}`),u.startsWith("on-")||h.push(`--v-theme-${u}-overlay-multiplier: ${o0(g)>.18?l:r}`)}for(const[u,g]of Object.entries(n.variables)){const v=typeof g=="string"&&g.startsWith("#")?_n(g):void 0,b=v?`${v.r}, ${v.g}, ${v.b}`:void 0;h.push(`--v-${u}: ${b??g}`)}return h}const h0={"001":1,AD:1,AE:6,AF:6,AG:0,AI:1,AL:1,AM:1,AN:1,AR:1,AS:0,AT:1,AU:1,AX:1,AZ:1,BA:1,BD:0,BE:1,BG:1,BH:6,BM:1,BN:1,BR:0,BS:0,BT:0,BW:0,BY:1,BZ:0,CA:0,CH:1,CL:1,CM:1,CN:1,CO:0,CR:1,CY:1,CZ:1,DE:1,DJ:6,DK:1,DM:0,DO:0,DZ:6,EC:1,EE:1,EG:6,ES:1,ET:0,FI:1,FJ:1,FO:1,FR:1,GB:1,"GB-alt-variant":0,GE:1,GF:1,GP:1,GR:1,GT:0,GU:0,HK:0,HN:0,HR:1,HU:1,ID:0,IE:1,IL:0,IN:0,IQ:6,IR:6,IS:1,IT:1,JM:0,JO:6,JP:0,KE:0,KG:1,KH:0,KR:0,KW:6,KZ:1,LA:0,LB:1,LI:1,LK:1,LT:1,LU:1,LV:1,LY:6,MC:1,MD:1,ME:1,MH:0,MK:1,MM:0,MN:1,MO:0,MQ:1,MT:0,MV:5,MX:0,MY:1,MZ:0,NI:0,NL:1,NO:1,NP:0,NZ:1,OM:6,PA:0,PE:0,PH:0,PK:0,PL:1,PR:0,PT:0,PY:0,QA:6,RE:1,RO:1,RS:1,RU:1,SA:0,SD:6,SE:1,SG:0,SI:1,SK:1,SM:1,SV:0,SY:6,TH:0,TJ:1,TM:1,TR:1,TT:0,TW:0,UA:1,UM:0,US:0,UY:1,UZ:1,VA:1,VE:0,VI:0,VN:1,WS:0,XK:1,YE:0,ZA:0,ZW:0};function em(n,l){const r=[];let h=[];const u=Du(n),g=Fu(n),v=u.getDay()-h0[l.slice(-2).toUpperCase()],b=g.getDay()-h0[l.slice(-2).toUpperCase()];for(let z=0;z{const h=new Date(F1);return h.setDate(F1.getDate()+l+r),new Intl.DateTimeFormat(n,{weekday:"narrow"}).format(h)})}function sm(n,l,r){const h=new Date(n);let u={};switch(l){case"fullDateWithWeekday":u={weekday:"long",day:"numeric",month:"long",year:"numeric"};break;case"normalDateWithWeekday":u={weekday:"short",day:"numeric",month:"short"};break;case"keyboardDate":u={};break;case"monthAndDate":u={month:"long",day:"numeric"};break;case"monthAndYear":u={month:"long",year:"numeric"};break;case"dayOfMonth":u={day:"numeric"};break;default:u={timeZone:"UTC",timeZoneName:"short"}}return new Intl.DateTimeFormat(r,u).format(h)}function am(n,l){const r=new Date(n);return r.setDate(r.getDate()+l),r}function im(n,l){const r=new Date(n);return r.setMonth(r.getMonth()+l),r}function hm(n){return n.getFullYear()}function dm(n){return n.getMonth()}function cm(n){return new Date(n.getFullYear(),0,1)}function um(n){return new Date(n.getFullYear(),11,31)}function pm(n,l){return d0(n,l[0])&&wm(n,l[1])}function gm(n){const l=new Date(n);return l instanceof Date&&!isNaN(l.getTime())}function d0(n,l){return n.getTime()>l.getTime()}function wm(n,l){return n.getTime()1&&arguments[1]!==void 0?arguments[1]:"content";const r=Pt(),h=Pt();if(Me){const u=new ResizeObserver(g=>{n==null||n(g,u),g.length&&(l==="content"?h.value=g[0].contentRect:h.value=g[0].target.getBoundingClientRect())});Ue(()=>{u.disconnect()}),Vt(r,(g,v)=>{v&&(u.unobserve(e0(v)),h.value=void 0),g&&u.observe(e0(g))},{flush:"post"})}return{resizeRef:r,contentRect:no(h)}}const oa=Symbol.for("vuetify:layout"),Ou=Symbol.for("vuetify:layout-item"),R1=1e3,Tu=mt({overlaps:{type:Array,default:()=>[]},fullHeight:Boolean},"layout"),lo=mt({name:{type:String},order:{type:[Number,String],default:0},absolute:Boolean},"layout-item");function xm(){const n=he(oa);if(!n)throw new Error("[Vuetify] Could not find injected layout");return{getLayoutItem:n.getLayoutItem,mainRect:n.mainRect,mainStyles:n.mainStyles}}function ro(n){const l=he(oa);if(!l)throw new Error("[Vuetify] Could not find injected layout");const r=n.id??`layout-item-${on()}`,h=We("useLayoutItem");ye(Ou,{id:r});const u=_t(!1);eh(()=>u.value=!0),th(()=>u.value=!1);const{layoutItemStyles:g,layoutItemScrimStyles:v}=l.register(h,{...n,active:X(()=>u.value?!1:n.active.value),id:r});return Ue(()=>l.unregister(r)),{layoutItemStyles:g,layoutRect:l.layoutRect,layoutItemScrimStyles:v}}const zm=(n,l,r,h)=>{let u={top:0,left:0,right:0,bottom:0};const g=[{id:"",layer:{...u}}];for(const v of n){const b=l.get(v),z=r.get(v),C=h.get(v);if(!b||!z||!C)continue;const S={...u,[b.value]:parseInt(u[b.value],10)+(C.value?parseInt(z.value,10):0)};g.push({id:v,layer:S}),u=S}return g};function Ru(n){const l=he(oa,null),r=X(()=>l?l.rootZIndex.value-100:R1),h=Pt([]),u=Ye(new Map),g=Ye(new Map),v=Ye(new Map),b=Ye(new Map),z=Ye(new Map),{resizeRef:C,contentRect:S}=el(),A=X(()=>{const tt=new Map,nt=n.overlaps??[];for(const q of nt.filter(G=>G.includes(":"))){const[G,et]=q.split(":");if(!h.value.includes(G)||!h.value.includes(et))continue;const st=u.get(G),rt=u.get(et),ht=g.get(G),dt=g.get(et);!st||!rt||!ht||!dt||(tt.set(et,{position:st.value,amount:parseInt(ht.value,10)}),tt.set(G,{position:rt.value,amount:-parseInt(dt.value,10)}))}return tt}),B=X(()=>{const tt=[...new Set([...v.values()].map(q=>q.value))].sort((q,G)=>q-G),nt=[];for(const q of tt){const G=h.value.filter(et=>{var st;return((st=v.get(et))==null?void 0:st.value)===q});nt.push(...G)}return zm(nt,u,g,b)}),P=X(()=>!Array.from(z.values()).some(tt=>tt.value)),D=X(()=>B.value[B.value.length-1].layer),E=X(()=>({"--v-layout-left":Xt(D.value.left),"--v-layout-right":Xt(D.value.right),"--v-layout-top":Xt(D.value.top),"--v-layout-bottom":Xt(D.value.bottom),...P.value?void 0:{transition:"none"}})),Y=X(()=>B.value.slice(1).map((tt,nt)=>{let{id:q}=tt;const{layer:G}=B.value[nt],et=g.get(q),st=u.get(q);return{id:q,...G,size:Number(et.value),position:st.value}})),O=tt=>Y.value.find(nt=>nt.id===tt),H=We("createLayout"),U=_t(!1);Te(()=>{U.value=!0}),ye(oa,{register:(tt,nt)=>{let{id:q,order:G,position:et,layoutSize:st,elementSize:rt,active:ht,disableTransitions:dt,absolute:Ct}=nt;v.set(q,G),u.set(q,et),g.set(q,st),b.set(q,ht),dt&&z.set(q,dt);const wt=Lo(Ou,H==null?void 0:H.vnode).indexOf(tt);wt>-1?h.value.splice(wt,0,q):h.value.push(q);const gt=X(()=>Y.value.findIndex(Ft=>Ft.id===q)),It=X(()=>r.value+B.value.length*2-gt.value*2),$t=X(()=>{const Ft=et.value==="left"||et.value==="right",Kt=et.value==="right",Qt=et.value==="bottom",Rt={[et.value]:0,zIndex:It.value,transform:`translate${Ft?"X":"Y"}(${(ht.value?0:-110)*(Kt||Qt?-1:1)}%)`,position:Ct.value||r.value!==R1?"absolute":"fixed",...P.value?void 0:{transition:"none"}};if(!U.value)return Rt;const ut=Y.value[gt.value];if(!ut)throw new Error(`[Vuetify] Could not find layout item "${q}"`);const pt=A.value.get(q);return pt&&(ut[pt.position]+=pt.amount),{...Rt,height:Ft?`calc(100% - ${ut.top}px - ${ut.bottom}px)`:rt.value?`${rt.value}px`:void 0,left:Kt?void 0:`${ut.left}px`,right:Kt?`${ut.right}px`:void 0,top:et.value!=="bottom"?`${ut.top}px`:void 0,bottom:et.value!=="top"?`${ut.bottom}px`:void 0,width:Ft?rt.value?`${rt.value}px`:void 0:`calc(100% - ${ut.left}px - ${ut.right}px)`}}),Tt=X(()=>({zIndex:It.value-1}));return{layoutItemStyles:$t,layoutItemScrimStyles:Tt,zIndex:It}},unregister:tt=>{v.delete(tt),u.delete(tt),g.delete(tt),b.delete(tt),z.delete(tt),h.value=h.value.filter(nt=>nt!==tt)},mainRect:D,mainStyles:E,getLayoutItem:O,items:Y,layoutRect:S,rootZIndex:r});const W=X(()=>["v-layout",{"v-layout--full-height":n.fullHeight}]),_=X(()=>({zIndex:r.value,position:l?"relative":void 0,overflow:l?"hidden":void 0}));return{layoutClasses:W,layoutStyles:_,getLayoutItem:O,items:Y,layoutRect:S,layoutRef:C}}function Eu(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const{blueprint:l,...r}=n,h=An(l,r),{aliases:u={},components:g={},directives:v={}}=h,b=P5(h.defaults),z=O5(h.display,h.ssr),C=tm(h.theme),S=_5(h.icons),A=U5(h.locale),B=Mm(h.date);return{install:D=>{for(const E in v)D.directive(E,v[E]);for(const E in g)D.component(E,g[E]);for(const E in u)D.component(E,Pn({...u[E],name:E,aliasName:u[E].name}));if(C.install(D),D.provide(Zr,b),D.provide(s0,z),D.provide(Zo,C),D.provide(a0,S),D.provide(Kr,A),D.provide(T1,B),Me&&h.ssr)if(D.$nuxt)D.$nuxt.hook("app:suspense:resolve",()=>{z.update()});else{const{mount:E}=D;D.mount=function(){const Y=E(...arguments);return pe(()=>z.update()),D.mount=E,Y}}on.reset(),D.mixin({computed:{$vuetify(){return Ye({defaults:Nr.call(this,Zr),display:Nr.call(this,s0),theme:Nr.call(this,Zo),icons:Nr.call(this,a0),locale:Nr.call(this,Kr),date:Nr.call(this,T1)})}}})},defaults:b,display:z,theme:C,icons:S,locale:A,date:B}}const Im="3.3.14";Eu.version=Im;function Nr(n){var h,u;const l=this.$,r=((h=l.parent)==null?void 0:h.provides)??((u=l.vnode.appContext)==null?void 0:u.provides);if(r&&n in r)return r[n]}const ym=mt({...Wt(),...Tu({fullHeight:!0}),...ce()},"VApp"),Cm=At()({name:"VApp",props:ym(),setup(n,l){let{slots:r}=l;const h=ge(n),{layoutClasses:u,layoutStyles:g,getLayoutItem:v,items:b,layoutRef:z}=Ru(n),{rtlClasses:C}=Xe();return Lt(()=>{var S;return t("div",{ref:z,class:["v-application",h.themeClasses.value,u.value,C.value,n.class],style:[g.value,n.style]},[t("div",{class:"v-application__wrap"},[(S=r.default)==null?void 0:S.call(r)])])}),{getLayoutItem:v,items:b,theme:h}}});const le=mt({tag:{type:String,default:"div"}},"tag"),Vu=mt({text:String,...Wt(),...le()},"VToolbarTitle"),Ah=At()({name:"VToolbarTitle",props:Vu(),setup(n,l){let{slots:r}=l;return Lt(()=>{const h=!!(r.default||r.text||n.text);return t(n.tag,{class:["v-toolbar-title",n.class],style:n.style},{default:()=>{var u;return[h&&t("div",{class:"v-toolbar-title__placeholder"},[r.text?r.text():n.text,(u=r.default)==null?void 0:u.call(r)])]}})}),{}}}),Sm=mt({disabled:Boolean,group:Boolean,hideOnLeave:Boolean,leaveAbsolute:Boolean,mode:String,origin:String},"transition");function yn(n,l,r){return At()({name:n,props:Sm({mode:r,origin:l}),setup(h,u){let{slots:g}=u;const v={onBeforeEnter(b){h.origin&&(b.style.transformOrigin=h.origin)},onLeave(b){if(h.leaveAbsolute){const{offsetTop:z,offsetLeft:C,offsetWidth:S,offsetHeight:A}=b;b._transitionInitialStyles={position:b.style.position,top:b.style.top,left:b.style.left,width:b.style.width,height:b.style.height},b.style.position="absolute",b.style.top=`${z}px`,b.style.left=`${C}px`,b.style.width=`${S}px`,b.style.height=`${A}px`}h.hideOnLeave&&b.style.setProperty("display","none","important")},onAfterLeave(b){if(h.leaveAbsolute&&(b!=null&&b._transitionInitialStyles)){const{position:z,top:C,left:S,width:A,height:B}=b._transitionInitialStyles;delete b._transitionInitialStyles,b.style.position=z||"",b.style.top=C||"",b.style.left=S||"",b.style.width=A||"",b.style.height=B||""}}};return()=>{const b=h.group?Oc:qn;return Hn(b,{name:h.disabled?"":n,css:!h.disabled,...h.group?void 0:{mode:h.mode},...h.disabled?{}:v},g.default)}}})}function _u(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"in-out";return At()({name:n,props:{mode:{type:String,default:r},disabled:Boolean},setup(h,u){let{slots:g}=u;return()=>Hn(qn,{name:h.disabled?"":n,css:!h.disabled,...h.disabled?{}:l},g.default)}})}function Wu(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";const r=(arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1)?"width":"height",h=In(`offset-${r}`);return{onBeforeEnter(v){v._parent=v.parentNode,v._initialStyle={transition:v.style.transition,overflow:v.style.overflow,[r]:v.style[r]}},onEnter(v){const b=v._initialStyle;v.style.setProperty("transition","none","important"),v.style.overflow="hidden";const z=`${v[h]}px`;v.style[r]="0",v.offsetHeight,v.style.transition=b.transition,n&&v._parent&&v._parent.classList.add(n),requestAnimationFrame(()=>{v.style[r]=z})},onAfterEnter:g,onEnterCancelled:g,onLeave(v){v._initialStyle={transition:"",overflow:v.style.overflow,[r]:v.style[r]},v.style.overflow="hidden",v.style[r]=`${v[h]}px`,v.offsetHeight,requestAnimationFrame(()=>v.style[r]="0")},onAfterLeave:u,onLeaveCancelled:u};function u(v){n&&v._parent&&v._parent.classList.remove(n),g(v)}function g(v){const b=v._initialStyle[r];v.style.overflow=v._initialStyle.overflow,b!=null&&(v.style[r]=b),delete v._initialStyle}}const $m=mt({target:Object},"v-dialog-transition"),Da=At()({name:"VDialogTransition",props:$m(),setup(n,l){let{slots:r}=l;const h={onBeforeEnter(u){u.style.pointerEvents="none",u.style.visibility="hidden"},async onEnter(u,g){var B;await new Promise(P=>requestAnimationFrame(P)),await new Promise(P=>requestAnimationFrame(P)),u.style.visibility="";const{x:v,y:b,sx:z,sy:C,speed:S}=V1(n.target,u),A=rr(u,[{transform:`translate(${v}px, ${b}px) scale(${z}, ${C})`,opacity:0},{}],{duration:225*S,easing:A5});(B=E1(u))==null||B.forEach(P=>{rr(P,[{opacity:0},{opacity:0,offset:.33},{}],{duration:225*2*S,easing:Uo})}),A.finished.then(()=>g())},onAfterEnter(u){u.style.removeProperty("pointer-events")},onBeforeLeave(u){u.style.pointerEvents="none"},async onLeave(u,g){var B;await new Promise(P=>requestAnimationFrame(P));const{x:v,y:b,sx:z,sy:C,speed:S}=V1(n.target,u);rr(u,[{},{transform:`translate(${v}px, ${b}px) scale(${z}, ${C})`,opacity:0}],{duration:125*S,easing:B5}).finished.then(()=>g()),(B=E1(u))==null||B.forEach(P=>{rr(P,[{},{opacity:0,offset:.2},{opacity:0}],{duration:125*2*S,easing:Uo})})},onAfterLeave(u){u.style.removeProperty("pointer-events")}};return()=>n.target?t(qn,o({name:"dialog-transition"},h,{css:!1}),r):t(qn,{name:"dialog-transition"},r)}});function E1(n){var r;const l=(r=n.querySelector(":scope > .v-card, :scope > .v-sheet, :scope > .v-list"))==null?void 0:r.children;return l&&[...l]}function V1(n,l){const r=n.getBoundingClientRect(),h=Mh(l),[u,g]=getComputedStyle(l).transformOrigin.split(" ").map(O=>parseFloat(O)),[v,b]=getComputedStyle(l).getPropertyValue("--v-overlay-anchor-origin").split(" ");let z=r.left+r.width/2;v==="left"||b==="left"?z-=r.width/2:(v==="right"||b==="right")&&(z+=r.width/2);let C=r.top+r.height/2;v==="top"||b==="top"?C-=r.height/2:(v==="bottom"||b==="bottom")&&(C+=r.height/2);const S=r.width/h.width,A=r.height/h.height,B=Math.max(1,S,A),P=S/B||0,D=A/B||0,E=h.width*h.height/(window.innerWidth*window.innerHeight),Y=E>.12?Math.min(1.5,(E-.12)*10+1):1;return{x:z-(u+h.left),y:C-(g+h.top),sx:P,sy:D,speed:Y}}const Am=yn("fab-transition","center center","out-in"),Bm=yn("dialog-bottom-transition"),Hm=yn("dialog-top-transition"),c0=yn("fade-transition"),Bh=yn("scale-transition"),Nm=yn("scroll-x-transition"),jm=yn("scroll-x-reverse-transition"),Pm=yn("scroll-y-transition"),Lm=yn("scroll-y-reverse-transition"),Dm=yn("slide-x-transition"),Fm=yn("slide-x-reverse-transition"),Hh=yn("slide-y-transition"),Om=yn("slide-y-reverse-transition"),Fa=_u("expand-transition",Wu()),Nh=_u("expand-x-transition",Wu("",!0)),Tm=mt({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),fe=At(!1)({name:"VDefaultsProvider",props:Tm(),setup(n,l){let{slots:r}=l;const{defaults:h,disabled:u,reset:g,root:v,scoped:b}=rs(n);return Fe(h,{reset:g,root:v,scoped:b,disabled:u}),()=>{var z;return(z=r.default)==null?void 0:z.call(r)}}});const Dn=mt({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function Fn(n){return{dimensionStyles:X(()=>({height:Xt(n.height),maxHeight:Xt(n.maxHeight),maxWidth:Xt(n.maxWidth),minHeight:Xt(n.minHeight),minWidth:Xt(n.minWidth),width:Xt(n.width)}))}}function Rm(n){return{aspectStyles:X(()=>{const l=Number(n.aspectRatio);return l?{paddingBottom:String(1/l*100)+"%"}:void 0})}}const Xu=mt({aspectRatio:[String,Number],contentClass:String,inline:Boolean,...Wt(),...Dn()},"VResponsive"),u0=At()({name:"VResponsive",props:Xu(),setup(n,l){let{slots:r}=l;const{aspectStyles:h}=Rm(n),{dimensionStyles:u}=Fn(n);return Lt(()=>{var g;return t("div",{class:["v-responsive",{"v-responsive--inline":n.inline},n.class],style:[u.value,n.style]},[t("div",{class:"v-responsive__sizer",style:h.value},null),(g=r.additional)==null?void 0:g.call(r),r.default&&t("div",{class:["v-responsive__content",n.contentClass]},[r.default()])])}),{}}}),bl=mt({transition:{type:[Boolean,String,Object],default:"fade-transition",validator:n=>n!==!0}},"transition"),Wn=(n,l)=>{let{slots:r}=l;const{transition:h,disabled:u,...g}=n,{component:v=qn,...b}=typeof h=="object"?h:{};return Hn(v,o(typeof h=="string"?{name:u?"":h}:b,g,{disabled:u}),r)};function Em(n,l){if(!fh)return;const r=l.modifiers||{},h=l.value,{handler:u,options:g}=typeof h=="object"?h:{handler:h,options:{}},v=new IntersectionObserver(function(){var A;let b=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],z=arguments.length>1?arguments[1]:void 0;const C=(A=n._observe)==null?void 0:A[l.instance.$.uid];if(!C)return;const S=b.some(B=>B.isIntersecting);u&&(!r.quiet||C.init)&&(!r.once||S||C.init)&&u(S,b,z),S&&r.once?qu(n,l):C.init=!0},g);n._observe=Object(n._observe),n._observe[l.instance.$.uid]={init:!1,observer:v},v.observe(n)}function qu(n,l){var h;const r=(h=n._observe)==null?void 0:h[l.instance.$.uid];r&&(r.observer.unobserve(n),delete n._observe[l.instance.$.uid])}const Yu={mounted:Em,unmounted:qu},Oa=Yu,Gu=mt({alt:String,cover:Boolean,eager:Boolean,gradient:String,lazySrc:String,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},sizes:String,src:{type:[String,Object],default:""},srcset:String,...Xu(),...Wt(),...bl()},"VImg"),gr=At()({name:"VImg",directives:{intersect:Oa},props:Gu(),emits:{loadstart:n=>!0,load:n=>!0,error:n=>!0},setup(n,l){let{emit:r,slots:h}=l;const u=_t(""),g=Pt(),v=_t(n.eager?"loading":"idle"),b=_t(),z=_t(),C=X(()=>n.src&&typeof n.src=="object"?{src:n.src.src,srcset:n.srcset||n.src.srcset,lazySrc:n.lazySrc||n.src.lazySrc,aspect:Number(n.aspectRatio||n.src.aspect||0)}:{src:n.src,srcset:n.srcset,lazySrc:n.lazySrc,aspect:Number(n.aspectRatio||0)}),S=X(()=>C.value.aspect||b.value/z.value||0);Vt(()=>n.src,()=>{A(v.value!=="idle")}),Vt(S,(q,G)=>{!q&&G&&g.value&&Y(g.value)}),hs(()=>A());function A(q){if(!(n.eager&&q)&&!(fh&&!q&&!n.eager)){if(v.value="loading",C.value.lazySrc){const G=new Image;G.src=C.value.lazySrc,Y(G,null)}C.value.src&&pe(()=>{var G,et;if(r("loadstart",((G=g.value)==null?void 0:G.currentSrc)||C.value.src),(et=g.value)!=null&&et.complete){if(g.value.naturalWidth||P(),v.value==="error")return;S.value||Y(g.value,null),B()}else S.value||Y(g.value),D()})}}function B(){var q;D(),v.value="loaded",r("load",((q=g.value)==null?void 0:q.currentSrc)||C.value.src)}function P(){var q;v.value="error",r("error",((q=g.value)==null?void 0:q.currentSrc)||C.value.src)}function D(){const q=g.value;q&&(u.value=q.currentSrc||q.src)}let E=-1;function Y(q){let G=arguments.length>1&&arguments[1]!==void 0?arguments[1]:100;const et=()=>{clearTimeout(E);const{naturalHeight:st,naturalWidth:rt}=q;st||rt?(b.value=rt,z.value=st):!q.complete&&v.value==="loading"&&G!=null?E=window.setTimeout(et,G):(q.currentSrc.endsWith(".svg")||q.currentSrc.startsWith("data:image/svg+xml"))&&(b.value=1,z.value=1)};et()}const O=X(()=>({"v-img__img--cover":n.cover,"v-img__img--contain":!n.cover})),H=()=>{var et;if(!C.value.src||v.value==="idle")return null;const q=t("img",{class:["v-img__img",O.value],src:C.value.src,srcset:C.value.srcset,alt:n.alt,sizes:n.sizes,ref:g,onLoad:B,onError:P},null),G=(et=h.sources)==null?void 0:et.call(h);return t(Wn,{transition:n.transition,appear:!0},{default:()=>[Ce(G?t("picture",{class:"v-img__picture"},[G,q]):q,[[Nn,v.value==="loaded"]])]})},U=()=>t(Wn,{transition:n.transition},{default:()=>[C.value.lazySrc&&v.value!=="loaded"&&t("img",{class:["v-img__img","v-img__img--preload",O.value],src:C.value.lazySrc,alt:n.alt},null)]}),W=()=>h.placeholder?t(Wn,{transition:n.transition,appear:!0},{default:()=>[(v.value==="loading"||v.value==="error"&&!h.error)&&t("div",{class:"v-img__placeholder"},[h.placeholder()])]}):null,_=()=>h.error?t(Wn,{transition:n.transition,appear:!0},{default:()=>[v.value==="error"&&t("div",{class:"v-img__error"},[h.error()])]}):null,tt=()=>n.gradient?t("div",{class:"v-img__gradient",style:{backgroundImage:`linear-gradient(${n.gradient})`}},null):null,nt=_t(!1);{const q=Vt(S,G=>{G&&(requestAnimationFrame(()=>{requestAnimationFrame(()=>{nt.value=!0})}),q())})}return Lt(()=>{const[q]=u0.filterProps(n);return Ce(t(u0,o({class:["v-img",{"v-img--booting":!nt.value},n.class],style:[{width:Xt(n.width==="auto"?b.value:n.width)},n.style]},q,{aspectRatio:S.value,"aria-label":n.alt,role:n.alt?"img":void 0}),{additional:()=>t(Zt,null,[t(H,null,null),t(U,null,null),t(tt,null,null),t(W,null,null),t(_,null,null)]),default:h.default}),[[mn("intersect"),{handler:A,options:n.options},null,{once:!0}]])}),{currentSrc:u,image:g,state:v,naturalWidth:b,naturalHeight:z}}}),Cn=mt({border:[Boolean,Number,String]},"border");function On(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{borderClasses:X(()=>{const h=ke(n)?n.value:n.border,u=[];if(h===!0||h==="")u.push(`${l}--border`);else if(typeof h=="string"||h===0)for(const g of String(h).split(" "))u.push(`border-${g}`);return u})}}function jh(n){return kh(()=>{const l=[],r={};if(n.value.background)if(S1(n.value.background)){if(r.backgroundColor=n.value.background,!n.value.text){const h=Au(r.backgroundColor);r.color=h,r.caretColor=h}}else l.push(`bg-${n.value.background}`);return n.value.text&&(S1(n.value.text)?(r.color=n.value.text,r.caretColor=n.value.text):l.push(`text-${n.value.text}`)),{colorClasses:l,colorStyles:r}})}function rn(n,l){const r=X(()=>({text:ke(n)?n.value:l?n[l]:null})),{colorClasses:h,colorStyles:u}=jh(r);return{textColorClasses:h,textColorStyles:u}}function Ne(n,l){const r=X(()=>({background:ke(n)?n.value:l?n[l]:null})),{colorClasses:h,colorStyles:u}=jh(r);return{backgroundColorClasses:h,backgroundColorStyles:u}}const Re=mt({elevation:{type:[Number,String],validator(n){const l=parseInt(n);return!isNaN(l)&&l>=0&&l<=24}}},"elevation");function Ze(n){return{elevationClasses:X(()=>{const r=ke(n)?n.value:n.elevation,h=[];return r==null||h.push(`elevation-${r}`),h})}}const Ie=mt({rounded:{type:[Boolean,Number,String],default:void 0}},"rounded");function Be(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{roundedClasses:X(()=>{const h=ke(n)?n.value:n.rounded,u=[];if(h===!0||h==="")u.push(`${l}--rounded`);else if(typeof h=="string"||h===0)for(const g of String(h).split(" "))u.push(`rounded-${g}`);return u})}}const Vm=[null,"prominent","default","comfortable","compact"],Uu=mt({absolute:Boolean,collapse:Boolean,color:String,density:{type:String,default:"default",validator:n=>Vm.includes(n)},extended:Boolean,extensionHeight:{type:[Number,String],default:48},flat:Boolean,floating:Boolean,height:{type:[Number,String],default:64},image:String,title:String,...Cn(),...Wt(),...Re(),...Ie(),...le({tag:"header"}),...ce()},"VToolbar"),p0=At()({name:"VToolbar",props:Uu(),setup(n,l){var P;let{slots:r}=l;const{backgroundColorClasses:h,backgroundColorStyles:u}=Ne(Bt(n,"color")),{borderClasses:g}=On(n),{elevationClasses:v}=Ze(n),{roundedClasses:b}=Be(n),{themeClasses:z}=ge(n),{rtlClasses:C}=Xe(),S=_t(!!(n.extended||(P=r.extension)!=null&&P.call(r))),A=X(()=>parseInt(Number(n.height)+(n.density==="prominent"?Number(n.height):0)-(n.density==="comfortable"?8:0)-(n.density==="compact"?16:0),10)),B=X(()=>S.value?parseInt(Number(n.extensionHeight)+(n.density==="prominent"?Number(n.extensionHeight):0)-(n.density==="comfortable"?4:0)-(n.density==="compact"?8:0),10):0);return Fe({VBtn:{variant:"text"}}),Lt(()=>{var O;const D=!!(n.title||r.title),E=!!(r.image||n.image),Y=(O=r.extension)==null?void 0:O.call(r);return S.value=!!(n.extended||Y),t(n.tag,{class:["v-toolbar",{"v-toolbar--absolute":n.absolute,"v-toolbar--collapse":n.collapse,"v-toolbar--flat":n.flat,"v-toolbar--floating":n.floating,[`v-toolbar--density-${n.density}`]:!0},h.value,g.value,v.value,b.value,z.value,C.value,n.class],style:[u.value,n.style]},{default:()=>[E&&t("div",{key:"image",class:"v-toolbar__image"},[r.image?t(fe,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},r.image):t(gr,{key:"image-img",cover:!0,src:n.image},null)]),t(fe,{defaults:{VTabs:{height:Xt(A.value)}}},{default:()=>{var H,U,W;return[t("div",{class:"v-toolbar__content",style:{height:Xt(A.value)}},[r.prepend&&t("div",{class:"v-toolbar__prepend"},[(H=r.prepend)==null?void 0:H.call(r)]),D&&t(Ah,{key:"title",text:n.title},{text:r.title}),(U=r.default)==null?void 0:U.call(r),r.append&&t("div",{class:"v-toolbar__append"},[(W=r.append)==null?void 0:W.call(r)])])]}}),t(fe,{defaults:{VTabs:{height:Xt(B.value)}}},{default:()=>[t(Fa,null,{default:()=>[S.value&&t("div",{class:"v-toolbar__extension",style:{height:Xt(B.value)}},[Y])]})]})]})}),{contentHeight:A,extensionHeight:B}}}),_m=mt({scrollTarget:{type:String},scrollThreshold:{type:[String,Number],default:300}},"scroll");function Wm(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};const{canScroll:r}=l;let h=0;const u=Pt(null),g=_t(0),v=_t(0),b=_t(0),z=_t(!1),C=_t(!1),S=X(()=>Number(n.scrollThreshold)),A=X(()=>en((S.value-g.value)/S.value||0)),B=()=>{const P=u.value;!P||r&&!r.value||(h=g.value,g.value="window"in P?P.pageYOffset:P.scrollTop,C.value=g.value{v.value=v.value||g.value}),Vt(z,()=>{v.value=0}),Te(()=>{Vt(()=>n.scrollTarget,P=>{var E;const D=P?document.querySelector(P):window;D&&D!==u.value&&((E=u.value)==null||E.removeEventListener("scroll",B),u.value=D,u.value.addEventListener("scroll",B,{passive:!0}))},{immediate:!0})}),Ue(()=>{var P;(P=u.value)==null||P.removeEventListener("scroll",B)}),r&&Vt(r,B,{immediate:!0}),{scrollThreshold:S,currentScroll:g,currentThreshold:b,isScrollActive:z,scrollRatio:A,isScrollingUp:C,savedScroll:v}}function xr(){const n=_t(!1);return Te(()=>{window.requestAnimationFrame(()=>{n.value=!0})}),{ssrBootStyles:X(()=>n.value?void 0:{transition:"none !important"}),isBooted:no(n)}}const Xm=mt({scrollBehavior:String,modelValue:{type:Boolean,default:!0},location:{type:String,default:"top",validator:n=>["top","bottom"].includes(n)},...Uu(),...lo(),..._m(),height:{type:[Number,String],default:64}},"VAppBar"),qm=At()({name:"VAppBar",props:Xm(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=Pt(),u=ee(n,"modelValue"),g=X(()=>{var H;const O=new Set(((H=n.scrollBehavior)==null?void 0:H.split(" "))??[]);return{hide:O.has("hide"),inverted:O.has("inverted"),collapse:O.has("collapse"),elevate:O.has("elevate"),fadeImage:O.has("fade-image")}}),v=X(()=>{const O=g.value;return O.hide||O.inverted||O.collapse||O.elevate||O.fadeImage||!u.value}),{currentScroll:b,scrollThreshold:z,isScrollingUp:C,scrollRatio:S}=Wm(n,{canScroll:v}),A=X(()=>n.collapse||g.value.collapse&&(g.value.inverted?S.value>0:S.value===0)),B=X(()=>n.flat||g.value.elevate&&(g.value.inverted?b.value>0:b.value===0)),P=X(()=>g.value.fadeImage?g.value.inverted?1-S.value:S.value:void 0),D=X(()=>{var U,W;if(g.value.hide&&g.value.inverted)return 0;const O=((U=h.value)==null?void 0:U.contentHeight)??0,H=((W=h.value)==null?void 0:W.extensionHeight)??0;return O+H});Vl(X(()=>!!n.scrollBehavior),()=>{fn(()=>{g.value.hide?g.value.inverted?u.value=b.value>z.value:u.value=C.value||b.valueparseInt(n.order,10)),position:Bt(n,"location"),layoutSize:D,elementSize:_t(void 0),active:u,absolute:Bt(n,"absolute")});return Lt(()=>{const[O]=p0.filterProps(n);return t(p0,o({ref:h,class:["v-app-bar",{"v-app-bar--bottom":n.location==="bottom"},n.class],style:[{...Y.value,"--v-toolbar-image-opacity":P.value,height:void 0,...E.value},n.style]},O,{collapse:A.value,flat:B.value}),r)}),{}}});const Ym=[null,"default","comfortable","compact"],Ee=mt({density:{type:String,default:"default",validator:n=>Ym.includes(n)}},"density");function sn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{densityClasses:X(()=>`${l}--density-${n.density}`)}}const Gm=["elevated","flat","tonal","outlined","text","plain"];function zr(n,l){return t(Zt,null,[n&&t("span",{key:"overlay",class:`${l}__overlay`},null),t("span",{key:"underlay",class:`${l}__underlay`},null)])}const Tn=mt({color:String,variant:{type:String,default:"elevated",validator:n=>Gm.includes(n)}},"variant");function Ir(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();const r=X(()=>{const{variant:g}=He(n);return`${l}--variant-${g}`}),{colorClasses:h,colorStyles:u}=jh(X(()=>{const{variant:g,color:v}=He(n);return{[["elevated","flat"].includes(g)?"background":"text"]:v}}));return{colorClasses:h,colorStyles:u,variantClasses:r}}const Zu=mt({divided:Boolean,...Cn(),...Wt(),...Ee(),...Re(),...Ie(),...le(),...ce(),...Tn()},"VBtnGroup"),g0=At()({name:"VBtnGroup",props:Zu(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{densityClasses:u}=sn(n),{borderClasses:g}=On(n),{elevationClasses:v}=Ze(n),{roundedClasses:b}=Be(n);Fe({VBtn:{height:"auto",color:Bt(n,"color"),density:Bt(n,"density"),flat:!0,variant:Bt(n,"variant")}}),Lt(()=>t(n.tag,{class:["v-btn-group",{"v-btn-group--divided":n.divided},h.value,g.value,u.value,v.value,b.value,n.class],style:n.style},r))}}),oo=mt({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),so=mt({value:null,disabled:Boolean,selectedClass:String},"group-item");function ao(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;const h=We("useGroupItem");if(!h)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const u=on();ye(Symbol.for(`${l.description}:id`),u);const g=he(l,null);if(!g){if(!r)return g;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${l.description}`)}const v=Bt(n,"value"),b=X(()=>!!(g.disabled.value||n.disabled));g.register({id:u,value:v,disabled:b},h),Ue(()=>{g.unregister(u)});const z=X(()=>g.isSelected(u)),C=X(()=>z.value&&[g.selectedClass.value,n.selectedClass]);return Vt(z,S=>{h.emit("group:selected",{value:S})}),{id:u,isSelected:z,toggle:()=>g.select(u,!z.value),select:S=>g.select(u,S),selectedClass:C,value:v,disabled:b,group:g}}function yr(n,l){let r=!1;const h=Ye([]),u=ee(n,"modelValue",[],B=>B==null?[]:Ku(h,Bn(B)),B=>{const P=Zm(h,B);return n.multiple?P:P[0]}),g=We("useGroup");function v(B,P){const D=B,E=Symbol.for(`${l.description}:id`),O=Lo(E,g==null?void 0:g.vnode).indexOf(P);O>-1?h.splice(O,0,D):h.push(D)}function b(B){if(r)return;z();const P=h.findIndex(D=>D.id===B);h.splice(P,1)}function z(){const B=h.find(P=>!P.disabled);B&&n.mandatory==="force"&&!u.value.length&&(u.value=[B.id])}Te(()=>{z()}),Ue(()=>{r=!0});function C(B,P){const D=h.find(E=>E.id===B);if(!(P&&(D!=null&&D.disabled)))if(n.multiple){const E=u.value.slice(),Y=E.findIndex(H=>H===B),O=~Y;if(P=P??!O,O&&n.mandatory&&E.length<=1||!O&&n.max!=null&&E.length+1>n.max)return;Y<0&&P?E.push(B):Y>=0&&!P&&E.splice(Y,1),u.value=E}else{const E=u.value.includes(B);if(n.mandatory&&E)return;u.value=P??!E?[B]:[]}}function S(B){if(n.multiple,u.value.length){const P=u.value[0],D=h.findIndex(O=>O.id===P);let E=(D+B)%h.length,Y=h[E];for(;Y.disabled&&E!==D;)E=(E+B)%h.length,Y=h[E];if(Y.disabled)return;u.value=[h[E].id]}else{const P=h.find(D=>!D.disabled);P&&(u.value=[P.id])}}const A={register:v,unregister:b,selected:u,select:C,disabled:Bt(n,"disabled"),prev:()=>S(h.length-1),next:()=>S(1),isSelected:B=>u.value.includes(B),selectedClass:X(()=>n.selectedClass),items:X(()=>h),getItemIndex:B=>Um(h,B)};return ye(l,A),A}function Um(n,l){const r=Ku(n,[l]);return r.length?n.findIndex(h=>h.id===r[0]):-1}function Ku(n,l){const r=[];return l.forEach(h=>{const u=n.find(v=>kr(h,v.value)),g=n[h];(u==null?void 0:u.value)!=null?r.push(u.id):g!=null&&r.push(g.id)}),r}function Zm(n,l){const r=[];return l.forEach(h=>{const u=n.findIndex(g=>g.id===h);if(~u){const g=n[u];r.push(g.value!=null?g.value:u)}}),r}const Ph=Symbol.for("vuetify:v-btn-toggle"),Km=mt({...Zu(),...oo()},"VBtnToggle"),Qm=At()({name:"VBtnToggle",props:Km(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{isSelected:h,next:u,prev:g,select:v,selected:b}=yr(n,Ph);return Lt(()=>{const[z]=g0.filterProps(n);return t(g0,o({class:["v-btn-toggle",n.class]},z,{style:n.style}),{default:()=>{var C;return[(C=r.default)==null?void 0:C.call(r,{isSelected:h,next:u,prev:g,select:v,selected:b})]}})}),{next:u,prev:g,select:v}}});const Jm=["x-small","small","default","large","x-large"],Ml=mt({size:{type:[String,Number],default:"default"}},"size");function io(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return kh(()=>{let r,h;return ea(Jm,n.size)?r=`${l}--size-${n.size}`:n.size&&(h={width:Xt(n.size),height:Xt(n.size)}),{sizeClasses:r,sizeStyles:h}})}const tk=mt({color:String,start:Boolean,end:Boolean,icon:te,...Wt(),...Ml(),...le({tag:"i"}),...ce()},"VIcon"),be=At()({name:"VIcon",props:tk(),setup(n,l){let{attrs:r,slots:h}=l;const u=Pt(),{themeClasses:g}=ge(n),{iconData:v}=W5(X(()=>u.value||n.icon)),{sizeClasses:b}=io(n),{textColorClasses:z,textColorStyles:C}=rn(Bt(n,"color"));return Lt(()=>{var A,B;const S=(A=h.default)==null?void 0:A.call(h);return S&&(u.value=(B=wu(S).filter(P=>P.type===Fl&&P.children&&typeof P.children=="string")[0])==null?void 0:B.children),t(v.value.component,{tag:n.tag,icon:v.value.icon,class:["v-icon","notranslate",g.value,b.value,z.value,{"v-icon--clickable":!!r.onClick,"v-icon--start":n.start,"v-icon--end":n.end},n.class],style:[b.value?void 0:{fontSize:Xt(n.size),height:Xt(n.size),width:Xt(n.size)},C.value,n.style],role:r.onClick?"button":void 0,"aria-hidden":!r.onClick},{default:()=>[S]})}),{}}});function Lh(n,l){const r=Pt(),h=_t(!1);if(fh){const u=new IntersectionObserver(g=>{n==null||n(g,u),h.value=!!g.find(v=>v.isIntersecting)},l);Ue(()=>{u.disconnect()}),Vt(r,(g,v)=>{v&&(u.unobserve(v),h.value=!1),g&&u.observe(g)},{flush:"post"})}return{intersectionRef:r,isIntersecting:h}}const ek=mt({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...Wt(),...Ml(),...le({tag:"div"}),...ce()},"VProgressCircular"),Dh=At()({name:"VProgressCircular",props:ek(),setup(n,l){let{slots:r}=l;const h=20,u=2*Math.PI*h,g=Pt(),{themeClasses:v}=ge(n),{sizeClasses:b,sizeStyles:z}=io(n),{textColorClasses:C,textColorStyles:S}=rn(Bt(n,"color")),{textColorClasses:A,textColorStyles:B}=rn(Bt(n,"bgColor")),{intersectionRef:P,isIntersecting:D}=Lh(),{resizeRef:E,contentRect:Y}=el(),O=X(()=>Math.max(0,Math.min(100,parseFloat(n.modelValue)))),H=X(()=>Number(n.width)),U=X(()=>z.value?Number(n.size):Y.value?Y.value.width:Math.max(H.value,32)),W=X(()=>h/(1-H.value/U.value)*2),_=X(()=>H.value/U.value*W.value),tt=X(()=>Xt((100-O.value)/100*u));return fn(()=>{P.value=g.value,E.value=g.value}),Lt(()=>t(n.tag,{ref:g,class:["v-progress-circular",{"v-progress-circular--indeterminate":!!n.indeterminate,"v-progress-circular--visible":D.value,"v-progress-circular--disable-shrink":n.indeterminate==="disable-shrink"},v.value,b.value,C.value,n.class],style:[z.value,S.value,n.style],role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":n.indeterminate?void 0:O.value},{default:()=>[t("svg",{style:{transform:`rotate(calc(-90deg + ${Number(n.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${W.value} ${W.value}`},[t("circle",{class:["v-progress-circular__underlay",A.value],style:B.value,fill:"transparent",cx:"50%",cy:"50%",r:h,"stroke-width":_.value,"stroke-dasharray":u,"stroke-dashoffset":0},null),t("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:h,"stroke-width":_.value,"stroke-dasharray":u,"stroke-dashoffset":tt.value},null)]),r.default&&t("div",{class:"v-progress-circular__content"},[r.default({value:O.value})])]})),{}}});const _1={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},Wl=mt({location:String},"location");function Xl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,r=arguments.length>2?arguments[2]:void 0;const{isRtl:h}=Xe();return{locationStyles:X(()=>{if(!n.location)return{};const{side:g,align:v}=l0(n.location.split(" ").length>1?n.location:`${n.location} center`,h.value);function b(C){return r?r(C):0}const z={};return g!=="center"&&(l?z[_1[g]]=`calc(100% - ${b(g)}px)`:z[g]=0),v!=="center"?l?z[_1[v]]=`calc(100% - ${b(v)}px)`:z[v]=0:(g==="center"?z.top=z.left="50%":z[{top:"left",bottom:"left",left:"top",right:"top"}[g]]="50%",z.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[g]),z})}}const nk=mt({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...Wt(),...Wl({location:"top"}),...Ie(),...le(),...ce()},"VProgressLinear"),Fh=At()({name:"VProgressLinear",props:nk(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{isRtl:u,rtlClasses:g}=Xe(),{themeClasses:v}=ge(n),{locationStyles:b}=Xl(n),{textColorClasses:z,textColorStyles:C}=rn(n,"color"),{backgroundColorClasses:S,backgroundColorStyles:A}=Ne(X(()=>n.bgColor||n.color)),{backgroundColorClasses:B,backgroundColorStyles:P}=Ne(n,"color"),{roundedClasses:D}=Be(n),{intersectionRef:E,isIntersecting:Y}=Lh(),O=X(()=>parseInt(n.max,10)),H=X(()=>parseInt(n.height,10)),U=X(()=>parseFloat(n.bufferValue)/O.value*100),W=X(()=>parseFloat(h.value)/O.value*100),_=X(()=>u.value!==n.reverse),tt=X(()=>n.indeterminate?"fade-transition":"slide-x-transition"),nt=X(()=>n.bgOpacity==null?n.bgOpacity:parseFloat(n.bgOpacity));function q(G){if(!E.value)return;const{left:et,right:st,width:rt}=E.value.getBoundingClientRect(),ht=_.value?rt-G.clientX+(st-rt):G.clientX-et;h.value=Math.round(ht/rt*O.value)}return Lt(()=>t(n.tag,{ref:E,class:["v-progress-linear",{"v-progress-linear--absolute":n.absolute,"v-progress-linear--active":n.active&&Y.value,"v-progress-linear--reverse":_.value,"v-progress-linear--rounded":n.rounded,"v-progress-linear--rounded-bar":n.roundedBar,"v-progress-linear--striped":n.striped},D.value,v.value,g.value,n.class],style:[{bottom:n.location==="bottom"?0:void 0,top:n.location==="top"?0:void 0,height:n.active?Xt(H.value):0,"--v-progress-linear-height":Xt(H.value),...b.value},n.style],role:"progressbar","aria-hidden":n.active?"false":"true","aria-valuemin":"0","aria-valuemax":n.max,"aria-valuenow":n.indeterminate?void 0:W.value,onClick:n.clickable&&q},{default:()=>[n.stream&&t("div",{key:"stream",class:["v-progress-linear__stream",z.value],style:{...C.value,[_.value?"left":"right"]:Xt(-H.value),borderTop:`${Xt(H.value/2)} dotted`,opacity:nt.value,top:`calc(50% - ${Xt(H.value/4)})`,width:Xt(100-U.value,"%"),"--v-progress-linear-stream-to":Xt(H.value*(_.value?1:-1))}},null),t("div",{class:["v-progress-linear__background",S.value],style:[A.value,{opacity:nt.value,width:Xt(n.stream?U.value:100,"%")}]},null),t(qn,{name:tt.value},{default:()=>[n.indeterminate?t("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(G=>t("div",{key:G,class:["v-progress-linear__indeterminate",G,B.value],style:P.value},null))]):t("div",{class:["v-progress-linear__determinate",B.value],style:[P.value,{width:Xt(W.value,"%")}]},null)]}),r.default&&t("div",{class:"v-progress-linear__content"},[r.default({value:W.value,buffer:U.value})])]})),{}}}),Oh=mt({loading:[Boolean,String]},"loader");function Ta(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{loaderClasses:X(()=>({[`${l}--loading`]:n.loading}))}}function Th(n,l){var h;let{slots:r}=l;return t("div",{class:`${n.name}__loader`},[((h=r.default)==null?void 0:h.call(r,{color:n.color,isActive:n.active}))||t(Fh,{active:n.active,color:n.color,height:"2",indeterminate:!0},null)])}const lk=["static","relative","fixed","absolute","sticky"],ho=mt({position:{type:String,validator:n=>lk.includes(n)}},"position");function co(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();return{positionClasses:X(()=>n.position?`${l}--${n.position}`:void 0)}}function Qu(){var n,l;return(l=(n=We("useRouter"))==null?void 0:n.proxy)==null?void 0:l.$router}function ps(n,l){const r=Qd("RouterLink"),h=X(()=>!!(n.href||n.to)),u=X(()=>(h==null?void 0:h.value)||w1(l,"click")||w1(n,"click"));if(typeof r=="string")return{isLink:h,isClickable:u,href:Bt(n,"href")};const g=n.to?r.useLink(n):void 0;return{isLink:h,isClickable:u,route:g==null?void 0:g.route,navigate:g==null?void 0:g.navigate,isActive:g&&X(()=>{var v,b;return n.exact?(v=g.isExactActive)==null?void 0:v.value:(b=g.isActive)==null?void 0:b.value}),href:X(()=>n.to?g==null?void 0:g.route.value.href:n.href)}}const gs=mt({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let ki=!1;function rk(n,l){let r=!1,h,u;Me&&(pe(()=>{window.addEventListener("popstate",g),h=n==null?void 0:n.beforeEach((v,b,z)=>{ki?r?l(z):z():setTimeout(()=>r?l(z):z()),ki=!0}),u=n==null?void 0:n.afterEach(()=>{ki=!1})}),ln(()=>{window.removeEventListener("popstate",g),h==null||h(),u==null||u()}));function g(v){var b;(b=v.state)!=null&&b.replaced||(r=!0,setTimeout(()=>r=!1))}}function ok(n,l){Vt(()=>{var r;return(r=n.isActive)==null?void 0:r.value},r=>{n.isLink.value&&r&&l&&pe(()=>{l(!0)})},{immediate:!0})}const w0=Symbol("rippleStop"),sk=80;function W1(n,l){n.style.transform=l,n.style.webkitTransform=l}function v0(n){return n.constructor.name==="TouchEvent"}function Ju(n){return n.constructor.name==="KeyboardEvent"}const ak=function(n,l){var A;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},h=0,u=0;if(!Ju(n)){const B=l.getBoundingClientRect(),P=v0(n)?n.touches[n.touches.length-1]:n;h=P.clientX-B.left,u=P.clientY-B.top}let g=0,v=.3;(A=l._ripple)!=null&&A.circle?(v=.15,g=l.clientWidth/2,g=r.center?g:g+Math.sqrt((h-g)**2+(u-g)**2)/4):g=Math.sqrt(l.clientWidth**2+l.clientHeight**2)/2;const b=`${(l.clientWidth-g*2)/2}px`,z=`${(l.clientHeight-g*2)/2}px`,C=r.center?b:`${h-g}px`,S=r.center?z:`${u-g}px`;return{radius:g,scale:v,x:C,y:S,centerX:b,centerY:z}},sa={show(n,l){var P;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!((P=l==null?void 0:l._ripple)!=null&&P.enabled))return;const h=document.createElement("span"),u=document.createElement("span");h.appendChild(u),h.className="v-ripple__container",r.class&&(h.className+=` ${r.class}`);const{radius:g,scale:v,x:b,y:z,centerX:C,centerY:S}=ak(n,l,r),A=`${g*2}px`;u.className="v-ripple__animation",u.style.width=A,u.style.height=A,l.appendChild(h);const B=window.getComputedStyle(l);B&&B.position==="static"&&(l.style.position="relative",l.dataset.previousPosition="static"),u.classList.add("v-ripple__animation--enter"),u.classList.add("v-ripple__animation--visible"),W1(u,`translate(${b}, ${z}) scale3d(${v},${v},${v})`),u.dataset.activated=String(performance.now()),setTimeout(()=>{u.classList.remove("v-ripple__animation--enter"),u.classList.add("v-ripple__animation--in"),W1(u,`translate(${C}, ${S}) scale3d(1,1,1)`)},0)},hide(n){var g;if(!((g=n==null?void 0:n._ripple)!=null&&g.enabled))return;const l=n.getElementsByClassName("v-ripple__animation");if(l.length===0)return;const r=l[l.length-1];if(r.dataset.isHiding)return;r.dataset.isHiding="true";const h=performance.now()-Number(r.dataset.activated),u=Math.max(250-h,0);setTimeout(()=>{r.classList.remove("v-ripple__animation--in"),r.classList.add("v-ripple__animation--out"),setTimeout(()=>{var b;n.getElementsByClassName("v-ripple__animation").length===1&&n.dataset.previousPosition&&(n.style.position=n.dataset.previousPosition,delete n.dataset.previousPosition),((b=r.parentNode)==null?void 0:b.parentNode)===n&&n.removeChild(r.parentNode)},300)},u)}};function tp(n){return typeof n>"u"||!!n}function Ko(n){const l={},r=n.currentTarget;if(!(!(r!=null&&r._ripple)||r._ripple.touched||n[w0])){if(n[w0]=!0,v0(n))r._ripple.touched=!0,r._ripple.isTouch=!0;else if(r._ripple.isTouch)return;if(l.center=r._ripple.centered||Ju(n),r._ripple.class&&(l.class=r._ripple.class),v0(n)){if(r._ripple.showTimerCommit)return;r._ripple.showTimerCommit=()=>{sa.show(n,r,l)},r._ripple.showTimer=window.setTimeout(()=>{var h;(h=r==null?void 0:r._ripple)!=null&&h.showTimerCommit&&(r._ripple.showTimerCommit(),r._ripple.showTimerCommit=null)},sk)}else sa.show(n,r,l)}}function X1(n){n[w0]=!0}function xn(n){const l=n.currentTarget;if(l!=null&&l._ripple){if(window.clearTimeout(l._ripple.showTimer),n.type==="touchend"&&l._ripple.showTimerCommit){l._ripple.showTimerCommit(),l._ripple.showTimerCommit=null,l._ripple.showTimer=window.setTimeout(()=>{xn(n)});return}window.setTimeout(()=>{l._ripple&&(l._ripple.touched=!1)}),sa.hide(l)}}function ep(n){const l=n.currentTarget;l!=null&&l._ripple&&(l._ripple.showTimerCommit&&(l._ripple.showTimerCommit=null),window.clearTimeout(l._ripple.showTimer))}let Qo=!1;function np(n){!Qo&&(n.keyCode===c1.enter||n.keyCode===c1.space)&&(Qo=!0,Ko(n))}function lp(n){Qo=!1,xn(n)}function rp(n){Qo&&(Qo=!1,xn(n))}function op(n,l,r){const{value:h,modifiers:u}=l,g=tp(h);if(g||sa.hide(n),n._ripple=n._ripple??{},n._ripple.enabled=g,n._ripple.centered=u.center,n._ripple.circle=u.circle,t0(h)&&h.class&&(n._ripple.class=h.class),g&&!r){if(u.stop){n.addEventListener("touchstart",X1,{passive:!0}),n.addEventListener("mousedown",X1);return}n.addEventListener("touchstart",Ko,{passive:!0}),n.addEventListener("touchend",xn,{passive:!0}),n.addEventListener("touchmove",ep,{passive:!0}),n.addEventListener("touchcancel",xn),n.addEventListener("mousedown",Ko),n.addEventListener("mouseup",xn),n.addEventListener("mouseleave",xn),n.addEventListener("keydown",np),n.addEventListener("keyup",lp),n.addEventListener("blur",rp),n.addEventListener("dragstart",xn,{passive:!0})}else!g&&r&&sp(n)}function sp(n){n.removeEventListener("mousedown",Ko),n.removeEventListener("touchstart",Ko),n.removeEventListener("touchend",xn),n.removeEventListener("touchmove",ep),n.removeEventListener("touchcancel",xn),n.removeEventListener("mouseup",xn),n.removeEventListener("mouseleave",xn),n.removeEventListener("keydown",np),n.removeEventListener("keyup",lp),n.removeEventListener("dragstart",xn),n.removeEventListener("blur",rp)}function ik(n,l){op(n,l,!1)}function hk(n){delete n._ripple,sp(n)}function dk(n,l){if(l.value===l.oldValue)return;const r=tp(l.oldValue);op(n,l,r)}const ql={mounted:ik,unmounted:hk,updated:dk},Rh=mt({active:{type:Boolean,default:void 0},symbol:{type:null,default:Ph},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:te,appendIcon:te,block:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:String,...Cn(),...Wt(),...Ee(),...Dn(),...Re(),...so(),...Oh(),...Wl(),...ho(),...Ie(),...gs(),...Ml(),...le({tag:"button"}),...ce(),...Tn({variant:"elevated"})},"VBtn"),dn=At()({name:"VBtn",directives:{Ripple:ql},props:Rh(),emits:{"group:selected":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const{themeClasses:u}=ge(n),{borderClasses:g}=On(n),{colorClasses:v,colorStyles:b,variantClasses:z}=Ir(n),{densityClasses:C}=sn(n),{dimensionStyles:S}=Fn(n),{elevationClasses:A}=Ze(n),{loaderClasses:B}=Ta(n),{locationStyles:P}=Xl(n),{positionClasses:D}=co(n),{roundedClasses:E}=Be(n),{sizeClasses:Y,sizeStyles:O}=io(n),H=ao(n,n.symbol,!1),U=ps(n,r),W=X(()=>{var G;return n.active!==void 0?n.active:U.isLink.value?(G=U.isActive)==null?void 0:G.value:H==null?void 0:H.isSelected.value}),_=X(()=>(H==null?void 0:H.disabled.value)||n.disabled),tt=X(()=>n.variant==="elevated"&&!(n.disabled||n.flat||n.border)),nt=X(()=>{if(n.value!==void 0)return Object(n.value)===n.value?JSON.stringify(n.value,null,0):n.value});function q(G){var et;_.value||U.isLink.value&&(G.metaKey||G.ctrlKey||G.shiftKey||G.button!==0||r.target==="_blank")||((et=U.navigate)==null||et.call(U,G),H==null||H.toggle())}return ok(U,H==null?void 0:H.select),Lt(()=>{var dt,Ct;const G=U.isLink.value?"a":n.tag,et=!!(n.prependIcon||h.prepend),st=!!(n.appendIcon||h.append),rt=!!(n.icon&&n.icon!==!0),ht=(H==null?void 0:H.isSelected.value)&&(!U.isLink.value||((dt=U.isActive)==null?void 0:dt.value))||!H||((Ct=U.isActive)==null?void 0:Ct.value);return Ce(t(G,{type:G==="a"?void 0:"button",class:["v-btn",H==null?void 0:H.selectedClass.value,{"v-btn--active":W.value,"v-btn--block":n.block,"v-btn--disabled":_.value,"v-btn--elevated":tt.value,"v-btn--flat":n.flat,"v-btn--icon":!!n.icon,"v-btn--loading":n.loading,"v-btn--stacked":n.stacked},u.value,g.value,ht?v.value:void 0,C.value,A.value,B.value,D.value,E.value,Y.value,z.value,n.class],style:[ht?b.value:void 0,S.value,P.value,O.value,n.style],disabled:_.value||void 0,href:U.href.value,onClick:q,value:nt.value},{default:()=>{var xt;return[zr(!0,"v-btn"),!n.icon&&et&&t("span",{key:"prepend",class:"v-btn__prepend"},[h.prepend?t(fe,{key:"prepend-defaults",disabled:!n.prependIcon,defaults:{VIcon:{icon:n.prependIcon}}},h.prepend):t(be,{key:"prepend-icon",icon:n.prependIcon},null)]),t("span",{class:"v-btn__content","data-no-activator":""},[!h.default&&rt?t(be,{key:"content-icon",icon:n.icon},null):t(fe,{key:"content-defaults",disabled:!rt,defaults:{VIcon:{icon:n.icon}}},{default:()=>{var wt;return[((wt=h.default)==null?void 0:wt.call(h))??n.text]}})]),!n.icon&&st&&t("span",{key:"append",class:"v-btn__append"},[h.append?t(fe,{key:"append-defaults",disabled:!n.appendIcon,defaults:{VIcon:{icon:n.appendIcon}}},h.append):t(be,{key:"append-icon",icon:n.appendIcon},null)]),!!n.loading&&t("span",{key:"loader",class:"v-btn__loader"},[((xt=h.loader)==null?void 0:xt.call(h))??t(Dh,{color:typeof n.loading=="boolean"?void 0:n.loading,indeterminate:!0,size:"23",width:"2"},null)])]}}),[[mn("ripple"),!_.value&&n.ripple,null]])}),{}}}),ck=mt({...Rh({icon:"$menu",variant:"text"})},"VAppBarNavIcon"),uk=At()({name:"VAppBarNavIcon",props:ck(),setup(n,l){let{slots:r}=l;return Lt(()=>t(dn,o(n,{class:["v-app-bar-nav-icon"]}),r)),{}}}),pk=At()({name:"VAppBarTitle",props:Vu(),setup(n,l){let{slots:r}=l;return Lt(()=>t(Ah,o(n,{class:"v-app-bar-title"}),r)),{}}});const ap=Gn("v-alert-title"),gk=["success","info","warning","error"],wk=mt({border:{type:[Boolean,String],validator:n=>typeof n=="boolean"||["top","end","bottom","start"].includes(n)},borderColor:String,closable:Boolean,closeIcon:{type:te,default:"$close"},closeLabel:{type:String,default:"$vuetify.close"},icon:{type:[Boolean,String,Function,Object],default:null},modelValue:{type:Boolean,default:!0},prominent:Boolean,title:String,text:String,type:{type:String,validator:n=>gk.includes(n)},...Wt(),...Ee(),...Dn(),...Re(),...Wl(),...ho(),...Ie(),...le(),...ce(),...Tn({variant:"flat"})},"VAlert"),vk=At()({name:"VAlert",props:wk(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{emit:r,slots:h}=l;const u=ee(n,"modelValue"),g=X(()=>{if(n.icon!==!1)return n.type?n.icon??`$${n.type}`:n.icon}),v=X(()=>({color:n.color??n.type,variant:n.variant})),{themeClasses:b}=ge(n),{colorClasses:z,colorStyles:C,variantClasses:S}=Ir(v),{densityClasses:A}=sn(n),{dimensionStyles:B}=Fn(n),{elevationClasses:P}=Ze(n),{locationStyles:D}=Xl(n),{positionClasses:E}=co(n),{roundedClasses:Y}=Be(n),{textColorClasses:O,textColorStyles:H}=rn(Bt(n,"borderColor")),{t:U}=Ln(),W=X(()=>({"aria-label":U(n.closeLabel),onClick(_){u.value=!1,r("click:close",_)}}));return()=>{const _=!!(h.prepend||g.value),tt=!!(h.title||n.title),nt=!!(h.close||n.closable);return u.value&&t(n.tag,{class:["v-alert",n.border&&{"v-alert--border":!!n.border,[`v-alert--border-${n.border===!0?"start":n.border}`]:!0},{"v-alert--prominent":n.prominent},b.value,z.value,A.value,P.value,E.value,Y.value,S.value,n.class],style:[C.value,B.value,D.value,n.style],role:"alert"},{default:()=>{var q,G;return[zr(!1,"v-alert"),n.border&&t("div",{key:"border",class:["v-alert__border",O.value],style:H.value},null),_&&t("div",{key:"prepend",class:"v-alert__prepend"},[h.prepend?t(fe,{key:"prepend-defaults",disabled:!g.value,defaults:{VIcon:{density:n.density,icon:g.value,size:n.prominent?44:28}}},h.prepend):t(be,{key:"prepend-icon",density:n.density,icon:g.value,size:n.prominent?44:28},null)]),t("div",{class:"v-alert__content"},[tt&&t(ap,{key:"title"},{default:()=>{var et;return[((et=h.title)==null?void 0:et.call(h))??n.title]}}),((q=h.text)==null?void 0:q.call(h))??n.text,(G=h.default)==null?void 0:G.call(h)]),h.append&&t("div",{key:"append",class:"v-alert__append"},[h.append()]),nt&&t("div",{key:"close",class:"v-alert__close"},[h.close?t(fe,{key:"close-defaults",defaults:{VBtn:{icon:n.closeIcon,size:"x-small",variant:"text"}}},{default:()=>{var et;return[(et=h.close)==null?void 0:et.call(h,{props:W.value})]}}):t(dn,o({key:"close-btn",icon:n.closeIcon,size:"x-small",variant:"text"},W.value),null)])]}})}}});const fk=mt({text:String,clickable:Boolean,...Wt(),...ce()},"VLabel"),uo=At()({name:"VLabel",props:fk(),setup(n,l){let{slots:r}=l;return Lt(()=>{var h;return t("label",{class:["v-label",{"v-label--clickable":n.clickable},n.class],style:n.style},[n.text,(h=r.default)==null?void 0:h.call(r)])}),{}}});const ip=Symbol.for("vuetify:selection-control-group"),Eh=mt({color:String,disabled:{type:Boolean,default:null},defaultsTarget:String,error:Boolean,id:String,inline:Boolean,falseIcon:te,trueIcon:te,ripple:{type:Boolean,default:!0},multiple:{type:Boolean,default:null},name:String,readonly:Boolean,modelValue:null,type:String,valueComparator:{type:Function,default:kr},...Wt(),...Ee(),...ce()},"SelectionControlGroup"),mk=mt({...Eh({defaultsTarget:"VSelectionControl"})},"VSelectionControlGroup"),hp=At()({name:"VSelectionControlGroup",props:mk(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),u=on(),g=X(()=>n.id||`v-selection-control-group-${u}`),v=X(()=>n.name||g.value),b=new Set;return ye(ip,{modelValue:h,forceUpdate:()=>{b.forEach(z=>z())},onForceUpdate:z=>{b.add(z),ln(()=>{b.delete(z)})}}),Fe({[n.defaultsTarget]:{color:Bt(n,"color"),disabled:Bt(n,"disabled"),density:Bt(n,"density"),error:Bt(n,"error"),inline:Bt(n,"inline"),modelValue:h,multiple:X(()=>!!n.multiple||n.multiple==null&&Array.isArray(h.value)),name:v,falseIcon:Bt(n,"falseIcon"),trueIcon:Bt(n,"trueIcon"),readonly:Bt(n,"readonly"),ripple:Bt(n,"ripple"),type:Bt(n,"type"),valueComparator:Bt(n,"valueComparator")}}),Lt(()=>{var z;return t("div",{class:["v-selection-control-group",{"v-selection-control-group--inline":n.inline},n.class],style:n.style,role:n.type==="radio"?"radiogroup":void 0},[(z=r.default)==null?void 0:z.call(r)])}),{}}}),Ra=mt({label:String,trueValue:null,falseValue:null,value:null,...Wt(),...Eh()},"VSelectionControl");function kk(n){const l=he(ip,void 0),{densityClasses:r}=sn(n),h=ee(n,"modelValue"),u=X(()=>n.trueValue!==void 0?n.trueValue:n.value!==void 0?n.value:!0),g=X(()=>n.falseValue!==void 0?n.falseValue:!1),v=X(()=>!!n.multiple||n.multiple==null&&Array.isArray(h.value)),b=X({get(){const A=l?l.modelValue.value:h.value;return v.value?A.some(B=>n.valueComparator(B,u.value)):n.valueComparator(A,u.value)},set(A){if(n.readonly)return;const B=A?u.value:g.value;let P=B;v.value&&(P=A?[...Bn(h.value),B]:Bn(h.value).filter(D=>!n.valueComparator(D,u.value))),l?l.modelValue.value=P:h.value=P}}),{textColorClasses:z,textColorStyles:C}=rn(X(()=>b.value&&!n.error&&!n.disabled?n.color:void 0)),S=X(()=>b.value?n.trueIcon:n.falseIcon);return{group:l,densityClasses:r,trueValue:u,falseValue:g,model:b,textColorClasses:z,textColorStyles:C,icon:S}}const wr=At()({name:"VSelectionControl",directives:{Ripple:ql},inheritAttrs:!1,props:Ra(),emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const{group:u,densityClasses:g,icon:v,model:b,textColorClasses:z,textColorStyles:C,trueValue:S}=kk(n),A=on(),B=X(()=>n.id||`input-${A}`),P=_t(!1),D=_t(!1),E=Pt();u==null||u.onForceUpdate(()=>{E.value&&(E.value.checked=b.value)});function Y(U){P.value=!0,Ur(U.target,":focus-visible")!==!1&&(D.value=!0)}function O(){P.value=!1,D.value=!1}function H(U){n.readonly&&u&&pe(()=>u.forceUpdate()),b.value=U.target.checked}return Lt(()=>{var nt,q;const U=h.label?h.label({label:n.label,props:{for:B.value}}):n.label,[W,_]=br(r),tt=t("input",o({ref:E,checked:b.value,disabled:!!(n.readonly||n.disabled),id:B.value,onBlur:O,onFocus:Y,onInput:H,"aria-disabled":!!(n.readonly||n.disabled),type:n.type,value:S.value,name:n.name,"aria-checked":n.type==="checkbox"?b.value:void 0},_),null);return t("div",o({class:["v-selection-control",{"v-selection-control--dirty":b.value,"v-selection-control--disabled":n.disabled,"v-selection-control--error":n.error,"v-selection-control--focused":P.value,"v-selection-control--focus-visible":D.value,"v-selection-control--inline":n.inline},g.value,n.class]},W,{style:n.style}),[t("div",{class:["v-selection-control__wrapper",z.value],style:C.value},[(nt=h.default)==null?void 0:nt.call(h),Ce(t("div",{class:["v-selection-control__input"]},[((q=h.input)==null?void 0:q.call(h,{model:b,textColorClasses:z,textColorStyles:C,inputNode:tt,icon:v.value,props:{onFocus:Y,onBlur:O,id:B.value}}))??t(Zt,null,[v.value&&t(be,{key:"icon",icon:v.value},null),tt])]),[[mn("ripple"),n.ripple&&[!n.disabled&&!n.readonly,null,["center","circle"]]]])]),U&&t(uo,{for:B.value,clickable:!0,onClick:G=>G.stopPropagation()},{default:()=>[U]})])}),{isFocused:P,input:E}}}),dp=mt({indeterminate:Boolean,indeterminateIcon:{type:te,default:"$checkboxIndeterminate"},...Ra({falseIcon:"$checkboxOff",trueIcon:"$checkboxOn"})},"VCheckboxBtn"),Qr=At()({name:"VCheckboxBtn",props:dp(),emits:{"update:modelValue":n=>!0,"update:indeterminate":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"indeterminate"),u=ee(n,"modelValue");function g(z){h.value&&(h.value=!1)}const v=X(()=>h.value?n.indeterminateIcon:n.falseIcon),b=X(()=>h.value?n.indeterminateIcon:n.trueIcon);return Lt(()=>{const z=jn(wr.filterProps(n)[0],["modelValue"]);return t(wr,o(z,{modelValue:u.value,"onUpdate:modelValue":[C=>u.value=C,g],class:["v-checkbox-btn",n.class],style:n.style,type:"checkbox",falseIcon:v.value,trueIcon:b.value,"aria-checked":h.value?"mixed":void 0}),r)}),{}}});function cp(n){const{t:l}=Ln();function r(h){let{name:u}=h;const g={prepend:"prependAction",prependInner:"prependAction",append:"appendAction",appendInner:"appendAction",clear:"clear"}[u],v=n[`onClick:${u}`],b=v&&g?l(`$vuetify.input.${g}`,n.label??""):void 0;return t(be,{icon:n[`${u}Icon`],"aria-label":b,onClick:v},null)}return{InputIcon:r}}const bk=mt({active:Boolean,color:String,messages:{type:[Array,String],default:()=>[]},...Wt(),...bl({transition:{component:Hh,leaveAbsolute:!0,group:!0}})},"VMessages"),up=At()({name:"VMessages",props:bk(),setup(n,l){let{slots:r}=l;const h=X(()=>Bn(n.messages)),{textColorClasses:u,textColorStyles:g}=rn(X(()=>n.color));return Lt(()=>t(Wn,{transition:n.transition,tag:"div",class:["v-messages",u.value,n.class],style:[g.value,n.style],role:"alert","aria-live":"polite"},{default:()=>[n.active&&h.value.map((v,b)=>t("div",{class:"v-messages__message",key:`${b}-${h.value}`},[r.message?r.message({message:v}):v]))]})),{}}}),Ea=mt({focused:Boolean,"onUpdate:focused":tl()},"focus");function Yl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl();const r=ee(n,"focused"),h=X(()=>({[`${l}--focused`]:r.value}));function u(){r.value=!0}function g(){r.value=!1}return{focusClasses:h,isFocused:r,focus:u,blur:g}}const pp=Symbol.for("vuetify:form"),Mk=mt({disabled:Boolean,fastFail:Boolean,readonly:Boolean,modelValue:{type:Boolean,default:null},validateOn:{type:String,default:"input"}},"form");function xk(n){const l=ee(n,"modelValue"),r=X(()=>n.disabled),h=X(()=>n.readonly),u=_t(!1),g=Pt([]),v=Pt([]);async function b(){const S=[];let A=!0;v.value=[],u.value=!0;for(const B of g.value){const P=await B.validate();if(P.length>0&&(A=!1,S.push({id:B.id,errorMessages:P})),!A&&n.fastFail)break}return v.value=S,u.value=!1,{valid:A,errors:v.value}}function z(){g.value.forEach(S=>S.reset())}function C(){g.value.forEach(S=>S.resetValidation())}return Vt(g,()=>{let S=0,A=0;const B=[];for(const P of g.value)P.isValid===!1?(A++,B.push({id:P.id,errorMessages:P.errorMessages})):P.isValid===!0&&S++;v.value=B,l.value=A>0?!1:S===g.value.length?!0:null},{deep:!0}),ye(pp,{register:S=>{let{id:A,validate:B,reset:P,resetValidation:D}=S;g.value.some(E=>E.id===A),g.value.push({id:A,validate:B,reset:P,resetValidation:D,isValid:null,errorMessages:[]})},unregister:S=>{g.value=g.value.filter(A=>A.id!==S)},update:(S,A,B)=>{const P=g.value.find(D=>D.id===S);P&&(P.isValid=A,P.errorMessages=B)},isDisabled:r,isReadonly:h,isValidating:u,isValid:l,items:g,validateOn:Bt(n,"validateOn")}),{errors:v,isDisabled:r,isReadonly:h,isValidating:u,isValid:l,items:g,validate:b,reset:z,resetValidation:C}}function Va(){return he(pp,null)}const gp=mt({disabled:{type:Boolean,default:null},error:Boolean,errorMessages:{type:[Array,String],default:()=>[]},maxErrors:{type:[Number,String],default:1},name:String,label:String,readonly:{type:Boolean,default:null},rules:{type:Array,default:()=>[]},modelValue:null,validateOn:String,validationValue:null,...Ea()},"validation");function wp(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:kl(),r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:on();const h=ee(n,"modelValue"),u=X(()=>n.validationValue===void 0?h.value:n.validationValue),g=Va(),v=Pt([]),b=_t(!0),z=X(()=>!!(Bn(h.value===""?null:h.value).length||Bn(u.value===""?null:u.value).length)),C=X(()=>!!(n.disabled??(g==null?void 0:g.isDisabled.value))),S=X(()=>!!(n.readonly??(g==null?void 0:g.isReadonly.value))),A=X(()=>n.errorMessages.length?Bn(n.errorMessages).slice(0,Math.max(0,+n.maxErrors)):v.value),B=X(()=>{let W=(n.validateOn??(g==null?void 0:g.validateOn.value))||"input";W==="lazy"&&(W="input lazy");const _=new Set((W==null?void 0:W.split(" "))??[]);return{blur:_.has("blur")||_.has("input"),input:_.has("input"),submit:_.has("submit"),lazy:_.has("lazy")}}),P=X(()=>n.error||n.errorMessages.length?!1:n.rules.length?b.value?v.value.length||B.value.lazy?null:!0:!v.value.length:!0),D=_t(!1),E=X(()=>({[`${l}--error`]:P.value===!1,[`${l}--dirty`]:z.value,[`${l}--disabled`]:C.value,[`${l}--readonly`]:S.value})),Y=X(()=>n.name??He(r));hs(()=>{g==null||g.register({id:Y.value,validate:U,reset:O,resetValidation:H})}),Ue(()=>{g==null||g.unregister(Y.value)}),Te(async()=>{B.value.lazy||await U(!0),g==null||g.update(Y.value,P.value,A.value)}),Vl(()=>B.value.input,()=>{Vt(u,()=>{if(u.value!=null)U();else if(n.focused){const W=Vt(()=>n.focused,_=>{_||U(),W()})}})}),Vl(()=>B.value.blur,()=>{Vt(()=>n.focused,W=>{W||U()})}),Vt(P,()=>{g==null||g.update(Y.value,P.value,A.value)});function O(){h.value=null,pe(H)}function H(){b.value=!0,B.value.lazy?v.value=[]:U(!0)}async function U(){let W=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;const _=[];D.value=!0;for(const tt of n.rules){if(_.length>=+(n.maxErrors??1))break;const q=await(typeof tt=="function"?tt:()=>tt)(u.value);if(q!==!0){if(q!==!1&&typeof q!="string"){console.warn(`${q} is not a valid value. Rule functions must return boolean true or a string.`);continue}_.push(q||"")}}return v.value=_,D.value=!1,b.value=W,v.value}return{errorMessages:A,isDirty:z,isDisabled:C,isReadonly:S,isPristine:b,isValid:P,isValidating:D,reset:O,resetValidation:H,validate:U,validationClasses:E}}const xl=mt({id:String,appendIcon:te,centerAffix:{type:Boolean,default:!0},prependIcon:te,hideDetails:[Boolean,String],hint:String,persistentHint:Boolean,messages:{type:[Array,String],default:()=>[]},direction:{type:String,default:"horizontal",validator:n=>["horizontal","vertical"].includes(n)},"onClick:prepend":tl(),"onClick:append":tl(),...Wt(),...Ee(),...gp()},"VInput"),Ge=At()({name:"VInput",props:{...xl()},emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h,emit:u}=l;const{densityClasses:g}=sn(n),{rtlClasses:v}=Xe(),{InputIcon:b}=cp(n),z=on(),C=X(()=>n.id||`input-${z}`),S=X(()=>`${C.value}-messages`),{errorMessages:A,isDirty:B,isDisabled:P,isReadonly:D,isPristine:E,isValid:Y,isValidating:O,reset:H,resetValidation:U,validate:W,validationClasses:_}=wp(n,"v-input",C),tt=X(()=>({id:C,messagesId:S,isDirty:B,isDisabled:P,isReadonly:D,isPristine:E,isValid:Y,isValidating:O,reset:H,resetValidation:U,validate:W})),nt=X(()=>{var q;return(q=n.errorMessages)!=null&&q.length||!E.value&&A.value.length?A.value:n.hint&&(n.persistentHint||n.focused)?n.hint:n.messages});return Lt(()=>{var rt,ht,dt,Ct;const q=!!(h.prepend||n.prependIcon),G=!!(h.append||n.appendIcon),et=nt.value.length>0,st=!n.hideDetails||n.hideDetails==="auto"&&(et||!!h.details);return t("div",{class:["v-input",`v-input--${n.direction}`,{"v-input--center-affix":n.centerAffix},g.value,v.value,_.value,n.class],style:n.style},[q&&t("div",{key:"prepend",class:"v-input__prepend"},[(rt=h.prepend)==null?void 0:rt.call(h,tt.value),n.prependIcon&&t(b,{key:"prepend-icon",name:"prepend"},null)]),h.default&&t("div",{class:"v-input__control"},[(ht=h.default)==null?void 0:ht.call(h,tt.value)]),G&&t("div",{key:"append",class:"v-input__append"},[n.appendIcon&&t(b,{key:"append-icon",name:"append"},null),(dt=h.append)==null?void 0:dt.call(h,tt.value)]),st&&t("div",{class:"v-input__details"},[t(up,{id:S.value,active:et,messages:nt.value},{message:h.message}),(Ct=h.details)==null?void 0:Ct.call(h,tt.value)])])}),{reset:H,resetValidation:U,validate:W}}}),zk=mt({...xl(),...jn(dp(),["inline"])},"VCheckbox"),Ik=At()({name:"VCheckbox",inheritAttrs:!1,props:zk(),emits:{"update:modelValue":n=>!0,"update:focused":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const u=ee(n,"modelValue"),{isFocused:g,focus:v,blur:b}=Yl(n),z=on(),C=X(()=>n.id||`checkbox-${z}`);return Lt(()=>{const[S,A]=br(r),[B,P]=Ge.filterProps(n),[D,E]=Qr.filterProps(n);return t(Ge,o({class:["v-checkbox",n.class]},S,B,{modelValue:u.value,"onUpdate:modelValue":Y=>u.value=Y,id:C.value,focused:g.value,style:n.style}),{...h,default:Y=>{let{id:O,messagesId:H,isDisabled:U,isReadonly:W}=Y;return t(Qr,o(D,{id:O.value,"aria-describedby":H.value,disabled:U.value,readonly:W.value},A,{modelValue:u.value,"onUpdate:modelValue":_=>u.value=_,onFocus:v,onBlur:b}),h)}})}),{}}});const yk=mt({start:Boolean,end:Boolean,icon:te,image:String,...Wt(),...Ee(),...Ie(),...Ml(),...le(),...ce(),...Tn({variant:"flat"})},"VAvatar"),_l=At()({name:"VAvatar",props:yk(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{colorClasses:u,colorStyles:g,variantClasses:v}=Ir(n),{densityClasses:b}=sn(n),{roundedClasses:z}=Be(n),{sizeClasses:C,sizeStyles:S}=io(n);return Lt(()=>t(n.tag,{class:["v-avatar",{"v-avatar--start":n.start,"v-avatar--end":n.end},h.value,u.value,b.value,z.value,C.value,v.value,n.class],style:[g.value,S.value,n.style]},{default:()=>{var A;return[n.image?t(gr,{key:"image",src:n.image,alt:"",cover:!0},null):n.icon?t(be,{key:"icon",icon:n.icon},null):(A=r.default)==null?void 0:A.call(r),zr(!1,"v-avatar")]}})),{}}});const vp=Symbol.for("vuetify:v-chip-group"),Ck=mt({column:Boolean,filter:Boolean,valueComparator:{type:Function,default:kr},...Wt(),...oo({selectedClass:"v-chip--selected"}),...le(),...ce(),...Tn({variant:"tonal"})},"VChipGroup"),Sk=At()({name:"VChipGroup",props:Ck(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{isSelected:u,select:g,next:v,prev:b,selected:z}=yr(n,vp);return Fe({VChip:{color:Bt(n,"color"),disabled:Bt(n,"disabled"),filter:Bt(n,"filter"),variant:Bt(n,"variant")}}),Lt(()=>t(n.tag,{class:["v-chip-group",{"v-chip-group--column":n.column},h.value,n.class],style:n.style},{default:()=>{var C;return[(C=r.default)==null?void 0:C.call(r,{isSelected:u,select:g,next:v,prev:b,selected:z.value})]}})),{}}}),$k=mt({activeClass:String,appendAvatar:String,appendIcon:te,closable:Boolean,closeIcon:{type:te,default:"$delete"},closeLabel:{type:String,default:"$vuetify.close"},draggable:Boolean,filter:Boolean,filterIcon:{type:String,default:"$complete"},label:Boolean,link:{type:Boolean,default:void 0},pill:Boolean,prependAvatar:String,prependIcon:te,ripple:{type:[Boolean,Object],default:!0},text:String,modelValue:{type:Boolean,default:!0},onClick:tl(),onClickOnce:tl(),...Cn(),...Wt(),...Ee(),...Re(),...so(),...Ie(),...gs(),...Ml(),...le({tag:"span"}),...ce(),...Tn({variant:"tonal"})},"VChip"),ws=At()({name:"VChip",directives:{Ripple:ql},props:$k(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0,"group:selected":n=>!0,click:n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{t:g}=Ln(),{borderClasses:v}=On(n),{colorClasses:b,colorStyles:z,variantClasses:C}=Ir(n),{densityClasses:S}=sn(n),{elevationClasses:A}=Ze(n),{roundedClasses:B}=Be(n),{sizeClasses:P}=io(n),{themeClasses:D}=ge(n),E=ee(n,"modelValue"),Y=ao(n,vp,!1),O=ps(n,r),H=X(()=>n.link!==!1&&O.isLink.value),U=X(()=>!n.disabled&&n.link!==!1&&(!!Y||n.link||O.isClickable.value)),W=X(()=>({"aria-label":g(n.closeLabel),onClick(nt){nt.stopPropagation(),E.value=!1,h("click:close",nt)}}));function _(nt){var q;h("click",nt),U.value&&((q=O.navigate)==null||q.call(O,nt),Y==null||Y.toggle())}function tt(nt){(nt.key==="Enter"||nt.key===" ")&&(nt.preventDefault(),_(nt))}return()=>{const nt=O.isLink.value?"a":n.tag,q=!!(n.appendIcon||n.appendAvatar),G=!!(q||u.append),et=!!(u.close||n.closable),st=!!(u.filter||n.filter)&&Y,rt=!!(n.prependIcon||n.prependAvatar),ht=!!(rt||u.prepend),dt=!Y||Y.isSelected.value;return E.value&&Ce(t(nt,{class:["v-chip",{"v-chip--disabled":n.disabled,"v-chip--label":n.label,"v-chip--link":U.value,"v-chip--filter":st,"v-chip--pill":n.pill},D.value,v.value,dt?b.value:void 0,S.value,A.value,B.value,P.value,C.value,Y==null?void 0:Y.selectedClass.value,n.class],style:[dt?z.value:void 0,n.style],disabled:n.disabled||void 0,draggable:n.draggable,href:O.href.value,tabindex:U.value?0:void 0,onClick:_,onKeydown:U.value&&!H.value&&tt},{default:()=>{var Ct;return[zr(U.value,"v-chip"),st&&t(Nh,{key:"filter"},{default:()=>[Ce(t("div",{class:"v-chip__filter"},[u.filter?t(fe,{key:"filter-defaults",disabled:!n.filterIcon,defaults:{VIcon:{icon:n.filterIcon}}},u.filter):t(be,{key:"filter-icon",icon:n.filterIcon},null)]),[[Nn,Y.isSelected.value]])]}),ht&&t("div",{key:"prepend",class:"v-chip__prepend"},[u.prepend?t(fe,{key:"prepend-defaults",disabled:!rt,defaults:{VAvatar:{image:n.prependAvatar,start:!0},VIcon:{icon:n.prependIcon,start:!0}}},u.prepend):t(Zt,null,[n.prependIcon&&t(be,{key:"prepend-icon",icon:n.prependIcon,start:!0},null),n.prependAvatar&&t(_l,{key:"prepend-avatar",image:n.prependAvatar,start:!0},null)])]),t("div",{class:"v-chip__content"},[((Ct=u.default)==null?void 0:Ct.call(u,{isSelected:Y==null?void 0:Y.isSelected.value,selectedClass:Y==null?void 0:Y.selectedClass.value,select:Y==null?void 0:Y.select,toggle:Y==null?void 0:Y.toggle,value:Y==null?void 0:Y.value.value,disabled:n.disabled}))??n.text]),G&&t("div",{key:"append",class:"v-chip__append"},[u.append?t(fe,{key:"append-defaults",disabled:!q,defaults:{VAvatar:{end:!0,image:n.appendAvatar},VIcon:{end:!0,icon:n.appendIcon}}},u.append):t(Zt,null,[n.appendIcon&&t(be,{key:"append-icon",end:!0,icon:n.appendIcon},null),n.appendAvatar&&t(_l,{key:"append-avatar",end:!0,image:n.appendAvatar},null)])]),et&&t("div",o({key:"close",class:"v-chip__close"},W.value),[u.close?t(fe,{key:"close-defaults",defaults:{VIcon:{icon:n.closeIcon,size:"x-small"}}},u.close):t(be,{key:"close-icon",icon:n.closeIcon,size:"x-small"},null)])]}}),[[mn("ripple"),U.value&&n.ripple,null]])}}});const f0=Symbol.for("vuetify:list");function fp(){const n=he(f0,{hasPrepend:_t(!1),updateHasPrepend:()=>null}),l={hasPrepend:_t(!1),updateHasPrepend:r=>{r&&(l.hasPrepend.value=r)}};return ye(f0,l),n}function mp(){return he(f0,null)}const Ak={open:n=>{let{id:l,value:r,opened:h,parents:u}=n;if(r){const g=new Set;g.add(l);let v=u.get(l);for(;v!=null;)g.add(v),v=u.get(v);return g}else return h.delete(l),h},select:()=>null},kp={open:n=>{let{id:l,value:r,opened:h,parents:u}=n;if(r){let g=u.get(l);for(h.add(l);g!=null&&g!==l;)h.add(g),g=u.get(g);return h}else h.delete(l);return h},select:()=>null},Bk={open:kp.open,select:n=>{let{id:l,value:r,opened:h,parents:u}=n;if(!r)return h;const g=[];let v=u.get(l);for(;v!=null;)g.push(v),v=u.get(v);return new Set(g)}},Vh=n=>{const l={select:r=>{let{id:h,value:u,selected:g}=r;if(h=ne(h),n&&!u){const v=Array.from(g.entries()).reduce((b,z)=>{let[C,S]=z;return S==="on"?[...b,C]:b},[]);if(v.length===1&&v[0]===h)return g}return g.set(h,u?"on":"off"),g},in:(r,h,u)=>{let g=new Map;for(const v of r||[])g=l.select({id:v,value:!0,selected:new Map(g),children:h,parents:u});return g},out:r=>{const h=[];for(const[u,g]of r.entries())g==="on"&&h.push(u);return h}};return l},bp=n=>{const l=Vh(n);return{select:h=>{let{selected:u,id:g,...v}=h;g=ne(g);const b=u.has(g)?new Map([[g,u.get(g)]]):new Map;return l.select({...v,id:g,selected:b})},in:(h,u,g)=>{let v=new Map;return h!=null&&h.length&&(v=l.in(h.slice(0,1),u,g)),v},out:(h,u,g)=>l.out(h,u,g)}},Hk=n=>{const l=Vh(n);return{select:h=>{let{id:u,selected:g,children:v,...b}=h;return u=ne(u),v.has(u)?g:l.select({id:u,selected:g,children:v,...b})},in:l.in,out:l.out}},Nk=n=>{const l=bp(n);return{select:h=>{let{id:u,selected:g,children:v,...b}=h;return u=ne(u),v.has(u)?g:l.select({id:u,selected:g,children:v,...b})},in:l.in,out:l.out}},jk=n=>{const l={select:r=>{let{id:h,value:u,selected:g,children:v,parents:b}=r;h=ne(h);const z=new Map(g),C=[h];for(;C.length;){const A=C.shift();g.set(A,u?"on":"off"),v.has(A)&&C.push(...v.get(A))}let S=b.get(h);for(;S;){const A=v.get(S),B=A.every(D=>g.get(D)==="on"),P=A.every(D=>!g.has(D)||g.get(D)==="off");g.set(S,B?"on":P?"off":"indeterminate"),S=b.get(S)}return n&&!u&&Array.from(g.entries()).reduce((B,P)=>{let[D,E]=P;return E==="on"?[...B,D]:B},[]).length===0?z:g},in:(r,h,u)=>{let g=new Map;for(const v of r||[])g=l.select({id:v,value:!0,selected:new Map(g),children:h,parents:u});return g},out:(r,h)=>{const u=[];for(const[g,v]of r.entries())v==="on"&&!h.has(g)&&u.push(g);return u}};return l},Jo=Symbol.for("vuetify:nested"),Mp={id:_t(),root:{register:()=>null,unregister:()=>null,parents:Pt(new Map),children:Pt(new Map),open:()=>null,openOnSelect:()=>null,select:()=>null,opened:Pt(new Set),selected:Pt(new Map),selectedValues:Pt([])}},Pk=mt({selectStrategy:[String,Function],openStrategy:[String,Object],opened:Array,selected:Array,mandatory:Boolean},"nested"),Lk=n=>{let l=!1;const r=Pt(new Map),h=Pt(new Map),u=ee(n,"opened",n.opened,A=>new Set(A),A=>[...A.values()]),g=X(()=>{if(typeof n.selectStrategy=="object")return n.selectStrategy;switch(n.selectStrategy){case"single-leaf":return Nk(n.mandatory);case"leaf":return Hk(n.mandatory);case"independent":return Vh(n.mandatory);case"single-independent":return bp(n.mandatory);case"classic":default:return jk(n.mandatory)}}),v=X(()=>{if(typeof n.openStrategy=="object")return n.openStrategy;switch(n.openStrategy){case"list":return Bk;case"single":return Ak;case"multiple":default:return kp}}),b=ee(n,"selected",n.selected,A=>g.value.in(A,r.value,h.value),A=>g.value.out(A,r.value,h.value));Ue(()=>{l=!0});function z(A){const B=[];let P=A;for(;P!=null;)B.unshift(P),P=h.value.get(P);return B}const C=We("nested"),S={id:_t(),root:{opened:u,selected:b,selectedValues:X(()=>{const A=[];for(const[B,P]of b.value.entries())P==="on"&&A.push(B);return A}),register:(A,B,P)=>{B&&A!==B&&h.value.set(A,B),P&&r.value.set(A,[]),B!=null&&r.value.set(B,[...r.value.get(B)||[],A])},unregister:A=>{if(l)return;r.value.delete(A);const B=h.value.get(A);if(B){const P=r.value.get(B)??[];r.value.set(B,P.filter(D=>D!==A))}h.value.delete(A),u.value.delete(A)},open:(A,B,P)=>{C.emit("click:open",{id:A,value:B,path:z(A),event:P});const D=v.value.open({id:A,value:B,opened:new Set(u.value),children:r.value,parents:h.value,event:P});D&&(u.value=D)},openOnSelect:(A,B,P)=>{const D=v.value.select({id:A,value:B,selected:new Map(b.value),opened:new Set(u.value),children:r.value,parents:h.value,event:P});D&&(u.value=D)},select:(A,B,P)=>{C.emit("click:select",{id:A,value:B,path:z(A),event:P});const D=g.value.select({id:A,value:B,selected:new Map(b.value),children:r.value,parents:h.value,event:P});D&&(b.value=D),S.root.openOnSelect(A,B,P)},children:r,parents:h}};return ye(Jo,S),S.root},xp=(n,l)=>{const r=he(Jo,Mp),h=Symbol(on()),u=X(()=>n.value!==void 0?n.value:h),g={...r,id:u,open:(v,b)=>r.root.open(u.value,v,b),openOnSelect:(v,b)=>r.root.openOnSelect(u.value,v,b),isOpen:X(()=>r.root.opened.value.has(u.value)),parent:X(()=>r.root.parents.value.get(u.value)),select:(v,b)=>r.root.select(u.value,v,b),isSelected:X(()=>r.root.selected.value.get(ne(u.value))==="on"),isIndeterminate:X(()=>r.root.selected.value.get(u.value)==="indeterminate"),isLeaf:X(()=>!r.root.children.value.get(u.value)),isGroupActivator:r.isGroupActivator};return!r.isGroupActivator&&r.root.register(u.value,r.id.value,l),Ue(()=>{!r.isGroupActivator&&r.root.unregister(u.value)}),l&&ye(Jo,g),g},Dk=()=>{const n=he(Jo,Mp);ye(Jo,{...n,isGroupActivator:!0})},Fk=Pn({name:"VListGroupActivator",setup(n,l){let{slots:r}=l;return Dk(),()=>{var h;return(h=r.default)==null?void 0:h.call(r)}}}),Ok=mt({activeColor:String,baseColor:String,color:String,collapseIcon:{type:te,default:"$collapse"},expandIcon:{type:te,default:"$expand"},prependIcon:te,appendIcon:te,fluid:Boolean,subgroup:Boolean,title:String,value:null,...Wt(),...le()},"VListGroup"),m0=At()({name:"VListGroup",props:Ok(),setup(n,l){let{slots:r}=l;const{isOpen:h,open:u,id:g}=xp(Bt(n,"value"),!0),v=X(()=>`v-list-group--id-${String(g.value)}`),b=mp(),{isBooted:z}=xr();function C(P){u(!h.value,P)}const S=X(()=>({onClick:C,class:"v-list-group__header",id:v.value})),A=X(()=>h.value?n.collapseIcon:n.expandIcon),B=X(()=>({VListItem:{active:h.value,activeColor:n.activeColor,baseColor:n.baseColor,color:n.color,prependIcon:n.prependIcon||n.subgroup&&A.value,appendIcon:n.appendIcon||!n.subgroup&&A.value,title:n.title,value:n.value}}));return Lt(()=>t(n.tag,{class:["v-list-group",{"v-list-group--prepend":b==null?void 0:b.hasPrepend.value,"v-list-group--fluid":n.fluid,"v-list-group--subgroup":n.subgroup,"v-list-group--open":h.value},n.class],style:n.style},{default:()=>[r.activator&&t(fe,{defaults:B.value},{default:()=>[t(Fk,null,{default:()=>[r.activator({props:S.value,isOpen:h.value})]})]}),t(Wn,{transition:{component:Fa},disabled:!z.value},{default:()=>{var P;return[Ce(t("div",{class:"v-list-group__items",role:"group","aria-labelledby":v.value},[(P=r.default)==null?void 0:P.call(r)]),[[Nn,h.value]])]}})]})),{}}});const zp=Gn("v-list-item-subtitle"),Ip=Gn("v-list-item-title"),Tk=mt({active:{type:Boolean,default:void 0},activeClass:String,activeColor:String,appendAvatar:String,appendIcon:te,baseColor:String,disabled:Boolean,lines:String,link:{type:Boolean,default:void 0},nav:Boolean,prependAvatar:String,prependIcon:te,ripple:{type:[Boolean,Object],default:!0},subtitle:[String,Number,Boolean],title:[String,Number,Boolean],value:null,onClick:tl(),onClickOnce:tl(),...Cn(),...Wt(),...Ee(),...Dn(),...Re(),...Ie(),...gs(),...le(),...ce(),...Tn({variant:"text"})},"VListItem"),gl=At()({name:"VListItem",directives:{Ripple:ql},props:Tk(),emits:{click:n=>!0},setup(n,l){let{attrs:r,slots:h,emit:u}=l;const g=ps(n,r),v=X(()=>n.value===void 0?g.href.value:n.value),{select:b,isSelected:z,isIndeterminate:C,isGroupActivator:S,root:A,parent:B,openOnSelect:P}=xp(v,!1),D=mp(),E=X(()=>{var gt;return n.active!==!1&&(n.active||((gt=g.isActive)==null?void 0:gt.value)||z.value)}),Y=X(()=>n.link!==!1&&g.isLink.value),O=X(()=>!n.disabled&&n.link!==!1&&(n.link||g.isClickable.value||n.value!=null&&!!D)),H=X(()=>n.rounded||n.nav),U=X(()=>n.color??n.activeColor),W=X(()=>({color:E.value?U.value??n.baseColor:n.baseColor,variant:n.variant}));Vt(()=>{var gt;return(gt=g.isActive)==null?void 0:gt.value},gt=>{gt&&B.value!=null&&A.open(B.value,!0),gt&&P(gt)},{immediate:!0});const{themeClasses:_}=ge(n),{borderClasses:tt}=On(n),{colorClasses:nt,colorStyles:q,variantClasses:G}=Ir(W),{densityClasses:et}=sn(n),{dimensionStyles:st}=Fn(n),{elevationClasses:rt}=Ze(n),{roundedClasses:ht}=Be(H),dt=X(()=>n.lines?`v-list-item--${n.lines}-line`:void 0),Ct=X(()=>({isActive:E.value,select:b,isSelected:z.value,isIndeterminate:C.value}));function xt(gt){var It;u("click",gt),!(S||!O.value)&&((It=g.navigate)==null||It.call(g,gt),n.value!=null&&b(!z.value,gt))}function wt(gt){(gt.key==="Enter"||gt.key===" ")&&(gt.preventDefault(),xt(gt))}return Lt(()=>{const gt=Y.value?"a":n.tag,It=h.title||n.title,$t=h.subtitle||n.subtitle,Tt=!!(n.appendAvatar||n.appendIcon),Ft=!!(Tt||h.append),Kt=!!(n.prependAvatar||n.prependIcon),Qt=!!(Kt||h.prepend);return D==null||D.updateHasPrepend(Qt),n.activeColor&&v5("active-color",["color","base-color"]),Ce(t(gt,{class:["v-list-item",{"v-list-item--active":E.value,"v-list-item--disabled":n.disabled,"v-list-item--link":O.value,"v-list-item--nav":n.nav,"v-list-item--prepend":!Qt&&(D==null?void 0:D.hasPrepend.value),[`${n.activeClass}`]:n.activeClass&&E.value},_.value,tt.value,nt.value,et.value,rt.value,dt.value,ht.value,G.value,n.class],style:[q.value,st.value,n.style],href:g.href.value,tabindex:O.value?D?-2:0:void 0,onClick:xt,onKeydown:O.value&&!Y.value&&wt},{default:()=>{var Rt;return[zr(O.value||E.value,"v-list-item"),Qt&&t("div",{key:"prepend",class:"v-list-item__prepend"},[h.prepend?t(fe,{key:"prepend-defaults",disabled:!Kt,defaults:{VAvatar:{density:n.density,image:n.prependAvatar},VIcon:{density:n.density,icon:n.prependIcon},VListItemAction:{start:!0}}},{default:()=>{var ut;return[(ut=h.prepend)==null?void 0:ut.call(h,Ct.value)]}}):t(Zt,null,[n.prependAvatar&&t(_l,{key:"prepend-avatar",density:n.density,image:n.prependAvatar},null),n.prependIcon&&t(be,{key:"prepend-icon",density:n.density,icon:n.prependIcon},null)]),t("div",{class:"v-list-item__spacer"},null)]),t("div",{class:"v-list-item__content","data-no-activator":""},[It&&t(Ip,{key:"title"},{default:()=>{var ut;return[((ut=h.title)==null?void 0:ut.call(h,{title:n.title}))??n.title]}}),$t&&t(zp,{key:"subtitle"},{default:()=>{var ut;return[((ut=h.subtitle)==null?void 0:ut.call(h,{subtitle:n.subtitle}))??n.subtitle]}}),(Rt=h.default)==null?void 0:Rt.call(h,Ct.value)]),Ft&&t("div",{key:"append",class:"v-list-item__append"},[h.append?t(fe,{key:"append-defaults",disabled:!Tt,defaults:{VAvatar:{density:n.density,image:n.appendAvatar},VIcon:{density:n.density,icon:n.appendIcon},VListItemAction:{end:!0}}},{default:()=>{var ut;return[(ut=h.append)==null?void 0:ut.call(h,Ct.value)]}}):t(Zt,null,[n.appendIcon&&t(be,{key:"append-icon",density:n.density,icon:n.appendIcon},null),n.appendAvatar&&t(_l,{key:"append-avatar",density:n.density,image:n.appendAvatar},null)]),t("div",{class:"v-list-item__spacer"},null)])]}}),[[mn("ripple"),O.value&&n.ripple]])}),{}}}),Rk=mt({color:String,inset:Boolean,sticky:Boolean,title:String,...Wt(),...le()},"VListSubheader"),yp=At()({name:"VListSubheader",props:Rk(),setup(n,l){let{slots:r}=l;const{textColorClasses:h,textColorStyles:u}=rn(Bt(n,"color"));return Lt(()=>{const g=!!(r.default||n.title);return t(n.tag,{class:["v-list-subheader",{"v-list-subheader--inset":n.inset,"v-list-subheader--sticky":n.sticky},h.value,n.class],style:[{textColorStyles:u},n.style]},{default:()=>{var v;return[g&&t("div",{class:"v-list-subheader__text"},[((v=r.default)==null?void 0:v.call(r))??n.title])]}})}),{}}});const Ek=mt({color:String,inset:Boolean,length:[Number,String],thickness:[Number,String],vertical:Boolean,...Wt(),...ce()},"VDivider"),Cp=At()({name:"VDivider",props:Ek(),setup(n,l){let{attrs:r}=l;const{themeClasses:h}=ge(n),{textColorClasses:u,textColorStyles:g}=rn(Bt(n,"color")),v=X(()=>{const b={};return n.length&&(b[n.vertical?"maxHeight":"maxWidth"]=Xt(n.length)),n.thickness&&(b[n.vertical?"borderRightWidth":"borderTopWidth"]=Xt(n.thickness)),b});return Lt(()=>t("hr",{class:[{"v-divider":!0,"v-divider--inset":n.inset,"v-divider--vertical":n.vertical},h.value,u.value,n.class],style:[v.value,g.value,n.style],"aria-orientation":!r.role||r.role==="separator"?n.vertical?"vertical":"horizontal":void 0,role:`${r.role||"separator"}`},null)),{}}}),Vk=mt({items:Array},"VListChildren"),Sp=At()({name:"VListChildren",props:Vk(),setup(n,l){let{slots:r}=l;return fp(),()=>{var h,u;return((h=r.default)==null?void 0:h.call(r))??((u=n.items)==null?void 0:u.map(g=>{var P,D;let{children:v,props:b,type:z,raw:C}=g;if(z==="divider")return((P=r.divider)==null?void 0:P.call(r,{props:b}))??t(Cp,b,null);if(z==="subheader")return((D=r.subheader)==null?void 0:D.call(r,{props:b}))??t(yp,b,null);const S={subtitle:r.subtitle?E=>{var Y;return(Y=r.subtitle)==null?void 0:Y.call(r,{...E,item:C})}:void 0,prepend:r.prepend?E=>{var Y;return(Y=r.prepend)==null?void 0:Y.call(r,{...E,item:C})}:void 0,append:r.append?E=>{var Y;return(Y=r.append)==null?void 0:Y.call(r,{...E,item:C})}:void 0,title:r.title?E=>{var Y;return(Y=r.title)==null?void 0:Y.call(r,{...E,item:C})}:void 0},[A,B]=m0.filterProps(b);return v?t(m0,o({value:b==null?void 0:b.value},A),{activator:E=>{let{props:Y}=E;return r.header?r.header({props:{...b,...Y}}):t(gl,o(b,Y),S)},default:()=>t(Sp,{items:v},r)}):r.item?r.item({props:b}):t(gl,b,S)}))}}}),$p=mt({items:{type:Array,default:()=>[]},itemTitle:{type:[String,Array,Function],default:"title"},itemValue:{type:[String,Array,Function],default:"value"},itemChildren:{type:[Boolean,String,Array,Function],default:"children"},itemProps:{type:[Boolean,String,Array,Function],default:"props"},returnObject:Boolean},"list-items");function Or(n,l){const r=tn(l,n.itemTitle,l),h=n.returnObject?l:tn(l,n.itemValue,r),u=tn(l,n.itemChildren),g=n.itemProps===!0?typeof l=="object"&&l!=null&&!Array.isArray(l)?"children"in l?pr(l,["children"])[1]:l:void 0:tn(l,n.itemProps),v={title:r,value:h,...g};return{title:String(v.title??""),value:v.value,props:v,children:Array.isArray(u)?Ap(n,u):void 0,raw:l}}function Ap(n,l){const r=[];for(const h of l)r.push(Or(n,h));return r}function _h(n){const l=X(()=>Ap(n,n.items));return _k(l,r=>Or(n,r))}function _k(n,l){function r(u){return u.filter(g=>g!==null||n.value.some(v=>v.value===null)).map(g=>n.value.find(b=>kr(g,b.value))??l(g))}function h(u){return u.map(g=>{let{value:v}=g;return v})}return{items:n,transformIn:r,transformOut:h}}function Wk(n){return typeof n=="string"||typeof n=="number"||typeof n=="boolean"}function Xk(n,l){const r=tn(l,n.itemType,"item"),h=Wk(l)?l:tn(l,n.itemTitle),u=tn(l,n.itemValue,void 0),g=tn(l,n.itemChildren),v=n.itemProps===!0?pr(l,["children"])[1]:tn(l,n.itemProps),b={title:h,value:u,...v};return{type:r,title:b.title,value:b.value,props:b,children:r==="item"&&g?Bp(n,g):void 0,raw:l}}function Bp(n,l){const r=[];for(const h of l)r.push(Xk(n,h));return r}function qk(n){return{items:X(()=>Bp(n,n.items))}}const Yk=mt({baseColor:String,activeColor:String,activeClass:String,bgColor:String,disabled:Boolean,lines:{type:[Boolean,String],default:"one"},nav:Boolean,...Pk({selectStrategy:"single-leaf",openStrategy:"list"}),...Cn(),...Wt(),...Ee(),...Dn(),...Re(),itemType:{type:String,default:"type"},...$p(),...Ie(),...le(),...ce(),...Tn({variant:"text"})},"VList"),_a=At()({name:"VList",props:Yk(),emits:{"update:selected":n=>!0,"update:opened":n=>!0,"click:open":n=>!0,"click:select":n=>!0},setup(n,l){let{slots:r}=l;const{items:h}=qk(n),{themeClasses:u}=ge(n),{backgroundColorClasses:g,backgroundColorStyles:v}=Ne(Bt(n,"bgColor")),{borderClasses:b}=On(n),{densityClasses:z}=sn(n),{dimensionStyles:C}=Fn(n),{elevationClasses:S}=Ze(n),{roundedClasses:A}=Be(n),{open:B,select:P}=Lk(n),D=X(()=>n.lines?`v-list--${n.lines}-line`:void 0),E=Bt(n,"activeColor"),Y=Bt(n,"baseColor"),O=Bt(n,"color");fp(),Fe({VListGroup:{activeColor:E,baseColor:Y,color:O},VListItem:{activeClass:Bt(n,"activeClass"),activeColor:E,baseColor:Y,color:O,density:Bt(n,"density"),disabled:Bt(n,"disabled"),lines:Bt(n,"lines"),nav:Bt(n,"nav"),variant:Bt(n,"variant")}});const H=_t(!1),U=Pt();function W(G){H.value=!0}function _(G){H.value=!1}function tt(G){var et;!H.value&&!(G.relatedTarget&&((et=U.value)!=null&&et.contains(G.relatedTarget)))&&q()}function nt(G){if(U.value){if(G.key==="ArrowDown")q("next");else if(G.key==="ArrowUp")q("prev");else if(G.key==="Home")q("first");else if(G.key==="End")q("last");else return;G.preventDefault()}}function q(G){if(U.value)return na(U.value,G)}return Lt(()=>t(n.tag,{ref:U,class:["v-list",{"v-list--disabled":n.disabled,"v-list--nav":n.nav},u.value,g.value,b.value,z.value,S.value,D.value,A.value,n.class],style:[v.value,C.value,n.style],tabindex:n.disabled||H.value?-1:0,role:"listbox","aria-activedescendant":void 0,onFocusin:W,onFocusout:_,onFocus:tt,onKeydown:nt},{default:()=>[t(Sp,{items:h.value},r)]})),{open:B,select:P,focus:q}}}),Gk=Gn("v-list-img"),Uk=mt({start:Boolean,end:Boolean,...Wt(),...le()},"VListItemAction"),Zk=At()({name:"VListItemAction",props:Uk(),setup(n,l){let{slots:r}=l;return Lt(()=>t(n.tag,{class:["v-list-item-action",{"v-list-item-action--start":n.start,"v-list-item-action--end":n.end},n.class],style:n.style},r)),{}}}),Kk=mt({start:Boolean,end:Boolean,...Wt(),...le()},"VListItemMedia"),Qk=At()({name:"VListItemMedia",props:Kk(),setup(n,l){let{slots:r}=l;return Lt(()=>t(n.tag,{class:["v-list-item-media",{"v-list-item-media--start":n.start,"v-list-item-media--end":n.end},n.class],style:n.style},r)),{}}});function bi(n,l){return{x:n.x+l.x,y:n.y+l.y}}function Jk(n,l){return{x:n.x-l.x,y:n.y-l.y}}function q1(n,l){if(n.side==="top"||n.side==="bottom"){const{side:r,align:h}=n,u=h==="left"?0:h==="center"?l.width/2:h==="right"?l.width:h,g=r==="top"?0:r==="bottom"?l.height:r;return bi({x:u,y:g},l)}else if(n.side==="left"||n.side==="right"){const{side:r,align:h}=n,u=r==="left"?0:r==="right"?l.width:r,g=h==="top"?0:h==="center"?l.height/2:h==="bottom"?l.height:h;return bi({x:u,y:g},l)}return bi({x:l.width/2,y:l.height/2},l)}const Hp={static:n6,connected:r6},t6=mt({locationStrategy:{type:[String,Function],default:"static",validator:n=>typeof n=="function"||n in Hp},location:{type:String,default:"bottom"},origin:{type:String,default:"auto"},offset:[Number,String,Array]},"VOverlay-location-strategies");function e6(n,l){const r=Pt({}),h=Pt();Me&&(Vl(()=>!!(l.isActive.value&&n.locationStrategy),g=>{var v,b;Vt(()=>n.locationStrategy,g),ln(()=>{h.value=void 0}),typeof n.locationStrategy=="function"?h.value=(v=n.locationStrategy(l,n,r))==null?void 0:v.updateLocation:h.value=(b=Hp[n.locationStrategy](l,n,r))==null?void 0:b.updateLocation}),window.addEventListener("resize",u,{passive:!0}),ln(()=>{window.removeEventListener("resize",u),h.value=void 0}));function u(g){var v;(v=h.value)==null||v.call(h,g)}return{contentStyles:r,updateLocation:h}}function n6(){}function l6(n,l){l?n.style.removeProperty("left"):n.style.removeProperty("right");const r=Mh(n);return l?r.x+=parseFloat(n.style.right||0):r.x-=parseFloat(n.style.left||0),r.y-=parseFloat(n.style.top||0),r}function r6(n,l,r){j5(n.activatorEl.value)&&Object.assign(r.value,{position:"fixed",top:0,[n.isRtl.value?"right":"left"]:0});const{preferredAnchor:u,preferredOrigin:g}=kh(()=>{const D=l0(l.location,n.isRtl.value),E=l.origin==="overlap"?D:l.origin==="auto"?vi(D):l0(l.origin,n.isRtl.value);return D.side===E.side&&D.align===fi(E).align?{preferredAnchor:v1(D),preferredOrigin:v1(E)}:{preferredAnchor:D,preferredOrigin:E}}),[v,b,z,C]=["minWidth","minHeight","maxWidth","maxHeight"].map(D=>X(()=>{const E=parseFloat(l[D]);return isNaN(E)?1/0:E})),S=X(()=>{if(Array.isArray(l.offset))return l.offset;if(typeof l.offset=="string"){const D=l.offset.split(" ").map(parseFloat);return D.length<2&&D.push(0),D}return typeof l.offset=="number"?[l.offset,0]:[0,0]});let A=!1;const B=new ResizeObserver(()=>{A&&P()});Vt([n.activatorEl,n.contentEl],(D,E)=>{let[Y,O]=D,[H,U]=E;H&&B.unobserve(H),Y&&B.observe(Y),U&&B.unobserve(U),O&&B.observe(O)},{immediate:!0}),ln(()=>{B.disconnect()});function P(){if(A=!1,requestAnimationFrame(()=>{requestAnimationFrame(()=>A=!0)}),!n.activatorEl.value||!n.contentEl.value)return;const D=n.activatorEl.value.getBoundingClientRect(),E=l6(n.contentEl.value,n.isRtl.value),Y=ra(n.contentEl.value),O=12;Y.length||(Y.push(document.documentElement),n.contentEl.value.style.top&&n.contentEl.value.style.left||(E.x-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x")||0),E.y-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y")||0)));const H=Y.reduce((st,rt)=>{const ht=rt.getBoundingClientRect(),dt=new _r({x:rt===document.documentElement?0:ht.x,y:rt===document.documentElement?0:ht.y,width:rt.clientWidth,height:rt.clientHeight});return st?new _r({x:Math.max(st.left,dt.left),y:Math.max(st.top,dt.top),width:Math.min(st.right,dt.right)-Math.max(st.left,dt.left),height:Math.min(st.bottom,dt.bottom)-Math.max(st.top,dt.top)}):dt},void 0);H.x+=O,H.y+=O,H.width-=O*2,H.height-=O*2;let U={anchor:u.value,origin:g.value};function W(st){const rt=new _r(E),ht=q1(st.anchor,D),dt=q1(st.origin,rt);let{x:Ct,y:xt}=Jk(ht,dt);switch(st.anchor.side){case"top":xt-=S.value[0];break;case"bottom":xt+=S.value[0];break;case"left":Ct-=S.value[0];break;case"right":Ct+=S.value[0];break}switch(st.anchor.align){case"top":xt-=S.value[1];break;case"bottom":xt+=S.value[1];break;case"left":Ct-=S.value[1];break;case"right":Ct+=S.value[1];break}return rt.x+=Ct,rt.y+=xt,rt.width=Math.min(rt.width,z.value),rt.height=Math.min(rt.height,C.value),{overflows:m1(rt,H),x:Ct,y:xt}}let _=0,tt=0;const nt={x:0,y:0},q={x:!1,y:!1};let G=-1;for(;!(G++>10);){const{x:st,y:rt,overflows:ht}=W(U);_+=st,tt+=rt,E.x+=st,E.y+=rt;{const dt=f1(U.anchor),Ct=ht.x.before||ht.x.after,xt=ht.y.before||ht.y.after;let wt=!1;if(["x","y"].forEach(gt=>{if(gt==="x"&&Ct&&!q.x||gt==="y"&&xt&&!q.y){const It={anchor:{...U.anchor},origin:{...U.origin}},$t=gt==="x"?dt==="y"?fi:vi:dt==="y"?vi:fi;It.anchor=$t(It.anchor),It.origin=$t(It.origin);const{overflows:Tt}=W(It);(Tt[gt].before<=ht[gt].before&&Tt[gt].after<=ht[gt].after||Tt[gt].before+Tt[gt].after<(ht[gt].before+ht[gt].after)/2)&&(U=It,wt=q[gt]=!0)}}),wt)continue}ht.x.before&&(_+=ht.x.before,E.x+=ht.x.before),ht.x.after&&(_-=ht.x.after,E.x-=ht.x.after),ht.y.before&&(tt+=ht.y.before,E.y+=ht.y.before),ht.y.after&&(tt-=ht.y.after,E.y-=ht.y.after);{const dt=m1(E,H);nt.x=H.width-dt.x.before-dt.x.after,nt.y=H.height-dt.y.before-dt.y.after,_+=dt.x.before,E.x+=dt.x.before,tt+=dt.y.before,E.y+=dt.y.before}break}const et=f1(U.anchor);return Object.assign(r.value,{"--v-overlay-anchor-origin":`${U.anchor.side} ${U.anchor.align}`,transformOrigin:`${U.origin.side} ${U.origin.align}`,top:Xt(Mi(tt)),left:n.isRtl.value?void 0:Xt(Mi(_)),right:n.isRtl.value?Xt(Mi(-_)):void 0,minWidth:Xt(et==="y"?Math.min(v.value,D.width):v.value),maxWidth:Xt(Y1(en(nt.x,v.value===1/0?0:v.value,z.value))),maxHeight:Xt(Y1(en(nt.y,b.value===1/0?0:b.value,C.value)))}),{available:nt,contentBox:E}}return Vt(()=>[u.value,g.value,l.offset,l.minWidth,l.minHeight,l.maxWidth,l.maxHeight],()=>P()),pe(()=>{const D=P();if(!D)return;const{available:E,contentBox:Y}=D;Y.height>E.y&&requestAnimationFrame(()=>{P(),requestAnimationFrame(()=>{P()})})}),{updateLocation:P}}function Mi(n){return Math.round(n*devicePixelRatio)/devicePixelRatio}function Y1(n){return Math.ceil(n*devicePixelRatio)/devicePixelRatio}let k0=!0;const aa=[];function o6(n){!k0||aa.length?(aa.push(n),b0()):(k0=!1,n(),b0())}let G1=-1;function b0(){cancelAnimationFrame(G1),G1=requestAnimationFrame(()=>{const n=aa.shift();n&&n(),aa.length?b0():k0=!0})}const Ys={none:null,close:i6,block:h6,reposition:d6},s6=mt({scrollStrategy:{type:[String,Function],default:"block",validator:n=>typeof n=="function"||n in Ys}},"VOverlay-scroll-strategies");function a6(n,l){if(!Me)return;let r;fn(async()=>{r==null||r.stop(),l.isActive.value&&n.scrollStrategy&&(r=Jr(),await pe(),r.active&&r.run(()=>{var h;typeof n.scrollStrategy=="function"?n.scrollStrategy(l,n,r):(h=Ys[n.scrollStrategy])==null||h.call(Ys,l,n,r)}))}),ln(()=>{r==null||r.stop()})}function i6(n){function l(r){n.isActive.value=!1}Np(n.activatorEl.value??n.contentEl.value,l)}function h6(n,l){var v;const r=(v=n.root.value)==null?void 0:v.offsetParent,h=[...new Set([...ra(n.activatorEl.value,l.contained?r:void 0),...ra(n.contentEl.value,l.contained?r:void 0)])].filter(b=>!b.classList.contains("v-overlay-scroll-blocked")),u=window.innerWidth-document.documentElement.offsetWidth,g=(b=>yh(b)&&b)(r||document.documentElement);g&&n.root.value.classList.add("v-overlay--scroll-blocked"),h.forEach((b,z)=>{b.style.setProperty("--v-body-scroll-x",Xt(-b.scrollLeft)),b.style.setProperty("--v-body-scroll-y",Xt(-b.scrollTop)),b!==document.documentElement&&b.style.setProperty("--v-scrollbar-offset",Xt(u)),b.classList.add("v-overlay-scroll-blocked")}),ln(()=>{h.forEach((b,z)=>{const C=parseFloat(b.style.getPropertyValue("--v-body-scroll-x")),S=parseFloat(b.style.getPropertyValue("--v-body-scroll-y"));b.style.removeProperty("--v-body-scroll-x"),b.style.removeProperty("--v-body-scroll-y"),b.style.removeProperty("--v-scrollbar-offset"),b.classList.remove("v-overlay-scroll-blocked"),b.scrollLeft=-C,b.scrollTop=-S}),g&&n.root.value.classList.remove("v-overlay--scroll-blocked")})}function d6(n,l,r){let h=!1,u=-1,g=-1;function v(b){o6(()=>{var S,A;const z=performance.now();(A=(S=n.updateLocation).value)==null||A.call(S,b),h=(performance.now()-z)/(1e3/60)>2})}g=(typeof requestIdleCallback>"u"?b=>b():requestIdleCallback)(()=>{r.run(()=>{Np(n.activatorEl.value??n.contentEl.value,b=>{h?(cancelAnimationFrame(u),u=requestAnimationFrame(()=>{u=requestAnimationFrame(()=>{v(b)})})):v(b)})})}),ln(()=>{typeof cancelIdleCallback<"u"&&cancelIdleCallback(g),cancelAnimationFrame(u)})}function Np(n,l){const r=[document,...ra(n)];r.forEach(h=>{h.addEventListener("scroll",l,{passive:!0})}),ln(()=>{r.forEach(h=>{h.removeEventListener("scroll",l)})})}const M0=Symbol.for("vuetify:v-menu"),jp=mt({closeDelay:[Number,String],openDelay:[Number,String]},"delay");function Pp(n,l){const r={},h=u=>()=>{if(!Me)return Promise.resolve(!0);const g=u==="openDelay";return r.closeDelay&&window.clearTimeout(r.closeDelay),delete r.closeDelay,r.openDelay&&window.clearTimeout(r.openDelay),delete r.openDelay,new Promise(v=>{const b=parseInt(n[u]??0,10);r[u]=window.setTimeout(()=>{l==null||l(g),v(g)},b)})};return{runCloseDelay:h("closeDelay"),runOpenDelay:h("openDelay")}}const c6=mt({activator:[String,Object],activatorProps:{type:Object,default:()=>({})},openOnClick:{type:Boolean,default:void 0},openOnHover:Boolean,openOnFocus:{type:Boolean,default:void 0},closeOnContentClick:Boolean,...jp()},"VOverlay-activator");function u6(n,l){let{isActive:r,isTop:h}=l;const u=Pt();let g=!1,v=!1,b=!0;const z=X(()=>n.openOnFocus||n.openOnFocus==null&&n.openOnHover),C=X(()=>n.openOnClick||n.openOnClick==null&&!n.openOnHover&&!z.value),{runOpenDelay:S,runCloseDelay:A}=Pp(n,U=>{U===(n.openOnHover&&g||z.value&&v)&&!(n.openOnHover&&r.value&&!h.value)&&(r.value!==U&&(b=!0),r.value=U)}),B={onClick:U=>{U.stopPropagation(),u.value=U.currentTarget||U.target,r.value=!r.value},onMouseenter:U=>{var W;(W=U.sourceCapabilities)!=null&&W.firesTouchEvents||(g=!0,u.value=U.currentTarget||U.target,S())},onMouseleave:U=>{g=!1,A()},onFocus:U=>{Ur(U.target,":focus-visible")!==!1&&(v=!0,U.stopPropagation(),u.value=U.currentTarget||U.target,S())},onBlur:U=>{v=!1,U.stopPropagation(),A()}},P=X(()=>{const U={};return C.value&&(U.onClick=B.onClick),n.openOnHover&&(U.onMouseenter=B.onMouseenter,U.onMouseleave=B.onMouseleave),z.value&&(U.onFocus=B.onFocus,U.onBlur=B.onBlur),U}),D=X(()=>{const U={};if(n.openOnHover&&(U.onMouseenter=()=>{g=!0,S()},U.onMouseleave=()=>{g=!1,A()}),z.value&&(U.onFocusin=()=>{v=!0,S()},U.onFocusout=()=>{v=!1,A()}),n.closeOnContentClick){const W=he(M0,null);U.onClick=()=>{r.value=!1,W==null||W.closeParents()}}return U}),E=X(()=>{const U={};return n.openOnHover&&(U.onMouseenter=()=>{b&&(g=!0,b=!1,S())},U.onMouseleave=()=>{g=!1,A()}),U});Vt(h,U=>{U&&(n.openOnHover&&!g&&(!z.value||!v)||z.value&&!v&&(!n.openOnHover||!g))&&(r.value=!1)});const Y=Pt();fn(()=>{Y.value&&pe(()=>{u.value=e0(Y.value)})});const O=We("useActivator");let H;return Vt(()=>!!n.activator,U=>{U&&Me?(H=Jr(),H.run(()=>{p6(n,O,{activatorEl:u,activatorEvents:P})})):H&&H.stop()},{flush:"post",immediate:!0}),ln(()=>{H==null||H.stop()}),{activatorEl:u,activatorRef:Y,activatorEvents:P,contentEvents:D,scrimEvents:E}}function p6(n,l,r){let{activatorEl:h,activatorEvents:u}=r;Vt(()=>n.activator,(z,C)=>{if(C&&z!==C){const S=b(C);S&&v(S)}z&&pe(()=>g())},{immediate:!0}),Vt(()=>n.activatorProps,()=>{g()}),ln(()=>{v()});function g(){let z=arguments.length>0&&arguments[0]!==void 0?arguments[0]:b(),C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:n.activatorProps;z&&a5(z,o(u.value,C))}function v(){let z=arguments.length>0&&arguments[0]!==void 0?arguments[0]:b(),C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:n.activatorProps;z&&i5(z,o(u.value,C))}function b(){var S,A;let z=arguments.length>0&&arguments[0]!==void 0?arguments[0]:n.activator,C;if(z)if(z==="parent"){let B=(A=(S=l==null?void 0:l.proxy)==null?void 0:S.$el)==null?void 0:A.parentNode;for(;B.hasAttribute("data-no-activator");)B=B.parentNode;C=B}else typeof z=="string"?C=document.querySelector(z):"$el"in z?C=z.$el:C=z;return h.value=(C==null?void 0:C.nodeType)===Node.ELEMENT_NODE?C:null,h.value}}function Lp(){if(!Me)return _t(!1);const{ssr:n}=Mr();if(n){const l=_t(!1);return Te(()=>{l.value=!0}),l}else return _t(!0)}const Wa=mt({eager:Boolean},"lazy");function Wh(n,l){const r=_t(!1),h=X(()=>r.value||n.eager||l.value);Vt(l,()=>r.value=!0);function u(){n.eager||(r.value=!1)}return{isBooted:r,hasContent:h,onAfterLeave:u}}function po(){const l=We("useScopeId").vnode.scopeId;return{scopeId:l?{[l]:""}:void 0}}const U1=Symbol.for("vuetify:stack"),bo=Ye([]);function g6(n,l,r){const h=We("useStack"),u=!r,g=he(U1,void 0),v=Ye({activeChildren:new Set});ye(U1,v);const b=_t(+l.value);Vl(n,()=>{var A;const S=(A=bo.at(-1))==null?void 0:A[1];b.value=S?S+10:+l.value,u&&bo.push([h.uid,b.value]),g==null||g.activeChildren.add(h.uid),ln(()=>{if(u){const B=ne(bo).findIndex(P=>P[0]===h.uid);bo.splice(B,1)}g==null||g.activeChildren.delete(h.uid)})});const z=_t(!0);u&&fn(()=>{var A;const S=((A=bo.at(-1))==null?void 0:A[0])===h.uid;setTimeout(()=>z.value=S)});const C=X(()=>!v.activeChildren.size);return{globalTop:no(z),localTop:C,stackStyles:X(()=>({zIndex:b.value}))}}function w6(n){return{teleportTarget:X(()=>{const r=n.value;if(r===!0||!Me)return;const h=r===!1?document.body:typeof r=="string"?document.querySelector(r):r;if(h==null)return;let u=h.querySelector(":scope > .v-overlay-container");return u||(u=document.createElement("div"),u.className="v-overlay-container",h.appendChild(u)),u})}}function v6(){return!0}function Dp(n,l,r){if(!n||Fp(n,r)===!1)return!1;const h=Bu(l);if(typeof ShadowRoot<"u"&&h instanceof ShadowRoot&&h.host===n.target)return!1;const u=(typeof r.value=="object"&&r.value.include||(()=>[]))();return u.push(l),!u.some(g=>g==null?void 0:g.contains(n.target))}function Fp(n,l){return(typeof l.value=="object"&&l.value.closeConditional||v6)(n)}function f6(n,l,r){const h=typeof r.value=="function"?r.value:r.value.handler;l._clickOutside.lastMousedownWasOutside&&Dp(n,l,r)&&setTimeout(()=>{Fp(n,r)&&h&&h(n)},0)}function Z1(n,l){const r=Bu(n);l(document),typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&l(r)}const Op={mounted(n,l){const r=u=>f6(u,n,l),h=u=>{n._clickOutside.lastMousedownWasOutside=Dp(u,n,l)};Z1(n,u=>{u.addEventListener("click",r,!0),u.addEventListener("mousedown",h,!0)}),n._clickOutside||(n._clickOutside={lastMousedownWasOutside:!1}),n._clickOutside[l.instance.$.uid]={onClick:r,onMousedown:h}},unmounted(n,l){n._clickOutside&&(Z1(n,r=>{var g;if(!r||!((g=n._clickOutside)!=null&&g[l.instance.$.uid]))return;const{onClick:h,onMousedown:u}=n._clickOutside[l.instance.$.uid];r.removeEventListener("click",h,!0),r.removeEventListener("mousedown",u,!0)}),delete n._clickOutside[l.instance.$.uid])}};function m6(n){const{modelValue:l,color:r,...h}=n;return t(qn,{name:"fade-transition",appear:!0},{default:()=>[n.modelValue&&t("div",o({class:["v-overlay__scrim",n.color.backgroundColorClasses.value],style:n.color.backgroundColorStyles.value},h),null)]})}const vs=mt({absolute:Boolean,attach:[Boolean,String,Object],closeOnBack:{type:Boolean,default:!0},contained:Boolean,contentClass:null,contentProps:null,disabled:Boolean,noClickAnimation:Boolean,modelValue:Boolean,persistent:Boolean,scrim:{type:[Boolean,String],default:!0},zIndex:{type:[Number,String],default:2e3},...c6(),...Wt(),...Dn(),...Wa(),...t6(),...s6(),...ce(),...bl()},"VOverlay"),wl=At()({name:"VOverlay",directives:{ClickOutside:Op},inheritAttrs:!1,props:{_disableGlobalStack:Boolean,...vs()},emits:{"click:outside":n=>!0,"update:modelValue":n=>!0,afterLeave:()=>!0},setup(n,l){let{slots:r,attrs:h,emit:u}=l;const g=ee(n,"modelValue"),v=X({get:()=>g.value,set:It=>{It&&n.disabled||(g.value=It)}}),{teleportTarget:b}=w6(X(()=>n.attach||n.contained)),{themeClasses:z}=ge(n),{rtlClasses:C,isRtl:S}=Xe(),{hasContent:A,onAfterLeave:B}=Wh(n,v),P=Ne(X(()=>typeof n.scrim=="string"?n.scrim:null)),{globalTop:D,localTop:E,stackStyles:Y}=g6(v,Bt(n,"zIndex"),n._disableGlobalStack),{activatorEl:O,activatorRef:H,activatorEvents:U,contentEvents:W,scrimEvents:_}=u6(n,{isActive:v,isTop:E}),{dimensionStyles:tt}=Fn(n),nt=Lp(),{scopeId:q}=po();Vt(()=>n.disabled,It=>{It&&(v.value=!1)});const G=Pt(),et=Pt(),{contentStyles:st,updateLocation:rt}=e6(n,{isRtl:S,contentEl:et,activatorEl:O,isActive:v});a6(n,{root:G,contentEl:et,activatorEl:O,isActive:v,updateLocation:rt});function ht(It){u("click:outside",It),n.persistent?gt():v.value=!1}function dt(){return v.value&&D.value}Me&&Vt(v,It=>{It?window.addEventListener("keydown",Ct):window.removeEventListener("keydown",Ct)},{immediate:!0});function Ct(It){var $t,Tt;It.key==="Escape"&&D.value&&(n.persistent?gt():(v.value=!1,($t=et.value)!=null&&$t.contains(document.activeElement)&&((Tt=O.value)==null||Tt.focus())))}const xt=Qu();Vl(()=>n.closeOnBack,()=>{rk(xt,It=>{D.value&&v.value?(It(!1),n.persistent?gt():v.value=!1):It()})});const wt=Pt();Vt(()=>v.value&&(n.absolute||n.contained)&&b.value==null,It=>{if(It){const $t=Ih(G.value);$t&&$t!==document.scrollingElement&&(wt.value=$t.scrollTop)}});function gt(){n.noClickAnimation||et.value&&rr(et.value,[{transformOrigin:"center"},{transform:"scale(1.03)"},{transformOrigin:"center"}],{duration:150,easing:Uo})}return Lt(()=>{var It;return t(Zt,null,[(It=r.activator)==null?void 0:It.call(r,{isActive:v.value,props:o({ref:H},U.value,n.activatorProps)}),nt.value&&A.value&&t(uc,{disabled:!b.value,to:b.value},{default:()=>[t("div",o({class:["v-overlay",{"v-overlay--absolute":n.absolute||n.contained,"v-overlay--active":v.value,"v-overlay--contained":n.contained},z.value,C.value,n.class],style:[Y.value,{top:Xt(wt.value)},n.style],ref:G},q,h),[t(m6,o({color:P,modelValue:v.value&&!!n.scrim},_.value),null),t(Wn,{appear:!0,persisted:!0,transition:n.transition,target:O.value,onAfterLeave:()=>{B(),u("afterLeave")}},{default:()=>{var $t;return[Ce(t("div",o({ref:et,class:["v-overlay__content",n.contentClass],style:[tt.value,st.value]},W.value,n.contentProps),[($t=r.default)==null?void 0:$t.call(r,{isActive:v})]),[[Nn,v.value],[mn("click-outside"),{handler:ht,closeConditional:dt,include:()=>[O.value]}]])]}})])]})])}),{activatorEl:O,animateClick:gt,contentEl:et,globalTop:D,localTop:E,updateLocation:rt}}}),xi=Symbol("Forwarded refs");function zi(n,l){let r=n;for(;r;){const h=Reflect.getOwnPropertyDescriptor(r,l);if(h)return h;r=Object.getPrototypeOf(r)}}function Un(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{scopeId:u}=po(),g=on(),v=X(()=>n.id||`v-menu-${g}`),b=Pt(),z=he(M0,null),C=_t(0);ye(M0,{register(){++C.value},unregister(){--C.value},closeParents(){setTimeout(()=>{C.value||(h.value=!1,z==null||z.closeParents())},40)}});async function S(E){var H,U,W;const Y=E.relatedTarget,O=E.target;await pe(),h.value&&Y!==O&&((H=b.value)!=null&&H.contentEl)&&((U=b.value)!=null&&U.globalTop)&&![document,b.value.contentEl].includes(O)&&!b.value.contentEl.contains(O)&&((W=Go(b.value.contentEl)[0])==null||W.focus())}Vt(h,E=>{E?(z==null||z.register(),document.addEventListener("focusin",S,{once:!0})):(z==null||z.unregister(),document.removeEventListener("focusin",S))});function A(){z==null||z.closeParents()}function B(E){var Y,O,H;n.disabled||E.key==="Tab"&&(fu(Go((Y=b.value)==null?void 0:Y.contentEl,!1),E.shiftKey?"prev":"next",W=>W.tabIndex>=0)||(h.value=!1,(H=(O=b.value)==null?void 0:O.activatorEl)==null||H.focus()))}function P(E){var O;if(n.disabled)return;const Y=(O=b.value)==null?void 0:O.contentEl;Y&&h.value?E.key==="ArrowDown"?(E.preventDefault(),na(Y,"next")):E.key==="ArrowUp"&&(E.preventDefault(),na(Y,"prev")):["ArrowDown","ArrowUp"].includes(E.key)&&(h.value=!0,E.preventDefault(),setTimeout(()=>setTimeout(()=>P(E))))}const D=X(()=>o({"aria-haspopup":"menu","aria-expanded":String(h.value),"aria-owns":v.value,onKeydown:P},n.activatorProps));return Lt(()=>{const[E]=wl.filterProps(n);return t(wl,o({ref:b,class:["v-menu",n.class],style:n.style},E,{modelValue:h.value,"onUpdate:modelValue":Y=>h.value=Y,absolute:!0,activatorProps:D.value,"onClick:outside":A,onKeydown:B},u),{activator:r.activator,default:function(){for(var Y=arguments.length,O=new Array(Y),H=0;H{var U;return[(U=r.default)==null?void 0:U.call(r,...O)]}})}})}),Un({id:v,ΨopenChildren:C},b)}});const b6=mt({active:Boolean,max:[Number,String],value:{type:[Number,String],default:0},...Wt(),...bl({transition:{component:Hh}})},"VCounter"),qa=At()({name:"VCounter",functional:!0,props:b6(),setup(n,l){let{slots:r}=l;const h=X(()=>n.max?`${n.value} / ${n.max}`:String(n.value));return Lt(()=>t(Wn,{transition:n.transition},{default:()=>[Ce(t("div",{class:["v-counter",n.class],style:n.style},[r.default?r.default({counter:h.value,max:n.max,value:n.value}):h.value]),[[Nn,n.active]])]})),{}}});const M6=mt({floating:Boolean,...Wt()},"VFieldLabel"),Io=At()({name:"VFieldLabel",props:M6(),setup(n,l){let{slots:r}=l;return Lt(()=>t(uo,{class:["v-field-label",{"v-field-label--floating":n.floating},n.class],style:n.style,"aria-hidden":n.floating||void 0},r)),{}}}),x6=["underlined","outlined","filled","solo","solo-inverted","solo-filled","plain"],Ya=mt({appendInnerIcon:te,bgColor:String,clearable:Boolean,clearIcon:{type:te,default:"$clear"},active:Boolean,centerAffix:{type:Boolean,default:void 0},color:String,baseColor:String,dirty:Boolean,disabled:{type:Boolean,default:null},error:Boolean,flat:Boolean,label:String,persistentClear:Boolean,prependInnerIcon:te,reverse:Boolean,singleLine:Boolean,variant:{type:String,default:"filled",validator:n=>x6.includes(n)},"onClick:clear":tl(),"onClick:appendInner":tl(),"onClick:prependInner":tl(),...Wt(),...Oh(),...Ie(),...ce()},"VField"),fs=At()({name:"VField",inheritAttrs:!1,props:{id:String,...Ea(),...Ya()},emits:{"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{themeClasses:g}=ge(n),{loaderClasses:v}=Ta(n),{focusClasses:b,isFocused:z,focus:C,blur:S}=Yl(n),{InputIcon:A}=cp(n),{roundedClasses:B}=Be(n),{rtlClasses:P}=Xe(),D=X(()=>n.dirty||n.active),E=X(()=>!n.singleLine&&!!(n.label||u.label)),Y=on(),O=X(()=>n.id||`input-${Y}`),H=X(()=>`${O.value}-messages`),U=Pt(),W=Pt(),_=Pt(),tt=X(()=>["plain","underlined"].includes(n.variant)),{backgroundColorClasses:nt,backgroundColorStyles:q}=Ne(Bt(n,"bgColor")),{textColorClasses:G,textColorStyles:et}=rn(X(()=>n.error||n.disabled?void 0:D.value&&z.value?n.color:n.baseColor));Vt(D,ht=>{if(E.value){const dt=U.value.$el,Ct=W.value.$el;requestAnimationFrame(()=>{const xt=Mh(dt),wt=Ct.getBoundingClientRect(),gt=wt.x-xt.x,It=wt.y-xt.y-(xt.height/2-wt.height/2),$t=wt.width/.75,Tt=Math.abs($t-xt.width)>1?{maxWidth:Xt($t)}:void 0,Ft=getComputedStyle(dt),Kt=getComputedStyle(Ct),Qt=parseFloat(Ft.transitionDuration)*1e3||150,Rt=parseFloat(Kt.getPropertyValue("--v-field-label-scale")),ut=Kt.getPropertyValue("color");dt.style.visibility="visible",Ct.style.visibility="hidden",rr(dt,{transform:`translate(${gt}px, ${It}px) scale(${Rt})`,color:ut,...Tt},{duration:Qt,easing:Uo,direction:ht?"normal":"reverse"}).finished.then(()=>{dt.style.removeProperty("visibility"),Ct.style.removeProperty("visibility")})})}},{flush:"post"});const st=X(()=>({isActive:D,isFocused:z,controlRef:_,blur:S,focus:C}));function rt(ht){ht.target!==document.activeElement&&ht.preventDefault()}return Lt(()=>{var gt,It,$t;const ht=n.variant==="outlined",dt=u["prepend-inner"]||n.prependInnerIcon,Ct=!!(n.clearable||u.clear),xt=!!(u["append-inner"]||n.appendInnerIcon||Ct),wt=u.label?u.label({...st.value,label:n.label,props:{for:O.value}}):n.label;return t("div",o({class:["v-field",{"v-field--active":D.value,"v-field--appended":xt,"v-field--center-affix":n.centerAffix??!tt.value,"v-field--disabled":n.disabled,"v-field--dirty":n.dirty,"v-field--error":n.error,"v-field--flat":n.flat,"v-field--has-background":!!n.bgColor,"v-field--persistent-clear":n.persistentClear,"v-field--prepended":dt,"v-field--reverse":n.reverse,"v-field--single-line":n.singleLine,"v-field--no-label":!wt,[`v-field--variant-${n.variant}`]:!0},g.value,nt.value,b.value,v.value,B.value,P.value,n.class],style:[q.value,n.style],onClick:rt},r),[t("div",{class:"v-field__overlay"},null),t(Th,{name:"v-field",active:!!n.loading,color:n.error?"error":typeof n.loading=="string"?n.loading:n.color},{default:u.loader}),dt&&t("div",{key:"prepend",class:"v-field__prepend-inner"},[n.prependInnerIcon&&t(A,{key:"prepend-icon",name:"prependInner"},null),(gt=u["prepend-inner"])==null?void 0:gt.call(u,st.value)]),t("div",{class:"v-field__field","data-no-activator":""},[["filled","solo","solo-inverted","solo-filled"].includes(n.variant)&&E.value&&t(Io,{key:"floating-label",ref:W,class:[G.value],floating:!0,for:O.value,style:et.value},{default:()=>[wt]}),t(Io,{ref:U,for:O.value},{default:()=>[wt]}),(It=u.default)==null?void 0:It.call(u,{...st.value,props:{id:O.value,class:"v-field__input","aria-describedby":H.value},focus:C,blur:S})]),Ct&&t(Nh,{key:"clear"},{default:()=>[Ce(t("div",{class:"v-field__clearable",onMousedown:Tt=>{Tt.preventDefault(),Tt.stopPropagation()}},[u.clear?u.clear():t(A,{name:"clear"},null)]),[[Nn,n.dirty]])]}),xt&&t("div",{key:"append",class:"v-field__append-inner"},[($t=u["append-inner"])==null?void 0:$t.call(u,st.value),n.appendInnerIcon&&t(A,{key:"append-icon",name:"appendInner"},null)]),t("div",{class:["v-field__outline",G.value],style:et.value},[ht&&t(Zt,null,[t("div",{class:"v-field__outline__start"},null),E.value&&t("div",{class:"v-field__outline__notch"},[t(Io,{ref:W,floating:!0,for:O.value},{default:()=>[wt]})]),t("div",{class:"v-field__outline__end"},null)]),tt.value&&E.value&&t(Io,{ref:W,floating:!0,for:O.value},{default:()=>[wt]})])])}),{controlRef:_}}});function Xh(n){const l=Object.keys(fs.props).filter(r=>!mh(r)&&r!=="class"&&r!=="style");return pr(n,l)}const z6=["color","file","time","date","datetime-local","week","month"],Ga=mt({autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,suffix:String,role:String,type:{type:String,default:"text"},modelModifiers:Object,...xl(),...Ya()},"VTextField"),vr=At()({name:"VTextField",directives:{Intersect:Oa},inheritAttrs:!1,props:Ga(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const g=ee(n,"modelValue"),{isFocused:v,focus:b,blur:z}=Yl(n),C=X(()=>typeof n.counterValue=="function"?n.counterValue(g.value):(g.value??"").toString().length),S=X(()=>{if(r.maxlength)return r.maxlength;if(!(!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"))return n.counter}),A=X(()=>["plain","underlined"].includes(n.variant));function B(tt,nt){var q,G;!n.autofocus||!tt||(G=(q=nt[0].target)==null?void 0:q.focus)==null||G.call(q)}const P=Pt(),D=Pt(),E=Pt(),Y=X(()=>z6.includes(n.type)||n.persistentPlaceholder||v.value||n.active);function O(){var tt;E.value!==document.activeElement&&((tt=E.value)==null||tt.focus()),v.value||b()}function H(tt){h("mousedown:control",tt),tt.target!==E.value&&(O(),tt.preventDefault())}function U(tt){O(),h("click:control",tt)}function W(tt){tt.stopPropagation(),O(),pe(()=>{g.value=null,bh(n["onClick:clear"],tt)})}function _(tt){var q;const nt=tt.target;if(g.value=nt.value,(q=n.modelModifiers)!=null&&q.trim&&["text","search","password","tel","url"].includes(n.type)){const G=[nt.selectionStart,nt.selectionEnd];pe(()=>{nt.selectionStart=G[0],nt.selectionEnd=G[1]})}}return Lt(()=>{const tt=!!(u.counter||n.counter||n.counterValue),nt=!!(tt||u.details),[q,G]=br(r),[{modelValue:et,...st}]=Ge.filterProps(n),[rt]=Xh(n);return t(Ge,o({ref:P,modelValue:g.value,"onUpdate:modelValue":ht=>g.value=ht,class:["v-text-field",{"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-text-field--plain-underlined":["plain","underlined"].includes(n.variant)},n.class],style:n.style},q,st,{centerAffix:!A.value,focused:v.value}),{...u,default:ht=>{let{id:dt,isDisabled:Ct,isDirty:xt,isReadonly:wt,isValid:gt}=ht;return t(fs,o({ref:D,onMousedown:H,onClick:U,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"],role:n.role},rt,{id:dt.value,active:Y.value||xt.value,dirty:xt.value||n.dirty,disabled:Ct.value,focused:v.value,error:gt.value===!1}),{...u,default:It=>{let{props:{class:$t,...Tt}}=It;const Ft=Ce(t("input",o({ref:E,value:g.value,onInput:_,autofocus:n.autofocus,readonly:wt.value,disabled:Ct.value,name:n.name,placeholder:n.placeholder,size:1,type:n.type,onFocus:O,onBlur:z},Tt,G),null),[[mn("intersect"),{handler:B},null,{once:!0}]]);return t(Zt,null,[n.prefix&&t("span",{class:"v-text-field__prefix"},[t("span",{class:"v-text-field__prefix__text"},[n.prefix])]),u.default?t("div",{class:$t,"data-no-activator":""},[u.default(),Ft]):Xn(Ft,{class:$t}),n.suffix&&t("span",{class:"v-text-field__suffix"},[t("span",{class:"v-text-field__suffix__text"},[n.suffix])])])}})},details:nt?ht=>{var dt;return t(Zt,null,[(dt=u.details)==null?void 0:dt.call(u,ht),tt&&t(Zt,null,[t("span",null,null),t(qa,{active:n.persistentCounter||v.value,value:C.value,max:S.value},u.counter)])])}:void 0})}),Un({},P,D,E)}});const I6=mt({renderless:Boolean,...Wt()},"VVirtualScrollItem"),y6=At()({name:"VVirtualScrollItem",inheritAttrs:!1,props:I6(),emits:{"update:height":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{resizeRef:g,contentRect:v}=el(void 0,"border");Vt(()=>{var b;return(b=v.value)==null?void 0:b.height},b=>{b!=null&&h("update:height",b)}),Lt(()=>{var b,z;return n.renderless?t(Zt,null,[(b=u.default)==null?void 0:b.call(u,{itemRef:g})]):t("div",o({ref:g,class:["v-virtual-scroll__item",n.class],style:n.style},r),[(z=u.default)==null?void 0:z.call(u)])})}}),K1=-1,Q1=1,C6=mt({itemHeight:{type:[Number,String],default:48}},"virtual");function S6(n,l,r){const h=_t(0),u=_t(n.itemHeight),g=X({get:()=>parseInt(u.value??0,10),set(nt){u.value=nt}}),v=Pt(),{resizeRef:b,contentRect:z}=el();fn(()=>{b.value=v.value});const C=Mr(),S=new Map;let A=Array.from({length:l.value.length});const B=X(()=>{const nt=(!z.value||v.value===document.documentElement?C.height.value:z.value.height)-((r==null?void 0:r.value)??0);return Math.ceil(nt/g.value*1.7+1)});function P(nt,q){g.value=Math.max(g.value,q),A[nt]=q,S.set(l.value[nt],q)}function D(nt){return A.slice(0,nt).reduce((q,G)=>q+(G||g.value),0)}function E(nt){const q=l.value.length;let G=0,et=0;for(;et=ht&&(h.value=en(rt,0,l.value.length-B.value)),Y=q}function H(nt){if(!v.value)return;const q=D(nt);v.value.scrollTop=q}const U=X(()=>Math.min(l.value.length,h.value+B.value)),W=X(()=>l.value.slice(h.value,U.value).map((nt,q)=>({raw:nt,index:q+h.value}))),_=X(()=>D(h.value)),tt=X(()=>D(l.value.length)-D(U.value));return Vt(()=>l.value.length,()=>{A=il(l.value.length).map(()=>g.value),S.forEach((nt,q)=>{const G=l.value.indexOf(q);G===-1?S.delete(q):A[G]=nt})}),{containerRef:v,computedItems:W,itemHeight:g,paddingTop:_,paddingBottom:tt,scrollToIndex:H,handleScroll:O,handleItemResize:P}}const $6=mt({items:{type:Array,default:()=>[]},renderless:Boolean,...C6(),...Wt(),...Dn()},"VVirtualScroll"),Ua=At()({name:"VVirtualScroll",props:$6(),setup(n,l){let{slots:r}=l;const h=We("VVirtualScroll"),{dimensionStyles:u}=Fn(n),{containerRef:g,handleScroll:v,handleItemResize:b,scrollToIndex:z,paddingTop:C,paddingBottom:S,computedItems:A}=S6(n,Bt(n,"items"));return Vl(()=>n.renderless,()=>{Te(()=>{var B;g.value=Ih(h.vnode.el,!0),(B=g.value)==null||B.addEventListener("scroll",v)}),ln(()=>{var B;(B=g.value)==null||B.removeEventListener("scroll",v)})}),Lt(()=>{const B=A.value.map(P=>t(y6,{key:P.index,renderless:n.renderless,"onUpdate:height":D=>b(P.index,D)},{default:D=>{var E;return(E=r.default)==null?void 0:E.call(r,{item:P.raw,index:P.index,...D})}}));return n.renderless?t(Zt,null,[t("div",{class:"v-virtual-scroll__spacer",style:{paddingTop:Xt(C.value)}},null),B,t("div",{class:"v-virtual-scroll__spacer",style:{paddingBottom:Xt(S.value)}},null)]):t("div",{ref:g,class:["v-virtual-scroll",n.class],onScroll:v,style:[u.value,n.style]},[t("div",{class:"v-virtual-scroll__container",style:{paddingTop:Xt(C.value),paddingBottom:Xt(S.value)}},[B])])}),{scrollToIndex:z}}});function qh(n,l){const r=_t(!1);let h;function u(b){cancelAnimationFrame(h),r.value=!0,h=requestAnimationFrame(()=>{h=requestAnimationFrame(()=>{r.value=!1})})}async function g(){await new Promise(b=>requestAnimationFrame(b)),await new Promise(b=>requestAnimationFrame(b)),await new Promise(b=>requestAnimationFrame(b)),await new Promise(b=>{if(r.value){const z=Vt(r,()=>{z(),b()})}else b()})}async function v(b){var S,A;if(b.key==="Tab"&&((S=l.value)==null||S.focus()),!["PageDown","PageUp","Home","End"].includes(b.key))return;const z=(A=n.value)==null?void 0:A.$el;if(!z)return;(b.key==="Home"||b.key==="End")&&z.scrollTo({top:b.key==="Home"?0:z.scrollHeight,behavior:"smooth"}),await g();const C=z.querySelectorAll(":scope > :not(.v-virtual-scroll__spacer)");if(b.key==="PageDown"||b.key==="Home"){const B=z.getBoundingClientRect().top;for(const P of C)if(P.getBoundingClientRect().top>=B){P.focus();break}}else{const B=z.getBoundingClientRect().bottom;for(const P of[...C].reverse())if(P.getBoundingClientRect().bottom<=B){P.focus();break}}}return{onListScroll:u,onListKeydown:v}}const Yh=mt({chips:Boolean,closableChips:Boolean,closeText:{type:String,default:"$vuetify.close"},openText:{type:String,default:"$vuetify.open"},eager:Boolean,hideNoData:Boolean,hideSelected:Boolean,menu:Boolean,menuIcon:{type:te,default:"$dropdown"},menuProps:{type:Object},multiple:Boolean,noDataText:{type:String,default:"$vuetify.noDataText"},openOnClear:Boolean,valueComparator:{type:Function,default:kr},itemColor:String,...$p({itemChildren:!1})},"Select"),A6=mt({...Yh(),...jn(Ga({modelValue:null,role:"button"}),["validationValue","dirty","appendInnerIcon"]),...bl({transition:{component:Da}})},"VSelect"),B6=At()({name:"VSelect",props:A6(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Ln(),u=Pt(),g=Pt(),v=Pt(),b=ee(n,"menu"),z=X({get:()=>b.value,set:wt=>{var gt;b.value&&!wt&&((gt=g.value)!=null&>.ΨopenChildren)||(b.value=wt)}}),{items:C,transformIn:S,transformOut:A}=_h(n),B=ee(n,"modelValue",[],wt=>S(wt===null?[null]:Bn(wt)),wt=>{const gt=A(wt);return n.multiple?gt:gt[0]??null}),P=Va(),D=X(()=>B.value.map(wt=>C.value.find(gt=>{const It=tn(gt.raw,n.itemValue),$t=tn(wt.raw,n.itemValue);return It===void 0||$t===void 0?!1:n.returnObject?n.valueComparator(It,$t):n.valueComparator(gt.value,wt.value)})||wt)),E=X(()=>D.value.map(wt=>wt.props.value)),Y=_t(!1),O=X(()=>z.value?n.closeText:n.openText);let H="",U;const W=X(()=>n.hideSelected?C.value.filter(wt=>!D.value.some(gt=>gt===wt)):C.value),_=X(()=>n.hideNoData&&!C.value.length||n.readonly||(P==null?void 0:P.isReadonly.value)),tt=Pt(),{onListScroll:nt,onListKeydown:q}=qh(tt,u);function G(wt){n.openOnClear&&(z.value=!0)}function et(){_.value||(z.value=!z.value)}function st(wt){var Ft,Kt;if(!wt.key||n.readonly||P!=null&&P.isReadonly.value)return;["Enter"," ","ArrowDown","ArrowUp","Home","End"].includes(wt.key)&&wt.preventDefault(),["Enter","ArrowDown"," "].includes(wt.key)&&(z.value=!0),["Escape","Tab"].includes(wt.key)&&(z.value=!1),wt.key==="Home"?(Ft=tt.value)==null||Ft.focus("first"):wt.key==="End"&&((Kt=tt.value)==null||Kt.focus("last"));const gt=1e3;function It(Qt){const Rt=Qt.key.length===1,ut=!Qt.ctrlKey&&!Qt.metaKey&&!Qt.altKey;return Rt&&ut}if(n.multiple||!It(wt))return;const $t=performance.now();$t-U>gt&&(H=""),H+=wt.key.toLowerCase(),U=$t;const Tt=C.value.find(Qt=>Qt.title.toLowerCase().startsWith(H));Tt!==void 0&&(B.value=[Tt])}function rt(wt){if(n.multiple){const gt=E.value.findIndex(It=>n.valueComparator(It,wt.value));if(gt===-1)B.value=[...B.value,wt];else{const It=[...B.value];It.splice(gt,1),B.value=It}}else B.value=[wt],z.value=!1}function ht(wt){var gt;(gt=tt.value)!=null&>.$el.contains(wt.relatedTarget)||(z.value=!1)}function dt(){var wt;Y.value&&((wt=u.value)==null||wt.focus())}function Ct(wt){Y.value=!0}function xt(wt){if(wt==null)B.value=[];else if(Ur(u.value,":autofill")||Ur(u.value,":-webkit-autofill")){const gt=C.value.find(It=>It.title===wt);gt&&rt(gt)}else u.value&&(u.value.value="")}return Vt(z,()=>{if(!n.hideSelected&&z.value&&D.value.length){const wt=W.value.findIndex(gt=>D.value.some(It=>gt.value===It.value));Me&&window.requestAnimationFrame(()=>{var gt;wt>=0&&((gt=v.value)==null||gt.scrollToIndex(wt))})}}),Lt(()=>{const wt=!!(n.chips||r.chip),gt=!!(!n.hideNoData||W.value.length||r["prepend-item"]||r["append-item"]||r["no-data"]),It=B.value.length>0,[$t]=vr.filterProps(n),Tt=It||!Y.value&&n.label&&!n.persistentPlaceholder?void 0:n.placeholder;return t(vr,o({ref:u},$t,{modelValue:B.value.map(Ft=>Ft.props.value).join(", "),"onUpdate:modelValue":xt,focused:Y.value,"onUpdate:focused":Ft=>Y.value=Ft,validationValue:B.externalValue,dirty:It,class:["v-select",{"v-select--active-menu":z.value,"v-select--chips":!!n.chips,[`v-select--${n.multiple?"multiple":"single"}`]:!0,"v-select--selected":B.value.length,"v-select--selection-slot":!!r.selection},n.class],style:n.style,inputmode:"none",placeholder:Tt,"onClick:clear":G,"onMousedown:control":et,onBlur:ht,onKeydown:st,"aria-label":h(O.value),title:h(O.value)}),{...r,default:()=>t(Zt,null,[t(Xa,o({ref:g,modelValue:z.value,"onUpdate:modelValue":Ft=>z.value=Ft,activator:"parent",contentClass:"v-select__content",disabled:_.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:dt},n.menuProps),{default:()=>[gt&&t(_a,{ref:tt,selected:E.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:Ft=>Ft.preventDefault(),onKeydown:q,onFocusin:Ct,onScrollPassive:nt,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var Ft,Kt,Qt;return[(Ft=r["prepend-item"])==null?void 0:Ft.call(r),!W.value.length&&!n.hideNoData&&(((Kt=r["no-data"])==null?void 0:Kt.call(r))??t(gl,{title:h(n.noDataText)},null)),t(Ua,{ref:v,renderless:!0,items:W.value},{default:Rt=>{var bt;let{item:ut,index:pt,itemRef:Ht}=Rt;const Nt=o(ut.props,{ref:Ht,key:pt,onClick:()=>rt(ut)});return((bt=r.item)==null?void 0:bt.call(r,{item:ut,index:pt,props:Nt}))??t(gl,Nt,{prepend:ft=>{let{isSelected:J}=ft;return t(Zt,null,[n.multiple&&!n.hideSelected?t(Qr,{key:ut.value,modelValue:J,ripple:!1,tabindex:"-1"},null):void 0,ut.props.prependIcon&&t(be,{icon:ut.props.prependIcon},null)])}})}}),(Qt=r["append-item"])==null?void 0:Qt.call(r)]}})]}),D.value.map((Ft,Kt)=>{var ut;function Qt(pt){pt.stopPropagation(),pt.preventDefault(),rt(Ft)}const Rt={"onClick:close":Qt,onMousedown(pt){pt.preventDefault(),pt.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:Ft.value,class:"v-select__selection"},[wt?r.chip?t(fe,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:Ft.title}}},{default:()=>{var pt;return[(pt=r.chip)==null?void 0:pt.call(r,{item:Ft,index:Kt,props:Rt})]}}):t(ws,o({key:"chip",closable:n.closableChips,size:"small",text:Ft.title},Rt),null):((ut=r.selection)==null?void 0:ut.call(r,{item:Ft,index:Kt}))??t("span",{class:"v-select__selection-text"},[Ft.title,n.multiple&&Ktn==null||l==null?-1:n.toString().toLocaleLowerCase().indexOf(l.toString().toLocaleLowerCase()),Tp=mt({customFilter:Function,customKeyFilter:Object,filterKeys:[Array,String],filterMode:{type:String,default:"intersection"},noFilter:Boolean},"filter");function N6(n,l,r){var b;const h=[],u=(r==null?void 0:r.default)??H6,g=r!=null&&r.filterKeys?Bn(r.filterKeys):!1,v=Object.keys((r==null?void 0:r.customKeyFilter)??{}).length;if(!(n!=null&&n.length))return h;t:for(let z=0;zh!=null&&h.transform?He(l).map(h==null?void 0:h.transform):He(l));fn(()=>{const z=typeof r=="function"?r():He(r),C=typeof z!="string"&&typeof z!="number"?"":String(z),S=N6(v.value,C,{customKeyFilter:n.customKeyFilter,default:n.customFilter,filterKeys:n.filterKeys,filterMode:n.filterMode,noFilter:n.noFilter}),A=He(l),B=[],P=new Map;S.forEach(D=>{let{index:E,matches:Y}=D;const O=A[E];B.push(O),P.set(O.value,Y)}),u.value=B,g.value=P});function b(z){return g.value.get(z.value)}return{filteredItems:u,filteredMatches:g,getMatches:b}}function j6(n,l,r){if(l==null)return n;if(Array.isArray(l))throw new Error("Multiple matches is not implemented");return typeof l=="number"&&~l?t(Zt,null,[t("span",{class:"v-autocomplete__unmask"},[n.substr(0,l)]),t("span",{class:"v-autocomplete__mask"},[n.substr(l,r)]),t("span",{class:"v-autocomplete__unmask"},[n.substr(l+r)])]):n}const P6=mt({autoSelectFirst:{type:[Boolean,String]},search:String,...Tp({filterKeys:["title"]}),...Yh(),...jn(Ga({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...bl({transition:!1})},"VAutocomplete"),L6=At()({name:"VAutocomplete",props:P6(),emits:{"update:focused":n=>!0,"update:search":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Ln(),u=Pt(),g=_t(!1),v=_t(!0),b=_t(!1),z=Pt(),C=Pt(),S=ee(n,"menu"),A=X({get:()=>S.value,set:bt=>{var ft;S.value&&!bt&&((ft=z.value)!=null&&ft.ΨopenChildren)||(S.value=bt)}}),B=_t(-1),P=X(()=>{var bt;return(bt=u.value)==null?void 0:bt.color}),D=X(()=>A.value?n.closeText:n.openText),{items:E,transformIn:Y,transformOut:O}=_h(n),{textColorClasses:H,textColorStyles:U}=rn(P),W=ee(n,"search",""),_=ee(n,"modelValue",[],bt=>Y(bt===null?[null]:Bn(bt)),bt=>{const ft=O(bt);return n.multiple?ft:ft[0]??null}),tt=Va(),{filteredItems:nt,getMatches:q}=Rp(n,E,()=>v.value?"":W.value),G=X(()=>_.value.map(bt=>E.value.find(ft=>{const J=tn(ft.raw,n.itemValue),lt=tn(bt.raw,n.itemValue);return J===void 0||lt===void 0?!1:n.returnObject?n.valueComparator(J,lt):n.valueComparator(ft.value,bt.value)})||bt)),et=X(()=>n.hideSelected?nt.value.filter(bt=>!G.value.some(ft=>ft.value===bt.value)):nt.value),st=X(()=>G.value.map(bt=>bt.props.value)),rt=X(()=>G.value[B.value]),ht=X(()=>{var ft;return(n.autoSelectFirst===!0||n.autoSelectFirst==="exact"&&W.value===((ft=et.value[0])==null?void 0:ft.title))&&et.value.length>0&&!v.value&&!b.value}),dt=X(()=>n.hideNoData&&!E.value.length||n.readonly||(tt==null?void 0:tt.isReadonly.value)),Ct=Pt(),{onListScroll:xt,onListKeydown:wt}=qh(Ct,u);function gt(bt){n.openOnClear&&(A.value=!0),W.value=""}function It(){dt.value||(A.value=!0)}function $t(bt){dt.value||(g.value&&(bt.preventDefault(),bt.stopPropagation()),A.value=!A.value)}function Tt(bt){var lt,at,ct;if(n.readonly||tt!=null&&tt.isReadonly.value)return;const ft=u.value.selectionStart,J=st.value.length;if((B.value>-1||["Enter","ArrowDown","ArrowUp"].includes(bt.key))&&bt.preventDefault(),["Enter","ArrowDown"].includes(bt.key)&&(A.value=!0),["Escape"].includes(bt.key)&&(A.value=!1),ht.value&&["Enter","Tab"].includes(bt.key)&&Nt(et.value[0]),bt.key==="ArrowDown"&&ht.value&&((lt=Ct.value)==null||lt.focus("next")),!!n.multiple){if(["Backspace","Delete"].includes(bt.key)){if(B.value<0){bt.key==="Backspace"&&!W.value&&(B.value=J-1);return}const kt=B.value;rt.value&&Nt(rt.value),B.value=kt>=J-1?J-2:kt}if(bt.key==="ArrowLeft"){if(B.value<0&&ft>0)return;const kt=B.value>-1?B.value-1:J-1;G.value[kt]?B.value=kt:(B.value=-1,u.value.setSelectionRange((at=W.value)==null?void 0:at.length,(ct=W.value)==null?void 0:ct.length))}if(bt.key==="ArrowRight"){if(B.value<0)return;const kt=B.value+1;G.value[kt]?B.value=kt:(B.value=-1,u.value.setSelectionRange(0,0))}}}function Ft(bt){W.value=bt.target.value}function Kt(bt){if(Ur(u.value,":autofill")||Ur(u.value,":-webkit-autofill")){const ft=E.value.find(J=>J.title===bt.target.value);ft&&Nt(ft)}}function Qt(){var bt;g.value&&(v.value=!0,(bt=u.value)==null||bt.focus())}function Rt(bt){g.value=!0,setTimeout(()=>{b.value=!0})}function ut(bt){b.value=!1}function pt(bt){(bt==null||bt===""&&!n.multiple)&&(_.value=[])}const Ht=_t(!1);function Nt(bt){if(n.multiple){const ft=st.value.findIndex(J=>n.valueComparator(J,bt.value));if(ft===-1)_.value=[..._.value,bt];else{const J=[..._.value];J.splice(ft,1),_.value=J}}else _.value=[bt],Ht.value=!0,W.value=bt.title,A.value=!1,v.value=!0,pe(()=>Ht.value=!1)}return Vt(g,(bt,ft)=>{var J;bt!==ft&&(bt?(Ht.value=!0,W.value=n.multiple?"":String(((J=G.value.at(-1))==null?void 0:J.props.title)??""),v.value=!0,pe(()=>Ht.value=!1)):(!n.multiple&&!W.value?_.value=[]:ht.value&&!b.value&&!G.value.some(lt=>{let{value:at}=lt;return at===et.value[0].value})&&Nt(et.value[0]),A.value=!1,W.value="",B.value=-1))}),Vt(W,bt=>{!g.value||Ht.value||(bt&&(A.value=!0),v.value=!bt)}),Vt(A,()=>{if(!n.hideSelected&&A.value&&G.value.length){const bt=et.value.findIndex(ft=>G.value.some(J=>ft.value===J.value));Me&&window.requestAnimationFrame(()=>{var ft;bt>=0&&((ft=C.value)==null||ft.scrollToIndex(bt))})}}),Lt(()=>{const bt=!!(n.chips||r.chip),ft=!!(!n.hideNoData||et.value.length||r["prepend-item"]||r["append-item"]||r["no-data"]),J=_.value.length>0,[lt]=vr.filterProps(n);return t(vr,o({ref:u},lt,{modelValue:W.value,"onUpdate:modelValue":pt,focused:g.value,"onUpdate:focused":at=>g.value=at,validationValue:_.externalValue,dirty:J,onInput:Ft,onChange:Kt,class:["v-autocomplete",`v-autocomplete--${n.multiple?"multiple":"single"}`,{"v-autocomplete--active-menu":A.value,"v-autocomplete--chips":!!n.chips,"v-autocomplete--selection-slot":!!r.selection,"v-autocomplete--selecting-index":B.value>-1},n.class],style:n.style,readonly:n.readonly,placeholder:J?void 0:n.placeholder,"onClick:clear":gt,"onMousedown:control":It,onKeydown:Tt}),{...r,default:()=>t(Zt,null,[t(Xa,o({ref:z,modelValue:A.value,"onUpdate:modelValue":at=>A.value=at,activator:"parent",contentClass:"v-autocomplete__content",disabled:dt.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:Qt},n.menuProps),{default:()=>[ft&&t(_a,{ref:Ct,selected:st.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:at=>at.preventDefault(),onKeydown:wt,onFocusin:Rt,onFocusout:ut,onScrollPassive:xt,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var at,ct,kt;return[(at=r["prepend-item"])==null?void 0:at.call(r),!et.value.length&&!n.hideNoData&&(((ct=r["no-data"])==null?void 0:ct.call(r))??t(gl,{title:h(n.noDataText)},null)),t(Ua,{ref:C,renderless:!0,items:et.value},{default:yt=>{var Ut;let{item:Dt,index:St,itemRef:Ot}=yt;const jt=o(Dt.props,{ref:Ot,key:St,active:ht.value&&St===0?!0:void 0,onClick:()=>Nt(Dt)});return((Ut=r.item)==null?void 0:Ut.call(r,{item:Dt,index:St,props:jt}))??t(gl,jt,{prepend:Yt=>{let{isSelected:Gt}=Yt;return t(Zt,null,[n.multiple&&!n.hideSelected?t(Qr,{key:Dt.value,modelValue:Gt,ripple:!1,tabindex:"-1"},null):void 0,Dt.props.prependIcon&&t(be,{icon:Dt.props.prependIcon},null)])},title:()=>{var Yt,Gt;return v.value?Dt.title:j6(Dt.title,(Yt=q(Dt))==null?void 0:Yt.title,((Gt=W.value)==null?void 0:Gt.length)??0)}})}}),(kt=r["append-item"])==null?void 0:kt.call(r)]}})]}),G.value.map((at,ct)=>{var Dt;function kt(St){St.stopPropagation(),St.preventDefault(),Nt(at)}const yt={"onClick:close":kt,onMousedown(St){St.preventDefault(),St.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:at.value,class:["v-autocomplete__selection",ct===B.value&&["v-autocomplete__selection--selected",H.value]],style:ct===B.value?U.value:{}},[bt?r.chip?t(fe,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:at.title}}},{default:()=>{var St;return[(St=r.chip)==null?void 0:St.call(r,{item:at,index:ct,props:yt})]}}):t(ws,o({key:"chip",closable:n.closableChips,size:"small",text:at.title},yt),null):((Dt=r.selection)==null?void 0:Dt.call(r,{item:at,index:ct}))??t("span",{class:"v-autocomplete__selection-text"},[at.title,n.multiple&&ct(n.floating?n.dot?2:4:n.dot?8:12)+(["top","bottom"].includes(S)?+(n.offsetY??0):["left","right"].includes(S)?+(n.offsetX??0):0));return Lt(()=>{const S=Number(n.content),A=!n.max||isNaN(S)?n.content:S<=+n.max?S:`${n.max}+`,[B,P]=pr(l.attrs,["aria-atomic","aria-label","aria-live","role","title"]);return t(n.tag,o({class:["v-badge",{"v-badge--bordered":n.bordered,"v-badge--dot":n.dot,"v-badge--floating":n.floating,"v-badge--inline":n.inline},n.class]},P,{style:n.style}),{default:()=>{var D,E;return[t("div",{class:"v-badge__wrapper"},[(E=(D=l.slots).default)==null?void 0:E.call(D),t(Wn,{transition:n.transition},{default:()=>{var Y,O;return[Ce(t("span",o({class:["v-badge__badge",z.value,r.value,u.value,v.value],style:[h.value,b.value,n.inline?{}:C.value],"aria-atomic":"true","aria-label":g(n.label,S),"aria-live":"polite",role:"status"},B),[n.dot?void 0:l.slots.badge?(O=(Y=l.slots).badge)==null?void 0:O.call(Y):n.icon?t(be,{icon:n.icon},null):A]),[[Nn,n.modelValue]])]}})])]}})}),{}}});const O6=mt({color:String,density:String,...Wt()},"VBannerActions"),Ep=At()({name:"VBannerActions",props:O6(),setup(n,l){let{slots:r}=l;return Fe({VBtn:{color:n.color,density:n.density,variant:"text"}}),Lt(()=>{var h;return t("div",{class:["v-banner-actions",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}}),Vp=Gn("v-banner-text"),T6=mt({avatar:String,color:String,icon:te,lines:String,stacked:Boolean,sticky:Boolean,text:String,...Cn(),...Wt(),...Ee(),...Dn(),...Re(),...Wl(),...ho(),...Ie(),...le(),...ce()},"VBanner"),R6=At()({name:"VBanner",props:T6(),setup(n,l){let{slots:r}=l;const{borderClasses:h}=On(n),{densityClasses:u}=sn(n),{mobile:g}=Mr(),{dimensionStyles:v}=Fn(n),{elevationClasses:b}=Ze(n),{locationStyles:z}=Xl(n),{positionClasses:C}=co(n),{roundedClasses:S}=Be(n),{themeClasses:A}=ge(n),B=Bt(n,"color"),P=Bt(n,"density");Fe({VBannerActions:{color:B,density:P}}),Lt(()=>{const D=!!(n.text||r.text),E=!!(n.avatar||n.icon),Y=!!(E||r.prepend);return t(n.tag,{class:["v-banner",{"v-banner--stacked":n.stacked||g.value,"v-banner--sticky":n.sticky,[`v-banner--${n.lines}-line`]:!!n.lines},h.value,u.value,b.value,C.value,S.value,A.value,n.class],style:[v.value,z.value,n.style],role:"banner"},{default:()=>{var O;return[Y&&t("div",{key:"prepend",class:"v-banner__prepend"},[r.prepend?t(fe,{key:"prepend-defaults",disabled:!E,defaults:{VAvatar:{color:B.value,density:P.value,icon:n.icon,image:n.avatar}}},r.prepend):t(_l,{key:"prepend-avatar",color:B.value,density:P.value,icon:n.icon,image:n.avatar},null)]),t("div",{class:"v-banner__content"},[D&&t(Vp,{key:"text"},{default:()=>{var H;return[((H=r.text)==null?void 0:H.call(r))??n.text]}}),(O=r.default)==null?void 0:O.call(r)]),r.actions&&t(Ep,{key:"actions"},r.actions)]}})})}});const E6=mt({bgColor:String,color:String,grow:Boolean,mode:{type:String,validator:n=>!n||["horizontal","shift"].includes(n)},height:{type:[Number,String],default:56},active:{type:Boolean,default:!0},...Cn(),...Wt(),...Ee(),...Re(),...Ie(),...lo({name:"bottom-navigation"}),...le({tag:"header"}),...oo({modelValue:!0,selectedClass:"v-btn--selected"}),...ce()},"VBottomNavigation"),V6=At()({name:"VBottomNavigation",props:E6(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=Lu(),{borderClasses:u}=On(n),{backgroundColorClasses:g,backgroundColorStyles:v}=Ne(Bt(n,"bgColor")),{densityClasses:b}=sn(n),{elevationClasses:z}=Ze(n),{roundedClasses:C}=Be(n),{ssrBootStyles:S}=xr(),A=X(()=>Number(n.height)-(n.density==="comfortable"?8:0)-(n.density==="compact"?16:0)),B=Bt(n,"active"),{layoutItemStyles:P}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:X(()=>"bottom"),layoutSize:X(()=>B.value?A.value:0),elementSize:A,active:B,absolute:Bt(n,"absolute")});return yr(n,Ph),Fe({VBtn:{color:Bt(n,"color"),density:Bt(n,"density"),stacked:X(()=>n.mode!=="horizontal"),variant:"text"}},{scoped:!0}),Lt(()=>t(n.tag,{class:["v-bottom-navigation",{"v-bottom-navigation--active":B.value,"v-bottom-navigation--grow":n.grow,"v-bottom-navigation--shift":n.mode==="shift"},h.value,g.value,u.value,b.value,z.value,C.value,n.class],style:[v.value,P.value,{height:Xt(A.value),transform:`translateY(${Xt(B.value?0:100,"%")})`},S.value,n.style]},{default:()=>[r.default&&t("div",{class:"v-bottom-navigation__content"},[r.default()])]})),{}}});const _6=mt({divider:[Number,String],...Wt()},"VBreadcrumbsDivider"),_p=At()({name:"VBreadcrumbsDivider",props:_6(),setup(n,l){let{slots:r}=l;return Lt(()=>{var h;return t("li",{class:["v-breadcrumbs-divider",n.class],style:n.style},[((h=r==null?void 0:r.default)==null?void 0:h.call(r))??n.divider])}),{}}}),W6=mt({active:Boolean,activeClass:String,activeColor:String,color:String,disabled:Boolean,title:String,...Wt(),...gs(),...le({tag:"li"})},"VBreadcrumbsItem"),Wp=At()({name:"VBreadcrumbsItem",props:W6(),setup(n,l){let{slots:r,attrs:h}=l;const u=ps(n,h),g=X(()=>{var C;return n.active||((C=u.isActive)==null?void 0:C.value)}),v=X(()=>g.value?n.activeColor:n.color),{textColorClasses:b,textColorStyles:z}=rn(v);return Lt(()=>t(n.tag,{class:["v-breadcrumbs-item",{"v-breadcrumbs-item--active":g.value,"v-breadcrumbs-item--disabled":n.disabled,[`${n.activeClass}`]:g.value&&n.activeClass},b.value,n.class],style:[z.value,n.style],"aria-current":g.value?"page":void 0},{default:()=>{var C,S;return[u.isLink.value?t("a",{class:"v-breadcrumbs-item--link",href:u.href.value,"aria-current":g.value?"page":void 0,onClick:u.navigate},[((S=r.default)==null?void 0:S.call(r))??n.title]):((C=r.default)==null?void 0:C.call(r))??n.title]}})),{}}}),X6=mt({activeClass:String,activeColor:String,bgColor:String,color:String,disabled:Boolean,divider:{type:String,default:"/"},icon:te,items:{type:Array,default:()=>[]},...Wt(),...Ee(),...Ie(),...le({tag:"ul"})},"VBreadcrumbs"),q6=At()({name:"VBreadcrumbs",props:X6(),setup(n,l){let{slots:r}=l;const{backgroundColorClasses:h,backgroundColorStyles:u}=Ne(Bt(n,"bgColor")),{densityClasses:g}=sn(n),{roundedClasses:v}=Be(n);Fe({VBreadcrumbsDivider:{divider:Bt(n,"divider")},VBreadcrumbsItem:{activeClass:Bt(n,"activeClass"),activeColor:Bt(n,"activeColor"),color:Bt(n,"color"),disabled:Bt(n,"disabled")}});const b=X(()=>n.items.map(z=>typeof z=="string"?{item:{title:z},raw:z}:{item:z,raw:z}));return Lt(()=>{const z=!!(r.prepend||n.icon);return t(n.tag,{class:["v-breadcrumbs",h.value,g.value,v.value,n.class],style:[u.value,n.style]},{default:()=>{var C;return[z&&t("li",{key:"prepend",class:"v-breadcrumbs__prepend"},[r.prepend?t(fe,{key:"prepend-defaults",disabled:!n.icon,defaults:{VIcon:{icon:n.icon,start:!0}}},r.prepend):t(be,{key:"prepend-icon",start:!0,icon:n.icon},null)]),b.value.map((S,A,B)=>{let{item:P,raw:D}=S;return t(Zt,null,[t(Wp,o({key:P.title,disabled:A>=B.length-1},P),{default:r.title?()=>{var E;return(E=r.title)==null?void 0:E.call(r,{item:D,index:A})}:void 0}),A{var E;return(E=r.divider)==null?void 0:E.call(r,{item:D,index:A})}:void 0})])}),(C=r.default)==null?void 0:C.call(r)]}})}),{}}});const Xp=At()({name:"VCardActions",props:Wt(),setup(n,l){let{slots:r}=l;return Fe({VBtn:{variant:"text"}}),Lt(()=>{var h;return t("div",{class:["v-card-actions",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}}),qp=Gn("v-card-subtitle"),Yp=Gn("v-card-title"),Y6=mt({appendAvatar:String,appendIcon:te,prependAvatar:String,prependIcon:te,subtitle:String,title:String,...Wt(),...Ee()},"VCardItem"),Gp=At()({name:"VCardItem",props:Y6(),setup(n,l){let{slots:r}=l;return Lt(()=>{var C;const h=!!(n.prependAvatar||n.prependIcon),u=!!(h||r.prepend),g=!!(n.appendAvatar||n.appendIcon),v=!!(g||r.append),b=!!(n.title||r.title),z=!!(n.subtitle||r.subtitle);return t("div",{class:["v-card-item",n.class],style:n.style},[u&&t("div",{key:"prepend",class:"v-card-item__prepend"},[r.prepend?t(fe,{key:"prepend-defaults",disabled:!h,defaults:{VAvatar:{density:n.density,icon:n.prependIcon,image:n.prependAvatar}}},r.prepend):h&&t(_l,{key:"prepend-avatar",density:n.density,icon:n.prependIcon,image:n.prependAvatar},null)]),t("div",{class:"v-card-item__content"},[b&&t(Yp,{key:"title"},{default:()=>{var S;return[((S=r.title)==null?void 0:S.call(r))??n.title]}}),z&&t(qp,{key:"subtitle"},{default:()=>{var S;return[((S=r.subtitle)==null?void 0:S.call(r))??n.subtitle]}}),(C=r.default)==null?void 0:C.call(r)]),v&&t("div",{key:"append",class:"v-card-item__append"},[r.append?t(fe,{key:"append-defaults",disabled:!g,defaults:{VAvatar:{density:n.density,icon:n.appendIcon,image:n.appendAvatar}}},r.append):g&&t(_l,{key:"append-avatar",density:n.density,icon:n.appendIcon,image:n.appendAvatar},null)])])}),{}}}),Up=Gn("v-card-text"),G6=mt({appendAvatar:String,appendIcon:te,disabled:Boolean,flat:Boolean,hover:Boolean,image:String,link:{type:Boolean,default:void 0},prependAvatar:String,prependIcon:te,ripple:{type:[Boolean,Object],default:!0},subtitle:String,text:String,title:String,...Cn(),...Wt(),...Ee(),...Dn(),...Re(),...Oh(),...Wl(),...ho(),...Ie(),...gs(),...le(),...ce(),...Tn({variant:"elevated"})},"VCard"),U6=At()({name:"VCard",directives:{Ripple:ql},props:G6(),setup(n,l){let{attrs:r,slots:h}=l;const{themeClasses:u}=ge(n),{borderClasses:g}=On(n),{colorClasses:v,colorStyles:b,variantClasses:z}=Ir(n),{densityClasses:C}=sn(n),{dimensionStyles:S}=Fn(n),{elevationClasses:A}=Ze(n),{loaderClasses:B}=Ta(n),{locationStyles:P}=Xl(n),{positionClasses:D}=co(n),{roundedClasses:E}=Be(n),Y=ps(n,r),O=X(()=>n.link!==!1&&Y.isLink.value),H=X(()=>!n.disabled&&n.link!==!1&&(n.link||Y.isClickable.value));return Lt(()=>{const U=O.value?"a":n.tag,W=!!(h.title||n.title),_=!!(h.subtitle||n.subtitle),tt=W||_,nt=!!(h.append||n.appendAvatar||n.appendIcon),q=!!(h.prepend||n.prependAvatar||n.prependIcon),G=!!(h.image||n.image),et=tt||q||nt,st=!!(h.text||n.text);return Ce(t(U,{class:["v-card",{"v-card--disabled":n.disabled,"v-card--flat":n.flat,"v-card--hover":n.hover&&!(n.disabled||n.flat),"v-card--link":H.value},u.value,g.value,v.value,C.value,A.value,B.value,D.value,E.value,z.value,n.class],style:[b.value,S.value,P.value,n.style],href:Y.href.value,onClick:H.value&&Y.navigate,tabindex:n.disabled?-1:void 0},{default:()=>{var rt;return[G&&t("div",{key:"image",class:"v-card__image"},[h.image?t(fe,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},h.image):t(gr,{key:"image-img",cover:!0,src:n.image},null)]),t(Th,{name:"v-card",active:!!n.loading,color:typeof n.loading=="boolean"?void 0:n.loading},{default:h.loader}),et&&t(Gp,{key:"item",prependAvatar:n.prependAvatar,prependIcon:n.prependIcon,title:n.title,subtitle:n.subtitle,appendAvatar:n.appendAvatar,appendIcon:n.appendIcon},{default:h.item,prepend:h.prepend,title:h.title,subtitle:h.subtitle,append:h.append}),st&&t(Up,{key:"text"},{default:()=>{var ht;return[((ht=h.text)==null?void 0:ht.call(h))??n.text]}}),(rt=h.default)==null?void 0:rt.call(h),h.actions&&t(Xp,null,{default:h.actions}),zr(H.value,"v-card")]}}),[[mn("ripple"),H.value&&n.ripple]])}),{}}});const Z6=n=>{const{touchstartX:l,touchendX:r,touchstartY:h,touchendY:u}=n,g=.5,v=16;n.offsetX=r-l,n.offsetY=u-h,Math.abs(n.offsetY)l+v&&n.right(n)),Math.abs(n.offsetX)h+v&&n.down(n))};function K6(n,l){var h;const r=n.changedTouches[0];l.touchstartX=r.clientX,l.touchstartY=r.clientY,(h=l.start)==null||h.call(l,{originalEvent:n,...l})}function Q6(n,l){var h;const r=n.changedTouches[0];l.touchendX=r.clientX,l.touchendY=r.clientY,(h=l.end)==null||h.call(l,{originalEvent:n,...l}),Z6(l)}function J6(n,l){var h;const r=n.changedTouches[0];l.touchmoveX=r.clientX,l.touchmoveY=r.clientY,(h=l.move)==null||h.call(l,{originalEvent:n,...l})}function t7(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const l={touchstartX:0,touchstartY:0,touchendX:0,touchendY:0,touchmoveX:0,touchmoveY:0,offsetX:0,offsetY:0,left:n.left,right:n.right,up:n.up,down:n.down,start:n.start,move:n.move,end:n.end};return{touchstart:r=>K6(r,l),touchend:r=>Q6(r,l),touchmove:r=>J6(r,l)}}function e7(n,l){var b;const r=l.value,h=r!=null&&r.parent?n.parentElement:n,u=(r==null?void 0:r.options)??{passive:!0},g=(b=l.instance)==null?void 0:b.$.uid;if(!h||!g)return;const v=t7(l.value);h._touchHandlers=h._touchHandlers??Object.create(null),h._touchHandlers[g]=v,pu(v).forEach(z=>{h.addEventListener(z,v[z],u)})}function n7(n,l){var g,v;const r=(g=l.value)!=null&&g.parent?n.parentElement:n,h=(v=l.instance)==null?void 0:v.$.uid;if(!(r!=null&&r._touchHandlers)||!h)return;const u=r._touchHandlers[h];pu(u).forEach(b=>{r.removeEventListener(b,u[b])}),delete r._touchHandlers[h]}const Gh={mounted:e7,unmounted:n7},l7=Gh,Zp=Symbol.for("vuetify:v-window"),Kp=Symbol.for("vuetify:v-window-group"),Qp=mt({continuous:Boolean,nextIcon:{type:[Boolean,String,Function,Object],default:"$next"},prevIcon:{type:[Boolean,String,Function,Object],default:"$prev"},reverse:Boolean,showArrows:{type:[Boolean,String],validator:n=>typeof n=="boolean"||n==="hover"},touch:{type:[Object,Boolean],default:void 0},direction:{type:String,default:"horizontal"},modelValue:null,disabled:Boolean,selectedClass:{type:String,default:"v-window-item--active"},mandatory:{type:[Boolean,String],default:"force"},...Wt(),...le(),...ce()},"VWindow"),x0=At()({name:"VWindow",directives:{Touch:Gh},props:Qp(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{isRtl:u}=Xe(),{t:g}=Ln(),v=yr(n,Kp),b=Pt(),z=X(()=>u.value?!n.reverse:n.reverse),C=_t(!1),S=X(()=>{const W=n.direction==="vertical"?"y":"x",tt=(z.value?!C.value:C.value)?"-reverse":"";return`v-window-${W}${tt}-transition`}),A=_t(0),B=Pt(void 0),P=X(()=>v.items.value.findIndex(W=>v.selected.value.includes(W.id)));Vt(P,(W,_)=>{const tt=v.items.value.length,nt=tt-1;tt<=2?C.value=W<_:W===nt&&_===0?C.value=!0:W===0&&_===nt?C.value=!1:C.value=W<_}),ye(Zp,{transition:S,isReversed:C,transitionCount:A,transitionHeight:B,rootRef:b});const D=X(()=>n.continuous||P.value!==0),E=X(()=>n.continuous||P.value!==v.items.value.length-1);function Y(){D.value&&v.prev()}function O(){E.value&&v.next()}const H=X(()=>{const W=[],_={icon:u.value?n.nextIcon:n.prevIcon,class:`v-window__${z.value?"right":"left"}`,onClick:v.prev,ariaLabel:g("$vuetify.carousel.prev")};W.push(D.value?r.prev?r.prev({props:_}):t(dn,_,null):t("div",null,null));const tt={icon:u.value?n.prevIcon:n.nextIcon,class:`v-window__${z.value?"left":"right"}`,onClick:v.next,ariaLabel:g("$vuetify.carousel.next")};return W.push(E.value?r.next?r.next({props:tt}):t(dn,tt,null):t("div",null,null)),W}),U=X(()=>n.touch===!1?n.touch:{...{left:()=>{z.value?Y():O()},right:()=>{z.value?O():Y()},start:_=>{let{originalEvent:tt}=_;tt.stopPropagation()}},...n.touch===!0?{}:n.touch});return Lt(()=>Ce(t(n.tag,{ref:b,class:["v-window",{"v-window--show-arrows-on-hover":n.showArrows==="hover"},h.value,n.class],style:n.style},{default:()=>{var W,_;return[t("div",{class:"v-window__container",style:{height:B.value}},[(W=r.default)==null?void 0:W.call(r,{group:v}),n.showArrows!==!1&&t("div",{class:"v-window__controls"},[H.value])]),(_=r.additional)==null?void 0:_.call(r,{group:v})]}}),[[mn("touch"),U.value]])),{group:v}}}),r7=mt({color:String,cycle:Boolean,delimiterIcon:{type:te,default:"$delimiter"},height:{type:[Number,String],default:500},hideDelimiters:Boolean,hideDelimiterBackground:Boolean,interval:{type:[Number,String],default:6e3,validator:n=>Number(n)>0},progress:[Boolean,String],verticalDelimiters:[Boolean,String],...Qp({continuous:!0,mandatory:"force",showArrows:!0})},"VCarousel"),o7=At()({name:"VCarousel",props:r7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{t:u}=Ln(),g=Pt();let v=-1;Vt(h,z),Vt(()=>n.interval,z),Vt(()=>n.cycle,C=>{C?z():window.clearTimeout(v)}),Te(b);function b(){!n.cycle||!g.value||(v=window.setTimeout(g.value.group.next,+n.interval>0?+n.interval:6e3))}function z(){window.clearTimeout(v),window.requestAnimationFrame(b)}return Lt(()=>{const[C]=x0.filterProps(n);return t(x0,o({ref:g},C,{modelValue:h.value,"onUpdate:modelValue":S=>h.value=S,class:["v-carousel",{"v-carousel--hide-delimiter-background":n.hideDelimiterBackground,"v-carousel--vertical-delimiters":n.verticalDelimiters},n.class],style:[{height:Xt(n.height)},n.style]}),{default:r.default,additional:S=>{let{group:A}=S;return t(Zt,null,[!n.hideDelimiters&&t("div",{class:"v-carousel__controls",style:{left:n.verticalDelimiters==="left"&&n.verticalDelimiters?0:"auto",right:n.verticalDelimiters==="right"?0:"auto"}},[A.items.value.length>0&&t(fe,{defaults:{VBtn:{color:n.color,icon:n.delimiterIcon,size:"x-small",variant:"text"}},scoped:!0},{default:()=>[A.items.value.map((B,P)=>{const D={id:`carousel-item-${B.id}`,"aria-label":u("$vuetify.carousel.ariaLabel.delimiter",P+1,A.items.value.length),class:[A.isSelected(B.id)&&"v-btn--active"],onClick:()=>A.select(B.id,!0)};return r.item?r.item({props:D,item:B}):t(dn,o(B,D),null)})]})]),n.progress&&t(Fh,{class:"v-carousel__progress",color:typeof n.progress=="string"?n.progress:void 0,modelValue:(A.getItemIndex(h.value)+1)/A.items.value.length*100},null)])},prev:r.prev,next:r.next})}),{}}}),Jp=mt({reverseTransition:{type:[Boolean,String],default:void 0},transition:{type:[Boolean,String],default:void 0},...Wt(),...so(),...Wa()},"VWindowItem"),z0=At()({name:"VWindowItem",directives:{Touch:l7},props:Jp(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=he(Zp),u=ao(n,Kp),{isBooted:g}=xr();if(!h||!u)throw new Error("[Vuetify] VWindowItem must be used inside VWindow");const v=_t(!1),b=X(()=>g.value&&(h.isReversed.value?n.reverseTransition!==!1:n.transition!==!1));function z(){!v.value||!h||(v.value=!1,h.transitionCount.value>0&&(h.transitionCount.value-=1,h.transitionCount.value===0&&(h.transitionHeight.value=void 0)))}function C(){var D;v.value||!h||(v.value=!0,h.transitionCount.value===0&&(h.transitionHeight.value=Xt((D=h.rootRef.value)==null?void 0:D.clientHeight)),h.transitionCount.value+=1)}function S(){z()}function A(D){v.value&&pe(()=>{!b.value||!v.value||!h||(h.transitionHeight.value=Xt(D.clientHeight))})}const B=X(()=>{const D=h.isReversed.value?n.reverseTransition:n.transition;return b.value?{name:typeof D!="string"?h.transition.value:D,onBeforeEnter:C,onAfterEnter:z,onEnterCancelled:S,onBeforeLeave:C,onAfterLeave:z,onLeaveCancelled:S,onEnter:A}:!1}),{hasContent:P}=Wh(n,u.isSelected);return Lt(()=>t(Wn,{transition:B.value,disabled:!g.value},{default:()=>{var D;return[Ce(t("div",{class:["v-window-item",u.selectedClass.value,n.class],style:n.style},[P.value&&((D=r.default)==null?void 0:D.call(r))]),[[Nn,u.isSelected.value]])]}})),{groupItem:u}}}),s7=mt({...Gu(),...Jp()},"VCarouselItem"),a7=At()({name:"VCarouselItem",inheritAttrs:!1,props:s7(),setup(n,l){let{slots:r,attrs:h}=l;Lt(()=>{const[u]=gr.filterProps(n),[g]=z0.filterProps(n);return t(z0,o({class:"v-carousel-item"},g),{default:()=>[t(gr,o(h,u),r)]})})}});const i7=Gn("v-code");const h7=mt({color:{type:Object},disabled:Boolean,dotSize:{type:[Number,String],default:10},height:{type:[Number,String],default:150},width:{type:[Number,String],default:300},...Wt()},"VColorPickerCanvas"),d7=Pn({name:"VColorPickerCanvas",props:h7(),emits:{"update:color":n=>!0,"update:position":n=>!0},setup(n,l){let{emit:r}=l;const h=_t(!1),u=_t(!1),g=Pt({x:0,y:0}),v=X(()=>{const{x:O,y:H}=g.value,U=parseInt(n.dotSize,10)/2;return{width:Xt(n.dotSize),height:Xt(n.dotSize),transform:`translate(${Xt(O-U)}, ${Xt(H-U)})`}}),b=Pt(),z=_t(parseFloat(n.width)),C=_t(parseFloat(n.height)),{resizeRef:S}=el(O=>{var W;if(!((W=S.value)!=null&&W.offsetParent))return;const{width:H,height:U}=O[0].contentRect;z.value=H,C.value=U});function A(O,H,U){const{left:W,top:_,width:tt,height:nt}=U;g.value={x:en(O-W,0,tt),y:en(H-_,0,nt)}}function B(O){n.disabled||!b.value||A(O.clientX,O.clientY,b.value.getBoundingClientRect())}function P(O){O.preventDefault(),!n.disabled&&(h.value=!0,window.addEventListener("mousemove",D),window.addEventListener("mouseup",E),window.addEventListener("touchmove",D),window.addEventListener("touchend",E))}function D(O){if(n.disabled||!b.value)return;h.value=!0;const H=o5(O);A(H.clientX,H.clientY,b.value.getBoundingClientRect())}function E(){window.removeEventListener("mousemove",D),window.removeEventListener("mouseup",E),window.removeEventListener("touchmove",D),window.removeEventListener("touchend",E)}Vt(g,()=>{var U,W;if(u.value){u.value=!1;return}if(!b.value)return;const{x:O,y:H}=g.value;r("update:color",{h:((U=n.color)==null?void 0:U.h)??0,s:en(O,0,z.value)/z.value,v:1-en(H,0,C.value)/C.value,a:((W=n.color)==null?void 0:W.a)??1})});function Y(){var _;if(!b.value)return;const O=b.value,H=O.getContext("2d");if(!H)return;const U=H.createLinearGradient(0,0,O.width,0);U.addColorStop(0,"hsla(0, 0%, 100%, 1)"),U.addColorStop(1,`hsla(${((_=n.color)==null?void 0:_.h)??0}, 100%, 50%, 1)`),H.fillStyle=U,H.fillRect(0,0,O.width,O.height);const W=H.createLinearGradient(0,0,0,O.height);W.addColorStop(0,"hsla(0, 0%, 100%, 0)"),W.addColorStop(1,"hsla(0, 0%, 0%, 1)"),H.fillStyle=W,H.fillRect(0,0,O.width,O.height)}return Vt(()=>{var O;return(O=n.color)==null?void 0:O.h},Y,{immediate:!0}),Vt(()=>[z.value,C.value],(O,H)=>{Y(),g.value={x:g.value.x*O[0]/H[0],y:g.value.y*O[1]/H[1]}},{flush:"post"}),Vt(()=>n.color,()=>{if(h.value){h.value=!1;return}u.value=!0,g.value=n.color?{x:n.color.s*z.value,y:(1-n.color.v)*C.value}:{x:0,y:0}},{deep:!0,immediate:!0}),Te(()=>Y()),Lt(()=>t("div",{ref:S,class:["v-color-picker-canvas",n.class],style:n.style,onClick:B,onMousedown:P,onTouchstart:P},[t("canvas",{ref:b,width:z.value,height:C.value},null),n.color&&t("div",{class:["v-color-picker-canvas__dot",{"v-color-picker-canvas__dot--disabled":n.disabled}],style:v.value},null)])),{}}});function c7(n,l){if(l){const{a:r,...h}=n;return h}return n}function u7(n,l){if(l==null||typeof l=="string"){const r=$u(n);return n.a===1?r.slice(0,7):r}if(typeof l=="object"){let r;return lr(l,["r","g","b"])?r=pl(n):lr(l,["h","s","l"])?r=zu(n):lr(l,["h","s","v"])&&(r=n),c7(r,!lr(l,["a"])&&n.a===1)}return n}const Do={h:0,s:0,v:1,a:1},I0={inputProps:{type:"number",min:0},inputs:[{label:"R",max:255,step:1,getValue:n=>Math.round(n.r),getColor:(n,l)=>({...n,r:Number(l)})},{label:"G",max:255,step:1,getValue:n=>Math.round(n.g),getColor:(n,l)=>({...n,g:Number(l)})},{label:"B",max:255,step:1,getValue:n=>Math.round(n.b),getColor:(n,l)=>({...n,b:Number(l)})},{label:"A",max:1,step:.01,getValue:n=>{let{a:l}=n;return l!=null?Math.round(l*100)/100:1},getColor:(n,l)=>({...n,a:Number(l)})}],to:pl,from:ja};var cd;const p7={...I0,inputs:(cd=I0.inputs)==null?void 0:cd.slice(0,3)},y0={inputProps:{type:"number",min:0},inputs:[{label:"H",max:360,step:1,getValue:n=>Math.round(n.h),getColor:(n,l)=>({...n,h:Number(l)})},{label:"S",max:1,step:.01,getValue:n=>Math.round(n.s*100)/100,getColor:(n,l)=>({...n,s:Number(l)})},{label:"L",max:1,step:.01,getValue:n=>Math.round(n.l*100)/100,getColor:(n,l)=>({...n,l:Number(l)})},{label:"A",max:1,step:.01,getValue:n=>{let{a:l}=n;return l!=null?Math.round(l*100)/100:1},getColor:(n,l)=>({...n,a:Number(l)})}],to:zu,from:zh},g7={...y0,inputs:y0.inputs.slice(0,3)},t4={inputProps:{type:"text"},inputs:[{label:"HEXA",getValue:n=>n,getColor:(n,l)=>l}],to:$u,from:I5},w7={...t4,inputs:[{label:"HEX",getValue:n=>n.slice(0,7),getColor:(n,l)=>l}]},hr={rgb:p7,rgba:I0,hsl:g7,hsla:y0,hex:w7,hexa:t4},v7=n=>{let{label:l,...r}=n;return t("div",{class:"v-color-picker-edit__input"},[t("input",r,null),t("span",null,[l])])},f7=mt({color:Object,disabled:Boolean,mode:{type:String,default:"rgba",validator:n=>Object.keys(hr).includes(n)},modes:{type:Array,default:()=>Object.keys(hr),validator:n=>Array.isArray(n)&&n.every(l=>Object.keys(hr).includes(l))},...Wt()},"VColorPickerEdit"),m7=Pn({name:"VColorPickerEdit",props:f7(),emits:{"update:color":n=>!0,"update:mode":n=>!0},setup(n,l){let{emit:r}=l;const h=X(()=>n.modes.map(g=>({...hr[g],name:g}))),u=X(()=>{var b;const g=h.value.find(z=>z.name===n.mode);if(!g)return[];const v=n.color?g.to(n.color):null;return(b=g.inputs)==null?void 0:b.map(z=>{let{getValue:C,getColor:S,...A}=z;return{...g.inputProps,...A,disabled:n.disabled,value:v&&C(v),onChange:B=>{const P=B.target;P&&r("update:color",g.from(S(v??Do,P.value)))}}})});return Lt(()=>{var g;return t("div",{class:["v-color-picker-edit",n.class],style:n.style},[(g=u.value)==null?void 0:g.map(v=>t(v7,v,null)),h.value.length>1&&t(dn,{icon:"$unfold",size:"x-small",variant:"plain",onClick:()=>{const v=h.value.findIndex(b=>b.name===n.mode);r("update:mode",h.value[(v+1)%h.value.length].name)}},null)])}),{}}});const Uh=Symbol.for("vuetify:v-slider");function C0(n,l,r){const h=r==="vertical",u=l.getBoundingClientRect(),g="touches"in n?n.touches[0]:n;return h?g.clientY-(u.top+u.height/2):g.clientX-(u.left+u.width/2)}function k7(n,l){return"touches"in n&&n.touches.length?n.touches[0][l]:"changedTouches"in n&&n.changedTouches.length?n.changedTouches[0][l]:n[l]}const e4=mt({disabled:{type:Boolean,default:null},error:Boolean,readonly:{type:Boolean,default:null},max:{type:[Number,String],default:100},min:{type:[Number,String],default:0},step:{type:[Number,String],default:0},thumbColor:String,thumbLabel:{type:[Boolean,String],default:void 0,validator:n=>typeof n=="boolean"||n==="always"},thumbSize:{type:[Number,String],default:20},showTicks:{type:[Boolean,String],default:!1,validator:n=>typeof n=="boolean"||n==="always"},ticks:{type:[Array,Object]},tickSize:{type:[Number,String],default:2},color:String,trackColor:String,trackFillColor:String,trackSize:{type:[Number,String],default:4},direction:{type:String,default:"horizontal",validator:n=>["vertical","horizontal"].includes(n)},reverse:Boolean,...Ie(),...Re({elevation:2})},"Slider"),n4=n=>{const l=X(()=>parseFloat(n.min)),r=X(()=>parseFloat(n.max)),h=X(()=>+n.step>0?parseFloat(n.step):0),u=X(()=>Math.max(u1(h.value),u1(l.value)));function g(v){if(v=parseFloat(v),h.value<=0)return v;const b=en(v,l.value,r.value),z=l.value%h.value,C=Math.round((b-z)/h.value)*h.value+z;return parseFloat(Math.min(C,r.value).toFixed(u.value))}return{min:l,max:r,step:h,decimals:u,roundValue:g}},l4=n=>{let{props:l,steps:r,onSliderStart:h,onSliderMove:u,onSliderEnd:g,getActiveThumb:v}=n;const{isRtl:b}=Xe(),z=Bt(l,"reverse"),C=X(()=>{let ut=b.value?"rtl":"ltr";return l.reverse&&(ut=ut==="rtl"?"ltr":"rtl"),ut}),{min:S,max:A,step:B,decimals:P,roundValue:D}=r,E=X(()=>parseInt(l.thumbSize,10)),Y=X(()=>parseInt(l.tickSize,10)),O=X(()=>parseInt(l.trackSize,10)),H=X(()=>(A.value-S.value)/B.value),U=Bt(l,"disabled"),W=X(()=>l.direction==="vertical"),_=X(()=>l.error||l.disabled?void 0:l.thumbColor??l.color),tt=X(()=>l.error||l.disabled?void 0:l.trackColor??l.color),nt=X(()=>l.error||l.disabled?void 0:l.trackFillColor??l.color),q=_t(!1),G=_t(0),et=Pt(),st=Pt();function rt(ut){var ct;const pt=l.direction==="vertical",Ht=pt?"top":"left",Nt=pt?"height":"width",bt=pt?"clientY":"clientX",{[Ht]:ft,[Nt]:J}=(ct=et.value)==null?void 0:ct.$el.getBoundingClientRect(),lt=k7(ut,bt);let at=Math.min(Math.max((lt-ft-G.value)/J,0),1)||0;return(pt||C.value==="rtl")&&(at=1-at),D(S.value+at*(A.value-S.value))}const ht=ut=>{g({value:rt(ut)}),q.value=!1,G.value=0},dt=ut=>{st.value=v(ut),st.value&&(st.value.focus(),q.value=!0,st.value.contains(ut.target)?G.value=C0(ut,st.value,l.direction):(G.value=0,u({value:rt(ut)})),h({value:rt(ut)}))},Ct={passive:!0,capture:!0};function xt(ut){u({value:rt(ut)})}function wt(ut){ut.stopPropagation(),ut.preventDefault(),ht(ut),window.removeEventListener("mousemove",xt,Ct),window.removeEventListener("mouseup",wt)}function gt(ut){var pt;ht(ut),window.removeEventListener("touchmove",xt,Ct),(pt=ut.target)==null||pt.removeEventListener("touchend",gt)}function It(ut){var pt;dt(ut),window.addEventListener("touchmove",xt,Ct),(pt=ut.target)==null||pt.addEventListener("touchend",gt,{passive:!1})}function $t(ut){ut.preventDefault(),dt(ut),window.addEventListener("mousemove",xt,Ct),window.addEventListener("mouseup",wt,{passive:!1})}const Tt=ut=>{const pt=(ut-S.value)/(A.value-S.value)*100;return en(isNaN(pt)?0:pt,0,100)},Ft=Bt(l,"showTicks"),Kt=X(()=>Ft.value?l.ticks?Array.isArray(l.ticks)?l.ticks.map(ut=>({value:ut,position:Tt(ut),label:ut.toString()})):Object.keys(l.ticks).map(ut=>({value:parseFloat(ut),position:Tt(parseFloat(ut)),label:l.ticks[ut]})):H.value!==1/0?il(H.value+1).map(ut=>{const pt=S.value+ut*B.value;return{value:pt,position:Tt(pt)}}):[]:[]),Qt=X(()=>Kt.value.some(ut=>{let{label:pt}=ut;return!!pt})),Rt={activeThumbRef:st,color:Bt(l,"color"),decimals:P,disabled:U,direction:Bt(l,"direction"),elevation:Bt(l,"elevation"),hasLabels:Qt,horizontalDirection:C,isReversed:z,min:S,max:A,mousePressed:q,numTicks:H,onSliderMousedown:$t,onSliderTouchstart:It,parsedTicks:Kt,parseMouseMove:rt,position:Tt,readonly:Bt(l,"readonly"),rounded:Bt(l,"rounded"),roundValue:D,showTicks:Ft,startOffset:G,step:B,thumbSize:E,thumbColor:_,thumbLabel:Bt(l,"thumbLabel"),ticks:Bt(l,"ticks"),tickSize:Y,trackColor:tt,trackContainerRef:et,trackFillColor:nt,trackSize:O,vertical:W};return ye(Uh,Rt),Rt},b7=mt({focused:Boolean,max:{type:Number,required:!0},min:{type:Number,required:!0},modelValue:{type:Number,required:!0},position:{type:Number,required:!0},ripple:{type:[Boolean,Object],default:!0},...Wt()},"VSliderThumb"),S0=At()({name:"VSliderThumb",directives:{Ripple:ql},props:b7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=he(Uh),{rtlClasses:g}=Xe();if(!u)throw new Error("[Vuetify] v-slider-thumb must be used inside v-slider or v-range-slider");const{thumbColor:v,step:b,vertical:z,disabled:C,thumbSize:S,thumbLabel:A,direction:B,readonly:P,elevation:D,isReversed:E,horizontalDirection:Y,mousePressed:O,decimals:H}=u,{textColorClasses:U,textColorStyles:W}=rn(v),{pageup:_,pagedown:tt,end:nt,home:q,left:G,right:et,down:st,up:rt}=n0,ht=[_,tt,nt,q,G,et,st,rt],dt=X(()=>b.value?[1,2,3]:[1,5,10]);function Ct(wt,gt){if(!ht.includes(wt.key))return;wt.preventDefault();const It=b.value||.1,$t=(n.max-n.min)/It;if([G,et,st,rt].includes(wt.key)){const Ft=(Y.value==="rtl"?[G,rt]:[et,rt]).includes(wt.key)?1:-1,Kt=wt.shiftKey?2:wt.ctrlKey?1:0;gt=gt+Ft*It*dt.value[Kt]}else if(wt.key===q)gt=n.min;else if(wt.key===nt)gt=n.max;else{const Tt=wt.key===tt?1:-1;gt=gt-Tt*It*($t>100?$t/10:10)}return Math.max(n.min,Math.min(n.max,gt))}function xt(wt){const gt=Ct(wt,n.modelValue);gt!=null&&h("update:modelValue",gt)}return Lt(()=>{const wt=Xt(z.value||E.value?100-n.position:n.position,"%"),{elevationClasses:gt}=Ze(X(()=>C.value?void 0:D.value));return t("div",{class:["v-slider-thumb",{"v-slider-thumb--focused":n.focused,"v-slider-thumb--pressed":n.focused&&O.value},n.class,g.value],style:[{"--v-slider-thumb-position":wt,"--v-slider-thumb-size":Xt(S.value)},n.style],role:"slider",tabindex:C.value?-1:0,"aria-valuemin":n.min,"aria-valuemax":n.max,"aria-valuenow":n.modelValue,"aria-readonly":!!P.value,"aria-orientation":B.value,onKeydown:P.value?void 0:xt},[t("div",{class:["v-slider-thumb__surface",U.value,gt.value],style:{...W.value}},null),Ce(t("div",{class:["v-slider-thumb__ripple",U.value],style:W.value},null),[[mn("ripple"),n.ripple,null,{circle:!0,center:!0}]]),t(Bh,{origin:"bottom center"},{default:()=>{var It;return[Ce(t("div",{class:"v-slider-thumb__label-container"},[t("div",{class:["v-slider-thumb__label"]},[t("div",null,[((It=r["thumb-label"])==null?void 0:It.call(r,{modelValue:n.modelValue}))??n.modelValue.toFixed(b.value?H.value:1)])])]),[[Nn,A.value&&n.focused||A.value==="always"]])]}})])}),{}}});const M7=mt({start:{type:Number,required:!0},stop:{type:Number,required:!0},...Wt()},"VSliderTrack"),r4=At()({name:"VSliderTrack",props:M7(),emits:{},setup(n,l){let{slots:r}=l;const h=he(Uh);if(!h)throw new Error("[Vuetify] v-slider-track must be inside v-slider or v-range-slider");const{color:u,horizontalDirection:g,parsedTicks:v,rounded:b,showTicks:z,tickSize:C,trackColor:S,trackFillColor:A,trackSize:B,vertical:P,min:D,max:E}=h,{roundedClasses:Y}=Be(b),{backgroundColorClasses:O,backgroundColorStyles:H}=Ne(A),{backgroundColorClasses:U,backgroundColorStyles:W}=Ne(S),_=X(()=>`inset-${P.value?"block-end":"inline-start"}`),tt=X(()=>P.value?"height":"width"),nt=X(()=>({[_.value]:"0%",[tt.value]:"100%"})),q=X(()=>n.stop-n.start),G=X(()=>({[_.value]:Xt(n.start,"%"),[tt.value]:Xt(q.value,"%")})),et=X(()=>z.value?(P.value?v.value.slice().reverse():v.value).map((rt,ht)=>{var xt;const dt=P.value?"bottom":"margin-inline-start",Ct=rt.value!==D.value&&rt.value!==E.value?Xt(rt.position,"%"):void 0;return t("div",{key:rt.value,class:["v-slider-track__tick",{"v-slider-track__tick--filled":rt.position>=n.start&&rt.position<=n.stop,"v-slider-track__tick--first":rt.value===D.value,"v-slider-track__tick--last":rt.value===E.value}],style:{[dt]:Ct}},[(rt.label||r["tick-label"])&&t("div",{class:"v-slider-track__tick-label"},[((xt=r["tick-label"])==null?void 0:xt.call(r,{tick:rt,index:ht}))??rt.label])])}):[]);return Lt(()=>t("div",{class:["v-slider-track",Y.value,n.class],style:[{"--v-slider-track-size":Xt(B.value),"--v-slider-tick-size":Xt(C.value),direction:P.value?void 0:g.value},n.style]},[t("div",{class:["v-slider-track__background",U.value,{"v-slider-track__background--opacity":!!u.value||!A.value}],style:{...nt.value,...W.value}},null),t("div",{class:["v-slider-track__fill",O.value],style:{...G.value,...H.value}},null),z.value&&t("div",{class:["v-slider-track__ticks",{"v-slider-track__ticks--always-show":z.value==="always"}]},[et.value])])),{}}}),x7=mt({...Ea(),...e4(),...xl(),modelValue:{type:[Number,String],default:0}},"VSlider"),$0=At()({name:"VSlider",props:x7(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,start:n=>!0,end:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=Pt(),{rtlClasses:g}=Xe(),v=n4(n),b=ee(n,"modelValue",void 0,tt=>v.roundValue(tt??v.min.value)),{min:z,max:C,mousePressed:S,roundValue:A,onSliderMousedown:B,onSliderTouchstart:P,trackContainerRef:D,position:E,hasLabels:Y,readonly:O}=l4({props:n,steps:v,onSliderStart:()=>{h("start",b.value)},onSliderEnd:tt=>{let{value:nt}=tt;const q=A(nt);b.value=q,h("end",q)},onSliderMove:tt=>{let{value:nt}=tt;return b.value=A(nt)},getActiveThumb:()=>{var tt;return(tt=u.value)==null?void 0:tt.$el}}),{isFocused:H,focus:U,blur:W}=Yl(n),_=X(()=>E(b.value));return Lt(()=>{const[tt,nt]=Ge.filterProps(n),q=!!(n.label||r.label||r.prepend);return t(Ge,o({class:["v-slider",{"v-slider--has-labels":!!r["tick-label"]||Y.value,"v-slider--focused":H.value,"v-slider--pressed":S.value,"v-slider--disabled":n.disabled},g.value,n.class],style:n.style},tt,{focused:H.value}),{...r,prepend:q?G=>{var et,st;return t(Zt,null,[((et=r.label)==null?void 0:et.call(r,G))??n.label?t(uo,{id:G.id.value,class:"v-slider__label",text:n.label},null):void 0,(st=r.prepend)==null?void 0:st.call(r,G)])}:void 0,default:G=>{let{id:et,messagesId:st}=G;return t("div",{class:"v-slider__container",onMousedown:O.value?void 0:B,onTouchstartPassive:O.value?void 0:P},[t("input",{id:et.value,name:n.name||et.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:b.value},null),t(r4,{ref:D,start:0,stop:_.value},{"tick-label":r["tick-label"]}),t(S0,{ref:u,"aria-describedby":st.value,focused:H.value,min:z.value,max:C.value,modelValue:b.value,"onUpdate:modelValue":rt=>b.value=rt,position:_.value,elevation:n.elevation,onFocus:U,onBlur:W},{"thumb-label":r["thumb-label"]})])}})}),{}}}),z7=mt({color:{type:Object},disabled:Boolean,hideAlpha:Boolean,...Wt()},"VColorPickerPreview"),I7=Pn({name:"VColorPickerPreview",props:z7(),emits:{"update:color":n=>!0},setup(n,l){let{emit:r}=l;return Lt(()=>{var h,u;return t("div",{class:["v-color-picker-preview",{"v-color-picker-preview--hide-alpha":n.hideAlpha},n.class],style:n.style},[t("div",{class:"v-color-picker-preview__dot"},[t("div",{style:{background:yu(n.color??Do)}},null)]),t("div",{class:"v-color-picker-preview__sliders"},[t($0,{class:"v-color-picker-preview__track v-color-picker-preview__hue",modelValue:(h=n.color)==null?void 0:h.h,"onUpdate:modelValue":g=>r("update:color",{...n.color??Do,h:g}),step:0,min:0,max:360,disabled:n.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null),!n.hideAlpha&&t($0,{class:"v-color-picker-preview__track v-color-picker-preview__alpha",modelValue:((u=n.color)==null?void 0:u.a)??1,"onUpdate:modelValue":g=>r("update:color",{...n.color??Do,a:g}),step:1/256,min:0,max:1,disabled:n.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null)])])}),{}}});const y7=Object.freeze({base:"#f44336",lighten5:"#ffebee",lighten4:"#ffcdd2",lighten3:"#ef9a9a",lighten2:"#e57373",lighten1:"#ef5350",darken1:"#e53935",darken2:"#d32f2f",darken3:"#c62828",darken4:"#b71c1c",accent1:"#ff8a80",accent2:"#ff5252",accent3:"#ff1744",accent4:"#d50000"}),C7=Object.freeze({base:"#e91e63",lighten5:"#fce4ec",lighten4:"#f8bbd0",lighten3:"#f48fb1",lighten2:"#f06292",lighten1:"#ec407a",darken1:"#d81b60",darken2:"#c2185b",darken3:"#ad1457",darken4:"#880e4f",accent1:"#ff80ab",accent2:"#ff4081",accent3:"#f50057",accent4:"#c51162"}),S7=Object.freeze({base:"#9c27b0",lighten5:"#f3e5f5",lighten4:"#e1bee7",lighten3:"#ce93d8",lighten2:"#ba68c8",lighten1:"#ab47bc",darken1:"#8e24aa",darken2:"#7b1fa2",darken3:"#6a1b9a",darken4:"#4a148c",accent1:"#ea80fc",accent2:"#e040fb",accent3:"#d500f9",accent4:"#aa00ff"}),$7=Object.freeze({base:"#673ab7",lighten5:"#ede7f6",lighten4:"#d1c4e9",lighten3:"#b39ddb",lighten2:"#9575cd",lighten1:"#7e57c2",darken1:"#5e35b1",darken2:"#512da8",darken3:"#4527a0",darken4:"#311b92",accent1:"#b388ff",accent2:"#7c4dff",accent3:"#651fff",accent4:"#6200ea"}),A7=Object.freeze({base:"#3f51b5",lighten5:"#e8eaf6",lighten4:"#c5cae9",lighten3:"#9fa8da",lighten2:"#7986cb",lighten1:"#5c6bc0",darken1:"#3949ab",darken2:"#303f9f",darken3:"#283593",darken4:"#1a237e",accent1:"#8c9eff",accent2:"#536dfe",accent3:"#3d5afe",accent4:"#304ffe"}),B7=Object.freeze({base:"#2196f3",lighten5:"#e3f2fd",lighten4:"#bbdefb",lighten3:"#90caf9",lighten2:"#64b5f6",lighten1:"#42a5f5",darken1:"#1e88e5",darken2:"#1976d2",darken3:"#1565c0",darken4:"#0d47a1",accent1:"#82b1ff",accent2:"#448aff",accent3:"#2979ff",accent4:"#2962ff"}),H7=Object.freeze({base:"#03a9f4",lighten5:"#e1f5fe",lighten4:"#b3e5fc",lighten3:"#81d4fa",lighten2:"#4fc3f7",lighten1:"#29b6f6",darken1:"#039be5",darken2:"#0288d1",darken3:"#0277bd",darken4:"#01579b",accent1:"#80d8ff",accent2:"#40c4ff",accent3:"#00b0ff",accent4:"#0091ea"}),N7=Object.freeze({base:"#00bcd4",lighten5:"#e0f7fa",lighten4:"#b2ebf2",lighten3:"#80deea",lighten2:"#4dd0e1",lighten1:"#26c6da",darken1:"#00acc1",darken2:"#0097a7",darken3:"#00838f",darken4:"#006064",accent1:"#84ffff",accent2:"#18ffff",accent3:"#00e5ff",accent4:"#00b8d4"}),j7=Object.freeze({base:"#009688",lighten5:"#e0f2f1",lighten4:"#b2dfdb",lighten3:"#80cbc4",lighten2:"#4db6ac",lighten1:"#26a69a",darken1:"#00897b",darken2:"#00796b",darken3:"#00695c",darken4:"#004d40",accent1:"#a7ffeb",accent2:"#64ffda",accent3:"#1de9b6",accent4:"#00bfa5"}),P7=Object.freeze({base:"#4caf50",lighten5:"#e8f5e9",lighten4:"#c8e6c9",lighten3:"#a5d6a7",lighten2:"#81c784",lighten1:"#66bb6a",darken1:"#43a047",darken2:"#388e3c",darken3:"#2e7d32",darken4:"#1b5e20",accent1:"#b9f6ca",accent2:"#69f0ae",accent3:"#00e676",accent4:"#00c853"}),L7=Object.freeze({base:"#8bc34a",lighten5:"#f1f8e9",lighten4:"#dcedc8",lighten3:"#c5e1a5",lighten2:"#aed581",lighten1:"#9ccc65",darken1:"#7cb342",darken2:"#689f38",darken3:"#558b2f",darken4:"#33691e",accent1:"#ccff90",accent2:"#b2ff59",accent3:"#76ff03",accent4:"#64dd17"}),D7=Object.freeze({base:"#cddc39",lighten5:"#f9fbe7",lighten4:"#f0f4c3",lighten3:"#e6ee9c",lighten2:"#dce775",lighten1:"#d4e157",darken1:"#c0ca33",darken2:"#afb42b",darken3:"#9e9d24",darken4:"#827717",accent1:"#f4ff81",accent2:"#eeff41",accent3:"#c6ff00",accent4:"#aeea00"}),F7=Object.freeze({base:"#ffeb3b",lighten5:"#fffde7",lighten4:"#fff9c4",lighten3:"#fff59d",lighten2:"#fff176",lighten1:"#ffee58",darken1:"#fdd835",darken2:"#fbc02d",darken3:"#f9a825",darken4:"#f57f17",accent1:"#ffff8d",accent2:"#ffff00",accent3:"#ffea00",accent4:"#ffd600"}),O7=Object.freeze({base:"#ffc107",lighten5:"#fff8e1",lighten4:"#ffecb3",lighten3:"#ffe082",lighten2:"#ffd54f",lighten1:"#ffca28",darken1:"#ffb300",darken2:"#ffa000",darken3:"#ff8f00",darken4:"#ff6f00",accent1:"#ffe57f",accent2:"#ffd740",accent3:"#ffc400",accent4:"#ffab00"}),T7=Object.freeze({base:"#ff9800",lighten5:"#fff3e0",lighten4:"#ffe0b2",lighten3:"#ffcc80",lighten2:"#ffb74d",lighten1:"#ffa726",darken1:"#fb8c00",darken2:"#f57c00",darken3:"#ef6c00",darken4:"#e65100",accent1:"#ffd180",accent2:"#ffab40",accent3:"#ff9100",accent4:"#ff6d00"}),R7=Object.freeze({base:"#ff5722",lighten5:"#fbe9e7",lighten4:"#ffccbc",lighten3:"#ffab91",lighten2:"#ff8a65",lighten1:"#ff7043",darken1:"#f4511e",darken2:"#e64a19",darken3:"#d84315",darken4:"#bf360c",accent1:"#ff9e80",accent2:"#ff6e40",accent3:"#ff3d00",accent4:"#dd2c00"}),E7=Object.freeze({base:"#795548",lighten5:"#efebe9",lighten4:"#d7ccc8",lighten3:"#bcaaa4",lighten2:"#a1887f",lighten1:"#8d6e63",darken1:"#6d4c41",darken2:"#5d4037",darken3:"#4e342e",darken4:"#3e2723"}),V7=Object.freeze({base:"#607d8b",lighten5:"#eceff1",lighten4:"#cfd8dc",lighten3:"#b0bec5",lighten2:"#90a4ae",lighten1:"#78909c",darken1:"#546e7a",darken2:"#455a64",darken3:"#37474f",darken4:"#263238"}),_7=Object.freeze({base:"#9e9e9e",lighten5:"#fafafa",lighten4:"#f5f5f5",lighten3:"#eeeeee",lighten2:"#e0e0e0",lighten1:"#bdbdbd",darken1:"#757575",darken2:"#616161",darken3:"#424242",darken4:"#212121"}),W7=Object.freeze({black:"#000000",white:"#ffffff",transparent:"#ffffff00"}),X7=Object.freeze({red:y7,pink:C7,purple:S7,deepPurple:$7,indigo:A7,blue:B7,lightBlue:H7,cyan:N7,teal:j7,green:P7,lightGreen:L7,lime:D7,yellow:F7,amber:O7,orange:T7,deepOrange:R7,brown:E7,blueGrey:V7,grey:_7,shades:W7}),q7=mt({swatches:{type:Array,default:()=>Y7(X7)},disabled:Boolean,color:Object,maxHeight:[Number,String],...Wt()},"VColorPickerSwatches");function Y7(n){return Object.keys(n).map(l=>{const r=n[l];return r.base?[r.base,r.darken4,r.darken3,r.darken2,r.darken1,r.lighten1,r.lighten2,r.lighten3,r.lighten4,r.lighten5]:[r.black,r.white,r.transparent]})}const G7=Pn({name:"VColorPickerSwatches",props:q7(),emits:{"update:color":n=>!0},setup(n,l){let{emit:r}=l;return Lt(()=>t("div",{class:["v-color-picker-swatches",n.class],style:[{maxHeight:Xt(n.maxHeight)},n.style]},[t("div",null,[n.swatches.map(h=>t("div",{class:"v-color-picker-swatches__swatch"},[h.map(u=>{const g=_n(u),v=ja(g),b=Iu(g);return t("div",{class:"v-color-picker-swatches__color",onClick:()=>v&&r("update:color",v)},[t("div",{style:{background:b}},[n.color&&kr(n.color,v)?t(be,{size:"x-small",icon:"$success",color:$5(u,"#FFFFFF")>2?"white":"black"},null):void 0])])})]))])])),{}}});const o4=mt({color:String,...Cn(),...Wt(),...Dn(),...Re(),...Wl(),...ho(),...Ie(),...le(),...ce()},"VSheet"),A0=At()({name:"VSheet",props:o4(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(Bt(n,"color")),{borderClasses:v}=On(n),{dimensionStyles:b}=Fn(n),{elevationClasses:z}=Ze(n),{locationStyles:C}=Xl(n),{positionClasses:S}=co(n),{roundedClasses:A}=Be(n);return Lt(()=>t(n.tag,{class:["v-sheet",h.value,u.value,v.value,z.value,S.value,A.value,n.class],style:[g.value,b.value,C.value,n.style]},r)),{}}}),U7=mt({canvasHeight:{type:[String,Number],default:150},disabled:Boolean,dotSize:{type:[Number,String],default:10},hideCanvas:Boolean,hideSliders:Boolean,hideInputs:Boolean,mode:{type:String,default:"rgba",validator:n=>Object.keys(hr).includes(n)},modes:{type:Array,default:()=>Object.keys(hr),validator:n=>Array.isArray(n)&&n.every(l=>Object.keys(hr).includes(l))},showSwatches:Boolean,swatches:Array,swatchesMaxHeight:{type:[Number,String],default:150},modelValue:{type:[Object,String]},...jn(o4({width:300}),["height","location","minHeight","maxHeight","minWidth","maxWidth"])},"VColorPicker"),Z7=Pn({name:"VColorPicker",props:U7(),emits:{"update:modelValue":n=>!0,"update:mode":n=>!0},setup(n){const l=ee(n,"mode"),r=Pt(null),h=ee(n,"modelValue",void 0,v=>{if(v==null||v==="")return null;let b;try{b=ja(_n(v))}catch{return null}return r.value&&(b={...b,h:r.value.h},r.value=null),b},v=>v?u7(v,n.modelValue):null),{rtlClasses:u}=Xe(),g=v=>{h.value=v,r.value=v};return Te(()=>{n.modes.includes(l.value)||(l.value=n.modes[0])}),Fe({VSlider:{color:void 0,trackColor:void 0,trackFillColor:void 0}}),Lt(()=>{const[v]=A0.filterProps(n);return t(A0,o({rounded:n.rounded,elevation:n.elevation,theme:n.theme,class:["v-color-picker",u.value,n.class],style:[{"--v-color-picker-color-hsv":yu({...h.value??Do,a:1})},n.style]},v,{maxWidth:n.width}),{default:()=>[!n.hideCanvas&&t(d7,{key:"canvas",color:h.value,"onUpdate:color":g,disabled:n.disabled,dotSize:n.dotSize,width:n.width,height:n.canvasHeight},null),(!n.hideSliders||!n.hideInputs)&&t("div",{key:"controls",class:"v-color-picker__controls"},[!n.hideSliders&&t(I7,{key:"preview",color:h.value,"onUpdate:color":g,hideAlpha:!l.value.endsWith("a"),disabled:n.disabled},null),!n.hideInputs&&t(m7,{key:"edit",modes:n.modes,mode:l.value,"onUpdate:mode":b=>l.value=b,color:h.value,"onUpdate:color":g,disabled:n.disabled},null)]),n.showSwatches&&t(G7,{key:"swatches",color:h.value,"onUpdate:color":g,maxHeight:n.swatchesMaxHeight,swatches:n.swatches,disabled:n.disabled},null)]})}),{}}});function K7(n,l,r){if(l==null)return n;if(Array.isArray(l))throw new Error("Multiple matches is not implemented");return typeof l=="number"&&~l?t(Zt,null,[t("span",{class:"v-combobox__unmask"},[n.substr(0,l)]),t("span",{class:"v-combobox__mask"},[n.substr(l,r)]),t("span",{class:"v-combobox__unmask"},[n.substr(l+r)])]):n}const Q7=mt({autoSelectFirst:{type:[Boolean,String]},delimiters:Array,...Tp({filterKeys:["title"]}),...Yh({hideNoData:!0,returnObject:!0}),...jn(Ga({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...bl({transition:!1})},"VCombobox"),J7=At()({name:"VCombobox",props:Q7(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:search":n=>!0,"update:menu":n=>!0},setup(n,l){var bt;let{emit:r,slots:h}=l;const{t:u}=Ln(),g=Pt(),v=_t(!1),b=_t(!0),z=_t(!1),C=Pt(),S=Pt(),A=ee(n,"menu"),B=X({get:()=>A.value,set:ft=>{var J;A.value&&!ft&&((J=C.value)!=null&&J.ΨopenChildren)||(A.value=ft)}}),P=_t(-1);let D=!1;const E=X(()=>{var ft;return(ft=g.value)==null?void 0:ft.color}),Y=X(()=>B.value?n.closeText:n.openText),{items:O,transformIn:H,transformOut:U}=_h(n),{textColorClasses:W,textColorStyles:_}=rn(E),tt=ee(n,"modelValue",[],ft=>H(Bn(ft)),ft=>{const J=U(ft);return n.multiple?J:J[0]??null}),nt=Va(),q=_t(n.multiple?"":((bt=tt.value[0])==null?void 0:bt.title)??""),G=X({get:()=>q.value,set:ft=>{var J;if(q.value=ft,n.multiple||(tt.value=[Or(n,ft)]),ft&&n.multiple&&((J=n.delimiters)!=null&&J.length)){const lt=ft.split(new RegExp(`(?:${n.delimiters.join("|")})+`));lt.length>1&&(lt.forEach(at=>{at=at.trim(),at&&ut(Or(n,at))}),q.value="")}ft||(P.value=-1),b.value=!ft}});Vt(q,ft=>{D?pe(()=>D=!1):v.value&&!B.value&&(B.value=!0),r("update:search",ft)}),Vt(tt,ft=>{var J;n.multiple||(q.value=((J=ft[0])==null?void 0:J.title)??"")});const{filteredItems:et,getMatches:st}=Rp(n,O,()=>b.value?"":G.value),rt=X(()=>tt.value.map(ft=>O.value.find(J=>{const lt=tn(J.raw,n.itemValue),at=tn(ft.raw,n.itemValue);return lt===void 0||at===void 0?!1:n.returnObject?n.valueComparator(lt,at):n.valueComparator(J.value,ft.value)})||ft)),ht=X(()=>n.hideSelected?et.value.filter(ft=>!rt.value.some(J=>J.value===ft.value)):et.value),dt=X(()=>rt.value.map(ft=>ft.props.value)),Ct=X(()=>rt.value[P.value]),xt=X(()=>{var J;return(n.autoSelectFirst===!0||n.autoSelectFirst==="exact"&&G.value===((J=ht.value[0])==null?void 0:J.title))&&ht.value.length>0&&!b.value&&!z.value}),wt=X(()=>n.hideNoData&&!O.value.length||n.readonly||(nt==null?void 0:nt.isReadonly.value)),gt=Pt(),{onListScroll:It,onListKeydown:$t}=qh(gt,g);function Tt(ft){D=!0,n.openOnClear&&(B.value=!0)}function Ft(){wt.value||(B.value=!0)}function Kt(ft){wt.value||(v.value&&(ft.preventDefault(),ft.stopPropagation()),B.value=!B.value)}function Qt(ft){var at;if(n.readonly||nt!=null&&nt.isReadonly.value)return;const J=g.value.selectionStart,lt=dt.value.length;if((P.value>-1||["Enter","ArrowDown","ArrowUp"].includes(ft.key))&&ft.preventDefault(),["Enter","ArrowDown"].includes(ft.key)&&(B.value=!0),["Escape"].includes(ft.key)&&(B.value=!1),["Enter","Escape","Tab"].includes(ft.key)&&(xt.value&&["Enter","Tab"].includes(ft.key)&&ut(et.value[0]),b.value=!0),ft.key==="ArrowDown"&&xt.value&&((at=gt.value)==null||at.focus("next")),!!n.multiple){if(["Backspace","Delete"].includes(ft.key)){if(P.value<0){ft.key==="Backspace"&&!G.value&&(P.value=lt-1);return}const ct=P.value;Ct.value&&ut(Ct.value),P.value=ct>=lt-1?lt-2:ct}if(ft.key==="ArrowLeft"){if(P.value<0&&J>0)return;const ct=P.value>-1?P.value-1:lt-1;rt.value[ct]?P.value=ct:(P.value=-1,g.value.setSelectionRange(G.value.length,G.value.length))}if(ft.key==="ArrowRight"){if(P.value<0)return;const ct=P.value+1;rt.value[ct]?P.value=ct:(P.value=-1,g.value.setSelectionRange(0,0))}ft.key==="Enter"&&G.value&&(ut(Or(n,G.value)),G.value="")}}function Rt(){var ft;v.value&&(b.value=!0,(ft=g.value)==null||ft.focus())}function ut(ft){if(n.multiple){const J=dt.value.findIndex(lt=>n.valueComparator(lt,ft.value));if(J===-1)tt.value=[...tt.value,ft];else{const lt=[...tt.value];lt.splice(J,1),tt.value=lt}G.value=""}else tt.value=[ft],q.value=ft.title,pe(()=>{B.value=!1,b.value=!0})}function pt(ft){v.value=!0,setTimeout(()=>{z.value=!0})}function Ht(ft){z.value=!1}function Nt(ft){(ft==null||ft===""&&!n.multiple)&&(tt.value=[])}return Vt(et,ft=>{!ft.length&&n.hideNoData&&(B.value=!1)}),Vt(v,(ft,J)=>{ft||ft===J||(P.value=-1,B.value=!1,xt.value&&!z.value&&!rt.value.some(lt=>{let{value:at}=lt;return at===ht.value[0].value})?ut(ht.value[0]):n.multiple&&G.value&&(tt.value=[...tt.value,Or(n,G.value)],G.value=""))}),Vt(B,()=>{if(!n.hideSelected&&B.value&&rt.value.length){const ft=ht.value.findIndex(J=>rt.value.some(lt=>J.value===lt.value));Me&&window.requestAnimationFrame(()=>{var J;ft>=0&&((J=S.value)==null||J.scrollToIndex(ft))})}}),Lt(()=>{const ft=!!(n.chips||h.chip),J=!!(!n.hideNoData||ht.value.length||h["prepend-item"]||h["append-item"]||h["no-data"]),lt=tt.value.length>0,[at]=vr.filterProps(n);return t(vr,o({ref:g},at,{modelValue:G.value,"onUpdate:modelValue":[ct=>G.value=ct,Nt],focused:v.value,"onUpdate:focused":ct=>v.value=ct,validationValue:tt.externalValue,dirty:lt,class:["v-combobox",{"v-combobox--active-menu":B.value,"v-combobox--chips":!!n.chips,"v-combobox--selection-slot":!!h.selection,"v-combobox--selecting-index":P.value>-1,[`v-combobox--${n.multiple?"multiple":"single"}`]:!0},n.class],style:n.style,readonly:n.readonly,placeholder:lt?void 0:n.placeholder,"onClick:clear":Tt,"onMousedown:control":Ft,onKeydown:Qt}),{...h,default:()=>t(Zt,null,[t(Xa,o({ref:C,modelValue:B.value,"onUpdate:modelValue":ct=>B.value=ct,activator:"parent",contentClass:"v-combobox__content",disabled:wt.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:Rt},n.menuProps),{default:()=>[J&&t(_a,{ref:gt,selected:dt.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:ct=>ct.preventDefault(),onKeydown:$t,onFocusin:pt,onFocusout:Ht,onScrollPassive:It,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var ct,kt,yt;return[(ct=h["prepend-item"])==null?void 0:ct.call(h),!ht.value.length&&!n.hideNoData&&(((kt=h["no-data"])==null?void 0:kt.call(h))??t(gl,{title:u(n.noDataText)},null)),t(Ua,{ref:S,renderless:!0,items:ht.value},{default:Dt=>{var Yt;let{item:St,index:Ot,itemRef:jt}=Dt;const Ut=o(St.props,{ref:jt,key:Ot,active:xt.value&&Ot===0?!0:void 0,onClick:()=>ut(St)});return((Yt=h.item)==null?void 0:Yt.call(h,{item:St,index:Ot,props:Ut}))??t(gl,Ut,{prepend:Gt=>{let{isSelected:Jt}=Gt;return t(Zt,null,[n.multiple&&!n.hideSelected?t(Qr,{key:St.value,modelValue:Jt,ripple:!1,tabindex:"-1"},null):void 0,St.props.prependIcon&&t(be,{icon:St.props.prependIcon},null)])},title:()=>{var Gt,Jt;return b.value?St.title:K7(St.title,(Gt=st(St))==null?void 0:Gt.title,((Jt=G.value)==null?void 0:Jt.length)??0)}})}}),(yt=h["append-item"])==null?void 0:yt.call(h)]}})]}),rt.value.map((ct,kt)=>{var St;function yt(Ot){Ot.stopPropagation(),Ot.preventDefault(),ut(ct)}const Dt={"onClick:close":yt,onMousedown(Ot){Ot.preventDefault(),Ot.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:ct.value,class:["v-combobox__selection",kt===P.value&&["v-combobox__selection--selected",W.value]],style:kt===P.value?_.value:{}},[ft?h.chip?t(fe,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:ct.title}}},{default:()=>{var Ot;return[(Ot=h.chip)==null?void 0:Ot.call(h,{item:ct,index:kt,props:Dt})]}}):t(ws,o({key:"chip",closable:n.closableChips,size:"small",text:ct.title},Dt),null):((St=h.selection)==null?void 0:St.call(h,{item:ct,index:kt}))??t("span",{class:"v-combobox__selection-text"},[ct.title,n.multiple&&kt!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{scopeId:u}=po(),g=Pt();function v(z){var A,B;const C=z.relatedTarget,S=z.target;if(C!==S&&((A=g.value)!=null&&A.contentEl)&&((B=g.value)!=null&&B.globalTop)&&![document,g.value.contentEl].includes(S)&&!g.value.contentEl.contains(S)){const P=Go(g.value.contentEl);if(!P.length)return;const D=P[0],E=P[P.length-1];C===D?E.focus():D.focus()}}Me&&Vt(()=>h.value&&n.retainFocus,z=>{z?document.addEventListener("focusin",v):document.removeEventListener("focusin",v)},{immediate:!0}),Vt(h,async z=>{var C,S;await pe(),z?(C=g.value.contentEl)==null||C.focus({preventScroll:!0}):(S=g.value.activatorEl)==null||S.focus({preventScroll:!0})});const b=X(()=>o({"aria-haspopup":"dialog","aria-expanded":String(h.value)},n.activatorProps));return Lt(()=>{const[z]=wl.filterProps(n);return t(wl,o({ref:g,class:["v-dialog",{"v-dialog--fullscreen":n.fullscreen,"v-dialog--scrollable":n.scrollable},n.class],style:n.style},z,{modelValue:h.value,"onUpdate:modelValue":C=>h.value=C,"aria-modal":"true",activatorProps:b.value,role:"dialog"},u),{activator:r.activator,default:function(){for(var C=arguments.length,S=new Array(C),A=0;A{var B;return[(B=r.default)==null?void 0:B.call(r,...S)]}})}})}),Un({},g)}});const ts=Symbol.for("vuetify:v-expansion-panel"),n8=["default","accordion","inset","popout"],l8=mt({color:String,variant:{type:String,default:"default",validator:n=>n8.includes(n)},readonly:Boolean,...Wt(),...oo(),...le(),...ce()},"VExpansionPanels"),r8=At()({name:"VExpansionPanels",props:l8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;yr(n,ts);const{themeClasses:h}=ge(n),u=X(()=>n.variant&&`v-expansion-panels--variant-${n.variant}`);return Fe({VExpansionPanel:{color:Bt(n,"color")},VExpansionPanelTitle:{readonly:Bt(n,"readonly")}}),Lt(()=>t(n.tag,{class:["v-expansion-panels",h.value,u.value,n.class],style:n.style},r)),{}}}),o8=mt({...Wt(),...Wa()},"VExpansionPanelText"),s4=At()({name:"VExpansionPanelText",props:o8(),setup(n,l){let{slots:r}=l;const h=he(ts);if(!h)throw new Error("[Vuetify] v-expansion-panel-text needs to be placed inside v-expansion-panel");const{hasContent:u,onAfterLeave:g}=Wh(n,h.isSelected);return Lt(()=>t(Fa,{onAfterLeave:g},{default:()=>{var v;return[Ce(t("div",{class:["v-expansion-panel-text",n.class],style:n.style},[r.default&&u.value&&t("div",{class:"v-expansion-panel-text__wrapper"},[(v=r.default)==null?void 0:v.call(r)])]),[[Nn,h.isSelected.value]])]}})),{}}}),a4=mt({color:String,expandIcon:{type:te,default:"$expand"},collapseIcon:{type:te,default:"$collapse"},hideActions:Boolean,ripple:{type:[Boolean,Object],default:!1},readonly:Boolean,...Wt()},"VExpansionPanelTitle"),i4=At()({name:"VExpansionPanelTitle",directives:{Ripple:ql},props:a4(),setup(n,l){let{slots:r}=l;const h=he(ts);if(!h)throw new Error("[Vuetify] v-expansion-panel-title needs to be placed inside v-expansion-panel");const{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(n,"color"),v=X(()=>({collapseIcon:n.collapseIcon,disabled:h.disabled.value,expanded:h.isSelected.value,expandIcon:n.expandIcon,readonly:n.readonly}));return Lt(()=>{var b;return Ce(t("button",{class:["v-expansion-panel-title",{"v-expansion-panel-title--active":h.isSelected.value},u.value,n.class],style:[g.value,n.style],type:"button",tabindex:h.disabled.value?-1:void 0,disabled:h.disabled.value,"aria-expanded":h.isSelected.value,onClick:n.readonly?void 0:h.toggle},[t("span",{class:"v-expansion-panel-title__overlay"},null),(b=r.default)==null?void 0:b.call(r,v.value),!n.hideActions&&t("span",{class:"v-expansion-panel-title__icon"},[r.actions?r.actions(v.value):t(be,{icon:h.isSelected.value?n.collapseIcon:n.expandIcon},null)])]),[[mn("ripple"),n.ripple]])}),{}}}),s8=mt({title:String,text:String,bgColor:String,...Wt(),...Re(),...so(),...Wa(),...Ie(),...le(),...a4()},"VExpansionPanel"),a8=At()({name:"VExpansionPanel",props:s8(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=ao(n,ts),{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(n,"bgColor"),{elevationClasses:v}=Ze(n),{roundedClasses:b}=Be(n),z=X(()=>(h==null?void 0:h.disabled.value)||n.disabled),C=X(()=>h.group.items.value.reduce((B,P,D)=>(h.group.selected.value.includes(P.id)&&B.push(D),B),[])),S=X(()=>{const B=h.group.items.value.findIndex(P=>P.id===h.id);return!h.isSelected.value&&C.value.some(P=>P-B===1)}),A=X(()=>{const B=h.group.items.value.findIndex(P=>P.id===h.id);return!h.isSelected.value&&C.value.some(P=>P-B===-1)});return ye(ts,h),Fe({VExpansionPanelText:{eager:Bt(n,"eager")}}),Lt(()=>{const B=!!(r.text||n.text),P=!!(r.title||n.title);return t(n.tag,{class:["v-expansion-panel",{"v-expansion-panel--active":h.isSelected.value,"v-expansion-panel--before-active":S.value,"v-expansion-panel--after-active":A.value,"v-expansion-panel--disabled":z.value},b.value,u.value,n.class],style:[g.value,n.style]},{default:()=>{var D;return[t("div",{class:["v-expansion-panel__shadow",...v.value]},null),P&&t(i4,{key:"title",collapseIcon:n.collapseIcon,color:n.color,expandIcon:n.expandIcon,hideActions:n.hideActions,ripple:n.ripple},{default:()=>[r.title?r.title():n.title]}),B&&t(s4,{key:"text"},{default:()=>[r.text?r.text():n.text]}),(D=r.default)==null?void 0:D.call(r)]}})}),{}}});const i8=mt({chips:Boolean,counter:Boolean,counterSizeString:{type:String,default:"$vuetify.fileInput.counterSize"},counterString:{type:String,default:"$vuetify.fileInput.counter"},multiple:Boolean,showSize:{type:[Boolean,Number],default:!1,validator:n=>typeof n=="boolean"||[1e3,1024].includes(n)},...xl({prependIcon:"$file"}),modelValue:{type:Array,default:()=>[],validator:n=>Bn(n).every(l=>l!=null&&typeof l=="object")},...Ya({clearable:!0})},"VFileInput"),h8=At()({name:"VFileInput",inheritAttrs:!1,props:i8(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{t:g}=Ln(),v=ee(n,"modelValue"),{isFocused:b,focus:z,blur:C}=Yl(n),S=X(()=>typeof n.showSize!="boolean"?n.showSize:void 0),A=X(()=>(v.value??[]).reduce((G,et)=>{let{size:st=0}=et;return G+st},0)),B=X(()=>g1(A.value,S.value)),P=X(()=>(v.value??[]).map(G=>{const{name:et="",size:st=0}=G;return n.showSize?`${et} (${g1(st,S.value)})`:et})),D=X(()=>{var et;const G=((et=v.value)==null?void 0:et.length)??0;return n.showSize?g(n.counterSizeString,G,B.value):g(n.counterString,G)}),E=Pt(),Y=Pt(),O=Pt(),H=X(()=>b.value||n.active),U=X(()=>["plain","underlined"].includes(n.variant));function W(){var G;O.value!==document.activeElement&&((G=O.value)==null||G.focus()),b.value||z()}function _(G){nt(G)}function tt(G){h("mousedown:control",G)}function nt(G){var et;(et=O.value)==null||et.click(),h("click:control",G)}function q(G){G.stopPropagation(),W(),pe(()=>{v.value=[],bh(n["onClick:clear"],G)})}return Vt(v,G=>{(!Array.isArray(G)||!G.length)&&O.value&&(O.value.value="")}),Lt(()=>{const G=!!(u.counter||n.counter),et=!!(G||u.details),[st,rt]=br(r),[{modelValue:ht,...dt}]=Ge.filterProps(n),[Ct]=Xh(n);return t(Ge,o({ref:E,modelValue:v.value,"onUpdate:modelValue":xt=>v.value=xt,class:["v-file-input",{"v-text-field--plain-underlined":U.value},n.class],style:n.style,"onClick:prepend":_},st,dt,{centerAffix:!U.value,focused:b.value}),{...u,default:xt=>{let{id:wt,isDisabled:gt,isDirty:It,isReadonly:$t,isValid:Tt}=xt;return t(fs,o({ref:Y,"prepend-icon":n.prependIcon,onMousedown:tt,onClick:nt,"onClick:clear":q,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},Ct,{id:wt.value,active:H.value||It.value,dirty:It.value,disabled:gt.value,focused:b.value,error:Tt.value===!1}),{...u,default:Ft=>{var Rt;let{props:{class:Kt,...Qt}}=Ft;return t(Zt,null,[t("input",o({ref:O,type:"file",readonly:$t.value,disabled:gt.value,multiple:n.multiple,name:n.name,onClick:ut=>{ut.stopPropagation(),$t.value&&ut.preventDefault(),W()},onChange:ut=>{if(!ut.target)return;const pt=ut.target;v.value=[...pt.files??[]]},onFocus:W,onBlur:C},Qt,rt),null),t("div",{class:Kt},[!!((Rt=v.value)!=null&&Rt.length)&&(u.selection?u.selection({fileNames:P.value,totalBytes:A.value,totalBytesReadable:B.value}):n.chips?P.value.map(ut=>t(ws,{key:ut,size:"small",color:n.color},{default:()=>[ut]})):P.value.join(", "))])])}})},details:et?xt=>{var wt,gt;return t(Zt,null,[(wt=u.details)==null?void 0:wt.call(u,xt),G&&t(Zt,null,[t("span",null,null),t(qa,{active:!!((gt=v.value)!=null&>.length),value:D.value},u.counter)])])}:void 0})}),Un({},E,Y,O)}});const d8=mt({app:Boolean,color:String,height:{type:[Number,String],default:"auto"},...Cn(),...Wt(),...Re(),...lo(),...Ie(),...le({tag:"footer"}),...ce()},"VFooter"),c8=At()({name:"VFooter",props:d8(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(Bt(n,"color")),{borderClasses:v}=On(n),{elevationClasses:b}=Ze(n),{roundedClasses:z}=Be(n),C=_t(32),{resizeRef:S}=el(P=>{P.length&&(C.value=P[0].target.clientHeight)}),A=X(()=>n.height==="auto"?C.value:parseInt(n.height,10)),{layoutItemStyles:B}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:X(()=>"bottom"),layoutSize:A,elementSize:X(()=>n.height==="auto"?void 0:A.value),active:X(()=>n.app),absolute:Bt(n,"absolute")});return Lt(()=>t(n.tag,{ref:S,class:["v-footer",h.value,u.value,v.value,b.value,z.value,n.class],style:[g.value,n.app?B.value:{height:Xt(n.height)},n.style]},r)),{}}}),u8=mt({...Wt(),...Mk()},"VForm"),p8=At()({name:"VForm",props:u8(),emits:{"update:modelValue":n=>!0,submit:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=xk(n),g=Pt();function v(z){z.preventDefault(),u.reset()}function b(z){const C=z,S=u.validate();C.then=S.then.bind(S),C.catch=S.catch.bind(S),C.finally=S.finally.bind(S),h("submit",C),C.defaultPrevented||S.then(A=>{var P;let{valid:B}=A;B&&((P=g.value)==null||P.submit())}),C.preventDefault()}return Lt(()=>{var z;return t("form",{ref:g,class:["v-form",n.class],style:n.style,novalidate:!0,onReset:v,onSubmit:b},[(z=r.default)==null?void 0:z.call(r,u)])}),Un(u,g)}});const g8=mt({fluid:{type:Boolean,default:!1},...Wt(),...le()},"VContainer"),w8=At()({name:"VContainer",props:g8(),setup(n,l){let{slots:r}=l;const{rtlClasses:h}=Xe();return Lt(()=>t(n.tag,{class:["v-container",{"v-container--fluid":n.fluid},h.value,n.class],style:n.style},r)),{}}}),h4=(()=>Pa.reduce((n,l)=>(n[l]={type:[Boolean,String,Number],default:!1},n),{}))(),d4=(()=>Pa.reduce((n,l)=>{const r="offset"+fl(l);return n[r]={type:[String,Number],default:null},n},{}))(),c4=(()=>Pa.reduce((n,l)=>{const r="order"+fl(l);return n[r]={type:[String,Number],default:null},n},{}))(),J1={col:Object.keys(h4),offset:Object.keys(d4),order:Object.keys(c4)};function v8(n,l,r){let h=n;if(!(r==null||r===!1)){if(l){const u=l.replace(n,"");h+=`-${u}`}return n==="col"&&(h="v-"+h),n==="col"&&(r===""||r===!0)||(h+=`-${r}`),h.toLowerCase()}}const f8=["auto","start","end","center","baseline","stretch"],m8=mt({cols:{type:[Boolean,String,Number],default:!1},...h4,offset:{type:[String,Number],default:null},...d4,order:{type:[String,Number],default:null},...c4,alignSelf:{type:String,default:null,validator:n=>f8.includes(n)},...Wt(),...le()},"VCol"),k8=At()({name:"VCol",props:m8(),setup(n,l){let{slots:r}=l;const h=X(()=>{const u=[];let g;for(g in J1)J1[g].forEach(b=>{const z=n[b],C=v8(g,b,z);C&&u.push(C)});const v=u.some(b=>b.startsWith("v-col-"));return u.push({"v-col":!v||!n.cols,[`v-col-${n.cols}`]:n.cols,[`offset-${n.offset}`]:n.offset,[`order-${n.order}`]:n.order,[`align-self-${n.alignSelf}`]:n.alignSelf}),u});return()=>{var u;return Hn(n.tag,{class:[h.value,n.class],style:n.style},(u=r.default)==null?void 0:u.call(r))}}}),Zh=["start","end","center"],u4=["space-between","space-around","space-evenly"];function Kh(n,l){return Pa.reduce((r,h)=>{const u=n+fl(h);return r[u]=l(),r},{})}const b8=[...Zh,"baseline","stretch"],p4=n=>b8.includes(n),g4=Kh("align",()=>({type:String,default:null,validator:p4})),M8=[...Zh,...u4],w4=n=>M8.includes(n),v4=Kh("justify",()=>({type:String,default:null,validator:w4})),x8=[...Zh,...u4,"stretch"],f4=n=>x8.includes(n),m4=Kh("alignContent",()=>({type:String,default:null,validator:f4})),td={align:Object.keys(g4),justify:Object.keys(v4),alignContent:Object.keys(m4)},z8={align:"align",justify:"justify",alignContent:"align-content"};function I8(n,l,r){let h=z8[n];if(r!=null){if(l){const u=l.replace(n,"");h+=`-${u}`}return h+=`-${r}`,h.toLowerCase()}}const y8=mt({dense:Boolean,noGutters:Boolean,align:{type:String,default:null,validator:p4},...g4,justify:{type:String,default:null,validator:w4},...v4,alignContent:{type:String,default:null,validator:f4},...m4,...Wt(),...le()},"VRow"),C8=At()({name:"VRow",props:y8(),setup(n,l){let{slots:r}=l;const h=X(()=>{const u=[];let g;for(g in td)td[g].forEach(v=>{const b=n[v],z=I8(g,v,b);z&&u.push(z)});return u.push({"v-row--no-gutters":n.noGutters,"v-row--dense":n.dense,[`align-${n.align}`]:n.align,[`justify-${n.justify}`]:n.justify,[`align-content-${n.alignContent}`]:n.alignContent}),u});return()=>{var u;return Hn(n.tag,{class:["v-row",h.value,n.class],style:n.style},(u=r.default)==null?void 0:u.call(r))}}}),S8=Gn("v-spacer","div","VSpacer"),$8=mt({disabled:Boolean,modelValue:{type:Boolean,default:void 0},...jp()},"VHover"),A8=At()({name:"VHover",props:$8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{runOpenDelay:u,runCloseDelay:g}=Pp(n,v=>!n.disabled&&(h.value=v));return()=>{var v;return(v=r.default)==null?void 0:v.call(r,{isHovering:h.value,props:{onMouseenter:u,onMouseleave:g}})}}});const k4=Symbol.for("vuetify:v-item-group"),B8=mt({...Wt(),...oo({selectedClass:"v-item--selected"}),...le(),...ce()},"VItemGroup"),H8=At()({name:"VItemGroup",props:B8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{isSelected:u,select:g,next:v,prev:b,selected:z}=yr(n,k4);return()=>t(n.tag,{class:["v-item-group",h.value,n.class],style:n.style},{default:()=>{var C;return[(C=r.default)==null?void 0:C.call(r,{isSelected:u,select:g,next:v,prev:b,selected:z.value})]}})}}),N8=At()({name:"VItem",props:so(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const{isSelected:h,select:u,toggle:g,selectedClass:v,value:b,disabled:z}=ao(n,k4);return()=>{var C;return(C=r.default)==null?void 0:C.call(r,{isSelected:h.value,selectedClass:v.value,select:u,toggle:g,value:b.value,disabled:z.value})}}});const j8=Gn("v-kbd");const P8=mt({...Wt(),...Tu()},"VLayout"),L8=At()({name:"VLayout",props:P8(),setup(n,l){let{slots:r}=l;const{layoutClasses:h,layoutStyles:u,getLayoutItem:g,items:v,layoutRef:b}=Ru(n);return Lt(()=>{var z;return t("div",{ref:b,class:[h.value,n.class],style:[u.value,n.style]},[(z=r.default)==null?void 0:z.call(r)])}),{getLayoutItem:g,items:v}}});const D8=mt({position:{type:String,required:!0},size:{type:[Number,String],default:300},modelValue:Boolean,...Wt(),...lo()},"VLayoutItem"),F8=At()({name:"VLayoutItem",props:D8(),setup(n,l){let{slots:r}=l;const{layoutItemStyles:h}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:Bt(n,"position"),elementSize:Bt(n,"size"),layoutSize:Bt(n,"size"),active:Bt(n,"modelValue"),absolute:Bt(n,"absolute")});return()=>{var u;return t("div",{class:["v-layout-item",n.class],style:[h.value,n.style]},[(u=r.default)==null?void 0:u.call(r)])}}}),O8=mt({modelValue:Boolean,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},...Wt(),...Dn(),...le(),...bl({transition:"fade-transition"})},"VLazy"),T8=At()({name:"VLazy",directives:{intersect:Oa},props:O8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{dimensionStyles:h}=Fn(n),u=ee(n,"modelValue");function g(v){u.value||(u.value=v)}return Lt(()=>Ce(t(n.tag,{class:["v-lazy",n.class],style:[h.value,n.style]},{default:()=>[u.value&&t(Wn,{transition:n.transition,appear:!0},{default:()=>{var v;return[(v=r.default)==null?void 0:v.call(r)]}})]}),[[mn("intersect"),{handler:g,options:n.options},null]])),{}}});const R8=mt({locale:String,fallbackLocale:String,messages:Object,rtl:{type:Boolean,default:void 0},...Wt()},"VLocaleProvider"),E8=At()({name:"VLocaleProvider",props:R8(),setup(n,l){let{slots:r}=l;const{rtlClasses:h}=Z5(n);return Lt(()=>{var u;return t("div",{class:["v-locale-provider",h.value,n.class],style:n.style},[(u=r.default)==null?void 0:u.call(r)])}),{}}});const V8=mt({scrollable:Boolean,...Wt(),...le({tag:"main"})},"VMain"),_8=At()({name:"VMain",props:V8(),setup(n,l){let{slots:r}=l;const{mainStyles:h}=xm(),{ssrBootStyles:u}=xr();return Lt(()=>t(n.tag,{class:["v-main",{"v-main--scrollable":n.scrollable},n.class],style:[h.value,u.value,n.style]},{default:()=>{var g,v;return[n.scrollable?t("div",{class:"v-main__scroller"},[(g=r.default)==null?void 0:g.call(r)]):(v=r.default)==null?void 0:v.call(r)]}})),{}}});function W8(n){let{rootEl:l,isSticky:r,layoutItemStyles:h}=n;const u=_t(!1),g=_t(0),v=X(()=>{const C=typeof u.value=="boolean"?"top":u.value;return[r.value?{top:"auto",bottom:"auto",height:void 0}:void 0,u.value?{[C]:Xt(g.value)}:{top:h.value.top}]});Te(()=>{Vt(r,C=>{C?window.addEventListener("scroll",z,{passive:!0}):window.removeEventListener("scroll",z)},{immediate:!0})}),Ue(()=>{window.removeEventListener("scroll",z)});let b=0;function z(){const C=b>window.scrollY?"up":"down",S=l.value.getBoundingClientRect(),A=parseFloat(h.value.top??0),B=window.scrollY-Math.max(0,g.value-A),P=S.height+Math.max(g.value,A)-window.scrollY-window.innerHeight,D=parseFloat(getComputedStyle(l.value).getPropertyValue("--v-body-scroll-y"))||0;S.height0;r--){if(n[r].t===n[r-1].t)continue;const h=ed(l),u=(n[r].d-n[r-1].d)/(n[r].t-n[r-1].t);l+=(u-h)*Math.abs(u),r===n.length-1&&(l*=.5)}return ed(l)*1e3}function Y8(){const n={};function l(u){Array.from(u.changedTouches).forEach(g=>{(n[g.identifier]??(n[g.identifier]=new r5(q8))).push([u.timeStamp,g])})}function r(u){Array.from(u.changedTouches).forEach(g=>{delete n[g.identifier]})}function h(u){var C;const g=(C=n[u])==null?void 0:C.values().reverse();if(!g)throw new Error(`No samples for touch id ${u}`);const v=g[0],b=[],z=[];for(const S of g){if(v[0]-S[0]>X8)break;b.push({t:S[0],d:S[1].clientX}),z.push({t:S[0],d:S[1].clientY})}return{x:nd(b),y:nd(z),get direction(){const{x:S,y:A}=this,[B,P]=[Math.abs(S),Math.abs(A)];return B>P&&S>=0?"right":B>P&&S<=0?"left":P>B&&A>=0?"down":P>B&&A<=0?"up":G8()}}}return{addMovement:l,endTouch:r,getVelocity:h}}function G8(){throw new Error}function U8(n){let{isActive:l,isTemporary:r,width:h,touchless:u,position:g}=n;Te(()=>{window.addEventListener("touchstart",O,{passive:!0}),window.addEventListener("touchmove",H,{passive:!1}),window.addEventListener("touchend",U,{passive:!0})}),Ue(()=>{window.removeEventListener("touchstart",O),window.removeEventListener("touchmove",H),window.removeEventListener("touchend",U)});const v=X(()=>["left","right"].includes(g.value)),{addMovement:b,endTouch:z,getVelocity:C}=Y8();let S=!1;const A=_t(!1),B=_t(0),P=_t(0);let D;function E(_,tt){return(g.value==="left"?_:g.value==="right"?document.documentElement.clientWidth-_:g.value==="top"?_:g.value==="bottom"?document.documentElement.clientHeight-_:jr())-(tt?h.value:0)}function Y(_){let tt=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;const nt=g.value==="left"?(_-P.value)/h.value:g.value==="right"?(document.documentElement.clientWidth-_-P.value)/h.value:g.value==="top"?(_-P.value)/h.value:g.value==="bottom"?(document.documentElement.clientHeight-_-P.value)/h.value:jr();return tt?Math.max(0,Math.min(1,nt)):nt}function O(_){if(u.value)return;const tt=_.changedTouches[0].clientX,nt=_.changedTouches[0].clientY,q=25,G=g.value==="left"?ttdocument.documentElement.clientWidth-q:g.value==="top"?ntdocument.documentElement.clientHeight-q:jr(),et=l.value&&(g.value==="left"?ttdocument.documentElement.clientWidth-h.value:g.value==="top"?ntdocument.documentElement.clientHeight-h.value:jr());(G||et||l.value&&r.value)&&(S=!0,D=[tt,nt],P.value=E(v.value?tt:nt,l.value),B.value=Y(v.value?tt:nt),z(_),b(_))}function H(_){const tt=_.changedTouches[0].clientX,nt=_.changedTouches[0].clientY;if(S){if(!_.cancelable){S=!1;return}const G=Math.abs(tt-D[0]),et=Math.abs(nt-D[1]);(v.value?G>et&&G>3:et>G&&et>3)?(A.value=!0,S=!1):(v.value?et:G)>3&&(S=!1)}if(!A.value)return;_.preventDefault(),b(_);const q=Y(v.value?tt:nt,!1);B.value=Math.max(0,Math.min(1,q)),q>1?P.value=E(v.value?tt:nt,!0):q<0&&(P.value=E(v.value?tt:nt,!1))}function U(_){if(S=!1,!A.value)return;b(_),A.value=!1;const tt=C(_.changedTouches[0].identifier),nt=Math.abs(tt.x),q=Math.abs(tt.y);(v.value?nt>q&&nt>400:q>nt&&q>3)?l.value=tt.direction===({left:"right",right:"left",top:"down",bottom:"up"}[g.value]||jr()):l.value=B.value>.5}const W=X(()=>A.value?{transform:g.value==="left"?`translateX(calc(-100% + ${B.value*h.value}px))`:g.value==="right"?`translateX(calc(100% - ${B.value*h.value}px))`:g.value==="top"?`translateY(calc(-100% + ${B.value*h.value}px))`:g.value==="bottom"?`translateY(calc(100% - ${B.value*h.value}px))`:jr(),transition:"none"}:void 0);return{isDragging:A,dragProgress:B,dragStyles:W}}function jr(){throw new Error}const Z8=["start","end","left","right","top","bottom"],K8=mt({color:String,disableResizeWatcher:Boolean,disableRouteWatcher:Boolean,expandOnHover:Boolean,floating:Boolean,modelValue:{type:Boolean,default:null},permanent:Boolean,rail:{type:Boolean,default:null},railWidth:{type:[Number,String],default:56},scrim:{type:[Boolean,String],default:!0},image:String,temporary:Boolean,touchless:Boolean,width:{type:[Number,String],default:256},location:{type:String,default:"start",validator:n=>Z8.includes(n)},sticky:Boolean,...Cn(),...Wt(),...Re(),...lo(),...Ie(),...le({tag:"nav"}),...ce()},"VNavigationDrawer"),Q8=At()({name:"VNavigationDrawer",props:K8(),emits:{"update:modelValue":n=>!0,"update:rail":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const{isRtl:g}=Xe(),{themeClasses:v}=ge(n),{borderClasses:b}=On(n),{backgroundColorClasses:z,backgroundColorStyles:C}=Ne(Bt(n,"color")),{elevationClasses:S}=Ze(n),{mobile:A}=Mr(),{roundedClasses:B}=Be(n),P=Qu(),D=ee(n,"modelValue",null,It=>!!It),{ssrBootStyles:E}=xr(),{scopeId:Y}=po(),O=Pt(),H=_t(!1),U=X(()=>n.rail&&n.expandOnHover&&H.value?Number(n.width):Number(n.rail?n.railWidth:n.width)),W=X(()=>r0(n.location,g.value)),_=X(()=>!n.permanent&&(A.value||n.temporary)),tt=X(()=>n.sticky&&!_.value&&W.value!=="bottom");n.expandOnHover&&n.rail!=null&&Vt(H,It=>h("update:rail",!It)),n.disableResizeWatcher||Vt(_,It=>!n.permanent&&pe(()=>D.value=!It)),!n.disableRouteWatcher&&P&&Vt(P.currentRoute,()=>_.value&&(D.value=!1)),Vt(()=>n.permanent,It=>{It&&(D.value=!0)}),hs(()=>{n.modelValue!=null||_.value||(D.value=n.permanent||!A.value)});const{isDragging:nt,dragProgress:q,dragStyles:G}=U8({isActive:D,isTemporary:_,width:U,touchless:Bt(n,"touchless"),position:W}),et=X(()=>{const It=_.value?0:n.rail&&n.expandOnHover?Number(n.railWidth):U.value;return nt.value?It*q.value:It}),{layoutItemStyles:st,layoutItemScrimStyles:rt}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:W,layoutSize:et,elementSize:U,active:X(()=>D.value||nt.value),disableTransitions:X(()=>nt.value),absolute:X(()=>n.absolute||tt.value&&typeof ht.value!="string")}),{isStuck:ht,stickyStyles:dt}=W8({rootEl:O,isSticky:tt,layoutItemStyles:st}),Ct=Ne(X(()=>typeof n.scrim=="string"?n.scrim:null)),xt=X(()=>({...nt.value?{opacity:q.value*.2,transition:"none"}:void 0,...rt.value}));Fe({VList:{bgColor:"transparent"}});function wt(){H.value=!0}function gt(){H.value=!1}return Lt(()=>{const It=u.image||n.image;return t(Zt,null,[t(n.tag,o({ref:O,onMouseenter:wt,onMouseleave:gt,class:["v-navigation-drawer",`v-navigation-drawer--${W.value}`,{"v-navigation-drawer--expand-on-hover":n.expandOnHover,"v-navigation-drawer--floating":n.floating,"v-navigation-drawer--is-hovering":H.value,"v-navigation-drawer--rail":n.rail,"v-navigation-drawer--temporary":_.value,"v-navigation-drawer--active":D.value,"v-navigation-drawer--sticky":tt.value},v.value,z.value,b.value,S.value,B.value,n.class],style:[C.value,st.value,G.value,E.value,dt.value,n.style]},Y,r),{default:()=>{var $t,Tt,Ft,Kt;return[It&&t("div",{key:"image",class:"v-navigation-drawer__img"},[u.image?($t=u.image)==null?void 0:$t.call(u,{image:n.image}):t("img",{src:n.image,alt:""},null)]),u.prepend&&t("div",{class:"v-navigation-drawer__prepend"},[(Tt=u.prepend)==null?void 0:Tt.call(u)]),t("div",{class:"v-navigation-drawer__content"},[(Ft=u.default)==null?void 0:Ft.call(u)]),u.append&&t("div",{class:"v-navigation-drawer__append"},[(Kt=u.append)==null?void 0:Kt.call(u)])]}}),t(qn,{name:"fade-transition"},{default:()=>[_.value&&(nt.value||D.value)&&!!n.scrim&&t("div",o({class:["v-navigation-drawer__scrim",Ct.backgroundColorClasses.value],style:[xt.value,Ct.backgroundColorStyles.value],onClick:()=>D.value=!1},Y),null)]})])}),{isStuck:ht}}}),J8=Pn({name:"VNoSsr",setup(n,l){let{slots:r}=l;const h=Lp();return()=>{var u;return h.value&&((u=r.default)==null?void 0:u.call(r))}}});function t9(){const n=Pt([]);nh(()=>n.value=[]);function l(r,h){n.value[h]=r}return{refs:n,updateRef:l}}const e9=mt({activeColor:String,start:{type:[Number,String],default:1},modelValue:{type:Number,default:n=>n.start},disabled:Boolean,length:{type:[Number,String],default:1,validator:n=>n%1===0},totalVisible:[Number,String],firstIcon:{type:te,default:"$first"},prevIcon:{type:te,default:"$prev"},nextIcon:{type:te,default:"$next"},lastIcon:{type:te,default:"$last"},ariaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.root"},pageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.page"},currentPageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.currentPage"},firstAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.first"},previousAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.previous"},nextAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.next"},lastAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.last"},ellipsis:{type:String,default:"..."},showFirstLastPage:Boolean,...Cn(),...Wt(),...Ee(),...Re(),...Ie(),...Ml(),...le({tag:"nav"}),...ce(),...Tn({variant:"text"})},"VPagination"),n9=At()({name:"VPagination",props:e9(),emits:{"update:modelValue":n=>!0,first:n=>!0,prev:n=>!0,next:n=>!0,last:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=ee(n,"modelValue"),{t:g,n:v}=Ln(),{isRtl:b}=Xe(),{themeClasses:z}=ge(n),{width:C}=Mr(),S=_t(-1);Fe(void 0,{scoped:!0});const{resizeRef:A}=el(q=>{if(!q.length)return;const{target:G,contentRect:et}=q[0],st=G.querySelector(".v-pagination__list > *");if(!st)return;const rt=et.width,ht=st.offsetWidth+parseFloat(getComputedStyle(st).marginRight)*2;S.value=E(rt,ht)}),B=X(()=>parseInt(n.length,10)),P=X(()=>parseInt(n.start,10)),D=X(()=>n.totalVisible?parseInt(n.totalVisible,10):S.value>=0?S.value:E(C.value,58));function E(q,G){const et=n.showFirstLastPage?5:3;return Math.max(0,Math.floor(+((q-G*et)/G).toFixed(2)))}const Y=X(()=>{if(B.value<=0||isNaN(B.value)||B.value>Number.MAX_SAFE_INTEGER)return[];if(D.value<=1)return[u.value];if(B.value<=D.value)return il(B.value,P.value);const q=D.value%2===0,G=q?D.value/2:Math.floor(D.value/2),et=q?G:G+1,st=B.value-G;if(et-u.value>=0)return[...il(Math.max(1,D.value-1),P.value),n.ellipsis,B.value];if(u.value-st>=(q?1:0)){const rt=D.value-1,ht=B.value-rt+P.value;return[P.value,n.ellipsis,...il(rt,ht)]}else{const rt=Math.max(1,D.value-3),ht=rt===1?u.value:u.value-Math.ceil(rt/2)+P.value;return[P.value,n.ellipsis,...il(rt,ht),n.ellipsis,B.value]}});function O(q,G,et){q.preventDefault(),u.value=G,et&&h(et,G)}const{refs:H,updateRef:U}=t9();Fe({VPaginationBtn:{color:Bt(n,"color"),border:Bt(n,"border"),density:Bt(n,"density"),size:Bt(n,"size"),variant:Bt(n,"variant"),rounded:Bt(n,"rounded"),elevation:Bt(n,"elevation")}});const W=X(()=>Y.value.map((q,G)=>{const et=st=>U(st,G);if(typeof q=="string")return{isActive:!1,key:`ellipsis-${G}`,page:q,props:{ref:et,ellipsis:!0,icon:!0,disabled:!0}};{const st=q===u.value;return{isActive:st,key:q,page:v(q),props:{ref:et,ellipsis:!1,icon:!0,disabled:!!n.disabled||+n.length<2,color:st?n.activeColor:n.color,ariaCurrent:st,ariaLabel:g(st?n.currentPageAriaLabel:n.pageAriaLabel,q),onClick:rt=>O(rt,q)}}}})),_=X(()=>{const q=!!n.disabled||u.value<=P.value,G=!!n.disabled||u.value>=P.value+B.value-1;return{first:n.showFirstLastPage?{icon:b.value?n.lastIcon:n.firstIcon,onClick:et=>O(et,P.value,"first"),disabled:q,ariaLabel:g(n.firstAriaLabel),ariaDisabled:q}:void 0,prev:{icon:b.value?n.nextIcon:n.prevIcon,onClick:et=>O(et,u.value-1,"prev"),disabled:q,ariaLabel:g(n.previousAriaLabel),ariaDisabled:q},next:{icon:b.value?n.prevIcon:n.nextIcon,onClick:et=>O(et,u.value+1,"next"),disabled:G,ariaLabel:g(n.nextAriaLabel),ariaDisabled:G},last:n.showFirstLastPage?{icon:b.value?n.firstIcon:n.lastIcon,onClick:et=>O(et,P.value+B.value-1,"last"),disabled:G,ariaLabel:g(n.lastAriaLabel),ariaDisabled:G}:void 0}});function tt(){var G;const q=u.value-P.value;(G=H.value[q])==null||G.$el.focus()}function nt(q){q.key===n0.left&&!n.disabled&&u.value>+n.start?(u.value=u.value-1,pe(tt)):q.key===n0.right&&!n.disabled&&u.valuet(n.tag,{ref:A,class:["v-pagination",z.value,n.class],style:n.style,role:"navigation","aria-label":g(n.ariaLabel),onKeydown:nt,"data-test":"v-pagination-root"},{default:()=>[t("ul",{class:"v-pagination__list"},[n.showFirstLastPage&&t("li",{key:"first",class:"v-pagination__first","data-test":"v-pagination-first"},[r.first?r.first(_.value.first):t(dn,o({_as:"VPaginationBtn"},_.value.first),null)]),t("li",{key:"prev",class:"v-pagination__prev","data-test":"v-pagination-prev"},[r.prev?r.prev(_.value.prev):t(dn,o({_as:"VPaginationBtn"},_.value.prev),null)]),W.value.map((q,G)=>t("li",{key:q.key,class:["v-pagination__item",{"v-pagination__item--is-active":q.isActive}],"data-test":"v-pagination-item"},[r.item?r.item(q):t(dn,o({_as:"VPaginationBtn"},q.props),{default:()=>[q.page]})])),t("li",{key:"next",class:"v-pagination__next","data-test":"v-pagination-next"},[r.next?r.next(_.value.next):t(dn,o({_as:"VPaginationBtn"},_.value.next),null)]),n.showFirstLastPage&&t("li",{key:"last",class:"v-pagination__last","data-test":"v-pagination-last"},[r.last?r.last(_.value.last):t(dn,o({_as:"VPaginationBtn"},_.value.last),null)])])]})),{}}});function l9(n){return Math.floor(Math.abs(n))*Math.sign(n)}const r9=mt({scale:{type:[Number,String],default:.5},...Wt()},"VParallax"),o9=At()({name:"VParallax",props:r9(),setup(n,l){let{slots:r}=l;const{intersectionRef:h,isIntersecting:u}=Lh(),{resizeRef:g,contentRect:v}=el(),{height:b}=Mr(),z=Pt();fn(()=>{var P;h.value=g.value=(P=z.value)==null?void 0:P.$el});let C;Vt(u,P=>{P?(C=Ih(h.value),C=C===document.scrollingElement?document:C,C.addEventListener("scroll",B,{passive:!0}),B()):C.removeEventListener("scroll",B)}),Ue(()=>{C==null||C.removeEventListener("scroll",B)}),Vt(b,B),Vt(()=>{var P;return(P=v.value)==null?void 0:P.height},B);const S=X(()=>1-en(+n.scale));let A=-1;function B(){u.value&&(cancelAnimationFrame(A),A=requestAnimationFrame(()=>{var _;const P=((_=z.value)==null?void 0:_.$el).querySelector(".v-img__img");if(!P)return;const D=C instanceof Document?document.documentElement.clientHeight:C.clientHeight,E=C instanceof Document?window.scrollY:C.scrollTop,Y=h.value.getBoundingClientRect().top+E,O=v.value.height,H=Y+(O-D)/2,U=l9((E-H)*S.value),W=Math.max(1,(S.value*(D-O)+O)/O);P.style.setProperty("transform",`translateY(${U}px) scale(${W})`)}))}return Lt(()=>t(gr,{class:["v-parallax",{"v-parallax--active":u.value},n.class],style:n.style,ref:z,cover:!0,onLoadstart:B,onLoad:B},r)),{}}}),s9=mt({...Ra({falseIcon:"$radioOff",trueIcon:"$radioOn"})},"VRadio"),a9=At()({name:"VRadio",props:s9(),setup(n,l){let{slots:r}=l;return Lt(()=>t(wr,o(n,{class:["v-radio",n.class],style:n.style,type:"radio"}),r)),{}}});const i9=mt({height:{type:[Number,String],default:"auto"},...xl(),...jn(Eh(),["multiple"]),trueIcon:{type:te,default:"$radioOn"},falseIcon:{type:te,default:"$radioOff"},type:{type:String,default:"radio"}},"VRadioGroup"),h9=At()({name:"VRadioGroup",inheritAttrs:!1,props:i9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const u=on(),g=X(()=>n.id||`radio-group-${u}`),v=ee(n,"modelValue");return Lt(()=>{const[b,z]=br(r),[C,S]=Ge.filterProps(n),[A,B]=wr.filterProps(n),P=h.label?h.label({label:n.label,props:{for:g.value}}):n.label;return t(Ge,o({class:["v-radio-group",n.class],style:n.style},b,C,{modelValue:v.value,"onUpdate:modelValue":D=>v.value=D,id:g.value}),{...h,default:D=>{let{id:E,messagesId:Y,isDisabled:O,isReadonly:H}=D;return t(Zt,null,[P&&t(uo,{id:E.value},{default:()=>[P]}),t(hp,o(A,{id:E.value,"aria-describedby":Y.value,defaultsTarget:"VRadio",trueIcon:n.trueIcon,falseIcon:n.falseIcon,type:n.type,disabled:O.value,readonly:H.value,"aria-labelledby":P?E.value:void 0,multiple:!1},z,{modelValue:v.value,"onUpdate:modelValue":U=>v.value=U}),h)])}})}),{}}}),d9=mt({...Ea(),...xl(),...e4(),strict:Boolean,modelValue:{type:Array,default:()=>[0,0]}},"VRangeSlider"),c9=At()({name:"VRangeSlider",props:d9(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,end:n=>!0,start:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const u=Pt(),g=Pt(),v=Pt(),{rtlClasses:b}=Xe();function z(G){if(!u.value||!g.value)return;const et=C0(G,u.value.$el,n.direction),st=C0(G,g.value.$el,n.direction),rt=Math.abs(et),ht=Math.abs(st);return rtG!=null&&G.length?G.map(et=>C.roundValue(et)):[0,0]),{activeThumbRef:A,hasLabels:B,max:P,min:D,mousePressed:E,onSliderMousedown:Y,onSliderTouchstart:O,position:H,trackContainerRef:U}=l4({props:n,steps:C,onSliderStart:()=>{h("start",S.value)},onSliderEnd:G=>{var rt;let{value:et}=G;const st=A.value===((rt=u.value)==null?void 0:rt.$el)?[et,S.value[1]]:[S.value[0],et];!n.strict&&st[0]{var ht,dt,Ct,xt;let{value:et}=G;const[st,rt]=S.value;!n.strict&&st===rt&&st!==D.value&&(A.value=et>st?(ht=g.value)==null?void 0:ht.$el:(dt=u.value)==null?void 0:dt.$el,(Ct=A.value)==null||Ct.focus()),A.value===((xt=u.value)==null?void 0:xt.$el)?S.value=[Math.min(et,rt),rt]:S.value=[st,Math.max(st,et)]},getActiveThumb:z}),{isFocused:W,focus:_,blur:tt}=Yl(n),nt=X(()=>H(S.value[0])),q=X(()=>H(S.value[1]));return Lt(()=>{const[G,et]=Ge.filterProps(n),st=!!(n.label||r.label||r.prepend);return t(Ge,o({class:["v-slider","v-range-slider",{"v-slider--has-labels":!!r["tick-label"]||B.value,"v-slider--focused":W.value,"v-slider--pressed":E.value,"v-slider--disabled":n.disabled},b.value,n.class],style:n.style,ref:v},G,{focused:W.value}),{...r,prepend:st?rt=>{var ht,dt;return t(Zt,null,[((ht=r.label)==null?void 0:ht.call(r,rt))??n.label?t(uo,{class:"v-slider__label",text:n.label},null):void 0,(dt=r.prepend)==null?void 0:dt.call(r,rt)])}:void 0,default:rt=>{var Ct,xt;let{id:ht,messagesId:dt}=rt;return t("div",{class:"v-slider__container",onMousedown:Y,onTouchstartPassive:O},[t("input",{id:`${ht.value}_start`,name:n.name||ht.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:S.value[0]},null),t("input",{id:`${ht.value}_stop`,name:n.name||ht.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:S.value[1]},null),t(r4,{ref:U,start:nt.value,stop:q.value},{"tick-label":r["tick-label"]}),t(S0,{ref:u,"aria-describedby":dt.value,focused:W&&A.value===((Ct=u.value)==null?void 0:Ct.$el),modelValue:S.value[0],"onUpdate:modelValue":wt=>S.value=[wt,S.value[1]],onFocus:wt=>{var gt,It,$t,Tt;_(),A.value=(gt=u.value)==null?void 0:gt.$el,S.value[0]===S.value[1]&&S.value[1]===D.value&&wt.relatedTarget!==((It=g.value)==null?void 0:It.$el)&&(($t=u.value)==null||$t.$el.blur(),(Tt=g.value)==null||Tt.$el.focus())},onBlur:()=>{tt(),A.value=void 0},min:D.value,max:S.value[1],position:nt.value},{"thumb-label":r["thumb-label"]}),t(S0,{ref:g,"aria-describedby":dt.value,focused:W&&A.value===((xt=g.value)==null?void 0:xt.$el),modelValue:S.value[1],"onUpdate:modelValue":wt=>S.value=[S.value[0],wt],onFocus:wt=>{var gt,It,$t,Tt;_(),A.value=(gt=g.value)==null?void 0:gt.$el,S.value[0]===S.value[1]&&S.value[0]===P.value&&wt.relatedTarget!==((It=u.value)==null?void 0:It.$el)&&(($t=g.value)==null||$t.$el.blur(),(Tt=u.value)==null||Tt.$el.focus())},onBlur:()=>{tt(),A.value=void 0},min:S.value[0],max:P.value,position:q.value},{"thumb-label":r["thumb-label"]})])}})}),{}}});const u9=mt({name:String,itemAriaLabel:{type:String,default:"$vuetify.rating.ariaLabel.item"},activeColor:String,color:String,clearable:Boolean,disabled:Boolean,emptyIcon:{type:te,default:"$ratingEmpty"},fullIcon:{type:te,default:"$ratingFull"},halfIncrements:Boolean,hover:Boolean,length:{type:[Number,String],default:5},readonly:Boolean,modelValue:{type:[Number,String],default:0},itemLabels:Array,itemLabelPosition:{type:String,default:"top",validator:n=>["top","bottom"].includes(n)},ripple:Boolean,...Wt(),...Ee(),...Ml(),...le(),...ce()},"VRating"),p9=At()({name:"VRating",props:u9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Ln(),{themeClasses:u}=ge(n),g=ee(n,"modelValue"),v=X(()=>en(parseFloat(g.value),0,+n.length)),b=X(()=>il(Number(n.length),1)),z=X(()=>b.value.flatMap(E=>n.halfIncrements?[E-.5,E]:[E])),C=_t(-1),S=X(()=>z.value.map(E=>{const Y=n.hover&&C.value>-1,O=v.value>=E,H=C.value>=E,W=(Y?H:O)?n.fullIcon:n.emptyIcon,_=n.activeColor??n.color,tt=O||H?_:n.color;return{isFilled:O,isHovered:H,icon:W,color:tt}})),A=X(()=>[0,...z.value].map(E=>{function Y(){C.value=E}function O(){C.value=-1}function H(){n.disabled||n.readonly||(g.value=v.value===E&&n.clearable?0:E)}return{onMouseenter:n.hover?Y:void 0,onMouseleave:n.hover?O:void 0,onClick:H}})),B=X(()=>n.name??`v-rating-${on()}`);function P(E){var q,G;let{value:Y,index:O,showStar:H=!0}=E;const{onMouseenter:U,onMouseleave:W,onClick:_}=A.value[O+1],tt=`${B.value}-${String(Y).replace(".","-")}`,nt={color:(q=S.value[O])==null?void 0:q.color,density:n.density,disabled:n.disabled,icon:(G=S.value[O])==null?void 0:G.icon,ripple:n.ripple,size:n.size,variant:"plain"};return t(Zt,null,[t("label",{for:tt,class:{"v-rating__item--half":n.halfIncrements&&Y%1>0,"v-rating__item--full":n.halfIncrements&&Y%1===0},onMouseenter:U,onMouseleave:W,onClick:_},[t("span",{class:"v-rating__hidden"},[h(n.itemAriaLabel,Y,n.length)]),H?r.item?r.item({...S.value[O],props:nt,value:Y,index:O,rating:v.value}):t(dn,o({"aria-label":h(n.itemAriaLabel,Y,n.length)},nt),null):void 0]),t("input",{class:"v-rating__hidden",name:B.value,id:tt,type:"radio",value:Y,checked:v.value===Y,tabindex:-1,readonly:n.readonly,disabled:n.disabled},null)])}function D(E){return r["item-label"]?r["item-label"](E):E.label?t("span",null,[E.label]):t("span",null,[e(" ")])}return Lt(()=>{var Y;const E=!!((Y=n.itemLabels)!=null&&Y.length)||r["item-label"];return t(n.tag,{class:["v-rating",{"v-rating--hover":n.hover,"v-rating--readonly":n.readonly},u.value,n.class],style:n.style},{default:()=>[t(P,{value:0,index:-1,showStar:!1},null),b.value.map((O,H)=>{var U,W;return t("div",{class:"v-rating__wrapper"},[E&&n.itemLabelPosition==="top"?D({value:O,index:H,label:(U=n.itemLabels)==null?void 0:U[H]}):void 0,t("div",{class:"v-rating__item"},[n.halfIncrements?t(Zt,null,[t(P,{value:O-.5,index:H*2},null),t(P,{value:O,index:H*2+1},null)]):t(P,{value:O,index:H},null)]),E&&n.itemLabelPosition==="bottom"?D({value:O,index:H,label:(W=n.itemLabels)==null?void 0:W[H]}):void 0])})]})}),{}}});function ld(n){const r=Math.abs(n);return Math.sign(n)*(r/((1/.501-2)*(1-r)+1))}function rd(n){let{selectedElement:l,containerSize:r,contentSize:h,isRtl:u,currentScrollOffset:g,isHorizontal:v}=n;const b=v?l.clientWidth:l.clientHeight,z=v?l.offsetLeft:l.offsetTop,C=u&&v?h-z-b:z,S=r+g,A=b+C,B=b*.4;return C<=g?g=Math.max(C-B,0):S<=A&&(g=Math.min(g-(S-A-B),h-r)),g}function g9(n){let{selectedElement:l,containerSize:r,contentSize:h,isRtl:u,isHorizontal:g}=n;const v=g?l.clientWidth:l.clientHeight,b=g?l.offsetLeft:l.offsetTop,z=u&&g?h-b-v/2-r/2:b+v/2-r/2;return Math.min(h-r,Math.max(0,z))}const b4=Symbol.for("vuetify:v-slide-group"),M4=mt({centerActive:Boolean,direction:{type:String,default:"horizontal"},symbol:{type:null,default:b4},nextIcon:{type:te,default:"$next"},prevIcon:{type:te,default:"$prev"},showArrows:{type:[Boolean,String],validator:n=>typeof n=="boolean"||["always","desktop","mobile"].includes(n)},...Wt(),...le(),...oo({selectedClass:"v-slide-group-item--active"})},"VSlideGroup"),B0=At()({name:"VSlideGroup",props:M4(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{isRtl:h}=Xe(),{mobile:u}=Mr(),g=yr(n,n.symbol),v=_t(!1),b=_t(0),z=_t(0),C=_t(0),S=X(()=>n.direction==="horizontal"),{resizeRef:A,contentRect:B}=el(),{resizeRef:P,contentRect:D}=el(),E=X(()=>g.selected.value.length?g.items.value.findIndex($t=>$t.id===g.selected.value[0]):-1),Y=X(()=>g.selected.value.length?g.items.value.findIndex($t=>$t.id===g.selected.value[g.selected.value.length-1]):-1);if(Me){let $t=-1;Vt(()=>[g.selected.value,B.value,D.value,S.value],()=>{cancelAnimationFrame($t),$t=requestAnimationFrame(()=>{if(B.value&&D.value){const Tt=S.value?"width":"height";z.value=B.value[Tt],C.value=D.value[Tt],v.value=z.value+1=0&&P.value){const Tt=P.value.children[Y.value];E.value===0||!v.value?b.value=0:n.centerActive?b.value=g9({selectedElement:Tt,containerSize:z.value,contentSize:C.value,isRtl:h.value,isHorizontal:S.value}):v.value&&(b.value=rd({selectedElement:Tt,containerSize:z.value,contentSize:C.value,isRtl:h.value,currentScrollOffset:b.value,isHorizontal:S.value}))}})})}const O=_t(!1);let H=0,U=0;function W($t){const Tt=S.value?"clientX":"clientY";U=(h.value&&S.value?-1:1)*b.value,H=$t.touches[0][Tt],O.value=!0}function _($t){if(!v.value)return;const Tt=S.value?"clientX":"clientY",Ft=h.value&&S.value?-1:1;b.value=Ft*(U+H-$t.touches[0][Tt])}function tt($t){const Tt=C.value-z.value;b.value<0||!v.value?b.value=0:b.value>=Tt&&(b.value=Tt),O.value=!1}function nt(){A.value&&(A.value[S.value?"scrollLeft":"scrollTop"]=0)}const q=_t(!1);function G($t){if(q.value=!0,!(!v.value||!P.value)){for(const Tt of $t.composedPath())for(const Ft of P.value.children)if(Ft===Tt){b.value=rd({selectedElement:Ft,containerSize:z.value,contentSize:C.value,isRtl:h.value,currentScrollOffset:b.value,isHorizontal:S.value});return}}}function et($t){q.value=!1}function st($t){var Tt;!q.value&&!($t.relatedTarget&&((Tt=P.value)!=null&&Tt.contains($t.relatedTarget)))&&ht()}function rt($t){P.value&&(S.value?$t.key==="ArrowRight"?ht(h.value?"prev":"next"):$t.key==="ArrowLeft"&&ht(h.value?"next":"prev"):$t.key==="ArrowDown"?ht("next"):$t.key==="ArrowUp"&&ht("prev"),$t.key==="Home"?ht("first"):$t.key==="End"&&ht("last"))}function ht($t){var Tt,Ft,Kt,Qt,Rt;if(P.value)if(!$t)(Tt=Go(P.value)[0])==null||Tt.focus();else if($t==="next"){const ut=(Ft=P.value.querySelector(":focus"))==null?void 0:Ft.nextElementSibling;ut?ut.focus():ht("first")}else if($t==="prev"){const ut=(Kt=P.value.querySelector(":focus"))==null?void 0:Kt.previousElementSibling;ut?ut.focus():ht("last")}else $t==="first"?(Qt=P.value.firstElementChild)==null||Qt.focus():$t==="last"&&((Rt=P.value.lastElementChild)==null||Rt.focus())}function dt($t){const Tt=b.value+($t==="prev"?-1:1)*z.value;b.value=en(Tt,0,C.value-z.value)}const Ct=X(()=>{let $t=b.value>C.value-z.value?-(C.value-z.value)+ld(C.value-z.value-b.value):-b.value;b.value<=0&&($t=ld(-b.value));const Tt=h.value&&S.value?-1:1;return{transform:`translate${S.value?"X":"Y"}(${Tt*$t}px)`,transition:O.value?"none":"",willChange:O.value?"transform":""}}),xt=X(()=>({next:g.next,prev:g.prev,select:g.select,isSelected:g.isSelected})),wt=X(()=>{switch(n.showArrows){case"always":return!0;case"desktop":return!u.value;case!0:return v.value||Math.abs(b.value)>0;case"mobile":return u.value||v.value||Math.abs(b.value)>0;default:return!u.value&&(v.value||Math.abs(b.value)>0)}}),gt=X(()=>Math.abs(b.value)>0),It=X(()=>C.value>Math.abs(b.value)+z.value);return Lt(()=>t(n.tag,{class:["v-slide-group",{"v-slide-group--vertical":!S.value,"v-slide-group--has-affixes":wt.value,"v-slide-group--is-overflowing":v.value},n.class],style:n.style,tabindex:q.value||g.selected.value.length?-1:0,onFocus:st},{default:()=>{var $t,Tt,Ft;return[wt.value&&t("div",{key:"prev",class:["v-slide-group__prev",{"v-slide-group__prev--disabled":!gt.value}],onClick:()=>dt("prev")},[(($t=r.prev)==null?void 0:$t.call(r,xt.value))??t(c0,null,{default:()=>[t(be,{icon:h.value?n.nextIcon:n.prevIcon},null)]})]),t("div",{key:"container",ref:A,class:"v-slide-group__container",onScroll:nt},[t("div",{ref:P,class:"v-slide-group__content",style:Ct.value,onTouchstartPassive:W,onTouchmovePassive:_,onTouchendPassive:tt,onFocusin:G,onFocusout:et,onKeydown:rt},[(Tt=r.default)==null?void 0:Tt.call(r,xt.value)])]),wt.value&&t("div",{key:"next",class:["v-slide-group__next",{"v-slide-group__next--disabled":!It.value}],onClick:()=>dt("next")},[((Ft=r.next)==null?void 0:Ft.call(r,xt.value))??t(c0,null,{default:()=>[t(be,{icon:h.value?n.prevIcon:n.nextIcon},null)]})])]}})),{selected:g.selected,scrollTo:dt,scrollOffset:b,focus:ht}}}),w9=At()({name:"VSlideGroupItem",props:so(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=ao(n,b4);return()=>{var u;return(u=r.default)==null?void 0:u.call(r,{isSelected:h.isSelected.value,select:h.select,toggle:h.toggle,selectedClass:h.selectedClass.value})}}});const v9=mt({multiLine:Boolean,timeout:{type:[Number,String],default:5e3},vertical:Boolean,...Wl({location:"bottom"}),...ho(),...Ie(),...Tn(),...ce(),...jn(vs({transition:"v-snackbar-transition"}),["persistent","noClickAnimation","scrim","scrollStrategy"])},"VSnackbar"),f9=At()({name:"VSnackbar",props:v9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{locationStyles:u}=Xl(n),{positionClasses:g}=co(n),{scopeId:v}=po(),{themeClasses:b}=ge(n),{colorClasses:z,colorStyles:C,variantClasses:S}=Ir(n),{roundedClasses:A}=Be(n),B=Pt();Vt(h,D),Vt(()=>n.timeout,D),Te(()=>{h.value&&D()});let P=-1;function D(){window.clearTimeout(P);const Y=Number(n.timeout);!h.value||Y===-1||(P=window.setTimeout(()=>{h.value=!1},Y))}function E(){window.clearTimeout(P)}return Lt(()=>{const[Y]=wl.filterProps(n);return t(wl,o({ref:B,class:["v-snackbar",{"v-snackbar--active":h.value,"v-snackbar--multi-line":n.multiLine&&!n.vertical,"v-snackbar--vertical":n.vertical},g.value,n.class],style:n.style},Y,{modelValue:h.value,"onUpdate:modelValue":O=>h.value=O,contentProps:o({class:["v-snackbar__wrapper",b.value,z.value,A.value,S.value],style:[u.value,C.value],onPointerenter:E,onPointerleave:D},Y.contentProps),persistent:!0,noClickAnimation:!0,scrim:!1,scrollStrategy:"none",_disableGlobalStack:!0},v),{default:()=>[zr(!1,"v-snackbar"),r.default&&t("div",{class:"v-snackbar__content",role:"status","aria-live":"polite"},[r.default()]),r.actions&&t(fe,{defaults:{VBtn:{variant:"text",ripple:!1}}},{default:()=>[t("div",{class:"v-snackbar__actions"},[r.actions()])]})],activator:r.activator})}),Un({},B)}});const m9=mt({indeterminate:Boolean,inset:Boolean,flat:Boolean,loading:{type:[Boolean,String],default:!1},...xl(),...Ra()},"VSwitch"),k9=At()({name:"VSwitch",inheritAttrs:!1,props:m9(),emits:{"update:focused":n=>!0,"update:modelValue":()=>!0,"update:indeterminate":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const u=ee(n,"indeterminate"),g=ee(n,"modelValue"),{loaderClasses:v}=Ta(n),{isFocused:b,focus:z,blur:C}=Yl(n),S=Pt(),A=X(()=>typeof n.loading=="string"&&n.loading!==""?n.loading:n.color),B=on(),P=X(()=>n.id||`switch-${B}`);function D(){u.value&&(u.value=!1)}function E(Y){var O,H;Y.stopPropagation(),Y.preventDefault(),(H=(O=S.value)==null?void 0:O.input)==null||H.click()}return Lt(()=>{const[Y,O]=br(r),[H,U]=Ge.filterProps(n),[W,_]=wr.filterProps(n);return t(Ge,o({class:["v-switch",{"v-switch--inset":n.inset},{"v-switch--indeterminate":u.value},v.value,n.class],style:n.style},Y,H,{id:P.value,focused:b.value}),{...h,default:tt=>{let{id:nt,messagesId:q,isDisabled:G,isReadonly:et,isValid:st}=tt;return t(wr,o({ref:S},W,{modelValue:g.value,"onUpdate:modelValue":[rt=>g.value=rt,D],id:nt.value,"aria-describedby":q.value,type:"checkbox","aria-checked":u.value?"mixed":void 0,disabled:G.value,readonly:et.value,onFocus:z,onBlur:C},O),{...h,default:()=>t("div",{class:"v-switch__track",onClick:E},null),input:rt=>{let{inputNode:ht,icon:dt}=rt;return t(Zt,null,[ht,t("div",{class:["v-switch__thumb",{"v-switch__thumb--filled":dt||n.loading}]},[t(Bh,null,{default:()=>[n.loading?t(Th,{name:"v-switch",active:!0,color:st.value===!1?void 0:A.value},{default:Ct=>h.loader?h.loader(Ct):t(Dh,{active:Ct.isActive,color:Ct.color,indeterminate:!0,size:"16",width:"2"},null)}):dt&&t(be,{key:dt,icon:dt,size:"x-small"},null)]})])])}})}})}),{}}});const b9=mt({color:String,height:[Number,String],window:Boolean,...Wt(),...Re(),...lo(),...Ie(),...le(),...ce()},"VSystemBar"),M9=At()({name:"VSystemBar",props:b9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{backgroundColorClasses:u,backgroundColorStyles:g}=Ne(Bt(n,"color")),{elevationClasses:v}=Ze(n),{roundedClasses:b}=Be(n),{ssrBootStyles:z}=xr(),C=X(()=>n.height??(n.window?32:24)),{layoutItemStyles:S}=ro({id:n.name,order:X(()=>parseInt(n.order,10)),position:_t("top"),layoutSize:C,elementSize:C,active:X(()=>!0),absolute:Bt(n,"absolute")});return Lt(()=>t(n.tag,{class:["v-system-bar",{"v-system-bar--window":n.window},h.value,u.value,v.value,b.value,n.class],style:[g.value,S.value,z.value,n.style]},r)),{}}});const x4=Symbol.for("vuetify:v-tabs"),x9=mt({fixed:Boolean,sliderColor:String,hideSlider:Boolean,direction:{type:String,default:"horizontal"},...jn(Rh({selectedClass:"v-tab--selected",variant:"text"}),["active","block","flat","location","position","symbol"])},"VTab"),z4=At()({name:"VTab",props:x9(),setup(n,l){let{slots:r,attrs:h}=l;const{textColorClasses:u,textColorStyles:g}=rn(n,"sliderColor"),v=X(()=>n.direction==="horizontal"),b=_t(!1),z=Pt(),C=Pt();function S(A){var P,D;let{value:B}=A;if(b.value=B,B){const E=(D=(P=z.value)==null?void 0:P.$el.parentElement)==null?void 0:D.querySelector(".v-tab--selected .v-tab__slider"),Y=C.value;if(!E||!Y)return;const O=getComputedStyle(E).color,H=E.getBoundingClientRect(),U=Y.getBoundingClientRect(),W=v.value?"x":"y",_=v.value?"X":"Y",tt=v.value?"right":"bottom",nt=v.value?"width":"height",q=H[W],G=U[W],et=q>G?H[tt]-U[tt]:H[W]-U[W],st=Math.sign(et)>0?v.value?"right":"bottom":Math.sign(et)<0?v.value?"left":"top":"center",ht=(Math.abs(et)+(Math.sign(et)<0?H[nt]:U[nt]))/Math.max(H[nt],U[nt]),dt=H[nt]/U[nt],Ct=1.5;rr(Y,{backgroundColor:[O,"currentcolor"],transform:[`translate${_}(${et}px) scale${_}(${dt})`,`translate${_}(${et/Ct}px) scale${_}(${(ht-1)/Ct+1})`,"none"],transformOrigin:Array(3).fill(st)},{duration:225,easing:Uo})}}return Lt(()=>{const[A]=dn.filterProps(n);return t(dn,o({symbol:x4,ref:z,class:["v-tab",n.class],style:n.style,tabindex:b.value?0:-1,role:"tab","aria-selected":String(b.value),active:!1,block:n.fixed,maxWidth:n.fixed?300:void 0,rounded:0},A,h,{"onGroup:selected":S}),{default:()=>{var B;return[((B=r.default)==null?void 0:B.call(r))??n.text,!n.hideSlider&&t("div",{ref:C,class:["v-tab__slider",u.value],style:g.value},null)]}})}),{}}});function z9(n){return n?n.map(l=>typeof l=="string"?{title:l,value:l}:l):[]}const I9=mt({alignTabs:{type:String,default:"start"},color:String,fixedTabs:Boolean,items:{type:Array,default:()=>[]},stacked:Boolean,bgColor:String,grow:Boolean,height:{type:[Number,String],default:void 0},hideSlider:Boolean,sliderColor:String,...M4({mandatory:"force"}),...Ee(),...le()},"VTabs"),y9=At()({name:"VTabs",props:I9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),u=X(()=>z9(n.items)),{densityClasses:g}=sn(n),{backgroundColorClasses:v,backgroundColorStyles:b}=Ne(Bt(n,"bgColor"));return Fe({VTab:{color:Bt(n,"color"),direction:Bt(n,"direction"),stacked:Bt(n,"stacked"),fixed:Bt(n,"fixedTabs"),sliderColor:Bt(n,"sliderColor"),hideSlider:Bt(n,"hideSlider")}}),Lt(()=>{const[z]=B0.filterProps(n);return t(B0,o(z,{modelValue:h.value,"onUpdate:modelValue":C=>h.value=C,class:["v-tabs",`v-tabs--${n.direction}`,`v-tabs--align-tabs-${n.alignTabs}`,{"v-tabs--fixed-tabs":n.fixedTabs,"v-tabs--grow":n.grow,"v-tabs--stacked":n.stacked},g.value,v.value,n.class],style:[{"--v-tabs-height":Xt(n.height)},b.value,n.style],role:"tablist",symbol:x4}),{default:()=>[r.default?r.default():u.value.map(C=>t(z4,o(C,{key:C.title}),null))]})}),{}}});const C9=mt({fixedHeader:Boolean,fixedFooter:Boolean,height:[Number,String],hover:Boolean,...Wt(),...Ee(),...le(),...ce()},"VTable"),S9=At()({name:"VTable",props:C9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{densityClasses:u}=sn(n);return Lt(()=>t(n.tag,{class:["v-table",{"v-table--fixed-height":!!n.height,"v-table--fixed-header":n.fixedHeader,"v-table--fixed-footer":n.fixedFooter,"v-table--has-top":!!r.top,"v-table--has-bottom":!!r.bottom,"v-table--hover":n.hover},h.value,u.value,n.class],style:n.style},{default:()=>{var g,v,b;return[(g=r.top)==null?void 0:g.call(r),r.default?t("div",{class:"v-table__wrapper",style:{height:Xt(n.height)}},[t("table",null,[r.default()])]):(v=r.wrapper)==null?void 0:v.call(r),(b=r.bottom)==null?void 0:b.call(r)]}})),{}}});const $9=mt({autoGrow:Boolean,autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,noResize:Boolean,rows:{type:[Number,String],default:5,validator:n=>!isNaN(parseFloat(n))},maxRows:{type:[Number,String],validator:n=>!isNaN(parseFloat(n))},suffix:String,modelModifiers:Object,...xl(),...Ya()},"VTextarea"),A9=At()({name:"VTextarea",directives:{Intersect:Oa},inheritAttrs:!1,props:$9(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:u}=l;const g=ee(n,"modelValue"),{isFocused:v,focus:b,blur:z}=Yl(n),C=X(()=>typeof n.counterValue=="function"?n.counterValue(g.value):(g.value||"").toString().length),S=X(()=>{if(r.maxlength)return r.maxlength;if(!(!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"))return n.counter});function A(st,rt){var ht,dt;!n.autofocus||!st||(dt=(ht=rt[0].target)==null?void 0:ht.focus)==null||dt.call(ht)}const B=Pt(),P=Pt(),D=_t(""),E=Pt(),Y=X(()=>n.persistentPlaceholder||v.value||n.active);function O(){var st;E.value!==document.activeElement&&((st=E.value)==null||st.focus()),v.value||b()}function H(st){O(),h("click:control",st)}function U(st){h("mousedown:control",st)}function W(st){st.stopPropagation(),O(),pe(()=>{g.value="",bh(n["onClick:clear"],st)})}function _(st){var ht;const rt=st.target;if(g.value=rt.value,(ht=n.modelModifiers)!=null&&ht.trim){const dt=[rt.selectionStart,rt.selectionEnd];pe(()=>{rt.selectionStart=dt[0],rt.selectionEnd=dt[1]})}}const tt=Pt(),nt=Pt(+n.rows),q=X(()=>["plain","underlined"].includes(n.variant));fn(()=>{n.autoGrow||(nt.value=+n.rows)});function G(){n.autoGrow&&pe(()=>{if(!tt.value||!P.value)return;const st=getComputedStyle(tt.value),rt=getComputedStyle(P.value.$el),ht=parseFloat(st.getPropertyValue("--v-field-padding-top"))+parseFloat(st.getPropertyValue("--v-input-padding-top"))+parseFloat(st.getPropertyValue("--v-field-padding-bottom")),dt=tt.value.scrollHeight,Ct=parseFloat(st.lineHeight),xt=Math.max(parseFloat(n.rows)*Ct+ht,parseFloat(rt.getPropertyValue("--v-input-control-height"))),wt=parseFloat(n.maxRows)*Ct+ht||1/0,gt=en(dt??0,xt,wt);nt.value=Math.floor((gt-ht)/Ct),D.value=Xt(gt)})}Te(G),Vt(g,G),Vt(()=>n.rows,G),Vt(()=>n.maxRows,G),Vt(()=>n.density,G);let et;return Vt(tt,st=>{st?(et=new ResizeObserver(G),et.observe(tt.value)):et==null||et.disconnect()}),Ue(()=>{et==null||et.disconnect()}),Lt(()=>{const st=!!(u.counter||n.counter||n.counterValue),rt=!!(st||u.details),[ht,dt]=br(r),[{modelValue:Ct,...xt}]=Ge.filterProps(n),[wt]=Xh(n);return t(Ge,o({ref:B,modelValue:g.value,"onUpdate:modelValue":gt=>g.value=gt,class:["v-textarea v-text-field",{"v-textarea--prefixed":n.prefix,"v-textarea--suffixed":n.suffix,"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-textarea--auto-grow":n.autoGrow,"v-textarea--no-resize":n.noResize||n.autoGrow,"v-text-field--plain-underlined":q.value},n.class],style:n.style},ht,xt,{centerAffix:nt.value===1&&!q.value,focused:v.value}),{...u,default:gt=>{let{isDisabled:It,isDirty:$t,isReadonly:Tt,isValid:Ft}=gt;return t(fs,o({ref:P,style:{"--v-textarea-control-height":D.value},onClick:H,onMousedown:U,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},wt,{active:Y.value||$t.value,centerAffix:nt.value===1&&!q.value,dirty:$t.value||n.dirty,disabled:It.value,focused:v.value,error:Ft.value===!1}),{...u,default:Kt=>{let{props:{class:Qt,...Rt}}=Kt;return t(Zt,null,[n.prefix&&t("span",{class:"v-text-field__prefix"},[n.prefix]),Ce(t("textarea",o({ref:E,class:Qt,value:g.value,onInput:_,autofocus:n.autofocus,readonly:Tt.value,disabled:It.value,placeholder:n.placeholder,rows:n.rows,name:n.name,onFocus:O,onBlur:z},Rt,dt),null),[[mn("intersect"),{handler:A},null,{once:!0}]]),n.autoGrow&&Ce(t("textarea",{class:[Qt,"v-textarea__sizer"],"onUpdate:modelValue":ut=>g.value=ut,ref:tt,readonly:!0,"aria-hidden":"true"},null),[[qo,g.value]]),n.suffix&&t("span",{class:"v-text-field__suffix"},[n.suffix])])}})},details:rt?gt=>{var It;return t(Zt,null,[(It=u.details)==null?void 0:It.call(u,gt),st&&t(Zt,null,[t("span",null,null),t(qa,{active:n.persistentCounter||v.value,value:C.value,max:S.value},u.counter)])])}:void 0})}),Un({},B,P,E)}});const B9=mt({withBackground:Boolean,...Wt(),...ce(),...le()},"VThemeProvider"),H9=At()({name:"VThemeProvider",props:B9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n);return()=>{var u;return n.withBackground?t(n.tag,{class:["v-theme-provider",h.value,n.class],style:n.style},{default:()=>{var g;return[(g=r.default)==null?void 0:g.call(r)]}}):(u=r.default)==null?void 0:u.call(r)}}});const N9=mt({align:{type:String,default:"center",validator:n=>["center","start"].includes(n)},direction:{type:String,default:"vertical",validator:n=>["vertical","horizontal"].includes(n)},justify:{type:String,default:"auto",validator:n=>["auto","center"].includes(n)},side:{type:String,validator:n=>n==null||["start","end"].includes(n)},lineInset:{type:[String,Number],default:0},lineThickness:{type:[String,Number],default:2},lineColor:String,truncateLine:{type:String,validator:n=>["start","end","both"].includes(n)},...Wt(),...Ee(),...le(),...ce()},"VTimeline"),j9=At()({name:"VTimeline",props:N9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ge(n),{densityClasses:u}=sn(n),{rtlClasses:g}=Xe();Fe({VTimelineDivider:{lineColor:Bt(n,"lineColor")},VTimelineItem:{density:Bt(n,"density"),lineInset:Bt(n,"lineInset")}});const v=X(()=>{const z=n.side?n.side:n.density!=="default"?"end":null;return z&&`v-timeline--side-${z}`}),b=X(()=>{const z=["v-timeline--truncate-line-start","v-timeline--truncate-line-end"];switch(n.truncateLine){case"both":return z;case"start":return z[0];case"end":return z[1];default:return null}});return Lt(()=>t(n.tag,{class:["v-timeline",`v-timeline--${n.direction}`,`v-timeline--align-${n.align}`,`v-timeline--justify-${n.justify}`,b.value,{"v-timeline--inset-line":!!n.lineInset},h.value,u.value,v.value,g.value,n.class],style:[{"--v-timeline-line-thickness":Xt(n.lineThickness)},n.style]},r)),{}}}),P9=mt({dotColor:String,fillDot:Boolean,hideDot:Boolean,icon:te,iconColor:String,lineColor:String,...Wt(),...Ie(),...Ml(),...Re()},"VTimelineDivider"),L9=At()({name:"VTimelineDivider",props:P9(),setup(n,l){let{slots:r}=l;const{sizeClasses:h,sizeStyles:u}=io(n,"v-timeline-divider__dot"),{backgroundColorStyles:g,backgroundColorClasses:v}=Ne(Bt(n,"dotColor")),{roundedClasses:b}=Be(n,"v-timeline-divider__dot"),{elevationClasses:z}=Ze(n),{backgroundColorClasses:C,backgroundColorStyles:S}=Ne(Bt(n,"lineColor"));return Lt(()=>t("div",{class:["v-timeline-divider",{"v-timeline-divider--fill-dot":n.fillDot},n.class],style:n.style},[t("div",{class:["v-timeline-divider__before",C.value],style:S.value},null),!n.hideDot&&t("div",{key:"dot",class:["v-timeline-divider__dot",z.value,b.value,h.value],style:u.value},[t("div",{class:["v-timeline-divider__inner-dot",v.value,b.value],style:g.value},[r.default?t(fe,{key:"icon-defaults",disabled:!n.icon,defaults:{VIcon:{color:n.iconColor,icon:n.icon,size:n.size}}},r.default):t(be,{key:"icon",color:n.iconColor,icon:n.icon,size:n.size},null)])]),t("div",{class:["v-timeline-divider__after",C.value],style:S.value},null)])),{}}}),D9=mt({density:String,dotColor:String,fillDot:Boolean,hideDot:Boolean,hideOpposite:{type:Boolean,default:void 0},icon:te,iconColor:String,lineInset:[Number,String],...Wt(),...Dn(),...Re(),...Ie(),...Ml(),...le()},"VTimelineItem"),F9=At()({name:"VTimelineItem",props:D9(),setup(n,l){let{slots:r}=l;const{dimensionStyles:h}=Fn(n),u=_t(0),g=Pt();return Vt(g,v=>{var b;v&&(u.value=((b=v.$el.querySelector(".v-timeline-divider__dot"))==null?void 0:b.getBoundingClientRect().width)??0)},{flush:"post"}),Lt(()=>{var v,b;return t("div",{class:["v-timeline-item",{"v-timeline-item--fill-dot":n.fillDot},n.class],style:[{"--v-timeline-dot-size":Xt(u.value),"--v-timeline-line-inset":n.lineInset?`calc(var(--v-timeline-dot-size) / 2 + ${Xt(n.lineInset)})`:Xt(0)},n.style]},[t("div",{class:"v-timeline-item__body",style:h.value},[(v=r.default)==null?void 0:v.call(r)]),t(L9,{ref:g,hideDot:n.hideDot,icon:n.icon,iconColor:n.iconColor,size:n.size,elevation:n.elevation,dotColor:n.dotColor,fillDot:n.fillDot,rounded:n.rounded},{default:r.icon}),n.density!=="compact"&&t("div",{class:"v-timeline-item__opposite"},[!n.hideOpposite&&((b=r.opposite)==null?void 0:b.call(r))])])}),{}}}),O9=mt({...Wt(),...Tn({variant:"text"})},"VToolbarItems"),T9=At()({name:"VToolbarItems",props:O9(),setup(n,l){let{slots:r}=l;return Fe({VBtn:{color:Bt(n,"color"),height:"inherit",variant:Bt(n,"variant")}}),Lt(()=>{var h;return t("div",{class:["v-toolbar-items",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}});const R9=mt({id:String,text:String,...jn(vs({closeOnBack:!1,location:"end",locationStrategy:"connected",eager:!0,minWidth:0,offset:10,openOnClick:!1,openOnHover:!0,origin:"auto",scrim:!1,scrollStrategy:"reposition",transition:!1}),["absolute","persistent"])},"VTooltip"),E9=At()({name:"VTooltip",props:R9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ee(n,"modelValue"),{scopeId:u}=po(),g=on(),v=X(()=>n.id||`v-tooltip-${g}`),b=Pt(),z=X(()=>n.location.split(" ").length>1?n.location:n.location+" center"),C=X(()=>n.origin==="auto"||n.origin==="overlap"||n.origin.split(" ").length>1||n.location.split(" ").length>1?n.origin:n.origin+" center"),S=X(()=>n.transition?n.transition:h.value?"scale-transition":"fade-transition"),A=X(()=>o({"aria-describedby":v.value},n.activatorProps));return Lt(()=>{const[B]=wl.filterProps(n);return t(wl,o({ref:b,class:["v-tooltip",n.class],style:n.style,id:v.value},B,{modelValue:h.value,"onUpdate:modelValue":P=>h.value=P,transition:S.value,absolute:!0,location:z.value,origin:C.value,persistent:!0,role:"tooltip",activatorProps:A.value,_disableGlobalStack:!0},u),{activator:r.activator,default:function(){var Y;for(var P=arguments.length,D=new Array(P),E=0;E!0},setup(n,l){let{slots:r}=l;const h=wp(n,"validation");return()=>{var u;return(u=r.default)==null?void 0:u.call(r,h)}}}),_9=Object.freeze(Object.defineProperty({__proto__:null,VAlert:vk,VAlertTitle:ap,VApp:Cm,VAppBar:qm,VAppBarNavIcon:uk,VAppBarTitle:pk,VAutocomplete:L6,VAvatar:_l,VBadge:F6,VBanner:R6,VBannerActions:Ep,VBannerText:Vp,VBottomNavigation:V6,VBreadcrumbs:q6,VBreadcrumbsDivider:_p,VBreadcrumbsItem:Wp,VBtn:dn,VBtnGroup:g0,VBtnToggle:Qm,VCard:U6,VCardActions:Xp,VCardItem:Gp,VCardSubtitle:qp,VCardText:Up,VCardTitle:Yp,VCarousel:o7,VCarouselItem:a7,VCheckbox:Ik,VCheckboxBtn:Qr,VChip:ws,VChipGroup:Sk,VClassIcon:$h,VCode:i7,VCol:k8,VColorPicker:Z7,VCombobox:J7,VComponentIcon:i0,VContainer:w8,VCounter:qa,VDefaultsProvider:fe,VDialog:e8,VDialogBottomTransition:Bm,VDialogTopTransition:Hm,VDialogTransition:Da,VDivider:Cp,VExpandTransition:Fa,VExpandXTransition:Nh,VExpansionPanel:a8,VExpansionPanelText:s4,VExpansionPanelTitle:i4,VExpansionPanels:r8,VFabTransition:Am,VFadeTransition:c0,VField:fs,VFieldLabel:Io,VFileInput:h8,VFooter:c8,VForm:p8,VHover:A8,VIcon:be,VImg:gr,VInput:Ge,VItem:N8,VItemGroup:H8,VKbd:j8,VLabel:uo,VLayout:L8,VLayoutItem:F8,VLazy:T8,VLigatureIcon:E5,VList:_a,VListGroup:m0,VListImg:Gk,VListItem:gl,VListItemAction:Zk,VListItemMedia:Qk,VListItemSubtitle:zp,VListItemTitle:Ip,VListSubheader:yp,VLocaleProvider:E8,VMain:_8,VMenu:Xa,VMessages:up,VNavigationDrawer:Q8,VNoSsr:J8,VOverlay:wl,VPagination:n9,VParallax:o9,VProgressCircular:Dh,VProgressLinear:Fh,VRadio:a9,VRadioGroup:h9,VRangeSlider:c9,VRating:p9,VResponsive:u0,VRow:C8,VScaleTransition:Bh,VScrollXReverseTransition:jm,VScrollXTransition:Nm,VScrollYReverseTransition:Lm,VScrollYTransition:Pm,VSelect:B6,VSelectionControl:wr,VSelectionControlGroup:hp,VSheet:A0,VSlideGroup:B0,VSlideGroupItem:w9,VSlideXReverseTransition:Fm,VSlideXTransition:Dm,VSlideYReverseTransition:Om,VSlideYTransition:Hh,VSlider:$0,VSnackbar:f9,VSpacer:S8,VSvgIcon:Sh,VSwitch:k9,VSystemBar:M9,VTab:z4,VTable:S9,VTabs:y9,VTextField:vr,VTextarea:A9,VThemeProvider:H9,VTimeline:j9,VTimelineItem:F9,VToolbar:p0,VToolbarItems:T9,VToolbarTitle:Ah,VTooltip:E9,VValidation:V9,VVirtualScroll:Ua,VWindow:x0,VWindowItem:z0},Symbol.toStringTag,{value:"Module"}));function W9(n,l){const r=l.modifiers||{},h=l.value,{once:u,immediate:g,...v}=r,b=!Object.keys(v).length,{handler:z,options:C}=typeof h=="object"?h:{handler:h,options:{attributes:(v==null?void 0:v.attr)??b,characterData:(v==null?void 0:v.char)??b,childList:(v==null?void 0:v.child)??b,subtree:(v==null?void 0:v.sub)??b}},S=new MutationObserver(function(){let A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],B=arguments.length>1?arguments[1]:void 0;z==null||z(A,B),u&&I4(n,l)});g&&(z==null||z([],S)),n._mutate=Object(n._mutate),n._mutate[l.instance.$.uid]={observer:S},S.observe(n,C)}function I4(n,l){var r;(r=n._mutate)!=null&&r[l.instance.$.uid]&&(n._mutate[l.instance.$.uid].observer.disconnect(),delete n._mutate[l.instance.$.uid])}const X9={mounted:W9,unmounted:I4};function q9(n,l){var u,g;const r=l.value,h={passive:!((u=l.modifiers)!=null&&u.active)};window.addEventListener("resize",r,h),n._onResize=Object(n._onResize),n._onResize[l.instance.$.uid]={handler:r,options:h},(g=l.modifiers)!=null&&g.quiet||r()}function Y9(n,l){var u;if(!((u=n._onResize)!=null&&u[l.instance.$.uid]))return;const{handler:r,options:h}=n._onResize[l.instance.$.uid];window.removeEventListener("resize",r,h),delete n._onResize[l.instance.$.uid]}const G9={mounted:q9,unmounted:Y9};function y4(n,l){const{self:r=!1}=l.modifiers??{},h=l.value,u=typeof h=="object"&&h.options||{passive:!0},g=typeof h=="function"||"handleEvent"in h?h:h.handler,v=r?n:l.arg?document.querySelector(l.arg):window;v&&(v.addEventListener("scroll",g,u),n._onScroll=Object(n._onScroll),n._onScroll[l.instance.$.uid]={handler:g,options:u,target:r?void 0:v})}function C4(n,l){var g;if(!((g=n._onScroll)!=null&&g[l.instance.$.uid]))return;const{handler:r,options:h,target:u=n}=n._onScroll[l.instance.$.uid];u.removeEventListener("scroll",r,h),delete n._onScroll[l.instance.$.uid]}function U9(n,l){l.value!==l.oldValue&&(C4(n,l),y4(n,l))}const Z9={mounted:y4,unmounted:C4,updated:U9},K9=Object.freeze(Object.defineProperty({__proto__:null,ClickOutside:Op,Intersect:Yu,Mutate:X9,Resize:G9,Ripple:ql,Scroll:Z9,Touch:Gh},Symbol.toStringTag,{value:"Module"})),Q9={name:"PurpleTheme",dark:!1,variables:{"border-color":"#1e88e5","carousel-control-size":10},colors:{primary:"#1e88e5",secondary:"#5e35b1",info:"#03c9d7",success:"#00c853",accent:"#FFAB91",warning:"#ffc107",error:"#f44336",lightprimary:"#eef2f6",lightsecondary:"#ede7f6",lightsuccess:"#b9f6ca",lighterror:"#f9d8d8",lightwarning:"#fff8e1",darkText:"#212121",lightText:"#616161",darkprimary:"#1565c0",darksecondary:"#4527a0",borderLight:"#d0d0d0",inputBorder:"#787878",containerBg:"#eef2f6",surface:"#fff","on-surface-variant":"#fff",facebook:"#4267b2",twitter:"#1da1f2",linkedin:"#0e76a8",gray100:"#fafafa",primary200:"#90caf9",secondary200:"#b39ddb"}},J9=Eu({components:_9,directives:K9,theme:{defaultTheme:"PurpleTheme",themes:{PurpleTheme:Q9}},defaults:{VBtn:{},VCard:{rounded:"md"},VTextField:{rounded:"lg"},VTooltip:{location:"top"}}});/*! +`)}function Ad(n){const l=n.dark?2:1,r=n.dark?1:2,h=[];for(const[c,g]of Object.entries(n.colors)){const v=Yn(g);h.push(`--v-theme-${c}: ${v.r},${v.g},${v.b}`),c.startsWith("on-")||h.push(`--v-theme-${c}-overlay-multiplier: ${D0(g)>.18?l:r}`)}for(const[c,g]of Object.entries(n.variables)){const v=typeof g=="string"&&g.startsWith("#")?Yn(g):void 0,k=v?`${v.r}, ${v.g}, ${v.b}`:void 0;h.push(`--v-${c}: ${k??g}`)}return h}const T0={"001":1,AD:1,AE:6,AF:6,AG:0,AI:1,AL:1,AM:1,AN:1,AR:1,AS:0,AT:1,AU:1,AX:1,AZ:1,BA:1,BD:0,BE:1,BG:1,BH:6,BM:1,BN:1,BR:0,BS:0,BT:0,BW:0,BY:1,BZ:0,CA:0,CH:1,CL:1,CM:1,CN:1,CO:0,CR:1,CY:1,CZ:1,DE:1,DJ:6,DK:1,DM:0,DO:0,DZ:6,EC:1,EE:1,EG:6,ES:1,ET:0,FI:1,FJ:1,FO:1,FR:1,GB:1,"GB-alt-variant":0,GE:1,GF:1,GP:1,GR:1,GT:0,GU:0,HK:0,HN:0,HR:1,HU:1,ID:0,IE:1,IL:0,IN:0,IQ:6,IR:6,IS:1,IT:1,JM:0,JO:6,JP:0,KE:0,KG:1,KH:0,KR:0,KW:6,KZ:1,LA:0,LB:1,LI:1,LK:1,LT:1,LU:1,LV:1,LY:6,MC:1,MD:1,ME:1,MH:0,MK:1,MM:0,MN:1,MO:0,MQ:1,MT:0,MV:5,MX:0,MY:1,MZ:0,NI:0,NL:1,NO:1,NP:0,NZ:1,OM:6,PA:0,PE:0,PH:0,PK:0,PL:1,PR:0,PT:0,PY:0,QA:6,RE:1,RO:1,RS:1,RU:1,SA:0,SD:6,SE:1,SG:0,SI:1,SK:1,SM:1,SV:0,SY:6,TH:0,TJ:1,TM:1,TR:1,TT:0,TW:0,UA:1,UM:0,US:0,UY:1,UZ:1,VA:1,VE:0,VI:0,VN:1,WS:0,XK:1,YE:0,ZA:0,ZW:0};function B6(n,l){const r=[];let h=[];const c=Zp(n),g=Kp(n),v=c.getDay()-T0[l.slice(-2).toUpperCase()],k=g.getDay()-T0[l.slice(-2).toUpperCase()];for(let x=0;x{const h=new Date(Bd);return h.setDate(Bd.getDate()+l+r),new Intl.DateTimeFormat(n,{weekday:"narrow"}).format(h)})}function L6(n,l,r){const h=new Date(n);let c={};switch(l){case"fullDateWithWeekday":c={weekday:"long",day:"numeric",month:"long",year:"numeric"};break;case"normalDateWithWeekday":c={weekday:"short",day:"numeric",month:"short"};break;case"keyboardDate":c={};break;case"monthAndDate":c={month:"long",day:"numeric"};break;case"monthAndYear":c={month:"long",year:"numeric"};break;case"dayOfMonth":c={day:"numeric"};break;default:c={timeZone:"UTC",timeZoneName:"short"}}return new Intl.DateTimeFormat(r,c).format(h)}function D6(n,l){const r=new Date(n);return r.setDate(r.getDate()+l),r}function O6(n,l){const r=new Date(n);return r.setMonth(r.getMonth()+l),r}function F6(n){return n.getFullYear()}function R6(n){return n.getMonth()}function T6(n){return new Date(n.getFullYear(),0,1)}function E6(n){return new Date(n.getFullYear(),11,31)}function V6(n,l){return E0(n,l[0])&&W6(n,l[1])}function _6(n){const l=new Date(n);return l instanceof Date&&!isNaN(l.getTime())}function E0(n,l){return n.getTime()>l.getTime()}function W6(n,l){return n.getTime()1&&arguments[1]!==void 0?arguments[1]:"content";const r=Lt(),h=Lt();if(ze){const c=new ResizeObserver(g=>{n==null||n(g,c),g.length&&(l==="content"?h.value=g[0].contentRect:h.value=g[0].target.getBoundingClientRect())});Qe(()=>{c.disconnect()}),_t(r,(g,v)=>{v&&(c.unobserve(N0(v)),h.value=void 0),g&&c.observe(N0(g))},{flush:"post"})}return{resizeRef:r,contentRect:uo(h)}}const xa=Symbol.for("vuetify:layout"),Qp=Symbol.for("vuetify:layout-item"),jd=1e3,Jp=mt({overlaps:{type:Array,default:()=>[]},fullHeight:Boolean},"layout"),go=mt({name:{type:String},order:{type:[Number,String],default:0},absolute:Boolean},"layout-item");function K6(){const n=de(xa);if(!n)throw new Error("[Vuetify] Could not find injected layout");return{getLayoutItem:n.getLayoutItem,mainRect:n.mainRect,mainStyles:n.mainStyles}}function wo(n){const l=de(xa);if(!l)throw new Error("[Vuetify] Could not find injected layout");const r=n.id??`layout-item-${hn()}`,h=Ye("useLayoutItem");Se(Qp,{id:r});const c=Wt(!1);Nh(()=>c.value=!0),Hh(()=>c.value=!1);const{layoutItemStyles:g,layoutItemScrimStyles:v}=l.register(h,{...n,active:q(()=>c.value?!1:n.active.value),id:r});return Qe(()=>l.unregister(r)),{layoutItemStyles:g,layoutRect:l.layoutRect,layoutItemScrimStyles:v}}const Q6=(n,l,r,h)=>{let c={top:0,left:0,right:0,bottom:0};const g=[{id:"",layer:{...c}}];for(const v of n){const k=l.get(v),x=r.get(v),I=h.get(v);if(!k||!x||!I)continue;const S={...c,[k.value]:parseInt(c[k.value],10)+(I.value?parseInt(x.value,10):0)};g.push({id:v,layer:S}),c=S}return g};function t4(n){const l=de(xa,null),r=q(()=>l?l.rootZIndex.value-100:jd),h=Lt([]),c=Ze(new Map),g=Ze(new Map),v=Ze(new Map),k=Ze(new Map),x=Ze(new Map),{resizeRef:I,contentRect:S}=sl(),$=q(()=>{const tt=new Map,nt=n.overlaps??[];for(const Y of nt.filter(G=>G.includes(":"))){const[G,et]=Y.split(":");if(!h.value.includes(G)||!h.value.includes(et))continue;const st=c.get(G),rt=c.get(et),ht=g.get(G),dt=g.get(et);!st||!rt||!ht||!dt||(tt.set(et,{position:st.value,amount:parseInt(ht.value,10)}),tt.set(G,{position:rt.value,amount:-parseInt(dt.value,10)}))}return tt}),B=q(()=>{const tt=[...new Set([...v.values()].map(Y=>Y.value))].sort((Y,G)=>Y-G),nt=[];for(const Y of tt){const G=h.value.filter(et=>{var st;return((st=v.get(et))==null?void 0:st.value)===Y});nt.push(...G)}return Q6(nt,c,g,k)}),P=q(()=>!Array.from(x.values()).some(tt=>tt.value)),D=q(()=>B.value[B.value.length-1].layer),F=q(()=>({"--v-layout-left":qt(D.value.left),"--v-layout-right":qt(D.value.right),"--v-layout-top":qt(D.value.top),"--v-layout-bottom":qt(D.value.bottom),...P.value?void 0:{transition:"none"}})),X=q(()=>B.value.slice(1).map((tt,nt)=>{let{id:Y}=tt;const{layer:G}=B.value[nt],et=g.get(Y),st=c.get(Y);return{id:Y,...G,size:Number(et.value),position:st.value}})),R=tt=>X.value.find(nt=>nt.id===tt),H=Ye("createLayout"),U=Wt(!1);Ve(()=>{U.value=!0}),Se(xa,{register:(tt,nt)=>{let{id:Y,order:G,position:et,layoutSize:st,elementSize:rt,active:ht,disableTransitions:dt,absolute:Ct}=nt;v.set(Y,G),c.set(Y,et),g.set(Y,st),k.set(Y,ht),dt&&x.set(Y,dt);const wt=qo(Qp,H==null?void 0:H.vnode).indexOf(tt);wt>-1?h.value.splice(wt,0,Y):h.value.push(Y);const gt=q(()=>X.value.findIndex(Ft=>Ft.id===Y)),It=q(()=>r.value+B.value.length*2-gt.value*2),At=q(()=>{const Ft=et.value==="left"||et.value==="right",Qt=et.value==="right",Jt=et.value==="bottom",Et={[et.value]:0,zIndex:It.value,transform:`translate${Ft?"X":"Y"}(${(ht.value?0:-110)*(Qt||Jt?-1:1)}%)`,position:Ct.value||r.value!==jd?"absolute":"fixed",...P.value?void 0:{transition:"none"}};if(!U.value)return Et;const ut=X.value[gt.value];if(!ut)throw new Error(`[Vuetify] Could not find layout item "${Y}"`);const pt=$.value.get(Y);return pt&&(ut[pt.position]+=pt.amount),{...Et,height:Ft?`calc(100% - ${ut.top}px - ${ut.bottom}px)`:rt.value?`${rt.value}px`:void 0,left:Qt?void 0:`${ut.left}px`,right:Qt?`${ut.right}px`:void 0,top:et.value!=="bottom"?`${ut.top}px`:void 0,bottom:et.value!=="top"?`${ut.bottom}px`:void 0,width:Ft?rt.value?`${rt.value}px`:void 0:`calc(100% - ${ut.left}px - ${ut.right}px)`}}),Tt=q(()=>({zIndex:It.value-1}));return{layoutItemStyles:At,layoutItemScrimStyles:Tt,zIndex:It}},unregister:tt=>{v.delete(tt),c.delete(tt),g.delete(tt),k.delete(tt),x.delete(tt),h.value=h.value.filter(nt=>nt!==tt)},mainRect:D,mainStyles:F,getLayoutItem:R,items:X,layoutRect:S,rootZIndex:r});const W=q(()=>["v-layout",{"v-layout--full-height":n.fullHeight}]),_=q(()=>({zIndex:r.value,position:l?"relative":void 0,overflow:l?"hidden":void 0}));return{layoutClasses:W,layoutStyles:_,getLayoutItem:R,items:X,layoutRect:S,layoutRef:I}}function e4(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const{blueprint:l,...r}=n,h=Nn(l,r),{aliases:c={},components:g={},directives:v={}}=h,k=h6(h.defaults),x=p6(h.display,h.ssr),I=A6(h.theme),S=m6(h.icons),$=I6(h.locale),B=Z6(h.date);return{install:D=>{for(const F in v)D.directive(F,v[F]);for(const F in g)D.component(F,g[F]);for(const F in c)D.component(F,Fn({...c[F],name:F,aliasName:c[F].name}));if(I.install(D),D.provide(oo,k),D.provide(O0,x),D.provide(is,I),D.provide(F0,S),D.provide(so,$),D.provide(Nd,B),ze&&h.ssr)if(D.$nuxt)D.$nuxt.hook("app:suspense:resolve",()=>{x.update()});else{const{mount:F}=D;D.mount=function(){const X=F(...arguments);return we(()=>x.update()),D.mount=F,X}}hn.reset(),D.mixin({computed:{$vuetify(){return Ze({defaults:Tr.call(this,oo),display:Tr.call(this,O0),theme:Tr.call(this,is),icons:Tr.call(this,F0),locale:Tr.call(this,so),date:Tr.call(this,Nd)})}}})},defaults:k,display:x,theme:I,icons:S,locale:$,date:B}}const J6="3.3.14";e4.version=J6;function Tr(n){var h,c;const l=this.$,r=((h=l.parent)==null?void 0:h.provides)??((c=l.vnode.appContext)==null?void 0:c.provides);if(r&&n in r)return r[n]}const t7=mt({...Xt(),...Jp({fullHeight:!0}),...ue()},"VApp"),e7=Bt()({name:"VApp",props:t7(),setup(n,l){let{slots:r}=l;const h=ve(n),{layoutClasses:c,layoutStyles:g,getLayoutItem:v,items:k,layoutRef:x}=t4(n),{rtlClasses:I}=Ue();return Dt(()=>{var S;return t("div",{ref:x,class:["v-application",h.themeClasses.value,c.value,I.value,n.class],style:[g.value,n.style]},[t("div",{class:"v-application__wrap"},[(S=r.default)==null?void 0:S.call(r)])])}),{getLayoutItem:v,items:k,theme:h}}});const re=mt({tag:{type:String,default:"div"}},"tag"),n4=mt({text:String,...Xt(),...re()},"VToolbarTitle"),c2=Bt()({name:"VToolbarTitle",props:n4(),setup(n,l){let{slots:r}=l;return Dt(()=>{const h=!!(r.default||r.text||n.text);return t(n.tag,{class:["v-toolbar-title",n.class],style:n.style},{default:()=>{var c;return[h&&t("div",{class:"v-toolbar-title__placeholder"},[r.text?r.text():n.text,(c=r.default)==null?void 0:c.call(r)])]}})}),{}}}),n7=mt({disabled:Boolean,group:Boolean,hideOnLeave:Boolean,leaveAbsolute:Boolean,mode:String,origin:String},"transition");function $n(n,l,r){return Bt()({name:n,props:n7({mode:r,origin:l}),setup(h,c){let{slots:g}=c;const v={onBeforeEnter(k){h.origin&&(k.style.transformOrigin=h.origin)},onLeave(k){if(h.leaveAbsolute){const{offsetTop:x,offsetLeft:I,offsetWidth:S,offsetHeight:$}=k;k._transitionInitialStyles={position:k.style.position,top:k.style.top,left:k.style.left,width:k.style.width,height:k.style.height},k.style.position="absolute",k.style.top=`${x}px`,k.style.left=`${I}px`,k.style.width=`${S}px`,k.style.height=`${$}px`}h.hideOnLeave&&k.style.setProperty("display","none","important")},onAfterLeave(k){if(h.leaveAbsolute&&(k!=null&&k._transitionInitialStyles)){const{position:x,top:I,left:S,width:$,height:B}=k._transitionInitialStyles;delete k._transitionInitialStyles,k.style.position=x||"",k.style.top=I||"",k.style.left=S||"",k.style.width=$||"",k.style.height=B||""}}};return()=>{const k=h.group?Hu:Zn;return Ln(k,{name:h.disabled?"":n,css:!h.disabled,...h.group?void 0:{mode:h.mode},...h.disabled?{}:v},g.default)}}})}function l4(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"in-out";return Bt()({name:n,props:{mode:{type:String,default:r},disabled:Boolean},setup(h,c){let{slots:g}=c;return()=>Ln(Zn,{name:h.disabled?"":n,css:!h.disabled,...h.disabled?{}:l},g.default)}})}function r4(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";const r=(arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1)?"width":"height",h=Sn(`offset-${r}`);return{onBeforeEnter(v){v._parent=v.parentNode,v._initialStyle={transition:v.style.transition,overflow:v.style.overflow,[r]:v.style[r]}},onEnter(v){const k=v._initialStyle;v.style.setProperty("transition","none","important"),v.style.overflow="hidden";const x=`${v[h]}px`;v.style[r]="0",v.offsetHeight,v.style.transition=k.transition,n&&v._parent&&v._parent.classList.add(n),requestAnimationFrame(()=>{v.style[r]=x})},onAfterEnter:g,onEnterCancelled:g,onLeave(v){v._initialStyle={transition:"",overflow:v.style.overflow,[r]:v.style[r]},v.style.overflow="hidden",v.style[r]=`${v[h]}px`,v.offsetHeight,requestAnimationFrame(()=>v.style[r]="0")},onAfterLeave:c,onLeaveCancelled:c};function c(v){n&&v._parent&&v._parent.classList.remove(n),g(v)}function g(v){const k=v._initialStyle[r];v.style.overflow=v._initialStyle.overflow,k!=null&&(v.style[r]=k),delete v._initialStyle}}const l7=mt({target:Object},"v-dialog-transition"),ri=Bt()({name:"VDialogTransition",props:l7(),setup(n,l){let{slots:r}=l;const h={onBeforeEnter(c){c.style.pointerEvents="none",c.style.visibility="hidden"},async onEnter(c,g){var B;await new Promise(P=>requestAnimationFrame(P)),await new Promise(P=>requestAnimationFrame(P)),c.style.visibility="";const{x:v,y:k,sx:x,sy:I,speed:S}=Ld(n.target,c),$=ur(c,[{transform:`translate(${v}px, ${k}px) scale(${x}, ${I})`,opacity:0},{}],{duration:225*S,easing:r6});(B=Pd(c))==null||B.forEach(P=>{ur(P,[{opacity:0},{opacity:0,offset:.33},{}],{duration:225*2*S,easing:as})}),$.finished.then(()=>g())},onAfterEnter(c){c.style.removeProperty("pointer-events")},onBeforeLeave(c){c.style.pointerEvents="none"},async onLeave(c,g){var B;await new Promise(P=>requestAnimationFrame(P));const{x:v,y:k,sx:x,sy:I,speed:S}=Ld(n.target,c);ur(c,[{},{transform:`translate(${v}px, ${k}px) scale(${x}, ${I})`,opacity:0}],{duration:125*S,easing:o6}).finished.then(()=>g()),(B=Pd(c))==null||B.forEach(P=>{ur(P,[{},{opacity:0,offset:.2},{opacity:0}],{duration:125*2*S,easing:as})})},onAfterLeave(c){c.style.removeProperty("pointer-events")}};return()=>n.target?t(Zn,o({name:"dialog-transition"},h,{css:!1}),r):t(Zn,{name:"dialog-transition"},r)}});function Pd(n){var r;const l=(r=n.querySelector(":scope > .v-card, :scope > .v-sheet, :scope > .v-list"))==null?void 0:r.children;return l&&[...l]}function Ld(n,l){const r=n.getBoundingClientRect(),h=l2(l),[c,g]=getComputedStyle(l).transformOrigin.split(" ").map(R=>parseFloat(R)),[v,k]=getComputedStyle(l).getPropertyValue("--v-overlay-anchor-origin").split(" ");let x=r.left+r.width/2;v==="left"||k==="left"?x-=r.width/2:(v==="right"||k==="right")&&(x+=r.width/2);let I=r.top+r.height/2;v==="top"||k==="top"?I-=r.height/2:(v==="bottom"||k==="bottom")&&(I+=r.height/2);const S=r.width/h.width,$=r.height/h.height,B=Math.max(1,S,$),P=S/B||0,D=$/B||0,F=h.width*h.height/(window.innerWidth*window.innerHeight),X=F>.12?Math.min(1.5,(F-.12)*10+1):1;return{x:x-(c+h.left),y:I-(g+h.top),sx:P,sy:D,speed:X}}const r7=$n("fab-transition","center center","out-in"),o7=$n("dialog-bottom-transition"),s7=$n("dialog-top-transition"),V0=$n("fade-transition"),u2=$n("scale-transition"),a7=$n("scroll-x-transition"),i7=$n("scroll-x-reverse-transition"),h7=$n("scroll-y-transition"),d7=$n("scroll-y-reverse-transition"),c7=$n("slide-x-transition"),u7=$n("slide-x-reverse-transition"),p2=$n("slide-y-transition"),p7=$n("slide-y-reverse-transition"),oi=l4("expand-transition",r4()),g2=l4("expand-x-transition",r4("",!0)),g7=mt({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),ke=Bt(!1)({name:"VDefaultsProvider",props:g7(),setup(n,l){let{slots:r}=l;const{defaults:h,disabled:c,reset:g,root:v,scoped:k}=vs(n);return Te(h,{reset:g,root:v,scoped:k,disabled:c}),()=>{var x;return(x=r.default)==null?void 0:x.call(r)}}});const Tn=mt({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function En(n){return{dimensionStyles:q(()=>({height:qt(n.height),maxHeight:qt(n.maxHeight),maxWidth:qt(n.maxWidth),minHeight:qt(n.minHeight),minWidth:qt(n.minWidth),width:qt(n.width)}))}}function w7(n){return{aspectStyles:q(()=>{const l=Number(n.aspectRatio);return l?{paddingBottom:String(1/l*100)+"%"}:void 0})}}const o4=mt({aspectRatio:[String,Number],contentClass:String,inline:Boolean,...Xt(),...Tn()},"VResponsive"),_0=Bt()({name:"VResponsive",props:o4(),setup(n,l){let{slots:r}=l;const{aspectStyles:h}=w7(n),{dimensionStyles:c}=En(n);return Dt(()=>{var g;return t("div",{class:["v-responsive",{"v-responsive--inline":n.inline},n.class],style:[c.value,n.style]},[t("div",{class:"v-responsive__sizer",style:h.value},null),(g=r.additional)==null?void 0:g.call(r),r.default&&t("div",{class:["v-responsive__content",n.contentClass]},[r.default()])])}),{}}}),Sl=mt({transition:{type:[Boolean,String,Object],default:"fade-transition",validator:n=>n!==!0}},"transition"),Un=(n,l)=>{let{slots:r}=l;const{transition:h,disabled:c,...g}=n,{component:v=Zn,...k}=typeof h=="object"?h:{};return Ln(v,o(typeof h=="string"?{name:c?"":h}:k,g,{disabled:c}),r)};function v7(n,l){if(!Jh)return;const r=l.modifiers||{},h=l.value,{handler:c,options:g}=typeof h=="object"?h:{handler:h,options:{}},v=new IntersectionObserver(function(){var $;let k=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],x=arguments.length>1?arguments[1]:void 0;const I=($=n._observe)==null?void 0:$[l.instance.$.uid];if(!I)return;const S=k.some(B=>B.isIntersecting);c&&(!r.quiet||I.init)&&(!r.once||S||I.init)&&c(S,k,x),S&&r.once?s4(n,l):I.init=!0},g);n._observe=Object(n._observe),n._observe[l.instance.$.uid]={init:!1,observer:v},v.observe(n)}function s4(n,l){var h;const r=(h=n._observe)==null?void 0:h[l.instance.$.uid];r&&(r.observer.unobserve(n),delete n._observe[l.instance.$.uid])}const a4={mounted:v7,unmounted:s4},si=a4,i4=mt({alt:String,cover:Boolean,eager:Boolean,gradient:String,lazySrc:String,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},sizes:String,src:{type:[String,Object],default:""},srcset:String,...o4(),...Xt(),...Sl()},"VImg"),xr=Bt()({name:"VImg",directives:{intersect:si},props:i4(),emits:{loadstart:n=>!0,load:n=>!0,error:n=>!0},setup(n,l){let{emit:r,slots:h}=l;const c=Wt(""),g=Lt(),v=Wt(n.eager?"loading":"idle"),k=Wt(),x=Wt(),I=q(()=>n.src&&typeof n.src=="object"?{src:n.src.src,srcset:n.srcset||n.src.srcset,lazySrc:n.lazySrc||n.src.lazySrc,aspect:Number(n.aspectRatio||n.src.aspect||0)}:{src:n.src,srcset:n.srcset,lazySrc:n.lazySrc,aspect:Number(n.aspectRatio||0)}),S=q(()=>I.value.aspect||k.value/x.value||0);_t(()=>n.src,()=>{$(v.value!=="idle")}),_t(S,(Y,G)=>{!Y&&G&&g.value&&X(g.value)}),Ms(()=>$());function $(Y){if(!(n.eager&&Y)&&!(Jh&&!Y&&!n.eager)){if(v.value="loading",I.value.lazySrc){const G=new Image;G.src=I.value.lazySrc,X(G,null)}I.value.src&&we(()=>{var G,et;if(r("loadstart",((G=g.value)==null?void 0:G.currentSrc)||I.value.src),(et=g.value)!=null&&et.complete){if(g.value.naturalWidth||P(),v.value==="error")return;S.value||X(g.value,null),B()}else S.value||X(g.value),D()})}}function B(){var Y;D(),v.value="loaded",r("load",((Y=g.value)==null?void 0:Y.currentSrc)||I.value.src)}function P(){var Y;v.value="error",r("error",((Y=g.value)==null?void 0:Y.currentSrc)||I.value.src)}function D(){const Y=g.value;Y&&(c.value=Y.currentSrc||Y.src)}let F=-1;function X(Y){let G=arguments.length>1&&arguments[1]!==void 0?arguments[1]:100;const et=()=>{clearTimeout(F);const{naturalHeight:st,naturalWidth:rt}=Y;st||rt?(k.value=rt,x.value=st):!Y.complete&&v.value==="loading"&&G!=null?F=window.setTimeout(et,G):(Y.currentSrc.endsWith(".svg")||Y.currentSrc.startsWith("data:image/svg+xml"))&&(k.value=1,x.value=1)};et()}const R=q(()=>({"v-img__img--cover":n.cover,"v-img__img--contain":!n.cover})),H=()=>{var et;if(!I.value.src||v.value==="idle")return null;const Y=t("img",{class:["v-img__img",R.value],src:I.value.src,srcset:I.value.srcset,alt:n.alt,sizes:n.sizes,ref:g,onLoad:B,onError:P},null),G=(et=h.sources)==null?void 0:et.call(h);return t(Un,{transition:n.transition,appear:!0},{default:()=>[$e(G?t("picture",{class:"v-img__picture"},[G,Y]):Y,[[Dn,v.value==="loaded"]])]})},U=()=>t(Un,{transition:n.transition},{default:()=>[I.value.lazySrc&&v.value!=="loaded"&&t("img",{class:["v-img__img","v-img__img--preload",R.value],src:I.value.lazySrc,alt:n.alt},null)]}),W=()=>h.placeholder?t(Un,{transition:n.transition,appear:!0},{default:()=>[(v.value==="loading"||v.value==="error"&&!h.error)&&t("div",{class:"v-img__placeholder"},[h.placeholder()])]}):null,_=()=>h.error?t(Un,{transition:n.transition,appear:!0},{default:()=>[v.value==="error"&&t("div",{class:"v-img__error"},[h.error()])]}):null,tt=()=>n.gradient?t("div",{class:"v-img__gradient",style:{backgroundImage:`linear-gradient(${n.gradient})`}},null):null,nt=Wt(!1);{const Y=_t(S,G=>{G&&(requestAnimationFrame(()=>{requestAnimationFrame(()=>{nt.value=!0})}),Y())})}return Dt(()=>{const[Y]=_0.filterProps(n);return $e(t(_0,o({class:["v-img",{"v-img--booting":!nt.value},n.class],style:[{width:qt(n.width==="auto"?k.value:n.width)},n.style]},Y,{aspectRatio:S.value,"aria-label":n.alt,role:n.alt?"img":void 0}),{additional:()=>t(Kt,null,[t(H,null,null),t(U,null,null),t(tt,null,null),t(W,null,null),t(_,null,null)]),default:h.default}),[[Mn("intersect"),{handler:$,options:n.options},null,{once:!0}]])}),{currentSrc:c,image:g,state:v,naturalWidth:k,naturalHeight:x}}}),An=mt({border:[Boolean,Number,String]},"border");function Vn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{borderClasses:q(()=>{const h=Me(n)?n.value:n.border,c=[];if(h===!0||h==="")c.push(`${l}--border`);else if(typeof h=="string"||h===0)for(const g of String(h).split(" "))c.push(`border-${g}`);return c})}}function w2(n){return e2(()=>{const l=[],r={};if(n.value.background)if(bd(n.value.background)){if(r.backgroundColor=n.value.background,!n.value.text){const h=_p(r.backgroundColor);r.color=h,r.caretColor=h}}else l.push(`bg-${n.value.background}`);return n.value.text&&(bd(n.value.text)?(r.color=n.value.text,r.caretColor=n.value.text):l.push(`text-${n.value.text}`)),{colorClasses:l,colorStyles:r}})}function an(n,l){const r=q(()=>({text:Me(n)?n.value:l?n[l]:null})),{colorClasses:h,colorStyles:c}=w2(r);return{textColorClasses:h,textColorStyles:c}}function Pe(n,l){const r=q(()=>({background:Me(n)?n.value:l?n[l]:null})),{colorClasses:h,colorStyles:c}=w2(r);return{backgroundColorClasses:h,backgroundColorStyles:c}}const _e=mt({elevation:{type:[Number,String],validator(n){const l=parseInt(n);return!isNaN(l)&&l>=0&&l<=24}}},"elevation");function Je(n){return{elevationClasses:q(()=>{const r=Me(n)?n.value:n.elevation,h=[];return r==null||h.push(`elevation-${r}`),h})}}const Ce=mt({rounded:{type:[Boolean,Number,String],default:void 0}},"rounded");function Ne(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{roundedClasses:q(()=>{const h=Me(n)?n.value:n.rounded,c=[];if(h===!0||h==="")c.push(`${l}--rounded`);else if(typeof h=="string"||h===0)for(const g of String(h).split(" "))c.push(`rounded-${g}`);return c})}}const f7=[null,"prominent","default","comfortable","compact"],h4=mt({absolute:Boolean,collapse:Boolean,color:String,density:{type:String,default:"default",validator:n=>f7.includes(n)},extended:Boolean,extensionHeight:{type:[Number,String],default:48},flat:Boolean,floating:Boolean,height:{type:[Number,String],default:64},image:String,title:String,...An(),...Xt(),..._e(),...Ce(),...re({tag:"header"}),...ue()},"VToolbar"),W0=Bt()({name:"VToolbar",props:h4(),setup(n,l){var P;let{slots:r}=l;const{backgroundColorClasses:h,backgroundColorStyles:c}=Pe(Ht(n,"color")),{borderClasses:g}=Vn(n),{elevationClasses:v}=Je(n),{roundedClasses:k}=Ne(n),{themeClasses:x}=ve(n),{rtlClasses:I}=Ue(),S=Wt(!!(n.extended||(P=r.extension)!=null&&P.call(r))),$=q(()=>parseInt(Number(n.height)+(n.density==="prominent"?Number(n.height):0)-(n.density==="comfortable"?8:0)-(n.density==="compact"?16:0),10)),B=q(()=>S.value?parseInt(Number(n.extensionHeight)+(n.density==="prominent"?Number(n.extensionHeight):0)-(n.density==="comfortable"?4:0)-(n.density==="compact"?8:0),10):0);return Te({VBtn:{variant:"text"}}),Dt(()=>{var R;const D=!!(n.title||r.title),F=!!(r.image||n.image),X=(R=r.extension)==null?void 0:R.call(r);return S.value=!!(n.extended||X),t(n.tag,{class:["v-toolbar",{"v-toolbar--absolute":n.absolute,"v-toolbar--collapse":n.collapse,"v-toolbar--flat":n.flat,"v-toolbar--floating":n.floating,[`v-toolbar--density-${n.density}`]:!0},h.value,g.value,v.value,k.value,x.value,I.value,n.class],style:[c.value,n.style]},{default:()=>[F&&t("div",{key:"image",class:"v-toolbar__image"},[r.image?t(ke,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},r.image):t(xr,{key:"image-img",cover:!0,src:n.image},null)]),t(ke,{defaults:{VTabs:{height:qt($.value)}}},{default:()=>{var H,U,W;return[t("div",{class:"v-toolbar__content",style:{height:qt($.value)}},[r.prepend&&t("div",{class:"v-toolbar__prepend"},[(H=r.prepend)==null?void 0:H.call(r)]),D&&t(c2,{key:"title",text:n.title},{text:r.title}),(U=r.default)==null?void 0:U.call(r),r.append&&t("div",{class:"v-toolbar__append"},[(W=r.append)==null?void 0:W.call(r)])])]}}),t(ke,{defaults:{VTabs:{height:qt(B.value)}}},{default:()=>[t(oi,null,{default:()=>[S.value&&t("div",{class:"v-toolbar__extension",style:{height:qt(B.value)}},[X])]})]})]})}),{contentHeight:$,extensionHeight:B}}}),m7=mt({scrollTarget:{type:String},scrollThreshold:{type:[String,Number],default:300}},"scroll");function k7(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};const{canScroll:r}=l;let h=0;const c=Lt(null),g=Wt(0),v=Wt(0),k=Wt(0),x=Wt(!1),I=Wt(!1),S=q(()=>Number(n.scrollThreshold)),$=q(()=>rn((S.value-g.value)/S.value||0)),B=()=>{const P=c.value;!P||r&&!r.value||(h=g.value,g.value="window"in P?P.pageYOffset:P.scrollTop,I.value=g.value{v.value=v.value||g.value}),_t(x,()=>{v.value=0}),Ve(()=>{_t(()=>n.scrollTarget,P=>{var F;const D=P?document.querySelector(P):window;D&&D!==c.value&&((F=c.value)==null||F.removeEventListener("scroll",B),c.value=D,c.value.addEventListener("scroll",B,{passive:!0}))},{immediate:!0})}),Qe(()=>{var P;(P=c.value)==null||P.removeEventListener("scroll",B)}),r&&_t(r,B,{immediate:!0}),{scrollThreshold:S,currentScroll:g,currentThreshold:k,isScrollActive:x,scrollRatio:$,isScrollingUp:I,savedScroll:v}}function Br(){const n=Wt(!1);return Ve(()=>{window.requestAnimationFrame(()=>{n.value=!0})}),{ssrBootStyles:q(()=>n.value?void 0:{transition:"none !important"}),isBooted:uo(n)}}const b7=mt({scrollBehavior:String,modelValue:{type:Boolean,default:!0},location:{type:String,default:"top",validator:n=>["top","bottom"].includes(n)},...h4(),...go(),...m7(),height:{type:[Number,String],default:64}},"VAppBar"),M7=Bt()({name:"VAppBar",props:b7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=Lt(),c=ne(n,"modelValue"),g=q(()=>{var H;const R=new Set(((H=n.scrollBehavior)==null?void 0:H.split(" "))??[]);return{hide:R.has("hide"),inverted:R.has("inverted"),collapse:R.has("collapse"),elevate:R.has("elevate"),fadeImage:R.has("fade-image")}}),v=q(()=>{const R=g.value;return R.hide||R.inverted||R.collapse||R.elevate||R.fadeImage||!c.value}),{currentScroll:k,scrollThreshold:x,isScrollingUp:I,scrollRatio:S}=k7(n,{canScroll:v}),$=q(()=>n.collapse||g.value.collapse&&(g.value.inverted?S.value>0:S.value===0)),B=q(()=>n.flat||g.value.elevate&&(g.value.inverted?k.value>0:k.value===0)),P=q(()=>g.value.fadeImage?g.value.inverted?1-S.value:S.value:void 0),D=q(()=>{var U,W;if(g.value.hide&&g.value.inverted)return 0;const R=((U=h.value)==null?void 0:U.contentHeight)??0,H=((W=h.value)==null?void 0:W.extensionHeight)??0;return R+H});Zl(q(()=>!!n.scrollBehavior),()=>{bn(()=>{g.value.hide?g.value.inverted?c.value=k.value>x.value:c.value=I.value||k.valueparseInt(n.order,10)),position:Ht(n,"location"),layoutSize:D,elementSize:Wt(void 0),active:c,absolute:Ht(n,"absolute")});return Dt(()=>{const[R]=W0.filterProps(n);return t(W0,o({ref:h,class:["v-app-bar",{"v-app-bar--bottom":n.location==="bottom"},n.class],style:[{...X.value,"--v-toolbar-image-opacity":P.value,height:void 0,...F.value},n.style]},R,{collapse:$.value,flat:B.value}),r)}),{}}});const x7=[null,"default","comfortable","compact"],We=mt({density:{type:String,default:"default",validator:n=>x7.includes(n)}},"density");function dn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{densityClasses:q(()=>`${l}--density-${n.density}`)}}const z7=["elevated","flat","tonal","outlined","text","plain"];function Hr(n,l){return t(Kt,null,[n&&t("span",{key:"overlay",class:`${l}__overlay`},null),t("span",{key:"underlay",class:`${l}__underlay`},null)])}const _n=mt({color:String,variant:{type:String,default:"elevated",validator:n=>z7.includes(n)}},"variant");function Nr(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();const r=q(()=>{const{variant:g}=je(n);return`${l}--variant-${g}`}),{colorClasses:h,colorStyles:c}=w2(q(()=>{const{variant:g,color:v}=je(n);return{[["elevated","flat"].includes(g)?"background":"text"]:v}}));return{colorClasses:h,colorStyles:c,variantClasses:r}}const d4=mt({divided:Boolean,...An(),...Xt(),...We(),..._e(),...Ce(),...re(),...ue(),..._n()},"VBtnGroup"),X0=Bt()({name:"VBtnGroup",props:d4(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{densityClasses:c}=dn(n),{borderClasses:g}=Vn(n),{elevationClasses:v}=Je(n),{roundedClasses:k}=Ne(n);Te({VBtn:{height:"auto",color:Ht(n,"color"),density:Ht(n,"density"),flat:!0,variant:Ht(n,"variant")}}),Dt(()=>t(n.tag,{class:["v-btn-group",{"v-btn-group--divided":n.divided},h.value,g.value,c.value,v.value,k.value,n.class],style:n.style},r))}}),vo=mt({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),fo=mt({value:null,disabled:Boolean,selectedClass:String},"group-item");function mo(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;const h=Ye("useGroupItem");if(!h)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const c=hn();Se(Symbol.for(`${l.description}:id`),c);const g=de(l,null);if(!g){if(!r)return g;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${l.description}`)}const v=Ht(n,"value"),k=q(()=>!!(g.disabled.value||n.disabled));g.register({id:c,value:v,disabled:k},h),Qe(()=>{g.unregister(c)});const x=q(()=>g.isSelected(c)),I=q(()=>x.value&&[g.selectedClass.value,n.selectedClass]);return _t(x,S=>{h.emit("group:selected",{value:S})}),{id:c,isSelected:x,toggle:()=>g.select(c,!x.value),select:S=>g.select(c,S),selectedClass:I,value:v,disabled:k,group:g}}function jr(n,l){let r=!1;const h=Ze([]),c=ne(n,"modelValue",[],B=>B==null?[]:c4(h,Pn(B)),B=>{const P=y7(h,B);return n.multiple?P:P[0]}),g=Ye("useGroup");function v(B,P){const D=B,F=Symbol.for(`${l.description}:id`),R=qo(F,g==null?void 0:g.vnode).indexOf(P);R>-1?h.splice(R,0,D):h.push(D)}function k(B){if(r)return;x();const P=h.findIndex(D=>D.id===B);h.splice(P,1)}function x(){const B=h.find(P=>!P.disabled);B&&n.mandatory==="force"&&!c.value.length&&(c.value=[B.id])}Ve(()=>{x()}),Qe(()=>{r=!0});function I(B,P){const D=h.find(F=>F.id===B);if(!(P&&(D!=null&&D.disabled)))if(n.multiple){const F=c.value.slice(),X=F.findIndex(H=>H===B),R=~X;if(P=P??!R,R&&n.mandatory&&F.length<=1||!R&&n.max!=null&&F.length+1>n.max)return;X<0&&P?F.push(B):X>=0&&!P&&F.splice(X,1),c.value=F}else{const F=c.value.includes(B);if(n.mandatory&&F)return;c.value=P??!F?[B]:[]}}function S(B){if(n.multiple,c.value.length){const P=c.value[0],D=h.findIndex(R=>R.id===P);let F=(D+B)%h.length,X=h[F];for(;X.disabled&&F!==D;)F=(F+B)%h.length,X=h[F];if(X.disabled)return;c.value=[h[F].id]}else{const P=h.find(D=>!D.disabled);P&&(c.value=[P.id])}}const $={register:v,unregister:k,selected:c,select:I,disabled:Ht(n,"disabled"),prev:()=>S(h.length-1),next:()=>S(1),isSelected:B=>c.value.includes(B),selectedClass:q(()=>n.selectedClass),items:q(()=>h),getItemIndex:B=>I7(h,B)};return Se(l,$),$}function I7(n,l){const r=c4(n,[l]);return r.length?n.findIndex(h=>h.id===r[0]):-1}function c4(n,l){const r=[];return l.forEach(h=>{const c=n.find(v=>Sr(h,v.value)),g=n[h];(c==null?void 0:c.value)!=null?r.push(c.id):g!=null&&r.push(g.id)}),r}function y7(n,l){const r=[];return l.forEach(h=>{const c=n.findIndex(g=>g.id===h);if(~c){const g=n[c];r.push(g.value!=null?g.value:c)}}),r}const v2=Symbol.for("vuetify:v-btn-toggle"),C7=mt({...d4(),...vo()},"VBtnToggle"),S7=Bt()({name:"VBtnToggle",props:C7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{isSelected:h,next:c,prev:g,select:v,selected:k}=jr(n,v2);return Dt(()=>{const[x]=X0.filterProps(n);return t(X0,o({class:["v-btn-toggle",n.class]},x,{style:n.style}),{default:()=>{var I;return[(I=r.default)==null?void 0:I.call(r,{isSelected:h,next:c,prev:g,select:v,selected:k})]}})}),{next:c,prev:g,select:v}}});const $7=["x-small","small","default","large","x-large"],$l=mt({size:{type:[String,Number],default:"default"}},"size");function ko(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return e2(()=>{let r,h;return ma($7,n.size)?r=`${l}--size-${n.size}`:n.size&&(h={width:qt(n.size),height:qt(n.size)}),{sizeClasses:r,sizeStyles:h}})}const A7=mt({color:String,start:Boolean,end:Boolean,icon:ee,...Xt(),...$l(),...re({tag:"i"}),...ue()},"VIcon"),xe=Bt()({name:"VIcon",props:A7(),setup(n,l){let{attrs:r,slots:h}=l;const c=Lt(),{themeClasses:g}=ve(n),{iconData:v}=k6(q(()=>c.value||n.icon)),{sizeClasses:k}=ko(n),{textColorClasses:x,textColorStyles:I}=an(Ht(n,"color"));return Dt(()=>{var $,B;const S=($=h.default)==null?void 0:$.call(h);return S&&(c.value=(B=Ap(S).filter(P=>P.type===Xl&&P.children&&typeof P.children=="string")[0])==null?void 0:B.children),t(v.value.component,{tag:n.tag,icon:v.value.icon,class:["v-icon","notranslate",g.value,k.value,x.value,{"v-icon--clickable":!!r.onClick,"v-icon--start":n.start,"v-icon--end":n.end},n.class],style:[k.value?void 0:{fontSize:qt(n.size),height:qt(n.size),width:qt(n.size)},I.value,n.style],role:r.onClick?"button":void 0,"aria-hidden":!r.onClick},{default:()=>[S]})}),{}}});function f2(n,l){const r=Lt(),h=Wt(!1);if(Jh){const c=new IntersectionObserver(g=>{n==null||n(g,c),h.value=!!g.find(v=>v.isIntersecting)},l);Qe(()=>{c.disconnect()}),_t(r,(g,v)=>{v&&(c.unobserve(v),h.value=!1),g&&c.observe(g)},{flush:"post"})}return{intersectionRef:r,isIntersecting:h}}const B7=mt({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...Xt(),...$l(),...re({tag:"div"}),...ue()},"VProgressCircular"),m2=Bt()({name:"VProgressCircular",props:B7(),setup(n,l){let{slots:r}=l;const h=20,c=2*Math.PI*h,g=Lt(),{themeClasses:v}=ve(n),{sizeClasses:k,sizeStyles:x}=ko(n),{textColorClasses:I,textColorStyles:S}=an(Ht(n,"color")),{textColorClasses:$,textColorStyles:B}=an(Ht(n,"bgColor")),{intersectionRef:P,isIntersecting:D}=f2(),{resizeRef:F,contentRect:X}=sl(),R=q(()=>Math.max(0,Math.min(100,parseFloat(n.modelValue)))),H=q(()=>Number(n.width)),U=q(()=>x.value?Number(n.size):X.value?X.value.width:Math.max(H.value,32)),W=q(()=>h/(1-H.value/U.value)*2),_=q(()=>H.value/U.value*W.value),tt=q(()=>qt((100-R.value)/100*c));return bn(()=>{P.value=g.value,F.value=g.value}),Dt(()=>t(n.tag,{ref:g,class:["v-progress-circular",{"v-progress-circular--indeterminate":!!n.indeterminate,"v-progress-circular--visible":D.value,"v-progress-circular--disable-shrink":n.indeterminate==="disable-shrink"},v.value,k.value,I.value,n.class],style:[x.value,S.value,n.style],role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":n.indeterminate?void 0:R.value},{default:()=>[t("svg",{style:{transform:`rotate(calc(-90deg + ${Number(n.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${W.value} ${W.value}`},[t("circle",{class:["v-progress-circular__underlay",$.value],style:B.value,fill:"transparent",cx:"50%",cy:"50%",r:h,"stroke-width":_.value,"stroke-dasharray":c,"stroke-dashoffset":0},null),t("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:h,"stroke-width":_.value,"stroke-dasharray":c,"stroke-dashoffset":tt.value},null)]),r.default&&t("div",{class:"v-progress-circular__content"},[r.default({value:R.value})])]})),{}}});const Dd={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},Ql=mt({location:String},"location");function Jl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,r=arguments.length>2?arguments[2]:void 0;const{isRtl:h}=Ue();return{locationStyles:q(()=>{if(!n.location)return{};const{side:g,align:v}=P0(n.location.split(" ").length>1?n.location:`${n.location} center`,h.value);function k(I){return r?r(I):0}const x={};return g!=="center"&&(l?x[Dd[g]]=`calc(100% - ${k(g)}px)`:x[g]=0),v!=="center"?l?x[Dd[v]]=`calc(100% - ${k(v)}px)`:x[v]=0:(g==="center"?x.top=x.left="50%":x[{top:"left",bottom:"left",left:"top",right:"top"}[g]]="50%",x.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[g]),x})}}const H7=mt({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...Xt(),...Ql({location:"top"}),...Ce(),...re(),...ue()},"VProgressLinear"),k2=Bt()({name:"VProgressLinear",props:H7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{isRtl:c,rtlClasses:g}=Ue(),{themeClasses:v}=ve(n),{locationStyles:k}=Jl(n),{textColorClasses:x,textColorStyles:I}=an(n,"color"),{backgroundColorClasses:S,backgroundColorStyles:$}=Pe(q(()=>n.bgColor||n.color)),{backgroundColorClasses:B,backgroundColorStyles:P}=Pe(n,"color"),{roundedClasses:D}=Ne(n),{intersectionRef:F,isIntersecting:X}=f2(),R=q(()=>parseInt(n.max,10)),H=q(()=>parseInt(n.height,10)),U=q(()=>parseFloat(n.bufferValue)/R.value*100),W=q(()=>parseFloat(h.value)/R.value*100),_=q(()=>c.value!==n.reverse),tt=q(()=>n.indeterminate?"fade-transition":"slide-x-transition"),nt=q(()=>n.bgOpacity==null?n.bgOpacity:parseFloat(n.bgOpacity));function Y(G){if(!F.value)return;const{left:et,right:st,width:rt}=F.value.getBoundingClientRect(),ht=_.value?rt-G.clientX+(st-rt):G.clientX-et;h.value=Math.round(ht/rt*R.value)}return Dt(()=>t(n.tag,{ref:F,class:["v-progress-linear",{"v-progress-linear--absolute":n.absolute,"v-progress-linear--active":n.active&&X.value,"v-progress-linear--reverse":_.value,"v-progress-linear--rounded":n.rounded,"v-progress-linear--rounded-bar":n.roundedBar,"v-progress-linear--striped":n.striped},D.value,v.value,g.value,n.class],style:[{bottom:n.location==="bottom"?0:void 0,top:n.location==="top"?0:void 0,height:n.active?qt(H.value):0,"--v-progress-linear-height":qt(H.value),...k.value},n.style],role:"progressbar","aria-hidden":n.active?"false":"true","aria-valuemin":"0","aria-valuemax":n.max,"aria-valuenow":n.indeterminate?void 0:W.value,onClick:n.clickable&&Y},{default:()=>[n.stream&&t("div",{key:"stream",class:["v-progress-linear__stream",x.value],style:{...I.value,[_.value?"left":"right"]:qt(-H.value),borderTop:`${qt(H.value/2)} dotted`,opacity:nt.value,top:`calc(50% - ${qt(H.value/4)})`,width:qt(100-U.value,"%"),"--v-progress-linear-stream-to":qt(H.value*(_.value?1:-1))}},null),t("div",{class:["v-progress-linear__background",S.value],style:[$.value,{opacity:nt.value,width:qt(n.stream?U.value:100,"%")}]},null),t(Zn,{name:tt.value},{default:()=>[n.indeterminate?t("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(G=>t("div",{key:G,class:["v-progress-linear__indeterminate",G,B.value],style:P.value},null))]):t("div",{class:["v-progress-linear__determinate",B.value],style:[P.value,{width:qt(W.value,"%")}]},null)]}),r.default&&t("div",{class:"v-progress-linear__content"},[r.default({value:W.value,buffer:U.value})])]})),{}}}),b2=mt({loading:[Boolean,String]},"loader");function ai(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{loaderClasses:q(()=>({[`${l}--loading`]:n.loading}))}}function M2(n,l){var h;let{slots:r}=l;return t("div",{class:`${n.name}__loader`},[((h=r.default)==null?void 0:h.call(r,{color:n.color,isActive:n.active}))||t(k2,{active:n.active,color:n.color,height:"2",indeterminate:!0},null)])}const N7=["static","relative","fixed","absolute","sticky"],bo=mt({position:{type:String,validator:n=>N7.includes(n)}},"position");function Mo(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();return{positionClasses:q(()=>n.position?`${l}--${n.position}`:void 0)}}function u4(){var n,l;return(l=(n=Ye("useRouter"))==null?void 0:n.proxy)==null?void 0:l.$router}function Ss(n,l){const r=Xc("RouterLink"),h=q(()=>!!(n.href||n.to)),c=q(()=>(h==null?void 0:h.value)||id(l,"click")||id(n,"click"));if(typeof r=="string")return{isLink:h,isClickable:c,href:Ht(n,"href")};const g=n.to?r.useLink(n):void 0;return{isLink:h,isClickable:c,route:g==null?void 0:g.route,navigate:g==null?void 0:g.navigate,isActive:g&&q(()=>{var v,k;return n.exact?(v=g.isExactActive)==null?void 0:v.value:(k=g.isActive)==null?void 0:k.value}),href:q(()=>n.to?g==null?void 0:g.route.value.href:n.href)}}const $s=mt({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let Xi=!1;function j7(n,l){let r=!1,h,c;ze&&(we(()=>{window.addEventListener("popstate",g),h=n==null?void 0:n.beforeEach((v,k,x)=>{Xi?r?l(x):x():setTimeout(()=>r?l(x):x()),Xi=!0}),c=n==null?void 0:n.afterEach(()=>{Xi=!1})}),sn(()=>{window.removeEventListener("popstate",g),h==null||h(),c==null||c()}));function g(v){var k;(k=v.state)!=null&&k.replaced||(r=!0,setTimeout(()=>r=!1))}}function P7(n,l){_t(()=>{var r;return(r=n.isActive)==null?void 0:r.value},r=>{n.isLink.value&&r&&l&&we(()=>{l(!0)})},{immediate:!0})}const q0=Symbol("rippleStop"),L7=80;function Od(n,l){n.style.transform=l,n.style.webkitTransform=l}function Y0(n){return n.constructor.name==="TouchEvent"}function p4(n){return n.constructor.name==="KeyboardEvent"}const D7=function(n,l){var $;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},h=0,c=0;if(!p4(n)){const B=l.getBoundingClientRect(),P=Y0(n)?n.touches[n.touches.length-1]:n;h=P.clientX-B.left,c=P.clientY-B.top}let g=0,v=.3;($=l._ripple)!=null&&$.circle?(v=.15,g=l.clientWidth/2,g=r.center?g:g+Math.sqrt((h-g)**2+(c-g)**2)/4):g=Math.sqrt(l.clientWidth**2+l.clientHeight**2)/2;const k=`${(l.clientWidth-g*2)/2}px`,x=`${(l.clientHeight-g*2)/2}px`,I=r.center?k:`${h-g}px`,S=r.center?x:`${c-g}px`;return{radius:g,scale:v,x:I,y:S,centerX:k,centerY:x}},za={show(n,l){var P;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!((P=l==null?void 0:l._ripple)!=null&&P.enabled))return;const h=document.createElement("span"),c=document.createElement("span");h.appendChild(c),h.className="v-ripple__container",r.class&&(h.className+=` ${r.class}`);const{radius:g,scale:v,x:k,y:x,centerX:I,centerY:S}=D7(n,l,r),$=`${g*2}px`;c.className="v-ripple__animation",c.style.width=$,c.style.height=$,l.appendChild(h);const B=window.getComputedStyle(l);B&&B.position==="static"&&(l.style.position="relative",l.dataset.previousPosition="static"),c.classList.add("v-ripple__animation--enter"),c.classList.add("v-ripple__animation--visible"),Od(c,`translate(${k}, ${x}) scale3d(${v},${v},${v})`),c.dataset.activated=String(performance.now()),setTimeout(()=>{c.classList.remove("v-ripple__animation--enter"),c.classList.add("v-ripple__animation--in"),Od(c,`translate(${I}, ${S}) scale3d(1,1,1)`)},0)},hide(n){var g;if(!((g=n==null?void 0:n._ripple)!=null&&g.enabled))return;const l=n.getElementsByClassName("v-ripple__animation");if(l.length===0)return;const r=l[l.length-1];if(r.dataset.isHiding)return;r.dataset.isHiding="true";const h=performance.now()-Number(r.dataset.activated),c=Math.max(250-h,0);setTimeout(()=>{r.classList.remove("v-ripple__animation--in"),r.classList.add("v-ripple__animation--out"),setTimeout(()=>{var k;n.getElementsByClassName("v-ripple__animation").length===1&&n.dataset.previousPosition&&(n.style.position=n.dataset.previousPosition,delete n.dataset.previousPosition),((k=r.parentNode)==null?void 0:k.parentNode)===n&&n.removeChild(r.parentNode)},300)},c)}};function g4(n){return typeof n>"u"||!!n}function hs(n){const l={},r=n.currentTarget;if(!(!(r!=null&&r._ripple)||r._ripple.touched||n[q0])){if(n[q0]=!0,Y0(n))r._ripple.touched=!0,r._ripple.isTouch=!0;else if(r._ripple.isTouch)return;if(l.center=r._ripple.centered||p4(n),r._ripple.class&&(l.class=r._ripple.class),Y0(n)){if(r._ripple.showTimerCommit)return;r._ripple.showTimerCommit=()=>{za.show(n,r,l)},r._ripple.showTimer=window.setTimeout(()=>{var h;(h=r==null?void 0:r._ripple)!=null&&h.showTimerCommit&&(r._ripple.showTimerCommit(),r._ripple.showTimerCommit=null)},L7)}else za.show(n,r,l)}}function Fd(n){n[q0]=!0}function yn(n){const l=n.currentTarget;if(l!=null&&l._ripple){if(window.clearTimeout(l._ripple.showTimer),n.type==="touchend"&&l._ripple.showTimerCommit){l._ripple.showTimerCommit(),l._ripple.showTimerCommit=null,l._ripple.showTimer=window.setTimeout(()=>{yn(n)});return}window.setTimeout(()=>{l._ripple&&(l._ripple.touched=!1)}),za.hide(l)}}function w4(n){const l=n.currentTarget;l!=null&&l._ripple&&(l._ripple.showTimerCommit&&(l._ripple.showTimerCommit=null),window.clearTimeout(l._ripple.showTimer))}let ds=!1;function v4(n){!ds&&(n.keyCode===rd.enter||n.keyCode===rd.space)&&(ds=!0,hs(n))}function f4(n){ds=!1,yn(n)}function m4(n){ds&&(ds=!1,yn(n))}function k4(n,l,r){const{value:h,modifiers:c}=l,g=g4(h);if(g||za.hide(n),n._ripple=n._ripple??{},n._ripple.enabled=g,n._ripple.centered=c.center,n._ripple.circle=c.circle,H0(h)&&h.class&&(n._ripple.class=h.class),g&&!r){if(c.stop){n.addEventListener("touchstart",Fd,{passive:!0}),n.addEventListener("mousedown",Fd);return}n.addEventListener("touchstart",hs,{passive:!0}),n.addEventListener("touchend",yn,{passive:!0}),n.addEventListener("touchmove",w4,{passive:!0}),n.addEventListener("touchcancel",yn),n.addEventListener("mousedown",hs),n.addEventListener("mouseup",yn),n.addEventListener("mouseleave",yn),n.addEventListener("keydown",v4),n.addEventListener("keyup",f4),n.addEventListener("blur",m4),n.addEventListener("dragstart",yn,{passive:!0})}else!g&&r&&b4(n)}function b4(n){n.removeEventListener("mousedown",hs),n.removeEventListener("touchstart",hs),n.removeEventListener("touchend",yn),n.removeEventListener("touchmove",w4),n.removeEventListener("touchcancel",yn),n.removeEventListener("mouseup",yn),n.removeEventListener("mouseleave",yn),n.removeEventListener("keydown",v4),n.removeEventListener("keyup",f4),n.removeEventListener("dragstart",yn),n.removeEventListener("blur",m4)}function O7(n,l){k4(n,l,!1)}function F7(n){delete n._ripple,b4(n)}function R7(n,l){if(l.value===l.oldValue)return;const r=g4(l.oldValue);k4(n,l,r)}const tr={mounted:O7,unmounted:F7,updated:R7},x2=mt({active:{type:Boolean,default:void 0},symbol:{type:null,default:v2},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:ee,appendIcon:ee,block:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:String,...An(),...Xt(),...We(),...Tn(),..._e(),...fo(),...b2(),...Ql(),...bo(),...Ce(),...$s(),...$l(),...re({tag:"button"}),...ue(),..._n({variant:"elevated"})},"VBtn"),pn=Bt()({name:"VBtn",directives:{Ripple:tr},props:x2(),emits:{"group:selected":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const{themeClasses:c}=ve(n),{borderClasses:g}=Vn(n),{colorClasses:v,colorStyles:k,variantClasses:x}=Nr(n),{densityClasses:I}=dn(n),{dimensionStyles:S}=En(n),{elevationClasses:$}=Je(n),{loaderClasses:B}=ai(n),{locationStyles:P}=Jl(n),{positionClasses:D}=Mo(n),{roundedClasses:F}=Ne(n),{sizeClasses:X,sizeStyles:R}=ko(n),H=mo(n,n.symbol,!1),U=Ss(n,r),W=q(()=>{var G;return n.active!==void 0?n.active:U.isLink.value?(G=U.isActive)==null?void 0:G.value:H==null?void 0:H.isSelected.value}),_=q(()=>(H==null?void 0:H.disabled.value)||n.disabled),tt=q(()=>n.variant==="elevated"&&!(n.disabled||n.flat||n.border)),nt=q(()=>{if(n.value!==void 0)return Object(n.value)===n.value?JSON.stringify(n.value,null,0):n.value});function Y(G){var et;_.value||U.isLink.value&&(G.metaKey||G.ctrlKey||G.shiftKey||G.button!==0||r.target==="_blank")||((et=U.navigate)==null||et.call(U,G),H==null||H.toggle())}return P7(U,H==null?void 0:H.select),Dt(()=>{var dt,Ct;const G=U.isLink.value?"a":n.tag,et=!!(n.prependIcon||h.prepend),st=!!(n.appendIcon||h.append),rt=!!(n.icon&&n.icon!==!0),ht=(H==null?void 0:H.isSelected.value)&&(!U.isLink.value||((dt=U.isActive)==null?void 0:dt.value))||!H||((Ct=U.isActive)==null?void 0:Ct.value);return $e(t(G,{type:G==="a"?void 0:"button",class:["v-btn",H==null?void 0:H.selectedClass.value,{"v-btn--active":W.value,"v-btn--block":n.block,"v-btn--disabled":_.value,"v-btn--elevated":tt.value,"v-btn--flat":n.flat,"v-btn--icon":!!n.icon,"v-btn--loading":n.loading,"v-btn--stacked":n.stacked},c.value,g.value,ht?v.value:void 0,I.value,$.value,B.value,D.value,F.value,X.value,x.value,n.class],style:[ht?k.value:void 0,S.value,P.value,R.value,n.style],disabled:_.value||void 0,href:U.href.value,onClick:Y,value:nt.value},{default:()=>{var xt;return[Hr(!0,"v-btn"),!n.icon&&et&&t("span",{key:"prepend",class:"v-btn__prepend"},[h.prepend?t(ke,{key:"prepend-defaults",disabled:!n.prependIcon,defaults:{VIcon:{icon:n.prependIcon}}},h.prepend):t(xe,{key:"prepend-icon",icon:n.prependIcon},null)]),t("span",{class:"v-btn__content","data-no-activator":""},[!h.default&&rt?t(xe,{key:"content-icon",icon:n.icon},null):t(ke,{key:"content-defaults",disabled:!rt,defaults:{VIcon:{icon:n.icon}}},{default:()=>{var wt;return[((wt=h.default)==null?void 0:wt.call(h))??n.text]}})]),!n.icon&&st&&t("span",{key:"append",class:"v-btn__append"},[h.append?t(ke,{key:"append-defaults",disabled:!n.appendIcon,defaults:{VIcon:{icon:n.appendIcon}}},h.append):t(xe,{key:"append-icon",icon:n.appendIcon},null)]),!!n.loading&&t("span",{key:"loader",class:"v-btn__loader"},[((xt=h.loader)==null?void 0:xt.call(h))??t(m2,{color:typeof n.loading=="boolean"?void 0:n.loading,indeterminate:!0,size:"23",width:"2"},null)])]}}),[[Mn("ripple"),!_.value&&n.ripple,null]])}),{}}}),T7=mt({...x2({icon:"$menu",variant:"text"})},"VAppBarNavIcon"),E7=Bt()({name:"VAppBarNavIcon",props:T7(),setup(n,l){let{slots:r}=l;return Dt(()=>t(pn,o(n,{class:["v-app-bar-nav-icon"]}),r)),{}}}),V7=Bt()({name:"VAppBarTitle",props:n4(),setup(n,l){let{slots:r}=l;return Dt(()=>t(c2,o(n,{class:"v-app-bar-title"}),r)),{}}});const M4=Qn("v-alert-title"),_7=["success","info","warning","error"],W7=mt({border:{type:[Boolean,String],validator:n=>typeof n=="boolean"||["top","end","bottom","start"].includes(n)},borderColor:String,closable:Boolean,closeIcon:{type:ee,default:"$close"},closeLabel:{type:String,default:"$vuetify.close"},icon:{type:[Boolean,String,Function,Object],default:null},modelValue:{type:Boolean,default:!0},prominent:Boolean,title:String,text:String,type:{type:String,validator:n=>_7.includes(n)},...Xt(),...We(),...Tn(),..._e(),...Ql(),...bo(),...Ce(),...re(),...ue(),..._n({variant:"flat"})},"VAlert"),X7=Bt()({name:"VAlert",props:W7(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{emit:r,slots:h}=l;const c=ne(n,"modelValue"),g=q(()=>{if(n.icon!==!1)return n.type?n.icon??`$${n.type}`:n.icon}),v=q(()=>({color:n.color??n.type,variant:n.variant})),{themeClasses:k}=ve(n),{colorClasses:x,colorStyles:I,variantClasses:S}=Nr(v),{densityClasses:$}=dn(n),{dimensionStyles:B}=En(n),{elevationClasses:P}=Je(n),{locationStyles:D}=Jl(n),{positionClasses:F}=Mo(n),{roundedClasses:X}=Ne(n),{textColorClasses:R,textColorStyles:H}=an(Ht(n,"borderColor")),{t:U}=Rn(),W=q(()=>({"aria-label":U(n.closeLabel),onClick(_){c.value=!1,r("click:close",_)}}));return()=>{const _=!!(h.prepend||g.value),tt=!!(h.title||n.title),nt=!!(h.close||n.closable);return c.value&&t(n.tag,{class:["v-alert",n.border&&{"v-alert--border":!!n.border,[`v-alert--border-${n.border===!0?"start":n.border}`]:!0},{"v-alert--prominent":n.prominent},k.value,x.value,$.value,P.value,F.value,X.value,S.value,n.class],style:[I.value,B.value,D.value,n.style],role:"alert"},{default:()=>{var Y,G;return[Hr(!1,"v-alert"),n.border&&t("div",{key:"border",class:["v-alert__border",R.value],style:H.value},null),_&&t("div",{key:"prepend",class:"v-alert__prepend"},[h.prepend?t(ke,{key:"prepend-defaults",disabled:!g.value,defaults:{VIcon:{density:n.density,icon:g.value,size:n.prominent?44:28}}},h.prepend):t(xe,{key:"prepend-icon",density:n.density,icon:g.value,size:n.prominent?44:28},null)]),t("div",{class:"v-alert__content"},[tt&&t(M4,{key:"title"},{default:()=>{var et;return[((et=h.title)==null?void 0:et.call(h))??n.title]}}),((Y=h.text)==null?void 0:Y.call(h))??n.text,(G=h.default)==null?void 0:G.call(h)]),h.append&&t("div",{key:"append",class:"v-alert__append"},[h.append()]),nt&&t("div",{key:"close",class:"v-alert__close"},[h.close?t(ke,{key:"close-defaults",defaults:{VBtn:{icon:n.closeIcon,size:"x-small",variant:"text"}}},{default:()=>{var et;return[(et=h.close)==null?void 0:et.call(h,{props:W.value})]}}):t(pn,o({key:"close-btn",icon:n.closeIcon,size:"x-small",variant:"text"},W.value),null)])]}})}}});const q7=mt({text:String,clickable:Boolean,...Xt(),...ue()},"VLabel"),xo=Bt()({name:"VLabel",props:q7(),setup(n,l){let{slots:r}=l;return Dt(()=>{var h;return t("label",{class:["v-label",{"v-label--clickable":n.clickable},n.class],style:n.style},[n.text,(h=r.default)==null?void 0:h.call(r)])}),{}}});const x4=Symbol.for("vuetify:selection-control-group"),z2=mt({color:String,disabled:{type:Boolean,default:null},defaultsTarget:String,error:Boolean,id:String,inline:Boolean,falseIcon:ee,trueIcon:ee,ripple:{type:Boolean,default:!0},multiple:{type:Boolean,default:null},name:String,readonly:Boolean,modelValue:null,type:String,valueComparator:{type:Function,default:Sr},...Xt(),...We(),...ue()},"SelectionControlGroup"),Y7=mt({...z2({defaultsTarget:"VSelectionControl"})},"VSelectionControlGroup"),z4=Bt()({name:"VSelectionControlGroup",props:Y7(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),c=hn(),g=q(()=>n.id||`v-selection-control-group-${c}`),v=q(()=>n.name||g.value),k=new Set;return Se(x4,{modelValue:h,forceUpdate:()=>{k.forEach(x=>x())},onForceUpdate:x=>{k.add(x),sn(()=>{k.delete(x)})}}),Te({[n.defaultsTarget]:{color:Ht(n,"color"),disabled:Ht(n,"disabled"),density:Ht(n,"density"),error:Ht(n,"error"),inline:Ht(n,"inline"),modelValue:h,multiple:q(()=>!!n.multiple||n.multiple==null&&Array.isArray(h.value)),name:v,falseIcon:Ht(n,"falseIcon"),trueIcon:Ht(n,"trueIcon"),readonly:Ht(n,"readonly"),ripple:Ht(n,"ripple"),type:Ht(n,"type"),valueComparator:Ht(n,"valueComparator")}}),Dt(()=>{var x;return t("div",{class:["v-selection-control-group",{"v-selection-control-group--inline":n.inline},n.class],style:n.style,role:n.type==="radio"?"radiogroup":void 0},[(x=r.default)==null?void 0:x.call(r)])}),{}}}),ii=mt({label:String,trueValue:null,falseValue:null,value:null,...Xt(),...z2()},"VSelectionControl");function U7(n){const l=de(x4,void 0),{densityClasses:r}=dn(n),h=ne(n,"modelValue"),c=q(()=>n.trueValue!==void 0?n.trueValue:n.value!==void 0?n.value:!0),g=q(()=>n.falseValue!==void 0?n.falseValue:!1),v=q(()=>!!n.multiple||n.multiple==null&&Array.isArray(h.value)),k=q({get(){const $=l?l.modelValue.value:h.value;return v.value?$.some(B=>n.valueComparator(B,c.value)):n.valueComparator($,c.value)},set($){if(n.readonly)return;const B=$?c.value:g.value;let P=B;v.value&&(P=$?[...Pn(h.value),B]:Pn(h.value).filter(D=>!n.valueComparator(D,c.value))),l?l.modelValue.value=P:h.value=P}}),{textColorClasses:x,textColorStyles:I}=an(q(()=>k.value&&!n.error&&!n.disabled?n.color:void 0)),S=q(()=>k.value?n.trueIcon:n.falseIcon);return{group:l,densityClasses:r,trueValue:c,falseValue:g,model:k,textColorClasses:x,textColorStyles:I,icon:S}}const zr=Bt()({name:"VSelectionControl",directives:{Ripple:tr},inheritAttrs:!1,props:ii(),emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const{group:c,densityClasses:g,icon:v,model:k,textColorClasses:x,textColorStyles:I,trueValue:S}=U7(n),$=hn(),B=q(()=>n.id||`input-${$}`),P=Wt(!1),D=Wt(!1),F=Lt();c==null||c.onForceUpdate(()=>{F.value&&(F.value.checked=k.value)});function X(U){P.value=!0,ro(U.target,":focus-visible")!==!1&&(D.value=!0)}function R(){P.value=!1,D.value=!1}function H(U){n.readonly&&c&&we(()=>c.forceUpdate()),k.value=U.target.checked}return Dt(()=>{var nt,Y;const U=h.label?h.label({label:n.label,props:{for:B.value}}):n.label,[W,_]=$r(r),tt=t("input",o({ref:F,checked:k.value,disabled:!!(n.readonly||n.disabled),id:B.value,onBlur:R,onFocus:X,onInput:H,"aria-disabled":!!(n.readonly||n.disabled),type:n.type,value:S.value,name:n.name,"aria-checked":n.type==="checkbox"?k.value:void 0},_),null);return t("div",o({class:["v-selection-control",{"v-selection-control--dirty":k.value,"v-selection-control--disabled":n.disabled,"v-selection-control--error":n.error,"v-selection-control--focused":P.value,"v-selection-control--focus-visible":D.value,"v-selection-control--inline":n.inline},g.value,n.class]},W,{style:n.style}),[t("div",{class:["v-selection-control__wrapper",x.value],style:I.value},[(nt=h.default)==null?void 0:nt.call(h),$e(t("div",{class:["v-selection-control__input"]},[((Y=h.input)==null?void 0:Y.call(h,{model:k,textColorClasses:x,textColorStyles:I,inputNode:tt,icon:v.value,props:{onFocus:X,onBlur:R,id:B.value}}))??t(Kt,null,[v.value&&t(xe,{key:"icon",icon:v.value},null),tt])]),[[Mn("ripple"),n.ripple&&[!n.disabled&&!n.readonly,null,["center","circle"]]]])]),U&&t(xo,{for:B.value,clickable:!0,onClick:G=>G.stopPropagation()},{default:()=>[U]})])}),{isFocused:P,input:F}}}),I4=mt({indeterminate:Boolean,indeterminateIcon:{type:ee,default:"$checkboxIndeterminate"},...ii({falseIcon:"$checkboxOff",trueIcon:"$checkboxOn"})},"VCheckboxBtn"),ao=Bt()({name:"VCheckboxBtn",props:I4(),emits:{"update:modelValue":n=>!0,"update:indeterminate":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"indeterminate"),c=ne(n,"modelValue");function g(x){h.value&&(h.value=!1)}const v=q(()=>h.value?n.indeterminateIcon:n.falseIcon),k=q(()=>h.value?n.indeterminateIcon:n.trueIcon);return Dt(()=>{const x=On(zr.filterProps(n)[0],["modelValue"]);return t(zr,o(x,{modelValue:c.value,"onUpdate:modelValue":[I=>c.value=I,g],class:["v-checkbox-btn",n.class],style:n.style,type:"checkbox",falseIcon:v.value,trueIcon:k.value,"aria-checked":h.value?"mixed":void 0}),r)}),{}}});function y4(n){const{t:l}=Rn();function r(h){let{name:c}=h;const g={prepend:"prependAction",prependInner:"prependAction",append:"appendAction",appendInner:"appendAction",clear:"clear"}[c],v=n[`onClick:${c}`],k=v&&g?l(`$vuetify.input.${g}`,n.label??""):void 0;return t(xe,{icon:n[`${c}Icon`],"aria-label":k,onClick:v},null)}return{InputIcon:r}}const G7=mt({active:Boolean,color:String,messages:{type:[Array,String],default:()=>[]},...Xt(),...Sl({transition:{component:p2,leaveAbsolute:!0,group:!0}})},"VMessages"),C4=Bt()({name:"VMessages",props:G7(),setup(n,l){let{slots:r}=l;const h=q(()=>Pn(n.messages)),{textColorClasses:c,textColorStyles:g}=an(q(()=>n.color));return Dt(()=>t(Un,{transition:n.transition,tag:"div",class:["v-messages",c.value,n.class],style:[g.value,n.style],role:"alert","aria-live":"polite"},{default:()=>[n.active&&h.value.map((v,k)=>t("div",{class:"v-messages__message",key:`${k}-${h.value}`},[r.message?r.message({message:v}):v]))]})),{}}}),hi=mt({focused:Boolean,"onUpdate:focused":ol()},"focus");function er(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl();const r=ne(n,"focused"),h=q(()=>({[`${l}--focused`]:r.value}));function c(){r.value=!0}function g(){r.value=!1}return{focusClasses:h,isFocused:r,focus:c,blur:g}}const S4=Symbol.for("vuetify:form"),Z7=mt({disabled:Boolean,fastFail:Boolean,readonly:Boolean,modelValue:{type:Boolean,default:null},validateOn:{type:String,default:"input"}},"form");function K7(n){const l=ne(n,"modelValue"),r=q(()=>n.disabled),h=q(()=>n.readonly),c=Wt(!1),g=Lt([]),v=Lt([]);async function k(){const S=[];let $=!0;v.value=[],c.value=!0;for(const B of g.value){const P=await B.validate();if(P.length>0&&($=!1,S.push({id:B.id,errorMessages:P})),!$&&n.fastFail)break}return v.value=S,c.value=!1,{valid:$,errors:v.value}}function x(){g.value.forEach(S=>S.reset())}function I(){g.value.forEach(S=>S.resetValidation())}return _t(g,()=>{let S=0,$=0;const B=[];for(const P of g.value)P.isValid===!1?($++,B.push({id:P.id,errorMessages:P.errorMessages})):P.isValid===!0&&S++;v.value=B,l.value=$>0?!1:S===g.value.length?!0:null},{deep:!0}),Se(S4,{register:S=>{let{id:$,validate:B,reset:P,resetValidation:D}=S;g.value.some(F=>F.id===$),g.value.push({id:$,validate:B,reset:P,resetValidation:D,isValid:null,errorMessages:[]})},unregister:S=>{g.value=g.value.filter($=>$.id!==S)},update:(S,$,B)=>{const P=g.value.find(D=>D.id===S);P&&(P.isValid=$,P.errorMessages=B)},isDisabled:r,isReadonly:h,isValidating:c,isValid:l,items:g,validateOn:Ht(n,"validateOn")}),{errors:v,isDisabled:r,isReadonly:h,isValidating:c,isValid:l,items:g,validate:k,reset:x,resetValidation:I}}function di(){return de(S4,null)}const $4=mt({disabled:{type:Boolean,default:null},error:Boolean,errorMessages:{type:[Array,String],default:()=>[]},maxErrors:{type:[Number,String],default:1},name:String,label:String,readonly:{type:Boolean,default:null},rules:{type:Array,default:()=>[]},modelValue:null,validateOn:String,validationValue:null,...hi()},"validation");function A4(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Cl(),r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:hn();const h=ne(n,"modelValue"),c=q(()=>n.validationValue===void 0?h.value:n.validationValue),g=di(),v=Lt([]),k=Wt(!0),x=q(()=>!!(Pn(h.value===""?null:h.value).length||Pn(c.value===""?null:c.value).length)),I=q(()=>!!(n.disabled??(g==null?void 0:g.isDisabled.value))),S=q(()=>!!(n.readonly??(g==null?void 0:g.isReadonly.value))),$=q(()=>n.errorMessages.length?Pn(n.errorMessages).slice(0,Math.max(0,+n.maxErrors)):v.value),B=q(()=>{let W=(n.validateOn??(g==null?void 0:g.validateOn.value))||"input";W==="lazy"&&(W="input lazy");const _=new Set((W==null?void 0:W.split(" "))??[]);return{blur:_.has("blur")||_.has("input"),input:_.has("input"),submit:_.has("submit"),lazy:_.has("lazy")}}),P=q(()=>n.error||n.errorMessages.length?!1:n.rules.length?k.value?v.value.length||B.value.lazy?null:!0:!v.value.length:!0),D=Wt(!1),F=q(()=>({[`${l}--error`]:P.value===!1,[`${l}--dirty`]:x.value,[`${l}--disabled`]:I.value,[`${l}--readonly`]:S.value})),X=q(()=>n.name??je(r));Ms(()=>{g==null||g.register({id:X.value,validate:U,reset:R,resetValidation:H})}),Qe(()=>{g==null||g.unregister(X.value)}),Ve(async()=>{B.value.lazy||await U(!0),g==null||g.update(X.value,P.value,$.value)}),Zl(()=>B.value.input,()=>{_t(c,()=>{if(c.value!=null)U();else if(n.focused){const W=_t(()=>n.focused,_=>{_||U(),W()})}})}),Zl(()=>B.value.blur,()=>{_t(()=>n.focused,W=>{W||U()})}),_t(P,()=>{g==null||g.update(X.value,P.value,$.value)});function R(){h.value=null,we(H)}function H(){k.value=!0,B.value.lazy?v.value=[]:U(!0)}async function U(){let W=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;const _=[];D.value=!0;for(const tt of n.rules){if(_.length>=+(n.maxErrors??1))break;const Y=await(typeof tt=="function"?tt:()=>tt)(c.value);if(Y!==!0){if(Y!==!1&&typeof Y!="string"){console.warn(`${Y} is not a valid value. Rule functions must return boolean true or a string.`);continue}_.push(Y||"")}}return v.value=_,D.value=!1,k.value=W,v.value}return{errorMessages:$,isDirty:x,isDisabled:I,isReadonly:S,isPristine:k,isValid:P,isValidating:D,reset:R,resetValidation:H,validate:U,validationClasses:F}}const Al=mt({id:String,appendIcon:ee,centerAffix:{type:Boolean,default:!0},prependIcon:ee,hideDetails:[Boolean,String],hint:String,persistentHint:Boolean,messages:{type:[Array,String],default:()=>[]},direction:{type:String,default:"horizontal",validator:n=>["horizontal","vertical"].includes(n)},"onClick:prepend":ol(),"onClick:append":ol(),...Xt(),...We(),...$4()},"VInput"),Ke=Bt()({name:"VInput",props:{...Al()},emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h,emit:c}=l;const{densityClasses:g}=dn(n),{rtlClasses:v}=Ue(),{InputIcon:k}=y4(n),x=hn(),I=q(()=>n.id||`input-${x}`),S=q(()=>`${I.value}-messages`),{errorMessages:$,isDirty:B,isDisabled:P,isReadonly:D,isPristine:F,isValid:X,isValidating:R,reset:H,resetValidation:U,validate:W,validationClasses:_}=A4(n,"v-input",I),tt=q(()=>({id:I,messagesId:S,isDirty:B,isDisabled:P,isReadonly:D,isPristine:F,isValid:X,isValidating:R,reset:H,resetValidation:U,validate:W})),nt=q(()=>{var Y;return(Y=n.errorMessages)!=null&&Y.length||!F.value&&$.value.length?$.value:n.hint&&(n.persistentHint||n.focused)?n.hint:n.messages});return Dt(()=>{var rt,ht,dt,Ct;const Y=!!(h.prepend||n.prependIcon),G=!!(h.append||n.appendIcon),et=nt.value.length>0,st=!n.hideDetails||n.hideDetails==="auto"&&(et||!!h.details);return t("div",{class:["v-input",`v-input--${n.direction}`,{"v-input--center-affix":n.centerAffix},g.value,v.value,_.value,n.class],style:n.style},[Y&&t("div",{key:"prepend",class:"v-input__prepend"},[(rt=h.prepend)==null?void 0:rt.call(h,tt.value),n.prependIcon&&t(k,{key:"prepend-icon",name:"prepend"},null)]),h.default&&t("div",{class:"v-input__control"},[(ht=h.default)==null?void 0:ht.call(h,tt.value)]),G&&t("div",{key:"append",class:"v-input__append"},[n.appendIcon&&t(k,{key:"append-icon",name:"append"},null),(dt=h.append)==null?void 0:dt.call(h,tt.value)]),st&&t("div",{class:"v-input__details"},[t(C4,{id:S.value,active:et,messages:nt.value},{message:h.message}),(Ct=h.details)==null?void 0:Ct.call(h,tt.value)])])}),{reset:H,resetValidation:U,validate:W}}}),Q7=mt({...Al(),...On(I4(),["inline"])},"VCheckbox"),J7=Bt()({name:"VCheckbox",inheritAttrs:!1,props:Q7(),emits:{"update:modelValue":n=>!0,"update:focused":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const c=ne(n,"modelValue"),{isFocused:g,focus:v,blur:k}=er(n),x=hn(),I=q(()=>n.id||`checkbox-${x}`);return Dt(()=>{const[S,$]=$r(r),[B,P]=Ke.filterProps(n),[D,F]=ao.filterProps(n);return t(Ke,o({class:["v-checkbox",n.class]},S,B,{modelValue:c.value,"onUpdate:modelValue":X=>c.value=X,id:I.value,focused:g.value,style:n.style}),{...h,default:X=>{let{id:R,messagesId:H,isDisabled:U,isReadonly:W}=X;return t(ao,o(D,{id:R.value,"aria-describedby":H.value,disabled:U.value,readonly:W.value},$,{modelValue:c.value,"onUpdate:modelValue":_=>c.value=_,onFocus:v,onBlur:k}),h)}})}),{}}});const tb=mt({start:Boolean,end:Boolean,icon:ee,image:String,...Xt(),...We(),...Ce(),...$l(),...re(),...ue(),..._n({variant:"flat"})},"VAvatar"),Kl=Bt()({name:"VAvatar",props:tb(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{colorClasses:c,colorStyles:g,variantClasses:v}=Nr(n),{densityClasses:k}=dn(n),{roundedClasses:x}=Ne(n),{sizeClasses:I,sizeStyles:S}=ko(n);return Dt(()=>t(n.tag,{class:["v-avatar",{"v-avatar--start":n.start,"v-avatar--end":n.end},h.value,c.value,k.value,x.value,I.value,v.value,n.class],style:[g.value,S.value,n.style]},{default:()=>{var $;return[n.image?t(xr,{key:"image",src:n.image,alt:"",cover:!0},null):n.icon?t(xe,{key:"icon",icon:n.icon},null):($=r.default)==null?void 0:$.call(r),Hr(!1,"v-avatar")]}})),{}}});const B4=Symbol.for("vuetify:v-chip-group"),eb=mt({column:Boolean,filter:Boolean,valueComparator:{type:Function,default:Sr},...Xt(),...vo({selectedClass:"v-chip--selected"}),...re(),...ue(),..._n({variant:"tonal"})},"VChipGroup"),nb=Bt()({name:"VChipGroup",props:eb(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{isSelected:c,select:g,next:v,prev:k,selected:x}=jr(n,B4);return Te({VChip:{color:Ht(n,"color"),disabled:Ht(n,"disabled"),filter:Ht(n,"filter"),variant:Ht(n,"variant")}}),Dt(()=>t(n.tag,{class:["v-chip-group",{"v-chip-group--column":n.column},h.value,n.class],style:n.style},{default:()=>{var I;return[(I=r.default)==null?void 0:I.call(r,{isSelected:c,select:g,next:v,prev:k,selected:x.value})]}})),{}}}),lb=mt({activeClass:String,appendAvatar:String,appendIcon:ee,closable:Boolean,closeIcon:{type:ee,default:"$delete"},closeLabel:{type:String,default:"$vuetify.close"},draggable:Boolean,filter:Boolean,filterIcon:{type:String,default:"$complete"},label:Boolean,link:{type:Boolean,default:void 0},pill:Boolean,prependAvatar:String,prependIcon:ee,ripple:{type:[Boolean,Object],default:!0},text:String,modelValue:{type:Boolean,default:!0},onClick:ol(),onClickOnce:ol(),...An(),...Xt(),...We(),..._e(),...fo(),...Ce(),...$s(),...$l(),...re({tag:"span"}),...ue(),..._n({variant:"tonal"})},"VChip"),As=Bt()({name:"VChip",directives:{Ripple:tr},props:lb(),emits:{"click:close":n=>!0,"update:modelValue":n=>!0,"group:selected":n=>!0,click:n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{t:g}=Rn(),{borderClasses:v}=Vn(n),{colorClasses:k,colorStyles:x,variantClasses:I}=Nr(n),{densityClasses:S}=dn(n),{elevationClasses:$}=Je(n),{roundedClasses:B}=Ne(n),{sizeClasses:P}=ko(n),{themeClasses:D}=ve(n),F=ne(n,"modelValue"),X=mo(n,B4,!1),R=Ss(n,r),H=q(()=>n.link!==!1&&R.isLink.value),U=q(()=>!n.disabled&&n.link!==!1&&(!!X||n.link||R.isClickable.value)),W=q(()=>({"aria-label":g(n.closeLabel),onClick(nt){nt.stopPropagation(),F.value=!1,h("click:close",nt)}}));function _(nt){var Y;h("click",nt),U.value&&((Y=R.navigate)==null||Y.call(R,nt),X==null||X.toggle())}function tt(nt){(nt.key==="Enter"||nt.key===" ")&&(nt.preventDefault(),_(nt))}return()=>{const nt=R.isLink.value?"a":n.tag,Y=!!(n.appendIcon||n.appendAvatar),G=!!(Y||c.append),et=!!(c.close||n.closable),st=!!(c.filter||n.filter)&&X,rt=!!(n.prependIcon||n.prependAvatar),ht=!!(rt||c.prepend),dt=!X||X.isSelected.value;return F.value&&$e(t(nt,{class:["v-chip",{"v-chip--disabled":n.disabled,"v-chip--label":n.label,"v-chip--link":U.value,"v-chip--filter":st,"v-chip--pill":n.pill},D.value,v.value,dt?k.value:void 0,S.value,$.value,B.value,P.value,I.value,X==null?void 0:X.selectedClass.value,n.class],style:[dt?x.value:void 0,n.style],disabled:n.disabled||void 0,draggable:n.draggable,href:R.href.value,tabindex:U.value?0:void 0,onClick:_,onKeydown:U.value&&!H.value&&tt},{default:()=>{var Ct;return[Hr(U.value,"v-chip"),st&&t(g2,{key:"filter"},{default:()=>[$e(t("div",{class:"v-chip__filter"},[c.filter?t(ke,{key:"filter-defaults",disabled:!n.filterIcon,defaults:{VIcon:{icon:n.filterIcon}}},c.filter):t(xe,{key:"filter-icon",icon:n.filterIcon},null)]),[[Dn,X.isSelected.value]])]}),ht&&t("div",{key:"prepend",class:"v-chip__prepend"},[c.prepend?t(ke,{key:"prepend-defaults",disabled:!rt,defaults:{VAvatar:{image:n.prependAvatar,start:!0},VIcon:{icon:n.prependIcon,start:!0}}},c.prepend):t(Kt,null,[n.prependIcon&&t(xe,{key:"prepend-icon",icon:n.prependIcon,start:!0},null),n.prependAvatar&&t(Kl,{key:"prepend-avatar",image:n.prependAvatar,start:!0},null)])]),t("div",{class:"v-chip__content"},[((Ct=c.default)==null?void 0:Ct.call(c,{isSelected:X==null?void 0:X.isSelected.value,selectedClass:X==null?void 0:X.selectedClass.value,select:X==null?void 0:X.select,toggle:X==null?void 0:X.toggle,value:X==null?void 0:X.value.value,disabled:n.disabled}))??n.text]),G&&t("div",{key:"append",class:"v-chip__append"},[c.append?t(ke,{key:"append-defaults",disabled:!Y,defaults:{VAvatar:{end:!0,image:n.appendAvatar},VIcon:{end:!0,icon:n.appendIcon}}},c.append):t(Kt,null,[n.appendIcon&&t(xe,{key:"append-icon",end:!0,icon:n.appendIcon},null),n.appendAvatar&&t(Kl,{key:"append-avatar",end:!0,image:n.appendAvatar},null)])]),et&&t("div",o({key:"close",class:"v-chip__close"},W.value),[c.close?t(ke,{key:"close-defaults",defaults:{VIcon:{icon:n.closeIcon,size:"x-small"}}},c.close):t(xe,{key:"close-icon",icon:n.closeIcon,size:"x-small"},null)])]}}),[[Mn("ripple"),U.value&&n.ripple,null]])}}});const U0=Symbol.for("vuetify:list");function H4(){const n=de(U0,{hasPrepend:Wt(!1),updateHasPrepend:()=>null}),l={hasPrepend:Wt(!1),updateHasPrepend:r=>{r&&(l.hasPrepend.value=r)}};return Se(U0,l),n}function N4(){return de(U0,null)}const rb={open:n=>{let{id:l,value:r,opened:h,parents:c}=n;if(r){const g=new Set;g.add(l);let v=c.get(l);for(;v!=null;)g.add(v),v=c.get(v);return g}else return h.delete(l),h},select:()=>null},j4={open:n=>{let{id:l,value:r,opened:h,parents:c}=n;if(r){let g=c.get(l);for(h.add(l);g!=null&&g!==l;)h.add(g),g=c.get(g);return h}else h.delete(l);return h},select:()=>null},ob={open:j4.open,select:n=>{let{id:l,value:r,opened:h,parents:c}=n;if(!r)return h;const g=[];let v=c.get(l);for(;v!=null;)g.push(v),v=c.get(v);return new Set(g)}},I2=n=>{const l={select:r=>{let{id:h,value:c,selected:g}=r;if(h=le(h),n&&!c){const v=Array.from(g.entries()).reduce((k,x)=>{let[I,S]=x;return S==="on"?[...k,I]:k},[]);if(v.length===1&&v[0]===h)return g}return g.set(h,c?"on":"off"),g},in:(r,h,c)=>{let g=new Map;for(const v of r||[])g=l.select({id:v,value:!0,selected:new Map(g),children:h,parents:c});return g},out:r=>{const h=[];for(const[c,g]of r.entries())g==="on"&&h.push(c);return h}};return l},P4=n=>{const l=I2(n);return{select:h=>{let{selected:c,id:g,...v}=h;g=le(g);const k=c.has(g)?new Map([[g,c.get(g)]]):new Map;return l.select({...v,id:g,selected:k})},in:(h,c,g)=>{let v=new Map;return h!=null&&h.length&&(v=l.in(h.slice(0,1),c,g)),v},out:(h,c,g)=>l.out(h,c,g)}},sb=n=>{const l=I2(n);return{select:h=>{let{id:c,selected:g,children:v,...k}=h;return c=le(c),v.has(c)?g:l.select({id:c,selected:g,children:v,...k})},in:l.in,out:l.out}},ab=n=>{const l=P4(n);return{select:h=>{let{id:c,selected:g,children:v,...k}=h;return c=le(c),v.has(c)?g:l.select({id:c,selected:g,children:v,...k})},in:l.in,out:l.out}},ib=n=>{const l={select:r=>{let{id:h,value:c,selected:g,children:v,parents:k}=r;h=le(h);const x=new Map(g),I=[h];for(;I.length;){const $=I.shift();g.set($,c?"on":"off"),v.has($)&&I.push(...v.get($))}let S=k.get(h);for(;S;){const $=v.get(S),B=$.every(D=>g.get(D)==="on"),P=$.every(D=>!g.has(D)||g.get(D)==="off");g.set(S,B?"on":P?"off":"indeterminate"),S=k.get(S)}return n&&!c&&Array.from(g.entries()).reduce((B,P)=>{let[D,F]=P;return F==="on"?[...B,D]:B},[]).length===0?x:g},in:(r,h,c)=>{let g=new Map;for(const v of r||[])g=l.select({id:v,value:!0,selected:new Map(g),children:h,parents:c});return g},out:(r,h)=>{const c=[];for(const[g,v]of r.entries())v==="on"&&!h.has(g)&&c.push(g);return c}};return l},cs=Symbol.for("vuetify:nested"),L4={id:Wt(),root:{register:()=>null,unregister:()=>null,parents:Lt(new Map),children:Lt(new Map),open:()=>null,openOnSelect:()=>null,select:()=>null,opened:Lt(new Set),selected:Lt(new Map),selectedValues:Lt([])}},hb=mt({selectStrategy:[String,Function],openStrategy:[String,Object],opened:Array,selected:Array,mandatory:Boolean},"nested"),db=n=>{let l=!1;const r=Lt(new Map),h=Lt(new Map),c=ne(n,"opened",n.opened,$=>new Set($),$=>[...$.values()]),g=q(()=>{if(typeof n.selectStrategy=="object")return n.selectStrategy;switch(n.selectStrategy){case"single-leaf":return ab(n.mandatory);case"leaf":return sb(n.mandatory);case"independent":return I2(n.mandatory);case"single-independent":return P4(n.mandatory);case"classic":default:return ib(n.mandatory)}}),v=q(()=>{if(typeof n.openStrategy=="object")return n.openStrategy;switch(n.openStrategy){case"list":return ob;case"single":return rb;case"multiple":default:return j4}}),k=ne(n,"selected",n.selected,$=>g.value.in($,r.value,h.value),$=>g.value.out($,r.value,h.value));Qe(()=>{l=!0});function x($){const B=[];let P=$;for(;P!=null;)B.unshift(P),P=h.value.get(P);return B}const I=Ye("nested"),S={id:Wt(),root:{opened:c,selected:k,selectedValues:q(()=>{const $=[];for(const[B,P]of k.value.entries())P==="on"&&$.push(B);return $}),register:($,B,P)=>{B&&$!==B&&h.value.set($,B),P&&r.value.set($,[]),B!=null&&r.value.set(B,[...r.value.get(B)||[],$])},unregister:$=>{if(l)return;r.value.delete($);const B=h.value.get($);if(B){const P=r.value.get(B)??[];r.value.set(B,P.filter(D=>D!==$))}h.value.delete($),c.value.delete($)},open:($,B,P)=>{I.emit("click:open",{id:$,value:B,path:x($),event:P});const D=v.value.open({id:$,value:B,opened:new Set(c.value),children:r.value,parents:h.value,event:P});D&&(c.value=D)},openOnSelect:($,B,P)=>{const D=v.value.select({id:$,value:B,selected:new Map(k.value),opened:new Set(c.value),children:r.value,parents:h.value,event:P});D&&(c.value=D)},select:($,B,P)=>{I.emit("click:select",{id:$,value:B,path:x($),event:P});const D=g.value.select({id:$,value:B,selected:new Map(k.value),children:r.value,parents:h.value,event:P});D&&(k.value=D),S.root.openOnSelect($,B,P)},children:r,parents:h}};return Se(cs,S),S.root},D4=(n,l)=>{const r=de(cs,L4),h=Symbol(hn()),c=q(()=>n.value!==void 0?n.value:h),g={...r,id:c,open:(v,k)=>r.root.open(c.value,v,k),openOnSelect:(v,k)=>r.root.openOnSelect(c.value,v,k),isOpen:q(()=>r.root.opened.value.has(c.value)),parent:q(()=>r.root.parents.value.get(c.value)),select:(v,k)=>r.root.select(c.value,v,k),isSelected:q(()=>r.root.selected.value.get(le(c.value))==="on"),isIndeterminate:q(()=>r.root.selected.value.get(c.value)==="indeterminate"),isLeaf:q(()=>!r.root.children.value.get(c.value)),isGroupActivator:r.isGroupActivator};return!r.isGroupActivator&&r.root.register(c.value,r.id.value,l),Qe(()=>{!r.isGroupActivator&&r.root.unregister(c.value)}),l&&Se(cs,g),g},cb=()=>{const n=de(cs,L4);Se(cs,{...n,isGroupActivator:!0})},ub=Fn({name:"VListGroupActivator",setup(n,l){let{slots:r}=l;return cb(),()=>{var h;return(h=r.default)==null?void 0:h.call(r)}}}),pb=mt({activeColor:String,baseColor:String,color:String,collapseIcon:{type:ee,default:"$collapse"},expandIcon:{type:ee,default:"$expand"},prependIcon:ee,appendIcon:ee,fluid:Boolean,subgroup:Boolean,title:String,value:null,...Xt(),...re()},"VListGroup"),G0=Bt()({name:"VListGroup",props:pb(),setup(n,l){let{slots:r}=l;const{isOpen:h,open:c,id:g}=D4(Ht(n,"value"),!0),v=q(()=>`v-list-group--id-${String(g.value)}`),k=N4(),{isBooted:x}=Br();function I(P){c(!h.value,P)}const S=q(()=>({onClick:I,class:"v-list-group__header",id:v.value})),$=q(()=>h.value?n.collapseIcon:n.expandIcon),B=q(()=>({VListItem:{active:h.value,activeColor:n.activeColor,baseColor:n.baseColor,color:n.color,prependIcon:n.prependIcon||n.subgroup&&$.value,appendIcon:n.appendIcon||!n.subgroup&&$.value,title:n.title,value:n.value}}));return Dt(()=>t(n.tag,{class:["v-list-group",{"v-list-group--prepend":k==null?void 0:k.hasPrepend.value,"v-list-group--fluid":n.fluid,"v-list-group--subgroup":n.subgroup,"v-list-group--open":h.value},n.class],style:n.style},{default:()=>[r.activator&&t(ke,{defaults:B.value},{default:()=>[t(ub,null,{default:()=>[r.activator({props:S.value,isOpen:h.value})]})]}),t(Un,{transition:{component:oi},disabled:!x.value},{default:()=>{var P;return[$e(t("div",{class:"v-list-group__items",role:"group","aria-labelledby":v.value},[(P=r.default)==null?void 0:P.call(r)]),[[Dn,h.value]])]}})]})),{}}});const O4=Qn("v-list-item-subtitle"),F4=Qn("v-list-item-title"),gb=mt({active:{type:Boolean,default:void 0},activeClass:String,activeColor:String,appendAvatar:String,appendIcon:ee,baseColor:String,disabled:Boolean,lines:String,link:{type:Boolean,default:void 0},nav:Boolean,prependAvatar:String,prependIcon:ee,ripple:{type:[Boolean,Object],default:!0},subtitle:[String,Number,Boolean],title:[String,Number,Boolean],value:null,onClick:ol(),onClickOnce:ol(),...An(),...Xt(),...We(),...Tn(),..._e(),...Ce(),...$s(),...re(),...ue(),..._n({variant:"text"})},"VListItem"),Ml=Bt()({name:"VListItem",directives:{Ripple:tr},props:gb(),emits:{click:n=>!0},setup(n,l){let{attrs:r,slots:h,emit:c}=l;const g=Ss(n,r),v=q(()=>n.value===void 0?g.href.value:n.value),{select:k,isSelected:x,isIndeterminate:I,isGroupActivator:S,root:$,parent:B,openOnSelect:P}=D4(v,!1),D=N4(),F=q(()=>{var gt;return n.active!==!1&&(n.active||((gt=g.isActive)==null?void 0:gt.value)||x.value)}),X=q(()=>n.link!==!1&&g.isLink.value),R=q(()=>!n.disabled&&n.link!==!1&&(n.link||g.isClickable.value||n.value!=null&&!!D)),H=q(()=>n.rounded||n.nav),U=q(()=>n.color??n.activeColor),W=q(()=>({color:F.value?U.value??n.baseColor:n.baseColor,variant:n.variant}));_t(()=>{var gt;return(gt=g.isActive)==null?void 0:gt.value},gt=>{gt&&B.value!=null&&$.open(B.value,!0),gt&&P(gt)},{immediate:!0});const{themeClasses:_}=ve(n),{borderClasses:tt}=Vn(n),{colorClasses:nt,colorStyles:Y,variantClasses:G}=Nr(W),{densityClasses:et}=dn(n),{dimensionStyles:st}=En(n),{elevationClasses:rt}=Je(n),{roundedClasses:ht}=Ne(H),dt=q(()=>n.lines?`v-list-item--${n.lines}-line`:void 0),Ct=q(()=>({isActive:F.value,select:k,isSelected:x.value,isIndeterminate:I.value}));function xt(gt){var It;c("click",gt),!(S||!R.value)&&((It=g.navigate)==null||It.call(g,gt),n.value!=null&&k(!x.value,gt))}function wt(gt){(gt.key==="Enter"||gt.key===" ")&&(gt.preventDefault(),xt(gt))}return Dt(()=>{const gt=X.value?"a":n.tag,It=h.title||n.title,At=h.subtitle||n.subtitle,Tt=!!(n.appendAvatar||n.appendIcon),Ft=!!(Tt||h.append),Qt=!!(n.prependAvatar||n.prependIcon),Jt=!!(Qt||h.prepend);return D==null||D.updateHasPrepend(Jt),n.activeColor&&Xk("active-color",["color","base-color"]),$e(t(gt,{class:["v-list-item",{"v-list-item--active":F.value,"v-list-item--disabled":n.disabled,"v-list-item--link":R.value,"v-list-item--nav":n.nav,"v-list-item--prepend":!Jt&&(D==null?void 0:D.hasPrepend.value),[`${n.activeClass}`]:n.activeClass&&F.value},_.value,tt.value,nt.value,et.value,rt.value,dt.value,ht.value,G.value,n.class],style:[Y.value,st.value,n.style],href:g.href.value,tabindex:R.value?D?-2:0:void 0,onClick:xt,onKeydown:R.value&&!X.value&&wt},{default:()=>{var Et;return[Hr(R.value||F.value,"v-list-item"),Jt&&t("div",{key:"prepend",class:"v-list-item__prepend"},[h.prepend?t(ke,{key:"prepend-defaults",disabled:!Qt,defaults:{VAvatar:{density:n.density,image:n.prependAvatar},VIcon:{density:n.density,icon:n.prependIcon},VListItemAction:{start:!0}}},{default:()=>{var ut;return[(ut=h.prepend)==null?void 0:ut.call(h,Ct.value)]}}):t(Kt,null,[n.prependAvatar&&t(Kl,{key:"prepend-avatar",density:n.density,image:n.prependAvatar},null),n.prependIcon&&t(xe,{key:"prepend-icon",density:n.density,icon:n.prependIcon},null)]),t("div",{class:"v-list-item__spacer"},null)]),t("div",{class:"v-list-item__content","data-no-activator":""},[It&&t(F4,{key:"title"},{default:()=>{var ut;return[((ut=h.title)==null?void 0:ut.call(h,{title:n.title}))??n.title]}}),At&&t(O4,{key:"subtitle"},{default:()=>{var ut;return[((ut=h.subtitle)==null?void 0:ut.call(h,{subtitle:n.subtitle}))??n.subtitle]}}),(Et=h.default)==null?void 0:Et.call(h,Ct.value)]),Ft&&t("div",{key:"append",class:"v-list-item__append"},[h.append?t(ke,{key:"append-defaults",disabled:!Tt,defaults:{VAvatar:{density:n.density,image:n.appendAvatar},VIcon:{density:n.density,icon:n.appendIcon},VListItemAction:{end:!0}}},{default:()=>{var ut;return[(ut=h.append)==null?void 0:ut.call(h,Ct.value)]}}):t(Kt,null,[n.appendIcon&&t(xe,{key:"append-icon",density:n.density,icon:n.appendIcon},null),n.appendAvatar&&t(Kl,{key:"append-avatar",density:n.density,image:n.appendAvatar},null)]),t("div",{class:"v-list-item__spacer"},null)])]}}),[[Mn("ripple"),R.value&&n.ripple]])}),{}}}),wb=mt({color:String,inset:Boolean,sticky:Boolean,title:String,...Xt(),...re()},"VListSubheader"),R4=Bt()({name:"VListSubheader",props:wb(),setup(n,l){let{slots:r}=l;const{textColorClasses:h,textColorStyles:c}=an(Ht(n,"color"));return Dt(()=>{const g=!!(r.default||n.title);return t(n.tag,{class:["v-list-subheader",{"v-list-subheader--inset":n.inset,"v-list-subheader--sticky":n.sticky},h.value,n.class],style:[{textColorStyles:c},n.style]},{default:()=>{var v;return[g&&t("div",{class:"v-list-subheader__text"},[((v=r.default)==null?void 0:v.call(r))??n.title])]}})}),{}}});const vb=mt({color:String,inset:Boolean,length:[Number,String],thickness:[Number,String],vertical:Boolean,...Xt(),...ue()},"VDivider"),T4=Bt()({name:"VDivider",props:vb(),setup(n,l){let{attrs:r}=l;const{themeClasses:h}=ve(n),{textColorClasses:c,textColorStyles:g}=an(Ht(n,"color")),v=q(()=>{const k={};return n.length&&(k[n.vertical?"maxHeight":"maxWidth"]=qt(n.length)),n.thickness&&(k[n.vertical?"borderRightWidth":"borderTopWidth"]=qt(n.thickness)),k});return Dt(()=>t("hr",{class:[{"v-divider":!0,"v-divider--inset":n.inset,"v-divider--vertical":n.vertical},h.value,c.value,n.class],style:[v.value,g.value,n.style],"aria-orientation":!r.role||r.role==="separator"?n.vertical?"vertical":"horizontal":void 0,role:`${r.role||"separator"}`},null)),{}}}),fb=mt({items:Array},"VListChildren"),E4=Bt()({name:"VListChildren",props:fb(),setup(n,l){let{slots:r}=l;return H4(),()=>{var h,c;return((h=r.default)==null?void 0:h.call(r))??((c=n.items)==null?void 0:c.map(g=>{var P,D;let{children:v,props:k,type:x,raw:I}=g;if(x==="divider")return((P=r.divider)==null?void 0:P.call(r,{props:k}))??t(T4,k,null);if(x==="subheader")return((D=r.subheader)==null?void 0:D.call(r,{props:k}))??t(R4,k,null);const S={subtitle:r.subtitle?F=>{var X;return(X=r.subtitle)==null?void 0:X.call(r,{...F,item:I})}:void 0,prepend:r.prepend?F=>{var X;return(X=r.prepend)==null?void 0:X.call(r,{...F,item:I})}:void 0,append:r.append?F=>{var X;return(X=r.append)==null?void 0:X.call(r,{...F,item:I})}:void 0,title:r.title?F=>{var X;return(X=r.title)==null?void 0:X.call(r,{...F,item:I})}:void 0},[$,B]=G0.filterProps(k);return v?t(G0,o({value:k==null?void 0:k.value},$),{activator:F=>{let{props:X}=F;return r.header?r.header({props:{...k,...X}}):t(Ml,o(k,X),S)},default:()=>t(E4,{items:v},r)}):r.item?r.item({props:k}):t(Ml,k,S)}))}}}),V4=mt({items:{type:Array,default:()=>[]},itemTitle:{type:[String,Array,Function],default:"title"},itemValue:{type:[String,Array,Function],default:"value"},itemChildren:{type:[Boolean,String,Array,Function],default:"children"},itemProps:{type:[Boolean,String,Array,Function],default:"props"},returnObject:Boolean},"list-items");function qr(n,l){const r=ln(l,n.itemTitle,l),h=n.returnObject?l:ln(l,n.itemValue,r),c=ln(l,n.itemChildren),g=n.itemProps===!0?typeof l=="object"&&l!=null&&!Array.isArray(l)?"children"in l?Mr(l,["children"])[1]:l:void 0:ln(l,n.itemProps),v={title:r,value:h,...g};return{title:String(v.title??""),value:v.value,props:v,children:Array.isArray(c)?_4(n,c):void 0,raw:l}}function _4(n,l){const r=[];for(const h of l)r.push(qr(n,h));return r}function y2(n){const l=q(()=>_4(n,n.items));return mb(l,r=>qr(n,r))}function mb(n,l){function r(c){return c.filter(g=>g!==null||n.value.some(v=>v.value===null)).map(g=>n.value.find(k=>Sr(g,k.value))??l(g))}function h(c){return c.map(g=>{let{value:v}=g;return v})}return{items:n,transformIn:r,transformOut:h}}function kb(n){return typeof n=="string"||typeof n=="number"||typeof n=="boolean"}function bb(n,l){const r=ln(l,n.itemType,"item"),h=kb(l)?l:ln(l,n.itemTitle),c=ln(l,n.itemValue,void 0),g=ln(l,n.itemChildren),v=n.itemProps===!0?Mr(l,["children"])[1]:ln(l,n.itemProps),k={title:h,value:c,...v};return{type:r,title:k.title,value:k.value,props:k,children:r==="item"&&g?W4(n,g):void 0,raw:l}}function W4(n,l){const r=[];for(const h of l)r.push(bb(n,h));return r}function Mb(n){return{items:q(()=>W4(n,n.items))}}const xb=mt({baseColor:String,activeColor:String,activeClass:String,bgColor:String,disabled:Boolean,lines:{type:[Boolean,String],default:"one"},nav:Boolean,...hb({selectStrategy:"single-leaf",openStrategy:"list"}),...An(),...Xt(),...We(),...Tn(),..._e(),itemType:{type:String,default:"type"},...V4(),...Ce(),...re(),...ue(),..._n({variant:"text"})},"VList"),ci=Bt()({name:"VList",props:xb(),emits:{"update:selected":n=>!0,"update:opened":n=>!0,"click:open":n=>!0,"click:select":n=>!0},setup(n,l){let{slots:r}=l;const{items:h}=Mb(n),{themeClasses:c}=ve(n),{backgroundColorClasses:g,backgroundColorStyles:v}=Pe(Ht(n,"bgColor")),{borderClasses:k}=Vn(n),{densityClasses:x}=dn(n),{dimensionStyles:I}=En(n),{elevationClasses:S}=Je(n),{roundedClasses:$}=Ne(n),{open:B,select:P}=db(n),D=q(()=>n.lines?`v-list--${n.lines}-line`:void 0),F=Ht(n,"activeColor"),X=Ht(n,"baseColor"),R=Ht(n,"color");H4(),Te({VListGroup:{activeColor:F,baseColor:X,color:R},VListItem:{activeClass:Ht(n,"activeClass"),activeColor:F,baseColor:X,color:R,density:Ht(n,"density"),disabled:Ht(n,"disabled"),lines:Ht(n,"lines"),nav:Ht(n,"nav"),variant:Ht(n,"variant")}});const H=Wt(!1),U=Lt();function W(G){H.value=!0}function _(G){H.value=!1}function tt(G){var et;!H.value&&!(G.relatedTarget&&((et=U.value)!=null&&et.contains(G.relatedTarget)))&&Y()}function nt(G){if(U.value){if(G.key==="ArrowDown")Y("next");else if(G.key==="ArrowUp")Y("prev");else if(G.key==="Home")Y("first");else if(G.key==="End")Y("last");else return;G.preventDefault()}}function Y(G){if(U.value)return ka(U.value,G)}return Dt(()=>t(n.tag,{ref:U,class:["v-list",{"v-list--disabled":n.disabled,"v-list--nav":n.nav},c.value,g.value,k.value,x.value,S.value,D.value,$.value,n.class],style:[v.value,I.value,n.style],tabindex:n.disabled||H.value?-1:0,role:"listbox","aria-activedescendant":void 0,onFocusin:W,onFocusout:_,onFocus:tt,onKeydown:nt},{default:()=>[t(E4,{items:h.value},r)]})),{open:B,select:P,focus:Y}}}),zb=Qn("v-list-img"),Ib=mt({start:Boolean,end:Boolean,...Xt(),...re()},"VListItemAction"),yb=Bt()({name:"VListItemAction",props:Ib(),setup(n,l){let{slots:r}=l;return Dt(()=>t(n.tag,{class:["v-list-item-action",{"v-list-item-action--start":n.start,"v-list-item-action--end":n.end},n.class],style:n.style},r)),{}}}),Cb=mt({start:Boolean,end:Boolean,...Xt(),...re()},"VListItemMedia"),Sb=Bt()({name:"VListItemMedia",props:Cb(),setup(n,l){let{slots:r}=l;return Dt(()=>t(n.tag,{class:["v-list-item-media",{"v-list-item-media--start":n.start,"v-list-item-media--end":n.end},n.class],style:n.style},r)),{}}});function qi(n,l){return{x:n.x+l.x,y:n.y+l.y}}function $b(n,l){return{x:n.x-l.x,y:n.y-l.y}}function Rd(n,l){if(n.side==="top"||n.side==="bottom"){const{side:r,align:h}=n,c=h==="left"?0:h==="center"?l.width/2:h==="right"?l.width:h,g=r==="top"?0:r==="bottom"?l.height:r;return qi({x:c,y:g},l)}else if(n.side==="left"||n.side==="right"){const{side:r,align:h}=n,c=r==="left"?0:r==="right"?l.width:r,g=h==="top"?0:h==="center"?l.height/2:h==="bottom"?l.height:h;return qi({x:c,y:g},l)}return qi({x:l.width/2,y:l.height/2},l)}const X4={static:Hb,connected:jb},Ab=mt({locationStrategy:{type:[String,Function],default:"static",validator:n=>typeof n=="function"||n in X4},location:{type:String,default:"bottom"},origin:{type:String,default:"auto"},offset:[Number,String,Array]},"VOverlay-location-strategies");function Bb(n,l){const r=Lt({}),h=Lt();ze&&(Zl(()=>!!(l.isActive.value&&n.locationStrategy),g=>{var v,k;_t(()=>n.locationStrategy,g),sn(()=>{h.value=void 0}),typeof n.locationStrategy=="function"?h.value=(v=n.locationStrategy(l,n,r))==null?void 0:v.updateLocation:h.value=(k=X4[n.locationStrategy](l,n,r))==null?void 0:k.updateLocation}),window.addEventListener("resize",c,{passive:!0}),sn(()=>{window.removeEventListener("resize",c),h.value=void 0}));function c(g){var v;(v=h.value)==null||v.call(h,g)}return{contentStyles:r,updateLocation:h}}function Hb(){}function Nb(n,l){l?n.style.removeProperty("left"):n.style.removeProperty("right");const r=l2(n);return l?r.x+=parseFloat(n.style.right||0):r.x-=parseFloat(n.style.left||0),r.y-=parseFloat(n.style.top||0),r}function jb(n,l,r){i6(n.activatorEl.value)&&Object.assign(r.value,{position:"fixed",top:0,[n.isRtl.value?"right":"left"]:0});const{preferredAnchor:c,preferredOrigin:g}=e2(()=>{const D=P0(l.location,n.isRtl.value),F=l.origin==="overlap"?D:l.origin==="auto"?Vi(D):P0(l.origin,n.isRtl.value);return D.side===F.side&&D.align===_i(F).align?{preferredAnchor:hd(D),preferredOrigin:hd(F)}:{preferredAnchor:D,preferredOrigin:F}}),[v,k,x,I]=["minWidth","minHeight","maxWidth","maxHeight"].map(D=>q(()=>{const F=parseFloat(l[D]);return isNaN(F)?1/0:F})),S=q(()=>{if(Array.isArray(l.offset))return l.offset;if(typeof l.offset=="string"){const D=l.offset.split(" ").map(parseFloat);return D.length<2&&D.push(0),D}return typeof l.offset=="number"?[l.offset,0]:[0,0]});let $=!1;const B=new ResizeObserver(()=>{$&&P()});_t([n.activatorEl,n.contentEl],(D,F)=>{let[X,R]=D,[H,U]=F;H&&B.unobserve(H),X&&B.observe(X),U&&B.unobserve(U),R&&B.observe(R)},{immediate:!0}),sn(()=>{B.disconnect()});function P(){if($=!1,requestAnimationFrame(()=>{requestAnimationFrame(()=>$=!0)}),!n.activatorEl.value||!n.contentEl.value)return;const D=n.activatorEl.value.getBoundingClientRect(),F=Nb(n.contentEl.value,n.isRtl.value),X=Ma(n.contentEl.value),R=12;X.length||(X.push(document.documentElement),n.contentEl.value.style.top&&n.contentEl.value.style.left||(F.x-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x")||0),F.y-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y")||0)));const H=X.reduce((st,rt)=>{const ht=rt.getBoundingClientRect(),dt=new Kr({x:rt===document.documentElement?0:ht.x,y:rt===document.documentElement?0:ht.y,width:rt.clientWidth,height:rt.clientHeight});return st?new Kr({x:Math.max(st.left,dt.left),y:Math.max(st.top,dt.top),width:Math.min(st.right,dt.right)-Math.max(st.left,dt.left),height:Math.min(st.bottom,dt.bottom)-Math.max(st.top,dt.top)}):dt},void 0);H.x+=R,H.y+=R,H.width-=R*2,H.height-=R*2;let U={anchor:c.value,origin:g.value};function W(st){const rt=new Kr(F),ht=Rd(st.anchor,D),dt=Rd(st.origin,rt);let{x:Ct,y:xt}=$b(ht,dt);switch(st.anchor.side){case"top":xt-=S.value[0];break;case"bottom":xt+=S.value[0];break;case"left":Ct-=S.value[0];break;case"right":Ct+=S.value[0];break}switch(st.anchor.align){case"top":xt-=S.value[1];break;case"bottom":xt+=S.value[1];break;case"left":Ct-=S.value[1];break;case"right":Ct+=S.value[1];break}return rt.x+=Ct,rt.y+=xt,rt.width=Math.min(rt.width,x.value),rt.height=Math.min(rt.height,I.value),{overflows:cd(rt,H),x:Ct,y:xt}}let _=0,tt=0;const nt={x:0,y:0},Y={x:!1,y:!1};let G=-1;for(;!(G++>10);){const{x:st,y:rt,overflows:ht}=W(U);_+=st,tt+=rt,F.x+=st,F.y+=rt;{const dt=dd(U.anchor),Ct=ht.x.before||ht.x.after,xt=ht.y.before||ht.y.after;let wt=!1;if(["x","y"].forEach(gt=>{if(gt==="x"&&Ct&&!Y.x||gt==="y"&&xt&&!Y.y){const It={anchor:{...U.anchor},origin:{...U.origin}},At=gt==="x"?dt==="y"?_i:Vi:dt==="y"?Vi:_i;It.anchor=At(It.anchor),It.origin=At(It.origin);const{overflows:Tt}=W(It);(Tt[gt].before<=ht[gt].before&&Tt[gt].after<=ht[gt].after||Tt[gt].before+Tt[gt].after<(ht[gt].before+ht[gt].after)/2)&&(U=It,wt=Y[gt]=!0)}}),wt)continue}ht.x.before&&(_+=ht.x.before,F.x+=ht.x.before),ht.x.after&&(_-=ht.x.after,F.x-=ht.x.after),ht.y.before&&(tt+=ht.y.before,F.y+=ht.y.before),ht.y.after&&(tt-=ht.y.after,F.y-=ht.y.after);{const dt=cd(F,H);nt.x=H.width-dt.x.before-dt.x.after,nt.y=H.height-dt.y.before-dt.y.after,_+=dt.x.before,F.x+=dt.x.before,tt+=dt.y.before,F.y+=dt.y.before}break}const et=dd(U.anchor);return Object.assign(r.value,{"--v-overlay-anchor-origin":`${U.anchor.side} ${U.anchor.align}`,transformOrigin:`${U.origin.side} ${U.origin.align}`,top:qt(Yi(tt)),left:n.isRtl.value?void 0:qt(Yi(_)),right:n.isRtl.value?qt(Yi(-_)):void 0,minWidth:qt(et==="y"?Math.min(v.value,D.width):v.value),maxWidth:qt(Td(rn(nt.x,v.value===1/0?0:v.value,x.value))),maxHeight:qt(Td(rn(nt.y,k.value===1/0?0:k.value,I.value)))}),{available:nt,contentBox:F}}return _t(()=>[c.value,g.value,l.offset,l.minWidth,l.minHeight,l.maxWidth,l.maxHeight],()=>P()),we(()=>{const D=P();if(!D)return;const{available:F,contentBox:X}=D;X.height>F.y&&requestAnimationFrame(()=>{P(),requestAnimationFrame(()=>{P()})})}),{updateLocation:P}}function Yi(n){return Math.round(n*devicePixelRatio)/devicePixelRatio}function Td(n){return Math.ceil(n*devicePixelRatio)/devicePixelRatio}let Z0=!0;const Ia=[];function Pb(n){!Z0||Ia.length?(Ia.push(n),K0()):(Z0=!1,n(),K0())}let Ed=-1;function K0(){cancelAnimationFrame(Ed),Ed=requestAnimationFrame(()=>{const n=Ia.shift();n&&n(),Ia.length?K0():Z0=!0})}const ha={none:null,close:Ob,block:Fb,reposition:Rb},Lb=mt({scrollStrategy:{type:[String,Function],default:"block",validator:n=>typeof n=="function"||n in ha}},"VOverlay-scroll-strategies");function Db(n,l){if(!ze)return;let r;bn(async()=>{r==null||r.stop(),l.isActive.value&&n.scrollStrategy&&(r=io(),await we(),r.active&&r.run(()=>{var h;typeof n.scrollStrategy=="function"?n.scrollStrategy(l,n,r):(h=ha[n.scrollStrategy])==null||h.call(ha,l,n,r)}))}),sn(()=>{r==null||r.stop()})}function Ob(n){function l(r){n.isActive.value=!1}q4(n.activatorEl.value??n.contentEl.value,l)}function Fb(n,l){var v;const r=(v=n.root.value)==null?void 0:v.offsetParent,h=[...new Set([...Ma(n.activatorEl.value,l.contained?r:void 0),...Ma(n.contentEl.value,l.contained?r:void 0)])].filter(k=>!k.classList.contains("v-overlay-scroll-blocked")),c=window.innerWidth-document.documentElement.offsetWidth,g=(k=>a2(k)&&k)(r||document.documentElement);g&&n.root.value.classList.add("v-overlay--scroll-blocked"),h.forEach((k,x)=>{k.style.setProperty("--v-body-scroll-x",qt(-k.scrollLeft)),k.style.setProperty("--v-body-scroll-y",qt(-k.scrollTop)),k!==document.documentElement&&k.style.setProperty("--v-scrollbar-offset",qt(c)),k.classList.add("v-overlay-scroll-blocked")}),sn(()=>{h.forEach((k,x)=>{const I=parseFloat(k.style.getPropertyValue("--v-body-scroll-x")),S=parseFloat(k.style.getPropertyValue("--v-body-scroll-y"));k.style.removeProperty("--v-body-scroll-x"),k.style.removeProperty("--v-body-scroll-y"),k.style.removeProperty("--v-scrollbar-offset"),k.classList.remove("v-overlay-scroll-blocked"),k.scrollLeft=-I,k.scrollTop=-S}),g&&n.root.value.classList.remove("v-overlay--scroll-blocked")})}function Rb(n,l,r){let h=!1,c=-1,g=-1;function v(k){Pb(()=>{var S,$;const x=performance.now();($=(S=n.updateLocation).value)==null||$.call(S,k),h=(performance.now()-x)/(1e3/60)>2})}g=(typeof requestIdleCallback>"u"?k=>k():requestIdleCallback)(()=>{r.run(()=>{q4(n.activatorEl.value??n.contentEl.value,k=>{h?(cancelAnimationFrame(c),c=requestAnimationFrame(()=>{c=requestAnimationFrame(()=>{v(k)})})):v(k)})})}),sn(()=>{typeof cancelIdleCallback<"u"&&cancelIdleCallback(g),cancelAnimationFrame(c)})}function q4(n,l){const r=[document,...Ma(n)];r.forEach(h=>{h.addEventListener("scroll",l,{passive:!0})}),sn(()=>{r.forEach(h=>{h.removeEventListener("scroll",l)})})}const Q0=Symbol.for("vuetify:v-menu"),Y4=mt({closeDelay:[Number,String],openDelay:[Number,String]},"delay");function U4(n,l){const r={},h=c=>()=>{if(!ze)return Promise.resolve(!0);const g=c==="openDelay";return r.closeDelay&&window.clearTimeout(r.closeDelay),delete r.closeDelay,r.openDelay&&window.clearTimeout(r.openDelay),delete r.openDelay,new Promise(v=>{const k=parseInt(n[c]??0,10);r[c]=window.setTimeout(()=>{l==null||l(g),v(g)},k)})};return{runCloseDelay:h("closeDelay"),runOpenDelay:h("openDelay")}}const Tb=mt({activator:[String,Object],activatorProps:{type:Object,default:()=>({})},openOnClick:{type:Boolean,default:void 0},openOnHover:Boolean,openOnFocus:{type:Boolean,default:void 0},closeOnContentClick:Boolean,...Y4()},"VOverlay-activator");function Eb(n,l){let{isActive:r,isTop:h}=l;const c=Lt();let g=!1,v=!1,k=!0;const x=q(()=>n.openOnFocus||n.openOnFocus==null&&n.openOnHover),I=q(()=>n.openOnClick||n.openOnClick==null&&!n.openOnHover&&!x.value),{runOpenDelay:S,runCloseDelay:$}=U4(n,U=>{U===(n.openOnHover&&g||x.value&&v)&&!(n.openOnHover&&r.value&&!h.value)&&(r.value!==U&&(k=!0),r.value=U)}),B={onClick:U=>{U.stopPropagation(),c.value=U.currentTarget||U.target,r.value=!r.value},onMouseenter:U=>{var W;(W=U.sourceCapabilities)!=null&&W.firesTouchEvents||(g=!0,c.value=U.currentTarget||U.target,S())},onMouseleave:U=>{g=!1,$()},onFocus:U=>{ro(U.target,":focus-visible")!==!1&&(v=!0,U.stopPropagation(),c.value=U.currentTarget||U.target,S())},onBlur:U=>{v=!1,U.stopPropagation(),$()}},P=q(()=>{const U={};return I.value&&(U.onClick=B.onClick),n.openOnHover&&(U.onMouseenter=B.onMouseenter,U.onMouseleave=B.onMouseleave),x.value&&(U.onFocus=B.onFocus,U.onBlur=B.onBlur),U}),D=q(()=>{const U={};if(n.openOnHover&&(U.onMouseenter=()=>{g=!0,S()},U.onMouseleave=()=>{g=!1,$()}),x.value&&(U.onFocusin=()=>{v=!0,S()},U.onFocusout=()=>{v=!1,$()}),n.closeOnContentClick){const W=de(Q0,null);U.onClick=()=>{r.value=!1,W==null||W.closeParents()}}return U}),F=q(()=>{const U={};return n.openOnHover&&(U.onMouseenter=()=>{k&&(g=!0,k=!1,S())},U.onMouseleave=()=>{g=!1,$()}),U});_t(h,U=>{U&&(n.openOnHover&&!g&&(!x.value||!v)||x.value&&!v&&(!n.openOnHover||!g))&&(r.value=!1)});const X=Lt();bn(()=>{X.value&&we(()=>{c.value=N0(X.value)})});const R=Ye("useActivator");let H;return _t(()=>!!n.activator,U=>{U&&ze?(H=io(),H.run(()=>{Vb(n,R,{activatorEl:c,activatorEvents:P})})):H&&H.stop()},{flush:"post",immediate:!0}),sn(()=>{H==null||H.stop()}),{activatorEl:c,activatorRef:X,activatorEvents:P,contentEvents:D,scrimEvents:F}}function Vb(n,l,r){let{activatorEl:h,activatorEvents:c}=r;_t(()=>n.activator,(x,I)=>{if(I&&x!==I){const S=k(I);S&&v(S)}x&&we(()=>g())},{immediate:!0}),_t(()=>n.activatorProps,()=>{g()}),sn(()=>{v()});function g(){let x=arguments.length>0&&arguments[0]!==void 0?arguments[0]:k(),I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:n.activatorProps;x&&Dk(x,o(c.value,I))}function v(){let x=arguments.length>0&&arguments[0]!==void 0?arguments[0]:k(),I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:n.activatorProps;x&&Ok(x,o(c.value,I))}function k(){var S,$;let x=arguments.length>0&&arguments[0]!==void 0?arguments[0]:n.activator,I;if(x)if(x==="parent"){let B=($=(S=l==null?void 0:l.proxy)==null?void 0:S.$el)==null?void 0:$.parentNode;for(;B.hasAttribute("data-no-activator");)B=B.parentNode;I=B}else typeof x=="string"?I=document.querySelector(x):"$el"in x?I=x.$el:I=x;return h.value=(I==null?void 0:I.nodeType)===Node.ELEMENT_NODE?I:null,h.value}}function G4(){if(!ze)return Wt(!1);const{ssr:n}=Ar();if(n){const l=Wt(!1);return Ve(()=>{l.value=!0}),l}else return Wt(!0)}const ui=mt({eager:Boolean},"lazy");function C2(n,l){const r=Wt(!1),h=q(()=>r.value||n.eager||l.value);_t(l,()=>r.value=!0);function c(){n.eager||(r.value=!1)}return{isBooted:r,hasContent:h,onAfterLeave:c}}function zo(){const l=Ye("useScopeId").vnode.scopeId;return{scopeId:l?{[l]:""}:void 0}}const Vd=Symbol.for("vuetify:stack"),Ho=Ze([]);function _b(n,l,r){const h=Ye("useStack"),c=!r,g=de(Vd,void 0),v=Ze({activeChildren:new Set});Se(Vd,v);const k=Wt(+l.value);Zl(n,()=>{var $;const S=($=Ho.at(-1))==null?void 0:$[1];k.value=S?S+10:+l.value,c&&Ho.push([h.uid,k.value]),g==null||g.activeChildren.add(h.uid),sn(()=>{if(c){const B=le(Ho).findIndex(P=>P[0]===h.uid);Ho.splice(B,1)}g==null||g.activeChildren.delete(h.uid)})});const x=Wt(!0);c&&bn(()=>{var $;const S=(($=Ho.at(-1))==null?void 0:$[0])===h.uid;setTimeout(()=>x.value=S)});const I=q(()=>!v.activeChildren.size);return{globalTop:uo(x),localTop:I,stackStyles:q(()=>({zIndex:k.value}))}}function Wb(n){return{teleportTarget:q(()=>{const r=n.value;if(r===!0||!ze)return;const h=r===!1?document.body:typeof r=="string"?document.querySelector(r):r;if(h==null)return;let c=h.querySelector(":scope > .v-overlay-container");return c||(c=document.createElement("div"),c.className="v-overlay-container",h.appendChild(c)),c})}}function Xb(){return!0}function Z4(n,l,r){if(!n||K4(n,r)===!1)return!1;const h=Wp(l);if(typeof ShadowRoot<"u"&&h instanceof ShadowRoot&&h.host===n.target)return!1;const c=(typeof r.value=="object"&&r.value.include||(()=>[]))();return c.push(l),!c.some(g=>g==null?void 0:g.contains(n.target))}function K4(n,l){return(typeof l.value=="object"&&l.value.closeConditional||Xb)(n)}function qb(n,l,r){const h=typeof r.value=="function"?r.value:r.value.handler;l._clickOutside.lastMousedownWasOutside&&Z4(n,l,r)&&setTimeout(()=>{K4(n,r)&&h&&h(n)},0)}function _d(n,l){const r=Wp(n);l(document),typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&l(r)}const Q4={mounted(n,l){const r=c=>qb(c,n,l),h=c=>{n._clickOutside.lastMousedownWasOutside=Z4(c,n,l)};_d(n,c=>{c.addEventListener("click",r,!0),c.addEventListener("mousedown",h,!0)}),n._clickOutside||(n._clickOutside={lastMousedownWasOutside:!1}),n._clickOutside[l.instance.$.uid]={onClick:r,onMousedown:h}},unmounted(n,l){n._clickOutside&&(_d(n,r=>{var g;if(!r||!((g=n._clickOutside)!=null&&g[l.instance.$.uid]))return;const{onClick:h,onMousedown:c}=n._clickOutside[l.instance.$.uid];r.removeEventListener("click",h,!0),r.removeEventListener("mousedown",c,!0)}),delete n._clickOutside[l.instance.$.uid])}};function Yb(n){const{modelValue:l,color:r,...h}=n;return t(Zn,{name:"fade-transition",appear:!0},{default:()=>[n.modelValue&&t("div",o({class:["v-overlay__scrim",n.color.backgroundColorClasses.value],style:n.color.backgroundColorStyles.value},h),null)]})}const Bs=mt({absolute:Boolean,attach:[Boolean,String,Object],closeOnBack:{type:Boolean,default:!0},contained:Boolean,contentClass:null,contentProps:null,disabled:Boolean,noClickAnimation:Boolean,modelValue:Boolean,persistent:Boolean,scrim:{type:[Boolean,String],default:!0},zIndex:{type:[Number,String],default:2e3},...Tb(),...Xt(),...Tn(),...ui(),...Ab(),...Lb(),...ue(),...Sl()},"VOverlay"),xl=Bt()({name:"VOverlay",directives:{ClickOutside:Q4},inheritAttrs:!1,props:{_disableGlobalStack:Boolean,...Bs()},emits:{"click:outside":n=>!0,"update:modelValue":n=>!0,afterLeave:()=>!0},setup(n,l){let{slots:r,attrs:h,emit:c}=l;const g=ne(n,"modelValue"),v=q({get:()=>g.value,set:It=>{It&&n.disabled||(g.value=It)}}),{teleportTarget:k}=Wb(q(()=>n.attach||n.contained)),{themeClasses:x}=ve(n),{rtlClasses:I,isRtl:S}=Ue(),{hasContent:$,onAfterLeave:B}=C2(n,v),P=Pe(q(()=>typeof n.scrim=="string"?n.scrim:null)),{globalTop:D,localTop:F,stackStyles:X}=_b(v,Ht(n,"zIndex"),n._disableGlobalStack),{activatorEl:R,activatorRef:H,activatorEvents:U,contentEvents:W,scrimEvents:_}=Eb(n,{isActive:v,isTop:F}),{dimensionStyles:tt}=En(n),nt=G4(),{scopeId:Y}=zo();_t(()=>n.disabled,It=>{It&&(v.value=!1)});const G=Lt(),et=Lt(),{contentStyles:st,updateLocation:rt}=Bb(n,{isRtl:S,contentEl:et,activatorEl:R,isActive:v});Db(n,{root:G,contentEl:et,activatorEl:R,isActive:v,updateLocation:rt});function ht(It){c("click:outside",It),n.persistent?gt():v.value=!1}function dt(){return v.value&&D.value}ze&&_t(v,It=>{It?window.addEventListener("keydown",Ct):window.removeEventListener("keydown",Ct)},{immediate:!0});function Ct(It){var At,Tt;It.key==="Escape"&&D.value&&(n.persistent?gt():(v.value=!1,(At=et.value)!=null&&At.contains(document.activeElement)&&((Tt=R.value)==null||Tt.focus())))}const xt=u4();Zl(()=>n.closeOnBack,()=>{j7(xt,It=>{D.value&&v.value?(It(!1),n.persistent?gt():v.value=!1):It()})});const wt=Lt();_t(()=>v.value&&(n.absolute||n.contained)&&k.value==null,It=>{if(It){const At=s2(G.value);At&&At!==document.scrollingElement&&(wt.value=At.scrollTop)}});function gt(){n.noClickAnimation||et.value&&ur(et.value,[{transformOrigin:"center"},{transform:"scale(1.03)"},{transformOrigin:"center"}],{duration:150,easing:as})}return Dt(()=>{var It;return t(Kt,null,[(It=r.activator)==null?void 0:It.call(r,{isActive:v.value,props:o({ref:H},U.value,n.activatorProps)}),nt.value&&$.value&&t(ou,{disabled:!k.value,to:k.value},{default:()=>[t("div",o({class:["v-overlay",{"v-overlay--absolute":n.absolute||n.contained,"v-overlay--active":v.value,"v-overlay--contained":n.contained},x.value,I.value,n.class],style:[X.value,{top:qt(wt.value)},n.style],ref:G},Y,h),[t(Yb,o({color:P,modelValue:v.value&&!!n.scrim},_.value),null),t(Un,{appear:!0,persisted:!0,transition:n.transition,target:R.value,onAfterLeave:()=>{B(),c("afterLeave")}},{default:()=>{var At;return[$e(t("div",o({ref:et,class:["v-overlay__content",n.contentClass],style:[tt.value,st.value]},W.value,n.contentProps),[(At=r.default)==null?void 0:At.call(r,{isActive:v})]),[[Dn,v.value],[Mn("click-outside"),{handler:ht,closeConditional:dt,include:()=>[R.value]}]])]}})])]})])}),{activatorEl:R,animateClick:gt,contentEl:et,globalTop:D,localTop:F,updateLocation:rt}}}),Ui=Symbol("Forwarded refs");function Gi(n,l){let r=n;for(;r;){const h=Reflect.getOwnPropertyDescriptor(r,l);if(h)return h;r=Object.getPrototypeOf(r)}}function Jn(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{scopeId:c}=zo(),g=hn(),v=q(()=>n.id||`v-menu-${g}`),k=Lt(),x=de(Q0,null),I=Wt(0);Se(Q0,{register(){++I.value},unregister(){--I.value},closeParents(){setTimeout(()=>{I.value||(h.value=!1,x==null||x.closeParents())},40)}});async function S(F){var H,U,W;const X=F.relatedTarget,R=F.target;await we(),h.value&&X!==R&&((H=k.value)!=null&&H.contentEl)&&((U=k.value)!=null&&U.globalTop)&&![document,k.value.contentEl].includes(R)&&!k.value.contentEl.contains(R)&&((W=ss(k.value.contentEl)[0])==null||W.focus())}_t(h,F=>{F?(x==null||x.register(),document.addEventListener("focusin",S,{once:!0})):(x==null||x.unregister(),document.removeEventListener("focusin",S))});function $(){x==null||x.closeParents()}function B(F){var X,R,H;n.disabled||F.key==="Tab"&&(Hp(ss((X=k.value)==null?void 0:X.contentEl,!1),F.shiftKey?"prev":"next",W=>W.tabIndex>=0)||(h.value=!1,(H=(R=k.value)==null?void 0:R.activatorEl)==null||H.focus()))}function P(F){var R;if(n.disabled)return;const X=(R=k.value)==null?void 0:R.contentEl;X&&h.value?F.key==="ArrowDown"?(F.preventDefault(),ka(X,"next")):F.key==="ArrowUp"&&(F.preventDefault(),ka(X,"prev")):["ArrowDown","ArrowUp"].includes(F.key)&&(h.value=!0,F.preventDefault(),setTimeout(()=>setTimeout(()=>P(F))))}const D=q(()=>o({"aria-haspopup":"menu","aria-expanded":String(h.value),"aria-owns":v.value,onKeydown:P},n.activatorProps));return Dt(()=>{const[F]=xl.filterProps(n);return t(xl,o({ref:k,class:["v-menu",n.class],style:n.style},F,{modelValue:h.value,"onUpdate:modelValue":X=>h.value=X,absolute:!0,activatorProps:D.value,"onClick:outside":$,onKeydown:B},c),{activator:r.activator,default:function(){for(var X=arguments.length,R=new Array(X),H=0;H{var U;return[(U=r.default)==null?void 0:U.call(r,...R)]}})}})}),Jn({id:v,ΨopenChildren:I},k)}});const Gb=mt({active:Boolean,max:[Number,String],value:{type:[Number,String],default:0},...Xt(),...Sl({transition:{component:p2}})},"VCounter"),gi=Bt()({name:"VCounter",functional:!0,props:Gb(),setup(n,l){let{slots:r}=l;const h=q(()=>n.max?`${n.value} / ${n.max}`:String(n.value));return Dt(()=>t(Un,{transition:n.transition},{default:()=>[$e(t("div",{class:["v-counter",n.class],style:n.style},[r.default?r.default({counter:h.value,max:n.max,value:n.value}):h.value]),[[Dn,n.active]])]})),{}}});const Zb=mt({floating:Boolean,...Xt()},"VFieldLabel"),Lo=Bt()({name:"VFieldLabel",props:Zb(),setup(n,l){let{slots:r}=l;return Dt(()=>t(xo,{class:["v-field-label",{"v-field-label--floating":n.floating},n.class],style:n.style,"aria-hidden":n.floating||void 0},r)),{}}}),Kb=["underlined","outlined","filled","solo","solo-inverted","solo-filled","plain"],wi=mt({appendInnerIcon:ee,bgColor:String,clearable:Boolean,clearIcon:{type:ee,default:"$clear"},active:Boolean,centerAffix:{type:Boolean,default:void 0},color:String,baseColor:String,dirty:Boolean,disabled:{type:Boolean,default:null},error:Boolean,flat:Boolean,label:String,persistentClear:Boolean,prependInnerIcon:ee,reverse:Boolean,singleLine:Boolean,variant:{type:String,default:"filled",validator:n=>Kb.includes(n)},"onClick:clear":ol(),"onClick:appendInner":ol(),"onClick:prependInner":ol(),...Xt(),...b2(),...Ce(),...ue()},"VField"),Hs=Bt()({name:"VField",inheritAttrs:!1,props:{id:String,...hi(),...wi()},emits:{"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{themeClasses:g}=ve(n),{loaderClasses:v}=ai(n),{focusClasses:k,isFocused:x,focus:I,blur:S}=er(n),{InputIcon:$}=y4(n),{roundedClasses:B}=Ne(n),{rtlClasses:P}=Ue(),D=q(()=>n.dirty||n.active),F=q(()=>!n.singleLine&&!!(n.label||c.label)),X=hn(),R=q(()=>n.id||`input-${X}`),H=q(()=>`${R.value}-messages`),U=Lt(),W=Lt(),_=Lt(),tt=q(()=>["plain","underlined"].includes(n.variant)),{backgroundColorClasses:nt,backgroundColorStyles:Y}=Pe(Ht(n,"bgColor")),{textColorClasses:G,textColorStyles:et}=an(q(()=>n.error||n.disabled?void 0:D.value&&x.value?n.color:n.baseColor));_t(D,ht=>{if(F.value){const dt=U.value.$el,Ct=W.value.$el;requestAnimationFrame(()=>{const xt=l2(dt),wt=Ct.getBoundingClientRect(),gt=wt.x-xt.x,It=wt.y-xt.y-(xt.height/2-wt.height/2),At=wt.width/.75,Tt=Math.abs(At-xt.width)>1?{maxWidth:qt(At)}:void 0,Ft=getComputedStyle(dt),Qt=getComputedStyle(Ct),Jt=parseFloat(Ft.transitionDuration)*1e3||150,Et=parseFloat(Qt.getPropertyValue("--v-field-label-scale")),ut=Qt.getPropertyValue("color");dt.style.visibility="visible",Ct.style.visibility="hidden",ur(dt,{transform:`translate(${gt}px, ${It}px) scale(${Et})`,color:ut,...Tt},{duration:Jt,easing:as,direction:ht?"normal":"reverse"}).finished.then(()=>{dt.style.removeProperty("visibility"),Ct.style.removeProperty("visibility")})})}},{flush:"post"});const st=q(()=>({isActive:D,isFocused:x,controlRef:_,blur:S,focus:I}));function rt(ht){ht.target!==document.activeElement&&ht.preventDefault()}return Dt(()=>{var gt,It,At;const ht=n.variant==="outlined",dt=c["prepend-inner"]||n.prependInnerIcon,Ct=!!(n.clearable||c.clear),xt=!!(c["append-inner"]||n.appendInnerIcon||Ct),wt=c.label?c.label({...st.value,label:n.label,props:{for:R.value}}):n.label;return t("div",o({class:["v-field",{"v-field--active":D.value,"v-field--appended":xt,"v-field--center-affix":n.centerAffix??!tt.value,"v-field--disabled":n.disabled,"v-field--dirty":n.dirty,"v-field--error":n.error,"v-field--flat":n.flat,"v-field--has-background":!!n.bgColor,"v-field--persistent-clear":n.persistentClear,"v-field--prepended":dt,"v-field--reverse":n.reverse,"v-field--single-line":n.singleLine,"v-field--no-label":!wt,[`v-field--variant-${n.variant}`]:!0},g.value,nt.value,k.value,v.value,B.value,P.value,n.class],style:[Y.value,n.style],onClick:rt},r),[t("div",{class:"v-field__overlay"},null),t(M2,{name:"v-field",active:!!n.loading,color:n.error?"error":typeof n.loading=="string"?n.loading:n.color},{default:c.loader}),dt&&t("div",{key:"prepend",class:"v-field__prepend-inner"},[n.prependInnerIcon&&t($,{key:"prepend-icon",name:"prependInner"},null),(gt=c["prepend-inner"])==null?void 0:gt.call(c,st.value)]),t("div",{class:"v-field__field","data-no-activator":""},[["filled","solo","solo-inverted","solo-filled"].includes(n.variant)&&F.value&&t(Lo,{key:"floating-label",ref:W,class:[G.value],floating:!0,for:R.value,style:et.value},{default:()=>[wt]}),t(Lo,{ref:U,for:R.value},{default:()=>[wt]}),(It=c.default)==null?void 0:It.call(c,{...st.value,props:{id:R.value,class:"v-field__input","aria-describedby":H.value},focus:I,blur:S})]),Ct&&t(g2,{key:"clear"},{default:()=>[$e(t("div",{class:"v-field__clearable",onMousedown:Tt=>{Tt.preventDefault(),Tt.stopPropagation()}},[c.clear?c.clear():t($,{name:"clear"},null)]),[[Dn,n.dirty]])]}),xt&&t("div",{key:"append",class:"v-field__append-inner"},[(At=c["append-inner"])==null?void 0:At.call(c,st.value),n.appendInnerIcon&&t($,{key:"append-icon",name:"appendInner"},null)]),t("div",{class:["v-field__outline",G.value],style:et.value},[ht&&t(Kt,null,[t("div",{class:"v-field__outline__start"},null),F.value&&t("div",{class:"v-field__outline__notch"},[t(Lo,{ref:W,floating:!0,for:R.value},{default:()=>[wt]})]),t("div",{class:"v-field__outline__end"},null)]),tt.value&&F.value&&t(Lo,{ref:W,floating:!0,for:R.value},{default:()=>[wt]})])])}),{controlRef:_}}});function S2(n){const l=Object.keys(Hs.props).filter(r=>!t2(r)&&r!=="class"&&r!=="style");return Mr(n,l)}const Qb=["color","file","time","date","datetime-local","week","month"],vi=mt({autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,suffix:String,role:String,type:{type:String,default:"text"},modelModifiers:Object,...Al(),...wi()},"VTextField"),Ir=Bt()({name:"VTextField",directives:{Intersect:si},inheritAttrs:!1,props:vi(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const g=ne(n,"modelValue"),{isFocused:v,focus:k,blur:x}=er(n),I=q(()=>typeof n.counterValue=="function"?n.counterValue(g.value):(g.value??"").toString().length),S=q(()=>{if(r.maxlength)return r.maxlength;if(!(!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"))return n.counter}),$=q(()=>["plain","underlined"].includes(n.variant));function B(tt,nt){var Y,G;!n.autofocus||!tt||(G=(Y=nt[0].target)==null?void 0:Y.focus)==null||G.call(Y)}const P=Lt(),D=Lt(),F=Lt(),X=q(()=>Qb.includes(n.type)||n.persistentPlaceholder||v.value||n.active);function R(){var tt;F.value!==document.activeElement&&((tt=F.value)==null||tt.focus()),v.value||k()}function H(tt){h("mousedown:control",tt),tt.target!==F.value&&(R(),tt.preventDefault())}function U(tt){R(),h("click:control",tt)}function W(tt){tt.stopPropagation(),R(),we(()=>{g.value=null,n2(n["onClick:clear"],tt)})}function _(tt){var Y;const nt=tt.target;if(g.value=nt.value,(Y=n.modelModifiers)!=null&&Y.trim&&["text","search","password","tel","url"].includes(n.type)){const G=[nt.selectionStart,nt.selectionEnd];we(()=>{nt.selectionStart=G[0],nt.selectionEnd=G[1]})}}return Dt(()=>{const tt=!!(c.counter||n.counter||n.counterValue),nt=!!(tt||c.details),[Y,G]=$r(r),[{modelValue:et,...st}]=Ke.filterProps(n),[rt]=S2(n);return t(Ke,o({ref:P,modelValue:g.value,"onUpdate:modelValue":ht=>g.value=ht,class:["v-text-field",{"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-text-field--plain-underlined":["plain","underlined"].includes(n.variant)},n.class],style:n.style},Y,st,{centerAffix:!$.value,focused:v.value}),{...c,default:ht=>{let{id:dt,isDisabled:Ct,isDirty:xt,isReadonly:wt,isValid:gt}=ht;return t(Hs,o({ref:D,onMousedown:H,onClick:U,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"],role:n.role},rt,{id:dt.value,active:X.value||xt.value,dirty:xt.value||n.dirty,disabled:Ct.value,focused:v.value,error:gt.value===!1}),{...c,default:It=>{let{props:{class:At,...Tt}}=It;const Ft=$e(t("input",o({ref:F,value:g.value,onInput:_,autofocus:n.autofocus,readonly:wt.value,disabled:Ct.value,name:n.name,placeholder:n.placeholder,size:1,type:n.type,onFocus:R,onBlur:x},Tt,G),null),[[Mn("intersect"),{handler:B},null,{once:!0}]]);return t(Kt,null,[n.prefix&&t("span",{class:"v-text-field__prefix"},[t("span",{class:"v-text-field__prefix__text"},[n.prefix])]),c.default?t("div",{class:At,"data-no-activator":""},[c.default(),Ft]):Gn(Ft,{class:At}),n.suffix&&t("span",{class:"v-text-field__suffix"},[t("span",{class:"v-text-field__suffix__text"},[n.suffix])])])}})},details:nt?ht=>{var dt;return t(Kt,null,[(dt=c.details)==null?void 0:dt.call(c,ht),tt&&t(Kt,null,[t("span",null,null),t(gi,{active:n.persistentCounter||v.value,value:I.value,max:S.value},c.counter)])])}:void 0})}),Jn({},P,D,F)}});const Jb=mt({renderless:Boolean,...Xt()},"VVirtualScrollItem"),t8=Bt()({name:"VVirtualScrollItem",inheritAttrs:!1,props:Jb(),emits:{"update:height":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{resizeRef:g,contentRect:v}=sl(void 0,"border");_t(()=>{var k;return(k=v.value)==null?void 0:k.height},k=>{k!=null&&h("update:height",k)}),Dt(()=>{var k,x;return n.renderless?t(Kt,null,[(k=c.default)==null?void 0:k.call(c,{itemRef:g})]):t("div",o({ref:g,class:["v-virtual-scroll__item",n.class],style:n.style},r),[(x=c.default)==null?void 0:x.call(c)])})}}),Wd=-1,Xd=1,e8=mt({itemHeight:{type:[Number,String],default:48}},"virtual");function n8(n,l,r){const h=Wt(0),c=Wt(n.itemHeight),g=q({get:()=>parseInt(c.value??0,10),set(nt){c.value=nt}}),v=Lt(),{resizeRef:k,contentRect:x}=sl();bn(()=>{k.value=v.value});const I=Ar(),S=new Map;let $=Array.from({length:l.value.length});const B=q(()=>{const nt=(!x.value||v.value===document.documentElement?I.height.value:x.value.height)-((r==null?void 0:r.value)??0);return Math.ceil(nt/g.value*1.7+1)});function P(nt,Y){g.value=Math.max(g.value,Y),$[nt]=Y,S.set(l.value[nt],Y)}function D(nt){return $.slice(0,nt).reduce((Y,G)=>Y+(G||g.value),0)}function F(nt){const Y=l.value.length;let G=0,et=0;for(;et=ht&&(h.value=rn(rt,0,l.value.length-B.value)),X=Y}function H(nt){if(!v.value)return;const Y=D(nt);v.value.scrollTop=Y}const U=q(()=>Math.min(l.value.length,h.value+B.value)),W=q(()=>l.value.slice(h.value,U.value).map((nt,Y)=>({raw:nt,index:Y+h.value}))),_=q(()=>D(h.value)),tt=q(()=>D(l.value.length)-D(U.value));return _t(()=>l.value.length,()=>{$=gl(l.value.length).map(()=>g.value),S.forEach((nt,Y)=>{const G=l.value.indexOf(Y);G===-1?S.delete(Y):$[G]=nt})}),{containerRef:v,computedItems:W,itemHeight:g,paddingTop:_,paddingBottom:tt,scrollToIndex:H,handleScroll:R,handleItemResize:P}}const l8=mt({items:{type:Array,default:()=>[]},renderless:Boolean,...e8(),...Xt(),...Tn()},"VVirtualScroll"),fi=Bt()({name:"VVirtualScroll",props:l8(),setup(n,l){let{slots:r}=l;const h=Ye("VVirtualScroll"),{dimensionStyles:c}=En(n),{containerRef:g,handleScroll:v,handleItemResize:k,scrollToIndex:x,paddingTop:I,paddingBottom:S,computedItems:$}=n8(n,Ht(n,"items"));return Zl(()=>n.renderless,()=>{Ve(()=>{var B;g.value=s2(h.vnode.el,!0),(B=g.value)==null||B.addEventListener("scroll",v)}),sn(()=>{var B;(B=g.value)==null||B.removeEventListener("scroll",v)})}),Dt(()=>{const B=$.value.map(P=>t(t8,{key:P.index,renderless:n.renderless,"onUpdate:height":D=>k(P.index,D)},{default:D=>{var F;return(F=r.default)==null?void 0:F.call(r,{item:P.raw,index:P.index,...D})}}));return n.renderless?t(Kt,null,[t("div",{class:"v-virtual-scroll__spacer",style:{paddingTop:qt(I.value)}},null),B,t("div",{class:"v-virtual-scroll__spacer",style:{paddingBottom:qt(S.value)}},null)]):t("div",{ref:g,class:["v-virtual-scroll",n.class],onScroll:v,style:[c.value,n.style]},[t("div",{class:"v-virtual-scroll__container",style:{paddingTop:qt(I.value),paddingBottom:qt(S.value)}},[B])])}),{scrollToIndex:x}}});function $2(n,l){const r=Wt(!1);let h;function c(k){cancelAnimationFrame(h),r.value=!0,h=requestAnimationFrame(()=>{h=requestAnimationFrame(()=>{r.value=!1})})}async function g(){await new Promise(k=>requestAnimationFrame(k)),await new Promise(k=>requestAnimationFrame(k)),await new Promise(k=>requestAnimationFrame(k)),await new Promise(k=>{if(r.value){const x=_t(r,()=>{x(),k()})}else k()})}async function v(k){var S,$;if(k.key==="Tab"&&((S=l.value)==null||S.focus()),!["PageDown","PageUp","Home","End"].includes(k.key))return;const x=($=n.value)==null?void 0:$.$el;if(!x)return;(k.key==="Home"||k.key==="End")&&x.scrollTo({top:k.key==="Home"?0:x.scrollHeight,behavior:"smooth"}),await g();const I=x.querySelectorAll(":scope > :not(.v-virtual-scroll__spacer)");if(k.key==="PageDown"||k.key==="Home"){const B=x.getBoundingClientRect().top;for(const P of I)if(P.getBoundingClientRect().top>=B){P.focus();break}}else{const B=x.getBoundingClientRect().bottom;for(const P of[...I].reverse())if(P.getBoundingClientRect().bottom<=B){P.focus();break}}}return{onListScroll:c,onListKeydown:v}}const A2=mt({chips:Boolean,closableChips:Boolean,closeText:{type:String,default:"$vuetify.close"},openText:{type:String,default:"$vuetify.open"},eager:Boolean,hideNoData:Boolean,hideSelected:Boolean,menu:Boolean,menuIcon:{type:ee,default:"$dropdown"},menuProps:{type:Object},multiple:Boolean,noDataText:{type:String,default:"$vuetify.noDataText"},openOnClear:Boolean,valueComparator:{type:Function,default:Sr},itemColor:String,...V4({itemChildren:!1})},"Select"),r8=mt({...A2(),...On(vi({modelValue:null,role:"button"}),["validationValue","dirty","appendInnerIcon"]),...Sl({transition:{component:ri}})},"VSelect"),o8=Bt()({name:"VSelect",props:r8(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Rn(),c=Lt(),g=Lt(),v=Lt(),k=ne(n,"menu"),x=q({get:()=>k.value,set:wt=>{var gt;k.value&&!wt&&((gt=g.value)!=null&>.ΨopenChildren)||(k.value=wt)}}),{items:I,transformIn:S,transformOut:$}=y2(n),B=ne(n,"modelValue",[],wt=>S(wt===null?[null]:Pn(wt)),wt=>{const gt=$(wt);return n.multiple?gt:gt[0]??null}),P=di(),D=q(()=>B.value.map(wt=>I.value.find(gt=>{const It=ln(gt.raw,n.itemValue),At=ln(wt.raw,n.itemValue);return It===void 0||At===void 0?!1:n.returnObject?n.valueComparator(It,At):n.valueComparator(gt.value,wt.value)})||wt)),F=q(()=>D.value.map(wt=>wt.props.value)),X=Wt(!1),R=q(()=>x.value?n.closeText:n.openText);let H="",U;const W=q(()=>n.hideSelected?I.value.filter(wt=>!D.value.some(gt=>gt===wt)):I.value),_=q(()=>n.hideNoData&&!I.value.length||n.readonly||(P==null?void 0:P.isReadonly.value)),tt=Lt(),{onListScroll:nt,onListKeydown:Y}=$2(tt,c);function G(wt){n.openOnClear&&(x.value=!0)}function et(){_.value||(x.value=!x.value)}function st(wt){var Ft,Qt;if(!wt.key||n.readonly||P!=null&&P.isReadonly.value)return;["Enter"," ","ArrowDown","ArrowUp","Home","End"].includes(wt.key)&&wt.preventDefault(),["Enter","ArrowDown"," "].includes(wt.key)&&(x.value=!0),["Escape","Tab"].includes(wt.key)&&(x.value=!1),wt.key==="Home"?(Ft=tt.value)==null||Ft.focus("first"):wt.key==="End"&&((Qt=tt.value)==null||Qt.focus("last"));const gt=1e3;function It(Jt){const Et=Jt.key.length===1,ut=!Jt.ctrlKey&&!Jt.metaKey&&!Jt.altKey;return Et&&ut}if(n.multiple||!It(wt))return;const At=performance.now();At-U>gt&&(H=""),H+=wt.key.toLowerCase(),U=At;const Tt=I.value.find(Jt=>Jt.title.toLowerCase().startsWith(H));Tt!==void 0&&(B.value=[Tt])}function rt(wt){if(n.multiple){const gt=F.value.findIndex(It=>n.valueComparator(It,wt.value));if(gt===-1)B.value=[...B.value,wt];else{const It=[...B.value];It.splice(gt,1),B.value=It}}else B.value=[wt],x.value=!1}function ht(wt){var gt;(gt=tt.value)!=null&>.$el.contains(wt.relatedTarget)||(x.value=!1)}function dt(){var wt;X.value&&((wt=c.value)==null||wt.focus())}function Ct(wt){X.value=!0}function xt(wt){if(wt==null)B.value=[];else if(ro(c.value,":autofill")||ro(c.value,":-webkit-autofill")){const gt=I.value.find(It=>It.title===wt);gt&&rt(gt)}else c.value&&(c.value.value="")}return _t(x,()=>{if(!n.hideSelected&&x.value&&D.value.length){const wt=W.value.findIndex(gt=>D.value.some(It=>gt.value===It.value));ze&&window.requestAnimationFrame(()=>{var gt;wt>=0&&((gt=v.value)==null||gt.scrollToIndex(wt))})}}),Dt(()=>{const wt=!!(n.chips||r.chip),gt=!!(!n.hideNoData||W.value.length||r["prepend-item"]||r["append-item"]||r["no-data"]),It=B.value.length>0,[At]=Ir.filterProps(n),Tt=It||!X.value&&n.label&&!n.persistentPlaceholder?void 0:n.placeholder;return t(Ir,o({ref:c},At,{modelValue:B.value.map(Ft=>Ft.props.value).join(", "),"onUpdate:modelValue":xt,focused:X.value,"onUpdate:focused":Ft=>X.value=Ft,validationValue:B.externalValue,dirty:It,class:["v-select",{"v-select--active-menu":x.value,"v-select--chips":!!n.chips,[`v-select--${n.multiple?"multiple":"single"}`]:!0,"v-select--selected":B.value.length,"v-select--selection-slot":!!r.selection},n.class],style:n.style,inputmode:"none",placeholder:Tt,"onClick:clear":G,"onMousedown:control":et,onBlur:ht,onKeydown:st,"aria-label":h(R.value),title:h(R.value)}),{...r,default:()=>t(Kt,null,[t(pi,o({ref:g,modelValue:x.value,"onUpdate:modelValue":Ft=>x.value=Ft,activator:"parent",contentClass:"v-select__content",disabled:_.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:dt},n.menuProps),{default:()=>[gt&&t(ci,{ref:tt,selected:F.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:Ft=>Ft.preventDefault(),onKeydown:Y,onFocusin:Ct,onScrollPassive:nt,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var Ft,Qt,Jt;return[(Ft=r["prepend-item"])==null?void 0:Ft.call(r),!W.value.length&&!n.hideNoData&&(((Qt=r["no-data"])==null?void 0:Qt.call(r))??t(Ml,{title:h(n.noDataText)},null)),t(fi,{ref:v,renderless:!0,items:W.value},{default:Et=>{var bt;let{item:ut,index:pt,itemRef:Nt}=Et;const jt=o(ut.props,{ref:Nt,key:pt,onClick:()=>rt(ut)});return((bt=r.item)==null?void 0:bt.call(r,{item:ut,index:pt,props:jt}))??t(Ml,jt,{prepend:ft=>{let{isSelected:J}=ft;return t(Kt,null,[n.multiple&&!n.hideSelected?t(ao,{key:ut.value,modelValue:J,ripple:!1,tabindex:"-1"},null):void 0,ut.props.prependIcon&&t(xe,{icon:ut.props.prependIcon},null)])}})}}),(Jt=r["append-item"])==null?void 0:Jt.call(r)]}})]}),D.value.map((Ft,Qt)=>{var ut;function Jt(pt){pt.stopPropagation(),pt.preventDefault(),rt(Ft)}const Et={"onClick:close":Jt,onMousedown(pt){pt.preventDefault(),pt.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:Ft.value,class:"v-select__selection"},[wt?r.chip?t(ke,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:Ft.title}}},{default:()=>{var pt;return[(pt=r.chip)==null?void 0:pt.call(r,{item:Ft,index:Qt,props:Et})]}}):t(As,o({key:"chip",closable:n.closableChips,size:"small",text:Ft.title},Et),null):((ut=r.selection)==null?void 0:ut.call(r,{item:Ft,index:Qt}))??t("span",{class:"v-select__selection-text"},[Ft.title,n.multiple&&Qtn==null||l==null?-1:n.toString().toLocaleLowerCase().indexOf(l.toString().toLocaleLowerCase()),J4=mt({customFilter:Function,customKeyFilter:Object,filterKeys:[Array,String],filterMode:{type:String,default:"intersection"},noFilter:Boolean},"filter");function a8(n,l,r){var k;const h=[],c=(r==null?void 0:r.default)??s8,g=r!=null&&r.filterKeys?Pn(r.filterKeys):!1,v=Object.keys((r==null?void 0:r.customKeyFilter)??{}).length;if(!(n!=null&&n.length))return h;t:for(let x=0;xh!=null&&h.transform?je(l).map(h==null?void 0:h.transform):je(l));bn(()=>{const x=typeof r=="function"?r():je(r),I=typeof x!="string"&&typeof x!="number"?"":String(x),S=a8(v.value,I,{customKeyFilter:n.customKeyFilter,default:n.customFilter,filterKeys:n.filterKeys,filterMode:n.filterMode,noFilter:n.noFilter}),$=je(l),B=[],P=new Map;S.forEach(D=>{let{index:F,matches:X}=D;const R=$[F];B.push(R),P.set(R.value,X)}),c.value=B,g.value=P});function k(x){return g.value.get(x.value)}return{filteredItems:c,filteredMatches:g,getMatches:k}}function i8(n,l,r){if(l==null)return n;if(Array.isArray(l))throw new Error("Multiple matches is not implemented");return typeof l=="number"&&~l?t(Kt,null,[t("span",{class:"v-autocomplete__unmask"},[n.substr(0,l)]),t("span",{class:"v-autocomplete__mask"},[n.substr(l,r)]),t("span",{class:"v-autocomplete__unmask"},[n.substr(l+r)])]):n}const h8=mt({autoSelectFirst:{type:[Boolean,String]},search:String,...J4({filterKeys:["title"]}),...A2(),...On(vi({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...Sl({transition:!1})},"VAutocomplete"),d8=Bt()({name:"VAutocomplete",props:h8(),emits:{"update:focused":n=>!0,"update:search":n=>!0,"update:modelValue":n=>!0,"update:menu":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Rn(),c=Lt(),g=Wt(!1),v=Wt(!0),k=Wt(!1),x=Lt(),I=Lt(),S=ne(n,"menu"),$=q({get:()=>S.value,set:bt=>{var ft;S.value&&!bt&&((ft=x.value)!=null&&ft.ΨopenChildren)||(S.value=bt)}}),B=Wt(-1),P=q(()=>{var bt;return(bt=c.value)==null?void 0:bt.color}),D=q(()=>$.value?n.closeText:n.openText),{items:F,transformIn:X,transformOut:R}=y2(n),{textColorClasses:H,textColorStyles:U}=an(P),W=ne(n,"search",""),_=ne(n,"modelValue",[],bt=>X(bt===null?[null]:Pn(bt)),bt=>{const ft=R(bt);return n.multiple?ft:ft[0]??null}),tt=di(),{filteredItems:nt,getMatches:Y}=tg(n,F,()=>v.value?"":W.value),G=q(()=>_.value.map(bt=>F.value.find(ft=>{const J=ln(ft.raw,n.itemValue),lt=ln(bt.raw,n.itemValue);return J===void 0||lt===void 0?!1:n.returnObject?n.valueComparator(J,lt):n.valueComparator(ft.value,bt.value)})||bt)),et=q(()=>n.hideSelected?nt.value.filter(bt=>!G.value.some(ft=>ft.value===bt.value)):nt.value),st=q(()=>G.value.map(bt=>bt.props.value)),rt=q(()=>G.value[B.value]),ht=q(()=>{var ft;return(n.autoSelectFirst===!0||n.autoSelectFirst==="exact"&&W.value===((ft=et.value[0])==null?void 0:ft.title))&&et.value.length>0&&!v.value&&!k.value}),dt=q(()=>n.hideNoData&&!F.value.length||n.readonly||(tt==null?void 0:tt.isReadonly.value)),Ct=Lt(),{onListScroll:xt,onListKeydown:wt}=$2(Ct,c);function gt(bt){n.openOnClear&&($.value=!0),W.value=""}function It(){dt.value||($.value=!0)}function At(bt){dt.value||(g.value&&(bt.preventDefault(),bt.stopPropagation()),$.value=!$.value)}function Tt(bt){var lt,at,ct;if(n.readonly||tt!=null&&tt.isReadonly.value)return;const ft=c.value.selectionStart,J=st.value.length;if((B.value>-1||["Enter","ArrowDown","ArrowUp"].includes(bt.key))&&bt.preventDefault(),["Enter","ArrowDown"].includes(bt.key)&&($.value=!0),["Escape"].includes(bt.key)&&($.value=!1),ht.value&&["Enter","Tab"].includes(bt.key)&&jt(et.value[0]),bt.key==="ArrowDown"&&ht.value&&((lt=Ct.value)==null||lt.focus("next")),!!n.multiple){if(["Backspace","Delete"].includes(bt.key)){if(B.value<0){bt.key==="Backspace"&&!W.value&&(B.value=J-1);return}const kt=B.value;rt.value&&jt(rt.value),B.value=kt>=J-1?J-2:kt}if(bt.key==="ArrowLeft"){if(B.value<0&&ft>0)return;const kt=B.value>-1?B.value-1:J-1;G.value[kt]?B.value=kt:(B.value=-1,c.value.setSelectionRange((at=W.value)==null?void 0:at.length,(ct=W.value)==null?void 0:ct.length))}if(bt.key==="ArrowRight"){if(B.value<0)return;const kt=B.value+1;G.value[kt]?B.value=kt:(B.value=-1,c.value.setSelectionRange(0,0))}}}function Ft(bt){W.value=bt.target.value}function Qt(bt){if(ro(c.value,":autofill")||ro(c.value,":-webkit-autofill")){const ft=F.value.find(J=>J.title===bt.target.value);ft&&jt(ft)}}function Jt(){var bt;g.value&&(v.value=!0,(bt=c.value)==null||bt.focus())}function Et(bt){g.value=!0,setTimeout(()=>{k.value=!0})}function ut(bt){k.value=!1}function pt(bt){(bt==null||bt===""&&!n.multiple)&&(_.value=[])}const Nt=Wt(!1);function jt(bt){if(n.multiple){const ft=st.value.findIndex(J=>n.valueComparator(J,bt.value));if(ft===-1)_.value=[..._.value,bt];else{const J=[..._.value];J.splice(ft,1),_.value=J}}else _.value=[bt],Nt.value=!0,W.value=bt.title,$.value=!1,v.value=!0,we(()=>Nt.value=!1)}return _t(g,(bt,ft)=>{var J;bt!==ft&&(bt?(Nt.value=!0,W.value=n.multiple?"":String(((J=G.value.at(-1))==null?void 0:J.props.title)??""),v.value=!0,we(()=>Nt.value=!1)):(!n.multiple&&!W.value?_.value=[]:ht.value&&!k.value&&!G.value.some(lt=>{let{value:at}=lt;return at===et.value[0].value})&&jt(et.value[0]),$.value=!1,W.value="",B.value=-1))}),_t(W,bt=>{!g.value||Nt.value||(bt&&($.value=!0),v.value=!bt)}),_t($,()=>{if(!n.hideSelected&&$.value&&G.value.length){const bt=et.value.findIndex(ft=>G.value.some(J=>ft.value===J.value));ze&&window.requestAnimationFrame(()=>{var ft;bt>=0&&((ft=I.value)==null||ft.scrollToIndex(bt))})}}),Dt(()=>{const bt=!!(n.chips||r.chip),ft=!!(!n.hideNoData||et.value.length||r["prepend-item"]||r["append-item"]||r["no-data"]),J=_.value.length>0,[lt]=Ir.filterProps(n);return t(Ir,o({ref:c},lt,{modelValue:W.value,"onUpdate:modelValue":pt,focused:g.value,"onUpdate:focused":at=>g.value=at,validationValue:_.externalValue,dirty:J,onInput:Ft,onChange:Qt,class:["v-autocomplete",`v-autocomplete--${n.multiple?"multiple":"single"}`,{"v-autocomplete--active-menu":$.value,"v-autocomplete--chips":!!n.chips,"v-autocomplete--selection-slot":!!r.selection,"v-autocomplete--selecting-index":B.value>-1},n.class],style:n.style,readonly:n.readonly,placeholder:J?void 0:n.placeholder,"onClick:clear":gt,"onMousedown:control":It,onKeydown:Tt}),{...r,default:()=>t(Kt,null,[t(pi,o({ref:x,modelValue:$.value,"onUpdate:modelValue":at=>$.value=at,activator:"parent",contentClass:"v-autocomplete__content",disabled:dt.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:Jt},n.menuProps),{default:()=>[ft&&t(ci,{ref:Ct,selected:st.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:at=>at.preventDefault(),onKeydown:wt,onFocusin:Et,onFocusout:ut,onScrollPassive:xt,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var at,ct,kt;return[(at=r["prepend-item"])==null?void 0:at.call(r),!et.value.length&&!n.hideNoData&&(((ct=r["no-data"])==null?void 0:ct.call(r))??t(Ml,{title:h(n.noDataText)},null)),t(fi,{ref:I,renderless:!0,items:et.value},{default:yt=>{var Zt;let{item:Ot,index:$t,itemRef:Rt}=yt;const Pt=o(Ot.props,{ref:Rt,key:$t,active:ht.value&&$t===0?!0:void 0,onClick:()=>jt(Ot)});return((Zt=r.item)==null?void 0:Zt.call(r,{item:Ot,index:$t,props:Pt}))??t(Ml,Pt,{prepend:Ut=>{let{isSelected:Gt}=Ut;return t(Kt,null,[n.multiple&&!n.hideSelected?t(ao,{key:Ot.value,modelValue:Gt,ripple:!1,tabindex:"-1"},null):void 0,Ot.props.prependIcon&&t(xe,{icon:Ot.props.prependIcon},null)])},title:()=>{var Ut,Gt;return v.value?Ot.title:i8(Ot.title,(Ut=Y(Ot))==null?void 0:Ut.title,((Gt=W.value)==null?void 0:Gt.length)??0)}})}}),(kt=r["append-item"])==null?void 0:kt.call(r)]}})]}),G.value.map((at,ct)=>{var Ot;function kt($t){$t.stopPropagation(),$t.preventDefault(),jt(at)}const yt={"onClick:close":kt,onMousedown($t){$t.preventDefault(),$t.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:at.value,class:["v-autocomplete__selection",ct===B.value&&["v-autocomplete__selection--selected",H.value]],style:ct===B.value?U.value:{}},[bt?r.chip?t(ke,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:at.title}}},{default:()=>{var $t;return[($t=r.chip)==null?void 0:$t.call(r,{item:at,index:ct,props:yt})]}}):t(As,o({key:"chip",closable:n.closableChips,size:"small",text:at.title},yt),null):((Ot=r.selection)==null?void 0:Ot.call(r,{item:at,index:ct}))??t("span",{class:"v-autocomplete__selection-text"},[at.title,n.multiple&&ct(n.floating?n.dot?2:4:n.dot?8:12)+(["top","bottom"].includes(S)?+(n.offsetY??0):["left","right"].includes(S)?+(n.offsetX??0):0));return Dt(()=>{const S=Number(n.content),$=!n.max||isNaN(S)?n.content:S<=+n.max?S:`${n.max}+`,[B,P]=Mr(l.attrs,["aria-atomic","aria-label","aria-live","role","title"]);return t(n.tag,o({class:["v-badge",{"v-badge--bordered":n.bordered,"v-badge--dot":n.dot,"v-badge--floating":n.floating,"v-badge--inline":n.inline},n.class]},P,{style:n.style}),{default:()=>{var D,F;return[t("div",{class:"v-badge__wrapper"},[(F=(D=l.slots).default)==null?void 0:F.call(D),t(Un,{transition:n.transition},{default:()=>{var X,R;return[$e(t("span",o({class:["v-badge__badge",x.value,r.value,c.value,v.value],style:[h.value,k.value,n.inline?{}:I.value],"aria-atomic":"true","aria-label":g(n.label,S),"aria-live":"polite",role:"status"},B),[n.dot?void 0:l.slots.badge?(R=(X=l.slots).badge)==null?void 0:R.call(X):n.icon?t(xe,{icon:n.icon},null):$]),[[Dn,n.modelValue]])]}})])]}})}),{}}});const p8=mt({color:String,density:String,...Xt()},"VBannerActions"),eg=Bt()({name:"VBannerActions",props:p8(),setup(n,l){let{slots:r}=l;return Te({VBtn:{color:n.color,density:n.density,variant:"text"}}),Dt(()=>{var h;return t("div",{class:["v-banner-actions",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}}),ng=Qn("v-banner-text"),g8=mt({avatar:String,color:String,icon:ee,lines:String,stacked:Boolean,sticky:Boolean,text:String,...An(),...Xt(),...We(),...Tn(),..._e(),...Ql(),...bo(),...Ce(),...re(),...ue()},"VBanner"),w8=Bt()({name:"VBanner",props:g8(),setup(n,l){let{slots:r}=l;const{borderClasses:h}=Vn(n),{densityClasses:c}=dn(n),{mobile:g}=Ar(),{dimensionStyles:v}=En(n),{elevationClasses:k}=Je(n),{locationStyles:x}=Jl(n),{positionClasses:I}=Mo(n),{roundedClasses:S}=Ne(n),{themeClasses:$}=ve(n),B=Ht(n,"color"),P=Ht(n,"density");Te({VBannerActions:{color:B,density:P}}),Dt(()=>{const D=!!(n.text||r.text),F=!!(n.avatar||n.icon),X=!!(F||r.prepend);return t(n.tag,{class:["v-banner",{"v-banner--stacked":n.stacked||g.value,"v-banner--sticky":n.sticky,[`v-banner--${n.lines}-line`]:!!n.lines},h.value,c.value,k.value,I.value,S.value,$.value,n.class],style:[v.value,x.value,n.style],role:"banner"},{default:()=>{var R;return[X&&t("div",{key:"prepend",class:"v-banner__prepend"},[r.prepend?t(ke,{key:"prepend-defaults",disabled:!F,defaults:{VAvatar:{color:B.value,density:P.value,icon:n.icon,image:n.avatar}}},r.prepend):t(Kl,{key:"prepend-avatar",color:B.value,density:P.value,icon:n.icon,image:n.avatar},null)]),t("div",{class:"v-banner__content"},[D&&t(ng,{key:"text"},{default:()=>{var H;return[((H=r.text)==null?void 0:H.call(r))??n.text]}}),(R=r.default)==null?void 0:R.call(r)]),r.actions&&t(eg,{key:"actions"},r.actions)]}})})}});const v8=mt({bgColor:String,color:String,grow:Boolean,mode:{type:String,validator:n=>!n||["horizontal","shift"].includes(n)},height:{type:[Number,String],default:56},active:{type:Boolean,default:!0},...An(),...Xt(),...We(),..._e(),...Ce(),...go({name:"bottom-navigation"}),...re({tag:"header"}),...vo({modelValue:!0,selectedClass:"v-btn--selected"}),...ue()},"VBottomNavigation"),f8=Bt()({name:"VBottomNavigation",props:v8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=Gp(),{borderClasses:c}=Vn(n),{backgroundColorClasses:g,backgroundColorStyles:v}=Pe(Ht(n,"bgColor")),{densityClasses:k}=dn(n),{elevationClasses:x}=Je(n),{roundedClasses:I}=Ne(n),{ssrBootStyles:S}=Br(),$=q(()=>Number(n.height)-(n.density==="comfortable"?8:0)-(n.density==="compact"?16:0)),B=Ht(n,"active"),{layoutItemStyles:P}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:q(()=>"bottom"),layoutSize:q(()=>B.value?$.value:0),elementSize:$,active:B,absolute:Ht(n,"absolute")});return jr(n,v2),Te({VBtn:{color:Ht(n,"color"),density:Ht(n,"density"),stacked:q(()=>n.mode!=="horizontal"),variant:"text"}},{scoped:!0}),Dt(()=>t(n.tag,{class:["v-bottom-navigation",{"v-bottom-navigation--active":B.value,"v-bottom-navigation--grow":n.grow,"v-bottom-navigation--shift":n.mode==="shift"},h.value,g.value,c.value,k.value,x.value,I.value,n.class],style:[v.value,P.value,{height:qt($.value),transform:`translateY(${qt(B.value?0:100,"%")})`},S.value,n.style]},{default:()=>[r.default&&t("div",{class:"v-bottom-navigation__content"},[r.default()])]})),{}}});const m8=mt({divider:[Number,String],...Xt()},"VBreadcrumbsDivider"),lg=Bt()({name:"VBreadcrumbsDivider",props:m8(),setup(n,l){let{slots:r}=l;return Dt(()=>{var h;return t("li",{class:["v-breadcrumbs-divider",n.class],style:n.style},[((h=r==null?void 0:r.default)==null?void 0:h.call(r))??n.divider])}),{}}}),k8=mt({active:Boolean,activeClass:String,activeColor:String,color:String,disabled:Boolean,title:String,...Xt(),...$s(),...re({tag:"li"})},"VBreadcrumbsItem"),rg=Bt()({name:"VBreadcrumbsItem",props:k8(),setup(n,l){let{slots:r,attrs:h}=l;const c=Ss(n,h),g=q(()=>{var I;return n.active||((I=c.isActive)==null?void 0:I.value)}),v=q(()=>g.value?n.activeColor:n.color),{textColorClasses:k,textColorStyles:x}=an(v);return Dt(()=>t(n.tag,{class:["v-breadcrumbs-item",{"v-breadcrumbs-item--active":g.value,"v-breadcrumbs-item--disabled":n.disabled,[`${n.activeClass}`]:g.value&&n.activeClass},k.value,n.class],style:[x.value,n.style],"aria-current":g.value?"page":void 0},{default:()=>{var I,S;return[c.isLink.value?t("a",{class:"v-breadcrumbs-item--link",href:c.href.value,"aria-current":g.value?"page":void 0,onClick:c.navigate},[((S=r.default)==null?void 0:S.call(r))??n.title]):((I=r.default)==null?void 0:I.call(r))??n.title]}})),{}}}),b8=mt({activeClass:String,activeColor:String,bgColor:String,color:String,disabled:Boolean,divider:{type:String,default:"/"},icon:ee,items:{type:Array,default:()=>[]},...Xt(),...We(),...Ce(),...re({tag:"ul"})},"VBreadcrumbs"),M8=Bt()({name:"VBreadcrumbs",props:b8(),setup(n,l){let{slots:r}=l;const{backgroundColorClasses:h,backgroundColorStyles:c}=Pe(Ht(n,"bgColor")),{densityClasses:g}=dn(n),{roundedClasses:v}=Ne(n);Te({VBreadcrumbsDivider:{divider:Ht(n,"divider")},VBreadcrumbsItem:{activeClass:Ht(n,"activeClass"),activeColor:Ht(n,"activeColor"),color:Ht(n,"color"),disabled:Ht(n,"disabled")}});const k=q(()=>n.items.map(x=>typeof x=="string"?{item:{title:x},raw:x}:{item:x,raw:x}));return Dt(()=>{const x=!!(r.prepend||n.icon);return t(n.tag,{class:["v-breadcrumbs",h.value,g.value,v.value,n.class],style:[c.value,n.style]},{default:()=>{var I;return[x&&t("li",{key:"prepend",class:"v-breadcrumbs__prepend"},[r.prepend?t(ke,{key:"prepend-defaults",disabled:!n.icon,defaults:{VIcon:{icon:n.icon,start:!0}}},r.prepend):t(xe,{key:"prepend-icon",start:!0,icon:n.icon},null)]),k.value.map((S,$,B)=>{let{item:P,raw:D}=S;return t(Kt,null,[t(rg,o({key:P.title,disabled:$>=B.length-1},P),{default:r.title?()=>{var F;return(F=r.title)==null?void 0:F.call(r,{item:D,index:$})}:void 0}),${var F;return(F=r.divider)==null?void 0:F.call(r,{item:D,index:$})}:void 0})])}),(I=r.default)==null?void 0:I.call(r)]}})}),{}}});const og=Bt()({name:"VCardActions",props:Xt(),setup(n,l){let{slots:r}=l;return Te({VBtn:{variant:"text"}}),Dt(()=>{var h;return t("div",{class:["v-card-actions",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}}),sg=Qn("v-card-subtitle"),ag=Qn("v-card-title"),x8=mt({appendAvatar:String,appendIcon:ee,prependAvatar:String,prependIcon:ee,subtitle:String,title:String,...Xt(),...We()},"VCardItem"),ig=Bt()({name:"VCardItem",props:x8(),setup(n,l){let{slots:r}=l;return Dt(()=>{var I;const h=!!(n.prependAvatar||n.prependIcon),c=!!(h||r.prepend),g=!!(n.appendAvatar||n.appendIcon),v=!!(g||r.append),k=!!(n.title||r.title),x=!!(n.subtitle||r.subtitle);return t("div",{class:["v-card-item",n.class],style:n.style},[c&&t("div",{key:"prepend",class:"v-card-item__prepend"},[r.prepend?t(ke,{key:"prepend-defaults",disabled:!h,defaults:{VAvatar:{density:n.density,icon:n.prependIcon,image:n.prependAvatar}}},r.prepend):h&&t(Kl,{key:"prepend-avatar",density:n.density,icon:n.prependIcon,image:n.prependAvatar},null)]),t("div",{class:"v-card-item__content"},[k&&t(ag,{key:"title"},{default:()=>{var S;return[((S=r.title)==null?void 0:S.call(r))??n.title]}}),x&&t(sg,{key:"subtitle"},{default:()=>{var S;return[((S=r.subtitle)==null?void 0:S.call(r))??n.subtitle]}}),(I=r.default)==null?void 0:I.call(r)]),v&&t("div",{key:"append",class:"v-card-item__append"},[r.append?t(ke,{key:"append-defaults",disabled:!g,defaults:{VAvatar:{density:n.density,icon:n.appendIcon,image:n.appendAvatar}}},r.append):g&&t(Kl,{key:"append-avatar",density:n.density,icon:n.appendIcon,image:n.appendAvatar},null)])])}),{}}}),hg=Qn("v-card-text"),z8=mt({appendAvatar:String,appendIcon:ee,disabled:Boolean,flat:Boolean,hover:Boolean,image:String,link:{type:Boolean,default:void 0},prependAvatar:String,prependIcon:ee,ripple:{type:[Boolean,Object],default:!0},subtitle:String,text:String,title:String,...An(),...Xt(),...We(),...Tn(),..._e(),...b2(),...Ql(),...bo(),...Ce(),...$s(),...re(),...ue(),..._n({variant:"elevated"})},"VCard"),I8=Bt()({name:"VCard",directives:{Ripple:tr},props:z8(),setup(n,l){let{attrs:r,slots:h}=l;const{themeClasses:c}=ve(n),{borderClasses:g}=Vn(n),{colorClasses:v,colorStyles:k,variantClasses:x}=Nr(n),{densityClasses:I}=dn(n),{dimensionStyles:S}=En(n),{elevationClasses:$}=Je(n),{loaderClasses:B}=ai(n),{locationStyles:P}=Jl(n),{positionClasses:D}=Mo(n),{roundedClasses:F}=Ne(n),X=Ss(n,r),R=q(()=>n.link!==!1&&X.isLink.value),H=q(()=>!n.disabled&&n.link!==!1&&(n.link||X.isClickable.value));return Dt(()=>{const U=R.value?"a":n.tag,W=!!(h.title||n.title),_=!!(h.subtitle||n.subtitle),tt=W||_,nt=!!(h.append||n.appendAvatar||n.appendIcon),Y=!!(h.prepend||n.prependAvatar||n.prependIcon),G=!!(h.image||n.image),et=tt||Y||nt,st=!!(h.text||n.text);return $e(t(U,{class:["v-card",{"v-card--disabled":n.disabled,"v-card--flat":n.flat,"v-card--hover":n.hover&&!(n.disabled||n.flat),"v-card--link":H.value},c.value,g.value,v.value,I.value,$.value,B.value,D.value,F.value,x.value,n.class],style:[k.value,S.value,P.value,n.style],href:X.href.value,onClick:H.value&&X.navigate,tabindex:n.disabled?-1:void 0},{default:()=>{var rt;return[G&&t("div",{key:"image",class:"v-card__image"},[h.image?t(ke,{key:"image-defaults",disabled:!n.image,defaults:{VImg:{cover:!0,src:n.image}}},h.image):t(xr,{key:"image-img",cover:!0,src:n.image},null)]),t(M2,{name:"v-card",active:!!n.loading,color:typeof n.loading=="boolean"?void 0:n.loading},{default:h.loader}),et&&t(ig,{key:"item",prependAvatar:n.prependAvatar,prependIcon:n.prependIcon,title:n.title,subtitle:n.subtitle,appendAvatar:n.appendAvatar,appendIcon:n.appendIcon},{default:h.item,prepend:h.prepend,title:h.title,subtitle:h.subtitle,append:h.append}),st&&t(hg,{key:"text"},{default:()=>{var ht;return[((ht=h.text)==null?void 0:ht.call(h))??n.text]}}),(rt=h.default)==null?void 0:rt.call(h),h.actions&&t(og,null,{default:h.actions}),Hr(H.value,"v-card")]}}),[[Mn("ripple"),H.value&&n.ripple]])}),{}}});const y8=n=>{const{touchstartX:l,touchendX:r,touchstartY:h,touchendY:c}=n,g=.5,v=16;n.offsetX=r-l,n.offsetY=c-h,Math.abs(n.offsetY)l+v&&n.right(n)),Math.abs(n.offsetX)h+v&&n.down(n))};function C8(n,l){var h;const r=n.changedTouches[0];l.touchstartX=r.clientX,l.touchstartY=r.clientY,(h=l.start)==null||h.call(l,{originalEvent:n,...l})}function S8(n,l){var h;const r=n.changedTouches[0];l.touchendX=r.clientX,l.touchendY=r.clientY,(h=l.end)==null||h.call(l,{originalEvent:n,...l}),y8(l)}function $8(n,l){var h;const r=n.changedTouches[0];l.touchmoveX=r.clientX,l.touchmoveY=r.clientY,(h=l.move)==null||h.call(l,{originalEvent:n,...l})}function A8(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const l={touchstartX:0,touchstartY:0,touchendX:0,touchendY:0,touchmoveX:0,touchmoveY:0,offsetX:0,offsetY:0,left:n.left,right:n.right,up:n.up,down:n.down,start:n.start,move:n.move,end:n.end};return{touchstart:r=>C8(r,l),touchend:r=>S8(r,l),touchmove:r=>$8(r,l)}}function B8(n,l){var k;const r=l.value,h=r!=null&&r.parent?n.parentElement:n,c=(r==null?void 0:r.options)??{passive:!0},g=(k=l.instance)==null?void 0:k.$.uid;if(!h||!g)return;const v=A8(l.value);h._touchHandlers=h._touchHandlers??Object.create(null),h._touchHandlers[g]=v,Sp(v).forEach(x=>{h.addEventListener(x,v[x],c)})}function H8(n,l){var g,v;const r=(g=l.value)!=null&&g.parent?n.parentElement:n,h=(v=l.instance)==null?void 0:v.$.uid;if(!(r!=null&&r._touchHandlers)||!h)return;const c=r._touchHandlers[h];Sp(c).forEach(k=>{r.removeEventListener(k,c[k])}),delete r._touchHandlers[h]}const B2={mounted:B8,unmounted:H8},N8=B2,dg=Symbol.for("vuetify:v-window"),cg=Symbol.for("vuetify:v-window-group"),ug=mt({continuous:Boolean,nextIcon:{type:[Boolean,String,Function,Object],default:"$next"},prevIcon:{type:[Boolean,String,Function,Object],default:"$prev"},reverse:Boolean,showArrows:{type:[Boolean,String],validator:n=>typeof n=="boolean"||n==="hover"},touch:{type:[Object,Boolean],default:void 0},direction:{type:String,default:"horizontal"},modelValue:null,disabled:Boolean,selectedClass:{type:String,default:"v-window-item--active"},mandatory:{type:[Boolean,String],default:"force"},...Xt(),...re(),...ue()},"VWindow"),J0=Bt()({name:"VWindow",directives:{Touch:B2},props:ug(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{isRtl:c}=Ue(),{t:g}=Rn(),v=jr(n,cg),k=Lt(),x=q(()=>c.value?!n.reverse:n.reverse),I=Wt(!1),S=q(()=>{const W=n.direction==="vertical"?"y":"x",tt=(x.value?!I.value:I.value)?"-reverse":"";return`v-window-${W}${tt}-transition`}),$=Wt(0),B=Lt(void 0),P=q(()=>v.items.value.findIndex(W=>v.selected.value.includes(W.id)));_t(P,(W,_)=>{const tt=v.items.value.length,nt=tt-1;tt<=2?I.value=W<_:W===nt&&_===0?I.value=!0:W===0&&_===nt?I.value=!1:I.value=W<_}),Se(dg,{transition:S,isReversed:I,transitionCount:$,transitionHeight:B,rootRef:k});const D=q(()=>n.continuous||P.value!==0),F=q(()=>n.continuous||P.value!==v.items.value.length-1);function X(){D.value&&v.prev()}function R(){F.value&&v.next()}const H=q(()=>{const W=[],_={icon:c.value?n.nextIcon:n.prevIcon,class:`v-window__${x.value?"right":"left"}`,onClick:v.prev,ariaLabel:g("$vuetify.carousel.prev")};W.push(D.value?r.prev?r.prev({props:_}):t(pn,_,null):t("div",null,null));const tt={icon:c.value?n.prevIcon:n.nextIcon,class:`v-window__${x.value?"left":"right"}`,onClick:v.next,ariaLabel:g("$vuetify.carousel.next")};return W.push(F.value?r.next?r.next({props:tt}):t(pn,tt,null):t("div",null,null)),W}),U=q(()=>n.touch===!1?n.touch:{...{left:()=>{x.value?X():R()},right:()=>{x.value?R():X()},start:_=>{let{originalEvent:tt}=_;tt.stopPropagation()}},...n.touch===!0?{}:n.touch});return Dt(()=>$e(t(n.tag,{ref:k,class:["v-window",{"v-window--show-arrows-on-hover":n.showArrows==="hover"},h.value,n.class],style:n.style},{default:()=>{var W,_;return[t("div",{class:"v-window__container",style:{height:B.value}},[(W=r.default)==null?void 0:W.call(r,{group:v}),n.showArrows!==!1&&t("div",{class:"v-window__controls"},[H.value])]),(_=r.additional)==null?void 0:_.call(r,{group:v})]}}),[[Mn("touch"),U.value]])),{group:v}}}),j8=mt({color:String,cycle:Boolean,delimiterIcon:{type:ee,default:"$delimiter"},height:{type:[Number,String],default:500},hideDelimiters:Boolean,hideDelimiterBackground:Boolean,interval:{type:[Number,String],default:6e3,validator:n=>Number(n)>0},progress:[Boolean,String],verticalDelimiters:[Boolean,String],...ug({continuous:!0,mandatory:"force",showArrows:!0})},"VCarousel"),P8=Bt()({name:"VCarousel",props:j8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{t:c}=Rn(),g=Lt();let v=-1;_t(h,x),_t(()=>n.interval,x),_t(()=>n.cycle,I=>{I?x():window.clearTimeout(v)}),Ve(k);function k(){!n.cycle||!g.value||(v=window.setTimeout(g.value.group.next,+n.interval>0?+n.interval:6e3))}function x(){window.clearTimeout(v),window.requestAnimationFrame(k)}return Dt(()=>{const[I]=J0.filterProps(n);return t(J0,o({ref:g},I,{modelValue:h.value,"onUpdate:modelValue":S=>h.value=S,class:["v-carousel",{"v-carousel--hide-delimiter-background":n.hideDelimiterBackground,"v-carousel--vertical-delimiters":n.verticalDelimiters},n.class],style:[{height:qt(n.height)},n.style]}),{default:r.default,additional:S=>{let{group:$}=S;return t(Kt,null,[!n.hideDelimiters&&t("div",{class:"v-carousel__controls",style:{left:n.verticalDelimiters==="left"&&n.verticalDelimiters?0:"auto",right:n.verticalDelimiters==="right"?0:"auto"}},[$.items.value.length>0&&t(ke,{defaults:{VBtn:{color:n.color,icon:n.delimiterIcon,size:"x-small",variant:"text"}},scoped:!0},{default:()=>[$.items.value.map((B,P)=>{const D={id:`carousel-item-${B.id}`,"aria-label":c("$vuetify.carousel.ariaLabel.delimiter",P+1,$.items.value.length),class:[$.isSelected(B.id)&&"v-btn--active"],onClick:()=>$.select(B.id,!0)};return r.item?r.item({props:D,item:B}):t(pn,o(B,D),null)})]})]),n.progress&&t(k2,{class:"v-carousel__progress",color:typeof n.progress=="string"?n.progress:void 0,modelValue:($.getItemIndex(h.value)+1)/$.items.value.length*100},null)])},prev:r.prev,next:r.next})}),{}}}),pg=mt({reverseTransition:{type:[Boolean,String],default:void 0},transition:{type:[Boolean,String],default:void 0},...Xt(),...fo(),...ui()},"VWindowItem"),th=Bt()({name:"VWindowItem",directives:{Touch:N8},props:pg(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=de(dg),c=mo(n,cg),{isBooted:g}=Br();if(!h||!c)throw new Error("[Vuetify] VWindowItem must be used inside VWindow");const v=Wt(!1),k=q(()=>g.value&&(h.isReversed.value?n.reverseTransition!==!1:n.transition!==!1));function x(){!v.value||!h||(v.value=!1,h.transitionCount.value>0&&(h.transitionCount.value-=1,h.transitionCount.value===0&&(h.transitionHeight.value=void 0)))}function I(){var D;v.value||!h||(v.value=!0,h.transitionCount.value===0&&(h.transitionHeight.value=qt((D=h.rootRef.value)==null?void 0:D.clientHeight)),h.transitionCount.value+=1)}function S(){x()}function $(D){v.value&&we(()=>{!k.value||!v.value||!h||(h.transitionHeight.value=qt(D.clientHeight))})}const B=q(()=>{const D=h.isReversed.value?n.reverseTransition:n.transition;return k.value?{name:typeof D!="string"?h.transition.value:D,onBeforeEnter:I,onAfterEnter:x,onEnterCancelled:S,onBeforeLeave:I,onAfterLeave:x,onLeaveCancelled:S,onEnter:$}:!1}),{hasContent:P}=C2(n,c.isSelected);return Dt(()=>t(Un,{transition:B.value,disabled:!g.value},{default:()=>{var D;return[$e(t("div",{class:["v-window-item",c.selectedClass.value,n.class],style:n.style},[P.value&&((D=r.default)==null?void 0:D.call(r))]),[[Dn,c.isSelected.value]])]}})),{groupItem:c}}}),L8=mt({...i4(),...pg()},"VCarouselItem"),D8=Bt()({name:"VCarouselItem",inheritAttrs:!1,props:L8(),setup(n,l){let{slots:r,attrs:h}=l;Dt(()=>{const[c]=xr.filterProps(n),[g]=th.filterProps(n);return t(th,o({class:"v-carousel-item"},g),{default:()=>[t(xr,o(h,c),r)]})})}});const O8=Qn("v-code");const F8=mt({color:{type:Object},disabled:Boolean,dotSize:{type:[Number,String],default:10},height:{type:[Number,String],default:150},width:{type:[Number,String],default:300},...Xt()},"VColorPickerCanvas"),R8=Fn({name:"VColorPickerCanvas",props:F8(),emits:{"update:color":n=>!0,"update:position":n=>!0},setup(n,l){let{emit:r}=l;const h=Wt(!1),c=Wt(!1),g=Lt({x:0,y:0}),v=q(()=>{const{x:R,y:H}=g.value,U=parseInt(n.dotSize,10)/2;return{width:qt(n.dotSize),height:qt(n.dotSize),transform:`translate(${qt(R-U)}, ${qt(H-U)})`}}),k=Lt(),x=Wt(parseFloat(n.width)),I=Wt(parseFloat(n.height)),{resizeRef:S}=sl(R=>{var W;if(!((W=S.value)!=null&&W.offsetParent))return;const{width:H,height:U}=R[0].contentRect;x.value=H,I.value=U});function $(R,H,U){const{left:W,top:_,width:tt,height:nt}=U;g.value={x:rn(R-W,0,tt),y:rn(H-_,0,nt)}}function B(R){n.disabled||!k.value||$(R.clientX,R.clientY,k.value.getBoundingClientRect())}function P(R){R.preventDefault(),!n.disabled&&(h.value=!0,window.addEventListener("mousemove",D),window.addEventListener("mouseup",F),window.addEventListener("touchmove",D),window.addEventListener("touchend",F))}function D(R){if(n.disabled||!k.value)return;h.value=!0;const H=Pk(R);$(H.clientX,H.clientY,k.value.getBoundingClientRect())}function F(){window.removeEventListener("mousemove",D),window.removeEventListener("mouseup",F),window.removeEventListener("touchmove",D),window.removeEventListener("touchend",F)}_t(g,()=>{var U,W;if(c.value){c.value=!1;return}if(!k.value)return;const{x:R,y:H}=g.value;r("update:color",{h:((U=n.color)==null?void 0:U.h)??0,s:rn(R,0,x.value)/x.value,v:1-rn(H,0,I.value)/I.value,a:((W=n.color)==null?void 0:W.a)??1})});function X(){var _;if(!k.value)return;const R=k.value,H=R.getContext("2d");if(!H)return;const U=H.createLinearGradient(0,0,R.width,0);U.addColorStop(0,"hsla(0, 0%, 100%, 1)"),U.addColorStop(1,`hsla(${((_=n.color)==null?void 0:_.h)??0}, 100%, 50%, 1)`),H.fillStyle=U,H.fillRect(0,0,R.width,R.height);const W=H.createLinearGradient(0,0,0,R.height);W.addColorStop(0,"hsla(0, 0%, 100%, 0)"),W.addColorStop(1,"hsla(0, 0%, 0%, 1)"),H.fillStyle=W,H.fillRect(0,0,R.width,R.height)}return _t(()=>{var R;return(R=n.color)==null?void 0:R.h},X,{immediate:!0}),_t(()=>[x.value,I.value],(R,H)=>{X(),g.value={x:g.value.x*R[0]/H[0],y:g.value.y*R[1]/H[1]}},{flush:"post"}),_t(()=>n.color,()=>{if(h.value){h.value=!1;return}c.value=!0,g.value=n.color?{x:n.color.s*x.value,y:(1-n.color.v)*I.value}:{x:0,y:0}},{deep:!0,immediate:!0}),Ve(()=>X()),Dt(()=>t("div",{ref:S,class:["v-color-picker-canvas",n.class],style:n.style,onClick:B,onMousedown:P,onTouchstart:P},[t("canvas",{ref:k,width:x.value,height:I.value},null),n.color&&t("div",{class:["v-color-picker-canvas__dot",{"v-color-picker-canvas__dot--disabled":n.disabled}],style:v.value},null)])),{}}});function T8(n,l){if(l){const{a:r,...h}=n;return h}return n}function E8(n,l){if(l==null||typeof l=="string"){const r=Vp(n);return n.a===1?r.slice(0,7):r}if(typeof l=="object"){let r;return cr(l,["r","g","b"])?r=bl(n):cr(l,["h","s","l"])?r=Op(n):cr(l,["h","s","v"])&&(r=n),T8(r,!cr(l,["a"])&&n.a===1)}return n}const Yo={h:0,s:0,v:1,a:1},eh={inputProps:{type:"number",min:0},inputs:[{label:"R",max:255,step:1,getValue:n=>Math.round(n.r),getColor:(n,l)=>({...n,r:Number(l)})},{label:"G",max:255,step:1,getValue:n=>Math.round(n.g),getColor:(n,l)=>({...n,g:Number(l)})},{label:"B",max:255,step:1,getValue:n=>Math.round(n.b),getColor:(n,l)=>({...n,b:Number(l)})},{label:"A",max:1,step:.01,getValue:n=>{let{a:l}=n;return l!=null?Math.round(l*100)/100:1},getColor:(n,l)=>({...n,a:Number(l)})}],to:bl,from:ei};var rc;const V8={...eh,inputs:(rc=eh.inputs)==null?void 0:rc.slice(0,3)},nh={inputProps:{type:"number",min:0},inputs:[{label:"H",max:360,step:1,getValue:n=>Math.round(n.h),getColor:(n,l)=>({...n,h:Number(l)})},{label:"S",max:1,step:.01,getValue:n=>Math.round(n.s*100)/100,getColor:(n,l)=>({...n,s:Number(l)})},{label:"L",max:1,step:.01,getValue:n=>Math.round(n.l*100)/100,getColor:(n,l)=>({...n,l:Number(l)})},{label:"A",max:1,step:.01,getValue:n=>{let{a:l}=n;return l!=null?Math.round(l*100)/100:1},getColor:(n,l)=>({...n,a:Number(l)})}],to:Op,from:o2},_8={...nh,inputs:nh.inputs.slice(0,3)},gg={inputProps:{type:"text"},inputs:[{label:"HEXA",getValue:n=>n,getColor:(n,l)=>l}],to:Vp,from:Jk},W8={...gg,inputs:[{label:"HEX",getValue:n=>n.slice(0,7),getColor:(n,l)=>l}]},fr={rgb:V8,rgba:eh,hsl:_8,hsla:nh,hex:W8,hexa:gg},X8=n=>{let{label:l,...r}=n;return t("div",{class:"v-color-picker-edit__input"},[t("input",r,null),t("span",null,[l])])},q8=mt({color:Object,disabled:Boolean,mode:{type:String,default:"rgba",validator:n=>Object.keys(fr).includes(n)},modes:{type:Array,default:()=>Object.keys(fr),validator:n=>Array.isArray(n)&&n.every(l=>Object.keys(fr).includes(l))},...Xt()},"VColorPickerEdit"),Y8=Fn({name:"VColorPickerEdit",props:q8(),emits:{"update:color":n=>!0,"update:mode":n=>!0},setup(n,l){let{emit:r}=l;const h=q(()=>n.modes.map(g=>({...fr[g],name:g}))),c=q(()=>{var k;const g=h.value.find(x=>x.name===n.mode);if(!g)return[];const v=n.color?g.to(n.color):null;return(k=g.inputs)==null?void 0:k.map(x=>{let{getValue:I,getColor:S,...$}=x;return{...g.inputProps,...$,disabled:n.disabled,value:v&&I(v),onChange:B=>{const P=B.target;P&&r("update:color",g.from(S(v??Yo,P.value)))}}})});return Dt(()=>{var g;return t("div",{class:["v-color-picker-edit",n.class],style:n.style},[(g=c.value)==null?void 0:g.map(v=>t(X8,v,null)),h.value.length>1&&t(pn,{icon:"$unfold",size:"x-small",variant:"plain",onClick:()=>{const v=h.value.findIndex(k=>k.name===n.mode);r("update:mode",h.value[(v+1)%h.value.length].name)}},null)])}),{}}});const H2=Symbol.for("vuetify:v-slider");function lh(n,l,r){const h=r==="vertical",c=l.getBoundingClientRect(),g="touches"in n?n.touches[0]:n;return h?g.clientY-(c.top+c.height/2):g.clientX-(c.left+c.width/2)}function U8(n,l){return"touches"in n&&n.touches.length?n.touches[0][l]:"changedTouches"in n&&n.changedTouches.length?n.changedTouches[0][l]:n[l]}const wg=mt({disabled:{type:Boolean,default:null},error:Boolean,readonly:{type:Boolean,default:null},max:{type:[Number,String],default:100},min:{type:[Number,String],default:0},step:{type:[Number,String],default:0},thumbColor:String,thumbLabel:{type:[Boolean,String],default:void 0,validator:n=>typeof n=="boolean"||n==="always"},thumbSize:{type:[Number,String],default:20},showTicks:{type:[Boolean,String],default:!1,validator:n=>typeof n=="boolean"||n==="always"},ticks:{type:[Array,Object]},tickSize:{type:[Number,String],default:2},color:String,trackColor:String,trackFillColor:String,trackSize:{type:[Number,String],default:4},direction:{type:String,default:"horizontal",validator:n=>["vertical","horizontal"].includes(n)},reverse:Boolean,...Ce(),..._e({elevation:2})},"Slider"),vg=n=>{const l=q(()=>parseFloat(n.min)),r=q(()=>parseFloat(n.max)),h=q(()=>+n.step>0?parseFloat(n.step):0),c=q(()=>Math.max(od(h.value),od(l.value)));function g(v){if(v=parseFloat(v),h.value<=0)return v;const k=rn(v,l.value,r.value),x=l.value%h.value,I=Math.round((k-x)/h.value)*h.value+x;return parseFloat(Math.min(I,r.value).toFixed(c.value))}return{min:l,max:r,step:h,decimals:c,roundValue:g}},fg=n=>{let{props:l,steps:r,onSliderStart:h,onSliderMove:c,onSliderEnd:g,getActiveThumb:v}=n;const{isRtl:k}=Ue(),x=Ht(l,"reverse"),I=q(()=>{let ut=k.value?"rtl":"ltr";return l.reverse&&(ut=ut==="rtl"?"ltr":"rtl"),ut}),{min:S,max:$,step:B,decimals:P,roundValue:D}=r,F=q(()=>parseInt(l.thumbSize,10)),X=q(()=>parseInt(l.tickSize,10)),R=q(()=>parseInt(l.trackSize,10)),H=q(()=>($.value-S.value)/B.value),U=Ht(l,"disabled"),W=q(()=>l.direction==="vertical"),_=q(()=>l.error||l.disabled?void 0:l.thumbColor??l.color),tt=q(()=>l.error||l.disabled?void 0:l.trackColor??l.color),nt=q(()=>l.error||l.disabled?void 0:l.trackFillColor??l.color),Y=Wt(!1),G=Wt(0),et=Lt(),st=Lt();function rt(ut){var ct;const pt=l.direction==="vertical",Nt=pt?"top":"left",jt=pt?"height":"width",bt=pt?"clientY":"clientX",{[Nt]:ft,[jt]:J}=(ct=et.value)==null?void 0:ct.$el.getBoundingClientRect(),lt=U8(ut,bt);let at=Math.min(Math.max((lt-ft-G.value)/J,0),1)||0;return(pt||I.value==="rtl")&&(at=1-at),D(S.value+at*($.value-S.value))}const ht=ut=>{g({value:rt(ut)}),Y.value=!1,G.value=0},dt=ut=>{st.value=v(ut),st.value&&(st.value.focus(),Y.value=!0,st.value.contains(ut.target)?G.value=lh(ut,st.value,l.direction):(G.value=0,c({value:rt(ut)})),h({value:rt(ut)}))},Ct={passive:!0,capture:!0};function xt(ut){c({value:rt(ut)})}function wt(ut){ut.stopPropagation(),ut.preventDefault(),ht(ut),window.removeEventListener("mousemove",xt,Ct),window.removeEventListener("mouseup",wt)}function gt(ut){var pt;ht(ut),window.removeEventListener("touchmove",xt,Ct),(pt=ut.target)==null||pt.removeEventListener("touchend",gt)}function It(ut){var pt;dt(ut),window.addEventListener("touchmove",xt,Ct),(pt=ut.target)==null||pt.addEventListener("touchend",gt,{passive:!1})}function At(ut){ut.preventDefault(),dt(ut),window.addEventListener("mousemove",xt,Ct),window.addEventListener("mouseup",wt,{passive:!1})}const Tt=ut=>{const pt=(ut-S.value)/($.value-S.value)*100;return rn(isNaN(pt)?0:pt,0,100)},Ft=Ht(l,"showTicks"),Qt=q(()=>Ft.value?l.ticks?Array.isArray(l.ticks)?l.ticks.map(ut=>({value:ut,position:Tt(ut),label:ut.toString()})):Object.keys(l.ticks).map(ut=>({value:parseFloat(ut),position:Tt(parseFloat(ut)),label:l.ticks[ut]})):H.value!==1/0?gl(H.value+1).map(ut=>{const pt=S.value+ut*B.value;return{value:pt,position:Tt(pt)}}):[]:[]),Jt=q(()=>Qt.value.some(ut=>{let{label:pt}=ut;return!!pt})),Et={activeThumbRef:st,color:Ht(l,"color"),decimals:P,disabled:U,direction:Ht(l,"direction"),elevation:Ht(l,"elevation"),hasLabels:Jt,horizontalDirection:I,isReversed:x,min:S,max:$,mousePressed:Y,numTicks:H,onSliderMousedown:At,onSliderTouchstart:It,parsedTicks:Qt,parseMouseMove:rt,position:Tt,readonly:Ht(l,"readonly"),rounded:Ht(l,"rounded"),roundValue:D,showTicks:Ft,startOffset:G,step:B,thumbSize:F,thumbColor:_,thumbLabel:Ht(l,"thumbLabel"),ticks:Ht(l,"ticks"),tickSize:X,trackColor:tt,trackContainerRef:et,trackFillColor:nt,trackSize:R,vertical:W};return Se(H2,Et),Et},G8=mt({focused:Boolean,max:{type:Number,required:!0},min:{type:Number,required:!0},modelValue:{type:Number,required:!0},position:{type:Number,required:!0},ripple:{type:[Boolean,Object],default:!0},...Xt()},"VSliderThumb"),rh=Bt()({name:"VSliderThumb",directives:{Ripple:tr},props:G8(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=de(H2),{rtlClasses:g}=Ue();if(!c)throw new Error("[Vuetify] v-slider-thumb must be used inside v-slider or v-range-slider");const{thumbColor:v,step:k,vertical:x,disabled:I,thumbSize:S,thumbLabel:$,direction:B,readonly:P,elevation:D,isReversed:F,horizontalDirection:X,mousePressed:R,decimals:H}=c,{textColorClasses:U,textColorStyles:W}=an(v),{pageup:_,pagedown:tt,end:nt,home:Y,left:G,right:et,down:st,up:rt}=j0,ht=[_,tt,nt,Y,G,et,st,rt],dt=q(()=>k.value?[1,2,3]:[1,5,10]);function Ct(wt,gt){if(!ht.includes(wt.key))return;wt.preventDefault();const It=k.value||.1,At=(n.max-n.min)/It;if([G,et,st,rt].includes(wt.key)){const Ft=(X.value==="rtl"?[G,rt]:[et,rt]).includes(wt.key)?1:-1,Qt=wt.shiftKey?2:wt.ctrlKey?1:0;gt=gt+Ft*It*dt.value[Qt]}else if(wt.key===Y)gt=n.min;else if(wt.key===nt)gt=n.max;else{const Tt=wt.key===tt?1:-1;gt=gt-Tt*It*(At>100?At/10:10)}return Math.max(n.min,Math.min(n.max,gt))}function xt(wt){const gt=Ct(wt,n.modelValue);gt!=null&&h("update:modelValue",gt)}return Dt(()=>{const wt=qt(x.value||F.value?100-n.position:n.position,"%"),{elevationClasses:gt}=Je(q(()=>I.value?void 0:D.value));return t("div",{class:["v-slider-thumb",{"v-slider-thumb--focused":n.focused,"v-slider-thumb--pressed":n.focused&&R.value},n.class,g.value],style:[{"--v-slider-thumb-position":wt,"--v-slider-thumb-size":qt(S.value)},n.style],role:"slider",tabindex:I.value?-1:0,"aria-valuemin":n.min,"aria-valuemax":n.max,"aria-valuenow":n.modelValue,"aria-readonly":!!P.value,"aria-orientation":B.value,onKeydown:P.value?void 0:xt},[t("div",{class:["v-slider-thumb__surface",U.value,gt.value],style:{...W.value}},null),$e(t("div",{class:["v-slider-thumb__ripple",U.value],style:W.value},null),[[Mn("ripple"),n.ripple,null,{circle:!0,center:!0}]]),t(u2,{origin:"bottom center"},{default:()=>{var It;return[$e(t("div",{class:"v-slider-thumb__label-container"},[t("div",{class:["v-slider-thumb__label"]},[t("div",null,[((It=r["thumb-label"])==null?void 0:It.call(r,{modelValue:n.modelValue}))??n.modelValue.toFixed(k.value?H.value:1)])])]),[[Dn,$.value&&n.focused||$.value==="always"]])]}})])}),{}}});const Z8=mt({start:{type:Number,required:!0},stop:{type:Number,required:!0},...Xt()},"VSliderTrack"),mg=Bt()({name:"VSliderTrack",props:Z8(),emits:{},setup(n,l){let{slots:r}=l;const h=de(H2);if(!h)throw new Error("[Vuetify] v-slider-track must be inside v-slider or v-range-slider");const{color:c,horizontalDirection:g,parsedTicks:v,rounded:k,showTicks:x,tickSize:I,trackColor:S,trackFillColor:$,trackSize:B,vertical:P,min:D,max:F}=h,{roundedClasses:X}=Ne(k),{backgroundColorClasses:R,backgroundColorStyles:H}=Pe($),{backgroundColorClasses:U,backgroundColorStyles:W}=Pe(S),_=q(()=>`inset-${P.value?"block-end":"inline-start"}`),tt=q(()=>P.value?"height":"width"),nt=q(()=>({[_.value]:"0%",[tt.value]:"100%"})),Y=q(()=>n.stop-n.start),G=q(()=>({[_.value]:qt(n.start,"%"),[tt.value]:qt(Y.value,"%")})),et=q(()=>x.value?(P.value?v.value.slice().reverse():v.value).map((rt,ht)=>{var xt;const dt=P.value?"bottom":"margin-inline-start",Ct=rt.value!==D.value&&rt.value!==F.value?qt(rt.position,"%"):void 0;return t("div",{key:rt.value,class:["v-slider-track__tick",{"v-slider-track__tick--filled":rt.position>=n.start&&rt.position<=n.stop,"v-slider-track__tick--first":rt.value===D.value,"v-slider-track__tick--last":rt.value===F.value}],style:{[dt]:Ct}},[(rt.label||r["tick-label"])&&t("div",{class:"v-slider-track__tick-label"},[((xt=r["tick-label"])==null?void 0:xt.call(r,{tick:rt,index:ht}))??rt.label])])}):[]);return Dt(()=>t("div",{class:["v-slider-track",X.value,n.class],style:[{"--v-slider-track-size":qt(B.value),"--v-slider-tick-size":qt(I.value),direction:P.value?void 0:g.value},n.style]},[t("div",{class:["v-slider-track__background",U.value,{"v-slider-track__background--opacity":!!c.value||!$.value}],style:{...nt.value,...W.value}},null),t("div",{class:["v-slider-track__fill",R.value],style:{...G.value,...H.value}},null),x.value&&t("div",{class:["v-slider-track__ticks",{"v-slider-track__ticks--always-show":x.value==="always"}]},[et.value])])),{}}}),K8=mt({...hi(),...wg(),...Al(),modelValue:{type:[Number,String],default:0}},"VSlider"),oh=Bt()({name:"VSlider",props:K8(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,start:n=>!0,end:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=Lt(),{rtlClasses:g}=Ue(),v=vg(n),k=ne(n,"modelValue",void 0,tt=>v.roundValue(tt??v.min.value)),{min:x,max:I,mousePressed:S,roundValue:$,onSliderMousedown:B,onSliderTouchstart:P,trackContainerRef:D,position:F,hasLabels:X,readonly:R}=fg({props:n,steps:v,onSliderStart:()=>{h("start",k.value)},onSliderEnd:tt=>{let{value:nt}=tt;const Y=$(nt);k.value=Y,h("end",Y)},onSliderMove:tt=>{let{value:nt}=tt;return k.value=$(nt)},getActiveThumb:()=>{var tt;return(tt=c.value)==null?void 0:tt.$el}}),{isFocused:H,focus:U,blur:W}=er(n),_=q(()=>F(k.value));return Dt(()=>{const[tt,nt]=Ke.filterProps(n),Y=!!(n.label||r.label||r.prepend);return t(Ke,o({class:["v-slider",{"v-slider--has-labels":!!r["tick-label"]||X.value,"v-slider--focused":H.value,"v-slider--pressed":S.value,"v-slider--disabled":n.disabled},g.value,n.class],style:n.style},tt,{focused:H.value}),{...r,prepend:Y?G=>{var et,st;return t(Kt,null,[((et=r.label)==null?void 0:et.call(r,G))??n.label?t(xo,{id:G.id.value,class:"v-slider__label",text:n.label},null):void 0,(st=r.prepend)==null?void 0:st.call(r,G)])}:void 0,default:G=>{let{id:et,messagesId:st}=G;return t("div",{class:"v-slider__container",onMousedown:R.value?void 0:B,onTouchstartPassive:R.value?void 0:P},[t("input",{id:et.value,name:n.name||et.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:k.value},null),t(mg,{ref:D,start:0,stop:_.value},{"tick-label":r["tick-label"]}),t(rh,{ref:c,"aria-describedby":st.value,focused:H.value,min:x.value,max:I.value,modelValue:k.value,"onUpdate:modelValue":rt=>k.value=rt,position:_.value,elevation:n.elevation,onFocus:U,onBlur:W},{"thumb-label":r["thumb-label"]})])}})}),{}}}),Q8=mt({color:{type:Object},disabled:Boolean,hideAlpha:Boolean,...Xt()},"VColorPickerPreview"),J8=Fn({name:"VColorPickerPreview",props:Q8(),emits:{"update:color":n=>!0},setup(n,l){let{emit:r}=l;return Dt(()=>{var h,c;return t("div",{class:["v-color-picker-preview",{"v-color-picker-preview--hide-alpha":n.hideAlpha},n.class],style:n.style},[t("div",{class:"v-color-picker-preview__dot"},[t("div",{style:{background:Rp(n.color??Yo)}},null)]),t("div",{class:"v-color-picker-preview__sliders"},[t(oh,{class:"v-color-picker-preview__track v-color-picker-preview__hue",modelValue:(h=n.color)==null?void 0:h.h,"onUpdate:modelValue":g=>r("update:color",{...n.color??Yo,h:g}),step:0,min:0,max:360,disabled:n.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null),!n.hideAlpha&&t(oh,{class:"v-color-picker-preview__track v-color-picker-preview__alpha",modelValue:((c=n.color)==null?void 0:c.a)??1,"onUpdate:modelValue":g=>r("update:color",{...n.color??Yo,a:g}),step:1/256,min:0,max:1,disabled:n.disabled,thumbSize:14,trackSize:8,trackFillColor:"white",hideDetails:!0},null)])])}),{}}});const t9=Object.freeze({base:"#f44336",lighten5:"#ffebee",lighten4:"#ffcdd2",lighten3:"#ef9a9a",lighten2:"#e57373",lighten1:"#ef5350",darken1:"#e53935",darken2:"#d32f2f",darken3:"#c62828",darken4:"#b71c1c",accent1:"#ff8a80",accent2:"#ff5252",accent3:"#ff1744",accent4:"#d50000"}),e9=Object.freeze({base:"#e91e63",lighten5:"#fce4ec",lighten4:"#f8bbd0",lighten3:"#f48fb1",lighten2:"#f06292",lighten1:"#ec407a",darken1:"#d81b60",darken2:"#c2185b",darken3:"#ad1457",darken4:"#880e4f",accent1:"#ff80ab",accent2:"#ff4081",accent3:"#f50057",accent4:"#c51162"}),n9=Object.freeze({base:"#9c27b0",lighten5:"#f3e5f5",lighten4:"#e1bee7",lighten3:"#ce93d8",lighten2:"#ba68c8",lighten1:"#ab47bc",darken1:"#8e24aa",darken2:"#7b1fa2",darken3:"#6a1b9a",darken4:"#4a148c",accent1:"#ea80fc",accent2:"#e040fb",accent3:"#d500f9",accent4:"#aa00ff"}),l9=Object.freeze({base:"#673ab7",lighten5:"#ede7f6",lighten4:"#d1c4e9",lighten3:"#b39ddb",lighten2:"#9575cd",lighten1:"#7e57c2",darken1:"#5e35b1",darken2:"#512da8",darken3:"#4527a0",darken4:"#311b92",accent1:"#b388ff",accent2:"#7c4dff",accent3:"#651fff",accent4:"#6200ea"}),r9=Object.freeze({base:"#3f51b5",lighten5:"#e8eaf6",lighten4:"#c5cae9",lighten3:"#9fa8da",lighten2:"#7986cb",lighten1:"#5c6bc0",darken1:"#3949ab",darken2:"#303f9f",darken3:"#283593",darken4:"#1a237e",accent1:"#8c9eff",accent2:"#536dfe",accent3:"#3d5afe",accent4:"#304ffe"}),o9=Object.freeze({base:"#2196f3",lighten5:"#e3f2fd",lighten4:"#bbdefb",lighten3:"#90caf9",lighten2:"#64b5f6",lighten1:"#42a5f5",darken1:"#1e88e5",darken2:"#1976d2",darken3:"#1565c0",darken4:"#0d47a1",accent1:"#82b1ff",accent2:"#448aff",accent3:"#2979ff",accent4:"#2962ff"}),s9=Object.freeze({base:"#03a9f4",lighten5:"#e1f5fe",lighten4:"#b3e5fc",lighten3:"#81d4fa",lighten2:"#4fc3f7",lighten1:"#29b6f6",darken1:"#039be5",darken2:"#0288d1",darken3:"#0277bd",darken4:"#01579b",accent1:"#80d8ff",accent2:"#40c4ff",accent3:"#00b0ff",accent4:"#0091ea"}),a9=Object.freeze({base:"#00bcd4",lighten5:"#e0f7fa",lighten4:"#b2ebf2",lighten3:"#80deea",lighten2:"#4dd0e1",lighten1:"#26c6da",darken1:"#00acc1",darken2:"#0097a7",darken3:"#00838f",darken4:"#006064",accent1:"#84ffff",accent2:"#18ffff",accent3:"#00e5ff",accent4:"#00b8d4"}),i9=Object.freeze({base:"#009688",lighten5:"#e0f2f1",lighten4:"#b2dfdb",lighten3:"#80cbc4",lighten2:"#4db6ac",lighten1:"#26a69a",darken1:"#00897b",darken2:"#00796b",darken3:"#00695c",darken4:"#004d40",accent1:"#a7ffeb",accent2:"#64ffda",accent3:"#1de9b6",accent4:"#00bfa5"}),h9=Object.freeze({base:"#4caf50",lighten5:"#e8f5e9",lighten4:"#c8e6c9",lighten3:"#a5d6a7",lighten2:"#81c784",lighten1:"#66bb6a",darken1:"#43a047",darken2:"#388e3c",darken3:"#2e7d32",darken4:"#1b5e20",accent1:"#b9f6ca",accent2:"#69f0ae",accent3:"#00e676",accent4:"#00c853"}),d9=Object.freeze({base:"#8bc34a",lighten5:"#f1f8e9",lighten4:"#dcedc8",lighten3:"#c5e1a5",lighten2:"#aed581",lighten1:"#9ccc65",darken1:"#7cb342",darken2:"#689f38",darken3:"#558b2f",darken4:"#33691e",accent1:"#ccff90",accent2:"#b2ff59",accent3:"#76ff03",accent4:"#64dd17"}),c9=Object.freeze({base:"#cddc39",lighten5:"#f9fbe7",lighten4:"#f0f4c3",lighten3:"#e6ee9c",lighten2:"#dce775",lighten1:"#d4e157",darken1:"#c0ca33",darken2:"#afb42b",darken3:"#9e9d24",darken4:"#827717",accent1:"#f4ff81",accent2:"#eeff41",accent3:"#c6ff00",accent4:"#aeea00"}),u9=Object.freeze({base:"#ffeb3b",lighten5:"#fffde7",lighten4:"#fff9c4",lighten3:"#fff59d",lighten2:"#fff176",lighten1:"#ffee58",darken1:"#fdd835",darken2:"#fbc02d",darken3:"#f9a825",darken4:"#f57f17",accent1:"#ffff8d",accent2:"#ffff00",accent3:"#ffea00",accent4:"#ffd600"}),p9=Object.freeze({base:"#ffc107",lighten5:"#fff8e1",lighten4:"#ffecb3",lighten3:"#ffe082",lighten2:"#ffd54f",lighten1:"#ffca28",darken1:"#ffb300",darken2:"#ffa000",darken3:"#ff8f00",darken4:"#ff6f00",accent1:"#ffe57f",accent2:"#ffd740",accent3:"#ffc400",accent4:"#ffab00"}),g9=Object.freeze({base:"#ff9800",lighten5:"#fff3e0",lighten4:"#ffe0b2",lighten3:"#ffcc80",lighten2:"#ffb74d",lighten1:"#ffa726",darken1:"#fb8c00",darken2:"#f57c00",darken3:"#ef6c00",darken4:"#e65100",accent1:"#ffd180",accent2:"#ffab40",accent3:"#ff9100",accent4:"#ff6d00"}),w9=Object.freeze({base:"#ff5722",lighten5:"#fbe9e7",lighten4:"#ffccbc",lighten3:"#ffab91",lighten2:"#ff8a65",lighten1:"#ff7043",darken1:"#f4511e",darken2:"#e64a19",darken3:"#d84315",darken4:"#bf360c",accent1:"#ff9e80",accent2:"#ff6e40",accent3:"#ff3d00",accent4:"#dd2c00"}),v9=Object.freeze({base:"#795548",lighten5:"#efebe9",lighten4:"#d7ccc8",lighten3:"#bcaaa4",lighten2:"#a1887f",lighten1:"#8d6e63",darken1:"#6d4c41",darken2:"#5d4037",darken3:"#4e342e",darken4:"#3e2723"}),f9=Object.freeze({base:"#607d8b",lighten5:"#eceff1",lighten4:"#cfd8dc",lighten3:"#b0bec5",lighten2:"#90a4ae",lighten1:"#78909c",darken1:"#546e7a",darken2:"#455a64",darken3:"#37474f",darken4:"#263238"}),m9=Object.freeze({base:"#9e9e9e",lighten5:"#fafafa",lighten4:"#f5f5f5",lighten3:"#eeeeee",lighten2:"#e0e0e0",lighten1:"#bdbdbd",darken1:"#757575",darken2:"#616161",darken3:"#424242",darken4:"#212121"}),k9=Object.freeze({black:"#000000",white:"#ffffff",transparent:"#ffffff00"}),b9=Object.freeze({red:t9,pink:e9,purple:n9,deepPurple:l9,indigo:r9,blue:o9,lightBlue:s9,cyan:a9,teal:i9,green:h9,lightGreen:d9,lime:c9,yellow:u9,amber:p9,orange:g9,deepOrange:w9,brown:v9,blueGrey:f9,grey:m9,shades:k9}),M9=mt({swatches:{type:Array,default:()=>x9(b9)},disabled:Boolean,color:Object,maxHeight:[Number,String],...Xt()},"VColorPickerSwatches");function x9(n){return Object.keys(n).map(l=>{const r=n[l];return r.base?[r.base,r.darken4,r.darken3,r.darken2,r.darken1,r.lighten1,r.lighten2,r.lighten3,r.lighten4,r.lighten5]:[r.black,r.white,r.transparent]})}const z9=Fn({name:"VColorPickerSwatches",props:M9(),emits:{"update:color":n=>!0},setup(n,l){let{emit:r}=l;return Dt(()=>t("div",{class:["v-color-picker-swatches",n.class],style:[{maxHeight:qt(n.maxHeight)},n.style]},[t("div",null,[n.swatches.map(h=>t("div",{class:"v-color-picker-swatches__swatch"},[h.map(c=>{const g=Yn(c),v=ei(g),k=Fp(g);return t("div",{class:"v-color-picker-swatches__color",onClick:()=>v&&r("update:color",v)},[t("div",{style:{background:k}},[n.color&&Sr(n.color,v)?t(xe,{size:"x-small",icon:"$success",color:l6(c,"#FFFFFF")>2?"white":"black"},null):void 0])])})]))])])),{}}});const kg=mt({color:String,...An(),...Xt(),...Tn(),..._e(),...Ql(),...bo(),...Ce(),...re(),...ue()},"VSheet"),sh=Bt()({name:"VSheet",props:kg(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(Ht(n,"color")),{borderClasses:v}=Vn(n),{dimensionStyles:k}=En(n),{elevationClasses:x}=Je(n),{locationStyles:I}=Jl(n),{positionClasses:S}=Mo(n),{roundedClasses:$}=Ne(n);return Dt(()=>t(n.tag,{class:["v-sheet",h.value,c.value,v.value,x.value,S.value,$.value,n.class],style:[g.value,k.value,I.value,n.style]},r)),{}}}),I9=mt({canvasHeight:{type:[String,Number],default:150},disabled:Boolean,dotSize:{type:[Number,String],default:10},hideCanvas:Boolean,hideSliders:Boolean,hideInputs:Boolean,mode:{type:String,default:"rgba",validator:n=>Object.keys(fr).includes(n)},modes:{type:Array,default:()=>Object.keys(fr),validator:n=>Array.isArray(n)&&n.every(l=>Object.keys(fr).includes(l))},showSwatches:Boolean,swatches:Array,swatchesMaxHeight:{type:[Number,String],default:150},modelValue:{type:[Object,String]},...On(kg({width:300}),["height","location","minHeight","maxHeight","minWidth","maxWidth"])},"VColorPicker"),y9=Fn({name:"VColorPicker",props:I9(),emits:{"update:modelValue":n=>!0,"update:mode":n=>!0},setup(n){const l=ne(n,"mode"),r=Lt(null),h=ne(n,"modelValue",void 0,v=>{if(v==null||v==="")return null;let k;try{k=ei(Yn(v))}catch{return null}return r.value&&(k={...k,h:r.value.h},r.value=null),k},v=>v?E8(v,n.modelValue):null),{rtlClasses:c}=Ue(),g=v=>{h.value=v,r.value=v};return Ve(()=>{n.modes.includes(l.value)||(l.value=n.modes[0])}),Te({VSlider:{color:void 0,trackColor:void 0,trackFillColor:void 0}}),Dt(()=>{const[v]=sh.filterProps(n);return t(sh,o({rounded:n.rounded,elevation:n.elevation,theme:n.theme,class:["v-color-picker",c.value,n.class],style:[{"--v-color-picker-color-hsv":Rp({...h.value??Yo,a:1})},n.style]},v,{maxWidth:n.width}),{default:()=>[!n.hideCanvas&&t(R8,{key:"canvas",color:h.value,"onUpdate:color":g,disabled:n.disabled,dotSize:n.dotSize,width:n.width,height:n.canvasHeight},null),(!n.hideSliders||!n.hideInputs)&&t("div",{key:"controls",class:"v-color-picker__controls"},[!n.hideSliders&&t(J8,{key:"preview",color:h.value,"onUpdate:color":g,hideAlpha:!l.value.endsWith("a"),disabled:n.disabled},null),!n.hideInputs&&t(Y8,{key:"edit",modes:n.modes,mode:l.value,"onUpdate:mode":k=>l.value=k,color:h.value,"onUpdate:color":g,disabled:n.disabled},null)]),n.showSwatches&&t(z9,{key:"swatches",color:h.value,"onUpdate:color":g,maxHeight:n.swatchesMaxHeight,swatches:n.swatches,disabled:n.disabled},null)]})}),{}}});function C9(n,l,r){if(l==null)return n;if(Array.isArray(l))throw new Error("Multiple matches is not implemented");return typeof l=="number"&&~l?t(Kt,null,[t("span",{class:"v-combobox__unmask"},[n.substr(0,l)]),t("span",{class:"v-combobox__mask"},[n.substr(l,r)]),t("span",{class:"v-combobox__unmask"},[n.substr(l+r)])]):n}const S9=mt({autoSelectFirst:{type:[Boolean,String]},delimiters:Array,...J4({filterKeys:["title"]}),...A2({hideNoData:!0,returnObject:!0}),...On(vi({modelValue:null,role:"combobox"}),["validationValue","dirty","appendInnerIcon"]),...Sl({transition:!1})},"VCombobox"),$9=Bt()({name:"VCombobox",props:S9(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,"update:search":n=>!0,"update:menu":n=>!0},setup(n,l){var bt;let{emit:r,slots:h}=l;const{t:c}=Rn(),g=Lt(),v=Wt(!1),k=Wt(!0),x=Wt(!1),I=Lt(),S=Lt(),$=ne(n,"menu"),B=q({get:()=>$.value,set:ft=>{var J;$.value&&!ft&&((J=I.value)!=null&&J.ΨopenChildren)||($.value=ft)}}),P=Wt(-1);let D=!1;const F=q(()=>{var ft;return(ft=g.value)==null?void 0:ft.color}),X=q(()=>B.value?n.closeText:n.openText),{items:R,transformIn:H,transformOut:U}=y2(n),{textColorClasses:W,textColorStyles:_}=an(F),tt=ne(n,"modelValue",[],ft=>H(Pn(ft)),ft=>{const J=U(ft);return n.multiple?J:J[0]??null}),nt=di(),Y=Wt(n.multiple?"":((bt=tt.value[0])==null?void 0:bt.title)??""),G=q({get:()=>Y.value,set:ft=>{var J;if(Y.value=ft,n.multiple||(tt.value=[qr(n,ft)]),ft&&n.multiple&&((J=n.delimiters)!=null&&J.length)){const lt=ft.split(new RegExp(`(?:${n.delimiters.join("|")})+`));lt.length>1&&(lt.forEach(at=>{at=at.trim(),at&&ut(qr(n,at))}),Y.value="")}ft||(P.value=-1),k.value=!ft}});_t(Y,ft=>{D?we(()=>D=!1):v.value&&!B.value&&(B.value=!0),r("update:search",ft)}),_t(tt,ft=>{var J;n.multiple||(Y.value=((J=ft[0])==null?void 0:J.title)??"")});const{filteredItems:et,getMatches:st}=tg(n,R,()=>k.value?"":G.value),rt=q(()=>tt.value.map(ft=>R.value.find(J=>{const lt=ln(J.raw,n.itemValue),at=ln(ft.raw,n.itemValue);return lt===void 0||at===void 0?!1:n.returnObject?n.valueComparator(lt,at):n.valueComparator(J.value,ft.value)})||ft)),ht=q(()=>n.hideSelected?et.value.filter(ft=>!rt.value.some(J=>J.value===ft.value)):et.value),dt=q(()=>rt.value.map(ft=>ft.props.value)),Ct=q(()=>rt.value[P.value]),xt=q(()=>{var J;return(n.autoSelectFirst===!0||n.autoSelectFirst==="exact"&&G.value===((J=ht.value[0])==null?void 0:J.title))&&ht.value.length>0&&!k.value&&!x.value}),wt=q(()=>n.hideNoData&&!R.value.length||n.readonly||(nt==null?void 0:nt.isReadonly.value)),gt=Lt(),{onListScroll:It,onListKeydown:At}=$2(gt,g);function Tt(ft){D=!0,n.openOnClear&&(B.value=!0)}function Ft(){wt.value||(B.value=!0)}function Qt(ft){wt.value||(v.value&&(ft.preventDefault(),ft.stopPropagation()),B.value=!B.value)}function Jt(ft){var at;if(n.readonly||nt!=null&&nt.isReadonly.value)return;const J=g.value.selectionStart,lt=dt.value.length;if((P.value>-1||["Enter","ArrowDown","ArrowUp"].includes(ft.key))&&ft.preventDefault(),["Enter","ArrowDown"].includes(ft.key)&&(B.value=!0),["Escape"].includes(ft.key)&&(B.value=!1),["Enter","Escape","Tab"].includes(ft.key)&&(xt.value&&["Enter","Tab"].includes(ft.key)&&ut(et.value[0]),k.value=!0),ft.key==="ArrowDown"&&xt.value&&((at=gt.value)==null||at.focus("next")),!!n.multiple){if(["Backspace","Delete"].includes(ft.key)){if(P.value<0){ft.key==="Backspace"&&!G.value&&(P.value=lt-1);return}const ct=P.value;Ct.value&&ut(Ct.value),P.value=ct>=lt-1?lt-2:ct}if(ft.key==="ArrowLeft"){if(P.value<0&&J>0)return;const ct=P.value>-1?P.value-1:lt-1;rt.value[ct]?P.value=ct:(P.value=-1,g.value.setSelectionRange(G.value.length,G.value.length))}if(ft.key==="ArrowRight"){if(P.value<0)return;const ct=P.value+1;rt.value[ct]?P.value=ct:(P.value=-1,g.value.setSelectionRange(0,0))}ft.key==="Enter"&&G.value&&(ut(qr(n,G.value)),G.value="")}}function Et(){var ft;v.value&&(k.value=!0,(ft=g.value)==null||ft.focus())}function ut(ft){if(n.multiple){const J=dt.value.findIndex(lt=>n.valueComparator(lt,ft.value));if(J===-1)tt.value=[...tt.value,ft];else{const lt=[...tt.value];lt.splice(J,1),tt.value=lt}G.value=""}else tt.value=[ft],Y.value=ft.title,we(()=>{B.value=!1,k.value=!0})}function pt(ft){v.value=!0,setTimeout(()=>{x.value=!0})}function Nt(ft){x.value=!1}function jt(ft){(ft==null||ft===""&&!n.multiple)&&(tt.value=[])}return _t(et,ft=>{!ft.length&&n.hideNoData&&(B.value=!1)}),_t(v,(ft,J)=>{ft||ft===J||(P.value=-1,B.value=!1,xt.value&&!x.value&&!rt.value.some(lt=>{let{value:at}=lt;return at===ht.value[0].value})?ut(ht.value[0]):n.multiple&&G.value&&(tt.value=[...tt.value,qr(n,G.value)],G.value=""))}),_t(B,()=>{if(!n.hideSelected&&B.value&&rt.value.length){const ft=ht.value.findIndex(J=>rt.value.some(lt=>J.value===lt.value));ze&&window.requestAnimationFrame(()=>{var J;ft>=0&&((J=S.value)==null||J.scrollToIndex(ft))})}}),Dt(()=>{const ft=!!(n.chips||h.chip),J=!!(!n.hideNoData||ht.value.length||h["prepend-item"]||h["append-item"]||h["no-data"]),lt=tt.value.length>0,[at]=Ir.filterProps(n);return t(Ir,o({ref:g},at,{modelValue:G.value,"onUpdate:modelValue":[ct=>G.value=ct,jt],focused:v.value,"onUpdate:focused":ct=>v.value=ct,validationValue:tt.externalValue,dirty:lt,class:["v-combobox",{"v-combobox--active-menu":B.value,"v-combobox--chips":!!n.chips,"v-combobox--selection-slot":!!h.selection,"v-combobox--selecting-index":P.value>-1,[`v-combobox--${n.multiple?"multiple":"single"}`]:!0},n.class],style:n.style,readonly:n.readonly,placeholder:lt?void 0:n.placeholder,"onClick:clear":Tt,"onMousedown:control":Ft,onKeydown:Jt}),{...h,default:()=>t(Kt,null,[t(pi,o({ref:I,modelValue:B.value,"onUpdate:modelValue":ct=>B.value=ct,activator:"parent",contentClass:"v-combobox__content",disabled:wt.value,eager:n.eager,maxHeight:310,openOnClick:!1,closeOnContentClick:!1,transition:n.transition,onAfterLeave:Et},n.menuProps),{default:()=>[J&&t(ci,{ref:gt,selected:dt.value,selectStrategy:n.multiple?"independent":"single-independent",onMousedown:ct=>ct.preventDefault(),onKeydown:At,onFocusin:pt,onFocusout:Nt,onScrollPassive:It,tabindex:"-1",color:n.itemColor??n.color},{default:()=>{var ct,kt,yt;return[(ct=h["prepend-item"])==null?void 0:ct.call(h),!ht.value.length&&!n.hideNoData&&(((kt=h["no-data"])==null?void 0:kt.call(h))??t(Ml,{title:c(n.noDataText)},null)),t(fi,{ref:S,renderless:!0,items:ht.value},{default:Ot=>{var Ut;let{item:$t,index:Rt,itemRef:Pt}=Ot;const Zt=o($t.props,{ref:Pt,key:Rt,active:xt.value&&Rt===0?!0:void 0,onClick:()=>ut($t)});return((Ut=h.item)==null?void 0:Ut.call(h,{item:$t,index:Rt,props:Zt}))??t(Ml,Zt,{prepend:Gt=>{let{isSelected:te}=Gt;return t(Kt,null,[n.multiple&&!n.hideSelected?t(ao,{key:$t.value,modelValue:te,ripple:!1,tabindex:"-1"},null):void 0,$t.props.prependIcon&&t(xe,{icon:$t.props.prependIcon},null)])},title:()=>{var Gt,te;return k.value?$t.title:C9($t.title,(Gt=st($t))==null?void 0:Gt.title,((te=G.value)==null?void 0:te.length)??0)}})}}),(yt=h["append-item"])==null?void 0:yt.call(h)]}})]}),rt.value.map((ct,kt)=>{var $t;function yt(Rt){Rt.stopPropagation(),Rt.preventDefault(),ut(ct)}const Ot={"onClick:close":yt,onMousedown(Rt){Rt.preventDefault(),Rt.stopPropagation()},modelValue:!0,"onUpdate:modelValue":void 0};return t("div",{key:ct.value,class:["v-combobox__selection",kt===P.value&&["v-combobox__selection--selected",W.value]],style:kt===P.value?_.value:{}},[ft?h.chip?t(ke,{key:"chip-defaults",defaults:{VChip:{closable:n.closableChips,size:"small",text:ct.title}}},{default:()=>{var Rt;return[(Rt=h.chip)==null?void 0:Rt.call(h,{item:ct,index:kt,props:Ot})]}}):t(As,o({key:"chip",closable:n.closableChips,size:"small",text:ct.title},Ot),null):(($t=h.selection)==null?void 0:$t.call(h,{item:ct,index:kt}))??t("span",{class:"v-combobox__selection-text"},[ct.title,n.multiple&&kt!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{scopeId:c}=zo(),g=Lt();function v(x){var $,B;const I=x.relatedTarget,S=x.target;if(I!==S&&(($=g.value)!=null&&$.contentEl)&&((B=g.value)!=null&&B.globalTop)&&![document,g.value.contentEl].includes(S)&&!g.value.contentEl.contains(S)){const P=ss(g.value.contentEl);if(!P.length)return;const D=P[0],F=P[P.length-1];I===D?F.focus():D.focus()}}ze&&_t(()=>h.value&&n.retainFocus,x=>{x?document.addEventListener("focusin",v):document.removeEventListener("focusin",v)},{immediate:!0}),_t(h,async x=>{var I,S;await we(),x?(I=g.value.contentEl)==null||I.focus({preventScroll:!0}):(S=g.value.activatorEl)==null||S.focus({preventScroll:!0})});const k=q(()=>o({"aria-haspopup":"dialog","aria-expanded":String(h.value)},n.activatorProps));return Dt(()=>{const[x]=xl.filterProps(n);return t(xl,o({ref:g,class:["v-dialog",{"v-dialog--fullscreen":n.fullscreen,"v-dialog--scrollable":n.scrollable},n.class],style:n.style},x,{modelValue:h.value,"onUpdate:modelValue":I=>h.value=I,"aria-modal":"true",activatorProps:k.value,role:"dialog"},c),{activator:r.activator,default:function(){for(var I=arguments.length,S=new Array(I),$=0;${var B;return[(B=r.default)==null?void 0:B.call(r,...S)]}})}})}),Jn({},g)}});const us=Symbol.for("vuetify:v-expansion-panel"),H9=["default","accordion","inset","popout"],N9=mt({color:String,variant:{type:String,default:"default",validator:n=>H9.includes(n)},readonly:Boolean,...Xt(),...vo(),...re(),...ue()},"VExpansionPanels"),j9=Bt()({name:"VExpansionPanels",props:N9(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;jr(n,us);const{themeClasses:h}=ve(n),c=q(()=>n.variant&&`v-expansion-panels--variant-${n.variant}`);return Te({VExpansionPanel:{color:Ht(n,"color")},VExpansionPanelTitle:{readonly:Ht(n,"readonly")}}),Dt(()=>t(n.tag,{class:["v-expansion-panels",h.value,c.value,n.class],style:n.style},r)),{}}}),P9=mt({...Xt(),...ui()},"VExpansionPanelText"),bg=Bt()({name:"VExpansionPanelText",props:P9(),setup(n,l){let{slots:r}=l;const h=de(us);if(!h)throw new Error("[Vuetify] v-expansion-panel-text needs to be placed inside v-expansion-panel");const{hasContent:c,onAfterLeave:g}=C2(n,h.isSelected);return Dt(()=>t(oi,{onAfterLeave:g},{default:()=>{var v;return[$e(t("div",{class:["v-expansion-panel-text",n.class],style:n.style},[r.default&&c.value&&t("div",{class:"v-expansion-panel-text__wrapper"},[(v=r.default)==null?void 0:v.call(r)])]),[[Dn,h.isSelected.value]])]}})),{}}}),Mg=mt({color:String,expandIcon:{type:ee,default:"$expand"},collapseIcon:{type:ee,default:"$collapse"},hideActions:Boolean,ripple:{type:[Boolean,Object],default:!1},readonly:Boolean,...Xt()},"VExpansionPanelTitle"),xg=Bt()({name:"VExpansionPanelTitle",directives:{Ripple:tr},props:Mg(),setup(n,l){let{slots:r}=l;const h=de(us);if(!h)throw new Error("[Vuetify] v-expansion-panel-title needs to be placed inside v-expansion-panel");const{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(n,"color"),v=q(()=>({collapseIcon:n.collapseIcon,disabled:h.disabled.value,expanded:h.isSelected.value,expandIcon:n.expandIcon,readonly:n.readonly}));return Dt(()=>{var k;return $e(t("button",{class:["v-expansion-panel-title",{"v-expansion-panel-title--active":h.isSelected.value},c.value,n.class],style:[g.value,n.style],type:"button",tabindex:h.disabled.value?-1:void 0,disabled:h.disabled.value,"aria-expanded":h.isSelected.value,onClick:n.readonly?void 0:h.toggle},[t("span",{class:"v-expansion-panel-title__overlay"},null),(k=r.default)==null?void 0:k.call(r,v.value),!n.hideActions&&t("span",{class:"v-expansion-panel-title__icon"},[r.actions?r.actions(v.value):t(xe,{icon:h.isSelected.value?n.collapseIcon:n.expandIcon},null)])]),[[Mn("ripple"),n.ripple]])}),{}}}),L9=mt({title:String,text:String,bgColor:String,...Xt(),..._e(),...fo(),...ui(),...Ce(),...re(),...Mg()},"VExpansionPanel"),D9=Bt()({name:"VExpansionPanel",props:L9(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=mo(n,us),{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(n,"bgColor"),{elevationClasses:v}=Je(n),{roundedClasses:k}=Ne(n),x=q(()=>(h==null?void 0:h.disabled.value)||n.disabled),I=q(()=>h.group.items.value.reduce((B,P,D)=>(h.group.selected.value.includes(P.id)&&B.push(D),B),[])),S=q(()=>{const B=h.group.items.value.findIndex(P=>P.id===h.id);return!h.isSelected.value&&I.value.some(P=>P-B===1)}),$=q(()=>{const B=h.group.items.value.findIndex(P=>P.id===h.id);return!h.isSelected.value&&I.value.some(P=>P-B===-1)});return Se(us,h),Te({VExpansionPanelText:{eager:Ht(n,"eager")}}),Dt(()=>{const B=!!(r.text||n.text),P=!!(r.title||n.title);return t(n.tag,{class:["v-expansion-panel",{"v-expansion-panel--active":h.isSelected.value,"v-expansion-panel--before-active":S.value,"v-expansion-panel--after-active":$.value,"v-expansion-panel--disabled":x.value},k.value,c.value,n.class],style:[g.value,n.style]},{default:()=>{var D;return[t("div",{class:["v-expansion-panel__shadow",...v.value]},null),P&&t(xg,{key:"title",collapseIcon:n.collapseIcon,color:n.color,expandIcon:n.expandIcon,hideActions:n.hideActions,ripple:n.ripple},{default:()=>[r.title?r.title():n.title]}),B&&t(bg,{key:"text"},{default:()=>[r.text?r.text():n.text]}),(D=r.default)==null?void 0:D.call(r)]}})}),{}}});const O9=mt({chips:Boolean,counter:Boolean,counterSizeString:{type:String,default:"$vuetify.fileInput.counterSize"},counterString:{type:String,default:"$vuetify.fileInput.counter"},multiple:Boolean,showSize:{type:[Boolean,Number],default:!1,validator:n=>typeof n=="boolean"||[1e3,1024].includes(n)},...Al({prependIcon:"$file"}),modelValue:{type:Array,default:()=>[],validator:n=>Pn(n).every(l=>l!=null&&typeof l=="object")},...wi({clearable:!0})},"VFileInput"),F9=Bt()({name:"VFileInput",inheritAttrs:!1,props:O9(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{t:g}=Rn(),v=ne(n,"modelValue"),{isFocused:k,focus:x,blur:I}=er(n),S=q(()=>typeof n.showSize!="boolean"?n.showSize:void 0),$=q(()=>(v.value??[]).reduce((G,et)=>{let{size:st=0}=et;return G+st},0)),B=q(()=>ad($.value,S.value)),P=q(()=>(v.value??[]).map(G=>{const{name:et="",size:st=0}=G;return n.showSize?`${et} (${ad(st,S.value)})`:et})),D=q(()=>{var et;const G=((et=v.value)==null?void 0:et.length)??0;return n.showSize?g(n.counterSizeString,G,B.value):g(n.counterString,G)}),F=Lt(),X=Lt(),R=Lt(),H=q(()=>k.value||n.active),U=q(()=>["plain","underlined"].includes(n.variant));function W(){var G;R.value!==document.activeElement&&((G=R.value)==null||G.focus()),k.value||x()}function _(G){nt(G)}function tt(G){h("mousedown:control",G)}function nt(G){var et;(et=R.value)==null||et.click(),h("click:control",G)}function Y(G){G.stopPropagation(),W(),we(()=>{v.value=[],n2(n["onClick:clear"],G)})}return _t(v,G=>{(!Array.isArray(G)||!G.length)&&R.value&&(R.value.value="")}),Dt(()=>{const G=!!(c.counter||n.counter),et=!!(G||c.details),[st,rt]=$r(r),[{modelValue:ht,...dt}]=Ke.filterProps(n),[Ct]=S2(n);return t(Ke,o({ref:F,modelValue:v.value,"onUpdate:modelValue":xt=>v.value=xt,class:["v-file-input",{"v-text-field--plain-underlined":U.value},n.class],style:n.style,"onClick:prepend":_},st,dt,{centerAffix:!U.value,focused:k.value}),{...c,default:xt=>{let{id:wt,isDisabled:gt,isDirty:It,isReadonly:At,isValid:Tt}=xt;return t(Hs,o({ref:X,"prepend-icon":n.prependIcon,onMousedown:tt,onClick:nt,"onClick:clear":Y,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},Ct,{id:wt.value,active:H.value||It.value,dirty:It.value,disabled:gt.value,focused:k.value,error:Tt.value===!1}),{...c,default:Ft=>{var Et;let{props:{class:Qt,...Jt}}=Ft;return t(Kt,null,[t("input",o({ref:R,type:"file",readonly:At.value,disabled:gt.value,multiple:n.multiple,name:n.name,onClick:ut=>{ut.stopPropagation(),At.value&&ut.preventDefault(),W()},onChange:ut=>{if(!ut.target)return;const pt=ut.target;v.value=[...pt.files??[]]},onFocus:W,onBlur:I},Jt,rt),null),t("div",{class:Qt},[!!((Et=v.value)!=null&&Et.length)&&(c.selection?c.selection({fileNames:P.value,totalBytes:$.value,totalBytesReadable:B.value}):n.chips?P.value.map(ut=>t(As,{key:ut,size:"small",color:n.color},{default:()=>[ut]})):P.value.join(", "))])])}})},details:et?xt=>{var wt,gt;return t(Kt,null,[(wt=c.details)==null?void 0:wt.call(c,xt),G&&t(Kt,null,[t("span",null,null),t(gi,{active:!!((gt=v.value)!=null&>.length),value:D.value},c.counter)])])}:void 0})}),Jn({},F,X,R)}});const R9=mt({app:Boolean,color:String,height:{type:[Number,String],default:"auto"},...An(),...Xt(),..._e(),...go(),...Ce(),...re({tag:"footer"}),...ue()},"VFooter"),T9=Bt()({name:"VFooter",props:R9(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(Ht(n,"color")),{borderClasses:v}=Vn(n),{elevationClasses:k}=Je(n),{roundedClasses:x}=Ne(n),I=Wt(32),{resizeRef:S}=sl(P=>{P.length&&(I.value=P[0].target.clientHeight)}),$=q(()=>n.height==="auto"?I.value:parseInt(n.height,10)),{layoutItemStyles:B}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:q(()=>"bottom"),layoutSize:$,elementSize:q(()=>n.height==="auto"?void 0:$.value),active:q(()=>n.app),absolute:Ht(n,"absolute")});return Dt(()=>t(n.tag,{ref:S,class:["v-footer",h.value,c.value,v.value,k.value,x.value,n.class],style:[g.value,n.app?B.value:{height:qt(n.height)},n.style]},r)),{}}}),E9=mt({...Xt(),...Z7()},"VForm"),V9=Bt()({name:"VForm",props:E9(),emits:{"update:modelValue":n=>!0,submit:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=K7(n),g=Lt();function v(x){x.preventDefault(),c.reset()}function k(x){const I=x,S=c.validate();I.then=S.then.bind(S),I.catch=S.catch.bind(S),I.finally=S.finally.bind(S),h("submit",I),I.defaultPrevented||S.then($=>{var P;let{valid:B}=$;B&&((P=g.value)==null||P.submit())}),I.preventDefault()}return Dt(()=>{var x;return t("form",{ref:g,class:["v-form",n.class],style:n.style,novalidate:!0,onReset:v,onSubmit:k},[(x=r.default)==null?void 0:x.call(r,c)])}),Jn(c,g)}});const _9=mt({fluid:{type:Boolean,default:!1},...Xt(),...re()},"VContainer"),W9=Bt()({name:"VContainer",props:_9(),setup(n,l){let{slots:r}=l;const{rtlClasses:h}=Ue();return Dt(()=>t(n.tag,{class:["v-container",{"v-container--fluid":n.fluid},h.value,n.class],style:n.style},r)),{}}}),zg=(()=>ni.reduce((n,l)=>(n[l]={type:[Boolean,String,Number],default:!1},n),{}))(),Ig=(()=>ni.reduce((n,l)=>{const r="offset"+Il(l);return n[r]={type:[String,Number],default:null},n},{}))(),yg=(()=>ni.reduce((n,l)=>{const r="order"+Il(l);return n[r]={type:[String,Number],default:null},n},{}))(),qd={col:Object.keys(zg),offset:Object.keys(Ig),order:Object.keys(yg)};function X9(n,l,r){let h=n;if(!(r==null||r===!1)){if(l){const c=l.replace(n,"");h+=`-${c}`}return n==="col"&&(h="v-"+h),n==="col"&&(r===""||r===!0)||(h+=`-${r}`),h.toLowerCase()}}const q9=["auto","start","end","center","baseline","stretch"],Y9=mt({cols:{type:[Boolean,String,Number],default:!1},...zg,offset:{type:[String,Number],default:null},...Ig,order:{type:[String,Number],default:null},...yg,alignSelf:{type:String,default:null,validator:n=>q9.includes(n)},...Xt(),...re()},"VCol"),U9=Bt()({name:"VCol",props:Y9(),setup(n,l){let{slots:r}=l;const h=q(()=>{const c=[];let g;for(g in qd)qd[g].forEach(k=>{const x=n[k],I=X9(g,k,x);I&&c.push(I)});const v=c.some(k=>k.startsWith("v-col-"));return c.push({"v-col":!v||!n.cols,[`v-col-${n.cols}`]:n.cols,[`offset-${n.offset}`]:n.offset,[`order-${n.order}`]:n.order,[`align-self-${n.alignSelf}`]:n.alignSelf}),c});return()=>{var c;return Ln(n.tag,{class:[h.value,n.class],style:n.style},(c=r.default)==null?void 0:c.call(r))}}}),N2=["start","end","center"],Cg=["space-between","space-around","space-evenly"];function j2(n,l){return ni.reduce((r,h)=>{const c=n+Il(h);return r[c]=l(),r},{})}const G9=[...N2,"baseline","stretch"],Sg=n=>G9.includes(n),$g=j2("align",()=>({type:String,default:null,validator:Sg})),Z9=[...N2,...Cg],Ag=n=>Z9.includes(n),Bg=j2("justify",()=>({type:String,default:null,validator:Ag})),K9=[...N2,...Cg,"stretch"],Hg=n=>K9.includes(n),Ng=j2("alignContent",()=>({type:String,default:null,validator:Hg})),Yd={align:Object.keys($g),justify:Object.keys(Bg),alignContent:Object.keys(Ng)},Q9={align:"align",justify:"justify",alignContent:"align-content"};function J9(n,l,r){let h=Q9[n];if(r!=null){if(l){const c=l.replace(n,"");h+=`-${c}`}return h+=`-${r}`,h.toLowerCase()}}const tM=mt({dense:Boolean,noGutters:Boolean,align:{type:String,default:null,validator:Sg},...$g,justify:{type:String,default:null,validator:Ag},...Bg,alignContent:{type:String,default:null,validator:Hg},...Ng,...Xt(),...re()},"VRow"),eM=Bt()({name:"VRow",props:tM(),setup(n,l){let{slots:r}=l;const h=q(()=>{const c=[];let g;for(g in Yd)Yd[g].forEach(v=>{const k=n[v],x=J9(g,v,k);x&&c.push(x)});return c.push({"v-row--no-gutters":n.noGutters,"v-row--dense":n.dense,[`align-${n.align}`]:n.align,[`justify-${n.justify}`]:n.justify,[`align-content-${n.alignContent}`]:n.alignContent}),c});return()=>{var c;return Ln(n.tag,{class:["v-row",h.value,n.class],style:n.style},(c=r.default)==null?void 0:c.call(r))}}}),nM=Qn("v-spacer","div","VSpacer"),lM=mt({disabled:Boolean,modelValue:{type:Boolean,default:void 0},...Y4()},"VHover"),rM=Bt()({name:"VHover",props:lM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{runOpenDelay:c,runCloseDelay:g}=U4(n,v=>!n.disabled&&(h.value=v));return()=>{var v;return(v=r.default)==null?void 0:v.call(r,{isHovering:h.value,props:{onMouseenter:c,onMouseleave:g}})}}});const jg=Symbol.for("vuetify:v-item-group"),oM=mt({...Xt(),...vo({selectedClass:"v-item--selected"}),...re(),...ue()},"VItemGroup"),sM=Bt()({name:"VItemGroup",props:oM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{isSelected:c,select:g,next:v,prev:k,selected:x}=jr(n,jg);return()=>t(n.tag,{class:["v-item-group",h.value,n.class],style:n.style},{default:()=>{var I;return[(I=r.default)==null?void 0:I.call(r,{isSelected:c,select:g,next:v,prev:k,selected:x.value})]}})}}),aM=Bt()({name:"VItem",props:fo(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const{isSelected:h,select:c,toggle:g,selectedClass:v,value:k,disabled:x}=mo(n,jg);return()=>{var I;return(I=r.default)==null?void 0:I.call(r,{isSelected:h.value,selectedClass:v.value,select:c,toggle:g,value:k.value,disabled:x.value})}}});const iM=Qn("v-kbd");const hM=mt({...Xt(),...Jp()},"VLayout"),dM=Bt()({name:"VLayout",props:hM(),setup(n,l){let{slots:r}=l;const{layoutClasses:h,layoutStyles:c,getLayoutItem:g,items:v,layoutRef:k}=t4(n);return Dt(()=>{var x;return t("div",{ref:k,class:[h.value,n.class],style:[c.value,n.style]},[(x=r.default)==null?void 0:x.call(r)])}),{getLayoutItem:g,items:v}}});const cM=mt({position:{type:String,required:!0},size:{type:[Number,String],default:300},modelValue:Boolean,...Xt(),...go()},"VLayoutItem"),uM=Bt()({name:"VLayoutItem",props:cM(),setup(n,l){let{slots:r}=l;const{layoutItemStyles:h}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:Ht(n,"position"),elementSize:Ht(n,"size"),layoutSize:Ht(n,"size"),active:Ht(n,"modelValue"),absolute:Ht(n,"absolute")});return()=>{var c;return t("div",{class:["v-layout-item",n.class],style:[h.value,n.style]},[(c=r.default)==null?void 0:c.call(r)])}}}),pM=mt({modelValue:Boolean,options:{type:Object,default:()=>({root:void 0,rootMargin:void 0,threshold:void 0})},...Xt(),...Tn(),...re(),...Sl({transition:"fade-transition"})},"VLazy"),gM=Bt()({name:"VLazy",directives:{intersect:si},props:pM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{dimensionStyles:h}=En(n),c=ne(n,"modelValue");function g(v){c.value||(c.value=v)}return Dt(()=>$e(t(n.tag,{class:["v-lazy",n.class],style:[h.value,n.style]},{default:()=>[c.value&&t(Un,{transition:n.transition,appear:!0},{default:()=>{var v;return[(v=r.default)==null?void 0:v.call(r)]}})]}),[[Mn("intersect"),{handler:g,options:n.options},null]])),{}}});const wM=mt({locale:String,fallbackLocale:String,messages:Object,rtl:{type:Boolean,default:void 0},...Xt()},"VLocaleProvider"),vM=Bt()({name:"VLocaleProvider",props:wM(),setup(n,l){let{slots:r}=l;const{rtlClasses:h}=y6(n);return Dt(()=>{var c;return t("div",{class:["v-locale-provider",h.value,n.class],style:n.style},[(c=r.default)==null?void 0:c.call(r)])}),{}}});const fM=mt({scrollable:Boolean,...Xt(),...re({tag:"main"})},"VMain"),mM=Bt()({name:"VMain",props:fM(),setup(n,l){let{slots:r}=l;const{mainStyles:h}=K6(),{ssrBootStyles:c}=Br();return Dt(()=>t(n.tag,{class:["v-main",{"v-main--scrollable":n.scrollable},n.class],style:[h.value,c.value,n.style]},{default:()=>{var g,v;return[n.scrollable?t("div",{class:"v-main__scroller"},[(g=r.default)==null?void 0:g.call(r)]):(v=r.default)==null?void 0:v.call(r)]}})),{}}});function kM(n){let{rootEl:l,isSticky:r,layoutItemStyles:h}=n;const c=Wt(!1),g=Wt(0),v=q(()=>{const I=typeof c.value=="boolean"?"top":c.value;return[r.value?{top:"auto",bottom:"auto",height:void 0}:void 0,c.value?{[I]:qt(g.value)}:{top:h.value.top}]});Ve(()=>{_t(r,I=>{I?window.addEventListener("scroll",x,{passive:!0}):window.removeEventListener("scroll",x)},{immediate:!0})}),Qe(()=>{window.removeEventListener("scroll",x)});let k=0;function x(){const I=k>window.scrollY?"up":"down",S=l.value.getBoundingClientRect(),$=parseFloat(h.value.top??0),B=window.scrollY-Math.max(0,g.value-$),P=S.height+Math.max(g.value,$)-window.scrollY-window.innerHeight,D=parseFloat(getComputedStyle(l.value).getPropertyValue("--v-body-scroll-y"))||0;S.height0;r--){if(n[r].t===n[r-1].t)continue;const h=Ud(l),c=(n[r].d-n[r-1].d)/(n[r].t-n[r-1].t);l+=(c-h)*Math.abs(c),r===n.length-1&&(l*=.5)}return Ud(l)*1e3}function xM(){const n={};function l(c){Array.from(c.changedTouches).forEach(g=>{(n[g.identifier]??(n[g.identifier]=new jk(MM))).push([c.timeStamp,g])})}function r(c){Array.from(c.changedTouches).forEach(g=>{delete n[g.identifier]})}function h(c){var I;const g=(I=n[c])==null?void 0:I.values().reverse();if(!g)throw new Error(`No samples for touch id ${c}`);const v=g[0],k=[],x=[];for(const S of g){if(v[0]-S[0]>bM)break;k.push({t:S[0],d:S[1].clientX}),x.push({t:S[0],d:S[1].clientY})}return{x:Gd(k),y:Gd(x),get direction(){const{x:S,y:$}=this,[B,P]=[Math.abs(S),Math.abs($)];return B>P&&S>=0?"right":B>P&&S<=0?"left":P>B&&$>=0?"down":P>B&&$<=0?"up":zM()}}}return{addMovement:l,endTouch:r,getVelocity:h}}function zM(){throw new Error}function IM(n){let{isActive:l,isTemporary:r,width:h,touchless:c,position:g}=n;Ve(()=>{window.addEventListener("touchstart",R,{passive:!0}),window.addEventListener("touchmove",H,{passive:!1}),window.addEventListener("touchend",U,{passive:!0})}),Qe(()=>{window.removeEventListener("touchstart",R),window.removeEventListener("touchmove",H),window.removeEventListener("touchend",U)});const v=q(()=>["left","right"].includes(g.value)),{addMovement:k,endTouch:x,getVelocity:I}=xM();let S=!1;const $=Wt(!1),B=Wt(0),P=Wt(0);let D;function F(_,tt){return(g.value==="left"?_:g.value==="right"?document.documentElement.clientWidth-_:g.value==="top"?_:g.value==="bottom"?document.documentElement.clientHeight-_:Er())-(tt?h.value:0)}function X(_){let tt=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;const nt=g.value==="left"?(_-P.value)/h.value:g.value==="right"?(document.documentElement.clientWidth-_-P.value)/h.value:g.value==="top"?(_-P.value)/h.value:g.value==="bottom"?(document.documentElement.clientHeight-_-P.value)/h.value:Er();return tt?Math.max(0,Math.min(1,nt)):nt}function R(_){if(c.value)return;const tt=_.changedTouches[0].clientX,nt=_.changedTouches[0].clientY,Y=25,G=g.value==="left"?ttdocument.documentElement.clientWidth-Y:g.value==="top"?ntdocument.documentElement.clientHeight-Y:Er(),et=l.value&&(g.value==="left"?ttdocument.documentElement.clientWidth-h.value:g.value==="top"?ntdocument.documentElement.clientHeight-h.value:Er());(G||et||l.value&&r.value)&&(S=!0,D=[tt,nt],P.value=F(v.value?tt:nt,l.value),B.value=X(v.value?tt:nt),x(_),k(_))}function H(_){const tt=_.changedTouches[0].clientX,nt=_.changedTouches[0].clientY;if(S){if(!_.cancelable){S=!1;return}const G=Math.abs(tt-D[0]),et=Math.abs(nt-D[1]);(v.value?G>et&&G>3:et>G&&et>3)?($.value=!0,S=!1):(v.value?et:G)>3&&(S=!1)}if(!$.value)return;_.preventDefault(),k(_);const Y=X(v.value?tt:nt,!1);B.value=Math.max(0,Math.min(1,Y)),Y>1?P.value=F(v.value?tt:nt,!0):Y<0&&(P.value=F(v.value?tt:nt,!1))}function U(_){if(S=!1,!$.value)return;k(_),$.value=!1;const tt=I(_.changedTouches[0].identifier),nt=Math.abs(tt.x),Y=Math.abs(tt.y);(v.value?nt>Y&&nt>400:Y>nt&&Y>3)?l.value=tt.direction===({left:"right",right:"left",top:"down",bottom:"up"}[g.value]||Er()):l.value=B.value>.5}const W=q(()=>$.value?{transform:g.value==="left"?`translateX(calc(-100% + ${B.value*h.value}px))`:g.value==="right"?`translateX(calc(100% - ${B.value*h.value}px))`:g.value==="top"?`translateY(calc(-100% + ${B.value*h.value}px))`:g.value==="bottom"?`translateY(calc(100% - ${B.value*h.value}px))`:Er(),transition:"none"}:void 0);return{isDragging:$,dragProgress:B,dragStyles:W}}function Er(){throw new Error}const yM=["start","end","left","right","top","bottom"],CM=mt({color:String,disableResizeWatcher:Boolean,disableRouteWatcher:Boolean,expandOnHover:Boolean,floating:Boolean,modelValue:{type:Boolean,default:null},permanent:Boolean,rail:{type:Boolean,default:null},railWidth:{type:[Number,String],default:56},scrim:{type:[Boolean,String],default:!0},image:String,temporary:Boolean,touchless:Boolean,width:{type:[Number,String],default:256},location:{type:String,default:"start",validator:n=>yM.includes(n)},sticky:Boolean,...An(),...Xt(),..._e(),...go(),...Ce(),...re({tag:"nav"}),...ue()},"VNavigationDrawer"),SM=Bt()({name:"VNavigationDrawer",props:CM(),emits:{"update:modelValue":n=>!0,"update:rail":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const{isRtl:g}=Ue(),{themeClasses:v}=ve(n),{borderClasses:k}=Vn(n),{backgroundColorClasses:x,backgroundColorStyles:I}=Pe(Ht(n,"color")),{elevationClasses:S}=Je(n),{mobile:$}=Ar(),{roundedClasses:B}=Ne(n),P=u4(),D=ne(n,"modelValue",null,It=>!!It),{ssrBootStyles:F}=Br(),{scopeId:X}=zo(),R=Lt(),H=Wt(!1),U=q(()=>n.rail&&n.expandOnHover&&H.value?Number(n.width):Number(n.rail?n.railWidth:n.width)),W=q(()=>L0(n.location,g.value)),_=q(()=>!n.permanent&&($.value||n.temporary)),tt=q(()=>n.sticky&&!_.value&&W.value!=="bottom");n.expandOnHover&&n.rail!=null&&_t(H,It=>h("update:rail",!It)),n.disableResizeWatcher||_t(_,It=>!n.permanent&&we(()=>D.value=!It)),!n.disableRouteWatcher&&P&&_t(P.currentRoute,()=>_.value&&(D.value=!1)),_t(()=>n.permanent,It=>{It&&(D.value=!0)}),Ms(()=>{n.modelValue!=null||_.value||(D.value=n.permanent||!$.value)});const{isDragging:nt,dragProgress:Y,dragStyles:G}=IM({isActive:D,isTemporary:_,width:U,touchless:Ht(n,"touchless"),position:W}),et=q(()=>{const It=_.value?0:n.rail&&n.expandOnHover?Number(n.railWidth):U.value;return nt.value?It*Y.value:It}),{layoutItemStyles:st,layoutItemScrimStyles:rt}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:W,layoutSize:et,elementSize:U,active:q(()=>D.value||nt.value),disableTransitions:q(()=>nt.value),absolute:q(()=>n.absolute||tt.value&&typeof ht.value!="string")}),{isStuck:ht,stickyStyles:dt}=kM({rootEl:R,isSticky:tt,layoutItemStyles:st}),Ct=Pe(q(()=>typeof n.scrim=="string"?n.scrim:null)),xt=q(()=>({...nt.value?{opacity:Y.value*.2,transition:"none"}:void 0,...rt.value}));Te({VList:{bgColor:"transparent"}});function wt(){H.value=!0}function gt(){H.value=!1}return Dt(()=>{const It=c.image||n.image;return t(Kt,null,[t(n.tag,o({ref:R,onMouseenter:wt,onMouseleave:gt,class:["v-navigation-drawer",`v-navigation-drawer--${W.value}`,{"v-navigation-drawer--expand-on-hover":n.expandOnHover,"v-navigation-drawer--floating":n.floating,"v-navigation-drawer--is-hovering":H.value,"v-navigation-drawer--rail":n.rail,"v-navigation-drawer--temporary":_.value,"v-navigation-drawer--active":D.value,"v-navigation-drawer--sticky":tt.value},v.value,x.value,k.value,S.value,B.value,n.class],style:[I.value,st.value,G.value,F.value,dt.value,n.style]},X,r),{default:()=>{var At,Tt,Ft,Qt;return[It&&t("div",{key:"image",class:"v-navigation-drawer__img"},[c.image?(At=c.image)==null?void 0:At.call(c,{image:n.image}):t("img",{src:n.image,alt:""},null)]),c.prepend&&t("div",{class:"v-navigation-drawer__prepend"},[(Tt=c.prepend)==null?void 0:Tt.call(c)]),t("div",{class:"v-navigation-drawer__content"},[(Ft=c.default)==null?void 0:Ft.call(c)]),c.append&&t("div",{class:"v-navigation-drawer__append"},[(Qt=c.append)==null?void 0:Qt.call(c)])]}}),t(Zn,{name:"fade-transition"},{default:()=>[_.value&&(nt.value||D.value)&&!!n.scrim&&t("div",o({class:["v-navigation-drawer__scrim",Ct.backgroundColorClasses.value],style:[xt.value,Ct.backgroundColorStyles.value],onClick:()=>D.value=!1},X),null)]})])}),{isStuck:ht}}}),$M=Fn({name:"VNoSsr",setup(n,l){let{slots:r}=l;const h=G4();return()=>{var c;return h.value&&((c=r.default)==null?void 0:c.call(r))}}});function AM(){const n=Lt([]);jh(()=>n.value=[]);function l(r,h){n.value[h]=r}return{refs:n,updateRef:l}}const BM=mt({activeColor:String,start:{type:[Number,String],default:1},modelValue:{type:Number,default:n=>n.start},disabled:Boolean,length:{type:[Number,String],default:1,validator:n=>n%1===0},totalVisible:[Number,String],firstIcon:{type:ee,default:"$first"},prevIcon:{type:ee,default:"$prev"},nextIcon:{type:ee,default:"$next"},lastIcon:{type:ee,default:"$last"},ariaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.root"},pageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.page"},currentPageAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.currentPage"},firstAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.first"},previousAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.previous"},nextAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.next"},lastAriaLabel:{type:String,default:"$vuetify.pagination.ariaLabel.last"},ellipsis:{type:String,default:"..."},showFirstLastPage:Boolean,...An(),...Xt(),...We(),..._e(),...Ce(),...$l(),...re({tag:"nav"}),...ue(),..._n({variant:"text"})},"VPagination"),HM=Bt()({name:"VPagination",props:BM(),emits:{"update:modelValue":n=>!0,first:n=>!0,prev:n=>!0,next:n=>!0,last:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=ne(n,"modelValue"),{t:g,n:v}=Rn(),{isRtl:k}=Ue(),{themeClasses:x}=ve(n),{width:I}=Ar(),S=Wt(-1);Te(void 0,{scoped:!0});const{resizeRef:$}=sl(Y=>{if(!Y.length)return;const{target:G,contentRect:et}=Y[0],st=G.querySelector(".v-pagination__list > *");if(!st)return;const rt=et.width,ht=st.offsetWidth+parseFloat(getComputedStyle(st).marginRight)*2;S.value=F(rt,ht)}),B=q(()=>parseInt(n.length,10)),P=q(()=>parseInt(n.start,10)),D=q(()=>n.totalVisible?parseInt(n.totalVisible,10):S.value>=0?S.value:F(I.value,58));function F(Y,G){const et=n.showFirstLastPage?5:3;return Math.max(0,Math.floor(+((Y-G*et)/G).toFixed(2)))}const X=q(()=>{if(B.value<=0||isNaN(B.value)||B.value>Number.MAX_SAFE_INTEGER)return[];if(D.value<=1)return[c.value];if(B.value<=D.value)return gl(B.value,P.value);const Y=D.value%2===0,G=Y?D.value/2:Math.floor(D.value/2),et=Y?G:G+1,st=B.value-G;if(et-c.value>=0)return[...gl(Math.max(1,D.value-1),P.value),n.ellipsis,B.value];if(c.value-st>=(Y?1:0)){const rt=D.value-1,ht=B.value-rt+P.value;return[P.value,n.ellipsis,...gl(rt,ht)]}else{const rt=Math.max(1,D.value-3),ht=rt===1?c.value:c.value-Math.ceil(rt/2)+P.value;return[P.value,n.ellipsis,...gl(rt,ht),n.ellipsis,B.value]}});function R(Y,G,et){Y.preventDefault(),c.value=G,et&&h(et,G)}const{refs:H,updateRef:U}=AM();Te({VPaginationBtn:{color:Ht(n,"color"),border:Ht(n,"border"),density:Ht(n,"density"),size:Ht(n,"size"),variant:Ht(n,"variant"),rounded:Ht(n,"rounded"),elevation:Ht(n,"elevation")}});const W=q(()=>X.value.map((Y,G)=>{const et=st=>U(st,G);if(typeof Y=="string")return{isActive:!1,key:`ellipsis-${G}`,page:Y,props:{ref:et,ellipsis:!0,icon:!0,disabled:!0}};{const st=Y===c.value;return{isActive:st,key:Y,page:v(Y),props:{ref:et,ellipsis:!1,icon:!0,disabled:!!n.disabled||+n.length<2,color:st?n.activeColor:n.color,ariaCurrent:st,ariaLabel:g(st?n.currentPageAriaLabel:n.pageAriaLabel,Y),onClick:rt=>R(rt,Y)}}}})),_=q(()=>{const Y=!!n.disabled||c.value<=P.value,G=!!n.disabled||c.value>=P.value+B.value-1;return{first:n.showFirstLastPage?{icon:k.value?n.lastIcon:n.firstIcon,onClick:et=>R(et,P.value,"first"),disabled:Y,ariaLabel:g(n.firstAriaLabel),ariaDisabled:Y}:void 0,prev:{icon:k.value?n.nextIcon:n.prevIcon,onClick:et=>R(et,c.value-1,"prev"),disabled:Y,ariaLabel:g(n.previousAriaLabel),ariaDisabled:Y},next:{icon:k.value?n.prevIcon:n.nextIcon,onClick:et=>R(et,c.value+1,"next"),disabled:G,ariaLabel:g(n.nextAriaLabel),ariaDisabled:G},last:n.showFirstLastPage?{icon:k.value?n.firstIcon:n.lastIcon,onClick:et=>R(et,P.value+B.value-1,"last"),disabled:G,ariaLabel:g(n.lastAriaLabel),ariaDisabled:G}:void 0}});function tt(){var G;const Y=c.value-P.value;(G=H.value[Y])==null||G.$el.focus()}function nt(Y){Y.key===j0.left&&!n.disabled&&c.value>+n.start?(c.value=c.value-1,we(tt)):Y.key===j0.right&&!n.disabled&&c.valuet(n.tag,{ref:$,class:["v-pagination",x.value,n.class],style:n.style,role:"navigation","aria-label":g(n.ariaLabel),onKeydown:nt,"data-test":"v-pagination-root"},{default:()=>[t("ul",{class:"v-pagination__list"},[n.showFirstLastPage&&t("li",{key:"first",class:"v-pagination__first","data-test":"v-pagination-first"},[r.first?r.first(_.value.first):t(pn,o({_as:"VPaginationBtn"},_.value.first),null)]),t("li",{key:"prev",class:"v-pagination__prev","data-test":"v-pagination-prev"},[r.prev?r.prev(_.value.prev):t(pn,o({_as:"VPaginationBtn"},_.value.prev),null)]),W.value.map((Y,G)=>t("li",{key:Y.key,class:["v-pagination__item",{"v-pagination__item--is-active":Y.isActive}],"data-test":"v-pagination-item"},[r.item?r.item(Y):t(pn,o({_as:"VPaginationBtn"},Y.props),{default:()=>[Y.page]})])),t("li",{key:"next",class:"v-pagination__next","data-test":"v-pagination-next"},[r.next?r.next(_.value.next):t(pn,o({_as:"VPaginationBtn"},_.value.next),null)]),n.showFirstLastPage&&t("li",{key:"last",class:"v-pagination__last","data-test":"v-pagination-last"},[r.last?r.last(_.value.last):t(pn,o({_as:"VPaginationBtn"},_.value.last),null)])])]})),{}}});function NM(n){return Math.floor(Math.abs(n))*Math.sign(n)}const jM=mt({scale:{type:[Number,String],default:.5},...Xt()},"VParallax"),PM=Bt()({name:"VParallax",props:jM(),setup(n,l){let{slots:r}=l;const{intersectionRef:h,isIntersecting:c}=f2(),{resizeRef:g,contentRect:v}=sl(),{height:k}=Ar(),x=Lt();bn(()=>{var P;h.value=g.value=(P=x.value)==null?void 0:P.$el});let I;_t(c,P=>{P?(I=s2(h.value),I=I===document.scrollingElement?document:I,I.addEventListener("scroll",B,{passive:!0}),B()):I.removeEventListener("scroll",B)}),Qe(()=>{I==null||I.removeEventListener("scroll",B)}),_t(k,B),_t(()=>{var P;return(P=v.value)==null?void 0:P.height},B);const S=q(()=>1-rn(+n.scale));let $=-1;function B(){c.value&&(cancelAnimationFrame($),$=requestAnimationFrame(()=>{var _;const P=((_=x.value)==null?void 0:_.$el).querySelector(".v-img__img");if(!P)return;const D=I instanceof Document?document.documentElement.clientHeight:I.clientHeight,F=I instanceof Document?window.scrollY:I.scrollTop,X=h.value.getBoundingClientRect().top+F,R=v.value.height,H=X+(R-D)/2,U=NM((F-H)*S.value),W=Math.max(1,(S.value*(D-R)+R)/R);P.style.setProperty("transform",`translateY(${U}px) scale(${W})`)}))}return Dt(()=>t(xr,{class:["v-parallax",{"v-parallax--active":c.value},n.class],style:n.style,ref:x,cover:!0,onLoadstart:B,onLoad:B},r)),{}}}),LM=mt({...ii({falseIcon:"$radioOff",trueIcon:"$radioOn"})},"VRadio"),DM=Bt()({name:"VRadio",props:LM(),setup(n,l){let{slots:r}=l;return Dt(()=>t(zr,o(n,{class:["v-radio",n.class],style:n.style,type:"radio"}),r)),{}}});const OM=mt({height:{type:[Number,String],default:"auto"},...Al(),...On(z2(),["multiple"]),trueIcon:{type:ee,default:"$radioOn"},falseIcon:{type:ee,default:"$radioOff"},type:{type:String,default:"radio"}},"VRadioGroup"),FM=Bt()({name:"VRadioGroup",inheritAttrs:!1,props:OM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const c=hn(),g=q(()=>n.id||`radio-group-${c}`),v=ne(n,"modelValue");return Dt(()=>{const[k,x]=$r(r),[I,S]=Ke.filterProps(n),[$,B]=zr.filterProps(n),P=h.label?h.label({label:n.label,props:{for:g.value}}):n.label;return t(Ke,o({class:["v-radio-group",n.class],style:n.style},k,I,{modelValue:v.value,"onUpdate:modelValue":D=>v.value=D,id:g.value}),{...h,default:D=>{let{id:F,messagesId:X,isDisabled:R,isReadonly:H}=D;return t(Kt,null,[P&&t(xo,{id:F.value},{default:()=>[P]}),t(z4,o($,{id:F.value,"aria-describedby":X.value,defaultsTarget:"VRadio",trueIcon:n.trueIcon,falseIcon:n.falseIcon,type:n.type,disabled:R.value,readonly:H.value,"aria-labelledby":P?F.value:void 0,multiple:!1},x,{modelValue:v.value,"onUpdate:modelValue":U=>v.value=U}),h)])}})}),{}}}),RM=mt({...hi(),...Al(),...wg(),strict:Boolean,modelValue:{type:Array,default:()=>[0,0]}},"VRangeSlider"),TM=Bt()({name:"VRangeSlider",props:RM(),emits:{"update:focused":n=>!0,"update:modelValue":n=>!0,end:n=>!0,start:n=>!0},setup(n,l){let{slots:r,emit:h}=l;const c=Lt(),g=Lt(),v=Lt(),{rtlClasses:k}=Ue();function x(G){if(!c.value||!g.value)return;const et=lh(G,c.value.$el,n.direction),st=lh(G,g.value.$el,n.direction),rt=Math.abs(et),ht=Math.abs(st);return rtG!=null&&G.length?G.map(et=>I.roundValue(et)):[0,0]),{activeThumbRef:$,hasLabels:B,max:P,min:D,mousePressed:F,onSliderMousedown:X,onSliderTouchstart:R,position:H,trackContainerRef:U}=fg({props:n,steps:I,onSliderStart:()=>{h("start",S.value)},onSliderEnd:G=>{var rt;let{value:et}=G;const st=$.value===((rt=c.value)==null?void 0:rt.$el)?[et,S.value[1]]:[S.value[0],et];!n.strict&&st[0]{var ht,dt,Ct,xt;let{value:et}=G;const[st,rt]=S.value;!n.strict&&st===rt&&st!==D.value&&($.value=et>st?(ht=g.value)==null?void 0:ht.$el:(dt=c.value)==null?void 0:dt.$el,(Ct=$.value)==null||Ct.focus()),$.value===((xt=c.value)==null?void 0:xt.$el)?S.value=[Math.min(et,rt),rt]:S.value=[st,Math.max(st,et)]},getActiveThumb:x}),{isFocused:W,focus:_,blur:tt}=er(n),nt=q(()=>H(S.value[0])),Y=q(()=>H(S.value[1]));return Dt(()=>{const[G,et]=Ke.filterProps(n),st=!!(n.label||r.label||r.prepend);return t(Ke,o({class:["v-slider","v-range-slider",{"v-slider--has-labels":!!r["tick-label"]||B.value,"v-slider--focused":W.value,"v-slider--pressed":F.value,"v-slider--disabled":n.disabled},k.value,n.class],style:n.style,ref:v},G,{focused:W.value}),{...r,prepend:st?rt=>{var ht,dt;return t(Kt,null,[((ht=r.label)==null?void 0:ht.call(r,rt))??n.label?t(xo,{class:"v-slider__label",text:n.label},null):void 0,(dt=r.prepend)==null?void 0:dt.call(r,rt)])}:void 0,default:rt=>{var Ct,xt;let{id:ht,messagesId:dt}=rt;return t("div",{class:"v-slider__container",onMousedown:X,onTouchstartPassive:R},[t("input",{id:`${ht.value}_start`,name:n.name||ht.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:S.value[0]},null),t("input",{id:`${ht.value}_stop`,name:n.name||ht.value,disabled:!!n.disabled,readonly:!!n.readonly,tabindex:"-1",value:S.value[1]},null),t(mg,{ref:U,start:nt.value,stop:Y.value},{"tick-label":r["tick-label"]}),t(rh,{ref:c,"aria-describedby":dt.value,focused:W&&$.value===((Ct=c.value)==null?void 0:Ct.$el),modelValue:S.value[0],"onUpdate:modelValue":wt=>S.value=[wt,S.value[1]],onFocus:wt=>{var gt,It,At,Tt;_(),$.value=(gt=c.value)==null?void 0:gt.$el,S.value[0]===S.value[1]&&S.value[1]===D.value&&wt.relatedTarget!==((It=g.value)==null?void 0:It.$el)&&((At=c.value)==null||At.$el.blur(),(Tt=g.value)==null||Tt.$el.focus())},onBlur:()=>{tt(),$.value=void 0},min:D.value,max:S.value[1],position:nt.value},{"thumb-label":r["thumb-label"]}),t(rh,{ref:g,"aria-describedby":dt.value,focused:W&&$.value===((xt=g.value)==null?void 0:xt.$el),modelValue:S.value[1],"onUpdate:modelValue":wt=>S.value=[S.value[0],wt],onFocus:wt=>{var gt,It,At,Tt;_(),$.value=(gt=g.value)==null?void 0:gt.$el,S.value[0]===S.value[1]&&S.value[0]===P.value&&wt.relatedTarget!==((It=c.value)==null?void 0:It.$el)&&((At=g.value)==null||At.$el.blur(),(Tt=c.value)==null||Tt.$el.focus())},onBlur:()=>{tt(),$.value=void 0},min:S.value[0],max:P.value,position:Y.value},{"thumb-label":r["thumb-label"]})])}})}),{}}});const EM=mt({name:String,itemAriaLabel:{type:String,default:"$vuetify.rating.ariaLabel.item"},activeColor:String,color:String,clearable:Boolean,disabled:Boolean,emptyIcon:{type:ee,default:"$ratingEmpty"},fullIcon:{type:ee,default:"$ratingFull"},halfIncrements:Boolean,hover:Boolean,length:{type:[Number,String],default:5},readonly:Boolean,modelValue:{type:[Number,String],default:0},itemLabels:Array,itemLabelPosition:{type:String,default:"top",validator:n=>["top","bottom"].includes(n)},ripple:Boolean,...Xt(),...We(),...$l(),...re(),...ue()},"VRating"),VM=Bt()({name:"VRating",props:EM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{t:h}=Rn(),{themeClasses:c}=ve(n),g=ne(n,"modelValue"),v=q(()=>rn(parseFloat(g.value),0,+n.length)),k=q(()=>gl(Number(n.length),1)),x=q(()=>k.value.flatMap(F=>n.halfIncrements?[F-.5,F]:[F])),I=Wt(-1),S=q(()=>x.value.map(F=>{const X=n.hover&&I.value>-1,R=v.value>=F,H=I.value>=F,W=(X?H:R)?n.fullIcon:n.emptyIcon,_=n.activeColor??n.color,tt=R||H?_:n.color;return{isFilled:R,isHovered:H,icon:W,color:tt}})),$=q(()=>[0,...x.value].map(F=>{function X(){I.value=F}function R(){I.value=-1}function H(){n.disabled||n.readonly||(g.value=v.value===F&&n.clearable?0:F)}return{onMouseenter:n.hover?X:void 0,onMouseleave:n.hover?R:void 0,onClick:H}})),B=q(()=>n.name??`v-rating-${hn()}`);function P(F){var Y,G;let{value:X,index:R,showStar:H=!0}=F;const{onMouseenter:U,onMouseleave:W,onClick:_}=$.value[R+1],tt=`${B.value}-${String(X).replace(".","-")}`,nt={color:(Y=S.value[R])==null?void 0:Y.color,density:n.density,disabled:n.disabled,icon:(G=S.value[R])==null?void 0:G.icon,ripple:n.ripple,size:n.size,variant:"plain"};return t(Kt,null,[t("label",{for:tt,class:{"v-rating__item--half":n.halfIncrements&&X%1>0,"v-rating__item--full":n.halfIncrements&&X%1===0},onMouseenter:U,onMouseleave:W,onClick:_},[t("span",{class:"v-rating__hidden"},[h(n.itemAriaLabel,X,n.length)]),H?r.item?r.item({...S.value[R],props:nt,value:X,index:R,rating:v.value}):t(pn,o({"aria-label":h(n.itemAriaLabel,X,n.length)},nt),null):void 0]),t("input",{class:"v-rating__hidden",name:B.value,id:tt,type:"radio",value:X,checked:v.value===X,tabindex:-1,readonly:n.readonly,disabled:n.disabled},null)])}function D(F){return r["item-label"]?r["item-label"](F):F.label?t("span",null,[F.label]):t("span",null,[e(" ")])}return Dt(()=>{var X;const F=!!((X=n.itemLabels)!=null&&X.length)||r["item-label"];return t(n.tag,{class:["v-rating",{"v-rating--hover":n.hover,"v-rating--readonly":n.readonly},c.value,n.class],style:n.style},{default:()=>[t(P,{value:0,index:-1,showStar:!1},null),k.value.map((R,H)=>{var U,W;return t("div",{class:"v-rating__wrapper"},[F&&n.itemLabelPosition==="top"?D({value:R,index:H,label:(U=n.itemLabels)==null?void 0:U[H]}):void 0,t("div",{class:"v-rating__item"},[n.halfIncrements?t(Kt,null,[t(P,{value:R-.5,index:H*2},null),t(P,{value:R,index:H*2+1},null)]):t(P,{value:R,index:H},null)]),F&&n.itemLabelPosition==="bottom"?D({value:R,index:H,label:(W=n.itemLabels)==null?void 0:W[H]}):void 0])})]})}),{}}});function Zd(n){const r=Math.abs(n);return Math.sign(n)*(r/((1/.501-2)*(1-r)+1))}function Kd(n){let{selectedElement:l,containerSize:r,contentSize:h,isRtl:c,currentScrollOffset:g,isHorizontal:v}=n;const k=v?l.clientWidth:l.clientHeight,x=v?l.offsetLeft:l.offsetTop,I=c&&v?h-x-k:x,S=r+g,$=k+I,B=k*.4;return I<=g?g=Math.max(I-B,0):S<=$&&(g=Math.min(g-(S-$-B),h-r)),g}function _M(n){let{selectedElement:l,containerSize:r,contentSize:h,isRtl:c,isHorizontal:g}=n;const v=g?l.clientWidth:l.clientHeight,k=g?l.offsetLeft:l.offsetTop,x=c&&g?h-k-v/2-r/2:k+v/2-r/2;return Math.min(h-r,Math.max(0,x))}const Pg=Symbol.for("vuetify:v-slide-group"),Lg=mt({centerActive:Boolean,direction:{type:String,default:"horizontal"},symbol:{type:null,default:Pg},nextIcon:{type:ee,default:"$next"},prevIcon:{type:ee,default:"$prev"},showArrows:{type:[Boolean,String],validator:n=>typeof n=="boolean"||["always","desktop","mobile"].includes(n)},...Xt(),...re(),...vo({selectedClass:"v-slide-group-item--active"})},"VSlideGroup"),ah=Bt()({name:"VSlideGroup",props:Lg(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const{isRtl:h}=Ue(),{mobile:c}=Ar(),g=jr(n,n.symbol),v=Wt(!1),k=Wt(0),x=Wt(0),I=Wt(0),S=q(()=>n.direction==="horizontal"),{resizeRef:$,contentRect:B}=sl(),{resizeRef:P,contentRect:D}=sl(),F=q(()=>g.selected.value.length?g.items.value.findIndex(At=>At.id===g.selected.value[0]):-1),X=q(()=>g.selected.value.length?g.items.value.findIndex(At=>At.id===g.selected.value[g.selected.value.length-1]):-1);if(ze){let At=-1;_t(()=>[g.selected.value,B.value,D.value,S.value],()=>{cancelAnimationFrame(At),At=requestAnimationFrame(()=>{if(B.value&&D.value){const Tt=S.value?"width":"height";x.value=B.value[Tt],I.value=D.value[Tt],v.value=x.value+1=0&&P.value){const Tt=P.value.children[X.value];F.value===0||!v.value?k.value=0:n.centerActive?k.value=_M({selectedElement:Tt,containerSize:x.value,contentSize:I.value,isRtl:h.value,isHorizontal:S.value}):v.value&&(k.value=Kd({selectedElement:Tt,containerSize:x.value,contentSize:I.value,isRtl:h.value,currentScrollOffset:k.value,isHorizontal:S.value}))}})})}const R=Wt(!1);let H=0,U=0;function W(At){const Tt=S.value?"clientX":"clientY";U=(h.value&&S.value?-1:1)*k.value,H=At.touches[0][Tt],R.value=!0}function _(At){if(!v.value)return;const Tt=S.value?"clientX":"clientY",Ft=h.value&&S.value?-1:1;k.value=Ft*(U+H-At.touches[0][Tt])}function tt(At){const Tt=I.value-x.value;k.value<0||!v.value?k.value=0:k.value>=Tt&&(k.value=Tt),R.value=!1}function nt(){$.value&&($.value[S.value?"scrollLeft":"scrollTop"]=0)}const Y=Wt(!1);function G(At){if(Y.value=!0,!(!v.value||!P.value)){for(const Tt of At.composedPath())for(const Ft of P.value.children)if(Ft===Tt){k.value=Kd({selectedElement:Ft,containerSize:x.value,contentSize:I.value,isRtl:h.value,currentScrollOffset:k.value,isHorizontal:S.value});return}}}function et(At){Y.value=!1}function st(At){var Tt;!Y.value&&!(At.relatedTarget&&((Tt=P.value)!=null&&Tt.contains(At.relatedTarget)))&&ht()}function rt(At){P.value&&(S.value?At.key==="ArrowRight"?ht(h.value?"prev":"next"):At.key==="ArrowLeft"&&ht(h.value?"next":"prev"):At.key==="ArrowDown"?ht("next"):At.key==="ArrowUp"&&ht("prev"),At.key==="Home"?ht("first"):At.key==="End"&&ht("last"))}function ht(At){var Tt,Ft,Qt,Jt,Et;if(P.value)if(!At)(Tt=ss(P.value)[0])==null||Tt.focus();else if(At==="next"){const ut=(Ft=P.value.querySelector(":focus"))==null?void 0:Ft.nextElementSibling;ut?ut.focus():ht("first")}else if(At==="prev"){const ut=(Qt=P.value.querySelector(":focus"))==null?void 0:Qt.previousElementSibling;ut?ut.focus():ht("last")}else At==="first"?(Jt=P.value.firstElementChild)==null||Jt.focus():At==="last"&&((Et=P.value.lastElementChild)==null||Et.focus())}function dt(At){const Tt=k.value+(At==="prev"?-1:1)*x.value;k.value=rn(Tt,0,I.value-x.value)}const Ct=q(()=>{let At=k.value>I.value-x.value?-(I.value-x.value)+Zd(I.value-x.value-k.value):-k.value;k.value<=0&&(At=Zd(-k.value));const Tt=h.value&&S.value?-1:1;return{transform:`translate${S.value?"X":"Y"}(${Tt*At}px)`,transition:R.value?"none":"",willChange:R.value?"transform":""}}),xt=q(()=>({next:g.next,prev:g.prev,select:g.select,isSelected:g.isSelected})),wt=q(()=>{switch(n.showArrows){case"always":return!0;case"desktop":return!c.value;case!0:return v.value||Math.abs(k.value)>0;case"mobile":return c.value||v.value||Math.abs(k.value)>0;default:return!c.value&&(v.value||Math.abs(k.value)>0)}}),gt=q(()=>Math.abs(k.value)>0),It=q(()=>I.value>Math.abs(k.value)+x.value);return Dt(()=>t(n.tag,{class:["v-slide-group",{"v-slide-group--vertical":!S.value,"v-slide-group--has-affixes":wt.value,"v-slide-group--is-overflowing":v.value},n.class],style:n.style,tabindex:Y.value||g.selected.value.length?-1:0,onFocus:st},{default:()=>{var At,Tt,Ft;return[wt.value&&t("div",{key:"prev",class:["v-slide-group__prev",{"v-slide-group__prev--disabled":!gt.value}],onClick:()=>dt("prev")},[((At=r.prev)==null?void 0:At.call(r,xt.value))??t(V0,null,{default:()=>[t(xe,{icon:h.value?n.nextIcon:n.prevIcon},null)]})]),t("div",{key:"container",ref:$,class:"v-slide-group__container",onScroll:nt},[t("div",{ref:P,class:"v-slide-group__content",style:Ct.value,onTouchstartPassive:W,onTouchmovePassive:_,onTouchendPassive:tt,onFocusin:G,onFocusout:et,onKeydown:rt},[(Tt=r.default)==null?void 0:Tt.call(r,xt.value)])]),wt.value&&t("div",{key:"next",class:["v-slide-group__next",{"v-slide-group__next--disabled":!It.value}],onClick:()=>dt("next")},[((Ft=r.next)==null?void 0:Ft.call(r,xt.value))??t(V0,null,{default:()=>[t(xe,{icon:h.value?n.prevIcon:n.nextIcon},null)]})])]}})),{selected:g.selected,scrollTo:dt,scrollOffset:k,focus:ht}}}),WM=Bt()({name:"VSlideGroupItem",props:fo(),emits:{"group:selected":n=>!0},setup(n,l){let{slots:r}=l;const h=mo(n,Pg);return()=>{var c;return(c=r.default)==null?void 0:c.call(r,{isSelected:h.isSelected.value,select:h.select,toggle:h.toggle,selectedClass:h.selectedClass.value})}}});const XM=mt({multiLine:Boolean,timeout:{type:[Number,String],default:5e3},vertical:Boolean,...Ql({location:"bottom"}),...bo(),...Ce(),..._n(),...ue(),...On(Bs({transition:"v-snackbar-transition"}),["persistent","noClickAnimation","scrim","scrollStrategy"])},"VSnackbar"),qM=Bt()({name:"VSnackbar",props:XM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{locationStyles:c}=Jl(n),{positionClasses:g}=Mo(n),{scopeId:v}=zo(),{themeClasses:k}=ve(n),{colorClasses:x,colorStyles:I,variantClasses:S}=Nr(n),{roundedClasses:$}=Ne(n),B=Lt();_t(h,D),_t(()=>n.timeout,D),Ve(()=>{h.value&&D()});let P=-1;function D(){window.clearTimeout(P);const X=Number(n.timeout);!h.value||X===-1||(P=window.setTimeout(()=>{h.value=!1},X))}function F(){window.clearTimeout(P)}return Dt(()=>{const[X]=xl.filterProps(n);return t(xl,o({ref:B,class:["v-snackbar",{"v-snackbar--active":h.value,"v-snackbar--multi-line":n.multiLine&&!n.vertical,"v-snackbar--vertical":n.vertical},g.value,n.class],style:n.style},X,{modelValue:h.value,"onUpdate:modelValue":R=>h.value=R,contentProps:o({class:["v-snackbar__wrapper",k.value,x.value,$.value,S.value],style:[c.value,I.value],onPointerenter:F,onPointerleave:D},X.contentProps),persistent:!0,noClickAnimation:!0,scrim:!1,scrollStrategy:"none",_disableGlobalStack:!0},v),{default:()=>[Hr(!1,"v-snackbar"),r.default&&t("div",{class:"v-snackbar__content",role:"status","aria-live":"polite"},[r.default()]),r.actions&&t(ke,{defaults:{VBtn:{variant:"text",ripple:!1}}},{default:()=>[t("div",{class:"v-snackbar__actions"},[r.actions()])]})],activator:r.activator})}),Jn({},B)}});const YM=mt({indeterminate:Boolean,inset:Boolean,flat:Boolean,loading:{type:[Boolean,String],default:!1},...Al(),...ii()},"VSwitch"),UM=Bt()({name:"VSwitch",inheritAttrs:!1,props:YM(),emits:{"update:focused":n=>!0,"update:modelValue":()=>!0,"update:indeterminate":n=>!0},setup(n,l){let{attrs:r,slots:h}=l;const c=ne(n,"indeterminate"),g=ne(n,"modelValue"),{loaderClasses:v}=ai(n),{isFocused:k,focus:x,blur:I}=er(n),S=Lt(),$=q(()=>typeof n.loading=="string"&&n.loading!==""?n.loading:n.color),B=hn(),P=q(()=>n.id||`switch-${B}`);function D(){c.value&&(c.value=!1)}function F(X){var R,H;X.stopPropagation(),X.preventDefault(),(H=(R=S.value)==null?void 0:R.input)==null||H.click()}return Dt(()=>{const[X,R]=$r(r),[H,U]=Ke.filterProps(n),[W,_]=zr.filterProps(n);return t(Ke,o({class:["v-switch",{"v-switch--inset":n.inset},{"v-switch--indeterminate":c.value},v.value,n.class],style:n.style},X,H,{id:P.value,focused:k.value}),{...h,default:tt=>{let{id:nt,messagesId:Y,isDisabled:G,isReadonly:et,isValid:st}=tt;return t(zr,o({ref:S},W,{modelValue:g.value,"onUpdate:modelValue":[rt=>g.value=rt,D],id:nt.value,"aria-describedby":Y.value,type:"checkbox","aria-checked":c.value?"mixed":void 0,disabled:G.value,readonly:et.value,onFocus:x,onBlur:I},R),{...h,default:()=>t("div",{class:"v-switch__track",onClick:F},null),input:rt=>{let{inputNode:ht,icon:dt}=rt;return t(Kt,null,[ht,t("div",{class:["v-switch__thumb",{"v-switch__thumb--filled":dt||n.loading}]},[t(u2,null,{default:()=>[n.loading?t(M2,{name:"v-switch",active:!0,color:st.value===!1?void 0:$.value},{default:Ct=>h.loader?h.loader(Ct):t(m2,{active:Ct.isActive,color:Ct.color,indeterminate:!0,size:"16",width:"2"},null)}):dt&&t(xe,{key:dt,icon:dt,size:"x-small"},null)]})])])}})}})}),{}}});const GM=mt({color:String,height:[Number,String],window:Boolean,...Xt(),..._e(),...go(),...Ce(),...re(),...ue()},"VSystemBar"),ZM=Bt()({name:"VSystemBar",props:GM(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{backgroundColorClasses:c,backgroundColorStyles:g}=Pe(Ht(n,"color")),{elevationClasses:v}=Je(n),{roundedClasses:k}=Ne(n),{ssrBootStyles:x}=Br(),I=q(()=>n.height??(n.window?32:24)),{layoutItemStyles:S}=wo({id:n.name,order:q(()=>parseInt(n.order,10)),position:Wt("top"),layoutSize:I,elementSize:I,active:q(()=>!0),absolute:Ht(n,"absolute")});return Dt(()=>t(n.tag,{class:["v-system-bar",{"v-system-bar--window":n.window},h.value,c.value,v.value,k.value,n.class],style:[g.value,S.value,x.value,n.style]},r)),{}}});const Dg=Symbol.for("vuetify:v-tabs"),KM=mt({fixed:Boolean,sliderColor:String,hideSlider:Boolean,direction:{type:String,default:"horizontal"},...On(x2({selectedClass:"v-tab--selected",variant:"text"}),["active","block","flat","location","position","symbol"])},"VTab"),Og=Bt()({name:"VTab",props:KM(),setup(n,l){let{slots:r,attrs:h}=l;const{textColorClasses:c,textColorStyles:g}=an(n,"sliderColor"),v=q(()=>n.direction==="horizontal"),k=Wt(!1),x=Lt(),I=Lt();function S($){var P,D;let{value:B}=$;if(k.value=B,B){const F=(D=(P=x.value)==null?void 0:P.$el.parentElement)==null?void 0:D.querySelector(".v-tab--selected .v-tab__slider"),X=I.value;if(!F||!X)return;const R=getComputedStyle(F).color,H=F.getBoundingClientRect(),U=X.getBoundingClientRect(),W=v.value?"x":"y",_=v.value?"X":"Y",tt=v.value?"right":"bottom",nt=v.value?"width":"height",Y=H[W],G=U[W],et=Y>G?H[tt]-U[tt]:H[W]-U[W],st=Math.sign(et)>0?v.value?"right":"bottom":Math.sign(et)<0?v.value?"left":"top":"center",ht=(Math.abs(et)+(Math.sign(et)<0?H[nt]:U[nt]))/Math.max(H[nt],U[nt]),dt=H[nt]/U[nt],Ct=1.5;ur(X,{backgroundColor:[R,"currentcolor"],transform:[`translate${_}(${et}px) scale${_}(${dt})`,`translate${_}(${et/Ct}px) scale${_}(${(ht-1)/Ct+1})`,"none"],transformOrigin:Array(3).fill(st)},{duration:225,easing:as})}}return Dt(()=>{const[$]=pn.filterProps(n);return t(pn,o({symbol:Dg,ref:x,class:["v-tab",n.class],style:n.style,tabindex:k.value?0:-1,role:"tab","aria-selected":String(k.value),active:!1,block:n.fixed,maxWidth:n.fixed?300:void 0,rounded:0},$,h,{"onGroup:selected":S}),{default:()=>{var B;return[((B=r.default)==null?void 0:B.call(r))??n.text,!n.hideSlider&&t("div",{ref:I,class:["v-tab__slider",c.value],style:g.value},null)]}})}),{}}});function QM(n){return n?n.map(l=>typeof l=="string"?{title:l,value:l}:l):[]}const JM=mt({alignTabs:{type:String,default:"start"},color:String,fixedTabs:Boolean,items:{type:Array,default:()=>[]},stacked:Boolean,bgColor:String,grow:Boolean,height:{type:[Number,String],default:void 0},hideSlider:Boolean,sliderColor:String,...Lg({mandatory:"force"}),...We(),...re()},"VTabs"),tx=Bt()({name:"VTabs",props:JM(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),c=q(()=>QM(n.items)),{densityClasses:g}=dn(n),{backgroundColorClasses:v,backgroundColorStyles:k}=Pe(Ht(n,"bgColor"));return Te({VTab:{color:Ht(n,"color"),direction:Ht(n,"direction"),stacked:Ht(n,"stacked"),fixed:Ht(n,"fixedTabs"),sliderColor:Ht(n,"sliderColor"),hideSlider:Ht(n,"hideSlider")}}),Dt(()=>{const[x]=ah.filterProps(n);return t(ah,o(x,{modelValue:h.value,"onUpdate:modelValue":I=>h.value=I,class:["v-tabs",`v-tabs--${n.direction}`,`v-tabs--align-tabs-${n.alignTabs}`,{"v-tabs--fixed-tabs":n.fixedTabs,"v-tabs--grow":n.grow,"v-tabs--stacked":n.stacked},g.value,v.value,n.class],style:[{"--v-tabs-height":qt(n.height)},k.value,n.style],role:"tablist",symbol:Dg}),{default:()=>[r.default?r.default():c.value.map(I=>t(Og,o(I,{key:I.title}),null))]})}),{}}});const ex=mt({fixedHeader:Boolean,fixedFooter:Boolean,height:[Number,String],hover:Boolean,...Xt(),...We(),...re(),...ue()},"VTable"),nx=Bt()({name:"VTable",props:ex(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{densityClasses:c}=dn(n);return Dt(()=>t(n.tag,{class:["v-table",{"v-table--fixed-height":!!n.height,"v-table--fixed-header":n.fixedHeader,"v-table--fixed-footer":n.fixedFooter,"v-table--has-top":!!r.top,"v-table--has-bottom":!!r.bottom,"v-table--hover":n.hover},h.value,c.value,n.class],style:n.style},{default:()=>{var g,v,k;return[(g=r.top)==null?void 0:g.call(r),r.default?t("div",{class:"v-table__wrapper",style:{height:qt(n.height)}},[t("table",null,[r.default()])]):(v=r.wrapper)==null?void 0:v.call(r),(k=r.bottom)==null?void 0:k.call(r)]}})),{}}});const lx=mt({autoGrow:Boolean,autofocus:Boolean,counter:[Boolean,Number,String],counterValue:Function,prefix:String,placeholder:String,persistentPlaceholder:Boolean,persistentCounter:Boolean,noResize:Boolean,rows:{type:[Number,String],default:5,validator:n=>!isNaN(parseFloat(n))},maxRows:{type:[Number,String],validator:n=>!isNaN(parseFloat(n))},suffix:String,modelModifiers:Object,...Al(),...wi()},"VTextarea"),rx=Bt()({name:"VTextarea",directives:{Intersect:si},inheritAttrs:!1,props:lx(),emits:{"click:control":n=>!0,"mousedown:control":n=>!0,"update:focused":n=>!0,"update:modelValue":n=>!0},setup(n,l){let{attrs:r,emit:h,slots:c}=l;const g=ne(n,"modelValue"),{isFocused:v,focus:k,blur:x}=er(n),I=q(()=>typeof n.counterValue=="function"?n.counterValue(g.value):(g.value||"").toString().length),S=q(()=>{if(r.maxlength)return r.maxlength;if(!(!n.counter||typeof n.counter!="number"&&typeof n.counter!="string"))return n.counter});function $(st,rt){var ht,dt;!n.autofocus||!st||(dt=(ht=rt[0].target)==null?void 0:ht.focus)==null||dt.call(ht)}const B=Lt(),P=Lt(),D=Wt(""),F=Lt(),X=q(()=>n.persistentPlaceholder||v.value||n.active);function R(){var st;F.value!==document.activeElement&&((st=F.value)==null||st.focus()),v.value||k()}function H(st){R(),h("click:control",st)}function U(st){h("mousedown:control",st)}function W(st){st.stopPropagation(),R(),we(()=>{g.value="",n2(n["onClick:clear"],st)})}function _(st){var ht;const rt=st.target;if(g.value=rt.value,(ht=n.modelModifiers)!=null&&ht.trim){const dt=[rt.selectionStart,rt.selectionEnd];we(()=>{rt.selectionStart=dt[0],rt.selectionEnd=dt[1]})}}const tt=Lt(),nt=Lt(+n.rows),Y=q(()=>["plain","underlined"].includes(n.variant));bn(()=>{n.autoGrow||(nt.value=+n.rows)});function G(){n.autoGrow&&we(()=>{if(!tt.value||!P.value)return;const st=getComputedStyle(tt.value),rt=getComputedStyle(P.value.$el),ht=parseFloat(st.getPropertyValue("--v-field-padding-top"))+parseFloat(st.getPropertyValue("--v-input-padding-top"))+parseFloat(st.getPropertyValue("--v-field-padding-bottom")),dt=tt.value.scrollHeight,Ct=parseFloat(st.lineHeight),xt=Math.max(parseFloat(n.rows)*Ct+ht,parseFloat(rt.getPropertyValue("--v-input-control-height"))),wt=parseFloat(n.maxRows)*Ct+ht||1/0,gt=rn(dt??0,xt,wt);nt.value=Math.floor((gt-ht)/Ct),D.value=qt(gt)})}Ve(G),_t(g,G),_t(()=>n.rows,G),_t(()=>n.maxRows,G),_t(()=>n.density,G);let et;return _t(tt,st=>{st?(et=new ResizeObserver(G),et.observe(tt.value)):et==null||et.disconnect()}),Qe(()=>{et==null||et.disconnect()}),Dt(()=>{const st=!!(c.counter||n.counter||n.counterValue),rt=!!(st||c.details),[ht,dt]=$r(r),[{modelValue:Ct,...xt}]=Ke.filterProps(n),[wt]=S2(n);return t(Ke,o({ref:B,modelValue:g.value,"onUpdate:modelValue":gt=>g.value=gt,class:["v-textarea v-text-field",{"v-textarea--prefixed":n.prefix,"v-textarea--suffixed":n.suffix,"v-text-field--prefixed":n.prefix,"v-text-field--suffixed":n.suffix,"v-textarea--auto-grow":n.autoGrow,"v-textarea--no-resize":n.noResize||n.autoGrow,"v-text-field--plain-underlined":Y.value},n.class],style:n.style},ht,xt,{centerAffix:nt.value===1&&!Y.value,focused:v.value}),{...c,default:gt=>{let{isDisabled:It,isDirty:At,isReadonly:Tt,isValid:Ft}=gt;return t(Hs,o({ref:P,style:{"--v-textarea-control-height":D.value},onClick:H,onMousedown:U,"onClick:clear":W,"onClick:prependInner":n["onClick:prependInner"],"onClick:appendInner":n["onClick:appendInner"]},wt,{active:X.value||At.value,centerAffix:nt.value===1&&!Y.value,dirty:At.value||n.dirty,disabled:It.value,focused:v.value,error:Ft.value===!1}),{...c,default:Qt=>{let{props:{class:Jt,...Et}}=Qt;return t(Kt,null,[n.prefix&&t("span",{class:"v-text-field__prefix"},[n.prefix]),$e(t("textarea",o({ref:F,class:Jt,value:g.value,onInput:_,autofocus:n.autofocus,readonly:Tt.value,disabled:It.value,placeholder:n.placeholder,rows:n.rows,name:n.name,onFocus:R,onBlur:x},Et,dt),null),[[Mn("intersect"),{handler:$},null,{once:!0}]]),n.autoGrow&&$e(t("textarea",{class:[Jt,"v-textarea__sizer"],"onUpdate:modelValue":ut=>g.value=ut,ref:tt,readonly:!0,"aria-hidden":"true"},null),[[ls,g.value]]),n.suffix&&t("span",{class:"v-text-field__suffix"},[n.suffix])])}})},details:rt?gt=>{var It;return t(Kt,null,[(It=c.details)==null?void 0:It.call(c,gt),st&&t(Kt,null,[t("span",null,null),t(gi,{active:n.persistentCounter||v.value,value:I.value,max:S.value},c.counter)])])}:void 0})}),Jn({},B,P,F)}});const ox=mt({withBackground:Boolean,...Xt(),...ue(),...re()},"VThemeProvider"),sx=Bt()({name:"VThemeProvider",props:ox(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n);return()=>{var c;return n.withBackground?t(n.tag,{class:["v-theme-provider",h.value,n.class],style:n.style},{default:()=>{var g;return[(g=r.default)==null?void 0:g.call(r)]}}):(c=r.default)==null?void 0:c.call(r)}}});const ax=mt({align:{type:String,default:"center",validator:n=>["center","start"].includes(n)},direction:{type:String,default:"vertical",validator:n=>["vertical","horizontal"].includes(n)},justify:{type:String,default:"auto",validator:n=>["auto","center"].includes(n)},side:{type:String,validator:n=>n==null||["start","end"].includes(n)},lineInset:{type:[String,Number],default:0},lineThickness:{type:[String,Number],default:2},lineColor:String,truncateLine:{type:String,validator:n=>["start","end","both"].includes(n)},...Xt(),...We(),...re(),...ue()},"VTimeline"),ix=Bt()({name:"VTimeline",props:ax(),setup(n,l){let{slots:r}=l;const{themeClasses:h}=ve(n),{densityClasses:c}=dn(n),{rtlClasses:g}=Ue();Te({VTimelineDivider:{lineColor:Ht(n,"lineColor")},VTimelineItem:{density:Ht(n,"density"),lineInset:Ht(n,"lineInset")}});const v=q(()=>{const x=n.side?n.side:n.density!=="default"?"end":null;return x&&`v-timeline--side-${x}`}),k=q(()=>{const x=["v-timeline--truncate-line-start","v-timeline--truncate-line-end"];switch(n.truncateLine){case"both":return x;case"start":return x[0];case"end":return x[1];default:return null}});return Dt(()=>t(n.tag,{class:["v-timeline",`v-timeline--${n.direction}`,`v-timeline--align-${n.align}`,`v-timeline--justify-${n.justify}`,k.value,{"v-timeline--inset-line":!!n.lineInset},h.value,c.value,v.value,g.value,n.class],style:[{"--v-timeline-line-thickness":qt(n.lineThickness)},n.style]},r)),{}}}),hx=mt({dotColor:String,fillDot:Boolean,hideDot:Boolean,icon:ee,iconColor:String,lineColor:String,...Xt(),...Ce(),...$l(),..._e()},"VTimelineDivider"),dx=Bt()({name:"VTimelineDivider",props:hx(),setup(n,l){let{slots:r}=l;const{sizeClasses:h,sizeStyles:c}=ko(n,"v-timeline-divider__dot"),{backgroundColorStyles:g,backgroundColorClasses:v}=Pe(Ht(n,"dotColor")),{roundedClasses:k}=Ne(n,"v-timeline-divider__dot"),{elevationClasses:x}=Je(n),{backgroundColorClasses:I,backgroundColorStyles:S}=Pe(Ht(n,"lineColor"));return Dt(()=>t("div",{class:["v-timeline-divider",{"v-timeline-divider--fill-dot":n.fillDot},n.class],style:n.style},[t("div",{class:["v-timeline-divider__before",I.value],style:S.value},null),!n.hideDot&&t("div",{key:"dot",class:["v-timeline-divider__dot",x.value,k.value,h.value],style:c.value},[t("div",{class:["v-timeline-divider__inner-dot",v.value,k.value],style:g.value},[r.default?t(ke,{key:"icon-defaults",disabled:!n.icon,defaults:{VIcon:{color:n.iconColor,icon:n.icon,size:n.size}}},r.default):t(xe,{key:"icon",color:n.iconColor,icon:n.icon,size:n.size},null)])]),t("div",{class:["v-timeline-divider__after",I.value],style:S.value},null)])),{}}}),cx=mt({density:String,dotColor:String,fillDot:Boolean,hideDot:Boolean,hideOpposite:{type:Boolean,default:void 0},icon:ee,iconColor:String,lineInset:[Number,String],...Xt(),...Tn(),..._e(),...Ce(),...$l(),...re()},"VTimelineItem"),ux=Bt()({name:"VTimelineItem",props:cx(),setup(n,l){let{slots:r}=l;const{dimensionStyles:h}=En(n),c=Wt(0),g=Lt();return _t(g,v=>{var k;v&&(c.value=((k=v.$el.querySelector(".v-timeline-divider__dot"))==null?void 0:k.getBoundingClientRect().width)??0)},{flush:"post"}),Dt(()=>{var v,k;return t("div",{class:["v-timeline-item",{"v-timeline-item--fill-dot":n.fillDot},n.class],style:[{"--v-timeline-dot-size":qt(c.value),"--v-timeline-line-inset":n.lineInset?`calc(var(--v-timeline-dot-size) / 2 + ${qt(n.lineInset)})`:qt(0)},n.style]},[t("div",{class:"v-timeline-item__body",style:h.value},[(v=r.default)==null?void 0:v.call(r)]),t(dx,{ref:g,hideDot:n.hideDot,icon:n.icon,iconColor:n.iconColor,size:n.size,elevation:n.elevation,dotColor:n.dotColor,fillDot:n.fillDot,rounded:n.rounded},{default:r.icon}),n.density!=="compact"&&t("div",{class:"v-timeline-item__opposite"},[!n.hideOpposite&&((k=r.opposite)==null?void 0:k.call(r))])])}),{}}}),px=mt({...Xt(),..._n({variant:"text"})},"VToolbarItems"),gx=Bt()({name:"VToolbarItems",props:px(),setup(n,l){let{slots:r}=l;return Te({VBtn:{color:Ht(n,"color"),height:"inherit",variant:Ht(n,"variant")}}),Dt(()=>{var h;return t("div",{class:["v-toolbar-items",n.class],style:n.style},[(h=r.default)==null?void 0:h.call(r)])}),{}}});const wx=mt({id:String,text:String,...On(Bs({closeOnBack:!1,location:"end",locationStrategy:"connected",eager:!0,minWidth:0,offset:10,openOnClick:!1,openOnHover:!0,origin:"auto",scrim:!1,scrollStrategy:"reposition",transition:!1}),["absolute","persistent"])},"VTooltip"),vx=Bt()({name:"VTooltip",props:wx(),emits:{"update:modelValue":n=>!0},setup(n,l){let{slots:r}=l;const h=ne(n,"modelValue"),{scopeId:c}=zo(),g=hn(),v=q(()=>n.id||`v-tooltip-${g}`),k=Lt(),x=q(()=>n.location.split(" ").length>1?n.location:n.location+" center"),I=q(()=>n.origin==="auto"||n.origin==="overlap"||n.origin.split(" ").length>1||n.location.split(" ").length>1?n.origin:n.origin+" center"),S=q(()=>n.transition?n.transition:h.value?"scale-transition":"fade-transition"),$=q(()=>o({"aria-describedby":v.value},n.activatorProps));return Dt(()=>{const[B]=xl.filterProps(n);return t(xl,o({ref:k,class:["v-tooltip",n.class],style:n.style,id:v.value},B,{modelValue:h.value,"onUpdate:modelValue":P=>h.value=P,transition:S.value,absolute:!0,location:x.value,origin:I.value,persistent:!0,role:"tooltip",activatorProps:$.value,_disableGlobalStack:!0},c),{activator:r.activator,default:function(){var X;for(var P=arguments.length,D=new Array(P),F=0;F!0},setup(n,l){let{slots:r}=l;const h=A4(n,"validation");return()=>{var c;return(c=r.default)==null?void 0:c.call(r,h)}}}),mx=Object.freeze(Object.defineProperty({__proto__:null,VAlert:X7,VAlertTitle:M4,VApp:e7,VAppBar:M7,VAppBarNavIcon:E7,VAppBarTitle:V7,VAutocomplete:d8,VAvatar:Kl,VBadge:u8,VBanner:w8,VBannerActions:eg,VBannerText:ng,VBottomNavigation:f8,VBreadcrumbs:M8,VBreadcrumbsDivider:lg,VBreadcrumbsItem:rg,VBtn:pn,VBtnGroup:X0,VBtnToggle:S7,VCard:I8,VCardActions:og,VCardItem:ig,VCardSubtitle:sg,VCardText:hg,VCardTitle:ag,VCarousel:P8,VCarouselItem:D8,VCheckbox:J7,VCheckboxBtn:ao,VChip:As,VChipGroup:nb,VClassIcon:d2,VCode:O8,VCol:U9,VColorPicker:y9,VCombobox:$9,VComponentIcon:R0,VContainer:W9,VCounter:gi,VDefaultsProvider:ke,VDialog:B9,VDialogBottomTransition:o7,VDialogTopTransition:s7,VDialogTransition:ri,VDivider:T4,VExpandTransition:oi,VExpandXTransition:g2,VExpansionPanel:D9,VExpansionPanelText:bg,VExpansionPanelTitle:xg,VExpansionPanels:j9,VFabTransition:r7,VFadeTransition:V0,VField:Hs,VFieldLabel:Lo,VFileInput:F9,VFooter:T9,VForm:V9,VHover:rM,VIcon:xe,VImg:xr,VInput:Ke,VItem:aM,VItemGroup:sM,VKbd:iM,VLabel:xo,VLayout:dM,VLayoutItem:uM,VLazy:gM,VLigatureIcon:v6,VList:ci,VListGroup:G0,VListImg:zb,VListItem:Ml,VListItemAction:yb,VListItemMedia:Sb,VListItemSubtitle:O4,VListItemTitle:F4,VListSubheader:R4,VLocaleProvider:vM,VMain:mM,VMenu:pi,VMessages:C4,VNavigationDrawer:SM,VNoSsr:$M,VOverlay:xl,VPagination:HM,VParallax:PM,VProgressCircular:m2,VProgressLinear:k2,VRadio:DM,VRadioGroup:FM,VRangeSlider:TM,VRating:VM,VResponsive:_0,VRow:eM,VScaleTransition:u2,VScrollXReverseTransition:i7,VScrollXTransition:a7,VScrollYReverseTransition:d7,VScrollYTransition:h7,VSelect:o8,VSelectionControl:zr,VSelectionControlGroup:z4,VSheet:sh,VSlideGroup:ah,VSlideGroupItem:WM,VSlideXReverseTransition:u7,VSlideXTransition:c7,VSlideYReverseTransition:p7,VSlideYTransition:p2,VSlider:oh,VSnackbar:qM,VSpacer:nM,VSvgIcon:h2,VSwitch:UM,VSystemBar:ZM,VTab:Og,VTable:nx,VTabs:tx,VTextField:Ir,VTextarea:rx,VThemeProvider:sx,VTimeline:ix,VTimelineItem:ux,VToolbar:W0,VToolbarItems:gx,VToolbarTitle:c2,VTooltip:vx,VValidation:fx,VVirtualScroll:fi,VWindow:J0,VWindowItem:th},Symbol.toStringTag,{value:"Module"}));function kx(n,l){const r=l.modifiers||{},h=l.value,{once:c,immediate:g,...v}=r,k=!Object.keys(v).length,{handler:x,options:I}=typeof h=="object"?h:{handler:h,options:{attributes:(v==null?void 0:v.attr)??k,characterData:(v==null?void 0:v.char)??k,childList:(v==null?void 0:v.child)??k,subtree:(v==null?void 0:v.sub)??k}},S=new MutationObserver(function(){let $=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],B=arguments.length>1?arguments[1]:void 0;x==null||x($,B),c&&Fg(n,l)});g&&(x==null||x([],S)),n._mutate=Object(n._mutate),n._mutate[l.instance.$.uid]={observer:S},S.observe(n,I)}function Fg(n,l){var r;(r=n._mutate)!=null&&r[l.instance.$.uid]&&(n._mutate[l.instance.$.uid].observer.disconnect(),delete n._mutate[l.instance.$.uid])}const bx={mounted:kx,unmounted:Fg};function Mx(n,l){var c,g;const r=l.value,h={passive:!((c=l.modifiers)!=null&&c.active)};window.addEventListener("resize",r,h),n._onResize=Object(n._onResize),n._onResize[l.instance.$.uid]={handler:r,options:h},(g=l.modifiers)!=null&&g.quiet||r()}function xx(n,l){var c;if(!((c=n._onResize)!=null&&c[l.instance.$.uid]))return;const{handler:r,options:h}=n._onResize[l.instance.$.uid];window.removeEventListener("resize",r,h),delete n._onResize[l.instance.$.uid]}const zx={mounted:Mx,unmounted:xx};function Rg(n,l){const{self:r=!1}=l.modifiers??{},h=l.value,c=typeof h=="object"&&h.options||{passive:!0},g=typeof h=="function"||"handleEvent"in h?h:h.handler,v=r?n:l.arg?document.querySelector(l.arg):window;v&&(v.addEventListener("scroll",g,c),n._onScroll=Object(n._onScroll),n._onScroll[l.instance.$.uid]={handler:g,options:c,target:r?void 0:v})}function Tg(n,l){var g;if(!((g=n._onScroll)!=null&&g[l.instance.$.uid]))return;const{handler:r,options:h,target:c=n}=n._onScroll[l.instance.$.uid];c.removeEventListener("scroll",r,h),delete n._onScroll[l.instance.$.uid]}function Ix(n,l){l.value!==l.oldValue&&(Tg(n,l),Rg(n,l))}const yx={mounted:Rg,unmounted:Tg,updated:Ix},Cx=Object.freeze(Object.defineProperty({__proto__:null,ClickOutside:Q4,Intersect:a4,Mutate:bx,Resize:zx,Ripple:tr,Scroll:yx,Touch:B2},Symbol.toStringTag,{value:"Module"})),Sx={name:"PurpleTheme",dark:!1,variables:{"border-color":"#1e88e5","carousel-control-size":10},colors:{primary:"#1e88e5",secondary:"#5e35b1",info:"#03c9d7",success:"#00c853",accent:"#FFAB91",warning:"#ffc107",error:"#f44336",lightprimary:"#eef2f6",lightsecondary:"#ede7f6",lightsuccess:"#b9f6ca",lighterror:"#f9d8d8",lightwarning:"#fff8e1",darkText:"#212121",lightText:"#616161",darkprimary:"#1565c0",darksecondary:"#4527a0",borderLight:"#d0d0d0",inputBorder:"#787878",containerBg:"#eef2f6",surface:"#fff","on-surface-variant":"#fff",facebook:"#4267b2",twitter:"#1da1f2",linkedin:"#0e76a8",gray100:"#fafafa",primary200:"#90caf9",secondary200:"#b39ddb"}},$x=e4({components:mx,directives:Cx,theme:{defaultTheme:"PurpleTheme",themes:{PurpleTheme:Sx}},defaults:{VBtn:{},VCard:{rounded:"md"},VTextField:{rounded:"lg"},VTooltip:{location:"top"}}});/*! * perfect-scrollbar v1.5.3 * Copyright 2021 Hyunje Jun, MDBootstrap and Contributors * Licensed under MIT - */function Qn(n){return getComputedStyle(n)}function pn(n,l){for(var r in l){var h=l[r];typeof h=="number"&&(h=h+"px"),n.style[r]=h}return n}function Ts(n){var l=document.createElement("div");return l.className=n,l}var od=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function jl(n,l){if(!od)throw new Error("No element matching method supported");return od.call(n,l)}function Tr(n){n.remove?n.remove():n.parentNode&&n.parentNode.removeChild(n)}function sd(n,l){return Array.prototype.filter.call(n.children,function(r){return jl(r,l)})}var Pe={main:"ps",rtl:"ps__rtl",element:{thumb:function(n){return"ps__thumb-"+n},rail:function(n){return"ps__rail-"+n},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function(n){return"ps--active-"+n},scrolling:function(n){return"ps--scrolling-"+n}}},S4={x:null,y:null};function $4(n,l){var r=n.element.classList,h=Pe.state.scrolling(l);r.contains(h)?clearTimeout(S4[l]):r.add(h)}function A4(n,l){S4[l]=setTimeout(function(){return n.isAlive&&n.element.classList.remove(Pe.state.scrolling(l))},n.settings.scrollingThreshold)}function tb(n,l){$4(n,l),A4(n,l)}var ms=function(l){this.element=l,this.handlers={}},B4={isEmpty:{configurable:!0}};ms.prototype.bind=function(l,r){typeof this.handlers[l]>"u"&&(this.handlers[l]=[]),this.handlers[l].push(r),this.element.addEventListener(l,r,!1)};ms.prototype.unbind=function(l,r){var h=this;this.handlers[l]=this.handlers[l].filter(function(u){return r&&u!==r?!0:(h.element.removeEventListener(l,u,!1),!1)})};ms.prototype.unbindAll=function(){for(var l in this.handlers)this.unbind(l)};B4.isEmpty.get=function(){var n=this;return Object.keys(this.handlers).every(function(l){return n.handlers[l].length===0})};Object.defineProperties(ms.prototype,B4);var go=function(){this.eventElements=[]};go.prototype.eventElement=function(l){var r=this.eventElements.filter(function(h){return h.element===l})[0];return r||(r=new ms(l),this.eventElements.push(r)),r};go.prototype.bind=function(l,r,h){this.eventElement(l).bind(r,h)};go.prototype.unbind=function(l,r,h){var u=this.eventElement(l);u.unbind(r,h),u.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(u),1)};go.prototype.unbindAll=function(){this.eventElements.forEach(function(l){return l.unbindAll()}),this.eventElements=[]};go.prototype.once=function(l,r,h){var u=this.eventElement(l),g=function(v){u.unbind(r,g),h(v)};u.bind(r,g)};function Rs(n){if(typeof window.CustomEvent=="function")return new CustomEvent(n);var l=document.createEvent("CustomEvent");return l.initCustomEvent(n,!1,!1,void 0),l}function ia(n,l,r,h,u){h===void 0&&(h=!0),u===void 0&&(u=!1);var g;if(l==="top")g=["contentHeight","containerHeight","scrollTop","y","up","down"];else if(l==="left")g=["contentWidth","containerWidth","scrollLeft","x","left","right"];else throw new Error("A proper axis should be provided");eb(n,r,g,h,u)}function eb(n,l,r,h,u){var g=r[0],v=r[1],b=r[2],z=r[3],C=r[4],S=r[5];h===void 0&&(h=!0),u===void 0&&(u=!1);var A=n.element;n.reach[z]=null,A[b]<1&&(n.reach[z]="start"),A[b]>n[g]-n[v]-1&&(n.reach[z]="end"),l&&(A.dispatchEvent(Rs("ps-scroll-"+z)),l<0?A.dispatchEvent(Rs("ps-scroll-"+C)):l>0&&A.dispatchEvent(Rs("ps-scroll-"+S)),h&&tb(n,z)),n.reach[z]&&(l||u)&&A.dispatchEvent(Rs("ps-"+z+"-reach-"+n.reach[z]))}function Ae(n){return parseInt(n,10)||0}function nb(n){return jl(n,"input,[contenteditable]")||jl(n,"select,[contenteditable]")||jl(n,"textarea,[contenteditable]")||jl(n,"button,[contenteditable]")}function lb(n){var l=Qn(n);return Ae(l.width)+Ae(l.paddingLeft)+Ae(l.paddingRight)+Ae(l.borderLeftWidth)+Ae(l.borderRightWidth)}var Fr={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function vl(n){var l=n.element,r=Math.floor(l.scrollTop),h=l.getBoundingClientRect();n.containerWidth=Math.round(h.width),n.containerHeight=Math.round(h.height),n.contentWidth=l.scrollWidth,n.contentHeight=l.scrollHeight,l.contains(n.scrollbarXRail)||(sd(l,Pe.element.rail("x")).forEach(function(u){return Tr(u)}),l.appendChild(n.scrollbarXRail)),l.contains(n.scrollbarYRail)||(sd(l,Pe.element.rail("y")).forEach(function(u){return Tr(u)}),l.appendChild(n.scrollbarYRail)),!n.settings.suppressScrollX&&n.containerWidth+n.settings.scrollXMarginOffset=n.railXWidth-n.scrollbarXWidth&&(n.scrollbarXLeft=n.railXWidth-n.scrollbarXWidth),n.scrollbarYTop>=n.railYHeight-n.scrollbarYHeight&&(n.scrollbarYTop=n.railYHeight-n.scrollbarYHeight),rb(l,n),n.scrollbarXActive?l.classList.add(Pe.state.active("x")):(l.classList.remove(Pe.state.active("x")),n.scrollbarXWidth=0,n.scrollbarXLeft=0,l.scrollLeft=n.isRtl===!0?n.contentWidth:0),n.scrollbarYActive?l.classList.add(Pe.state.active("y")):(l.classList.remove(Pe.state.active("y")),n.scrollbarYHeight=0,n.scrollbarYTop=0,l.scrollTop=0)}function ad(n,l){return n.settings.minScrollbarLength&&(l=Math.max(l,n.settings.minScrollbarLength)),n.settings.maxScrollbarLength&&(l=Math.min(l,n.settings.maxScrollbarLength)),l}function rb(n,l){var r={width:l.railXWidth},h=Math.floor(n.scrollTop);l.isRtl?r.left=l.negativeScrollAdjustment+n.scrollLeft+l.containerWidth-l.contentWidth:r.left=n.scrollLeft,l.isScrollbarXUsingBottom?r.bottom=l.scrollbarXBottom-h:r.top=l.scrollbarXTop+h,pn(l.scrollbarXRail,r);var u={top:h,height:l.railYHeight};l.isScrollbarYUsingRight?l.isRtl?u.right=l.contentWidth-(l.negativeScrollAdjustment+n.scrollLeft)-l.scrollbarYRight-l.scrollbarYOuterWidth-9:u.right=l.scrollbarYRight-n.scrollLeft:l.isRtl?u.left=l.negativeScrollAdjustment+n.scrollLeft+l.containerWidth*2-l.contentWidth-l.scrollbarYLeft-l.scrollbarYOuterWidth:u.left=l.scrollbarYLeft+n.scrollLeft,pn(l.scrollbarYRail,u),pn(l.scrollbarX,{left:l.scrollbarXLeft,width:l.scrollbarXWidth-l.railBorderXWidth}),pn(l.scrollbarY,{top:l.scrollbarYTop,height:l.scrollbarYHeight-l.railBorderYWidth})}function ob(n){n.element,n.event.bind(n.scrollbarY,"mousedown",function(l){return l.stopPropagation()}),n.event.bind(n.scrollbarYRail,"mousedown",function(l){var r=l.pageY-window.pageYOffset-n.scrollbarYRail.getBoundingClientRect().top,h=r>n.scrollbarYTop?1:-1;n.element.scrollTop+=h*n.containerHeight,vl(n),l.stopPropagation()}),n.event.bind(n.scrollbarX,"mousedown",function(l){return l.stopPropagation()}),n.event.bind(n.scrollbarXRail,"mousedown",function(l){var r=l.pageX-window.pageXOffset-n.scrollbarXRail.getBoundingClientRect().left,h=r>n.scrollbarXLeft?1:-1;n.element.scrollLeft+=h*n.containerWidth,vl(n),l.stopPropagation()})}function sb(n){id(n,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),id(n,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])}function id(n,l){var r=l[0],h=l[1],u=l[2],g=l[3],v=l[4],b=l[5],z=l[6],C=l[7],S=l[8],A=n.element,B=null,P=null,D=null;function E(H){H.touches&&H.touches[0]&&(H[u]=H.touches[0].pageY),A[z]=B+D*(H[u]-P),$4(n,C),vl(n),H.stopPropagation(),H.type.startsWith("touch")&&H.changedTouches.length>1&&H.preventDefault()}function Y(){A4(n,C),n[S].classList.remove(Pe.state.clicking),n.event.unbind(n.ownerDocument,"mousemove",E)}function O(H,U){B=A[z],U&&H.touches&&(H[u]=H.touches[0].pageY),P=H[u],D=(n[h]-n[r])/(n[g]-n[b]),U?n.event.bind(n.ownerDocument,"touchmove",E):(n.event.bind(n.ownerDocument,"mousemove",E),n.event.once(n.ownerDocument,"mouseup",Y),H.preventDefault()),n[S].classList.add(Pe.state.clicking),H.stopPropagation()}n.event.bind(n[v],"mousedown",function(H){O(H)}),n.event.bind(n[v],"touchstart",function(H){O(H,!0)})}function ab(n){var l=n.element,r=function(){return jl(l,":hover")},h=function(){return jl(n.scrollbarX,":focus")||jl(n.scrollbarY,":focus")};function u(g,v){var b=Math.floor(l.scrollTop);if(g===0){if(!n.scrollbarYActive)return!1;if(b===0&&v>0||b>=n.contentHeight-n.containerHeight&&v<0)return!n.settings.wheelPropagation}var z=l.scrollLeft;if(v===0){if(!n.scrollbarXActive)return!1;if(z===0&&g<0||z>=n.contentWidth-n.containerWidth&&g>0)return!n.settings.wheelPropagation}return!0}n.event.bind(n.ownerDocument,"keydown",function(g){if(!(g.isDefaultPrevented&&g.isDefaultPrevented()||g.defaultPrevented)&&!(!r()&&!h())){var v=document.activeElement?document.activeElement:n.ownerDocument.activeElement;if(v){if(v.tagName==="IFRAME")v=v.contentDocument.activeElement;else for(;v.shadowRoot;)v=v.shadowRoot.activeElement;if(nb(v))return}var b=0,z=0;switch(g.which){case 37:g.metaKey?b=-n.contentWidth:g.altKey?b=-n.containerWidth:b=-30;break;case 38:g.metaKey?z=n.contentHeight:g.altKey?z=n.containerHeight:z=30;break;case 39:g.metaKey?b=n.contentWidth:g.altKey?b=n.containerWidth:b=30;break;case 40:g.metaKey?z=-n.contentHeight:g.altKey?z=-n.containerHeight:z=-30;break;case 32:g.shiftKey?z=n.containerHeight:z=-n.containerHeight;break;case 33:z=n.containerHeight;break;case 34:z=-n.containerHeight;break;case 36:z=n.contentHeight;break;case 35:z=-n.contentHeight;break;default:return}n.settings.suppressScrollX&&b!==0||n.settings.suppressScrollY&&z!==0||(l.scrollTop-=z,l.scrollLeft+=b,vl(n),u(b,z)&&g.preventDefault())}})}function ib(n){var l=n.element;function r(v,b){var z=Math.floor(l.scrollTop),C=l.scrollTop===0,S=z+l.offsetHeight===l.scrollHeight,A=l.scrollLeft===0,B=l.scrollLeft+l.offsetWidth===l.scrollWidth,P;return Math.abs(b)>Math.abs(v)?P=C||S:P=A||B,P?!n.settings.wheelPropagation:!0}function h(v){var b=v.deltaX,z=-1*v.deltaY;return(typeof b>"u"||typeof z>"u")&&(b=-1*v.wheelDeltaX/6,z=v.wheelDeltaY/6),v.deltaMode&&v.deltaMode===1&&(b*=10,z*=10),b!==b&&z!==z&&(b=0,z=v.wheelDelta),v.shiftKey?[-z,-b]:[b,z]}function u(v,b,z){if(!Fr.isWebKit&&l.querySelector("select:focus"))return!0;if(!l.contains(v))return!1;for(var C=v;C&&C!==l;){if(C.classList.contains(Pe.element.consuming))return!0;var S=Qn(C);if(z&&S.overflowY.match(/(scroll|auto)/)){var A=C.scrollHeight-C.clientHeight;if(A>0&&(C.scrollTop>0&&z<0||C.scrollTop0))return!0}if(b&&S.overflowX.match(/(scroll|auto)/)){var B=C.scrollWidth-C.clientWidth;if(B>0&&(C.scrollLeft>0&&b<0||C.scrollLeft0))return!0}C=C.parentNode}return!1}function g(v){var b=h(v),z=b[0],C=b[1];if(!u(v.target,z,C)){var S=!1;n.settings.useBothWheelAxes?n.scrollbarYActive&&!n.scrollbarXActive?(C?l.scrollTop-=C*n.settings.wheelSpeed:l.scrollTop+=z*n.settings.wheelSpeed,S=!0):n.scrollbarXActive&&!n.scrollbarYActive&&(z?l.scrollLeft+=z*n.settings.wheelSpeed:l.scrollLeft-=C*n.settings.wheelSpeed,S=!0):(l.scrollTop-=C*n.settings.wheelSpeed,l.scrollLeft+=z*n.settings.wheelSpeed),vl(n),S=S||r(z,C),S&&!v.ctrlKey&&(v.stopPropagation(),v.preventDefault())}}typeof window.onwheel<"u"?n.event.bind(l,"wheel",g):typeof window.onmousewheel<"u"&&n.event.bind(l,"mousewheel",g)}function hb(n){if(!Fr.supportsTouch&&!Fr.supportsIePointer)return;var l=n.element;function r(D,E){var Y=Math.floor(l.scrollTop),O=l.scrollLeft,H=Math.abs(D),U=Math.abs(E);if(U>H){if(E<0&&Y===n.contentHeight-n.containerHeight||E>0&&Y===0)return window.scrollY===0&&E>0&&Fr.isChrome}else if(H>U&&(D<0&&O===n.contentWidth-n.containerWidth||D>0&&O===0))return!0;return!0}function h(D,E){l.scrollTop-=E,l.scrollLeft-=D,vl(n)}var u={},g=0,v={},b=null;function z(D){return D.targetTouches?D.targetTouches[0]:D}function C(D){return D.pointerType&&D.pointerType==="pen"&&D.buttons===0?!1:!!(D.targetTouches&&D.targetTouches.length===1||D.pointerType&&D.pointerType!=="mouse"&&D.pointerType!==D.MSPOINTER_TYPE_MOUSE)}function S(D){if(C(D)){var E=z(D);u.pageX=E.pageX,u.pageY=E.pageY,g=new Date().getTime(),b!==null&&clearInterval(b)}}function A(D,E,Y){if(!l.contains(D))return!1;for(var O=D;O&&O!==l;){if(O.classList.contains(Pe.element.consuming))return!0;var H=Qn(O);if(Y&&H.overflowY.match(/(scroll|auto)/)){var U=O.scrollHeight-O.clientHeight;if(U>0&&(O.scrollTop>0&&Y<0||O.scrollTop0))return!0}if(E&&H.overflowX.match(/(scroll|auto)/)){var W=O.scrollWidth-O.clientWidth;if(W>0&&(O.scrollLeft>0&&E<0||O.scrollLeft0))return!0}O=O.parentNode}return!1}function B(D){if(C(D)){var E=z(D),Y={pageX:E.pageX,pageY:E.pageY},O=Y.pageX-u.pageX,H=Y.pageY-u.pageY;if(A(D.target,O,H))return;h(O,H),u=Y;var U=new Date().getTime(),W=U-g;W>0&&(v.x=O/W,v.y=H/W,g=U),r(O,H)&&D.preventDefault()}}function P(){n.settings.swipeEasing&&(clearInterval(b),b=setInterval(function(){if(n.isInitialized){clearInterval(b);return}if(!v.x&&!v.y){clearInterval(b);return}if(Math.abs(v.x)<.01&&Math.abs(v.y)<.01){clearInterval(b);return}if(!n.element){clearInterval(b);return}h(v.x*30,v.y*30),v.x*=.8,v.y*=.8},10))}Fr.supportsTouch?(n.event.bind(l,"touchstart",S),n.event.bind(l,"touchmove",B),n.event.bind(l,"touchend",P)):Fr.supportsIePointer&&(window.PointerEvent?(n.event.bind(l,"pointerdown",S),n.event.bind(l,"pointermove",B),n.event.bind(l,"pointerup",P)):window.MSPointerEvent&&(n.event.bind(l,"MSPointerDown",S),n.event.bind(l,"MSPointerMove",B),n.event.bind(l,"MSPointerUp",P)))}var db=function(){return{handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1}},cb={"click-rail":ob,"drag-thumb":sb,keyboard:ab,wheel:ib,touch:hb},ks=function(l,r){var h=this;if(r===void 0&&(r={}),typeof l=="string"&&(l=document.querySelector(l)),!l||!l.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");this.element=l,l.classList.add(Pe.main),this.settings=db();for(var u in r)this.settings[u]=r[u];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var g=function(){return l.classList.add(Pe.state.focus)},v=function(){return l.classList.remove(Pe.state.focus)};this.isRtl=Qn(l).direction==="rtl",this.isRtl===!0&&l.classList.add(Pe.rtl),this.isNegativeScroll=function(){var C=l.scrollLeft,S=null;return l.scrollLeft=-1,S=l.scrollLeft<0,l.scrollLeft=C,S}(),this.negativeScrollAdjustment=this.isNegativeScroll?l.scrollWidth-l.clientWidth:0,this.event=new go,this.ownerDocument=l.ownerDocument||document,this.scrollbarXRail=Ts(Pe.element.rail("x")),l.appendChild(this.scrollbarXRail),this.scrollbarX=Ts(Pe.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",g),this.event.bind(this.scrollbarX,"blur",v),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var b=Qn(this.scrollbarXRail);this.scrollbarXBottom=parseInt(b.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=Ae(b.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=Ae(b.borderLeftWidth)+Ae(b.borderRightWidth),pn(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=Ae(b.marginLeft)+Ae(b.marginRight),pn(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=Ts(Pe.element.rail("y")),l.appendChild(this.scrollbarYRail),this.scrollbarY=Ts(Pe.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",g),this.event.bind(this.scrollbarY,"blur",v),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var z=Qn(this.scrollbarYRail);this.scrollbarYRight=parseInt(z.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=Ae(z.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?lb(this.scrollbarY):null,this.railBorderYWidth=Ae(z.borderTopWidth)+Ae(z.borderBottomWidth),pn(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=Ae(z.marginTop)+Ae(z.marginBottom),pn(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:l.scrollLeft<=0?"start":l.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:l.scrollTop<=0?"start":l.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(C){return cb[C](h)}),this.lastScrollTop=Math.floor(l.scrollTop),this.lastScrollLeft=l.scrollLeft,this.event.bind(this.element,"scroll",function(C){return h.onScroll(C)}),vl(this)};ks.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,pn(this.scrollbarXRail,{display:"block"}),pn(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=Ae(Qn(this.scrollbarXRail).marginLeft)+Ae(Qn(this.scrollbarXRail).marginRight),this.railYMarginHeight=Ae(Qn(this.scrollbarYRail).marginTop)+Ae(Qn(this.scrollbarYRail).marginBottom),pn(this.scrollbarXRail,{display:"none"}),pn(this.scrollbarYRail,{display:"none"}),vl(this),ia(this,"top",0,!1,!0),ia(this,"left",0,!1,!0),pn(this.scrollbarXRail,{display:""}),pn(this.scrollbarYRail,{display:""}))};ks.prototype.onScroll=function(l){this.isAlive&&(vl(this),ia(this,"top",this.element.scrollTop-this.lastScrollTop),ia(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)};ks.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),Tr(this.scrollbarX),Tr(this.scrollbarY),Tr(this.scrollbarXRail),Tr(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)};ks.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(l){return!l.match(/^ps([-_].+|)$/)}).join(" ")};const hd=["scroll","ps-scroll-y","ps-scroll-x","ps-scroll-up","ps-scroll-down","ps-scroll-left","ps-scroll-right","ps-y-reach-start","ps-y-reach-end","ps-x-reach-start","ps-x-reach-end"];var Pr={name:"PerfectScrollbar",props:{options:{type:Object,required:!1,default:()=>{}},tag:{type:String,required:!1,default:"div"},watchOptions:{type:Boolean,required:!1,default:!1}},emits:hd,data(){return{ps:null}},watch:{watchOptions(n){!n&&this.watcher?this.watcher():this.createWatcher()}},mounted(){this.create(),this.watchOptions&&this.createWatcher()},updated(){this.$nextTick(()=>{this.update()})},beforeUnmount(){this.destroy()},methods:{create(){this.ps&&this.$isServer||(this.ps=new ks(this.$el,this.options),hd.forEach(n=>{this.ps.element.addEventListener(n,l=>this.$emit(n,l))}))},createWatcher(){this.watcher=this.$watch("options",()=>{this.destroy(),this.create()},{deep:!0})},update(){this.ps&&this.ps.update()},destroy(){this.ps&&(this.ps.destroy(),this.ps=null)}},render(){return Hn(this.tag,{class:"ps"},this.$slots.default&&this.$slots.default())}},ub={install:(n,l)=>{l&&(l.name&&typeof l.name=="string"&&(Pr.name=l.name),l.options&&typeof l.options=="object"&&(Pr.props.options.default=()=>l.options),l.tag&&typeof l.tag=="string"&&(Pr.props.tag.default=l.tag),l.watchOptions&&typeof l.watchOptions=="boolean"&&(Pr.props.watchOptions=l.watchOptions)),n.component(Pr.name,Pr)}};function pb(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}function gb(n){if(n.__esModule)return n;var l=n.default;if(typeof l=="function"){var r=function h(){return this instanceof h?Reflect.construct(l,arguments,this.constructor):l.apply(this,arguments)};r.prototype=l.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(n).forEach(function(h){var u=Object.getOwnPropertyDescriptor(n,h);Object.defineProperty(r,h,u.get?u:{enumerable:!0,get:function(){return n[h]}})}),r}var H4={exports:{}};const wb=gb(B3);var Es={exports:{}};/*! + */function ll(n){return getComputedStyle(n)}function vn(n,l){for(var r in l){var h=l[r];typeof h=="number"&&(h=h+"px"),n.style[r]=h}return n}function Qs(n){var l=document.createElement("div");return l.className=n,l}var Qd=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function El(n,l){if(!Qd)throw new Error("No element matching method supported");return Qd.call(n,l)}function Yr(n){n.remove?n.remove():n.parentNode&&n.parentNode.removeChild(n)}function Jd(n,l){return Array.prototype.filter.call(n.children,function(r){return El(r,l)})}var De={main:"ps",rtl:"ps__rtl",element:{thumb:function(n){return"ps__thumb-"+n},rail:function(n){return"ps__rail-"+n},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function(n){return"ps--active-"+n},scrolling:function(n){return"ps--scrolling-"+n}}},Eg={x:null,y:null};function Vg(n,l){var r=n.element.classList,h=De.state.scrolling(l);r.contains(h)?clearTimeout(Eg[l]):r.add(h)}function _g(n,l){Eg[l]=setTimeout(function(){return n.isAlive&&n.element.classList.remove(De.state.scrolling(l))},n.settings.scrollingThreshold)}function Ax(n,l){Vg(n,l),_g(n,l)}var Ns=function(l){this.element=l,this.handlers={}},Wg={isEmpty:{configurable:!0}};Ns.prototype.bind=function(l,r){typeof this.handlers[l]>"u"&&(this.handlers[l]=[]),this.handlers[l].push(r),this.element.addEventListener(l,r,!1)};Ns.prototype.unbind=function(l,r){var h=this;this.handlers[l]=this.handlers[l].filter(function(c){return r&&c!==r?!0:(h.element.removeEventListener(l,c,!1),!1)})};Ns.prototype.unbindAll=function(){for(var l in this.handlers)this.unbind(l)};Wg.isEmpty.get=function(){var n=this;return Object.keys(this.handlers).every(function(l){return n.handlers[l].length===0})};Object.defineProperties(Ns.prototype,Wg);var Io=function(){this.eventElements=[]};Io.prototype.eventElement=function(l){var r=this.eventElements.filter(function(h){return h.element===l})[0];return r||(r=new Ns(l),this.eventElements.push(r)),r};Io.prototype.bind=function(l,r,h){this.eventElement(l).bind(r,h)};Io.prototype.unbind=function(l,r,h){var c=this.eventElement(l);c.unbind(r,h),c.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(c),1)};Io.prototype.unbindAll=function(){this.eventElements.forEach(function(l){return l.unbindAll()}),this.eventElements=[]};Io.prototype.once=function(l,r,h){var c=this.eventElement(l),g=function(v){c.unbind(r,g),h(v)};c.bind(r,g)};function Js(n){if(typeof window.CustomEvent=="function")return new CustomEvent(n);var l=document.createEvent("CustomEvent");return l.initCustomEvent(n,!1,!1,void 0),l}function ya(n,l,r,h,c){h===void 0&&(h=!0),c===void 0&&(c=!1);var g;if(l==="top")g=["contentHeight","containerHeight","scrollTop","y","up","down"];else if(l==="left")g=["contentWidth","containerWidth","scrollLeft","x","left","right"];else throw new Error("A proper axis should be provided");Bx(n,r,g,h,c)}function Bx(n,l,r,h,c){var g=r[0],v=r[1],k=r[2],x=r[3],I=r[4],S=r[5];h===void 0&&(h=!0),c===void 0&&(c=!1);var $=n.element;n.reach[x]=null,$[k]<1&&(n.reach[x]="start"),$[k]>n[g]-n[v]-1&&(n.reach[x]="end"),l&&($.dispatchEvent(Js("ps-scroll-"+x)),l<0?$.dispatchEvent(Js("ps-scroll-"+I)):l>0&&$.dispatchEvent(Js("ps-scroll-"+S)),h&&Ax(n,x)),n.reach[x]&&(l||c)&&$.dispatchEvent(Js("ps-"+x+"-reach-"+n.reach[x]))}function He(n){return parseInt(n,10)||0}function Hx(n){return El(n,"input,[contenteditable]")||El(n,"select,[contenteditable]")||El(n,"textarea,[contenteditable]")||El(n,"button,[contenteditable]")}function Nx(n){var l=ll(n);return He(l.width)+He(l.paddingLeft)+He(l.paddingRight)+He(l.borderLeftWidth)+He(l.borderRightWidth)}var Xr={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function zl(n){var l=n.element,r=Math.floor(l.scrollTop),h=l.getBoundingClientRect();n.containerWidth=Math.round(h.width),n.containerHeight=Math.round(h.height),n.contentWidth=l.scrollWidth,n.contentHeight=l.scrollHeight,l.contains(n.scrollbarXRail)||(Jd(l,De.element.rail("x")).forEach(function(c){return Yr(c)}),l.appendChild(n.scrollbarXRail)),l.contains(n.scrollbarYRail)||(Jd(l,De.element.rail("y")).forEach(function(c){return Yr(c)}),l.appendChild(n.scrollbarYRail)),!n.settings.suppressScrollX&&n.containerWidth+n.settings.scrollXMarginOffset=n.railXWidth-n.scrollbarXWidth&&(n.scrollbarXLeft=n.railXWidth-n.scrollbarXWidth),n.scrollbarYTop>=n.railYHeight-n.scrollbarYHeight&&(n.scrollbarYTop=n.railYHeight-n.scrollbarYHeight),jx(l,n),n.scrollbarXActive?l.classList.add(De.state.active("x")):(l.classList.remove(De.state.active("x")),n.scrollbarXWidth=0,n.scrollbarXLeft=0,l.scrollLeft=n.isRtl===!0?n.contentWidth:0),n.scrollbarYActive?l.classList.add(De.state.active("y")):(l.classList.remove(De.state.active("y")),n.scrollbarYHeight=0,n.scrollbarYTop=0,l.scrollTop=0)}function tc(n,l){return n.settings.minScrollbarLength&&(l=Math.max(l,n.settings.minScrollbarLength)),n.settings.maxScrollbarLength&&(l=Math.min(l,n.settings.maxScrollbarLength)),l}function jx(n,l){var r={width:l.railXWidth},h=Math.floor(n.scrollTop);l.isRtl?r.left=l.negativeScrollAdjustment+n.scrollLeft+l.containerWidth-l.contentWidth:r.left=n.scrollLeft,l.isScrollbarXUsingBottom?r.bottom=l.scrollbarXBottom-h:r.top=l.scrollbarXTop+h,vn(l.scrollbarXRail,r);var c={top:h,height:l.railYHeight};l.isScrollbarYUsingRight?l.isRtl?c.right=l.contentWidth-(l.negativeScrollAdjustment+n.scrollLeft)-l.scrollbarYRight-l.scrollbarYOuterWidth-9:c.right=l.scrollbarYRight-n.scrollLeft:l.isRtl?c.left=l.negativeScrollAdjustment+n.scrollLeft+l.containerWidth*2-l.contentWidth-l.scrollbarYLeft-l.scrollbarYOuterWidth:c.left=l.scrollbarYLeft+n.scrollLeft,vn(l.scrollbarYRail,c),vn(l.scrollbarX,{left:l.scrollbarXLeft,width:l.scrollbarXWidth-l.railBorderXWidth}),vn(l.scrollbarY,{top:l.scrollbarYTop,height:l.scrollbarYHeight-l.railBorderYWidth})}function Px(n){n.element,n.event.bind(n.scrollbarY,"mousedown",function(l){return l.stopPropagation()}),n.event.bind(n.scrollbarYRail,"mousedown",function(l){var r=l.pageY-window.pageYOffset-n.scrollbarYRail.getBoundingClientRect().top,h=r>n.scrollbarYTop?1:-1;n.element.scrollTop+=h*n.containerHeight,zl(n),l.stopPropagation()}),n.event.bind(n.scrollbarX,"mousedown",function(l){return l.stopPropagation()}),n.event.bind(n.scrollbarXRail,"mousedown",function(l){var r=l.pageX-window.pageXOffset-n.scrollbarXRail.getBoundingClientRect().left,h=r>n.scrollbarXLeft?1:-1;n.element.scrollLeft+=h*n.containerWidth,zl(n),l.stopPropagation()})}function Lx(n){ec(n,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),ec(n,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])}function ec(n,l){var r=l[0],h=l[1],c=l[2],g=l[3],v=l[4],k=l[5],x=l[6],I=l[7],S=l[8],$=n.element,B=null,P=null,D=null;function F(H){H.touches&&H.touches[0]&&(H[c]=H.touches[0].pageY),$[x]=B+D*(H[c]-P),Vg(n,I),zl(n),H.stopPropagation(),H.type.startsWith("touch")&&H.changedTouches.length>1&&H.preventDefault()}function X(){_g(n,I),n[S].classList.remove(De.state.clicking),n.event.unbind(n.ownerDocument,"mousemove",F)}function R(H,U){B=$[x],U&&H.touches&&(H[c]=H.touches[0].pageY),P=H[c],D=(n[h]-n[r])/(n[g]-n[k]),U?n.event.bind(n.ownerDocument,"touchmove",F):(n.event.bind(n.ownerDocument,"mousemove",F),n.event.once(n.ownerDocument,"mouseup",X),H.preventDefault()),n[S].classList.add(De.state.clicking),H.stopPropagation()}n.event.bind(n[v],"mousedown",function(H){R(H)}),n.event.bind(n[v],"touchstart",function(H){R(H,!0)})}function Dx(n){var l=n.element,r=function(){return El(l,":hover")},h=function(){return El(n.scrollbarX,":focus")||El(n.scrollbarY,":focus")};function c(g,v){var k=Math.floor(l.scrollTop);if(g===0){if(!n.scrollbarYActive)return!1;if(k===0&&v>0||k>=n.contentHeight-n.containerHeight&&v<0)return!n.settings.wheelPropagation}var x=l.scrollLeft;if(v===0){if(!n.scrollbarXActive)return!1;if(x===0&&g<0||x>=n.contentWidth-n.containerWidth&&g>0)return!n.settings.wheelPropagation}return!0}n.event.bind(n.ownerDocument,"keydown",function(g){if(!(g.isDefaultPrevented&&g.isDefaultPrevented()||g.defaultPrevented)&&!(!r()&&!h())){var v=document.activeElement?document.activeElement:n.ownerDocument.activeElement;if(v){if(v.tagName==="IFRAME")v=v.contentDocument.activeElement;else for(;v.shadowRoot;)v=v.shadowRoot.activeElement;if(Hx(v))return}var k=0,x=0;switch(g.which){case 37:g.metaKey?k=-n.contentWidth:g.altKey?k=-n.containerWidth:k=-30;break;case 38:g.metaKey?x=n.contentHeight:g.altKey?x=n.containerHeight:x=30;break;case 39:g.metaKey?k=n.contentWidth:g.altKey?k=n.containerWidth:k=30;break;case 40:g.metaKey?x=-n.contentHeight:g.altKey?x=-n.containerHeight:x=-30;break;case 32:g.shiftKey?x=n.containerHeight:x=-n.containerHeight;break;case 33:x=n.containerHeight;break;case 34:x=-n.containerHeight;break;case 36:x=n.contentHeight;break;case 35:x=-n.contentHeight;break;default:return}n.settings.suppressScrollX&&k!==0||n.settings.suppressScrollY&&x!==0||(l.scrollTop-=x,l.scrollLeft+=k,zl(n),c(k,x)&&g.preventDefault())}})}function Ox(n){var l=n.element;function r(v,k){var x=Math.floor(l.scrollTop),I=l.scrollTop===0,S=x+l.offsetHeight===l.scrollHeight,$=l.scrollLeft===0,B=l.scrollLeft+l.offsetWidth===l.scrollWidth,P;return Math.abs(k)>Math.abs(v)?P=I||S:P=$||B,P?!n.settings.wheelPropagation:!0}function h(v){var k=v.deltaX,x=-1*v.deltaY;return(typeof k>"u"||typeof x>"u")&&(k=-1*v.wheelDeltaX/6,x=v.wheelDeltaY/6),v.deltaMode&&v.deltaMode===1&&(k*=10,x*=10),k!==k&&x!==x&&(k=0,x=v.wheelDelta),v.shiftKey?[-x,-k]:[k,x]}function c(v,k,x){if(!Xr.isWebKit&&l.querySelector("select:focus"))return!0;if(!l.contains(v))return!1;for(var I=v;I&&I!==l;){if(I.classList.contains(De.element.consuming))return!0;var S=ll(I);if(x&&S.overflowY.match(/(scroll|auto)/)){var $=I.scrollHeight-I.clientHeight;if($>0&&(I.scrollTop>0&&x<0||I.scrollTop<$&&x>0))return!0}if(k&&S.overflowX.match(/(scroll|auto)/)){var B=I.scrollWidth-I.clientWidth;if(B>0&&(I.scrollLeft>0&&k<0||I.scrollLeft0))return!0}I=I.parentNode}return!1}function g(v){var k=h(v),x=k[0],I=k[1];if(!c(v.target,x,I)){var S=!1;n.settings.useBothWheelAxes?n.scrollbarYActive&&!n.scrollbarXActive?(I?l.scrollTop-=I*n.settings.wheelSpeed:l.scrollTop+=x*n.settings.wheelSpeed,S=!0):n.scrollbarXActive&&!n.scrollbarYActive&&(x?l.scrollLeft+=x*n.settings.wheelSpeed:l.scrollLeft-=I*n.settings.wheelSpeed,S=!0):(l.scrollTop-=I*n.settings.wheelSpeed,l.scrollLeft+=x*n.settings.wheelSpeed),zl(n),S=S||r(x,I),S&&!v.ctrlKey&&(v.stopPropagation(),v.preventDefault())}}typeof window.onwheel<"u"?n.event.bind(l,"wheel",g):typeof window.onmousewheel<"u"&&n.event.bind(l,"mousewheel",g)}function Fx(n){if(!Xr.supportsTouch&&!Xr.supportsIePointer)return;var l=n.element;function r(D,F){var X=Math.floor(l.scrollTop),R=l.scrollLeft,H=Math.abs(D),U=Math.abs(F);if(U>H){if(F<0&&X===n.contentHeight-n.containerHeight||F>0&&X===0)return window.scrollY===0&&F>0&&Xr.isChrome}else if(H>U&&(D<0&&R===n.contentWidth-n.containerWidth||D>0&&R===0))return!0;return!0}function h(D,F){l.scrollTop-=F,l.scrollLeft-=D,zl(n)}var c={},g=0,v={},k=null;function x(D){return D.targetTouches?D.targetTouches[0]:D}function I(D){return D.pointerType&&D.pointerType==="pen"&&D.buttons===0?!1:!!(D.targetTouches&&D.targetTouches.length===1||D.pointerType&&D.pointerType!=="mouse"&&D.pointerType!==D.MSPOINTER_TYPE_MOUSE)}function S(D){if(I(D)){var F=x(D);c.pageX=F.pageX,c.pageY=F.pageY,g=new Date().getTime(),k!==null&&clearInterval(k)}}function $(D,F,X){if(!l.contains(D))return!1;for(var R=D;R&&R!==l;){if(R.classList.contains(De.element.consuming))return!0;var H=ll(R);if(X&&H.overflowY.match(/(scroll|auto)/)){var U=R.scrollHeight-R.clientHeight;if(U>0&&(R.scrollTop>0&&X<0||R.scrollTop0))return!0}if(F&&H.overflowX.match(/(scroll|auto)/)){var W=R.scrollWidth-R.clientWidth;if(W>0&&(R.scrollLeft>0&&F<0||R.scrollLeft0))return!0}R=R.parentNode}return!1}function B(D){if(I(D)){var F=x(D),X={pageX:F.pageX,pageY:F.pageY},R=X.pageX-c.pageX,H=X.pageY-c.pageY;if($(D.target,R,H))return;h(R,H),c=X;var U=new Date().getTime(),W=U-g;W>0&&(v.x=R/W,v.y=H/W,g=U),r(R,H)&&D.preventDefault()}}function P(){n.settings.swipeEasing&&(clearInterval(k),k=setInterval(function(){if(n.isInitialized){clearInterval(k);return}if(!v.x&&!v.y){clearInterval(k);return}if(Math.abs(v.x)<.01&&Math.abs(v.y)<.01){clearInterval(k);return}if(!n.element){clearInterval(k);return}h(v.x*30,v.y*30),v.x*=.8,v.y*=.8},10))}Xr.supportsTouch?(n.event.bind(l,"touchstart",S),n.event.bind(l,"touchmove",B),n.event.bind(l,"touchend",P)):Xr.supportsIePointer&&(window.PointerEvent?(n.event.bind(l,"pointerdown",S),n.event.bind(l,"pointermove",B),n.event.bind(l,"pointerup",P)):window.MSPointerEvent&&(n.event.bind(l,"MSPointerDown",S),n.event.bind(l,"MSPointerMove",B),n.event.bind(l,"MSPointerUp",P)))}var Rx=function(){return{handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1}},Tx={"click-rail":Px,"drag-thumb":Lx,keyboard:Dx,wheel:Ox,touch:Fx},js=function(l,r){var h=this;if(r===void 0&&(r={}),typeof l=="string"&&(l=document.querySelector(l)),!l||!l.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");this.element=l,l.classList.add(De.main),this.settings=Rx();for(var c in r)this.settings[c]=r[c];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var g=function(){return l.classList.add(De.state.focus)},v=function(){return l.classList.remove(De.state.focus)};this.isRtl=ll(l).direction==="rtl",this.isRtl===!0&&l.classList.add(De.rtl),this.isNegativeScroll=function(){var I=l.scrollLeft,S=null;return l.scrollLeft=-1,S=l.scrollLeft<0,l.scrollLeft=I,S}(),this.negativeScrollAdjustment=this.isNegativeScroll?l.scrollWidth-l.clientWidth:0,this.event=new Io,this.ownerDocument=l.ownerDocument||document,this.scrollbarXRail=Qs(De.element.rail("x")),l.appendChild(this.scrollbarXRail),this.scrollbarX=Qs(De.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",g),this.event.bind(this.scrollbarX,"blur",v),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var k=ll(this.scrollbarXRail);this.scrollbarXBottom=parseInt(k.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=He(k.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=He(k.borderLeftWidth)+He(k.borderRightWidth),vn(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=He(k.marginLeft)+He(k.marginRight),vn(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=Qs(De.element.rail("y")),l.appendChild(this.scrollbarYRail),this.scrollbarY=Qs(De.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",g),this.event.bind(this.scrollbarY,"blur",v),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var x=ll(this.scrollbarYRail);this.scrollbarYRight=parseInt(x.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=He(x.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?Nx(this.scrollbarY):null,this.railBorderYWidth=He(x.borderTopWidth)+He(x.borderBottomWidth),vn(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=He(x.marginTop)+He(x.marginBottom),vn(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:l.scrollLeft<=0?"start":l.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:l.scrollTop<=0?"start":l.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(I){return Tx[I](h)}),this.lastScrollTop=Math.floor(l.scrollTop),this.lastScrollLeft=l.scrollLeft,this.event.bind(this.element,"scroll",function(I){return h.onScroll(I)}),zl(this)};js.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,vn(this.scrollbarXRail,{display:"block"}),vn(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=He(ll(this.scrollbarXRail).marginLeft)+He(ll(this.scrollbarXRail).marginRight),this.railYMarginHeight=He(ll(this.scrollbarYRail).marginTop)+He(ll(this.scrollbarYRail).marginBottom),vn(this.scrollbarXRail,{display:"none"}),vn(this.scrollbarYRail,{display:"none"}),zl(this),ya(this,"top",0,!1,!0),ya(this,"left",0,!1,!0),vn(this.scrollbarXRail,{display:""}),vn(this.scrollbarYRail,{display:""}))};js.prototype.onScroll=function(l){this.isAlive&&(zl(this),ya(this,"top",this.element.scrollTop-this.lastScrollTop),ya(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)};js.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),Yr(this.scrollbarX),Yr(this.scrollbarY),Yr(this.scrollbarXRail),Yr(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)};js.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(l){return!l.match(/^ps([-_].+|)$/)}).join(" ")};const nc=["scroll","ps-scroll-y","ps-scroll-x","ps-scroll-up","ps-scroll-down","ps-scroll-left","ps-scroll-right","ps-y-reach-start","ps-y-reach-end","ps-x-reach-start","ps-x-reach-end"];var Vr={name:"PerfectScrollbar",props:{options:{type:Object,required:!1,default:()=>{}},tag:{type:String,required:!1,default:"div"},watchOptions:{type:Boolean,required:!1,default:!1}},emits:nc,data(){return{ps:null}},watch:{watchOptions(n){!n&&this.watcher?this.watcher():this.createWatcher()}},mounted(){this.create(),this.watchOptions&&this.createWatcher()},updated(){this.$nextTick(()=>{this.update()})},beforeUnmount(){this.destroy()},methods:{create(){this.ps&&this.$isServer||(this.ps=new js(this.$el,this.options),nc.forEach(n=>{this.ps.element.addEventListener(n,l=>this.$emit(n,l))}))},createWatcher(){this.watcher=this.$watch("options",()=>{this.destroy(),this.create()},{deep:!0})},update(){this.ps&&this.ps.update()},destroy(){this.ps&&(this.ps.destroy(),this.ps=null)}},render(){return Ln(this.tag,{class:"ps"},this.$slots.default&&this.$slots.default())}},Ex={install:(n,l)=>{l&&(l.name&&typeof l.name=="string"&&(Vr.name=l.name),l.options&&typeof l.options=="object"&&(Vr.props.options.default=()=>l.options),l.tag&&typeof l.tag=="string"&&(Vr.props.tag.default=l.tag),l.watchOptions&&typeof l.watchOptions=="boolean"&&(Vr.props.watchOptions=l.watchOptions)),n.component(Vr.name,Vr)}},eOt=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Vx(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}function _x(n){if(n.__esModule)return n;var l=n.default;if(typeof l=="function"){var r=function h(){return this instanceof h?Reflect.construct(l,arguments,this.constructor):l.apply(this,arguments)};r.prototype=l.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(n).forEach(function(h){var c=Object.getOwnPropertyDescriptor(n,h);Object.defineProperty(r,h,c.get?c:{enumerable:!0,get:function(){return n[h]}})}),r}var Xg={exports:{}};const Wx=_x(Xf);var ta={exports:{}};/*! * ApexCharts v3.42.0 * (c) 2018-2023 ApexCharts * Released under the MIT License. - */var dd;function vb(){return dd||(dd=1,function(n,l){function r(T,s){var a=Object.keys(T);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(T);s&&(i=i.filter(function(d){return Object.getOwnPropertyDescriptor(T,d).enumerable})),a.push.apply(a,i)}return a}function h(T){for(var s=1;s"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var a,i=S(T);if(s){var d=S(this).constructor;a=Reflect.construct(i,arguments,d)}else a=i.apply(this,arguments);return B(this,a)}}function D(T,s){return function(a){if(Array.isArray(a))return a}(T)||function(a,i){var d=a==null?null:typeof Symbol<"u"&&a[Symbol.iterator]||a["@@iterator"];if(d!=null){var c,p,w=[],f=!0,k=!1;try{for(d=d.call(a);!(f=(c=d.next()).done)&&(w.push(c.value),!i||w.length!==i);f=!0);}catch(M){k=!0,p=M}finally{try{f||d.return==null||d.return()}finally{if(k)throw p}}return w}}(T,s)||Y(T,s)||function(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function E(T){return function(s){if(Array.isArray(s))return O(s)}(T)||function(s){if(typeof Symbol<"u"&&s[Symbol.iterator]!=null||s["@@iterator"]!=null)return Array.from(s)}(T)||Y(T)||function(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function Y(T,s){if(T){if(typeof T=="string")return O(T,s);var a=Object.prototype.toString.call(T).slice(8,-1);return a==="Object"&&T.constructor&&(a=T.constructor.name),a==="Map"||a==="Set"?Array.from(T):a==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?O(T,s):void 0}}function O(T,s){(s==null||s>T.length)&&(s=T.length);for(var a=0,i=new Array(s);a>16,w=i>>8&255,f=255&i;return"#"+(16777216+65536*(Math.round((d-p)*c)+p)+256*(Math.round((d-w)*c)+w)+(Math.round((d-f)*c)+f)).toString(16).slice(1)}},{key:"shadeColor",value:function(s,a){return T.isColorHex(a)?this.shadeHexColor(s,a):this.shadeRGBColor(s,a)}}],[{key:"bind",value:function(s,a){return function(){return s.apply(a,arguments)}}},{key:"isObject",value:function(s){return s&&u(s)==="object"&&!Array.isArray(s)&&s!=null}},{key:"is",value:function(s,a){return Object.prototype.toString.call(a)==="[object "+s+"]"}},{key:"listToArray",value:function(s){var a,i=[];for(a=0;a1&&arguments[1]!==void 0?arguments[1]:2;return parseFloat(s.toPrecision(a))}},{key:"randomId",value:function(){return(Math.random()+1).toString(36).substring(4)}},{key:"noExponents",value:function(s){var a=String(s).split(/[eE]/);if(a.length===1)return a[0];var i="",d=s<0?"-":"",c=a[0].replace(".",""),p=Number(a[1])+1;if(p<0){for(i=d+"0.";p++;)i+="0";return i+c.replace(/^-/,"")}for(p-=c.length;p--;)i+="0";return c+i}},{key:"getDimensions",value:function(s){var a=getComputedStyle(s,null),i=s.clientHeight,d=s.clientWidth;return i-=parseFloat(a.paddingTop)+parseFloat(a.paddingBottom),[d-=parseFloat(a.paddingLeft)+parseFloat(a.paddingRight),i]}},{key:"getBoundingClientRect",value:function(s){var a=s.getBoundingClientRect();return{top:a.top,right:a.right,bottom:a.bottom,left:a.left,width:s.clientWidth,height:s.clientHeight,x:a.left,y:a.top}}},{key:"getLargestStringFromArr",value:function(s){return s.reduce(function(a,i){return Array.isArray(i)&&(i=i.reduce(function(d,c){return d.length>c.length?d:c})),a.length>i.length?a:i},0)}},{key:"hexToRgba",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"#999999",a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.6;s.substring(0,1)!=="#"&&(s="#999999");var i=s.replace("#","");i=i.match(new RegExp("(.{"+i.length/3+"})","g"));for(var d=0;d1&&arguments[1]!==void 0?arguments[1]:"x",i=s.toString().slice();return i=i.replace(/[` ~!@#$%^&*()|+\=?;:'",.<>{}[\]\\/]/gi,a)}},{key:"negToZero",value:function(s){return s<0?0:s}},{key:"moveIndexInArray",value:function(s,a,i){if(i>=s.length)for(var d=i-s.length+1;d--;)s.push(void 0);return s.splice(i,0,s.splice(a,1)[0]),s}},{key:"extractNumber",value:function(s){return parseFloat(s.replace(/[^\d.]*/g,""))}},{key:"findAncestor",value:function(s,a){for(;(s=s.parentElement)&&!s.classList.contains(a););return s}},{key:"setELstyles",value:function(s,a){for(var i in a)a.hasOwnProperty(i)&&(s.style.key=a[i])}},{key:"isNumber",value:function(s){return!isNaN(s)&&parseFloat(Number(s))===s&&!isNaN(parseInt(s,10))}},{key:"isFloat",value:function(s){return Number(s)===s&&s%1!=0}},{key:"isSafari",value:function(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}},{key:"isFirefox",value:function(){return navigator.userAgent.toLowerCase().indexOf("firefox")>-1}},{key:"isIE11",value:function(){if(window.navigator.userAgent.indexOf("MSIE")!==-1||window.navigator.appVersion.indexOf("Trident/")>-1)return!0}},{key:"isIE",value:function(){var s=window.navigator.userAgent,a=s.indexOf("MSIE ");if(a>0)return parseInt(s.substring(a+5,s.indexOf(".",a)),10);if(s.indexOf("Trident/")>0){var i=s.indexOf("rv:");return parseInt(s.substring(i+3,s.indexOf(".",i)),10)}var d=s.indexOf("Edge/");return d>0&&parseInt(s.substring(d+5,s.indexOf(".",d)),10)}}]),T}(),U=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.setEasingFunctions()}return b(T,[{key:"setEasingFunctions",value:function(){var s;if(!this.w.globals.easing){switch(this.w.config.chart.animations.easing){case"linear":s="-";break;case"easein":s="<";break;case"easeout":s=">";break;case"easeinout":default:s="<>";break;case"swing":s=function(a){var i=1.70158;return(a-=1)*a*((i+1)*a+i)+1};break;case"bounce":s=function(a){return a<1/2.75?7.5625*a*a:a<2/2.75?7.5625*(a-=1.5/2.75)*a+.75:a<2.5/2.75?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375};break;case"elastic":s=function(a){return a===!!a?a:Math.pow(2,-10*a)*Math.sin((a-.075)*(2*Math.PI)/.3)+1}}this.w.globals.easing=s}}},{key:"animateLine",value:function(s,a,i,d){s.attr(a).animate(d).attr(i)}},{key:"animateMarker",value:function(s,a,i,d,c,p){a||(a=0),s.attr({r:a,width:a,height:a}).animate(d,c).attr({r:i,width:i.width,height:i.height}).afterAll(function(){p()})}},{key:"animateCircle",value:function(s,a,i,d,c){s.attr({r:a.r,cx:a.cx,cy:a.cy}).animate(d,c).attr({r:i.r,cx:i.cx,cy:i.cy})}},{key:"animateRect",value:function(s,a,i,d,c){s.attr(a).animate(d).attr(i).afterAll(function(){return c()})}},{key:"animatePathsGradually",value:function(s){var a=s.el,i=s.realIndex,d=s.j,c=s.fill,p=s.pathFrom,w=s.pathTo,f=s.speed,k=s.delay,M=this.w,x=0;M.config.chart.animations.animateGradually.enabled&&(x=M.config.chart.animations.animateGradually.delay),M.config.chart.animations.dynamicAnimation.enabled&&M.globals.dataChanged&&M.config.chart.type!=="bar"&&(x=0),this.morphSVG(a,i,d,M.config.chart.type!=="line"||M.globals.comboCharts?c:"stroke",p,w,f,k*x)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach(function(s){var a=s.el;a.classList.remove("apexcharts-element-hidden"),a.classList.add("apexcharts-hidden-element-shown")})}},{key:"animationCompleted",value:function(s){var a=this.w;a.globals.animationEnded||(a.globals.animationEnded=!0,this.showDelayedElements(),typeof a.config.chart.events.animationEnd=="function"&&a.config.chart.events.animationEnd(this.ctx,{el:s,w:a}))}},{key:"morphSVG",value:function(s,a,i,d,c,p,w,f){var k=this,M=this.w;c||(c=s.attr("pathFrom")),p||(p=s.attr("pathTo"));var x=function(I){return M.config.chart.type==="radar"&&(w=1),"M 0 ".concat(M.globals.gridHeight)};(!c||c.indexOf("undefined")>-1||c.indexOf("NaN")>-1)&&(c=x()),(!p||p.indexOf("undefined")>-1||p.indexOf("NaN")>-1)&&(p=x()),M.globals.shouldAnimate||(w=1),s.plot(c).animate(1,M.globals.easing,f).plot(c).animate(w,M.globals.easing,f).plot(p).afterAll(function(){H.isNumber(i)?i===M.globals.series[M.globals.maxValsInArrayIndex].length-2&&M.globals.shouldAnimate&&k.animationCompleted(s):d!=="none"&&M.globals.shouldAnimate&&(!M.globals.comboCharts&&a===M.globals.series.length-1||M.globals.comboCharts)&&k.animationCompleted(s),k.showDelayedElements()})}}]),T}(),W=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"getDefaultFilter",value:function(s,a){var i=this.w;s.unfilter(!0),new window.SVG.Filter().size("120%","180%","-5%","-40%"),i.config.states.normal.filter!=="none"?this.applyFilter(s,a,i.config.states.normal.filter.type,i.config.states.normal.filter.value):i.config.chart.dropShadow.enabled&&this.dropShadow(s,i.config.chart.dropShadow,a)}},{key:"addNormalFilter",value:function(s,a){var i=this.w;i.config.chart.dropShadow.enabled&&!s.node.classList.contains("apexcharts-marker")&&this.dropShadow(s,i.config.chart.dropShadow,a)}},{key:"addLightenFilter",value:function(s,a,i){var d=this,c=this.w,p=i.intensity;s.unfilter(!0),new window.SVG.Filter,s.filter(function(w){var f=c.config.chart.dropShadow;(f.enabled?d.addShadow(w,a,f):w).componentTransfer({rgb:{type:"linear",slope:1.5,intercept:p}})}),s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)}},{key:"addDarkenFilter",value:function(s,a,i){var d=this,c=this.w,p=i.intensity;s.unfilter(!0),new window.SVG.Filter,s.filter(function(w){var f=c.config.chart.dropShadow;(f.enabled?d.addShadow(w,a,f):w).componentTransfer({rgb:{type:"linear",slope:p}})}),s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)}},{key:"applyFilter",value:function(s,a,i){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:.5;switch(i){case"none":this.addNormalFilter(s,a);break;case"lighten":this.addLightenFilter(s,a,{intensity:d});break;case"darken":this.addDarkenFilter(s,a,{intensity:d})}}},{key:"addShadow",value:function(s,a,i){var d=i.blur,c=i.top,p=i.left,w=i.color,f=i.opacity,k=s.flood(Array.isArray(w)?w[a]:w,f).composite(s.sourceAlpha,"in").offset(p,c).gaussianBlur(d).merge(s.source);return s.blend(s.source,k)}},{key:"dropShadow",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,d=a.top,c=a.left,p=a.blur,w=a.color,f=a.opacity,k=a.noUserSpaceOnUse,M=this.w;return s.unfilter(!0),H.isIE()&&M.config.chart.type==="radialBar"||(w=Array.isArray(w)?w[i]:w,s.filter(function(x){var I=null;I=H.isSafari()||H.isFirefox()||H.isIE()?x.flood(w,f).composite(x.sourceAlpha,"in").offset(c,d).gaussianBlur(p):x.flood(w,f).composite(x.sourceAlpha,"in").offset(c,d).gaussianBlur(p).merge(x.source),x.blend(x.source,I)}),k||s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)),s}},{key:"setSelectionFilter",value:function(s,a,i){var d=this.w;if(d.globals.selectedDataPoints[a]!==void 0&&d.globals.selectedDataPoints[a].indexOf(i)>-1){s.node.setAttribute("selected",!0);var c=d.config.states.active.filter;c!=="none"&&this.applyFilter(s,a,c.type,c.value)}}},{key:"_scaleFilterSize",value:function(s){(function(a){for(var i in a)a.hasOwnProperty(i)&&s.setAttribute(i,a[i])})({width:"200%",height:"200%",x:"-50%",y:"-50%"})}}]),T}(),_=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"roundPathCorners",value:function(s,a){function i(Q,ot,it){var vt=ot.x-Q.x,zt=ot.y-Q.y,Mt=Math.sqrt(vt*vt+zt*zt);return d(Q,ot,Math.min(1,it/Mt))}function d(Q,ot,it){return{x:Q.x+(ot.x-Q.x)*it,y:Q.y+(ot.y-Q.y)*it}}function c(Q,ot){Q.length>2&&(Q[Q.length-2]=ot.x,Q[Q.length-1]=ot.y)}function p(Q){return{x:parseFloat(Q[Q.length-2]),y:parseFloat(Q[Q.length-1])}}s.indexOf("NaN")>-1&&(s="");var w=s.split(/[,\s]/).reduce(function(Q,ot){var it=ot.match("([a-zA-Z])(.+)");return it?(Q.push(it[1]),Q.push(it[2])):Q.push(ot),Q},[]).reduce(function(Q,ot){return parseFloat(ot)==ot&&Q.length?Q[Q.length-1].push(ot):Q.push([ot]),Q},[]),f=[];if(w.length>1){var k=p(w[0]),M=null;w[w.length-1][0]=="Z"&&w[0].length>2&&(M=["L",k.x,k.y],w[w.length-1]=M),f.push(w[0]);for(var x=1;x2&&$[0]=="L"&&N.length>2&&N[0]=="L"){var L,F,V=p(I),Z=p($),m=p(N);L=i(Z,V,a),F=i(Z,m,a),c($,L),$.origPoint=Z,f.push($);var y=d(L,Z,.5),j=d(Z,F,.5),R=["C",y.x,y.y,j.x,j.y,F.x,F.y];R.origPoint=Z,f.push(R)}else f.push($)}if(M){var K=p(f[f.length-1]);f.push(["Z"]),c(f[0],K)}}else f=w;return f.reduce(function(Q,ot){return Q+ot.join(" ")+" "},"")}},{key:"drawLine",value:function(s,a,i,d){var c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:"#a8a8a8",p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:0,w=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,f=arguments.length>7&&arguments[7]!==void 0?arguments[7]:"butt";return this.w.globals.dom.Paper.line().attr({x1:s,y1:a,x2:i,y2:d,stroke:c,"stroke-dasharray":p,"stroke-width":w,"stroke-linecap":f})}},{key:"drawRect",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0,p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"#fefefe",w=arguments.length>6&&arguments[6]!==void 0?arguments[6]:1,f=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,k=arguments.length>8&&arguments[8]!==void 0?arguments[8]:null,M=arguments.length>9&&arguments[9]!==void 0?arguments[9]:0,x=this.w.globals.dom.Paper.rect();return x.attr({x:s,y:a,width:i>0?i:0,height:d>0?d:0,rx:c,ry:c,opacity:w,"stroke-width":f!==null?f:0,stroke:k!==null?k:"none","stroke-dasharray":M}),x.node.setAttribute("fill",p),x}},{key:"drawPolygon",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"#e1e1e1",i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"none";return this.w.globals.dom.Paper.polygon(s).attr({fill:d,stroke:a,"stroke-width":i})}},{key:"drawCircle",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;s<0&&(s=0);var i=this.w.globals.dom.Paper.circle(2*s);return a!==null&&i.attr(a),i}},{key:"drawPath",value:function(s){var a=s.d,i=a===void 0?"":a,d=s.stroke,c=d===void 0?"#a8a8a8":d,p=s.strokeWidth,w=p===void 0?1:p,f=s.fill,k=s.fillOpacity,M=k===void 0?1:k,x=s.strokeOpacity,I=x===void 0?1:x,$=s.classes,N=s.strokeLinecap,L=N===void 0?null:N,F=s.strokeDashArray,V=F===void 0?0:F,Z=this.w;return L===null&&(L=Z.config.stroke.lineCap),(i.indexOf("undefined")>-1||i.indexOf("NaN")>-1)&&(i="M 0 ".concat(Z.globals.gridHeight)),Z.globals.dom.Paper.path(i).attr({fill:f,"fill-opacity":M,stroke:c,"stroke-opacity":I,"stroke-linecap":L,"stroke-width":w,"stroke-dasharray":V,class:$})}},{key:"group",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=this.w.globals.dom.Paper.group();return s!==null&&a.attr(s),a}},{key:"move",value:function(s,a){var i=["M",s,a].join(" ");return i}},{key:"line",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,d=null;return i===null?d=[" L",s,a].join(" "):i==="H"?d=[" H",s].join(" "):i==="V"&&(d=[" V",a].join(" ")),d}},{key:"curve",value:function(s,a,i,d,c,p){var w=["C",s,a,i,d,c,p].join(" ");return w}},{key:"quadraticCurve",value:function(s,a,i,d){return["Q",s,a,i,d].join(" ")}},{key:"arc",value:function(s,a,i,d,c,p,w){var f="A";arguments.length>7&&arguments[7]!==void 0&&arguments[7]&&(f="a");var k=[f,s,a,i,d,c,p,w].join(" ");return k}},{key:"renderPaths",value:function(s){var a,i=s.j,d=s.realIndex,c=s.pathFrom,p=s.pathTo,w=s.stroke,f=s.strokeWidth,k=s.strokeLinecap,M=s.fill,x=s.animationDelay,I=s.initialSpeed,$=s.dataChangeSpeed,N=s.className,L=s.shouldClipToGrid,F=L===void 0||L,V=s.bindEventsOnPaths,Z=V===void 0||V,m=s.drawShadow,y=m===void 0||m,j=this.w,R=new W(this.ctx),K=new U(this.ctx),Q=this.w.config.chart.animations.enabled,ot=Q&&this.w.config.chart.animations.dynamicAnimation.enabled,it=!!(Q&&!j.globals.resized||ot&&j.globals.dataChanged&&j.globals.shouldAnimate);it?a=c:(a=p,j.globals.animationEnded=!0);var vt=j.config.stroke.dashArray,zt=0;zt=Array.isArray(vt)?vt[d]:j.config.stroke.dashArray;var Mt=this.drawPath({d:a,stroke:w,strokeWidth:f,fill:M,fillOpacity:1,classes:N,strokeLinecap:k,strokeDashArray:zt});if(Mt.attr("index",d),F&&Mt.attr({"clip-path":"url(#gridRectMask".concat(j.globals.cuid,")")}),j.config.states.normal.filter.type!=="none")R.getDefaultFilter(Mt,d);else if(j.config.chart.dropShadow.enabled&&y&&(!j.config.chart.dropShadow.enabledOnSeries||j.config.chart.dropShadow.enabledOnSeries&&j.config.chart.dropShadow.enabledOnSeries.indexOf(d)!==-1)){var Et=j.config.chart.dropShadow;R.dropShadow(Mt,Et,d)}Z&&(Mt.node.addEventListener("mouseenter",this.pathMouseEnter.bind(this,Mt)),Mt.node.addEventListener("mouseleave",this.pathMouseLeave.bind(this,Mt)),Mt.node.addEventListener("mousedown",this.pathMouseDown.bind(this,Mt))),Mt.attr({pathTo:p,pathFrom:c});var qt={el:Mt,j:i,realIndex:d,pathFrom:c,pathTo:p,fill:M,strokeWidth:f,delay:x};return!Q||j.globals.resized||j.globals.dataChanged?!j.globals.resized&&j.globals.dataChanged||K.showDelayedElements():K.animatePathsGradually(h(h({},qt),{},{speed:I})),j.globals.dataChanged&&ot&&it&&K.animatePathsGradually(h(h({},qt),{},{speed:$})),Mt}},{key:"drawPattern",value:function(s,a,i){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"#a8a8a8",c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0;return this.w.globals.dom.Paper.pattern(a,i,function(p){s==="horizontalLines"?p.line(0,0,i,0).stroke({color:d,width:c+1}):s==="verticalLines"?p.line(0,0,0,a).stroke({color:d,width:c+1}):s==="slantedLines"?p.line(0,0,a,i).stroke({color:d,width:c}):s==="squares"?p.rect(a,i).fill("none").stroke({color:d,width:c}):s==="circles"&&p.circle(a).fill("none").stroke({color:d,width:c})})}},{key:"drawGradient",value:function(s,a,i,d,c){var p,w=arguments.length>5&&arguments[5]!==void 0?arguments[5]:null,f=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,k=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,M=arguments.length>8&&arguments[8]!==void 0?arguments[8]:0,x=this.w;a.length<9&&a.indexOf("#")===0&&(a=H.hexToRgba(a,d)),i.length<9&&i.indexOf("#")===0&&(i=H.hexToRgba(i,c));var I=0,$=1,N=1,L=null;f!==null&&(I=f[0]!==void 0?f[0]/100:0,$=f[1]!==void 0?f[1]/100:1,N=f[2]!==void 0?f[2]/100:1,L=f[3]!==void 0?f[3]/100:null);var F=!(x.config.chart.type!=="donut"&&x.config.chart.type!=="pie"&&x.config.chart.type!=="polarArea"&&x.config.chart.type!=="bubble");if(p=k===null||k.length===0?x.globals.dom.Paper.gradient(F?"radial":"linear",function(m){m.at(I,a,d),m.at($,i,c),m.at(N,i,c),L!==null&&m.at(L,a,d)}):x.globals.dom.Paper.gradient(F?"radial":"linear",function(m){(Array.isArray(k[M])?k[M]:k).forEach(function(y){m.at(y.offset/100,y.color,y.opacity)})}),F){var V=x.globals.gridWidth/2,Z=x.globals.gridHeight/2;x.config.chart.type!=="bubble"?p.attr({gradientUnits:"userSpaceOnUse",cx:V,cy:Z,r:w}):p.attr({cx:.5,cy:.5,r:.8,fx:.2,fy:.2})}else s==="vertical"?p.from(0,0).to(0,1):s==="diagonal"?p.from(0,0).to(1,1):s==="horizontal"?p.from(0,1).to(1,1):s==="diagonal2"&&p.from(1,0).to(0,1);return p}},{key:"getTextBasedOnMaxWidth",value:function(s){var a=s.text,i=s.maxWidth,d=s.fontSize,c=s.fontFamily,p=this.getTextRects(a,d,c),w=p.width/a.length,f=Math.floor(i/w);return i-1){var f=i.globals.selectedDataPoints[c].indexOf(p);i.globals.selectedDataPoints[c].splice(f,1)}}else{if(!i.config.states.active.allowMultipleDataPointsSelection&&i.globals.selectedDataPoints.length>0){i.globals.selectedDataPoints=[];var k=i.globals.dom.Paper.select(".apexcharts-series path").members,M=i.globals.dom.Paper.select(".apexcharts-series circle, .apexcharts-series rect").members,x=function(N){Array.prototype.forEach.call(N,function(L){L.node.setAttribute("selected","false"),d.getDefaultFilter(L,c)})};x(k),x(M)}s.node.setAttribute("selected","true"),w="true",i.globals.selectedDataPoints[c]===void 0&&(i.globals.selectedDataPoints[c]=[]),i.globals.selectedDataPoints[c].push(p)}if(w==="true"){var I=i.config.states.active.filter;if(I!=="none")d.applyFilter(s,c,I.type,I.value);else if(i.config.states.hover.filter!=="none"&&!i.globals.isTouchDevice){var $=i.config.states.hover.filter;d.applyFilter(s,c,$.type,$.value)}}else i.config.states.active.filter.type!=="none"&&(i.config.states.hover.filter.type==="none"||i.globals.isTouchDevice?d.getDefaultFilter(s,c):($=i.config.states.hover.filter,d.applyFilter(s,c,$.type,$.value)));typeof i.config.chart.events.dataPointSelection=="function"&&i.config.chart.events.dataPointSelection(a,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:c,dataPointIndex:p,w:i}),a&&this.ctx.events.fireEvent("dataPointSelection",[a,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:c,dataPointIndex:p,w:i}])}},{key:"rotateAroundCenter",value:function(s){var a={};return s&&typeof s.getBBox=="function"&&(a=s.getBBox()),{x:a.x+a.width/2,y:a.y+a.height/2}}},{key:"getTextRects",value:function(s,a,i,d){var c=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],p=this.w,w=this.drawText({x:-200,y:-200,text:s,textAnchor:"start",fontSize:a,fontFamily:i,foreColor:"#fff",opacity:0});d&&w.attr("transform",d),p.globals.dom.Paper.add(w);var f=w.bbox();return c||(f=w.node.getBoundingClientRect()),w.remove(),{width:f.width,height:f.height}}},{key:"placeTextWithEllipsis",value:function(s,a,i){if(typeof s.getComputedTextLength=="function"&&(s.textContent=a,a.length>0&&s.getComputedTextLength()>=i/1.1)){for(var d=a.length-3;d>0;d-=3)if(s.getSubStringLength(0,d)<=i/1.1)return void(s.textContent=a.substring(0,d)+"...");s.textContent="."}}}],[{key:"setAttrs",value:function(s,a){for(var i in a)a.hasOwnProperty(i)&&s.setAttribute(i,a[i])}}]),T}(),tt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"getStackedSeriesTotals",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=this.w,i=[];if(a.globals.series.length===0)return i;for(var d=0;d0&&arguments[0]!==void 0?arguments[0]:null;return s===null?this.w.config.series.reduce(function(a,i){return a+i},0):this.w.globals.series[s].reduce(function(a,i){return a+i},0)}},{key:"isSeriesNull",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null;return(s===null?this.w.config.series.filter(function(a){return a!==null}):this.w.config.series[s].data.filter(function(a){return a!==null})).length===0}},{key:"seriesHaveSameValues",value:function(s){return this.w.globals.series[s].every(function(a,i,d){return a===d[0]})}},{key:"getCategoryLabels",value:function(s){var a=this.w,i=s.slice();return a.config.xaxis.convertedCatToNumeric&&(i=s.map(function(d,c){return a.config.xaxis.labels.formatter(d-a.globals.minX+1)})),i}},{key:"getLargestSeries",value:function(){var s=this.w;s.globals.maxValsInArrayIndex=s.globals.series.map(function(a){return a.length}).indexOf(Math.max.apply(Math,s.globals.series.map(function(a){return a.length})))}},{key:"getLargestMarkerSize",value:function(){var s=this.w,a=0;return s.globals.markers.size.forEach(function(i){a=Math.max(a,i)}),s.config.markers.discrete&&s.config.markers.discrete.length&&s.config.markers.discrete.forEach(function(i){a=Math.max(a,i.size)}),a>0&&(a+=s.config.markers.hover.sizeOffset+1),s.globals.markers.largestSize=a,a}},{key:"getSeriesTotals",value:function(){var s=this.w;s.globals.seriesTotals=s.globals.series.map(function(a,i){var d=0;if(Array.isArray(a))for(var c=0;cs&&i.globals.seriesX[c][w]0&&(a=!0),{comboBarCount:i,comboCharts:a}}},{key:"extendArrayProps",value:function(s,a,i){return a.yaxis&&(a=s.extendYAxis(a,i)),a.annotations&&(a.annotations.yaxis&&(a=s.extendYAxisAnnotations(a)),a.annotations.xaxis&&(a=s.extendXAxisAnnotations(a)),a.annotations.points&&(a=s.extendPointAnnotations(a))),a}}]),T}(),nt=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s}return b(T,[{key:"setOrientations",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,i=this.w;if(s.label.orientation==="vertical"){var d=a!==null?a:0,c=i.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(d,"']"));if(c!==null){var p=c.getBoundingClientRect();c.setAttribute("x",parseFloat(c.getAttribute("x"))-p.height+4),s.label.position==="top"?c.setAttribute("y",parseFloat(c.getAttribute("y"))+p.width):c.setAttribute("y",parseFloat(c.getAttribute("y"))-p.width);var w=this.annoCtx.graphics.rotateAroundCenter(c),f=w.x,k=w.y;c.setAttribute("transform","rotate(-90 ".concat(f," ").concat(k,")"))}}}},{key:"addBackgroundToAnno",value:function(s,a){var i=this.w;if(!s||a.label.text===void 0||a.label.text!==void 0&&!String(a.label.text).trim())return null;var d=i.globals.dom.baseEl.querySelector(".apexcharts-grid").getBoundingClientRect(),c=s.getBoundingClientRect(),p=a.label.style.padding.left,w=a.label.style.padding.right,f=a.label.style.padding.top,k=a.label.style.padding.bottom;a.label.orientation==="vertical"&&(f=a.label.style.padding.left,k=a.label.style.padding.right,p=a.label.style.padding.top,w=a.label.style.padding.bottom);var M=c.left-d.left-p,x=c.top-d.top-f,I=this.annoCtx.graphics.drawRect(M-i.globals.barPadForNumericAxis,x,c.width+p+w,c.height+f+k,a.label.borderRadius,a.label.style.background,1,a.label.borderWidth,a.label.borderColor,0);return a.id&&I.node.classList.add(a.id),I}},{key:"annotationsBackground",value:function(){var s=this,a=this.w,i=function(d,c,p){var w=a.globals.dom.baseEl.querySelector(".apexcharts-".concat(p,"-annotations .apexcharts-").concat(p,"-annotation-label[rel='").concat(c,"']"));if(w){var f=w.parentNode,k=s.addBackgroundToAnno(w,d);k&&(f.insertBefore(k.node,w),d.label.mouseEnter&&k.node.addEventListener("mouseenter",d.label.mouseEnter.bind(s,d)),d.label.mouseLeave&&k.node.addEventListener("mouseleave",d.label.mouseLeave.bind(s,d)),d.label.click&&k.node.addEventListener("click",d.label.click.bind(s,d)))}};a.config.annotations.xaxis.map(function(d,c){i(d,c,"xaxis")}),a.config.annotations.yaxis.map(function(d,c){i(d,c,"yaxis")}),a.config.annotations.points.map(function(d,c){i(d,c,"point")})}},{key:"getY1Y2",value:function(s,a){var i,d=s==="y1"?a.y:a.y2,c=this.w;if(this.annoCtx.invertAxis){var p=c.globals.labels.indexOf(d);c.config.xaxis.convertedCatToNumeric&&(p=c.globals.categoryLabels.indexOf(d));var w=c.globals.dom.baseEl.querySelector(".apexcharts-yaxis-texts-g text:nth-child("+(p+1)+")");w&&(i=parseFloat(w.getAttribute("y")))}else{var f;c.config.yaxis[a.yAxisIndex].logarithmic?f=(d=new tt(this.annoCtx.ctx).getLogVal(d,a.yAxisIndex))/c.globals.yLogRatio[a.yAxisIndex]:f=(d-c.globals.minYArr[a.yAxisIndex])/(c.globals.yRange[a.yAxisIndex]/c.globals.gridHeight),i=c.globals.gridHeight-f,!a.marker||a.y!==void 0&&a.y!==null||(i=0),c.config.yaxis[a.yAxisIndex]&&c.config.yaxis[a.yAxisIndex].reversed&&(i=f)}return typeof d=="string"&&d.indexOf("px")>-1&&(i=parseFloat(d)),i}},{key:"getX1X2",value:function(s,a){var i=this.w,d=this.annoCtx.invertAxis?i.globals.minY:i.globals.minX,c=this.annoCtx.invertAxis?i.globals.maxY:i.globals.maxX,p=this.annoCtx.invertAxis?i.globals.yRange[0]:i.globals.xRange,w=(a.x-d)/(p/i.globals.gridWidth);this.annoCtx.inversedReversedAxis&&(w=(c-a.x)/(p/i.globals.gridWidth)),i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||i.globals.dataFormatXNumeric||(w=this.getStringX(a.x));var f=(a.x2-d)/(p/i.globals.gridWidth);return this.annoCtx.inversedReversedAxis&&(f=(c-a.x2)/(p/i.globals.gridWidth)),i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||i.globals.dataFormatXNumeric||(f=this.getStringX(a.x2)),a.x!==void 0&&a.x!==null||!a.marker||(w=i.globals.gridWidth),s==="x1"&&typeof a.x=="string"&&a.x.indexOf("px")>-1&&(w=parseFloat(a.x)),s==="x2"&&typeof a.x2=="string"&&a.x2.indexOf("px")>-1&&(f=parseFloat(a.x2)),s==="x1"?w:f}},{key:"getStringX",value:function(s){var a=this.w,i=s;a.config.xaxis.convertedCatToNumeric&&a.globals.categoryLabels.length&&(s=a.globals.categoryLabels.indexOf(s)+1);var d=a.globals.labels.indexOf(s),c=a.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(d+1)+")");return c&&(i=parseFloat(c.getAttribute("x"))),i}}]),T}(),q=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s,this.invertAxis=this.annoCtx.invertAxis,this.helpers=new nt(this.annoCtx)}return b(T,[{key:"addXaxisAnnotation",value:function(s,a,i){var d,c=this.w,p=this.helpers.getX1X2("x1",s),w=s.label.text,f=s.strokeDashArray;if(H.isNumber(p)){if(s.x2===null||s.x2===void 0){var k=this.annoCtx.graphics.drawLine(p+s.offsetX,0+s.offsetY,p+s.offsetX,c.globals.gridHeight+s.offsetY,s.borderColor,f,s.borderWidth);a.appendChild(k.node),s.id&&k.node.classList.add(s.id)}else{if((d=this.helpers.getX1X2("x2",s))w){var M=w;w=d,d=M}var x=this.annoCtx.graphics.drawRect(0+s.offsetX,d+s.offsetY,this._getYAxisAnnotationWidth(s),w-d,0,s.fillColor,s.opacity,1,s.borderColor,p);x.node.classList.add("apexcharts-annotation-rect"),x.attr("clip-path","url(#gridRectMask".concat(c.globals.cuid,")")),a.appendChild(x.node),s.id&&x.node.classList.add(s.id)}var I=s.label.position==="right"?c.globals.gridWidth:s.label.position==="center"?c.globals.gridWidth/2:0,$=this.annoCtx.graphics.drawText({x:I+s.label.offsetX,y:(d??w)+s.label.offsetY-3,text:f,textAnchor:s.label.textAnchor,fontSize:s.label.style.fontSize,fontFamily:s.label.style.fontFamily,fontWeight:s.label.style.fontWeight,foreColor:s.label.style.color,cssClass:"apexcharts-yaxis-annotation-label ".concat(s.label.style.cssClass," ").concat(s.id?s.id:"")});$.attr({rel:i}),a.appendChild($.node)}},{key:"_getYAxisAnnotationWidth",value:function(s){var a=this.w;return a.globals.gridWidth,(s.width.indexOf("%")>-1?a.globals.gridWidth*parseInt(s.width,10)/100:parseInt(s.width,10))+s.offsetX}},{key:"drawYAxisAnnotations",value:function(){var s=this,a=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-yaxis-annotations"});return a.config.annotations.yaxis.map(function(d,c){s.addYaxisAnnotation(d,i.node,c)}),i}}]),T}(),et=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s,this.helpers=new nt(this.annoCtx)}return b(T,[{key:"addPointAnnotation",value:function(s,a,i){this.w;var d=this.helpers.getX1X2("x1",s),c=this.helpers.getY1Y2("y1",s);if(H.isNumber(d)){var p={pSize:s.marker.size,pointStrokeWidth:s.marker.strokeWidth,pointFillColor:s.marker.fillColor,pointStrokeColor:s.marker.strokeColor,shape:s.marker.shape,pRadius:s.marker.radius,class:"apexcharts-point-annotation-marker ".concat(s.marker.cssClass," ").concat(s.id?s.id:"")},w=this.annoCtx.graphics.drawMarker(d+s.marker.offsetX,c+s.marker.offsetY,p);a.appendChild(w.node);var f=s.label.text?s.label.text:"",k=this.annoCtx.graphics.drawText({x:d+s.label.offsetX,y:c+s.label.offsetY-s.marker.size-parseFloat(s.label.style.fontSize)/1.6,text:f,textAnchor:s.label.textAnchor,fontSize:s.label.style.fontSize,fontFamily:s.label.style.fontFamily,fontWeight:s.label.style.fontWeight,foreColor:s.label.style.color,cssClass:"apexcharts-point-annotation-label ".concat(s.label.style.cssClass," ").concat(s.id?s.id:"")});if(k.attr({rel:i}),a.appendChild(k.node),s.customSVG.SVG){var M=this.annoCtx.graphics.group({class:"apexcharts-point-annotations-custom-svg "+s.customSVG.cssClass});M.attr({transform:"translate(".concat(d+s.customSVG.offsetX,", ").concat(c+s.customSVG.offsetY,")")}),M.node.innerHTML=s.customSVG.SVG,a.appendChild(M.node)}if(s.image.path){var x=s.image.width?s.image.width:20,I=s.image.height?s.image.height:20;w=this.annoCtx.addImage({x:d+s.image.offsetX-x/2,y:c+s.image.offsetY-I/2,width:x,height:I,path:s.image.path,appendTo:".apexcharts-point-annotations"})}s.mouseEnter&&w.node.addEventListener("mouseenter",s.mouseEnter.bind(this,s)),s.mouseLeave&&w.node.addEventListener("mouseleave",s.mouseLeave.bind(this,s)),s.click&&w.node.addEventListener("click",s.click.bind(this,s))}}},{key:"drawPointAnnotations",value:function(){var s=this,a=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-point-annotations"});return a.config.annotations.points.map(function(d,c){s.addPointAnnotation(d,i.node,c)}),i}}]),T}(),st={name:"en",options:{months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],toolbar:{exportToSVG:"Download SVG",exportToPNG:"Download PNG",exportToCSV:"Download CSV",menu:"Menu",selection:"Selection",selectionZoom:"Selection Zoom",zoomIn:"Zoom In",zoomOut:"Zoom Out",pan:"Panning",reset:"Reset Zoom"}}},rt=function(){function T(){g(this,T),this.yAxis={show:!0,showAlways:!1,showForNullSeries:!0,seriesName:void 0,opposite:!1,reversed:!1,logarithmic:!1,logBase:10,tickAmount:void 0,forceNiceScale:!1,max:void 0,min:void 0,floating:!1,decimalsInFloat:void 0,labels:{show:!0,minWidth:0,maxWidth:160,offsetX:0,offsetY:0,align:void 0,rotate:0,padding:20,style:{colors:[],fontSize:"11px",fontWeight:400,fontFamily:void 0,cssClass:""},formatter:void 0},axisBorder:{show:!1,color:"#e0e0e0",width:1,offsetX:0,offsetY:0},axisTicks:{show:!1,color:"#e0e0e0",width:6,offsetX:0,offsetY:0},title:{text:void 0,rotate:-90,offsetY:0,offsetX:0,style:{color:void 0,fontSize:"11px",fontWeight:900,fontFamily:void 0,cssClass:""}},tooltip:{enabled:!1,offsetX:0},crosshairs:{show:!0,position:"front",stroke:{color:"#b6b6b6",width:1,dashArray:0}}},this.pointAnnotation={id:void 0,x:0,y:null,yAxisIndex:0,seriesIndex:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,marker:{size:4,fillColor:"#fff",strokeWidth:2,strokeColor:"#333",shape:"circle",offsetX:0,offsetY:0,radius:2,cssClass:""},label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}},customSVG:{SVG:void 0,cssClass:void 0,offsetX:0,offsetY:0},image:{path:void 0,width:20,height:20,offsetX:0,offsetY:0}},this.yAxisAnnotation={id:void 0,y:0,y2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,width:"100%",yAxisIndex:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"end",position:"right",offsetX:0,offsetY:-3,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.xAxisAnnotation={id:void 0,x:0,x2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",orientation:"vertical",position:"top",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.text={x:0,y:0,text:"",textAnchor:"start",foreColor:void 0,fontSize:"13px",fontFamily:void 0,fontWeight:400,appendTo:".apexcharts-annotations",backgroundColor:"transparent",borderColor:"#c2c2c2",borderRadius:0,borderWidth:0,paddingLeft:4,paddingRight:4,paddingTop:2,paddingBottom:2}}return b(T,[{key:"init",value:function(){return{annotations:{yaxis:[this.yAxisAnnotation],xaxis:[this.xAxisAnnotation],points:[this.pointAnnotation],texts:[],images:[],shapes:[]},chart:{animations:{enabled:!0,easing:"easeinout",speed:800,animateGradually:{delay:150,enabled:!0},dynamicAnimation:{enabled:!0,speed:350}},background:"transparent",locales:[st],defaultLocale:"en",dropShadow:{enabled:!1,enabledOnSeries:void 0,top:2,left:2,blur:4,color:"#000",opacity:.35},events:{animationEnd:void 0,beforeMount:void 0,mounted:void 0,updated:void 0,click:void 0,mouseMove:void 0,mouseLeave:void 0,xAxisLabelClick:void 0,legendClick:void 0,markerClick:void 0,selection:void 0,dataPointSelection:void 0,dataPointMouseEnter:void 0,dataPointMouseLeave:void 0,beforeZoom:void 0,beforeResetZoom:void 0,zoomed:void 0,scrolled:void 0,brushScrolled:void 0},foreColor:"#373d3f",fontFamily:"Helvetica, Arial, sans-serif",height:"auto",parentHeightOffset:15,redrawOnParentResize:!0,redrawOnWindowResize:!0,id:void 0,group:void 0,offsetX:0,offsetY:0,selection:{enabled:!1,type:"x",fill:{color:"#24292e",opacity:.1},stroke:{width:1,color:"#24292e",opacity:.4,dashArray:3},xaxis:{min:void 0,max:void 0},yaxis:{min:void 0,max:void 0}},sparkline:{enabled:!1},brush:{enabled:!1,autoScaleYaxis:!0,target:void 0,targets:void 0},stacked:!1,stackType:"normal",toolbar:{show:!0,offsetX:0,offsetY:0,tools:{download:!0,selection:!0,zoom:!0,zoomin:!0,zoomout:!0,pan:!0,reset:!0,customIcons:[]},export:{csv:{filename:void 0,columnDelimiter:",",headerCategory:"category",headerValue:"value",dateFormatter:function(s){return new Date(s).toDateString()}},png:{filename:void 0},svg:{filename:void 0}},autoSelected:"zoom"},type:"line",width:"100%",zoom:{enabled:!0,type:"x",autoScaleYaxis:!1,zoomedArea:{fill:{color:"#90CAF9",opacity:.4},stroke:{color:"#0D47A1",opacity:.4,width:1}}}},plotOptions:{area:{fillTo:"origin"},bar:{horizontal:!1,columnWidth:"70%",barHeight:"70%",distributed:!1,borderRadius:0,borderRadiusApplication:"around",borderRadiusWhenStacked:"last",rangeBarOverlap:!0,rangeBarGroupRows:!1,hideZeroBarsWhenGrouped:!1,isDumbbell:!1,dumbbellColors:void 0,isFunnel:!1,isFunnel3d:!0,colors:{ranges:[],backgroundBarColors:[],backgroundBarOpacity:1,backgroundBarRadius:0},dataLabels:{position:"top",maxItems:100,hideOverflowingLabels:!0,orientation:"horizontal",total:{enabled:!1,formatter:void 0,offsetX:0,offsetY:0,style:{color:"#373d3f",fontSize:"12px",fontFamily:void 0,fontWeight:600}}}},bubble:{zScaling:!0,minBubbleRadius:void 0,maxBubbleRadius:void 0},candlestick:{colors:{upward:"#00B746",downward:"#EF403C"},wick:{useFillColor:!0}},boxPlot:{colors:{upper:"#00E396",lower:"#008FFB"}},heatmap:{radius:2,enableShades:!0,shadeIntensity:.5,reverseNegativeShade:!1,distributed:!1,useFillColorAsStroke:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},treemap:{enableShades:!0,shadeIntensity:.5,distributed:!1,reverseNegativeShade:!1,useFillColorAsStroke:!1,dataLabels:{format:"scale"},colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},radialBar:{inverseOrder:!1,startAngle:0,endAngle:360,offsetX:0,offsetY:0,hollow:{margin:5,size:"50%",background:"transparent",image:void 0,imageWidth:150,imageHeight:150,imageOffsetX:0,imageOffsetY:0,imageClipped:!0,position:"front",dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},track:{show:!0,startAngle:void 0,endAngle:void 0,background:"#f2f2f2",strokeWidth:"97%",opacity:1,margin:5,dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},dataLabels:{show:!0,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:0,formatter:function(s){return s}},value:{show:!0,fontSize:"14px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:16,formatter:function(s){return s+"%"}},total:{show:!1,label:"Total",fontSize:"16px",fontWeight:600,fontFamily:void 0,color:void 0,formatter:function(s){return s.globals.seriesTotals.reduce(function(a,i){return a+i},0)/s.globals.series.length+"%"}}}},pie:{customScale:1,offsetX:0,offsetY:0,startAngle:0,endAngle:360,expandOnClick:!0,dataLabels:{offset:0,minAngleToShowLabel:10},donut:{size:"65%",background:"transparent",labels:{show:!1,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:-10,formatter:function(s){return s}},value:{show:!0,fontSize:"20px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:10,formatter:function(s){return s}},total:{show:!1,showAlways:!1,label:"Total",fontSize:"16px",fontWeight:400,fontFamily:void 0,color:void 0,formatter:function(s){return s.globals.seriesTotals.reduce(function(a,i){return a+i},0)}}}}},polarArea:{rings:{strokeWidth:1,strokeColor:"#e8e8e8"},spokes:{strokeWidth:1,connectorColors:"#e8e8e8"}},radar:{size:void 0,offsetX:0,offsetY:0,polygons:{strokeWidth:1,strokeColors:"#e8e8e8",connectorColors:"#e8e8e8",fill:{colors:void 0}}}},colors:void 0,dataLabels:{enabled:!0,enabledOnSeries:void 0,formatter:function(s){return s!==null?s:""},textAnchor:"middle",distributed:!1,offsetX:0,offsetY:0,style:{fontSize:"12px",fontFamily:void 0,fontWeight:600,colors:void 0},background:{enabled:!0,foreColor:"#fff",borderRadius:2,padding:4,opacity:.9,borderWidth:1,borderColor:"#fff",dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]},image:{src:[],width:void 0,height:void 0},pattern:{style:"squares",width:6,height:6,strokeWidth:2}},forecastDataPoints:{count:0,fillOpacity:.5,strokeWidth:void 0,dashArray:4},grid:{show:!0,borderColor:"#e0e0e0",strokeDashArray:0,position:"back",xaxis:{lines:{show:!1}},yaxis:{lines:{show:!0}},row:{colors:void 0,opacity:.5},column:{colors:void 0,opacity:.5},padding:{top:0,right:10,bottom:0,left:12}},labels:[],legend:{show:!0,showForSingleSeries:!1,showForNullSeries:!0,showForZeroSeries:!0,floating:!1,position:"bottom",horizontalAlign:"center",inverseOrder:!1,fontSize:"12px",fontFamily:void 0,fontWeight:400,width:void 0,height:void 0,formatter:void 0,tooltipHoverFormatter:void 0,offsetX:-20,offsetY:4,customLegendItems:[],labels:{colors:void 0,useSeriesColors:!1},markers:{width:12,height:12,strokeWidth:0,fillColors:void 0,strokeColor:"#fff",radius:12,customHTML:void 0,offsetX:0,offsetY:0,onClick:void 0},itemMargin:{horizontal:5,vertical:2},onItemClick:{toggleDataSeries:!0},onItemHover:{highlightDataSeries:!0}},markers:{discrete:[],size:0,colors:void 0,strokeColors:"#fff",strokeWidth:2,strokeOpacity:.9,strokeDashArray:0,fillOpacity:1,shape:"circle",width:8,height:8,radius:2,offsetX:0,offsetY:0,onClick:void 0,onDblClick:void 0,showNullDataPoints:!0,hover:{size:void 0,sizeOffset:3}},noData:{text:void 0,align:"center",verticalAlign:"middle",offsetX:0,offsetY:0,style:{color:void 0,fontSize:"14px",fontFamily:void 0}},responsive:[],series:void 0,states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"lighten",value:.1}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"darken",value:.5}}},title:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:0,floating:!1,style:{fontSize:"14px",fontWeight:900,fontFamily:void 0,color:void 0}},subtitle:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:30,floating:!1,style:{fontSize:"12px",fontWeight:400,fontFamily:void 0,color:void 0}},stroke:{show:!0,curve:"smooth",lineCap:"butt",width:2,colors:void 0,dashArray:0,fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]}}},tooltip:{enabled:!0,enabledOnSeries:void 0,shared:!0,followCursor:!1,intersect:!1,inverseOrder:!1,custom:void 0,fillSeriesColor:!1,theme:"light",cssClass:"",style:{fontSize:"12px",fontFamily:void 0},onDatasetHover:{highlightDataSeries:!1},x:{show:!0,format:"dd MMM",formatter:void 0},y:{formatter:void 0,title:{formatter:function(s){return s?s+": ":""}}},z:{formatter:void 0,title:"Size: "},marker:{show:!0,fillColors:void 0},items:{display:"flex"},fixed:{enabled:!1,position:"topRight",offsetX:0,offsetY:0}},xaxis:{type:"category",categories:[],convertedCatToNumeric:!1,offsetX:0,offsetY:0,overwriteCategories:void 0,labels:{show:!0,rotate:-45,rotateAlways:!1,hideOverlappingLabels:!0,trim:!1,minHeight:void 0,maxHeight:120,showDuplicates:!0,style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""},offsetX:0,offsetY:0,format:void 0,formatter:void 0,datetimeUTC:!0,datetimeFormatter:{year:"yyyy",month:"MMM 'yy",day:"dd MMM",hour:"HH:mm",minute:"HH:mm:ss",second:"HH:mm:ss"}},group:{groups:[],style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""}},axisBorder:{show:!0,color:"#e0e0e0",width:"100%",height:1,offsetX:0,offsetY:0},axisTicks:{show:!0,color:"#e0e0e0",height:6,offsetX:0,offsetY:0},tickAmount:void 0,tickPlacement:"on",min:void 0,max:void 0,range:void 0,floating:!1,decimalsInFloat:void 0,position:"bottom",title:{text:void 0,offsetX:0,offsetY:0,style:{color:void 0,fontSize:"12px",fontWeight:900,fontFamily:void 0,cssClass:""}},crosshairs:{show:!0,width:1,position:"back",opacity:.9,stroke:{color:"#b6b6b6",width:1,dashArray:3},fill:{type:"solid",color:"#B1B9C4",gradient:{colorFrom:"#D8E3F0",colorTo:"#BED1E6",stops:[0,100],opacityFrom:.4,opacityTo:.5}},dropShadow:{enabled:!1,left:0,top:0,blur:1,opacity:.4}},tooltip:{enabled:!0,offsetY:0,formatter:void 0,style:{fontSize:"12px",fontFamily:void 0}}},yaxis:this.yAxis,theme:{mode:"light",palette:"palette1",monochrome:{enabled:!1,color:"#008FFB",shadeTo:"light",shadeIntensity:.65}}}}}]),T}(),ht=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.graphics=new _(this.ctx),this.w.globals.isBarHorizontal&&(this.invertAxis=!0),this.helpers=new nt(this),this.xAxisAnnotations=new q(this),this.yAxisAnnotations=new G(this),this.pointsAnnotations=new et(this),this.w.globals.isBarHorizontal&&this.w.config.yaxis[0].reversed&&(this.inversedReversedAxis=!0),this.xDivision=this.w.globals.gridWidth/this.w.globals.dataPoints}return b(T,[{key:"drawAxesAnnotations",value:function(){var s=this.w;if(s.globals.axisCharts){for(var a=this.yAxisAnnotations.drawYAxisAnnotations(),i=this.xAxisAnnotations.drawXAxisAnnotations(),d=this.pointsAnnotations.drawPointAnnotations(),c=s.config.chart.animations.enabled,p=[a,i,d],w=[i.node,a.node,d.node],f=0;f<3;f++)s.globals.dom.elGraphical.add(p[f]),!c||s.globals.resized||s.globals.dataChanged||s.config.chart.type!=="scatter"&&s.config.chart.type!=="bubble"&&s.globals.dataPoints>1&&w[f].classList.add("apexcharts-element-hidden"),s.globals.delayedElements.push({el:w[f],index:0});this.helpers.annotationsBackground()}}},{key:"drawImageAnnos",value:function(){var s=this;this.w.config.annotations.images.map(function(a,i){s.addImage(a,i)})}},{key:"drawTextAnnos",value:function(){var s=this;this.w.config.annotations.texts.map(function(a,i){s.addText(a,i)})}},{key:"addXaxisAnnotation",value:function(s,a,i){this.xAxisAnnotations.addXaxisAnnotation(s,a,i)}},{key:"addYaxisAnnotation",value:function(s,a,i){this.yAxisAnnotations.addYaxisAnnotation(s,a,i)}},{key:"addPointAnnotation",value:function(s,a,i){this.pointsAnnotations.addPointAnnotation(s,a,i)}},{key:"addText",value:function(s,a){var i=s.x,d=s.y,c=s.text,p=s.textAnchor,w=s.foreColor,f=s.fontSize,k=s.fontFamily,M=s.fontWeight,x=s.cssClass,I=s.backgroundColor,$=s.borderWidth,N=s.strokeDashArray,L=s.borderRadius,F=s.borderColor,V=s.appendTo,Z=V===void 0?".apexcharts-annotations":V,m=s.paddingLeft,y=m===void 0?4:m,j=s.paddingRight,R=j===void 0?4:j,K=s.paddingBottom,Q=K===void 0?2:K,ot=s.paddingTop,it=ot===void 0?2:ot,vt=this.w,zt=this.graphics.drawText({x:i,y:d,text:c,textAnchor:p||"start",fontSize:f||"12px",fontWeight:M||"regular",fontFamily:k||vt.config.chart.fontFamily,foreColor:w||vt.config.chart.foreColor,cssClass:x}),Mt=vt.globals.dom.baseEl.querySelector(Z);Mt&&Mt.appendChild(zt.node);var Et=zt.bbox();if(c){var qt=this.graphics.drawRect(Et.x-y,Et.y-it,Et.width+y+R,Et.height+Q+it,L,I||"transparent",1,$,F,N);Mt.insertBefore(qt.node,zt.node)}}},{key:"addImage",value:function(s,a){var i=this.w,d=s.path,c=s.x,p=c===void 0?0:c,w=s.y,f=w===void 0?0:w,k=s.width,M=k===void 0?20:k,x=s.height,I=x===void 0?20:x,$=s.appendTo,N=$===void 0?".apexcharts-annotations":$,L=i.globals.dom.Paper.image(d);L.size(M,I).move(p,f);var F=i.globals.dom.baseEl.querySelector(N);return F&&F.appendChild(L.node),L}},{key:"addXaxisAnnotationExternal",value:function(s,a,i){return this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"xaxis",contextMethod:i.addXaxisAnnotation}),i}},{key:"addYaxisAnnotationExternal",value:function(s,a,i){return this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"yaxis",contextMethod:i.addYaxisAnnotation}),i}},{key:"addPointAnnotationExternal",value:function(s,a,i){return this.invertAxis===void 0&&(this.invertAxis=i.w.globals.isBarHorizontal),this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"point",contextMethod:i.addPointAnnotation}),i}},{key:"addAnnotationExternal",value:function(s){var a=s.params,i=s.pushToMemory,d=s.context,c=s.type,p=s.contextMethod,w=d,f=w.w,k=f.globals.dom.baseEl.querySelector(".apexcharts-".concat(c,"-annotations")),M=k.childNodes.length+1,x=new rt,I=Object.assign({},c==="xaxis"?x.xAxisAnnotation:c==="yaxis"?x.yAxisAnnotation:x.pointAnnotation),$=H.extend(I,a);switch(c){case"xaxis":this.addXaxisAnnotation($,k,M);break;case"yaxis":this.addYaxisAnnotation($,k,M);break;case"point":this.addPointAnnotation($,k,M)}var N=f.globals.dom.baseEl.querySelector(".apexcharts-".concat(c,"-annotations .apexcharts-").concat(c,"-annotation-label[rel='").concat(M,"']")),L=this.helpers.addBackgroundToAnno(N,$);return L&&k.insertBefore(L.node,N),i&&f.globals.memory.methodsToExec.push({context:w,id:$.id?$.id:H.randomId(),method:p,label:"addAnnotation",params:a}),d}},{key:"clearAnnotations",value:function(s){var a=s.w,i=a.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations");a.globals.memory.methodsToExec.map(function(d,c){d.label!=="addText"&&d.label!=="addAnnotation"||a.globals.memory.methodsToExec.splice(c,1)}),i=H.listToArray(i),Array.prototype.forEach.call(i,function(d){for(;d.firstChild;)d.removeChild(d.firstChild)})}},{key:"removeAnnotation",value:function(s,a){var i=s.w,d=i.globals.dom.baseEl.querySelectorAll(".".concat(a));d&&(i.globals.memory.methodsToExec.map(function(c,p){c.id===a&&i.globals.memory.methodsToExec.splice(p,1)}),Array.prototype.forEach.call(d,function(c){c.parentElement.removeChild(c)}))}}]),T}(),dt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.months31=[1,3,5,7,8,10,12],this.months30=[2,4,6,9,11],this.daysCntOfYear=[0,31,59,90,120,151,181,212,243,273,304,334]}return b(T,[{key:"isValidDate",value:function(s){return!isNaN(this.parseDate(s))}},{key:"getTimeStamp",value:function(s){return Date.parse(s)?this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(s).toISOString().substr(0,25)).getTime():new Date(s).getTime():s}},{key:"getDate",value:function(s){return this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(s).toUTCString()):new Date(s)}},{key:"parseDate",value:function(s){var a=Date.parse(s);if(!isNaN(a))return this.getTimeStamp(s);var i=Date.parse(s.replace(/-/g,"/").replace(/[a-z]+/gi," "));return i=this.getTimeStamp(i)}},{key:"parseDateWithTimezone",value:function(s){return Date.parse(s.replace(/-/g,"/").replace(/[a-z]+/gi," "))}},{key:"formatDate",value:function(s,a){var i=this.w.globals.locale,d=this.w.config.xaxis.labels.datetimeUTC,c=["\0"].concat(E(i.months)),p=[""].concat(E(i.shortMonths)),w=[""].concat(E(i.days)),f=[""].concat(E(i.shortDays));function k(Q,ot){var it=Q+"";for(ot=ot||2;it.length12?$-12:$===0?12:$;a=(a=(a=(a=a.replace(/(^|[^\\])HH+/g,"$1"+k($))).replace(/(^|[^\\])H/g,"$1"+$)).replace(/(^|[^\\])hh+/g,"$1"+k(N))).replace(/(^|[^\\])h/g,"$1"+N);var L=d?s.getUTCMinutes():s.getMinutes();a=(a=a.replace(/(^|[^\\])mm+/g,"$1"+k(L))).replace(/(^|[^\\])m/g,"$1"+L);var F=d?s.getUTCSeconds():s.getSeconds();a=(a=a.replace(/(^|[^\\])ss+/g,"$1"+k(F))).replace(/(^|[^\\])s/g,"$1"+F);var V=d?s.getUTCMilliseconds():s.getMilliseconds();a=a.replace(/(^|[^\\])fff+/g,"$1"+k(V,3)),V=Math.round(V/10),a=a.replace(/(^|[^\\])ff/g,"$1"+k(V)),V=Math.round(V/10);var Z=$<12?"AM":"PM";a=(a=(a=a.replace(/(^|[^\\])f/g,"$1"+V)).replace(/(^|[^\\])TT+/g,"$1"+Z)).replace(/(^|[^\\])T/g,"$1"+Z.charAt(0));var m=Z.toLowerCase();a=(a=a.replace(/(^|[^\\])tt+/g,"$1"+m)).replace(/(^|[^\\])t/g,"$1"+m.charAt(0));var y=-s.getTimezoneOffset(),j=d||!y?"Z":y>0?"+":"-";if(!d){var R=(y=Math.abs(y))%60;j+=k(Math.floor(y/60))+":"+k(R)}a=a.replace(/(^|[^\\])K/g,"$1"+j);var K=(d?s.getUTCDay():s.getDay())+1;return a=(a=(a=(a=(a=a.replace(new RegExp(w[0],"g"),w[K])).replace(new RegExp(f[0],"g"),f[K])).replace(new RegExp(c[0],"g"),c[x])).replace(new RegExp(p[0],"g"),p[x])).replace(/\\(.)/g,"$1")}},{key:"getTimeUnitsfromTimestamp",value:function(s,a,i){var d=this.w;d.config.xaxis.min!==void 0&&(s=d.config.xaxis.min),d.config.xaxis.max!==void 0&&(a=d.config.xaxis.max);var c=this.getDate(s),p=this.getDate(a),w=this.formatDate(c,"yyyy MM dd HH mm ss fff").split(" "),f=this.formatDate(p,"yyyy MM dd HH mm ss fff").split(" ");return{minMillisecond:parseInt(w[6],10),maxMillisecond:parseInt(f[6],10),minSecond:parseInt(w[5],10),maxSecond:parseInt(f[5],10),minMinute:parseInt(w[4],10),maxMinute:parseInt(f[4],10),minHour:parseInt(w[3],10),maxHour:parseInt(f[3],10),minDate:parseInt(w[2],10),maxDate:parseInt(f[2],10),minMonth:parseInt(w[1],10)-1,maxMonth:parseInt(f[1],10)-1,minYear:parseInt(w[0],10),maxYear:parseInt(f[0],10)}}},{key:"isLeapYear",value:function(s){return s%4==0&&s%100!=0||s%400==0}},{key:"calculcateLastDaysOfMonth",value:function(s,a,i){return this.determineDaysOfMonths(s,a)-i}},{key:"determineDaysOfYear",value:function(s){var a=365;return this.isLeapYear(s)&&(a=366),a}},{key:"determineRemainingDaysOfYear",value:function(s,a,i){var d=this.daysCntOfYear[a]+i;return a>1&&this.isLeapYear()&&d++,d}},{key:"determineDaysOfMonths",value:function(s,a){var i=30;switch(s=H.monthMod(s),!0){case this.months30.indexOf(s)>-1:s===2&&(i=this.isLeapYear(a)?29:28);break;case this.months31.indexOf(s)>-1:default:i=31}return i}}]),T}(),Ct=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.tooltipKeyFormat="dd MMM"}return b(T,[{key:"xLabelFormat",value:function(s,a,i,d){var c=this.w;if(c.config.xaxis.type==="datetime"&&c.config.xaxis.labels.formatter===void 0&&c.config.tooltip.x.formatter===void 0){var p=new dt(this.ctx);return p.formatDate(p.getDate(a),c.config.tooltip.x.format)}return s(a,i,d)}},{key:"defaultGeneralFormatter",value:function(s){return Array.isArray(s)?s.map(function(a){return a}):s}},{key:"defaultYFormatter",value:function(s,a,i){var d=this.w;return H.isNumber(s)&&(s=d.globals.yValueDecimal!==0?s.toFixed(a.decimalsInFloat!==void 0?a.decimalsInFloat:d.globals.yValueDecimal):d.globals.maxYArr[i]-d.globals.minYArr[i]<5?s.toFixed(1):s.toFixed(0)),s}},{key:"setLabelFormatters",value:function(){var s=this,a=this.w;return a.globals.xaxisTooltipFormatter=function(i){return s.defaultGeneralFormatter(i)},a.globals.ttKeyFormatter=function(i){return s.defaultGeneralFormatter(i)},a.globals.ttZFormatter=function(i){return i},a.globals.legendFormatter=function(i){return s.defaultGeneralFormatter(i)},a.config.xaxis.labels.formatter!==void 0?a.globals.xLabelFormatter=a.config.xaxis.labels.formatter:a.globals.xLabelFormatter=function(i){if(H.isNumber(i)){if(!a.config.xaxis.convertedCatToNumeric&&a.config.xaxis.type==="numeric"){if(H.isNumber(a.config.xaxis.decimalsInFloat))return i.toFixed(a.config.xaxis.decimalsInFloat);var d=a.globals.maxX-a.globals.minX;return d>0&&d<100?i.toFixed(1):i.toFixed(0)}return a.globals.isBarHorizontal&&a.globals.maxY-a.globals.minYArr<4?i.toFixed(1):i.toFixed(0)}return i},typeof a.config.tooltip.x.formatter=="function"?a.globals.ttKeyFormatter=a.config.tooltip.x.formatter:a.globals.ttKeyFormatter=a.globals.xLabelFormatter,typeof a.config.xaxis.tooltip.formatter=="function"&&(a.globals.xaxisTooltipFormatter=a.config.xaxis.tooltip.formatter),(Array.isArray(a.config.tooltip.y)||a.config.tooltip.y.formatter!==void 0)&&(a.globals.ttVal=a.config.tooltip.y),a.config.tooltip.z.formatter!==void 0&&(a.globals.ttZFormatter=a.config.tooltip.z.formatter),a.config.legend.formatter!==void 0&&(a.globals.legendFormatter=a.config.legend.formatter),a.config.yaxis.forEach(function(i,d){i.labels.formatter!==void 0?a.globals.yLabelFormatters[d]=i.labels.formatter:a.globals.yLabelFormatters[d]=function(c){return a.globals.xyCharts?Array.isArray(c)?c.map(function(p){return s.defaultYFormatter(p,i,d)}):s.defaultYFormatter(c,i,d):c}}),a.globals}},{key:"heatmapLabelFormatters",value:function(){var s=this.w;if(s.config.chart.type==="heatmap"){s.globals.yAxisScale[0].result=s.globals.seriesNames.slice();var a=s.globals.seriesNames.reduce(function(i,d){return i.length>d.length?i:d},0);s.globals.yAxisScale[0].niceMax=a,s.globals.yAxisScale[0].niceMin=a}}}]),T}(),xt=function(T){var s,a=T.isTimeline,i=T.ctx,d=T.seriesIndex,c=T.dataPointIndex,p=T.y1,w=T.y2,f=T.w,k=f.globals.seriesRangeStart[d][c],M=f.globals.seriesRangeEnd[d][c],x=f.globals.labels[c],I=f.config.series[d].name?f.config.series[d].name:"",$=f.globals.ttKeyFormatter,N=f.config.tooltip.y.title.formatter,L={w:f,seriesIndex:d,dataPointIndex:c,start:k,end:M};typeof N=="function"&&(I=N(I,L)),(s=f.config.series[d].data[c])!==null&&s!==void 0&&s.x&&(x=f.config.series[d].data[c].x),a||f.config.xaxis.type==="datetime"&&(x=new Ct(i).xLabelFormat(f.globals.ttKeyFormatter,x,x,{i:void 0,dateFormatter:new dt(i).formatDate,w:f})),typeof $=="function"&&(x=$(x,L)),Number.isFinite(p)&&Number.isFinite(w)&&(k=p,M=w);var F="",V="",Z=f.globals.colors[d];if(f.config.tooltip.x.formatter===void 0)if(f.config.xaxis.type==="datetime"){var m=new dt(i);F=m.formatDate(m.getDate(k),f.config.tooltip.x.format),V=m.formatDate(m.getDate(M),f.config.tooltip.x.format)}else F=k,V=M;else F=f.config.tooltip.x.formatter(k),V=f.config.tooltip.x.formatter(M);return{start:k,end:M,startVal:F,endVal:V,ylabel:x,color:Z,seriesName:I}},wt=function(T){var s=T.color,a=T.seriesName,i=T.ylabel,d=T.start,c=T.end,p=T.seriesIndex,w=T.dataPointIndex,f=T.ctx.tooltip.tooltipLabels.getFormatters(p);d=f.yLbFormatter(d),c=f.yLbFormatter(c);var k=f.yLbFormatter(T.w.globals.series[p][w]),M=` + */var lc;function Xx(){return lc||(lc=1,function(n,l){function r(T,s){var a=Object.keys(T);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(T);s&&(i=i.filter(function(d){return Object.getOwnPropertyDescriptor(T,d).enumerable})),a.push.apply(a,i)}return a}function h(T){for(var s=1;s"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var a,i=S(T);if(s){var d=S(this).constructor;a=Reflect.construct(i,arguments,d)}else a=i.apply(this,arguments);return B(this,a)}}function D(T,s){return function(a){if(Array.isArray(a))return a}(T)||function(a,i){var d=a==null?null:typeof Symbol<"u"&&a[Symbol.iterator]||a["@@iterator"];if(d!=null){var u,p,w=[],f=!0,b=!1;try{for(d=d.call(a);!(f=(u=d.next()).done)&&(w.push(u.value),!i||w.length!==i);f=!0);}catch(M){b=!0,p=M}finally{try{f||d.return==null||d.return()}finally{if(b)throw p}}return w}}(T,s)||X(T,s)||function(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function F(T){return function(s){if(Array.isArray(s))return R(s)}(T)||function(s){if(typeof Symbol<"u"&&s[Symbol.iterator]!=null||s["@@iterator"]!=null)return Array.from(s)}(T)||X(T)||function(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}()}function X(T,s){if(T){if(typeof T=="string")return R(T,s);var a=Object.prototype.toString.call(T).slice(8,-1);return a==="Object"&&T.constructor&&(a=T.constructor.name),a==="Map"||a==="Set"?Array.from(T):a==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?R(T,s):void 0}}function R(T,s){(s==null||s>T.length)&&(s=T.length);for(var a=0,i=new Array(s);a>16,w=i>>8&255,f=255&i;return"#"+(16777216+65536*(Math.round((d-p)*u)+p)+256*(Math.round((d-w)*u)+w)+(Math.round((d-f)*u)+f)).toString(16).slice(1)}},{key:"shadeColor",value:function(s,a){return T.isColorHex(a)?this.shadeHexColor(s,a):this.shadeRGBColor(s,a)}}],[{key:"bind",value:function(s,a){return function(){return s.apply(a,arguments)}}},{key:"isObject",value:function(s){return s&&c(s)==="object"&&!Array.isArray(s)&&s!=null}},{key:"is",value:function(s,a){return Object.prototype.toString.call(a)==="[object "+s+"]"}},{key:"listToArray",value:function(s){var a,i=[];for(a=0;a1&&arguments[1]!==void 0?arguments[1]:2;return parseFloat(s.toPrecision(a))}},{key:"randomId",value:function(){return(Math.random()+1).toString(36).substring(4)}},{key:"noExponents",value:function(s){var a=String(s).split(/[eE]/);if(a.length===1)return a[0];var i="",d=s<0?"-":"",u=a[0].replace(".",""),p=Number(a[1])+1;if(p<0){for(i=d+"0.";p++;)i+="0";return i+u.replace(/^-/,"")}for(p-=u.length;p--;)i+="0";return u+i}},{key:"getDimensions",value:function(s){var a=getComputedStyle(s,null),i=s.clientHeight,d=s.clientWidth;return i-=parseFloat(a.paddingTop)+parseFloat(a.paddingBottom),[d-=parseFloat(a.paddingLeft)+parseFloat(a.paddingRight),i]}},{key:"getBoundingClientRect",value:function(s){var a=s.getBoundingClientRect();return{top:a.top,right:a.right,bottom:a.bottom,left:a.left,width:s.clientWidth,height:s.clientHeight,x:a.left,y:a.top}}},{key:"getLargestStringFromArr",value:function(s){return s.reduce(function(a,i){return Array.isArray(i)&&(i=i.reduce(function(d,u){return d.length>u.length?d:u})),a.length>i.length?a:i},0)}},{key:"hexToRgba",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"#999999",a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.6;s.substring(0,1)!=="#"&&(s="#999999");var i=s.replace("#","");i=i.match(new RegExp("(.{"+i.length/3+"})","g"));for(var d=0;d1&&arguments[1]!==void 0?arguments[1]:"x",i=s.toString().slice();return i=i.replace(/[` ~!@#$%^&*()|+\=?;:'",.<>{}[\]\\/]/gi,a)}},{key:"negToZero",value:function(s){return s<0?0:s}},{key:"moveIndexInArray",value:function(s,a,i){if(i>=s.length)for(var d=i-s.length+1;d--;)s.push(void 0);return s.splice(i,0,s.splice(a,1)[0]),s}},{key:"extractNumber",value:function(s){return parseFloat(s.replace(/[^\d.]*/g,""))}},{key:"findAncestor",value:function(s,a){for(;(s=s.parentElement)&&!s.classList.contains(a););return s}},{key:"setELstyles",value:function(s,a){for(var i in a)a.hasOwnProperty(i)&&(s.style.key=a[i])}},{key:"isNumber",value:function(s){return!isNaN(s)&&parseFloat(Number(s))===s&&!isNaN(parseInt(s,10))}},{key:"isFloat",value:function(s){return Number(s)===s&&s%1!=0}},{key:"isSafari",value:function(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}},{key:"isFirefox",value:function(){return navigator.userAgent.toLowerCase().indexOf("firefox")>-1}},{key:"isIE11",value:function(){if(window.navigator.userAgent.indexOf("MSIE")!==-1||window.navigator.appVersion.indexOf("Trident/")>-1)return!0}},{key:"isIE",value:function(){var s=window.navigator.userAgent,a=s.indexOf("MSIE ");if(a>0)return parseInt(s.substring(a+5,s.indexOf(".",a)),10);if(s.indexOf("Trident/")>0){var i=s.indexOf("rv:");return parseInt(s.substring(i+3,s.indexOf(".",i)),10)}var d=s.indexOf("Edge/");return d>0&&parseInt(s.substring(d+5,s.indexOf(".",d)),10)}}]),T}(),U=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.setEasingFunctions()}return k(T,[{key:"setEasingFunctions",value:function(){var s;if(!this.w.globals.easing){switch(this.w.config.chart.animations.easing){case"linear":s="-";break;case"easein":s="<";break;case"easeout":s=">";break;case"easeinout":default:s="<>";break;case"swing":s=function(a){var i=1.70158;return(a-=1)*a*((i+1)*a+i)+1};break;case"bounce":s=function(a){return a<1/2.75?7.5625*a*a:a<2/2.75?7.5625*(a-=1.5/2.75)*a+.75:a<2.5/2.75?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375};break;case"elastic":s=function(a){return a===!!a?a:Math.pow(2,-10*a)*Math.sin((a-.075)*(2*Math.PI)/.3)+1}}this.w.globals.easing=s}}},{key:"animateLine",value:function(s,a,i,d){s.attr(a).animate(d).attr(i)}},{key:"animateMarker",value:function(s,a,i,d,u,p){a||(a=0),s.attr({r:a,width:a,height:a}).animate(d,u).attr({r:i,width:i.width,height:i.height}).afterAll(function(){p()})}},{key:"animateCircle",value:function(s,a,i,d,u){s.attr({r:a.r,cx:a.cx,cy:a.cy}).animate(d,u).attr({r:i.r,cx:i.cx,cy:i.cy})}},{key:"animateRect",value:function(s,a,i,d,u){s.attr(a).animate(d).attr(i).afterAll(function(){return u()})}},{key:"animatePathsGradually",value:function(s){var a=s.el,i=s.realIndex,d=s.j,u=s.fill,p=s.pathFrom,w=s.pathTo,f=s.speed,b=s.delay,M=this.w,z=0;M.config.chart.animations.animateGradually.enabled&&(z=M.config.chart.animations.animateGradually.delay),M.config.chart.animations.dynamicAnimation.enabled&&M.globals.dataChanged&&M.config.chart.type!=="bar"&&(z=0),this.morphSVG(a,i,d,M.config.chart.type!=="line"||M.globals.comboCharts?u:"stroke",p,w,f,b*z)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach(function(s){var a=s.el;a.classList.remove("apexcharts-element-hidden"),a.classList.add("apexcharts-hidden-element-shown")})}},{key:"animationCompleted",value:function(s){var a=this.w;a.globals.animationEnded||(a.globals.animationEnded=!0,this.showDelayedElements(),typeof a.config.chart.events.animationEnd=="function"&&a.config.chart.events.animationEnd(this.ctx,{el:s,w:a}))}},{key:"morphSVG",value:function(s,a,i,d,u,p,w,f){var b=this,M=this.w;u||(u=s.attr("pathFrom")),p||(p=s.attr("pathTo"));var z=function(y){return M.config.chart.type==="radar"&&(w=1),"M 0 ".concat(M.globals.gridHeight)};(!u||u.indexOf("undefined")>-1||u.indexOf("NaN")>-1)&&(u=z()),(!p||p.indexOf("undefined")>-1||p.indexOf("NaN")>-1)&&(p=z()),M.globals.shouldAnimate||(w=1),s.plot(u).animate(1,M.globals.easing,f).plot(u).animate(w,M.globals.easing,f).plot(p).afterAll(function(){H.isNumber(i)?i===M.globals.series[M.globals.maxValsInArrayIndex].length-2&&M.globals.shouldAnimate&&b.animationCompleted(s):d!=="none"&&M.globals.shouldAnimate&&(!M.globals.comboCharts&&a===M.globals.series.length-1||M.globals.comboCharts)&&b.animationCompleted(s),b.showDelayedElements()})}}]),T}(),W=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"getDefaultFilter",value:function(s,a){var i=this.w;s.unfilter(!0),new window.SVG.Filter().size("120%","180%","-5%","-40%"),i.config.states.normal.filter!=="none"?this.applyFilter(s,a,i.config.states.normal.filter.type,i.config.states.normal.filter.value):i.config.chart.dropShadow.enabled&&this.dropShadow(s,i.config.chart.dropShadow,a)}},{key:"addNormalFilter",value:function(s,a){var i=this.w;i.config.chart.dropShadow.enabled&&!s.node.classList.contains("apexcharts-marker")&&this.dropShadow(s,i.config.chart.dropShadow,a)}},{key:"addLightenFilter",value:function(s,a,i){var d=this,u=this.w,p=i.intensity;s.unfilter(!0),new window.SVG.Filter,s.filter(function(w){var f=u.config.chart.dropShadow;(f.enabled?d.addShadow(w,a,f):w).componentTransfer({rgb:{type:"linear",slope:1.5,intercept:p}})}),s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)}},{key:"addDarkenFilter",value:function(s,a,i){var d=this,u=this.w,p=i.intensity;s.unfilter(!0),new window.SVG.Filter,s.filter(function(w){var f=u.config.chart.dropShadow;(f.enabled?d.addShadow(w,a,f):w).componentTransfer({rgb:{type:"linear",slope:p}})}),s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)}},{key:"applyFilter",value:function(s,a,i){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:.5;switch(i){case"none":this.addNormalFilter(s,a);break;case"lighten":this.addLightenFilter(s,a,{intensity:d});break;case"darken":this.addDarkenFilter(s,a,{intensity:d})}}},{key:"addShadow",value:function(s,a,i){var d=i.blur,u=i.top,p=i.left,w=i.color,f=i.opacity,b=s.flood(Array.isArray(w)?w[a]:w,f).composite(s.sourceAlpha,"in").offset(p,u).gaussianBlur(d).merge(s.source);return s.blend(s.source,b)}},{key:"dropShadow",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,d=a.top,u=a.left,p=a.blur,w=a.color,f=a.opacity,b=a.noUserSpaceOnUse,M=this.w;return s.unfilter(!0),H.isIE()&&M.config.chart.type==="radialBar"||(w=Array.isArray(w)?w[i]:w,s.filter(function(z){var y=null;y=H.isSafari()||H.isFirefox()||H.isIE()?z.flood(w,f).composite(z.sourceAlpha,"in").offset(u,d).gaussianBlur(p):z.flood(w,f).composite(z.sourceAlpha,"in").offset(u,d).gaussianBlur(p).merge(z.source),z.blend(z.source,y)}),b||s.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(s.filterer.node)),s}},{key:"setSelectionFilter",value:function(s,a,i){var d=this.w;if(d.globals.selectedDataPoints[a]!==void 0&&d.globals.selectedDataPoints[a].indexOf(i)>-1){s.node.setAttribute("selected",!0);var u=d.config.states.active.filter;u!=="none"&&this.applyFilter(s,a,u.type,u.value)}}},{key:"_scaleFilterSize",value:function(s){(function(a){for(var i in a)a.hasOwnProperty(i)&&s.setAttribute(i,a[i])})({width:"200%",height:"200%",x:"-50%",y:"-50%"})}}]),T}(),_=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"roundPathCorners",value:function(s,a){function i(Q,ot,it){var vt=ot.x-Q.x,zt=ot.y-Q.y,Mt=Math.sqrt(vt*vt+zt*zt);return d(Q,ot,Math.min(1,it/Mt))}function d(Q,ot,it){return{x:Q.x+(ot.x-Q.x)*it,y:Q.y+(ot.y-Q.y)*it}}function u(Q,ot){Q.length>2&&(Q[Q.length-2]=ot.x,Q[Q.length-1]=ot.y)}function p(Q){return{x:parseFloat(Q[Q.length-2]),y:parseFloat(Q[Q.length-1])}}s.indexOf("NaN")>-1&&(s="");var w=s.split(/[,\s]/).reduce(function(Q,ot){var it=ot.match("([a-zA-Z])(.+)");return it?(Q.push(it[1]),Q.push(it[2])):Q.push(ot),Q},[]).reduce(function(Q,ot){return parseFloat(ot)==ot&&Q.length?Q[Q.length-1].push(ot):Q.push([ot]),Q},[]),f=[];if(w.length>1){var b=p(w[0]),M=null;w[w.length-1][0]=="Z"&&w[0].length>2&&(M=["L",b.x,b.y],w[w.length-1]=M),f.push(w[0]);for(var z=1;z2&&A[0]=="L"&&N.length>2&&N[0]=="L"){var L,O,V=p(y),Z=p(A),m=p(N);L=i(Z,V,a),O=i(Z,m,a),u(A,L),A.origPoint=Z,f.push(A);var C=d(L,Z,.5),j=d(Z,O,.5),E=["C",C.x,C.y,j.x,j.y,O.x,O.y];E.origPoint=Z,f.push(E)}else f.push(A)}if(M){var K=p(f[f.length-1]);f.push(["Z"]),u(f[0],K)}}else f=w;return f.reduce(function(Q,ot){return Q+ot.join(" ")+" "},"")}},{key:"drawLine",value:function(s,a,i,d){var u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:"#a8a8a8",p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:0,w=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,f=arguments.length>7&&arguments[7]!==void 0?arguments[7]:"butt";return this.w.globals.dom.Paper.line().attr({x1:s,y1:a,x2:i,y2:d,stroke:u,"stroke-dasharray":p,"stroke-width":w,"stroke-linecap":f})}},{key:"drawRect",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0,p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"#fefefe",w=arguments.length>6&&arguments[6]!==void 0?arguments[6]:1,f=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,b=arguments.length>8&&arguments[8]!==void 0?arguments[8]:null,M=arguments.length>9&&arguments[9]!==void 0?arguments[9]:0,z=this.w.globals.dom.Paper.rect();return z.attr({x:s,y:a,width:i>0?i:0,height:d>0?d:0,rx:u,ry:u,opacity:w,"stroke-width":f!==null?f:0,stroke:b!==null?b:"none","stroke-dasharray":M}),z.node.setAttribute("fill",p),z}},{key:"drawPolygon",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"#e1e1e1",i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"none";return this.w.globals.dom.Paper.polygon(s).attr({fill:d,stroke:a,"stroke-width":i})}},{key:"drawCircle",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;s<0&&(s=0);var i=this.w.globals.dom.Paper.circle(2*s);return a!==null&&i.attr(a),i}},{key:"drawPath",value:function(s){var a=s.d,i=a===void 0?"":a,d=s.stroke,u=d===void 0?"#a8a8a8":d,p=s.strokeWidth,w=p===void 0?1:p,f=s.fill,b=s.fillOpacity,M=b===void 0?1:b,z=s.strokeOpacity,y=z===void 0?1:z,A=s.classes,N=s.strokeLinecap,L=N===void 0?null:N,O=s.strokeDashArray,V=O===void 0?0:O,Z=this.w;return L===null&&(L=Z.config.stroke.lineCap),(i.indexOf("undefined")>-1||i.indexOf("NaN")>-1)&&(i="M 0 ".concat(Z.globals.gridHeight)),Z.globals.dom.Paper.path(i).attr({fill:f,"fill-opacity":M,stroke:u,"stroke-opacity":y,"stroke-linecap":L,"stroke-width":w,"stroke-dasharray":V,class:A})}},{key:"group",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=this.w.globals.dom.Paper.group();return s!==null&&a.attr(s),a}},{key:"move",value:function(s,a){var i=["M",s,a].join(" ");return i}},{key:"line",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,d=null;return i===null?d=[" L",s,a].join(" "):i==="H"?d=[" H",s].join(" "):i==="V"&&(d=[" V",a].join(" ")),d}},{key:"curve",value:function(s,a,i,d,u,p){var w=["C",s,a,i,d,u,p].join(" ");return w}},{key:"quadraticCurve",value:function(s,a,i,d){return["Q",s,a,i,d].join(" ")}},{key:"arc",value:function(s,a,i,d,u,p,w){var f="A";arguments.length>7&&arguments[7]!==void 0&&arguments[7]&&(f="a");var b=[f,s,a,i,d,u,p,w].join(" ");return b}},{key:"renderPaths",value:function(s){var a,i=s.j,d=s.realIndex,u=s.pathFrom,p=s.pathTo,w=s.stroke,f=s.strokeWidth,b=s.strokeLinecap,M=s.fill,z=s.animationDelay,y=s.initialSpeed,A=s.dataChangeSpeed,N=s.className,L=s.shouldClipToGrid,O=L===void 0||L,V=s.bindEventsOnPaths,Z=V===void 0||V,m=s.drawShadow,C=m===void 0||m,j=this.w,E=new W(this.ctx),K=new U(this.ctx),Q=this.w.config.chart.animations.enabled,ot=Q&&this.w.config.chart.animations.dynamicAnimation.enabled,it=!!(Q&&!j.globals.resized||ot&&j.globals.dataChanged&&j.globals.shouldAnimate);it?a=u:(a=p,j.globals.animationEnded=!0);var vt=j.config.stroke.dashArray,zt=0;zt=Array.isArray(vt)?vt[d]:j.config.stroke.dashArray;var Mt=this.drawPath({d:a,stroke:w,strokeWidth:f,fill:M,fillOpacity:1,classes:N,strokeLinecap:b,strokeDashArray:zt});if(Mt.attr("index",d),O&&Mt.attr({"clip-path":"url(#gridRectMask".concat(j.globals.cuid,")")}),j.config.states.normal.filter.type!=="none")E.getDefaultFilter(Mt,d);else if(j.config.chart.dropShadow.enabled&&C&&(!j.config.chart.dropShadow.enabledOnSeries||j.config.chart.dropShadow.enabledOnSeries&&j.config.chart.dropShadow.enabledOnSeries.indexOf(d)!==-1)){var Vt=j.config.chart.dropShadow;E.dropShadow(Mt,Vt,d)}Z&&(Mt.node.addEventListener("mouseenter",this.pathMouseEnter.bind(this,Mt)),Mt.node.addEventListener("mouseleave",this.pathMouseLeave.bind(this,Mt)),Mt.node.addEventListener("mousedown",this.pathMouseDown.bind(this,Mt))),Mt.attr({pathTo:p,pathFrom:u});var Yt={el:Mt,j:i,realIndex:d,pathFrom:u,pathTo:p,fill:M,strokeWidth:f,delay:z};return!Q||j.globals.resized||j.globals.dataChanged?!j.globals.resized&&j.globals.dataChanged||K.showDelayedElements():K.animatePathsGradually(h(h({},Yt),{},{speed:y})),j.globals.dataChanged&&ot&&it&&K.animatePathsGradually(h(h({},Yt),{},{speed:A})),Mt}},{key:"drawPattern",value:function(s,a,i){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:"#a8a8a8",u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:0;return this.w.globals.dom.Paper.pattern(a,i,function(p){s==="horizontalLines"?p.line(0,0,i,0).stroke({color:d,width:u+1}):s==="verticalLines"?p.line(0,0,0,a).stroke({color:d,width:u+1}):s==="slantedLines"?p.line(0,0,a,i).stroke({color:d,width:u}):s==="squares"?p.rect(a,i).fill("none").stroke({color:d,width:u}):s==="circles"&&p.circle(a).fill("none").stroke({color:d,width:u})})}},{key:"drawGradient",value:function(s,a,i,d,u){var p,w=arguments.length>5&&arguments[5]!==void 0?arguments[5]:null,f=arguments.length>6&&arguments[6]!==void 0?arguments[6]:null,b=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,M=arguments.length>8&&arguments[8]!==void 0?arguments[8]:0,z=this.w;a.length<9&&a.indexOf("#")===0&&(a=H.hexToRgba(a,d)),i.length<9&&i.indexOf("#")===0&&(i=H.hexToRgba(i,u));var y=0,A=1,N=1,L=null;f!==null&&(y=f[0]!==void 0?f[0]/100:0,A=f[1]!==void 0?f[1]/100:1,N=f[2]!==void 0?f[2]/100:1,L=f[3]!==void 0?f[3]/100:null);var O=!(z.config.chart.type!=="donut"&&z.config.chart.type!=="pie"&&z.config.chart.type!=="polarArea"&&z.config.chart.type!=="bubble");if(p=b===null||b.length===0?z.globals.dom.Paper.gradient(O?"radial":"linear",function(m){m.at(y,a,d),m.at(A,i,u),m.at(N,i,u),L!==null&&m.at(L,a,d)}):z.globals.dom.Paper.gradient(O?"radial":"linear",function(m){(Array.isArray(b[M])?b[M]:b).forEach(function(C){m.at(C.offset/100,C.color,C.opacity)})}),O){var V=z.globals.gridWidth/2,Z=z.globals.gridHeight/2;z.config.chart.type!=="bubble"?p.attr({gradientUnits:"userSpaceOnUse",cx:V,cy:Z,r:w}):p.attr({cx:.5,cy:.5,r:.8,fx:.2,fy:.2})}else s==="vertical"?p.from(0,0).to(0,1):s==="diagonal"?p.from(0,0).to(1,1):s==="horizontal"?p.from(0,1).to(1,1):s==="diagonal2"&&p.from(1,0).to(0,1);return p}},{key:"getTextBasedOnMaxWidth",value:function(s){var a=s.text,i=s.maxWidth,d=s.fontSize,u=s.fontFamily,p=this.getTextRects(a,d,u),w=p.width/a.length,f=Math.floor(i/w);return i-1){var f=i.globals.selectedDataPoints[u].indexOf(p);i.globals.selectedDataPoints[u].splice(f,1)}}else{if(!i.config.states.active.allowMultipleDataPointsSelection&&i.globals.selectedDataPoints.length>0){i.globals.selectedDataPoints=[];var b=i.globals.dom.Paper.select(".apexcharts-series path").members,M=i.globals.dom.Paper.select(".apexcharts-series circle, .apexcharts-series rect").members,z=function(N){Array.prototype.forEach.call(N,function(L){L.node.setAttribute("selected","false"),d.getDefaultFilter(L,u)})};z(b),z(M)}s.node.setAttribute("selected","true"),w="true",i.globals.selectedDataPoints[u]===void 0&&(i.globals.selectedDataPoints[u]=[]),i.globals.selectedDataPoints[u].push(p)}if(w==="true"){var y=i.config.states.active.filter;if(y!=="none")d.applyFilter(s,u,y.type,y.value);else if(i.config.states.hover.filter!=="none"&&!i.globals.isTouchDevice){var A=i.config.states.hover.filter;d.applyFilter(s,u,A.type,A.value)}}else i.config.states.active.filter.type!=="none"&&(i.config.states.hover.filter.type==="none"||i.globals.isTouchDevice?d.getDefaultFilter(s,u):(A=i.config.states.hover.filter,d.applyFilter(s,u,A.type,A.value)));typeof i.config.chart.events.dataPointSelection=="function"&&i.config.chart.events.dataPointSelection(a,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:u,dataPointIndex:p,w:i}),a&&this.ctx.events.fireEvent("dataPointSelection",[a,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:u,dataPointIndex:p,w:i}])}},{key:"rotateAroundCenter",value:function(s){var a={};return s&&typeof s.getBBox=="function"&&(a=s.getBBox()),{x:a.x+a.width/2,y:a.y+a.height/2}}},{key:"getTextRects",value:function(s,a,i,d){var u=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],p=this.w,w=this.drawText({x:-200,y:-200,text:s,textAnchor:"start",fontSize:a,fontFamily:i,foreColor:"#fff",opacity:0});d&&w.attr("transform",d),p.globals.dom.Paper.add(w);var f=w.bbox();return u||(f=w.node.getBoundingClientRect()),w.remove(),{width:f.width,height:f.height}}},{key:"placeTextWithEllipsis",value:function(s,a,i){if(typeof s.getComputedTextLength=="function"&&(s.textContent=a,a.length>0&&s.getComputedTextLength()>=i/1.1)){for(var d=a.length-3;d>0;d-=3)if(s.getSubStringLength(0,d)<=i/1.1)return void(s.textContent=a.substring(0,d)+"...");s.textContent="."}}}],[{key:"setAttrs",value:function(s,a){for(var i in a)a.hasOwnProperty(i)&&s.setAttribute(i,a[i])}}]),T}(),tt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"getStackedSeriesTotals",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=this.w,i=[];if(a.globals.series.length===0)return i;for(var d=0;d0&&arguments[0]!==void 0?arguments[0]:null;return s===null?this.w.config.series.reduce(function(a,i){return a+i},0):this.w.globals.series[s].reduce(function(a,i){return a+i},0)}},{key:"isSeriesNull",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null;return(s===null?this.w.config.series.filter(function(a){return a!==null}):this.w.config.series[s].data.filter(function(a){return a!==null})).length===0}},{key:"seriesHaveSameValues",value:function(s){return this.w.globals.series[s].every(function(a,i,d){return a===d[0]})}},{key:"getCategoryLabels",value:function(s){var a=this.w,i=s.slice();return a.config.xaxis.convertedCatToNumeric&&(i=s.map(function(d,u){return a.config.xaxis.labels.formatter(d-a.globals.minX+1)})),i}},{key:"getLargestSeries",value:function(){var s=this.w;s.globals.maxValsInArrayIndex=s.globals.series.map(function(a){return a.length}).indexOf(Math.max.apply(Math,s.globals.series.map(function(a){return a.length})))}},{key:"getLargestMarkerSize",value:function(){var s=this.w,a=0;return s.globals.markers.size.forEach(function(i){a=Math.max(a,i)}),s.config.markers.discrete&&s.config.markers.discrete.length&&s.config.markers.discrete.forEach(function(i){a=Math.max(a,i.size)}),a>0&&(a+=s.config.markers.hover.sizeOffset+1),s.globals.markers.largestSize=a,a}},{key:"getSeriesTotals",value:function(){var s=this.w;s.globals.seriesTotals=s.globals.series.map(function(a,i){var d=0;if(Array.isArray(a))for(var u=0;us&&i.globals.seriesX[u][w]0&&(a=!0),{comboBarCount:i,comboCharts:a}}},{key:"extendArrayProps",value:function(s,a,i){return a.yaxis&&(a=s.extendYAxis(a,i)),a.annotations&&(a.annotations.yaxis&&(a=s.extendYAxisAnnotations(a)),a.annotations.xaxis&&(a=s.extendXAxisAnnotations(a)),a.annotations.points&&(a=s.extendPointAnnotations(a))),a}}]),T}(),nt=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s}return k(T,[{key:"setOrientations",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,i=this.w;if(s.label.orientation==="vertical"){var d=a!==null?a:0,u=i.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(d,"']"));if(u!==null){var p=u.getBoundingClientRect();u.setAttribute("x",parseFloat(u.getAttribute("x"))-p.height+4),s.label.position==="top"?u.setAttribute("y",parseFloat(u.getAttribute("y"))+p.width):u.setAttribute("y",parseFloat(u.getAttribute("y"))-p.width);var w=this.annoCtx.graphics.rotateAroundCenter(u),f=w.x,b=w.y;u.setAttribute("transform","rotate(-90 ".concat(f," ").concat(b,")"))}}}},{key:"addBackgroundToAnno",value:function(s,a){var i=this.w;if(!s||a.label.text===void 0||a.label.text!==void 0&&!String(a.label.text).trim())return null;var d=i.globals.dom.baseEl.querySelector(".apexcharts-grid").getBoundingClientRect(),u=s.getBoundingClientRect(),p=a.label.style.padding.left,w=a.label.style.padding.right,f=a.label.style.padding.top,b=a.label.style.padding.bottom;a.label.orientation==="vertical"&&(f=a.label.style.padding.left,b=a.label.style.padding.right,p=a.label.style.padding.top,w=a.label.style.padding.bottom);var M=u.left-d.left-p,z=u.top-d.top-f,y=this.annoCtx.graphics.drawRect(M-i.globals.barPadForNumericAxis,z,u.width+p+w,u.height+f+b,a.label.borderRadius,a.label.style.background,1,a.label.borderWidth,a.label.borderColor,0);return a.id&&y.node.classList.add(a.id),y}},{key:"annotationsBackground",value:function(){var s=this,a=this.w,i=function(d,u,p){var w=a.globals.dom.baseEl.querySelector(".apexcharts-".concat(p,"-annotations .apexcharts-").concat(p,"-annotation-label[rel='").concat(u,"']"));if(w){var f=w.parentNode,b=s.addBackgroundToAnno(w,d);b&&(f.insertBefore(b.node,w),d.label.mouseEnter&&b.node.addEventListener("mouseenter",d.label.mouseEnter.bind(s,d)),d.label.mouseLeave&&b.node.addEventListener("mouseleave",d.label.mouseLeave.bind(s,d)),d.label.click&&b.node.addEventListener("click",d.label.click.bind(s,d)))}};a.config.annotations.xaxis.map(function(d,u){i(d,u,"xaxis")}),a.config.annotations.yaxis.map(function(d,u){i(d,u,"yaxis")}),a.config.annotations.points.map(function(d,u){i(d,u,"point")})}},{key:"getY1Y2",value:function(s,a){var i,d=s==="y1"?a.y:a.y2,u=this.w;if(this.annoCtx.invertAxis){var p=u.globals.labels.indexOf(d);u.config.xaxis.convertedCatToNumeric&&(p=u.globals.categoryLabels.indexOf(d));var w=u.globals.dom.baseEl.querySelector(".apexcharts-yaxis-texts-g text:nth-child("+(p+1)+")");w&&(i=parseFloat(w.getAttribute("y")))}else{var f;u.config.yaxis[a.yAxisIndex].logarithmic?f=(d=new tt(this.annoCtx.ctx).getLogVal(d,a.yAxisIndex))/u.globals.yLogRatio[a.yAxisIndex]:f=(d-u.globals.minYArr[a.yAxisIndex])/(u.globals.yRange[a.yAxisIndex]/u.globals.gridHeight),i=u.globals.gridHeight-f,!a.marker||a.y!==void 0&&a.y!==null||(i=0),u.config.yaxis[a.yAxisIndex]&&u.config.yaxis[a.yAxisIndex].reversed&&(i=f)}return typeof d=="string"&&d.indexOf("px")>-1&&(i=parseFloat(d)),i}},{key:"getX1X2",value:function(s,a){var i=this.w,d=this.annoCtx.invertAxis?i.globals.minY:i.globals.minX,u=this.annoCtx.invertAxis?i.globals.maxY:i.globals.maxX,p=this.annoCtx.invertAxis?i.globals.yRange[0]:i.globals.xRange,w=(a.x-d)/(p/i.globals.gridWidth);this.annoCtx.inversedReversedAxis&&(w=(u-a.x)/(p/i.globals.gridWidth)),i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||i.globals.dataFormatXNumeric||(w=this.getStringX(a.x));var f=(a.x2-d)/(p/i.globals.gridWidth);return this.annoCtx.inversedReversedAxis&&(f=(u-a.x2)/(p/i.globals.gridWidth)),i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric||this.annoCtx.invertAxis||i.globals.dataFormatXNumeric||(f=this.getStringX(a.x2)),a.x!==void 0&&a.x!==null||!a.marker||(w=i.globals.gridWidth),s==="x1"&&typeof a.x=="string"&&a.x.indexOf("px")>-1&&(w=parseFloat(a.x)),s==="x2"&&typeof a.x2=="string"&&a.x2.indexOf("px")>-1&&(f=parseFloat(a.x2)),s==="x1"?w:f}},{key:"getStringX",value:function(s){var a=this.w,i=s;a.config.xaxis.convertedCatToNumeric&&a.globals.categoryLabels.length&&(s=a.globals.categoryLabels.indexOf(s)+1);var d=a.globals.labels.indexOf(s),u=a.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(d+1)+")");return u&&(i=parseFloat(u.getAttribute("x"))),i}}]),T}(),Y=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s,this.invertAxis=this.annoCtx.invertAxis,this.helpers=new nt(this.annoCtx)}return k(T,[{key:"addXaxisAnnotation",value:function(s,a,i){var d,u=this.w,p=this.helpers.getX1X2("x1",s),w=s.label.text,f=s.strokeDashArray;if(H.isNumber(p)){if(s.x2===null||s.x2===void 0){var b=this.annoCtx.graphics.drawLine(p+s.offsetX,0+s.offsetY,p+s.offsetX,u.globals.gridHeight+s.offsetY,s.borderColor,f,s.borderWidth);a.appendChild(b.node),s.id&&b.node.classList.add(s.id)}else{if((d=this.helpers.getX1X2("x2",s))w){var M=w;w=d,d=M}var z=this.annoCtx.graphics.drawRect(0+s.offsetX,d+s.offsetY,this._getYAxisAnnotationWidth(s),w-d,0,s.fillColor,s.opacity,1,s.borderColor,p);z.node.classList.add("apexcharts-annotation-rect"),z.attr("clip-path","url(#gridRectMask".concat(u.globals.cuid,")")),a.appendChild(z.node),s.id&&z.node.classList.add(s.id)}var y=s.label.position==="right"?u.globals.gridWidth:s.label.position==="center"?u.globals.gridWidth/2:0,A=this.annoCtx.graphics.drawText({x:y+s.label.offsetX,y:(d??w)+s.label.offsetY-3,text:f,textAnchor:s.label.textAnchor,fontSize:s.label.style.fontSize,fontFamily:s.label.style.fontFamily,fontWeight:s.label.style.fontWeight,foreColor:s.label.style.color,cssClass:"apexcharts-yaxis-annotation-label ".concat(s.label.style.cssClass," ").concat(s.id?s.id:"")});A.attr({rel:i}),a.appendChild(A.node)}},{key:"_getYAxisAnnotationWidth",value:function(s){var a=this.w;return a.globals.gridWidth,(s.width.indexOf("%")>-1?a.globals.gridWidth*parseInt(s.width,10)/100:parseInt(s.width,10))+s.offsetX}},{key:"drawYAxisAnnotations",value:function(){var s=this,a=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-yaxis-annotations"});return a.config.annotations.yaxis.map(function(d,u){s.addYaxisAnnotation(d,i.node,u)}),i}}]),T}(),et=function(){function T(s){g(this,T),this.w=s.w,this.annoCtx=s,this.helpers=new nt(this.annoCtx)}return k(T,[{key:"addPointAnnotation",value:function(s,a,i){this.w;var d=this.helpers.getX1X2("x1",s),u=this.helpers.getY1Y2("y1",s);if(H.isNumber(d)){var p={pSize:s.marker.size,pointStrokeWidth:s.marker.strokeWidth,pointFillColor:s.marker.fillColor,pointStrokeColor:s.marker.strokeColor,shape:s.marker.shape,pRadius:s.marker.radius,class:"apexcharts-point-annotation-marker ".concat(s.marker.cssClass," ").concat(s.id?s.id:"")},w=this.annoCtx.graphics.drawMarker(d+s.marker.offsetX,u+s.marker.offsetY,p);a.appendChild(w.node);var f=s.label.text?s.label.text:"",b=this.annoCtx.graphics.drawText({x:d+s.label.offsetX,y:u+s.label.offsetY-s.marker.size-parseFloat(s.label.style.fontSize)/1.6,text:f,textAnchor:s.label.textAnchor,fontSize:s.label.style.fontSize,fontFamily:s.label.style.fontFamily,fontWeight:s.label.style.fontWeight,foreColor:s.label.style.color,cssClass:"apexcharts-point-annotation-label ".concat(s.label.style.cssClass," ").concat(s.id?s.id:"")});if(b.attr({rel:i}),a.appendChild(b.node),s.customSVG.SVG){var M=this.annoCtx.graphics.group({class:"apexcharts-point-annotations-custom-svg "+s.customSVG.cssClass});M.attr({transform:"translate(".concat(d+s.customSVG.offsetX,", ").concat(u+s.customSVG.offsetY,")")}),M.node.innerHTML=s.customSVG.SVG,a.appendChild(M.node)}if(s.image.path){var z=s.image.width?s.image.width:20,y=s.image.height?s.image.height:20;w=this.annoCtx.addImage({x:d+s.image.offsetX-z/2,y:u+s.image.offsetY-y/2,width:z,height:y,path:s.image.path,appendTo:".apexcharts-point-annotations"})}s.mouseEnter&&w.node.addEventListener("mouseenter",s.mouseEnter.bind(this,s)),s.mouseLeave&&w.node.addEventListener("mouseleave",s.mouseLeave.bind(this,s)),s.click&&w.node.addEventListener("click",s.click.bind(this,s))}}},{key:"drawPointAnnotations",value:function(){var s=this,a=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-point-annotations"});return a.config.annotations.points.map(function(d,u){s.addPointAnnotation(d,i.node,u)}),i}}]),T}(),st={name:"en",options:{months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],toolbar:{exportToSVG:"Download SVG",exportToPNG:"Download PNG",exportToCSV:"Download CSV",menu:"Menu",selection:"Selection",selectionZoom:"Selection Zoom",zoomIn:"Zoom In",zoomOut:"Zoom Out",pan:"Panning",reset:"Reset Zoom"}}},rt=function(){function T(){g(this,T),this.yAxis={show:!0,showAlways:!1,showForNullSeries:!0,seriesName:void 0,opposite:!1,reversed:!1,logarithmic:!1,logBase:10,tickAmount:void 0,forceNiceScale:!1,max:void 0,min:void 0,floating:!1,decimalsInFloat:void 0,labels:{show:!0,minWidth:0,maxWidth:160,offsetX:0,offsetY:0,align:void 0,rotate:0,padding:20,style:{colors:[],fontSize:"11px",fontWeight:400,fontFamily:void 0,cssClass:""},formatter:void 0},axisBorder:{show:!1,color:"#e0e0e0",width:1,offsetX:0,offsetY:0},axisTicks:{show:!1,color:"#e0e0e0",width:6,offsetX:0,offsetY:0},title:{text:void 0,rotate:-90,offsetY:0,offsetX:0,style:{color:void 0,fontSize:"11px",fontWeight:900,fontFamily:void 0,cssClass:""}},tooltip:{enabled:!1,offsetX:0},crosshairs:{show:!0,position:"front",stroke:{color:"#b6b6b6",width:1,dashArray:0}}},this.pointAnnotation={id:void 0,x:0,y:null,yAxisIndex:0,seriesIndex:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,marker:{size:4,fillColor:"#fff",strokeWidth:2,strokeColor:"#333",shape:"circle",offsetX:0,offsetY:0,radius:2,cssClass:""},label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}},customSVG:{SVG:void 0,cssClass:void 0,offsetX:0,offsetY:0},image:{path:void 0,width:20,height:20,offsetX:0,offsetY:0}},this.yAxisAnnotation={id:void 0,y:0,y2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,width:"100%",yAxisIndex:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"end",position:"right",offsetX:0,offsetY:-3,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.xAxisAnnotation={id:void 0,x:0,x2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",orientation:"vertical",position:"top",offsetX:0,offsetY:0,mouseEnter:void 0,mouseLeave:void 0,click:void 0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.text={x:0,y:0,text:"",textAnchor:"start",foreColor:void 0,fontSize:"13px",fontFamily:void 0,fontWeight:400,appendTo:".apexcharts-annotations",backgroundColor:"transparent",borderColor:"#c2c2c2",borderRadius:0,borderWidth:0,paddingLeft:4,paddingRight:4,paddingTop:2,paddingBottom:2}}return k(T,[{key:"init",value:function(){return{annotations:{yaxis:[this.yAxisAnnotation],xaxis:[this.xAxisAnnotation],points:[this.pointAnnotation],texts:[],images:[],shapes:[]},chart:{animations:{enabled:!0,easing:"easeinout",speed:800,animateGradually:{delay:150,enabled:!0},dynamicAnimation:{enabled:!0,speed:350}},background:"transparent",locales:[st],defaultLocale:"en",dropShadow:{enabled:!1,enabledOnSeries:void 0,top:2,left:2,blur:4,color:"#000",opacity:.35},events:{animationEnd:void 0,beforeMount:void 0,mounted:void 0,updated:void 0,click:void 0,mouseMove:void 0,mouseLeave:void 0,xAxisLabelClick:void 0,legendClick:void 0,markerClick:void 0,selection:void 0,dataPointSelection:void 0,dataPointMouseEnter:void 0,dataPointMouseLeave:void 0,beforeZoom:void 0,beforeResetZoom:void 0,zoomed:void 0,scrolled:void 0,brushScrolled:void 0},foreColor:"#373d3f",fontFamily:"Helvetica, Arial, sans-serif",height:"auto",parentHeightOffset:15,redrawOnParentResize:!0,redrawOnWindowResize:!0,id:void 0,group:void 0,offsetX:0,offsetY:0,selection:{enabled:!1,type:"x",fill:{color:"#24292e",opacity:.1},stroke:{width:1,color:"#24292e",opacity:.4,dashArray:3},xaxis:{min:void 0,max:void 0},yaxis:{min:void 0,max:void 0}},sparkline:{enabled:!1},brush:{enabled:!1,autoScaleYaxis:!0,target:void 0,targets:void 0},stacked:!1,stackType:"normal",toolbar:{show:!0,offsetX:0,offsetY:0,tools:{download:!0,selection:!0,zoom:!0,zoomin:!0,zoomout:!0,pan:!0,reset:!0,customIcons:[]},export:{csv:{filename:void 0,columnDelimiter:",",headerCategory:"category",headerValue:"value",dateFormatter:function(s){return new Date(s).toDateString()}},png:{filename:void 0},svg:{filename:void 0}},autoSelected:"zoom"},type:"line",width:"100%",zoom:{enabled:!0,type:"x",autoScaleYaxis:!1,zoomedArea:{fill:{color:"#90CAF9",opacity:.4},stroke:{color:"#0D47A1",opacity:.4,width:1}}}},plotOptions:{area:{fillTo:"origin"},bar:{horizontal:!1,columnWidth:"70%",barHeight:"70%",distributed:!1,borderRadius:0,borderRadiusApplication:"around",borderRadiusWhenStacked:"last",rangeBarOverlap:!0,rangeBarGroupRows:!1,hideZeroBarsWhenGrouped:!1,isDumbbell:!1,dumbbellColors:void 0,isFunnel:!1,isFunnel3d:!0,colors:{ranges:[],backgroundBarColors:[],backgroundBarOpacity:1,backgroundBarRadius:0},dataLabels:{position:"top",maxItems:100,hideOverflowingLabels:!0,orientation:"horizontal",total:{enabled:!1,formatter:void 0,offsetX:0,offsetY:0,style:{color:"#373d3f",fontSize:"12px",fontFamily:void 0,fontWeight:600}}}},bubble:{zScaling:!0,minBubbleRadius:void 0,maxBubbleRadius:void 0},candlestick:{colors:{upward:"#00B746",downward:"#EF403C"},wick:{useFillColor:!0}},boxPlot:{colors:{upper:"#00E396",lower:"#008FFB"}},heatmap:{radius:2,enableShades:!0,shadeIntensity:.5,reverseNegativeShade:!1,distributed:!1,useFillColorAsStroke:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},treemap:{enableShades:!0,shadeIntensity:.5,distributed:!1,reverseNegativeShade:!1,useFillColorAsStroke:!1,dataLabels:{format:"scale"},colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},radialBar:{inverseOrder:!1,startAngle:0,endAngle:360,offsetX:0,offsetY:0,hollow:{margin:5,size:"50%",background:"transparent",image:void 0,imageWidth:150,imageHeight:150,imageOffsetX:0,imageOffsetY:0,imageClipped:!0,position:"front",dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},track:{show:!0,startAngle:void 0,endAngle:void 0,background:"#f2f2f2",strokeWidth:"97%",opacity:1,margin:5,dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},dataLabels:{show:!0,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:0,formatter:function(s){return s}},value:{show:!0,fontSize:"14px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:16,formatter:function(s){return s+"%"}},total:{show:!1,label:"Total",fontSize:"16px",fontWeight:600,fontFamily:void 0,color:void 0,formatter:function(s){return s.globals.seriesTotals.reduce(function(a,i){return a+i},0)/s.globals.series.length+"%"}}}},pie:{customScale:1,offsetX:0,offsetY:0,startAngle:0,endAngle:360,expandOnClick:!0,dataLabels:{offset:0,minAngleToShowLabel:10},donut:{size:"65%",background:"transparent",labels:{show:!1,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:-10,formatter:function(s){return s}},value:{show:!0,fontSize:"20px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:10,formatter:function(s){return s}},total:{show:!1,showAlways:!1,label:"Total",fontSize:"16px",fontWeight:400,fontFamily:void 0,color:void 0,formatter:function(s){return s.globals.seriesTotals.reduce(function(a,i){return a+i},0)}}}}},polarArea:{rings:{strokeWidth:1,strokeColor:"#e8e8e8"},spokes:{strokeWidth:1,connectorColors:"#e8e8e8"}},radar:{size:void 0,offsetX:0,offsetY:0,polygons:{strokeWidth:1,strokeColors:"#e8e8e8",connectorColors:"#e8e8e8",fill:{colors:void 0}}}},colors:void 0,dataLabels:{enabled:!0,enabledOnSeries:void 0,formatter:function(s){return s!==null?s:""},textAnchor:"middle",distributed:!1,offsetX:0,offsetY:0,style:{fontSize:"12px",fontFamily:void 0,fontWeight:600,colors:void 0},background:{enabled:!0,foreColor:"#fff",borderRadius:2,padding:4,opacity:.9,borderWidth:1,borderColor:"#fff",dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]},image:{src:[],width:void 0,height:void 0},pattern:{style:"squares",width:6,height:6,strokeWidth:2}},forecastDataPoints:{count:0,fillOpacity:.5,strokeWidth:void 0,dashArray:4},grid:{show:!0,borderColor:"#e0e0e0",strokeDashArray:0,position:"back",xaxis:{lines:{show:!1}},yaxis:{lines:{show:!0}},row:{colors:void 0,opacity:.5},column:{colors:void 0,opacity:.5},padding:{top:0,right:10,bottom:0,left:12}},labels:[],legend:{show:!0,showForSingleSeries:!1,showForNullSeries:!0,showForZeroSeries:!0,floating:!1,position:"bottom",horizontalAlign:"center",inverseOrder:!1,fontSize:"12px",fontFamily:void 0,fontWeight:400,width:void 0,height:void 0,formatter:void 0,tooltipHoverFormatter:void 0,offsetX:-20,offsetY:4,customLegendItems:[],labels:{colors:void 0,useSeriesColors:!1},markers:{width:12,height:12,strokeWidth:0,fillColors:void 0,strokeColor:"#fff",radius:12,customHTML:void 0,offsetX:0,offsetY:0,onClick:void 0},itemMargin:{horizontal:5,vertical:2},onItemClick:{toggleDataSeries:!0},onItemHover:{highlightDataSeries:!0}},markers:{discrete:[],size:0,colors:void 0,strokeColors:"#fff",strokeWidth:2,strokeOpacity:.9,strokeDashArray:0,fillOpacity:1,shape:"circle",width:8,height:8,radius:2,offsetX:0,offsetY:0,onClick:void 0,onDblClick:void 0,showNullDataPoints:!0,hover:{size:void 0,sizeOffset:3}},noData:{text:void 0,align:"center",verticalAlign:"middle",offsetX:0,offsetY:0,style:{color:void 0,fontSize:"14px",fontFamily:void 0}},responsive:[],series:void 0,states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"lighten",value:.1}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"darken",value:.5}}},title:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:0,floating:!1,style:{fontSize:"14px",fontWeight:900,fontFamily:void 0,color:void 0}},subtitle:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:30,floating:!1,style:{fontSize:"12px",fontWeight:400,fontFamily:void 0,color:void 0}},stroke:{show:!0,curve:"smooth",lineCap:"butt",width:2,colors:void 0,dashArray:0,fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]}}},tooltip:{enabled:!0,enabledOnSeries:void 0,shared:!0,followCursor:!1,intersect:!1,inverseOrder:!1,custom:void 0,fillSeriesColor:!1,theme:"light",cssClass:"",style:{fontSize:"12px",fontFamily:void 0},onDatasetHover:{highlightDataSeries:!1},x:{show:!0,format:"dd MMM",formatter:void 0},y:{formatter:void 0,title:{formatter:function(s){return s?s+": ":""}}},z:{formatter:void 0,title:"Size: "},marker:{show:!0,fillColors:void 0},items:{display:"flex"},fixed:{enabled:!1,position:"topRight",offsetX:0,offsetY:0}},xaxis:{type:"category",categories:[],convertedCatToNumeric:!1,offsetX:0,offsetY:0,overwriteCategories:void 0,labels:{show:!0,rotate:-45,rotateAlways:!1,hideOverlappingLabels:!0,trim:!1,minHeight:void 0,maxHeight:120,showDuplicates:!0,style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""},offsetX:0,offsetY:0,format:void 0,formatter:void 0,datetimeUTC:!0,datetimeFormatter:{year:"yyyy",month:"MMM 'yy",day:"dd MMM",hour:"HH:mm",minute:"HH:mm:ss",second:"HH:mm:ss"}},group:{groups:[],style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""}},axisBorder:{show:!0,color:"#e0e0e0",width:"100%",height:1,offsetX:0,offsetY:0},axisTicks:{show:!0,color:"#e0e0e0",height:6,offsetX:0,offsetY:0},tickAmount:void 0,tickPlacement:"on",min:void 0,max:void 0,range:void 0,floating:!1,decimalsInFloat:void 0,position:"bottom",title:{text:void 0,offsetX:0,offsetY:0,style:{color:void 0,fontSize:"12px",fontWeight:900,fontFamily:void 0,cssClass:""}},crosshairs:{show:!0,width:1,position:"back",opacity:.9,stroke:{color:"#b6b6b6",width:1,dashArray:3},fill:{type:"solid",color:"#B1B9C4",gradient:{colorFrom:"#D8E3F0",colorTo:"#BED1E6",stops:[0,100],opacityFrom:.4,opacityTo:.5}},dropShadow:{enabled:!1,left:0,top:0,blur:1,opacity:.4}},tooltip:{enabled:!0,offsetY:0,formatter:void 0,style:{fontSize:"12px",fontFamily:void 0}}},yaxis:this.yAxis,theme:{mode:"light",palette:"palette1",monochrome:{enabled:!1,color:"#008FFB",shadeTo:"light",shadeIntensity:.65}}}}}]),T}(),ht=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.graphics=new _(this.ctx),this.w.globals.isBarHorizontal&&(this.invertAxis=!0),this.helpers=new nt(this),this.xAxisAnnotations=new Y(this),this.yAxisAnnotations=new G(this),this.pointsAnnotations=new et(this),this.w.globals.isBarHorizontal&&this.w.config.yaxis[0].reversed&&(this.inversedReversedAxis=!0),this.xDivision=this.w.globals.gridWidth/this.w.globals.dataPoints}return k(T,[{key:"drawAxesAnnotations",value:function(){var s=this.w;if(s.globals.axisCharts){for(var a=this.yAxisAnnotations.drawYAxisAnnotations(),i=this.xAxisAnnotations.drawXAxisAnnotations(),d=this.pointsAnnotations.drawPointAnnotations(),u=s.config.chart.animations.enabled,p=[a,i,d],w=[i.node,a.node,d.node],f=0;f<3;f++)s.globals.dom.elGraphical.add(p[f]),!u||s.globals.resized||s.globals.dataChanged||s.config.chart.type!=="scatter"&&s.config.chart.type!=="bubble"&&s.globals.dataPoints>1&&w[f].classList.add("apexcharts-element-hidden"),s.globals.delayedElements.push({el:w[f],index:0});this.helpers.annotationsBackground()}}},{key:"drawImageAnnos",value:function(){var s=this;this.w.config.annotations.images.map(function(a,i){s.addImage(a,i)})}},{key:"drawTextAnnos",value:function(){var s=this;this.w.config.annotations.texts.map(function(a,i){s.addText(a,i)})}},{key:"addXaxisAnnotation",value:function(s,a,i){this.xAxisAnnotations.addXaxisAnnotation(s,a,i)}},{key:"addYaxisAnnotation",value:function(s,a,i){this.yAxisAnnotations.addYaxisAnnotation(s,a,i)}},{key:"addPointAnnotation",value:function(s,a,i){this.pointsAnnotations.addPointAnnotation(s,a,i)}},{key:"addText",value:function(s,a){var i=s.x,d=s.y,u=s.text,p=s.textAnchor,w=s.foreColor,f=s.fontSize,b=s.fontFamily,M=s.fontWeight,z=s.cssClass,y=s.backgroundColor,A=s.borderWidth,N=s.strokeDashArray,L=s.borderRadius,O=s.borderColor,V=s.appendTo,Z=V===void 0?".apexcharts-annotations":V,m=s.paddingLeft,C=m===void 0?4:m,j=s.paddingRight,E=j===void 0?4:j,K=s.paddingBottom,Q=K===void 0?2:K,ot=s.paddingTop,it=ot===void 0?2:ot,vt=this.w,zt=this.graphics.drawText({x:i,y:d,text:u,textAnchor:p||"start",fontSize:f||"12px",fontWeight:M||"regular",fontFamily:b||vt.config.chart.fontFamily,foreColor:w||vt.config.chart.foreColor,cssClass:z}),Mt=vt.globals.dom.baseEl.querySelector(Z);Mt&&Mt.appendChild(zt.node);var Vt=zt.bbox();if(u){var Yt=this.graphics.drawRect(Vt.x-C,Vt.y-it,Vt.width+C+E,Vt.height+Q+it,L,y||"transparent",1,A,O,N);Mt.insertBefore(Yt.node,zt.node)}}},{key:"addImage",value:function(s,a){var i=this.w,d=s.path,u=s.x,p=u===void 0?0:u,w=s.y,f=w===void 0?0:w,b=s.width,M=b===void 0?20:b,z=s.height,y=z===void 0?20:z,A=s.appendTo,N=A===void 0?".apexcharts-annotations":A,L=i.globals.dom.Paper.image(d);L.size(M,y).move(p,f);var O=i.globals.dom.baseEl.querySelector(N);return O&&O.appendChild(L.node),L}},{key:"addXaxisAnnotationExternal",value:function(s,a,i){return this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"xaxis",contextMethod:i.addXaxisAnnotation}),i}},{key:"addYaxisAnnotationExternal",value:function(s,a,i){return this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"yaxis",contextMethod:i.addYaxisAnnotation}),i}},{key:"addPointAnnotationExternal",value:function(s,a,i){return this.invertAxis===void 0&&(this.invertAxis=i.w.globals.isBarHorizontal),this.addAnnotationExternal({params:s,pushToMemory:a,context:i,type:"point",contextMethod:i.addPointAnnotation}),i}},{key:"addAnnotationExternal",value:function(s){var a=s.params,i=s.pushToMemory,d=s.context,u=s.type,p=s.contextMethod,w=d,f=w.w,b=f.globals.dom.baseEl.querySelector(".apexcharts-".concat(u,"-annotations")),M=b.childNodes.length+1,z=new rt,y=Object.assign({},u==="xaxis"?z.xAxisAnnotation:u==="yaxis"?z.yAxisAnnotation:z.pointAnnotation),A=H.extend(y,a);switch(u){case"xaxis":this.addXaxisAnnotation(A,b,M);break;case"yaxis":this.addYaxisAnnotation(A,b,M);break;case"point":this.addPointAnnotation(A,b,M)}var N=f.globals.dom.baseEl.querySelector(".apexcharts-".concat(u,"-annotations .apexcharts-").concat(u,"-annotation-label[rel='").concat(M,"']")),L=this.helpers.addBackgroundToAnno(N,A);return L&&b.insertBefore(L.node,N),i&&f.globals.memory.methodsToExec.push({context:w,id:A.id?A.id:H.randomId(),method:p,label:"addAnnotation",params:a}),d}},{key:"clearAnnotations",value:function(s){var a=s.w,i=a.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations");a.globals.memory.methodsToExec.map(function(d,u){d.label!=="addText"&&d.label!=="addAnnotation"||a.globals.memory.methodsToExec.splice(u,1)}),i=H.listToArray(i),Array.prototype.forEach.call(i,function(d){for(;d.firstChild;)d.removeChild(d.firstChild)})}},{key:"removeAnnotation",value:function(s,a){var i=s.w,d=i.globals.dom.baseEl.querySelectorAll(".".concat(a));d&&(i.globals.memory.methodsToExec.map(function(u,p){u.id===a&&i.globals.memory.methodsToExec.splice(p,1)}),Array.prototype.forEach.call(d,function(u){u.parentElement.removeChild(u)}))}}]),T}(),dt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.months31=[1,3,5,7,8,10,12],this.months30=[2,4,6,9,11],this.daysCntOfYear=[0,31,59,90,120,151,181,212,243,273,304,334]}return k(T,[{key:"isValidDate",value:function(s){return!isNaN(this.parseDate(s))}},{key:"getTimeStamp",value:function(s){return Date.parse(s)?this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(s).toISOString().substr(0,25)).getTime():new Date(s).getTime():s}},{key:"getDate",value:function(s){return this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(s).toUTCString()):new Date(s)}},{key:"parseDate",value:function(s){var a=Date.parse(s);if(!isNaN(a))return this.getTimeStamp(s);var i=Date.parse(s.replace(/-/g,"/").replace(/[a-z]+/gi," "));return i=this.getTimeStamp(i)}},{key:"parseDateWithTimezone",value:function(s){return Date.parse(s.replace(/-/g,"/").replace(/[a-z]+/gi," "))}},{key:"formatDate",value:function(s,a){var i=this.w.globals.locale,d=this.w.config.xaxis.labels.datetimeUTC,u=["\0"].concat(F(i.months)),p=[""].concat(F(i.shortMonths)),w=[""].concat(F(i.days)),f=[""].concat(F(i.shortDays));function b(Q,ot){var it=Q+"";for(ot=ot||2;it.length12?A-12:A===0?12:A;a=(a=(a=(a=a.replace(/(^|[^\\])HH+/g,"$1"+b(A))).replace(/(^|[^\\])H/g,"$1"+A)).replace(/(^|[^\\])hh+/g,"$1"+b(N))).replace(/(^|[^\\])h/g,"$1"+N);var L=d?s.getUTCMinutes():s.getMinutes();a=(a=a.replace(/(^|[^\\])mm+/g,"$1"+b(L))).replace(/(^|[^\\])m/g,"$1"+L);var O=d?s.getUTCSeconds():s.getSeconds();a=(a=a.replace(/(^|[^\\])ss+/g,"$1"+b(O))).replace(/(^|[^\\])s/g,"$1"+O);var V=d?s.getUTCMilliseconds():s.getMilliseconds();a=a.replace(/(^|[^\\])fff+/g,"$1"+b(V,3)),V=Math.round(V/10),a=a.replace(/(^|[^\\])ff/g,"$1"+b(V)),V=Math.round(V/10);var Z=A<12?"AM":"PM";a=(a=(a=a.replace(/(^|[^\\])f/g,"$1"+V)).replace(/(^|[^\\])TT+/g,"$1"+Z)).replace(/(^|[^\\])T/g,"$1"+Z.charAt(0));var m=Z.toLowerCase();a=(a=a.replace(/(^|[^\\])tt+/g,"$1"+m)).replace(/(^|[^\\])t/g,"$1"+m.charAt(0));var C=-s.getTimezoneOffset(),j=d||!C?"Z":C>0?"+":"-";if(!d){var E=(C=Math.abs(C))%60;j+=b(Math.floor(C/60))+":"+b(E)}a=a.replace(/(^|[^\\])K/g,"$1"+j);var K=(d?s.getUTCDay():s.getDay())+1;return a=(a=(a=(a=(a=a.replace(new RegExp(w[0],"g"),w[K])).replace(new RegExp(f[0],"g"),f[K])).replace(new RegExp(u[0],"g"),u[z])).replace(new RegExp(p[0],"g"),p[z])).replace(/\\(.)/g,"$1")}},{key:"getTimeUnitsfromTimestamp",value:function(s,a,i){var d=this.w;d.config.xaxis.min!==void 0&&(s=d.config.xaxis.min),d.config.xaxis.max!==void 0&&(a=d.config.xaxis.max);var u=this.getDate(s),p=this.getDate(a),w=this.formatDate(u,"yyyy MM dd HH mm ss fff").split(" "),f=this.formatDate(p,"yyyy MM dd HH mm ss fff").split(" ");return{minMillisecond:parseInt(w[6],10),maxMillisecond:parseInt(f[6],10),minSecond:parseInt(w[5],10),maxSecond:parseInt(f[5],10),minMinute:parseInt(w[4],10),maxMinute:parseInt(f[4],10),minHour:parseInt(w[3],10),maxHour:parseInt(f[3],10),minDate:parseInt(w[2],10),maxDate:parseInt(f[2],10),minMonth:parseInt(w[1],10)-1,maxMonth:parseInt(f[1],10)-1,minYear:parseInt(w[0],10),maxYear:parseInt(f[0],10)}}},{key:"isLeapYear",value:function(s){return s%4==0&&s%100!=0||s%400==0}},{key:"calculcateLastDaysOfMonth",value:function(s,a,i){return this.determineDaysOfMonths(s,a)-i}},{key:"determineDaysOfYear",value:function(s){var a=365;return this.isLeapYear(s)&&(a=366),a}},{key:"determineRemainingDaysOfYear",value:function(s,a,i){var d=this.daysCntOfYear[a]+i;return a>1&&this.isLeapYear()&&d++,d}},{key:"determineDaysOfMonths",value:function(s,a){var i=30;switch(s=H.monthMod(s),!0){case this.months30.indexOf(s)>-1:s===2&&(i=this.isLeapYear(a)?29:28);break;case this.months31.indexOf(s)>-1:default:i=31}return i}}]),T}(),Ct=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.tooltipKeyFormat="dd MMM"}return k(T,[{key:"xLabelFormat",value:function(s,a,i,d){var u=this.w;if(u.config.xaxis.type==="datetime"&&u.config.xaxis.labels.formatter===void 0&&u.config.tooltip.x.formatter===void 0){var p=new dt(this.ctx);return p.formatDate(p.getDate(a),u.config.tooltip.x.format)}return s(a,i,d)}},{key:"defaultGeneralFormatter",value:function(s){return Array.isArray(s)?s.map(function(a){return a}):s}},{key:"defaultYFormatter",value:function(s,a,i){var d=this.w;return H.isNumber(s)&&(s=d.globals.yValueDecimal!==0?s.toFixed(a.decimalsInFloat!==void 0?a.decimalsInFloat:d.globals.yValueDecimal):d.globals.maxYArr[i]-d.globals.minYArr[i]<5?s.toFixed(1):s.toFixed(0)),s}},{key:"setLabelFormatters",value:function(){var s=this,a=this.w;return a.globals.xaxisTooltipFormatter=function(i){return s.defaultGeneralFormatter(i)},a.globals.ttKeyFormatter=function(i){return s.defaultGeneralFormatter(i)},a.globals.ttZFormatter=function(i){return i},a.globals.legendFormatter=function(i){return s.defaultGeneralFormatter(i)},a.config.xaxis.labels.formatter!==void 0?a.globals.xLabelFormatter=a.config.xaxis.labels.formatter:a.globals.xLabelFormatter=function(i){if(H.isNumber(i)){if(!a.config.xaxis.convertedCatToNumeric&&a.config.xaxis.type==="numeric"){if(H.isNumber(a.config.xaxis.decimalsInFloat))return i.toFixed(a.config.xaxis.decimalsInFloat);var d=a.globals.maxX-a.globals.minX;return d>0&&d<100?i.toFixed(1):i.toFixed(0)}return a.globals.isBarHorizontal&&a.globals.maxY-a.globals.minYArr<4?i.toFixed(1):i.toFixed(0)}return i},typeof a.config.tooltip.x.formatter=="function"?a.globals.ttKeyFormatter=a.config.tooltip.x.formatter:a.globals.ttKeyFormatter=a.globals.xLabelFormatter,typeof a.config.xaxis.tooltip.formatter=="function"&&(a.globals.xaxisTooltipFormatter=a.config.xaxis.tooltip.formatter),(Array.isArray(a.config.tooltip.y)||a.config.tooltip.y.formatter!==void 0)&&(a.globals.ttVal=a.config.tooltip.y),a.config.tooltip.z.formatter!==void 0&&(a.globals.ttZFormatter=a.config.tooltip.z.formatter),a.config.legend.formatter!==void 0&&(a.globals.legendFormatter=a.config.legend.formatter),a.config.yaxis.forEach(function(i,d){i.labels.formatter!==void 0?a.globals.yLabelFormatters[d]=i.labels.formatter:a.globals.yLabelFormatters[d]=function(u){return a.globals.xyCharts?Array.isArray(u)?u.map(function(p){return s.defaultYFormatter(p,i,d)}):s.defaultYFormatter(u,i,d):u}}),a.globals}},{key:"heatmapLabelFormatters",value:function(){var s=this.w;if(s.config.chart.type==="heatmap"){s.globals.yAxisScale[0].result=s.globals.seriesNames.slice();var a=s.globals.seriesNames.reduce(function(i,d){return i.length>d.length?i:d},0);s.globals.yAxisScale[0].niceMax=a,s.globals.yAxisScale[0].niceMin=a}}}]),T}(),xt=function(T){var s,a=T.isTimeline,i=T.ctx,d=T.seriesIndex,u=T.dataPointIndex,p=T.y1,w=T.y2,f=T.w,b=f.globals.seriesRangeStart[d][u],M=f.globals.seriesRangeEnd[d][u],z=f.globals.labels[u],y=f.config.series[d].name?f.config.series[d].name:"",A=f.globals.ttKeyFormatter,N=f.config.tooltip.y.title.formatter,L={w:f,seriesIndex:d,dataPointIndex:u,start:b,end:M};typeof N=="function"&&(y=N(y,L)),(s=f.config.series[d].data[u])!==null&&s!==void 0&&s.x&&(z=f.config.series[d].data[u].x),a||f.config.xaxis.type==="datetime"&&(z=new Ct(i).xLabelFormat(f.globals.ttKeyFormatter,z,z,{i:void 0,dateFormatter:new dt(i).formatDate,w:f})),typeof A=="function"&&(z=A(z,L)),Number.isFinite(p)&&Number.isFinite(w)&&(b=p,M=w);var O="",V="",Z=f.globals.colors[d];if(f.config.tooltip.x.formatter===void 0)if(f.config.xaxis.type==="datetime"){var m=new dt(i);O=m.formatDate(m.getDate(b),f.config.tooltip.x.format),V=m.formatDate(m.getDate(M),f.config.tooltip.x.format)}else O=b,V=M;else O=f.config.tooltip.x.formatter(b),V=f.config.tooltip.x.formatter(M);return{start:b,end:M,startVal:O,endVal:V,ylabel:z,color:Z,seriesName:y}},wt=function(T){var s=T.color,a=T.seriesName,i=T.ylabel,d=T.start,u=T.end,p=T.seriesIndex,w=T.dataPointIndex,f=T.ctx.tooltip.tooltipLabels.getFormatters(p);d=f.yLbFormatter(d),u=f.yLbFormatter(u);var b=f.yLbFormatter(T.w.globals.series[p][w]),M=` `.concat(d,` - - `).concat(c,` - `);return'
    '+(a||"")+'
    '+i+": "+(T.w.globals.comboCharts?T.w.config.series[p].type==="rangeArea"||T.w.config.series[p].type==="rangeBar"?M:"".concat(k,""):M)+"
    "},gt=function(){function T(s){g(this,T),this.opts=s}return b(T,[{key:"hideYAxis",value:function(){this.opts.yaxis[0].show=!1,this.opts.yaxis[0].title.text="",this.opts.yaxis[0].axisBorder.show=!1,this.opts.yaxis[0].axisTicks.show=!1,this.opts.yaxis[0].floating=!0}},{key:"line",value:function(){return{chart:{animations:{easing:"swing"}},dataLabels:{enabled:!1},stroke:{width:5,curve:"straight"},markers:{size:0,hover:{sizeOffset:6}},xaxis:{crosshairs:{width:1}}}}},{key:"sparkline",value:function(s){return this.hideYAxis(),H.extend(s,{grid:{show:!1,padding:{left:0,right:0,top:0,bottom:0}},legend:{show:!1},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}},chart:{toolbar:{show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1}})}},{key:"bar",value:function(){return{chart:{stacked:!1,animations:{easing:"swing"}},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{style:{colors:["#fff"]},background:{enabled:!1}},stroke:{width:0,lineCap:"round"},fill:{opacity:.85},legend:{markers:{shape:"square",radius:2,size:8}},tooltip:{shared:!1,intersect:!0},xaxis:{tooltip:{enabled:!1},tickPlacement:"between",crosshairs:{width:"barWidth",position:"back",fill:{type:"gradient"},dropShadow:{enabled:!1},stroke:{width:0}}}}}},{key:"funnel",value:function(){return this.hideYAxis(),h(h({},this.bar()),{},{chart:{animations:{easing:"linear",speed:800,animateGradually:{enabled:!1}}},plotOptions:{bar:{horizontal:!0,borderRadiusApplication:"around",borderRadius:0,dataLabels:{position:"center"}}},grid:{show:!1,padding:{left:0,right:0}},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}}})}},{key:"candlestick",value:function(){var s=this;return{stroke:{width:1,colors:["#333"]},fill:{opacity:1},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(a){var i=a.seriesIndex,d=a.dataPointIndex,c=a.w;return s._getBoxTooltip(c,i,d,["Open","High","","Low","Close"],"candlestick")}},states:{active:{filter:{type:"none"}}},xaxis:{crosshairs:{width:1}}}}},{key:"boxPlot",value:function(){var s=this;return{chart:{animations:{dynamicAnimation:{enabled:!1}}},stroke:{width:1,colors:["#24292e"]},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(a){var i=a.seriesIndex,d=a.dataPointIndex,c=a.w;return s._getBoxTooltip(c,i,d,["Minimum","Q1","Median","Q3","Maximum"],"boxPlot")}},markers:{size:5,strokeWidth:1,strokeColors:"#111"},xaxis:{crosshairs:{width:1}}}}},{key:"rangeBar",value:function(){return{chart:{animations:{animateGradually:!1}},stroke:{width:0,lineCap:"square"},plotOptions:{bar:{borderRadius:0,dataLabels:{position:"center"}}},dataLabels:{enabled:!1,formatter:function(s,a){a.ctx;var i=a.seriesIndex,d=a.dataPointIndex,c=a.w,p=function(){var w=c.globals.seriesRangeStart[i][d];return c.globals.seriesRangeEnd[i][d]-w};return c.globals.comboCharts?c.config.series[i].type==="rangeBar"||c.config.series[i].type==="rangeArea"?p():s:p()},background:{enabled:!1},style:{colors:["#fff"]}},markers:{size:10},tooltip:{shared:!1,followCursor:!0,custom:function(s){return s.w.config.plotOptions&&s.w.config.plotOptions.bar&&s.w.config.plotOptions.bar.horizontal?function(a){var i=xt(h(h({},a),{},{isTimeline:!0})),d=i.color,c=i.seriesName,p=i.ylabel,w=i.startVal,f=i.endVal;return wt(h(h({},a),{},{color:d,seriesName:c,ylabel:p,start:w,end:f}))}(s):function(a){var i=xt(a),d=i.color,c=i.seriesName,p=i.ylabel,w=i.start,f=i.end;return wt(h(h({},a),{},{color:d,seriesName:c,ylabel:p,start:w,end:f}))}(s)}},xaxis:{tickPlacement:"between",tooltip:{enabled:!1},crosshairs:{stroke:{width:0}}}}}},{key:"dumbbell",value:function(s){var a,i;return(a=s.plotOptions.bar)!==null&&a!==void 0&&a.barHeight||(s.plotOptions.bar.barHeight=2),(i=s.plotOptions.bar)!==null&&i!==void 0&&i.columnWidth||(s.plotOptions.bar.columnWidth=2),s}},{key:"area",value:function(){return{stroke:{width:4,fill:{type:"solid",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}}},fill:{type:"gradient",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}},markers:{size:0,hover:{sizeOffset:6}},tooltip:{followCursor:!1}}}},{key:"rangeArea",value:function(){return{stroke:{curve:"straight",width:0},fill:{type:"solid",opacity:.6},markers:{size:0},states:{hover:{filter:{type:"none"}},active:{filter:{type:"none"}}},tooltip:{intersect:!1,shared:!0,followCursor:!0,custom:function(s){return function(a){var i=xt(a),d=i.color,c=i.seriesName,p=i.ylabel,w=i.start,f=i.end;return wt(h(h({},a),{},{color:d,seriesName:c,ylabel:p,start:w,end:f}))}(s)}}}}},{key:"brush",value:function(s){return H.extend(s,{chart:{toolbar:{autoSelected:"selection",show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1},stroke:{width:1},tooltip:{enabled:!1},xaxis:{tooltip:{enabled:!1}}})}},{key:"stacked100",value:function(s){s.dataLabels=s.dataLabels||{},s.dataLabels.formatter=s.dataLabels.formatter||void 0;var a=s.dataLabels.formatter;return s.yaxis.forEach(function(i,d){s.yaxis[d].min=0,s.yaxis[d].max=100}),s.chart.type==="bar"&&(s.dataLabels.formatter=a||function(i){return typeof i=="number"&&i?i.toFixed(0)+"%":i}),s}},{key:"stackedBars",value:function(){var s=this.bar();return h(h({},s),{},{plotOptions:h(h({},s.plotOptions),{},{bar:h(h({},s.plotOptions.bar),{},{borderRadiusApplication:"end",borderRadiusWhenStacked:"last"})})})}},{key:"convertCatToNumeric",value:function(s){return s.xaxis.convertedCatToNumeric=!0,s}},{key:"convertCatToNumericXaxis",value:function(s,a,i){s.xaxis.type="numeric",s.xaxis.labels=s.xaxis.labels||{},s.xaxis.labels.formatter=s.xaxis.labels.formatter||function(p){return H.isNumber(p)?Math.floor(p):p};var d=s.xaxis.labels.formatter,c=s.xaxis.categories&&s.xaxis.categories.length?s.xaxis.categories:s.labels;return i&&i.length&&(c=i.map(function(p){return Array.isArray(p)?p:String(p)})),c&&c.length&&(s.xaxis.labels.formatter=function(p){return H.isNumber(p)?d(c[Math.floor(p)-1]):d(p)}),s.xaxis.categories=[],s.labels=[],s.xaxis.tickAmount=s.xaxis.tickAmount||"dataPoints",s}},{key:"bubble",value:function(){return{dataLabels:{style:{colors:["#fff"]}},tooltip:{shared:!1,intersect:!0},xaxis:{crosshairs:{width:0}},fill:{type:"solid",gradient:{shade:"light",inverse:!0,shadeIntensity:.55,opacityFrom:.4,opacityTo:.8}}}}},{key:"scatter",value:function(){return{dataLabels:{enabled:!1},tooltip:{shared:!1,intersect:!0},markers:{size:6,strokeWidth:1,hover:{sizeOffset:2}}}}},{key:"heatmap",value:function(){return{chart:{stacked:!1},fill:{opacity:1},dataLabels:{style:{colors:["#fff"]}},stroke:{colors:["#fff"]},tooltip:{followCursor:!0,marker:{show:!1},x:{show:!1}},legend:{position:"top",markers:{shape:"square",size:10,offsetY:2}},grid:{padding:{right:20}}}}},{key:"treemap",value:function(){return{chart:{zoom:{enabled:!1}},dataLabels:{style:{fontSize:14,fontWeight:600,colors:["#fff"]}},stroke:{show:!0,width:2,colors:["#fff"]},legend:{show:!1},fill:{gradient:{stops:[0,100]}},tooltip:{followCursor:!0,x:{show:!1}},grid:{padding:{left:0,right:0}},xaxis:{crosshairs:{show:!1},tooltip:{enabled:!1}}}}},{key:"pie",value:function(){return{chart:{toolbar:{show:!1}},plotOptions:{pie:{donut:{labels:{show:!1}}}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",stops:[0,100]}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"donut",value:function(){return{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",shadeIntensity:.35,stops:[80,100],opacityFrom:1,opacityTo:1}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"polarArea",value:function(){return this.opts.yaxis[0].tickAmount=this.opts.yaxis[0].tickAmount?this.opts.yaxis[0].tickAmount:6,{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},enabled:!1},stroke:{show:!0,width:2},fill:{opacity:.7},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"radar",value:function(){return this.opts.yaxis[0].labels.offsetY=this.opts.yaxis[0].labels.offsetY?this.opts.yaxis[0].labels.offsetY:6,{dataLabels:{enabled:!1,style:{fontSize:"11px"}},stroke:{width:2},markers:{size:3,strokeWidth:1,strokeOpacity:1},fill:{opacity:.2},tooltip:{shared:!1,intersect:!0,followCursor:!0},grid:{show:!1},xaxis:{labels:{formatter:function(s){return s},style:{colors:["#a8a8a8"],fontSize:"11px"}},tooltip:{enabled:!1},crosshairs:{show:!1}}}}},{key:"radialBar",value:function(){return{chart:{animations:{dynamicAnimation:{enabled:!0,speed:800}},toolbar:{show:!1}},fill:{gradient:{shade:"dark",shadeIntensity:.4,inverseColors:!1,type:"diagonal2",opacityFrom:1,opacityTo:1,stops:[70,98,100]}},legend:{show:!1,position:"right"},tooltip:{enabled:!1,fillSeriesColor:!0}}}},{key:"_getBoxTooltip",value:function(s,a,i,d,c){var p=s.globals.seriesCandleO[a][i],w=s.globals.seriesCandleH[a][i],f=s.globals.seriesCandleM[a][i],k=s.globals.seriesCandleL[a][i],M=s.globals.seriesCandleC[a][i];return s.config.series[a].type&&s.config.series[a].type!==c?`
    + `).concat(u,` + `);return'
    '+(a||"")+'
    '+i+": "+(T.w.globals.comboCharts?T.w.config.series[p].type==="rangeArea"||T.w.config.series[p].type==="rangeBar"?M:"".concat(b,""):M)+"
    "},gt=function(){function T(s){g(this,T),this.opts=s}return k(T,[{key:"hideYAxis",value:function(){this.opts.yaxis[0].show=!1,this.opts.yaxis[0].title.text="",this.opts.yaxis[0].axisBorder.show=!1,this.opts.yaxis[0].axisTicks.show=!1,this.opts.yaxis[0].floating=!0}},{key:"line",value:function(){return{chart:{animations:{easing:"swing"}},dataLabels:{enabled:!1},stroke:{width:5,curve:"straight"},markers:{size:0,hover:{sizeOffset:6}},xaxis:{crosshairs:{width:1}}}}},{key:"sparkline",value:function(s){return this.hideYAxis(),H.extend(s,{grid:{show:!1,padding:{left:0,right:0,top:0,bottom:0}},legend:{show:!1},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}},chart:{toolbar:{show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1}})}},{key:"bar",value:function(){return{chart:{stacked:!1,animations:{easing:"swing"}},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{style:{colors:["#fff"]},background:{enabled:!1}},stroke:{width:0,lineCap:"round"},fill:{opacity:.85},legend:{markers:{shape:"square",radius:2,size:8}},tooltip:{shared:!1,intersect:!0},xaxis:{tooltip:{enabled:!1},tickPlacement:"between",crosshairs:{width:"barWidth",position:"back",fill:{type:"gradient"},dropShadow:{enabled:!1},stroke:{width:0}}}}}},{key:"funnel",value:function(){return this.hideYAxis(),h(h({},this.bar()),{},{chart:{animations:{easing:"linear",speed:800,animateGradually:{enabled:!1}}},plotOptions:{bar:{horizontal:!0,borderRadiusApplication:"around",borderRadius:0,dataLabels:{position:"center"}}},grid:{show:!1,padding:{left:0,right:0}},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}}})}},{key:"candlestick",value:function(){var s=this;return{stroke:{width:1,colors:["#333"]},fill:{opacity:1},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(a){var i=a.seriesIndex,d=a.dataPointIndex,u=a.w;return s._getBoxTooltip(u,i,d,["Open","High","","Low","Close"],"candlestick")}},states:{active:{filter:{type:"none"}}},xaxis:{crosshairs:{width:1}}}}},{key:"boxPlot",value:function(){var s=this;return{chart:{animations:{dynamicAnimation:{enabled:!1}}},stroke:{width:1,colors:["#24292e"]},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(a){var i=a.seriesIndex,d=a.dataPointIndex,u=a.w;return s._getBoxTooltip(u,i,d,["Minimum","Q1","Median","Q3","Maximum"],"boxPlot")}},markers:{size:5,strokeWidth:1,strokeColors:"#111"},xaxis:{crosshairs:{width:1}}}}},{key:"rangeBar",value:function(){return{chart:{animations:{animateGradually:!1}},stroke:{width:0,lineCap:"square"},plotOptions:{bar:{borderRadius:0,dataLabels:{position:"center"}}},dataLabels:{enabled:!1,formatter:function(s,a){a.ctx;var i=a.seriesIndex,d=a.dataPointIndex,u=a.w,p=function(){var w=u.globals.seriesRangeStart[i][d];return u.globals.seriesRangeEnd[i][d]-w};return u.globals.comboCharts?u.config.series[i].type==="rangeBar"||u.config.series[i].type==="rangeArea"?p():s:p()},background:{enabled:!1},style:{colors:["#fff"]}},markers:{size:10},tooltip:{shared:!1,followCursor:!0,custom:function(s){return s.w.config.plotOptions&&s.w.config.plotOptions.bar&&s.w.config.plotOptions.bar.horizontal?function(a){var i=xt(h(h({},a),{},{isTimeline:!0})),d=i.color,u=i.seriesName,p=i.ylabel,w=i.startVal,f=i.endVal;return wt(h(h({},a),{},{color:d,seriesName:u,ylabel:p,start:w,end:f}))}(s):function(a){var i=xt(a),d=i.color,u=i.seriesName,p=i.ylabel,w=i.start,f=i.end;return wt(h(h({},a),{},{color:d,seriesName:u,ylabel:p,start:w,end:f}))}(s)}},xaxis:{tickPlacement:"between",tooltip:{enabled:!1},crosshairs:{stroke:{width:0}}}}}},{key:"dumbbell",value:function(s){var a,i;return(a=s.plotOptions.bar)!==null&&a!==void 0&&a.barHeight||(s.plotOptions.bar.barHeight=2),(i=s.plotOptions.bar)!==null&&i!==void 0&&i.columnWidth||(s.plotOptions.bar.columnWidth=2),s}},{key:"area",value:function(){return{stroke:{width:4,fill:{type:"solid",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}}},fill:{type:"gradient",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}},markers:{size:0,hover:{sizeOffset:6}},tooltip:{followCursor:!1}}}},{key:"rangeArea",value:function(){return{stroke:{curve:"straight",width:0},fill:{type:"solid",opacity:.6},markers:{size:0},states:{hover:{filter:{type:"none"}},active:{filter:{type:"none"}}},tooltip:{intersect:!1,shared:!0,followCursor:!0,custom:function(s){return function(a){var i=xt(a),d=i.color,u=i.seriesName,p=i.ylabel,w=i.start,f=i.end;return wt(h(h({},a),{},{color:d,seriesName:u,ylabel:p,start:w,end:f}))}(s)}}}}},{key:"brush",value:function(s){return H.extend(s,{chart:{toolbar:{autoSelected:"selection",show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1},stroke:{width:1},tooltip:{enabled:!1},xaxis:{tooltip:{enabled:!1}}})}},{key:"stacked100",value:function(s){s.dataLabels=s.dataLabels||{},s.dataLabels.formatter=s.dataLabels.formatter||void 0;var a=s.dataLabels.formatter;return s.yaxis.forEach(function(i,d){s.yaxis[d].min=0,s.yaxis[d].max=100}),s.chart.type==="bar"&&(s.dataLabels.formatter=a||function(i){return typeof i=="number"&&i?i.toFixed(0)+"%":i}),s}},{key:"stackedBars",value:function(){var s=this.bar();return h(h({},s),{},{plotOptions:h(h({},s.plotOptions),{},{bar:h(h({},s.plotOptions.bar),{},{borderRadiusApplication:"end",borderRadiusWhenStacked:"last"})})})}},{key:"convertCatToNumeric",value:function(s){return s.xaxis.convertedCatToNumeric=!0,s}},{key:"convertCatToNumericXaxis",value:function(s,a,i){s.xaxis.type="numeric",s.xaxis.labels=s.xaxis.labels||{},s.xaxis.labels.formatter=s.xaxis.labels.formatter||function(p){return H.isNumber(p)?Math.floor(p):p};var d=s.xaxis.labels.formatter,u=s.xaxis.categories&&s.xaxis.categories.length?s.xaxis.categories:s.labels;return i&&i.length&&(u=i.map(function(p){return Array.isArray(p)?p:String(p)})),u&&u.length&&(s.xaxis.labels.formatter=function(p){return H.isNumber(p)?d(u[Math.floor(p)-1]):d(p)}),s.xaxis.categories=[],s.labels=[],s.xaxis.tickAmount=s.xaxis.tickAmount||"dataPoints",s}},{key:"bubble",value:function(){return{dataLabels:{style:{colors:["#fff"]}},tooltip:{shared:!1,intersect:!0},xaxis:{crosshairs:{width:0}},fill:{type:"solid",gradient:{shade:"light",inverse:!0,shadeIntensity:.55,opacityFrom:.4,opacityTo:.8}}}}},{key:"scatter",value:function(){return{dataLabels:{enabled:!1},tooltip:{shared:!1,intersect:!0},markers:{size:6,strokeWidth:1,hover:{sizeOffset:2}}}}},{key:"heatmap",value:function(){return{chart:{stacked:!1},fill:{opacity:1},dataLabels:{style:{colors:["#fff"]}},stroke:{colors:["#fff"]},tooltip:{followCursor:!0,marker:{show:!1},x:{show:!1}},legend:{position:"top",markers:{shape:"square",size:10,offsetY:2}},grid:{padding:{right:20}}}}},{key:"treemap",value:function(){return{chart:{zoom:{enabled:!1}},dataLabels:{style:{fontSize:14,fontWeight:600,colors:["#fff"]}},stroke:{show:!0,width:2,colors:["#fff"]},legend:{show:!1},fill:{gradient:{stops:[0,100]}},tooltip:{followCursor:!0,x:{show:!1}},grid:{padding:{left:0,right:0}},xaxis:{crosshairs:{show:!1},tooltip:{enabled:!1}}}}},{key:"pie",value:function(){return{chart:{toolbar:{show:!1}},plotOptions:{pie:{donut:{labels:{show:!1}}}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",stops:[0,100]}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"donut",value:function(){return{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",shadeIntensity:.35,stops:[80,100],opacityFrom:1,opacityTo:1}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"polarArea",value:function(){return this.opts.yaxis[0].tickAmount=this.opts.yaxis[0].tickAmount?this.opts.yaxis[0].tickAmount:6,{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(s){return s.toFixed(1)+"%"},enabled:!1},stroke:{show:!0,width:2},fill:{opacity:.7},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"radar",value:function(){return this.opts.yaxis[0].labels.offsetY=this.opts.yaxis[0].labels.offsetY?this.opts.yaxis[0].labels.offsetY:6,{dataLabels:{enabled:!1,style:{fontSize:"11px"}},stroke:{width:2},markers:{size:3,strokeWidth:1,strokeOpacity:1},fill:{opacity:.2},tooltip:{shared:!1,intersect:!0,followCursor:!0},grid:{show:!1},xaxis:{labels:{formatter:function(s){return s},style:{colors:["#a8a8a8"],fontSize:"11px"}},tooltip:{enabled:!1},crosshairs:{show:!1}}}}},{key:"radialBar",value:function(){return{chart:{animations:{dynamicAnimation:{enabled:!0,speed:800}},toolbar:{show:!1}},fill:{gradient:{shade:"dark",shadeIntensity:.4,inverseColors:!1,type:"diagonal2",opacityFrom:1,opacityTo:1,stops:[70,98,100]}},legend:{show:!1,position:"right"},tooltip:{enabled:!1,fillSeriesColor:!0}}}},{key:"_getBoxTooltip",value:function(s,a,i,d,u){var p=s.globals.seriesCandleO[a][i],w=s.globals.seriesCandleH[a][i],f=s.globals.seriesCandleM[a][i],b=s.globals.seriesCandleL[a][i],M=s.globals.seriesCandleC[a][i];return s.config.series[a].type&&s.config.series[a].type!==u?`
    `.concat(s.config.series[a].name?s.config.series[a].name:"series-"+(a+1),": ").concat(s.globals.series[a][i],` -
    `):'
    ')+"
    ".concat(d[0],': ')+p+"
    "+"
    ".concat(d[1],': ')+w+"
    "+(f?"
    ".concat(d[2],': ')+f+"
    ":"")+"
    ".concat(d[3],': ')+k+"
    "+"
    ".concat(d[4],': ')+M+"
    "}}]),T}(),It=function(){function T(s){g(this,T),this.opts=s}return b(T,[{key:"init",value:function(s){var a=s.responsiveOverride,i=this.opts,d=new rt,c=new gt(i);this.chartType=i.chart.type,i=this.extendYAxis(i),i=this.extendAnnotations(i);var p=d.init(),w={};if(i&&u(i)==="object"){var f,k,M,x,I,$,N,L,F={};F=["line","area","bar","candlestick","boxPlot","rangeBar","rangeArea","bubble","scatter","heatmap","treemap","pie","polarArea","donut","radar","radialBar"].indexOf(i.chart.type)!==-1?c[i.chart.type]():c.line(),(f=i.plotOptions)!==null&&f!==void 0&&(k=f.bar)!==null&&k!==void 0&&k.isFunnel&&(F=c.funnel()),i.chart.stacked&&i.chart.type==="bar"&&(F=c.stackedBars()),(M=i.chart.brush)!==null&&M!==void 0&&M.enabled&&(F=c.brush(F)),i.chart.stacked&&i.chart.stackType==="100%"&&(i=c.stacked100(i)),(x=i.plotOptions)!==null&&x!==void 0&&(I=x.bar)!==null&&I!==void 0&&I.isDumbbell&&(i=c.dumbbell(i)),this.checkForDarkTheme(window.Apex),this.checkForDarkTheme(i),i.xaxis=i.xaxis||window.Apex.xaxis||{},a||(i.xaxis.convertedCatToNumeric=!1),(($=(i=this.checkForCatToNumericXAxis(this.chartType,F,i)).chart.sparkline)!==null&&$!==void 0&&$.enabled||(N=window.Apex.chart)!==null&&N!==void 0&&(L=N.sparkline)!==null&&L!==void 0&&L.enabled)&&(F=c.sparkline(F)),w=H.extend(p,F)}var V=H.extend(w,window.Apex);return p=H.extend(V,i),p=this.handleUserInputErrors(p)}},{key:"checkForCatToNumericXAxis",value:function(s,a,i){var d,c,p=new gt(i),w=(s==="bar"||s==="boxPlot")&&((d=i.plotOptions)===null||d===void 0||(c=d.bar)===null||c===void 0?void 0:c.horizontal),f=s==="pie"||s==="polarArea"||s==="donut"||s==="radar"||s==="radialBar"||s==="heatmap",k=i.xaxis.type!=="datetime"&&i.xaxis.type!=="numeric",M=i.xaxis.tickPlacement?i.xaxis.tickPlacement:a.xaxis&&a.xaxis.tickPlacement;return w||f||!k||M==="between"||(i=p.convertCatToNumeric(i)),i}},{key:"extendYAxis",value:function(s,a){var i=new rt;(s.yaxis===void 0||!s.yaxis||Array.isArray(s.yaxis)&&s.yaxis.length===0)&&(s.yaxis={}),s.yaxis.constructor!==Array&&window.Apex.yaxis&&window.Apex.yaxis.constructor!==Array&&(s.yaxis=H.extend(s.yaxis,window.Apex.yaxis)),s.yaxis.constructor!==Array?s.yaxis=[H.extend(i.yAxis,s.yaxis)]:s.yaxis=H.extendArray(s.yaxis,i.yAxis);var d=!1;s.yaxis.forEach(function(p){p.logarithmic&&(d=!0)});var c=s.series;return a&&!c&&(c=a.config.series),d&&c.length!==s.yaxis.length&&c.length&&(s.yaxis=c.map(function(p,w){if(p.name||(c[w].name="series-".concat(w+1)),s.yaxis[w])return s.yaxis[w].seriesName=c[w].name,s.yaxis[w];var f=H.extend(i.yAxis,s.yaxis[0]);return f.show=!1,f})),d&&c.length>1&&c.length!==s.yaxis.length&&console.warn("A multi-series logarithmic chart should have equal number of series and y-axes. Please make sure to equalize both."),s}},{key:"extendAnnotations",value:function(s){return s.annotations===void 0&&(s.annotations={},s.annotations.yaxis=[],s.annotations.xaxis=[],s.annotations.points=[]),s=this.extendYAxisAnnotations(s),s=this.extendXAxisAnnotations(s),s=this.extendPointAnnotations(s)}},{key:"extendYAxisAnnotations",value:function(s){var a=new rt;return s.annotations.yaxis=H.extendArray(s.annotations.yaxis!==void 0?s.annotations.yaxis:[],a.yAxisAnnotation),s}},{key:"extendXAxisAnnotations",value:function(s){var a=new rt;return s.annotations.xaxis=H.extendArray(s.annotations.xaxis!==void 0?s.annotations.xaxis:[],a.xAxisAnnotation),s}},{key:"extendPointAnnotations",value:function(s){var a=new rt;return s.annotations.points=H.extendArray(s.annotations.points!==void 0?s.annotations.points:[],a.pointAnnotation),s}},{key:"checkForDarkTheme",value:function(s){s.theme&&s.theme.mode==="dark"&&(s.tooltip||(s.tooltip={}),s.tooltip.theme!=="light"&&(s.tooltip.theme="dark"),s.chart.foreColor||(s.chart.foreColor="#f6f7f8"),s.chart.background||(s.chart.background="#424242"),s.theme.palette||(s.theme.palette="palette4"))}},{key:"handleUserInputErrors",value:function(s){var a=s;if(a.tooltip.shared&&a.tooltip.intersect)throw new Error("tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.");if(a.chart.type==="bar"&&a.plotOptions.bar.horizontal){if(a.yaxis.length>1)throw new Error("Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false");a.yaxis[0].reversed&&(a.yaxis[0].opposite=!0),a.xaxis.tooltip.enabled=!1,a.yaxis[0].tooltip.enabled=!1,a.chart.zoom.enabled=!1}return a.chart.type!=="bar"&&a.chart.type!=="rangeBar"||a.tooltip.shared&&a.xaxis.crosshairs.width==="barWidth"&&a.series.length>1&&(a.xaxis.crosshairs.width="tickWidth"),a.chart.type!=="candlestick"&&a.chart.type!=="boxPlot"||a.yaxis[0].reversed&&(console.warn("Reversed y-axis in ".concat(a.chart.type," chart is not supported.")),a.yaxis[0].reversed=!1),a}}]),T}(),$t=function(){function T(){g(this,T)}return b(T,[{key:"initGlobalVars",value:function(s){s.series=[],s.seriesCandleO=[],s.seriesCandleH=[],s.seriesCandleM=[],s.seriesCandleL=[],s.seriesCandleC=[],s.seriesRangeStart=[],s.seriesRangeEnd=[],s.seriesRange=[],s.seriesPercent=[],s.seriesGoals=[],s.seriesX=[],s.seriesZ=[],s.seriesNames=[],s.seriesTotals=[],s.seriesLog=[],s.seriesColors=[],s.stackedSeriesTotals=[],s.seriesXvalues=[],s.seriesYvalues=[],s.labels=[],s.hasXaxisGroups=!1,s.groups=[],s.hasSeriesGroups=!1,s.seriesGroups=[],s.categoryLabels=[],s.timescaleLabels=[],s.noLabelsProvided=!1,s.resizeTimer=null,s.selectionResizeTimer=null,s.delayedElements=[],s.pointsArray=[],s.dataLabelsRects=[],s.isXNumeric=!1,s.skipLastTimelinelabel=!1,s.skipFirstTimelinelabel=!1,s.isDataXYZ=!1,s.isMultiLineX=!1,s.isMultipleYAxis=!1,s.maxY=-Number.MAX_VALUE,s.minY=Number.MIN_VALUE,s.minYArr=[],s.maxYArr=[],s.maxX=-Number.MAX_VALUE,s.minX=Number.MAX_VALUE,s.initialMaxX=-Number.MAX_VALUE,s.initialMinX=Number.MAX_VALUE,s.maxDate=0,s.minDate=Number.MAX_VALUE,s.minZ=Number.MAX_VALUE,s.maxZ=-Number.MAX_VALUE,s.minXDiff=Number.MAX_VALUE,s.yAxisScale=[],s.xAxisScale=null,s.xAxisTicksPositions=[],s.yLabelsCoords=[],s.yTitleCoords=[],s.barPadForNumericAxis=0,s.padHorizontal=0,s.xRange=0,s.yRange=[],s.zRange=0,s.dataPoints=0,s.xTickAmount=0}},{key:"globalVars",value:function(s){return{chartID:null,cuid:null,events:{beforeMount:[],mounted:[],updated:[],clicked:[],selection:[],dataPointSelection:[],zoomed:[],scrolled:[]},colors:[],clientX:null,clientY:null,fill:{colors:[]},stroke:{colors:[]},dataLabels:{style:{colors:[]}},radarPolygons:{fill:{colors:[]}},markers:{colors:[],size:s.markers.size,largestSize:0},animationEnded:!1,isTouchDevice:"ontouchstart"in window||navigator.msMaxTouchPoints,isDirty:!1,isExecCalled:!1,initialConfig:null,initialSeries:[],lastXAxis:[],lastYAxis:[],columnSeries:null,labels:[],timescaleLabels:[],noLabelsProvided:!1,allSeriesCollapsed:!1,collapsedSeries:[],collapsedSeriesIndices:[],ancillaryCollapsedSeries:[],ancillaryCollapsedSeriesIndices:[],risingSeries:[],dataFormatXNumeric:!1,capturedSeriesIndex:-1,capturedDataPointIndex:-1,selectedDataPoints:[],goldenPadding:35,invalidLogScale:!1,ignoreYAxisIndexes:[],yAxisSameScaleIndices:[],maxValsInArrayIndex:0,radialSize:0,selection:void 0,zoomEnabled:s.chart.toolbar.autoSelected==="zoom"&&s.chart.toolbar.tools.zoom&&s.chart.zoom.enabled,panEnabled:s.chart.toolbar.autoSelected==="pan"&&s.chart.toolbar.tools.pan,selectionEnabled:s.chart.toolbar.autoSelected==="selection"&&s.chart.toolbar.tools.selection,yaxis:null,mousedown:!1,lastClientPosition:{},visibleXRange:void 0,yValueDecimal:0,total:0,SVGNS:"http://www.w3.org/2000/svg",svgWidth:0,svgHeight:0,noData:!1,locale:{},dom:{},memory:{methodsToExec:[]},shouldAnimate:!0,skipLastTimelinelabel:!1,skipFirstTimelinelabel:!1,delayedElements:[],axisCharts:!0,isDataXYZ:!1,resized:!1,resizeTimer:null,comboCharts:!1,dataChanged:!1,previousPaths:[],allSeriesHasEqualX:!0,pointsArray:[],dataLabelsRects:[],lastDrawnDataLabelsIndexes:[],hasNullValues:!1,easing:null,zoomed:!1,gridWidth:0,gridHeight:0,rotateXLabels:!1,defaultLabels:!1,xLabelFormatter:void 0,yLabelFormatters:[],xaxisTooltipFormatter:void 0,ttKeyFormatter:void 0,ttVal:void 0,ttZFormatter:void 0,LINE_HEIGHT_RATIO:1.618,xAxisLabelsHeight:0,xAxisGroupLabelsHeight:0,xAxisLabelsWidth:0,yAxisLabelsWidth:0,scaleX:1,scaleY:1,translateX:0,translateY:0,translateYAxisX:[],yAxisWidths:[],translateXAxisY:0,translateXAxisX:0,tooltip:null}}},{key:"init",value:function(s){var a=this.globalVars(s);return this.initGlobalVars(a),a.initialConfig=H.extend({},s),a.initialSeries=H.clone(s.series),a.lastXAxis=H.clone(a.initialConfig.xaxis),a.lastYAxis=H.clone(a.initialConfig.yaxis),a}}]),T}(),Tt=function(){function T(s){g(this,T),this.opts=s}return b(T,[{key:"init",value:function(){var s=new It(this.opts).init({responsiveOverride:!1});return{config:s,globals:new $t().init(s)}}}]),T}(),Ft=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.opts=null,this.seriesIndex=0}return b(T,[{key:"clippedImgArea",value:function(s){var a=this.w,i=a.config,d=parseInt(a.globals.gridWidth,10),c=parseInt(a.globals.gridHeight,10),p=d>c?d:c,w=s.image,f=0,k=0;s.width===void 0&&s.height===void 0?i.fill.image.width!==void 0&&i.fill.image.height!==void 0?(f=i.fill.image.width+1,k=i.fill.image.height):(f=p+1,k=p):(f=s.width,k=s.height);var M=document.createElementNS(a.globals.SVGNS,"pattern");_.setAttrs(M,{id:s.patternID,patternUnits:s.patternUnits?s.patternUnits:"userSpaceOnUse",width:f+"px",height:k+"px"});var x=document.createElementNS(a.globals.SVGNS,"image");M.appendChild(x),x.setAttributeNS(window.SVG.xlink,"href",w),_.setAttrs(x,{x:0,y:0,preserveAspectRatio:"none",width:f+"px",height:k+"px"}),x.style.opacity=s.opacity,a.globals.dom.elDefs.node.appendChild(M)}},{key:"getSeriesIndex",value:function(s){var a=this.w,i=a.config.chart.type;return(i==="bar"||i==="rangeBar")&&a.config.plotOptions.bar.distributed||i==="heatmap"||i==="treemap"?this.seriesIndex=s.seriesNumber:this.seriesIndex=s.seriesNumber%a.globals.series.length,this.seriesIndex}},{key:"fillPath",value:function(s){var a=this.w;this.opts=s;var i,d,c,p=this.w.config;this.seriesIndex=this.getSeriesIndex(s);var w=this.getFillColors()[this.seriesIndex];a.globals.seriesColors[this.seriesIndex]!==void 0&&(w=a.globals.seriesColors[this.seriesIndex]),typeof w=="function"&&(w=w({seriesIndex:this.seriesIndex,dataPointIndex:s.dataPointIndex,value:s.value,w:a}));var f=s.fillType?s.fillType:this.getFillType(this.seriesIndex),k=Array.isArray(p.fill.opacity)?p.fill.opacity[this.seriesIndex]:p.fill.opacity;s.color&&(w=s.color);var M=w;if(w.indexOf("rgb")===-1?w.length<9&&(M=H.hexToRgba(w,k)):w.indexOf("rgba")>-1&&(k=H.getOpacityFromRGBA(w)),s.opacity&&(k=s.opacity),f==="pattern"&&(d=this.handlePatternFill({fillConfig:s.fillConfig,patternFill:d,fillColor:w,fillOpacity:k,defaultColor:M})),f==="gradient"&&(c=this.handleGradientFill({fillConfig:s.fillConfig,fillColor:w,fillOpacity:k,i:this.seriesIndex})),f==="image"){var x=p.fill.image.src,I=s.patternID?s.patternID:"";this.clippedImgArea({opacity:k,image:Array.isArray(x)?s.seriesNumber-1&&($=H.getOpacityFromRGBA(I));var N=p.gradient.opacityTo===void 0?i:Array.isArray(p.gradient.opacityTo)?p.gradient.opacityTo[c]:p.gradient.opacityTo;if(p.gradient.gradientToColors===void 0||p.gradient.gradientToColors.length===0)w=p.gradient.shade==="dark"?M.shadeColor(-1*parseFloat(p.gradient.shadeIntensity),a.indexOf("rgb")>-1?H.rgb2hex(a):a):M.shadeColor(parseFloat(p.gradient.shadeIntensity),a.indexOf("rgb")>-1?H.rgb2hex(a):a);else if(p.gradient.gradientToColors[f.seriesNumber]){var L=p.gradient.gradientToColors[f.seriesNumber];w=L,L.indexOf("rgba")>-1&&(N=H.getOpacityFromRGBA(L))}else w=a;if(p.gradient.gradientFrom&&(I=p.gradient.gradientFrom),p.gradient.gradientTo&&(w=p.gradient.gradientTo),p.gradient.inverseColors){var F=I;I=w,w=F}return I.indexOf("rgb")>-1&&(I=H.rgb2hex(I)),w.indexOf("rgb")>-1&&(w=H.rgb2hex(w)),k.drawGradient(x,I,w,$,N,f.size,p.gradient.stops,p.gradient.colorStops,c)}}]),T}(),Kt=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"setGlobalMarkerSize",value:function(){var s=this.w;if(s.globals.markers.size=Array.isArray(s.config.markers.size)?s.config.markers.size:[s.config.markers.size],s.globals.markers.size.length>0){if(s.globals.markers.size.length4&&arguments[4]!==void 0&&arguments[4],w=this.w,f=a,k=s,M=null,x=new _(this.ctx),I=w.config.markers.discrete&&w.config.markers.discrete.length;if((w.globals.markers.size[a]>0||p||I)&&(M=x.group({class:p||I?"":"apexcharts-series-markers"})).attr("clip-path","url(#gridRectMarkerMask".concat(w.globals.cuid,")")),Array.isArray(k.x))for(var $=0;$0:w.config.markers.size>0)||p||I){H.isNumber(k.y[$])?L+=" w".concat(H.randomId()):L="apexcharts-nullpoint";var F=this.getMarkerConfig({cssClass:L,seriesIndex:a,dataPointIndex:N});w.config.series[f].data[N]&&(w.config.series[f].data[N].fillColor&&(F.pointFillColor=w.config.series[f].data[N].fillColor),w.config.series[f].data[N].strokeColor&&(F.pointStrokeColor=w.config.series[f].data[N].strokeColor)),d&&(F.pSize=d),(k.x[$]<0||k.x[$]>w.globals.gridWidth||k.y[$]<0||k.y[$]>w.globals.gridHeight)&&(F.pSize=0),(c=x.drawMarker(k.x[$],k.y[$],F)).attr("rel",N),c.attr("j",N),c.attr("index",a),c.node.setAttribute("default-marker-size",F.pSize),new W(this.ctx).setSelectionFilter(c,a,N),this.addEvents(c),M&&M.add(c)}else w.globals.pointsArray[a]===void 0&&(w.globals.pointsArray[a]=[]),w.globals.pointsArray[a].push([k.x[$],k.y[$]])}return M}},{key:"getMarkerConfig",value:function(s){var a=s.cssClass,i=s.seriesIndex,d=s.dataPointIndex,c=d===void 0?null:d,p=s.finishRadius,w=p===void 0?null:p,f=this.w,k=this.getMarkerStyle(i),M=f.globals.markers.size[i],x=f.config.markers;return c!==null&&x.discrete.length&&x.discrete.map(function(I){I.seriesIndex===i&&I.dataPointIndex===c&&(k.pointStrokeColor=I.strokeColor,k.pointFillColor=I.fillColor,M=I.size,k.pointShape=I.shape)}),{pSize:w===null?M:w,pRadius:x.radius,width:Array.isArray(x.width)?x.width[i]:x.width,height:Array.isArray(x.height)?x.height[i]:x.height,pointStrokeWidth:Array.isArray(x.strokeWidth)?x.strokeWidth[i]:x.strokeWidth,pointStrokeColor:k.pointStrokeColor,pointFillColor:k.pointFillColor,shape:k.pointShape||(Array.isArray(x.shape)?x.shape[i]:x.shape),class:a,pointStrokeOpacity:Array.isArray(x.strokeOpacity)?x.strokeOpacity[i]:x.strokeOpacity,pointStrokeDashArray:Array.isArray(x.strokeDashArray)?x.strokeDashArray[i]:x.strokeDashArray,pointFillOpacity:Array.isArray(x.fillOpacity)?x.fillOpacity[i]:x.fillOpacity,seriesIndex:i}}},{key:"addEvents",value:function(s){var a=this.w,i=new _(this.ctx);s.node.addEventListener("mouseenter",i.pathMouseEnter.bind(this.ctx,s)),s.node.addEventListener("mouseleave",i.pathMouseLeave.bind(this.ctx,s)),s.node.addEventListener("mousedown",i.pathMouseDown.bind(this.ctx,s)),s.node.addEventListener("click",a.config.markers.onClick),s.node.addEventListener("dblclick",a.config.markers.onDblClick),s.node.addEventListener("touchstart",i.pathMouseDown.bind(this.ctx,s),{passive:!0})}},{key:"getMarkerStyle",value:function(s){var a=this.w,i=a.globals.markers.colors,d=a.config.markers.strokeColor||a.config.markers.strokeColors;return{pointStrokeColor:Array.isArray(d)?d[s]:d,pointFillColor:Array.isArray(i)?i[s]:i}}}]),T}(),Qt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled}return b(T,[{key:"draw",value:function(s,a,i){var d=this.w,c=new _(this.ctx),p=i.realIndex,w=i.pointsPos,f=i.zRatio,k=i.elParent,M=c.group({class:"apexcharts-series-markers apexcharts-series-".concat(d.config.chart.type)});if(M.attr("clip-path","url(#gridRectMarkerMask".concat(d.globals.cuid,")")),Array.isArray(w.x))for(var x=0;xF.maxBubbleRadius&&(L=F.maxBubbleRadius)}d.config.chart.animations.enabled||(N=L);var V=w.x[x],Z=w.y[x];if(N=N||0,Z!==null&&d.globals.series[p][I]!==void 0||($=!1),$){var m=this.drawPoint(V,Z,N,L,p,I,a);M.add(m)}k.add(M)}}},{key:"drawPoint",value:function(s,a,i,d,c,p,w){var f=this.w,k=c,M=new U(this.ctx),x=new W(this.ctx),I=new Ft(this.ctx),$=new Kt(this.ctx),N=new _(this.ctx),L=$.getMarkerConfig({cssClass:"apexcharts-marker",seriesIndex:k,dataPointIndex:p,finishRadius:f.config.chart.type==="bubble"||f.globals.comboCharts&&f.config.series[c]&&f.config.series[c].type==="bubble"?d:null});d=L.pSize;var F,V=I.fillPath({seriesNumber:c,dataPointIndex:p,color:L.pointFillColor,patternUnits:"objectBoundingBox",value:f.globals.series[c][w]});if(L.shape==="circle"?F=N.drawCircle(i):L.shape!=="square"&&L.shape!=="rect"||(F=N.drawRect(0,0,L.width-L.pointStrokeWidth/2,L.height-L.pointStrokeWidth/2,L.pRadius)),f.config.series[k].data[p]&&f.config.series[k].data[p].fillColor&&(V=f.config.series[k].data[p].fillColor),F.attr({x:s-L.width/2-L.pointStrokeWidth/2,y:a-L.height/2-L.pointStrokeWidth/2,cx:s,cy:a,fill:V,"fill-opacity":L.pointFillOpacity,stroke:L.pointStrokeColor,r:d,"stroke-width":L.pointStrokeWidth,"stroke-dasharray":L.pointStrokeDashArray,"stroke-opacity":L.pointStrokeOpacity}),f.config.chart.dropShadow.enabled){var Z=f.config.chart.dropShadow;x.dropShadow(F,Z,c)}if(!this.initialAnim||f.globals.dataChanged||f.globals.resized)f.globals.animationEnded=!0;else{var m=f.config.chart.animations.speed;M.animateMarker(F,0,L.shape==="circle"?d:{width:L.width,height:L.height},m,f.globals.easing,function(){window.setTimeout(function(){M.animationCompleted(F)},100)})}if(f.globals.dataChanged&&L.shape==="circle")if(this.dynamicAnim){var y,j,R,K,Q=f.config.chart.animations.dynamicAnimation.speed;(K=f.globals.previousPaths[c]&&f.globals.previousPaths[c][w])!=null&&(y=K.x,j=K.y,R=K.r!==void 0?K.r:d);for(var ot=0;otf.globals.gridHeight+I&&(a=f.globals.gridHeight+I/2),f.globals.dataLabelsRects[d]===void 0&&(f.globals.dataLabelsRects[d]=[]),f.globals.dataLabelsRects[d].push({x:s,y:a,width:x,height:I});var $=f.globals.dataLabelsRects[d].length-2,N=f.globals.lastDrawnDataLabelsIndexes[d]!==void 0?f.globals.lastDrawnDataLabelsIndexes[d][f.globals.lastDrawnDataLabelsIndexes[d].length-1]:0;if(f.globals.dataLabelsRects[d][$]!==void 0){var L=f.globals.dataLabelsRects[d][N];(s>L.x+L.width+2||a>L.y+L.height+2||s+xa.globals.gridWidth+F.textRects.width+10)&&(f="");var V=a.globals.dataLabels.style.colors[p];((a.config.chart.type==="bar"||a.config.chart.type==="rangeBar")&&a.config.plotOptions.bar.distributed||a.config.dataLabels.distributed)&&(V=a.globals.dataLabels.style.colors[w]),typeof V=="function"&&(V=V({series:a.globals.series,seriesIndex:p,dataPointIndex:w,w:a})),$&&(V=$);var Z=I.offsetX,m=I.offsetY;if(a.config.chart.type!=="bar"&&a.config.chart.type!=="rangeBar"||(Z=0,m=0),F.drawnextLabel){var y=i.drawText({width:100,height:parseInt(I.style.fontSize,10),x:d+Z,y:c+m,foreColor:V,textAnchor:k||I.textAnchor,text:f,fontSize:M||I.style.fontSize,fontFamily:I.style.fontFamily,fontWeight:I.style.fontWeight||"normal"});if(y.attr({class:"apexcharts-datalabel",cx:d,cy:c}),I.dropShadow.enabled){var j=I.dropShadow;new W(this.ctx).dropShadow(y,j)}x.add(y),a.globals.lastDrawnDataLabelsIndexes[p]===void 0&&(a.globals.lastDrawnDataLabelsIndexes[p]=[]),a.globals.lastDrawnDataLabelsIndexes[p].push(w)}}}},{key:"addBackgroundToDataLabel",value:function(s,a){var i=this.w,d=i.config.dataLabels.background,c=d.padding,p=d.padding/2,w=a.width,f=a.height,k=new _(this.ctx).drawRect(a.x-c,a.y-p/2,w+2*c,f+p,d.borderRadius,i.config.chart.background==="transparent"?"#fff":i.config.chart.background,d.opacity,d.borderWidth,d.borderColor);return d.dropShadow.enabled&&new W(this.ctx).dropShadow(k,d.dropShadow),k}},{key:"dataLabelsBackground",value:function(){var s=this.w;if(s.config.chart.type!=="bubble")for(var a=s.globals.dom.baseEl.querySelectorAll(".apexcharts-datalabels text"),i=0;i0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w,c=H.clone(d.globals.initialSeries);d.globals.previousPaths=[],i?(d.globals.collapsedSeries=[],d.globals.ancillaryCollapsedSeries=[],d.globals.collapsedSeriesIndices=[],d.globals.ancillaryCollapsedSeriesIndices=[]):c=this.emptyCollapsedSeries(c),d.config.series=c,s&&(a&&(d.globals.zoomed=!1,this.ctx.updateHelpers.revertDefaultAxisMinMax()),this.ctx.updateHelpers._updateSeries(c,d.config.chart.animations.dynamicAnimation.enabled))}},{key:"emptyCollapsedSeries",value:function(s){for(var a=this.w,i=0;i-1&&(s[i].data=[]);return s}},{key:"toggleSeriesOnHover",value:function(s,a){var i=this.w;a||(a=s.target);var d=i.globals.dom.baseEl.querySelectorAll(".apexcharts-series, .apexcharts-datalabels");if(s.type==="mousemove"){var c=parseInt(a.getAttribute("rel"),10)-1,p=null,w=null;i.globals.axisCharts||i.config.chart.type==="radialBar"?i.globals.axisCharts?(p=i.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(c,"']")),w=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels[data\\:realIndex='".concat(c,"']"))):p=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(c+1,"']")):p=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(c+1,"'] path"));for(var f=0;f=f.from&&M<=f.to&&c[k].classList.remove(i.legendInactiveClass)}}(d.config.plotOptions.heatmap.colorScale.ranges[w])}else s.type==="mouseout"&&p("remove")}},{key:"getActiveConfigSeriesIndex",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"asc",a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],i=this.w,d=0;if(i.config.series.length>1){for(var c=i.config.series.map(function(w,f){return w.data&&w.data.length>0&&i.globals.collapsedSeriesIndices.indexOf(f)===-1&&(!i.globals.comboCharts||a.length===0||a.length&&a.indexOf(i.config.series[f].type)>-1)?f:-1}),p=s==="asc"?0:c.length-1;s==="asc"?p=0;s==="asc"?p++:p--)if(c[p]!==-1){d=c[p];break}}return d}},{key:"getBarSeriesIndices",value:function(){return this.w.globals.comboCharts?this.w.config.series.map(function(s,a){return s.type==="bar"||s.type==="column"?a:-1}).filter(function(s){return s!==-1}):this.w.config.series.map(function(s,a){return a})}},{key:"getPreviousPaths",value:function(){var s=this.w;function a(p,w,f){for(var k=p[w].childNodes,M={type:f,paths:[],realIndex:p[w].getAttribute("data:realIndex")},x=0;x0)for(var d=function(p){for(var w=s.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(s.config.chart.type," .apexcharts-series[data\\:realIndex='").concat(p,"'] rect")),f=[],k=function(x){var I=function(N){return w[x].getAttribute(N)},$={x:parseFloat(I("x")),y:parseFloat(I("y")),width:parseFloat(I("width")),height:parseFloat(I("height"))};f.push({rect:$,color:w[x].getAttribute("color")})},M=0;M0)for(var d=0;d0?a:[]});return s}}]),T}(),pt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.twoDSeries=[],this.threeDSeries=[],this.twoDSeriesX=[],this.seriesGoals=[],this.coreUtils=new tt(this.ctx)}return b(T,[{key:"isMultiFormat",value:function(){return this.isFormatXY()||this.isFormat2DArray()}},{key:"isFormatXY",value:function(){var s=this.w.config.series.slice(),a=new ut(this.ctx);if(this.activeSeriesIndex=a.getActiveConfigSeriesIndex(),s[this.activeSeriesIndex].data!==void 0&&s[this.activeSeriesIndex].data.length>0&&s[this.activeSeriesIndex].data[0]!==null&&s[this.activeSeriesIndex].data[0].x!==void 0&&s[this.activeSeriesIndex].data[0]!==null)return!0}},{key:"isFormat2DArray",value:function(){var s=this.w.config.series.slice(),a=new ut(this.ctx);if(this.activeSeriesIndex=a.getActiveConfigSeriesIndex(),s[this.activeSeriesIndex].data!==void 0&&s[this.activeSeriesIndex].data.length>0&&s[this.activeSeriesIndex].data[0]!==void 0&&s[this.activeSeriesIndex].data[0]!==null&&s[this.activeSeriesIndex].data[0].constructor===Array)return!0}},{key:"handleFormat2DArray",value:function(s,a){for(var i=this.w.config,d=this.w.globals,c=i.chart.type==="boxPlot"||i.series[a].type==="boxPlot",p=0;p=5?this.twoDSeries.push(H.parseNumber(s[a].data[p][4])):this.twoDSeries.push(H.parseNumber(s[a].data[p][1])),d.dataFormatXNumeric=!0),i.xaxis.type==="datetime"){var w=new Date(s[a].data[p][0]);w=new Date(w).getTime(),this.twoDSeriesX.push(w)}else this.twoDSeriesX.push(s[a].data[p][0]);for(var f=0;f-1&&(p=this.activeSeriesIndex);for(var w=0;w1&&arguments[1]!==void 0?arguments[1]:this.ctx,c=this.w.config,p=this.w.globals,w=new dt(d),f=c.labels.length>0?c.labels.slice():c.xaxis.categories.slice();if(p.isRangeBar=c.chart.type==="rangeBar"&&p.isBarHorizontal,p.hasXaxisGroups=c.xaxis.type==="category"&&c.xaxis.group.groups.length>0,p.hasXaxisGroups&&(p.groups=c.xaxis.group.groups),p.hasSeriesGroups=(a=s[0])===null||a===void 0?void 0:a.group,p.hasSeriesGroups){var k=[],M=E(new Set(s.map(function(N){return N.group})));s.forEach(function(N,L){var F=M.indexOf(N.group);k[F]||(k[F]=[]),k[F].push(N.name)}),p.seriesGroups=k}for(var x=function(){for(var N=0;N0&&(this.twoDSeriesX=f,p.seriesX.push(this.twoDSeriesX))),p.labels.push(this.twoDSeriesX);var $=s[I].data.map(function(N){return H.parseNumber(N)});p.series.push($)}p.seriesZ.push(this.threeDSeries),s[I].name!==void 0?p.seriesNames.push(s[I].name):p.seriesNames.push("series-"+parseInt(I+1,10)),s[I].color!==void 0?p.seriesColors.push(s[I].color):p.seriesColors.push(void 0)}return this.w}},{key:"parseDataNonAxisCharts",value:function(s){var a=this.w.globals,i=this.w.config;a.series=s.slice(),a.seriesNames=i.labels.slice();for(var d=0;d0?i.labels=a.xaxis.categories:a.labels.length>0?i.labels=a.labels.slice():this.fallbackToCategory?(i.labels=i.labels[0],i.seriesRange.length&&(i.seriesRange.map(function(d){d.forEach(function(c){i.labels.indexOf(c.x)<0&&c.x&&i.labels.push(c.x)})}),i.labels=Array.from(new Set(i.labels.map(JSON.stringify)),JSON.parse)),a.xaxis.convertedCatToNumeric&&(new gt(a).convertCatToNumericXaxis(a,this.ctx,i.seriesX[0]),this._generateExternalLabels(s))):this._generateExternalLabels(s)}},{key:"_generateExternalLabels",value:function(s){var a=this.w.globals,i=this.w.config,d=[];if(a.axisCharts){if(a.series.length>0)if(this.isFormatXY())for(var c=i.series.map(function(x,I){return x.data.filter(function($,N,L){return L.findIndex(function(F){return F.x===$.x})===N})}),p=c.reduce(function(x,I,$,N){return N[x].length>I.length?x:$},0),w=0;w4&&arguments[4]!==void 0?arguments[4]:[],p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"12px",w=!(arguments.length>6&&arguments[6]!==void 0)||arguments[6],f=this.w,k=s[d]===void 0?"":s[d],M=k,x=f.globals.xLabelFormatter,I=f.config.xaxis.labels.formatter,$=!1,N=new Ct(this.ctx),L=k;w&&(M=N.xLabelFormat(x,k,L,{i:d,dateFormatter:new dt(this.ctx).formatDate,w:f}),I!==void 0&&(M=I(k,s[d],{i:d,dateFormatter:new dt(this.ctx).formatDate,w:f})));var F,V;a.length>0?(F=a[d].unit,V=null,a.forEach(function(j){j.unit==="month"?V="year":j.unit==="day"?V="month":j.unit==="hour"?V="day":j.unit==="minute"&&(V="hour")}),$=V===F,i=a[d].position,M=a[d].value):f.config.xaxis.type==="datetime"&&I===void 0&&(M=""),M===void 0&&(M=""),M=Array.isArray(M)?M:M.toString();var Z=new _(this.ctx),m={};m=f.globals.rotateXLabels&&w?Z.getTextRects(M,parseInt(p,10),null,"rotate(".concat(f.config.xaxis.labels.rotate," 0 0)"),!1):Z.getTextRects(M,parseInt(p,10));var y=!f.config.xaxis.labels.showDuplicates&&this.ctx.timeScale;return!Array.isArray(M)&&(M.indexOf("NaN")===0||M.toLowerCase().indexOf("invalid")===0||M.toLowerCase().indexOf("infinity")>=0||c.indexOf(M)>=0&&y)&&(M=""),{x:i,text:M,textRect:m,isBold:$}}},{key:"checkLabelBasedOnTickamount",value:function(s,a,i){var d=this.w,c=d.config.xaxis.tickAmount;return c==="dataPoints"&&(c=Math.round(d.globals.gridWidth/120)),c>i||s%Math.round(i/(c+1))==0||(a.text=""),a}},{key:"checkForOverflowingLabels",value:function(s,a,i,d,c){var p=this.w;if(s===0&&p.globals.skipFirstTimelinelabel&&(a.text=""),s===i-1&&p.globals.skipLastTimelinelabel&&(a.text=""),p.config.xaxis.labels.hideOverlappingLabels&&d.length>0){var w=c[c.length-1];a.x0){f.config.yaxis[c].opposite===!0&&(s+=d.width);for(var x=a;x>=0;x--){var I=M+a/10+f.config.yaxis[c].labels.offsetY-1;f.globals.isBarHorizontal&&(I=p*x),f.config.chart.type==="heatmap"&&(I+=p/2);var $=k.drawLine(s+i.offsetX-d.width+d.offsetX,I+d.offsetY,s+i.offsetX+d.offsetX,I+d.offsetY,d.color);w.add($),M+=p}}}}]),T}(),Nt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"scaleSvgNode",value:function(s,a){var i=parseFloat(s.getAttributeNS(null,"width")),d=parseFloat(s.getAttributeNS(null,"height"));s.setAttributeNS(null,"width",i*a),s.setAttributeNS(null,"height",d*a),s.setAttributeNS(null,"viewBox","0 0 "+i+" "+d)}},{key:"fixSvgStringForIe11",value:function(s){if(!H.isIE11())return s.replace(/ /g," ");var a=0,i=s.replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g,function(d){return++a===2?'xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev"':d});return i=(i=i.replace(/xmlns:NS\d+=""/g,"")).replace(/NS\d+:(\w+:\w+=")/g,"$1")}},{key:"getSvgString",value:function(s){s==null&&(s=1);var a=this.w.globals.dom.Paper.svg();if(s!==1){var i=this.w.globals.dom.Paper.node.cloneNode(!0);this.scaleSvgNode(i,s),a=new XMLSerializer().serializeToString(i)}return this.fixSvgStringForIe11(a)}},{key:"cleanup",value:function(){var s=this.w,a=s.globals.dom.baseEl.getElementsByClassName("apexcharts-xcrosshairs"),i=s.globals.dom.baseEl.getElementsByClassName("apexcharts-ycrosshairs"),d=s.globals.dom.baseEl.querySelectorAll(".apexcharts-zoom-rect, .apexcharts-selection-rect");Array.prototype.forEach.call(d,function(c){c.setAttribute("width",0)}),a&&a[0]&&(a[0].setAttribute("x",-500),a[0].setAttribute("x1",-500),a[0].setAttribute("x2",-500)),i&&i[0]&&(i[0].setAttribute("y",-100),i[0].setAttribute("y1",-100),i[0].setAttribute("y2",-100))}},{key:"svgUrl",value:function(){this.cleanup();var s=this.getSvgString(),a=new Blob([s],{type:"image/svg+xml;charset=utf-8"});return URL.createObjectURL(a)}},{key:"dataURI",value:function(s){var a=this;return new Promise(function(i){var d=a.w,c=s?s.scale||s.width/d.globals.svgWidth:1;a.cleanup();var p=document.createElement("canvas");p.width=d.globals.svgWidth*c,p.height=parseInt(d.globals.dom.elWrap.style.height,10)*c;var w=d.config.chart.background==="transparent"?"#fff":d.config.chart.background,f=p.getContext("2d");f.fillStyle=w,f.fillRect(0,0,p.width*c,p.height*c);var k=a.getSvgString(c);if(window.canvg&&H.isIE11()){var M=window.canvg.Canvg.fromString(f,k,{ignoreClear:!0,ignoreDimensions:!0});M.start();var x=p.msToBlob();M.stop(),i({blob:x})}else{var I="data:image/svg+xml,"+encodeURIComponent(k),$=new Image;$.crossOrigin="anonymous",$.onload=function(){if(f.drawImage($,0,0),p.msToBlob){var N=p.msToBlob();i({blob:N})}else{var L=p.toDataURL("image/png");i({imgURI:L})}},$.src=I}})}},{key:"exportToSVG",value:function(){this.triggerDownload(this.svgUrl(),this.w.config.chart.toolbar.export.svg.filename,".svg")}},{key:"exportToPng",value:function(){var s=this;this.dataURI().then(function(a){var i=a.imgURI,d=a.blob;d?navigator.msSaveOrOpenBlob(d,s.w.globals.chartID+".png"):s.triggerDownload(i,s.w.config.chart.toolbar.export.png.filename,".png")})}},{key:"exportToCSV",value:function(s){var a=this,i=s.series,d=s.fileName,c=s.columnDelimiter,p=c===void 0?",":c,w=s.lineDelimiter,f=w===void 0?` -`:w,k=this.w;i||(i=k.config.series);var M=[],x=[],I="",$=k.globals.series.map(function(m,y){return k.globals.collapsedSeriesIndices.indexOf(y)===-1?m:[]}),N=Math.max.apply(Math,E(i.map(function(m){return m.data?m.data.length:0}))),L=new pt(this.ctx),F=new Ht(this.ctx),V=function(m){var y="";if(k.globals.axisCharts){if(k.config.xaxis.type==="category"||k.config.xaxis.convertedCatToNumeric)if(k.globals.isBarHorizontal){var j=k.globals.yLabelFormatters[0],R=new ut(a.ctx).getActiveConfigSeriesIndex();y=j(k.globals.labels[m],{seriesIndex:R,dataPointIndex:m,w:k})}else y=F.getLabel(k.globals.labels,k.globals.timescaleLabels,0,m).text;k.config.xaxis.type==="datetime"&&(k.config.xaxis.categories.length?y=k.config.xaxis.categories[m]:k.config.labels.length&&(y=k.config.labels[m]))}else y=k.config.labels[m];return Array.isArray(y)&&(y=y.join(" ")),H.isNumber(y)?y:y.split(p).join("")},Z=function(m,y){if(M.length&&y===0&&x.push(M.join(p)),m.data){m.data=m.data.length&&m.data||E(Array(N)).map(function(){return""});for(var j=0;j=10?k.config.chart.toolbar.export.csv.dateFormatter(R):H.isNumber(R)?R:R.split(p).join("")));for(var K=0;K0&&!i.globals.isBarHorizontal&&(this.xaxisLabels=i.globals.timescaleLabels.slice()),i.config.xaxis.overwriteCategories&&(this.xaxisLabels=i.config.xaxis.overwriteCategories),this.drawnLabels=[],this.drawnLabelsRects=[],i.config.xaxis.position==="top"?this.offY=0:this.offY=i.globals.gridHeight+1,this.offY=this.offY+i.config.xaxis.axisBorder.offsetY,this.isCategoryBarHorizontal=i.config.chart.type==="bar"&&i.config.plotOptions.bar.horizontal,this.xaxisFontSize=i.config.xaxis.labels.style.fontSize,this.xaxisFontFamily=i.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=i.config.xaxis.labels.style.colors,this.xaxisBorderWidth=i.config.xaxis.axisBorder.width,this.isCategoryBarHorizontal&&(this.xaxisBorderWidth=i.config.yaxis[0].axisBorder.width.toString()),this.xaxisBorderWidth.indexOf("%")>-1?this.xaxisBorderWidth=i.globals.gridWidth*parseInt(this.xaxisBorderWidth,10)/100:this.xaxisBorderWidth=parseInt(this.xaxisBorderWidth,10),this.xaxisBorderHeight=i.config.xaxis.axisBorder.height,this.yaxis=i.config.yaxis[0]}return b(T,[{key:"drawXaxis",value:function(){var s=this.w,a=new _(this.ctx),i=a.group({class:"apexcharts-xaxis",transform:"translate(".concat(s.config.xaxis.offsetX,", ").concat(s.config.xaxis.offsetY,")")}),d=a.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(s.globals.translateXAxisX,", ").concat(s.globals.translateXAxisY,")")});i.add(d);for(var c=[],p=0;p6&&arguments[6]!==void 0?arguments[6]:{},M=[],x=[],I=this.w,$=k.xaxisFontSize||this.xaxisFontSize,N=k.xaxisFontFamily||this.xaxisFontFamily,L=k.xaxisForeColors||this.xaxisForeColors,F=k.fontWeight||I.config.xaxis.labels.style.fontWeight,V=k.cssClass||I.config.xaxis.labels.style.cssClass,Z=I.globals.padHorizontal,m=d.length,y=I.config.xaxis.type==="category"?I.globals.dataPoints:m;if(y===0&&m>y&&(y=m),c){var j=y>1?y-1:y;w=I.globals.gridWidth/j,Z=Z+p(0,w)/2+I.config.xaxis.labels.offsetX}else w=I.globals.gridWidth/y,Z=Z+p(0,w)+I.config.xaxis.labels.offsetX;for(var R=function(Q){var ot=Z-p(Q,w)/2+I.config.xaxis.labels.offsetX;Q===0&&m===1&&w/2===Z&&y===1&&(ot=I.globals.gridWidth/2);var it=f.axesUtils.getLabel(d,I.globals.timescaleLabels,ot,Q,M,$,s),vt=28;if(I.globals.rotateXLabels&&s&&(vt=22),I.config.xaxis.title.text&&I.config.xaxis.position==="top"&&(vt+=parseFloat(I.config.xaxis.title.style.fontSize)+2),s||(vt=vt+parseFloat($)+(I.globals.xAxisLabelsHeight-I.globals.xAxisGroupLabelsHeight)+(I.globals.rotateXLabels?10:0)),it=I.config.xaxis.tickAmount!==void 0&&I.config.xaxis.tickAmount!=="dataPoints"&&I.config.xaxis.type!=="datetime"?f.axesUtils.checkLabelBasedOnTickamount(Q,it,m):f.axesUtils.checkForOverflowingLabels(Q,it,m,M,x),I.config.xaxis.labels.show){var zt=a.drawText({x:it.x,y:f.offY+I.config.xaxis.labels.offsetY+vt-(I.config.xaxis.position==="top"?I.globals.xAxisHeight+I.config.xaxis.axisTicks.height-2:0),text:it.text,textAnchor:"middle",fontWeight:it.isBold?600:F,fontSize:$,fontFamily:N,foreColor:Array.isArray(L)?s&&I.config.xaxis.convertedCatToNumeric?L[I.globals.minX+Q-1]:L[Q]:L,isPlainText:!1,cssClass:(s?"apexcharts-xaxis-label ":"apexcharts-xaxis-group-label ")+V});if(i.add(zt),zt.on("click",function(Et){if(typeof I.config.chart.events.xAxisLabelClick=="function"){var qt=Object.assign({},I,{labelIndex:Q});I.config.chart.events.xAxisLabelClick(Et,f.ctx,qt)}}),s){var Mt=document.createElementNS(I.globals.SVGNS,"title");Mt.textContent=Array.isArray(it.text)?it.text.join(" "):it.text,zt.node.appendChild(Mt),it.text!==""&&(M.push(it.text),x.push(it))}}Qd.globals.gridWidth)){var p=this.offY+d.config.xaxis.axisTicks.offsetY;if(a=a+p+d.config.xaxis.axisTicks.height,d.config.xaxis.position==="top"&&(a=p-d.config.xaxis.axisTicks.height),d.config.xaxis.axisTicks.show){var w=new _(this.ctx).drawLine(s+d.config.xaxis.axisTicks.offsetX,p+d.config.xaxis.offsetY,c+d.config.xaxis.axisTicks.offsetX,a+d.config.xaxis.offsetY,d.config.xaxis.axisTicks.color);i.add(w),w.node.classList.add("apexcharts-xaxis-tick")}}}},{key:"getXAxisTicksPositions",value:function(){var s=this.w,a=[],i=this.xaxisLabels.length,d=s.globals.padHorizontal;if(s.globals.timescaleLabels.length>0)for(var c=0;c0){var M=c[c.length-1].getBBox(),x=c[0].getBBox();M.x<-20&&c[c.length-1].parentNode.removeChild(c[c.length-1]),x.x+x.width>s.globals.gridWidth&&!s.globals.isBarHorizontal&&c[0].parentNode.removeChild(c[0]);for(var I=0;I0&&(this.xaxisLabels=a.globals.timescaleLabels.slice())}return b(T,[{key:"drawGridArea",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=this.w,i=new _(this.ctx);s===null&&(s=i.group({class:"apexcharts-grid"}));var d=i.drawLine(a.globals.padHorizontal,1,a.globals.padHorizontal,a.globals.gridHeight,"transparent"),c=i.drawLine(a.globals.padHorizontal,a.globals.gridHeight,a.globals.gridWidth,a.globals.gridHeight,"transparent");return s.add(c),s.add(d),s}},{key:"drawGrid",value:function(){var s=null;return this.w.globals.axisCharts&&(s=this.renderGrid(),this.drawGridArea(s.el)),s}},{key:"createGridMask",value:function(){var s=this.w,a=s.globals,i=new _(this.ctx),d=Array.isArray(s.config.stroke.width)?0:s.config.stroke.width;if(Array.isArray(s.config.stroke.width)){var c=0;s.config.stroke.width.forEach(function(x){c=Math.max(c,x)}),d=c}a.dom.elGridRectMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elGridRectMask.setAttribute("id","gridRectMask".concat(a.cuid)),a.dom.elGridRectMarkerMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elGridRectMarkerMask.setAttribute("id","gridRectMarkerMask".concat(a.cuid)),a.dom.elForecastMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elForecastMask.setAttribute("id","forecastMask".concat(a.cuid)),a.dom.elNonForecastMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elNonForecastMask.setAttribute("id","nonForecastMask".concat(a.cuid));var p=s.config.chart.type,w=0,f=0;(p==="bar"||p==="rangeBar"||p==="candlestick"||p==="boxPlot"||s.globals.comboBarCount>0)&&s.globals.isXNumeric&&!s.globals.isBarHorizontal&&(w=s.config.grid.padding.left,f=s.config.grid.padding.right,a.barPadForNumericAxis>w&&(w=a.barPadForNumericAxis,f=a.barPadForNumericAxis)),a.dom.elGridRect=i.drawRect(-d/2-w-2,-d/2,a.gridWidth+d+f+w+4,a.gridHeight+d,0,"#fff");var k=s.globals.markers.largestSize+1;a.dom.elGridRectMarker=i.drawRect(2*-k,2*-k,a.gridWidth+4*k,a.gridHeight+4*k,0,"#fff"),a.dom.elGridRectMask.appendChild(a.dom.elGridRect.node),a.dom.elGridRectMarkerMask.appendChild(a.dom.elGridRectMarker.node);var M=a.dom.baseEl.querySelector("defs");M.appendChild(a.dom.elGridRectMask),M.appendChild(a.dom.elForecastMask),M.appendChild(a.dom.elNonForecastMask),M.appendChild(a.dom.elGridRectMarkerMask)}},{key:"_drawGridLines",value:function(s){var a=s.i,i=s.x1,d=s.y1,c=s.x2,p=s.y2,w=s.xCount,f=s.parent,k=this.w;if(!(a===0&&k.globals.skipFirstTimelinelabel||a===w-1&&k.globals.skipLastTimelinelabel&&!k.config.xaxis.labels.formatter||k.config.chart.type==="radar")){k.config.grid.xaxis.lines.show&&this._drawGridLine({i:a,x1:i,y1:d,x2:c,y2:p,xCount:w,parent:f});var M=0;if(k.globals.hasXaxisGroups&&k.config.xaxis.tickPlacement==="between"){var x=k.globals.groups;if(x){for(var I=0,$=0;I2));c++);return!s.globals.isBarHorizontal||this.isRangeBar?(i=this.xaxisLabels.length,this.isRangeBar&&(i--,d=s.globals.labels.length,s.config.xaxis.tickAmount&&s.config.xaxis.labels.formatter&&(i=s.config.xaxis.tickAmount)),this._drawXYLines({xCount:i,tickAmount:d})):(i=d,d=s.globals.xTickAmount,this._drawInvertedXYLines({xCount:i,tickAmount:d})),this.drawGridBands(i,d),{el:this.elg,elGridBorders:this.elGridBorders,xAxisTickWidth:s.globals.gridWidth/i}}},{key:"drawGridBands",value:function(s,a){var i=this.w;if(i.config.grid.row.colors!==void 0&&i.config.grid.row.colors.length>0)for(var d=0,c=i.globals.gridHeight/a,p=i.globals.gridWidth,w=0,f=0;w=i.config.grid.row.colors.length&&(f=0),this._drawGridBandRect({c:f,x1:0,y1:d,x2:p,y2:c,type:"row"}),d+=i.globals.gridHeight/a;if(i.config.grid.column.colors!==void 0&&i.config.grid.column.colors.length>0)for(var k=i.globals.isBarHorizontal||i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric?s:s-1,M=i.globals.padHorizontal,x=i.globals.padHorizontal+i.globals.gridWidth/k,I=i.globals.gridHeight,$=0,N=0;$=i.config.grid.column.colors.length&&(N=0),this._drawGridBandRect({c:N,x1:M,y1:0,x2:x,y2:I,type:"column"}),M+=i.globals.gridWidth/k}}]),T}(),J=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"niceScale",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,c=arguments.length>4?arguments[4]:void 0,p=this.w,w=Math.abs(a-s);if((i=this._adjustTicksForSmallRange(i,d,w))==="dataPoints"&&(i=p.globals.dataPoints-1),s===Number.MIN_VALUE&&a===0||!H.isNumber(s)&&!H.isNumber(a)||s===Number.MIN_VALUE&&a===-Number.MAX_VALUE)return s=0,a=i,this.linearScale(s,a,i);s>a?(console.warn("axis.min cannot be greater than axis.max"),a=s+.1):s===a&&(s=s===0?0:s-.5,a=a===0?2:a+.5);var f=[];w<1&&c&&(p.config.chart.type==="candlestick"||p.config.series[d].type==="candlestick"||p.config.chart.type==="boxPlot"||p.config.series[d].type==="boxPlot"||p.globals.isRangeData)&&(a*=1.01);var k=i+1;k<2?k=2:k>2&&(k-=2);var M=w/k,x=Math.floor(H.log10(M)),I=Math.pow(10,x),$=Math.round(M/I);$<1&&($=1);var N=$*I,L=N*Math.floor(s/N),F=N*Math.ceil(a/N),V=L;if(c&&w>2){for(;f.push(H.stripNumber(V,7)),!((V+=N)>F););return{result:f,niceMin:f[0],niceMax:f[f.length-1]}}var Z=s;(f=[]).push(H.stripNumber(Z,7));for(var m=Math.abs(a-s)/i,y=0;y<=i;y++)Z+=m,f.push(Z);return f[f.length-2]>=a&&f.pop(),{result:f,niceMin:f[0],niceMax:f[f.length-1]}}},{key:"linearScale",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,d=arguments.length>3?arguments[3]:void 0,c=Math.abs(a-s);(i=this._adjustTicksForSmallRange(i,d,c))==="dataPoints"&&(i=this.w.globals.dataPoints-1);var p=c/i;i===Number.MAX_VALUE&&(i=10,p=1);for(var w=[],f=s;i>=0;)w.push(f),f+=p,i-=1;return{result:w,niceMin:w[0],niceMax:w[w.length-1]}}},{key:"logarithmicScaleNice",value:function(s,a,i){a<=0&&(a=Math.max(s,i)),s<=0&&(s=Math.min(a,i));for(var d=[],c=Math.ceil(Math.log(a)/Math.log(i)+1),p=Math.floor(Math.log(s)/Math.log(i));p5)d.allSeriesCollapsed=!1,d.yAxisScale[s]=this.logarithmicScale(a,i,p.logBase),d.yAxisScale[s]=p.forceNiceScale?this.logarithmicScaleNice(a,i,p.logBase):this.logarithmicScale(a,i,p.logBase);else if(i!==-Number.MAX_VALUE&&H.isNumber(i))if(d.allSeriesCollapsed=!1,p.min===void 0&&p.max===void 0||p.forceNiceScale){var f=c.yaxis[s].max===void 0&&c.yaxis[s].min===void 0||c.yaxis[s].forceNiceScale;d.yAxisScale[s]=this.niceScale(a,i,p.tickAmount?p.tickAmount:w<5&&w>1?w+1:5,s,f)}else d.yAxisScale[s]=this.linearScale(a,i,p.tickAmount,s);else d.yAxisScale[s]=this.linearScale(0,5,5)}},{key:"setXScale",value:function(s,a){var i=this.w,d=i.globals,c=i.config.xaxis,p=Math.abs(a-s);return a!==-Number.MAX_VALUE&&H.isNumber(a)?d.xAxisScale=this.linearScale(s,a,c.tickAmount?c.tickAmount:p<5&&p>1?p+1:5,0):d.xAxisScale=this.linearScale(0,5,5),d.xAxisScale}},{key:"setMultipleYScales",value:function(){var s=this,a=this.w.globals,i=this.w.config,d=a.minYArr.concat([]),c=a.maxYArr.concat([]),p=[];i.yaxis.forEach(function(w,f){var k=f;i.series.forEach(function(I,$){I.name===w.seriesName&&(k=$,f!==$?p.push({index:$,similarIndex:f,alreadyExists:!0}):p.push({index:$}))});var M=d[k],x=c[k];s.setYScaleForIndex(f,M,x)}),this.sameScaleInMultipleAxes(d,c,p)}},{key:"sameScaleInMultipleAxes",value:function(s,a,i){var d=this,c=this.w.config,p=this.w.globals,w=[];i.forEach(function(L){L.alreadyExists&&(w[L.index]===void 0&&(w[L.index]=[]),w[L.index].push(L.index),w[L.index].push(L.similarIndex))}),p.yAxisSameScaleIndices=w,w.forEach(function(L,F){w.forEach(function(V,Z){var m,y;F!==Z&&(m=L,y=V,m.filter(function(j){return y.indexOf(j)!==-1})).length>0&&(w[F]=w[F].concat(w[Z]))})});var f=w.map(function(L){return L.filter(function(F,V){return L.indexOf(F)===V})}).map(function(L){return L.sort()});w=w.filter(function(L){return!!L});var k=f.slice(),M=k.map(function(L){return JSON.stringify(L)});k=k.filter(function(L,F){return M.indexOf(JSON.stringify(L))===F});var x=[],I=[];s.forEach(function(L,F){k.forEach(function(V,Z){V.indexOf(F)>-1&&(x[Z]===void 0&&(x[Z]=[],I[Z]=[]),x[Z].push({key:F,value:L}),I[Z].push({key:F,value:a[F]}))})});var $=Array.apply(null,Array(k.length)).map(Number.prototype.valueOf,Number.MIN_VALUE),N=Array.apply(null,Array(k.length)).map(Number.prototype.valueOf,-Number.MAX_VALUE);x.forEach(function(L,F){L.forEach(function(V,Z){$[F]=Math.min(V.value,$[F])})}),I.forEach(function(L,F){L.forEach(function(V,Z){N[F]=Math.max(V.value,N[F])})}),s.forEach(function(L,F){I.forEach(function(V,Z){var m=$[Z],y=N[Z];c.chart.stacked&&(y=0,V.forEach(function(j,R){j.value!==-Number.MAX_VALUE&&(y+=j.value),m!==Number.MIN_VALUE&&(m+=x[Z][R].value)})),V.forEach(function(j,R){V[R].key===F&&(c.yaxis[F].min!==void 0&&(m=typeof c.yaxis[F].min=="function"?c.yaxis[F].min(p.minY):c.yaxis[F].min),c.yaxis[F].max!==void 0&&(y=typeof c.yaxis[F].max=="function"?c.yaxis[F].max(p.maxY):c.yaxis[F].max),d.setYScaleForIndex(F,m,y))})})})}},{key:"autoScaleY",value:function(s,a,i){s||(s=this);var d=s.w;if(d.globals.isMultipleYAxis||d.globals.collapsedSeries.length)return console.warn("autoScaleYaxis is not supported in a multi-yaxis chart."),a;var c=d.globals.seriesX[0],p=d.config.chart.stacked;return a.forEach(function(w,f){for(var k=0,M=0;M=i.xaxis.min){k=M;break}var x,I,$=d.globals.minYArr[f],N=d.globals.maxYArr[f],L=d.globals.stackedSeriesTotals;d.globals.series.forEach(function(F,V){var Z=F[k];p?(Z=L[k],x=I=Z,L.forEach(function(m,y){c[y]<=i.xaxis.max&&c[y]>=i.xaxis.min&&(m>I&&m!==null&&(I=m),F[y]=i.xaxis.min){var j=m,R=m;d.globals.series.forEach(function(K,Q){m!==null&&(j=Math.min(K[y],j),R=Math.max(K[y],R))}),R>I&&R!==null&&(I=R),j$&&(x=$),a.length>1?(a[V].min=w.min===void 0?x:w.min,a[V].max=w.max===void 0?I:w.max):(a[0].min=w.min===void 0?x:w.min,a[0].max=w.max===void 0?I:w.max)})}),a}}]),T}(),lt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.scales=new J(s)}return b(T,[{key:"init",value:function(){this.setYRange(),this.setXRange(),this.setZRange()}},{key:"getMinYMaxY",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:-Number.MAX_VALUE,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,c=this.w.config,p=this.w.globals,w=-Number.MAX_VALUE,f=Number.MIN_VALUE;d===null&&(d=s+1);var k=p.series,M=k,x=k;c.chart.type==="candlestick"?(M=p.seriesCandleL,x=p.seriesCandleH):c.chart.type==="boxPlot"?(M=p.seriesCandleO,x=p.seriesCandleC):p.isRangeData&&(M=p.seriesRangeStart,x=p.seriesRangeEnd);for(var I=s;IM[I][$]&&M[I][$]<0&&(f=M[I][$])):p.hasNullValues=!0}}return c.chart.type==="rangeBar"&&p.seriesRangeStart.length&&p.isBarHorizontal&&(f=a),c.chart.type==="bar"&&(f<0&&w<0&&(w=0),f===Number.MIN_VALUE&&(f=0)),{minY:f,maxY:w,lowestY:a,highestY:i}}},{key:"setYRange",value:function(){var s=this.w.globals,a=this.w.config;s.maxY=-Number.MAX_VALUE,s.minY=Number.MIN_VALUE;var i=Number.MAX_VALUE;if(s.isMultipleYAxis)for(var d=0;d=0&&i<=10||a.yaxis[0].min!==void 0||a.yaxis[0].max!==void 0)&&(w=0),s.minY=i-5*w/100,i>0&&s.minY<0&&(s.minY=0),s.maxY=s.maxY+5*w/100}return a.yaxis.forEach(function(f,k){f.max!==void 0&&(typeof f.max=="number"?s.maxYArr[k]=f.max:typeof f.max=="function"&&(s.maxYArr[k]=f.max(s.isMultipleYAxis?s.maxYArr[k]:s.maxY)),s.maxY=s.maxYArr[k]),f.min!==void 0&&(typeof f.min=="number"?s.minYArr[k]=f.min:typeof f.min=="function"&&(s.minYArr[k]=f.min(s.isMultipleYAxis?s.minYArr[k]===Number.MIN_VALUE?0:s.minYArr[k]:s.minY)),s.minY=s.minYArr[k])}),s.isBarHorizontal&&["min","max"].forEach(function(f){a.xaxis[f]!==void 0&&typeof a.xaxis[f]=="number"&&(f==="min"?s.minY=a.xaxis[f]:s.maxY=a.xaxis[f])}),s.isMultipleYAxis?(this.scales.setMultipleYScales(),s.minY=i,s.yAxisScale.forEach(function(f,k){s.minYArr[k]=f.niceMin,s.maxYArr[k]=f.niceMax})):(this.scales.setYScaleForIndex(0,s.minY,s.maxY),s.minY=s.yAxisScale[0].niceMin,s.maxY=s.yAxisScale[0].niceMax,s.minYArr[0]=s.yAxisScale[0].niceMin,s.maxYArr[0]=s.yAxisScale[0].niceMax),{minY:s.minY,maxY:s.maxY,minYArr:s.minYArr,maxYArr:s.maxYArr,yAxisScale:s.yAxisScale}}},{key:"setXRange",value:function(){var s=this.w.globals,a=this.w.config,i=a.xaxis.type==="numeric"||a.xaxis.type==="datetime"||a.xaxis.type==="category"&&!s.noLabelsProvided||s.noLabelsProvided||s.isXNumeric;if(s.isXNumeric&&function(){for(var w=0;ws.dataPoints&&s.dataPoints!==0&&(d=s.dataPoints-1)):a.xaxis.tickAmount==="dataPoints"?(s.series.length>1&&(d=s.series[s.maxValsInArrayIndex].length-1),s.isXNumeric&&(d=s.maxX-s.minX-1)):d=a.xaxis.tickAmount,s.xTickAmount=d,a.xaxis.max!==void 0&&typeof a.xaxis.max=="number"&&(s.maxX=a.xaxis.max),a.xaxis.min!==void 0&&typeof a.xaxis.min=="number"&&(s.minX=a.xaxis.min),a.xaxis.range!==void 0&&(s.minX=s.maxX-a.xaxis.range),s.minX!==Number.MAX_VALUE&&s.maxX!==-Number.MAX_VALUE)if(a.xaxis.convertedCatToNumeric&&!s.dataFormatXNumeric){for(var c=[],p=s.minX-1;p0&&(s.xAxisScale=this.scales.linearScale(1,s.labels.length,d-1),s.seriesX=s.labels.slice());i&&(s.labels=s.xAxisScale.result.slice())}return s.isBarHorizontal&&s.labels.length&&(s.xTickAmount=s.labels.length),this._handleSingleDataPoint(),this._getMinXDiff(),{minX:s.minX,maxX:s.maxX}}},{key:"setZRange",value:function(){var s=this.w.globals;if(s.isDataXYZ){for(var a=0;a0){var w=c-d[p-1];w>0&&(s.minXDiff=Math.min(w,s.minXDiff))}}),s.dataPoints!==1&&s.minXDiff!==Number.MAX_VALUE||(s.minXDiff=.5)})}},{key:"_setStackedMinMax",value:function(){var s=this,a=this.w.globals;if(a.series.length){var i=a.seriesGroups;i.length||(i=[this.w.config.series.map(function(p){return p.name})]);var d={},c={};i.forEach(function(p){d[p]=[],c[p]=[],s.w.config.series.map(function(w,f){return p.indexOf(w.name)>-1?f:null}).filter(function(w){return w!==null}).forEach(function(w){for(var f=0;f0?d[p][f]+=parseFloat(a.series[w][f])+1e-4:c[p][f]+=parseFloat(a.series[w][f]))})}),Object.entries(d).forEach(function(p){var w=D(p,1)[0];d[w].forEach(function(f,k){a.maxY=Math.max(a.maxY,d[w][k]),a.minY=Math.min(a.minY,c[w][k])})})}}}]),T}(),at=function(){function T(s,a){g(this,T),this.ctx=s,this.elgrid=a,this.w=s.w;var i=this.w;this.xaxisFontSize=i.config.xaxis.labels.style.fontSize,this.axisFontFamily=i.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=i.config.xaxis.labels.style.colors,this.isCategoryBarHorizontal=i.config.chart.type==="bar"&&i.config.plotOptions.bar.horizontal,this.xAxisoffX=0,i.config.xaxis.position==="bottom"&&(this.xAxisoffX=i.globals.gridHeight),this.drawnLabels=[],this.axesUtils=new Ht(s)}return b(T,[{key:"drawYaxis",value:function(s){var a=this,i=this.w,d=new _(this.ctx),c=i.config.yaxis[s].labels.style,p=c.fontSize,w=c.fontFamily,f=c.fontWeight,k=d.group({class:"apexcharts-yaxis",rel:s,transform:"translate("+i.globals.translateYAxisX[s]+", 0)"});if(this.axesUtils.isYAxisHidden(s))return k;var M=d.group({class:"apexcharts-yaxis-texts-g"});k.add(M);var x=i.globals.yAxisScale[s].result.length-1,I=i.globals.gridHeight/x,$=i.globals.translateY,N=i.globals.yLabelFormatters[s],L=i.globals.yAxisScale[s].result.slice();L=this.axesUtils.checkForReversedLabels(s,L);var F="";if(i.config.yaxis[s].labels.show)for(var V=function(ot){var it=L[ot];it=N(it,ot,i);var vt=i.config.yaxis[s].labels.padding;i.config.yaxis[s].opposite&&i.config.yaxis.length!==0&&(vt*=-1);var zt="end";i.config.yaxis[s].opposite&&(zt="start"),i.config.yaxis[s].labels.align==="left"?zt="start":i.config.yaxis[s].labels.align==="center"?zt="middle":i.config.yaxis[s].labels.align==="right"&&(zt="end");var Mt=a.axesUtils.getYAxisForeColor(c.colors,s),Et=d.drawText({x:vt,y:$+x/10+i.config.yaxis[s].labels.offsetY+1,text:it,textAnchor:zt,fontSize:p,fontFamily:w,fontWeight:f,maxWidth:i.config.yaxis[s].labels.maxWidth,foreColor:Array.isArray(Mt)?Mt[ot]:Mt,isPlainText:!1,cssClass:"apexcharts-yaxis-label "+c.cssClass});ot===x&&(F=Et),M.add(Et);var qt=document.createElementNS(i.globals.SVGNS,"title");if(qt.textContent=Array.isArray(it)?it.join(" "):it,Et.node.appendChild(qt),i.config.yaxis[s].labels.rotate!==0){var ae=d.rotateAroundCenter(F.node),ie=d.rotateAroundCenter(Et.node);Et.node.setAttribute("transform","rotate(".concat(i.config.yaxis[s].labels.rotate," ").concat(ae.x," ").concat(ie.y,")"))}$+=I},Z=x;Z>=0;Z--)V(Z);if(i.config.yaxis[s].title.text!==void 0){var m=d.group({class:"apexcharts-yaxis-title"}),y=0;i.config.yaxis[s].opposite&&(y=i.globals.translateYAxisX[s]);var j=d.drawText({x:y,y:i.globals.gridHeight/2+i.globals.translateY+i.config.yaxis[s].title.offsetY,text:i.config.yaxis[s].title.text,textAnchor:"end",foreColor:i.config.yaxis[s].title.style.color,fontSize:i.config.yaxis[s].title.style.fontSize,fontWeight:i.config.yaxis[s].title.style.fontWeight,fontFamily:i.config.yaxis[s].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+i.config.yaxis[s].title.style.cssClass});m.add(j),k.add(m)}var R=i.config.yaxis[s].axisBorder,K=31+R.offsetX;if(i.config.yaxis[s].opposite&&(K=-31-R.offsetX),R.show){var Q=d.drawLine(K,i.globals.translateY+R.offsetY-2,K,i.globals.gridHeight+i.globals.translateY+R.offsetY+2,R.color,0,R.width);k.add(Q)}return i.config.yaxis[s].axisTicks.show&&this.axesUtils.drawYAxisTicks(K,x,R,i.config.yaxis[s].axisTicks,s,I,k),k}},{key:"drawYaxisInversed",value:function(s){var a=this.w,i=new _(this.ctx),d=i.group({class:"apexcharts-xaxis apexcharts-yaxis-inversed"}),c=i.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(a.globals.translateXAxisX,", ").concat(a.globals.translateXAxisY,")")});d.add(c);var p=a.globals.yAxisScale[s].result.length-1,w=a.globals.gridWidth/p+.1,f=w+a.config.xaxis.labels.offsetX,k=a.globals.xLabelFormatter,M=a.globals.yAxisScale[s].result.slice(),x=a.globals.timescaleLabels;x.length>0&&(this.xaxisLabels=x.slice(),p=(M=x.slice()).length),M=this.axesUtils.checkForReversedLabels(s,M);var I=x.length;if(a.config.xaxis.labels.show)for(var $=I?0:p;I?$=0;I?$++:$--){var N=M[$];N=k(N,$,a);var L=a.globals.gridWidth+a.globals.padHorizontal-(f-w+a.config.xaxis.labels.offsetX);if(x.length){var F=this.axesUtils.getLabel(M,x,L,$,this.drawnLabels,this.xaxisFontSize);L=F.x,N=F.text,this.drawnLabels.push(F.text),$===0&&a.globals.skipFirstTimelinelabel&&(N=""),$===M.length-1&&a.globals.skipLastTimelinelabel&&(N="")}var V=i.drawText({x:L,y:this.xAxisoffX+a.config.xaxis.labels.offsetY+30-(a.config.xaxis.position==="top"?a.globals.xAxisHeight+a.config.xaxis.axisTicks.height-2:0),text:N,textAnchor:"middle",foreColor:Array.isArray(this.xaxisForeColors)?this.xaxisForeColors[s]:this.xaxisForeColors,fontSize:this.xaxisFontSize,fontFamily:this.xaxisFontFamily,fontWeight:a.config.xaxis.labels.style.fontWeight,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+a.config.xaxis.labels.style.cssClass});c.add(V),V.tspan(N);var Z=document.createElementNS(a.globals.SVGNS,"title");Z.textContent=N,V.node.appendChild(Z),f+=w}return this.inversedYAxisTitleText(d),this.inversedYAxisBorder(d),d}},{key:"inversedYAxisBorder",value:function(s){var a=this.w,i=new _(this.ctx),d=a.config.xaxis.axisBorder;if(d.show){var c=0;a.config.chart.type==="bar"&&a.globals.isXNumeric&&(c-=15);var p=i.drawLine(a.globals.padHorizontal+c+d.offsetX,this.xAxisoffX,a.globals.gridWidth,this.xAxisoffX,d.color,0,d.height);this.elgrid&&this.elgrid.elGridBorders&&a.config.grid.show?this.elgrid.elGridBorders.add(p):s.add(p)}}},{key:"inversedYAxisTitleText",value:function(s){var a=this.w,i=new _(this.ctx);if(a.config.xaxis.title.text!==void 0){var d=i.group({class:"apexcharts-xaxis-title apexcharts-yaxis-title-inversed"}),c=i.drawText({x:a.globals.gridWidth/2+a.config.xaxis.title.offsetX,y:this.xAxisoffX+parseFloat(this.xaxisFontSize)+parseFloat(a.config.xaxis.title.style.fontSize)+a.config.xaxis.title.offsetY+20,text:a.config.xaxis.title.text,textAnchor:"middle",fontSize:a.config.xaxis.title.style.fontSize,fontFamily:a.config.xaxis.title.style.fontFamily,fontWeight:a.config.xaxis.title.style.fontWeight,foreColor:a.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+a.config.xaxis.title.style.cssClass});d.add(c),s.add(d)}}},{key:"yAxisTitleRotate",value:function(s,a){var i=this.w,d=new _(this.ctx),c={width:0,height:0},p={width:0,height:0},w=i.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(s,"'] .apexcharts-yaxis-texts-g"));w!==null&&(c=w.getBoundingClientRect());var f=i.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(s,"'] .apexcharts-yaxis-title text"));if(f!==null&&(p=f.getBoundingClientRect()),f!==null){var k=this.xPaddingForYAxisTitle(s,c,p,a);f.setAttribute("x",k.xPos-(a?10:0))}if(f!==null){var M=d.rotateAroundCenter(f);f.setAttribute("transform","rotate(".concat(a?-1*i.config.yaxis[s].title.rotate:i.config.yaxis[s].title.rotate," ").concat(M.x," ").concat(M.y,")"))}}},{key:"xPaddingForYAxisTitle",value:function(s,a,i,d){var c=this.w,p=0,w=0,f=10;return c.config.yaxis[s].title.text===void 0||s<0?{xPos:w,padd:0}:(d?(w=a.width+c.config.yaxis[s].title.offsetX+i.width/2+f/2,(p+=1)===0&&(w-=f/2)):(w=-1*a.width+c.config.yaxis[s].title.offsetX+f/2+i.width/2,c.globals.isBarHorizontal&&(f=25,w=-1*a.width-c.config.yaxis[s].title.offsetX-f)),{xPos:w,padd:f})}},{key:"setYAxisXPosition",value:function(s,a){var i=this.w,d=0,c=0,p=18,w=1;i.config.yaxis.length>1&&(this.multipleYs=!0),i.config.yaxis.map(function(f,k){var M=i.globals.ignoreYAxisIndexes.indexOf(k)>-1||!f.show||f.floating||s[k].width===0,x=s[k].width+a[k].width;f.opposite?i.globals.isBarHorizontal?(c=i.globals.gridWidth+i.globals.translateX-1,i.globals.translateYAxisX[k]=c-f.labels.offsetX):(c=i.globals.gridWidth+i.globals.translateX+w,M||(w=w+x+20),i.globals.translateYAxisX[k]=c-f.labels.offsetX+20):(d=i.globals.translateX-p,M||(p=p+x+20),i.globals.translateYAxisX[k]=d+f.labels.offsetX)})}},{key:"setYAxisTextAlignments",value:function(){var s=this.w,a=s.globals.dom.baseEl.getElementsByClassName("apexcharts-yaxis");(a=H.listToArray(a)).forEach(function(i,d){var c=s.config.yaxis[d];if(c&&!c.floating&&c.labels.align!==void 0){var p=s.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(d,"'] .apexcharts-yaxis-texts-g")),w=s.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(d,"'] .apexcharts-yaxis-label"));w=H.listToArray(w);var f=p.getBoundingClientRect();c.labels.align==="left"?(w.forEach(function(k,M){k.setAttribute("text-anchor","start")}),c.opposite||p.setAttribute("transform","translate(-".concat(f.width,", 0)"))):c.labels.align==="center"?(w.forEach(function(k,M){k.setAttribute("text-anchor","middle")}),p.setAttribute("transform","translate(".concat(f.width/2*(c.opposite?1:-1),", 0)"))):c.labels.align==="right"&&(w.forEach(function(k,M){k.setAttribute("text-anchor","end")}),c.opposite&&p.setAttribute("transform","translate(".concat(f.width,", 0)")))}})}}]),T}(),ct=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.documentEvent=H.bind(this.documentEvent,this)}return b(T,[{key:"addEventListener",value:function(s,a){var i=this.w;i.globals.events.hasOwnProperty(s)?i.globals.events[s].push(a):i.globals.events[s]=[a]}},{key:"removeEventListener",value:function(s,a){var i=this.w;if(i.globals.events.hasOwnProperty(s)){var d=i.globals.events[s].indexOf(a);d!==-1&&i.globals.events[s].splice(d,1)}}},{key:"fireEvent",value:function(s,a){var i=this.w;if(i.globals.events.hasOwnProperty(s)){a&&a.length||(a=[]);for(var d=i.globals.events[s],c=d.length,p=0;p0&&(a=this.w.config.chart.locales.concat(window.Apex.chart.locales));var i=a.filter(function(c){return c.name===s})[0];if(!i)throw new Error("Wrong locale name provided. Please make sure you set the correct locale name in options");var d=H.extend(st,i);this.w.globals.locale=d.options}}]),T}(),yt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"drawAxis",value:function(s,a){var i,d,c=this,p=this.w.globals,w=this.w.config,f=new bt(this.ctx,a),k=new at(this.ctx,a);p.axisCharts&&s!=="radar"&&(p.isBarHorizontal?(d=k.drawYaxisInversed(0),i=f.drawXaxisInversed(0),p.dom.elGraphical.add(i),p.dom.elGraphical.add(d)):(i=f.drawXaxis(),p.dom.elGraphical.add(i),w.yaxis.map(function(M,x){if(p.ignoreYAxisIndexes.indexOf(x)===-1&&(d=k.drawYaxis(x),p.dom.Paper.add(d),c.w.config.grid.position==="back")){var I=p.dom.Paper.children()[1];I.remove(),p.dom.Paper.add(I)}})))}}]),T}(),Dt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"drawXCrosshairs",value:function(){var s=this.w,a=new _(this.ctx),i=new W(this.ctx),d=s.config.xaxis.crosshairs.fill.gradient,c=s.config.xaxis.crosshairs.dropShadow,p=s.config.xaxis.crosshairs.fill.type,w=d.colorFrom,f=d.colorTo,k=d.opacityFrom,M=d.opacityTo,x=d.stops,I=c.enabled,$=c.left,N=c.top,L=c.blur,F=c.color,V=c.opacity,Z=s.config.xaxis.crosshairs.fill.color;if(s.config.xaxis.crosshairs.show){p==="gradient"&&(Z=a.drawGradient("vertical",w,f,k,M,null,x,null));var m=a.drawRect();s.config.xaxis.crosshairs.width===1&&(m=a.drawLine());var y=s.globals.gridHeight;(!H.isNumber(y)||y<0)&&(y=0);var j=s.config.xaxis.crosshairs.width;(!H.isNumber(j)||j<0)&&(j=0),m.attr({class:"apexcharts-xcrosshairs",x:0,y:0,y2:y,width:j,height:y,fill:Z,filter:"none","fill-opacity":s.config.xaxis.crosshairs.opacity,stroke:s.config.xaxis.crosshairs.stroke.color,"stroke-width":s.config.xaxis.crosshairs.stroke.width,"stroke-dasharray":s.config.xaxis.crosshairs.stroke.dashArray}),I&&(m=i.dropShadow(m,{left:$,top:N,blur:L,color:F,opacity:V})),s.globals.dom.elGraphical.add(m)}}},{key:"drawYCrosshairs",value:function(){var s=this.w,a=new _(this.ctx),i=s.config.yaxis[0].crosshairs,d=s.globals.barPadForNumericAxis;if(s.config.yaxis[0].crosshairs.show){var c=a.drawLine(-d,0,s.globals.gridWidth+d,0,i.stroke.color,i.stroke.dashArray,i.stroke.width);c.attr({class:"apexcharts-ycrosshairs"}),s.globals.dom.elGraphical.add(c)}var p=a.drawLine(-d,0,s.globals.gridWidth+d,0,i.stroke.color,0,0);p.attr({class:"apexcharts-ycrosshairs-hidden"}),s.globals.dom.elGraphical.add(p)}}]),T}(),St=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"checkResponsiveConfig",value:function(s){var a=this,i=this.w,d=i.config;if(d.responsive.length!==0){var c=d.responsive.slice();c.sort(function(k,M){return k.breakpoint>M.breakpoint?1:M.breakpoint>k.breakpoint?-1:0}).reverse();var p=new It({}),w=function(){var k=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},M=c[0].breakpoint,x=window.innerWidth>0?window.innerWidth:screen.width;if(x>M){var I=tt.extendArrayProps(p,i.globals.initialConfig,i);k=H.extend(I,k),k=H.extend(i.config,k),a.overrideResponsiveOptions(k)}else for(var $=0;$0&&typeof i.config.colors[0]=="function"&&(i.globals.colors=i.config.series.map(function(N,L){var F=i.config.colors[L];return F||(F=i.config.colors[0]),typeof F=="function"?(a.isColorFn=!0,F({value:i.globals.axisCharts?i.globals.series[L][0]?i.globals.series[L][0]:0:i.globals.series[L],seriesIndex:L,dataPointIndex:L,w:i})):F}))),i.globals.seriesColors.map(function(N,L){N&&(i.globals.colors[L]=N)}),i.config.theme.monochrome.enabled){var c=[],p=i.globals.series.length;(this.isBarDistributed||this.isHeatmapDistributed)&&(p=i.globals.series[0].length*i.globals.series.length);for(var w=i.config.theme.monochrome.color,f=1/(p/i.config.theme.monochrome.shadeIntensity),k=i.config.theme.monochrome.shadeTo,M=0,x=0;x2&&arguments[2]!==void 0?arguments[2]:null,d=this.w,c=a||d.globals.series.length;if(i===null&&(i=this.isBarDistributed||this.isHeatmapDistributed||d.config.chart.type==="heatmap"&&d.config.plotOptions.heatmap.colorScale.inverse),i&&d.globals.series.length&&(c=d.globals.series[d.globals.maxValsInArrayIndex].length*d.globals.series.length),s.lengths.globals.svgWidth&&(this.dCtx.lgRect.width=s.globals.svgWidth/1.5),this.dCtx.lgRect}},{key:"getLargestStringFromMultiArr",value:function(s,a){var i=s;if(this.w.globals.isMultiLineX){var d=a.map(function(p,w){return Array.isArray(p)?p.length:1}),c=Math.max.apply(Math,E(d));i=a[d.indexOf(c)]}return i}}]),T}(),Yt=function(){function T(s){g(this,T),this.w=s.w,this.dCtx=s}return b(T,[{key:"getxAxisLabelsCoords",value:function(){var s,a=this.w,i=a.globals.labels.slice();if(a.config.xaxis.convertedCatToNumeric&&i.length===0&&(i=a.globals.categoryLabels),a.globals.timescaleLabels.length>0){var d=this.getxAxisTimeScaleLabelsCoords();s={width:d.width,height:d.height},a.globals.rotateXLabels=!1}else{this.dCtx.lgWidthForSideLegends=a.config.legend.position!=="left"&&a.config.legend.position!=="right"||a.config.legend.floating?0:this.dCtx.lgRect.width;var c=a.globals.xLabelFormatter,p=H.getLargestStringFromArr(i),w=this.dCtx.dimHelpers.getLargestStringFromMultiArr(p,i);a.globals.isBarHorizontal&&(w=p=a.globals.yAxisScale[0].result.reduce(function(N,L){return N.length>L.length?N:L},0));var f=new Ct(this.dCtx.ctx),k=p;p=f.xLabelFormat(c,p,k,{i:void 0,dateFormatter:new dt(this.dCtx.ctx).formatDate,w:a}),w=f.xLabelFormat(c,w,k,{i:void 0,dateFormatter:new dt(this.dCtx.ctx).formatDate,w:a}),(a.config.xaxis.convertedCatToNumeric&&p===void 0||String(p).trim()==="")&&(w=p="1");var M=new _(this.dCtx.ctx),x=M.getTextRects(p,a.config.xaxis.labels.style.fontSize),I=x;if(p!==w&&(I=M.getTextRects(w,a.config.xaxis.labels.style.fontSize)),(s={width:x.width>=I.width?x.width:I.width,height:x.height>=I.height?x.height:I.height}).width*i.length>a.globals.svgWidth-this.dCtx.lgWidthForSideLegends-this.dCtx.yAxisWidth-this.dCtx.gridPad.left-this.dCtx.gridPad.right&&a.config.xaxis.labels.rotate!==0||a.config.xaxis.labels.rotateAlways){if(!a.globals.isBarHorizontal){a.globals.rotateXLabels=!0;var $=function(N){return M.getTextRects(N,a.config.xaxis.labels.style.fontSize,a.config.xaxis.labels.style.fontFamily,"rotate(".concat(a.config.xaxis.labels.rotate," 0 0)"),!1)};x=$(p),p!==w&&(I=$(w)),s.height=(x.height>I.height?x.height:I.height)/1.5,s.width=x.width>I.width?x.width:I.width}}else a.globals.rotateXLabels=!1}return a.config.xaxis.labels.show||(s={width:0,height:0}),{width:s.width,height:s.height}}},{key:"getxAxisGroupLabelsCoords",value:function(){var s,a=this.w;if(!a.globals.hasXaxisGroups)return{width:0,height:0};var i,d=((s=a.config.xaxis.group.style)===null||s===void 0?void 0:s.fontSize)||a.config.xaxis.labels.style.fontSize,c=a.globals.groups.map(function(x){return x.title}),p=H.getLargestStringFromArr(c),w=this.dCtx.dimHelpers.getLargestStringFromMultiArr(p,c),f=new _(this.dCtx.ctx),k=f.getTextRects(p,d),M=k;return p!==w&&(M=f.getTextRects(w,d)),i={width:k.width>=M.width?k.width:M.width,height:k.height>=M.height?k.height:M.height},a.config.xaxis.labels.show||(i={width:0,height:0}),{width:i.width,height:i.height}}},{key:"getxAxisTitleCoords",value:function(){var s=this.w,a=0,i=0;if(s.config.xaxis.title.text!==void 0){var d=new _(this.dCtx.ctx).getTextRects(s.config.xaxis.title.text,s.config.xaxis.title.style.fontSize);a=d.width,i=d.height}return{width:a,height:i}}},{key:"getxAxisTimeScaleLabelsCoords",value:function(){var s,a=this.w;this.dCtx.timescaleLabels=a.globals.timescaleLabels.slice();var i=this.dCtx.timescaleLabels.map(function(c){return c.value}),d=i.reduce(function(c,p){return c===void 0?(console.error("You have possibly supplied invalid Date format. Please supply a valid JavaScript Date"),0):c.length>p.length?c:p},0);return 1.05*(s=new _(this.dCtx.ctx).getTextRects(d,a.config.xaxis.labels.style.fontSize)).width*i.length>a.globals.gridWidth&&a.config.xaxis.labels.rotate!==0&&(a.globals.overlappingXLabels=!0),s}},{key:"additionalPaddingXLabels",value:function(s){var a=this,i=this.w,d=i.globals,c=i.config,p=c.xaxis.type,w=s.width;d.skipLastTimelinelabel=!1,d.skipFirstTimelinelabel=!1;var f=i.config.yaxis[0].opposite&&i.globals.isBarHorizontal,k=function(M,x){c.yaxis.length>1&&function(I){return d.collapsedSeriesIndices.indexOf(I)!==-1}(x)||function(I){if(a.dCtx.timescaleLabels&&a.dCtx.timescaleLabels.length){var $=a.dCtx.timescaleLabels[0],N=a.dCtx.timescaleLabels[a.dCtx.timescaleLabels.length-1].position+w/1.75-a.dCtx.yAxisWidthRight,L=$.position-w/1.75+a.dCtx.yAxisWidthLeft,F=i.config.legend.position==="right"&&a.dCtx.lgRect.width>0?a.dCtx.lgRect.width:0;N>d.svgWidth-d.translateX-F&&(d.skipLastTimelinelabel=!0),L<-(I.show&&!I.floating||c.chart.type!=="bar"&&c.chart.type!=="candlestick"&&c.chart.type!=="rangeBar"&&c.chart.type!=="boxPlot"?10:w/1.75)&&(d.skipFirstTimelinelabel=!0)}else p==="datetime"?a.dCtx.gridPad.rightString(f.niceMax).length?x:f.niceMax,$=M(I,{seriesIndex:w,dataPointIndex:-1,w:a}),N=$;if($!==void 0&&$.length!==0||($=I),a.globals.isBarHorizontal){d=0;var L=a.globals.labels.slice();$=M($=H.getLargestStringFromArr(L),{seriesIndex:w,dataPointIndex:-1,w:a}),N=s.dCtx.dimHelpers.getLargestStringFromMultiArr($,L)}var F=new _(s.dCtx.ctx),V="rotate(".concat(p.labels.rotate," 0 0)"),Z=F.getTextRects($,p.labels.style.fontSize,p.labels.style.fontFamily,V,!1),m=Z;$!==N&&(m=F.getTextRects(N,p.labels.style.fontSize,p.labels.style.fontFamily,V,!1)),i.push({width:(k>m.width||k>Z.width?k:m.width>Z.width?m.width:Z.width)+d,height:m.height>Z.height?m.height:Z.height})}else i.push({width:0,height:0})}),i}},{key:"getyAxisTitleCoords",value:function(){var s=this,a=this.w,i=[];return a.config.yaxis.map(function(d,c){if(d.show&&d.title.text!==void 0){var p=new _(s.dCtx.ctx),w="rotate(".concat(d.title.rotate," 0 0)"),f=p.getTextRects(d.title.text,d.title.style.fontSize,d.title.style.fontFamily,w,!1);i.push({width:f.width,height:f.height})}else i.push({width:0,height:0})}),i}},{key:"getTotalYAxisWidth",value:function(){var s=this.w,a=0,i=0,d=0,c=s.globals.yAxisScale.length>1?10:0,p=new Ht(this.dCtx.ctx),w=function(f,k){var M=s.config.yaxis[k].floating,x=0;f.width>0&&!M?(x=f.width+c,function(I){return s.globals.ignoreYAxisIndexes.indexOf(I)>-1}(k)&&(x=x-f.width-c)):x=M||p.isYAxisHidden(k)?0:5,s.config.yaxis[k].opposite?d+=x:i+=x,a+=x};return s.globals.yLabelsCoords.map(function(f,k){w(f,k)}),s.globals.yTitleCoords.map(function(f,k){w(f,k)}),s.globals.isBarHorizontal&&!s.config.yaxis[0].floating&&(a=s.globals.yLabelsCoords[0].width+s.globals.yTitleCoords[0].width+15),this.dCtx.yAxisWidthLeft=i,this.dCtx.yAxisWidthRight=d,a}}]),T}(),Jt=function(){function T(s){g(this,T),this.w=s.w,this.dCtx=s}return b(T,[{key:"gridPadForColumnsInNumericAxis",value:function(s){var a=this.w;if(a.globals.noData||a.globals.allSeriesCollapsed)return 0;var i=function(M){return M==="bar"||M==="rangeBar"||M==="candlestick"||M==="boxPlot"},d=a.config.chart.type,c=0,p=i(d)?a.config.series.length:1;if(a.globals.comboBarCount>0&&(p=a.globals.comboBarCount),a.globals.collapsedSeries.forEach(function(M){i(M.type)&&(p-=1)}),a.config.chart.stacked&&(p=1),(i(d)||a.globals.comboBarCount>0)&&a.globals.isXNumeric&&!a.globals.isBarHorizontal&&p>0){var w,f,k=Math.abs(a.globals.initialMaxX-a.globals.initialMinX);k<=3&&(k=a.globals.dataPoints),w=k/s,a.globals.minXDiff&&a.globals.minXDiff/w>0&&(f=a.globals.minXDiff/w),f>s/2&&(f/=2),(c=f/p*parseInt(a.config.plotOptions.bar.columnWidth,10)/100)<1&&(c=1),c=c/(p>1?1:1.5)+5,a.globals.barPadForNumericAxis=c}return c}},{key:"gridPadFortitleSubtitle",value:function(){var s=this,a=this.w,i=a.globals,d=this.dCtx.isSparkline||!a.globals.axisCharts?0:10;["title","subtitle"].forEach(function(w){a.config[w].text!==void 0?d+=a.config[w].margin:d+=s.dCtx.isSparkline||!a.globals.axisCharts?0:5}),!a.config.legend.show||a.config.legend.position!=="bottom"||a.config.legend.floating||a.globals.axisCharts||(d+=10);var c=this.dCtx.dimHelpers.getTitleSubtitleCoords("title"),p=this.dCtx.dimHelpers.getTitleSubtitleCoords("subtitle");i.gridHeight=i.gridHeight-c.height-p.height-d,i.translateY=i.translateY+c.height+p.height+d}},{key:"setGridXPosForDualYAxis",value:function(s,a){var i=this.w,d=new Ht(this.dCtx.ctx);i.config.yaxis.map(function(c,p){i.globals.ignoreYAxisIndexes.indexOf(p)!==-1||c.floating||d.isYAxisHidden(p)||(c.opposite&&(i.globals.translateX=i.globals.translateX-(a[p].width+s[p].width)-parseInt(i.config.yaxis[p].labels.style.fontSize,10)/1.2-12),i.globals.translateX<2&&(i.globals.translateX=2))})}}]),T}(),se=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.lgRect={},this.yAxisWidth=0,this.yAxisWidthLeft=0,this.yAxisWidthRight=0,this.xAxisHeight=0,this.isSparkline=this.w.config.chart.sparkline.enabled,this.dimHelpers=new Ut(this),this.dimYAxis=new Gt(this),this.dimXAxis=new Yt(this),this.dimGrid=new Jt(this),this.lgWidthForSideLegends=0,this.gridPad=this.w.config.grid.padding,this.xPadRight=0,this.xPadLeft=0}return b(T,[{key:"plotCoords",value:function(){var s=this,a=this.w,i=a.globals;this.lgRect=this.dimHelpers.getLegendsRect(),this.isSparkline&&(a.config.markers.discrete.length>0||a.config.markers.size>0)&&Object.entries(this.gridPad).forEach(function(c){var p=D(c,2),w=p[0],f=p[1];s.gridPad[w]=Math.max(f,s.w.globals.markers.largestSize/1.5)}),i.axisCharts?this.setDimensionsForAxisCharts():this.setDimensionsForNonAxisCharts(),this.dimGrid.gridPadFortitleSubtitle(),i.gridHeight=i.gridHeight-this.gridPad.top-this.gridPad.bottom,i.gridWidth=i.gridWidth-this.gridPad.left-this.gridPad.right-this.xPadRight-this.xPadLeft;var d=this.dimGrid.gridPadForColumnsInNumericAxis(i.gridWidth);i.gridWidth=i.gridWidth-2*d,i.translateX=i.translateX+this.gridPad.left+this.xPadLeft+(d>0?d+4:0),i.translateY=i.translateY+this.gridPad.top}},{key:"setDimensionsForAxisCharts",value:function(){var s=this,a=this.w,i=a.globals,d=this.dimYAxis.getyAxisLabelsCoords(),c=this.dimYAxis.getyAxisTitleCoords();a.globals.yLabelsCoords=[],a.globals.yTitleCoords=[],a.config.yaxis.map(function($,N){a.globals.yLabelsCoords.push({width:d[N].width,index:N}),a.globals.yTitleCoords.push({width:c[N].width,index:N})}),this.yAxisWidth=this.dimYAxis.getTotalYAxisWidth();var p=this.dimXAxis.getxAxisLabelsCoords(),w=this.dimXAxis.getxAxisGroupLabelsCoords(),f=this.dimXAxis.getxAxisTitleCoords();this.conditionalChecksForAxisCoords(p,f,w),i.translateXAxisY=a.globals.rotateXLabels?this.xAxisHeight/8:-4,i.translateXAxisX=a.globals.rotateXLabels&&a.globals.isXNumeric&&a.config.xaxis.labels.rotate<=-45?-this.xAxisWidth/4:0,a.globals.isBarHorizontal&&(i.rotateXLabels=!1,i.translateXAxisY=parseInt(a.config.xaxis.labels.style.fontSize,10)/1.5*-1),i.translateXAxisY=i.translateXAxisY+a.config.xaxis.labels.offsetY,i.translateXAxisX=i.translateXAxisX+a.config.xaxis.labels.offsetX;var k=this.yAxisWidth,M=this.xAxisHeight;i.xAxisLabelsHeight=this.xAxisHeight-f.height,i.xAxisGroupLabelsHeight=i.xAxisLabelsHeight-p.height,i.xAxisLabelsWidth=this.xAxisWidth,i.xAxisHeight=this.xAxisHeight;var x=10;(a.config.chart.type==="radar"||this.isSparkline)&&(k=0,M=i.goldenPadding),this.isSparkline&&(this.lgRect={height:0,width:0}),(this.isSparkline||a.config.chart.type==="treemap")&&(k=0,M=0,x=0),this.isSparkline||this.dimXAxis.additionalPaddingXLabels(p);var I=function(){i.translateX=k,i.gridHeight=i.svgHeight-s.lgRect.height-M-(s.isSparkline||a.config.chart.type==="treemap"?0:a.globals.rotateXLabels?10:15),i.gridWidth=i.svgWidth-k};switch(a.config.xaxis.position==="top"&&(x=i.xAxisHeight-a.config.xaxis.axisTicks.height-5),a.config.legend.position){case"bottom":i.translateY=x,I();break;case"top":i.translateY=this.lgRect.height+x,I();break;case"left":i.translateY=x,i.translateX=this.lgRect.width+k,i.gridHeight=i.svgHeight-M-12,i.gridWidth=i.svgWidth-this.lgRect.width-k;break;case"right":i.translateY=x,i.translateX=k,i.gridHeight=i.svgHeight-M-12,i.gridWidth=i.svgWidth-this.lgRect.width-k-5;break;default:throw new Error("Legend position not supported")}this.dimGrid.setGridXPosForDualYAxis(c,d),new at(this.ctx).setYAxisXPosition(d,c)}},{key:"setDimensionsForNonAxisCharts",value:function(){var s=this.w,a=s.globals,i=s.config,d=0;s.config.legend.show&&!s.config.legend.floating&&(d=20);var c=i.chart.type==="pie"||i.chart.type==="polarArea"||i.chart.type==="donut"?"pie":"radialBar",p=i.plotOptions[c].offsetY,w=i.plotOptions[c].offsetX;if(!i.legend.show||i.legend.floating)return a.gridHeight=a.svgHeight-i.grid.padding.left+i.grid.padding.right,a.gridWidth=a.gridHeight,a.translateY=p,void(a.translateX=w+(a.svgWidth-a.gridWidth)/2);switch(i.legend.position){case"bottom":a.gridHeight=a.svgHeight-this.lgRect.height-a.goldenPadding,a.gridWidth=a.svgWidth,a.translateY=p-10,a.translateX=w+(a.svgWidth-a.gridWidth)/2;break;case"top":a.gridHeight=a.svgHeight-this.lgRect.height-a.goldenPadding,a.gridWidth=a.svgWidth,a.translateY=this.lgRect.height+p+10,a.translateX=w+(a.svgWidth-a.gridWidth)/2;break;case"left":a.gridWidth=a.svgWidth-this.lgRect.width-d,a.gridHeight=i.chart.height!=="auto"?a.svgHeight:a.gridWidth,a.translateY=p,a.translateX=w+this.lgRect.width+d;break;case"right":a.gridWidth=a.svgWidth-this.lgRect.width-d-5,a.gridHeight=i.chart.height!=="auto"?a.svgHeight:a.gridWidth,a.translateY=p,a.translateX=w+10;break;default:throw new Error("Legend position not supported")}}},{key:"conditionalChecksForAxisCoords",value:function(s,a,i){var d=this.w,c=d.globals.hasXaxisGroups?2:1,p=i.height+s.height+a.height,w=d.globals.isMultiLineX?1.2:d.globals.LINE_HEIGHT_RATIO,f=d.globals.rotateXLabels?22:10,k=d.globals.rotateXLabels&&d.config.legend.position==="bottom"?10:0;this.xAxisHeight=p*w+c*f+k,this.xAxisWidth=s.width,this.xAxisHeight-a.height>d.config.xaxis.labels.maxHeight&&(this.xAxisHeight=d.config.xaxis.labels.maxHeight),d.config.xaxis.labels.minHeight&&this.xAxisHeightx&&(this.yAxisWidth=x)}}]),T}(),me=function(){function T(s){g(this,T),this.w=s.w,this.lgCtx=s}return b(T,[{key:"getLegendStyles",value:function(){var s=document.createElement("style");s.setAttribute("type","text/css");var a=document.createTextNode(` +
    `):'
    ')+"
    ".concat(d[0],': ')+p+"
    "+"
    ".concat(d[1],': ')+w+"
    "+(f?"
    ".concat(d[2],': ')+f+"
    ":"")+"
    ".concat(d[3],': ')+b+"
    "+"
    ".concat(d[4],': ')+M+"
    "}}]),T}(),It=function(){function T(s){g(this,T),this.opts=s}return k(T,[{key:"init",value:function(s){var a=s.responsiveOverride,i=this.opts,d=new rt,u=new gt(i);this.chartType=i.chart.type,i=this.extendYAxis(i),i=this.extendAnnotations(i);var p=d.init(),w={};if(i&&c(i)==="object"){var f,b,M,z,y,A,N,L,O={};O=["line","area","bar","candlestick","boxPlot","rangeBar","rangeArea","bubble","scatter","heatmap","treemap","pie","polarArea","donut","radar","radialBar"].indexOf(i.chart.type)!==-1?u[i.chart.type]():u.line(),(f=i.plotOptions)!==null&&f!==void 0&&(b=f.bar)!==null&&b!==void 0&&b.isFunnel&&(O=u.funnel()),i.chart.stacked&&i.chart.type==="bar"&&(O=u.stackedBars()),(M=i.chart.brush)!==null&&M!==void 0&&M.enabled&&(O=u.brush(O)),i.chart.stacked&&i.chart.stackType==="100%"&&(i=u.stacked100(i)),(z=i.plotOptions)!==null&&z!==void 0&&(y=z.bar)!==null&&y!==void 0&&y.isDumbbell&&(i=u.dumbbell(i)),this.checkForDarkTheme(window.Apex),this.checkForDarkTheme(i),i.xaxis=i.xaxis||window.Apex.xaxis||{},a||(i.xaxis.convertedCatToNumeric=!1),((A=(i=this.checkForCatToNumericXAxis(this.chartType,O,i)).chart.sparkline)!==null&&A!==void 0&&A.enabled||(N=window.Apex.chart)!==null&&N!==void 0&&(L=N.sparkline)!==null&&L!==void 0&&L.enabled)&&(O=u.sparkline(O)),w=H.extend(p,O)}var V=H.extend(w,window.Apex);return p=H.extend(V,i),p=this.handleUserInputErrors(p)}},{key:"checkForCatToNumericXAxis",value:function(s,a,i){var d,u,p=new gt(i),w=(s==="bar"||s==="boxPlot")&&((d=i.plotOptions)===null||d===void 0||(u=d.bar)===null||u===void 0?void 0:u.horizontal),f=s==="pie"||s==="polarArea"||s==="donut"||s==="radar"||s==="radialBar"||s==="heatmap",b=i.xaxis.type!=="datetime"&&i.xaxis.type!=="numeric",M=i.xaxis.tickPlacement?i.xaxis.tickPlacement:a.xaxis&&a.xaxis.tickPlacement;return w||f||!b||M==="between"||(i=p.convertCatToNumeric(i)),i}},{key:"extendYAxis",value:function(s,a){var i=new rt;(s.yaxis===void 0||!s.yaxis||Array.isArray(s.yaxis)&&s.yaxis.length===0)&&(s.yaxis={}),s.yaxis.constructor!==Array&&window.Apex.yaxis&&window.Apex.yaxis.constructor!==Array&&(s.yaxis=H.extend(s.yaxis,window.Apex.yaxis)),s.yaxis.constructor!==Array?s.yaxis=[H.extend(i.yAxis,s.yaxis)]:s.yaxis=H.extendArray(s.yaxis,i.yAxis);var d=!1;s.yaxis.forEach(function(p){p.logarithmic&&(d=!0)});var u=s.series;return a&&!u&&(u=a.config.series),d&&u.length!==s.yaxis.length&&u.length&&(s.yaxis=u.map(function(p,w){if(p.name||(u[w].name="series-".concat(w+1)),s.yaxis[w])return s.yaxis[w].seriesName=u[w].name,s.yaxis[w];var f=H.extend(i.yAxis,s.yaxis[0]);return f.show=!1,f})),d&&u.length>1&&u.length!==s.yaxis.length&&console.warn("A multi-series logarithmic chart should have equal number of series and y-axes. Please make sure to equalize both."),s}},{key:"extendAnnotations",value:function(s){return s.annotations===void 0&&(s.annotations={},s.annotations.yaxis=[],s.annotations.xaxis=[],s.annotations.points=[]),s=this.extendYAxisAnnotations(s),s=this.extendXAxisAnnotations(s),s=this.extendPointAnnotations(s)}},{key:"extendYAxisAnnotations",value:function(s){var a=new rt;return s.annotations.yaxis=H.extendArray(s.annotations.yaxis!==void 0?s.annotations.yaxis:[],a.yAxisAnnotation),s}},{key:"extendXAxisAnnotations",value:function(s){var a=new rt;return s.annotations.xaxis=H.extendArray(s.annotations.xaxis!==void 0?s.annotations.xaxis:[],a.xAxisAnnotation),s}},{key:"extendPointAnnotations",value:function(s){var a=new rt;return s.annotations.points=H.extendArray(s.annotations.points!==void 0?s.annotations.points:[],a.pointAnnotation),s}},{key:"checkForDarkTheme",value:function(s){s.theme&&s.theme.mode==="dark"&&(s.tooltip||(s.tooltip={}),s.tooltip.theme!=="light"&&(s.tooltip.theme="dark"),s.chart.foreColor||(s.chart.foreColor="#f6f7f8"),s.chart.background||(s.chart.background="#424242"),s.theme.palette||(s.theme.palette="palette4"))}},{key:"handleUserInputErrors",value:function(s){var a=s;if(a.tooltip.shared&&a.tooltip.intersect)throw new Error("tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.");if(a.chart.type==="bar"&&a.plotOptions.bar.horizontal){if(a.yaxis.length>1)throw new Error("Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false");a.yaxis[0].reversed&&(a.yaxis[0].opposite=!0),a.xaxis.tooltip.enabled=!1,a.yaxis[0].tooltip.enabled=!1,a.chart.zoom.enabled=!1}return a.chart.type!=="bar"&&a.chart.type!=="rangeBar"||a.tooltip.shared&&a.xaxis.crosshairs.width==="barWidth"&&a.series.length>1&&(a.xaxis.crosshairs.width="tickWidth"),a.chart.type!=="candlestick"&&a.chart.type!=="boxPlot"||a.yaxis[0].reversed&&(console.warn("Reversed y-axis in ".concat(a.chart.type," chart is not supported.")),a.yaxis[0].reversed=!1),a}}]),T}(),At=function(){function T(){g(this,T)}return k(T,[{key:"initGlobalVars",value:function(s){s.series=[],s.seriesCandleO=[],s.seriesCandleH=[],s.seriesCandleM=[],s.seriesCandleL=[],s.seriesCandleC=[],s.seriesRangeStart=[],s.seriesRangeEnd=[],s.seriesRange=[],s.seriesPercent=[],s.seriesGoals=[],s.seriesX=[],s.seriesZ=[],s.seriesNames=[],s.seriesTotals=[],s.seriesLog=[],s.seriesColors=[],s.stackedSeriesTotals=[],s.seriesXvalues=[],s.seriesYvalues=[],s.labels=[],s.hasXaxisGroups=!1,s.groups=[],s.hasSeriesGroups=!1,s.seriesGroups=[],s.categoryLabels=[],s.timescaleLabels=[],s.noLabelsProvided=!1,s.resizeTimer=null,s.selectionResizeTimer=null,s.delayedElements=[],s.pointsArray=[],s.dataLabelsRects=[],s.isXNumeric=!1,s.skipLastTimelinelabel=!1,s.skipFirstTimelinelabel=!1,s.isDataXYZ=!1,s.isMultiLineX=!1,s.isMultipleYAxis=!1,s.maxY=-Number.MAX_VALUE,s.minY=Number.MIN_VALUE,s.minYArr=[],s.maxYArr=[],s.maxX=-Number.MAX_VALUE,s.minX=Number.MAX_VALUE,s.initialMaxX=-Number.MAX_VALUE,s.initialMinX=Number.MAX_VALUE,s.maxDate=0,s.minDate=Number.MAX_VALUE,s.minZ=Number.MAX_VALUE,s.maxZ=-Number.MAX_VALUE,s.minXDiff=Number.MAX_VALUE,s.yAxisScale=[],s.xAxisScale=null,s.xAxisTicksPositions=[],s.yLabelsCoords=[],s.yTitleCoords=[],s.barPadForNumericAxis=0,s.padHorizontal=0,s.xRange=0,s.yRange=[],s.zRange=0,s.dataPoints=0,s.xTickAmount=0}},{key:"globalVars",value:function(s){return{chartID:null,cuid:null,events:{beforeMount:[],mounted:[],updated:[],clicked:[],selection:[],dataPointSelection:[],zoomed:[],scrolled:[]},colors:[],clientX:null,clientY:null,fill:{colors:[]},stroke:{colors:[]},dataLabels:{style:{colors:[]}},radarPolygons:{fill:{colors:[]}},markers:{colors:[],size:s.markers.size,largestSize:0},animationEnded:!1,isTouchDevice:"ontouchstart"in window||navigator.msMaxTouchPoints,isDirty:!1,isExecCalled:!1,initialConfig:null,initialSeries:[],lastXAxis:[],lastYAxis:[],columnSeries:null,labels:[],timescaleLabels:[],noLabelsProvided:!1,allSeriesCollapsed:!1,collapsedSeries:[],collapsedSeriesIndices:[],ancillaryCollapsedSeries:[],ancillaryCollapsedSeriesIndices:[],risingSeries:[],dataFormatXNumeric:!1,capturedSeriesIndex:-1,capturedDataPointIndex:-1,selectedDataPoints:[],goldenPadding:35,invalidLogScale:!1,ignoreYAxisIndexes:[],yAxisSameScaleIndices:[],maxValsInArrayIndex:0,radialSize:0,selection:void 0,zoomEnabled:s.chart.toolbar.autoSelected==="zoom"&&s.chart.toolbar.tools.zoom&&s.chart.zoom.enabled,panEnabled:s.chart.toolbar.autoSelected==="pan"&&s.chart.toolbar.tools.pan,selectionEnabled:s.chart.toolbar.autoSelected==="selection"&&s.chart.toolbar.tools.selection,yaxis:null,mousedown:!1,lastClientPosition:{},visibleXRange:void 0,yValueDecimal:0,total:0,SVGNS:"http://www.w3.org/2000/svg",svgWidth:0,svgHeight:0,noData:!1,locale:{},dom:{},memory:{methodsToExec:[]},shouldAnimate:!0,skipLastTimelinelabel:!1,skipFirstTimelinelabel:!1,delayedElements:[],axisCharts:!0,isDataXYZ:!1,resized:!1,resizeTimer:null,comboCharts:!1,dataChanged:!1,previousPaths:[],allSeriesHasEqualX:!0,pointsArray:[],dataLabelsRects:[],lastDrawnDataLabelsIndexes:[],hasNullValues:!1,easing:null,zoomed:!1,gridWidth:0,gridHeight:0,rotateXLabels:!1,defaultLabels:!1,xLabelFormatter:void 0,yLabelFormatters:[],xaxisTooltipFormatter:void 0,ttKeyFormatter:void 0,ttVal:void 0,ttZFormatter:void 0,LINE_HEIGHT_RATIO:1.618,xAxisLabelsHeight:0,xAxisGroupLabelsHeight:0,xAxisLabelsWidth:0,yAxisLabelsWidth:0,scaleX:1,scaleY:1,translateX:0,translateY:0,translateYAxisX:[],yAxisWidths:[],translateXAxisY:0,translateXAxisX:0,tooltip:null}}},{key:"init",value:function(s){var a=this.globalVars(s);return this.initGlobalVars(a),a.initialConfig=H.extend({},s),a.initialSeries=H.clone(s.series),a.lastXAxis=H.clone(a.initialConfig.xaxis),a.lastYAxis=H.clone(a.initialConfig.yaxis),a}}]),T}(),Tt=function(){function T(s){g(this,T),this.opts=s}return k(T,[{key:"init",value:function(){var s=new It(this.opts).init({responsiveOverride:!1});return{config:s,globals:new At().init(s)}}}]),T}(),Ft=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.opts=null,this.seriesIndex=0}return k(T,[{key:"clippedImgArea",value:function(s){var a=this.w,i=a.config,d=parseInt(a.globals.gridWidth,10),u=parseInt(a.globals.gridHeight,10),p=d>u?d:u,w=s.image,f=0,b=0;s.width===void 0&&s.height===void 0?i.fill.image.width!==void 0&&i.fill.image.height!==void 0?(f=i.fill.image.width+1,b=i.fill.image.height):(f=p+1,b=p):(f=s.width,b=s.height);var M=document.createElementNS(a.globals.SVGNS,"pattern");_.setAttrs(M,{id:s.patternID,patternUnits:s.patternUnits?s.patternUnits:"userSpaceOnUse",width:f+"px",height:b+"px"});var z=document.createElementNS(a.globals.SVGNS,"image");M.appendChild(z),z.setAttributeNS(window.SVG.xlink,"href",w),_.setAttrs(z,{x:0,y:0,preserveAspectRatio:"none",width:f+"px",height:b+"px"}),z.style.opacity=s.opacity,a.globals.dom.elDefs.node.appendChild(M)}},{key:"getSeriesIndex",value:function(s){var a=this.w,i=a.config.chart.type;return(i==="bar"||i==="rangeBar")&&a.config.plotOptions.bar.distributed||i==="heatmap"||i==="treemap"?this.seriesIndex=s.seriesNumber:this.seriesIndex=s.seriesNumber%a.globals.series.length,this.seriesIndex}},{key:"fillPath",value:function(s){var a=this.w;this.opts=s;var i,d,u,p=this.w.config;this.seriesIndex=this.getSeriesIndex(s);var w=this.getFillColors()[this.seriesIndex];a.globals.seriesColors[this.seriesIndex]!==void 0&&(w=a.globals.seriesColors[this.seriesIndex]),typeof w=="function"&&(w=w({seriesIndex:this.seriesIndex,dataPointIndex:s.dataPointIndex,value:s.value,w:a}));var f=s.fillType?s.fillType:this.getFillType(this.seriesIndex),b=Array.isArray(p.fill.opacity)?p.fill.opacity[this.seriesIndex]:p.fill.opacity;s.color&&(w=s.color);var M=w;if(w.indexOf("rgb")===-1?w.length<9&&(M=H.hexToRgba(w,b)):w.indexOf("rgba")>-1&&(b=H.getOpacityFromRGBA(w)),s.opacity&&(b=s.opacity),f==="pattern"&&(d=this.handlePatternFill({fillConfig:s.fillConfig,patternFill:d,fillColor:w,fillOpacity:b,defaultColor:M})),f==="gradient"&&(u=this.handleGradientFill({fillConfig:s.fillConfig,fillColor:w,fillOpacity:b,i:this.seriesIndex})),f==="image"){var z=p.fill.image.src,y=s.patternID?s.patternID:"";this.clippedImgArea({opacity:b,image:Array.isArray(z)?s.seriesNumber-1&&(A=H.getOpacityFromRGBA(y));var N=p.gradient.opacityTo===void 0?i:Array.isArray(p.gradient.opacityTo)?p.gradient.opacityTo[u]:p.gradient.opacityTo;if(p.gradient.gradientToColors===void 0||p.gradient.gradientToColors.length===0)w=p.gradient.shade==="dark"?M.shadeColor(-1*parseFloat(p.gradient.shadeIntensity),a.indexOf("rgb")>-1?H.rgb2hex(a):a):M.shadeColor(parseFloat(p.gradient.shadeIntensity),a.indexOf("rgb")>-1?H.rgb2hex(a):a);else if(p.gradient.gradientToColors[f.seriesNumber]){var L=p.gradient.gradientToColors[f.seriesNumber];w=L,L.indexOf("rgba")>-1&&(N=H.getOpacityFromRGBA(L))}else w=a;if(p.gradient.gradientFrom&&(y=p.gradient.gradientFrom),p.gradient.gradientTo&&(w=p.gradient.gradientTo),p.gradient.inverseColors){var O=y;y=w,w=O}return y.indexOf("rgb")>-1&&(y=H.rgb2hex(y)),w.indexOf("rgb")>-1&&(w=H.rgb2hex(w)),b.drawGradient(z,y,w,A,N,f.size,p.gradient.stops,p.gradient.colorStops,u)}}]),T}(),Qt=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"setGlobalMarkerSize",value:function(){var s=this.w;if(s.globals.markers.size=Array.isArray(s.config.markers.size)?s.config.markers.size:[s.config.markers.size],s.globals.markers.size.length>0){if(s.globals.markers.size.length4&&arguments[4]!==void 0&&arguments[4],w=this.w,f=a,b=s,M=null,z=new _(this.ctx),y=w.config.markers.discrete&&w.config.markers.discrete.length;if((w.globals.markers.size[a]>0||p||y)&&(M=z.group({class:p||y?"":"apexcharts-series-markers"})).attr("clip-path","url(#gridRectMarkerMask".concat(w.globals.cuid,")")),Array.isArray(b.x))for(var A=0;A0:w.config.markers.size>0)||p||y){H.isNumber(b.y[A])?L+=" w".concat(H.randomId()):L="apexcharts-nullpoint";var O=this.getMarkerConfig({cssClass:L,seriesIndex:a,dataPointIndex:N});w.config.series[f].data[N]&&(w.config.series[f].data[N].fillColor&&(O.pointFillColor=w.config.series[f].data[N].fillColor),w.config.series[f].data[N].strokeColor&&(O.pointStrokeColor=w.config.series[f].data[N].strokeColor)),d&&(O.pSize=d),(b.x[A]<0||b.x[A]>w.globals.gridWidth||b.y[A]<0||b.y[A]>w.globals.gridHeight)&&(O.pSize=0),(u=z.drawMarker(b.x[A],b.y[A],O)).attr("rel",N),u.attr("j",N),u.attr("index",a),u.node.setAttribute("default-marker-size",O.pSize),new W(this.ctx).setSelectionFilter(u,a,N),this.addEvents(u),M&&M.add(u)}else w.globals.pointsArray[a]===void 0&&(w.globals.pointsArray[a]=[]),w.globals.pointsArray[a].push([b.x[A],b.y[A]])}return M}},{key:"getMarkerConfig",value:function(s){var a=s.cssClass,i=s.seriesIndex,d=s.dataPointIndex,u=d===void 0?null:d,p=s.finishRadius,w=p===void 0?null:p,f=this.w,b=this.getMarkerStyle(i),M=f.globals.markers.size[i],z=f.config.markers;return u!==null&&z.discrete.length&&z.discrete.map(function(y){y.seriesIndex===i&&y.dataPointIndex===u&&(b.pointStrokeColor=y.strokeColor,b.pointFillColor=y.fillColor,M=y.size,b.pointShape=y.shape)}),{pSize:w===null?M:w,pRadius:z.radius,width:Array.isArray(z.width)?z.width[i]:z.width,height:Array.isArray(z.height)?z.height[i]:z.height,pointStrokeWidth:Array.isArray(z.strokeWidth)?z.strokeWidth[i]:z.strokeWidth,pointStrokeColor:b.pointStrokeColor,pointFillColor:b.pointFillColor,shape:b.pointShape||(Array.isArray(z.shape)?z.shape[i]:z.shape),class:a,pointStrokeOpacity:Array.isArray(z.strokeOpacity)?z.strokeOpacity[i]:z.strokeOpacity,pointStrokeDashArray:Array.isArray(z.strokeDashArray)?z.strokeDashArray[i]:z.strokeDashArray,pointFillOpacity:Array.isArray(z.fillOpacity)?z.fillOpacity[i]:z.fillOpacity,seriesIndex:i}}},{key:"addEvents",value:function(s){var a=this.w,i=new _(this.ctx);s.node.addEventListener("mouseenter",i.pathMouseEnter.bind(this.ctx,s)),s.node.addEventListener("mouseleave",i.pathMouseLeave.bind(this.ctx,s)),s.node.addEventListener("mousedown",i.pathMouseDown.bind(this.ctx,s)),s.node.addEventListener("click",a.config.markers.onClick),s.node.addEventListener("dblclick",a.config.markers.onDblClick),s.node.addEventListener("touchstart",i.pathMouseDown.bind(this.ctx,s),{passive:!0})}},{key:"getMarkerStyle",value:function(s){var a=this.w,i=a.globals.markers.colors,d=a.config.markers.strokeColor||a.config.markers.strokeColors;return{pointStrokeColor:Array.isArray(d)?d[s]:d,pointFillColor:Array.isArray(i)?i[s]:i}}}]),T}(),Jt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled}return k(T,[{key:"draw",value:function(s,a,i){var d=this.w,u=new _(this.ctx),p=i.realIndex,w=i.pointsPos,f=i.zRatio,b=i.elParent,M=u.group({class:"apexcharts-series-markers apexcharts-series-".concat(d.config.chart.type)});if(M.attr("clip-path","url(#gridRectMarkerMask".concat(d.globals.cuid,")")),Array.isArray(w.x))for(var z=0;zO.maxBubbleRadius&&(L=O.maxBubbleRadius)}d.config.chart.animations.enabled||(N=L);var V=w.x[z],Z=w.y[z];if(N=N||0,Z!==null&&d.globals.series[p][y]!==void 0||(A=!1),A){var m=this.drawPoint(V,Z,N,L,p,y,a);M.add(m)}b.add(M)}}},{key:"drawPoint",value:function(s,a,i,d,u,p,w){var f=this.w,b=u,M=new U(this.ctx),z=new W(this.ctx),y=new Ft(this.ctx),A=new Qt(this.ctx),N=new _(this.ctx),L=A.getMarkerConfig({cssClass:"apexcharts-marker",seriesIndex:b,dataPointIndex:p,finishRadius:f.config.chart.type==="bubble"||f.globals.comboCharts&&f.config.series[u]&&f.config.series[u].type==="bubble"?d:null});d=L.pSize;var O,V=y.fillPath({seriesNumber:u,dataPointIndex:p,color:L.pointFillColor,patternUnits:"objectBoundingBox",value:f.globals.series[u][w]});if(L.shape==="circle"?O=N.drawCircle(i):L.shape!=="square"&&L.shape!=="rect"||(O=N.drawRect(0,0,L.width-L.pointStrokeWidth/2,L.height-L.pointStrokeWidth/2,L.pRadius)),f.config.series[b].data[p]&&f.config.series[b].data[p].fillColor&&(V=f.config.series[b].data[p].fillColor),O.attr({x:s-L.width/2-L.pointStrokeWidth/2,y:a-L.height/2-L.pointStrokeWidth/2,cx:s,cy:a,fill:V,"fill-opacity":L.pointFillOpacity,stroke:L.pointStrokeColor,r:d,"stroke-width":L.pointStrokeWidth,"stroke-dasharray":L.pointStrokeDashArray,"stroke-opacity":L.pointStrokeOpacity}),f.config.chart.dropShadow.enabled){var Z=f.config.chart.dropShadow;z.dropShadow(O,Z,u)}if(!this.initialAnim||f.globals.dataChanged||f.globals.resized)f.globals.animationEnded=!0;else{var m=f.config.chart.animations.speed;M.animateMarker(O,0,L.shape==="circle"?d:{width:L.width,height:L.height},m,f.globals.easing,function(){window.setTimeout(function(){M.animationCompleted(O)},100)})}if(f.globals.dataChanged&&L.shape==="circle")if(this.dynamicAnim){var C,j,E,K,Q=f.config.chart.animations.dynamicAnimation.speed;(K=f.globals.previousPaths[u]&&f.globals.previousPaths[u][w])!=null&&(C=K.x,j=K.y,E=K.r!==void 0?K.r:d);for(var ot=0;otf.globals.gridHeight+y&&(a=f.globals.gridHeight+y/2),f.globals.dataLabelsRects[d]===void 0&&(f.globals.dataLabelsRects[d]=[]),f.globals.dataLabelsRects[d].push({x:s,y:a,width:z,height:y});var A=f.globals.dataLabelsRects[d].length-2,N=f.globals.lastDrawnDataLabelsIndexes[d]!==void 0?f.globals.lastDrawnDataLabelsIndexes[d][f.globals.lastDrawnDataLabelsIndexes[d].length-1]:0;if(f.globals.dataLabelsRects[d][A]!==void 0){var L=f.globals.dataLabelsRects[d][N];(s>L.x+L.width+2||a>L.y+L.height+2||s+za.globals.gridWidth+O.textRects.width+10)&&(f="");var V=a.globals.dataLabels.style.colors[p];((a.config.chart.type==="bar"||a.config.chart.type==="rangeBar")&&a.config.plotOptions.bar.distributed||a.config.dataLabels.distributed)&&(V=a.globals.dataLabels.style.colors[w]),typeof V=="function"&&(V=V({series:a.globals.series,seriesIndex:p,dataPointIndex:w,w:a})),A&&(V=A);var Z=y.offsetX,m=y.offsetY;if(a.config.chart.type!=="bar"&&a.config.chart.type!=="rangeBar"||(Z=0,m=0),O.drawnextLabel){var C=i.drawText({width:100,height:parseInt(y.style.fontSize,10),x:d+Z,y:u+m,foreColor:V,textAnchor:b||y.textAnchor,text:f,fontSize:M||y.style.fontSize,fontFamily:y.style.fontFamily,fontWeight:y.style.fontWeight||"normal"});if(C.attr({class:"apexcharts-datalabel",cx:d,cy:u}),y.dropShadow.enabled){var j=y.dropShadow;new W(this.ctx).dropShadow(C,j)}z.add(C),a.globals.lastDrawnDataLabelsIndexes[p]===void 0&&(a.globals.lastDrawnDataLabelsIndexes[p]=[]),a.globals.lastDrawnDataLabelsIndexes[p].push(w)}}}},{key:"addBackgroundToDataLabel",value:function(s,a){var i=this.w,d=i.config.dataLabels.background,u=d.padding,p=d.padding/2,w=a.width,f=a.height,b=new _(this.ctx).drawRect(a.x-u,a.y-p/2,w+2*u,f+p,d.borderRadius,i.config.chart.background==="transparent"?"#fff":i.config.chart.background,d.opacity,d.borderWidth,d.borderColor);return d.dropShadow.enabled&&new W(this.ctx).dropShadow(b,d.dropShadow),b}},{key:"dataLabelsBackground",value:function(){var s=this.w;if(s.config.chart.type!=="bubble")for(var a=s.globals.dom.baseEl.querySelectorAll(".apexcharts-datalabels text"),i=0;i0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w,u=H.clone(d.globals.initialSeries);d.globals.previousPaths=[],i?(d.globals.collapsedSeries=[],d.globals.ancillaryCollapsedSeries=[],d.globals.collapsedSeriesIndices=[],d.globals.ancillaryCollapsedSeriesIndices=[]):u=this.emptyCollapsedSeries(u),d.config.series=u,s&&(a&&(d.globals.zoomed=!1,this.ctx.updateHelpers.revertDefaultAxisMinMax()),this.ctx.updateHelpers._updateSeries(u,d.config.chart.animations.dynamicAnimation.enabled))}},{key:"emptyCollapsedSeries",value:function(s){for(var a=this.w,i=0;i-1&&(s[i].data=[]);return s}},{key:"toggleSeriesOnHover",value:function(s,a){var i=this.w;a||(a=s.target);var d=i.globals.dom.baseEl.querySelectorAll(".apexcharts-series, .apexcharts-datalabels");if(s.type==="mousemove"){var u=parseInt(a.getAttribute("rel"),10)-1,p=null,w=null;i.globals.axisCharts||i.config.chart.type==="radialBar"?i.globals.axisCharts?(p=i.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(u,"']")),w=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels[data\\:realIndex='".concat(u,"']"))):p=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(u+1,"']")):p=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(u+1,"'] path"));for(var f=0;f=f.from&&M<=f.to&&u[b].classList.remove(i.legendInactiveClass)}}(d.config.plotOptions.heatmap.colorScale.ranges[w])}else s.type==="mouseout"&&p("remove")}},{key:"getActiveConfigSeriesIndex",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"asc",a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],i=this.w,d=0;if(i.config.series.length>1){for(var u=i.config.series.map(function(w,f){return w.data&&w.data.length>0&&i.globals.collapsedSeriesIndices.indexOf(f)===-1&&(!i.globals.comboCharts||a.length===0||a.length&&a.indexOf(i.config.series[f].type)>-1)?f:-1}),p=s==="asc"?0:u.length-1;s==="asc"?p=0;s==="asc"?p++:p--)if(u[p]!==-1){d=u[p];break}}return d}},{key:"getBarSeriesIndices",value:function(){return this.w.globals.comboCharts?this.w.config.series.map(function(s,a){return s.type==="bar"||s.type==="column"?a:-1}).filter(function(s){return s!==-1}):this.w.config.series.map(function(s,a){return a})}},{key:"getPreviousPaths",value:function(){var s=this.w;function a(p,w,f){for(var b=p[w].childNodes,M={type:f,paths:[],realIndex:p[w].getAttribute("data:realIndex")},z=0;z0)for(var d=function(p){for(var w=s.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(s.config.chart.type," .apexcharts-series[data\\:realIndex='").concat(p,"'] rect")),f=[],b=function(z){var y=function(N){return w[z].getAttribute(N)},A={x:parseFloat(y("x")),y:parseFloat(y("y")),width:parseFloat(y("width")),height:parseFloat(y("height"))};f.push({rect:A,color:w[z].getAttribute("color")})},M=0;M0)for(var d=0;d0?a:[]});return s}}]),T}(),pt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.twoDSeries=[],this.threeDSeries=[],this.twoDSeriesX=[],this.seriesGoals=[],this.coreUtils=new tt(this.ctx)}return k(T,[{key:"isMultiFormat",value:function(){return this.isFormatXY()||this.isFormat2DArray()}},{key:"isFormatXY",value:function(){var s=this.w.config.series.slice(),a=new ut(this.ctx);if(this.activeSeriesIndex=a.getActiveConfigSeriesIndex(),s[this.activeSeriesIndex].data!==void 0&&s[this.activeSeriesIndex].data.length>0&&s[this.activeSeriesIndex].data[0]!==null&&s[this.activeSeriesIndex].data[0].x!==void 0&&s[this.activeSeriesIndex].data[0]!==null)return!0}},{key:"isFormat2DArray",value:function(){var s=this.w.config.series.slice(),a=new ut(this.ctx);if(this.activeSeriesIndex=a.getActiveConfigSeriesIndex(),s[this.activeSeriesIndex].data!==void 0&&s[this.activeSeriesIndex].data.length>0&&s[this.activeSeriesIndex].data[0]!==void 0&&s[this.activeSeriesIndex].data[0]!==null&&s[this.activeSeriesIndex].data[0].constructor===Array)return!0}},{key:"handleFormat2DArray",value:function(s,a){for(var i=this.w.config,d=this.w.globals,u=i.chart.type==="boxPlot"||i.series[a].type==="boxPlot",p=0;p=5?this.twoDSeries.push(H.parseNumber(s[a].data[p][4])):this.twoDSeries.push(H.parseNumber(s[a].data[p][1])),d.dataFormatXNumeric=!0),i.xaxis.type==="datetime"){var w=new Date(s[a].data[p][0]);w=new Date(w).getTime(),this.twoDSeriesX.push(w)}else this.twoDSeriesX.push(s[a].data[p][0]);for(var f=0;f-1&&(p=this.activeSeriesIndex);for(var w=0;w1&&arguments[1]!==void 0?arguments[1]:this.ctx,u=this.w.config,p=this.w.globals,w=new dt(d),f=u.labels.length>0?u.labels.slice():u.xaxis.categories.slice();if(p.isRangeBar=u.chart.type==="rangeBar"&&p.isBarHorizontal,p.hasXaxisGroups=u.xaxis.type==="category"&&u.xaxis.group.groups.length>0,p.hasXaxisGroups&&(p.groups=u.xaxis.group.groups),p.hasSeriesGroups=(a=s[0])===null||a===void 0?void 0:a.group,p.hasSeriesGroups){var b=[],M=F(new Set(s.map(function(N){return N.group})));s.forEach(function(N,L){var O=M.indexOf(N.group);b[O]||(b[O]=[]),b[O].push(N.name)}),p.seriesGroups=b}for(var z=function(){for(var N=0;N0&&(this.twoDSeriesX=f,p.seriesX.push(this.twoDSeriesX))),p.labels.push(this.twoDSeriesX);var A=s[y].data.map(function(N){return H.parseNumber(N)});p.series.push(A)}p.seriesZ.push(this.threeDSeries),s[y].name!==void 0?p.seriesNames.push(s[y].name):p.seriesNames.push("series-"+parseInt(y+1,10)),s[y].color!==void 0?p.seriesColors.push(s[y].color):p.seriesColors.push(void 0)}return this.w}},{key:"parseDataNonAxisCharts",value:function(s){var a=this.w.globals,i=this.w.config;a.series=s.slice(),a.seriesNames=i.labels.slice();for(var d=0;d0?i.labels=a.xaxis.categories:a.labels.length>0?i.labels=a.labels.slice():this.fallbackToCategory?(i.labels=i.labels[0],i.seriesRange.length&&(i.seriesRange.map(function(d){d.forEach(function(u){i.labels.indexOf(u.x)<0&&u.x&&i.labels.push(u.x)})}),i.labels=Array.from(new Set(i.labels.map(JSON.stringify)),JSON.parse)),a.xaxis.convertedCatToNumeric&&(new gt(a).convertCatToNumericXaxis(a,this.ctx,i.seriesX[0]),this._generateExternalLabels(s))):this._generateExternalLabels(s)}},{key:"_generateExternalLabels",value:function(s){var a=this.w.globals,i=this.w.config,d=[];if(a.axisCharts){if(a.series.length>0)if(this.isFormatXY())for(var u=i.series.map(function(z,y){return z.data.filter(function(A,N,L){return L.findIndex(function(O){return O.x===A.x})===N})}),p=u.reduce(function(z,y,A,N){return N[z].length>y.length?z:A},0),w=0;w4&&arguments[4]!==void 0?arguments[4]:[],p=arguments.length>5&&arguments[5]!==void 0?arguments[5]:"12px",w=!(arguments.length>6&&arguments[6]!==void 0)||arguments[6],f=this.w,b=s[d]===void 0?"":s[d],M=b,z=f.globals.xLabelFormatter,y=f.config.xaxis.labels.formatter,A=!1,N=new Ct(this.ctx),L=b;w&&(M=N.xLabelFormat(z,b,L,{i:d,dateFormatter:new dt(this.ctx).formatDate,w:f}),y!==void 0&&(M=y(b,s[d],{i:d,dateFormatter:new dt(this.ctx).formatDate,w:f})));var O,V;a.length>0?(O=a[d].unit,V=null,a.forEach(function(j){j.unit==="month"?V="year":j.unit==="day"?V="month":j.unit==="hour"?V="day":j.unit==="minute"&&(V="hour")}),A=V===O,i=a[d].position,M=a[d].value):f.config.xaxis.type==="datetime"&&y===void 0&&(M=""),M===void 0&&(M=""),M=Array.isArray(M)?M:M.toString();var Z=new _(this.ctx),m={};m=f.globals.rotateXLabels&&w?Z.getTextRects(M,parseInt(p,10),null,"rotate(".concat(f.config.xaxis.labels.rotate," 0 0)"),!1):Z.getTextRects(M,parseInt(p,10));var C=!f.config.xaxis.labels.showDuplicates&&this.ctx.timeScale;return!Array.isArray(M)&&(M.indexOf("NaN")===0||M.toLowerCase().indexOf("invalid")===0||M.toLowerCase().indexOf("infinity")>=0||u.indexOf(M)>=0&&C)&&(M=""),{x:i,text:M,textRect:m,isBold:A}}},{key:"checkLabelBasedOnTickamount",value:function(s,a,i){var d=this.w,u=d.config.xaxis.tickAmount;return u==="dataPoints"&&(u=Math.round(d.globals.gridWidth/120)),u>i||s%Math.round(i/(u+1))==0||(a.text=""),a}},{key:"checkForOverflowingLabels",value:function(s,a,i,d,u){var p=this.w;if(s===0&&p.globals.skipFirstTimelinelabel&&(a.text=""),s===i-1&&p.globals.skipLastTimelinelabel&&(a.text=""),p.config.xaxis.labels.hideOverlappingLabels&&d.length>0){var w=u[u.length-1];a.x0){f.config.yaxis[u].opposite===!0&&(s+=d.width);for(var z=a;z>=0;z--){var y=M+a/10+f.config.yaxis[u].labels.offsetY-1;f.globals.isBarHorizontal&&(y=p*z),f.config.chart.type==="heatmap"&&(y+=p/2);var A=b.drawLine(s+i.offsetX-d.width+d.offsetX,y+d.offsetY,s+i.offsetX+d.offsetX,y+d.offsetY,d.color);w.add(A),M+=p}}}}]),T}(),jt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"scaleSvgNode",value:function(s,a){var i=parseFloat(s.getAttributeNS(null,"width")),d=parseFloat(s.getAttributeNS(null,"height"));s.setAttributeNS(null,"width",i*a),s.setAttributeNS(null,"height",d*a),s.setAttributeNS(null,"viewBox","0 0 "+i+" "+d)}},{key:"fixSvgStringForIe11",value:function(s){if(!H.isIE11())return s.replace(/ /g," ");var a=0,i=s.replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g,function(d){return++a===2?'xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev"':d});return i=(i=i.replace(/xmlns:NS\d+=""/g,"")).replace(/NS\d+:(\w+:\w+=")/g,"$1")}},{key:"getSvgString",value:function(s){s==null&&(s=1);var a=this.w.globals.dom.Paper.svg();if(s!==1){var i=this.w.globals.dom.Paper.node.cloneNode(!0);this.scaleSvgNode(i,s),a=new XMLSerializer().serializeToString(i)}return this.fixSvgStringForIe11(a)}},{key:"cleanup",value:function(){var s=this.w,a=s.globals.dom.baseEl.getElementsByClassName("apexcharts-xcrosshairs"),i=s.globals.dom.baseEl.getElementsByClassName("apexcharts-ycrosshairs"),d=s.globals.dom.baseEl.querySelectorAll(".apexcharts-zoom-rect, .apexcharts-selection-rect");Array.prototype.forEach.call(d,function(u){u.setAttribute("width",0)}),a&&a[0]&&(a[0].setAttribute("x",-500),a[0].setAttribute("x1",-500),a[0].setAttribute("x2",-500)),i&&i[0]&&(i[0].setAttribute("y",-100),i[0].setAttribute("y1",-100),i[0].setAttribute("y2",-100))}},{key:"svgUrl",value:function(){this.cleanup();var s=this.getSvgString(),a=new Blob([s],{type:"image/svg+xml;charset=utf-8"});return URL.createObjectURL(a)}},{key:"dataURI",value:function(s){var a=this;return new Promise(function(i){var d=a.w,u=s?s.scale||s.width/d.globals.svgWidth:1;a.cleanup();var p=document.createElement("canvas");p.width=d.globals.svgWidth*u,p.height=parseInt(d.globals.dom.elWrap.style.height,10)*u;var w=d.config.chart.background==="transparent"?"#fff":d.config.chart.background,f=p.getContext("2d");f.fillStyle=w,f.fillRect(0,0,p.width*u,p.height*u);var b=a.getSvgString(u);if(window.canvg&&H.isIE11()){var M=window.canvg.Canvg.fromString(f,b,{ignoreClear:!0,ignoreDimensions:!0});M.start();var z=p.msToBlob();M.stop(),i({blob:z})}else{var y="data:image/svg+xml,"+encodeURIComponent(b),A=new Image;A.crossOrigin="anonymous",A.onload=function(){if(f.drawImage(A,0,0),p.msToBlob){var N=p.msToBlob();i({blob:N})}else{var L=p.toDataURL("image/png");i({imgURI:L})}},A.src=y}})}},{key:"exportToSVG",value:function(){this.triggerDownload(this.svgUrl(),this.w.config.chart.toolbar.export.svg.filename,".svg")}},{key:"exportToPng",value:function(){var s=this;this.dataURI().then(function(a){var i=a.imgURI,d=a.blob;d?navigator.msSaveOrOpenBlob(d,s.w.globals.chartID+".png"):s.triggerDownload(i,s.w.config.chart.toolbar.export.png.filename,".png")})}},{key:"exportToCSV",value:function(s){var a=this,i=s.series,d=s.fileName,u=s.columnDelimiter,p=u===void 0?",":u,w=s.lineDelimiter,f=w===void 0?` +`:w,b=this.w;i||(i=b.config.series);var M=[],z=[],y="",A=b.globals.series.map(function(m,C){return b.globals.collapsedSeriesIndices.indexOf(C)===-1?m:[]}),N=Math.max.apply(Math,F(i.map(function(m){return m.data?m.data.length:0}))),L=new pt(this.ctx),O=new Nt(this.ctx),V=function(m){var C="";if(b.globals.axisCharts){if(b.config.xaxis.type==="category"||b.config.xaxis.convertedCatToNumeric)if(b.globals.isBarHorizontal){var j=b.globals.yLabelFormatters[0],E=new ut(a.ctx).getActiveConfigSeriesIndex();C=j(b.globals.labels[m],{seriesIndex:E,dataPointIndex:m,w:b})}else C=O.getLabel(b.globals.labels,b.globals.timescaleLabels,0,m).text;b.config.xaxis.type==="datetime"&&(b.config.xaxis.categories.length?C=b.config.xaxis.categories[m]:b.config.labels.length&&(C=b.config.labels[m]))}else C=b.config.labels[m];return Array.isArray(C)&&(C=C.join(" ")),H.isNumber(C)?C:C.split(p).join("")},Z=function(m,C){if(M.length&&C===0&&z.push(M.join(p)),m.data){m.data=m.data.length&&m.data||F(Array(N)).map(function(){return""});for(var j=0;j=10?b.config.chart.toolbar.export.csv.dateFormatter(E):H.isNumber(E)?E:E.split(p).join("")));for(var K=0;K0&&!i.globals.isBarHorizontal&&(this.xaxisLabels=i.globals.timescaleLabels.slice()),i.config.xaxis.overwriteCategories&&(this.xaxisLabels=i.config.xaxis.overwriteCategories),this.drawnLabels=[],this.drawnLabelsRects=[],i.config.xaxis.position==="top"?this.offY=0:this.offY=i.globals.gridHeight+1,this.offY=this.offY+i.config.xaxis.axisBorder.offsetY,this.isCategoryBarHorizontal=i.config.chart.type==="bar"&&i.config.plotOptions.bar.horizontal,this.xaxisFontSize=i.config.xaxis.labels.style.fontSize,this.xaxisFontFamily=i.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=i.config.xaxis.labels.style.colors,this.xaxisBorderWidth=i.config.xaxis.axisBorder.width,this.isCategoryBarHorizontal&&(this.xaxisBorderWidth=i.config.yaxis[0].axisBorder.width.toString()),this.xaxisBorderWidth.indexOf("%")>-1?this.xaxisBorderWidth=i.globals.gridWidth*parseInt(this.xaxisBorderWidth,10)/100:this.xaxisBorderWidth=parseInt(this.xaxisBorderWidth,10),this.xaxisBorderHeight=i.config.xaxis.axisBorder.height,this.yaxis=i.config.yaxis[0]}return k(T,[{key:"drawXaxis",value:function(){var s=this.w,a=new _(this.ctx),i=a.group({class:"apexcharts-xaxis",transform:"translate(".concat(s.config.xaxis.offsetX,", ").concat(s.config.xaxis.offsetY,")")}),d=a.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(s.globals.translateXAxisX,", ").concat(s.globals.translateXAxisY,")")});i.add(d);for(var u=[],p=0;p6&&arguments[6]!==void 0?arguments[6]:{},M=[],z=[],y=this.w,A=b.xaxisFontSize||this.xaxisFontSize,N=b.xaxisFontFamily||this.xaxisFontFamily,L=b.xaxisForeColors||this.xaxisForeColors,O=b.fontWeight||y.config.xaxis.labels.style.fontWeight,V=b.cssClass||y.config.xaxis.labels.style.cssClass,Z=y.globals.padHorizontal,m=d.length,C=y.config.xaxis.type==="category"?y.globals.dataPoints:m;if(C===0&&m>C&&(C=m),u){var j=C>1?C-1:C;w=y.globals.gridWidth/j,Z=Z+p(0,w)/2+y.config.xaxis.labels.offsetX}else w=y.globals.gridWidth/C,Z=Z+p(0,w)+y.config.xaxis.labels.offsetX;for(var E=function(Q){var ot=Z-p(Q,w)/2+y.config.xaxis.labels.offsetX;Q===0&&m===1&&w/2===Z&&C===1&&(ot=y.globals.gridWidth/2);var it=f.axesUtils.getLabel(d,y.globals.timescaleLabels,ot,Q,M,A,s),vt=28;if(y.globals.rotateXLabels&&s&&(vt=22),y.config.xaxis.title.text&&y.config.xaxis.position==="top"&&(vt+=parseFloat(y.config.xaxis.title.style.fontSize)+2),s||(vt=vt+parseFloat(A)+(y.globals.xAxisLabelsHeight-y.globals.xAxisGroupLabelsHeight)+(y.globals.rotateXLabels?10:0)),it=y.config.xaxis.tickAmount!==void 0&&y.config.xaxis.tickAmount!=="dataPoints"&&y.config.xaxis.type!=="datetime"?f.axesUtils.checkLabelBasedOnTickamount(Q,it,m):f.axesUtils.checkForOverflowingLabels(Q,it,m,M,z),y.config.xaxis.labels.show){var zt=a.drawText({x:it.x,y:f.offY+y.config.xaxis.labels.offsetY+vt-(y.config.xaxis.position==="top"?y.globals.xAxisHeight+y.config.xaxis.axisTicks.height-2:0),text:it.text,textAnchor:"middle",fontWeight:it.isBold?600:O,fontSize:A,fontFamily:N,foreColor:Array.isArray(L)?s&&y.config.xaxis.convertedCatToNumeric?L[y.globals.minX+Q-1]:L[Q]:L,isPlainText:!1,cssClass:(s?"apexcharts-xaxis-label ":"apexcharts-xaxis-group-label ")+V});if(i.add(zt),zt.on("click",function(Vt){if(typeof y.config.chart.events.xAxisLabelClick=="function"){var Yt=Object.assign({},y,{labelIndex:Q});y.config.chart.events.xAxisLabelClick(Vt,f.ctx,Yt)}}),s){var Mt=document.createElementNS(y.globals.SVGNS,"title");Mt.textContent=Array.isArray(it.text)?it.text.join(" "):it.text,zt.node.appendChild(Mt),it.text!==""&&(M.push(it.text),z.push(it))}}Qd.globals.gridWidth)){var p=this.offY+d.config.xaxis.axisTicks.offsetY;if(a=a+p+d.config.xaxis.axisTicks.height,d.config.xaxis.position==="top"&&(a=p-d.config.xaxis.axisTicks.height),d.config.xaxis.axisTicks.show){var w=new _(this.ctx).drawLine(s+d.config.xaxis.axisTicks.offsetX,p+d.config.xaxis.offsetY,u+d.config.xaxis.axisTicks.offsetX,a+d.config.xaxis.offsetY,d.config.xaxis.axisTicks.color);i.add(w),w.node.classList.add("apexcharts-xaxis-tick")}}}},{key:"getXAxisTicksPositions",value:function(){var s=this.w,a=[],i=this.xaxisLabels.length,d=s.globals.padHorizontal;if(s.globals.timescaleLabels.length>0)for(var u=0;u0){var M=u[u.length-1].getBBox(),z=u[0].getBBox();M.x<-20&&u[u.length-1].parentNode.removeChild(u[u.length-1]),z.x+z.width>s.globals.gridWidth&&!s.globals.isBarHorizontal&&u[0].parentNode.removeChild(u[0]);for(var y=0;y0&&(this.xaxisLabels=a.globals.timescaleLabels.slice())}return k(T,[{key:"drawGridArea",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=this.w,i=new _(this.ctx);s===null&&(s=i.group({class:"apexcharts-grid"}));var d=i.drawLine(a.globals.padHorizontal,1,a.globals.padHorizontal,a.globals.gridHeight,"transparent"),u=i.drawLine(a.globals.padHorizontal,a.globals.gridHeight,a.globals.gridWidth,a.globals.gridHeight,"transparent");return s.add(u),s.add(d),s}},{key:"drawGrid",value:function(){var s=null;return this.w.globals.axisCharts&&(s=this.renderGrid(),this.drawGridArea(s.el)),s}},{key:"createGridMask",value:function(){var s=this.w,a=s.globals,i=new _(this.ctx),d=Array.isArray(s.config.stroke.width)?0:s.config.stroke.width;if(Array.isArray(s.config.stroke.width)){var u=0;s.config.stroke.width.forEach(function(z){u=Math.max(u,z)}),d=u}a.dom.elGridRectMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elGridRectMask.setAttribute("id","gridRectMask".concat(a.cuid)),a.dom.elGridRectMarkerMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elGridRectMarkerMask.setAttribute("id","gridRectMarkerMask".concat(a.cuid)),a.dom.elForecastMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elForecastMask.setAttribute("id","forecastMask".concat(a.cuid)),a.dom.elNonForecastMask=document.createElementNS(a.SVGNS,"clipPath"),a.dom.elNonForecastMask.setAttribute("id","nonForecastMask".concat(a.cuid));var p=s.config.chart.type,w=0,f=0;(p==="bar"||p==="rangeBar"||p==="candlestick"||p==="boxPlot"||s.globals.comboBarCount>0)&&s.globals.isXNumeric&&!s.globals.isBarHorizontal&&(w=s.config.grid.padding.left,f=s.config.grid.padding.right,a.barPadForNumericAxis>w&&(w=a.barPadForNumericAxis,f=a.barPadForNumericAxis)),a.dom.elGridRect=i.drawRect(-d/2-w-2,-d/2,a.gridWidth+d+f+w+4,a.gridHeight+d,0,"#fff");var b=s.globals.markers.largestSize+1;a.dom.elGridRectMarker=i.drawRect(2*-b,2*-b,a.gridWidth+4*b,a.gridHeight+4*b,0,"#fff"),a.dom.elGridRectMask.appendChild(a.dom.elGridRect.node),a.dom.elGridRectMarkerMask.appendChild(a.dom.elGridRectMarker.node);var M=a.dom.baseEl.querySelector("defs");M.appendChild(a.dom.elGridRectMask),M.appendChild(a.dom.elForecastMask),M.appendChild(a.dom.elNonForecastMask),M.appendChild(a.dom.elGridRectMarkerMask)}},{key:"_drawGridLines",value:function(s){var a=s.i,i=s.x1,d=s.y1,u=s.x2,p=s.y2,w=s.xCount,f=s.parent,b=this.w;if(!(a===0&&b.globals.skipFirstTimelinelabel||a===w-1&&b.globals.skipLastTimelinelabel&&!b.config.xaxis.labels.formatter||b.config.chart.type==="radar")){b.config.grid.xaxis.lines.show&&this._drawGridLine({i:a,x1:i,y1:d,x2:u,y2:p,xCount:w,parent:f});var M=0;if(b.globals.hasXaxisGroups&&b.config.xaxis.tickPlacement==="between"){var z=b.globals.groups;if(z){for(var y=0,A=0;y2));u++);return!s.globals.isBarHorizontal||this.isRangeBar?(i=this.xaxisLabels.length,this.isRangeBar&&(i--,d=s.globals.labels.length,s.config.xaxis.tickAmount&&s.config.xaxis.labels.formatter&&(i=s.config.xaxis.tickAmount)),this._drawXYLines({xCount:i,tickAmount:d})):(i=d,d=s.globals.xTickAmount,this._drawInvertedXYLines({xCount:i,tickAmount:d})),this.drawGridBands(i,d),{el:this.elg,elGridBorders:this.elGridBorders,xAxisTickWidth:s.globals.gridWidth/i}}},{key:"drawGridBands",value:function(s,a){var i=this.w;if(i.config.grid.row.colors!==void 0&&i.config.grid.row.colors.length>0)for(var d=0,u=i.globals.gridHeight/a,p=i.globals.gridWidth,w=0,f=0;w=i.config.grid.row.colors.length&&(f=0),this._drawGridBandRect({c:f,x1:0,y1:d,x2:p,y2:u,type:"row"}),d+=i.globals.gridHeight/a;if(i.config.grid.column.colors!==void 0&&i.config.grid.column.colors.length>0)for(var b=i.globals.isBarHorizontal||i.config.xaxis.type!=="category"&&!i.config.xaxis.convertedCatToNumeric?s:s-1,M=i.globals.padHorizontal,z=i.globals.padHorizontal+i.globals.gridWidth/b,y=i.globals.gridHeight,A=0,N=0;A=i.config.grid.column.colors.length&&(N=0),this._drawGridBandRect({c:N,x1:M,y1:0,x2:z,y2:y,type:"column"}),M+=i.globals.gridWidth/b}}]),T}(),J=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"niceScale",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,u=arguments.length>4?arguments[4]:void 0,p=this.w,w=Math.abs(a-s);if((i=this._adjustTicksForSmallRange(i,d,w))==="dataPoints"&&(i=p.globals.dataPoints-1),s===Number.MIN_VALUE&&a===0||!H.isNumber(s)&&!H.isNumber(a)||s===Number.MIN_VALUE&&a===-Number.MAX_VALUE)return s=0,a=i,this.linearScale(s,a,i);s>a?(console.warn("axis.min cannot be greater than axis.max"),a=s+.1):s===a&&(s=s===0?0:s-.5,a=a===0?2:a+.5);var f=[];w<1&&u&&(p.config.chart.type==="candlestick"||p.config.series[d].type==="candlestick"||p.config.chart.type==="boxPlot"||p.config.series[d].type==="boxPlot"||p.globals.isRangeData)&&(a*=1.01);var b=i+1;b<2?b=2:b>2&&(b-=2);var M=w/b,z=Math.floor(H.log10(M)),y=Math.pow(10,z),A=Math.round(M/y);A<1&&(A=1);var N=A*y,L=N*Math.floor(s/N),O=N*Math.ceil(a/N),V=L;if(u&&w>2){for(;f.push(H.stripNumber(V,7)),!((V+=N)>O););return{result:f,niceMin:f[0],niceMax:f[f.length-1]}}var Z=s;(f=[]).push(H.stripNumber(Z,7));for(var m=Math.abs(a-s)/i,C=0;C<=i;C++)Z+=m,f.push(Z);return f[f.length-2]>=a&&f.pop(),{result:f,niceMin:f[0],niceMax:f[f.length-1]}}},{key:"linearScale",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,d=arguments.length>3?arguments[3]:void 0,u=Math.abs(a-s);(i=this._adjustTicksForSmallRange(i,d,u))==="dataPoints"&&(i=this.w.globals.dataPoints-1);var p=u/i;i===Number.MAX_VALUE&&(i=10,p=1);for(var w=[],f=s;i>=0;)w.push(f),f+=p,i-=1;return{result:w,niceMin:w[0],niceMax:w[w.length-1]}}},{key:"logarithmicScaleNice",value:function(s,a,i){a<=0&&(a=Math.max(s,i)),s<=0&&(s=Math.min(a,i));for(var d=[],u=Math.ceil(Math.log(a)/Math.log(i)+1),p=Math.floor(Math.log(s)/Math.log(i));p5)d.allSeriesCollapsed=!1,d.yAxisScale[s]=this.logarithmicScale(a,i,p.logBase),d.yAxisScale[s]=p.forceNiceScale?this.logarithmicScaleNice(a,i,p.logBase):this.logarithmicScale(a,i,p.logBase);else if(i!==-Number.MAX_VALUE&&H.isNumber(i))if(d.allSeriesCollapsed=!1,p.min===void 0&&p.max===void 0||p.forceNiceScale){var f=u.yaxis[s].max===void 0&&u.yaxis[s].min===void 0||u.yaxis[s].forceNiceScale;d.yAxisScale[s]=this.niceScale(a,i,p.tickAmount?p.tickAmount:w<5&&w>1?w+1:5,s,f)}else d.yAxisScale[s]=this.linearScale(a,i,p.tickAmount,s);else d.yAxisScale[s]=this.linearScale(0,5,5)}},{key:"setXScale",value:function(s,a){var i=this.w,d=i.globals,u=i.config.xaxis,p=Math.abs(a-s);return a!==-Number.MAX_VALUE&&H.isNumber(a)?d.xAxisScale=this.linearScale(s,a,u.tickAmount?u.tickAmount:p<5&&p>1?p+1:5,0):d.xAxisScale=this.linearScale(0,5,5),d.xAxisScale}},{key:"setMultipleYScales",value:function(){var s=this,a=this.w.globals,i=this.w.config,d=a.minYArr.concat([]),u=a.maxYArr.concat([]),p=[];i.yaxis.forEach(function(w,f){var b=f;i.series.forEach(function(y,A){y.name===w.seriesName&&(b=A,f!==A?p.push({index:A,similarIndex:f,alreadyExists:!0}):p.push({index:A}))});var M=d[b],z=u[b];s.setYScaleForIndex(f,M,z)}),this.sameScaleInMultipleAxes(d,u,p)}},{key:"sameScaleInMultipleAxes",value:function(s,a,i){var d=this,u=this.w.config,p=this.w.globals,w=[];i.forEach(function(L){L.alreadyExists&&(w[L.index]===void 0&&(w[L.index]=[]),w[L.index].push(L.index),w[L.index].push(L.similarIndex))}),p.yAxisSameScaleIndices=w,w.forEach(function(L,O){w.forEach(function(V,Z){var m,C;O!==Z&&(m=L,C=V,m.filter(function(j){return C.indexOf(j)!==-1})).length>0&&(w[O]=w[O].concat(w[Z]))})});var f=w.map(function(L){return L.filter(function(O,V){return L.indexOf(O)===V})}).map(function(L){return L.sort()});w=w.filter(function(L){return!!L});var b=f.slice(),M=b.map(function(L){return JSON.stringify(L)});b=b.filter(function(L,O){return M.indexOf(JSON.stringify(L))===O});var z=[],y=[];s.forEach(function(L,O){b.forEach(function(V,Z){V.indexOf(O)>-1&&(z[Z]===void 0&&(z[Z]=[],y[Z]=[]),z[Z].push({key:O,value:L}),y[Z].push({key:O,value:a[O]}))})});var A=Array.apply(null,Array(b.length)).map(Number.prototype.valueOf,Number.MIN_VALUE),N=Array.apply(null,Array(b.length)).map(Number.prototype.valueOf,-Number.MAX_VALUE);z.forEach(function(L,O){L.forEach(function(V,Z){A[O]=Math.min(V.value,A[O])})}),y.forEach(function(L,O){L.forEach(function(V,Z){N[O]=Math.max(V.value,N[O])})}),s.forEach(function(L,O){y.forEach(function(V,Z){var m=A[Z],C=N[Z];u.chart.stacked&&(C=0,V.forEach(function(j,E){j.value!==-Number.MAX_VALUE&&(C+=j.value),m!==Number.MIN_VALUE&&(m+=z[Z][E].value)})),V.forEach(function(j,E){V[E].key===O&&(u.yaxis[O].min!==void 0&&(m=typeof u.yaxis[O].min=="function"?u.yaxis[O].min(p.minY):u.yaxis[O].min),u.yaxis[O].max!==void 0&&(C=typeof u.yaxis[O].max=="function"?u.yaxis[O].max(p.maxY):u.yaxis[O].max),d.setYScaleForIndex(O,m,C))})})})}},{key:"autoScaleY",value:function(s,a,i){s||(s=this);var d=s.w;if(d.globals.isMultipleYAxis||d.globals.collapsedSeries.length)return console.warn("autoScaleYaxis is not supported in a multi-yaxis chart."),a;var u=d.globals.seriesX[0],p=d.config.chart.stacked;return a.forEach(function(w,f){for(var b=0,M=0;M=i.xaxis.min){b=M;break}var z,y,A=d.globals.minYArr[f],N=d.globals.maxYArr[f],L=d.globals.stackedSeriesTotals;d.globals.series.forEach(function(O,V){var Z=O[b];p?(Z=L[b],z=y=Z,L.forEach(function(m,C){u[C]<=i.xaxis.max&&u[C]>=i.xaxis.min&&(m>y&&m!==null&&(y=m),O[C]=i.xaxis.min){var j=m,E=m;d.globals.series.forEach(function(K,Q){m!==null&&(j=Math.min(K[C],j),E=Math.max(K[C],E))}),E>y&&E!==null&&(y=E),jA&&(z=A),a.length>1?(a[V].min=w.min===void 0?z:w.min,a[V].max=w.max===void 0?y:w.max):(a[0].min=w.min===void 0?z:w.min,a[0].max=w.max===void 0?y:w.max)})}),a}}]),T}(),lt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.scales=new J(s)}return k(T,[{key:"init",value:function(){this.setYRange(),this.setXRange(),this.setZRange()}},{key:"getMinYMaxY",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:-Number.MAX_VALUE,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,u=this.w.config,p=this.w.globals,w=-Number.MAX_VALUE,f=Number.MIN_VALUE;d===null&&(d=s+1);var b=p.series,M=b,z=b;u.chart.type==="candlestick"?(M=p.seriesCandleL,z=p.seriesCandleH):u.chart.type==="boxPlot"?(M=p.seriesCandleO,z=p.seriesCandleC):p.isRangeData&&(M=p.seriesRangeStart,z=p.seriesRangeEnd);for(var y=s;yM[y][A]&&M[y][A]<0&&(f=M[y][A])):p.hasNullValues=!0}}return u.chart.type==="rangeBar"&&p.seriesRangeStart.length&&p.isBarHorizontal&&(f=a),u.chart.type==="bar"&&(f<0&&w<0&&(w=0),f===Number.MIN_VALUE&&(f=0)),{minY:f,maxY:w,lowestY:a,highestY:i}}},{key:"setYRange",value:function(){var s=this.w.globals,a=this.w.config;s.maxY=-Number.MAX_VALUE,s.minY=Number.MIN_VALUE;var i=Number.MAX_VALUE;if(s.isMultipleYAxis)for(var d=0;d=0&&i<=10||a.yaxis[0].min!==void 0||a.yaxis[0].max!==void 0)&&(w=0),s.minY=i-5*w/100,i>0&&s.minY<0&&(s.minY=0),s.maxY=s.maxY+5*w/100}return a.yaxis.forEach(function(f,b){f.max!==void 0&&(typeof f.max=="number"?s.maxYArr[b]=f.max:typeof f.max=="function"&&(s.maxYArr[b]=f.max(s.isMultipleYAxis?s.maxYArr[b]:s.maxY)),s.maxY=s.maxYArr[b]),f.min!==void 0&&(typeof f.min=="number"?s.minYArr[b]=f.min:typeof f.min=="function"&&(s.minYArr[b]=f.min(s.isMultipleYAxis?s.minYArr[b]===Number.MIN_VALUE?0:s.minYArr[b]:s.minY)),s.minY=s.minYArr[b])}),s.isBarHorizontal&&["min","max"].forEach(function(f){a.xaxis[f]!==void 0&&typeof a.xaxis[f]=="number"&&(f==="min"?s.minY=a.xaxis[f]:s.maxY=a.xaxis[f])}),s.isMultipleYAxis?(this.scales.setMultipleYScales(),s.minY=i,s.yAxisScale.forEach(function(f,b){s.minYArr[b]=f.niceMin,s.maxYArr[b]=f.niceMax})):(this.scales.setYScaleForIndex(0,s.minY,s.maxY),s.minY=s.yAxisScale[0].niceMin,s.maxY=s.yAxisScale[0].niceMax,s.minYArr[0]=s.yAxisScale[0].niceMin,s.maxYArr[0]=s.yAxisScale[0].niceMax),{minY:s.minY,maxY:s.maxY,minYArr:s.minYArr,maxYArr:s.maxYArr,yAxisScale:s.yAxisScale}}},{key:"setXRange",value:function(){var s=this.w.globals,a=this.w.config,i=a.xaxis.type==="numeric"||a.xaxis.type==="datetime"||a.xaxis.type==="category"&&!s.noLabelsProvided||s.noLabelsProvided||s.isXNumeric;if(s.isXNumeric&&function(){for(var w=0;ws.dataPoints&&s.dataPoints!==0&&(d=s.dataPoints-1)):a.xaxis.tickAmount==="dataPoints"?(s.series.length>1&&(d=s.series[s.maxValsInArrayIndex].length-1),s.isXNumeric&&(d=s.maxX-s.minX-1)):d=a.xaxis.tickAmount,s.xTickAmount=d,a.xaxis.max!==void 0&&typeof a.xaxis.max=="number"&&(s.maxX=a.xaxis.max),a.xaxis.min!==void 0&&typeof a.xaxis.min=="number"&&(s.minX=a.xaxis.min),a.xaxis.range!==void 0&&(s.minX=s.maxX-a.xaxis.range),s.minX!==Number.MAX_VALUE&&s.maxX!==-Number.MAX_VALUE)if(a.xaxis.convertedCatToNumeric&&!s.dataFormatXNumeric){for(var u=[],p=s.minX-1;p0&&(s.xAxisScale=this.scales.linearScale(1,s.labels.length,d-1),s.seriesX=s.labels.slice());i&&(s.labels=s.xAxisScale.result.slice())}return s.isBarHorizontal&&s.labels.length&&(s.xTickAmount=s.labels.length),this._handleSingleDataPoint(),this._getMinXDiff(),{minX:s.minX,maxX:s.maxX}}},{key:"setZRange",value:function(){var s=this.w.globals;if(s.isDataXYZ){for(var a=0;a0){var w=u-d[p-1];w>0&&(s.minXDiff=Math.min(w,s.minXDiff))}}),s.dataPoints!==1&&s.minXDiff!==Number.MAX_VALUE||(s.minXDiff=.5)})}},{key:"_setStackedMinMax",value:function(){var s=this,a=this.w.globals;if(a.series.length){var i=a.seriesGroups;i.length||(i=[this.w.config.series.map(function(p){return p.name})]);var d={},u={};i.forEach(function(p){d[p]=[],u[p]=[],s.w.config.series.map(function(w,f){return p.indexOf(w.name)>-1?f:null}).filter(function(w){return w!==null}).forEach(function(w){for(var f=0;f0?d[p][f]+=parseFloat(a.series[w][f])+1e-4:u[p][f]+=parseFloat(a.series[w][f]))})}),Object.entries(d).forEach(function(p){var w=D(p,1)[0];d[w].forEach(function(f,b){a.maxY=Math.max(a.maxY,d[w][b]),a.minY=Math.min(a.minY,u[w][b])})})}}}]),T}(),at=function(){function T(s,a){g(this,T),this.ctx=s,this.elgrid=a,this.w=s.w;var i=this.w;this.xaxisFontSize=i.config.xaxis.labels.style.fontSize,this.axisFontFamily=i.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=i.config.xaxis.labels.style.colors,this.isCategoryBarHorizontal=i.config.chart.type==="bar"&&i.config.plotOptions.bar.horizontal,this.xAxisoffX=0,i.config.xaxis.position==="bottom"&&(this.xAxisoffX=i.globals.gridHeight),this.drawnLabels=[],this.axesUtils=new Nt(s)}return k(T,[{key:"drawYaxis",value:function(s){var a=this,i=this.w,d=new _(this.ctx),u=i.config.yaxis[s].labels.style,p=u.fontSize,w=u.fontFamily,f=u.fontWeight,b=d.group({class:"apexcharts-yaxis",rel:s,transform:"translate("+i.globals.translateYAxisX[s]+", 0)"});if(this.axesUtils.isYAxisHidden(s))return b;var M=d.group({class:"apexcharts-yaxis-texts-g"});b.add(M);var z=i.globals.yAxisScale[s].result.length-1,y=i.globals.gridHeight/z,A=i.globals.translateY,N=i.globals.yLabelFormatters[s],L=i.globals.yAxisScale[s].result.slice();L=this.axesUtils.checkForReversedLabels(s,L);var O="";if(i.config.yaxis[s].labels.show)for(var V=function(ot){var it=L[ot];it=N(it,ot,i);var vt=i.config.yaxis[s].labels.padding;i.config.yaxis[s].opposite&&i.config.yaxis.length!==0&&(vt*=-1);var zt="end";i.config.yaxis[s].opposite&&(zt="start"),i.config.yaxis[s].labels.align==="left"?zt="start":i.config.yaxis[s].labels.align==="center"?zt="middle":i.config.yaxis[s].labels.align==="right"&&(zt="end");var Mt=a.axesUtils.getYAxisForeColor(u.colors,s),Vt=d.drawText({x:vt,y:A+z/10+i.config.yaxis[s].labels.offsetY+1,text:it,textAnchor:zt,fontSize:p,fontFamily:w,fontWeight:f,maxWidth:i.config.yaxis[s].labels.maxWidth,foreColor:Array.isArray(Mt)?Mt[ot]:Mt,isPlainText:!1,cssClass:"apexcharts-yaxis-label "+u.cssClass});ot===z&&(O=Vt),M.add(Vt);var Yt=document.createElementNS(i.globals.SVGNS,"title");if(Yt.textContent=Array.isArray(it)?it.join(" "):it,Vt.node.appendChild(Yt),i.config.yaxis[s].labels.rotate!==0){var ie=d.rotateAroundCenter(O.node),he=d.rotateAroundCenter(Vt.node);Vt.node.setAttribute("transform","rotate(".concat(i.config.yaxis[s].labels.rotate," ").concat(ie.x," ").concat(he.y,")"))}A+=y},Z=z;Z>=0;Z--)V(Z);if(i.config.yaxis[s].title.text!==void 0){var m=d.group({class:"apexcharts-yaxis-title"}),C=0;i.config.yaxis[s].opposite&&(C=i.globals.translateYAxisX[s]);var j=d.drawText({x:C,y:i.globals.gridHeight/2+i.globals.translateY+i.config.yaxis[s].title.offsetY,text:i.config.yaxis[s].title.text,textAnchor:"end",foreColor:i.config.yaxis[s].title.style.color,fontSize:i.config.yaxis[s].title.style.fontSize,fontWeight:i.config.yaxis[s].title.style.fontWeight,fontFamily:i.config.yaxis[s].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+i.config.yaxis[s].title.style.cssClass});m.add(j),b.add(m)}var E=i.config.yaxis[s].axisBorder,K=31+E.offsetX;if(i.config.yaxis[s].opposite&&(K=-31-E.offsetX),E.show){var Q=d.drawLine(K,i.globals.translateY+E.offsetY-2,K,i.globals.gridHeight+i.globals.translateY+E.offsetY+2,E.color,0,E.width);b.add(Q)}return i.config.yaxis[s].axisTicks.show&&this.axesUtils.drawYAxisTicks(K,z,E,i.config.yaxis[s].axisTicks,s,y,b),b}},{key:"drawYaxisInversed",value:function(s){var a=this.w,i=new _(this.ctx),d=i.group({class:"apexcharts-xaxis apexcharts-yaxis-inversed"}),u=i.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(a.globals.translateXAxisX,", ").concat(a.globals.translateXAxisY,")")});d.add(u);var p=a.globals.yAxisScale[s].result.length-1,w=a.globals.gridWidth/p+.1,f=w+a.config.xaxis.labels.offsetX,b=a.globals.xLabelFormatter,M=a.globals.yAxisScale[s].result.slice(),z=a.globals.timescaleLabels;z.length>0&&(this.xaxisLabels=z.slice(),p=(M=z.slice()).length),M=this.axesUtils.checkForReversedLabels(s,M);var y=z.length;if(a.config.xaxis.labels.show)for(var A=y?0:p;y?A=0;y?A++:A--){var N=M[A];N=b(N,A,a);var L=a.globals.gridWidth+a.globals.padHorizontal-(f-w+a.config.xaxis.labels.offsetX);if(z.length){var O=this.axesUtils.getLabel(M,z,L,A,this.drawnLabels,this.xaxisFontSize);L=O.x,N=O.text,this.drawnLabels.push(O.text),A===0&&a.globals.skipFirstTimelinelabel&&(N=""),A===M.length-1&&a.globals.skipLastTimelinelabel&&(N="")}var V=i.drawText({x:L,y:this.xAxisoffX+a.config.xaxis.labels.offsetY+30-(a.config.xaxis.position==="top"?a.globals.xAxisHeight+a.config.xaxis.axisTicks.height-2:0),text:N,textAnchor:"middle",foreColor:Array.isArray(this.xaxisForeColors)?this.xaxisForeColors[s]:this.xaxisForeColors,fontSize:this.xaxisFontSize,fontFamily:this.xaxisFontFamily,fontWeight:a.config.xaxis.labels.style.fontWeight,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+a.config.xaxis.labels.style.cssClass});u.add(V),V.tspan(N);var Z=document.createElementNS(a.globals.SVGNS,"title");Z.textContent=N,V.node.appendChild(Z),f+=w}return this.inversedYAxisTitleText(d),this.inversedYAxisBorder(d),d}},{key:"inversedYAxisBorder",value:function(s){var a=this.w,i=new _(this.ctx),d=a.config.xaxis.axisBorder;if(d.show){var u=0;a.config.chart.type==="bar"&&a.globals.isXNumeric&&(u-=15);var p=i.drawLine(a.globals.padHorizontal+u+d.offsetX,this.xAxisoffX,a.globals.gridWidth,this.xAxisoffX,d.color,0,d.height);this.elgrid&&this.elgrid.elGridBorders&&a.config.grid.show?this.elgrid.elGridBorders.add(p):s.add(p)}}},{key:"inversedYAxisTitleText",value:function(s){var a=this.w,i=new _(this.ctx);if(a.config.xaxis.title.text!==void 0){var d=i.group({class:"apexcharts-xaxis-title apexcharts-yaxis-title-inversed"}),u=i.drawText({x:a.globals.gridWidth/2+a.config.xaxis.title.offsetX,y:this.xAxisoffX+parseFloat(this.xaxisFontSize)+parseFloat(a.config.xaxis.title.style.fontSize)+a.config.xaxis.title.offsetY+20,text:a.config.xaxis.title.text,textAnchor:"middle",fontSize:a.config.xaxis.title.style.fontSize,fontFamily:a.config.xaxis.title.style.fontFamily,fontWeight:a.config.xaxis.title.style.fontWeight,foreColor:a.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+a.config.xaxis.title.style.cssClass});d.add(u),s.add(d)}}},{key:"yAxisTitleRotate",value:function(s,a){var i=this.w,d=new _(this.ctx),u={width:0,height:0},p={width:0,height:0},w=i.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(s,"'] .apexcharts-yaxis-texts-g"));w!==null&&(u=w.getBoundingClientRect());var f=i.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(s,"'] .apexcharts-yaxis-title text"));if(f!==null&&(p=f.getBoundingClientRect()),f!==null){var b=this.xPaddingForYAxisTitle(s,u,p,a);f.setAttribute("x",b.xPos-(a?10:0))}if(f!==null){var M=d.rotateAroundCenter(f);f.setAttribute("transform","rotate(".concat(a?-1*i.config.yaxis[s].title.rotate:i.config.yaxis[s].title.rotate," ").concat(M.x," ").concat(M.y,")"))}}},{key:"xPaddingForYAxisTitle",value:function(s,a,i,d){var u=this.w,p=0,w=0,f=10;return u.config.yaxis[s].title.text===void 0||s<0?{xPos:w,padd:0}:(d?(w=a.width+u.config.yaxis[s].title.offsetX+i.width/2+f/2,(p+=1)===0&&(w-=f/2)):(w=-1*a.width+u.config.yaxis[s].title.offsetX+f/2+i.width/2,u.globals.isBarHorizontal&&(f=25,w=-1*a.width-u.config.yaxis[s].title.offsetX-f)),{xPos:w,padd:f})}},{key:"setYAxisXPosition",value:function(s,a){var i=this.w,d=0,u=0,p=18,w=1;i.config.yaxis.length>1&&(this.multipleYs=!0),i.config.yaxis.map(function(f,b){var M=i.globals.ignoreYAxisIndexes.indexOf(b)>-1||!f.show||f.floating||s[b].width===0,z=s[b].width+a[b].width;f.opposite?i.globals.isBarHorizontal?(u=i.globals.gridWidth+i.globals.translateX-1,i.globals.translateYAxisX[b]=u-f.labels.offsetX):(u=i.globals.gridWidth+i.globals.translateX+w,M||(w=w+z+20),i.globals.translateYAxisX[b]=u-f.labels.offsetX+20):(d=i.globals.translateX-p,M||(p=p+z+20),i.globals.translateYAxisX[b]=d+f.labels.offsetX)})}},{key:"setYAxisTextAlignments",value:function(){var s=this.w,a=s.globals.dom.baseEl.getElementsByClassName("apexcharts-yaxis");(a=H.listToArray(a)).forEach(function(i,d){var u=s.config.yaxis[d];if(u&&!u.floating&&u.labels.align!==void 0){var p=s.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(d,"'] .apexcharts-yaxis-texts-g")),w=s.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(d,"'] .apexcharts-yaxis-label"));w=H.listToArray(w);var f=p.getBoundingClientRect();u.labels.align==="left"?(w.forEach(function(b,M){b.setAttribute("text-anchor","start")}),u.opposite||p.setAttribute("transform","translate(-".concat(f.width,", 0)"))):u.labels.align==="center"?(w.forEach(function(b,M){b.setAttribute("text-anchor","middle")}),p.setAttribute("transform","translate(".concat(f.width/2*(u.opposite?1:-1),", 0)"))):u.labels.align==="right"&&(w.forEach(function(b,M){b.setAttribute("text-anchor","end")}),u.opposite&&p.setAttribute("transform","translate(".concat(f.width,", 0)")))}})}}]),T}(),ct=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.documentEvent=H.bind(this.documentEvent,this)}return k(T,[{key:"addEventListener",value:function(s,a){var i=this.w;i.globals.events.hasOwnProperty(s)?i.globals.events[s].push(a):i.globals.events[s]=[a]}},{key:"removeEventListener",value:function(s,a){var i=this.w;if(i.globals.events.hasOwnProperty(s)){var d=i.globals.events[s].indexOf(a);d!==-1&&i.globals.events[s].splice(d,1)}}},{key:"fireEvent",value:function(s,a){var i=this.w;if(i.globals.events.hasOwnProperty(s)){a&&a.length||(a=[]);for(var d=i.globals.events[s],u=d.length,p=0;p0&&(a=this.w.config.chart.locales.concat(window.Apex.chart.locales));var i=a.filter(function(u){return u.name===s})[0];if(!i)throw new Error("Wrong locale name provided. Please make sure you set the correct locale name in options");var d=H.extend(st,i);this.w.globals.locale=d.options}}]),T}(),yt=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"drawAxis",value:function(s,a){var i,d,u=this,p=this.w.globals,w=this.w.config,f=new bt(this.ctx,a),b=new at(this.ctx,a);p.axisCharts&&s!=="radar"&&(p.isBarHorizontal?(d=b.drawYaxisInversed(0),i=f.drawXaxisInversed(0),p.dom.elGraphical.add(i),p.dom.elGraphical.add(d)):(i=f.drawXaxis(),p.dom.elGraphical.add(i),w.yaxis.map(function(M,z){if(p.ignoreYAxisIndexes.indexOf(z)===-1&&(d=b.drawYaxis(z),p.dom.Paper.add(d),u.w.config.grid.position==="back")){var y=p.dom.Paper.children()[1];y.remove(),p.dom.Paper.add(y)}})))}}]),T}(),Ot=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"drawXCrosshairs",value:function(){var s=this.w,a=new _(this.ctx),i=new W(this.ctx),d=s.config.xaxis.crosshairs.fill.gradient,u=s.config.xaxis.crosshairs.dropShadow,p=s.config.xaxis.crosshairs.fill.type,w=d.colorFrom,f=d.colorTo,b=d.opacityFrom,M=d.opacityTo,z=d.stops,y=u.enabled,A=u.left,N=u.top,L=u.blur,O=u.color,V=u.opacity,Z=s.config.xaxis.crosshairs.fill.color;if(s.config.xaxis.crosshairs.show){p==="gradient"&&(Z=a.drawGradient("vertical",w,f,b,M,null,z,null));var m=a.drawRect();s.config.xaxis.crosshairs.width===1&&(m=a.drawLine());var C=s.globals.gridHeight;(!H.isNumber(C)||C<0)&&(C=0);var j=s.config.xaxis.crosshairs.width;(!H.isNumber(j)||j<0)&&(j=0),m.attr({class:"apexcharts-xcrosshairs",x:0,y:0,y2:C,width:j,height:C,fill:Z,filter:"none","fill-opacity":s.config.xaxis.crosshairs.opacity,stroke:s.config.xaxis.crosshairs.stroke.color,"stroke-width":s.config.xaxis.crosshairs.stroke.width,"stroke-dasharray":s.config.xaxis.crosshairs.stroke.dashArray}),y&&(m=i.dropShadow(m,{left:A,top:N,blur:L,color:O,opacity:V})),s.globals.dom.elGraphical.add(m)}}},{key:"drawYCrosshairs",value:function(){var s=this.w,a=new _(this.ctx),i=s.config.yaxis[0].crosshairs,d=s.globals.barPadForNumericAxis;if(s.config.yaxis[0].crosshairs.show){var u=a.drawLine(-d,0,s.globals.gridWidth+d,0,i.stroke.color,i.stroke.dashArray,i.stroke.width);u.attr({class:"apexcharts-ycrosshairs"}),s.globals.dom.elGraphical.add(u)}var p=a.drawLine(-d,0,s.globals.gridWidth+d,0,i.stroke.color,0,0);p.attr({class:"apexcharts-ycrosshairs-hidden"}),s.globals.dom.elGraphical.add(p)}}]),T}(),$t=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"checkResponsiveConfig",value:function(s){var a=this,i=this.w,d=i.config;if(d.responsive.length!==0){var u=d.responsive.slice();u.sort(function(b,M){return b.breakpoint>M.breakpoint?1:M.breakpoint>b.breakpoint?-1:0}).reverse();var p=new It({}),w=function(){var b=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},M=u[0].breakpoint,z=window.innerWidth>0?window.innerWidth:screen.width;if(z>M){var y=tt.extendArrayProps(p,i.globals.initialConfig,i);b=H.extend(y,b),b=H.extend(i.config,b),a.overrideResponsiveOptions(b)}else for(var A=0;A0&&typeof i.config.colors[0]=="function"&&(i.globals.colors=i.config.series.map(function(N,L){var O=i.config.colors[L];return O||(O=i.config.colors[0]),typeof O=="function"?(a.isColorFn=!0,O({value:i.globals.axisCharts?i.globals.series[L][0]?i.globals.series[L][0]:0:i.globals.series[L],seriesIndex:L,dataPointIndex:L,w:i})):O}))),i.globals.seriesColors.map(function(N,L){N&&(i.globals.colors[L]=N)}),i.config.theme.monochrome.enabled){var u=[],p=i.globals.series.length;(this.isBarDistributed||this.isHeatmapDistributed)&&(p=i.globals.series[0].length*i.globals.series.length);for(var w=i.config.theme.monochrome.color,f=1/(p/i.config.theme.monochrome.shadeIntensity),b=i.config.theme.monochrome.shadeTo,M=0,z=0;z2&&arguments[2]!==void 0?arguments[2]:null,d=this.w,u=a||d.globals.series.length;if(i===null&&(i=this.isBarDistributed||this.isHeatmapDistributed||d.config.chart.type==="heatmap"&&d.config.plotOptions.heatmap.colorScale.inverse),i&&d.globals.series.length&&(u=d.globals.series[d.globals.maxValsInArrayIndex].length*d.globals.series.length),s.lengths.globals.svgWidth&&(this.dCtx.lgRect.width=s.globals.svgWidth/1.5),this.dCtx.lgRect}},{key:"getLargestStringFromMultiArr",value:function(s,a){var i=s;if(this.w.globals.isMultiLineX){var d=a.map(function(p,w){return Array.isArray(p)?p.length:1}),u=Math.max.apply(Math,F(d));i=a[d.indexOf(u)]}return i}}]),T}(),Ut=function(){function T(s){g(this,T),this.w=s.w,this.dCtx=s}return k(T,[{key:"getxAxisLabelsCoords",value:function(){var s,a=this.w,i=a.globals.labels.slice();if(a.config.xaxis.convertedCatToNumeric&&i.length===0&&(i=a.globals.categoryLabels),a.globals.timescaleLabels.length>0){var d=this.getxAxisTimeScaleLabelsCoords();s={width:d.width,height:d.height},a.globals.rotateXLabels=!1}else{this.dCtx.lgWidthForSideLegends=a.config.legend.position!=="left"&&a.config.legend.position!=="right"||a.config.legend.floating?0:this.dCtx.lgRect.width;var u=a.globals.xLabelFormatter,p=H.getLargestStringFromArr(i),w=this.dCtx.dimHelpers.getLargestStringFromMultiArr(p,i);a.globals.isBarHorizontal&&(w=p=a.globals.yAxisScale[0].result.reduce(function(N,L){return N.length>L.length?N:L},0));var f=new Ct(this.dCtx.ctx),b=p;p=f.xLabelFormat(u,p,b,{i:void 0,dateFormatter:new dt(this.dCtx.ctx).formatDate,w:a}),w=f.xLabelFormat(u,w,b,{i:void 0,dateFormatter:new dt(this.dCtx.ctx).formatDate,w:a}),(a.config.xaxis.convertedCatToNumeric&&p===void 0||String(p).trim()==="")&&(w=p="1");var M=new _(this.dCtx.ctx),z=M.getTextRects(p,a.config.xaxis.labels.style.fontSize),y=z;if(p!==w&&(y=M.getTextRects(w,a.config.xaxis.labels.style.fontSize)),(s={width:z.width>=y.width?z.width:y.width,height:z.height>=y.height?z.height:y.height}).width*i.length>a.globals.svgWidth-this.dCtx.lgWidthForSideLegends-this.dCtx.yAxisWidth-this.dCtx.gridPad.left-this.dCtx.gridPad.right&&a.config.xaxis.labels.rotate!==0||a.config.xaxis.labels.rotateAlways){if(!a.globals.isBarHorizontal){a.globals.rotateXLabels=!0;var A=function(N){return M.getTextRects(N,a.config.xaxis.labels.style.fontSize,a.config.xaxis.labels.style.fontFamily,"rotate(".concat(a.config.xaxis.labels.rotate," 0 0)"),!1)};z=A(p),p!==w&&(y=A(w)),s.height=(z.height>y.height?z.height:y.height)/1.5,s.width=z.width>y.width?z.width:y.width}}else a.globals.rotateXLabels=!1}return a.config.xaxis.labels.show||(s={width:0,height:0}),{width:s.width,height:s.height}}},{key:"getxAxisGroupLabelsCoords",value:function(){var s,a=this.w;if(!a.globals.hasXaxisGroups)return{width:0,height:0};var i,d=((s=a.config.xaxis.group.style)===null||s===void 0?void 0:s.fontSize)||a.config.xaxis.labels.style.fontSize,u=a.globals.groups.map(function(z){return z.title}),p=H.getLargestStringFromArr(u),w=this.dCtx.dimHelpers.getLargestStringFromMultiArr(p,u),f=new _(this.dCtx.ctx),b=f.getTextRects(p,d),M=b;return p!==w&&(M=f.getTextRects(w,d)),i={width:b.width>=M.width?b.width:M.width,height:b.height>=M.height?b.height:M.height},a.config.xaxis.labels.show||(i={width:0,height:0}),{width:i.width,height:i.height}}},{key:"getxAxisTitleCoords",value:function(){var s=this.w,a=0,i=0;if(s.config.xaxis.title.text!==void 0){var d=new _(this.dCtx.ctx).getTextRects(s.config.xaxis.title.text,s.config.xaxis.title.style.fontSize);a=d.width,i=d.height}return{width:a,height:i}}},{key:"getxAxisTimeScaleLabelsCoords",value:function(){var s,a=this.w;this.dCtx.timescaleLabels=a.globals.timescaleLabels.slice();var i=this.dCtx.timescaleLabels.map(function(u){return u.value}),d=i.reduce(function(u,p){return u===void 0?(console.error("You have possibly supplied invalid Date format. Please supply a valid JavaScript Date"),0):u.length>p.length?u:p},0);return 1.05*(s=new _(this.dCtx.ctx).getTextRects(d,a.config.xaxis.labels.style.fontSize)).width*i.length>a.globals.gridWidth&&a.config.xaxis.labels.rotate!==0&&(a.globals.overlappingXLabels=!0),s}},{key:"additionalPaddingXLabels",value:function(s){var a=this,i=this.w,d=i.globals,u=i.config,p=u.xaxis.type,w=s.width;d.skipLastTimelinelabel=!1,d.skipFirstTimelinelabel=!1;var f=i.config.yaxis[0].opposite&&i.globals.isBarHorizontal,b=function(M,z){u.yaxis.length>1&&function(y){return d.collapsedSeriesIndices.indexOf(y)!==-1}(z)||function(y){if(a.dCtx.timescaleLabels&&a.dCtx.timescaleLabels.length){var A=a.dCtx.timescaleLabels[0],N=a.dCtx.timescaleLabels[a.dCtx.timescaleLabels.length-1].position+w/1.75-a.dCtx.yAxisWidthRight,L=A.position-w/1.75+a.dCtx.yAxisWidthLeft,O=i.config.legend.position==="right"&&a.dCtx.lgRect.width>0?a.dCtx.lgRect.width:0;N>d.svgWidth-d.translateX-O&&(d.skipLastTimelinelabel=!0),L<-(y.show&&!y.floating||u.chart.type!=="bar"&&u.chart.type!=="candlestick"&&u.chart.type!=="rangeBar"&&u.chart.type!=="boxPlot"?10:w/1.75)&&(d.skipFirstTimelinelabel=!0)}else p==="datetime"?a.dCtx.gridPad.rightString(f.niceMax).length?z:f.niceMax,A=M(y,{seriesIndex:w,dataPointIndex:-1,w:a}),N=A;if(A!==void 0&&A.length!==0||(A=y),a.globals.isBarHorizontal){d=0;var L=a.globals.labels.slice();A=M(A=H.getLargestStringFromArr(L),{seriesIndex:w,dataPointIndex:-1,w:a}),N=s.dCtx.dimHelpers.getLargestStringFromMultiArr(A,L)}var O=new _(s.dCtx.ctx),V="rotate(".concat(p.labels.rotate," 0 0)"),Z=O.getTextRects(A,p.labels.style.fontSize,p.labels.style.fontFamily,V,!1),m=Z;A!==N&&(m=O.getTextRects(N,p.labels.style.fontSize,p.labels.style.fontFamily,V,!1)),i.push({width:(b>m.width||b>Z.width?b:m.width>Z.width?m.width:Z.width)+d,height:m.height>Z.height?m.height:Z.height})}else i.push({width:0,height:0})}),i}},{key:"getyAxisTitleCoords",value:function(){var s=this,a=this.w,i=[];return a.config.yaxis.map(function(d,u){if(d.show&&d.title.text!==void 0){var p=new _(s.dCtx.ctx),w="rotate(".concat(d.title.rotate," 0 0)"),f=p.getTextRects(d.title.text,d.title.style.fontSize,d.title.style.fontFamily,w,!1);i.push({width:f.width,height:f.height})}else i.push({width:0,height:0})}),i}},{key:"getTotalYAxisWidth",value:function(){var s=this.w,a=0,i=0,d=0,u=s.globals.yAxisScale.length>1?10:0,p=new Nt(this.dCtx.ctx),w=function(f,b){var M=s.config.yaxis[b].floating,z=0;f.width>0&&!M?(z=f.width+u,function(y){return s.globals.ignoreYAxisIndexes.indexOf(y)>-1}(b)&&(z=z-f.width-u)):z=M||p.isYAxisHidden(b)?0:5,s.config.yaxis[b].opposite?d+=z:i+=z,a+=z};return s.globals.yLabelsCoords.map(function(f,b){w(f,b)}),s.globals.yTitleCoords.map(function(f,b){w(f,b)}),s.globals.isBarHorizontal&&!s.config.yaxis[0].floating&&(a=s.globals.yLabelsCoords[0].width+s.globals.yTitleCoords[0].width+15),this.dCtx.yAxisWidthLeft=i,this.dCtx.yAxisWidthRight=d,a}}]),T}(),te=function(){function T(s){g(this,T),this.w=s.w,this.dCtx=s}return k(T,[{key:"gridPadForColumnsInNumericAxis",value:function(s){var a=this.w;if(a.globals.noData||a.globals.allSeriesCollapsed)return 0;var i=function(M){return M==="bar"||M==="rangeBar"||M==="candlestick"||M==="boxPlot"},d=a.config.chart.type,u=0,p=i(d)?a.config.series.length:1;if(a.globals.comboBarCount>0&&(p=a.globals.comboBarCount),a.globals.collapsedSeries.forEach(function(M){i(M.type)&&(p-=1)}),a.config.chart.stacked&&(p=1),(i(d)||a.globals.comboBarCount>0)&&a.globals.isXNumeric&&!a.globals.isBarHorizontal&&p>0){var w,f,b=Math.abs(a.globals.initialMaxX-a.globals.initialMinX);b<=3&&(b=a.globals.dataPoints),w=b/s,a.globals.minXDiff&&a.globals.minXDiff/w>0&&(f=a.globals.minXDiff/w),f>s/2&&(f/=2),(u=f/p*parseInt(a.config.plotOptions.bar.columnWidth,10)/100)<1&&(u=1),u=u/(p>1?1:1.5)+5,a.globals.barPadForNumericAxis=u}return u}},{key:"gridPadFortitleSubtitle",value:function(){var s=this,a=this.w,i=a.globals,d=this.dCtx.isSparkline||!a.globals.axisCharts?0:10;["title","subtitle"].forEach(function(w){a.config[w].text!==void 0?d+=a.config[w].margin:d+=s.dCtx.isSparkline||!a.globals.axisCharts?0:5}),!a.config.legend.show||a.config.legend.position!=="bottom"||a.config.legend.floating||a.globals.axisCharts||(d+=10);var u=this.dCtx.dimHelpers.getTitleSubtitleCoords("title"),p=this.dCtx.dimHelpers.getTitleSubtitleCoords("subtitle");i.gridHeight=i.gridHeight-u.height-p.height-d,i.translateY=i.translateY+u.height+p.height+d}},{key:"setGridXPosForDualYAxis",value:function(s,a){var i=this.w,d=new Nt(this.dCtx.ctx);i.config.yaxis.map(function(u,p){i.globals.ignoreYAxisIndexes.indexOf(p)!==-1||u.floating||d.isYAxisHidden(p)||(u.opposite&&(i.globals.translateX=i.globals.translateX-(a[p].width+s[p].width)-parseInt(i.config.yaxis[p].labels.style.fontSize,10)/1.2-12),i.globals.translateX<2&&(i.globals.translateX=2))})}}]),T}(),ae=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.lgRect={},this.yAxisWidth=0,this.yAxisWidthLeft=0,this.yAxisWidthRight=0,this.xAxisHeight=0,this.isSparkline=this.w.config.chart.sparkline.enabled,this.dimHelpers=new Zt(this),this.dimYAxis=new Gt(this),this.dimXAxis=new Ut(this),this.dimGrid=new te(this),this.lgWidthForSideLegends=0,this.gridPad=this.w.config.grid.padding,this.xPadRight=0,this.xPadLeft=0}return k(T,[{key:"plotCoords",value:function(){var s=this,a=this.w,i=a.globals;this.lgRect=this.dimHelpers.getLegendsRect(),this.isSparkline&&(a.config.markers.discrete.length>0||a.config.markers.size>0)&&Object.entries(this.gridPad).forEach(function(u){var p=D(u,2),w=p[0],f=p[1];s.gridPad[w]=Math.max(f,s.w.globals.markers.largestSize/1.5)}),i.axisCharts?this.setDimensionsForAxisCharts():this.setDimensionsForNonAxisCharts(),this.dimGrid.gridPadFortitleSubtitle(),i.gridHeight=i.gridHeight-this.gridPad.top-this.gridPad.bottom,i.gridWidth=i.gridWidth-this.gridPad.left-this.gridPad.right-this.xPadRight-this.xPadLeft;var d=this.dimGrid.gridPadForColumnsInNumericAxis(i.gridWidth);i.gridWidth=i.gridWidth-2*d,i.translateX=i.translateX+this.gridPad.left+this.xPadLeft+(d>0?d+4:0),i.translateY=i.translateY+this.gridPad.top}},{key:"setDimensionsForAxisCharts",value:function(){var s=this,a=this.w,i=a.globals,d=this.dimYAxis.getyAxisLabelsCoords(),u=this.dimYAxis.getyAxisTitleCoords();a.globals.yLabelsCoords=[],a.globals.yTitleCoords=[],a.config.yaxis.map(function(A,N){a.globals.yLabelsCoords.push({width:d[N].width,index:N}),a.globals.yTitleCoords.push({width:u[N].width,index:N})}),this.yAxisWidth=this.dimYAxis.getTotalYAxisWidth();var p=this.dimXAxis.getxAxisLabelsCoords(),w=this.dimXAxis.getxAxisGroupLabelsCoords(),f=this.dimXAxis.getxAxisTitleCoords();this.conditionalChecksForAxisCoords(p,f,w),i.translateXAxisY=a.globals.rotateXLabels?this.xAxisHeight/8:-4,i.translateXAxisX=a.globals.rotateXLabels&&a.globals.isXNumeric&&a.config.xaxis.labels.rotate<=-45?-this.xAxisWidth/4:0,a.globals.isBarHorizontal&&(i.rotateXLabels=!1,i.translateXAxisY=parseInt(a.config.xaxis.labels.style.fontSize,10)/1.5*-1),i.translateXAxisY=i.translateXAxisY+a.config.xaxis.labels.offsetY,i.translateXAxisX=i.translateXAxisX+a.config.xaxis.labels.offsetX;var b=this.yAxisWidth,M=this.xAxisHeight;i.xAxisLabelsHeight=this.xAxisHeight-f.height,i.xAxisGroupLabelsHeight=i.xAxisLabelsHeight-p.height,i.xAxisLabelsWidth=this.xAxisWidth,i.xAxisHeight=this.xAxisHeight;var z=10;(a.config.chart.type==="radar"||this.isSparkline)&&(b=0,M=i.goldenPadding),this.isSparkline&&(this.lgRect={height:0,width:0}),(this.isSparkline||a.config.chart.type==="treemap")&&(b=0,M=0,z=0),this.isSparkline||this.dimXAxis.additionalPaddingXLabels(p);var y=function(){i.translateX=b,i.gridHeight=i.svgHeight-s.lgRect.height-M-(s.isSparkline||a.config.chart.type==="treemap"?0:a.globals.rotateXLabels?10:15),i.gridWidth=i.svgWidth-b};switch(a.config.xaxis.position==="top"&&(z=i.xAxisHeight-a.config.xaxis.axisTicks.height-5),a.config.legend.position){case"bottom":i.translateY=z,y();break;case"top":i.translateY=this.lgRect.height+z,y();break;case"left":i.translateY=z,i.translateX=this.lgRect.width+b,i.gridHeight=i.svgHeight-M-12,i.gridWidth=i.svgWidth-this.lgRect.width-b;break;case"right":i.translateY=z,i.translateX=b,i.gridHeight=i.svgHeight-M-12,i.gridWidth=i.svgWidth-this.lgRect.width-b-5;break;default:throw new Error("Legend position not supported")}this.dimGrid.setGridXPosForDualYAxis(u,d),new at(this.ctx).setYAxisXPosition(d,u)}},{key:"setDimensionsForNonAxisCharts",value:function(){var s=this.w,a=s.globals,i=s.config,d=0;s.config.legend.show&&!s.config.legend.floating&&(d=20);var u=i.chart.type==="pie"||i.chart.type==="polarArea"||i.chart.type==="donut"?"pie":"radialBar",p=i.plotOptions[u].offsetY,w=i.plotOptions[u].offsetX;if(!i.legend.show||i.legend.floating)return a.gridHeight=a.svgHeight-i.grid.padding.left+i.grid.padding.right,a.gridWidth=a.gridHeight,a.translateY=p,void(a.translateX=w+(a.svgWidth-a.gridWidth)/2);switch(i.legend.position){case"bottom":a.gridHeight=a.svgHeight-this.lgRect.height-a.goldenPadding,a.gridWidth=a.svgWidth,a.translateY=p-10,a.translateX=w+(a.svgWidth-a.gridWidth)/2;break;case"top":a.gridHeight=a.svgHeight-this.lgRect.height-a.goldenPadding,a.gridWidth=a.svgWidth,a.translateY=this.lgRect.height+p+10,a.translateX=w+(a.svgWidth-a.gridWidth)/2;break;case"left":a.gridWidth=a.svgWidth-this.lgRect.width-d,a.gridHeight=i.chart.height!=="auto"?a.svgHeight:a.gridWidth,a.translateY=p,a.translateX=w+this.lgRect.width+d;break;case"right":a.gridWidth=a.svgWidth-this.lgRect.width-d-5,a.gridHeight=i.chart.height!=="auto"?a.svgHeight:a.gridWidth,a.translateY=p,a.translateX=w+10;break;default:throw new Error("Legend position not supported")}}},{key:"conditionalChecksForAxisCoords",value:function(s,a,i){var d=this.w,u=d.globals.hasXaxisGroups?2:1,p=i.height+s.height+a.height,w=d.globals.isMultiLineX?1.2:d.globals.LINE_HEIGHT_RATIO,f=d.globals.rotateXLabels?22:10,b=d.globals.rotateXLabels&&d.config.legend.position==="bottom"?10:0;this.xAxisHeight=p*w+u*f+b,this.xAxisWidth=s.width,this.xAxisHeight-a.height>d.config.xaxis.labels.maxHeight&&(this.xAxisHeight=d.config.xaxis.labels.maxHeight),d.config.xaxis.labels.minHeight&&this.xAxisHeightz&&(this.yAxisWidth=z)}}]),T}(),be=function(){function T(s){g(this,T),this.w=s.w,this.lgCtx=s}return k(T,[{key:"getLegendStyles",value:function(){var s=document.createElement("style");s.setAttribute("type","text/css");var a=document.createTextNode(` .apexcharts-legend { display: flex; @@ -84,7 +88,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho } .apexcharts-inactive-legend { opacity: 0.45; - }`);return s.appendChild(a),s}},{key:"getLegendBBox",value:function(){var s=this.w.globals.dom.baseEl.querySelector(".apexcharts-legend").getBoundingClientRect(),a=s.width;return{clwh:s.height,clww:a}}},{key:"appendToForeignObject",value:function(){this.w.globals.dom.elLegendForeign.appendChild(this.getLegendStyles())}},{key:"toggleDataSeries",value:function(s,a){var i=this,d=this.w;if(d.globals.axisCharts||d.config.chart.type==="radialBar"){d.globals.resized=!0;var c=null,p=null;d.globals.risingSeries=[],d.globals.axisCharts?(c=d.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(s,"']")),p=parseInt(c.getAttribute("data:realIndex"),10)):(c=d.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"']")),p=parseInt(c.getAttribute("rel"),10)-1),a?[{cs:d.globals.collapsedSeries,csi:d.globals.collapsedSeriesIndices},{cs:d.globals.ancillaryCollapsedSeries,csi:d.globals.ancillaryCollapsedSeriesIndices}].forEach(function(M){i.riseCollapsedSeries(M.cs,M.csi,p)}):this.hideSeries({seriesEl:c,realIndex:p})}else{var w=d.globals.dom.Paper.select(" .apexcharts-series[rel='".concat(s+1,"'] path")),f=d.config.chart.type;if(f==="pie"||f==="polarArea"||f==="donut"){var k=d.config.plotOptions.pie.donut.labels;new _(this.lgCtx.ctx).pathMouseDown(w.members[0],null),this.lgCtx.ctx.pie.printDataLabelsInner(w.members[0].node,k)}w.fire("click")}}},{key:"hideSeries",value:function(s){var a=s.seriesEl,i=s.realIndex,d=this.w,c=H.clone(d.config.series);if(d.globals.axisCharts){var p=!1;if(d.config.yaxis[i]&&d.config.yaxis[i].show&&d.config.yaxis[i].showAlways&&(p=!0,d.globals.ancillaryCollapsedSeriesIndices.indexOf(i)<0&&(d.globals.ancillaryCollapsedSeries.push({index:i,data:c[i].data.slice(),type:a.parentNode.className.baseVal.split("-")[1]}),d.globals.ancillaryCollapsedSeriesIndices.push(i))),!p){d.globals.collapsedSeries.push({index:i,data:c[i].data.slice(),type:a.parentNode.className.baseVal.split("-")[1]}),d.globals.collapsedSeriesIndices.push(i);var w=d.globals.risingSeries.indexOf(i);d.globals.risingSeries.splice(w,1)}}else d.globals.collapsedSeries.push({index:i,data:c[i]}),d.globals.collapsedSeriesIndices.push(i);for(var f=a.childNodes,k=0;k0){for(var p=0;p-1&&(s[d].data=[])}):s.forEach(function(i,d){a.globals.collapsedSeriesIndices.indexOf(d)>-1&&(s[d]=0)}),s}}]),T}(),ue=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.onLegendClick=this.onLegendClick.bind(this),this.onLegendHovered=this.onLegendHovered.bind(this),this.isBarsDistributed=this.w.config.chart.type==="bar"&&this.w.config.plotOptions.bar.distributed&&this.w.config.series.length===1,this.legendHelpers=new me(this)}return b(T,[{key:"init",value:function(){var s=this.w,a=s.globals,i=s.config;if((i.legend.showForSingleSeries&&a.series.length===1||this.isBarsDistributed||a.series.length>1||!a.axisCharts)&&i.legend.show){for(;a.dom.elLegendWrap.firstChild;)a.dom.elLegendWrap.removeChild(a.dom.elLegendWrap.firstChild);this.drawLegends(),H.isIE11()?document.getElementsByTagName("head")[0].appendChild(this.legendHelpers.getLegendStyles()):this.legendHelpers.appendToForeignObject(),i.legend.position==="bottom"||i.legend.position==="top"?this.legendAlignHorizontal():i.legend.position!=="right"&&i.legend.position!=="left"||this.legendAlignVertical()}}},{key:"drawLegends",value:function(){var s=this,a=this.w,i=a.config.legend.fontFamily,d=a.globals.seriesNames,c=a.globals.colors.slice();if(a.config.chart.type==="heatmap"){var p=a.config.plotOptions.heatmap.colorScale.ranges;d=p.map(function(Mt){return Mt.name?Mt.name:Mt.from+" - "+Mt.to}),c=p.map(function(Mt){return Mt.color})}else this.isBarsDistributed&&(d=a.globals.labels.slice());a.config.legend.customLegendItems.length&&(d=a.config.legend.customLegendItems);for(var w=a.globals.legendFormatter,f=a.config.legend.inverseOrder,k=f?d.length-1:0;f?k>=0:k<=d.length-1;f?k--:k++){var M,x=w(d[k],{seriesIndex:k,w:a}),I=!1,$=!1;if(a.globals.collapsedSeries.length>0)for(var N=0;N0)for(var L=0;L0?k-10:0)+(M>0?M-10:0)}d.style.position="absolute",p=p+s+i.config.legend.offsetX,w=w+a+i.config.legend.offsetY,d.style.left=p+"px",d.style.top=w+"px",i.config.legend.position==="bottom"?(d.style.top="auto",d.style.bottom=5-i.config.legend.offsetY+"px"):i.config.legend.position==="right"&&(d.style.left="auto",d.style.right=25+i.config.legend.offsetX+"px"),["width","height"].forEach(function(x){d.style[x]&&(d.style[x]=parseInt(i.config.legend[x],10)+"px")})}},{key:"legendAlignHorizontal",value:function(){var s=this.w;s.globals.dom.elLegendWrap.style.right=0;var a=this.legendHelpers.getLegendBBox(),i=new se(this.ctx),d=i.dimHelpers.getTitleSubtitleCoords("title"),c=i.dimHelpers.getTitleSubtitleCoords("subtitle"),p=0;s.config.legend.position==="bottom"?p=-a.clwh/1.8:s.config.legend.position==="top"&&(p=d.height+c.height+s.config.title.margin+s.config.subtitle.margin-10),this.setLegendWrapXY(20,p)}},{key:"legendAlignVertical",value:function(){var s=this.w,a=this.legendHelpers.getLegendBBox(),i=0;s.config.legend.position==="left"&&(i=20),s.config.legend.position==="right"&&(i=s.globals.svgWidth-a.clww-10),this.setLegendWrapXY(i,20)}},{key:"onLegendHovered",value:function(s){var a=this.w,i=s.target.classList.contains("apexcharts-legend-text")||s.target.classList.contains("apexcharts-legend-marker");if(a.config.chart.type==="heatmap"||this.isBarsDistributed){if(i){var d=parseInt(s.target.getAttribute("rel"),10)-1;this.ctx.events.fireEvent("legendHover",[this.ctx,d,this.w]),new ut(this.ctx).highlightRangeInSeries(s,s.target)}}else!s.target.classList.contains("apexcharts-inactive-legend")&&i&&new ut(this.ctx).toggleSeriesOnHover(s,s.target)}},{key:"onLegendClick",value:function(s){var a=this.w;if(!a.config.legend.customLegendItems.length&&(s.target.classList.contains("apexcharts-legend-text")||s.target.classList.contains("apexcharts-legend-marker"))){var i=parseInt(s.target.getAttribute("rel"),10)-1,d=s.target.getAttribute("data:collapsed")==="true",c=this.w.config.chart.events.legendClick;typeof c=="function"&&c(this.ctx,i,this.w),this.ctx.events.fireEvent("legendClick",[this.ctx,i,this.w]);var p=this.w.config.legend.markers.onClick;typeof p=="function"&&s.target.classList.contains("apexcharts-legend-marker")&&(p(this.ctx,i,this.w),this.ctx.events.fireEvent("legendMarkerClick",[this.ctx,i,this.w])),a.config.chart.type!=="treemap"&&a.config.chart.type!=="heatmap"&&!this.isBarsDistributed&&a.config.legend.onItemClick.toggleDataSeries&&this.legendHelpers.toggleDataSeries(i,d)}}}]),T}(),Se=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w;var a=this.w;this.ev=this.w.config.chart.events,this.selectedClass="apexcharts-selected",this.localeValues=this.w.globals.locale.toolbar,this.minX=a.globals.minX,this.maxX=a.globals.maxX}return b(T,[{key:"createToolbar",value:function(){var s=this,a=this.w,i=function(){return document.createElement("div")},d=i();if(d.setAttribute("class","apexcharts-toolbar"),d.style.top=a.config.chart.toolbar.offsetY+"px",d.style.right=3-a.config.chart.toolbar.offsetX+"px",a.globals.dom.elWrap.appendChild(d),this.elZoom=i(),this.elZoomIn=i(),this.elZoomOut=i(),this.elPan=i(),this.elSelection=i(),this.elZoomReset=i(),this.elMenuIcon=i(),this.elMenu=i(),this.elCustomIcons=[],this.t=a.config.chart.toolbar.tools,Array.isArray(this.t.customIcons))for(var c=0;c + }`);return s.appendChild(a),s}},{key:"getLegendBBox",value:function(){var s=this.w.globals.dom.baseEl.querySelector(".apexcharts-legend").getBoundingClientRect(),a=s.width;return{clwh:s.height,clww:a}}},{key:"appendToForeignObject",value:function(){this.w.globals.dom.elLegendForeign.appendChild(this.getLegendStyles())}},{key:"toggleDataSeries",value:function(s,a){var i=this,d=this.w;if(d.globals.axisCharts||d.config.chart.type==="radialBar"){d.globals.resized=!0;var u=null,p=null;d.globals.risingSeries=[],d.globals.axisCharts?(u=d.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(s,"']")),p=parseInt(u.getAttribute("data:realIndex"),10)):(u=d.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"']")),p=parseInt(u.getAttribute("rel"),10)-1),a?[{cs:d.globals.collapsedSeries,csi:d.globals.collapsedSeriesIndices},{cs:d.globals.ancillaryCollapsedSeries,csi:d.globals.ancillaryCollapsedSeriesIndices}].forEach(function(M){i.riseCollapsedSeries(M.cs,M.csi,p)}):this.hideSeries({seriesEl:u,realIndex:p})}else{var w=d.globals.dom.Paper.select(" .apexcharts-series[rel='".concat(s+1,"'] path")),f=d.config.chart.type;if(f==="pie"||f==="polarArea"||f==="donut"){var b=d.config.plotOptions.pie.donut.labels;new _(this.lgCtx.ctx).pathMouseDown(w.members[0],null),this.lgCtx.ctx.pie.printDataLabelsInner(w.members[0].node,b)}w.fire("click")}}},{key:"hideSeries",value:function(s){var a=s.seriesEl,i=s.realIndex,d=this.w,u=H.clone(d.config.series);if(d.globals.axisCharts){var p=!1;if(d.config.yaxis[i]&&d.config.yaxis[i].show&&d.config.yaxis[i].showAlways&&(p=!0,d.globals.ancillaryCollapsedSeriesIndices.indexOf(i)<0&&(d.globals.ancillaryCollapsedSeries.push({index:i,data:u[i].data.slice(),type:a.parentNode.className.baseVal.split("-")[1]}),d.globals.ancillaryCollapsedSeriesIndices.push(i))),!p){d.globals.collapsedSeries.push({index:i,data:u[i].data.slice(),type:a.parentNode.className.baseVal.split("-")[1]}),d.globals.collapsedSeriesIndices.push(i);var w=d.globals.risingSeries.indexOf(i);d.globals.risingSeries.splice(w,1)}}else d.globals.collapsedSeries.push({index:i,data:u[i]}),d.globals.collapsedSeriesIndices.push(i);for(var f=a.childNodes,b=0;b0){for(var p=0;p-1&&(s[d].data=[])}):s.forEach(function(i,d){a.globals.collapsedSeriesIndices.indexOf(d)>-1&&(s[d]=0)}),s}}]),T}(),ge=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.onLegendClick=this.onLegendClick.bind(this),this.onLegendHovered=this.onLegendHovered.bind(this),this.isBarsDistributed=this.w.config.chart.type==="bar"&&this.w.config.plotOptions.bar.distributed&&this.w.config.series.length===1,this.legendHelpers=new be(this)}return k(T,[{key:"init",value:function(){var s=this.w,a=s.globals,i=s.config;if((i.legend.showForSingleSeries&&a.series.length===1||this.isBarsDistributed||a.series.length>1||!a.axisCharts)&&i.legend.show){for(;a.dom.elLegendWrap.firstChild;)a.dom.elLegendWrap.removeChild(a.dom.elLegendWrap.firstChild);this.drawLegends(),H.isIE11()?document.getElementsByTagName("head")[0].appendChild(this.legendHelpers.getLegendStyles()):this.legendHelpers.appendToForeignObject(),i.legend.position==="bottom"||i.legend.position==="top"?this.legendAlignHorizontal():i.legend.position!=="right"&&i.legend.position!=="left"||this.legendAlignVertical()}}},{key:"drawLegends",value:function(){var s=this,a=this.w,i=a.config.legend.fontFamily,d=a.globals.seriesNames,u=a.globals.colors.slice();if(a.config.chart.type==="heatmap"){var p=a.config.plotOptions.heatmap.colorScale.ranges;d=p.map(function(Mt){return Mt.name?Mt.name:Mt.from+" - "+Mt.to}),u=p.map(function(Mt){return Mt.color})}else this.isBarsDistributed&&(d=a.globals.labels.slice());a.config.legend.customLegendItems.length&&(d=a.config.legend.customLegendItems);for(var w=a.globals.legendFormatter,f=a.config.legend.inverseOrder,b=f?d.length-1:0;f?b>=0:b<=d.length-1;f?b--:b++){var M,z=w(d[b],{seriesIndex:b,w:a}),y=!1,A=!1;if(a.globals.collapsedSeries.length>0)for(var N=0;N0)for(var L=0;L0?b-10:0)+(M>0?M-10:0)}d.style.position="absolute",p=p+s+i.config.legend.offsetX,w=w+a+i.config.legend.offsetY,d.style.left=p+"px",d.style.top=w+"px",i.config.legend.position==="bottom"?(d.style.top="auto",d.style.bottom=5-i.config.legend.offsetY+"px"):i.config.legend.position==="right"&&(d.style.left="auto",d.style.right=25+i.config.legend.offsetX+"px"),["width","height"].forEach(function(z){d.style[z]&&(d.style[z]=parseInt(i.config.legend[z],10)+"px")})}},{key:"legendAlignHorizontal",value:function(){var s=this.w;s.globals.dom.elLegendWrap.style.right=0;var a=this.legendHelpers.getLegendBBox(),i=new ae(this.ctx),d=i.dimHelpers.getTitleSubtitleCoords("title"),u=i.dimHelpers.getTitleSubtitleCoords("subtitle"),p=0;s.config.legend.position==="bottom"?p=-a.clwh/1.8:s.config.legend.position==="top"&&(p=d.height+u.height+s.config.title.margin+s.config.subtitle.margin-10),this.setLegendWrapXY(20,p)}},{key:"legendAlignVertical",value:function(){var s=this.w,a=this.legendHelpers.getLegendBBox(),i=0;s.config.legend.position==="left"&&(i=20),s.config.legend.position==="right"&&(i=s.globals.svgWidth-a.clww-10),this.setLegendWrapXY(i,20)}},{key:"onLegendHovered",value:function(s){var a=this.w,i=s.target.classList.contains("apexcharts-legend-text")||s.target.classList.contains("apexcharts-legend-marker");if(a.config.chart.type==="heatmap"||this.isBarsDistributed){if(i){var d=parseInt(s.target.getAttribute("rel"),10)-1;this.ctx.events.fireEvent("legendHover",[this.ctx,d,this.w]),new ut(this.ctx).highlightRangeInSeries(s,s.target)}}else!s.target.classList.contains("apexcharts-inactive-legend")&&i&&new ut(this.ctx).toggleSeriesOnHover(s,s.target)}},{key:"onLegendClick",value:function(s){var a=this.w;if(!a.config.legend.customLegendItems.length&&(s.target.classList.contains("apexcharts-legend-text")||s.target.classList.contains("apexcharts-legend-marker"))){var i=parseInt(s.target.getAttribute("rel"),10)-1,d=s.target.getAttribute("data:collapsed")==="true",u=this.w.config.chart.events.legendClick;typeof u=="function"&&u(this.ctx,i,this.w),this.ctx.events.fireEvent("legendClick",[this.ctx,i,this.w]);var p=this.w.config.legend.markers.onClick;typeof p=="function"&&s.target.classList.contains("apexcharts-legend-marker")&&(p(this.ctx,i,this.w),this.ctx.events.fireEvent("legendMarkerClick",[this.ctx,i,this.w])),a.config.chart.type!=="treemap"&&a.config.chart.type!=="heatmap"&&!this.isBarsDistributed&&a.config.legend.onItemClick.toggleDataSeries&&this.legendHelpers.toggleDataSeries(i,d)}}}]),T}(),Ae=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w;var a=this.w;this.ev=this.w.config.chart.events,this.selectedClass="apexcharts-selected",this.localeValues=this.w.globals.locale.toolbar,this.minX=a.globals.minX,this.maxX=a.globals.maxX}return k(T,[{key:"createToolbar",value:function(){var s=this,a=this.w,i=function(){return document.createElement("div")},d=i();if(d.setAttribute("class","apexcharts-toolbar"),d.style.top=a.config.chart.toolbar.offsetY+"px",d.style.right=3-a.config.chart.toolbar.offsetX+"px",a.globals.dom.elWrap.appendChild(d),this.elZoom=i(),this.elZoomIn=i(),this.elZoomOut=i(),this.elPan=i(),this.elSelection=i(),this.elZoomReset=i(),this.elMenuIcon=i(),this.elMenu=i(),this.elCustomIcons=[],this.t=a.config.chart.toolbar.tools,Array.isArray(this.t.customIcons))for(var u=0;u @@ -92,14 +96,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho -`);var f=function(x){s.t[x]&&a.config.chart[x].enabled&&p.push({el:x==="zoom"?s.elZoom:s.elSelection,icon:typeof s.t[x]=="string"?s.t[x]:x==="zoom"?` +`);var f=function(z){s.t[z]&&a.config.chart[z].enabled&&p.push({el:z==="zoom"?s.elZoom:s.elSelection,icon:typeof s.t[z]=="string"?s.t[z]:z==="zoom"?` `:` -`,title:s.localeValues[x==="zoom"?"selectionZoom":"selection"],class:a.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-".concat(x,"-icon")})};f("zoom"),f("selection"),this.t.pan&&a.config.chart.zoom.enabled&&p.push({el:this.elPan,icon:typeof this.t.pan=="string"?this.t.pan:` +`,title:s.localeValues[z==="zoom"?"selectionZoom":"selection"],class:a.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-".concat(z,"-icon")})};f("zoom"),f("selection"),this.t.pan&&a.config.chart.zoom.enabled&&p.push({el:this.elPan,icon:typeof this.t.pan=="string"?this.t.pan:` @@ -110,14 +114,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho `,title:this.localeValues.pan,class:a.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-pan-icon"}),w("reset",this.elZoomReset,` -`),this.t.download&&p.push({el:this.elMenuIcon,icon:typeof this.t.download=="string"?this.t.download:'',title:this.localeValues.menu,class:"apexcharts-menu-icon"});for(var k=0;k0&&d.height>0&&this.slDraggableRect.selectize({points:"l, r",pointSize:8,pointType:"rect"}).resize({constraint:{minX:0,minY:0,maxX:i.globals.gridWidth,maxY:i.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var i=this.w,d=this.xyRatios;if(!i.globals.zoomEnabled){if(i.globals.selection!==void 0&&i.globals.selection!==null)this.drawSelectionRect(i.globals.selection);else if(i.config.chart.selection.xaxis.min!==void 0&&i.config.chart.selection.xaxis.max!==void 0){var c=(i.config.chart.selection.xaxis.min-i.globals.minX)/d.xRatio,p={x:c,y:0,width:i.globals.gridWidth-(i.globals.maxX-i.config.chart.selection.xaxis.max)/d.xRatio-c,height:i.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(p),this.makeSelectionRectDraggable(),typeof i.config.chart.events.selection=="function"&&i.config.chart.events.selection(this.ctx,{xaxis:{min:i.config.chart.selection.xaxis.min,max:i.config.chart.selection.xaxis.max},yaxis:{}})}}}},{key:"drawSelectionRect",value:function(i){var d=i.x,c=i.y,p=i.width,w=i.height,f=i.translateX,k=f===void 0?0:f,M=i.translateY,x=M===void 0?0:M,I=this.w,$=this.zoomRect,N=this.selectionRect;if(this.dragged||I.globals.selection!==null){var L={transform:"translate("+k+", "+x+")"};I.globals.zoomEnabled&&this.dragged&&(p<0&&(p=1),$.attr({x:d,y:c,width:p,height:w,fill:I.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":I.config.chart.zoom.zoomedArea.fill.opacity,stroke:I.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":I.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":I.config.chart.zoom.zoomedArea.stroke.opacity}),_.setAttrs($.node,L)),I.globals.selectionEnabled&&(N.attr({x:d,y:c,width:p>0?p:0,height:w>0?w:0,fill:I.config.chart.selection.fill.color,"fill-opacity":I.config.chart.selection.fill.opacity,stroke:I.config.chart.selection.stroke.color,"stroke-width":I.config.chart.selection.stroke.width,"stroke-dasharray":I.config.chart.selection.stroke.dashArray,"stroke-opacity":I.config.chart.selection.stroke.opacity}),_.setAttrs(N.node,L))}}},{key:"hideSelectionRect",value:function(i){i&&i.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(i){var d=i.context,c=i.zoomtype,p=this.w,w=d,f=this.gridRect.getBoundingClientRect(),k=w.startX-1,M=w.startY,x=!1,I=!1,$=w.clientX-f.left-k,N=w.clientY-f.top-M,L={};return Math.abs($+k)>p.globals.gridWidth?$=p.globals.gridWidth-k:w.clientX-f.left<0&&($=k),k>w.clientX-f.left&&(x=!0,$=Math.abs($)),M>w.clientY-f.top&&(I=!0,N=Math.abs(N)),L=c==="x"?{x:x?k-$:k,y:0,width:$,height:p.globals.gridHeight}:c==="y"?{x:0,y:I?M-N:M,width:p.globals.gridWidth,height:N}:{x:x?k-$:k,y:I?M-N:M,width:$,height:N},w.drawSelectionRect(L),w.selectionDragging("resizing"),L}},{key:"selectionDragging",value:function(i,d){var c=this,p=this.w,w=this.xyRatios,f=this.selectionRect,k=0;i==="resizing"&&(k=30);var M=function(I){return parseFloat(f.node.getAttribute(I))},x={x:M("x"),y:M("y"),width:M("width"),height:M("height")};p.globals.selection=x,typeof p.config.chart.events.selection=="function"&&p.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout(function(){var I=c.gridRect.getBoundingClientRect(),$=f.node.getBoundingClientRect(),N={xaxis:{min:p.globals.xAxisScale.niceMin+($.left-I.left)*w.xRatio,max:p.globals.xAxisScale.niceMin+($.right-I.left)*w.xRatio},yaxis:{min:p.globals.yAxisScale[0].niceMin+(I.bottom-$.bottom)*w.yRatio[0],max:p.globals.yAxisScale[0].niceMax-($.top-I.top)*w.yRatio[0]}};p.config.chart.events.selection(c.ctx,N),p.config.chart.brush.enabled&&p.config.chart.events.brushScrolled!==void 0&&p.config.chart.events.brushScrolled(c.ctx,N)},k))}},{key:"selectionDrawn",value:function(i){var d=i.context,c=i.zoomtype,p=this.w,w=d,f=this.xyRatios,k=this.ctx.toolbar;if(w.startX>w.endX){var M=w.startX;w.startX=w.endX,w.endX=M}if(w.startY>w.endY){var x=w.startY;w.startY=w.endY,w.endY=x}var I=void 0,$=void 0;p.globals.isRangeBar?(I=p.globals.yAxisScale[0].niceMin+w.startX*f.invertedYRatio,$=p.globals.yAxisScale[0].niceMin+w.endX*f.invertedYRatio):(I=p.globals.xAxisScale.niceMin+w.startX*f.xRatio,$=p.globals.xAxisScale.niceMin+w.endX*f.xRatio);var N=[],L=[];if(p.config.yaxis.forEach(function(K,Q){N.push(p.globals.yAxisScale[Q].niceMax-f.yRatio[Q]*w.startY),L.push(p.globals.yAxisScale[Q].niceMax-f.yRatio[Q]*w.endY)}),w.dragged&&(w.dragX>10||w.dragY>10)&&I!==$){if(p.globals.zoomEnabled){var F=H.clone(p.globals.initialConfig.yaxis),V=H.clone(p.globals.initialConfig.xaxis);if(p.globals.zoomed=!0,p.config.xaxis.convertedCatToNumeric&&(I=Math.floor(I),$=Math.floor($),I<1&&(I=1,$=p.globals.dataPoints),$-I<2&&($=I+1)),c!=="xy"&&c!=="x"||(V={min:I,max:$}),c!=="xy"&&c!=="y"||F.forEach(function(K,Q){F[Q].min=L[Q],F[Q].max=N[Q]}),p.config.chart.zoom.autoScaleYaxis){var Z=new J(w.ctx);F=Z.autoScaleY(w.ctx,F,{xaxis:V})}if(k){var m=k.getBeforeZoomRange(V,F);m&&(V=m.xaxis?m.xaxis:V,F=m.yaxis?m.yaxis:F)}var y={xaxis:V};p.config.chart.group||(y.yaxis=F),w.ctx.updateHelpers._updateOptions(y,!1,w.w.config.chart.animations.dynamicAnimation.enabled),typeof p.config.chart.events.zoomed=="function"&&k.zoomCallback(V,F)}else if(p.globals.selectionEnabled){var j,R=null;j={min:I,max:$},c!=="xy"&&c!=="y"||(R=H.clone(p.config.yaxis)).forEach(function(K,Q){R[Q].min=L[Q],R[Q].max=N[Q]}),p.globals.selection=w.selection,typeof p.config.chart.events.selection=="function"&&p.config.chart.events.selection(w.ctx,{xaxis:j,yaxis:R})}}}},{key:"panDragging",value:function(i){var d=i.context,c=this.w,p=d;if(c.globals.lastClientPosition.x!==void 0){var w=c.globals.lastClientPosition.x-p.clientX,f=c.globals.lastClientPosition.y-p.clientY;Math.abs(w)>Math.abs(f)&&w>0?this.moveDirection="left":Math.abs(w)>Math.abs(f)&&w<0?this.moveDirection="right":Math.abs(f)>Math.abs(w)&&f>0?this.moveDirection="up":Math.abs(f)>Math.abs(w)&&f<0&&(this.moveDirection="down")}c.globals.lastClientPosition={x:p.clientX,y:p.clientY};var k=c.globals.isRangeBar?c.globals.minY:c.globals.minX,M=c.globals.isRangeBar?c.globals.maxY:c.globals.maxX;c.config.xaxis.convertedCatToNumeric||p.panScrolled(k,M)}},{key:"delayedPanScrolled",value:function(){var i=this.w,d=i.globals.minX,c=i.globals.maxX,p=(i.globals.maxX-i.globals.minX)/2;this.moveDirection==="left"?(d=i.globals.minX+p,c=i.globals.maxX+p):this.moveDirection==="right"&&(d=i.globals.minX-p,c=i.globals.maxX-p),d=Math.floor(d),c=Math.floor(c),this.updateScrolledChart({xaxis:{min:d,max:c}},d,c)}},{key:"panScrolled",value:function(i,d){var c=this.w,p=this.xyRatios,w=H.clone(c.globals.initialConfig.yaxis),f=p.xRatio,k=c.globals.minX,M=c.globals.maxX;c.globals.isRangeBar&&(f=p.invertedYRatio,k=c.globals.minY,M=c.globals.maxY),this.moveDirection==="left"?(i=k+c.globals.gridWidth/15*f,d=M+c.globals.gridWidth/15*f):this.moveDirection==="right"&&(i=k-c.globals.gridWidth/15*f,d=M-c.globals.gridWidth/15*f),c.globals.isRangeBar||(ic.globals.initialMaxX)&&(i=k,d=M);var x={min:i,max:d};c.config.chart.zoom.autoScaleYaxis&&(w=new J(this.ctx).autoScaleY(this.ctx,w,{xaxis:x}));var I={xaxis:{min:i,max:d}};c.config.chart.group||(I.yaxis=w),this.updateScrolledChart(I,i,d)}},{key:"updateScrolledChart",value:function(i,d,c){var p=this.w;this.ctx.updateHelpers._updateOptions(i,!1,!1),typeof p.config.chart.events.scrolled=="function"&&p.config.chart.events.scrolled(this.ctx,{xaxis:{min:d,max:c}})}}]),a}(),ll=function(){function T(s){g(this,T),this.w=s.w,this.ttCtx=s,this.ctx=s.ctx}return b(T,[{key:"getNearestValues",value:function(s){var a=s.hoverArea,i=s.elGrid,d=s.clientX,c=s.clientY,p=this.w,w=i.getBoundingClientRect(),f=w.width,k=w.height,M=f/(p.globals.dataPoints-1),x=k/p.globals.dataPoints,I=this.hasBars();!p.globals.comboCharts&&!I||p.config.xaxis.convertedCatToNumeric||(M=f/p.globals.dataPoints);var $=d-w.left-p.globals.barPadForNumericAxis,N=c-w.top;$<0||N<0||$>f||N>k?(a.classList.remove("hovering-zoom"),a.classList.remove("hovering-pan")):p.globals.zoomEnabled?(a.classList.remove("hovering-pan"),a.classList.add("hovering-zoom")):p.globals.panEnabled&&(a.classList.remove("hovering-zoom"),a.classList.add("hovering-pan"));var L=Math.round($/M),F=Math.floor(N/x);I&&!p.config.xaxis.convertedCatToNumeric&&(L=Math.ceil($/M),L-=1);var V=null,Z=null,m=[],y=[];if(p.globals.seriesXvalues.forEach(function(Q){m.push([Q[0]+1e-6].concat(Q))}),p.globals.seriesYvalues.forEach(function(Q){y.push([Q[0]+1e-6].concat(Q))}),m=m.map(function(Q){return Q.filter(function(ot){return H.isNumber(ot)})}),y=y.map(function(Q){return Q.filter(function(ot){return H.isNumber(ot)})}),p.globals.isXNumeric){var j=this.ttCtx.getElGrid().getBoundingClientRect(),R=$*(j.width/f),K=N*(j.height/k);V=(Z=this.closestInMultiArray(R,K,m,y)).index,L=Z.j,V!==null&&(m=p.globals.seriesXvalues[V],L=(Z=this.closestInArray(R,m)).index)}return p.globals.capturedSeriesIndex=V===null?-1:V,(!L||L<1)&&(L=0),p.globals.isBarHorizontal?p.globals.capturedDataPointIndex=F:p.globals.capturedDataPointIndex=L,{capturedSeries:V,j:p.globals.isBarHorizontal?F:L,hoverX:$,hoverY:N}}},{key:"closestInMultiArray",value:function(s,a,i,d){var c=this.w,p=0,w=null,f=-1;c.globals.series.length>1?p=this.getFirstActiveXArray(i):w=0;var k=i[p][0],M=Math.abs(s-k);if(i.forEach(function($){$.forEach(function(N,L){var F=Math.abs(s-N);F0?w:-1}),c=0;c0)for(var d=0;d *")):this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap > *")}},{key:"getAllMarkers",value:function(){var s=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap");(s=E(s)).sort(function(i,d){var c=Number(i.getAttribute("data:realIndex")),p=Number(d.getAttribute("data:realIndex"));return pc?-1:0});var a=[];return s.forEach(function(i){a.push(i.querySelector(".apexcharts-marker"))}),a}},{key:"hasMarkers",value:function(s){return this.getElMarkers(s).length>0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"getHoverMarkerSize",value:function(s){var a=this.w,i=a.config.markers.hover.size;return i===void 0&&(i=a.globals.markers.size[s]+a.config.markers.hover.sizeOffset),i}},{key:"toggleAllTooltipSeriesGroups",value:function(s){var a=this.w,i=this.ttCtx;i.allTooltipSeriesGroups.length===0&&(i.allTooltipSeriesGroups=a.globals.dom.baseEl.querySelectorAll(".apexcharts-tooltip-series-group"));for(var d=i.allTooltipSeriesGroups,c=0;c
    ').concat(Q.attrs.name,""),K+="
    ".concat(Q.val,"
    ")}),m.innerHTML=R+"",y.innerHTML=K+""};w?k.globals.seriesGoals[a][i]&&Array.isArray(k.globals.seriesGoals[a][i])?j():(m.innerHTML="",y.innerHTML=""):j()}else m.innerHTML="",y.innerHTML="";L!==null&&(d[a].querySelector(".apexcharts-tooltip-text-z-label").innerHTML=k.config.tooltip.z.title,d[a].querySelector(".apexcharts-tooltip-text-z-value").innerHTML=L!==void 0?L:""),w&&F[0]&&(x==null||k.globals.ancillaryCollapsedSeriesIndices.indexOf(a)>-1||k.globals.collapsedSeriesIndices.indexOf(a)>-1?F[0].parentNode.style.display="none":F[0].parentNode.style.display=k.config.tooltip.items.display)}},{key:"toggleActiveInactiveSeries",value:function(s){var a=this.w;if(s)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var i=a.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");i&&(i.classList.add("apexcharts-active"),i.style.display=a.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(s){var a=s.i,i=s.j,d=this.w,c=this.ctx.series.filteredSeriesX(),p="",w="",f=null,k=null,M={series:d.globals.series,seriesIndex:a,dataPointIndex:i,w:d},x=d.globals.ttZFormatter;i===null?k=d.globals.series[a]:d.globals.isXNumeric&&d.config.chart.type!=="treemap"?(p=c[a][i],c[a].length===0&&(p=c[this.tooltipUtil.getFirstActiveXArray(c)][i])):p=d.globals.labels[i]!==void 0?d.globals.labels[i]:"";var I=p;return d.globals.isXNumeric&&d.config.xaxis.type==="datetime"?p=new Ct(this.ctx).xLabelFormat(d.globals.ttKeyFormatter,I,I,{i:void 0,dateFormatter:new dt(this.ctx).formatDate,w:this.w}):p=d.globals.isBarHorizontal?d.globals.yLabelFormatters[0](I,M):d.globals.xLabelFormatter(I,M),d.config.tooltip.x.formatter!==void 0&&(p=d.globals.ttKeyFormatter(I,M)),d.globals.seriesZ.length>0&&d.globals.seriesZ[a].length>0&&(f=x(d.globals.seriesZ[a][i],d)),w=typeof d.config.xaxis.tooltip.formatter=="function"?d.globals.xaxisTooltipFormatter(I,M):p,{val:Array.isArray(k)?k.join(" "):k,xVal:Array.isArray(p)?p.join(" "):p,xAxisTTVal:Array.isArray(w)?w.join(" "):w,zVal:f}}},{key:"handleCustomTooltip",value:function(s){var a=s.i,i=s.j,d=s.y1,c=s.y2,p=s.w,w=this.ttCtx.getElTooltip(),f=p.config.tooltip.custom;Array.isArray(f)&&f[a]&&(f=f[a]),w.innerHTML=f({ctx:this.ctx,series:p.globals.series,seriesIndex:a,dataPointIndex:i,y1:d,y2:c,w:p})}}]),T}(),zl=function(){function T(s){g(this,T),this.ttCtx=s,this.ctx=s.ctx,this.w=s.w}return b(T,[{key:"moveXCrosshairs",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,i=this.ttCtx,d=this.w,c=i.getElXCrosshairs(),p=s-i.xcrosshairsWidth/2,w=d.globals.labels.slice().length;if(a!==null&&(p=d.globals.gridWidth/w*a),c===null||d.globals.isBarHorizontal||(c.setAttribute("x",p),c.setAttribute("x1",p),c.setAttribute("x2",p),c.setAttribute("y2",d.globals.gridHeight),c.classList.add("apexcharts-active")),p<0&&(p=0),p>d.globals.gridWidth&&(p=d.globals.gridWidth),i.isXAxisTooltipEnabled){var f=p;d.config.xaxis.crosshairs.width!=="tickWidth"&&d.config.xaxis.crosshairs.width!=="barWidth"||(f=p+i.xcrosshairsWidth/2),this.moveXAxisTooltip(f)}}},{key:"moveYCrosshairs",value:function(s){var a=this.ttCtx;a.ycrosshairs!==null&&_.setAttrs(a.ycrosshairs,{y1:s,y2:s}),a.ycrosshairsHidden!==null&&_.setAttrs(a.ycrosshairsHidden,{y1:s,y2:s})}},{key:"moveXAxisTooltip",value:function(s){var a=this.w,i=this.ttCtx;if(i.xaxisTooltip!==null&&i.xcrosshairsWidth!==0){i.xaxisTooltip.classList.add("apexcharts-active");var d=i.xaxisOffY+a.config.xaxis.tooltip.offsetY+a.globals.translateY+1+a.config.xaxis.offsetY;if(s-=i.xaxisTooltip.getBoundingClientRect().width/2,!isNaN(s)){s+=a.globals.translateX;var c;c=new _(this.ctx).getTextRects(i.xaxisTooltipText.innerHTML),i.xaxisTooltipText.style.minWidth=c.width+"px",i.xaxisTooltip.style.left=s+"px",i.xaxisTooltip.style.top=d+"px"}}}},{key:"moveYAxisTooltip",value:function(s){var a=this.w,i=this.ttCtx;i.yaxisTTEls===null&&(i.yaxisTTEls=a.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var d=parseInt(i.ycrosshairsHidden.getAttribute("y1"),10),c=a.globals.translateY+d,p=i.yaxisTTEls[s].getBoundingClientRect().height,w=a.globals.translateYAxisX[s]-2;a.config.yaxis[s].opposite&&(w-=26),c-=p/2,a.globals.ignoreYAxisIndexes.indexOf(s)===-1?(i.yaxisTTEls[s].classList.add("apexcharts-active"),i.yaxisTTEls[s].style.top=c+"px",i.yaxisTTEls[s].style.left=w+a.config.yaxis[s].tooltip.offsetX+"px"):i.yaxisTTEls[s].classList.remove("apexcharts-active")}},{key:"moveTooltip",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,d=this.w,c=this.ttCtx,p=c.getElTooltip(),w=c.tooltipRect,f=i!==null?parseFloat(i):1,k=parseFloat(s)+f+5,M=parseFloat(a)+f/2;if(k>d.globals.gridWidth/2&&(k=k-w.ttWidth-f-10),k>d.globals.gridWidth-w.ttWidth-10&&(k=d.globals.gridWidth-w.ttWidth),k<-20&&(k=-20),d.config.tooltip.followCursor){var x=c.getElGrid().getBoundingClientRect();(k=c.e.clientX-x.left)>d.globals.gridWidth/2&&(k-=c.tooltipRect.ttWidth),(M=c.e.clientY+d.globals.translateY-x.top)>d.globals.gridHeight/2&&(M-=c.tooltipRect.ttHeight)}else d.globals.isBarHorizontal||w.ttHeight/2+M>d.globals.gridHeight&&(M=d.globals.gridHeight-w.ttHeight+d.globals.translateY);isNaN(k)||(k+=d.globals.translateX,p.style.left=k+"px",p.style.top=M+"px")}},{key:"moveMarkers",value:function(s,a){var i=this.w,d=this.ttCtx;if(i.globals.markers.size[s]>0)for(var c=i.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(s,"'] .apexcharts-marker")),p=0;p0&&(M.setAttribute("r",f),M.setAttribute("cx",i),M.setAttribute("cy",d)),this.moveXCrosshairs(i),p.fixedTooltip||this.moveTooltip(i,d,f)}}},{key:"moveDynamicPointsOnHover",value:function(s){var a,i=this.ttCtx,d=i.w,c=0,p=0,w=d.globals.pointsArray;a=new ut(this.ctx).getActiveConfigSeriesIndex("asc",["line","area","scatter","bubble"]);var f=i.tooltipUtil.getHoverMarkerSize(a);w[a]&&(c=w[a][s][0],p=w[a][s][1]);var k=i.tooltipUtil.getAllMarkers();if(k!==null)for(var M=0;M0?(k[M]&&k[M].setAttribute("r",f),k[M]&&k[M].setAttribute("cy",I)):k[M]&&k[M].setAttribute("r",0)}}this.moveXCrosshairs(c),i.fixedTooltip||this.moveTooltip(c,p||d.globals.gridHeight,f)}},{key:"moveStickyTooltipOverBars",value:function(s,a){var i=this.w,d=this.ttCtx,c=i.globals.columnSeries?i.globals.columnSeries.length:i.globals.series.length,p=c>=2&&c%2==0?Math.floor(c/2):Math.floor(c/2)+1;i.globals.isBarHorizontal&&(p=new ut(this.ctx).getActiveConfigSeriesIndex("desc")+1);var w=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(p,"'] path[j='").concat(s,"'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"']"));w||typeof a!="number"||(w=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[data\\:realIndex='".concat(a,"'] path[j='").concat(s,`'], +`),this.t.download&&p.push({el:this.elMenuIcon,icon:typeof this.t.download=="string"?this.t.download:'',title:this.localeValues.menu,class:"apexcharts-menu-icon"});for(var b=0;b0&&d.height>0&&this.slDraggableRect.selectize({points:"l, r",pointSize:8,pointType:"rect"}).resize({constraint:{minX:0,minY:0,maxX:i.globals.gridWidth,maxY:i.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var i=this.w,d=this.xyRatios;if(!i.globals.zoomEnabled){if(i.globals.selection!==void 0&&i.globals.selection!==null)this.drawSelectionRect(i.globals.selection);else if(i.config.chart.selection.xaxis.min!==void 0&&i.config.chart.selection.xaxis.max!==void 0){var u=(i.config.chart.selection.xaxis.min-i.globals.minX)/d.xRatio,p={x:u,y:0,width:i.globals.gridWidth-(i.globals.maxX-i.config.chart.selection.xaxis.max)/d.xRatio-u,height:i.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(p),this.makeSelectionRectDraggable(),typeof i.config.chart.events.selection=="function"&&i.config.chart.events.selection(this.ctx,{xaxis:{min:i.config.chart.selection.xaxis.min,max:i.config.chart.selection.xaxis.max},yaxis:{}})}}}},{key:"drawSelectionRect",value:function(i){var d=i.x,u=i.y,p=i.width,w=i.height,f=i.translateX,b=f===void 0?0:f,M=i.translateY,z=M===void 0?0:M,y=this.w,A=this.zoomRect,N=this.selectionRect;if(this.dragged||y.globals.selection!==null){var L={transform:"translate("+b+", "+z+")"};y.globals.zoomEnabled&&this.dragged&&(p<0&&(p=1),A.attr({x:d,y:u,width:p,height:w,fill:y.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":y.config.chart.zoom.zoomedArea.fill.opacity,stroke:y.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":y.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":y.config.chart.zoom.zoomedArea.stroke.opacity}),_.setAttrs(A.node,L)),y.globals.selectionEnabled&&(N.attr({x:d,y:u,width:p>0?p:0,height:w>0?w:0,fill:y.config.chart.selection.fill.color,"fill-opacity":y.config.chart.selection.fill.opacity,stroke:y.config.chart.selection.stroke.color,"stroke-width":y.config.chart.selection.stroke.width,"stroke-dasharray":y.config.chart.selection.stroke.dashArray,"stroke-opacity":y.config.chart.selection.stroke.opacity}),_.setAttrs(N.node,L))}}},{key:"hideSelectionRect",value:function(i){i&&i.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(i){var d=i.context,u=i.zoomtype,p=this.w,w=d,f=this.gridRect.getBoundingClientRect(),b=w.startX-1,M=w.startY,z=!1,y=!1,A=w.clientX-f.left-b,N=w.clientY-f.top-M,L={};return Math.abs(A+b)>p.globals.gridWidth?A=p.globals.gridWidth-b:w.clientX-f.left<0&&(A=b),b>w.clientX-f.left&&(z=!0,A=Math.abs(A)),M>w.clientY-f.top&&(y=!0,N=Math.abs(N)),L=u==="x"?{x:z?b-A:b,y:0,width:A,height:p.globals.gridHeight}:u==="y"?{x:0,y:y?M-N:M,width:p.globals.gridWidth,height:N}:{x:z?b-A:b,y:y?M-N:M,width:A,height:N},w.drawSelectionRect(L),w.selectionDragging("resizing"),L}},{key:"selectionDragging",value:function(i,d){var u=this,p=this.w,w=this.xyRatios,f=this.selectionRect,b=0;i==="resizing"&&(b=30);var M=function(y){return parseFloat(f.node.getAttribute(y))},z={x:M("x"),y:M("y"),width:M("width"),height:M("height")};p.globals.selection=z,typeof p.config.chart.events.selection=="function"&&p.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout(function(){var y=u.gridRect.getBoundingClientRect(),A=f.node.getBoundingClientRect(),N={xaxis:{min:p.globals.xAxisScale.niceMin+(A.left-y.left)*w.xRatio,max:p.globals.xAxisScale.niceMin+(A.right-y.left)*w.xRatio},yaxis:{min:p.globals.yAxisScale[0].niceMin+(y.bottom-A.bottom)*w.yRatio[0],max:p.globals.yAxisScale[0].niceMax-(A.top-y.top)*w.yRatio[0]}};p.config.chart.events.selection(u.ctx,N),p.config.chart.brush.enabled&&p.config.chart.events.brushScrolled!==void 0&&p.config.chart.events.brushScrolled(u.ctx,N)},b))}},{key:"selectionDrawn",value:function(i){var d=i.context,u=i.zoomtype,p=this.w,w=d,f=this.xyRatios,b=this.ctx.toolbar;if(w.startX>w.endX){var M=w.startX;w.startX=w.endX,w.endX=M}if(w.startY>w.endY){var z=w.startY;w.startY=w.endY,w.endY=z}var y=void 0,A=void 0;p.globals.isRangeBar?(y=p.globals.yAxisScale[0].niceMin+w.startX*f.invertedYRatio,A=p.globals.yAxisScale[0].niceMin+w.endX*f.invertedYRatio):(y=p.globals.xAxisScale.niceMin+w.startX*f.xRatio,A=p.globals.xAxisScale.niceMin+w.endX*f.xRatio);var N=[],L=[];if(p.config.yaxis.forEach(function(K,Q){N.push(p.globals.yAxisScale[Q].niceMax-f.yRatio[Q]*w.startY),L.push(p.globals.yAxisScale[Q].niceMax-f.yRatio[Q]*w.endY)}),w.dragged&&(w.dragX>10||w.dragY>10)&&y!==A){if(p.globals.zoomEnabled){var O=H.clone(p.globals.initialConfig.yaxis),V=H.clone(p.globals.initialConfig.xaxis);if(p.globals.zoomed=!0,p.config.xaxis.convertedCatToNumeric&&(y=Math.floor(y),A=Math.floor(A),y<1&&(y=1,A=p.globals.dataPoints),A-y<2&&(A=y+1)),u!=="xy"&&u!=="x"||(V={min:y,max:A}),u!=="xy"&&u!=="y"||O.forEach(function(K,Q){O[Q].min=L[Q],O[Q].max=N[Q]}),p.config.chart.zoom.autoScaleYaxis){var Z=new J(w.ctx);O=Z.autoScaleY(w.ctx,O,{xaxis:V})}if(b){var m=b.getBeforeZoomRange(V,O);m&&(V=m.xaxis?m.xaxis:V,O=m.yaxis?m.yaxis:O)}var C={xaxis:V};p.config.chart.group||(C.yaxis=O),w.ctx.updateHelpers._updateOptions(C,!1,w.w.config.chart.animations.dynamicAnimation.enabled),typeof p.config.chart.events.zoomed=="function"&&b.zoomCallback(V,O)}else if(p.globals.selectionEnabled){var j,E=null;j={min:y,max:A},u!=="xy"&&u!=="y"||(E=H.clone(p.config.yaxis)).forEach(function(K,Q){E[Q].min=L[Q],E[Q].max=N[Q]}),p.globals.selection=w.selection,typeof p.config.chart.events.selection=="function"&&p.config.chart.events.selection(w.ctx,{xaxis:j,yaxis:E})}}}},{key:"panDragging",value:function(i){var d=i.context,u=this.w,p=d;if(u.globals.lastClientPosition.x!==void 0){var w=u.globals.lastClientPosition.x-p.clientX,f=u.globals.lastClientPosition.y-p.clientY;Math.abs(w)>Math.abs(f)&&w>0?this.moveDirection="left":Math.abs(w)>Math.abs(f)&&w<0?this.moveDirection="right":Math.abs(f)>Math.abs(w)&&f>0?this.moveDirection="up":Math.abs(f)>Math.abs(w)&&f<0&&(this.moveDirection="down")}u.globals.lastClientPosition={x:p.clientX,y:p.clientY};var b=u.globals.isRangeBar?u.globals.minY:u.globals.minX,M=u.globals.isRangeBar?u.globals.maxY:u.globals.maxX;u.config.xaxis.convertedCatToNumeric||p.panScrolled(b,M)}},{key:"delayedPanScrolled",value:function(){var i=this.w,d=i.globals.minX,u=i.globals.maxX,p=(i.globals.maxX-i.globals.minX)/2;this.moveDirection==="left"?(d=i.globals.minX+p,u=i.globals.maxX+p):this.moveDirection==="right"&&(d=i.globals.minX-p,u=i.globals.maxX-p),d=Math.floor(d),u=Math.floor(u),this.updateScrolledChart({xaxis:{min:d,max:u}},d,u)}},{key:"panScrolled",value:function(i,d){var u=this.w,p=this.xyRatios,w=H.clone(u.globals.initialConfig.yaxis),f=p.xRatio,b=u.globals.minX,M=u.globals.maxX;u.globals.isRangeBar&&(f=p.invertedYRatio,b=u.globals.minY,M=u.globals.maxY),this.moveDirection==="left"?(i=b+u.globals.gridWidth/15*f,d=M+u.globals.gridWidth/15*f):this.moveDirection==="right"&&(i=b-u.globals.gridWidth/15*f,d=M-u.globals.gridWidth/15*f),u.globals.isRangeBar||(iu.globals.initialMaxX)&&(i=b,d=M);var z={min:i,max:d};u.config.chart.zoom.autoScaleYaxis&&(w=new J(this.ctx).autoScaleY(this.ctx,w,{xaxis:z}));var y={xaxis:{min:i,max:d}};u.config.chart.group||(y.yaxis=w),this.updateScrolledChart(y,i,d)}},{key:"updateScrolledChart",value:function(i,d,u){var p=this.w;this.ctx.updateHelpers._updateOptions(i,!1,!1),typeof p.config.chart.events.scrolled=="function"&&p.config.chart.events.scrolled(this.ctx,{xaxis:{min:d,max:u}})}}]),a}(),hl=function(){function T(s){g(this,T),this.w=s.w,this.ttCtx=s,this.ctx=s.ctx}return k(T,[{key:"getNearestValues",value:function(s){var a=s.hoverArea,i=s.elGrid,d=s.clientX,u=s.clientY,p=this.w,w=i.getBoundingClientRect(),f=w.width,b=w.height,M=f/(p.globals.dataPoints-1),z=b/p.globals.dataPoints,y=this.hasBars();!p.globals.comboCharts&&!y||p.config.xaxis.convertedCatToNumeric||(M=f/p.globals.dataPoints);var A=d-w.left-p.globals.barPadForNumericAxis,N=u-w.top;A<0||N<0||A>f||N>b?(a.classList.remove("hovering-zoom"),a.classList.remove("hovering-pan")):p.globals.zoomEnabled?(a.classList.remove("hovering-pan"),a.classList.add("hovering-zoom")):p.globals.panEnabled&&(a.classList.remove("hovering-zoom"),a.classList.add("hovering-pan"));var L=Math.round(A/M),O=Math.floor(N/z);y&&!p.config.xaxis.convertedCatToNumeric&&(L=Math.ceil(A/M),L-=1);var V=null,Z=null,m=[],C=[];if(p.globals.seriesXvalues.forEach(function(Q){m.push([Q[0]+1e-6].concat(Q))}),p.globals.seriesYvalues.forEach(function(Q){C.push([Q[0]+1e-6].concat(Q))}),m=m.map(function(Q){return Q.filter(function(ot){return H.isNumber(ot)})}),C=C.map(function(Q){return Q.filter(function(ot){return H.isNumber(ot)})}),p.globals.isXNumeric){var j=this.ttCtx.getElGrid().getBoundingClientRect(),E=A*(j.width/f),K=N*(j.height/b);V=(Z=this.closestInMultiArray(E,K,m,C)).index,L=Z.j,V!==null&&(m=p.globals.seriesXvalues[V],L=(Z=this.closestInArray(E,m)).index)}return p.globals.capturedSeriesIndex=V===null?-1:V,(!L||L<1)&&(L=0),p.globals.isBarHorizontal?p.globals.capturedDataPointIndex=O:p.globals.capturedDataPointIndex=L,{capturedSeries:V,j:p.globals.isBarHorizontal?O:L,hoverX:A,hoverY:N}}},{key:"closestInMultiArray",value:function(s,a,i,d){var u=this.w,p=0,w=null,f=-1;u.globals.series.length>1?p=this.getFirstActiveXArray(i):w=0;var b=i[p][0],M=Math.abs(s-b);if(i.forEach(function(A){A.forEach(function(N,L){var O=Math.abs(s-N);O0?w:-1}),u=0;u0)for(var d=0;d *")):this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap > *")}},{key:"getAllMarkers",value:function(){var s=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap");(s=F(s)).sort(function(i,d){var u=Number(i.getAttribute("data:realIndex")),p=Number(d.getAttribute("data:realIndex"));return pu?-1:0});var a=[];return s.forEach(function(i){a.push(i.querySelector(".apexcharts-marker"))}),a}},{key:"hasMarkers",value:function(s){return this.getElMarkers(s).length>0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"getHoverMarkerSize",value:function(s){var a=this.w,i=a.config.markers.hover.size;return i===void 0&&(i=a.globals.markers.size[s]+a.config.markers.hover.sizeOffset),i}},{key:"toggleAllTooltipSeriesGroups",value:function(s){var a=this.w,i=this.ttCtx;i.allTooltipSeriesGroups.length===0&&(i.allTooltipSeriesGroups=a.globals.dom.baseEl.querySelectorAll(".apexcharts-tooltip-series-group"));for(var d=i.allTooltipSeriesGroups,u=0;u ').concat(Q.attrs.name,""),K+="
    ".concat(Q.val,"
    ")}),m.innerHTML=E+"",C.innerHTML=K+""};w?b.globals.seriesGoals[a][i]&&Array.isArray(b.globals.seriesGoals[a][i])?j():(m.innerHTML="",C.innerHTML=""):j()}else m.innerHTML="",C.innerHTML="";L!==null&&(d[a].querySelector(".apexcharts-tooltip-text-z-label").innerHTML=b.config.tooltip.z.title,d[a].querySelector(".apexcharts-tooltip-text-z-value").innerHTML=L!==void 0?L:""),w&&O[0]&&(z==null||b.globals.ancillaryCollapsedSeriesIndices.indexOf(a)>-1||b.globals.collapsedSeriesIndices.indexOf(a)>-1?O[0].parentNode.style.display="none":O[0].parentNode.style.display=b.config.tooltip.items.display)}},{key:"toggleActiveInactiveSeries",value:function(s){var a=this.w;if(s)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var i=a.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");i&&(i.classList.add("apexcharts-active"),i.style.display=a.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(s){var a=s.i,i=s.j,d=this.w,u=this.ctx.series.filteredSeriesX(),p="",w="",f=null,b=null,M={series:d.globals.series,seriesIndex:a,dataPointIndex:i,w:d},z=d.globals.ttZFormatter;i===null?b=d.globals.series[a]:d.globals.isXNumeric&&d.config.chart.type!=="treemap"?(p=u[a][i],u[a].length===0&&(p=u[this.tooltipUtil.getFirstActiveXArray(u)][i])):p=d.globals.labels[i]!==void 0?d.globals.labels[i]:"";var y=p;return d.globals.isXNumeric&&d.config.xaxis.type==="datetime"?p=new Ct(this.ctx).xLabelFormat(d.globals.ttKeyFormatter,y,y,{i:void 0,dateFormatter:new dt(this.ctx).formatDate,w:this.w}):p=d.globals.isBarHorizontal?d.globals.yLabelFormatters[0](y,M):d.globals.xLabelFormatter(y,M),d.config.tooltip.x.formatter!==void 0&&(p=d.globals.ttKeyFormatter(y,M)),d.globals.seriesZ.length>0&&d.globals.seriesZ[a].length>0&&(f=z(d.globals.seriesZ[a][i],d)),w=typeof d.config.xaxis.tooltip.formatter=="function"?d.globals.xaxisTooltipFormatter(y,M):p,{val:Array.isArray(b)?b.join(" "):b,xVal:Array.isArray(p)?p.join(" "):p,xAxisTTVal:Array.isArray(w)?w.join(" "):w,zVal:f}}},{key:"handleCustomTooltip",value:function(s){var a=s.i,i=s.j,d=s.y1,u=s.y2,p=s.w,w=this.ttCtx.getElTooltip(),f=p.config.tooltip.custom;Array.isArray(f)&&f[a]&&(f=f[a]),w.innerHTML=f({ctx:this.ctx,series:p.globals.series,seriesIndex:a,dataPointIndex:i,y1:d,y2:u,w:p})}}]),T}(),Bl=function(){function T(s){g(this,T),this.ttCtx=s,this.ctx=s.ctx,this.w=s.w}return k(T,[{key:"moveXCrosshairs",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,i=this.ttCtx,d=this.w,u=i.getElXCrosshairs(),p=s-i.xcrosshairsWidth/2,w=d.globals.labels.slice().length;if(a!==null&&(p=d.globals.gridWidth/w*a),u===null||d.globals.isBarHorizontal||(u.setAttribute("x",p),u.setAttribute("x1",p),u.setAttribute("x2",p),u.setAttribute("y2",d.globals.gridHeight),u.classList.add("apexcharts-active")),p<0&&(p=0),p>d.globals.gridWidth&&(p=d.globals.gridWidth),i.isXAxisTooltipEnabled){var f=p;d.config.xaxis.crosshairs.width!=="tickWidth"&&d.config.xaxis.crosshairs.width!=="barWidth"||(f=p+i.xcrosshairsWidth/2),this.moveXAxisTooltip(f)}}},{key:"moveYCrosshairs",value:function(s){var a=this.ttCtx;a.ycrosshairs!==null&&_.setAttrs(a.ycrosshairs,{y1:s,y2:s}),a.ycrosshairsHidden!==null&&_.setAttrs(a.ycrosshairsHidden,{y1:s,y2:s})}},{key:"moveXAxisTooltip",value:function(s){var a=this.w,i=this.ttCtx;if(i.xaxisTooltip!==null&&i.xcrosshairsWidth!==0){i.xaxisTooltip.classList.add("apexcharts-active");var d=i.xaxisOffY+a.config.xaxis.tooltip.offsetY+a.globals.translateY+1+a.config.xaxis.offsetY;if(s-=i.xaxisTooltip.getBoundingClientRect().width/2,!isNaN(s)){s+=a.globals.translateX;var u;u=new _(this.ctx).getTextRects(i.xaxisTooltipText.innerHTML),i.xaxisTooltipText.style.minWidth=u.width+"px",i.xaxisTooltip.style.left=s+"px",i.xaxisTooltip.style.top=d+"px"}}}},{key:"moveYAxisTooltip",value:function(s){var a=this.w,i=this.ttCtx;i.yaxisTTEls===null&&(i.yaxisTTEls=a.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var d=parseInt(i.ycrosshairsHidden.getAttribute("y1"),10),u=a.globals.translateY+d,p=i.yaxisTTEls[s].getBoundingClientRect().height,w=a.globals.translateYAxisX[s]-2;a.config.yaxis[s].opposite&&(w-=26),u-=p/2,a.globals.ignoreYAxisIndexes.indexOf(s)===-1?(i.yaxisTTEls[s].classList.add("apexcharts-active"),i.yaxisTTEls[s].style.top=u+"px",i.yaxisTTEls[s].style.left=w+a.config.yaxis[s].tooltip.offsetX+"px"):i.yaxisTTEls[s].classList.remove("apexcharts-active")}},{key:"moveTooltip",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,d=this.w,u=this.ttCtx,p=u.getElTooltip(),w=u.tooltipRect,f=i!==null?parseFloat(i):1,b=parseFloat(s)+f+5,M=parseFloat(a)+f/2;if(b>d.globals.gridWidth/2&&(b=b-w.ttWidth-f-10),b>d.globals.gridWidth-w.ttWidth-10&&(b=d.globals.gridWidth-w.ttWidth),b<-20&&(b=-20),d.config.tooltip.followCursor){var z=u.getElGrid().getBoundingClientRect();(b=u.e.clientX-z.left)>d.globals.gridWidth/2&&(b-=u.tooltipRect.ttWidth),(M=u.e.clientY+d.globals.translateY-z.top)>d.globals.gridHeight/2&&(M-=u.tooltipRect.ttHeight)}else d.globals.isBarHorizontal||w.ttHeight/2+M>d.globals.gridHeight&&(M=d.globals.gridHeight-w.ttHeight+d.globals.translateY);isNaN(b)||(b+=d.globals.translateX,p.style.left=b+"px",p.style.top=M+"px")}},{key:"moveMarkers",value:function(s,a){var i=this.w,d=this.ttCtx;if(i.globals.markers.size[s]>0)for(var u=i.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(s,"'] .apexcharts-marker")),p=0;p0&&(M.setAttribute("r",f),M.setAttribute("cx",i),M.setAttribute("cy",d)),this.moveXCrosshairs(i),p.fixedTooltip||this.moveTooltip(i,d,f)}}},{key:"moveDynamicPointsOnHover",value:function(s){var a,i=this.ttCtx,d=i.w,u=0,p=0,w=d.globals.pointsArray;a=new ut(this.ctx).getActiveConfigSeriesIndex("asc",["line","area","scatter","bubble"]);var f=i.tooltipUtil.getHoverMarkerSize(a);w[a]&&(u=w[a][s][0],p=w[a][s][1]);var b=i.tooltipUtil.getAllMarkers();if(b!==null)for(var M=0;M0?(b[M]&&b[M].setAttribute("r",f),b[M]&&b[M].setAttribute("cy",y)):b[M]&&b[M].setAttribute("r",0)}}this.moveXCrosshairs(u),i.fixedTooltip||this.moveTooltip(u,p||d.globals.gridHeight,f)}},{key:"moveStickyTooltipOverBars",value:function(s,a){var i=this.w,d=this.ttCtx,u=i.globals.columnSeries?i.globals.columnSeries.length:i.globals.series.length,p=u>=2&&u%2==0?Math.floor(u/2):Math.floor(u/2)+1;i.globals.isBarHorizontal&&(p=new ut(this.ctx).getActiveConfigSeriesIndex("desc")+1);var w=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(p,"'] path[j='").concat(s,"'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(p,"'] path[j='").concat(s,"']"));w||typeof a!="number"||(w=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[data\\:realIndex='".concat(a,"'] path[j='").concat(s,`'], .apexcharts-candlestick-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,`'], .apexcharts-boxPlot-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,`'], - .apexcharts-rangebar-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,"']")));var f=w?parseFloat(w.getAttribute("cx")):0,k=w?parseFloat(w.getAttribute("cy")):0,M=w?parseFloat(w.getAttribute("barWidth")):0,x=d.getElGrid().getBoundingClientRect(),I=w&&(w.classList.contains("apexcharts-candlestick-area")||w.classList.contains("apexcharts-boxPlot-area"));i.globals.isXNumeric?(w&&!I&&(f-=c%2!=0?M/2:0),w&&I&&i.globals.comboCharts&&(f-=M/2)):i.globals.isBarHorizontal||(f=d.xAxisTicksPositions[s-1]+d.dataPointsDividedWidth/2,isNaN(f)&&(f=d.xAxisTicksPositions[s]-d.dataPointsDividedWidth/2)),i.globals.isBarHorizontal?k-=d.tooltipRect.ttHeight:i.config.tooltip.followCursor?k=d.e.clientY-x.top-d.tooltipRect.ttHeight/2:k+d.tooltipRect.ttHeight+15>i.globals.gridHeight&&(k=i.globals.gridHeight),i.globals.isBarHorizontal||this.moveXCrosshairs(f),d.fixedTooltip||this.moveTooltip(f,k||i.globals.gridHeight)}}]),T}(),Ms=function(){function T(s){g(this,T),this.w=s.w,this.ttCtx=s,this.ctx=s.ctx,this.tooltipPosition=new zl(s)}return b(T,[{key:"drawDynamicPoints",value:function(){var s=this.w,a=new _(this.ctx),i=new Kt(this.ctx),d=s.globals.dom.baseEl.querySelectorAll(".apexcharts-series");d=E(d),s.config.chart.stacked&&d.sort(function(x,I){return parseFloat(x.getAttribute("data:realIndex"))-parseFloat(I.getAttribute("data:realIndex"))});for(var c=0;c2&&arguments[2]!==void 0?arguments[2]:null,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,c=this.w;c.config.chart.type!=="bubble"&&this.newPointSize(s,a);var p=a.getAttribute("cx"),w=a.getAttribute("cy");if(i!==null&&d!==null&&(p=i,w=d),this.tooltipPosition.moveXCrosshairs(p),!this.fixedTooltip){if(c.config.chart.type==="radar"){var f=this.ttCtx.getElGrid().getBoundingClientRect();p=this.ttCtx.e.clientX-f.left}this.tooltipPosition.moveTooltip(p,w,c.config.markers.hover.size)}}},{key:"enlargePoints",value:function(s){for(var a=this.w,i=this,d=this.ttCtx,c=s,p=a.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),w=a.config.markers.hover.size,f=0;f=0?s[a].setAttribute("r",i):s[a].setAttribute("r",0)}}}]),T}(),an=function(){function T(s){g(this,T),this.w=s.w;var a=this.w;this.ttCtx=s,this.isVerticalGroupedRangeBar=!a.globals.isBarHorizontal&&a.config.chart.type==="rangeBar"&&a.config.plotOptions.bar.rangeBarGroupRows}return b(T,[{key:"getAttr",value:function(s,a){return parseFloat(s.target.getAttribute(a))}},{key:"handleHeatTreeTooltip",value:function(s){var a=s.e,i=s.opt,d=s.x,c=s.y,p=s.type,w=this.ttCtx,f=this.w;if(a.target.classList.contains("apexcharts-".concat(p,"-rect"))){var k=this.getAttr(a,"i"),M=this.getAttr(a,"j"),x=this.getAttr(a,"cx"),I=this.getAttr(a,"cy"),$=this.getAttr(a,"width"),N=this.getAttr(a,"height");if(w.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:k,j:M,shared:!1,e:a}),f.globals.capturedSeriesIndex=k,f.globals.capturedDataPointIndex=M,d=x+w.tooltipRect.ttWidth/2+$,c=I+w.tooltipRect.ttHeight/2-N/2,w.tooltipPosition.moveXCrosshairs(x+$/2),d>f.globals.gridWidth/2&&(d=x-w.tooltipRect.ttWidth/2+$),w.w.config.tooltip.followCursor){var L=f.globals.dom.elWrap.getBoundingClientRect();d=f.globals.clientX-L.left-(d>f.globals.gridWidth/2?w.tooltipRect.ttWidth:0),c=f.globals.clientY-L.top-(c>f.globals.gridHeight/2?w.tooltipRect.ttHeight:0)}}return{x:d,y:c}}},{key:"handleMarkerTooltip",value:function(s){var a,i,d=s.e,c=s.opt,p=s.x,w=s.y,f=this.w,k=this.ttCtx;if(d.target.classList.contains("apexcharts-marker")){var M=parseInt(c.paths.getAttribute("cx"),10),x=parseInt(c.paths.getAttribute("cy"),10),I=parseFloat(c.paths.getAttribute("val"));if(i=parseInt(c.paths.getAttribute("rel"),10),a=parseInt(c.paths.parentNode.parentNode.parentNode.getAttribute("rel"),10)-1,k.intersect){var $=H.findAncestor(c.paths,"apexcharts-series");$&&(a=parseInt($.getAttribute("data:realIndex"),10))}if(k.tooltipLabels.drawSeriesTexts({ttItems:c.ttItems,i:a,j:i,shared:!k.showOnIntersect&&f.config.tooltip.shared,e:d}),d.type==="mouseup"&&k.markerClick(d,a,i),f.globals.capturedSeriesIndex=a,f.globals.capturedDataPointIndex=i,p=M,w=x+f.globals.translateY-1.4*k.tooltipRect.ttHeight,k.w.config.tooltip.followCursor){var N=k.getElGrid().getBoundingClientRect();w=k.e.clientY+f.globals.translateY-N.top}I<0&&(w=x),k.marker.enlargeCurrentPoint(i,c.paths,p,w)}return{x:p,y:w}}},{key:"handleBarTooltip",value:function(s){var a,i,d=s.e,c=s.opt,p=this.w,w=this.ttCtx,f=w.getElTooltip(),k=0,M=0,x=0,I=this.getBarTooltipXY({e:d,opt:c});a=I.i;var $=I.barHeight,N=I.j;p.globals.capturedSeriesIndex=a,p.globals.capturedDataPointIndex=N,p.globals.isBarHorizontal&&w.tooltipUtil.hasBars()||!p.config.tooltip.shared?(M=I.x,x=I.y,i=Array.isArray(p.config.stroke.width)?p.config.stroke.width[a]:p.config.stroke.width,k=M):p.globals.comboCharts||p.config.tooltip.shared||(k/=2),isNaN(x)&&(x=p.globals.svgHeight-w.tooltipRect.ttHeight);var L=parseInt(c.paths.parentNode.getAttribute("data:realIndex"),10),F=p.globals.isMultipleYAxis?p.config.yaxis[L]&&p.config.yaxis[L].reversed:p.config.yaxis[0].reversed;if(M+w.tooltipRect.ttWidth>p.globals.gridWidth&&!F?M-=w.tooltipRect.ttWidth:M<0&&(M=0),w.w.config.tooltip.followCursor){var V=w.getElGrid().getBoundingClientRect();x=w.e.clientY-V.top}w.tooltip===null&&(w.tooltip=p.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),p.config.tooltip.shared||(p.globals.comboBarCount>0?w.tooltipPosition.moveXCrosshairs(k+i/2):w.tooltipPosition.moveXCrosshairs(k)),!w.fixedTooltip&&(!p.config.tooltip.shared||p.globals.isBarHorizontal&&w.tooltipUtil.hasBars())&&(F&&(M-=w.tooltipRect.ttWidth)<0&&(M=0),!F||p.globals.isBarHorizontal&&w.tooltipUtil.hasBars()||(x=x+$-2*(p.globals.series[a][N]<0?$:0)),x=x+p.globals.translateY-w.tooltipRect.ttHeight/2,f.style.left=M+p.globals.translateX+"px",f.style.top=x+"px")}},{key:"getBarTooltipXY",value:function(s){var a=this,i=s.e,d=s.opt,c=this.w,p=null,w=this.ttCtx,f=0,k=0,M=0,x=0,I=0,$=i.target.classList;if($.contains("apexcharts-bar-area")||$.contains("apexcharts-candlestick-area")||$.contains("apexcharts-boxPlot-area")||$.contains("apexcharts-rangebar-area")){var N=i.target,L=N.getBoundingClientRect(),F=d.elGrid.getBoundingClientRect(),V=L.height;I=L.height;var Z=L.width,m=parseInt(N.getAttribute("cx"),10),y=parseInt(N.getAttribute("cy"),10);x=parseFloat(N.getAttribute("barWidth"));var j=i.type==="touchmove"?i.touches[0].clientX:i.clientX;p=parseInt(N.getAttribute("j"),10),f=parseInt(N.parentNode.getAttribute("rel"),10)-1;var R=N.getAttribute("data-range-y1"),K=N.getAttribute("data-range-y2");c.globals.comboCharts&&(f=parseInt(N.parentNode.getAttribute("data:realIndex"),10));var Q=function(it){return c.globals.isXNumeric?m-Z/2:a.isVerticalGroupedRangeBar?m+Z/2:m-w.dataPointsDividedWidth+Z/2},ot=function(){return y-w.dataPointsDividedHeight+V/2-w.tooltipRect.ttHeight/2};w.tooltipLabels.drawSeriesTexts({ttItems:d.ttItems,i:f,j:p,y1:R?parseInt(R,10):null,y2:K?parseInt(K,10):null,shared:!w.showOnIntersect&&c.config.tooltip.shared,e:i}),c.config.tooltip.followCursor?c.globals.isBarHorizontal?(k=j-F.left+15,M=ot()):(k=Q(),M=i.clientY-F.top-w.tooltipRect.ttHeight/2-15):c.globals.isBarHorizontal?((k=m)0&&i.setAttribute("width",a.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var s=this.w,a=this.ttCtx;a.ycrosshairs=s.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),a.ycrosshairsHidden=s.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(s,a,i){var d=this.ttCtx,c=this.w,p=c.globals.yLabelFormatters[s];if(d.yaxisTooltips[s]){var w=d.getElGrid().getBoundingClientRect(),f=(a-w.top)*i.yRatio[s],k=c.globals.maxYArr[s]-c.globals.minYArr[s],M=c.globals.minYArr[s]+(k-f);d.tooltipPosition.moveYCrosshairs(a-w.top),d.yaxisTooltipText[s].innerHTML=p(M),d.tooltipPosition.moveYAxisTooltip(s)}}}]),T}(),wo=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w;var a=this.w;this.tConfig=a.config.tooltip,this.tooltipUtil=new ll(this),this.tooltipLabels=new bs(this),this.tooltipPosition=new zl(this),this.marker=new Ms(this),this.intersect=new an(this),this.axesTooltip=new Sn(this),this.showOnIntersect=this.tConfig.intersect,this.showTooltipTitle=this.tConfig.x.show,this.fixedTooltip=this.tConfig.fixed.enabled,this.xaxisTooltip=null,this.yaxisTTEls=null,this.isBarShared=!a.globals.isBarHorizontal&&this.tConfig.shared,this.lastHoverTime=Date.now()}return b(T,[{key:"getElTooltip",value:function(s){return s||(s=this),s.w.globals.dom.baseEl?s.w.globals.dom.baseEl.querySelector(".apexcharts-tooltip"):null}},{key:"getElXCrosshairs",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-xcrosshairs")}},{key:"getElGrid",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-grid")}},{key:"drawTooltip",value:function(s){var a=this.w;this.xyRatios=s,this.isXAxisTooltipEnabled=a.config.xaxis.tooltip.enabled&&a.globals.axisCharts,this.yaxisTooltips=a.config.yaxis.map(function(p,w){return!!(p.show&&p.tooltip.enabled&&a.globals.axisCharts)}),this.allTooltipSeriesGroups=[],a.globals.axisCharts||(this.showTooltipTitle=!1);var i=document.createElement("div");if(i.classList.add("apexcharts-tooltip"),a.config.tooltip.cssClass&&i.classList.add(a.config.tooltip.cssClass),i.classList.add("apexcharts-theme-".concat(this.tConfig.theme)),a.globals.dom.elWrap.appendChild(i),a.globals.axisCharts){this.axesTooltip.drawXaxisTooltip(),this.axesTooltip.drawYaxisTooltip(),this.axesTooltip.setXCrosshairWidth(),this.axesTooltip.handleYCrosshair();var d=new bt(this.ctx);this.xAxisTicksPositions=d.getXAxisTicksPositions()}if(!a.globals.comboCharts&&!this.tConfig.intersect&&a.config.chart.type!=="rangeBar"||this.tConfig.shared||(this.showOnIntersect=!0),a.config.markers.size!==0&&a.globals.markers.largestSize!==0||this.marker.drawDynamicPoints(this),a.globals.collapsedSeries.length!==a.globals.series.length){this.dataPointsDividedHeight=a.globals.gridHeight/a.globals.dataPoints,this.dataPointsDividedWidth=a.globals.gridWidth/a.globals.dataPoints,this.showTooltipTitle&&(this.tooltipTitle=document.createElement("div"),this.tooltipTitle.classList.add("apexcharts-tooltip-title"),this.tooltipTitle.style.fontFamily=this.tConfig.style.fontFamily||a.config.chart.fontFamily,this.tooltipTitle.style.fontSize=this.tConfig.style.fontSize,i.appendChild(this.tooltipTitle));var c=a.globals.series.length;(a.globals.xyCharts||a.globals.comboCharts)&&this.tConfig.shared&&(c=this.showOnIntersect?1:a.globals.series.length),this.legendLabels=a.globals.dom.baseEl.querySelectorAll(".apexcharts-legend-text"),this.ttItems=this.createTTElements(c),this.addSVGEvents()}}},{key:"createTTElements",value:function(s){for(var a=this,i=this.w,d=[],c=this.getElTooltip(),p=function(f){var k=document.createElement("div");k.classList.add("apexcharts-tooltip-series-group"),k.style.order=i.config.tooltip.inverseOrder?s-f:f+1,a.tConfig.shared&&a.tConfig.enabledOnSeries&&Array.isArray(a.tConfig.enabledOnSeries)&&a.tConfig.enabledOnSeries.indexOf(f)<0&&k.classList.add("apexcharts-tooltip-series-group-hidden");var M=document.createElement("span");M.classList.add("apexcharts-tooltip-marker"),M.style.backgroundColor=i.globals.colors[f],k.appendChild(M);var x=document.createElement("div");x.classList.add("apexcharts-tooltip-text"),x.style.fontFamily=a.tConfig.style.fontFamily||i.config.chart.fontFamily,x.style.fontSize=a.tConfig.style.fontSize,["y","goals","z"].forEach(function(I){var $=document.createElement("div");$.classList.add("apexcharts-tooltip-".concat(I,"-group"));var N=document.createElement("span");N.classList.add("apexcharts-tooltip-text-".concat(I,"-label")),$.appendChild(N);var L=document.createElement("span");L.classList.add("apexcharts-tooltip-text-".concat(I,"-value")),$.appendChild(L),x.appendChild($)}),k.appendChild(x),c.appendChild(k),d.push(k)},w=0;w0&&this.addPathsEventListeners(N,x),this.tooltipUtil.hasBars()&&!this.tConfig.shared&&this.addDatapointEventsListeners(x)}}},{key:"drawFixedTooltipRect",value:function(){var s=this.w,a=this.getElTooltip(),i=a.getBoundingClientRect(),d=i.width+10,c=i.height+10,p=this.tConfig.fixed.offsetX,w=this.tConfig.fixed.offsetY,f=this.tConfig.fixed.position.toLowerCase();return f.indexOf("right")>-1&&(p=p+s.globals.svgWidth-d+10),f.indexOf("bottom")>-1&&(w=w+s.globals.svgHeight-c-10),a.style.left=p+"px",a.style.top=w+"px",{x:p,y:w,ttWidth:d,ttHeight:c}}},{key:"addDatapointEventsListeners",value:function(s){var a=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area");this.addPathsEventListeners(a,s)}},{key:"addPathsEventListeners",value:function(s,a){for(var i=this,d=function(p){var w={paths:s[p],tooltipEl:a.tooltipEl,tooltipY:a.tooltipY,tooltipX:a.tooltipX,elGrid:a.elGrid,hoverArea:a.hoverArea,ttItems:a.ttItems};["mousemove","mouseup","touchmove","mouseout","touchend"].map(function(f){return s[p].addEventListener(f,i.onSeriesHover.bind(i,w),{capture:!1,passive:!0})})},c=0;c=100?this.seriesHover(s,a):(clearTimeout(this.seriesHoverTimeout),this.seriesHoverTimeout=setTimeout(function(){i.seriesHover(s,a)},100-d))}},{key:"seriesHover",value:function(s,a){var i=this;this.lastHoverTime=Date.now();var d=[],c=this.w;c.config.chart.group&&(d=this.ctx.getGroupedCharts()),c.globals.axisCharts&&(c.globals.minX===-1/0&&c.globals.maxX===1/0||c.globals.dataPoints===0)||(d.length?d.forEach(function(p){var w=i.getElTooltip(p),f={paths:s.paths,tooltipEl:w,tooltipY:s.tooltipY,tooltipX:s.tooltipX,elGrid:s.elGrid,hoverArea:s.hoverArea,ttItems:p.w.globals.tooltip.ttItems};p.w.globals.minX===i.w.globals.minX&&p.w.globals.maxX===i.w.globals.maxX&&p.w.globals.tooltip.seriesHoverByContext({chartCtx:p,ttCtx:p.w.globals.tooltip,opt:f,e:a})}):this.seriesHoverByContext({chartCtx:this.ctx,ttCtx:this.w.globals.tooltip,opt:s,e:a}))}},{key:"seriesHoverByContext",value:function(s){var a=s.chartCtx,i=s.ttCtx,d=s.opt,c=s.e,p=a.w,w=this.getElTooltip();w&&(i.tooltipRect={x:0,y:0,ttWidth:w.getBoundingClientRect().width,ttHeight:w.getBoundingClientRect().height},i.e=c,i.tooltipUtil.hasBars()&&!p.globals.comboCharts&&!i.isBarShared&&this.tConfig.onDatasetHover.highlightDataSeries&&new ut(a).toggleSeriesOnHover(c,c.target.parentNode),i.fixedTooltip&&i.drawFixedTooltipRect(),p.globals.axisCharts?i.axisChartsTooltips({e:c,opt:d,tooltipRect:i.tooltipRect}):i.nonAxisChartsTooltips({e:c,opt:d,tooltipRect:i.tooltipRect}))}},{key:"axisChartsTooltips",value:function(s){var a,i,d=s.e,c=s.opt,p=this.w,w=c.elGrid.getBoundingClientRect(),f=d.type==="touchmove"?d.touches[0].clientX:d.clientX,k=d.type==="touchmove"?d.touches[0].clientY:d.clientY;if(this.clientY=k,this.clientX=f,p.globals.capturedSeriesIndex=-1,p.globals.capturedDataPointIndex=-1,kw.top+w.height)this.handleMouseOut(c);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!p.config.tooltip.shared){var M=parseInt(c.paths.getAttribute("index"),10);if(this.tConfig.enabledOnSeries.indexOf(M)<0)return void this.handleMouseOut(c)}var x=this.getElTooltip(),I=this.getElXCrosshairs(),$=p.globals.xyCharts||p.config.chart.type==="bar"&&!p.globals.isBarHorizontal&&this.tooltipUtil.hasBars()&&this.tConfig.shared||p.globals.comboCharts&&this.tooltipUtil.hasBars();if(d.type==="mousemove"||d.type==="touchmove"||d.type==="mouseup"){if(p.globals.collapsedSeries.length+p.globals.ancillaryCollapsedSeries.length===p.globals.series.length)return;I!==null&&I.classList.add("apexcharts-active");var N=this.yaxisTooltips.filter(function(V){return V===!0});if(this.ycrosshairs!==null&&N.length&&this.ycrosshairs.classList.add("apexcharts-active"),$&&!this.showOnIntersect)this.handleStickyTooltip(d,f,k,c);else if(p.config.chart.type==="heatmap"||p.config.chart.type==="treemap"){var L=this.intersect.handleHeatTreeTooltip({e:d,opt:c,x:a,y:i,type:p.config.chart.type});a=L.x,i=L.y,x.style.left=a+"px",x.style.top=i+"px"}else this.tooltipUtil.hasBars()&&this.intersect.handleBarTooltip({e:d,opt:c}),this.tooltipUtil.hasMarkers()&&this.intersect.handleMarkerTooltip({e:d,opt:c,x:a,y:i});if(this.yaxisTooltips.length)for(var F=0;Fk.width)this.handleMouseOut(d);else if(f!==null)this.handleStickyCapturedSeries(s,f,d,w);else if(this.tooltipUtil.isXoverlap(w)||c.globals.isBarHorizontal){var M=c.globals.series.findIndex(function(x,I){return!c.globals.collapsedSeriesIndices.includes(I)});this.create(s,this,M,w,d.ttItems)}}},{key:"handleStickyCapturedSeries",value:function(s,a,i,d){var c=this.w;if(!this.tConfig.shared&&c.globals.series[a][d]===null)return void this.handleMouseOut(i);if(c.globals.series[a][d]!==void 0)this.tConfig.shared&&this.tooltipUtil.isXoverlap(d)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(s,this,a,d,i.ttItems):this.create(s,this,a,d,i.ttItems,!1);else if(this.tooltipUtil.isXoverlap(d)){var p=c.globals.series.findIndex(function(w,f){return!c.globals.collapsedSeriesIndices.includes(f)});this.create(s,this,p,d,i.ttItems)}}},{key:"deactivateHoverFilter",value:function(){for(var s=this.w,a=new _(this.ctx),i=s.globals.dom.Paper.select(".apexcharts-bar-area"),d=0;d5&&arguments[5]!==void 0?arguments[5]:null,K=this.w,Q=a;s.type==="mouseup"&&this.markerClick(s,i,d),R===null&&(R=this.tConfig.shared);var ot=this.tooltipUtil.hasMarkers(i),it=this.tooltipUtil.getElBars();if(K.config.legend.tooltipHoverFormatter){var vt=K.config.legend.tooltipHoverFormatter,zt=Array.from(this.legendLabels);zt.forEach(function(Rn){var Ul=Rn.getAttribute("data:default-text");Rn.innerHTML=decodeURIComponent(Ul)});for(var Mt=0;Mt0?Q.marker.enlargePoints(d):Q.tooltipPosition.moveDynamicPointsOnHover(d);else if(this.tooltipUtil.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(it),this.barSeriesHeight>0)){var xe=new _(this.ctx),$e=K.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(d,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(d,i);for(var je=0;je<$e.length;je++)xe.pathMouseEnter($e[je])}}else Q.tooltipLabels.drawSeriesTexts(h({shared:!1},de)),this.tooltipUtil.hasBars()&&Q.tooltipPosition.moveStickyTooltipOverBars(d,i),ot&&Q.tooltipPosition.moveMarkers(i,d)}}]),T}(),j4=function(){function T(s){g(this,T),this.w=s.w,this.barCtx=s,this.totalFormatter=this.w.config.plotOptions.bar.dataLabels.total.formatter,this.totalFormatter||(this.totalFormatter=this.w.config.dataLabels.formatter)}return b(T,[{key:"handleBarDataLabels",value:function(s){var a=s.x,i=s.y,d=s.y1,c=s.y2,p=s.i,w=s.j,f=s.realIndex,k=s.groupIndex,M=s.series,x=s.barHeight,I=s.barWidth,$=s.barXPosition,N=s.barYPosition,L=s.visibleSeries,F=s.renderedPath,V=this.w,Z=new _(this.barCtx.ctx),m=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[f]:this.barCtx.strokeWidth,y=a+parseFloat(I*L),j=i+parseFloat(x*L);V.globals.isXNumeric&&!V.globals.isBarHorizontal&&(y=a+parseFloat(I*(L+1)),j=i+parseFloat(x*(L+1))-m);var R,K=null,Q=a,ot=i,it={},vt=V.config.dataLabels,zt=this.barCtx.barOptions.dataLabels,Mt=this.barCtx.barOptions.dataLabels.total;N!==void 0&&this.barCtx.isRangeBar&&(j=N,ot=N),$!==void 0&&this.barCtx.isVerticalGroupedRangeBar&&(y=$,Q=$);var Et=vt.offsetX,qt=vt.offsetY,ae={width:0,height:0};if(V.config.dataLabels.enabled){var ie=this.barCtx.series[p][w];ae=Z.getTextRects(V.globals.yLabelFormatters[0](ie),parseFloat(vt.style.fontSize))}var de={x:a,y:i,i:p,j:w,realIndex:f,groupIndex:k||-1,renderedPath:F,bcx:y,bcy:j,barHeight:x,barWidth:I,textRects:ae,strokeWidth:m,dataLabelsX:Q,dataLabelsY:ot,dataLabelsConfig:vt,barDataLabelsConfig:zt,barTotalDataLabelsConfig:Mt,offX:Et,offY:qt};return it=this.barCtx.isHorizontal?this.calculateBarsDataLabelsPosition(de):this.calculateColumnsDataLabelsPosition(de),F.attr({cy:it.bcy,cx:it.bcx,j:w,val:M[p][w],barHeight:x,barWidth:I}),R=this.drawCalculatedDataLabels({x:it.dataLabelsX,y:it.dataLabelsY,val:this.barCtx.isRangeBar?[d,c]:M[p][w],i:f,j:w,barWidth:I,barHeight:x,textRects:ae,dataLabelsConfig:vt}),V.config.chart.stacked&&Mt.enabled&&(K=this.drawTotalDataLabels({x:it.totalDataLabelsX,y:it.totalDataLabelsY,realIndex:f,textAnchor:it.totalDataLabelsAnchor,val:this.getStackedTotalDataLabel({realIndex:f,j:w}),dataLabelsConfig:vt,barTotalDataLabelsConfig:Mt})),{dataLabels:R,totalDataLabels:K}}},{key:"getStackedTotalDataLabel",value:function(s){var a=s.realIndex,i=s.j,d=this.w,c=this.barCtx.stackedSeriesTotals[i];return this.totalFormatter&&(c=this.totalFormatter(c,h(h({},d),{},{seriesIndex:a,dataPointIndex:i,w:d}))),c}},{key:"calculateColumnsDataLabelsPosition",value:function(s){var a,i,d=this.w,c=s.i,p=s.j,w=s.realIndex,f=s.groupIndex,k=s.y,M=s.bcx,x=s.barWidth,I=s.barHeight,$=s.textRects,N=s.dataLabelsX,L=s.dataLabelsY,F=s.dataLabelsConfig,V=s.barDataLabelsConfig,Z=s.barTotalDataLabelsConfig,m=s.strokeWidth,y=s.offX,j=s.offY;I=Math.abs(I);var R=d.config.plotOptions.bar.dataLabels.orientation==="vertical";M=M-m/2+(f!==-1?f*x:0);var K=d.globals.gridWidth/d.globals.dataPoints;this.barCtx.isVerticalGroupedRangeBar?N+=x/2:N=d.globals.isXNumeric?M-x/2+y:M-K+x/2+y,R&&(N=N+$.height/2-m/2-2);var Q=this.barCtx.series[c][p]<0,ot=k;switch(this.barCtx.isReversed&&(ot=k-I+(Q?2*I:0),k-=I),V.position){case"center":L=R?Q?ot+I/2+j:ot+I/2-j:Q?ot-I/2+$.height/2+j:ot+I/2+$.height/2-j;break;case"bottom":L=R?Q?ot+I+j:ot+I-j:Q?ot-I+$.height+m+j:ot+I-$.height/2+m-j;break;case"top":L=R?Q?ot+j:ot-j:Q?ot-$.height/2-j:ot+$.height+j}if(this.barCtx.lastActiveBarSerieIndex===w&&Z.enabled){var it=new _(this.barCtx.ctx).getTextRects(this.getStackedTotalDataLabel({realIndex:w,j:p}),F.fontSize);a=Q?ot-it.height/2-j-Z.offsetY+18:ot+it.height+j+Z.offsetY-18,i=N+Z.offsetX}return d.config.chart.stacked||(L<0?L=0+m:L+$.height/3>d.globals.gridHeight&&(L=d.globals.gridHeight-m)),{bcx:M,bcy:k,dataLabelsX:N,dataLabelsY:L,totalDataLabelsX:i,totalDataLabelsY:a,totalDataLabelsAnchor:"middle"}}},{key:"calculateBarsDataLabelsPosition",value:function(s){var a=this.w,i=s.x,d=s.i,c=s.j,p=s.realIndex,w=s.groupIndex,f=s.bcy,k=s.barHeight,M=s.barWidth,x=s.textRects,I=s.dataLabelsX,$=s.strokeWidth,N=s.dataLabelsConfig,L=s.barDataLabelsConfig,F=s.barTotalDataLabelsConfig,V=s.offX,Z=s.offY,m=a.globals.gridHeight/a.globals.dataPoints;M=Math.abs(M);var y,j,R=(f+=w!==-1?w*k:0)-(this.barCtx.isRangeBar?0:m)+k/2+x.height/2+Z-3,K="start",Q=this.barCtx.series[d][c]<0,ot=i;switch(this.barCtx.isReversed&&(ot=i+M-(Q?2*M:0),i=a.globals.gridWidth-M),L.position){case"center":I=Q?ot+M/2-V:Math.max(x.width/2,ot-M/2)+V;break;case"bottom":I=Q?ot+M-$-Math.round(x.width/2)-V:ot-M+$+Math.round(x.width/2)+V;break;case"top":I=Q?ot-$+Math.round(x.width/2)-V:ot-$-Math.round(x.width/2)+V}if(this.barCtx.lastActiveBarSerieIndex===p&&F.enabled){var it=new _(this.barCtx.ctx).getTextRects(this.getStackedTotalDataLabel({realIndex:p,j:c}),N.fontSize);Q?(y=ot-$+Math.round(it.width/2)-V-F.offsetX-15,K="end"):y=ot-$-Math.round(it.width/2)+V+F.offsetX+15,j=R+F.offsetY}return a.config.chart.stacked||(I<0?I=I+x.width+$:I+x.width/2>a.globals.gridWidth&&(I=a.globals.gridWidth-x.width-$)),{bcx:i,bcy:f,dataLabelsX:I,dataLabelsY:R,totalDataLabelsX:y,totalDataLabelsY:j,totalDataLabelsAnchor:K}}},{key:"drawCalculatedDataLabels",value:function(s){var a=s.x,i=s.y,d=s.val,c=s.i,p=s.j,w=s.textRects,f=s.barHeight,k=s.barWidth,M=s.dataLabelsConfig,x=this.w,I="rotate(0)";x.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(I="rotate(-90, ".concat(a,", ").concat(i,")"));var $=new Rt(this.barCtx.ctx),N=new _(this.barCtx.ctx),L=M.formatter,F=null,V=x.globals.collapsedSeriesIndices.indexOf(c)>-1;if(M.enabled&&!V){F=N.group({class:"apexcharts-data-labels",transform:I});var Z="";d!==void 0&&(Z=L(d,h(h({},x),{},{seriesIndex:c,dataPointIndex:p,w:x}))),!d&&x.config.plotOptions.bar.hideZeroBarsWhenGrouped&&(Z="");var m=x.globals.series[c][p]<0,y=x.config.plotOptions.bar.dataLabels.position;x.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(y==="top"&&(M.textAnchor=m?"end":"start"),y==="center"&&(M.textAnchor="middle"),y==="bottom"&&(M.textAnchor=m?"end":"start")),this.barCtx.isRangeBar&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels&&kMath.abs(k)&&(Z=""):w.height/1.6>Math.abs(f)&&(Z=""));var j=h({},M);this.barCtx.isHorizontal&&d<0&&(M.textAnchor==="start"?j.textAnchor="end":M.textAnchor==="end"&&(j.textAnchor="start")),$.plotDataLabelsText({x:a,y:i,text:Z,i:c,j:p,parent:F,dataLabelsConfig:j,alwaysDrawDataLabel:!0,offsetCorrection:!0})}return F}},{key:"drawTotalDataLabels",value:function(s){var a,i=s.x,d=s.y,c=s.val,p=s.realIndex,w=s.textAnchor,f=s.barTotalDataLabelsConfig,k=new _(this.barCtx.ctx);return f.enabled&&i!==void 0&&d!==void 0&&this.barCtx.lastActiveBarSerieIndex===p&&(a=k.drawText({x:i,y:d,foreColor:f.style.color,text:c,textAnchor:w,fontFamily:f.style.fontFamily,fontSize:f.style.fontSize,fontWeight:f.style.fontWeight})),a}}]),T}(),P4=function(){function T(s){g(this,T),this.w=s.w,this.barCtx=s}return b(T,[{key:"initVariables",value:function(s){var a=this.w;this.barCtx.series=s,this.barCtx.totalItems=0,this.barCtx.seriesLen=0,this.barCtx.visibleI=-1,this.barCtx.visibleItems=1;for(var i=0;i0&&(this.barCtx.seriesLen=this.barCtx.seriesLen+1,this.barCtx.totalItems+=s[i].length),a.globals.isXNumeric)for(var d=0;da.globals.minX&&a.globals.seriesX[i][d]0&&(d=k.globals.minXDiff/I),(p=d/x*parseInt(this.barCtx.barOptions.columnWidth,10)/100)<1&&(p=1)}String(this.barCtx.barOptions.columnWidth).indexOf("%")===-1&&(p=parseInt(this.barCtx.barOptions.columnWidth,10)),w=k.globals.gridHeight-this.barCtx.baseLineY[this.barCtx.yaxisIndex]-(this.barCtx.isReversed?k.globals.gridHeight:0)+(this.barCtx.isReversed?2*this.barCtx.baseLineY[this.barCtx.yaxisIndex]:0),s=k.globals.padHorizontal+(d-p*this.barCtx.seriesLen)/2}return{x:s,y:a,yDivision:i,xDivision:d,barHeight:c,barWidth:p,zeroH:w,zeroW:f}}},{key:"initializeStackedPrevVars",value:function(s){var a=s.w;a.globals.hasSeriesGroups?a.globals.seriesGroups.forEach(function(i){s[i]||(s[i]={}),s[i].prevY=[],s[i].prevX=[],s[i].prevYF=[],s[i].prevXF=[],s[i].prevYVal=[],s[i].prevXVal=[]}):(s.prevY=[],s.prevX=[],s.prevYF=[],s.prevXF=[],s.prevYVal=[],s.prevXVal=[])}},{key:"initializeStackedXYVars",value:function(s){var a=s.w;a.globals.hasSeriesGroups?a.globals.seriesGroups.forEach(function(i){s[i]||(s[i]={}),s[i].xArrj=[],s[i].xArrjF=[],s[i].xArrjVal=[],s[i].yArrj=[],s[i].yArrjF=[],s[i].yArrjVal=[]}):(s.xArrj=[],s.xArrjF=[],s.xArrjVal=[],s.yArrj=[],s.yArrjF=[],s.yArrjVal=[])}},{key:"getPathFillColor",value:function(s,a,i,d){var c,p,w,f,k=this.w,M=new Ft(this.barCtx.ctx),x=null,I=this.barCtx.barOptions.distributed?i:a;return this.barCtx.barOptions.colors.ranges.length>0&&this.barCtx.barOptions.colors.ranges.map(function($){s[a][i]>=$.from&&s[a][i]<=$.to&&(x=$.color)}),k.config.series[a].data[i]&&k.config.series[a].data[i].fillColor&&(x=k.config.series[a].data[i].fillColor),M.fillPath({seriesNumber:this.barCtx.barOptions.distributed?I:d,dataPointIndex:i,color:x,value:s[a][i],fillConfig:(c=k.config.series[a].data[i])===null||c===void 0?void 0:c.fill,fillType:(p=k.config.series[a].data[i])!==null&&p!==void 0&&(w=p.fill)!==null&&w!==void 0&&w.type?(f=k.config.series[a].data[i])===null||f===void 0?void 0:f.fill.type:k.config.fill.type})}},{key:"getStrokeWidth",value:function(s,a,i){var d=0,c=this.w;return this.barCtx.series[s][a]?this.barCtx.isNullValue=!1:this.barCtx.isNullValue=!0,c.config.stroke.show&&(this.barCtx.isNullValue||(d=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[i]:this.barCtx.strokeWidth)),d}},{key:"shouldApplyRadius",value:function(s){var a=this.w,i=!1;return a.config.plotOptions.bar.borderRadius>0&&(a.config.chart.stacked&&a.config.plotOptions.bar.borderRadiusWhenStacked==="last"?this.barCtx.lastActiveBarSerieIndex===s&&(i=!0):i=!0),i}},{key:"barBackground",value:function(s){var a=s.j,i=s.i,d=s.x1,c=s.x2,p=s.y1,w=s.y2,f=s.elSeries,k=this.w,M=new _(this.barCtx.ctx),x=new ut(this.barCtx.ctx).getActiveConfigSeriesIndex();if(this.barCtx.barOptions.colors.backgroundBarColors.length>0&&x===i){a>=this.barCtx.barOptions.colors.backgroundBarColors.length&&(a%=this.barCtx.barOptions.colors.backgroundBarColors.length);var I=this.barCtx.barOptions.colors.backgroundBarColors[a],$=M.drawRect(d!==void 0?d:0,p!==void 0?p:0,c!==void 0?c:k.globals.gridWidth,w!==void 0?w:k.globals.gridHeight,this.barCtx.barOptions.colors.backgroundBarRadius,I,this.barCtx.barOptions.colors.backgroundBarOpacity);f.add($),$.node.classList.add("apexcharts-backgroundBar")}}},{key:"getColumnPaths",value:function(s){var a,i=s.barWidth,d=s.barXPosition,c=s.y1,p=s.y2,w=s.strokeWidth,f=s.seriesGroup,k=s.realIndex,M=s.i,x=s.j,I=s.w,$=new _(this.barCtx.ctx);(w=Array.isArray(w)?w[k]:w)||(w=0);var N=i,L=d;(a=I.config.series[k].data[x])!==null&&a!==void 0&&a.columnWidthOffset&&(L=d-I.config.series[k].data[x].columnWidthOffset/2,N=i+I.config.series[k].data[x].columnWidthOffset);var F=L,V=L+N;c+=.001,p+=.001;var Z=$.move(F,c),m=$.move(F,c),y=$.line(V-w,c);if(I.globals.previousPaths.length>0&&(m=this.barCtx.getPreviousPath(k,x,!1)),Z=Z+$.line(F,p)+$.line(V-w,p)+$.line(V-w,c)+(I.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),m=m+$.line(F,c)+y+y+y+y+y+$.line(F,c)+(I.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(k)&&(Z=$.roundPathCorners(Z,I.config.plotOptions.bar.borderRadius)),I.config.chart.stacked){var j=this.barCtx;I.globals.hasSeriesGroups&&f&&(j=this.barCtx[f]),j.yArrj.push(p),j.yArrjF.push(Math.abs(c-p)),j.yArrjVal.push(this.barCtx.series[M][x])}return{pathTo:Z,pathFrom:m}}},{key:"getBarpaths",value:function(s){var a,i=s.barYPosition,d=s.barHeight,c=s.x1,p=s.x2,w=s.strokeWidth,f=s.seriesGroup,k=s.realIndex,M=s.i,x=s.j,I=s.w,$=new _(this.barCtx.ctx);(w=Array.isArray(w)?w[k]:w)||(w=0);var N=i,L=d;(a=I.config.series[k].data[x])!==null&&a!==void 0&&a.barHeightOffset&&(N=i-I.config.series[k].data[x].barHeightOffset/2,L=d+I.config.series[k].data[x].barHeightOffset);var F=N,V=N+L;c+=.001,p+=.001;var Z=$.move(c,F),m=$.move(c,F);I.globals.previousPaths.length>0&&(m=this.barCtx.getPreviousPath(k,x,!1));var y=$.line(c,V-w);if(Z=Z+$.line(p,F)+$.line(p,V-w)+y+(I.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),m=m+$.line(c,F)+y+y+y+y+y+$.line(c,F)+(I.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(k)&&(Z=$.roundPathCorners(Z,I.config.plotOptions.bar.borderRadius)),I.config.chart.stacked){var j=this.barCtx;I.globals.hasSeriesGroups&&f&&(j=this.barCtx[f]),j.xArrj.push(p),j.xArrjF.push(Math.abs(c-p)),j.xArrjVal.push(this.barCtx.series[M][x])}return{pathTo:Z,pathFrom:m}}},{key:"checkZeroSeries",value:function(s){for(var a=s.series,i=this.w,d=0;d2&&arguments[2]!==void 0)||arguments[2]?a:null;return s!=null&&(i=a+s/this.barCtx.invertedYRatio-2*(this.barCtx.isReversed?s/this.barCtx.invertedYRatio:0)),i}},{key:"getYForValue",value:function(s,a){var i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2]?a:null;return s!=null&&(i=a-s/this.barCtx.yRatio[this.barCtx.yaxisIndex]+2*(this.barCtx.isReversed?s/this.barCtx.yRatio[this.barCtx.yaxisIndex]:0)),i}},{key:"getGoalValues",value:function(s,a,i,d,c){var p=this,w=this.w,f=[],k=function(I,$){var N;f.push((z(N={},s,s==="x"?p.getXForValue(I,a,!1):p.getYForValue(I,i,!1)),z(N,"attrs",$),N))};if(w.globals.seriesGoals[d]&&w.globals.seriesGoals[d][c]&&Array.isArray(w.globals.seriesGoals[d][c])&&w.globals.seriesGoals[d][c].forEach(function(I){k(I.value,I)}),this.barCtx.barOptions.isDumbbell&&w.globals.seriesRange.length){var M=this.barCtx.barOptions.dumbbellColors?this.barCtx.barOptions.dumbbellColors:w.globals.colors,x={strokeHeight:s==="x"?0:w.globals.markers.size[d],strokeWidth:s==="x"?w.globals.markers.size[d]:0,strokeDashArray:0,strokeLineCap:"round",strokeColor:Array.isArray(M[d])?M[d][0]:M[d]};k(w.globals.seriesRangeStart[d][c],x),k(w.globals.seriesRangeEnd[d][c],h(h({},x),{},{strokeColor:Array.isArray(M[d])?M[d][1]:M[d]}))}return f}},{key:"drawGoalLine",value:function(s){var a=s.barXPosition,i=s.barYPosition,d=s.goalX,c=s.goalY,p=s.barWidth,w=s.barHeight,f=new _(this.barCtx.ctx),k=f.group({className:"apexcharts-bar-goals-groups"});k.node.classList.add("apexcharts-element-hidden"),this.barCtx.w.globals.delayedElements.push({el:k.node}),k.attr("clip-path","url(#gridRectMarkerMask".concat(this.barCtx.w.globals.cuid,")"));var M=null;return this.barCtx.isHorizontal?Array.isArray(d)&&d.forEach(function(x){var I=x.attrs.strokeHeight!==void 0?x.attrs.strokeHeight:w/2,$=i+I+w/2;M=f.drawLine(x.x,$-2*I,x.x,$,x.attrs.strokeColor?x.attrs.strokeColor:void 0,x.attrs.strokeDashArray,x.attrs.strokeWidth?x.attrs.strokeWidth:2,x.attrs.strokeLineCap),k.add(M)}):Array.isArray(c)&&c.forEach(function(x){var I=x.attrs.strokeWidth!==void 0?x.attrs.strokeWidth:p/2,$=a+I+p/2;M=f.drawLine($-2*I,x.y,$,x.y,x.attrs.strokeColor?x.attrs.strokeColor:void 0,x.attrs.strokeDashArray,x.attrs.strokeHeight?x.attrs.strokeHeight:2,x.attrs.strokeLineCap),k.add(M)}),k}},{key:"drawBarShadow",value:function(s){var a=s.prevPaths,i=s.currPaths,d=s.color,c=this.w,p=a.x,w=a.x1,f=a.barYPosition,k=i.x,M=i.x1,x=i.barYPosition,I=f+i.barHeight,$=new _(this.barCtx.ctx),N=new H,L=$.move(w,I)+$.line(p,I)+$.line(k,x)+$.line(M,x)+$.line(w,I)+(c.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z");return $.drawPath({d:L,fill:N.shadeColor(.5,H.rgb2hex(d)),stroke:"none",strokeWidth:0,fillOpacity:1,classes:"apexcharts-bar-shadows"})}}]),T}(),Sr=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w;var i=this.w;this.barOptions=i.config.plotOptions.bar,this.isHorizontal=this.barOptions.horizontal,this.strokeWidth=i.config.stroke.width,this.isNullValue=!1,this.isRangeBar=i.globals.seriesRange.length&&this.isHorizontal,this.isVerticalGroupedRangeBar=!i.globals.isBarHorizontal&&i.globals.seriesRange.length&&i.config.plotOptions.bar.rangeBarGroupRows,this.isFunnel=this.barOptions.isFunnel,this.xyRatios=a,this.xyRatios!==null&&(this.xRatio=a.xRatio,this.initialXRatio=a.initialXRatio,this.yRatio=a.yRatio,this.invertedXRatio=a.invertedXRatio,this.invertedYRatio=a.invertedYRatio,this.baseLineY=a.baseLineY,this.baseLineInvertedY=a.baseLineInvertedY),this.yaxisIndex=0,this.seriesLen=0,this.pathArr=[];var d=new ut(this.ctx);this.lastActiveBarSerieIndex=d.getActiveConfigSeriesIndex("desc",["bar","column"]);var c=d.getBarSeriesIndices(),p=new tt(this.ctx);this.stackedSeriesTotals=p.getStackedSeriesTotals(this.w.config.series.map(function(w,f){return c.indexOf(f)===-1?f:-1}).filter(function(w){return w!==-1})),this.barHelpers=new P4(this)}return b(T,[{key:"draw",value:function(s,a){var i=this.w,d=new _(this.ctx),c=new tt(this.ctx,i);s=c.getLogSeries(s),this.series=s,this.yRatio=c.getLogYRatios(this.yRatio),this.barHelpers.initVariables(s);var p=d.group({class:"apexcharts-bar-series apexcharts-plot-series"});i.config.dataLabels.enabled&&this.totalItems>this.barOptions.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.");for(var w=0,f=0;w0&&(this.visibleI=this.visibleI+1);var m=0,y=0;this.yRatio.length>1&&(this.yaxisIndex=V),this.isReversed=i.config.yaxis[this.yaxisIndex]&&i.config.yaxis[this.yaxisIndex].reversed;var j=this.barHelpers.initialPositions();N=j.y,m=j.barHeight,M=j.yDivision,I=j.zeroW,$=j.x,y=j.barWidth,k=j.xDivision,x=j.zeroH,this.horizontal||F.push($+y/2);var R=d.group({class:"apexcharts-datalabels","data:realIndex":V});i.globals.delayedElements.push({el:R.node}),R.node.classList.add("apexcharts-element-hidden");var K=d.group({class:"apexcharts-bar-goals-markers"}),Q=d.group({class:"apexcharts-bar-shadows"});i.globals.delayedElements.push({el:Q.node}),Q.node.classList.add("apexcharts-element-hidden");for(var ot=0;ot0){var Et=this.barHelpers.drawBarShadow({color:typeof Mt=="string"&&(Mt==null?void 0:Mt.indexOf("url"))===-1?Mt:H.hexToRgba(i.globals.colors[w]),prevPaths:this.pathArr[this.pathArr.length-1],currPaths:vt});Et&&Q.add(Et)}this.pathArr.push(vt);var qt=this.barHelpers.drawGoalLine({barXPosition:vt.barXPosition,barYPosition:vt.barYPosition,goalX:vt.goalX,goalY:vt.goalY,barHeight:m,barWidth:y});qt&&K.add(qt),N=vt.y,$=vt.x,ot>0&&F.push($+y/2),L.push(N),this.renderSeries({realIndex:V,pathFill:Mt,j:ot,i:w,pathFrom:vt.pathFrom,pathTo:vt.pathTo,strokeWidth:it,elSeries:Z,x:$,y:N,series:s,barHeight:vt.barHeight?vt.barHeight:m,barWidth:vt.barWidth?vt.barWidth:y,elDataLabelsWrap:R,elGoalsMarkers:K,elBarShadows:Q,visibleSeries:this.visibleI,type:"bar"})}i.globals.seriesXvalues[V]=F,i.globals.seriesYvalues[V]=L,p.add(Z)}return p}},{key:"renderSeries",value:function(s){var a=s.realIndex,i=s.pathFill,d=s.lineFill,c=s.j,p=s.i,w=s.groupIndex,f=s.pathFrom,k=s.pathTo,M=s.strokeWidth,x=s.elSeries,I=s.x,$=s.y,N=s.y1,L=s.y2,F=s.series,V=s.barHeight,Z=s.barWidth,m=s.barXPosition,y=s.barYPosition,j=s.elDataLabelsWrap,R=s.elGoalsMarkers,K=s.elBarShadows,Q=s.visibleSeries,ot=s.type,it=this.w,vt=new _(this.ctx);d||(d=this.barOptions.distributed?it.globals.stroke.colors[c]:it.globals.stroke.colors[a]),it.config.series[p].data[c]&&it.config.series[p].data[c].strokeColor&&(d=it.config.series[p].data[c].strokeColor),this.isNullValue&&(i="none");var zt=c/it.config.chart.animations.animateGradually.delay*(it.config.chart.animations.speed/it.globals.dataPoints)/2.4,Mt=vt.renderPaths({i:p,j:c,realIndex:a,pathFrom:f,pathTo:k,stroke:d,strokeWidth:M,strokeLineCap:it.config.stroke.lineCap,fill:i,animationDelay:zt,initialSpeed:it.config.chart.animations.speed,dataChangeSpeed:it.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(ot,"-area")});Mt.attr("clip-path","url(#gridRectMask".concat(it.globals.cuid,")"));var Et=it.config.forecastDataPoints;Et.count>0&&c>=it.globals.dataPoints-Et.count&&(Mt.node.setAttribute("stroke-dasharray",Et.dashArray),Mt.node.setAttribute("stroke-width",Et.strokeWidth),Mt.node.setAttribute("fill-opacity",Et.fillOpacity)),N!==void 0&&L!==void 0&&(Mt.attr("data-range-y1",N),Mt.attr("data-range-y2",L)),new W(this.ctx).setSelectionFilter(Mt,a,c),x.add(Mt);var qt=new j4(this).handleBarDataLabels({x:I,y:$,y1:N,y2:L,i:p,j:c,series:F,realIndex:a,groupIndex:w,barHeight:V,barWidth:Z,barXPosition:m,barYPosition:y,renderedPath:Mt,visibleSeries:Q});return qt.dataLabels!==null&&j.add(qt.dataLabels),qt.totalDataLabels&&j.add(qt.totalDataLabels),x.add(j),R&&x.add(R),K&&x.add(K),x}},{key:"drawBarPaths",value:function(s){var a,i=s.indexes,d=s.barHeight,c=s.strokeWidth,p=s.zeroW,w=s.x,f=s.y,k=s.yDivision,M=s.elSeries,x=this.w,I=i.i,$=i.j;if(x.globals.isXNumeric)a=(f=(x.globals.seriesX[I][$]-x.globals.minX)/this.invertedXRatio-d)+d*this.visibleI;else if(x.config.plotOptions.bar.hideZeroBarsWhenGrouped){var N=0,L=0;x.globals.seriesPercent.forEach(function(V,Z){V[$]&&N++,Z0&&(d=this.seriesLen*d/N),a=f+d*this.visibleI,a-=d*L}else a=f+d*this.visibleI;this.isFunnel&&(p-=(this.barHelpers.getXForValue(this.series[I][$],p)-p)/2),w=this.barHelpers.getXForValue(this.series[I][$],p);var F=this.barHelpers.getBarpaths({barYPosition:a,barHeight:d,x1:p,x2:w,strokeWidth:c,series:this.series,realIndex:i.realIndex,i:I,j:$,w:x});return x.globals.isXNumeric||(f+=k),this.barHelpers.barBackground({j:$,i:I,y1:a-d*this.visibleI,y2:d*this.seriesLen,elSeries:M}),{pathTo:F.pathTo,pathFrom:F.pathFrom,x1:p,x:w,y:f,goalX:this.barHelpers.getGoalValues("x",p,null,I,$),barYPosition:a,barHeight:d}}},{key:"drawColumnPaths",value:function(s){var a,i=s.indexes,d=s.x,c=s.y,p=s.xDivision,w=s.barWidth,f=s.zeroH,k=s.strokeWidth,M=s.elSeries,x=this.w,I=i.realIndex,$=i.i,N=i.j,L=i.bc;if(x.globals.isXNumeric){var F=I;x.globals.seriesX[I].length||(F=x.globals.maxValsInArrayIndex),x.globals.seriesX[F][N]&&(d=(x.globals.seriesX[F][N]-x.globals.minX)/this.xRatio-w*this.seriesLen/2),a=d+w*this.visibleI}else if(x.config.plotOptions.bar.hideZeroBarsWhenGrouped){var V=0,Z=0;x.globals.seriesPercent.forEach(function(y,j){y[N]&&V++,j<$&&y[N]===0&&Z++}),V>0&&(w=this.seriesLen*w/V),a=d+w*this.visibleI,a-=w*Z}else a=d+w*this.visibleI;c=this.barHelpers.getYForValue(this.series[$][N],f);var m=this.barHelpers.getColumnPaths({barXPosition:a,barWidth:w,y1:f,y2:c,strokeWidth:k,series:this.series,realIndex:i.realIndex,i:$,j:N,w:x});return x.globals.isXNumeric||(d+=p),this.barHelpers.barBackground({bc:L,j:N,i:$,x1:a-k/2-w*this.visibleI,x2:w*this.seriesLen+k/2,elSeries:M}),{pathTo:m.pathTo,pathFrom:m.pathFrom,x:d,y:c,goalY:this.barHelpers.getGoalValues("y",null,f,$,N),barXPosition:a,barWidth:w}}},{key:"getPreviousPath",value:function(s,a){for(var i,d=this.w,c=0;c0&&parseInt(p.realIndex,10)===parseInt(s,10)&&d.globals.previousPaths[c].paths[a]!==void 0&&(i=d.globals.previousPaths[c].paths[a].d)}return i}}]),T}(),Qh=function(T){C(a,Sr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return b(a,[{key:"draw",value:function(i,d){var c=this,p=this.w;this.graphics=new _(this.ctx),this.bar=new Sr(this.ctx,this.xyRatios);var w=new tt(this.ctx,p);i=w.getLogSeries(i),this.yRatio=w.getLogYRatios(this.yRatio),this.barHelpers.initVariables(i),p.config.chart.stackType==="100%"&&(i=p.globals.seriesPercent.slice()),this.series=i,this.barHelpers.initializeStackedPrevVars(this);for(var f=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),k=0,M=0,x=function(N,L){var F=void 0,V=void 0,Z=void 0,m=void 0,y=-1;c.groupCtx=c,p.globals.seriesGroups.forEach(function($e,je){$e.indexOf(p.config.series[N].name)>-1&&(y=je)}),y!==-1&&(c.groupCtx=c[p.globals.seriesGroups[y]]);var j=[],R=[],K=p.globals.comboCharts?d[N]:N;c.yRatio.length>1&&(c.yaxisIndex=K),c.isReversed=p.config.yaxis[c.yaxisIndex]&&p.config.yaxis[c.yaxisIndex].reversed;var Q=c.graphics.group({class:"apexcharts-series",seriesName:H.escapeString(p.globals.seriesNames[K]),rel:N+1,"data:realIndex":K});c.ctx.series.addCollapsedClassToSeries(Q,K);var ot=c.graphics.group({class:"apexcharts-datalabels","data:realIndex":K}),it=c.graphics.group({class:"apexcharts-bar-goals-markers"}),vt=0,zt=0,Mt=c.initialPositions(k,M,F,V,Z,m);M=Mt.y,vt=Mt.barHeight,V=Mt.yDivision,m=Mt.zeroW,k=Mt.x,zt=Mt.barWidth,F=Mt.xDivision,Z=Mt.zeroH,c.barHelpers.initializeStackedXYVars(c),c.groupCtx.prevY.length===1&&c.groupCtx.prevY[0].every(function($e){return isNaN($e)})&&(c.groupCtx.prevY[0]=c.groupCtx.prevY[0].map(function($e){return Z}),c.groupCtx.prevYF[0]=c.groupCtx.prevYF[0].map(function($e){return 0}));for(var Et=0;Et1?(c=$.globals.minXDiff/this.xRatio)*parseInt(this.barOptions.columnWidth,10)/100:I*parseInt($.config.plotOptions.bar.columnWidth,10)/100,String($.config.plotOptions.bar.columnWidth).indexOf("%")===-1&&(I=parseInt($.config.plotOptions.bar.columnWidth,10)),w=$.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?$.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),i=$.globals.padHorizontal+(c-I)/2),{x:i,y:d,yDivision:p,xDivision:c,barHeight:(k=$.globals.seriesGroups)!==null&&k!==void 0&&k.length?x/$.globals.seriesGroups.length:x,barWidth:(M=$.globals.seriesGroups)!==null&&M!==void 0&&M.length?I/$.globals.seriesGroups.length:I,zeroH:w,zeroW:f}}},{key:"drawStackedBarPaths",value:function(i){for(var d,c=i.indexes,p=i.barHeight,w=i.strokeWidth,f=i.zeroW,k=i.x,M=i.y,x=i.groupIndex,I=i.seriesGroup,$=i.yDivision,N=i.elSeries,L=this.w,F=M+(x!==-1?x*p:0),V=c.i,Z=c.j,m=0,y=0;y0){var R=f;this.groupCtx.prevXVal[j-1][Z]<0?R=this.series[V][Z]>=0?this.groupCtx.prevX[j-1][Z]+m-2*(this.isReversed?m:0):this.groupCtx.prevX[j-1][Z]:this.groupCtx.prevXVal[j-1][Z]>=0&&(R=this.series[V][Z]>=0?this.groupCtx.prevX[j-1][Z]:this.groupCtx.prevX[j-1][Z]-m+2*(this.isReversed?m:0)),d=R}else d=f;k=this.series[V][Z]===null?d:d+this.series[V][Z]/this.invertedYRatio-2*(this.isReversed?this.series[V][Z]/this.invertedYRatio:0);var K=this.barHelpers.getBarpaths({barYPosition:F,barHeight:p,x1:d,x2:k,strokeWidth:w,series:this.series,realIndex:c.realIndex,seriesGroup:I,i:V,j:Z,w:L});return this.barHelpers.barBackground({j:Z,i:V,y1:F,y2:p,elSeries:N}),M+=$,{pathTo:K.pathTo,pathFrom:K.pathFrom,goalX:this.barHelpers.getGoalValues("x",f,null,V,Z),barYPosition:F,x:k,y:M}}},{key:"drawStackedColumnPaths",value:function(i){var d=i.indexes,c=i.x,p=i.y,w=i.xDivision,f=i.barWidth,k=i.zeroH,M=i.groupIndex,x=i.seriesGroup,I=i.elSeries,$=this.w,N=d.i,L=d.j,F=d.bc;if($.globals.isXNumeric){var V=$.globals.seriesX[N][L];V||(V=0),c=(V-$.globals.minX)/this.xRatio-f/2,$.globals.seriesGroups.length&&(c=(V-$.globals.minX)/this.xRatio-f/2*$.globals.seriesGroups.length)}for(var Z,m=c+(M!==-1?M*f:0),y=0,j=0;j0&&!$.globals.isXNumeric||R>0&&$.globals.isXNumeric&&$.globals.seriesX[N-1][L]===$.globals.seriesX[N][L]){var K,Q,ot,it=Math.min(this.yRatio.length+1,N+1);if(this.groupCtx.prevY[R-1]!==void 0&&this.groupCtx.prevY[R-1].length)for(var vt=1;vt=0?ot-y+2*(this.isReversed?y:0):ot;break}if(((qt=this.groupCtx.prevYVal[R-Mt])===null||qt===void 0?void 0:qt[L])>=0){Q=this.series[N][L]>=0?ot:ot+y-2*(this.isReversed?y:0);break}}Q===void 0&&(Q=$.globals.gridHeight),Z=(K=this.groupCtx.prevYF[0])!==null&&K!==void 0&&K.every(function(ie){return ie===0})&&this.groupCtx.prevYF.slice(1,R).every(function(ie){return ie.every(function(de){return isNaN(de)})})?k:Q}else Z=k;p=this.series[N][L]?Z-this.series[N][L]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[N][L]/this.yRatio[this.yaxisIndex]:0):Z;var ae=this.barHelpers.getColumnPaths({barXPosition:m,barWidth:f,y1:Z,y2:p,yRatio:this.yRatio[this.yaxisIndex],strokeWidth:this.strokeWidth,series:this.series,seriesGroup:x,realIndex:d.realIndex,i:N,j:L,w:$});return this.barHelpers.barBackground({bc:F,j:L,i:N,x1:m,x2:f,elSeries:I}),c+=w,{pathTo:ae.pathTo,pathFrom:ae.pathFrom,goalY:this.barHelpers.getGoalValues("y",null,k,N,L),barXPosition:m,x:$.globals.isXNumeric?c-w:c,y:p}}}]),a}(),Za=function(T){C(a,Sr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return b(a,[{key:"draw",value:function(i,d,c){var p=this,w=this.w,f=new _(this.ctx),k=w.globals.comboCharts?d:w.config.chart.type,M=new Ft(this.ctx);this.candlestickOptions=this.w.config.plotOptions.candlestick,this.boxOptions=this.w.config.plotOptions.boxPlot,this.isHorizontal=w.config.plotOptions.bar.horizontal;var x=new tt(this.ctx,w);i=x.getLogSeries(i),this.series=i,this.yRatio=x.getLogYRatios(this.yRatio),this.barHelpers.initVariables(i);for(var I=f.group({class:"apexcharts-".concat(k,"-series apexcharts-plot-series")}),$=function(L){p.isBoxPlot=w.config.chart.type==="boxPlot"||w.config.series[L].type==="boxPlot";var F,V,Z,m,y=void 0,j=void 0,R=[],K=[],Q=w.globals.comboCharts?c[L]:L,ot=f.group({class:"apexcharts-series",seriesName:H.escapeString(w.globals.seriesNames[Q]),rel:L+1,"data:realIndex":Q});p.ctx.series.addCollapsedClassToSeries(ot,Q),i[L].length>0&&(p.visibleI=p.visibleI+1);var it,vt;p.yRatio.length>1&&(p.yaxisIndex=Q);var zt=p.barHelpers.initialPositions();j=zt.y,it=zt.barHeight,V=zt.yDivision,m=zt.zeroW,y=zt.x,vt=zt.barWidth,F=zt.xDivision,Z=zt.zeroH,K.push(y+vt/2);for(var Mt=f.group({class:"apexcharts-datalabels","data:realIndex":Q}),Et=function(ae){var ie=p.barHelpers.getStrokeWidth(L,ae,Q),de=null,xe={indexes:{i:L,j:ae,realIndex:Q},x:y,y:j,strokeWidth:ie,elSeries:ot};de=p.isHorizontal?p.drawHorizontalBoxPaths(h(h({},xe),{},{yDivision:V,barHeight:it,zeroW:m})):p.drawVerticalBoxPaths(h(h({},xe),{},{xDivision:F,barWidth:vt,zeroH:Z})),j=de.y,y=de.x,ae>0&&K.push(y+vt/2),R.push(j),de.pathTo.forEach(function($e,je){var Rn=!p.isBoxPlot&&p.candlestickOptions.wick.useFillColor?de.color[je]:w.globals.stroke.colors[L],Ul=M.fillPath({seriesNumber:Q,dataPointIndex:ae,color:de.color[je],value:i[L][ae]});p.renderSeries({realIndex:Q,pathFill:Ul,lineFill:Rn,j:ae,i:L,pathFrom:de.pathFrom,pathTo:$e,strokeWidth:ie,elSeries:ot,x:y,y:j,series:i,barHeight:it,barWidth:vt,elDataLabelsWrap:Mt,visibleSeries:p.visibleI,type:w.config.chart.type})})},qt=0;qty.c&&(N=!1);var K=Math.min(y.o,y.c),Q=Math.max(y.o,y.c),ot=y.m;M.globals.isXNumeric&&(c=(M.globals.seriesX[m][$]-M.globals.minX)/this.xRatio-w/2);var it=c+w*this.visibleI;this.series[I][$]===void 0||this.series[I][$]===null?(K=f,Q=f):(K=f-K/Z,Q=f-Q/Z,j=f-y.h/Z,R=f-y.l/Z,ot=f-y.m/Z);var vt=x.move(it,f),zt=x.move(it+w/2,K);return M.globals.previousPaths.length>0&&(zt=this.getPreviousPath(m,$,!0)),vt=this.isBoxPlot?[x.move(it,K)+x.line(it+w/2,K)+x.line(it+w/2,j)+x.line(it+w/4,j)+x.line(it+w-w/4,j)+x.line(it+w/2,j)+x.line(it+w/2,K)+x.line(it+w,K)+x.line(it+w,ot)+x.line(it,ot)+x.line(it,K+k/2),x.move(it,ot)+x.line(it+w,ot)+x.line(it+w,Q)+x.line(it+w/2,Q)+x.line(it+w/2,R)+x.line(it+w-w/4,R)+x.line(it+w/4,R)+x.line(it+w/2,R)+x.line(it+w/2,Q)+x.line(it,Q)+x.line(it,ot)+"z"]:[x.move(it,Q)+x.line(it+w/2,Q)+x.line(it+w/2,j)+x.line(it+w/2,Q)+x.line(it+w,Q)+x.line(it+w,K)+x.line(it+w/2,K)+x.line(it+w/2,R)+x.line(it+w/2,K)+x.line(it,K)+x.line(it,Q-k/2)],zt+=x.move(it,K),M.globals.isXNumeric||(c+=p),{pathTo:vt,pathFrom:zt,x:c,y:Q,barXPosition:it,color:this.isBoxPlot?V:N?[L]:[F]}}},{key:"drawHorizontalBoxPaths",value:function(i){var d=i.indexes;i.x;var c=i.y,p=i.yDivision,w=i.barHeight,f=i.zeroW,k=i.strokeWidth,M=this.w,x=new _(this.ctx),I=d.i,$=d.j,N=this.boxOptions.colors.lower;this.isBoxPlot&&(N=[this.boxOptions.colors.lower,this.boxOptions.colors.upper]);var L=this.invertedYRatio,F=d.realIndex,V=this.getOHLCValue(F,$),Z=f,m=f,y=Math.min(V.o,V.c),j=Math.max(V.o,V.c),R=V.m;M.globals.isXNumeric&&(c=(M.globals.seriesX[F][$]-M.globals.minX)/this.invertedXRatio-w/2);var K=c+w*this.visibleI;this.series[I][$]===void 0||this.series[I][$]===null?(y=f,j=f):(y=f+y/L,j=f+j/L,Z=f+V.h/L,m=f+V.l/L,R=f+V.m/L);var Q=x.move(f,K),ot=x.move(y,K+w/2);return M.globals.previousPaths.length>0&&(ot=this.getPreviousPath(F,$,!0)),Q=[x.move(y,K)+x.line(y,K+w/2)+x.line(Z,K+w/2)+x.line(Z,K+w/2-w/4)+x.line(Z,K+w/2+w/4)+x.line(Z,K+w/2)+x.line(y,K+w/2)+x.line(y,K+w)+x.line(R,K+w)+x.line(R,K)+x.line(y+k/2,K),x.move(R,K)+x.line(R,K+w)+x.line(j,K+w)+x.line(j,K+w/2)+x.line(m,K+w/2)+x.line(m,K+w-w/4)+x.line(m,K+w/4)+x.line(m,K+w/2)+x.line(j,K+w/2)+x.line(j,K)+x.line(R,K)+"z"],ot+=x.move(y,K),M.globals.isXNumeric||(c+=p),{pathTo:Q,pathFrom:ot,x:j,y:c,barYPosition:K,color:N}}},{key:"getOHLCValue",value:function(i,d){var c=this.w;return{o:this.isBoxPlot?c.globals.seriesCandleH[i][d]:c.globals.seriesCandleO[i][d],h:this.isBoxPlot?c.globals.seriesCandleO[i][d]:c.globals.seriesCandleH[i][d],m:c.globals.seriesCandleM[i][d],l:this.isBoxPlot?c.globals.seriesCandleC[i][d]:c.globals.seriesCandleL[i][d],c:this.isBoxPlot?c.globals.seriesCandleL[i][d]:c.globals.seriesCandleC[i][d]}}}]),a}(),Jh=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"checkColorRange",value:function(){var s=this.w,a=!1,i=s.config.plotOptions[s.config.chart.type];return i.colorScale.ranges.length>0&&i.colorScale.ranges.map(function(d,c){d.from<=0&&(a=!0)}),a}},{key:"getShadeColor",value:function(s,a,i,d){var c=this.w,p=1,w=c.config.plotOptions[s].shadeIntensity,f=this.determineColor(s,a,i);c.globals.hasNegs||d?p=c.config.plotOptions[s].reverseNegativeShade?f.percent<0?f.percent/100*(1.25*w):(1-f.percent/100)*(1.25*w):f.percent<=0?1-(1+f.percent/100)*w:(1-f.percent/100)*w:(p=1-f.percent/100,s==="treemap"&&(p=(1-f.percent/100)*(1.25*w)));var k=f.color,M=new H;return c.config.plotOptions[s].enableShades&&(k=this.w.config.theme.mode==="dark"?H.hexToRgba(M.shadeColor(-1*p,f.color),c.config.fill.opacity):H.hexToRgba(M.shadeColor(p,f.color),c.config.fill.opacity)),{color:k,colorProps:f}}},{key:"determineColor",value:function(s,a,i){var d=this.w,c=d.globals.series[a][i],p=d.config.plotOptions[s],w=p.colorScale.inverse?i:a;p.distributed&&d.config.chart.type==="treemap"&&(w=i);var f=d.globals.colors[w],k=null,M=Math.min.apply(Math,E(d.globals.series[a])),x=Math.max.apply(Math,E(d.globals.series[a]));p.distributed||s!=="heatmap"||(M=d.globals.minY,x=d.globals.maxY),p.colorScale.min!==void 0&&(M=p.colorScale.mind.globals.maxY?p.colorScale.max:d.globals.maxY);var I=Math.abs(x)+Math.abs(M),$=100*c/(I===0?I-1e-6:I);return p.colorScale.ranges.length>0&&p.colorScale.ranges.map(function(N,L){if(c>=N.from&&c<=N.to){f=N.color,k=N.foreColor?N.foreColor:null,M=N.from,x=N.to;var F=Math.abs(x)+Math.abs(M);$=100*c/(F===0?F-1e-6:F)}}),{color:f,foreColor:k,percent:$}}},{key:"calculateDataLabels",value:function(s){var a=s.text,i=s.x,d=s.y,c=s.i,p=s.j,w=s.colorProps,f=s.fontSize,k=this.w.config.dataLabels,M=new _(this.ctx),x=new Rt(this.ctx),I=null;if(k.enabled){I=M.group({class:"apexcharts-data-labels"});var $=k.offsetX,N=k.offsetY,L=i+$,F=d+parseFloat(k.style.fontSize)/3+N;x.plotDataLabelsText({x:L,y:F,text:a,i:c,j:p,color:w.foreColor,parent:I,fontSize:f,dataLabelsConfig:k})}return I}},{key:"addListeners",value:function(s){var a=new _(this.ctx);s.node.addEventListener("mouseenter",a.pathMouseEnter.bind(this,s)),s.node.addEventListener("mouseleave",a.pathMouseLeave.bind(this,s)),s.node.addEventListener("mousedown",a.pathMouseDown.bind(this,s))}}]),T}(),L4=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w,this.xRatio=a.xRatio,this.yRatio=a.yRatio,this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.helpers=new Jh(s),this.rectRadius=this.w.config.plotOptions.heatmap.radius,this.strokeWidth=this.w.config.stroke.show?this.w.config.stroke.width:0}return b(T,[{key:"draw",value:function(s){var a=this.w,i=new _(this.ctx),d=i.group({class:"apexcharts-heatmap"});d.attr("clip-path","url(#gridRectMask".concat(a.globals.cuid,")"));var c=a.globals.gridWidth/a.globals.dataPoints,p=a.globals.gridHeight/a.globals.series.length,w=0,f=!1;this.negRange=this.helpers.checkColorRange();var k=s.slice();a.config.yaxis[0].reversed&&(f=!0,k.reverse());for(var M=f?0:k.length-1;f?M=0;f?M++:M--){var x=i.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:H.escapeString(a.globals.seriesNames[M]),rel:M+1,"data:realIndex":M});if(this.ctx.series.addCollapsedClassToSeries(x,M),a.config.chart.dropShadow.enabled){var I=a.config.chart.dropShadow;new W(this.ctx).dropShadow(x,I,M)}for(var $=0,N=a.config.plotOptions.heatmap.shadeIntensity,L=0;L-1&&this.pieClicked(I),i.config.dataLabels.enabled){var j=m.x,R=m.y,K=100*N/this.fullAngle+"%";if(N!==0&&i.config.plotOptions.pie.dataLabels.minAngleToShowLabelthis.fullAngle?a.endAngle=a.endAngle-(d+w):d+w=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle&&(f=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle-.01),Math.ceil(f)>this.fullAngle&&(f-=this.fullAngle);var k=Math.PI*(f-90)/180,M=a.centerX+c*Math.cos(w),x=a.centerY+c*Math.sin(w),I=a.centerX+c*Math.cos(k),$=a.centerY+c*Math.sin(k),N=H.polarToCartesian(a.centerX,a.centerY,a.donutSize,f),L=H.polarToCartesian(a.centerX,a.centerY,a.donutSize,p),F=d>180?1:0,V=["M",M,x,"A",c,c,0,F,1,I,$];return a.chartType==="donut"?[].concat(V,["L",N.x,N.y,"A",a.donutSize,a.donutSize,0,F,0,L.x,L.y,"L",M,x,"z"]).join(" "):a.chartType==="pie"||a.chartType==="polarArea"?[].concat(V,["L",a.centerX,a.centerY,"L",M,x]).join(" "):[].concat(V).join(" ")}},{key:"drawPolarElements",value:function(s){var a=this.w,i=new J(this.ctx),d=new _(this.ctx),c=new t2(this.ctx),p=d.group(),w=d.group(),f=i.niceScale(0,Math.ceil(this.maxY),a.config.yaxis[0].tickAmount,0,!0),k=f.result.reverse(),M=f.result.length;this.maxY=f.niceMax;for(var x=a.globals.radialSize,I=x/(M-1),$=0;$1&&s.total.show&&(c=s.total.color);var w=p.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),f=p.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");i=(0,s.value.formatter)(i,p),d||typeof s.total.formatter!="function"||(i=s.total.formatter(p));var k=a===s.total.label;a=s.name.formatter(a,k,p),w!==null&&(w.textContent=a),f!==null&&(f.textContent=i),w!==null&&(w.style.fill=c)}},{key:"printDataLabelsInner",value:function(s,a){var i=this.w,d=s.getAttribute("data:value"),c=i.globals.seriesNames[parseInt(s.parentNode.getAttribute("rel"),10)-1];i.globals.series.length>1&&this.printInnerLabels(a,c,d,s);var p=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");p!==null&&(p.style.opacity=1)}},{key:"drawSpokes",value:function(s){var a=this,i=this.w,d=new _(this.ctx),c=i.config.plotOptions.polarArea.spokes;if(c.strokeWidth!==0){for(var p=[],w=360/i.globals.series.length,f=0;f1)w&&!a.total.showAlways?k({makeSliceOut:!1,printLabel:!0}):this.printInnerLabels(a,a.total.label,a.total.formatter(c));else if(k({makeSliceOut:!1,printLabel:!0}),!w)if(c.globals.selectedDataPoints.length&&c.globals.series.length>1)if(c.globals.selectedDataPoints[0].length>0){var M=c.globals.selectedDataPoints[0],x=c.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(M));this.printDataLabelsInner(x,a)}else p&&c.globals.selectedDataPoints.length&&c.globals.selectedDataPoints[0].length===0&&(p.style.opacity=0);else p&&c.globals.series.length>1&&(p.style.opacity=0)}}]),T}(),D4=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animDur=0;var a=this.w;this.graphics=new _(this.ctx),this.lineColorArr=a.globals.stroke.colors!==void 0?a.globals.stroke.colors:a.globals.colors,this.defaultSize=a.globals.svgHeight0&&(R=a.getPreviousPath(V));for(var K=0;K=10?s.x>0?(i="start",d+=10):s.x<0&&(i="end",d-=10):i="middle",Math.abs(s.y)>=a-10&&(s.y<0?c-=10:s.y>0&&(c+=10)),{textAnchor:i,newX:d,newY:c}}},{key:"getPreviousPath",value:function(s){for(var a=this.w,i=null,d=0;d0&&parseInt(c.realIndex,10)===parseInt(s,10)&&a.globals.previousPaths[d].paths[0]!==void 0&&(i=a.globals.previousPaths[d].paths[0].d)}return i}},{key:"getDataPointsPos",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:this.dataPointsLen;s=s||[],a=a||[];for(var d=[],c=0;c=360&&(L=360-Math.abs(this.startAngle)-.1);var F=c.drawPath({d:"",stroke:$,strokeWidth:k*parseInt(I.strokeWidth,10)/100,fill:"none",strokeOpacity:I.opacity,classes:"apexcharts-radialbar-area"});if(I.dropShadow.enabled){var V=I.dropShadow;w.dropShadow(F,V)}x.add(F),F.attr("id","apexcharts-radialbarTrack-"+M),this.animatePaths(F,{centerX:i.centerX,centerY:i.centerY,endAngle:L,startAngle:N,size:i.size,i:M,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:d.globals.easing})}return p}},{key:"drawArcs",value:function(i){var d=this.w,c=new _(this.ctx),p=new Ft(this.ctx),w=new W(this.ctx),f=c.group(),k=this.getStrokeWidth(i);i.size=i.size-k/2;var M=d.config.plotOptions.radialBar.hollow.background,x=i.size-k*i.series.length-this.margin*i.series.length-k*parseInt(d.config.plotOptions.radialBar.track.strokeWidth,10)/100/2,I=x-d.config.plotOptions.radialBar.hollow.margin;d.config.plotOptions.radialBar.hollow.image!==void 0&&(M=this.drawHollowImage(i,f,x,M));var $=this.drawHollow({size:I,centerX:i.centerX,centerY:i.centerY,fill:M||"transparent"});if(d.config.plotOptions.radialBar.hollow.dropShadow.enabled){var N=d.config.plotOptions.radialBar.hollow.dropShadow;w.dropShadow($,N)}var L=1;!this.radialDataLabels.total.show&&d.globals.series.length>1&&(L=0);var F=null;this.radialDataLabels.show&&(F=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:x,centerX:i.centerX,centerY:i.centerY,opacity:L})),d.config.plotOptions.radialBar.hollow.position==="back"&&(f.add($),F&&f.add(F));var V=!1;d.config.plotOptions.radialBar.inverseOrder&&(V=!0);for(var Z=V?i.series.length-1:0;V?Z>=0:Z100?100:i.series[Z])/100,Q=Math.round(this.totalAngle*K)+this.startAngle,ot=void 0;d.globals.dataChanged&&(R=this.startAngle,ot=Math.round(this.totalAngle*H.negToZero(d.globals.previousPaths[Z])/100)+R),Math.abs(Q)+Math.abs(j)>=360&&(Q-=.01),Math.abs(ot)+Math.abs(R)>=360&&(ot-=.01);var it=Q-j,vt=Array.isArray(d.config.stroke.dashArray)?d.config.stroke.dashArray[Z]:d.config.stroke.dashArray,zt=c.drawPath({d:"",stroke:y,strokeWidth:k,fill:"none",fillOpacity:d.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+Z,strokeDashArray:vt});if(_.setAttrs(zt.node,{"data:angle":it,"data:value":i.series[Z]}),d.config.chart.dropShadow.enabled){var Mt=d.config.chart.dropShadow;w.dropShadow(zt,Mt,Z)}w.setSelectionFilter(zt,0,Z),this.addListeners(zt,this.radialDataLabels),m.add(zt),zt.attr({index:0,j:Z});var Et=0;!this.initialAnim||d.globals.resized||d.globals.dataChanged||(Et=d.config.chart.animations.speed),d.globals.dataChanged&&(Et=d.config.chart.animations.dynamicAnimation.speed),this.animDur=Et/(1.2*i.series.length)+this.animDur,this.animBeginArr.push(this.animDur),this.animatePaths(zt,{centerX:i.centerX,centerY:i.centerY,endAngle:Q,startAngle:j,prevEndAngle:ot,prevStartAngle:R,size:i.size,i:Z,totalItems:2,animBeginArr:this.animBeginArr,dur:Et,shouldSetPrevPaths:!0,easing:d.globals.easing})}return{g:f,elHollow:$,dataLabels:F}}},{key:"drawHollow",value:function(i){var d=new _(this.ctx).drawCircle(2*i.size);return d.attr({class:"apexcharts-radialbar-hollow",cx:i.centerX,cy:i.centerY,r:i.size,fill:i.fill}),d}},{key:"drawHollowImage",value:function(i,d,c,p){var w=this.w,f=new Ft(this.ctx),k=H.randomId(),M=w.config.plotOptions.radialBar.hollow.image;if(w.config.plotOptions.radialBar.hollow.imageClipped)f.clippedImgArea({width:c,height:c,image:M,patternID:"pattern".concat(w.globals.cuid).concat(k)}),p="url(#pattern".concat(w.globals.cuid).concat(k,")");else{var x=w.config.plotOptions.radialBar.hollow.imageWidth,I=w.config.plotOptions.radialBar.hollow.imageHeight;if(x===void 0&&I===void 0){var $=w.globals.dom.Paper.image(M).loaded(function(L){this.move(i.centerX-L.width/2+w.config.plotOptions.radialBar.hollow.imageOffsetX,i.centerY-L.height/2+w.config.plotOptions.radialBar.hollow.imageOffsetY)});d.add($)}else{var N=w.globals.dom.Paper.image(M).loaded(function(L){this.move(i.centerX-x/2+w.config.plotOptions.radialBar.hollow.imageOffsetX,i.centerY-I/2+w.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(x,I)});d.add(N)}}return p}},{key:"getStrokeWidth",value:function(i){var d=this.w;return i.size*(100-parseInt(d.config.plotOptions.radialBar.hollow.size,10))/100/(i.series.length+1)-this.margin}}]),a}(),O4=function(T){C(a,Sr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return b(a,[{key:"draw",value:function(i,d){var c=this.w,p=new _(this.ctx);this.rangeBarOptions=this.w.config.plotOptions.rangeBar,this.series=i,this.seriesRangeStart=c.globals.seriesRangeStart,this.seriesRangeEnd=c.globals.seriesRangeEnd,this.barHelpers.initVariables(i);for(var w=p.group({class:"apexcharts-rangebar-series apexcharts-plot-series"}),f=0;f0&&(this.visibleI=this.visibleI+1);var V=0,Z=0;this.yRatio.length>1&&(this.yaxisIndex=L);var m=this.barHelpers.initialPositions();N=m.y,I=m.zeroW,$=m.x,Z=m.barWidth,V=m.barHeight,k=m.xDivision,M=m.yDivision,x=m.zeroH;for(var y=p.group({class:"apexcharts-datalabels","data:realIndex":L}),j=p.group({class:"apexcharts-rangebar-goals-markers"}),R=0;R0});return this.isHorizontal?(p=L.config.plotOptions.bar.rangeBarGroupRows?f+I*y:f+M*this.visibleI+I*y,j>-1&&!L.config.plotOptions.bar.rangeBarOverlap&&(F=L.globals.seriesRange[d][j].overlaps).indexOf(V)>-1&&(p=(M=N.barHeight/F.length)*this.visibleI+I*(100-parseInt(this.barOptions.barHeight,10))/100/2+M*(this.visibleI+F.indexOf(V))+I*y)):(y>-1&&(w=L.config.plotOptions.bar.rangeBarGroupRows?k+$*y:k+x*this.visibleI+$*y),j>-1&&!L.config.plotOptions.bar.rangeBarOverlap&&(F=L.globals.seriesRange[d][j].overlaps).indexOf(V)>-1&&(w=(x=N.barWidth/F.length)*this.visibleI+$*(100-parseInt(this.barOptions.barWidth,10))/100/2+x*(this.visibleI+F.indexOf(V))+$*y)),{barYPosition:p,barXPosition:w,barHeight:M,barWidth:x}}},{key:"drawRangeColumnPaths",value:function(i){var d=i.indexes,c=i.x,p=i.xDivision,w=i.barWidth,f=i.barXPosition,k=i.zeroH,M=this.w,x=d.i,I=d.j,$=this.yRatio[this.yaxisIndex],N=d.realIndex,L=this.getRangeValue(N,I),F=Math.min(L.start,L.end),V=Math.max(L.start,L.end);this.series[x][I]===void 0||this.series[x][I]===null?F=k:(F=k-F/$,V=k-V/$);var Z=Math.abs(V-F),m=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:w,y1:F,y2:V,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,realIndex:d.realIndex,i:N,j:I,w:M});return M.globals.isXNumeric||(c+=p),{pathTo:m.pathTo,pathFrom:m.pathFrom,barHeight:Z,x:c,y:V,goalY:this.barHelpers.getGoalValues("y",null,k,x,I),barXPosition:f}}},{key:"drawRangeBarPaths",value:function(i){var d=i.indexes,c=i.y,p=i.y1,w=i.y2,f=i.yDivision,k=i.barHeight,M=i.barYPosition,x=i.zeroW,I=this.w,$=x+p/this.invertedYRatio,N=x+w/this.invertedYRatio,L=Math.abs(N-$),F=this.barHelpers.getBarpaths({barYPosition:M,barHeight:k,x1:$,x2:N,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,i:d.realIndex,realIndex:d.realIndex,j:d.j,w:I});return I.globals.isXNumeric||(c+=f),{pathTo:F.pathTo,pathFrom:F.pathFrom,barWidth:L,x:N,goalX:this.barHelpers.getGoalValues("x",x,null,d.realIndex,d.j),y:c}}},{key:"getRangeValue",value:function(i,d){var c=this.w;return{start:c.globals.seriesRangeStart[i][d],end:c.globals.seriesRangeEnd[i][d]}}}]),a}(),T4=function(){function T(s){g(this,T),this.w=s.w,this.lineCtx=s}return b(T,[{key:"sameValueSeriesFix",value:function(s,a){var i=this.w;if((i.config.fill.type==="gradient"||i.config.fill.type[s]==="gradient")&&new tt(this.lineCtx.ctx,i).seriesHaveSameValues(s)){var d=a[s].slice();d[d.length-1]=d[d.length-1]+1e-6,a[s]=d}return a}},{key:"calculatePoints",value:function(s){var a=s.series,i=s.realIndex,d=s.x,c=s.y,p=s.i,w=s.j,f=s.prevY,k=this.w,M=[],x=[];if(w===0){var I=this.lineCtx.categoryAxisCorrection+k.config.markers.offsetX;k.globals.isXNumeric&&(I=(k.globals.seriesX[i][0]-k.globals.minX)/this.lineCtx.xRatio+k.config.markers.offsetX),M.push(I),x.push(H.isNumber(a[p][0])?f+k.config.markers.offsetY:null),M.push(d+k.config.markers.offsetX),x.push(H.isNumber(a[p][w+1])?c+k.config.markers.offsetY:null)}else M.push(d+k.config.markers.offsetX),x.push(H.isNumber(a[p][w+1])?c+k.config.markers.offsetY:null);return{x:M,y:x}}},{key:"checkPreviousPaths",value:function(s){for(var a=s.pathFromLine,i=s.pathFromArea,d=s.realIndex,c=this.w,p=0;p0&&parseInt(w.realIndex,10)===parseInt(d,10)&&(w.type==="line"?(this.lineCtx.appendPathFrom=!1,a=c.globals.previousPaths[p].paths[0].d):w.type==="area"&&(this.lineCtx.appendPathFrom=!1,i=c.globals.previousPaths[p].paths[0].d,c.config.stroke.show&&c.globals.previousPaths[p].paths[1]&&(a=c.globals.previousPaths[p].paths[1].d)))}return{pathFromLine:a,pathFromArea:i}}},{key:"determineFirstPrevY",value:function(s){var a,i=s.i,d=s.series,c=s.prevY,p=s.lineYPosition,w=this.w;if(((a=d[i])===null||a===void 0?void 0:a[0])!==void 0)c=(p=w.config.chart.stacked&&i>0?this.lineCtx.prevSeriesY[i-1][0]:this.lineCtx.zeroY)-d[i][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]+2*(this.lineCtx.isReversed?d[i][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]:0);else if(w.config.chart.stacked&&i>0&&d[i][0]===void 0){for(var f=i-1;f>=0;f--)if(d[f][0]!==null&&d[f][0]!==void 0){c=p=this.lineCtx.prevSeriesY[f][0];break}}return{prevY:c,lineYPosition:p}}}]),T}(),R4=function(T){for(var s,a,i,d,c=function(M){for(var x=[],I=M[0],$=M[1],N=x[0]=Qa(I,$),L=1,F=M.length-1;L9&&(d=3*i/Math.sqrt(d),c[f]=d*s,c[f+1]=d*a);for(var k=0;k<=p;k++)d=(T[Math.min(p,k+1)][0]-T[Math.max(0,k-1)][0])/(6*(1+c[k]*c[k])),w.push([d||0,c[k]*d||0]);return w},Ka=function(T){for(var s="",a=0;a4?(s+="C".concat(i[0],", ").concat(i[1]),s+=", ".concat(i[2],", ").concat(i[3]),s+=", ".concat(i[4],", ").concat(i[5])):d>2&&(s+="S".concat(i[0],", ").concat(i[1]),s+=", ".concat(i[2],", ").concat(i[3]))}return s},n2=function(T){var s=R4(T),a=T[1],i=T[0],d=[],c=s[1],p=s[0];d.push(i,[i[0]+p[0],i[1]+p[1],a[0]-c[0],a[1]-c[1],a[0],a[1]]);for(var w=2,f=s.length;w0&&(F=(c.globals.seriesX[I][0]-c.globals.minX)/this.xRatio),L.push(F);var V,Z=F,m=void 0,y=Z,j=this.zeroY,R=this.zeroY;j=this.lineHelpers.determineFirstPrevY({i:x,series:s,prevY:j,lineYPosition:0}).prevY,$.push(j),V=j,w==="rangeArea"&&(m=R=this.lineHelpers.determineFirstPrevY({i:x,series:d,prevY:R,lineYPosition:0}).prevY,N.push(R));var K={type:w,series:s,realIndex:I,i:x,x:F,y:1,pX:Z,pY:V,pathsFrom:this._calculatePathsFrom({type:w,series:s,i:x,realIndex:I,prevX:y,prevY:j,prevY2:R}),linePaths:[],areaPaths:[],seriesIndex:i,lineYPosition:0,xArrj:L,yArrj:$,y2Arrj:N,seriesRangeEnd:d},Q=this._iterateOverDataPoints(h(h({},K),{},{iterations:w==="rangeArea"?s[x].length-1:void 0,isRangeStart:!0}));if(w==="rangeArea"){var ot=this._calculatePathsFrom({series:d,i:x,realIndex:I,prevX:y,prevY:R}),it=this._iterateOverDataPoints(h(h({},K),{},{series:d,pY:m,pathsFrom:ot,iterations:d[x].length-1,isRangeStart:!1}));Q.linePaths[0]=it.linePath+Q.linePath,Q.pathFromLine=it.pathFromLine+Q.pathFromLine}this._handlePaths({type:w,realIndex:I,i:x,paths:Q}),this.elSeries.add(this.elPointsMain),this.elSeries.add(this.elDataLabelsWrap),M.push(this.elSeries)}if(c.config.chart.stacked)for(var vt=M.length;vt>0;vt--)f.add(M[vt-1]);else for(var zt=0;zt1&&(this.yaxisIndex=i),this.isReversed=d.config.yaxis[this.yaxisIndex]&&d.config.yaxis[this.yaxisIndex].reversed,this.zeroY=d.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?d.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),this.areaBottomY=this.zeroY,(this.zeroY>d.globals.gridHeight||d.config.plotOptions.area.fillTo==="end")&&(this.areaBottomY=d.globals.gridHeight),this.categoryAxisCorrection=this.xDivision/2,this.elSeries=c.group({class:"apexcharts-series",seriesName:H.escapeString(d.globals.seriesNames[i])}),this.elPointsMain=c.group({class:"apexcharts-series-markers-wrap","data:realIndex":i}),this.elDataLabelsWrap=c.group({class:"apexcharts-datalabels","data:realIndex":i});var p=s[a].length===d.globals.dataPoints;this.elSeries.attr({"data:longestSeries":p,rel:a+1,"data:realIndex":i}),this.appendPathFrom=!0}},{key:"_calculatePathsFrom",value:function(s){var a,i,d,c,p=s.type,w=s.series,f=s.i,k=s.realIndex,M=s.prevX,x=s.prevY,I=s.prevY2,$=this.w,N=new _(this.ctx);if(w[f][0]===null){for(var L=0;L0){var F=this.lineHelpers.checkPreviousPaths({pathFromLine:d,pathFromArea:c,realIndex:k});d=F.pathFromLine,c=F.pathFromArea}return{prevX:M,prevY:x,linePath:a,areaPath:i,pathFromLine:d,pathFromArea:c}}},{key:"_handlePaths",value:function(s){var a=s.type,i=s.realIndex,d=s.i,c=s.paths,p=this.w,w=new _(this.ctx),f=new Ft(this.ctx);this.prevSeriesY.push(c.yArrj),p.globals.seriesXvalues[i]=c.xArrj,p.globals.seriesYvalues[i]=c.yArrj;var k=p.config.forecastDataPoints;if(k.count>0&&a!=="rangeArea"){var M=p.globals.seriesXvalues[i][p.globals.seriesXvalues[i].length-k.count-1],x=w.drawRect(M,0,p.globals.gridWidth,p.globals.gridHeight,0);p.globals.dom.elForecastMask.appendChild(x.node);var I=w.drawRect(0,0,M,p.globals.gridHeight,0);p.globals.dom.elNonForecastMask.appendChild(I.node)}this.pointsChart||p.globals.delayedElements.push({el:this.elPointsMain.node,index:i});var $={i:d,realIndex:i,animationDelay:d,initialSpeed:p.config.chart.animations.speed,dataChangeSpeed:p.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(a)};if(a==="area")for(var N=f.fillPath({seriesNumber:i}),L=0;L0&&a!=="rangeArea"){var K=w.renderPaths(j);K.node.setAttribute("stroke-dasharray",k.dashArray),k.strokeWidth&&K.node.setAttribute("stroke-width",k.strokeWidth),this.elSeries.add(K),K.attr("clip-path","url(#forecastMask".concat(p.globals.cuid,")")),R.attr("clip-path","url(#nonForecastMask".concat(p.globals.cuid,")"))}}}}},{key:"_iterateOverDataPoints",value:function(s){var a=s.type,i=s.series,d=s.iterations,c=s.realIndex,p=s.i,w=s.x,f=s.y,k=s.pX,M=s.pY,x=s.pathsFrom,I=s.linePaths,$=s.areaPaths,N=s.seriesIndex,L=s.lineYPosition,F=s.xArrj,V=s.yArrj,Z=s.y2Arrj,m=s.isRangeStart,y=s.seriesRangeEnd,j=this.w,R=new _(this.ctx),K=this.yRatio,Q=x.prevY,ot=x.linePath,it=x.areaPath,vt=x.pathFromLine,zt=x.pathFromArea,Mt=H.isNumber(j.globals.minYArr[c])?j.globals.minYArr[c]:j.globals.minY;d||(d=j.globals.dataPoints>1?j.globals.dataPoints-1:j.globals.dataPoints);for(var Et=f,qt=0;qt0&&j.globals.collapsedSeries.length-1){je--;break}return je>=0?je:0}(p-1)][qt+1]:L=this.zeroY:L=this.zeroY,ae?f=L-Mt/K[this.yaxisIndex]+2*(this.isReversed?Mt/K[this.yaxisIndex]:0):(f=L-i[p][qt+1]/K[this.yaxisIndex]+2*(this.isReversed?i[p][qt+1]/K[this.yaxisIndex]:0),a==="rangeArea"&&(Et=L-y[p][qt+1]/K[this.yaxisIndex]+2*(this.isReversed?y[p][qt+1]/K[this.yaxisIndex]:0))),F.push(w),V.push(f),Z.push(Et);var de=this.lineHelpers.calculatePoints({series:i,x:w,y:f,realIndex:c,i:p,j:qt,prevY:Q}),xe=this._createPaths({type:a,series:i,i:p,realIndex:c,j:qt,x:w,y:f,y2:Et,xArrj:F,yArrj:V,y2Arrj:Z,pX:k,pY:M,linePath:ot,areaPath:it,linePaths:I,areaPaths:$,seriesIndex:N,isRangeStart:m});$=xe.areaPaths,I=xe.linePaths,k=xe.pX,M=xe.pY,it=xe.areaPath,ot=xe.linePath,!this.appendPathFrom||j.config.stroke.curve==="monotoneCubic"&&a==="rangeArea"||(vt+=R.line(w,this.zeroY),zt+=R.line(w,this.zeroY)),this.handleNullDataPoints(i,de,p,qt,c),this._handleMarkersAndLabels({type:a,pointsPos:de,i:p,j:qt,realIndex:c,isRangeStart:m})}return{yArrj:V,xArrj:F,pathFromArea:zt,areaPaths:$,pathFromLine:vt,linePaths:I,linePath:ot,areaPath:it}}},{key:"_handleMarkersAndLabels",value:function(s){var a=s.type,i=s.pointsPos,d=s.isRangeStart,c=s.i,p=s.j,w=s.realIndex,f=this.w,k=new Rt(this.ctx);if(this.pointsChart)this.scatter.draw(this.elSeries,p,{realIndex:w,pointsPos:i,zRatio:this.zRatio,elParent:this.elPointsMain});else{f.globals.series[c].length>1&&this.elPointsMain.node.classList.add("apexcharts-element-hidden");var M=this.markers.plotChartMarkers(i,w,p+1);M!==null&&this.elPointsMain.add(M)}var x=k.drawDataLabel({type:a,isRangeStart:d,pos:i,i:w,j:p+1});x!==null&&this.elDataLabelsWrap.add(x)}},{key:"_createPaths",value:function(s){var a=s.type,i=s.series,d=s.i,c=s.realIndex,p=s.j,w=s.x,f=s.y,k=s.xArrj,M=s.yArrj,x=s.y2,I=s.y2Arrj,$=s.pX,N=s.pY,L=s.linePath,F=s.areaPath,V=s.linePaths,Z=s.areaPaths,m=s.seriesIndex,y=s.isRangeStart,j=this.w,R=new _(this.ctx),K=j.config.stroke.curve,Q=this.areaBottomY;if(Array.isArray(j.config.stroke.curve)&&(K=Array.isArray(m)?j.config.stroke.curve[m[d]]:j.config.stroke.curve[d]),(a==="rangeArea"&&(j.globals.hasNullValues||j.config.forecastDataPoints.count>0)||j.globals.hasNullValues)&&K==="monotoneCubic"&&(K="straight"),K==="smooth"){var ot=.35*(w-$);j.globals.hasNullValues?(i[d][p]!==null&&(i[d][p+1]!==null?(L=R.move($,N)+R.curve($+ot,N,w-ot,f,w+1,f),F=R.move($+1,N)+R.curve($+ot,N,w-ot,f,w+1,f)+R.line(w,Q)+R.line($,Q)+"z"):(L=R.move($,N),F=R.move($,N)+"z")),V.push(L),Z.push(F)):(L+=R.curve($+ot,N,w-ot,f,w,f),F+=R.curve($+ot,N,w-ot,f,w,f)),$=w,N=f,p===i[d].length-2&&(F+=R.curve($,N,w,f,w,Q)+R.move(w,f)+"z",a==="rangeArea"&&y?L+=R.curve($,N,w,f,w,x)+R.move(w,x)+"z":j.globals.hasNullValues||(V.push(L),Z.push(F)))}else if(K==="monotoneCubic"){if(a==="rangeArea"?k.length===j.globals.dataPoints:p===i[d].length-2){var it=k.map(function(ie,de){return[k[de],M[de]]}),vt=n2(it);if(L+=Ka(vt),F+=Ka(vt),$=w,N=f,a==="rangeArea"&&y){L+=R.line(k[k.length-1],I[I.length-1]);var zt=k.slice().reverse(),Mt=I.slice().reverse(),Et=zt.map(function(ie,de){return[zt[de],Mt[de]]}),qt=n2(Et);F=L+=Ka(qt)}else F+=R.curve($,N,w,f,w,Q)+R.move(w,f)+"z";V.push(L),Z.push(F)}}else{if(i[d][p+1]===null){L+=R.move(w,f);var ae=j.globals.isXNumeric?(j.globals.seriesX[c][p]-j.globals.minX)/this.xRatio:w-this.xDivision;F=F+R.line(ae,Q)+R.move(w,f)+"z"}i[d][p]===null&&(L+=R.move(w,f),F+=R.move(w,Q)),K==="stepline"?(L=L+R.line(w,null,"H")+R.line(null,f,"V"),F=F+R.line(w,null,"H")+R.line(null,f,"V")):K==="straight"&&(L+=R.line(w,f),F+=R.line(w,f)),p===i[d].length-2&&(F=F+R.line(w,Q)+R.move(w,f)+"z",a==="rangeArea"&&y?L=L+R.line(w,x)+R.move(w,x)+"z":(V.push(L),Z.push(F)))}return{linePaths:V,areaPaths:Z,pX:$,pY:N,linePath:L,areaPath:F}}},{key:"handleNullDataPoints",value:function(s,a,i,d,c){var p=this.w;if(s[i][d]===null&&p.config.markers.showNullDataPoints||s[i].length===1){var w=this.markers.plotChartMarkers(a,c,d+1,this.strokeWidth-p.config.markers.strokeWidth/2,!0);w!==null&&this.elPointsMain.add(w)}}}]),T}();window.TreemapSquared={},window.TreemapSquared.generate=function(){function T(w,f,k,M){this.xoffset=w,this.yoffset=f,this.height=M,this.width=k,this.shortestEdge=function(){return Math.min(this.height,this.width)},this.getCoordinates=function(x){var I,$=[],N=this.xoffset,L=this.yoffset,F=c(x)/this.height,V=c(x)/this.width;if(this.width>=this.height)for(I=0;I=this.height){var $=x/this.height,N=this.width-$;I=new T(this.xoffset+$,this.yoffset,N,this.height)}else{var L=x/this.width,F=this.height-L;I=new T(this.xoffset,this.yoffset+L,this.width,F)}return I}}function s(w,f,k,M,x){M=M===void 0?0:M,x=x===void 0?0:x;var I=a(function($,N){var L,F=[],V=N/c($);for(L=0;L<$.length;L++)F[L]=$[L]*V;return F}(w,f*k),[],new T(M,x,f,k),[]);return function($){var N,L,F=[];for(N=0;N<$.length;N++)for(L=0;L<$[N].length;L++)F.push($[N][L]);return F}(I)}function a(w,f,k,M){var x,I,$;if(w.length!==0)return x=k.shortestEdge(),function(N,L,F){var V;if(N.length===0)return!0;(V=N.slice()).push(L);var Z=i(N,F),m=i(V,F);return Z>=m}(f,I=w[0],x)?(f.push(I),a(w.slice(1),f,k,M)):($=k.cutArea(c(f),M),M.push(k.getCoordinates(f)),a(w,[],$,M)),M;M.push(k.getCoordinates(f))}function i(w,f){var k=Math.min.apply(Math,w),M=Math.max.apply(Math,w),x=c(w);return Math.max(Math.pow(f,2)*M/Math.pow(x,2),Math.pow(x,2)/(Math.pow(f,2)*k))}function d(w){return w&&w.constructor===Array}function c(w){var f,k=0;for(f=0;fp-d&&k.width<=w-c){var M=f.rotateAroundCenter(s.node);s.node.setAttribute("transform","rotate(-90 ".concat(M.x," ").concat(M.y,") translate(").concat(k.height/3,")"))}}},{key:"truncateLabels",value:function(s,a,i,d,c,p){var w=new _(this.ctx),f=w.getTextRects(s,a).width+this.w.config.stroke.width+5>c-i&&p-d>c-i?p-d:c-i,k=w.getTextBasedOnMaxWidth({text:s,maxWidth:f,fontSize:a});return s.length!==k.length&&f/a<5?"":k}},{key:"animateTreemap",value:function(s,a,i,d){var c=new U(this.ctx);c.animateRect(s,{x:a.x,y:a.y,width:a.width,height:a.height},{x:i.x,y:i.y,width:i.width,height:i.height},d,function(){c.animationCompleted(s)})}}]),T}(),V4=86400,_4=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.timeScaleArray=[],this.utc=this.w.config.xaxis.labels.datetimeUTC}return b(T,[{key:"calculateTimeScaleTicks",value:function(s,a){var i=this,d=this.w;if(d.globals.allSeriesCollapsed)return d.globals.labels=[],d.globals.timescaleLabels=[],[];var c=new dt(this.ctx),p=(a-s)/864e5;this.determineInterval(p),d.globals.disableZoomIn=!1,d.globals.disableZoomOut=!1,p<.00011574074074074075?d.globals.disableZoomIn=!0:p>5e4&&(d.globals.disableZoomOut=!0);var w=c.getTimeUnitsfromTimestamp(s,a,this.utc),f=d.globals.gridWidth/p,k=f/24,M=k/60,x=M/60,I=Math.floor(24*p),$=Math.floor(1440*p),N=Math.floor(p*V4),L=Math.floor(p),F=Math.floor(p/30),V=Math.floor(p/365),Z={minMillisecond:w.minMillisecond,minSecond:w.minSecond,minMinute:w.minMinute,minHour:w.minHour,minDate:w.minDate,minMonth:w.minMonth,minYear:w.minYear},m={firstVal:Z,currentMillisecond:Z.minMillisecond,currentSecond:Z.minSecond,currentMinute:Z.minMinute,currentHour:Z.minHour,currentMonthDate:Z.minDate,currentDate:Z.minDate,currentMonth:Z.minMonth,currentYear:Z.minYear,daysWidthOnXAxis:f,hoursWidthOnXAxis:k,minutesWidthOnXAxis:M,secondsWidthOnXAxis:x,numberOfSeconds:N,numberOfMinutes:$,numberOfHours:I,numberOfDays:L,numberOfMonths:F,numberOfYears:V};switch(this.tickInterval){case"years":this.generateYearScale(m);break;case"months":case"half_year":this.generateMonthScale(m);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(m);break;case"hours":this.generateHourScale(m);break;case"minutes_fives":case"minutes":this.generateMinuteScale(m);break;case"seconds_tens":case"seconds_fives":case"seconds":this.generateSecondScale(m)}var y=this.timeScaleArray.map(function(j){var R={position:j.position,unit:j.unit,year:j.year,day:j.day?j.day:1,hour:j.hour?j.hour:0,month:j.month+1};return j.unit==="month"?h(h({},R),{},{day:1,value:j.value+1}):j.unit==="day"||j.unit==="hour"?h(h({},R),{},{value:j.value}):j.unit==="minute"?h(h({},R),{},{value:j.value,minute:j.value}):j.unit==="second"?h(h({},R),{},{value:j.value,minute:j.minute,second:j.second}):j});return y.filter(function(j){var R=1,K=Math.ceil(d.globals.gridWidth/120),Q=j.value;d.config.xaxis.tickAmount!==void 0&&(K=d.config.xaxis.tickAmount),y.length>K&&(R=Math.floor(y.length/K));var ot=!1,it=!1;switch(i.tickInterval){case"years":j.unit==="year"&&(ot=!0);break;case"half_year":R=7,j.unit==="year"&&(ot=!0);break;case"months":R=1,j.unit==="year"&&(ot=!0);break;case"months_fortnight":R=15,j.unit!=="year"&&j.unit!=="month"||(ot=!0),Q===30&&(it=!0);break;case"months_days":R=10,j.unit==="month"&&(ot=!0),Q===30&&(it=!0);break;case"week_days":R=8,j.unit==="month"&&(ot=!0);break;case"days":R=1,j.unit==="month"&&(ot=!0);break;case"hours":j.unit==="day"&&(ot=!0);break;case"minutes_fives":case"seconds_fives":Q%5!=0&&(it=!0);break;case"seconds_tens":Q%10!=0&&(it=!0)}if(i.tickInterval==="hours"||i.tickInterval==="minutes_fives"||i.tickInterval==="seconds_tens"||i.tickInterval==="seconds_fives"){if(!it)return!0}else if((Q%R==0||ot)&&!it)return!0})}},{key:"recalcDimensionsBasedOnFormat",value:function(s,a){var i=this.w,d=this.formatDates(s),c=this.removeOverlappingTS(d);i.globals.timescaleLabels=c.slice(),new se(this.ctx).plotCoords()}},{key:"determineInterval",value:function(s){var a=24*s,i=60*a;switch(!0){case s/365>5:this.tickInterval="years";break;case s>800:this.tickInterval="half_year";break;case s>180:this.tickInterval="months";break;case s>90:this.tickInterval="months_fortnight";break;case s>60:this.tickInterval="months_days";break;case s>30:this.tickInterval="week_days";break;case s>2:this.tickInterval="days";break;case a>2.4:this.tickInterval="hours";break;case i>15:this.tickInterval="minutes_fives";break;case i>5:this.tickInterval="minutes";break;case i>1:this.tickInterval="seconds_tens";break;case 60*i>20:this.tickInterval="seconds_fives";break;default:this.tickInterval="seconds"}}},{key:"generateYearScale",value:function(s){var a=s.firstVal,i=s.currentMonth,d=s.currentYear,c=s.daysWidthOnXAxis,p=s.numberOfYears,w=a.minYear,f=0,k=new dt(this.ctx),M="year";if(a.minDate>1||a.minMonth>0){var x=k.determineRemainingDaysOfYear(a.minYear,a.minMonth,a.minDate);f=(k.determineDaysOfYear(a.minYear)-x+1)*c,w=a.minYear+1,this.timeScaleArray.push({position:f,value:w,unit:M,year:w,month:H.monthMod(i+1)})}else a.minDate===1&&a.minMonth===0&&this.timeScaleArray.push({position:f,value:w,unit:M,year:d,month:H.monthMod(i+1)});for(var I=w,$=f,N=0;N1){k=(M.determineDaysOfMonths(d+1,a.minYear)-i+1)*p,f=H.monthMod(d+1);var $=c+I,N=H.monthMod(f),L=f;f===0&&(x="year",L=$,N=1,$+=I+=1),this.timeScaleArray.push({position:k,value:L,unit:x,year:$,month:N})}else this.timeScaleArray.push({position:k,value:f,unit:x,year:c,month:H.monthMod(d)});for(var F=f+1,V=k,Z=0,m=1;Zw.determineDaysOfMonths(y+1,j)&&(M=1,f="month",$=y+=1),y},I=(24-a.minHour)*c,$=k,N=x(M,i,d);a.minHour===0&&a.minDate===1?(I=0,$=H.monthMod(a.minMonth),f="month",M=a.minDate,p++):a.minDate!==1&&a.minHour===0&&a.minMinute===0&&(I=0,k=a.minDate,$=k,N=x(M=k,i,d)),this.timeScaleArray.push({position:I,value:$,unit:f,year:this._getYear(d,N,0),month:H.monthMod(N),day:M});for(var L=I,F=0;Ff.determineDaysOfMonths(K+1,c)&&(F=1,K+=1),{month:K,date:F}},x=function(R,K){return R>f.determineDaysOfMonths(K+1,c)?K+=1:K},I=60-(a.minMinute+a.minSecond/60),$=I*p,N=a.minHour+1,L=N+1;I===60&&($=0,L=(N=a.minHour)+1);var F=i,V=x(F,d);this.timeScaleArray.push({position:$,value:N,unit:k,day:F,hour:L,year:c,month:H.monthMod(V)});for(var Z=$,m=0;m=24&&(L=0,k="day",V=M(F+=1,V).month,V=x(F,V));var y=this._getYear(c,V,0);Z=60*p+Z;var j=L===0?F:L;this.timeScaleArray.push({position:Z,value:j,unit:k,hour:L,day:F,year:y,month:H.monthMod(V)}),L++}}},{key:"generateMinuteScale",value:function(s){for(var a=s.currentMillisecond,i=s.currentSecond,d=s.currentMinute,c=s.currentHour,p=s.currentDate,w=s.currentMonth,f=s.currentYear,k=s.minutesWidthOnXAxis,M=s.secondsWidthOnXAxis,x=s.numberOfMinutes,I=d+1,$=p,N=w,L=f,F=c,V=(60-i-a/1e3)*M,Z=0;Z=60&&(I=0,(F+=1)===24&&(F=0)),this.timeScaleArray.push({position:V,value:I,unit:"minute",hour:F,minute:I,day:$,year:this._getYear(L,N,0),month:H.monthMod(N)}),V+=k,I++}},{key:"generateSecondScale",value:function(s){for(var a=s.currentMillisecond,i=s.currentSecond,d=s.currentMinute,c=s.currentHour,p=s.currentDate,w=s.currentMonth,f=s.currentYear,k=s.secondsWidthOnXAxis,M=s.numberOfSeconds,x=i+1,I=d,$=p,N=w,L=f,F=c,V=(1e3-a)/1e3*k,Z=0;Z=60&&(x=0,++I>=60&&(I=0,++F===24&&(F=0))),this.timeScaleArray.push({position:V,value:x,unit:"second",hour:F,minute:I,second:x,day:$,year:this._getYear(L,N,0),month:H.monthMod(N)}),V+=k,x++}},{key:"createRawDateString",value:function(s,a){var i=s.year;return s.month===0&&(s.month=1),i+="-"+("0"+s.month.toString()).slice(-2),s.unit==="day"?i+=s.unit==="day"?"-"+("0"+a).slice(-2):"-01":i+="-"+("0"+(s.day?s.day:"1")).slice(-2),s.unit==="hour"?i+=s.unit==="hour"?"T"+("0"+a).slice(-2):"T00":i+="T"+("0"+(s.hour?s.hour:"0")).slice(-2),s.unit==="minute"?i+=":"+("0"+a).slice(-2):i+=":"+(s.minute?("0"+s.minute).slice(-2):"00"),s.unit==="second"?i+=":"+("0"+a).slice(-2):i+=":00",this.utc&&(i+=".000Z"),i}},{key:"formatDates",value:function(s){var a=this,i=this.w;return s.map(function(d){var c=d.value.toString(),p=new dt(a.ctx),w=a.createRawDateString(d,c),f=p.getDate(p.parseDate(w));if(a.utc||(f=p.getDate(p.parseDateWithTimezone(w))),i.config.xaxis.labels.format===void 0){var k="dd MMM",M=i.config.xaxis.labels.datetimeFormatter;d.unit==="year"&&(k=M.year),d.unit==="month"&&(k=M.month),d.unit==="day"&&(k=M.day),d.unit==="hour"&&(k=M.hour),d.unit==="minute"&&(k=M.minute),d.unit==="second"&&(k=M.second),c=p.formatDate(f,k)}else c=p.formatDate(f,i.config.xaxis.labels.format);return{dateString:w,position:d.position,value:c,unit:d.unit,year:d.year,month:d.month}})}},{key:"removeOverlappingTS",value:function(s){var a,i=this,d=new _(this.ctx),c=!1;s.length>0&&s[0].value&&s.every(function(f){return f.value.length===s[0].value.length})&&(c=!0,a=d.getTextRects(s[0].value).width);var p=0,w=s.map(function(f,k){if(k>0&&i.w.config.xaxis.labels.hideOverlappingLabels){var M=c?a:d.getTextRects(s[p].value).width,x=s[p].position;return f.position>x+M+10?(p=k,f):null}return f});return w=w.filter(function(f){return f!==null})}},{key:"_getYear",value:function(s,a,i){return s+Math.floor(a/12)+i}}]),T}(),W4=function(){function T(s,a){g(this,T),this.ctx=a,this.w=a.w,this.el=s}return b(T,[{key:"setupElements",value:function(){var s=this.w.globals,a=this.w.config,i=a.chart.type;s.axisCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble","radar","heatmap","treemap"].indexOf(i)>-1,s.xyCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble"].indexOf(i)>-1,s.isBarHorizontal=(a.chart.type==="bar"||a.chart.type==="rangeBar"||a.chart.type==="boxPlot")&&a.plotOptions.bar.horizontal,s.chartClass=".apexcharts"+s.chartID,s.dom.baseEl=this.el,s.dom.elWrap=document.createElement("div"),_.setAttrs(s.dom.elWrap,{id:s.chartClass.substring(1),class:"apexcharts-canvas "+s.chartClass.substring(1)}),this.el.appendChild(s.dom.elWrap),s.dom.Paper=new window.SVG.Doc(s.dom.elWrap),s.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(a.chart.offsetX,", ").concat(a.chart.offsetY,")")}),s.dom.Paper.node.style.background=a.chart.background,this.setSVGDimensions(),s.dom.elLegendForeign=document.createElementNS(s.SVGNS,"foreignObject"),_.setAttrs(s.dom.elLegendForeign,{x:0,y:0,width:s.svgWidth,height:s.svgHeight}),s.dom.elLegendWrap=document.createElement("div"),s.dom.elLegendWrap.classList.add("apexcharts-legend"),s.dom.elLegendWrap.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),s.dom.elLegendForeign.appendChild(s.dom.elLegendWrap),s.dom.Paper.node.appendChild(s.dom.elLegendForeign),s.dom.elGraphical=s.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),s.dom.elDefs=s.dom.Paper.defs(),s.dom.Paper.add(s.dom.elGraphical),s.dom.elGraphical.add(s.dom.elDefs)}},{key:"plotChartType",value:function(s,a){var i=this.w,d=i.config,c=i.globals,p={series:[],i:[]},w={series:[],i:[]},f={series:[],i:[]},k={series:[],i:[]},M={series:[],i:[]},x={series:[],i:[]},I={series:[],i:[]},$={series:[],i:[]},N={series:[],seriesRangeEnd:[],i:[]};c.series.map(function(K,Q){var ot=0;s[Q].type!==void 0?(s[Q].type==="column"||s[Q].type==="bar"?(c.series.length>1&&d.plotOptions.bar.horizontal&&console.warn("Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`"),M.series.push(K),M.i.push(Q),ot++,i.globals.columnSeries=M.series):s[Q].type==="area"?(w.series.push(K),w.i.push(Q),ot++):s[Q].type==="line"?(p.series.push(K),p.i.push(Q),ot++):s[Q].type==="scatter"?(f.series.push(K),f.i.push(Q)):s[Q].type==="bubble"?(k.series.push(K),k.i.push(Q),ot++):s[Q].type==="candlestick"?(x.series.push(K),x.i.push(Q),ot++):s[Q].type==="boxPlot"?(I.series.push(K),I.i.push(Q),ot++):s[Q].type==="rangeBar"?($.series.push(K),$.i.push(Q),ot++):s[Q].type==="rangeArea"?(N.series.push(c.seriesRangeStart[Q]),N.seriesRangeEnd.push(c.seriesRangeEnd[Q]),N.i.push(Q),ot++):console.warn("You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble/candlestick/boxPlot/rangeBar/rangeArea"),ot>1&&(c.comboCharts=!0)):(p.series.push(K),p.i.push(Q))});var L=new Ja(this.ctx,a),F=new Za(this.ctx,a);this.ctx.pie=new e2(this.ctx);var V=new F4(this.ctx);this.ctx.rangeBar=new O4(this.ctx,a);var Z=new D4(this.ctx),m=[];if(c.comboCharts){if(w.series.length>0&&m.push(L.draw(w.series,"area",w.i)),M.series.length>0)if(i.config.chart.stacked){var y=new Qh(this.ctx,a);m.push(y.draw(M.series,M.i))}else this.ctx.bar=new Sr(this.ctx,a),m.push(this.ctx.bar.draw(M.series,M.i));if(N.series.length>0&&m.push(L.draw(N.series,"rangeArea",N.i,N.seriesRangeEnd)),p.series.length>0&&m.push(L.draw(p.series,"line",p.i)),x.series.length>0&&m.push(F.draw(x.series,"candlestick",x.i)),I.series.length>0&&m.push(F.draw(I.series,"boxPlot",I.i)),$.series.length>0&&m.push(this.ctx.rangeBar.draw($.series,$.i)),f.series.length>0){var j=new Ja(this.ctx,a,!0);m.push(j.draw(f.series,"scatter",f.i))}if(k.series.length>0){var R=new Ja(this.ctx,a,!0);m.push(R.draw(k.series,"bubble",k.i))}}else switch(d.chart.type){case"line":m=L.draw(c.series,"line");break;case"area":m=L.draw(c.series,"area");break;case"bar":d.chart.stacked?m=new Qh(this.ctx,a).draw(c.series):(this.ctx.bar=new Sr(this.ctx,a),m=this.ctx.bar.draw(c.series));break;case"candlestick":m=new Za(this.ctx,a).draw(c.series,"candlestick");break;case"boxPlot":m=new Za(this.ctx,a).draw(c.series,d.chart.type);break;case"rangeBar":m=this.ctx.rangeBar.draw(c.series);break;case"rangeArea":m=L.draw(c.seriesRangeStart,"rangeArea",void 0,c.seriesRangeEnd);break;case"heatmap":m=new L4(this.ctx,a).draw(c.series);break;case"treemap":m=new E4(this.ctx,a).draw(c.series);break;case"pie":case"donut":case"polarArea":m=this.ctx.pie.draw(c.series);break;case"radialBar":m=V.draw(c.series);break;case"radar":m=Z.draw(c.series);break;default:m=L.draw(c.series)}return m}},{key:"setSVGDimensions",value:function(){var s=this.w.globals,a=this.w.config;s.svgWidth=a.chart.width,s.svgHeight=a.chart.height;var i=H.getDimensions(this.el),d=a.chart.width.toString().split(/[0-9]+/g).pop();d==="%"?H.isNumber(i[0])&&(i[0].width===0&&(i=H.getDimensions(this.el.parentNode)),s.svgWidth=i[0]*parseInt(a.chart.width,10)/100):d!=="px"&&d!==""||(s.svgWidth=parseInt(a.chart.width,10));var c=a.chart.height.toString().split(/[0-9]+/g).pop();if(s.svgHeight!=="auto"&&s.svgHeight!=="")if(c==="%"){var p=H.getDimensions(this.el.parentNode);s.svgHeight=p[1]*parseInt(a.chart.height,10)/100}else s.svgHeight=parseInt(a.chart.height,10);else s.axisCharts?s.svgHeight=s.svgWidth/1.61:s.svgHeight=s.svgWidth/1.2;if(s.svgWidth<0&&(s.svgWidth=0),s.svgHeight<0&&(s.svgHeight=0),_.setAttrs(s.dom.Paper.node,{width:s.svgWidth,height:s.svgHeight}),c!=="%"){var w=a.chart.sparkline.enabled?0:s.axisCharts?a.chart.parentHeightOffset:0;s.dom.Paper.node.parentNode.parentNode.style.minHeight=s.svgHeight+w+"px"}s.dom.elWrap.style.width=s.svgWidth+"px",s.dom.elWrap.style.height=s.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var s=this.w.globals,a=s.translateY,i={transform:"translate("+s.translateX+", "+a+")"};_.setAttrs(s.dom.elGraphical.node,i)}},{key:"resizeNonAxisCharts",value:function(){var s=this.w,a=s.globals,i=0,d=s.config.chart.sparkline.enabled?1:15;d+=s.config.grid.padding.bottom,s.config.legend.position!=="top"&&s.config.legend.position!=="bottom"||!s.config.legend.show||s.config.legend.floating||(i=new ue(this.ctx).legendHelpers.getLegendBBox().clwh+10);var c=s.globals.dom.baseEl.querySelector(".apexcharts-radialbar, .apexcharts-pie"),p=2.05*s.globals.radialSize;if(c&&!s.config.chart.sparkline.enabled&&s.config.plotOptions.radialBar.startAngle!==0){var w=H.getBoundingClientRect(c);p=w.bottom;var f=w.bottom-w.top;p=Math.max(2.05*s.globals.radialSize,f)}var k=p+a.translateY+i+d;a.dom.elLegendForeign&&a.dom.elLegendForeign.setAttribute("height",k),s.config.chart.height&&String(s.config.chart.height).indexOf("%")>0||(a.dom.elWrap.style.height=k+"px",_.setAttrs(a.dom.Paper.node,{height:k}),a.dom.Paper.node.parentNode.parentNode.style.minHeight=k+"px")}},{key:"coreCalculations",value:function(){new lt(this.ctx).init()}},{key:"resetGlobals",value:function(){var s=this,a=function(){return s.w.config.series.map(function(c){return[]})},i=new $t,d=this.w.globals;i.initGlobalVars(d),d.seriesXvalues=a(),d.seriesYvalues=a()}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"xySettings",value:function(){var s=null,a=this.w;if(a.globals.axisCharts){if(a.config.xaxis.crosshairs.position==="back"&&new Dt(this.ctx).drawXCrosshairs(),a.config.yaxis[0].crosshairs.position==="back"&&new Dt(this.ctx).drawYCrosshairs(),a.config.xaxis.type==="datetime"&&a.config.xaxis.labels.formatter===void 0){this.ctx.timeScale=new _4(this.ctx);var i=[];isFinite(a.globals.minX)&&isFinite(a.globals.maxX)&&!a.globals.isBarHorizontal?i=this.ctx.timeScale.calculateTimeScaleTicks(a.globals.minX,a.globals.maxX):a.globals.isBarHorizontal&&(i=this.ctx.timeScale.calculateTimeScaleTicks(a.globals.minY,a.globals.maxY)),this.ctx.timeScale.recalcDimensionsBasedOnFormat(i)}s=new tt(this.ctx).getCalculatedRatios()}return s}},{key:"updateSourceChart",value:function(s){this.ctx.w.globals.selection=void 0,this.ctx.updateHelpers._updateOptions({chart:{selection:{xaxis:{min:s.w.globals.minX,max:s.w.globals.maxX}}}},!1,!1)}},{key:"setupBrushHandler",value:function(){var s=this,a=this.w;if(a.config.chart.brush.enabled&&typeof a.config.chart.events.selection!="function"){var i=Array.isArray(a.config.chart.brush.targets)||[a.config.chart.brush.target];i.forEach(function(d){var c=ApexCharts.getChartByID(d);c.w.globals.brushSource=s.ctx,typeof c.w.config.chart.events.zoomed!="function"&&(c.w.config.chart.events.zoomed=function(){s.updateSourceChart(c)}),typeof c.w.config.chart.events.scrolled!="function"&&(c.w.config.chart.events.scrolled=function(){s.updateSourceChart(c)})}),a.config.chart.events.selection=function(d,c){i.forEach(function(p){var w=ApexCharts.getChartByID(p),f=H.clone(a.config.yaxis);if(a.config.chart.brush.autoScaleYaxis&&w.w.globals.series.length===1){var k=new J(w);f=k.autoScaleY(w,f,c)}var M=w.w.config.yaxis.reduce(function(x,I,$){return[].concat(E(x),[h(h({},w.w.config.yaxis[$]),{},{min:f[0].min,max:f[0].max})])},[]);w.ctx.updateHelpers._updateOptions({xaxis:{min:c.xaxis.min,max:c.xaxis.max},yaxis:M},!1,!1,!1,!1)})}}}}]),T}(),X4=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"_updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=arguments.length>4&&arguments[4]!==void 0&&arguments[4];return new Promise(function(w){var f=[a.ctx];c&&(f=a.ctx.getSyncedCharts()),a.ctx.w.globals.isExecCalled&&(f=[a.ctx],a.ctx.w.globals.isExecCalled=!1),f.forEach(function(k,M){var x=k.w;if(x.globals.shouldAnimate=d,i||(x.globals.resized=!0,x.globals.dataChanged=!0,d&&k.series.getPreviousPaths()),s&&u(s)==="object"&&(k.config=new It(s),s=tt.extendArrayProps(k.config,s,x),k.w.globals.chartID!==a.ctx.w.globals.chartID&&delete s.series,x.config=H.extend(x.config,s),p&&(x.globals.lastXAxis=s.xaxis?H.clone(s.xaxis):[],x.globals.lastYAxis=s.yaxis?H.clone(s.yaxis):[],x.globals.initialConfig=H.extend({},x.config),x.globals.initialSeries=H.clone(x.config.series),s.series))){for(var I=0;I2&&arguments[2]!==void 0&&arguments[2];return new Promise(function(c){var p,w=i.w;return w.globals.shouldAnimate=a,w.globals.dataChanged=!0,a&&i.ctx.series.getPreviousPaths(),w.globals.axisCharts?((p=s.map(function(f,k){return i._extendSeries(f,k)})).length===0&&(p=[{data:[]}]),w.config.series=p):w.config.series=s.slice(),d&&(w.globals.initialConfig.series=H.clone(w.config.series),w.globals.initialSeries=H.clone(w.config.series)),i.ctx.update().then(function(){c(i.ctx)})})}},{key:"_extendSeries",value:function(s,a){var i=this.w,d=i.config.series[a];return h(h({},i.config.series[a]),{},{name:s.name?s.name:d&&d.name,color:s.color?s.color:d&&d.color,type:s.type?s.type:d&&d.type,group:s.group?s.group:d&&d.group,data:s.data?s.data:d&&d.data})}},{key:"toggleDataPointSelection",value:function(s,a){var i=this.w,d=null,c=".apexcharts-series[data\\:realIndex='".concat(s,"']");return i.globals.axisCharts?d=i.globals.dom.Paper.select("".concat(c," path[j='").concat(a,"'], ").concat(c," circle[j='").concat(a,"'], ").concat(c," rect[j='").concat(a,"']")).members[0]:a===void 0&&(d=i.globals.dom.Paper.select("".concat(c," path[j='").concat(s,"']")).members[0],i.config.chart.type!=="pie"&&i.config.chart.type!=="polarArea"&&i.config.chart.type!=="donut"||this.ctx.pie.pieClicked(s)),d?(new _(this.ctx).pathMouseDown(d,null),d.node?d.node:null):(console.warn("toggleDataPointSelection: Element not found"),null)}},{key:"forceXAxisUpdate",value:function(s){var a=this.w;if(["min","max"].forEach(function(d){s.xaxis[d]!==void 0&&(a.config.xaxis[d]=s.xaxis[d],a.globals.lastXAxis[d]=s.xaxis[d])}),s.xaxis.categories&&s.xaxis.categories.length&&(a.config.xaxis.categories=s.xaxis.categories),a.config.xaxis.convertedCatToNumeric){var i=new gt(s);s=i.convertCatToNumericXaxis(s,this.ctx)}return s}},{key:"forceYAxisUpdate",value:function(s){return s.chart&&s.chart.stacked&&s.chart.stackType==="100%"&&(Array.isArray(s.yaxis)?s.yaxis.forEach(function(a,i){s.yaxis[i].min=0,s.yaxis[i].max=100}):(s.yaxis.min=0,s.yaxis.max=100)),s}},{key:"revertDefaultAxisMinMax",value:function(s){var a=this,i=this.w,d=i.globals.lastXAxis,c=i.globals.lastYAxis;s&&s.xaxis&&(d=s.xaxis),s&&s.yaxis&&(c=s.yaxis),i.config.xaxis.min=d.min,i.config.xaxis.max=d.max;var p=function(w){c[w]!==void 0&&(i.config.yaxis[w].min=c[w].min,i.config.yaxis[w].max=c[w].max)};i.config.yaxis.map(function(w,f){i.globals.zoomed||c[f]!==void 0?p(f):a.ctx.opts.yaxis[f]!==void 0&&(w.min=a.ctx.opts.yaxis[f].min,w.max=a.ctx.opts.yaxis[f].max)})}}]),T}();Gl=typeof window<"u"?window:void 0,xs=function(T,s){var a=(this!==void 0?this:T).SVG=function(m){if(a.supported)return m=new a.Doc(m),a.parser.draw||a.prepare(),m};if(a.ns="http://www.w3.org/2000/svg",a.xmlns="http://www.w3.org/2000/xmlns/",a.xlink="http://www.w3.org/1999/xlink",a.svgjs="http://svgjs.dev",a.supported=!0,!a.supported)return!1;a.did=1e3,a.eid=function(m){return"Svgjs"+M(m)+a.did++},a.create=function(m){var y=s.createElementNS(this.ns,m);return y.setAttribute("id",this.eid(m)),y},a.extend=function(){var m,y;y=(m=[].slice.call(arguments)).pop();for(var j=m.length-1;j>=0;j--)if(m[j])for(var R in y)m[j].prototype[R]=y[R];a.Set&&a.Set.inherit&&a.Set.inherit()},a.invent=function(m){var y=typeof m.create=="function"?m.create:function(){this.constructor.call(this,a.create(m.create))};return m.inherit&&(y.prototype=new m.inherit),m.extend&&a.extend(y,m.extend),m.construct&&a.extend(m.parent||a.Container,m.construct),y},a.adopt=function(m){return m?m.instance?m.instance:((y=m.nodeName=="svg"?m.parentNode instanceof T.SVGElement?new a.Nested:new a.Doc:m.nodeName=="linearGradient"?new a.Gradient("linear"):m.nodeName=="radialGradient"?new a.Gradient("radial"):a[M(m.nodeName)]?new a[M(m.nodeName)]:new a.Element(m)).type=m.nodeName,y.node=m,m.instance=y,y instanceof a.Doc&&y.namespace().defs(),y.setData(JSON.parse(m.getAttribute("svgjs:data"))||{}),y):null;var y},a.prepare=function(){var m=s.getElementsByTagName("body")[0],y=(m?new a.Doc(m):a.adopt(s.documentElement).nested()).size(2,0);a.parser={body:m||s.documentElement,draw:y.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:y.polyline().node,path:y.path().node,native:a.create("svg")}},a.parser={native:a.create("svg")},s.addEventListener("DOMContentLoaded",function(){a.parser.draw||a.prepare()},!1),a.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},a.utils={map:function(m,y){for(var j=m.length,R=[],K=0;K1?1:m,new a.Color({r:~~(this.r+(this.destination.r-this.r)*m),g:~~(this.g+(this.destination.g-this.g)*m),b:~~(this.b+(this.destination.b-this.b)*m)})):this}}),a.Color.test=function(m){return m+="",a.regex.isHex.test(m)||a.regex.isRgb.test(m)},a.Color.isRgb=function(m){return m&&typeof m.r=="number"&&typeof m.g=="number"&&typeof m.b=="number"},a.Color.isColor=function(m){return a.Color.isRgb(m)||a.Color.test(m)},a.Array=function(m,y){(m=(m||[]).valueOf()).length==0&&y&&(m=y.valueOf()),this.value=this.parse(m)},a.extend(a.Array,{toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(m){return m=m.valueOf(),Array.isArray(m)?m:this.split(m)}}),a.PointArray=function(m,y){a.Array.call(this,m,y||[[0,0]])},a.PointArray.prototype=new a.Array,a.PointArray.prototype.constructor=a.PointArray;for(var i={M:function(m,y,j){return y.x=j.x=m[0],y.y=j.y=m[1],["M",y.x,y.y]},L:function(m,y){return y.x=m[0],y.y=m[1],["L",m[0],m[1]]},H:function(m,y){return y.x=m[0],["H",m[0]]},V:function(m,y){return y.y=m[0],["V",m[0]]},C:function(m,y){return y.x=m[4],y.y=m[5],["C",m[0],m[1],m[2],m[3],m[4],m[5]]},Q:function(m,y){return y.x=m[2],y.y=m[3],["Q",m[0],m[1],m[2],m[3]]},S:function(m,y){return y.x=m[2],y.y=m[3],["S",m[0],m[1],m[2],m[3]]},Z:function(m,y,j){return y.x=j.x,y.y=j.y,["Z"]}},d="mlhvqtcsaz".split(""),c=0,p=d.length;cot);return R},bbox:function(){return a.parser.draw||a.prepare(),a.parser.path.setAttribute("d",this.toString()),a.parser.path.getBBox()}}),a.Number=a.invent({create:function(m,y){this.value=0,this.unit=y||"",typeof m=="number"?this.value=isNaN(m)?0:isFinite(m)?m:m<0?-34e37:34e37:typeof m=="string"?(y=m.match(a.regex.numberAndUnit))&&(this.value=parseFloat(y[1]),y[5]=="%"?this.value/=100:y[5]=="s"&&(this.value*=1e3),this.unit=y[5]):m instanceof a.Number&&(this.value=m.valueOf(),this.unit=m.unit)},extend:{toString:function(){return(this.unit=="%"?~~(1e8*this.value)/1e6:this.unit=="s"?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(m){return m=new a.Number(m),new a.Number(this+m,this.unit||m.unit)},minus:function(m){return m=new a.Number(m),new a.Number(this-m,this.unit||m.unit)},times:function(m){return m=new a.Number(m),new a.Number(this*m,this.unit||m.unit)},divide:function(m){return m=new a.Number(m),new a.Number(this/m,this.unit||m.unit)},to:function(m){var y=new a.Number(this);return typeof m=="string"&&(y.unit=m),y},morph:function(m){return this.destination=new a.Number(m),m.relative&&(this.destination.value+=this.value),this},at:function(m){return this.destination?new a.Number(this.destination).minus(this).times(m).plus(this):this}}}),a.Element=a.invent({create:function(m){this._stroke=a.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=m)&&(this.type=m.nodeName,this.node.instance=this,this._stroke=m.getAttribute("stroke")||this._stroke)},extend:{x:function(m){return this.attr("x",m)},y:function(m){return this.attr("y",m)},cx:function(m){return m==null?this.x()+this.width()/2:this.x(m-this.width()/2)},cy:function(m){return m==null?this.y()+this.height()/2:this.y(m-this.height()/2)},move:function(m,y){return this.x(m).y(y)},center:function(m,y){return this.cx(m).cy(y)},width:function(m){return this.attr("width",m)},height:function(m){return this.attr("height",m)},size:function(m,y){var j=I(this,m,y);return this.width(new a.Number(j.width)).height(new a.Number(j.height))},clone:function(m){this.writeDataToDom();var y=L(this.node.cloneNode(!0));return m?m.add(y):this.after(y),y},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(m){return this.after(m).remove(),m},addTo:function(m){return m.put(this)},putIn:function(m){return m.add(this)},id:function(m){return this.attr("id",m)},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return this.style("display")!="none"},toString:function(){return this.attr("id")},classes:function(){var m=this.attr("class");return m==null?[]:m.trim().split(a.regex.delimiter)},hasClass:function(m){return this.classes().indexOf(m)!=-1},addClass:function(m){if(!this.hasClass(m)){var y=this.classes();y.push(m),this.attr("class",y.join(" "))}return this},removeClass:function(m){return this.hasClass(m)&&this.attr("class",this.classes().filter(function(y){return y!=m}).join(" ")),this},toggleClass:function(m){return this.hasClass(m)?this.removeClass(m):this.addClass(m)},reference:function(m){return a.get(this.attr(m))},parent:function(m){var y=this;if(!y.node.parentNode)return null;if(y=a.adopt(y.node.parentNode),!m)return y;for(;y&&y.node instanceof T.SVGElement;){if(typeof m=="string"?y.matches(m):y instanceof m)return y;if(!y.node.parentNode||y.node.parentNode.nodeName=="#document")return null;y=a.adopt(y.node.parentNode)}},doc:function(){return this instanceof a.Doc?this:this.parent(a.Doc)},parents:function(m){var y=[],j=this;do{if(!(j=j.parent(m))||!j.node)break;y.push(j)}while(j.parent);return y},matches:function(m){return function(y,j){return(y.matches||y.matchesSelector||y.msMatchesSelector||y.mozMatchesSelector||y.webkitMatchesSelector||y.oMatchesSelector).call(y,j)}(this.node,m)},native:function(){return this.node},svg:function(m){var y=s.createElement("svg");if(!(m&&this instanceof a.Parent))return y.appendChild(m=s.createElement("svg")),this.writeDataToDom(),m.appendChild(this.node.cloneNode(!0)),y.innerHTML.replace(/^/,"").replace(/<\/svg>$/,"");y.innerHTML=""+m.replace(/\n/,"").replace(/<([\w:-]+)([^<]+?)\/>/g,"<$1$2>")+"";for(var j=0,R=y.firstChild.childNodes.length;j":function(m){return-Math.cos(m*Math.PI)/2+.5},">":function(m){return Math.sin(m*Math.PI/2)},"<":function(m){return 1-Math.cos(m*Math.PI/2)}},a.morph=function(m){return function(y,j){return new a.MorphObj(y,j).at(m)}},a.Situation=a.invent({create:function(m){this.init=!1,this.reversed=!1,this.reversing=!1,this.duration=new a.Number(m.duration).valueOf(),this.delay=new a.Number(m.delay).valueOf(),this.start=+new Date+this.delay,this.finish=this.start+this.duration,this.ease=m.ease,this.loop=0,this.loops=!1,this.animations={},this.attrs={},this.styles={},this.transforms=[],this.once={}}}),a.FX=a.invent({create:function(m){this._target=m,this.situations=[],this.active=!1,this.situation=null,this.paused=!1,this.lastPos=0,this.pos=0,this.absPos=0,this._speed=1},extend:{animate:function(m,y,j){u(m)==="object"&&(y=m.ease,j=m.delay,m=m.duration);var R=new a.Situation({duration:m||1e3,delay:j||0,ease:a.easing[y||"-"]||y});return this.queue(R),this},target:function(m){return m&&m instanceof a.Element?(this._target=m,this):this._target},timeToAbsPos:function(m){return(m-this.situation.start)/(this.situation.duration/this._speed)},absPosToTime:function(m){return this.situation.duration/this._speed*m+this.situation.start},startAnimFrame:function(){this.stopAnimFrame(),this.animationFrame=T.requestAnimationFrame((function(){this.step()}).bind(this))},stopAnimFrame:function(){T.cancelAnimationFrame(this.animationFrame)},start:function(){return!this.active&&this.situation&&(this.active=!0,this.startCurrent()),this},startCurrent:function(){return this.situation.start=+new Date+this.situation.delay/this._speed,this.situation.finish=this.situation.start+this.situation.duration/this._speed,this.initAnimations().step()},queue:function(m){return(typeof m=="function"||m instanceof a.Situation)&&this.situations.push(m),this.situation||(this.situation=this.situations.shift()),this},dequeue:function(){return this.stop(),this.situation=this.situations.shift(),this.situation&&(this.situation instanceof a.Situation?this.start():this.situation.call(this)),this},initAnimations:function(){var m,y=this.situation;if(y.init)return this;for(var j in y.animations){m=this.target()[j](),Array.isArray(m)||(m=[m]),Array.isArray(y.animations[j])||(y.animations[j]=[y.animations[j]]);for(var R=m.length;R--;)y.animations[j][R]instanceof a.Number&&(m[R]=new a.Number(m[R])),y.animations[j][R]=m[R].morph(y.animations[j][R])}for(var j in y.attrs)y.attrs[j]=new a.MorphObj(this.target().attr(j),y.attrs[j]);for(var j in y.styles)y.styles[j]=new a.MorphObj(this.target().style(j),y.styles[j]);return y.initialTransformation=this.target().matrixify(),y.init=!0,this},clearQueue:function(){return this.situations=[],this},clearCurrent:function(){return this.situation=null,this},stop:function(m,y){var j=this.active;return this.active=!1,y&&this.clearQueue(),m&&this.situation&&(!j&&this.startCurrent(),this.atEnd()),this.stopAnimFrame(),this.clearCurrent()},after:function(m){var y=this.last();return this.target().on("finished.fx",function j(R){R.detail.situation==y&&(m.call(this,y),this.off("finished.fx",j))}),this._callStart()},during:function(m){var y=this.last(),j=function(R){R.detail.situation==y&&m.call(this,R.detail.pos,a.morph(R.detail.pos),R.detail.eased,y)};return this.target().off("during.fx",j).on("during.fx",j),this.after(function(){this.off("during.fx",j)}),this._callStart()},afterAll:function(m){var y=function j(R){m.call(this),this.off("allfinished.fx",j)};return this.target().off("allfinished.fx",y).on("allfinished.fx",y),this._callStart()},last:function(){return this.situations.length?this.situations[this.situations.length-1]:this.situation},add:function(m,y,j){return this.last()[j||"animations"][m]=y,this._callStart()},step:function(m){var y,j,R;m||(this.absPos=this.timeToAbsPos(+new Date)),this.situation.loops!==!1?(y=Math.max(this.absPos,0),j=Math.floor(y),this.situation.loops===!0||jthis.lastPos&&Q<=K&&(this.situation.once[Q].call(this.target(),this.pos,K),delete this.situation.once[Q]);return this.active&&this.target().fire("during",{pos:this.pos,eased:K,fx:this,situation:this.situation}),this.situation?(this.eachAt(),this.pos==1&&!this.situation.reversed||this.situation.reversed&&this.pos==0?(this.stopAnimFrame(),this.target().fire("finished",{fx:this,situation:this.situation}),this.situations.length||(this.target().fire("allfinished"),this.situations.length||(this.target().off(".fx"),this.active=!1)),this.active?this.dequeue():this.clearCurrent()):!this.paused&&this.active&&this.startAnimFrame(),this.lastPos=K,this):this},eachAt:function(){var m,y=this,j=this.target(),R=this.situation;for(var K in R.animations)m=[].concat(R.animations[K]).map(function(it){return typeof it!="string"&&it.at?it.at(R.ease(y.pos),y.pos):it}),j[K].apply(j,m);for(var K in R.attrs)m=[K].concat(R.attrs[K]).map(function(vt){return typeof vt!="string"&&vt.at?vt.at(R.ease(y.pos),y.pos):vt}),j.attr.apply(j,m);for(var K in R.styles)m=[K].concat(R.styles[K]).map(function(vt){return typeof vt!="string"&&vt.at?vt.at(R.ease(y.pos),y.pos):vt}),j.style.apply(j,m);if(R.transforms.length){m=R.initialTransformation,K=0;for(var Q=R.transforms.length;K=0;--j)this[V[j]]=m[V[j]]!=null?m[V[j]]:y[V[j]]},extend:{extract:function(){var m=$(this,0,1);$(this,1,0);var y=180/Math.PI*Math.atan2(m.y,m.x)-90;return{x:this.e,y:this.f,transformedX:(this.e*Math.cos(y*Math.PI/180)+this.f*Math.sin(y*Math.PI/180))/Math.sqrt(this.a*this.a+this.b*this.b),transformedY:(this.f*Math.cos(y*Math.PI/180)+this.e*Math.sin(-y*Math.PI/180))/Math.sqrt(this.c*this.c+this.d*this.d),rotation:y,a:this.a,b:this.b,c:this.c,d:this.d,e:this.e,f:this.f,matrix:new a.Matrix(this)}},clone:function(){return new a.Matrix(this)},morph:function(m){return this.destination=new a.Matrix(m),this},multiply:function(m){return new a.Matrix(this.native().multiply(function(y){return y instanceof a.Matrix||(y=new a.Matrix(y)),y}(m).native()))},inverse:function(){return new a.Matrix(this.native().inverse())},translate:function(m,y){return new a.Matrix(this.native().translate(m||0,y||0))},native:function(){for(var m=a.parser.native.createSVGMatrix(),y=V.length-1;y>=0;y--)m[V[y]]=this[V[y]];return m},toString:function(){return"matrix("+F(this.a)+","+F(this.b)+","+F(this.c)+","+F(this.d)+","+F(this.e)+","+F(this.f)+")"}},parent:a.Element,construct:{ctm:function(){return new a.Matrix(this.node.getCTM())},screenCTM:function(){if(this instanceof a.Nested){var m=this.rect(1,1),y=m.node.getScreenCTM();return m.remove(),new a.Matrix(y)}return new a.Matrix(this.node.getScreenCTM())}}}),a.Point=a.invent({create:function(m,y){var j;j=Array.isArray(m)?{x:m[0],y:m[1]}:u(m)==="object"?{x:m.x,y:m.y}:m!=null?{x:m,y:y??m}:{x:0,y:0},this.x=j.x,this.y=j.y},extend:{clone:function(){return new a.Point(this)},morph:function(m,y){return this.destination=new a.Point(m,y),this}}}),a.extend(a.Element,{point:function(m,y){return new a.Point(m,y).transform(this.screenCTM().inverse())}}),a.extend(a.Element,{attr:function(m,y,j){if(m==null){for(m={},j=(y=this.node.attributes).length-1;j>=0;j--)m[y[j].nodeName]=a.regex.isNumber.test(y[j].nodeValue)?parseFloat(y[j].nodeValue):y[j].nodeValue;return m}if(u(m)==="object")for(var R in m)this.attr(R,m[R]);else if(y===null)this.node.removeAttribute(m);else{if(y==null)return(y=this.node.getAttribute(m))==null?a.defaults.attrs[m]:a.regex.isNumber.test(y)?parseFloat(y):y;m=="stroke-width"?this.attr("stroke",parseFloat(y)>0?this._stroke:null):m=="stroke"&&(this._stroke=y),m!="fill"&&m!="stroke"||(a.regex.isImage.test(y)&&(y=this.doc().defs().image(y,0,0)),y instanceof a.Image&&(y=this.doc().defs().pattern(0,0,function(){this.add(y)}))),typeof y=="number"?y=new a.Number(y):a.Color.isColor(y)?y=new a.Color(y):Array.isArray(y)&&(y=new a.Array(y)),m=="leading"?this.leading&&this.leading(y):typeof j=="string"?this.node.setAttributeNS(j,m,y.toString()):this.node.setAttribute(m,y.toString()),!this.rebuild||m!="font-size"&&m!="x"||this.rebuild(m,y)}return this}}),a.extend(a.Element,{transform:function(m,y){var j;return u(m)!=="object"?(j=new a.Matrix(this).extract(),typeof m=="string"?j[m]:j):(j=new a.Matrix(this),y=!!y||!!m.relative,m.a!=null&&(j=y?j.multiply(new a.Matrix(m)):new a.Matrix(m)),this.attr("transform",j))}}),a.extend(a.Element,{untransform:function(){return this.attr("transform",null)},matrixify:function(){return(this.attr("transform")||"").split(a.regex.transforms).slice(0,-1).map(function(m){var y=m.trim().split("(");return[y[0],y[1].split(a.regex.delimiter).map(function(j){return parseFloat(j)})]}).reduce(function(m,y){return y[0]=="matrix"?m.multiply(N(y[1])):m[y[0]].apply(m,y[1])},new a.Matrix)},toParent:function(m){if(this==m)return this;var y=this.screenCTM(),j=m.screenCTM().inverse();return this.addTo(m).untransform().transform(j.multiply(y)),this},toDoc:function(){return this.toParent(this.doc())}}),a.Transformation=a.invent({create:function(m,y){if(arguments.length>1&&typeof y!="boolean")return this.constructor.call(this,[].slice.call(arguments));if(Array.isArray(m))for(var j=0,R=this.arguments.length;j=0},index:function(m){return[].slice.call(this.node.childNodes).indexOf(m.node)},get:function(m){return a.adopt(this.node.childNodes[m])},first:function(){return this.get(0)},last:function(){return this.get(this.node.childNodes.length-1)},each:function(m,y){for(var j=this.children(),R=0,K=j.length;R=0;y--)m.childNodes[y]instanceof T.SVGElement&&L(m.childNodes[y]);return a.adopt(m).id(a.eid(m.nodeName))}function F(m){return Math.abs(m)>1e-37?m:0}["fill","stroke"].forEach(function(m){var y={};y[m]=function(j){if(j===void 0)return this;if(typeof j=="string"||a.Color.isRgb(j)||j&&typeof j.fill=="function")this.attr(m,j);else for(var R=w[m].length-1;R>=0;R--)j[w[m][R]]!=null&&this.attr(w.prefix(m,w[m][R]),j[w[m][R]]);return this},a.extend(a.Element,a.FX,y)}),a.extend(a.Element,a.FX,{translate:function(m,y){return this.transform({x:m,y})},matrix:function(m){return this.attr("transform",new a.Matrix(arguments.length==6?[].slice.call(arguments):m))},opacity:function(m){return this.attr("opacity",m)},dx:function(m){return this.x(new a.Number(m).plus(this instanceof a.FX?0:this.x()),!0)},dy:function(m){return this.y(new a.Number(m).plus(this instanceof a.FX?0:this.y()),!0)}}),a.extend(a.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(m){return this.node.getPointAtLength(m)}}),a.Set=a.invent({create:function(m){Array.isArray(m)?this.members=m:this.clear()},extend:{add:function(){for(var m=[].slice.call(arguments),y=0,j=m.length;y-1&&this.members.splice(y,1),this},each:function(m){for(var y=0,j=this.members.length;y=0},index:function(m){return this.members.indexOf(m)},get:function(m){return this.members[m]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members}},construct:{set:function(m){return new a.Set(m)}}}),a.FX.Set=a.invent({create:function(m){this.set=m}}),a.Set.inherit=function(){var m=[];for(var y in a.Shape.prototype)typeof a.Shape.prototype[y]=="function"&&typeof a.Set.prototype[y]!="function"&&m.push(y);for(var y in m.forEach(function(R){a.Set.prototype[R]=function(){for(var K=0,Q=this.members.length;K=0;m--)delete this.memory()[arguments[m]];return this},memory:function(){return this._memory||(this._memory={})}}),a.get=function(m){var y=s.getElementById(function(j){var R=(j||"").toString().match(a.regex.reference);if(R)return R[1]}(m)||m);return a.adopt(y)},a.select=function(m,y){return new a.Set(a.utils.map((y||s).querySelectorAll(m),function(j){return a.adopt(j)}))},a.extend(a.Parent,{select:function(m){return a.select(m,this.node)}});var V="abcdef".split("");if(typeof T.CustomEvent!="function"){var Z=function(m,y){y=y||{bubbles:!1,cancelable:!1,detail:void 0};var j=s.createEvent("CustomEvent");return j.initCustomEvent(m,y.bubbles,y.cancelable,y.detail),j};Z.prototype=T.Event.prototype,a.CustomEvent=Z}else a.CustomEvent=T.CustomEvent;return a},u(l)==="object"?n.exports=Gl.document?xs(Gl,Gl.document):function(T){return xs(T,T.document)}:Gl.SVG=xs(Gl,Gl.document),(function(){SVG.Filter=SVG.invent({create:"filter",inherit:SVG.Parent,extend:{source:"SourceGraphic",sourceAlpha:"SourceAlpha",background:"BackgroundImage",backgroundAlpha:"BackgroundAlpha",fill:"FillPaint",stroke:"StrokePaint",autoSetIn:!0,put:function(p,w){return this.add(p,w),!p.attr("in")&&this.autoSetIn&&p.attr("in",this.source),p.attr("result")||p.attr("result",p),p},blend:function(p,w,f){return this.put(new SVG.BlendEffect(p,w,f))},colorMatrix:function(p,w){return this.put(new SVG.ColorMatrixEffect(p,w))},convolveMatrix:function(p){return this.put(new SVG.ConvolveMatrixEffect(p))},componentTransfer:function(p){return this.put(new SVG.ComponentTransferEffect(p))},composite:function(p,w,f){return this.put(new SVG.CompositeEffect(p,w,f))},flood:function(p,w){return this.put(new SVG.FloodEffect(p,w))},offset:function(p,w){return this.put(new SVG.OffsetEffect(p,w))},image:function(p){return this.put(new SVG.ImageEffect(p))},merge:function(){var p=[void 0];for(var w in arguments)p.push(arguments[w]);return this.put(new(SVG.MergeEffect.bind.apply(SVG.MergeEffect,p)))},gaussianBlur:function(p,w){return this.put(new SVG.GaussianBlurEffect(p,w))},morphology:function(p,w){return this.put(new SVG.MorphologyEffect(p,w))},diffuseLighting:function(p,w,f){return this.put(new SVG.DiffuseLightingEffect(p,w,f))},displacementMap:function(p,w,f,k,M){return this.put(new SVG.DisplacementMapEffect(p,w,f,k,M))},specularLighting:function(p,w,f,k){return this.put(new SVG.SpecularLightingEffect(p,w,f,k))},tile:function(){return this.put(new SVG.TileEffect)},turbulence:function(p,w,f,k,M){return this.put(new SVG.TurbulenceEffect(p,w,f,k,M))},toString:function(){return"url(#"+this.attr("id")+")"}}}),SVG.extend(SVG.Defs,{filter:function(p){var w=this.put(new SVG.Filter);return typeof p=="function"&&p.call(w,w),w}}),SVG.extend(SVG.Container,{filter:function(p){return this.defs().filter(p)}}),SVG.extend(SVG.Element,SVG.G,SVG.Nested,{filter:function(p){return this.filterer=p instanceof SVG.Element?p:this.doc().filter(p),this.doc()&&this.filterer.doc()!==this.doc()&&this.doc().defs().add(this.filterer),this.attr("filter",this.filterer),this.filterer},unfilter:function(p){return this.filterer&&p===!0&&this.filterer.remove(),delete this.filterer,this.attr("filter",null)}}),SVG.Effect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(p){return p==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",p)},result:function(p){return p==null?this.attr("result"):this.attr("result",p)},toString:function(){return this.result()}}}),SVG.ParentEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Parent,extend:{in:function(p){return p==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",p)},result:function(p){return p==null?this.attr("result"):this.attr("result",p)},toString:function(){return this.result()}}});var T={blend:function(p,w){return this.parent()&&this.parent().blend(this,p,w)},colorMatrix:function(p,w){return this.parent()&&this.parent().colorMatrix(p,w).in(this)},convolveMatrix:function(p){return this.parent()&&this.parent().convolveMatrix(p).in(this)},componentTransfer:function(p){return this.parent()&&this.parent().componentTransfer(p).in(this)},composite:function(p,w){return this.parent()&&this.parent().composite(this,p,w)},flood:function(p,w){return this.parent()&&this.parent().flood(p,w)},offset:function(p,w){return this.parent()&&this.parent().offset(p,w).in(this)},image:function(p){return this.parent()&&this.parent().image(p)},merge:function(){return this.parent()&&this.parent().merge.apply(this.parent(),[this].concat(arguments))},gaussianBlur:function(p,w){return this.parent()&&this.parent().gaussianBlur(p,w).in(this)},morphology:function(p,w){return this.parent()&&this.parent().morphology(p,w).in(this)},diffuseLighting:function(p,w,f){return this.parent()&&this.parent().diffuseLighting(p,w,f).in(this)},displacementMap:function(p,w,f,k){return this.parent()&&this.parent().displacementMap(this,p,w,f,k)},specularLighting:function(p,w,f,k){return this.parent()&&this.parent().specularLighting(p,w,f,k).in(this)},tile:function(){return this.parent()&&this.parent().tile().in(this)},turbulence:function(p,w,f,k,M){return this.parent()&&this.parent().turbulence(p,w,f,k,M).in(this)}};SVG.extend(SVG.Effect,T),SVG.extend(SVG.ParentEffect,T),SVG.ChildEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(p){this.attr("in",p)}}});var s={blend:function(p,w,f){this.attr({in:p,in2:w,mode:f||"normal"})},colorMatrix:function(p,w){p=="matrix"&&(w=d(w)),this.attr({type:p,values:w===void 0?null:w})},convolveMatrix:function(p){p=d(p),this.attr({order:Math.sqrt(p.split(" ").length),kernelMatrix:p})},composite:function(p,w,f){this.attr({in:p,in2:w,operator:f})},flood:function(p,w){this.attr("flood-color",p),w!=null&&this.attr("flood-opacity",w)},offset:function(p,w){this.attr({dx:p,dy:w})},image:function(p){this.attr("href",p,SVG.xlink)},displacementMap:function(p,w,f,k,M){this.attr({in:p,in2:w,scale:f,xChannelSelector:k,yChannelSelector:M})},gaussianBlur:function(p,w){p!=null||w!=null?this.attr("stdDeviation",function(f){if(!Array.isArray(f))return f;for(var k=0,M=f.length,x=[];k1&&(xe*=M=Math.sqrt(M),$e*=M),x=new SVG.Matrix().rotate(je).scale(1/xe,1/$e).rotate(-je),cn=cn.transform(x),Ke=Ke.transform(x),I=[Ke.x-cn.x,Ke.y-cn.y],N=I[0]*I[0]+I[1]*I[1],$=Math.sqrt(N),I[0]/=$,I[1]/=$,L=N<4?Math.sqrt(1-N/4):0,Rn===Ul&&(L*=-1),F=new SVG.Point((Ke.x+cn.x)/2+L*-I[1],(Ke.y+cn.y)/2+L*I[0]),V=new SVG.Point(cn.x-F.x,cn.y-F.y),Z=new SVG.Point(Ke.x-F.x,Ke.y-F.y),m=Math.acos(V.x/Math.sqrt(V.x*V.x+V.y*V.y)),V.y<0&&(m*=-1),y=Math.acos(Z.x/Math.sqrt(Z.x*Z.x+Z.y*Z.y)),Z.y<0&&(y*=-1),Ul&&m>y&&(y+=2*Math.PI),!Ul&&mp.maxX-a.width&&(w=(d=p.maxX-a.width)-this.startPoints.box.x),p.minY!=null&&cp.maxY-a.height&&(f=(c=p.maxY-a.height)-this.startPoints.box.y),p.snapToGrid!=null&&(d-=d%p.snapToGrid,c-=c%p.snapToGrid,w-=w%p.snapToGrid,f-=f%p.snapToGrid),this.el instanceof SVG.G?this.el.matrix(this.startPoints.transform).transform({x:w,y:f},!0):this.el.move(d,c));return i},T.prototype.end=function(s){var a=this.drag(s);this.el.fire("dragend",{event:s,p:a,m:this.m,handler:this}),SVG.off(window,"mousemove.drag"),SVG.off(window,"touchmove.drag"),SVG.off(window,"mouseup.drag"),SVG.off(window,"touchend.drag")},SVG.extend(SVG.Element,{draggable:function(s,a){typeof s!="function"&&typeof s!="object"||(a=s,s=!0);var i=this.remember("_draggable")||new T(this);return(s=s===void 0||s)?i.init(a||{},s):(this.off("mousedown.drag"),this.off("touchstart.drag")),this}})}).call(void 0),function(){function T(s){this.el=s,s.remember("_selectHandler",this),this.pointSelection={isSelected:!1},this.rectSelection={isSelected:!1},this.pointsList={lt:[0,0],rt:["width",0],rb:["width","height"],lb:[0,"height"],t:["width",0],r:["width","height"],b:["width","height"],l:[0,"height"]},this.pointCoord=function(a,i,d){var c=typeof a!="string"?a:i[a];return d?c/2:c},this.pointCoords=function(a,i){var d=this.pointsList[a];return{x:this.pointCoord(d[0],i,a==="t"||a==="b"),y:this.pointCoord(d[1],i,a==="r"||a==="l")}}}T.prototype.init=function(s,a){var i=this.el.bbox();this.options={};var d=this.el.selectize.defaults.points;for(var c in this.el.selectize.defaults)this.options[c]=this.el.selectize.defaults[c],a[c]!==void 0&&(this.options[c]=a[c]);var p=["points","pointsExclude"];for(var c in p){var w=this.options[p[c]];typeof w=="string"?w=w.length>0?w.split(/\s*,\s*/i):[]:typeof w=="boolean"&&p[c]==="points"&&(w=w?d:[]),this.options[p[c]]=w}this.options.points=[d,this.options.points].reduce(function(f,k){return f.filter(function(M){return k.indexOf(M)>-1})}),this.options.points=[this.options.points,this.options.pointsExclude].reduce(function(f,k){return f.filter(function(M){return k.indexOf(M)<0})}),this.parent=this.el.parent(),this.nested=this.nested||this.parent.group(),this.nested.matrix(new SVG.Matrix(this.el).translate(i.x,i.y)),this.options.deepSelect&&["line","polyline","polygon"].indexOf(this.el.type)!==-1?this.selectPoints(s):this.selectRect(s),this.observe(),this.cleanup()},T.prototype.selectPoints=function(s){return this.pointSelection.isSelected=s,this.pointSelection.set||(this.pointSelection.set=this.parent.set(),this.drawPoints()),this},T.prototype.getPointArray=function(){var s=this.el.bbox();return this.el.array().valueOf().map(function(a){return[a[0]-s.x,a[1]-s.y]})},T.prototype.drawPoints=function(){for(var s=this,a=this.getPointArray(),i=0,d=a.length;i0&&this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-w[0]);w=this.checkAspectRatio(w),this.el.move(this.parameters.box.x+w[0],this.parameters.box.y+w[1]).size(this.parameters.box.width-w[0],this.parameters.box.height-w[1])}};break;case"rt":this.calc=function(c,p){var w=this.snapToGrid(c,p,2);if(this.parameters.box.width+w[0]>0&&this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+w[0]);w=this.checkAspectRatio(w,!0),this.el.move(this.parameters.box.x,this.parameters.box.y+w[1]).size(this.parameters.box.width+w[0],this.parameters.box.height-w[1])}};break;case"rb":this.calc=function(c,p){var w=this.snapToGrid(c,p,0);if(this.parameters.box.width+w[0]>0&&this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+w[0]);w=this.checkAspectRatio(w),this.el.move(this.parameters.box.x,this.parameters.box.y).size(this.parameters.box.width+w[0],this.parameters.box.height+w[1])}};break;case"lb":this.calc=function(c,p){var w=this.snapToGrid(c,p,1);if(this.parameters.box.width-w[0]>0&&this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-w[0]);w=this.checkAspectRatio(w,!0),this.el.move(this.parameters.box.x+w[0],this.parameters.box.y).size(this.parameters.box.width-w[0],this.parameters.box.height+w[1])}};break;case"t":this.calc=function(c,p){var w=this.snapToGrid(c,p,2);if(this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y+w[1]).height(this.parameters.box.height-w[1])}};break;case"r":this.calc=function(c,p){var w=this.snapToGrid(c,p,0);if(this.parameters.box.width+w[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).width(this.parameters.box.width+w[0])}};break;case"b":this.calc=function(c,p){var w=this.snapToGrid(c,p,0);if(this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).height(this.parameters.box.height+w[1])}};break;case"l":this.calc=function(c,p){var w=this.snapToGrid(c,p,1);if(this.parameters.box.width-w[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x+w[0],this.parameters.box.y).width(this.parameters.box.width-w[0])}};break;case"rot":this.calc=function(c,p){var w=c+this.parameters.p.x,f=p+this.parameters.p.y,k=Math.atan2(this.parameters.p.y-this.parameters.box.y-this.parameters.box.height/2,this.parameters.p.x-this.parameters.box.x-this.parameters.box.width/2),M=Math.atan2(f-this.parameters.box.y-this.parameters.box.height/2,w-this.parameters.box.x-this.parameters.box.width/2),x=this.parameters.rotation+180*(M-k)/Math.PI+this.options.snapToAngle/2;this.el.center(this.parameters.box.cx,this.parameters.box.cy).rotate(x-x%this.options.snapToAngle,this.parameters.box.cx,this.parameters.box.cy)};break;case"point":this.calc=function(c,p){var w=this.snapToGrid(c,p,this.parameters.pointCoords[0],this.parameters.pointCoords[1]),f=this.el.array().valueOf();f[this.parameters.i][0]=this.parameters.pointCoords[0]+w[0],f[this.parameters.i][1]=this.parameters.pointCoords[1]+w[1],this.el.plot(f)}}this.el.fire("resizestart",{dx:this.parameters.x,dy:this.parameters.y,event:s}),SVG.on(window,"touchmove.resize",function(c){a.update(c||window.event)}),SVG.on(window,"touchend.resize",function(){a.done()}),SVG.on(window,"mousemove.resize",function(c){a.update(c||window.event)}),SVG.on(window,"mouseup.resize",function(){a.done()})},T.prototype.update=function(s){if(s){var a=this._extractPosition(s),i=this.transformPoint(a.x,a.y),d=i.x-this.parameters.p.x,c=i.y-this.parameters.p.y;this.lastUpdateCall=[d,c],this.calc(d,c),this.el.fire("resizing",{dx:d,dy:c,event:s})}else this.lastUpdateCall&&this.calc(this.lastUpdateCall[0],this.lastUpdateCall[1])},T.prototype.done=function(){this.lastUpdateCall=null,SVG.off(window,"mousemove.resize"),SVG.off(window,"mouseup.resize"),SVG.off(window,"touchmove.resize"),SVG.off(window,"touchend.resize"),this.el.fire("resizedone")},T.prototype.snapToGrid=function(s,a,i,d){var c;return d!==void 0?c=[(i+s)%this.options.snapToGrid,(d+a)%this.options.snapToGrid]:(i=i??3,c=[(this.parameters.box.x+s+(1&i?0:this.parameters.box.width))%this.options.snapToGrid,(this.parameters.box.y+a+(2&i?0:this.parameters.box.height))%this.options.snapToGrid]),s<0&&(c[0]-=this.options.snapToGrid),a<0&&(c[1]-=this.options.snapToGrid),s-=Math.abs(c[0])w.maxX&&(s=w.maxX-c),w.minY!==void 0&&p+aw.maxY&&(a=w.maxY-p),[s,a]},T.prototype.checkAspectRatio=function(s,a){if(!this.options.saveAspectRatio)return s;var i=s.slice(),d=this.parameters.box.width/this.parameters.box.height,c=this.parameters.box.width+s[0],p=this.parameters.box.height-s[1],w=c/p;return wd&&(i[0]=this.parameters.box.width-p*d,a&&(i[0]=-i[0])),i},SVG.extend(SVG.Element,{resize:function(s){return(this.remember("_resizeHandler")||new T(this)).init(s||{}),this}}),SVG.Element.prototype.resize.defaults={snapToAngle:.1,snapToGrid:1,constraint:{},saveAspectRatio:!1}}).call(this)}(),window.Apex===void 0&&(window.Apex={});var l2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"initModules",value:function(){this.ctx.publicMethods=["updateOptions","updateSeries","appendData","appendSeries","toggleSeries","showSeries","hideSeries","setLocale","resetSeries","zoomX","toggleDataPointSelection","dataURI","exportToCSV","addXaxisAnnotation","addYaxisAnnotation","addPointAnnotation","clearAnnotations","removeAnnotation","paper","destroy"],this.ctx.eventList=["click","mousedown","mousemove","mouseleave","touchstart","touchmove","touchleave","mouseup","touchend"],this.ctx.animations=new U(this.ctx),this.ctx.axes=new yt(this.ctx),this.ctx.core=new W4(this.ctx.el,this.ctx),this.ctx.config=new It({}),this.ctx.data=new pt(this.ctx),this.ctx.grid=new ft(this.ctx),this.ctx.graphics=new _(this.ctx),this.ctx.coreUtils=new tt(this.ctx),this.ctx.crosshairs=new Dt(this.ctx),this.ctx.events=new ct(this.ctx),this.ctx.exports=new Nt(this.ctx),this.ctx.localization=new kt(this.ctx),this.ctx.options=new rt,this.ctx.responsive=new St(this.ctx),this.ctx.series=new ut(this.ctx),this.ctx.theme=new Ot(this.ctx),this.ctx.formatters=new Ct(this.ctx),this.ctx.titleSubtitle=new jt(this.ctx),this.ctx.legend=new ue(this.ctx),this.ctx.toolbar=new Se(this.ctx),this.ctx.tooltip=new wo(this.ctx),this.ctx.dimensions=new se(this.ctx),this.ctx.updateHelpers=new X4(this.ctx),this.ctx.zoomPanSelection=new kn(this.ctx),this.ctx.w.globals.tooltip=new wo(this.ctx)}}]),T}(),r2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return b(T,[{key:"clear",value:function(s){var a=s.isUpdating;this.ctx.zoomPanSelection&&this.ctx.zoomPanSelection.destroy(),this.ctx.toolbar&&this.ctx.toolbar.destroy(),this.ctx.animations=null,this.ctx.axes=null,this.ctx.annotations=null,this.ctx.core=null,this.ctx.data=null,this.ctx.grid=null,this.ctx.series=null,this.ctx.responsive=null,this.ctx.theme=null,this.ctx.formatters=null,this.ctx.titleSubtitle=null,this.ctx.legend=null,this.ctx.dimensions=null,this.ctx.options=null,this.ctx.crosshairs=null,this.ctx.zoomPanSelection=null,this.ctx.updateHelpers=null,this.ctx.toolbar=null,this.ctx.localization=null,this.ctx.w.globals.tooltip=null,this.clearDomElements({isUpdating:a})}},{key:"killSVG",value:function(s){s.each(function(a,i){this.removeClass("*"),this.off(),this.stop()},!0),s.ungroup(),s.clear()}},{key:"clearDomElements",value:function(s){var a=this,i=s.isUpdating,d=this.w.globals.dom.Paper.node;d.parentNode&&d.parentNode.parentNode&&!i&&(d.parentNode.parentNode.style.minHeight="unset");var c=this.w.globals.dom.baseEl;c&&this.ctx.eventList.forEach(function(w){c.removeEventListener(w,a.ctx.events.documentEvent)});var p=this.w.globals.dom;if(this.ctx.el!==null)for(;this.ctx.el.firstChild;)this.ctx.el.removeChild(this.ctx.el.firstChild);this.killSVG(p.Paper),p.Paper.remove(),p.elWrap=null,p.elGraphical=null,p.elLegendWrap=null,p.elLegendForeign=null,p.baseEl=null,p.elGridRect=null,p.elGridRectMask=null,p.elGridRectMarkerMask=null,p.elForecastMask=null,p.elNonForecastMask=null,p.elDefs=null}}]),T}(),ti=new WeakMap,q4=function(){function T(s,a){g(this,T),this.opts=a,this.ctx=this,this.w=new Tt(a).init(),this.el=s,this.w.globals.cuid=H.randomId(),this.w.globals.chartID=this.w.config.chart.id?H.escapeString(this.w.config.chart.id):this.w.globals.cuid,new l2(this).initModules(),this.create=H.bind(this.create,this),this.windowResizeHandler=this._windowResizeHandler.bind(this),this.parentResizeHandler=this._parentResizeCallback.bind(this)}return b(T,[{key:"render",value:function(){var s=this;return new Promise(function(a,i){if(s.el!==null){Apex._chartInstances===void 0&&(Apex._chartInstances=[]),s.w.config.chart.id&&Apex._chartInstances.push({id:s.w.globals.chartID,group:s.w.config.chart.group,chart:s}),s.setLocale(s.w.config.chart.defaultLocale);var d=s.w.config.chart.events.beforeMount;if(typeof d=="function"&&d(s,s.w),s.events.fireEvent("beforeMount",[s,s.w]),window.addEventListener("resize",s.windowResizeHandler),function(M,x){var I=!1;if(M.nodeType!==Node.DOCUMENT_FRAGMENT_NODE){var $=M.getBoundingClientRect();M.style.display!=="none"&&$.width!==0||(I=!0)}var N=new ResizeObserver(function(L){I&&x.call(M,L),I=!0});M.nodeType===Node.DOCUMENT_FRAGMENT_NODE?Array.from(M.children).forEach(function(L){return N.observe(L)}):N.observe(M),ti.set(x,N)}(s.el.parentNode,s.parentResizeHandler),!s.css){var c=s.el.getRootNode&&s.el.getRootNode(),p=H.is("ShadowRoot",c),w=s.el.ownerDocument,f=w.getElementById("apexcharts-css");!p&&f||(s.css=document.createElement("style"),s.css.id="apexcharts-css",s.css.textContent=`@keyframes opaque { + .apexcharts-rangebar-series .apexcharts-series[data\\:realIndex='`).concat(a,"'] path[j='").concat(s,"']")));var f=w?parseFloat(w.getAttribute("cx")):0,b=w?parseFloat(w.getAttribute("cy")):0,M=w?parseFloat(w.getAttribute("barWidth")):0,z=d.getElGrid().getBoundingClientRect(),y=w&&(w.classList.contains("apexcharts-candlestick-area")||w.classList.contains("apexcharts-boxPlot-area"));i.globals.isXNumeric?(w&&!y&&(f-=u%2!=0?M/2:0),w&&y&&i.globals.comboCharts&&(f-=M/2)):i.globals.isBarHorizontal||(f=d.xAxisTicksPositions[s-1]+d.dataPointsDividedWidth/2,isNaN(f)&&(f=d.xAxisTicksPositions[s]-d.dataPointsDividedWidth/2)),i.globals.isBarHorizontal?b-=d.tooltipRect.ttHeight:i.config.tooltip.followCursor?b=d.e.clientY-z.top-d.tooltipRect.ttHeight/2:b+d.tooltipRect.ttHeight+15>i.globals.gridHeight&&(b=i.globals.gridHeight),i.globals.isBarHorizontal||this.moveXCrosshairs(f),d.fixedTooltip||this.moveTooltip(f,b||i.globals.gridHeight)}}]),T}(),Ls=function(){function T(s){g(this,T),this.w=s.w,this.ttCtx=s,this.ctx=s.ctx,this.tooltipPosition=new Bl(s)}return k(T,[{key:"drawDynamicPoints",value:function(){var s=this.w,a=new _(this.ctx),i=new Qt(this.ctx),d=s.globals.dom.baseEl.querySelectorAll(".apexcharts-series");d=F(d),s.config.chart.stacked&&d.sort(function(z,y){return parseFloat(z.getAttribute("data:realIndex"))-parseFloat(y.getAttribute("data:realIndex"))});for(var u=0;u2&&arguments[2]!==void 0?arguments[2]:null,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,u=this.w;u.config.chart.type!=="bubble"&&this.newPointSize(s,a);var p=a.getAttribute("cx"),w=a.getAttribute("cy");if(i!==null&&d!==null&&(p=i,w=d),this.tooltipPosition.moveXCrosshairs(p),!this.fixedTooltip){if(u.config.chart.type==="radar"){var f=this.ttCtx.getElGrid().getBoundingClientRect();p=this.ttCtx.e.clientX-f.left}this.tooltipPosition.moveTooltip(p,w,u.config.markers.hover.size)}}},{key:"enlargePoints",value:function(s){for(var a=this.w,i=this,d=this.ttCtx,u=s,p=a.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),w=a.config.markers.hover.size,f=0;f=0?s[a].setAttribute("r",i):s[a].setAttribute("r",0)}}}]),T}(),cn=function(){function T(s){g(this,T),this.w=s.w;var a=this.w;this.ttCtx=s,this.isVerticalGroupedRangeBar=!a.globals.isBarHorizontal&&a.config.chart.type==="rangeBar"&&a.config.plotOptions.bar.rangeBarGroupRows}return k(T,[{key:"getAttr",value:function(s,a){return parseFloat(s.target.getAttribute(a))}},{key:"handleHeatTreeTooltip",value:function(s){var a=s.e,i=s.opt,d=s.x,u=s.y,p=s.type,w=this.ttCtx,f=this.w;if(a.target.classList.contains("apexcharts-".concat(p,"-rect"))){var b=this.getAttr(a,"i"),M=this.getAttr(a,"j"),z=this.getAttr(a,"cx"),y=this.getAttr(a,"cy"),A=this.getAttr(a,"width"),N=this.getAttr(a,"height");if(w.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:b,j:M,shared:!1,e:a}),f.globals.capturedSeriesIndex=b,f.globals.capturedDataPointIndex=M,d=z+w.tooltipRect.ttWidth/2+A,u=y+w.tooltipRect.ttHeight/2-N/2,w.tooltipPosition.moveXCrosshairs(z+A/2),d>f.globals.gridWidth/2&&(d=z-w.tooltipRect.ttWidth/2+A),w.w.config.tooltip.followCursor){var L=f.globals.dom.elWrap.getBoundingClientRect();d=f.globals.clientX-L.left-(d>f.globals.gridWidth/2?w.tooltipRect.ttWidth:0),u=f.globals.clientY-L.top-(u>f.globals.gridHeight/2?w.tooltipRect.ttHeight:0)}}return{x:d,y:u}}},{key:"handleMarkerTooltip",value:function(s){var a,i,d=s.e,u=s.opt,p=s.x,w=s.y,f=this.w,b=this.ttCtx;if(d.target.classList.contains("apexcharts-marker")){var M=parseInt(u.paths.getAttribute("cx"),10),z=parseInt(u.paths.getAttribute("cy"),10),y=parseFloat(u.paths.getAttribute("val"));if(i=parseInt(u.paths.getAttribute("rel"),10),a=parseInt(u.paths.parentNode.parentNode.parentNode.getAttribute("rel"),10)-1,b.intersect){var A=H.findAncestor(u.paths,"apexcharts-series");A&&(a=parseInt(A.getAttribute("data:realIndex"),10))}if(b.tooltipLabels.drawSeriesTexts({ttItems:u.ttItems,i:a,j:i,shared:!b.showOnIntersect&&f.config.tooltip.shared,e:d}),d.type==="mouseup"&&b.markerClick(d,a,i),f.globals.capturedSeriesIndex=a,f.globals.capturedDataPointIndex=i,p=M,w=z+f.globals.translateY-1.4*b.tooltipRect.ttHeight,b.w.config.tooltip.followCursor){var N=b.getElGrid().getBoundingClientRect();w=b.e.clientY+f.globals.translateY-N.top}y<0&&(w=z),b.marker.enlargeCurrentPoint(i,u.paths,p,w)}return{x:p,y:w}}},{key:"handleBarTooltip",value:function(s){var a,i,d=s.e,u=s.opt,p=this.w,w=this.ttCtx,f=w.getElTooltip(),b=0,M=0,z=0,y=this.getBarTooltipXY({e:d,opt:u});a=y.i;var A=y.barHeight,N=y.j;p.globals.capturedSeriesIndex=a,p.globals.capturedDataPointIndex=N,p.globals.isBarHorizontal&&w.tooltipUtil.hasBars()||!p.config.tooltip.shared?(M=y.x,z=y.y,i=Array.isArray(p.config.stroke.width)?p.config.stroke.width[a]:p.config.stroke.width,b=M):p.globals.comboCharts||p.config.tooltip.shared||(b/=2),isNaN(z)&&(z=p.globals.svgHeight-w.tooltipRect.ttHeight);var L=parseInt(u.paths.parentNode.getAttribute("data:realIndex"),10),O=p.globals.isMultipleYAxis?p.config.yaxis[L]&&p.config.yaxis[L].reversed:p.config.yaxis[0].reversed;if(M+w.tooltipRect.ttWidth>p.globals.gridWidth&&!O?M-=w.tooltipRect.ttWidth:M<0&&(M=0),w.w.config.tooltip.followCursor){var V=w.getElGrid().getBoundingClientRect();z=w.e.clientY-V.top}w.tooltip===null&&(w.tooltip=p.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),p.config.tooltip.shared||(p.globals.comboBarCount>0?w.tooltipPosition.moveXCrosshairs(b+i/2):w.tooltipPosition.moveXCrosshairs(b)),!w.fixedTooltip&&(!p.config.tooltip.shared||p.globals.isBarHorizontal&&w.tooltipUtil.hasBars())&&(O&&(M-=w.tooltipRect.ttWidth)<0&&(M=0),!O||p.globals.isBarHorizontal&&w.tooltipUtil.hasBars()||(z=z+A-2*(p.globals.series[a][N]<0?A:0)),z=z+p.globals.translateY-w.tooltipRect.ttHeight/2,f.style.left=M+p.globals.translateX+"px",f.style.top=z+"px")}},{key:"getBarTooltipXY",value:function(s){var a=this,i=s.e,d=s.opt,u=this.w,p=null,w=this.ttCtx,f=0,b=0,M=0,z=0,y=0,A=i.target.classList;if(A.contains("apexcharts-bar-area")||A.contains("apexcharts-candlestick-area")||A.contains("apexcharts-boxPlot-area")||A.contains("apexcharts-rangebar-area")){var N=i.target,L=N.getBoundingClientRect(),O=d.elGrid.getBoundingClientRect(),V=L.height;y=L.height;var Z=L.width,m=parseInt(N.getAttribute("cx"),10),C=parseInt(N.getAttribute("cy"),10);z=parseFloat(N.getAttribute("barWidth"));var j=i.type==="touchmove"?i.touches[0].clientX:i.clientX;p=parseInt(N.getAttribute("j"),10),f=parseInt(N.parentNode.getAttribute("rel"),10)-1;var E=N.getAttribute("data-range-y1"),K=N.getAttribute("data-range-y2");u.globals.comboCharts&&(f=parseInt(N.parentNode.getAttribute("data:realIndex"),10));var Q=function(it){return u.globals.isXNumeric?m-Z/2:a.isVerticalGroupedRangeBar?m+Z/2:m-w.dataPointsDividedWidth+Z/2},ot=function(){return C-w.dataPointsDividedHeight+V/2-w.tooltipRect.ttHeight/2};w.tooltipLabels.drawSeriesTexts({ttItems:d.ttItems,i:f,j:p,y1:E?parseInt(E,10):null,y2:K?parseInt(K,10):null,shared:!w.showOnIntersect&&u.config.tooltip.shared,e:i}),u.config.tooltip.followCursor?u.globals.isBarHorizontal?(b=j-O.left+15,M=ot()):(b=Q(),M=i.clientY-O.top-w.tooltipRect.ttHeight/2-15):u.globals.isBarHorizontal?((b=m)0&&i.setAttribute("width",a.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var s=this.w,a=this.ttCtx;a.ycrosshairs=s.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),a.ycrosshairsHidden=s.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(s,a,i){var d=this.ttCtx,u=this.w,p=u.globals.yLabelFormatters[s];if(d.yaxisTooltips[s]){var w=d.getElGrid().getBoundingClientRect(),f=(a-w.top)*i.yRatio[s],b=u.globals.maxYArr[s]-u.globals.minYArr[s],M=u.globals.minYArr[s]+(b-f);d.tooltipPosition.moveYCrosshairs(a-w.top),d.yaxisTooltipText[s].innerHTML=p(M),d.tooltipPosition.moveYAxisTooltip(s)}}}]),T}(),yo=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w;var a=this.w;this.tConfig=a.config.tooltip,this.tooltipUtil=new hl(this),this.tooltipLabels=new Ps(this),this.tooltipPosition=new Bl(this),this.marker=new Ls(this),this.intersect=new cn(this),this.axesTooltip=new Bn(this),this.showOnIntersect=this.tConfig.intersect,this.showTooltipTitle=this.tConfig.x.show,this.fixedTooltip=this.tConfig.fixed.enabled,this.xaxisTooltip=null,this.yaxisTTEls=null,this.isBarShared=!a.globals.isBarHorizontal&&this.tConfig.shared,this.lastHoverTime=Date.now()}return k(T,[{key:"getElTooltip",value:function(s){return s||(s=this),s.w.globals.dom.baseEl?s.w.globals.dom.baseEl.querySelector(".apexcharts-tooltip"):null}},{key:"getElXCrosshairs",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-xcrosshairs")}},{key:"getElGrid",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-grid")}},{key:"drawTooltip",value:function(s){var a=this.w;this.xyRatios=s,this.isXAxisTooltipEnabled=a.config.xaxis.tooltip.enabled&&a.globals.axisCharts,this.yaxisTooltips=a.config.yaxis.map(function(p,w){return!!(p.show&&p.tooltip.enabled&&a.globals.axisCharts)}),this.allTooltipSeriesGroups=[],a.globals.axisCharts||(this.showTooltipTitle=!1);var i=document.createElement("div");if(i.classList.add("apexcharts-tooltip"),a.config.tooltip.cssClass&&i.classList.add(a.config.tooltip.cssClass),i.classList.add("apexcharts-theme-".concat(this.tConfig.theme)),a.globals.dom.elWrap.appendChild(i),a.globals.axisCharts){this.axesTooltip.drawXaxisTooltip(),this.axesTooltip.drawYaxisTooltip(),this.axesTooltip.setXCrosshairWidth(),this.axesTooltip.handleYCrosshair();var d=new bt(this.ctx);this.xAxisTicksPositions=d.getXAxisTicksPositions()}if(!a.globals.comboCharts&&!this.tConfig.intersect&&a.config.chart.type!=="rangeBar"||this.tConfig.shared||(this.showOnIntersect=!0),a.config.markers.size!==0&&a.globals.markers.largestSize!==0||this.marker.drawDynamicPoints(this),a.globals.collapsedSeries.length!==a.globals.series.length){this.dataPointsDividedHeight=a.globals.gridHeight/a.globals.dataPoints,this.dataPointsDividedWidth=a.globals.gridWidth/a.globals.dataPoints,this.showTooltipTitle&&(this.tooltipTitle=document.createElement("div"),this.tooltipTitle.classList.add("apexcharts-tooltip-title"),this.tooltipTitle.style.fontFamily=this.tConfig.style.fontFamily||a.config.chart.fontFamily,this.tooltipTitle.style.fontSize=this.tConfig.style.fontSize,i.appendChild(this.tooltipTitle));var u=a.globals.series.length;(a.globals.xyCharts||a.globals.comboCharts)&&this.tConfig.shared&&(u=this.showOnIntersect?1:a.globals.series.length),this.legendLabels=a.globals.dom.baseEl.querySelectorAll(".apexcharts-legend-text"),this.ttItems=this.createTTElements(u),this.addSVGEvents()}}},{key:"createTTElements",value:function(s){for(var a=this,i=this.w,d=[],u=this.getElTooltip(),p=function(f){var b=document.createElement("div");b.classList.add("apexcharts-tooltip-series-group"),b.style.order=i.config.tooltip.inverseOrder?s-f:f+1,a.tConfig.shared&&a.tConfig.enabledOnSeries&&Array.isArray(a.tConfig.enabledOnSeries)&&a.tConfig.enabledOnSeries.indexOf(f)<0&&b.classList.add("apexcharts-tooltip-series-group-hidden");var M=document.createElement("span");M.classList.add("apexcharts-tooltip-marker"),M.style.backgroundColor=i.globals.colors[f],b.appendChild(M);var z=document.createElement("div");z.classList.add("apexcharts-tooltip-text"),z.style.fontFamily=a.tConfig.style.fontFamily||i.config.chart.fontFamily,z.style.fontSize=a.tConfig.style.fontSize,["y","goals","z"].forEach(function(y){var A=document.createElement("div");A.classList.add("apexcharts-tooltip-".concat(y,"-group"));var N=document.createElement("span");N.classList.add("apexcharts-tooltip-text-".concat(y,"-label")),A.appendChild(N);var L=document.createElement("span");L.classList.add("apexcharts-tooltip-text-".concat(y,"-value")),A.appendChild(L),z.appendChild(A)}),b.appendChild(z),u.appendChild(b),d.push(b)},w=0;w0&&this.addPathsEventListeners(N,z),this.tooltipUtil.hasBars()&&!this.tConfig.shared&&this.addDatapointEventsListeners(z)}}},{key:"drawFixedTooltipRect",value:function(){var s=this.w,a=this.getElTooltip(),i=a.getBoundingClientRect(),d=i.width+10,u=i.height+10,p=this.tConfig.fixed.offsetX,w=this.tConfig.fixed.offsetY,f=this.tConfig.fixed.position.toLowerCase();return f.indexOf("right")>-1&&(p=p+s.globals.svgWidth-d+10),f.indexOf("bottom")>-1&&(w=w+s.globals.svgHeight-u-10),a.style.left=p+"px",a.style.top=w+"px",{x:p,y:w,ttWidth:d,ttHeight:u}}},{key:"addDatapointEventsListeners",value:function(s){var a=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area");this.addPathsEventListeners(a,s)}},{key:"addPathsEventListeners",value:function(s,a){for(var i=this,d=function(p){var w={paths:s[p],tooltipEl:a.tooltipEl,tooltipY:a.tooltipY,tooltipX:a.tooltipX,elGrid:a.elGrid,hoverArea:a.hoverArea,ttItems:a.ttItems};["mousemove","mouseup","touchmove","mouseout","touchend"].map(function(f){return s[p].addEventListener(f,i.onSeriesHover.bind(i,w),{capture:!1,passive:!0})})},u=0;u=100?this.seriesHover(s,a):(clearTimeout(this.seriesHoverTimeout),this.seriesHoverTimeout=setTimeout(function(){i.seriesHover(s,a)},100-d))}},{key:"seriesHover",value:function(s,a){var i=this;this.lastHoverTime=Date.now();var d=[],u=this.w;u.config.chart.group&&(d=this.ctx.getGroupedCharts()),u.globals.axisCharts&&(u.globals.minX===-1/0&&u.globals.maxX===1/0||u.globals.dataPoints===0)||(d.length?d.forEach(function(p){var w=i.getElTooltip(p),f={paths:s.paths,tooltipEl:w,tooltipY:s.tooltipY,tooltipX:s.tooltipX,elGrid:s.elGrid,hoverArea:s.hoverArea,ttItems:p.w.globals.tooltip.ttItems};p.w.globals.minX===i.w.globals.minX&&p.w.globals.maxX===i.w.globals.maxX&&p.w.globals.tooltip.seriesHoverByContext({chartCtx:p,ttCtx:p.w.globals.tooltip,opt:f,e:a})}):this.seriesHoverByContext({chartCtx:this.ctx,ttCtx:this.w.globals.tooltip,opt:s,e:a}))}},{key:"seriesHoverByContext",value:function(s){var a=s.chartCtx,i=s.ttCtx,d=s.opt,u=s.e,p=a.w,w=this.getElTooltip();w&&(i.tooltipRect={x:0,y:0,ttWidth:w.getBoundingClientRect().width,ttHeight:w.getBoundingClientRect().height},i.e=u,i.tooltipUtil.hasBars()&&!p.globals.comboCharts&&!i.isBarShared&&this.tConfig.onDatasetHover.highlightDataSeries&&new ut(a).toggleSeriesOnHover(u,u.target.parentNode),i.fixedTooltip&&i.drawFixedTooltipRect(),p.globals.axisCharts?i.axisChartsTooltips({e:u,opt:d,tooltipRect:i.tooltipRect}):i.nonAxisChartsTooltips({e:u,opt:d,tooltipRect:i.tooltipRect}))}},{key:"axisChartsTooltips",value:function(s){var a,i,d=s.e,u=s.opt,p=this.w,w=u.elGrid.getBoundingClientRect(),f=d.type==="touchmove"?d.touches[0].clientX:d.clientX,b=d.type==="touchmove"?d.touches[0].clientY:d.clientY;if(this.clientY=b,this.clientX=f,p.globals.capturedSeriesIndex=-1,p.globals.capturedDataPointIndex=-1,bw.top+w.height)this.handleMouseOut(u);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!p.config.tooltip.shared){var M=parseInt(u.paths.getAttribute("index"),10);if(this.tConfig.enabledOnSeries.indexOf(M)<0)return void this.handleMouseOut(u)}var z=this.getElTooltip(),y=this.getElXCrosshairs(),A=p.globals.xyCharts||p.config.chart.type==="bar"&&!p.globals.isBarHorizontal&&this.tooltipUtil.hasBars()&&this.tConfig.shared||p.globals.comboCharts&&this.tooltipUtil.hasBars();if(d.type==="mousemove"||d.type==="touchmove"||d.type==="mouseup"){if(p.globals.collapsedSeries.length+p.globals.ancillaryCollapsedSeries.length===p.globals.series.length)return;y!==null&&y.classList.add("apexcharts-active");var N=this.yaxisTooltips.filter(function(V){return V===!0});if(this.ycrosshairs!==null&&N.length&&this.ycrosshairs.classList.add("apexcharts-active"),A&&!this.showOnIntersect)this.handleStickyTooltip(d,f,b,u);else if(p.config.chart.type==="heatmap"||p.config.chart.type==="treemap"){var L=this.intersect.handleHeatTreeTooltip({e:d,opt:u,x:a,y:i,type:p.config.chart.type});a=L.x,i=L.y,z.style.left=a+"px",z.style.top=i+"px"}else this.tooltipUtil.hasBars()&&this.intersect.handleBarTooltip({e:d,opt:u}),this.tooltipUtil.hasMarkers()&&this.intersect.handleMarkerTooltip({e:d,opt:u,x:a,y:i});if(this.yaxisTooltips.length)for(var O=0;Ob.width)this.handleMouseOut(d);else if(f!==null)this.handleStickyCapturedSeries(s,f,d,w);else if(this.tooltipUtil.isXoverlap(w)||u.globals.isBarHorizontal){var M=u.globals.series.findIndex(function(z,y){return!u.globals.collapsedSeriesIndices.includes(y)});this.create(s,this,M,w,d.ttItems)}}},{key:"handleStickyCapturedSeries",value:function(s,a,i,d){var u=this.w;if(!this.tConfig.shared&&u.globals.series[a][d]===null)return void this.handleMouseOut(i);if(u.globals.series[a][d]!==void 0)this.tConfig.shared&&this.tooltipUtil.isXoverlap(d)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(s,this,a,d,i.ttItems):this.create(s,this,a,d,i.ttItems,!1);else if(this.tooltipUtil.isXoverlap(d)){var p=u.globals.series.findIndex(function(w,f){return!u.globals.collapsedSeriesIndices.includes(f)});this.create(s,this,p,d,i.ttItems)}}},{key:"deactivateHoverFilter",value:function(){for(var s=this.w,a=new _(this.ctx),i=s.globals.dom.Paper.select(".apexcharts-bar-area"),d=0;d5&&arguments[5]!==void 0?arguments[5]:null,K=this.w,Q=a;s.type==="mouseup"&&this.markerClick(s,i,d),E===null&&(E=this.tConfig.shared);var ot=this.tooltipUtil.hasMarkers(i),it=this.tooltipUtil.getElBars();if(K.config.legend.tooltipHoverFormatter){var vt=K.config.legend.tooltipHoverFormatter,zt=Array.from(this.legendLabels);zt.forEach(function(Wn){var lr=Wn.getAttribute("data:default-text");Wn.innerHTML=decodeURIComponent(lr)});for(var Mt=0;Mt0?Q.marker.enlargePoints(d):Q.tooltipPosition.moveDynamicPointsOnHover(d);else if(this.tooltipUtil.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(it),this.barSeriesHeight>0)){var Ie=new _(this.ctx),Be=K.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(d,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(d,i);for(var Le=0;Led.globals.gridHeight&&(L=d.globals.gridHeight-m)),{bcx:M,bcy:b,dataLabelsX:N,dataLabelsY:L,totalDataLabelsX:i,totalDataLabelsY:a,totalDataLabelsAnchor:"middle"}}},{key:"calculateBarsDataLabelsPosition",value:function(s){var a=this.w,i=s.x,d=s.i,u=s.j,p=s.realIndex,w=s.groupIndex,f=s.bcy,b=s.barHeight,M=s.barWidth,z=s.textRects,y=s.dataLabelsX,A=s.strokeWidth,N=s.dataLabelsConfig,L=s.barDataLabelsConfig,O=s.barTotalDataLabelsConfig,V=s.offX,Z=s.offY,m=a.globals.gridHeight/a.globals.dataPoints;M=Math.abs(M);var C,j,E=(f+=w!==-1?w*b:0)-(this.barCtx.isRangeBar?0:m)+b/2+z.height/2+Z-3,K="start",Q=this.barCtx.series[d][u]<0,ot=i;switch(this.barCtx.isReversed&&(ot=i+M-(Q?2*M:0),i=a.globals.gridWidth-M),L.position){case"center":y=Q?ot+M/2-V:Math.max(z.width/2,ot-M/2)+V;break;case"bottom":y=Q?ot+M-A-Math.round(z.width/2)-V:ot-M+A+Math.round(z.width/2)+V;break;case"top":y=Q?ot-A+Math.round(z.width/2)-V:ot-A-Math.round(z.width/2)+V}if(this.barCtx.lastActiveBarSerieIndex===p&&O.enabled){var it=new _(this.barCtx.ctx).getTextRects(this.getStackedTotalDataLabel({realIndex:p,j:u}),N.fontSize);Q?(C=ot-A+Math.round(it.width/2)-V-O.offsetX-15,K="end"):C=ot-A-Math.round(it.width/2)+V+O.offsetX+15,j=E+O.offsetY}return a.config.chart.stacked||(y<0?y=y+z.width+A:y+z.width/2>a.globals.gridWidth&&(y=a.globals.gridWidth-z.width-A)),{bcx:i,bcy:f,dataLabelsX:y,dataLabelsY:E,totalDataLabelsX:C,totalDataLabelsY:j,totalDataLabelsAnchor:K}}},{key:"drawCalculatedDataLabels",value:function(s){var a=s.x,i=s.y,d=s.val,u=s.i,p=s.j,w=s.textRects,f=s.barHeight,b=s.barWidth,M=s.dataLabelsConfig,z=this.w,y="rotate(0)";z.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(y="rotate(-90, ".concat(a,", ").concat(i,")"));var A=new Et(this.barCtx.ctx),N=new _(this.barCtx.ctx),L=M.formatter,O=null,V=z.globals.collapsedSeriesIndices.indexOf(u)>-1;if(M.enabled&&!V){O=N.group({class:"apexcharts-data-labels",transform:y});var Z="";d!==void 0&&(Z=L(d,h(h({},z),{},{seriesIndex:u,dataPointIndex:p,w:z}))),!d&&z.config.plotOptions.bar.hideZeroBarsWhenGrouped&&(Z="");var m=z.globals.series[u][p]<0,C=z.config.plotOptions.bar.dataLabels.position;z.config.plotOptions.bar.dataLabels.orientation==="vertical"&&(C==="top"&&(M.textAnchor=m?"end":"start"),C==="center"&&(M.textAnchor="middle"),C==="bottom"&&(M.textAnchor=m?"end":"start")),this.barCtx.isRangeBar&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels&&bMath.abs(b)&&(Z=""):w.height/1.6>Math.abs(f)&&(Z=""));var j=h({},M);this.barCtx.isHorizontal&&d<0&&(M.textAnchor==="start"?j.textAnchor="end":M.textAnchor==="end"&&(j.textAnchor="start")),A.plotDataLabelsText({x:a,y:i,text:Z,i:u,j:p,parent:O,dataLabelsConfig:j,alwaysDrawDataLabel:!0,offsetCorrection:!0})}return O}},{key:"drawTotalDataLabels",value:function(s){var a,i=s.x,d=s.y,u=s.val,p=s.realIndex,w=s.textAnchor,f=s.barTotalDataLabelsConfig,b=new _(this.barCtx.ctx);return f.enabled&&i!==void 0&&d!==void 0&&this.barCtx.lastActiveBarSerieIndex===p&&(a=b.drawText({x:i,y:d,foreColor:f.style.color,text:u,textAnchor:w,fontFamily:f.style.fontFamily,fontSize:f.style.fontSize,fontWeight:f.style.fontWeight})),a}}]),T}(),Ug=function(){function T(s){g(this,T),this.w=s.w,this.barCtx=s}return k(T,[{key:"initVariables",value:function(s){var a=this.w;this.barCtx.series=s,this.barCtx.totalItems=0,this.barCtx.seriesLen=0,this.barCtx.visibleI=-1,this.barCtx.visibleItems=1;for(var i=0;i0&&(this.barCtx.seriesLen=this.barCtx.seriesLen+1,this.barCtx.totalItems+=s[i].length),a.globals.isXNumeric)for(var d=0;da.globals.minX&&a.globals.seriesX[i][d]0&&(d=b.globals.minXDiff/y),(p=d/z*parseInt(this.barCtx.barOptions.columnWidth,10)/100)<1&&(p=1)}String(this.barCtx.barOptions.columnWidth).indexOf("%")===-1&&(p=parseInt(this.barCtx.barOptions.columnWidth,10)),w=b.globals.gridHeight-this.barCtx.baseLineY[this.barCtx.yaxisIndex]-(this.barCtx.isReversed?b.globals.gridHeight:0)+(this.barCtx.isReversed?2*this.barCtx.baseLineY[this.barCtx.yaxisIndex]:0),s=b.globals.padHorizontal+(d-p*this.barCtx.seriesLen)/2}return{x:s,y:a,yDivision:i,xDivision:d,barHeight:u,barWidth:p,zeroH:w,zeroW:f}}},{key:"initializeStackedPrevVars",value:function(s){var a=s.w;a.globals.hasSeriesGroups?a.globals.seriesGroups.forEach(function(i){s[i]||(s[i]={}),s[i].prevY=[],s[i].prevX=[],s[i].prevYF=[],s[i].prevXF=[],s[i].prevYVal=[],s[i].prevXVal=[]}):(s.prevY=[],s.prevX=[],s.prevYF=[],s.prevXF=[],s.prevYVal=[],s.prevXVal=[])}},{key:"initializeStackedXYVars",value:function(s){var a=s.w;a.globals.hasSeriesGroups?a.globals.seriesGroups.forEach(function(i){s[i]||(s[i]={}),s[i].xArrj=[],s[i].xArrjF=[],s[i].xArrjVal=[],s[i].yArrj=[],s[i].yArrjF=[],s[i].yArrjVal=[]}):(s.xArrj=[],s.xArrjF=[],s.xArrjVal=[],s.yArrj=[],s.yArrjF=[],s.yArrjVal=[])}},{key:"getPathFillColor",value:function(s,a,i,d){var u,p,w,f,b=this.w,M=new Ft(this.barCtx.ctx),z=null,y=this.barCtx.barOptions.distributed?i:a;return this.barCtx.barOptions.colors.ranges.length>0&&this.barCtx.barOptions.colors.ranges.map(function(A){s[a][i]>=A.from&&s[a][i]<=A.to&&(z=A.color)}),b.config.series[a].data[i]&&b.config.series[a].data[i].fillColor&&(z=b.config.series[a].data[i].fillColor),M.fillPath({seriesNumber:this.barCtx.barOptions.distributed?y:d,dataPointIndex:i,color:z,value:s[a][i],fillConfig:(u=b.config.series[a].data[i])===null||u===void 0?void 0:u.fill,fillType:(p=b.config.series[a].data[i])!==null&&p!==void 0&&(w=p.fill)!==null&&w!==void 0&&w.type?(f=b.config.series[a].data[i])===null||f===void 0?void 0:f.fill.type:b.config.fill.type})}},{key:"getStrokeWidth",value:function(s,a,i){var d=0,u=this.w;return this.barCtx.series[s][a]?this.barCtx.isNullValue=!1:this.barCtx.isNullValue=!0,u.config.stroke.show&&(this.barCtx.isNullValue||(d=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[i]:this.barCtx.strokeWidth)),d}},{key:"shouldApplyRadius",value:function(s){var a=this.w,i=!1;return a.config.plotOptions.bar.borderRadius>0&&(a.config.chart.stacked&&a.config.plotOptions.bar.borderRadiusWhenStacked==="last"?this.barCtx.lastActiveBarSerieIndex===s&&(i=!0):i=!0),i}},{key:"barBackground",value:function(s){var a=s.j,i=s.i,d=s.x1,u=s.x2,p=s.y1,w=s.y2,f=s.elSeries,b=this.w,M=new _(this.barCtx.ctx),z=new ut(this.barCtx.ctx).getActiveConfigSeriesIndex();if(this.barCtx.barOptions.colors.backgroundBarColors.length>0&&z===i){a>=this.barCtx.barOptions.colors.backgroundBarColors.length&&(a%=this.barCtx.barOptions.colors.backgroundBarColors.length);var y=this.barCtx.barOptions.colors.backgroundBarColors[a],A=M.drawRect(d!==void 0?d:0,p!==void 0?p:0,u!==void 0?u:b.globals.gridWidth,w!==void 0?w:b.globals.gridHeight,this.barCtx.barOptions.colors.backgroundBarRadius,y,this.barCtx.barOptions.colors.backgroundBarOpacity);f.add(A),A.node.classList.add("apexcharts-backgroundBar")}}},{key:"getColumnPaths",value:function(s){var a,i=s.barWidth,d=s.barXPosition,u=s.y1,p=s.y2,w=s.strokeWidth,f=s.seriesGroup,b=s.realIndex,M=s.i,z=s.j,y=s.w,A=new _(this.barCtx.ctx);(w=Array.isArray(w)?w[b]:w)||(w=0);var N=i,L=d;(a=y.config.series[b].data[z])!==null&&a!==void 0&&a.columnWidthOffset&&(L=d-y.config.series[b].data[z].columnWidthOffset/2,N=i+y.config.series[b].data[z].columnWidthOffset);var O=L,V=L+N;u+=.001,p+=.001;var Z=A.move(O,u),m=A.move(O,u),C=A.line(V-w,u);if(y.globals.previousPaths.length>0&&(m=this.barCtx.getPreviousPath(b,z,!1)),Z=Z+A.line(O,p)+A.line(V-w,p)+A.line(V-w,u)+(y.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),m=m+A.line(O,u)+C+C+C+C+C+A.line(O,u)+(y.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(b)&&(Z=A.roundPathCorners(Z,y.config.plotOptions.bar.borderRadius)),y.config.chart.stacked){var j=this.barCtx;y.globals.hasSeriesGroups&&f&&(j=this.barCtx[f]),j.yArrj.push(p),j.yArrjF.push(Math.abs(u-p)),j.yArrjVal.push(this.barCtx.series[M][z])}return{pathTo:Z,pathFrom:m}}},{key:"getBarpaths",value:function(s){var a,i=s.barYPosition,d=s.barHeight,u=s.x1,p=s.x2,w=s.strokeWidth,f=s.seriesGroup,b=s.realIndex,M=s.i,z=s.j,y=s.w,A=new _(this.barCtx.ctx);(w=Array.isArray(w)?w[b]:w)||(w=0);var N=i,L=d;(a=y.config.series[b].data[z])!==null&&a!==void 0&&a.barHeightOffset&&(N=i-y.config.series[b].data[z].barHeightOffset/2,L=d+y.config.series[b].data[z].barHeightOffset);var O=N,V=N+L;u+=.001,p+=.001;var Z=A.move(u,O),m=A.move(u,O);y.globals.previousPaths.length>0&&(m=this.barCtx.getPreviousPath(b,z,!1));var C=A.line(u,V-w);if(Z=Z+A.line(p,O)+A.line(p,V-w)+C+(y.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),m=m+A.line(u,O)+C+C+C+C+C+A.line(u,O)+(y.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z"),this.shouldApplyRadius(b)&&(Z=A.roundPathCorners(Z,y.config.plotOptions.bar.borderRadius)),y.config.chart.stacked){var j=this.barCtx;y.globals.hasSeriesGroups&&f&&(j=this.barCtx[f]),j.xArrj.push(p),j.xArrjF.push(Math.abs(u-p)),j.xArrjVal.push(this.barCtx.series[M][z])}return{pathTo:Z,pathFrom:m}}},{key:"checkZeroSeries",value:function(s){for(var a=s.series,i=this.w,d=0;d2&&arguments[2]!==void 0)||arguments[2]?a:null;return s!=null&&(i=a+s/this.barCtx.invertedYRatio-2*(this.barCtx.isReversed?s/this.barCtx.invertedYRatio:0)),i}},{key:"getYForValue",value:function(s,a){var i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2]?a:null;return s!=null&&(i=a-s/this.barCtx.yRatio[this.barCtx.yaxisIndex]+2*(this.barCtx.isReversed?s/this.barCtx.yRatio[this.barCtx.yaxisIndex]:0)),i}},{key:"getGoalValues",value:function(s,a,i,d,u){var p=this,w=this.w,f=[],b=function(y,A){var N;f.push((x(N={},s,s==="x"?p.getXForValue(y,a,!1):p.getYForValue(y,i,!1)),x(N,"attrs",A),N))};if(w.globals.seriesGoals[d]&&w.globals.seriesGoals[d][u]&&Array.isArray(w.globals.seriesGoals[d][u])&&w.globals.seriesGoals[d][u].forEach(function(y){b(y.value,y)}),this.barCtx.barOptions.isDumbbell&&w.globals.seriesRange.length){var M=this.barCtx.barOptions.dumbbellColors?this.barCtx.barOptions.dumbbellColors:w.globals.colors,z={strokeHeight:s==="x"?0:w.globals.markers.size[d],strokeWidth:s==="x"?w.globals.markers.size[d]:0,strokeDashArray:0,strokeLineCap:"round",strokeColor:Array.isArray(M[d])?M[d][0]:M[d]};b(w.globals.seriesRangeStart[d][u],z),b(w.globals.seriesRangeEnd[d][u],h(h({},z),{},{strokeColor:Array.isArray(M[d])?M[d][1]:M[d]}))}return f}},{key:"drawGoalLine",value:function(s){var a=s.barXPosition,i=s.barYPosition,d=s.goalX,u=s.goalY,p=s.barWidth,w=s.barHeight,f=new _(this.barCtx.ctx),b=f.group({className:"apexcharts-bar-goals-groups"});b.node.classList.add("apexcharts-element-hidden"),this.barCtx.w.globals.delayedElements.push({el:b.node}),b.attr("clip-path","url(#gridRectMarkerMask".concat(this.barCtx.w.globals.cuid,")"));var M=null;return this.barCtx.isHorizontal?Array.isArray(d)&&d.forEach(function(z){var y=z.attrs.strokeHeight!==void 0?z.attrs.strokeHeight:w/2,A=i+y+w/2;M=f.drawLine(z.x,A-2*y,z.x,A,z.attrs.strokeColor?z.attrs.strokeColor:void 0,z.attrs.strokeDashArray,z.attrs.strokeWidth?z.attrs.strokeWidth:2,z.attrs.strokeLineCap),b.add(M)}):Array.isArray(u)&&u.forEach(function(z){var y=z.attrs.strokeWidth!==void 0?z.attrs.strokeWidth:p/2,A=a+y+p/2;M=f.drawLine(A-2*y,z.y,A,z.y,z.attrs.strokeColor?z.attrs.strokeColor:void 0,z.attrs.strokeDashArray,z.attrs.strokeHeight?z.attrs.strokeHeight:2,z.attrs.strokeLineCap),b.add(M)}),b}},{key:"drawBarShadow",value:function(s){var a=s.prevPaths,i=s.currPaths,d=s.color,u=this.w,p=a.x,w=a.x1,f=a.barYPosition,b=i.x,M=i.x1,z=i.barYPosition,y=f+i.barHeight,A=new _(this.barCtx.ctx),N=new H,L=A.move(w,y)+A.line(p,y)+A.line(b,z)+A.line(M,z)+A.line(w,y)+(u.config.plotOptions.bar.borderRadiusApplication==="around"?" Z":" z");return A.drawPath({d:L,fill:N.shadeColor(.5,H.rgb2hex(d)),stroke:"none",strokeWidth:0,fillOpacity:1,classes:"apexcharts-bar-shadows"})}}]),T}(),Lr=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w;var i=this.w;this.barOptions=i.config.plotOptions.bar,this.isHorizontal=this.barOptions.horizontal,this.strokeWidth=i.config.stroke.width,this.isNullValue=!1,this.isRangeBar=i.globals.seriesRange.length&&this.isHorizontal,this.isVerticalGroupedRangeBar=!i.globals.isBarHorizontal&&i.globals.seriesRange.length&&i.config.plotOptions.bar.rangeBarGroupRows,this.isFunnel=this.barOptions.isFunnel,this.xyRatios=a,this.xyRatios!==null&&(this.xRatio=a.xRatio,this.initialXRatio=a.initialXRatio,this.yRatio=a.yRatio,this.invertedXRatio=a.invertedXRatio,this.invertedYRatio=a.invertedYRatio,this.baseLineY=a.baseLineY,this.baseLineInvertedY=a.baseLineInvertedY),this.yaxisIndex=0,this.seriesLen=0,this.pathArr=[];var d=new ut(this.ctx);this.lastActiveBarSerieIndex=d.getActiveConfigSeriesIndex("desc",["bar","column"]);var u=d.getBarSeriesIndices(),p=new tt(this.ctx);this.stackedSeriesTotals=p.getStackedSeriesTotals(this.w.config.series.map(function(w,f){return u.indexOf(f)===-1?f:-1}).filter(function(w){return w!==-1})),this.barHelpers=new Ug(this)}return k(T,[{key:"draw",value:function(s,a){var i=this.w,d=new _(this.ctx),u=new tt(this.ctx,i);s=u.getLogSeries(s),this.series=s,this.yRatio=u.getLogYRatios(this.yRatio),this.barHelpers.initVariables(s);var p=d.group({class:"apexcharts-bar-series apexcharts-plot-series"});i.config.dataLabels.enabled&&this.totalItems>this.barOptions.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.");for(var w=0,f=0;w0&&(this.visibleI=this.visibleI+1);var m=0,C=0;this.yRatio.length>1&&(this.yaxisIndex=V),this.isReversed=i.config.yaxis[this.yaxisIndex]&&i.config.yaxis[this.yaxisIndex].reversed;var j=this.barHelpers.initialPositions();N=j.y,m=j.barHeight,M=j.yDivision,y=j.zeroW,A=j.x,C=j.barWidth,b=j.xDivision,z=j.zeroH,this.horizontal||O.push(A+C/2);var E=d.group({class:"apexcharts-datalabels","data:realIndex":V});i.globals.delayedElements.push({el:E.node}),E.node.classList.add("apexcharts-element-hidden");var K=d.group({class:"apexcharts-bar-goals-markers"}),Q=d.group({class:"apexcharts-bar-shadows"});i.globals.delayedElements.push({el:Q.node}),Q.node.classList.add("apexcharts-element-hidden");for(var ot=0;ot0){var Vt=this.barHelpers.drawBarShadow({color:typeof Mt=="string"&&(Mt==null?void 0:Mt.indexOf("url"))===-1?Mt:H.hexToRgba(i.globals.colors[w]),prevPaths:this.pathArr[this.pathArr.length-1],currPaths:vt});Vt&&Q.add(Vt)}this.pathArr.push(vt);var Yt=this.barHelpers.drawGoalLine({barXPosition:vt.barXPosition,barYPosition:vt.barYPosition,goalX:vt.goalX,goalY:vt.goalY,barHeight:m,barWidth:C});Yt&&K.add(Yt),N=vt.y,A=vt.x,ot>0&&O.push(A+C/2),L.push(N),this.renderSeries({realIndex:V,pathFill:Mt,j:ot,i:w,pathFrom:vt.pathFrom,pathTo:vt.pathTo,strokeWidth:it,elSeries:Z,x:A,y:N,series:s,barHeight:vt.barHeight?vt.barHeight:m,barWidth:vt.barWidth?vt.barWidth:C,elDataLabelsWrap:E,elGoalsMarkers:K,elBarShadows:Q,visibleSeries:this.visibleI,type:"bar"})}i.globals.seriesXvalues[V]=O,i.globals.seriesYvalues[V]=L,p.add(Z)}return p}},{key:"renderSeries",value:function(s){var a=s.realIndex,i=s.pathFill,d=s.lineFill,u=s.j,p=s.i,w=s.groupIndex,f=s.pathFrom,b=s.pathTo,M=s.strokeWidth,z=s.elSeries,y=s.x,A=s.y,N=s.y1,L=s.y2,O=s.series,V=s.barHeight,Z=s.barWidth,m=s.barXPosition,C=s.barYPosition,j=s.elDataLabelsWrap,E=s.elGoalsMarkers,K=s.elBarShadows,Q=s.visibleSeries,ot=s.type,it=this.w,vt=new _(this.ctx);d||(d=this.barOptions.distributed?it.globals.stroke.colors[u]:it.globals.stroke.colors[a]),it.config.series[p].data[u]&&it.config.series[p].data[u].strokeColor&&(d=it.config.series[p].data[u].strokeColor),this.isNullValue&&(i="none");var zt=u/it.config.chart.animations.animateGradually.delay*(it.config.chart.animations.speed/it.globals.dataPoints)/2.4,Mt=vt.renderPaths({i:p,j:u,realIndex:a,pathFrom:f,pathTo:b,stroke:d,strokeWidth:M,strokeLineCap:it.config.stroke.lineCap,fill:i,animationDelay:zt,initialSpeed:it.config.chart.animations.speed,dataChangeSpeed:it.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(ot,"-area")});Mt.attr("clip-path","url(#gridRectMask".concat(it.globals.cuid,")"));var Vt=it.config.forecastDataPoints;Vt.count>0&&u>=it.globals.dataPoints-Vt.count&&(Mt.node.setAttribute("stroke-dasharray",Vt.dashArray),Mt.node.setAttribute("stroke-width",Vt.strokeWidth),Mt.node.setAttribute("fill-opacity",Vt.fillOpacity)),N!==void 0&&L!==void 0&&(Mt.attr("data-range-y1",N),Mt.attr("data-range-y2",L)),new W(this.ctx).setSelectionFilter(Mt,a,u),z.add(Mt);var Yt=new Yg(this).handleBarDataLabels({x:y,y:A,y1:N,y2:L,i:p,j:u,series:O,realIndex:a,groupIndex:w,barHeight:V,barWidth:Z,barXPosition:m,barYPosition:C,renderedPath:Mt,visibleSeries:Q});return Yt.dataLabels!==null&&j.add(Yt.dataLabels),Yt.totalDataLabels&&j.add(Yt.totalDataLabels),z.add(j),E&&z.add(E),K&&z.add(K),z}},{key:"drawBarPaths",value:function(s){var a,i=s.indexes,d=s.barHeight,u=s.strokeWidth,p=s.zeroW,w=s.x,f=s.y,b=s.yDivision,M=s.elSeries,z=this.w,y=i.i,A=i.j;if(z.globals.isXNumeric)a=(f=(z.globals.seriesX[y][A]-z.globals.minX)/this.invertedXRatio-d)+d*this.visibleI;else if(z.config.plotOptions.bar.hideZeroBarsWhenGrouped){var N=0,L=0;z.globals.seriesPercent.forEach(function(V,Z){V[A]&&N++,Z0&&(d=this.seriesLen*d/N),a=f+d*this.visibleI,a-=d*L}else a=f+d*this.visibleI;this.isFunnel&&(p-=(this.barHelpers.getXForValue(this.series[y][A],p)-p)/2),w=this.barHelpers.getXForValue(this.series[y][A],p);var O=this.barHelpers.getBarpaths({barYPosition:a,barHeight:d,x1:p,x2:w,strokeWidth:u,series:this.series,realIndex:i.realIndex,i:y,j:A,w:z});return z.globals.isXNumeric||(f+=b),this.barHelpers.barBackground({j:A,i:y,y1:a-d*this.visibleI,y2:d*this.seriesLen,elSeries:M}),{pathTo:O.pathTo,pathFrom:O.pathFrom,x1:p,x:w,y:f,goalX:this.barHelpers.getGoalValues("x",p,null,y,A),barYPosition:a,barHeight:d}}},{key:"drawColumnPaths",value:function(s){var a,i=s.indexes,d=s.x,u=s.y,p=s.xDivision,w=s.barWidth,f=s.zeroH,b=s.strokeWidth,M=s.elSeries,z=this.w,y=i.realIndex,A=i.i,N=i.j,L=i.bc;if(z.globals.isXNumeric){var O=y;z.globals.seriesX[y].length||(O=z.globals.maxValsInArrayIndex),z.globals.seriesX[O][N]&&(d=(z.globals.seriesX[O][N]-z.globals.minX)/this.xRatio-w*this.seriesLen/2),a=d+w*this.visibleI}else if(z.config.plotOptions.bar.hideZeroBarsWhenGrouped){var V=0,Z=0;z.globals.seriesPercent.forEach(function(C,j){C[N]&&V++,j0&&(w=this.seriesLen*w/V),a=d+w*this.visibleI,a-=w*Z}else a=d+w*this.visibleI;u=this.barHelpers.getYForValue(this.series[A][N],f);var m=this.barHelpers.getColumnPaths({barXPosition:a,barWidth:w,y1:f,y2:u,strokeWidth:b,series:this.series,realIndex:i.realIndex,i:A,j:N,w:z});return z.globals.isXNumeric||(d+=p),this.barHelpers.barBackground({bc:L,j:N,i:A,x1:a-b/2-w*this.visibleI,x2:w*this.seriesLen+b/2,elSeries:M}),{pathTo:m.pathTo,pathFrom:m.pathFrom,x:d,y:u,goalY:this.barHelpers.getGoalValues("y",null,f,A,N),barXPosition:a,barWidth:w}}},{key:"getPreviousPath",value:function(s,a){for(var i,d=this.w,u=0;u0&&parseInt(p.realIndex,10)===parseInt(s,10)&&d.globals.previousPaths[u].paths[a]!==void 0&&(i=d.globals.previousPaths[u].paths[a].d)}return i}}]),T}(),P2=function(T){I(a,Lr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return k(a,[{key:"draw",value:function(i,d){var u=this,p=this.w;this.graphics=new _(this.ctx),this.bar=new Lr(this.ctx,this.xyRatios);var w=new tt(this.ctx,p);i=w.getLogSeries(i),this.yRatio=w.getLogYRatios(this.yRatio),this.barHelpers.initVariables(i),p.config.chart.stackType==="100%"&&(i=p.globals.seriesPercent.slice()),this.series=i,this.barHelpers.initializeStackedPrevVars(this);for(var f=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),b=0,M=0,z=function(N,L){var O=void 0,V=void 0,Z=void 0,m=void 0,C=-1;u.groupCtx=u,p.globals.seriesGroups.forEach(function(Be,Le){Be.indexOf(p.config.series[N].name)>-1&&(C=Le)}),C!==-1&&(u.groupCtx=u[p.globals.seriesGroups[C]]);var j=[],E=[],K=p.globals.comboCharts?d[N]:N;u.yRatio.length>1&&(u.yaxisIndex=K),u.isReversed=p.config.yaxis[u.yaxisIndex]&&p.config.yaxis[u.yaxisIndex].reversed;var Q=u.graphics.group({class:"apexcharts-series",seriesName:H.escapeString(p.globals.seriesNames[K]),rel:N+1,"data:realIndex":K});u.ctx.series.addCollapsedClassToSeries(Q,K);var ot=u.graphics.group({class:"apexcharts-datalabels","data:realIndex":K}),it=u.graphics.group({class:"apexcharts-bar-goals-markers"}),vt=0,zt=0,Mt=u.initialPositions(b,M,O,V,Z,m);M=Mt.y,vt=Mt.barHeight,V=Mt.yDivision,m=Mt.zeroW,b=Mt.x,zt=Mt.barWidth,O=Mt.xDivision,Z=Mt.zeroH,u.barHelpers.initializeStackedXYVars(u),u.groupCtx.prevY.length===1&&u.groupCtx.prevY[0].every(function(Be){return isNaN(Be)})&&(u.groupCtx.prevY[0]=u.groupCtx.prevY[0].map(function(Be){return Z}),u.groupCtx.prevYF[0]=u.groupCtx.prevYF[0].map(function(Be){return 0}));for(var Vt=0;Vt1?(u=A.globals.minXDiff/this.xRatio)*parseInt(this.barOptions.columnWidth,10)/100:y*parseInt(A.config.plotOptions.bar.columnWidth,10)/100,String(A.config.plotOptions.bar.columnWidth).indexOf("%")===-1&&(y=parseInt(A.config.plotOptions.bar.columnWidth,10)),w=A.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?A.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),i=A.globals.padHorizontal+(u-y)/2),{x:i,y:d,yDivision:p,xDivision:u,barHeight:(b=A.globals.seriesGroups)!==null&&b!==void 0&&b.length?z/A.globals.seriesGroups.length:z,barWidth:(M=A.globals.seriesGroups)!==null&&M!==void 0&&M.length?y/A.globals.seriesGroups.length:y,zeroH:w,zeroW:f}}},{key:"drawStackedBarPaths",value:function(i){for(var d,u=i.indexes,p=i.barHeight,w=i.strokeWidth,f=i.zeroW,b=i.x,M=i.y,z=i.groupIndex,y=i.seriesGroup,A=i.yDivision,N=i.elSeries,L=this.w,O=M+(z!==-1?z*p:0),V=u.i,Z=u.j,m=0,C=0;C0){var E=f;this.groupCtx.prevXVal[j-1][Z]<0?E=this.series[V][Z]>=0?this.groupCtx.prevX[j-1][Z]+m-2*(this.isReversed?m:0):this.groupCtx.prevX[j-1][Z]:this.groupCtx.prevXVal[j-1][Z]>=0&&(E=this.series[V][Z]>=0?this.groupCtx.prevX[j-1][Z]:this.groupCtx.prevX[j-1][Z]-m+2*(this.isReversed?m:0)),d=E}else d=f;b=this.series[V][Z]===null?d:d+this.series[V][Z]/this.invertedYRatio-2*(this.isReversed?this.series[V][Z]/this.invertedYRatio:0);var K=this.barHelpers.getBarpaths({barYPosition:O,barHeight:p,x1:d,x2:b,strokeWidth:w,series:this.series,realIndex:u.realIndex,seriesGroup:y,i:V,j:Z,w:L});return this.barHelpers.barBackground({j:Z,i:V,y1:O,y2:p,elSeries:N}),M+=A,{pathTo:K.pathTo,pathFrom:K.pathFrom,goalX:this.barHelpers.getGoalValues("x",f,null,V,Z),barYPosition:O,x:b,y:M}}},{key:"drawStackedColumnPaths",value:function(i){var d=i.indexes,u=i.x,p=i.y,w=i.xDivision,f=i.barWidth,b=i.zeroH,M=i.groupIndex,z=i.seriesGroup,y=i.elSeries,A=this.w,N=d.i,L=d.j,O=d.bc;if(A.globals.isXNumeric){var V=A.globals.seriesX[N][L];V||(V=0),u=(V-A.globals.minX)/this.xRatio-f/2,A.globals.seriesGroups.length&&(u=(V-A.globals.minX)/this.xRatio-f/2*A.globals.seriesGroups.length)}for(var Z,m=u+(M!==-1?M*f:0),C=0,j=0;j0&&!A.globals.isXNumeric||E>0&&A.globals.isXNumeric&&A.globals.seriesX[N-1][L]===A.globals.seriesX[N][L]){var K,Q,ot,it=Math.min(this.yRatio.length+1,N+1);if(this.groupCtx.prevY[E-1]!==void 0&&this.groupCtx.prevY[E-1].length)for(var vt=1;vt=0?ot-C+2*(this.isReversed?C:0):ot;break}if(((Yt=this.groupCtx.prevYVal[E-Mt])===null||Yt===void 0?void 0:Yt[L])>=0){Q=this.series[N][L]>=0?ot:ot+C-2*(this.isReversed?C:0);break}}Q===void 0&&(Q=A.globals.gridHeight),Z=(K=this.groupCtx.prevYF[0])!==null&&K!==void 0&&K.every(function(he){return he===0})&&this.groupCtx.prevYF.slice(1,E).every(function(he){return he.every(function(ce){return isNaN(ce)})})?b:Q}else Z=b;p=this.series[N][L]?Z-this.series[N][L]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[N][L]/this.yRatio[this.yaxisIndex]:0):Z;var ie=this.barHelpers.getColumnPaths({barXPosition:m,barWidth:f,y1:Z,y2:p,yRatio:this.yRatio[this.yaxisIndex],strokeWidth:this.strokeWidth,series:this.series,seriesGroup:z,realIndex:d.realIndex,i:N,j:L,w:A});return this.barHelpers.barBackground({bc:O,j:L,i:N,x1:m,x2:f,elSeries:y}),u+=w,{pathTo:ie.pathTo,pathFrom:ie.pathFrom,goalY:this.barHelpers.getGoalValues("y",null,b,N,L),barXPosition:m,x:A.globals.isXNumeric?u-w:u,y:p}}}]),a}(),mi=function(T){I(a,Lr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return k(a,[{key:"draw",value:function(i,d,u){var p=this,w=this.w,f=new _(this.ctx),b=w.globals.comboCharts?d:w.config.chart.type,M=new Ft(this.ctx);this.candlestickOptions=this.w.config.plotOptions.candlestick,this.boxOptions=this.w.config.plotOptions.boxPlot,this.isHorizontal=w.config.plotOptions.bar.horizontal;var z=new tt(this.ctx,w);i=z.getLogSeries(i),this.series=i,this.yRatio=z.getLogYRatios(this.yRatio),this.barHelpers.initVariables(i);for(var y=f.group({class:"apexcharts-".concat(b,"-series apexcharts-plot-series")}),A=function(L){p.isBoxPlot=w.config.chart.type==="boxPlot"||w.config.series[L].type==="boxPlot";var O,V,Z,m,C=void 0,j=void 0,E=[],K=[],Q=w.globals.comboCharts?u[L]:L,ot=f.group({class:"apexcharts-series",seriesName:H.escapeString(w.globals.seriesNames[Q]),rel:L+1,"data:realIndex":Q});p.ctx.series.addCollapsedClassToSeries(ot,Q),i[L].length>0&&(p.visibleI=p.visibleI+1);var it,vt;p.yRatio.length>1&&(p.yaxisIndex=Q);var zt=p.barHelpers.initialPositions();j=zt.y,it=zt.barHeight,V=zt.yDivision,m=zt.zeroW,C=zt.x,vt=zt.barWidth,O=zt.xDivision,Z=zt.zeroH,K.push(C+vt/2);for(var Mt=f.group({class:"apexcharts-datalabels","data:realIndex":Q}),Vt=function(ie){var he=p.barHelpers.getStrokeWidth(L,ie,Q),ce=null,Ie={indexes:{i:L,j:ie,realIndex:Q},x:C,y:j,strokeWidth:he,elSeries:ot};ce=p.isHorizontal?p.drawHorizontalBoxPaths(h(h({},Ie),{},{yDivision:V,barHeight:it,zeroW:m})):p.drawVerticalBoxPaths(h(h({},Ie),{},{xDivision:O,barWidth:vt,zeroH:Z})),j=ce.y,C=ce.x,ie>0&&K.push(C+vt/2),E.push(j),ce.pathTo.forEach(function(Be,Le){var Wn=!p.isBoxPlot&&p.candlestickOptions.wick.useFillColor?ce.color[Le]:w.globals.stroke.colors[L],lr=M.fillPath({seriesNumber:Q,dataPointIndex:ie,color:ce.color[Le],value:i[L][ie]});p.renderSeries({realIndex:Q,pathFill:lr,lineFill:Wn,j:ie,i:L,pathFrom:ce.pathFrom,pathTo:Be,strokeWidth:he,elSeries:ot,x:C,y:j,series:i,barHeight:it,barWidth:vt,elDataLabelsWrap:Mt,visibleSeries:p.visibleI,type:w.config.chart.type})})},Yt=0;YtC.c&&(N=!1);var K=Math.min(C.o,C.c),Q=Math.max(C.o,C.c),ot=C.m;M.globals.isXNumeric&&(u=(M.globals.seriesX[m][A]-M.globals.minX)/this.xRatio-w/2);var it=u+w*this.visibleI;this.series[y][A]===void 0||this.series[y][A]===null?(K=f,Q=f):(K=f-K/Z,Q=f-Q/Z,j=f-C.h/Z,E=f-C.l/Z,ot=f-C.m/Z);var vt=z.move(it,f),zt=z.move(it+w/2,K);return M.globals.previousPaths.length>0&&(zt=this.getPreviousPath(m,A,!0)),vt=this.isBoxPlot?[z.move(it,K)+z.line(it+w/2,K)+z.line(it+w/2,j)+z.line(it+w/4,j)+z.line(it+w-w/4,j)+z.line(it+w/2,j)+z.line(it+w/2,K)+z.line(it+w,K)+z.line(it+w,ot)+z.line(it,ot)+z.line(it,K+b/2),z.move(it,ot)+z.line(it+w,ot)+z.line(it+w,Q)+z.line(it+w/2,Q)+z.line(it+w/2,E)+z.line(it+w-w/4,E)+z.line(it+w/4,E)+z.line(it+w/2,E)+z.line(it+w/2,Q)+z.line(it,Q)+z.line(it,ot)+"z"]:[z.move(it,Q)+z.line(it+w/2,Q)+z.line(it+w/2,j)+z.line(it+w/2,Q)+z.line(it+w,Q)+z.line(it+w,K)+z.line(it+w/2,K)+z.line(it+w/2,E)+z.line(it+w/2,K)+z.line(it,K)+z.line(it,Q-b/2)],zt+=z.move(it,K),M.globals.isXNumeric||(u+=p),{pathTo:vt,pathFrom:zt,x:u,y:Q,barXPosition:it,color:this.isBoxPlot?V:N?[L]:[O]}}},{key:"drawHorizontalBoxPaths",value:function(i){var d=i.indexes;i.x;var u=i.y,p=i.yDivision,w=i.barHeight,f=i.zeroW,b=i.strokeWidth,M=this.w,z=new _(this.ctx),y=d.i,A=d.j,N=this.boxOptions.colors.lower;this.isBoxPlot&&(N=[this.boxOptions.colors.lower,this.boxOptions.colors.upper]);var L=this.invertedYRatio,O=d.realIndex,V=this.getOHLCValue(O,A),Z=f,m=f,C=Math.min(V.o,V.c),j=Math.max(V.o,V.c),E=V.m;M.globals.isXNumeric&&(u=(M.globals.seriesX[O][A]-M.globals.minX)/this.invertedXRatio-w/2);var K=u+w*this.visibleI;this.series[y][A]===void 0||this.series[y][A]===null?(C=f,j=f):(C=f+C/L,j=f+j/L,Z=f+V.h/L,m=f+V.l/L,E=f+V.m/L);var Q=z.move(f,K),ot=z.move(C,K+w/2);return M.globals.previousPaths.length>0&&(ot=this.getPreviousPath(O,A,!0)),Q=[z.move(C,K)+z.line(C,K+w/2)+z.line(Z,K+w/2)+z.line(Z,K+w/2-w/4)+z.line(Z,K+w/2+w/4)+z.line(Z,K+w/2)+z.line(C,K+w/2)+z.line(C,K+w)+z.line(E,K+w)+z.line(E,K)+z.line(C+b/2,K),z.move(E,K)+z.line(E,K+w)+z.line(j,K+w)+z.line(j,K+w/2)+z.line(m,K+w/2)+z.line(m,K+w-w/4)+z.line(m,K+w/4)+z.line(m,K+w/2)+z.line(j,K+w/2)+z.line(j,K)+z.line(E,K)+"z"],ot+=z.move(C,K),M.globals.isXNumeric||(u+=p),{pathTo:Q,pathFrom:ot,x:j,y:u,barYPosition:K,color:N}}},{key:"getOHLCValue",value:function(i,d){var u=this.w;return{o:this.isBoxPlot?u.globals.seriesCandleH[i][d]:u.globals.seriesCandleO[i][d],h:this.isBoxPlot?u.globals.seriesCandleO[i][d]:u.globals.seriesCandleH[i][d],m:u.globals.seriesCandleM[i][d],l:this.isBoxPlot?u.globals.seriesCandleC[i][d]:u.globals.seriesCandleL[i][d],c:this.isBoxPlot?u.globals.seriesCandleL[i][d]:u.globals.seriesCandleC[i][d]}}}]),a}(),L2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"checkColorRange",value:function(){var s=this.w,a=!1,i=s.config.plotOptions[s.config.chart.type];return i.colorScale.ranges.length>0&&i.colorScale.ranges.map(function(d,u){d.from<=0&&(a=!0)}),a}},{key:"getShadeColor",value:function(s,a,i,d){var u=this.w,p=1,w=u.config.plotOptions[s].shadeIntensity,f=this.determineColor(s,a,i);u.globals.hasNegs||d?p=u.config.plotOptions[s].reverseNegativeShade?f.percent<0?f.percent/100*(1.25*w):(1-f.percent/100)*(1.25*w):f.percent<=0?1-(1+f.percent/100)*w:(1-f.percent/100)*w:(p=1-f.percent/100,s==="treemap"&&(p=(1-f.percent/100)*(1.25*w)));var b=f.color,M=new H;return u.config.plotOptions[s].enableShades&&(b=this.w.config.theme.mode==="dark"?H.hexToRgba(M.shadeColor(-1*p,f.color),u.config.fill.opacity):H.hexToRgba(M.shadeColor(p,f.color),u.config.fill.opacity)),{color:b,colorProps:f}}},{key:"determineColor",value:function(s,a,i){var d=this.w,u=d.globals.series[a][i],p=d.config.plotOptions[s],w=p.colorScale.inverse?i:a;p.distributed&&d.config.chart.type==="treemap"&&(w=i);var f=d.globals.colors[w],b=null,M=Math.min.apply(Math,F(d.globals.series[a])),z=Math.max.apply(Math,F(d.globals.series[a]));p.distributed||s!=="heatmap"||(M=d.globals.minY,z=d.globals.maxY),p.colorScale.min!==void 0&&(M=p.colorScale.mind.globals.maxY?p.colorScale.max:d.globals.maxY);var y=Math.abs(z)+Math.abs(M),A=100*u/(y===0?y-1e-6:y);return p.colorScale.ranges.length>0&&p.colorScale.ranges.map(function(N,L){if(u>=N.from&&u<=N.to){f=N.color,b=N.foreColor?N.foreColor:null,M=N.from,z=N.to;var O=Math.abs(z)+Math.abs(M);A=100*u/(O===0?O-1e-6:O)}}),{color:f,foreColor:b,percent:A}}},{key:"calculateDataLabels",value:function(s){var a=s.text,i=s.x,d=s.y,u=s.i,p=s.j,w=s.colorProps,f=s.fontSize,b=this.w.config.dataLabels,M=new _(this.ctx),z=new Et(this.ctx),y=null;if(b.enabled){y=M.group({class:"apexcharts-data-labels"});var A=b.offsetX,N=b.offsetY,L=i+A,O=d+parseFloat(b.style.fontSize)/3+N;z.plotDataLabelsText({x:L,y:O,text:a,i:u,j:p,color:w.foreColor,parent:y,fontSize:f,dataLabelsConfig:b})}return y}},{key:"addListeners",value:function(s){var a=new _(this.ctx);s.node.addEventListener("mouseenter",a.pathMouseEnter.bind(this,s)),s.node.addEventListener("mouseleave",a.pathMouseLeave.bind(this,s)),s.node.addEventListener("mousedown",a.pathMouseDown.bind(this,s))}}]),T}(),Gg=function(){function T(s,a){g(this,T),this.ctx=s,this.w=s.w,this.xRatio=a.xRatio,this.yRatio=a.yRatio,this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.helpers=new L2(s),this.rectRadius=this.w.config.plotOptions.heatmap.radius,this.strokeWidth=this.w.config.stroke.show?this.w.config.stroke.width:0}return k(T,[{key:"draw",value:function(s){var a=this.w,i=new _(this.ctx),d=i.group({class:"apexcharts-heatmap"});d.attr("clip-path","url(#gridRectMask".concat(a.globals.cuid,")"));var u=a.globals.gridWidth/a.globals.dataPoints,p=a.globals.gridHeight/a.globals.series.length,w=0,f=!1;this.negRange=this.helpers.checkColorRange();var b=s.slice();a.config.yaxis[0].reversed&&(f=!0,b.reverse());for(var M=f?0:b.length-1;f?M=0;f?M++:M--){var z=i.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:H.escapeString(a.globals.seriesNames[M]),rel:M+1,"data:realIndex":M});if(this.ctx.series.addCollapsedClassToSeries(z,M),a.config.chart.dropShadow.enabled){var y=a.config.chart.dropShadow;new W(this.ctx).dropShadow(z,y,M)}for(var A=0,N=a.config.plotOptions.heatmap.shadeIntensity,L=0;L-1&&this.pieClicked(y),i.config.dataLabels.enabled){var j=m.x,E=m.y,K=100*N/this.fullAngle+"%";if(N!==0&&i.config.plotOptions.pie.dataLabels.minAngleToShowLabelthis.fullAngle?a.endAngle=a.endAngle-(d+w):d+w=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle&&(f=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle-.01),Math.ceil(f)>this.fullAngle&&(f-=this.fullAngle);var b=Math.PI*(f-90)/180,M=a.centerX+u*Math.cos(w),z=a.centerY+u*Math.sin(w),y=a.centerX+u*Math.cos(b),A=a.centerY+u*Math.sin(b),N=H.polarToCartesian(a.centerX,a.centerY,a.donutSize,f),L=H.polarToCartesian(a.centerX,a.centerY,a.donutSize,p),O=d>180?1:0,V=["M",M,z,"A",u,u,0,O,1,y,A];return a.chartType==="donut"?[].concat(V,["L",N.x,N.y,"A",a.donutSize,a.donutSize,0,O,0,L.x,L.y,"L",M,z,"z"]).join(" "):a.chartType==="pie"||a.chartType==="polarArea"?[].concat(V,["L",a.centerX,a.centerY,"L",M,z]).join(" "):[].concat(V).join(" ")}},{key:"drawPolarElements",value:function(s){var a=this.w,i=new J(this.ctx),d=new _(this.ctx),u=new D2(this.ctx),p=d.group(),w=d.group(),f=i.niceScale(0,Math.ceil(this.maxY),a.config.yaxis[0].tickAmount,0,!0),b=f.result.reverse(),M=f.result.length;this.maxY=f.niceMax;for(var z=a.globals.radialSize,y=z/(M-1),A=0;A1&&s.total.show&&(u=s.total.color);var w=p.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),f=p.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");i=(0,s.value.formatter)(i,p),d||typeof s.total.formatter!="function"||(i=s.total.formatter(p));var b=a===s.total.label;a=s.name.formatter(a,b,p),w!==null&&(w.textContent=a),f!==null&&(f.textContent=i),w!==null&&(w.style.fill=u)}},{key:"printDataLabelsInner",value:function(s,a){var i=this.w,d=s.getAttribute("data:value"),u=i.globals.seriesNames[parseInt(s.parentNode.getAttribute("rel"),10)-1];i.globals.series.length>1&&this.printInnerLabels(a,u,d,s);var p=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");p!==null&&(p.style.opacity=1)}},{key:"drawSpokes",value:function(s){var a=this,i=this.w,d=new _(this.ctx),u=i.config.plotOptions.polarArea.spokes;if(u.strokeWidth!==0){for(var p=[],w=360/i.globals.series.length,f=0;f1)w&&!a.total.showAlways?b({makeSliceOut:!1,printLabel:!0}):this.printInnerLabels(a,a.total.label,a.total.formatter(u));else if(b({makeSliceOut:!1,printLabel:!0}),!w)if(u.globals.selectedDataPoints.length&&u.globals.series.length>1)if(u.globals.selectedDataPoints[0].length>0){var M=u.globals.selectedDataPoints[0],z=u.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(M));this.printDataLabelsInner(z,a)}else p&&u.globals.selectedDataPoints.length&&u.globals.selectedDataPoints[0].length===0&&(p.style.opacity=0);else p&&u.globals.series.length>1&&(p.style.opacity=0)}}]),T}(),Zg=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animDur=0;var a=this.w;this.graphics=new _(this.ctx),this.lineColorArr=a.globals.stroke.colors!==void 0?a.globals.stroke.colors:a.globals.colors,this.defaultSize=a.globals.svgHeight0&&(E=a.getPreviousPath(V));for(var K=0;K=10?s.x>0?(i="start",d+=10):s.x<0&&(i="end",d-=10):i="middle",Math.abs(s.y)>=a-10&&(s.y<0?u-=10:s.y>0&&(u+=10)),{textAnchor:i,newX:d,newY:u}}},{key:"getPreviousPath",value:function(s){for(var a=this.w,i=null,d=0;d0&&parseInt(u.realIndex,10)===parseInt(s,10)&&a.globals.previousPaths[d].paths[0]!==void 0&&(i=a.globals.previousPaths[d].paths[0].d)}return i}},{key:"getDataPointsPos",value:function(s,a){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:this.dataPointsLen;s=s||[],a=a||[];for(var d=[],u=0;u=360&&(L=360-Math.abs(this.startAngle)-.1);var O=u.drawPath({d:"",stroke:A,strokeWidth:b*parseInt(y.strokeWidth,10)/100,fill:"none",strokeOpacity:y.opacity,classes:"apexcharts-radialbar-area"});if(y.dropShadow.enabled){var V=y.dropShadow;w.dropShadow(O,V)}z.add(O),O.attr("id","apexcharts-radialbarTrack-"+M),this.animatePaths(O,{centerX:i.centerX,centerY:i.centerY,endAngle:L,startAngle:N,size:i.size,i:M,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:d.globals.easing})}return p}},{key:"drawArcs",value:function(i){var d=this.w,u=new _(this.ctx),p=new Ft(this.ctx),w=new W(this.ctx),f=u.group(),b=this.getStrokeWidth(i);i.size=i.size-b/2;var M=d.config.plotOptions.radialBar.hollow.background,z=i.size-b*i.series.length-this.margin*i.series.length-b*parseInt(d.config.plotOptions.radialBar.track.strokeWidth,10)/100/2,y=z-d.config.plotOptions.radialBar.hollow.margin;d.config.plotOptions.radialBar.hollow.image!==void 0&&(M=this.drawHollowImage(i,f,z,M));var A=this.drawHollow({size:y,centerX:i.centerX,centerY:i.centerY,fill:M||"transparent"});if(d.config.plotOptions.radialBar.hollow.dropShadow.enabled){var N=d.config.plotOptions.radialBar.hollow.dropShadow;w.dropShadow(A,N)}var L=1;!this.radialDataLabels.total.show&&d.globals.series.length>1&&(L=0);var O=null;this.radialDataLabels.show&&(O=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:z,centerX:i.centerX,centerY:i.centerY,opacity:L})),d.config.plotOptions.radialBar.hollow.position==="back"&&(f.add(A),O&&f.add(O));var V=!1;d.config.plotOptions.radialBar.inverseOrder&&(V=!0);for(var Z=V?i.series.length-1:0;V?Z>=0:Z100?100:i.series[Z])/100,Q=Math.round(this.totalAngle*K)+this.startAngle,ot=void 0;d.globals.dataChanged&&(E=this.startAngle,ot=Math.round(this.totalAngle*H.negToZero(d.globals.previousPaths[Z])/100)+E),Math.abs(Q)+Math.abs(j)>=360&&(Q-=.01),Math.abs(ot)+Math.abs(E)>=360&&(ot-=.01);var it=Q-j,vt=Array.isArray(d.config.stroke.dashArray)?d.config.stroke.dashArray[Z]:d.config.stroke.dashArray,zt=u.drawPath({d:"",stroke:C,strokeWidth:b,fill:"none",fillOpacity:d.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+Z,strokeDashArray:vt});if(_.setAttrs(zt.node,{"data:angle":it,"data:value":i.series[Z]}),d.config.chart.dropShadow.enabled){var Mt=d.config.chart.dropShadow;w.dropShadow(zt,Mt,Z)}w.setSelectionFilter(zt,0,Z),this.addListeners(zt,this.radialDataLabels),m.add(zt),zt.attr({index:0,j:Z});var Vt=0;!this.initialAnim||d.globals.resized||d.globals.dataChanged||(Vt=d.config.chart.animations.speed),d.globals.dataChanged&&(Vt=d.config.chart.animations.dynamicAnimation.speed),this.animDur=Vt/(1.2*i.series.length)+this.animDur,this.animBeginArr.push(this.animDur),this.animatePaths(zt,{centerX:i.centerX,centerY:i.centerY,endAngle:Q,startAngle:j,prevEndAngle:ot,prevStartAngle:E,size:i.size,i:Z,totalItems:2,animBeginArr:this.animBeginArr,dur:Vt,shouldSetPrevPaths:!0,easing:d.globals.easing})}return{g:f,elHollow:A,dataLabels:O}}},{key:"drawHollow",value:function(i){var d=new _(this.ctx).drawCircle(2*i.size);return d.attr({class:"apexcharts-radialbar-hollow",cx:i.centerX,cy:i.centerY,r:i.size,fill:i.fill}),d}},{key:"drawHollowImage",value:function(i,d,u,p){var w=this.w,f=new Ft(this.ctx),b=H.randomId(),M=w.config.plotOptions.radialBar.hollow.image;if(w.config.plotOptions.radialBar.hollow.imageClipped)f.clippedImgArea({width:u,height:u,image:M,patternID:"pattern".concat(w.globals.cuid).concat(b)}),p="url(#pattern".concat(w.globals.cuid).concat(b,")");else{var z=w.config.plotOptions.radialBar.hollow.imageWidth,y=w.config.plotOptions.radialBar.hollow.imageHeight;if(z===void 0&&y===void 0){var A=w.globals.dom.Paper.image(M).loaded(function(L){this.move(i.centerX-L.width/2+w.config.plotOptions.radialBar.hollow.imageOffsetX,i.centerY-L.height/2+w.config.plotOptions.radialBar.hollow.imageOffsetY)});d.add(A)}else{var N=w.globals.dom.Paper.image(M).loaded(function(L){this.move(i.centerX-z/2+w.config.plotOptions.radialBar.hollow.imageOffsetX,i.centerY-y/2+w.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(z,y)});d.add(N)}}return p}},{key:"getStrokeWidth",value:function(i){var d=this.w;return i.size*(100-parseInt(d.config.plotOptions.radialBar.hollow.size,10))/100/(i.series.length+1)-this.margin}}]),a}(),Qg=function(T){I(a,Lr);var s=P(a);function a(){return g(this,a),s.apply(this,arguments)}return k(a,[{key:"draw",value:function(i,d){var u=this.w,p=new _(this.ctx);this.rangeBarOptions=this.w.config.plotOptions.rangeBar,this.series=i,this.seriesRangeStart=u.globals.seriesRangeStart,this.seriesRangeEnd=u.globals.seriesRangeEnd,this.barHelpers.initVariables(i);for(var w=p.group({class:"apexcharts-rangebar-series apexcharts-plot-series"}),f=0;f0&&(this.visibleI=this.visibleI+1);var V=0,Z=0;this.yRatio.length>1&&(this.yaxisIndex=L);var m=this.barHelpers.initialPositions();N=m.y,y=m.zeroW,A=m.x,Z=m.barWidth,V=m.barHeight,b=m.xDivision,M=m.yDivision,z=m.zeroH;for(var C=p.group({class:"apexcharts-datalabels","data:realIndex":L}),j=p.group({class:"apexcharts-rangebar-goals-markers"}),E=0;E0});return this.isHorizontal?(p=L.config.plotOptions.bar.rangeBarGroupRows?f+y*C:f+M*this.visibleI+y*C,j>-1&&!L.config.plotOptions.bar.rangeBarOverlap&&(O=L.globals.seriesRange[d][j].overlaps).indexOf(V)>-1&&(p=(M=N.barHeight/O.length)*this.visibleI+y*(100-parseInt(this.barOptions.barHeight,10))/100/2+M*(this.visibleI+O.indexOf(V))+y*C)):(C>-1&&(w=L.config.plotOptions.bar.rangeBarGroupRows?b+A*C:b+z*this.visibleI+A*C),j>-1&&!L.config.plotOptions.bar.rangeBarOverlap&&(O=L.globals.seriesRange[d][j].overlaps).indexOf(V)>-1&&(w=(z=N.barWidth/O.length)*this.visibleI+A*(100-parseInt(this.barOptions.barWidth,10))/100/2+z*(this.visibleI+O.indexOf(V))+A*C)),{barYPosition:p,barXPosition:w,barHeight:M,barWidth:z}}},{key:"drawRangeColumnPaths",value:function(i){var d=i.indexes,u=i.x,p=i.xDivision,w=i.barWidth,f=i.barXPosition,b=i.zeroH,M=this.w,z=d.i,y=d.j,A=this.yRatio[this.yaxisIndex],N=d.realIndex,L=this.getRangeValue(N,y),O=Math.min(L.start,L.end),V=Math.max(L.start,L.end);this.series[z][y]===void 0||this.series[z][y]===null?O=b:(O=b-O/A,V=b-V/A);var Z=Math.abs(V-O),m=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:w,y1:O,y2:V,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,realIndex:d.realIndex,i:N,j:y,w:M});return M.globals.isXNumeric||(u+=p),{pathTo:m.pathTo,pathFrom:m.pathFrom,barHeight:Z,x:u,y:V,goalY:this.barHelpers.getGoalValues("y",null,b,z,y),barXPosition:f}}},{key:"drawRangeBarPaths",value:function(i){var d=i.indexes,u=i.y,p=i.y1,w=i.y2,f=i.yDivision,b=i.barHeight,M=i.barYPosition,z=i.zeroW,y=this.w,A=z+p/this.invertedYRatio,N=z+w/this.invertedYRatio,L=Math.abs(N-A),O=this.barHelpers.getBarpaths({barYPosition:M,barHeight:b,x1:A,x2:N,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,i:d.realIndex,realIndex:d.realIndex,j:d.j,w:y});return y.globals.isXNumeric||(u+=f),{pathTo:O.pathTo,pathFrom:O.pathFrom,barWidth:L,x:N,goalX:this.barHelpers.getGoalValues("x",z,null,d.realIndex,d.j),y:u}}},{key:"getRangeValue",value:function(i,d){var u=this.w;return{start:u.globals.seriesRangeStart[i][d],end:u.globals.seriesRangeEnd[i][d]}}}]),a}(),Jg=function(){function T(s){g(this,T),this.w=s.w,this.lineCtx=s}return k(T,[{key:"sameValueSeriesFix",value:function(s,a){var i=this.w;if((i.config.fill.type==="gradient"||i.config.fill.type[s]==="gradient")&&new tt(this.lineCtx.ctx,i).seriesHaveSameValues(s)){var d=a[s].slice();d[d.length-1]=d[d.length-1]+1e-6,a[s]=d}return a}},{key:"calculatePoints",value:function(s){var a=s.series,i=s.realIndex,d=s.x,u=s.y,p=s.i,w=s.j,f=s.prevY,b=this.w,M=[],z=[];if(w===0){var y=this.lineCtx.categoryAxisCorrection+b.config.markers.offsetX;b.globals.isXNumeric&&(y=(b.globals.seriesX[i][0]-b.globals.minX)/this.lineCtx.xRatio+b.config.markers.offsetX),M.push(y),z.push(H.isNumber(a[p][0])?f+b.config.markers.offsetY:null),M.push(d+b.config.markers.offsetX),z.push(H.isNumber(a[p][w+1])?u+b.config.markers.offsetY:null)}else M.push(d+b.config.markers.offsetX),z.push(H.isNumber(a[p][w+1])?u+b.config.markers.offsetY:null);return{x:M,y:z}}},{key:"checkPreviousPaths",value:function(s){for(var a=s.pathFromLine,i=s.pathFromArea,d=s.realIndex,u=this.w,p=0;p0&&parseInt(w.realIndex,10)===parseInt(d,10)&&(w.type==="line"?(this.lineCtx.appendPathFrom=!1,a=u.globals.previousPaths[p].paths[0].d):w.type==="area"&&(this.lineCtx.appendPathFrom=!1,i=u.globals.previousPaths[p].paths[0].d,u.config.stroke.show&&u.globals.previousPaths[p].paths[1]&&(a=u.globals.previousPaths[p].paths[1].d)))}return{pathFromLine:a,pathFromArea:i}}},{key:"determineFirstPrevY",value:function(s){var a,i=s.i,d=s.series,u=s.prevY,p=s.lineYPosition,w=this.w;if(((a=d[i])===null||a===void 0?void 0:a[0])!==void 0)u=(p=w.config.chart.stacked&&i>0?this.lineCtx.prevSeriesY[i-1][0]:this.lineCtx.zeroY)-d[i][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]+2*(this.lineCtx.isReversed?d[i][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]:0);else if(w.config.chart.stacked&&i>0&&d[i][0]===void 0){for(var f=i-1;f>=0;f--)if(d[f][0]!==null&&d[f][0]!==void 0){u=p=this.lineCtx.prevSeriesY[f][0];break}}return{prevY:u,lineYPosition:p}}}]),T}(),tw=function(T){for(var s,a,i,d,u=function(M){for(var z=[],y=M[0],A=M[1],N=z[0]=bi(y,A),L=1,O=M.length-1;L9&&(d=3*i/Math.sqrt(d),u[f]=d*s,u[f+1]=d*a);for(var b=0;b<=p;b++)d=(T[Math.min(p,b+1)][0]-T[Math.max(0,b-1)][0])/(6*(1+u[b]*u[b])),w.push([d||0,u[b]*d||0]);return w},ki=function(T){for(var s="",a=0;a4?(s+="C".concat(i[0],", ").concat(i[1]),s+=", ".concat(i[2],", ").concat(i[3]),s+=", ".concat(i[4],", ").concat(i[5])):d>2&&(s+="S".concat(i[0],", ").concat(i[1]),s+=", ".concat(i[2],", ").concat(i[3]))}return s},F2=function(T){var s=tw(T),a=T[1],i=T[0],d=[],u=s[1],p=s[0];d.push(i,[i[0]+p[0],i[1]+p[1],a[0]-u[0],a[1]-u[1],a[0],a[1]]);for(var w=2,f=s.length;w0&&(O=(u.globals.seriesX[y][0]-u.globals.minX)/this.xRatio),L.push(O);var V,Z=O,m=void 0,C=Z,j=this.zeroY,E=this.zeroY;j=this.lineHelpers.determineFirstPrevY({i:z,series:s,prevY:j,lineYPosition:0}).prevY,A.push(j),V=j,w==="rangeArea"&&(m=E=this.lineHelpers.determineFirstPrevY({i:z,series:d,prevY:E,lineYPosition:0}).prevY,N.push(E));var K={type:w,series:s,realIndex:y,i:z,x:O,y:1,pX:Z,pY:V,pathsFrom:this._calculatePathsFrom({type:w,series:s,i:z,realIndex:y,prevX:C,prevY:j,prevY2:E}),linePaths:[],areaPaths:[],seriesIndex:i,lineYPosition:0,xArrj:L,yArrj:A,y2Arrj:N,seriesRangeEnd:d},Q=this._iterateOverDataPoints(h(h({},K),{},{iterations:w==="rangeArea"?s[z].length-1:void 0,isRangeStart:!0}));if(w==="rangeArea"){var ot=this._calculatePathsFrom({series:d,i:z,realIndex:y,prevX:C,prevY:E}),it=this._iterateOverDataPoints(h(h({},K),{},{series:d,pY:m,pathsFrom:ot,iterations:d[z].length-1,isRangeStart:!1}));Q.linePaths[0]=it.linePath+Q.linePath,Q.pathFromLine=it.pathFromLine+Q.pathFromLine}this._handlePaths({type:w,realIndex:y,i:z,paths:Q}),this.elSeries.add(this.elPointsMain),this.elSeries.add(this.elDataLabelsWrap),M.push(this.elSeries)}if(u.config.chart.stacked)for(var vt=M.length;vt>0;vt--)f.add(M[vt-1]);else for(var zt=0;zt1&&(this.yaxisIndex=i),this.isReversed=d.config.yaxis[this.yaxisIndex]&&d.config.yaxis[this.yaxisIndex].reversed,this.zeroY=d.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?d.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),this.areaBottomY=this.zeroY,(this.zeroY>d.globals.gridHeight||d.config.plotOptions.area.fillTo==="end")&&(this.areaBottomY=d.globals.gridHeight),this.categoryAxisCorrection=this.xDivision/2,this.elSeries=u.group({class:"apexcharts-series",seriesName:H.escapeString(d.globals.seriesNames[i])}),this.elPointsMain=u.group({class:"apexcharts-series-markers-wrap","data:realIndex":i}),this.elDataLabelsWrap=u.group({class:"apexcharts-datalabels","data:realIndex":i});var p=s[a].length===d.globals.dataPoints;this.elSeries.attr({"data:longestSeries":p,rel:a+1,"data:realIndex":i}),this.appendPathFrom=!0}},{key:"_calculatePathsFrom",value:function(s){var a,i,d,u,p=s.type,w=s.series,f=s.i,b=s.realIndex,M=s.prevX,z=s.prevY,y=s.prevY2,A=this.w,N=new _(this.ctx);if(w[f][0]===null){for(var L=0;L0){var O=this.lineHelpers.checkPreviousPaths({pathFromLine:d,pathFromArea:u,realIndex:b});d=O.pathFromLine,u=O.pathFromArea}return{prevX:M,prevY:z,linePath:a,areaPath:i,pathFromLine:d,pathFromArea:u}}},{key:"_handlePaths",value:function(s){var a=s.type,i=s.realIndex,d=s.i,u=s.paths,p=this.w,w=new _(this.ctx),f=new Ft(this.ctx);this.prevSeriesY.push(u.yArrj),p.globals.seriesXvalues[i]=u.xArrj,p.globals.seriesYvalues[i]=u.yArrj;var b=p.config.forecastDataPoints;if(b.count>0&&a!=="rangeArea"){var M=p.globals.seriesXvalues[i][p.globals.seriesXvalues[i].length-b.count-1],z=w.drawRect(M,0,p.globals.gridWidth,p.globals.gridHeight,0);p.globals.dom.elForecastMask.appendChild(z.node);var y=w.drawRect(0,0,M,p.globals.gridHeight,0);p.globals.dom.elNonForecastMask.appendChild(y.node)}this.pointsChart||p.globals.delayedElements.push({el:this.elPointsMain.node,index:i});var A={i:d,realIndex:i,animationDelay:d,initialSpeed:p.config.chart.animations.speed,dataChangeSpeed:p.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(a)};if(a==="area")for(var N=f.fillPath({seriesNumber:i}),L=0;L0&&a!=="rangeArea"){var K=w.renderPaths(j);K.node.setAttribute("stroke-dasharray",b.dashArray),b.strokeWidth&&K.node.setAttribute("stroke-width",b.strokeWidth),this.elSeries.add(K),K.attr("clip-path","url(#forecastMask".concat(p.globals.cuid,")")),E.attr("clip-path","url(#nonForecastMask".concat(p.globals.cuid,")"))}}}}},{key:"_iterateOverDataPoints",value:function(s){var a=s.type,i=s.series,d=s.iterations,u=s.realIndex,p=s.i,w=s.x,f=s.y,b=s.pX,M=s.pY,z=s.pathsFrom,y=s.linePaths,A=s.areaPaths,N=s.seriesIndex,L=s.lineYPosition,O=s.xArrj,V=s.yArrj,Z=s.y2Arrj,m=s.isRangeStart,C=s.seriesRangeEnd,j=this.w,E=new _(this.ctx),K=this.yRatio,Q=z.prevY,ot=z.linePath,it=z.areaPath,vt=z.pathFromLine,zt=z.pathFromArea,Mt=H.isNumber(j.globals.minYArr[u])?j.globals.minYArr[u]:j.globals.minY;d||(d=j.globals.dataPoints>1?j.globals.dataPoints-1:j.globals.dataPoints);for(var Vt=f,Yt=0;Yt0&&j.globals.collapsedSeries.length-1){Le--;break}return Le>=0?Le:0}(p-1)][Yt+1]:L=this.zeroY:L=this.zeroY,ie?f=L-Mt/K[this.yaxisIndex]+2*(this.isReversed?Mt/K[this.yaxisIndex]:0):(f=L-i[p][Yt+1]/K[this.yaxisIndex]+2*(this.isReversed?i[p][Yt+1]/K[this.yaxisIndex]:0),a==="rangeArea"&&(Vt=L-C[p][Yt+1]/K[this.yaxisIndex]+2*(this.isReversed?C[p][Yt+1]/K[this.yaxisIndex]:0))),O.push(w),V.push(f),Z.push(Vt);var ce=this.lineHelpers.calculatePoints({series:i,x:w,y:f,realIndex:u,i:p,j:Yt,prevY:Q}),Ie=this._createPaths({type:a,series:i,i:p,realIndex:u,j:Yt,x:w,y:f,y2:Vt,xArrj:O,yArrj:V,y2Arrj:Z,pX:b,pY:M,linePath:ot,areaPath:it,linePaths:y,areaPaths:A,seriesIndex:N,isRangeStart:m});A=Ie.areaPaths,y=Ie.linePaths,b=Ie.pX,M=Ie.pY,it=Ie.areaPath,ot=Ie.linePath,!this.appendPathFrom||j.config.stroke.curve==="monotoneCubic"&&a==="rangeArea"||(vt+=E.line(w,this.zeroY),zt+=E.line(w,this.zeroY)),this.handleNullDataPoints(i,ce,p,Yt,u),this._handleMarkersAndLabels({type:a,pointsPos:ce,i:p,j:Yt,realIndex:u,isRangeStart:m})}return{yArrj:V,xArrj:O,pathFromArea:zt,areaPaths:A,pathFromLine:vt,linePaths:y,linePath:ot,areaPath:it}}},{key:"_handleMarkersAndLabels",value:function(s){var a=s.type,i=s.pointsPos,d=s.isRangeStart,u=s.i,p=s.j,w=s.realIndex,f=this.w,b=new Et(this.ctx);if(this.pointsChart)this.scatter.draw(this.elSeries,p,{realIndex:w,pointsPos:i,zRatio:this.zRatio,elParent:this.elPointsMain});else{f.globals.series[u].length>1&&this.elPointsMain.node.classList.add("apexcharts-element-hidden");var M=this.markers.plotChartMarkers(i,w,p+1);M!==null&&this.elPointsMain.add(M)}var z=b.drawDataLabel({type:a,isRangeStart:d,pos:i,i:w,j:p+1});z!==null&&this.elDataLabelsWrap.add(z)}},{key:"_createPaths",value:function(s){var a=s.type,i=s.series,d=s.i,u=s.realIndex,p=s.j,w=s.x,f=s.y,b=s.xArrj,M=s.yArrj,z=s.y2,y=s.y2Arrj,A=s.pX,N=s.pY,L=s.linePath,O=s.areaPath,V=s.linePaths,Z=s.areaPaths,m=s.seriesIndex,C=s.isRangeStart,j=this.w,E=new _(this.ctx),K=j.config.stroke.curve,Q=this.areaBottomY;if(Array.isArray(j.config.stroke.curve)&&(K=Array.isArray(m)?j.config.stroke.curve[m[d]]:j.config.stroke.curve[d]),(a==="rangeArea"&&(j.globals.hasNullValues||j.config.forecastDataPoints.count>0)||j.globals.hasNullValues)&&K==="monotoneCubic"&&(K="straight"),K==="smooth"){var ot=.35*(w-A);j.globals.hasNullValues?(i[d][p]!==null&&(i[d][p+1]!==null?(L=E.move(A,N)+E.curve(A+ot,N,w-ot,f,w+1,f),O=E.move(A+1,N)+E.curve(A+ot,N,w-ot,f,w+1,f)+E.line(w,Q)+E.line(A,Q)+"z"):(L=E.move(A,N),O=E.move(A,N)+"z")),V.push(L),Z.push(O)):(L+=E.curve(A+ot,N,w-ot,f,w,f),O+=E.curve(A+ot,N,w-ot,f,w,f)),A=w,N=f,p===i[d].length-2&&(O+=E.curve(A,N,w,f,w,Q)+E.move(w,f)+"z",a==="rangeArea"&&C?L+=E.curve(A,N,w,f,w,z)+E.move(w,z)+"z":j.globals.hasNullValues||(V.push(L),Z.push(O)))}else if(K==="monotoneCubic"){if(a==="rangeArea"?b.length===j.globals.dataPoints:p===i[d].length-2){var it=b.map(function(he,ce){return[b[ce],M[ce]]}),vt=F2(it);if(L+=ki(vt),O+=ki(vt),A=w,N=f,a==="rangeArea"&&C){L+=E.line(b[b.length-1],y[y.length-1]);var zt=b.slice().reverse(),Mt=y.slice().reverse(),Vt=zt.map(function(he,ce){return[zt[ce],Mt[ce]]}),Yt=F2(Vt);O=L+=ki(Yt)}else O+=E.curve(A,N,w,f,w,Q)+E.move(w,f)+"z";V.push(L),Z.push(O)}}else{if(i[d][p+1]===null){L+=E.move(w,f);var ie=j.globals.isXNumeric?(j.globals.seriesX[u][p]-j.globals.minX)/this.xRatio:w-this.xDivision;O=O+E.line(ie,Q)+E.move(w,f)+"z"}i[d][p]===null&&(L+=E.move(w,f),O+=E.move(w,Q)),K==="stepline"?(L=L+E.line(w,null,"H")+E.line(null,f,"V"),O=O+E.line(w,null,"H")+E.line(null,f,"V")):K==="straight"&&(L+=E.line(w,f),O+=E.line(w,f)),p===i[d].length-2&&(O=O+E.line(w,Q)+E.move(w,f)+"z",a==="rangeArea"&&C?L=L+E.line(w,z)+E.move(w,z)+"z":(V.push(L),Z.push(O)))}return{linePaths:V,areaPaths:Z,pX:A,pY:N,linePath:L,areaPath:O}}},{key:"handleNullDataPoints",value:function(s,a,i,d,u){var p=this.w;if(s[i][d]===null&&p.config.markers.showNullDataPoints||s[i].length===1){var w=this.markers.plotChartMarkers(a,u,d+1,this.strokeWidth-p.config.markers.strokeWidth/2,!0);w!==null&&this.elPointsMain.add(w)}}}]),T}();window.TreemapSquared={},window.TreemapSquared.generate=function(){function T(w,f,b,M){this.xoffset=w,this.yoffset=f,this.height=M,this.width=b,this.shortestEdge=function(){return Math.min(this.height,this.width)},this.getCoordinates=function(z){var y,A=[],N=this.xoffset,L=this.yoffset,O=u(z)/this.height,V=u(z)/this.width;if(this.width>=this.height)for(y=0;y=this.height){var A=z/this.height,N=this.width-A;y=new T(this.xoffset+A,this.yoffset,N,this.height)}else{var L=z/this.width,O=this.height-L;y=new T(this.xoffset,this.yoffset+L,this.width,O)}return y}}function s(w,f,b,M,z){M=M===void 0?0:M,z=z===void 0?0:z;var y=a(function(A,N){var L,O=[],V=N/u(A);for(L=0;L=m}(f,y=w[0],z)?(f.push(y),a(w.slice(1),f,b,M)):(A=b.cutArea(u(f),M),M.push(b.getCoordinates(f)),a(w,[],A,M)),M;M.push(b.getCoordinates(f))}function i(w,f){var b=Math.min.apply(Math,w),M=Math.max.apply(Math,w),z=u(w);return Math.max(Math.pow(f,2)*M/Math.pow(z,2),Math.pow(z,2)/(Math.pow(f,2)*b))}function d(w){return w&&w.constructor===Array}function u(w){var f,b=0;for(f=0;fp-d&&b.width<=w-u){var M=f.rotateAroundCenter(s.node);s.node.setAttribute("transform","rotate(-90 ".concat(M.x," ").concat(M.y,") translate(").concat(b.height/3,")"))}}},{key:"truncateLabels",value:function(s,a,i,d,u,p){var w=new _(this.ctx),f=w.getTextRects(s,a).width+this.w.config.stroke.width+5>u-i&&p-d>u-i?p-d:u-i,b=w.getTextBasedOnMaxWidth({text:s,maxWidth:f,fontSize:a});return s.length!==b.length&&f/a<5?"":b}},{key:"animateTreemap",value:function(s,a,i,d){var u=new U(this.ctx);u.animateRect(s,{x:a.x,y:a.y,width:a.width,height:a.height},{x:i.x,y:i.y,width:i.width,height:i.height},d,function(){u.animationCompleted(s)})}}]),T}(),nw=86400,lw=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w,this.timeScaleArray=[],this.utc=this.w.config.xaxis.labels.datetimeUTC}return k(T,[{key:"calculateTimeScaleTicks",value:function(s,a){var i=this,d=this.w;if(d.globals.allSeriesCollapsed)return d.globals.labels=[],d.globals.timescaleLabels=[],[];var u=new dt(this.ctx),p=(a-s)/864e5;this.determineInterval(p),d.globals.disableZoomIn=!1,d.globals.disableZoomOut=!1,p<.00011574074074074075?d.globals.disableZoomIn=!0:p>5e4&&(d.globals.disableZoomOut=!0);var w=u.getTimeUnitsfromTimestamp(s,a,this.utc),f=d.globals.gridWidth/p,b=f/24,M=b/60,z=M/60,y=Math.floor(24*p),A=Math.floor(1440*p),N=Math.floor(p*nw),L=Math.floor(p),O=Math.floor(p/30),V=Math.floor(p/365),Z={minMillisecond:w.minMillisecond,minSecond:w.minSecond,minMinute:w.minMinute,minHour:w.minHour,minDate:w.minDate,minMonth:w.minMonth,minYear:w.minYear},m={firstVal:Z,currentMillisecond:Z.minMillisecond,currentSecond:Z.minSecond,currentMinute:Z.minMinute,currentHour:Z.minHour,currentMonthDate:Z.minDate,currentDate:Z.minDate,currentMonth:Z.minMonth,currentYear:Z.minYear,daysWidthOnXAxis:f,hoursWidthOnXAxis:b,minutesWidthOnXAxis:M,secondsWidthOnXAxis:z,numberOfSeconds:N,numberOfMinutes:A,numberOfHours:y,numberOfDays:L,numberOfMonths:O,numberOfYears:V};switch(this.tickInterval){case"years":this.generateYearScale(m);break;case"months":case"half_year":this.generateMonthScale(m);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(m);break;case"hours":this.generateHourScale(m);break;case"minutes_fives":case"minutes":this.generateMinuteScale(m);break;case"seconds_tens":case"seconds_fives":case"seconds":this.generateSecondScale(m)}var C=this.timeScaleArray.map(function(j){var E={position:j.position,unit:j.unit,year:j.year,day:j.day?j.day:1,hour:j.hour?j.hour:0,month:j.month+1};return j.unit==="month"?h(h({},E),{},{day:1,value:j.value+1}):j.unit==="day"||j.unit==="hour"?h(h({},E),{},{value:j.value}):j.unit==="minute"?h(h({},E),{},{value:j.value,minute:j.value}):j.unit==="second"?h(h({},E),{},{value:j.value,minute:j.minute,second:j.second}):j});return C.filter(function(j){var E=1,K=Math.ceil(d.globals.gridWidth/120),Q=j.value;d.config.xaxis.tickAmount!==void 0&&(K=d.config.xaxis.tickAmount),C.length>K&&(E=Math.floor(C.length/K));var ot=!1,it=!1;switch(i.tickInterval){case"years":j.unit==="year"&&(ot=!0);break;case"half_year":E=7,j.unit==="year"&&(ot=!0);break;case"months":E=1,j.unit==="year"&&(ot=!0);break;case"months_fortnight":E=15,j.unit!=="year"&&j.unit!=="month"||(ot=!0),Q===30&&(it=!0);break;case"months_days":E=10,j.unit==="month"&&(ot=!0),Q===30&&(it=!0);break;case"week_days":E=8,j.unit==="month"&&(ot=!0);break;case"days":E=1,j.unit==="month"&&(ot=!0);break;case"hours":j.unit==="day"&&(ot=!0);break;case"minutes_fives":case"seconds_fives":Q%5!=0&&(it=!0);break;case"seconds_tens":Q%10!=0&&(it=!0)}if(i.tickInterval==="hours"||i.tickInterval==="minutes_fives"||i.tickInterval==="seconds_tens"||i.tickInterval==="seconds_fives"){if(!it)return!0}else if((Q%E==0||ot)&&!it)return!0})}},{key:"recalcDimensionsBasedOnFormat",value:function(s,a){var i=this.w,d=this.formatDates(s),u=this.removeOverlappingTS(d);i.globals.timescaleLabels=u.slice(),new ae(this.ctx).plotCoords()}},{key:"determineInterval",value:function(s){var a=24*s,i=60*a;switch(!0){case s/365>5:this.tickInterval="years";break;case s>800:this.tickInterval="half_year";break;case s>180:this.tickInterval="months";break;case s>90:this.tickInterval="months_fortnight";break;case s>60:this.tickInterval="months_days";break;case s>30:this.tickInterval="week_days";break;case s>2:this.tickInterval="days";break;case a>2.4:this.tickInterval="hours";break;case i>15:this.tickInterval="minutes_fives";break;case i>5:this.tickInterval="minutes";break;case i>1:this.tickInterval="seconds_tens";break;case 60*i>20:this.tickInterval="seconds_fives";break;default:this.tickInterval="seconds"}}},{key:"generateYearScale",value:function(s){var a=s.firstVal,i=s.currentMonth,d=s.currentYear,u=s.daysWidthOnXAxis,p=s.numberOfYears,w=a.minYear,f=0,b=new dt(this.ctx),M="year";if(a.minDate>1||a.minMonth>0){var z=b.determineRemainingDaysOfYear(a.minYear,a.minMonth,a.minDate);f=(b.determineDaysOfYear(a.minYear)-z+1)*u,w=a.minYear+1,this.timeScaleArray.push({position:f,value:w,unit:M,year:w,month:H.monthMod(i+1)})}else a.minDate===1&&a.minMonth===0&&this.timeScaleArray.push({position:f,value:w,unit:M,year:d,month:H.monthMod(i+1)});for(var y=w,A=f,N=0;N1){b=(M.determineDaysOfMonths(d+1,a.minYear)-i+1)*p,f=H.monthMod(d+1);var A=u+y,N=H.monthMod(f),L=f;f===0&&(z="year",L=A,N=1,A+=y+=1),this.timeScaleArray.push({position:b,value:L,unit:z,year:A,month:N})}else this.timeScaleArray.push({position:b,value:f,unit:z,year:u,month:H.monthMod(d)});for(var O=f+1,V=b,Z=0,m=1;Zw.determineDaysOfMonths(C+1,j)&&(M=1,f="month",A=C+=1),C},y=(24-a.minHour)*u,A=b,N=z(M,i,d);a.minHour===0&&a.minDate===1?(y=0,A=H.monthMod(a.minMonth),f="month",M=a.minDate,p++):a.minDate!==1&&a.minHour===0&&a.minMinute===0&&(y=0,b=a.minDate,A=b,N=z(M=b,i,d)),this.timeScaleArray.push({position:y,value:A,unit:f,year:this._getYear(d,N,0),month:H.monthMod(N),day:M});for(var L=y,O=0;Of.determineDaysOfMonths(K+1,u)&&(O=1,K+=1),{month:K,date:O}},z=function(E,K){return E>f.determineDaysOfMonths(K+1,u)?K+=1:K},y=60-(a.minMinute+a.minSecond/60),A=y*p,N=a.minHour+1,L=N+1;y===60&&(A=0,L=(N=a.minHour)+1);var O=i,V=z(O,d);this.timeScaleArray.push({position:A,value:N,unit:b,day:O,hour:L,year:u,month:H.monthMod(V)});for(var Z=A,m=0;m=24&&(L=0,b="day",V=M(O+=1,V).month,V=z(O,V));var C=this._getYear(u,V,0);Z=60*p+Z;var j=L===0?O:L;this.timeScaleArray.push({position:Z,value:j,unit:b,hour:L,day:O,year:C,month:H.monthMod(V)}),L++}}},{key:"generateMinuteScale",value:function(s){for(var a=s.currentMillisecond,i=s.currentSecond,d=s.currentMinute,u=s.currentHour,p=s.currentDate,w=s.currentMonth,f=s.currentYear,b=s.minutesWidthOnXAxis,M=s.secondsWidthOnXAxis,z=s.numberOfMinutes,y=d+1,A=p,N=w,L=f,O=u,V=(60-i-a/1e3)*M,Z=0;Z=60&&(y=0,(O+=1)===24&&(O=0)),this.timeScaleArray.push({position:V,value:y,unit:"minute",hour:O,minute:y,day:A,year:this._getYear(L,N,0),month:H.monthMod(N)}),V+=b,y++}},{key:"generateSecondScale",value:function(s){for(var a=s.currentMillisecond,i=s.currentSecond,d=s.currentMinute,u=s.currentHour,p=s.currentDate,w=s.currentMonth,f=s.currentYear,b=s.secondsWidthOnXAxis,M=s.numberOfSeconds,z=i+1,y=d,A=p,N=w,L=f,O=u,V=(1e3-a)/1e3*b,Z=0;Z=60&&(z=0,++y>=60&&(y=0,++O===24&&(O=0))),this.timeScaleArray.push({position:V,value:z,unit:"second",hour:O,minute:y,second:z,day:A,year:this._getYear(L,N,0),month:H.monthMod(N)}),V+=b,z++}},{key:"createRawDateString",value:function(s,a){var i=s.year;return s.month===0&&(s.month=1),i+="-"+("0"+s.month.toString()).slice(-2),s.unit==="day"?i+=s.unit==="day"?"-"+("0"+a).slice(-2):"-01":i+="-"+("0"+(s.day?s.day:"1")).slice(-2),s.unit==="hour"?i+=s.unit==="hour"?"T"+("0"+a).slice(-2):"T00":i+="T"+("0"+(s.hour?s.hour:"0")).slice(-2),s.unit==="minute"?i+=":"+("0"+a).slice(-2):i+=":"+(s.minute?("0"+s.minute).slice(-2):"00"),s.unit==="second"?i+=":"+("0"+a).slice(-2):i+=":00",this.utc&&(i+=".000Z"),i}},{key:"formatDates",value:function(s){var a=this,i=this.w;return s.map(function(d){var u=d.value.toString(),p=new dt(a.ctx),w=a.createRawDateString(d,u),f=p.getDate(p.parseDate(w));if(a.utc||(f=p.getDate(p.parseDateWithTimezone(w))),i.config.xaxis.labels.format===void 0){var b="dd MMM",M=i.config.xaxis.labels.datetimeFormatter;d.unit==="year"&&(b=M.year),d.unit==="month"&&(b=M.month),d.unit==="day"&&(b=M.day),d.unit==="hour"&&(b=M.hour),d.unit==="minute"&&(b=M.minute),d.unit==="second"&&(b=M.second),u=p.formatDate(f,b)}else u=p.formatDate(f,i.config.xaxis.labels.format);return{dateString:w,position:d.position,value:u,unit:d.unit,year:d.year,month:d.month}})}},{key:"removeOverlappingTS",value:function(s){var a,i=this,d=new _(this.ctx),u=!1;s.length>0&&s[0].value&&s.every(function(f){return f.value.length===s[0].value.length})&&(u=!0,a=d.getTextRects(s[0].value).width);var p=0,w=s.map(function(f,b){if(b>0&&i.w.config.xaxis.labels.hideOverlappingLabels){var M=u?a:d.getTextRects(s[p].value).width,z=s[p].position;return f.position>z+M+10?(p=b,f):null}return f});return w=w.filter(function(f){return f!==null})}},{key:"_getYear",value:function(s,a,i){return s+Math.floor(a/12)+i}}]),T}(),rw=function(){function T(s,a){g(this,T),this.ctx=a,this.w=a.w,this.el=s}return k(T,[{key:"setupElements",value:function(){var s=this.w.globals,a=this.w.config,i=a.chart.type;s.axisCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble","radar","heatmap","treemap"].indexOf(i)>-1,s.xyCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble"].indexOf(i)>-1,s.isBarHorizontal=(a.chart.type==="bar"||a.chart.type==="rangeBar"||a.chart.type==="boxPlot")&&a.plotOptions.bar.horizontal,s.chartClass=".apexcharts"+s.chartID,s.dom.baseEl=this.el,s.dom.elWrap=document.createElement("div"),_.setAttrs(s.dom.elWrap,{id:s.chartClass.substring(1),class:"apexcharts-canvas "+s.chartClass.substring(1)}),this.el.appendChild(s.dom.elWrap),s.dom.Paper=new window.SVG.Doc(s.dom.elWrap),s.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(a.chart.offsetX,", ").concat(a.chart.offsetY,")")}),s.dom.Paper.node.style.background=a.chart.background,this.setSVGDimensions(),s.dom.elLegendForeign=document.createElementNS(s.SVGNS,"foreignObject"),_.setAttrs(s.dom.elLegendForeign,{x:0,y:0,width:s.svgWidth,height:s.svgHeight}),s.dom.elLegendWrap=document.createElement("div"),s.dom.elLegendWrap.classList.add("apexcharts-legend"),s.dom.elLegendWrap.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),s.dom.elLegendForeign.appendChild(s.dom.elLegendWrap),s.dom.Paper.node.appendChild(s.dom.elLegendForeign),s.dom.elGraphical=s.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),s.dom.elDefs=s.dom.Paper.defs(),s.dom.Paper.add(s.dom.elGraphical),s.dom.elGraphical.add(s.dom.elDefs)}},{key:"plotChartType",value:function(s,a){var i=this.w,d=i.config,u=i.globals,p={series:[],i:[]},w={series:[],i:[]},f={series:[],i:[]},b={series:[],i:[]},M={series:[],i:[]},z={series:[],i:[]},y={series:[],i:[]},A={series:[],i:[]},N={series:[],seriesRangeEnd:[],i:[]};u.series.map(function(K,Q){var ot=0;s[Q].type!==void 0?(s[Q].type==="column"||s[Q].type==="bar"?(u.series.length>1&&d.plotOptions.bar.horizontal&&console.warn("Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`"),M.series.push(K),M.i.push(Q),ot++,i.globals.columnSeries=M.series):s[Q].type==="area"?(w.series.push(K),w.i.push(Q),ot++):s[Q].type==="line"?(p.series.push(K),p.i.push(Q),ot++):s[Q].type==="scatter"?(f.series.push(K),f.i.push(Q)):s[Q].type==="bubble"?(b.series.push(K),b.i.push(Q),ot++):s[Q].type==="candlestick"?(z.series.push(K),z.i.push(Q),ot++):s[Q].type==="boxPlot"?(y.series.push(K),y.i.push(Q),ot++):s[Q].type==="rangeBar"?(A.series.push(K),A.i.push(Q),ot++):s[Q].type==="rangeArea"?(N.series.push(u.seriesRangeStart[Q]),N.seriesRangeEnd.push(u.seriesRangeEnd[Q]),N.i.push(Q),ot++):console.warn("You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble/candlestick/boxPlot/rangeBar/rangeArea"),ot>1&&(u.comboCharts=!0)):(p.series.push(K),p.i.push(Q))});var L=new Mi(this.ctx,a),O=new mi(this.ctx,a);this.ctx.pie=new O2(this.ctx);var V=new Kg(this.ctx);this.ctx.rangeBar=new Qg(this.ctx,a);var Z=new Zg(this.ctx),m=[];if(u.comboCharts){if(w.series.length>0&&m.push(L.draw(w.series,"area",w.i)),M.series.length>0)if(i.config.chart.stacked){var C=new P2(this.ctx,a);m.push(C.draw(M.series,M.i))}else this.ctx.bar=new Lr(this.ctx,a),m.push(this.ctx.bar.draw(M.series,M.i));if(N.series.length>0&&m.push(L.draw(N.series,"rangeArea",N.i,N.seriesRangeEnd)),p.series.length>0&&m.push(L.draw(p.series,"line",p.i)),z.series.length>0&&m.push(O.draw(z.series,"candlestick",z.i)),y.series.length>0&&m.push(O.draw(y.series,"boxPlot",y.i)),A.series.length>0&&m.push(this.ctx.rangeBar.draw(A.series,A.i)),f.series.length>0){var j=new Mi(this.ctx,a,!0);m.push(j.draw(f.series,"scatter",f.i))}if(b.series.length>0){var E=new Mi(this.ctx,a,!0);m.push(E.draw(b.series,"bubble",b.i))}}else switch(d.chart.type){case"line":m=L.draw(u.series,"line");break;case"area":m=L.draw(u.series,"area");break;case"bar":d.chart.stacked?m=new P2(this.ctx,a).draw(u.series):(this.ctx.bar=new Lr(this.ctx,a),m=this.ctx.bar.draw(u.series));break;case"candlestick":m=new mi(this.ctx,a).draw(u.series,"candlestick");break;case"boxPlot":m=new mi(this.ctx,a).draw(u.series,d.chart.type);break;case"rangeBar":m=this.ctx.rangeBar.draw(u.series);break;case"rangeArea":m=L.draw(u.seriesRangeStart,"rangeArea",void 0,u.seriesRangeEnd);break;case"heatmap":m=new Gg(this.ctx,a).draw(u.series);break;case"treemap":m=new ew(this.ctx,a).draw(u.series);break;case"pie":case"donut":case"polarArea":m=this.ctx.pie.draw(u.series);break;case"radialBar":m=V.draw(u.series);break;case"radar":m=Z.draw(u.series);break;default:m=L.draw(u.series)}return m}},{key:"setSVGDimensions",value:function(){var s=this.w.globals,a=this.w.config;s.svgWidth=a.chart.width,s.svgHeight=a.chart.height;var i=H.getDimensions(this.el),d=a.chart.width.toString().split(/[0-9]+/g).pop();d==="%"?H.isNumber(i[0])&&(i[0].width===0&&(i=H.getDimensions(this.el.parentNode)),s.svgWidth=i[0]*parseInt(a.chart.width,10)/100):d!=="px"&&d!==""||(s.svgWidth=parseInt(a.chart.width,10));var u=a.chart.height.toString().split(/[0-9]+/g).pop();if(s.svgHeight!=="auto"&&s.svgHeight!=="")if(u==="%"){var p=H.getDimensions(this.el.parentNode);s.svgHeight=p[1]*parseInt(a.chart.height,10)/100}else s.svgHeight=parseInt(a.chart.height,10);else s.axisCharts?s.svgHeight=s.svgWidth/1.61:s.svgHeight=s.svgWidth/1.2;if(s.svgWidth<0&&(s.svgWidth=0),s.svgHeight<0&&(s.svgHeight=0),_.setAttrs(s.dom.Paper.node,{width:s.svgWidth,height:s.svgHeight}),u!=="%"){var w=a.chart.sparkline.enabled?0:s.axisCharts?a.chart.parentHeightOffset:0;s.dom.Paper.node.parentNode.parentNode.style.minHeight=s.svgHeight+w+"px"}s.dom.elWrap.style.width=s.svgWidth+"px",s.dom.elWrap.style.height=s.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var s=this.w.globals,a=s.translateY,i={transform:"translate("+s.translateX+", "+a+")"};_.setAttrs(s.dom.elGraphical.node,i)}},{key:"resizeNonAxisCharts",value:function(){var s=this.w,a=s.globals,i=0,d=s.config.chart.sparkline.enabled?1:15;d+=s.config.grid.padding.bottom,s.config.legend.position!=="top"&&s.config.legend.position!=="bottom"||!s.config.legend.show||s.config.legend.floating||(i=new ge(this.ctx).legendHelpers.getLegendBBox().clwh+10);var u=s.globals.dom.baseEl.querySelector(".apexcharts-radialbar, .apexcharts-pie"),p=2.05*s.globals.radialSize;if(u&&!s.config.chart.sparkline.enabled&&s.config.plotOptions.radialBar.startAngle!==0){var w=H.getBoundingClientRect(u);p=w.bottom;var f=w.bottom-w.top;p=Math.max(2.05*s.globals.radialSize,f)}var b=p+a.translateY+i+d;a.dom.elLegendForeign&&a.dom.elLegendForeign.setAttribute("height",b),s.config.chart.height&&String(s.config.chart.height).indexOf("%")>0||(a.dom.elWrap.style.height=b+"px",_.setAttrs(a.dom.Paper.node,{height:b}),a.dom.Paper.node.parentNode.parentNode.style.minHeight=b+"px")}},{key:"coreCalculations",value:function(){new lt(this.ctx).init()}},{key:"resetGlobals",value:function(){var s=this,a=function(){return s.w.config.series.map(function(u){return[]})},i=new At,d=this.w.globals;i.initGlobalVars(d),d.seriesXvalues=a(),d.seriesYvalues=a()}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"xySettings",value:function(){var s=null,a=this.w;if(a.globals.axisCharts){if(a.config.xaxis.crosshairs.position==="back"&&new Ot(this.ctx).drawXCrosshairs(),a.config.yaxis[0].crosshairs.position==="back"&&new Ot(this.ctx).drawYCrosshairs(),a.config.xaxis.type==="datetime"&&a.config.xaxis.labels.formatter===void 0){this.ctx.timeScale=new lw(this.ctx);var i=[];isFinite(a.globals.minX)&&isFinite(a.globals.maxX)&&!a.globals.isBarHorizontal?i=this.ctx.timeScale.calculateTimeScaleTicks(a.globals.minX,a.globals.maxX):a.globals.isBarHorizontal&&(i=this.ctx.timeScale.calculateTimeScaleTicks(a.globals.minY,a.globals.maxY)),this.ctx.timeScale.recalcDimensionsBasedOnFormat(i)}s=new tt(this.ctx).getCalculatedRatios()}return s}},{key:"updateSourceChart",value:function(s){this.ctx.w.globals.selection=void 0,this.ctx.updateHelpers._updateOptions({chart:{selection:{xaxis:{min:s.w.globals.minX,max:s.w.globals.maxX}}}},!1,!1)}},{key:"setupBrushHandler",value:function(){var s=this,a=this.w;if(a.config.chart.brush.enabled&&typeof a.config.chart.events.selection!="function"){var i=Array.isArray(a.config.chart.brush.targets)||[a.config.chart.brush.target];i.forEach(function(d){var u=ApexCharts.getChartByID(d);u.w.globals.brushSource=s.ctx,typeof u.w.config.chart.events.zoomed!="function"&&(u.w.config.chart.events.zoomed=function(){s.updateSourceChart(u)}),typeof u.w.config.chart.events.scrolled!="function"&&(u.w.config.chart.events.scrolled=function(){s.updateSourceChart(u)})}),a.config.chart.events.selection=function(d,u){i.forEach(function(p){var w=ApexCharts.getChartByID(p),f=H.clone(a.config.yaxis);if(a.config.chart.brush.autoScaleYaxis&&w.w.globals.series.length===1){var b=new J(w);f=b.autoScaleY(w,f,u)}var M=w.w.config.yaxis.reduce(function(z,y,A){return[].concat(F(z),[h(h({},w.w.config.yaxis[A]),{},{min:f[0].min,max:f[0].max})])},[]);w.ctx.updateHelpers._updateOptions({xaxis:{min:u.xaxis.min,max:u.xaxis.max},yaxis:M},!1,!1,!1,!1)})}}}}]),T}(),ow=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"_updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],u=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=arguments.length>4&&arguments[4]!==void 0&&arguments[4];return new Promise(function(w){var f=[a.ctx];u&&(f=a.ctx.getSyncedCharts()),a.ctx.w.globals.isExecCalled&&(f=[a.ctx],a.ctx.w.globals.isExecCalled=!1),f.forEach(function(b,M){var z=b.w;if(z.globals.shouldAnimate=d,i||(z.globals.resized=!0,z.globals.dataChanged=!0,d&&b.series.getPreviousPaths()),s&&c(s)==="object"&&(b.config=new It(s),s=tt.extendArrayProps(b.config,s,z),b.w.globals.chartID!==a.ctx.w.globals.chartID&&delete s.series,z.config=H.extend(z.config,s),p&&(z.globals.lastXAxis=s.xaxis?H.clone(s.xaxis):[],z.globals.lastYAxis=s.yaxis?H.clone(s.yaxis):[],z.globals.initialConfig=H.extend({},z.config),z.globals.initialSeries=H.clone(z.config.series),s.series))){for(var y=0;y2&&arguments[2]!==void 0&&arguments[2];return new Promise(function(u){var p,w=i.w;return w.globals.shouldAnimate=a,w.globals.dataChanged=!0,a&&i.ctx.series.getPreviousPaths(),w.globals.axisCharts?((p=s.map(function(f,b){return i._extendSeries(f,b)})).length===0&&(p=[{data:[]}]),w.config.series=p):w.config.series=s.slice(),d&&(w.globals.initialConfig.series=H.clone(w.config.series),w.globals.initialSeries=H.clone(w.config.series)),i.ctx.update().then(function(){u(i.ctx)})})}},{key:"_extendSeries",value:function(s,a){var i=this.w,d=i.config.series[a];return h(h({},i.config.series[a]),{},{name:s.name?s.name:d&&d.name,color:s.color?s.color:d&&d.color,type:s.type?s.type:d&&d.type,group:s.group?s.group:d&&d.group,data:s.data?s.data:d&&d.data})}},{key:"toggleDataPointSelection",value:function(s,a){var i=this.w,d=null,u=".apexcharts-series[data\\:realIndex='".concat(s,"']");return i.globals.axisCharts?d=i.globals.dom.Paper.select("".concat(u," path[j='").concat(a,"'], ").concat(u," circle[j='").concat(a,"'], ").concat(u," rect[j='").concat(a,"']")).members[0]:a===void 0&&(d=i.globals.dom.Paper.select("".concat(u," path[j='").concat(s,"']")).members[0],i.config.chart.type!=="pie"&&i.config.chart.type!=="polarArea"&&i.config.chart.type!=="donut"||this.ctx.pie.pieClicked(s)),d?(new _(this.ctx).pathMouseDown(d,null),d.node?d.node:null):(console.warn("toggleDataPointSelection: Element not found"),null)}},{key:"forceXAxisUpdate",value:function(s){var a=this.w;if(["min","max"].forEach(function(d){s.xaxis[d]!==void 0&&(a.config.xaxis[d]=s.xaxis[d],a.globals.lastXAxis[d]=s.xaxis[d])}),s.xaxis.categories&&s.xaxis.categories.length&&(a.config.xaxis.categories=s.xaxis.categories),a.config.xaxis.convertedCatToNumeric){var i=new gt(s);s=i.convertCatToNumericXaxis(s,this.ctx)}return s}},{key:"forceYAxisUpdate",value:function(s){return s.chart&&s.chart.stacked&&s.chart.stackType==="100%"&&(Array.isArray(s.yaxis)?s.yaxis.forEach(function(a,i){s.yaxis[i].min=0,s.yaxis[i].max=100}):(s.yaxis.min=0,s.yaxis.max=100)),s}},{key:"revertDefaultAxisMinMax",value:function(s){var a=this,i=this.w,d=i.globals.lastXAxis,u=i.globals.lastYAxis;s&&s.xaxis&&(d=s.xaxis),s&&s.yaxis&&(u=s.yaxis),i.config.xaxis.min=d.min,i.config.xaxis.max=d.max;var p=function(w){u[w]!==void 0&&(i.config.yaxis[w].min=u[w].min,i.config.yaxis[w].max=u[w].max)};i.config.yaxis.map(function(w,f){i.globals.zoomed||u[f]!==void 0?p(f):a.ctx.opts.yaxis[f]!==void 0&&(w.min=a.ctx.opts.yaxis[f].min,w.max=a.ctx.opts.yaxis[f].max)})}}]),T}();nr=typeof window<"u"?window:void 0,Ds=function(T,s){var a=(this!==void 0?this:T).SVG=function(m){if(a.supported)return m=new a.Doc(m),a.parser.draw||a.prepare(),m};if(a.ns="http://www.w3.org/2000/svg",a.xmlns="http://www.w3.org/2000/xmlns/",a.xlink="http://www.w3.org/1999/xlink",a.svgjs="http://svgjs.dev",a.supported=!0,!a.supported)return!1;a.did=1e3,a.eid=function(m){return"Svgjs"+M(m)+a.did++},a.create=function(m){var C=s.createElementNS(this.ns,m);return C.setAttribute("id",this.eid(m)),C},a.extend=function(){var m,C;C=(m=[].slice.call(arguments)).pop();for(var j=m.length-1;j>=0;j--)if(m[j])for(var E in C)m[j].prototype[E]=C[E];a.Set&&a.Set.inherit&&a.Set.inherit()},a.invent=function(m){var C=typeof m.create=="function"?m.create:function(){this.constructor.call(this,a.create(m.create))};return m.inherit&&(C.prototype=new m.inherit),m.extend&&a.extend(C,m.extend),m.construct&&a.extend(m.parent||a.Container,m.construct),C},a.adopt=function(m){return m?m.instance?m.instance:((C=m.nodeName=="svg"?m.parentNode instanceof T.SVGElement?new a.Nested:new a.Doc:m.nodeName=="linearGradient"?new a.Gradient("linear"):m.nodeName=="radialGradient"?new a.Gradient("radial"):a[M(m.nodeName)]?new a[M(m.nodeName)]:new a.Element(m)).type=m.nodeName,C.node=m,m.instance=C,C instanceof a.Doc&&C.namespace().defs(),C.setData(JSON.parse(m.getAttribute("svgjs:data"))||{}),C):null;var C},a.prepare=function(){var m=s.getElementsByTagName("body")[0],C=(m?new a.Doc(m):a.adopt(s.documentElement).nested()).size(2,0);a.parser={body:m||s.documentElement,draw:C.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:C.polyline().node,path:C.path().node,native:a.create("svg")}},a.parser={native:a.create("svg")},s.addEventListener("DOMContentLoaded",function(){a.parser.draw||a.prepare()},!1),a.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},a.utils={map:function(m,C){for(var j=m.length,E=[],K=0;K1?1:m,new a.Color({r:~~(this.r+(this.destination.r-this.r)*m),g:~~(this.g+(this.destination.g-this.g)*m),b:~~(this.b+(this.destination.b-this.b)*m)})):this}}),a.Color.test=function(m){return m+="",a.regex.isHex.test(m)||a.regex.isRgb.test(m)},a.Color.isRgb=function(m){return m&&typeof m.r=="number"&&typeof m.g=="number"&&typeof m.b=="number"},a.Color.isColor=function(m){return a.Color.isRgb(m)||a.Color.test(m)},a.Array=function(m,C){(m=(m||[]).valueOf()).length==0&&C&&(m=C.valueOf()),this.value=this.parse(m)},a.extend(a.Array,{toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(m){return m=m.valueOf(),Array.isArray(m)?m:this.split(m)}}),a.PointArray=function(m,C){a.Array.call(this,m,C||[[0,0]])},a.PointArray.prototype=new a.Array,a.PointArray.prototype.constructor=a.PointArray;for(var i={M:function(m,C,j){return C.x=j.x=m[0],C.y=j.y=m[1],["M",C.x,C.y]},L:function(m,C){return C.x=m[0],C.y=m[1],["L",m[0],m[1]]},H:function(m,C){return C.x=m[0],["H",m[0]]},V:function(m,C){return C.y=m[0],["V",m[0]]},C:function(m,C){return C.x=m[4],C.y=m[5],["C",m[0],m[1],m[2],m[3],m[4],m[5]]},Q:function(m,C){return C.x=m[2],C.y=m[3],["Q",m[0],m[1],m[2],m[3]]},S:function(m,C){return C.x=m[2],C.y=m[3],["S",m[0],m[1],m[2],m[3]]},Z:function(m,C,j){return C.x=j.x,C.y=j.y,["Z"]}},d="mlhvqtcsaz".split(""),u=0,p=d.length;uot);return E},bbox:function(){return a.parser.draw||a.prepare(),a.parser.path.setAttribute("d",this.toString()),a.parser.path.getBBox()}}),a.Number=a.invent({create:function(m,C){this.value=0,this.unit=C||"",typeof m=="number"?this.value=isNaN(m)?0:isFinite(m)?m:m<0?-34e37:34e37:typeof m=="string"?(C=m.match(a.regex.numberAndUnit))&&(this.value=parseFloat(C[1]),C[5]=="%"?this.value/=100:C[5]=="s"&&(this.value*=1e3),this.unit=C[5]):m instanceof a.Number&&(this.value=m.valueOf(),this.unit=m.unit)},extend:{toString:function(){return(this.unit=="%"?~~(1e8*this.value)/1e6:this.unit=="s"?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(m){return m=new a.Number(m),new a.Number(this+m,this.unit||m.unit)},minus:function(m){return m=new a.Number(m),new a.Number(this-m,this.unit||m.unit)},times:function(m){return m=new a.Number(m),new a.Number(this*m,this.unit||m.unit)},divide:function(m){return m=new a.Number(m),new a.Number(this/m,this.unit||m.unit)},to:function(m){var C=new a.Number(this);return typeof m=="string"&&(C.unit=m),C},morph:function(m){return this.destination=new a.Number(m),m.relative&&(this.destination.value+=this.value),this},at:function(m){return this.destination?new a.Number(this.destination).minus(this).times(m).plus(this):this}}}),a.Element=a.invent({create:function(m){this._stroke=a.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=m)&&(this.type=m.nodeName,this.node.instance=this,this._stroke=m.getAttribute("stroke")||this._stroke)},extend:{x:function(m){return this.attr("x",m)},y:function(m){return this.attr("y",m)},cx:function(m){return m==null?this.x()+this.width()/2:this.x(m-this.width()/2)},cy:function(m){return m==null?this.y()+this.height()/2:this.y(m-this.height()/2)},move:function(m,C){return this.x(m).y(C)},center:function(m,C){return this.cx(m).cy(C)},width:function(m){return this.attr("width",m)},height:function(m){return this.attr("height",m)},size:function(m,C){var j=y(this,m,C);return this.width(new a.Number(j.width)).height(new a.Number(j.height))},clone:function(m){this.writeDataToDom();var C=L(this.node.cloneNode(!0));return m?m.add(C):this.after(C),C},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(m){return this.after(m).remove(),m},addTo:function(m){return m.put(this)},putIn:function(m){return m.add(this)},id:function(m){return this.attr("id",m)},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return this.style("display")!="none"},toString:function(){return this.attr("id")},classes:function(){var m=this.attr("class");return m==null?[]:m.trim().split(a.regex.delimiter)},hasClass:function(m){return this.classes().indexOf(m)!=-1},addClass:function(m){if(!this.hasClass(m)){var C=this.classes();C.push(m),this.attr("class",C.join(" "))}return this},removeClass:function(m){return this.hasClass(m)&&this.attr("class",this.classes().filter(function(C){return C!=m}).join(" ")),this},toggleClass:function(m){return this.hasClass(m)?this.removeClass(m):this.addClass(m)},reference:function(m){return a.get(this.attr(m))},parent:function(m){var C=this;if(!C.node.parentNode)return null;if(C=a.adopt(C.node.parentNode),!m)return C;for(;C&&C.node instanceof T.SVGElement;){if(typeof m=="string"?C.matches(m):C instanceof m)return C;if(!C.node.parentNode||C.node.parentNode.nodeName=="#document")return null;C=a.adopt(C.node.parentNode)}},doc:function(){return this instanceof a.Doc?this:this.parent(a.Doc)},parents:function(m){var C=[],j=this;do{if(!(j=j.parent(m))||!j.node)break;C.push(j)}while(j.parent);return C},matches:function(m){return function(C,j){return(C.matches||C.matchesSelector||C.msMatchesSelector||C.mozMatchesSelector||C.webkitMatchesSelector||C.oMatchesSelector).call(C,j)}(this.node,m)},native:function(){return this.node},svg:function(m){var C=s.createElement("svg");if(!(m&&this instanceof a.Parent))return C.appendChild(m=s.createElement("svg")),this.writeDataToDom(),m.appendChild(this.node.cloneNode(!0)),C.innerHTML.replace(/^/,"").replace(/<\/svg>$/,"");C.innerHTML=""+m.replace(/\n/,"").replace(/<([\w:-]+)([^<]+?)\/>/g,"<$1$2>")+"";for(var j=0,E=C.firstChild.childNodes.length;j":function(m){return-Math.cos(m*Math.PI)/2+.5},">":function(m){return Math.sin(m*Math.PI/2)},"<":function(m){return 1-Math.cos(m*Math.PI/2)}},a.morph=function(m){return function(C,j){return new a.MorphObj(C,j).at(m)}},a.Situation=a.invent({create:function(m){this.init=!1,this.reversed=!1,this.reversing=!1,this.duration=new a.Number(m.duration).valueOf(),this.delay=new a.Number(m.delay).valueOf(),this.start=+new Date+this.delay,this.finish=this.start+this.duration,this.ease=m.ease,this.loop=0,this.loops=!1,this.animations={},this.attrs={},this.styles={},this.transforms=[],this.once={}}}),a.FX=a.invent({create:function(m){this._target=m,this.situations=[],this.active=!1,this.situation=null,this.paused=!1,this.lastPos=0,this.pos=0,this.absPos=0,this._speed=1},extend:{animate:function(m,C,j){c(m)==="object"&&(C=m.ease,j=m.delay,m=m.duration);var E=new a.Situation({duration:m||1e3,delay:j||0,ease:a.easing[C||"-"]||C});return this.queue(E),this},target:function(m){return m&&m instanceof a.Element?(this._target=m,this):this._target},timeToAbsPos:function(m){return(m-this.situation.start)/(this.situation.duration/this._speed)},absPosToTime:function(m){return this.situation.duration/this._speed*m+this.situation.start},startAnimFrame:function(){this.stopAnimFrame(),this.animationFrame=T.requestAnimationFrame((function(){this.step()}).bind(this))},stopAnimFrame:function(){T.cancelAnimationFrame(this.animationFrame)},start:function(){return!this.active&&this.situation&&(this.active=!0,this.startCurrent()),this},startCurrent:function(){return this.situation.start=+new Date+this.situation.delay/this._speed,this.situation.finish=this.situation.start+this.situation.duration/this._speed,this.initAnimations().step()},queue:function(m){return(typeof m=="function"||m instanceof a.Situation)&&this.situations.push(m),this.situation||(this.situation=this.situations.shift()),this},dequeue:function(){return this.stop(),this.situation=this.situations.shift(),this.situation&&(this.situation instanceof a.Situation?this.start():this.situation.call(this)),this},initAnimations:function(){var m,C=this.situation;if(C.init)return this;for(var j in C.animations){m=this.target()[j](),Array.isArray(m)||(m=[m]),Array.isArray(C.animations[j])||(C.animations[j]=[C.animations[j]]);for(var E=m.length;E--;)C.animations[j][E]instanceof a.Number&&(m[E]=new a.Number(m[E])),C.animations[j][E]=m[E].morph(C.animations[j][E])}for(var j in C.attrs)C.attrs[j]=new a.MorphObj(this.target().attr(j),C.attrs[j]);for(var j in C.styles)C.styles[j]=new a.MorphObj(this.target().style(j),C.styles[j]);return C.initialTransformation=this.target().matrixify(),C.init=!0,this},clearQueue:function(){return this.situations=[],this},clearCurrent:function(){return this.situation=null,this},stop:function(m,C){var j=this.active;return this.active=!1,C&&this.clearQueue(),m&&this.situation&&(!j&&this.startCurrent(),this.atEnd()),this.stopAnimFrame(),this.clearCurrent()},after:function(m){var C=this.last();return this.target().on("finished.fx",function j(E){E.detail.situation==C&&(m.call(this,C),this.off("finished.fx",j))}),this._callStart()},during:function(m){var C=this.last(),j=function(E){E.detail.situation==C&&m.call(this,E.detail.pos,a.morph(E.detail.pos),E.detail.eased,C)};return this.target().off("during.fx",j).on("during.fx",j),this.after(function(){this.off("during.fx",j)}),this._callStart()},afterAll:function(m){var C=function j(E){m.call(this),this.off("allfinished.fx",j)};return this.target().off("allfinished.fx",C).on("allfinished.fx",C),this._callStart()},last:function(){return this.situations.length?this.situations[this.situations.length-1]:this.situation},add:function(m,C,j){return this.last()[j||"animations"][m]=C,this._callStart()},step:function(m){var C,j,E;m||(this.absPos=this.timeToAbsPos(+new Date)),this.situation.loops!==!1?(C=Math.max(this.absPos,0),j=Math.floor(C),this.situation.loops===!0||jthis.lastPos&&Q<=K&&(this.situation.once[Q].call(this.target(),this.pos,K),delete this.situation.once[Q]);return this.active&&this.target().fire("during",{pos:this.pos,eased:K,fx:this,situation:this.situation}),this.situation?(this.eachAt(),this.pos==1&&!this.situation.reversed||this.situation.reversed&&this.pos==0?(this.stopAnimFrame(),this.target().fire("finished",{fx:this,situation:this.situation}),this.situations.length||(this.target().fire("allfinished"),this.situations.length||(this.target().off(".fx"),this.active=!1)),this.active?this.dequeue():this.clearCurrent()):!this.paused&&this.active&&this.startAnimFrame(),this.lastPos=K,this):this},eachAt:function(){var m,C=this,j=this.target(),E=this.situation;for(var K in E.animations)m=[].concat(E.animations[K]).map(function(it){return typeof it!="string"&&it.at?it.at(E.ease(C.pos),C.pos):it}),j[K].apply(j,m);for(var K in E.attrs)m=[K].concat(E.attrs[K]).map(function(vt){return typeof vt!="string"&&vt.at?vt.at(E.ease(C.pos),C.pos):vt}),j.attr.apply(j,m);for(var K in E.styles)m=[K].concat(E.styles[K]).map(function(vt){return typeof vt!="string"&&vt.at?vt.at(E.ease(C.pos),C.pos):vt}),j.style.apply(j,m);if(E.transforms.length){m=E.initialTransformation,K=0;for(var Q=E.transforms.length;K=0;--j)this[V[j]]=m[V[j]]!=null?m[V[j]]:C[V[j]]},extend:{extract:function(){var m=A(this,0,1);A(this,1,0);var C=180/Math.PI*Math.atan2(m.y,m.x)-90;return{x:this.e,y:this.f,transformedX:(this.e*Math.cos(C*Math.PI/180)+this.f*Math.sin(C*Math.PI/180))/Math.sqrt(this.a*this.a+this.b*this.b),transformedY:(this.f*Math.cos(C*Math.PI/180)+this.e*Math.sin(-C*Math.PI/180))/Math.sqrt(this.c*this.c+this.d*this.d),rotation:C,a:this.a,b:this.b,c:this.c,d:this.d,e:this.e,f:this.f,matrix:new a.Matrix(this)}},clone:function(){return new a.Matrix(this)},morph:function(m){return this.destination=new a.Matrix(m),this},multiply:function(m){return new a.Matrix(this.native().multiply(function(C){return C instanceof a.Matrix||(C=new a.Matrix(C)),C}(m).native()))},inverse:function(){return new a.Matrix(this.native().inverse())},translate:function(m,C){return new a.Matrix(this.native().translate(m||0,C||0))},native:function(){for(var m=a.parser.native.createSVGMatrix(),C=V.length-1;C>=0;C--)m[V[C]]=this[V[C]];return m},toString:function(){return"matrix("+O(this.a)+","+O(this.b)+","+O(this.c)+","+O(this.d)+","+O(this.e)+","+O(this.f)+")"}},parent:a.Element,construct:{ctm:function(){return new a.Matrix(this.node.getCTM())},screenCTM:function(){if(this instanceof a.Nested){var m=this.rect(1,1),C=m.node.getScreenCTM();return m.remove(),new a.Matrix(C)}return new a.Matrix(this.node.getScreenCTM())}}}),a.Point=a.invent({create:function(m,C){var j;j=Array.isArray(m)?{x:m[0],y:m[1]}:c(m)==="object"?{x:m.x,y:m.y}:m!=null?{x:m,y:C??m}:{x:0,y:0},this.x=j.x,this.y=j.y},extend:{clone:function(){return new a.Point(this)},morph:function(m,C){return this.destination=new a.Point(m,C),this}}}),a.extend(a.Element,{point:function(m,C){return new a.Point(m,C).transform(this.screenCTM().inverse())}}),a.extend(a.Element,{attr:function(m,C,j){if(m==null){for(m={},j=(C=this.node.attributes).length-1;j>=0;j--)m[C[j].nodeName]=a.regex.isNumber.test(C[j].nodeValue)?parseFloat(C[j].nodeValue):C[j].nodeValue;return m}if(c(m)==="object")for(var E in m)this.attr(E,m[E]);else if(C===null)this.node.removeAttribute(m);else{if(C==null)return(C=this.node.getAttribute(m))==null?a.defaults.attrs[m]:a.regex.isNumber.test(C)?parseFloat(C):C;m=="stroke-width"?this.attr("stroke",parseFloat(C)>0?this._stroke:null):m=="stroke"&&(this._stroke=C),m!="fill"&&m!="stroke"||(a.regex.isImage.test(C)&&(C=this.doc().defs().image(C,0,0)),C instanceof a.Image&&(C=this.doc().defs().pattern(0,0,function(){this.add(C)}))),typeof C=="number"?C=new a.Number(C):a.Color.isColor(C)?C=new a.Color(C):Array.isArray(C)&&(C=new a.Array(C)),m=="leading"?this.leading&&this.leading(C):typeof j=="string"?this.node.setAttributeNS(j,m,C.toString()):this.node.setAttribute(m,C.toString()),!this.rebuild||m!="font-size"&&m!="x"||this.rebuild(m,C)}return this}}),a.extend(a.Element,{transform:function(m,C){var j;return c(m)!=="object"?(j=new a.Matrix(this).extract(),typeof m=="string"?j[m]:j):(j=new a.Matrix(this),C=!!C||!!m.relative,m.a!=null&&(j=C?j.multiply(new a.Matrix(m)):new a.Matrix(m)),this.attr("transform",j))}}),a.extend(a.Element,{untransform:function(){return this.attr("transform",null)},matrixify:function(){return(this.attr("transform")||"").split(a.regex.transforms).slice(0,-1).map(function(m){var C=m.trim().split("(");return[C[0],C[1].split(a.regex.delimiter).map(function(j){return parseFloat(j)})]}).reduce(function(m,C){return C[0]=="matrix"?m.multiply(N(C[1])):m[C[0]].apply(m,C[1])},new a.Matrix)},toParent:function(m){if(this==m)return this;var C=this.screenCTM(),j=m.screenCTM().inverse();return this.addTo(m).untransform().transform(j.multiply(C)),this},toDoc:function(){return this.toParent(this.doc())}}),a.Transformation=a.invent({create:function(m,C){if(arguments.length>1&&typeof C!="boolean")return this.constructor.call(this,[].slice.call(arguments));if(Array.isArray(m))for(var j=0,E=this.arguments.length;j=0},index:function(m){return[].slice.call(this.node.childNodes).indexOf(m.node)},get:function(m){return a.adopt(this.node.childNodes[m])},first:function(){return this.get(0)},last:function(){return this.get(this.node.childNodes.length-1)},each:function(m,C){for(var j=this.children(),E=0,K=j.length;E=0;C--)m.childNodes[C]instanceof T.SVGElement&&L(m.childNodes[C]);return a.adopt(m).id(a.eid(m.nodeName))}function O(m){return Math.abs(m)>1e-37?m:0}["fill","stroke"].forEach(function(m){var C={};C[m]=function(j){if(j===void 0)return this;if(typeof j=="string"||a.Color.isRgb(j)||j&&typeof j.fill=="function")this.attr(m,j);else for(var E=w[m].length-1;E>=0;E--)j[w[m][E]]!=null&&this.attr(w.prefix(m,w[m][E]),j[w[m][E]]);return this},a.extend(a.Element,a.FX,C)}),a.extend(a.Element,a.FX,{translate:function(m,C){return this.transform({x:m,y:C})},matrix:function(m){return this.attr("transform",new a.Matrix(arguments.length==6?[].slice.call(arguments):m))},opacity:function(m){return this.attr("opacity",m)},dx:function(m){return this.x(new a.Number(m).plus(this instanceof a.FX?0:this.x()),!0)},dy:function(m){return this.y(new a.Number(m).plus(this instanceof a.FX?0:this.y()),!0)}}),a.extend(a.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(m){return this.node.getPointAtLength(m)}}),a.Set=a.invent({create:function(m){Array.isArray(m)?this.members=m:this.clear()},extend:{add:function(){for(var m=[].slice.call(arguments),C=0,j=m.length;C-1&&this.members.splice(C,1),this},each:function(m){for(var C=0,j=this.members.length;C=0},index:function(m){return this.members.indexOf(m)},get:function(m){return this.members[m]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members}},construct:{set:function(m){return new a.Set(m)}}}),a.FX.Set=a.invent({create:function(m){this.set=m}}),a.Set.inherit=function(){var m=[];for(var C in a.Shape.prototype)typeof a.Shape.prototype[C]=="function"&&typeof a.Set.prototype[C]!="function"&&m.push(C);for(var C in m.forEach(function(E){a.Set.prototype[E]=function(){for(var K=0,Q=this.members.length;K=0;m--)delete this.memory()[arguments[m]];return this},memory:function(){return this._memory||(this._memory={})}}),a.get=function(m){var C=s.getElementById(function(j){var E=(j||"").toString().match(a.regex.reference);if(E)return E[1]}(m)||m);return a.adopt(C)},a.select=function(m,C){return new a.Set(a.utils.map((C||s).querySelectorAll(m),function(j){return a.adopt(j)}))},a.extend(a.Parent,{select:function(m){return a.select(m,this.node)}});var V="abcdef".split("");if(typeof T.CustomEvent!="function"){var Z=function(m,C){C=C||{bubbles:!1,cancelable:!1,detail:void 0};var j=s.createEvent("CustomEvent");return j.initCustomEvent(m,C.bubbles,C.cancelable,C.detail),j};Z.prototype=T.Event.prototype,a.CustomEvent=Z}else a.CustomEvent=T.CustomEvent;return a},c(l)==="object"?n.exports=nr.document?Ds(nr,nr.document):function(T){return Ds(T,T.document)}:nr.SVG=Ds(nr,nr.document),(function(){SVG.Filter=SVG.invent({create:"filter",inherit:SVG.Parent,extend:{source:"SourceGraphic",sourceAlpha:"SourceAlpha",background:"BackgroundImage",backgroundAlpha:"BackgroundAlpha",fill:"FillPaint",stroke:"StrokePaint",autoSetIn:!0,put:function(p,w){return this.add(p,w),!p.attr("in")&&this.autoSetIn&&p.attr("in",this.source),p.attr("result")||p.attr("result",p),p},blend:function(p,w,f){return this.put(new SVG.BlendEffect(p,w,f))},colorMatrix:function(p,w){return this.put(new SVG.ColorMatrixEffect(p,w))},convolveMatrix:function(p){return this.put(new SVG.ConvolveMatrixEffect(p))},componentTransfer:function(p){return this.put(new SVG.ComponentTransferEffect(p))},composite:function(p,w,f){return this.put(new SVG.CompositeEffect(p,w,f))},flood:function(p,w){return this.put(new SVG.FloodEffect(p,w))},offset:function(p,w){return this.put(new SVG.OffsetEffect(p,w))},image:function(p){return this.put(new SVG.ImageEffect(p))},merge:function(){var p=[void 0];for(var w in arguments)p.push(arguments[w]);return this.put(new(SVG.MergeEffect.bind.apply(SVG.MergeEffect,p)))},gaussianBlur:function(p,w){return this.put(new SVG.GaussianBlurEffect(p,w))},morphology:function(p,w){return this.put(new SVG.MorphologyEffect(p,w))},diffuseLighting:function(p,w,f){return this.put(new SVG.DiffuseLightingEffect(p,w,f))},displacementMap:function(p,w,f,b,M){return this.put(new SVG.DisplacementMapEffect(p,w,f,b,M))},specularLighting:function(p,w,f,b){return this.put(new SVG.SpecularLightingEffect(p,w,f,b))},tile:function(){return this.put(new SVG.TileEffect)},turbulence:function(p,w,f,b,M){return this.put(new SVG.TurbulenceEffect(p,w,f,b,M))},toString:function(){return"url(#"+this.attr("id")+")"}}}),SVG.extend(SVG.Defs,{filter:function(p){var w=this.put(new SVG.Filter);return typeof p=="function"&&p.call(w,w),w}}),SVG.extend(SVG.Container,{filter:function(p){return this.defs().filter(p)}}),SVG.extend(SVG.Element,SVG.G,SVG.Nested,{filter:function(p){return this.filterer=p instanceof SVG.Element?p:this.doc().filter(p),this.doc()&&this.filterer.doc()!==this.doc()&&this.doc().defs().add(this.filterer),this.attr("filter",this.filterer),this.filterer},unfilter:function(p){return this.filterer&&p===!0&&this.filterer.remove(),delete this.filterer,this.attr("filter",null)}}),SVG.Effect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(p){return p==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",p)},result:function(p){return p==null?this.attr("result"):this.attr("result",p)},toString:function(){return this.result()}}}),SVG.ParentEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Parent,extend:{in:function(p){return p==null?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",p)},result:function(p){return p==null?this.attr("result"):this.attr("result",p)},toString:function(){return this.result()}}});var T={blend:function(p,w){return this.parent()&&this.parent().blend(this,p,w)},colorMatrix:function(p,w){return this.parent()&&this.parent().colorMatrix(p,w).in(this)},convolveMatrix:function(p){return this.parent()&&this.parent().convolveMatrix(p).in(this)},componentTransfer:function(p){return this.parent()&&this.parent().componentTransfer(p).in(this)},composite:function(p,w){return this.parent()&&this.parent().composite(this,p,w)},flood:function(p,w){return this.parent()&&this.parent().flood(p,w)},offset:function(p,w){return this.parent()&&this.parent().offset(p,w).in(this)},image:function(p){return this.parent()&&this.parent().image(p)},merge:function(){return this.parent()&&this.parent().merge.apply(this.parent(),[this].concat(arguments))},gaussianBlur:function(p,w){return this.parent()&&this.parent().gaussianBlur(p,w).in(this)},morphology:function(p,w){return this.parent()&&this.parent().morphology(p,w).in(this)},diffuseLighting:function(p,w,f){return this.parent()&&this.parent().diffuseLighting(p,w,f).in(this)},displacementMap:function(p,w,f,b){return this.parent()&&this.parent().displacementMap(this,p,w,f,b)},specularLighting:function(p,w,f,b){return this.parent()&&this.parent().specularLighting(p,w,f,b).in(this)},tile:function(){return this.parent()&&this.parent().tile().in(this)},turbulence:function(p,w,f,b,M){return this.parent()&&this.parent().turbulence(p,w,f,b,M).in(this)}};SVG.extend(SVG.Effect,T),SVG.extend(SVG.ParentEffect,T),SVG.ChildEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(p){this.attr("in",p)}}});var s={blend:function(p,w,f){this.attr({in:p,in2:w,mode:f||"normal"})},colorMatrix:function(p,w){p=="matrix"&&(w=d(w)),this.attr({type:p,values:w===void 0?null:w})},convolveMatrix:function(p){p=d(p),this.attr({order:Math.sqrt(p.split(" ").length),kernelMatrix:p})},composite:function(p,w,f){this.attr({in:p,in2:w,operator:f})},flood:function(p,w){this.attr("flood-color",p),w!=null&&this.attr("flood-opacity",w)},offset:function(p,w){this.attr({dx:p,dy:w})},image:function(p){this.attr("href",p,SVG.xlink)},displacementMap:function(p,w,f,b,M){this.attr({in:p,in2:w,scale:f,xChannelSelector:b,yChannelSelector:M})},gaussianBlur:function(p,w){p!=null||w!=null?this.attr("stdDeviation",function(f){if(!Array.isArray(f))return f;for(var b=0,M=f.length,z=[];b1&&(Ie*=M=Math.sqrt(M),Be*=M),z=new SVG.Matrix().rotate(Le).scale(1/Ie,1/Be).rotate(-Le),gn=gn.transform(z),tn=tn.transform(z),y=[tn.x-gn.x,tn.y-gn.y],N=y[0]*y[0]+y[1]*y[1],A=Math.sqrt(N),y[0]/=A,y[1]/=A,L=N<4?Math.sqrt(1-N/4):0,Wn===lr&&(L*=-1),O=new SVG.Point((tn.x+gn.x)/2+L*-y[1],(tn.y+gn.y)/2+L*y[0]),V=new SVG.Point(gn.x-O.x,gn.y-O.y),Z=new SVG.Point(tn.x-O.x,tn.y-O.y),m=Math.acos(V.x/Math.sqrt(V.x*V.x+V.y*V.y)),V.y<0&&(m*=-1),C=Math.acos(Z.x/Math.sqrt(Z.x*Z.x+Z.y*Z.y)),Z.y<0&&(C*=-1),lr&&m>C&&(C+=2*Math.PI),!lr&&mp.maxX-a.width&&(w=(d=p.maxX-a.width)-this.startPoints.box.x),p.minY!=null&&up.maxY-a.height&&(f=(u=p.maxY-a.height)-this.startPoints.box.y),p.snapToGrid!=null&&(d-=d%p.snapToGrid,u-=u%p.snapToGrid,w-=w%p.snapToGrid,f-=f%p.snapToGrid),this.el instanceof SVG.G?this.el.matrix(this.startPoints.transform).transform({x:w,y:f},!0):this.el.move(d,u));return i},T.prototype.end=function(s){var a=this.drag(s);this.el.fire("dragend",{event:s,p:a,m:this.m,handler:this}),SVG.off(window,"mousemove.drag"),SVG.off(window,"touchmove.drag"),SVG.off(window,"mouseup.drag"),SVG.off(window,"touchend.drag")},SVG.extend(SVG.Element,{draggable:function(s,a){typeof s!="function"&&typeof s!="object"||(a=s,s=!0);var i=this.remember("_draggable")||new T(this);return(s=s===void 0||s)?i.init(a||{},s):(this.off("mousedown.drag"),this.off("touchstart.drag")),this}})}).call(void 0),function(){function T(s){this.el=s,s.remember("_selectHandler",this),this.pointSelection={isSelected:!1},this.rectSelection={isSelected:!1},this.pointsList={lt:[0,0],rt:["width",0],rb:["width","height"],lb:[0,"height"],t:["width",0],r:["width","height"],b:["width","height"],l:[0,"height"]},this.pointCoord=function(a,i,d){var u=typeof a!="string"?a:i[a];return d?u/2:u},this.pointCoords=function(a,i){var d=this.pointsList[a];return{x:this.pointCoord(d[0],i,a==="t"||a==="b"),y:this.pointCoord(d[1],i,a==="r"||a==="l")}}}T.prototype.init=function(s,a){var i=this.el.bbox();this.options={};var d=this.el.selectize.defaults.points;for(var u in this.el.selectize.defaults)this.options[u]=this.el.selectize.defaults[u],a[u]!==void 0&&(this.options[u]=a[u]);var p=["points","pointsExclude"];for(var u in p){var w=this.options[p[u]];typeof w=="string"?w=w.length>0?w.split(/\s*,\s*/i):[]:typeof w=="boolean"&&p[u]==="points"&&(w=w?d:[]),this.options[p[u]]=w}this.options.points=[d,this.options.points].reduce(function(f,b){return f.filter(function(M){return b.indexOf(M)>-1})}),this.options.points=[this.options.points,this.options.pointsExclude].reduce(function(f,b){return f.filter(function(M){return b.indexOf(M)<0})}),this.parent=this.el.parent(),this.nested=this.nested||this.parent.group(),this.nested.matrix(new SVG.Matrix(this.el).translate(i.x,i.y)),this.options.deepSelect&&["line","polyline","polygon"].indexOf(this.el.type)!==-1?this.selectPoints(s):this.selectRect(s),this.observe(),this.cleanup()},T.prototype.selectPoints=function(s){return this.pointSelection.isSelected=s,this.pointSelection.set||(this.pointSelection.set=this.parent.set(),this.drawPoints()),this},T.prototype.getPointArray=function(){var s=this.el.bbox();return this.el.array().valueOf().map(function(a){return[a[0]-s.x,a[1]-s.y]})},T.prototype.drawPoints=function(){for(var s=this,a=this.getPointArray(),i=0,d=a.length;i0&&this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-w[0]);w=this.checkAspectRatio(w),this.el.move(this.parameters.box.x+w[0],this.parameters.box.y+w[1]).size(this.parameters.box.width-w[0],this.parameters.box.height-w[1])}};break;case"rt":this.calc=function(u,p){var w=this.snapToGrid(u,p,2);if(this.parameters.box.width+w[0]>0&&this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+w[0]);w=this.checkAspectRatio(w,!0),this.el.move(this.parameters.box.x,this.parameters.box.y+w[1]).size(this.parameters.box.width+w[0],this.parameters.box.height-w[1])}};break;case"rb":this.calc=function(u,p){var w=this.snapToGrid(u,p,0);if(this.parameters.box.width+w[0]>0&&this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x-w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+w[0]);w=this.checkAspectRatio(w),this.el.move(this.parameters.box.x,this.parameters.box.y).size(this.parameters.box.width+w[0],this.parameters.box.height+w[1])}};break;case"lb":this.calc=function(u,p){var w=this.snapToGrid(u,p,1);if(this.parameters.box.width-w[0]>0&&this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return this.el.move(this.parameters.box.x+w[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-w[0]);w=this.checkAspectRatio(w,!0),this.el.move(this.parameters.box.x+w[0],this.parameters.box.y).size(this.parameters.box.width-w[0],this.parameters.box.height+w[1])}};break;case"t":this.calc=function(u,p){var w=this.snapToGrid(u,p,2);if(this.parameters.box.height-w[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y+w[1]).height(this.parameters.box.height-w[1])}};break;case"r":this.calc=function(u,p){var w=this.snapToGrid(u,p,0);if(this.parameters.box.width+w[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).width(this.parameters.box.width+w[0])}};break;case"b":this.calc=function(u,p){var w=this.snapToGrid(u,p,0);if(this.parameters.box.height+w[1]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x,this.parameters.box.y).height(this.parameters.box.height+w[1])}};break;case"l":this.calc=function(u,p){var w=this.snapToGrid(u,p,1);if(this.parameters.box.width-w[0]>0){if(this.parameters.type==="text")return;this.el.move(this.parameters.box.x+w[0],this.parameters.box.y).width(this.parameters.box.width-w[0])}};break;case"rot":this.calc=function(u,p){var w=u+this.parameters.p.x,f=p+this.parameters.p.y,b=Math.atan2(this.parameters.p.y-this.parameters.box.y-this.parameters.box.height/2,this.parameters.p.x-this.parameters.box.x-this.parameters.box.width/2),M=Math.atan2(f-this.parameters.box.y-this.parameters.box.height/2,w-this.parameters.box.x-this.parameters.box.width/2),z=this.parameters.rotation+180*(M-b)/Math.PI+this.options.snapToAngle/2;this.el.center(this.parameters.box.cx,this.parameters.box.cy).rotate(z-z%this.options.snapToAngle,this.parameters.box.cx,this.parameters.box.cy)};break;case"point":this.calc=function(u,p){var w=this.snapToGrid(u,p,this.parameters.pointCoords[0],this.parameters.pointCoords[1]),f=this.el.array().valueOf();f[this.parameters.i][0]=this.parameters.pointCoords[0]+w[0],f[this.parameters.i][1]=this.parameters.pointCoords[1]+w[1],this.el.plot(f)}}this.el.fire("resizestart",{dx:this.parameters.x,dy:this.parameters.y,event:s}),SVG.on(window,"touchmove.resize",function(u){a.update(u||window.event)}),SVG.on(window,"touchend.resize",function(){a.done()}),SVG.on(window,"mousemove.resize",function(u){a.update(u||window.event)}),SVG.on(window,"mouseup.resize",function(){a.done()})},T.prototype.update=function(s){if(s){var a=this._extractPosition(s),i=this.transformPoint(a.x,a.y),d=i.x-this.parameters.p.x,u=i.y-this.parameters.p.y;this.lastUpdateCall=[d,u],this.calc(d,u),this.el.fire("resizing",{dx:d,dy:u,event:s})}else this.lastUpdateCall&&this.calc(this.lastUpdateCall[0],this.lastUpdateCall[1])},T.prototype.done=function(){this.lastUpdateCall=null,SVG.off(window,"mousemove.resize"),SVG.off(window,"mouseup.resize"),SVG.off(window,"touchmove.resize"),SVG.off(window,"touchend.resize"),this.el.fire("resizedone")},T.prototype.snapToGrid=function(s,a,i,d){var u;return d!==void 0?u=[(i+s)%this.options.snapToGrid,(d+a)%this.options.snapToGrid]:(i=i??3,u=[(this.parameters.box.x+s+(1&i?0:this.parameters.box.width))%this.options.snapToGrid,(this.parameters.box.y+a+(2&i?0:this.parameters.box.height))%this.options.snapToGrid]),s<0&&(u[0]-=this.options.snapToGrid),a<0&&(u[1]-=this.options.snapToGrid),s-=Math.abs(u[0])w.maxX&&(s=w.maxX-u),w.minY!==void 0&&p+aw.maxY&&(a=w.maxY-p),[s,a]},T.prototype.checkAspectRatio=function(s,a){if(!this.options.saveAspectRatio)return s;var i=s.slice(),d=this.parameters.box.width/this.parameters.box.height,u=this.parameters.box.width+s[0],p=this.parameters.box.height-s[1],w=u/p;return wd&&(i[0]=this.parameters.box.width-p*d,a&&(i[0]=-i[0])),i},SVG.extend(SVG.Element,{resize:function(s){return(this.remember("_resizeHandler")||new T(this)).init(s||{}),this}}),SVG.Element.prototype.resize.defaults={snapToAngle:.1,snapToGrid:1,constraint:{},saveAspectRatio:!1}}).call(this)}(),window.Apex===void 0&&(window.Apex={});var R2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"initModules",value:function(){this.ctx.publicMethods=["updateOptions","updateSeries","appendData","appendSeries","toggleSeries","showSeries","hideSeries","setLocale","resetSeries","zoomX","toggleDataPointSelection","dataURI","exportToCSV","addXaxisAnnotation","addYaxisAnnotation","addPointAnnotation","clearAnnotations","removeAnnotation","paper","destroy"],this.ctx.eventList=["click","mousedown","mousemove","mouseleave","touchstart","touchmove","touchleave","mouseup","touchend"],this.ctx.animations=new U(this.ctx),this.ctx.axes=new yt(this.ctx),this.ctx.core=new rw(this.ctx.el,this.ctx),this.ctx.config=new It({}),this.ctx.data=new pt(this.ctx),this.ctx.grid=new ft(this.ctx),this.ctx.graphics=new _(this.ctx),this.ctx.coreUtils=new tt(this.ctx),this.ctx.crosshairs=new Ot(this.ctx),this.ctx.events=new ct(this.ctx),this.ctx.exports=new jt(this.ctx),this.ctx.localization=new kt(this.ctx),this.ctx.options=new rt,this.ctx.responsive=new $t(this.ctx),this.ctx.series=new ut(this.ctx),this.ctx.theme=new Rt(this.ctx),this.ctx.formatters=new Ct(this.ctx),this.ctx.titleSubtitle=new Pt(this.ctx),this.ctx.legend=new ge(this.ctx),this.ctx.toolbar=new Ae(this.ctx),this.ctx.tooltip=new yo(this.ctx),this.ctx.dimensions=new ae(this.ctx),this.ctx.updateHelpers=new ow(this.ctx),this.ctx.zoomPanSelection=new xn(this.ctx),this.ctx.w.globals.tooltip=new yo(this.ctx)}}]),T}(),T2=function(){function T(s){g(this,T),this.ctx=s,this.w=s.w}return k(T,[{key:"clear",value:function(s){var a=s.isUpdating;this.ctx.zoomPanSelection&&this.ctx.zoomPanSelection.destroy(),this.ctx.toolbar&&this.ctx.toolbar.destroy(),this.ctx.animations=null,this.ctx.axes=null,this.ctx.annotations=null,this.ctx.core=null,this.ctx.data=null,this.ctx.grid=null,this.ctx.series=null,this.ctx.responsive=null,this.ctx.theme=null,this.ctx.formatters=null,this.ctx.titleSubtitle=null,this.ctx.legend=null,this.ctx.dimensions=null,this.ctx.options=null,this.ctx.crosshairs=null,this.ctx.zoomPanSelection=null,this.ctx.updateHelpers=null,this.ctx.toolbar=null,this.ctx.localization=null,this.ctx.w.globals.tooltip=null,this.clearDomElements({isUpdating:a})}},{key:"killSVG",value:function(s){s.each(function(a,i){this.removeClass("*"),this.off(),this.stop()},!0),s.ungroup(),s.clear()}},{key:"clearDomElements",value:function(s){var a=this,i=s.isUpdating,d=this.w.globals.dom.Paper.node;d.parentNode&&d.parentNode.parentNode&&!i&&(d.parentNode.parentNode.style.minHeight="unset");var u=this.w.globals.dom.baseEl;u&&this.ctx.eventList.forEach(function(w){u.removeEventListener(w,a.ctx.events.documentEvent)});var p=this.w.globals.dom;if(this.ctx.el!==null)for(;this.ctx.el.firstChild;)this.ctx.el.removeChild(this.ctx.el.firstChild);this.killSVG(p.Paper),p.Paper.remove(),p.elWrap=null,p.elGraphical=null,p.elLegendWrap=null,p.elLegendForeign=null,p.baseEl=null,p.elGridRect=null,p.elGridRectMask=null,p.elGridRectMarkerMask=null,p.elForecastMask=null,p.elNonForecastMask=null,p.elDefs=null}}]),T}(),xi=new WeakMap,sw=function(){function T(s,a){g(this,T),this.opts=a,this.ctx=this,this.w=new Tt(a).init(),this.el=s,this.w.globals.cuid=H.randomId(),this.w.globals.chartID=this.w.config.chart.id?H.escapeString(this.w.config.chart.id):this.w.globals.cuid,new R2(this).initModules(),this.create=H.bind(this.create,this),this.windowResizeHandler=this._windowResizeHandler.bind(this),this.parentResizeHandler=this._parentResizeCallback.bind(this)}return k(T,[{key:"render",value:function(){var s=this;return new Promise(function(a,i){if(s.el!==null){Apex._chartInstances===void 0&&(Apex._chartInstances=[]),s.w.config.chart.id&&Apex._chartInstances.push({id:s.w.globals.chartID,group:s.w.config.chart.group,chart:s}),s.setLocale(s.w.config.chart.defaultLocale);var d=s.w.config.chart.events.beforeMount;if(typeof d=="function"&&d(s,s.w),s.events.fireEvent("beforeMount",[s,s.w]),window.addEventListener("resize",s.windowResizeHandler),function(M,z){var y=!1;if(M.nodeType!==Node.DOCUMENT_FRAGMENT_NODE){var A=M.getBoundingClientRect();M.style.display!=="none"&&A.width!==0||(y=!0)}var N=new ResizeObserver(function(L){y&&z.call(M,L),y=!0});M.nodeType===Node.DOCUMENT_FRAGMENT_NODE?Array.from(M.children).forEach(function(L){return N.observe(L)}):N.observe(M),xi.set(z,N)}(s.el.parentNode,s.parentResizeHandler),!s.css){var u=s.el.getRootNode&&s.el.getRootNode(),p=H.is("ShadowRoot",u),w=s.el.ownerDocument,f=w.getElementById("apexcharts-css");!p&&f||(s.css=document.createElement("style"),s.css.id="apexcharts-css",s.css.textContent=`@keyframes opaque { 0% { opacity: 0 } @@ -713,4 +717,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho .apexcharts-rangebar-goals-markers{ pointer-events: none -}`,p?c.prepend(s.css):w.head.appendChild(s.css))}var k=s.create(s.w.config.series,{});if(!k)return a(s);s.mount(k).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(k)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new l2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var c=tt.checkComboSeries(s);d.comboCharts=c.comboCharts,d.comboBarCount=c.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Kt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),k=new Rt(this);return k.bringForward(),i.config.dataLabels.background.enabled&&k.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(c,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,k=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(k&&d.globals.dom.elGraphical.add(k.el),k!=null&&(w=k.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(k.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),c(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=ti.get(s))&&(a.disconnect(),ti.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,c){d.id===H.escapeString(i)&&Apex._chartInstances.splice(c,1)}),new r2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],c=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,k){return a.updateHelpers._extendSeries(f,k)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,c,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),c=0;c0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new Nt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new Nt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?c-2:0),w=2;wRt&&typeof Rt=="object"&&!Array.isArray(Rt)&&Rt!=null,U=(Rt,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Ht){if(Ht==null)throw new TypeError("Cannot convert undefined or null to object");let Nt=Object(Ht);for(let bt=1;bt{H(ut[Ht])?Ht in Rt?pt[Ht]=U(Rt[Ht],ut[Ht]):Object.assign(pt,{[Ht]:ut[Ht]}):Object.assign(pt,{[Ht]:ut[Ht]})}),pt},W=async()=>{if(await Object(v.nextTick)(),O.value)return;const Rt={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};C.forEach(pt=>{let Ht=(...Nt)=>E(pt,...Nt);Rt.chart.events[pt]=Ht});const ut=U(D.options,Rt);return O.value=new z.a(Y.value,ut),O.value.render()},_=()=>(tt(),W()),tt=()=>{O.value.destroy()},nt=(Rt,ut)=>O.value.updateSeries(Rt,ut),q=(Rt,ut,pt,Ht)=>O.value.updateOptions(Rt,ut,pt,Ht),G=Rt=>O.value.toggleSeries(Rt),et=Rt=>{O.value.showSeries(Rt)},st=Rt=>{O.value.hideSeries(Rt)},rt=(Rt,ut)=>O.value.appendSeries(Rt,ut),ht=()=>{O.value.resetSeries()},dt=(Rt,ut)=>{O.value.toggleDataPointSelection(Rt,ut)},Ct=Rt=>O.value.appendData(Rt),xt=(Rt,ut)=>O.value.zoomX(Rt,ut),wt=Rt=>O.value.dataURI(Rt),gt=Rt=>O.value.setLocale(Rt),It=(Rt,ut)=>{O.value.addXaxisAnnotation(Rt,ut)},$t=(Rt,ut)=>{O.value.addYaxisAnnotation(Rt,ut)},Tt=(Rt,ut)=>{O.value.addPointAnnotation(Rt,ut)},Ft=(Rt,ut)=>{O.value.removeAnnotation(Rt,ut)},Kt=()=>{O.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=z.a}),Object(v.onMounted)(()=>{Y.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{O.value&&tt()});const Qt=Object(v.toRefs)(D);return Object(v.watch)(Qt.options,()=>{!O.value&&D.options?W():O.value.updateOptions(D.options)}),Object(v.watch)(Qt.series,()=>{!O.value&&D.series?W():O.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Qt.type,()=>{_()}),Object(v.watch)(Qt.width,()=>{_()}),Object(v.watch)(Qt.height,()=>{_()}),{chart:O,init:W,refresh:_,destroy:tt,updateOptions:q,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:$t,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Kt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component(A.name,A)};A.install=B;var P=A;r.default=P}})})(H4);var fb=H4.exports;const mb=pb(fb);var kb={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},bb={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Mb={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},xb={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},zb={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Ib={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yb={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},Cb={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},Sb={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},$b={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ab={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},Bb={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hb={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},Nb={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},jb={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Pb={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},Lb={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Db={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fb={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},Ob={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},Tb={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},Rb={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},Eb={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vb={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_b={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},Wb={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xb={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qb={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},Yb={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gb={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Ub={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},Zb={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Kb={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Qb={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jb={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tM={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},eM={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},nM={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},lM={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},rM={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oM={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sM={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},aM={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},iM={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hM={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},dM={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},cM={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},uM={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},pM={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},gM={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},wM={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},vM={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fM={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mM={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},kM={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},bM={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MM={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},xM={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},zM={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},IM={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},yM={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CM={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SM={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},$M={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AM={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BM={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},HM={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NM={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},jM={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},PM={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LM={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},DM={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FM={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},OM={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TM={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},RM={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EM={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},VM={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},_M={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WM={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XM={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qM={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},YM={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GM={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},UM={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZM={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},KM={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QM={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},JM={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tx={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},ex={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nx={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},lx={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rx={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},ox={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sx={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},ax={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ix={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},hx={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dx={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},cx={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ux={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},px={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gx={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},wx={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vx={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},fx={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mx={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},kx={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bx={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},Mx={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xx={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},zx={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},Ix={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},yx={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},Cx={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},Sx={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},$x={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},Ax={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},Bx={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hx={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},Nx={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},jx={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Px={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lx={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Dx={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fx={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Ox={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},Tx={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},Rx={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Ex={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Vx={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},_x={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},Wx={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},Xx={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qx={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yx={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},Gx={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ux={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},Zx={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kx={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Qx={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jx={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},tz={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ez={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},nz={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},lz={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rz={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oz={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},sz={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},az={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iz={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},hz={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dz={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},cz={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},pz={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gz={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},wz={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},vz={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},fz={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},mz={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},kz={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},bz={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Mz={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},xz={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},zz={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Iz={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yz={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},Cz={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Sz={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},$z={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Az={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},Bz={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hz={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},Nz={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},jz={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Pz={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Lz={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},Dz={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},Fz={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},Oz={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},Tz={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},Rz={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},Ez={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},Vz={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},_z={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},Wz={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xz={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qz={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Yz={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gz={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},Uz={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},Zz={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kz={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qz={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},Jz={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tI={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},eI={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},nI={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lI={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rI={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},oI={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sI={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},aI={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},iI={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hI={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dI={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},cI={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},pI={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},gI={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},wI={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},vI={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},fI={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},mI={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},kI={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},bI={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},MI={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},xI={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},zI={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},II={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},yI={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},CI={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},SI={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},$I={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},AI={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},BI={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},HI={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},NI={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},jI={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},PI={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},LI={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},DI={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},FI={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},OI={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},TI={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},RI={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},EI={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},VI={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},_I={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},WI={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},XI={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},qI={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},YI={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},GI={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},UI={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},ZI={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KI={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},QI={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},JI={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},ty={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},ey={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},ny={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},ly={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},ry={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},oy={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},sy={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},ay={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},iy={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},hy={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},dy={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},cy={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},uy={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},py={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},gy={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},wy={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},vy={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},fy={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},my={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},ky={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},by={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},My={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},xy={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},zy={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},Iy={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},yy={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},Cy={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},Sy={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},$y={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},Ay={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},By={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},Hy={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},Ny={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},jy={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},Py={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},Ly={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},Dy={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},Fy={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},Oy={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},Ty={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},Ry={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},Ey={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},Vy={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},_y={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},Wy={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},Xy={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},qy={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},Yy={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},Gy={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},Uy={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},Zy={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},Ky={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},Qy={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},Jy={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tC={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},eC={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},nC={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},lC={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},rC={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},oC={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},sC={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},aC={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},iC={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},hC={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},dC={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},cC={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},uC={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},pC={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},gC={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},wC={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},vC={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},fC={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},mC={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},kC={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},bC={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},MC={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},xC={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},zC={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},IC={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},yC={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},CC={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},SC={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},$C={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},AC={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BC={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HC={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},NC={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PC={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},LC={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DC={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FC={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},OC={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TC={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},RC={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},EC={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},VC={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},_C={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WC={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},XC={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qC={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},YC={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GC={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},UC={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},ZC={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KC={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},QC={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JC={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tS={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},eS={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},nS={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},lS={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},rS={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},oS={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},sS={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},aS={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iS={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},hS={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dS={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},cS={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},uS={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},pS={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},gS={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},wS={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},vS={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},fS={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mS={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},kS={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bS={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},MS={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},xS={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},zS={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},IS={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},yS={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},CS={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SS={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$S={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},AS={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},BS={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HS={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},NS={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},jS={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},PS={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},LS={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DS={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},FS={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},OS={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},TS={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RS={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ES={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},VS={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_S={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WS={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},XS={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},qS={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YS={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GS={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},US={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZS={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},KS={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QS={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},JS={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t$={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},e$={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n$={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},l$={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},r$={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},o$={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},s$={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},a$={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h$={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},d$={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},c$={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p$={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},g$={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},v$={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f$={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},m$={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k$={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},b$={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M$={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},x$={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},z$={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},I$={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},y$={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},C$={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S$={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},$$={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},A$={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B$={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},H$={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N$={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j$={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L$={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D$={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},F$={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},O$={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},T$={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},R$={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},E$={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},V$={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_$={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},W$={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},X$={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},q$={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Y$={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G$={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},U$={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z$={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},K$={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Q$={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},J$={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},tA={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},eA={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nA={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},lA={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rA={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},oA={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},sA={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},aA={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},iA={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hA={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},dA={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},uA={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pA={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},gA={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},wA={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},vA={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},fA={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mA={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kA={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bA={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},MA={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},xA={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},zA={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IA={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},yA={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CA={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},SA={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},$A={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},AA={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BA={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},HA={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},NA={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},jA={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},PA={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},LA={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},DA={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FA={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},OA={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},TA={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RA={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},EA={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},VA={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},_A={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WA={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},XA={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qA={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},YA={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},UA={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},ZA={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},KA={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QA={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JA={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},tB={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},eB={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},nB={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lB={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rB={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},oB={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sB={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},aB={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},iB={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hB={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},dB={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},uB={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},pB={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},gB={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},wB={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},vB={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},fB={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},mB={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},kB={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},bB={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},MB={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},xB={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},zB={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},IB={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},yB={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},CB={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},SB={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$B={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},BB={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},HB={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},NB={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},jB={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},PB={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LB={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DB={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},FB={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},TB={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},RB={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},VB={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_B={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},WB={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XB={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},YB={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GB={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},UB={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},ZB={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},KB={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QB={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},JB={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tH={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},eH={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nH={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},lH={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},rH={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},oH={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},sH={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},aH={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},iH={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},hH={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},dH={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},cH={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},uH={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pH={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},gH={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},wH={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},vH={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fH={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},mH={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},kH={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},bH={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},MH={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xH={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},zH={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},IH={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},yH={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},CH={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},SH={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},$H={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},AH={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},BH={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},HH={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},NH={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},jH={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},PH={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},LH={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},DH={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},FH={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},OH={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},TH={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},RH={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},EH={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},VH={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},_H={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},WH={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},XH={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},qH={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},YH={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GH={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},UH={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},ZH={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},KH={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},QH={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},JH={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},tN={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},eN={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},nN={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},lN={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},rN={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},oN={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},sN={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},aN={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},iN={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},hN={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},dN={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},cN={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},uN={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},pN={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},gN={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},wN={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},vN={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},fN={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},mN={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},kN={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},bN={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},MN={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},xN={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},zN={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},IN={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},yN={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},CN={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},SN={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},$N={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},AN={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},BN={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},HN={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},NN={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},jN={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},PN={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},LN={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},DN={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},FN={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},ON={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},TN={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},RN={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},EN={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},VN={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},_N={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},WN={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},XN={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},qN={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},YN={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},GN={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},UN={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},ZN={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},KN={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},QN={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},JN={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tj={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},ej={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},nj={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},lj={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},rj={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},oj={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},sj={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},aj={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},ij={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hj={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},dj={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},cj={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},uj={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},pj={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},gj={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},wj={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},vj={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},fj={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},mj={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},kj={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},Mj={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},xj={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},zj={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},Ij={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},yj={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},Cj={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},Sj={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},$j={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Aj={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Bj={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},Hj={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},Nj={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},jj={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},Pj={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},Lj={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},Dj={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},Fj={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},Oj={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},Tj={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},Rj={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ej={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},Vj={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},_j={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},Wj={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},Xj={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},qj={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},Yj={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},Gj={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},Uj={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},Zj={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},Kj={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},Qj={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},Jj={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},tP={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},eP={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},nP={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},lP={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},rP={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},oP={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},sP={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},aP={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},iP={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hP={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},dP={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},cP={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},uP={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pP={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},gP={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},wP={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},vP={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},fP={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},mP={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},kP={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},bP={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},MP={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},xP={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},zP={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},IP={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},yP={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CP={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},SP={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},$P={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},AP={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},BP={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},HP={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},NP={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},jP={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},PP={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},LP={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},DP={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},FP={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},OP={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},TP={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},RP={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},EP={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},VP={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_P={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},WP={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},XP={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},qP={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},YP={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},GP={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},UP={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},ZP={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},KP={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},QP={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},JP={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},tL={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},eL={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},nL={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},lL={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},rL={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},oL={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},sL={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},aL={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},iL={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},hL={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},dL={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},cL={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},uL={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},pL={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},gL={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},wL={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},vL={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},fL={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mL={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},kL={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},bL={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ML={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},xL={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},zL={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},IL={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yL={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},CL={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},SL={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},$L={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},AL={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},BL={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},HL={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},NL={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},jL={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},PL={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LL={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},DL={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},FL={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},OL={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},TL={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},RL={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},EL={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},VL={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},_L={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},WL={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},XL={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},qL={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},YL={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},GL={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},UL={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ZL={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},KL={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},QL={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},JL={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},tD={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},eD={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},nD={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},lD={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},rD={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},oD={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},sD={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},aD={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},iD={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},hD={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},dD={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},cD={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},uD={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},pD={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},gD={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},wD={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},vD={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},fD={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},mD={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},kD={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},bD={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},MD={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},xD={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},zD={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},ID={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},yD={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},CD={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},SD={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},$D={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},AD={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},BD={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},HD={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},ND={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},jD={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},PD={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},LD={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},DD={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},FD={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},OD={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},TD={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},RD={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},ED={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},VD={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},_D={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},WD={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},XD={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},qD={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YD={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},GD={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},UD={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},ZD={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},KD={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},QD={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},JD={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},tF={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},eF={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},nF={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},lF={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},rF={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},oF={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},sF={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},aF={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},iF={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},hF={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},dF={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},cF={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},uF={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},pF={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},gF={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},wF={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},vF={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},fF={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},mF={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},kF={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},bF={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},MF={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},xF={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},zF={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},IF={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},yF={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},CF={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},SF={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},$F={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},AF={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},BF={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},HF={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},NF={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},jF={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},PF={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},LF={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},DF={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},FF={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},OF={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},TF={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},RF={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},EF={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VF={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},_F={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WF={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},XF={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},qF={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},YF={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},GF={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UF={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},ZF={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},KF={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QF={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},JF={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},tO={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eO={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},nO={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},lO={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},rO={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oO={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},sO={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},aO={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iO={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},hO={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dO={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},cO={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},uO={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},pO={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},gO={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},wO={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},vO={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},fO={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},mO={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},kO={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},bO={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},MO={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},xO={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},zO={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},IO={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},yO={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},CO={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},SO={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},$O={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},AO={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},BO={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},HO={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},NO={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},jO={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},PO={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},LO={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},DO={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},FO={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},OO={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TO={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RO={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},EO={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},VO={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_O={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},WO={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},XO={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},qO={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},YO={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GO={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},UO={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZO={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KO={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QO={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},JO={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tT={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eT={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nT={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lT={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rT={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oT={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},sT={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aT={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},iT={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},hT={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},dT={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},cT={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uT={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},pT={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},gT={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},wT={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},vT={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fT={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},mT={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},kT={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},bT={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},MT={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},xT={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},zT={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},IT={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yT={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CT={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},ST={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$T={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AT={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BT={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HT={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NT={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jT={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},PT={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},LT={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DT={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},FT={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},OT={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},TT={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},RT={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},ET={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},VT={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},_T={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},WT={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},XT={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qT={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},YT={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},GT={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},UT={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},ZT={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},KT={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QT={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},JT={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},tR={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},eR={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nR={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},lR={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},rR={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},oR={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sR={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},aR={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},iR={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},hR={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dR={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cR={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},uR={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},pR={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},gR={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},wR={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},vR={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fR={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},mR={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kR={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},bR={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MR={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},xR={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zR={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},IR={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yR={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},CR={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SR={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},$R={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},AR={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},BR={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},HR={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NR={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},jR={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},PR={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},LR={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},DR={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},FR={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},OR={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TR={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},RR={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ER={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},VR={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_R={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},WR={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},XR={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qR={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},YR={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},GR={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},UR={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},ZR={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KR={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QR={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},JR={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},tE={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},eE={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},nE={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lE={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},rE={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oE={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},sE={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aE={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},iE={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},hE={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},dE={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cE={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},uE={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pE={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},gE={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},wE={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},vE={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},fE={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},mE={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},kE={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},bE={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},ME={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xE={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zE={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},IE={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yE={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CE={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},SE={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},$E={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},AE={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},BE={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},HE={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},NE={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},jE={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},PE={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},LE={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},DE={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},FE={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OE={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},TE={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RE={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},EE={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VE={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},_E={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WE={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XE={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},qE={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YE={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},GE={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UE={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},ZE={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KE={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},QE={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},JE={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},tV={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},eV={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},nV={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},lV={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},rV={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},oV={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},sV={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},aV={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},iV={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},hV={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},dV={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},cV={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},uV={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},pV={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},gV={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},wV={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},vV={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fV={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},mV={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kV={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bV={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MV={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xV={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zV={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IV={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yV={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CV={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SV={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$V={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AV={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},BV={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},HV={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NV={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},jV={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},PV={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LV={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},DV={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FV={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},OV={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TV={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RV={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},EV={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VV={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},_V={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},WV={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},XV={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},qV={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},YV={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},GV={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},ZV={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},KV={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},QV={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},JV={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},t_={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},e_={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},n_={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},l_={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},r_={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},o_={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s_={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},a_={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},i_={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h_={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},d_={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},c_={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},u_={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p_={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},g_={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},w_={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},v_={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},f_={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m_={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},k_={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},b_={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},M_={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},x_={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},z_={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},I_={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},y_={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},C_={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},S_={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},$_={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},A_={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},B_={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},H_={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},N_={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},j_={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},P_={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},L_={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},D_={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},F_={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},O_={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},T_={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},R_={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},E_={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},V_={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},__={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},W_={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},X_={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},q_={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Y_={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},G_={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},U_={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},Z_={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},K_={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q_={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},J_={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tW={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},eW={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nW={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},lW={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rW={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},oW={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sW={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aW={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},iW={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},hW={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},dW={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},cW={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},uW={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},pW={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},gW={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},wW={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},vW={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},fW={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},mW={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},kW={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},bW={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},MW={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},xW={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},zW={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},IW={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},yW={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},CW={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},SW={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},$W={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},AW={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},BW={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},HW={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},NW={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jW={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},PW={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},LW={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},DW={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FW={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},OW={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},TW={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},RW={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},EW={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},VW={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},_W={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},WW={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},XW={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qW={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},YW={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},GW={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},UW={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ZW={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},KW={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QW={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},tX={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},eX={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},nX={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},lX={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},rX={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},oX={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},sX={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},aX={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},iX={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},hX={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},dX={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},cX={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},uX={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pX={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gX={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wX={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vX={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},fX={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},mX={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kX={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},bX={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},MX={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xX={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},zX={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},IX={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},yX={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},CX={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},SX={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},$X={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AX={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},BX={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HX={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NX={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jX={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PX={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LX={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},DX={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},FX={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},OX={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},TX={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},RX={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},EX={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},_X={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},WX={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},XX={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},qX={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},YX={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GX={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},UX={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ZX={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},KX={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},QX={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},JX={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},tq={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},eq={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},nq={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},lq={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},rq={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},oq={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},sq={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},aq={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},iq={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},hq={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},dq={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cq={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},uq={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},pq={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},gq={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},wq={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},vq={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},fq={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mq={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},kq={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},bq={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mq={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},xq={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},zq={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},Iq={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},yq={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},Cq={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},$q={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},Aq={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Bq={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},Hq={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},Nq={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},jq={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},Pq={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lq={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},Dq={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fq={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},Oq={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},Tq={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},Rq={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Eq={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},Vq={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},_q={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wq={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},Xq={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},qq={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yq={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},Gq={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uq={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zq={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kq={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},Qq={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},Jq={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tY={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},eY={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},nY={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lY={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},rY={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},oY={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sY={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},aY={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iY={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},hY={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dY={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},cY={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},uY={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},pY={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gY={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},wY={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vY={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},fY={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mY={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kY={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},bY={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MY={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xY={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},zY={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},IY={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},yY={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},CY={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},SY={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},$Y={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},AY={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},BY={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},HY={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},NY={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},jY={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},PY={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},LY={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},DY={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},FY={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},OY={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},TY={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},RY={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EY={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},VY={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},WY={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},XY={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},qY={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},YY={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GY={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},UY={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},ZY={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},KY={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},QY={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},JY={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},tG={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},eG={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nG={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lG={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},rG={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},oG={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sG={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},aG={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iG={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},hG={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},dG={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},cG={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pG={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},gG={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},wG={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},vG={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fG={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},mG={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},kG={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},bG={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},MG={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},xG={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},zG={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},IG={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},yG={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},CG={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},SG={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},$G={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},AG={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},BG={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},HG={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},NG={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jG={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},PG={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},LG={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},DG={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},FG={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},OG={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},TG={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},EG={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},VG={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},_G={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},WG={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},XG={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},qG={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},YG={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},GG={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},UG={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},ZG={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},KG={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},QG={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},JG={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},tU={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},eU={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},nU={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},lU={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},rU={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},oU={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sU={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},aU={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},iU={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hU={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},dU={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},cU={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},uU={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},pU={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},gU={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},wU={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},vU={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},fU={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},mU={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},kU={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},bU={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},MU={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},xU={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},zU={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},IU={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},yU={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},CU={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SU={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},$U={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},AU={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},BU={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},HU={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NU={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},jU={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PU={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},LU={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},DU={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FU={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OU={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},TU={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RU={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},EU={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VU={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_U={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},WU={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XU={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},qU={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},YU={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},GU={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},UU={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ZU={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KU={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},QU={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},JU={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},tZ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},eZ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nZ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},lZ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},rZ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},oZ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},sZ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},aZ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iZ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},hZ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dZ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cZ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},uZ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},pZ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},gZ={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},wZ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},vZ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},fZ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},kZ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bZ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},MZ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},xZ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},zZ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},IZ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},yZ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},CZ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},SZ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$Z={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},AZ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BZ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HZ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NZ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jZ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},PZ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},LZ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},DZ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FZ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OZ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TZ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},RZ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},EZ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},VZ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},_Z={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},WZ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},XZ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},qZ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YZ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},GZ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},UZ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ZZ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},KZ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},QZ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},JZ={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},tK={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},eK={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},nK={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},lK={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},rK={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oK={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},sK={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},aK={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iK={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},hK={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},dK={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},cK={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},uK={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},pK={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},gK={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},wK={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},vK={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},fK={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},mK={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},kK={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},bK={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},MK={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},xK={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},zK={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},IK={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},yK={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},CK={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},SK={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$K={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},AK={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},BK={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},HK={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},NK={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},jK={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},PK={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},DK={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},FK={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OK={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},TK={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RK={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},EK={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},VK={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},_K={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},WK={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},XK={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qK={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YK={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},GK={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},UK={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ZK={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},KK={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},QK={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},JK={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},tQ={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},eQ={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},nQ={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},lQ={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},rQ={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oQ={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},sQ={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aQ={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iQ={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},hQ={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},dQ={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},cQ={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},uQ={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pQ={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gQ={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},wQ={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vQ={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},fQ={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},mQ={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},kQ={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},bQ={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},MQ={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},xQ={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},zQ={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},IQ={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},yQ={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},CQ={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},SQ={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},$Q={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},AQ={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},BQ={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},HQ={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},NQ={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jQ={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},PQ={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},LQ={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},DQ={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},FQ={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OQ={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},TQ={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},RQ={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EQ={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},VQ={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},_Q={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},WQ={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},XQ={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},qQ={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},YQ={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},GQ={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},UQ={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ZQ={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KQ={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},QQ={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},JQ={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tJ={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},eJ={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nJ={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},lJ={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},rJ={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},oJ={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sJ={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},aJ={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},iJ={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},hJ={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},dJ={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cJ={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},uJ={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},pJ={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},gJ={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wJ={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},vJ={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},fJ={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},mJ={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},kJ={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},bJ={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},MJ={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xJ={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},zJ={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IJ={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},yJ={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},CJ={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},SJ={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},$J={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},AJ={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BJ={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},HJ={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},NJ={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},jJ={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PJ={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},LJ={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},DJ={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},FJ={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},OJ={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},TJ={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},RJ={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},EJ={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},VJ={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_J={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},WJ={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},XJ={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},qJ={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},YJ={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GJ={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},UJ={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZJ={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},KJ={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},QJ={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},JJ={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ttt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ett={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ntt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},ltt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},rtt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ott={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},stt={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},att={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},itt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},htt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dtt={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ctt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},utt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ptt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gtt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},wtt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vtt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},ftt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mtt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ktt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},btt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Mtt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xtt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},ztt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Itt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ytt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ctt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Stt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$tt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Att={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Btt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},Htt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ntt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},jtt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ptt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ltt={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},Dtt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},Ftt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ott={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},Ttt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},Rtt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ett={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},Vtt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},_tt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wtt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},Xtt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qtt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ytt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gtt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Utt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ztt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Ktt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qtt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jtt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},tet={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eet={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},net={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},ret={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},oet={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},set={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},aet={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iet={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},het={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},det={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cet={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},uet={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},pet={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},get={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wet={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},vet={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},fet={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},met={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ket={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},bet={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Met={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xet={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zet={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Iet={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yet={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cet={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},$et={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Aet={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Bet={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},Het={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Net={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},jet={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},Pet={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},Let={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Det={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Fet={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oet={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Tet={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ret={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Eet={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vet={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_et={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Wet={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Xet={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qet={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yet={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},Get={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Uet={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},Zet={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ket={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Qet={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},Jet={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},tnt={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},ent={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},nnt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},lnt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},rnt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ont={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},snt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ant={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},int={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},hnt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dnt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},cnt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},unt={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},pnt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},gnt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wnt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},vnt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},fnt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mnt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},knt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},bnt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mnt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},xnt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},znt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Int={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},ynt={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Cnt={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},Snt={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$nt={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},Ant={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bnt={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},Hnt={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Nnt={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jnt={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},Pnt={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lnt={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Dnt={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},Fnt={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ont={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},Tnt={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rnt={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},Ent={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Vnt={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},_nt={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wnt={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},Xnt={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qnt={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},Ynt={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Gnt={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Unt={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Znt={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Qnt={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jnt={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},tlt={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},elt={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},nlt={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},llt={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rlt={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},olt={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},slt={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},alt={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ilt={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},hlt={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},dlt={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},clt={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},ult={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},plt={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},glt={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},wlt={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},vlt={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},flt={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},mlt={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},klt={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},blt={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Mlt={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},xlt={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},zlt={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Ilt={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},ylt={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Clt={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},Slt={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},$lt={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Alt={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},Blt={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},Hlt={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},Nlt={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},jlt={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},Plt={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},Llt={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},Dlt={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},Flt={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},Olt={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Tlt={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rlt={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},Elt={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},Vlt={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},_lt={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},Wlt={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},Xlt={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},qlt={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},Ylt={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},Glt={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ult={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},Zlt={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Klt={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Qlt={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},Jlt={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},trt={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},ert={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},nrt={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},lrt={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},rrt={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},ort={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},srt={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},art={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},irt={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},hrt={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},drt={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},crt={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},urt={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},prt={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},grt={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},wrt={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},vrt={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},frt={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},mrt={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},krt={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},brt={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Mrt={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xrt={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},zrt={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Irt={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},yrt={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Srt={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$rt={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Art={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Brt={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hrt={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nrt={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jrt={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Prt={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Lrt={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},Drt={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},Frt={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ort={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},Trt={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rrt={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},Ert={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},Vrt={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_rt={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},Wrt={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},Xrt={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},qrt={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},Grt={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Urt={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},Zrt={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Krt={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qrt={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},Jrt={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tot={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},eot={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},not={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},rot={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},sot={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},aot={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},hot={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},cot={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},uot={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},pot={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},got={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},wot={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},vot={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},fot={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},mot={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},bot={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Mot={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},xot={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},zot={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Iot={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},yot={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},Cot={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},Sot={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},$ot={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Aot={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Bot={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Hot={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Not={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},jot={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Pot={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Lot={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dot={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Fot={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oot={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Rot={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Eot={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Vot={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},_ot={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Wot={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Xot={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},qot={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},Yot={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Got={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Uot={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},Zot={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kot={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Qot={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Jot={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},tst={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},est={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},nst={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lst={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},rst={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ost={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},sst={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},ast={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},ist={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},hst={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},dst={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cst={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},ust={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pst={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},gst={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wst={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vst={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},fst={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mst={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},kst={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bst={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Mst={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xst={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},zst={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ist={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},yst={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},Cst={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},Sst={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},$st={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},Ast={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},Bst={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},Hst={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},Nst={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},jst={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},Pst={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},Lst={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},Dst={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},Fst={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},Ost={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},Tst={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},Rst={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},Est={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},Vst={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},_st={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},Wst={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Xst={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qst={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},Yst={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gst={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ust={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},Zst={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},Kst={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},Qst={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jst={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},tat={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},eat={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},nat={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},lat={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},rat={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},oat={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},sat={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},aat={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},iat={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},hat={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},dat={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},cat={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},uat={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},gat={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},vat={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},fat={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},kat={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},bat={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mat={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xat={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zat={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},Iat={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},yat={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},Cat={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Sat={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},$at={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},Aat={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bat={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},Hat={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},Nat={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},jat={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Pat={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},Lat={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dat={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},Fat={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Oat={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Tat={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Rat={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Eat={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},Vat={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},_at={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wat={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},Xat={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},qat={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yat={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Gat={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Uat={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},Zat={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Kat={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Qat={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},Jat={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},tit={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},eit={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},nit={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},lit={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},rit={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},oit={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sit={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ait={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},iit={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},hit={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},dit={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},cit={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uit={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},pit={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},git={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},wit={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},vit={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fit={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},mit={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},kit={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},bit={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mit={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},xit={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},zit={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Iit={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},yit={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},Cit={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Sit={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},$it={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ait={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},Bit={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},Hit={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},Nit={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jit={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},Pit={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lit={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dit={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fit={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Oit={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tit={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Rit={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eit={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Vit={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_it={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wit={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Xit={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},qit={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yit={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Git={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},Uit={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zit={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Kit={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},Qit={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jit={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t0t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e0t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n0t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},l0t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r0t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},o0t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s0t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},a0t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i0t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},h0t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d0t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},c0t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},u0t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},p0t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},g0t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},w0t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},v0t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},f0t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},m0t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},k0t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},b0t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},M0t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},x0t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},z0t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},I0t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},y0t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},C0t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},S0t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},$0t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},A0t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},B0t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},H0t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},N0t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},j0t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},P0t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},L0t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},D0t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},F0t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},O0t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},T0t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},R0t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},E0t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},V0t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},_0t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},W0t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},X0t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},q0t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},G0t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U0t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Z0t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},K0t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},J0t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},tht={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eht={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},nht={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},lht={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},rht={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},sht={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aht={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},iht={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hht={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},dht={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},cht={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},uht={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},pht={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},ght={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wht={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},vht={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},fht={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},mht={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kht={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},bht={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Mht={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xht={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},zht={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},Iht={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},yht={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},Cht={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},Sht={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},$ht={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aht={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bht={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Hht={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},Nht={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jht={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pht={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},Lht={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},Dht={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fht={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},Oht={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tht={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rht={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},Eht={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},Vht={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},_ht={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Wht={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xht={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},qht={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Yht={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ght={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Uht={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},Zht={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Kht={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Qht={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Jht={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},t2t={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},e2t={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},n2t={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},l2t={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},r2t={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},o2t={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},s2t={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},a2t={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},h2t={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},d2t={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},c2t={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},u2t={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},p2t={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g2t={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},w2t={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},f2t={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m2t={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},k2t={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},b2t={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},M2t={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x2t={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},z2t={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},I2t={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},y2t={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C2t={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},S2t={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},A2t={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},B2t={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N2t={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},j2t={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},P2t={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},D2t={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},T2t={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},E2t={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},V2t={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_2t={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},W2t={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X2t={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},q2t={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Y2t={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},G2t={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},U2t={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z2t={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},K2t={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Q2t={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},J2t={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},t1t={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},e1t={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},n1t={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l1t={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r1t={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},o1t={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},s1t={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a1t={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i1t={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},h1t={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},d1t={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},c1t={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},u1t={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},p1t={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},g1t={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},w1t={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},v1t={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f1t={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},m1t={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},k1t={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},b1t={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M1t={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},x1t={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},z1t={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},y1t={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},C1t={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},S1t={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},$1t={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},A1t={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},B1t={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},H1t={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N1t={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},j1t={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},P1t={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},L1t={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},F1t={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},O1t={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},T1t={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R1t={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},E1t={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V1t={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},_1t={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},W1t={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},X1t={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},q1t={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Y1t={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},G1t={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U1t={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Z1t={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},K1t={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Q1t={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},J1t={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tdt={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},edt={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ndt={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ldt={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rdt={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},odt={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},sdt={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},adt={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},idt={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},hdt={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ddt={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},cdt={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},udt={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},pdt={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},gdt={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},wdt={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},vdt={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},fdt={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mdt={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},kdt={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},bdt={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Mdt={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},xdt={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},zdt={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Idt={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},ydt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},Cdt={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},Sdt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},$dt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},Adt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},Bdt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},Hdt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ndt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jdt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},Pdt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ldt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},Ddt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},Fdt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},Odt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},Tdt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},Rdt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},Edt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Vdt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},_dt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},Wdt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},Xdt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},qdt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Ydt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},Gdt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Udt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},Zdt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Kdt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Qdt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},Jdt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},tct={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},ect={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},nct={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},lct={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},rct={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},oct={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},sct={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},act={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},ict={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},hct={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},dct={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},cct={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},uct={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},pct={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},gct={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},wct={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vct={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},fct={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mct={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},kct={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},bct={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Mct={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},xct={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},zct={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Ict={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},yct={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},Cct={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},Sct={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},$ct={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},Act={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},Bct={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},Hct={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},jct={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},Pct={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},Lct={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},Dct={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},Fct={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Oct={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},Tct={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Rct={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ect={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vct={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},_ct={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wct={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},Xct={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qct={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Yct={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Gct={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Uct={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zct={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kct={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qct={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Jct={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},tut={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},eut={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nut={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lut={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},rut={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},out={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},sut={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},aut={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iut={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hut={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dut={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},cut={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},uut={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},put={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},gut={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},wut={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},vut={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},fut={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},mut={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},kut={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},but={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Mut={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},xut={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},zut={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Iut={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},yut={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},Cut={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},Sut={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},$ut={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aut={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},But={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hut={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},Nut={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jut={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},Put={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lut={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},Dut={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fut={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},Out={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Tut={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Rut={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Eut={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Vut={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},_ut={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Wut={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Xut={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},qut={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Yut={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},Gut={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uut={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zut={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Kut={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Qut={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tpt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},ept={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},npt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},lpt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},rpt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},opt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},spt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},apt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ipt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},hpt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dpt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},cpt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},upt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},ppt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},gpt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},wpt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vpt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fpt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},mpt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},kpt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},bpt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Mpt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},xpt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},zpt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ipt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ypt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cpt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Spt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$pt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Apt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Bpt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Hpt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Npt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},jpt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ppt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Lpt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Dpt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Fpt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Opt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},Tpt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},Rpt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ept={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},Vpt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_pt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},Wpt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},Xpt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qpt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},Ypt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},Gpt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Upt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zpt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kpt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Qpt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},Jpt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},t4t={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},e4t={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},n4t={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},l4t={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},r4t={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},o4t={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s4t={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},a4t={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},i4t={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},h4t={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},d4t={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},c4t={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},u4t={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},p4t={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},g4t={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},w4t={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},v4t={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},f4t={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},m4t={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},k4t={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},b4t={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},M4t={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},x4t={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},z4t={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},I4t={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},y4t={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},C4t={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},S4t={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},$4t={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},A4t={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},B4t={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},H4t={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},j4t={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P4t={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},L4t={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},D4t={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},F4t={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O4t={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T4t={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},R4t={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},E4t={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},V4t={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},_4t={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},W4t={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},X4t={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},q4t={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Y4t={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},G4t={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},U4t={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Z4t={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},K4t={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Q4t={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},J4t={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},tgt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},egt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ngt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lgt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},rgt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ogt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},sgt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},agt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},igt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hgt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},dgt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cgt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ugt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},pgt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ggt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},wgt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},vgt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mgt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},kgt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},bgt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Mgt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},xgt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},zgt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Igt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ygt={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Cgt={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Sgt={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},$gt={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Agt={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bgt={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Ngt={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jgt={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Pgt={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Lgt={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fgt={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ogt={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Tgt={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},Rgt={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Egt={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Vgt={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},_gt={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},Wgt={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Xgt={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},qgt={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},Ygt={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Ggt={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Ugt={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Zgt={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kgt={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Qgt={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Jgt={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},twt={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ewt={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},nwt={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},lwt={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},rwt={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},owt={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},swt={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},awt={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},iwt={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},hwt={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},dwt={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cwt={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},uwt={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pwt={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},gwt={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wwt={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},vwt={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},fwt={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},mwt={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kwt={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},bwt={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},xwt={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},zwt={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},Iwt={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ywt={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},Cwt={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},Swt={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},$wt={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},Awt={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Bwt={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Hwt={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},Nwt={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jwt={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},Pwt={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},Lwt={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},Dwt={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Fwt={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},Owt={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},Twt={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rwt={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},Ewt={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vwt={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},_wt={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Wwt={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},Xwt={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},qwt={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Ywt={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gwt={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Uwt={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zwt={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Kwt={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Qwt={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jwt={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},tvt={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},evt={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},nvt={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},lvt={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},rvt={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},ovt={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},svt={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},avt={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ivt={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},hvt={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},dvt={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},cvt={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},uvt={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},gvt={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},wvt={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vvt={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fvt={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},mvt={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},kvt={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bvt={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Mvt={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},xvt={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zvt={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Ivt={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},yvt={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},Cvt={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Svt={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},$vt={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},Avt={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Bvt={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},Hvt={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},Nvt={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},jvt={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},Pvt={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},Lvt={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Dvt={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fvt={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ovt={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},Tvt={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},Rvt={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},Evt={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},Vvt={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_vt={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},Wvt={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},Xvt={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qvt={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},Yvt={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},Gvt={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uvt={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},Zvt={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kvt={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},Qvt={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},Jvt={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},t3t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},e3t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},n3t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l3t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r3t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},o3t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s3t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},a3t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i3t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h3t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},d3t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},c3t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},u3t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p3t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},g3t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},w3t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v3t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},f3t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m3t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},k3t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},b3t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},M3t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},x3t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},z3t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I3t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},y3t={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},S3t={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$3t={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},A3t={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B3t={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},H3t={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},N3t={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},j3t={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},P3t={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},L3t={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},D3t={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},F3t={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},O3t={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},T3t={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},R3t={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},E3t={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},V3t={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},_3t={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},W3t={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},X3t={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q3t={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},Y3t={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G3t={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},U3t={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},Z3t={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},K3t={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q3t={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},J3t={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},tft={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},eft={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},nft={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},lft={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rft={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oft={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},sft={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},aft={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},ift={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},hft={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},dft={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cft={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},uft={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},pft={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},gft={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},wft={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vft={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fft={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},mft={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kft={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bft={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mft={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},xft={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zft={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Ift={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yft={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},Cft={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},Sft={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ft={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},Aft={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bft={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},Hft={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nft={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},jft={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},Pft={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dft={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},Fft={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},Oft={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},Tft={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},Rft={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eft={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},Vft={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},_ft={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wft={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},Xft={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qft={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yft={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},Gft={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uft={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zft={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Kft={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Qft={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jft={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},t5t={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},e5t={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},n5t={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},l5t={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},r5t={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},o5t={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},s5t={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},a5t={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i5t={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},h5t={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},d5t={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},c5t={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},u5t={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},p5t={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},g5t={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},w5t={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},v5t={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},f5t={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},m5t={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},k5t={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},b5t={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},M5t={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},x5t={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},z5t={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},I5t={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},y5t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C5t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},S5t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},$5t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A5t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},B5t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},H5t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},N5t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},j5t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},P5t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},L5t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},D5t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},F5t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},O5t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},T5t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},R5t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},E5t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},V5t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},_5t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},W5t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},X5t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},q5t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},Y5t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},G5t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},U5t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z5t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},K5t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},Q5t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},tmt={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},emt={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nmt={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},lmt={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},rmt={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},omt={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},smt={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},amt={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},imt={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},hmt={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},dmt={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},cmt={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},umt={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},pmt={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gmt={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},wmt={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},vmt={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fmt={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},mmt={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kmt={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},bmt={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},xmt={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},zmt={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Imt={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},ymt={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Cmt={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Smt={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},$mt={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Amt={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Bmt={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hmt={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Nmt={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},Pmt={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lmt={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Dmt={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fmt={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},Omt={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tmt={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},Rmt={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Emt={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Vmt={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_mt={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},Wmt={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},qmt={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},Ymt={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gmt={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},Umt={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},Zmt={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kmt={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Qmt={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},Jmt={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},tkt={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},ekt={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},nkt={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},rkt={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},okt={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},skt={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},akt={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},ikt={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},hkt={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dkt={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},ckt={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ukt={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pkt={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},gkt={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wkt={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},vkt={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fkt={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mkt={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kkt={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bkt={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Mkt={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xkt={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},zkt={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Ikt={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ckt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Skt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$kt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Akt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Bkt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Hkt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Nkt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},jkt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Pkt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},Lkt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dkt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},Fkt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},Okt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tkt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},Rkt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ekt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},Vkt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},_kt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wkt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},Xkt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},qkt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},Ykt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},Gkt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ukt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},Zkt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kkt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Qkt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jkt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},t6t={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e6t={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},n6t={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},l6t={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},r6t={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},o6t={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},s6t={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},a6t={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},i6t={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},h6t={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},d6t={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},c6t={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},u6t={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p6t={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},g6t={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},w6t={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},v6t={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},f6t={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m6t={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},k6t={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},b6t={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},M6t={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},x6t={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z6t={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},I6t={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},y6t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C6t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},S6t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},$6t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},A6t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},B6t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H6t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},N6t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j6t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P6t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},L6t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},D6t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},F6t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},O6t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},T6t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R6t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},E6t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},V6t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},_6t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},W6t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},X6t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},q6t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},Y6t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},G6t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},U6t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},K6t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},Q6t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},J6t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},t7t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e7t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},n7t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},l7t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},o7t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},s7t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a7t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i7t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},h7t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d7t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},c7t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},u7t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p7t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g7t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},w7t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v7t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},f7t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},m7t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},k7t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},b7t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},M7t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},x7t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},I7t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},y7t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C7t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S7t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},$7t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},A7t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},B7t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},H7t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},j7t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},P7t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},L7t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},D7t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},F7t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},O7t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T7t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},R7t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},E7t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},V7t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},_7t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W7t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},X7t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q7t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Y7t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G7t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U7t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},Z7t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},K7t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Q7t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},J7t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},t8t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},e8t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},n8t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},l8t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},r8t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},o8t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},s8t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},a8t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},i8t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},h8t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},d8t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},c8t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},u8t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},p8t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},g8t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},w8t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},v8t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f8t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},m8t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k8t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},b8t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},M8t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},x8t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},z8t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},I8t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},y8t={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C8t={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},S8t={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},$8t={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},A8t={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},H8t={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},N8t={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},j8t={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},P8t={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},L8t={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},D8t={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},F8t={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O8t={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},T8t={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},R8t={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},E8t={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V8t={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},_8t={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},W8t={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q8t={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},Y8t={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},G8t={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},U8t={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Z8t={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},K8t={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},Q8t={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},J8t={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t9t={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},e9t={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},l9t={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},r9t={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},o9t={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},s9t={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},a9t={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},i9t={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},h9t={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},d9t={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},c9t={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},u9t={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},p9t={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},g9t={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},w9t={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},f9t={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},m9t={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},b9t={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},M9t={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x9t={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z9t={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},I9t={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},y9t={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},C9t={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},S9t={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$9t={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},A9t={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},B9t={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},H9t={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},N9t={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},j9t={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},P9t={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},L9t={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},D9t={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F9t={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},O9t={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},T9t={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},R9t={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},E9t={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},V9t={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},_9t={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},W9t={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},X9t={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},q9t={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Y9t={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},G9t={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},U9t={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Z9t={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},K9t={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Q9t={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J9t={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},tbt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},ebt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},nbt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},lbt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},rbt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},obt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},sbt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},abt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},ibt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},hbt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dbt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},cbt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},ubt={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},pbt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gbt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},wbt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},vbt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},fbt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mbt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},kbt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},bbt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Mbt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xbt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zbt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ibt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ybt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},Cbt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},Sbt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},$bt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Abt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Bbt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Hbt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Nbt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jbt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},Pbt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},Lbt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Dbt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fbt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},Obt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Tbt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rbt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Ebt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Vbt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},_bt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Wbt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xbt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qbt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ybt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Gbt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Ubt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},Zbt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kbt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Qbt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jbt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tMt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},eMt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},nMt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lMt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},rMt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},oMt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},sMt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aMt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},iMt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},hMt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},dMt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},cMt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},uMt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pMt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},gMt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wMt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},vMt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},fMt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},mMt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},kMt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},bMt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},MMt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},xMt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},zMt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},IMt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},yMt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},CMt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SMt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Mt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},AMt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BMt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},HMt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NMt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},jMt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},PMt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},LMt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},DMt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},FMt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},OMt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},TMt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},EMt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},VMt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},_Mt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WMt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},XMt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},qMt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},YMt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GMt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},UMt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},ZMt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KMt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},QMt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},JMt={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},txt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},ext={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},nxt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},lxt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},rxt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},oxt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},sxt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},axt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},ixt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},hxt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},dxt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},cxt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},uxt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},pxt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gxt={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},wxt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},vxt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fxt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},mxt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},kxt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},bxt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mxt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},xxt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},zxt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},Ixt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},yxt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cxt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Sxt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$xt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Axt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bxt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},Hxt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nxt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},jxt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pxt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},Lxt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Dxt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fxt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Oxt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Txt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rxt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ext={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vxt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_xt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wxt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xxt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qxt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Yxt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gxt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uxt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Zxt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Kxt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Jxt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},tzt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ezt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},nzt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},lzt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},rzt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ozt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},szt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},azt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},izt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hzt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},dzt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},czt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},uzt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pzt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},gzt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wzt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},vzt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fzt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},mzt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kzt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},bzt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mzt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},xzt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zzt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Izt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yzt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Czt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Szt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},$zt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Azt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Bzt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},Hzt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nzt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},jzt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},Pzt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},Lzt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Dzt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Fzt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},Ozt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Tzt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Rzt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Ezt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},Vzt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},_zt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},Wzt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Xzt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},qzt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Yzt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},Gzt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},Uzt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Zzt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Kzt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},Qzt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Jzt={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},tIt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},eIt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},nIt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},lIt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},rIt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},oIt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},sIt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},aIt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},iIt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},hIt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},dIt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},cIt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},uIt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},pIt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},gIt={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},wIt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vIt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},fIt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},mIt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},kIt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bIt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},MIt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},xIt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},IIt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},yIt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},CIt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},SIt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$It={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},AIt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BIt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},HIt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NIt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},jIt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PIt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},LIt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DIt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},FIt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OIt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},TIt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RIt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},EIt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VIt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},_It={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WIt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},XIt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qIt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},YIt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GIt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},UIt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZIt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KIt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QIt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JIt={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},tyt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eyt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},nyt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lyt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ryt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oyt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},syt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ayt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},iyt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hyt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},dyt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cyt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},uyt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pyt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},gyt={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wyt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},vyt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fyt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},myt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kyt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},byt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Myt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},xyt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zyt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Iyt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yyt={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Cyt={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$yt={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ayt={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Byt={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hyt={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Nyt={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jyt={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Pyt={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lyt={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Dyt={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Oyt={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Ryt={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Eyt={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Vyt={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_yt={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Wyt={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Xyt={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qyt={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},Yyt={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Gyt={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},Uyt={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},Zyt={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},Kyt={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Qyt={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Jyt={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},tCt={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},eCt={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},nCt={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},lCt={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},rCt={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},oCt={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},sCt={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},aCt={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},iCt={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},hCt={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dCt={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cCt={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},uCt={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},pCt={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},gCt={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wCt={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vCt={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},fCt={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},mCt={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},kCt={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bCt={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},MCt={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},xCt={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},zCt={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},ICt={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yCt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CCt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},SCt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$Ct={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},ACt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},BCt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},HCt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},NCt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},jCt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},PCt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},LCt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},DCt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},FCt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OCt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},TCt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},RCt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},ECt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},VCt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},_Ct={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},WCt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},XCt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},qCt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},YCt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},GCt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},UCt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},ZCt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},KCt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},QCt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},JCt={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},tSt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},eSt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},nSt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},lSt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rSt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},oSt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},sSt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},aSt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},iSt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},hSt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dSt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cSt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uSt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pSt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gSt={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},wSt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vSt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},fSt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},mSt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},kSt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bSt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},MSt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xSt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},zSt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},ISt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},ySt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},CSt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},SSt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},$St={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},ASt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},BSt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HSt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},NSt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},jSt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PSt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},LSt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},DSt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},FSt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},OSt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TSt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},RSt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},ESt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VSt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},_St={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WSt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},XSt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qSt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},YSt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},GSt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},USt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},ZSt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},KSt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},QSt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},JSt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},t$t={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},e$t={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},n$t={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},l$t={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},r$t={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},o$t={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},s$t={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},a$t={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},i$t={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},h$t={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},d$t={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},c$t={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},u$t={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},p$t={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},g$t={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},w$t={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v$t={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},f$t={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k$t={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},b$t={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},M$t={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x$t={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},z$t={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},I$t={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},y$t={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C$t={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},S$t={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},$$t={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},A$t={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},B$t={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},H$t={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},N$t={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},j$t={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},P$t={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},L$t={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},D$t={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},F$t={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O$t={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},T$t={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},R$t={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},E$t={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V$t={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},_$t={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W$t={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},X$t={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q$t={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},Y$t={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},G$t={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},U$t={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},Z$t={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},K$t={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q$t={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},J$t={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},tAt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},eAt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},nAt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},lAt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},rAt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},oAt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},sAt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},aAt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},iAt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},hAt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},dAt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},uAt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},pAt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},gAt={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},wAt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vAt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},fAt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mAt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},kAt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},bAt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},MAt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},xAt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zAt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},IAt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},yAt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},CAt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},SAt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},$At={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AAt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},BAt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HAt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},NAt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},jAt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},PAt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},LAt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},DAt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},FAt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},OAt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},TAt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},RAt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},EAt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},VAt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},_At={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WAt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XAt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},qAt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YAt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},GAt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},UAt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},ZAt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},KAt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},QAt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JAt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tBt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eBt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},nBt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},lBt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},rBt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oBt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},sBt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},aBt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},iBt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},dBt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cBt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},uBt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pBt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},wBt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},vBt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},fBt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},mBt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},kBt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},bBt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},MBt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},xBt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},zBt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},IBt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yBt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},CBt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},SBt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$Bt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},ABt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},BBt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},HBt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},NBt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jBt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},PBt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},LBt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},DBt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FBt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},OBt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TBt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},RBt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EBt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VBt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_Bt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},WBt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},XBt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},qBt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YBt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},GBt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},UBt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},ZBt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},QBt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JBt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},tHt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},eHt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},nHt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lHt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},rHt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},oHt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},sHt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},aHt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},iHt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dHt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},cHt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uHt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},pHt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},gHt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},wHt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vHt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},mHt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},kHt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},bHt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},MHt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xHt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zHt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},IHt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yHt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},CHt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},SHt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},$Ht={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},AHt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BHt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},HHt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},NHt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},jHt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},PHt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LHt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},DHt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},FHt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},OHt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},THt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RHt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},EHt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},VHt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Ht={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},WHt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},qHt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},GHt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UHt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},ZHt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},KHt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},QHt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},JHt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},tNt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},eNt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},nNt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},lNt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},rNt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oNt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},sNt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},aNt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},iNt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},hNt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dNt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},cNt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},uNt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},pNt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},gNt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},wNt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vNt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},fNt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},mNt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},kNt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},bNt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},MNt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},xNt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},zNt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},INt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yNt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},CNt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},SNt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},$Nt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},ANt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},BNt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HNt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},NNt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},jNt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},LNt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},DNt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},FNt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},ONt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},TNt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RNt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},ENt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VNt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},_Nt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WNt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XNt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},qNt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},YNt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},GNt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UNt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},ZNt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},KNt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},QNt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},JNt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},tjt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},ejt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},njt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ljt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},rjt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ojt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},sjt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ajt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ijt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},hjt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},djt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},cjt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ujt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},pjt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gjt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wjt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vjt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fjt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mjt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kjt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bjt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mjt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xjt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zjt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},Ijt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},yjt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Cjt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},Sjt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},$jt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ajt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bjt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},Hjt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},Njt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},jjt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},Pjt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},Ljt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},Djt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},Fjt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},Ojt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tjt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},Rjt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},Ejt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vjt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},_jt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},Wjt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},Xjt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},qjt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},Yjt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},Gjt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},Ujt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},Zjt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},Kjt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Qjt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},Jjt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},tPt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},ePt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},nPt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},lPt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rPt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},oPt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},sPt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},aPt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iPt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hPt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},dPt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cPt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},uPt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},pPt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},gPt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wPt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},vPt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},fPt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},mPt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},kPt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},bPt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MPt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},xPt=Object.freeze({__proto__:null,OnetwotreeIcon:kb,TwentyFourHoursIcon:bb,TwoFactorAuthIcon:Mb,Deg360ViewIcon:xb,Deg360Icon:zb,ThreedCubeSphereOffIcon:Ib,ThreedCubeSphereIcon:yb,ThreedRotateIcon:Cb,AB2Icon:Sb,ABOffIcon:$b,ABIcon:Ab,AbacusOffIcon:Bb,AbacusIcon:Hb,AbcIcon:Nb,AccessPointOffIcon:jb,AccessPointIcon:Pb,AccessibleOffFilledIcon:Lb,AccessibleOffIcon:Db,AccessibleIcon:Fb,ActivityHeartbeatIcon:Ob,ActivityIcon:Tb,Ad2Icon:Rb,AdCircleFilledIcon:Eb,AdCircleOffIcon:Vb,AdCircleIcon:_b,AdFilledIcon:Wb,AdOffIcon:Xb,AdIcon:qb,AddressBookOffIcon:Yb,AddressBookIcon:Gb,AdjustmentsAltIcon:Ub,AdjustmentsBoltIcon:Zb,AdjustmentsCancelIcon:Kb,AdjustmentsCheckIcon:Qb,AdjustmentsCodeIcon:Jb,AdjustmentsCogIcon:tM,AdjustmentsDollarIcon:eM,AdjustmentsDownIcon:nM,AdjustmentsExclamationIcon:lM,AdjustmentsFilledIcon:rM,AdjustmentsHeartIcon:oM,AdjustmentsHorizontalIcon:sM,AdjustmentsMinusIcon:aM,AdjustmentsOffIcon:iM,AdjustmentsPauseIcon:hM,AdjustmentsPinIcon:dM,AdjustmentsPlusIcon:cM,AdjustmentsQuestionIcon:uM,AdjustmentsSearchIcon:pM,AdjustmentsShareIcon:gM,AdjustmentsStarIcon:wM,AdjustmentsUpIcon:vM,AdjustmentsXIcon:fM,AdjustmentsIcon:mM,AerialLiftIcon:kM,AffiliateFilledIcon:bM,AffiliateIcon:MM,AirBalloonIcon:xM,AirConditioningDisabledIcon:zM,AirConditioningIcon:IM,AlarmFilledIcon:yM,AlarmMinusFilledIcon:CM,AlarmMinusIcon:SM,AlarmOffIcon:$M,AlarmPlusFilledIcon:AM,AlarmPlusIcon:BM,AlarmSnoozeFilledIcon:HM,AlarmSnoozeIcon:NM,AlarmIcon:jM,AlbumOffIcon:PM,AlbumIcon:LM,AlertCircleFilledIcon:DM,AlertCircleIcon:FM,AlertHexagonFilledIcon:OM,AlertHexagonIcon:TM,AlertOctagonFilledIcon:RM,AlertOctagonIcon:EM,AlertSmallIcon:VM,AlertSquareFilledIcon:_M,AlertSquareRoundedFilledIcon:WM,AlertSquareRoundedIcon:XM,AlertSquareIcon:qM,AlertTriangleFilledIcon:YM,AlertTriangleIcon:GM,AlienFilledIcon:UM,AlienIcon:ZM,AlignBoxBottomCenterFilledIcon:KM,AlignBoxBottomCenterIcon:QM,AlignBoxBottomLeftFilledIcon:JM,AlignBoxBottomLeftIcon:tx,AlignBoxBottomRightFilledIcon:ex,AlignBoxBottomRightIcon:nx,AlignBoxCenterMiddleFilledIcon:lx,AlignBoxCenterMiddleIcon:rx,AlignBoxLeftBottomFilledIcon:ox,AlignBoxLeftBottomIcon:sx,AlignBoxLeftMiddleFilledIcon:ax,AlignBoxLeftMiddleIcon:ix,AlignBoxLeftTopFilledIcon:hx,AlignBoxLeftTopIcon:dx,AlignBoxRightBottomFilledIcon:cx,AlignBoxRightBottomIcon:ux,AlignBoxRightMiddleFilledIcon:px,AlignBoxRightMiddleIcon:gx,AlignBoxRightTopFilledIcon:wx,AlignBoxRightTopIcon:vx,AlignBoxTopCenterFilledIcon:fx,AlignBoxTopCenterIcon:mx,AlignBoxTopLeftFilledIcon:kx,AlignBoxTopLeftIcon:bx,AlignBoxTopRightFilledIcon:Mx,AlignBoxTopRightIcon:xx,AlignCenterIcon:zx,AlignJustifiedIcon:Ix,AlignLeftIcon:yx,AlignRightIcon:Cx,AlphaIcon:Sx,AlphabetCyrillicIcon:$x,AlphabetGreekIcon:Ax,AlphabetLatinIcon:Bx,AmbulanceIcon:Hx,AmpersandIcon:Nx,AnalyzeFilledIcon:jx,AnalyzeOffIcon:Px,AnalyzeIcon:Lx,AnchorOffIcon:Dx,AnchorIcon:Fx,AngleIcon:Ox,AnkhIcon:Tx,AntennaBars1Icon:Rx,AntennaBars2Icon:Ex,AntennaBars3Icon:Vx,AntennaBars4Icon:_x,AntennaBars5Icon:Wx,AntennaBarsOffIcon:Xx,AntennaOffIcon:qx,AntennaIcon:Yx,ApertureOffIcon:Gx,ApertureIcon:Ux,ApiAppOffIcon:Zx,ApiAppIcon:Kx,ApiOffIcon:Qx,ApiIcon:Jx,AppWindowFilledIcon:tz,AppWindowIcon:ez,AppleIcon:nz,AppsFilledIcon:lz,AppsOffIcon:rz,AppsIcon:oz,ArchiveFilledIcon:sz,ArchiveOffIcon:az,ArchiveIcon:iz,Armchair2OffIcon:hz,Armchair2Icon:dz,ArmchairOffIcon:cz,ArmchairIcon:uz,ArrowAutofitContentFilledIcon:pz,ArrowAutofitContentIcon:gz,ArrowAutofitDownIcon:wz,ArrowAutofitHeightIcon:vz,ArrowAutofitLeftIcon:fz,ArrowAutofitRightIcon:mz,ArrowAutofitUpIcon:kz,ArrowAutofitWidthIcon:bz,ArrowBackUpDoubleIcon:Mz,ArrowBackUpIcon:xz,ArrowBackIcon:zz,ArrowBadgeDownFilledIcon:Iz,ArrowBadgeDownIcon:yz,ArrowBadgeLeftFilledIcon:Cz,ArrowBadgeLeftIcon:Sz,ArrowBadgeRightFilledIcon:$z,ArrowBadgeRightIcon:Az,ArrowBadgeUpFilledIcon:Bz,ArrowBadgeUpIcon:Hz,ArrowBarDownIcon:Nz,ArrowBarLeftIcon:jz,ArrowBarRightIcon:Pz,ArrowBarToDownIcon:Lz,ArrowBarToLeftIcon:Dz,ArrowBarToRightIcon:Fz,ArrowBarToUpIcon:Oz,ArrowBarUpIcon:Tz,ArrowBearLeft2Icon:Rz,ArrowBearLeftIcon:Ez,ArrowBearRight2Icon:Vz,ArrowBearRightIcon:_z,ArrowBigDownFilledIcon:Wz,ArrowBigDownLineFilledIcon:Xz,ArrowBigDownLineIcon:qz,ArrowBigDownLinesFilledIcon:Yz,ArrowBigDownLinesIcon:Gz,ArrowBigDownIcon:Uz,ArrowBigLeftFilledIcon:Zz,ArrowBigLeftLineFilledIcon:Kz,ArrowBigLeftLineIcon:Qz,ArrowBigLeftLinesFilledIcon:Jz,ArrowBigLeftLinesIcon:tI,ArrowBigLeftIcon:eI,ArrowBigRightFilledIcon:nI,ArrowBigRightLineFilledIcon:lI,ArrowBigRightLineIcon:rI,ArrowBigRightLinesFilledIcon:oI,ArrowBigRightLinesIcon:sI,ArrowBigRightIcon:aI,ArrowBigUpFilledIcon:iI,ArrowBigUpLineFilledIcon:hI,ArrowBigUpLineIcon:dI,ArrowBigUpLinesFilledIcon:cI,ArrowBigUpLinesIcon:uI,ArrowBigUpIcon:pI,ArrowBounceIcon:gI,ArrowCurveLeftIcon:wI,ArrowCurveRightIcon:vI,ArrowDownBarIcon:fI,ArrowDownCircleIcon:mI,ArrowDownLeftCircleIcon:kI,ArrowDownLeftIcon:bI,ArrowDownRhombusIcon:MI,ArrowDownRightCircleIcon:xI,ArrowDownRightIcon:zI,ArrowDownSquareIcon:II,ArrowDownTailIcon:yI,ArrowDownIcon:CI,ArrowElbowLeftIcon:SI,ArrowElbowRightIcon:$I,ArrowForkIcon:AI,ArrowForwardUpDoubleIcon:BI,ArrowForwardUpIcon:HI,ArrowForwardIcon:NI,ArrowGuideIcon:jI,ArrowIterationIcon:PI,ArrowLeftBarIcon:LI,ArrowLeftCircleIcon:DI,ArrowLeftRhombusIcon:FI,ArrowLeftRightIcon:OI,ArrowLeftSquareIcon:TI,ArrowLeftTailIcon:RI,ArrowLeftIcon:EI,ArrowLoopLeft2Icon:VI,ArrowLoopLeftIcon:_I,ArrowLoopRight2Icon:WI,ArrowLoopRightIcon:XI,ArrowMergeBothIcon:qI,ArrowMergeLeftIcon:YI,ArrowMergeRightIcon:GI,ArrowMergeIcon:UI,ArrowMoveDownIcon:ZI,ArrowMoveLeftIcon:KI,ArrowMoveRightIcon:QI,ArrowMoveUpIcon:JI,ArrowNarrowDownIcon:ty,ArrowNarrowLeftIcon:ey,ArrowNarrowRightIcon:ny,ArrowNarrowUpIcon:ly,ArrowRampLeft2Icon:ry,ArrowRampLeft3Icon:oy,ArrowRampLeftIcon:sy,ArrowRampRight2Icon:ay,ArrowRampRight3Icon:iy,ArrowRampRightIcon:hy,ArrowRightBarIcon:dy,ArrowRightCircleIcon:cy,ArrowRightRhombusIcon:uy,ArrowRightSquareIcon:py,ArrowRightTailIcon:gy,ArrowRightIcon:wy,ArrowRotaryFirstLeftIcon:vy,ArrowRotaryFirstRightIcon:fy,ArrowRotaryLastLeftIcon:my,ArrowRotaryLastRightIcon:ky,ArrowRotaryLeftIcon:by,ArrowRotaryRightIcon:My,ArrowRotaryStraightIcon:xy,ArrowRoundaboutLeftIcon:zy,ArrowRoundaboutRightIcon:Iy,ArrowSharpTurnLeftIcon:yy,ArrowSharpTurnRightIcon:Cy,ArrowUpBarIcon:Sy,ArrowUpCircleIcon:$y,ArrowUpLeftCircleIcon:Ay,ArrowUpLeftIcon:By,ArrowUpRhombusIcon:Hy,ArrowUpRightCircleIcon:Ny,ArrowUpRightIcon:jy,ArrowUpSquareIcon:Py,ArrowUpTailIcon:Ly,ArrowUpIcon:Dy,ArrowWaveLeftDownIcon:Fy,ArrowWaveLeftUpIcon:Oy,ArrowWaveRightDownIcon:Ty,ArrowWaveRightUpIcon:Ry,ArrowZigZagIcon:Ey,ArrowsCrossIcon:Vy,ArrowsDiagonal2Icon:_y,ArrowsDiagonalMinimize2Icon:Wy,ArrowsDiagonalMinimizeIcon:Xy,ArrowsDiagonalIcon:qy,ArrowsDiffIcon:Yy,ArrowsDoubleNeSwIcon:Gy,ArrowsDoubleNwSeIcon:Uy,ArrowsDoubleSeNwIcon:Zy,ArrowsDoubleSwNeIcon:Ky,ArrowsDownUpIcon:Qy,ArrowsDownIcon:Jy,ArrowsExchange2Icon:tC,ArrowsExchangeIcon:eC,ArrowsHorizontalIcon:nC,ArrowsJoin2Icon:lC,ArrowsJoinIcon:rC,ArrowsLeftDownIcon:oC,ArrowsLeftRightIcon:sC,ArrowsLeftIcon:aC,ArrowsMaximizeIcon:iC,ArrowsMinimizeIcon:hC,ArrowsMoveHorizontalIcon:dC,ArrowsMoveVerticalIcon:cC,ArrowsMoveIcon:uC,ArrowsRandomIcon:pC,ArrowsRightDownIcon:gC,ArrowsRightLeftIcon:wC,ArrowsRightIcon:vC,ArrowsShuffle2Icon:fC,ArrowsShuffleIcon:mC,ArrowsSortIcon:kC,ArrowsSplit2Icon:bC,ArrowsSplitIcon:MC,ArrowsTransferDownIcon:xC,ArrowsTransferUpIcon:zC,ArrowsUpDownIcon:IC,ArrowsUpLeftIcon:yC,ArrowsUpRightIcon:CC,ArrowsUpIcon:SC,ArrowsVerticalIcon:$C,ArtboardFilledIcon:AC,ArtboardOffIcon:BC,ArtboardIcon:HC,ArticleFilledFilledIcon:NC,ArticleOffIcon:jC,ArticleIcon:PC,AspectRatioFilledIcon:LC,AspectRatioOffIcon:DC,AspectRatioIcon:FC,AssemblyOffIcon:OC,AssemblyIcon:TC,AssetIcon:RC,AsteriskSimpleIcon:EC,AsteriskIcon:VC,AtOffIcon:_C,AtIcon:WC,Atom2FilledIcon:XC,Atom2Icon:qC,AtomOffIcon:YC,AtomIcon:GC,AugmentedReality2Icon:UC,AugmentedRealityOffIcon:ZC,AugmentedRealityIcon:KC,AwardFilledIcon:QC,AwardOffIcon:JC,AwardIcon:tS,AxeIcon:eS,AxisXIcon:nS,AxisYIcon:lS,BabyBottleIcon:rS,BabyCarriageIcon:oS,BackhoeIcon:sS,BackpackOffIcon:aS,BackpackIcon:iS,BackspaceFilledIcon:hS,BackspaceIcon:dS,Badge3dIcon:cS,Badge4kIcon:uS,Badge8kIcon:pS,BadgeAdIcon:gS,BadgeArIcon:wS,BadgeCcIcon:vS,BadgeFilledIcon:fS,BadgeHdIcon:mS,BadgeOffIcon:kS,BadgeSdIcon:bS,BadgeTmIcon:MS,BadgeVoIcon:xS,BadgeVrIcon:zS,BadgeWcIcon:IS,BadgeIcon:yS,BadgesFilledIcon:CS,BadgesOffIcon:SS,BadgesIcon:$S,BaguetteIcon:AS,BallAmericanFootballOffIcon:BS,BallAmericanFootballIcon:HS,BallBaseballIcon:NS,BallBasketballIcon:jS,BallBowlingIcon:PS,BallFootballOffIcon:LS,BallFootballIcon:DS,BallTennisIcon:FS,BallVolleyballIcon:OS,BalloonFilledIcon:TS,BalloonOffIcon:RS,BalloonIcon:ES,BallpenFilledIcon:VS,BallpenOffIcon:_S,BallpenIcon:WS,BanIcon:XS,BandageFilledIcon:qS,BandageOffIcon:YS,BandageIcon:GS,BarbellOffIcon:US,BarbellIcon:ZS,BarcodeOffIcon:KS,BarcodeIcon:QS,BarrelOffIcon:JS,BarrelIcon:t$,BarrierBlockOffIcon:e$,BarrierBlockIcon:n$,BaselineDensityLargeIcon:l$,BaselineDensityMediumIcon:r$,BaselineDensitySmallIcon:o$,BaselineIcon:s$,BasketFilledIcon:a$,BasketOffIcon:i$,BasketIcon:h$,BatIcon:d$,BathFilledIcon:c$,BathOffIcon:u$,BathIcon:p$,Battery1FilledIcon:g$,Battery1Icon:w$,Battery2FilledIcon:v$,Battery2Icon:f$,Battery3FilledIcon:m$,Battery3Icon:k$,Battery4FilledIcon:b$,Battery4Icon:M$,BatteryAutomotiveIcon:x$,BatteryCharging2Icon:z$,BatteryChargingIcon:I$,BatteryEcoIcon:y$,BatteryFilledIcon:C$,BatteryOffIcon:S$,BatteryIcon:$$,BeachOffIcon:A$,BeachIcon:B$,BedFilledIcon:H$,BedOffIcon:N$,BedIcon:j$,BeerFilledIcon:P$,BeerOffIcon:L$,BeerIcon:D$,BellBoltIcon:F$,BellCancelIcon:O$,BellCheckIcon:T$,BellCodeIcon:R$,BellCogIcon:E$,BellDollarIcon:V$,BellDownIcon:_$,BellExclamationIcon:W$,BellFilledIcon:X$,BellHeartIcon:q$,BellMinusFilledIcon:Y$,BellMinusIcon:G$,BellOffIcon:U$,BellPauseIcon:Z$,BellPinIcon:K$,BellPlusFilledIcon:Q$,BellPlusIcon:J$,BellQuestionIcon:tA,BellRinging2FilledIcon:eA,BellRinging2Icon:nA,BellRingingFilledIcon:lA,BellRingingIcon:rA,BellSchoolIcon:oA,BellSearchIcon:sA,BellShareIcon:aA,BellStarIcon:iA,BellUpIcon:hA,BellXFilledIcon:dA,BellXIcon:cA,BellZFilledIcon:uA,BellZIcon:pA,BellIcon:gA,BetaIcon:wA,BibleIcon:vA,BikeOffIcon:fA,BikeIcon:mA,BinaryOffIcon:kA,BinaryTree2Icon:bA,BinaryTreeIcon:MA,BinaryIcon:xA,BiohazardOffIcon:zA,BiohazardIcon:IA,BladeFilledIcon:yA,BladeIcon:CA,BleachChlorineIcon:SA,BleachNoChlorineIcon:$A,BleachOffIcon:AA,BleachIcon:BA,BlockquoteIcon:HA,BluetoothConnectedIcon:NA,BluetoothOffIcon:jA,BluetoothXIcon:PA,BluetoothIcon:LA,BlurOffIcon:DA,BlurIcon:FA,BmpIcon:OA,BoldOffIcon:TA,BoldIcon:RA,BoltOffIcon:EA,BoltIcon:VA,BombFilledIcon:_A,BombIcon:WA,BoneOffIcon:XA,BoneIcon:qA,BongOffIcon:YA,BongIcon:GA,Book2Icon:UA,BookDownloadIcon:ZA,BookFilledIcon:KA,BookOffIcon:QA,BookUploadIcon:JA,BookIcon:tB,BookmarkEditIcon:eB,BookmarkFilledIcon:nB,BookmarkMinusIcon:lB,BookmarkOffIcon:rB,BookmarkPlusIcon:oB,BookmarkQuestionIcon:sB,BookmarkIcon:aB,BookmarksOffIcon:iB,BookmarksIcon:hB,BooksOffIcon:dB,BooksIcon:cB,BorderAllIcon:uB,BorderBottomIcon:pB,BorderCornersIcon:gB,BorderHorizontalIcon:wB,BorderInnerIcon:vB,BorderLeftIcon:fB,BorderNoneIcon:mB,BorderOuterIcon:kB,BorderRadiusIcon:bB,BorderRightIcon:MB,BorderSidesIcon:xB,BorderStyle2Icon:zB,BorderStyleIcon:IB,BorderTopIcon:yB,BorderVerticalIcon:CB,BottleFilledIcon:SB,BottleOffIcon:$B,BottleIcon:AB,BounceLeftIcon:BB,BounceRightIcon:HB,BowIcon:NB,BowlIcon:jB,BoxAlignBottomFilledIcon:PB,BoxAlignBottomLeftFilledIcon:LB,BoxAlignBottomLeftIcon:DB,BoxAlignBottomRightFilledIcon:FB,BoxAlignBottomRightIcon:OB,BoxAlignBottomIcon:TB,BoxAlignLeftFilledIcon:RB,BoxAlignLeftIcon:EB,BoxAlignRightFilledIcon:VB,BoxAlignRightIcon:_B,BoxAlignTopFilledIcon:WB,BoxAlignTopLeftFilledIcon:XB,BoxAlignTopLeftIcon:qB,BoxAlignTopRightFilledIcon:YB,BoxAlignTopRightIcon:GB,BoxAlignTopIcon:UB,BoxMarginIcon:ZB,BoxModel2OffIcon:KB,BoxModel2Icon:QB,BoxModelOffIcon:JB,BoxModelIcon:tH,BoxMultiple0Icon:eH,BoxMultiple1Icon:nH,BoxMultiple2Icon:lH,BoxMultiple3Icon:rH,BoxMultiple4Icon:oH,BoxMultiple5Icon:sH,BoxMultiple6Icon:aH,BoxMultiple7Icon:iH,BoxMultiple8Icon:hH,BoxMultiple9Icon:dH,BoxMultipleIcon:cH,BoxOffIcon:uH,BoxPaddingIcon:pH,BoxSeamIcon:gH,BoxIcon:wH,BracesOffIcon:vH,BracesIcon:fH,BracketsContainEndIcon:mH,BracketsContainStartIcon:kH,BracketsContainIcon:bH,BracketsOffIcon:MH,BracketsIcon:xH,BrailleIcon:zH,BrainIcon:IH,Brand4chanIcon:yH,BrandAbstractIcon:CH,BrandAdobeIcon:SH,BrandAdonisJsIcon:$H,BrandAirbnbIcon:AH,BrandAirtableIcon:BH,BrandAlgoliaIcon:HH,BrandAlipayIcon:NH,BrandAlpineJsIcon:jH,BrandAmazonIcon:PH,BrandAmdIcon:LH,BrandAmigoIcon:DH,BrandAmongUsIcon:FH,BrandAndroidIcon:OH,BrandAngularIcon:TH,BrandAnsibleIcon:RH,BrandAo3Icon:EH,BrandAppgalleryIcon:VH,BrandAppleArcadeIcon:_H,BrandApplePodcastIcon:WH,BrandAppleIcon:XH,BrandAppstoreIcon:qH,BrandAsanaIcon:YH,BrandAwsIcon:GH,BrandAzureIcon:UH,BrandBackboneIcon:ZH,BrandBadooIcon:KH,BrandBaiduIcon:QH,BrandBandcampIcon:JH,BrandBandlabIcon:tN,BrandBeatsIcon:eN,BrandBehanceIcon:nN,BrandBilibiliIcon:lN,BrandBinanceIcon:rN,BrandBingIcon:oN,BrandBitbucketIcon:sN,BrandBlackberryIcon:aN,BrandBlenderIcon:iN,BrandBloggerIcon:hN,BrandBookingIcon:dN,BrandBootstrapIcon:cN,BrandBulmaIcon:uN,BrandBumbleIcon:pN,BrandBunpoIcon:gN,BrandCSharpIcon:wN,BrandCakeIcon:vN,BrandCakephpIcon:fN,BrandCampaignmonitorIcon:mN,BrandCarbonIcon:kN,BrandCashappIcon:bN,BrandChromeIcon:MN,BrandCinema4dIcon:xN,BrandCitymapperIcon:zN,BrandCloudflareIcon:IN,BrandCodecovIcon:yN,BrandCodepenIcon:CN,BrandCodesandboxIcon:SN,BrandCohostIcon:$N,BrandCoinbaseIcon:AN,BrandComedyCentralIcon:BN,BrandCoreosIcon:HN,BrandCouchdbIcon:NN,BrandCouchsurfingIcon:jN,BrandCppIcon:PN,BrandCraftIcon:LN,BrandCrunchbaseIcon:DN,BrandCss3Icon:FN,BrandCtemplarIcon:ON,BrandCucumberIcon:TN,BrandCupraIcon:RN,BrandCypressIcon:EN,BrandD3Icon:VN,BrandDaysCounterIcon:_N,BrandDcosIcon:WN,BrandDebianIcon:XN,BrandDeezerIcon:qN,BrandDeliverooIcon:YN,BrandDenoIcon:GN,BrandDenodoIcon:UN,BrandDeviantartIcon:ZN,BrandDiggIcon:KN,BrandDingtalkIcon:QN,BrandDiscordFilledIcon:JN,BrandDiscordIcon:tj,BrandDisneyIcon:ej,BrandDisqusIcon:nj,BrandDjangoIcon:lj,BrandDockerIcon:rj,BrandDoctrineIcon:oj,BrandDolbyDigitalIcon:sj,BrandDoubanIcon:aj,BrandDribbbleFilledIcon:ij,BrandDribbbleIcon:hj,BrandDropsIcon:dj,BrandDrupalIcon:cj,BrandEdgeIcon:uj,BrandElasticIcon:pj,BrandElectronicArtsIcon:gj,BrandEmberIcon:wj,BrandEnvatoIcon:vj,BrandEtsyIcon:fj,BrandEvernoteIcon:mj,BrandFacebookFilledIcon:kj,BrandFacebookIcon:bj,BrandFeedlyIcon:Mj,BrandFigmaIcon:xj,BrandFilezillaIcon:zj,BrandFinderIcon:Ij,BrandFirebaseIcon:yj,BrandFirefoxIcon:Cj,BrandFiverrIcon:Sj,BrandFlickrIcon:$j,BrandFlightradar24Icon:Aj,BrandFlipboardIcon:Bj,BrandFlutterIcon:Hj,BrandFortniteIcon:Nj,BrandFoursquareIcon:jj,BrandFramerMotionIcon:Pj,BrandFramerIcon:Lj,BrandFunimationIcon:Dj,BrandGatsbyIcon:Fj,BrandGitIcon:Oj,BrandGithubCopilotIcon:Tj,BrandGithubFilledIcon:Rj,BrandGithubIcon:Ej,BrandGitlabIcon:Vj,BrandGmailIcon:_j,BrandGolangIcon:Wj,BrandGoogleAnalyticsIcon:Xj,BrandGoogleBigQueryIcon:qj,BrandGoogleDriveIcon:Yj,BrandGoogleFitIcon:Gj,BrandGoogleHomeIcon:Uj,BrandGoogleMapsIcon:Zj,BrandGoogleOneIcon:Kj,BrandGooglePhotosIcon:Qj,BrandGooglePlayIcon:Jj,BrandGooglePodcastsIcon:tP,BrandGoogleIcon:eP,BrandGrammarlyIcon:nP,BrandGraphqlIcon:lP,BrandGravatarIcon:rP,BrandGrindrIcon:oP,BrandGuardianIcon:sP,BrandGumroadIcon:aP,BrandHboIcon:iP,BrandHeadlessuiIcon:hP,BrandHexoIcon:dP,BrandHipchatIcon:cP,BrandHtml5Icon:uP,BrandInertiaIcon:pP,BrandInstagramIcon:gP,BrandIntercomIcon:wP,BrandItchIcon:vP,BrandJavascriptIcon:fP,BrandJuejinIcon:mP,BrandKickIcon:kP,BrandKickstarterIcon:bP,BrandKotlinIcon:MP,BrandLaravelIcon:xP,BrandLastfmIcon:zP,BrandLeetcodeIcon:IP,BrandLetterboxdIcon:yP,BrandLineIcon:CP,BrandLinkedinIcon:SP,BrandLinktreeIcon:$P,BrandLinqpadIcon:AP,BrandLoomIcon:BP,BrandMailgunIcon:HP,BrandMantineIcon:NP,BrandMastercardIcon:jP,BrandMastodonIcon:PP,BrandMatrixIcon:LP,BrandMcdonaldsIcon:DP,BrandMediumIcon:FP,BrandMercedesIcon:OP,BrandMessengerIcon:TP,BrandMetaIcon:RP,BrandMiniprogramIcon:EP,BrandMixpanelIcon:VP,BrandMondayIcon:_P,BrandMongodbIcon:WP,BrandMyOppoIcon:XP,BrandMysqlIcon:qP,BrandNationalGeographicIcon:YP,BrandNemIcon:GP,BrandNetbeansIcon:UP,BrandNeteaseMusicIcon:ZP,BrandNetflixIcon:KP,BrandNexoIcon:QP,BrandNextcloudIcon:JP,BrandNextjsIcon:tL,BrandNordVpnIcon:eL,BrandNotionIcon:nL,BrandNpmIcon:lL,BrandNuxtIcon:rL,BrandNytimesIcon:oL,BrandOauthIcon:sL,BrandOfficeIcon:aL,BrandOkRuIcon:iL,BrandOnedriveIcon:hL,BrandOnlyfansIcon:dL,BrandOpenSourceIcon:cL,BrandOpenaiIcon:uL,BrandOpenvpnIcon:pL,BrandOperaIcon:gL,BrandPagekitIcon:wL,BrandPatreonIcon:vL,BrandPaypalFilledIcon:fL,BrandPaypalIcon:mL,BrandPaypayIcon:kL,BrandPeanutIcon:bL,BrandPepsiIcon:ML,BrandPhpIcon:xL,BrandPicsartIcon:zL,BrandPinterestIcon:IL,BrandPlanetscaleIcon:yL,BrandPocketIcon:CL,BrandPolymerIcon:SL,BrandPowershellIcon:$L,BrandPrismaIcon:AL,BrandProducthuntIcon:BL,BrandPushbulletIcon:HL,BrandPushoverIcon:NL,BrandPythonIcon:jL,BrandQqIcon:PL,BrandRadixUiIcon:LL,BrandReactNativeIcon:DL,BrandReactIcon:FL,BrandReasonIcon:OL,BrandRedditIcon:TL,BrandRedhatIcon:RL,BrandReduxIcon:EL,BrandRevolutIcon:VL,BrandRustIcon:_L,BrandSafariIcon:WL,BrandSamsungpassIcon:XL,BrandSassIcon:qL,BrandSentryIcon:YL,BrandSharikIcon:GL,BrandShazamIcon:UL,BrandShopeeIcon:ZL,BrandSketchIcon:KL,BrandSkypeIcon:QL,BrandSlackIcon:JL,BrandSnapchatIcon:tD,BrandSnapseedIcon:eD,BrandSnowflakeIcon:nD,BrandSocketIoIcon:lD,BrandSolidjsIcon:rD,BrandSoundcloudIcon:oD,BrandSpaceheyIcon:sD,BrandSpeedtestIcon:aD,BrandSpotifyIcon:iD,BrandStackoverflowIcon:hD,BrandStackshareIcon:dD,BrandSteamIcon:cD,BrandStorjIcon:uD,BrandStorybookIcon:pD,BrandStorytelIcon:gD,BrandStravaIcon:wD,BrandStripeIcon:vD,BrandSublimeTextIcon:fD,BrandSugarizerIcon:mD,BrandSupabaseIcon:kD,BrandSuperhumanIcon:bD,BrandSupernovaIcon:MD,BrandSurfsharkIcon:xD,BrandSvelteIcon:zD,BrandSwiftIcon:ID,BrandSymfonyIcon:yD,BrandTablerIcon:CD,BrandTailwindIcon:SD,BrandTaobaoIcon:$D,BrandTedIcon:AD,BrandTelegramIcon:BD,BrandTerraformIcon:HD,BrandTetherIcon:ND,BrandThreejsIcon:jD,BrandTidalIcon:PD,BrandTiktoFilledIcon:LD,BrandTiktokIcon:DD,BrandTinderIcon:FD,BrandTopbuzzIcon:OD,BrandTorchainIcon:TD,BrandToyotaIcon:RD,BrandTrelloIcon:ED,BrandTripadvisorIcon:VD,BrandTumblrIcon:_D,BrandTwilioIcon:WD,BrandTwitchIcon:XD,BrandTwitterFilledIcon:qD,BrandTwitterIcon:YD,BrandTypescriptIcon:GD,BrandUberIcon:UD,BrandUbuntuIcon:ZD,BrandUnityIcon:KD,BrandUnsplashIcon:QD,BrandUpworkIcon:JD,BrandValorantIcon:tF,BrandVercelIcon:eF,BrandVimeoIcon:nF,BrandVintedIcon:lF,BrandVisaIcon:rF,BrandVisualStudioIcon:oF,BrandViteIcon:sF,BrandVivaldiIcon:aF,BrandVkIcon:iF,BrandVlcIcon:hF,BrandVolkswagenIcon:dF,BrandVscoIcon:cF,BrandVscodeIcon:uF,BrandVueIcon:pF,BrandWalmartIcon:gF,BrandWazeIcon:wF,BrandWebflowIcon:vF,BrandWechatIcon:fF,BrandWeiboIcon:mF,BrandWhatsappIcon:kF,BrandWikipediaIcon:bF,BrandWindowsIcon:MF,BrandWindyIcon:xF,BrandWishIcon:zF,BrandWixIcon:IF,BrandWordpressIcon:yF,BrandXamarinIcon:CF,BrandXboxIcon:SF,BrandXingIcon:$F,BrandYahooIcon:AF,BrandYatseIcon:BF,BrandYcombinatorIcon:HF,BrandYoutubeKidsIcon:NF,BrandYoutubeIcon:jF,BrandZalandoIcon:PF,BrandZapierIcon:LF,BrandZeitIcon:DF,BrandZhihuIcon:FF,BrandZoomIcon:OF,BrandZulipIcon:TF,BrandZwiftIcon:RF,BreadOffIcon:EF,BreadIcon:VF,BriefcaseOffIcon:_F,BriefcaseIcon:WF,Brightness2Icon:XF,BrightnessDownIcon:qF,BrightnessHalfIcon:YF,BrightnessOffIcon:GF,BrightnessUpIcon:UF,BrightnessIcon:ZF,BroadcastOffIcon:KF,BroadcastIcon:QF,BrowserCheckIcon:JF,BrowserOffIcon:tO,BrowserPlusIcon:eO,BrowserXIcon:nO,BrowserIcon:lO,BrushOffIcon:rO,BrushIcon:oO,BucketDropletIcon:sO,BucketOffIcon:aO,BucketIcon:iO,BugOffIcon:hO,BugIcon:dO,BuildingArchIcon:cO,BuildingBankIcon:uO,BuildingBridge2Icon:pO,BuildingBridgeIcon:gO,BuildingBroadcastTowerIcon:wO,BuildingCarouselIcon:vO,BuildingCastleIcon:fO,BuildingChurchIcon:mO,BuildingCircusIcon:kO,BuildingCommunityIcon:bO,BuildingCottageIcon:MO,BuildingEstateIcon:xO,BuildingFactory2Icon:zO,BuildingFactoryIcon:IO,BuildingFortressIcon:yO,BuildingHospitalIcon:CO,BuildingLighthouseIcon:SO,BuildingMonumentIcon:$O,BuildingMosqueIcon:AO,BuildingPavilionIcon:BO,BuildingSkyscraperIcon:HO,BuildingStadiumIcon:NO,BuildingStoreIcon:jO,BuildingTunnelIcon:PO,BuildingWarehouseIcon:LO,BuildingWindTurbineIcon:DO,BuildingIcon:FO,BulbFilledIcon:OO,BulbOffIcon:TO,BulbIcon:RO,BulldozerIcon:EO,BusOffIcon:VO,BusStopIcon:_O,BusIcon:WO,BusinessplanIcon:XO,ButterflyIcon:qO,CactusOffIcon:YO,CactusIcon:GO,CakeOffIcon:UO,CakeIcon:ZO,CalculatorOffIcon:KO,CalculatorIcon:QO,CalendarBoltIcon:JO,CalendarCancelIcon:tT,CalendarCheckIcon:eT,CalendarCodeIcon:nT,CalendarCogIcon:lT,CalendarDollarIcon:rT,CalendarDownIcon:oT,CalendarDueIcon:sT,CalendarEventIcon:aT,CalendarExclamationIcon:iT,CalendarHeartIcon:hT,CalendarMinusIcon:dT,CalendarOffIcon:cT,CalendarPauseIcon:uT,CalendarPinIcon:pT,CalendarPlusIcon:gT,CalendarQuestionIcon:wT,CalendarSearchIcon:vT,CalendarShareIcon:fT,CalendarStarIcon:mT,CalendarStatsIcon:kT,CalendarTimeIcon:bT,CalendarUpIcon:MT,CalendarXIcon:xT,CalendarIcon:zT,CameraBoltIcon:IT,CameraCancelIcon:yT,CameraCheckIcon:CT,CameraCodeIcon:ST,CameraCogIcon:$T,CameraDollarIcon:AT,CameraDownIcon:BT,CameraExclamationIcon:HT,CameraFilledIcon:NT,CameraHeartIcon:jT,CameraMinusIcon:PT,CameraOffIcon:LT,CameraPauseIcon:DT,CameraPinIcon:FT,CameraPlusIcon:OT,CameraQuestionIcon:TT,CameraRotateIcon:RT,CameraSearchIcon:ET,CameraSelfieIcon:VT,CameraShareIcon:_T,CameraStarIcon:WT,CameraUpIcon:XT,CameraXIcon:qT,CameraIcon:YT,CamperIcon:GT,CampfireIcon:UT,CandleIcon:ZT,CandyOffIcon:KT,CandyIcon:QT,CaneIcon:JT,CannabisIcon:tR,CaptureOffIcon:eR,CaptureIcon:nR,CarCraneIcon:lR,CarCrashIcon:rR,CarOffIcon:oR,CarTurbineIcon:sR,CarIcon:aR,CaravanIcon:iR,CardboardsOffIcon:hR,CardboardsIcon:dR,CardsIcon:cR,CaretDownIcon:uR,CaretLeftIcon:pR,CaretRightIcon:gR,CaretUpIcon:wR,CarouselHorizontalFilledIcon:vR,CarouselHorizontalIcon:fR,CarouselVerticalFilledIcon:mR,CarouselVerticalIcon:kR,CarrotOffIcon:bR,CarrotIcon:MR,CashBanknoteOffIcon:xR,CashBanknoteIcon:zR,CashOffIcon:IR,CashIcon:yR,CastOffIcon:CR,CastIcon:SR,CatIcon:$R,Category2Icon:AR,CategoryIcon:BR,CeOffIcon:HR,CeIcon:NR,CellSignal1Icon:jR,CellSignal2Icon:PR,CellSignal3Icon:LR,CellSignal4Icon:DR,CellSignal5Icon:FR,CellSignalOffIcon:OR,CellIcon:TR,Certificate2OffIcon:RR,Certificate2Icon:ER,CertificateOffIcon:VR,CertificateIcon:_R,ChairDirectorIcon:WR,ChalkboardOffIcon:XR,ChalkboardIcon:qR,ChargingPileIcon:YR,ChartArcs3Icon:GR,ChartArcsIcon:UR,ChartAreaFilledIcon:ZR,ChartAreaLineFilledIcon:KR,ChartAreaLineIcon:QR,ChartAreaIcon:JR,ChartArrowsVerticalIcon:tE,ChartArrowsIcon:eE,ChartBarOffIcon:nE,ChartBarIcon:lE,ChartBubbleFilledIcon:rE,ChartBubbleIcon:oE,ChartCandleFilledIcon:sE,ChartCandleIcon:aE,ChartCirclesIcon:iE,ChartDonut2Icon:hE,ChartDonut3Icon:dE,ChartDonut4Icon:cE,ChartDonutFilledIcon:uE,ChartDonutIcon:pE,ChartDots2Icon:gE,ChartDots3Icon:wE,ChartDotsIcon:vE,ChartGridDotsIcon:fE,ChartHistogramIcon:mE,ChartInfographicIcon:kE,ChartLineIcon:bE,ChartPie2Icon:ME,ChartPie3Icon:xE,ChartPie4Icon:zE,ChartPieFilledIcon:IE,ChartPieOffIcon:yE,ChartPieIcon:CE,ChartPpfIcon:SE,ChartRadarIcon:$E,ChartSankeyIcon:AE,ChartTreemapIcon:BE,CheckIcon:HE,CheckboxIcon:NE,ChecklistIcon:jE,ChecksIcon:PE,CheckupListIcon:LE,CheeseIcon:DE,ChefHatOffIcon:FE,ChefHatIcon:OE,CherryFilledIcon:TE,CherryIcon:RE,ChessBishopFilledIcon:EE,ChessBishopIcon:VE,ChessFilledIcon:_E,ChessKingFilledIcon:WE,ChessKingIcon:XE,ChessKnightFilledIcon:qE,ChessKnightIcon:YE,ChessQueenFilledIcon:GE,ChessQueenIcon:UE,ChessRookFilledIcon:ZE,ChessRookIcon:KE,ChessIcon:QE,ChevronDownLeftIcon:JE,ChevronDownRightIcon:tV,ChevronDownIcon:eV,ChevronLeftIcon:nV,ChevronRightIcon:lV,ChevronUpLeftIcon:rV,ChevronUpRightIcon:oV,ChevronUpIcon:sV,ChevronsDownLeftIcon:aV,ChevronsDownRightIcon:iV,ChevronsDownIcon:hV,ChevronsLeftIcon:dV,ChevronsRightIcon:cV,ChevronsUpLeftIcon:uV,ChevronsUpRightIcon:pV,ChevronsUpIcon:gV,ChiselIcon:wV,ChristmasTreeOffIcon:vV,ChristmasTreeIcon:fV,Circle0FilledIcon:mV,Circle1FilledIcon:kV,Circle2FilledIcon:bV,Circle3FilledIcon:MV,Circle4FilledIcon:xV,Circle5FilledIcon:zV,Circle6FilledIcon:IV,Circle7FilledIcon:yV,Circle8FilledIcon:CV,Circle9FilledIcon:SV,CircleArrowDownFilledIcon:$V,CircleArrowDownLeftFilledIcon:AV,CircleArrowDownLeftIcon:BV,CircleArrowDownRightFilledIcon:HV,CircleArrowDownRightIcon:NV,CircleArrowDownIcon:jV,CircleArrowLeftFilledIcon:PV,CircleArrowLeftIcon:LV,CircleArrowRightFilledIcon:DV,CircleArrowRightIcon:FV,CircleArrowUpFilledIcon:OV,CircleArrowUpLeftFilledIcon:TV,CircleArrowUpLeftIcon:RV,CircleArrowUpRightFilledIcon:EV,CircleArrowUpRightIcon:VV,CircleArrowUpIcon:_V,CircleCaretDownIcon:WV,CircleCaretLeftIcon:XV,CircleCaretRightIcon:qV,CircleCaretUpIcon:YV,CircleCheckFilledIcon:GV,CircleCheckIcon:UV,CircleChevronDownIcon:ZV,CircleChevronLeftIcon:KV,CircleChevronRightIcon:QV,CircleChevronUpIcon:JV,CircleChevronsDownIcon:t_,CircleChevronsLeftIcon:e_,CircleChevronsRightIcon:n_,CircleChevronsUpIcon:l_,CircleDashedIcon:r_,CircleDotFilledIcon:o_,CircleDotIcon:s_,CircleDottedIcon:a_,CircleFilledIcon:i_,CircleHalf2Icon:h_,CircleHalfVerticalIcon:d_,CircleHalfIcon:c_,CircleKeyFilledIcon:u_,CircleKeyIcon:p_,CircleLetterAIcon:g_,CircleLetterBIcon:w_,CircleLetterCIcon:v_,CircleLetterDIcon:f_,CircleLetterEIcon:m_,CircleLetterFIcon:k_,CircleLetterGIcon:b_,CircleLetterHIcon:M_,CircleLetterIIcon:x_,CircleLetterJIcon:z_,CircleLetterKIcon:I_,CircleLetterLIcon:y_,CircleLetterMIcon:C_,CircleLetterNIcon:S_,CircleLetterOIcon:$_,CircleLetterPIcon:A_,CircleLetterQIcon:B_,CircleLetterRIcon:H_,CircleLetterSIcon:N_,CircleLetterTIcon:j_,CircleLetterUIcon:P_,CircleLetterVIcon:L_,CircleLetterWIcon:D_,CircleLetterXIcon:F_,CircleLetterYIcon:O_,CircleLetterZIcon:T_,CircleMinusIcon:R_,CircleNumber0Icon:E_,CircleNumber1Icon:V_,CircleNumber2Icon:__,CircleNumber3Icon:W_,CircleNumber4Icon:X_,CircleNumber5Icon:q_,CircleNumber6Icon:Y_,CircleNumber7Icon:G_,CircleNumber8Icon:U_,CircleNumber9Icon:Z_,CircleOffIcon:K_,CirclePlusIcon:Q_,CircleRectangleOffIcon:J_,CircleRectangleIcon:tW,CircleSquareIcon:eW,CircleTriangleIcon:nW,CircleXFilledIcon:lW,CircleXIcon:rW,CircleIcon:oW,CirclesFilledIcon:sW,CirclesRelationIcon:aW,CirclesIcon:iW,CircuitAmmeterIcon:hW,CircuitBatteryIcon:dW,CircuitBulbIcon:cW,CircuitCapacitorPolarizedIcon:uW,CircuitCapacitorIcon:pW,CircuitCellPlusIcon:gW,CircuitCellIcon:wW,CircuitChangeoverIcon:vW,CircuitDiodeZenerIcon:fW,CircuitDiodeIcon:mW,CircuitGroundDigitalIcon:kW,CircuitGroundIcon:bW,CircuitInductorIcon:MW,CircuitMotorIcon:xW,CircuitPushbuttonIcon:zW,CircuitResistorIcon:IW,CircuitSwitchClosedIcon:yW,CircuitSwitchOpenIcon:CW,CircuitVoltmeterIcon:SW,ClearAllIcon:$W,ClearFormattingIcon:AW,ClickIcon:BW,ClipboardCheckIcon:HW,ClipboardCopyIcon:NW,ClipboardDataIcon:jW,ClipboardHeartIcon:PW,ClipboardListIcon:LW,ClipboardOffIcon:DW,ClipboardPlusIcon:FW,ClipboardTextIcon:OW,ClipboardTypographyIcon:TW,ClipboardXIcon:RW,ClipboardIcon:EW,Clock2Icon:VW,ClockBoltIcon:_W,ClockCancelIcon:WW,ClockCheckIcon:XW,ClockCodeIcon:qW,ClockCogIcon:YW,ClockDollarIcon:GW,ClockDownIcon:UW,ClockEditIcon:ZW,ClockExclamationIcon:KW,ClockFilledIcon:QW,ClockHeartIcon:JW,ClockHour1Icon:tX,ClockHour10Icon:eX,ClockHour11Icon:nX,ClockHour12Icon:lX,ClockHour2Icon:rX,ClockHour3Icon:oX,ClockHour4Icon:sX,ClockHour5Icon:aX,ClockHour6Icon:iX,ClockHour7Icon:hX,ClockHour8Icon:dX,ClockHour9Icon:cX,ClockMinusIcon:uX,ClockOffIcon:pX,ClockPauseIcon:gX,ClockPinIcon:wX,ClockPlayIcon:vX,ClockPlusIcon:fX,ClockQuestionIcon:mX,ClockRecordIcon:kX,ClockSearchIcon:bX,ClockShareIcon:MX,ClockShieldIcon:xX,ClockStarIcon:zX,ClockStopIcon:IX,ClockUpIcon:yX,ClockXIcon:CX,ClockIcon:SX,ClothesRackOffIcon:$X,ClothesRackIcon:AX,CloudBoltIcon:BX,CloudCancelIcon:HX,CloudCheckIcon:NX,CloudCodeIcon:jX,CloudCogIcon:PX,CloudComputingIcon:LX,CloudDataConnectionIcon:DX,CloudDollarIcon:FX,CloudDownIcon:OX,CloudDownloadIcon:TX,CloudExclamationIcon:RX,CloudFilledIcon:EX,CloudFogIcon:VX,CloudHeartIcon:_X,CloudLockOpenIcon:WX,CloudLockIcon:XX,CloudMinusIcon:qX,CloudOffIcon:YX,CloudPauseIcon:GX,CloudPinIcon:UX,CloudPlusIcon:ZX,CloudQuestionIcon:KX,CloudRainIcon:QX,CloudSearchIcon:JX,CloudShareIcon:tq,CloudSnowIcon:eq,CloudStarIcon:nq,CloudStormIcon:lq,CloudUpIcon:rq,CloudUploadIcon:oq,CloudXIcon:sq,CloudIcon:aq,Clover2Icon:iq,CloverIcon:hq,ClubsFilledIcon:dq,ClubsIcon:cq,CodeAsterixIcon:uq,CodeCircle2Icon:pq,CodeCircleIcon:gq,CodeDotsIcon:wq,CodeMinusIcon:vq,CodeOffIcon:fq,CodePlusIcon:mq,CodeIcon:kq,CoffeeOffIcon:bq,CoffeeIcon:Mq,CoffinIcon:xq,CoinBitcoinIcon:zq,CoinEuroIcon:Iq,CoinMoneroIcon:yq,CoinOffIcon:Cq,CoinPoundIcon:Sq,CoinRupeeIcon:$q,CoinYenIcon:Aq,CoinYuanIcon:Bq,CoinIcon:Hq,CoinsIcon:Nq,ColorFilterIcon:jq,ColorPickerOffIcon:Pq,ColorPickerIcon:Lq,ColorSwatchOffIcon:Dq,ColorSwatchIcon:Fq,ColumnInsertLeftIcon:Oq,ColumnInsertRightIcon:Tq,Columns1Icon:Rq,Columns2Icon:Eq,Columns3Icon:Vq,ColumnsOffIcon:_q,ColumnsIcon:Wq,CometIcon:Xq,CommandOffIcon:qq,CommandIcon:Yq,CompassOffIcon:Gq,CompassIcon:Uq,ComponentsOffIcon:Zq,ComponentsIcon:Kq,Cone2Icon:Qq,ConeOffIcon:Jq,ConePlusIcon:tY,ConeIcon:eY,ConfettiOffIcon:nY,ConfettiIcon:lY,ConfuciusIcon:rY,ContainerOffIcon:oY,ContainerIcon:sY,Contrast2OffIcon:aY,Contrast2Icon:iY,ContrastOffIcon:hY,ContrastIcon:dY,CookerIcon:cY,CookieManIcon:uY,CookieOffIcon:pY,CookieIcon:gY,CopyOffIcon:wY,CopyIcon:vY,CopyleftFilledIcon:fY,CopyleftOffIcon:mY,CopyleftIcon:kY,CopyrightFilledIcon:bY,CopyrightOffIcon:MY,CopyrightIcon:xY,CornerDownLeftDoubleIcon:zY,CornerDownLeftIcon:IY,CornerDownRightDoubleIcon:yY,CornerDownRightIcon:CY,CornerLeftDownDoubleIcon:SY,CornerLeftDownIcon:$Y,CornerLeftUpDoubleIcon:AY,CornerLeftUpIcon:BY,CornerRightDownDoubleIcon:HY,CornerRightDownIcon:NY,CornerRightUpDoubleIcon:jY,CornerRightUpIcon:PY,CornerUpLeftDoubleIcon:LY,CornerUpLeftIcon:DY,CornerUpRightDoubleIcon:FY,CornerUpRightIcon:OY,Cpu2Icon:TY,CpuOffIcon:RY,CpuIcon:EY,CraneOffIcon:VY,CraneIcon:_Y,CreativeCommonsByIcon:WY,CreativeCommonsNcIcon:XY,CreativeCommonsNdIcon:qY,CreativeCommonsOffIcon:YY,CreativeCommonsSaIcon:GY,CreativeCommonsZeroIcon:UY,CreativeCommonsIcon:ZY,CreditCardOffIcon:KY,CreditCardIcon:QY,CricketIcon:JY,CropIcon:tG,CrossFilledIcon:eG,CrossOffIcon:nG,CrossIcon:lG,CrosshairIcon:rG,CrownOffIcon:oG,CrownIcon:sG,CrutchesOffIcon:aG,CrutchesIcon:iG,CrystalBallIcon:hG,CsvIcon:dG,CubeOffIcon:cG,CubePlusIcon:uG,CubeSendIcon:pG,CubeUnfoldedIcon:gG,CubeIcon:wG,CupOffIcon:vG,CupIcon:fG,CurlingIcon:mG,CurlyLoopIcon:kG,CurrencyAfghaniIcon:bG,CurrencyBahrainiIcon:MG,CurrencyBahtIcon:xG,CurrencyBitcoinIcon:zG,CurrencyCentIcon:IG,CurrencyDinarIcon:yG,CurrencyDirhamIcon:CG,CurrencyDogecoinIcon:SG,CurrencyDollarAustralianIcon:$G,CurrencyDollarBruneiIcon:AG,CurrencyDollarCanadianIcon:BG,CurrencyDollarGuyaneseIcon:HG,CurrencyDollarOffIcon:NG,CurrencyDollarSingaporeIcon:jG,CurrencyDollarZimbabweanIcon:PG,CurrencyDollarIcon:LG,CurrencyDongIcon:DG,CurrencyDramIcon:FG,CurrencyEthereumIcon:OG,CurrencyEuroOffIcon:TG,CurrencyEuroIcon:RG,CurrencyForintIcon:EG,CurrencyFrankIcon:VG,CurrencyGuaraniIcon:_G,CurrencyHryvniaIcon:WG,CurrencyIranianRialIcon:XG,CurrencyKipIcon:qG,CurrencyKroneCzechIcon:YG,CurrencyKroneDanishIcon:GG,CurrencyKroneSwedishIcon:UG,CurrencyLariIcon:ZG,CurrencyLeuIcon:KG,CurrencyLiraIcon:QG,CurrencyLitecoinIcon:JG,CurrencyLydIcon:tU,CurrencyManatIcon:eU,CurrencyMoneroIcon:nU,CurrencyNairaIcon:lU,CurrencyNanoIcon:rU,CurrencyOffIcon:oU,CurrencyPaangaIcon:sU,CurrencyPesoIcon:aU,CurrencyPoundOffIcon:iU,CurrencyPoundIcon:hU,CurrencyQuetzalIcon:dU,CurrencyRealIcon:cU,CurrencyRenminbiIcon:uU,CurrencyRippleIcon:pU,CurrencyRiyalIcon:gU,CurrencyRubelIcon:wU,CurrencyRufiyaaIcon:vU,CurrencyRupeeNepaleseIcon:fU,CurrencyRupeeIcon:mU,CurrencyShekelIcon:kU,CurrencySolanaIcon:bU,CurrencySomIcon:MU,CurrencyTakaIcon:xU,CurrencyTengeIcon:zU,CurrencyTugrikIcon:IU,CurrencyWonIcon:yU,CurrencyYenOffIcon:CU,CurrencyYenIcon:SU,CurrencyYuanIcon:$U,CurrencyZlotyIcon:AU,CurrencyIcon:BU,CurrentLocationOffIcon:HU,CurrentLocationIcon:NU,CursorOffIcon:jU,CursorTextIcon:PU,CutIcon:LU,CylinderOffIcon:DU,CylinderPlusIcon:FU,CylinderIcon:OU,DashboardOffIcon:TU,DashboardIcon:RU,DatabaseCogIcon:EU,DatabaseDollarIcon:VU,DatabaseEditIcon:_U,DatabaseExclamationIcon:WU,DatabaseExportIcon:XU,DatabaseHeartIcon:qU,DatabaseImportIcon:YU,DatabaseLeakIcon:GU,DatabaseMinusIcon:UU,DatabaseOffIcon:ZU,DatabasePlusIcon:KU,DatabaseSearchIcon:QU,DatabaseShareIcon:JU,DatabaseStarIcon:tZ,DatabaseXIcon:eZ,DatabaseIcon:nZ,DecimalIcon:lZ,DeerIcon:rZ,DeltaIcon:oZ,DentalBrokenIcon:sZ,DentalOffIcon:aZ,DentalIcon:iZ,DeselectIcon:hZ,DetailsOffIcon:dZ,DetailsIcon:cZ,DeviceAirpodsCaseIcon:uZ,DeviceAirpodsIcon:pZ,DeviceAnalyticsIcon:gZ,DeviceAudioTapeIcon:wZ,DeviceCameraPhoneIcon:vZ,DeviceCctvOffIcon:fZ,DeviceCctvIcon:mZ,DeviceComputerCameraOffIcon:kZ,DeviceComputerCameraIcon:bZ,DeviceDesktopAnalyticsIcon:MZ,DeviceDesktopBoltIcon:xZ,DeviceDesktopCancelIcon:zZ,DeviceDesktopCheckIcon:IZ,DeviceDesktopCodeIcon:yZ,DeviceDesktopCogIcon:CZ,DeviceDesktopDollarIcon:SZ,DeviceDesktopDownIcon:$Z,DeviceDesktopExclamationIcon:AZ,DeviceDesktopHeartIcon:BZ,DeviceDesktopMinusIcon:HZ,DeviceDesktopOffIcon:NZ,DeviceDesktopPauseIcon:jZ,DeviceDesktopPinIcon:PZ,DeviceDesktopPlusIcon:LZ,DeviceDesktopQuestionIcon:DZ,DeviceDesktopSearchIcon:FZ,DeviceDesktopShareIcon:OZ,DeviceDesktopStarIcon:TZ,DeviceDesktopUpIcon:RZ,DeviceDesktopXIcon:EZ,DeviceDesktopIcon:VZ,DeviceFloppyIcon:_Z,DeviceGamepad2Icon:WZ,DeviceGamepadIcon:XZ,DeviceHeartMonitorFilledIcon:qZ,DeviceHeartMonitorIcon:YZ,DeviceImacBoltIcon:GZ,DeviceImacCancelIcon:UZ,DeviceImacCheckIcon:ZZ,DeviceImacCodeIcon:KZ,DeviceImacCogIcon:QZ,DeviceImacDollarIcon:JZ,DeviceImacDownIcon:tK,DeviceImacExclamationIcon:eK,DeviceImacHeartIcon:nK,DeviceImacMinusIcon:lK,DeviceImacOffIcon:rK,DeviceImacPauseIcon:oK,DeviceImacPinIcon:sK,DeviceImacPlusIcon:aK,DeviceImacQuestionIcon:iK,DeviceImacSearchIcon:hK,DeviceImacShareIcon:dK,DeviceImacStarIcon:cK,DeviceImacUpIcon:uK,DeviceImacXIcon:pK,DeviceImacIcon:gK,DeviceIpadBoltIcon:wK,DeviceIpadCancelIcon:vK,DeviceIpadCheckIcon:fK,DeviceIpadCodeIcon:mK,DeviceIpadCogIcon:kK,DeviceIpadDollarIcon:bK,DeviceIpadDownIcon:MK,DeviceIpadExclamationIcon:xK,DeviceIpadHeartIcon:zK,DeviceIpadHorizontalBoltIcon:IK,DeviceIpadHorizontalCancelIcon:yK,DeviceIpadHorizontalCheckIcon:CK,DeviceIpadHorizontalCodeIcon:SK,DeviceIpadHorizontalCogIcon:$K,DeviceIpadHorizontalDollarIcon:AK,DeviceIpadHorizontalDownIcon:BK,DeviceIpadHorizontalExclamationIcon:HK,DeviceIpadHorizontalHeartIcon:NK,DeviceIpadHorizontalMinusIcon:jK,DeviceIpadHorizontalOffIcon:PK,DeviceIpadHorizontalPauseIcon:LK,DeviceIpadHorizontalPinIcon:DK,DeviceIpadHorizontalPlusIcon:FK,DeviceIpadHorizontalQuestionIcon:OK,DeviceIpadHorizontalSearchIcon:TK,DeviceIpadHorizontalShareIcon:RK,DeviceIpadHorizontalStarIcon:EK,DeviceIpadHorizontalUpIcon:VK,DeviceIpadHorizontalXIcon:_K,DeviceIpadHorizontalIcon:WK,DeviceIpadMinusIcon:XK,DeviceIpadOffIcon:qK,DeviceIpadPauseIcon:YK,DeviceIpadPinIcon:GK,DeviceIpadPlusIcon:UK,DeviceIpadQuestionIcon:ZK,DeviceIpadSearchIcon:KK,DeviceIpadShareIcon:QK,DeviceIpadStarIcon:JK,DeviceIpadUpIcon:tQ,DeviceIpadXIcon:eQ,DeviceIpadIcon:nQ,DeviceLandlinePhoneIcon:lQ,DeviceLaptopOffIcon:rQ,DeviceLaptopIcon:oQ,DeviceMobileBoltIcon:sQ,DeviceMobileCancelIcon:aQ,DeviceMobileChargingIcon:iQ,DeviceMobileCheckIcon:hQ,DeviceMobileCodeIcon:dQ,DeviceMobileCogIcon:cQ,DeviceMobileDollarIcon:uQ,DeviceMobileDownIcon:pQ,DeviceMobileExclamationIcon:gQ,DeviceMobileFilledIcon:wQ,DeviceMobileHeartIcon:vQ,DeviceMobileMessageIcon:fQ,DeviceMobileMinusIcon:mQ,DeviceMobileOffIcon:kQ,DeviceMobilePauseIcon:bQ,DeviceMobilePinIcon:MQ,DeviceMobilePlusIcon:xQ,DeviceMobileQuestionIcon:zQ,DeviceMobileRotatedIcon:IQ,DeviceMobileSearchIcon:yQ,DeviceMobileShareIcon:CQ,DeviceMobileStarIcon:SQ,DeviceMobileUpIcon:$Q,DeviceMobileVibrationIcon:AQ,DeviceMobileXIcon:BQ,DeviceMobileIcon:HQ,DeviceNintendoOffIcon:NQ,DeviceNintendoIcon:jQ,DeviceRemoteIcon:PQ,DeviceSdCardIcon:LQ,DeviceSim1Icon:DQ,DeviceSim2Icon:FQ,DeviceSim3Icon:OQ,DeviceSimIcon:TQ,DeviceSpeakerOffIcon:RQ,DeviceSpeakerIcon:EQ,DeviceTabletBoltIcon:VQ,DeviceTabletCancelIcon:_Q,DeviceTabletCheckIcon:WQ,DeviceTabletCodeIcon:XQ,DeviceTabletCogIcon:qQ,DeviceTabletDollarIcon:YQ,DeviceTabletDownIcon:GQ,DeviceTabletExclamationIcon:UQ,DeviceTabletFilledIcon:ZQ,DeviceTabletHeartIcon:KQ,DeviceTabletMinusIcon:QQ,DeviceTabletOffIcon:JQ,DeviceTabletPauseIcon:tJ,DeviceTabletPinIcon:eJ,DeviceTabletPlusIcon:nJ,DeviceTabletQuestionIcon:lJ,DeviceTabletSearchIcon:rJ,DeviceTabletShareIcon:oJ,DeviceTabletStarIcon:sJ,DeviceTabletUpIcon:aJ,DeviceTabletXIcon:iJ,DeviceTabletIcon:hJ,DeviceTvOffIcon:dJ,DeviceTvOldIcon:cJ,DeviceTvIcon:uJ,DeviceWatchBoltIcon:pJ,DeviceWatchCancelIcon:gJ,DeviceWatchCheckIcon:wJ,DeviceWatchCodeIcon:vJ,DeviceWatchCogIcon:fJ,DeviceWatchDollarIcon:mJ,DeviceWatchDownIcon:kJ,DeviceWatchExclamationIcon:bJ,DeviceWatchHeartIcon:MJ,DeviceWatchMinusIcon:xJ,DeviceWatchOffIcon:zJ,DeviceWatchPauseIcon:IJ,DeviceWatchPinIcon:yJ,DeviceWatchPlusIcon:CJ,DeviceWatchQuestionIcon:SJ,DeviceWatchSearchIcon:$J,DeviceWatchShareIcon:AJ,DeviceWatchStarIcon:BJ,DeviceWatchStats2Icon:HJ,DeviceWatchStatsIcon:NJ,DeviceWatchUpIcon:jJ,DeviceWatchXIcon:PJ,DeviceWatchIcon:LJ,Devices2Icon:DJ,DevicesBoltIcon:FJ,DevicesCancelIcon:OJ,DevicesCheckIcon:TJ,DevicesCodeIcon:RJ,DevicesCogIcon:EJ,DevicesDollarIcon:VJ,DevicesDownIcon:_J,DevicesExclamationIcon:WJ,DevicesHeartIcon:XJ,DevicesMinusIcon:qJ,DevicesOffIcon:YJ,DevicesPauseIcon:GJ,DevicesPcOffIcon:UJ,DevicesPcIcon:ZJ,DevicesPinIcon:KJ,DevicesPlusIcon:QJ,DevicesQuestionIcon:JJ,DevicesSearchIcon:ttt,DevicesShareIcon:ett,DevicesStarIcon:ntt,DevicesUpIcon:ltt,DevicesXIcon:rtt,DevicesIcon:ott,DiaboloOffIcon:stt,DiaboloPlusIcon:att,DiaboloIcon:itt,DialpadFilledIcon:htt,DialpadOffIcon:dtt,DialpadIcon:ctt,DiamondFilledIcon:utt,DiamondOffIcon:ptt,DiamondIcon:gtt,DiamondsFilledIcon:wtt,DiamondsIcon:vtt,Dice1FilledIcon:ftt,Dice1Icon:mtt,Dice2FilledIcon:ktt,Dice2Icon:btt,Dice3FilledIcon:Mtt,Dice3Icon:xtt,Dice4FilledIcon:ztt,Dice4Icon:Itt,Dice5FilledIcon:ytt,Dice5Icon:Ctt,Dice6FilledIcon:Stt,Dice6Icon:$tt,DiceFilledIcon:Att,DiceIcon:Btt,DimensionsIcon:Htt,DirectionHorizontalIcon:Ntt,DirectionSignFilledIcon:jtt,DirectionSignOffIcon:Ptt,DirectionSignIcon:Ltt,DirectionIcon:Dtt,DirectionsOffIcon:Ftt,DirectionsIcon:Ott,Disabled2Icon:Ttt,DisabledOffIcon:Rtt,DisabledIcon:Ett,DiscGolfIcon:Vtt,DiscOffIcon:_tt,DiscIcon:Wtt,Discount2OffIcon:Xtt,Discount2Icon:qtt,DiscountCheckFilledIcon:Ytt,DiscountCheckIcon:Gtt,DiscountOffIcon:Utt,DiscountIcon:Ztt,DivideIcon:Ktt,Dna2OffIcon:Qtt,Dna2Icon:Jtt,DnaOffIcon:tet,DnaIcon:eet,DogBowlIcon:net,DogIcon:ret,DoorEnterIcon:oet,DoorExitIcon:set,DoorOffIcon:aet,DoorIcon:iet,DotsCircleHorizontalIcon:het,DotsDiagonal2Icon:det,DotsDiagonalIcon:cet,DotsVerticalIcon:uet,DotsIcon:pet,DownloadOffIcon:get,DownloadIcon:wet,DragDrop2Icon:vet,DragDropIcon:fet,DroneOffIcon:met,DroneIcon:ket,DropCircleIcon:bet,DropletBoltIcon:Met,DropletCancelIcon:xet,DropletCheckIcon:zet,DropletCodeIcon:Iet,DropletCogIcon:yet,DropletDollarIcon:Cet,DropletDownIcon:$et,DropletExclamationIcon:Aet,DropletFilled2Icon:Bet,DropletFilledIcon:Het,DropletHalf2Icon:Net,DropletHalfFilledIcon:jet,DropletHalfIcon:Pet,DropletHeartIcon:Let,DropletMinusIcon:Det,DropletOffIcon:Fet,DropletPauseIcon:Oet,DropletPinIcon:Tet,DropletPlusIcon:Ret,DropletQuestionIcon:Eet,DropletSearchIcon:Vet,DropletShareIcon:_et,DropletStarIcon:Wet,DropletUpIcon:Xet,DropletXIcon:qet,DropletIcon:Yet,DualScreenIcon:Get,EPassportIcon:Uet,EarOffIcon:Zet,EarIcon:Ket,EaseInControlPointIcon:Qet,EaseInOutControlPointsIcon:Jet,EaseInOutIcon:tnt,EaseInIcon:ent,EaseOutControlPointIcon:nnt,EaseOutIcon:lnt,EditCircleOffIcon:rnt,EditCircleIcon:ont,EditOffIcon:snt,EditIcon:ant,EggCrackedIcon:int,EggFilledIcon:hnt,EggFriedIcon:dnt,EggOffIcon:cnt,EggIcon:unt,EggsIcon:pnt,ElevatorOffIcon:gnt,ElevatorIcon:wnt,EmergencyBedIcon:vnt,EmpathizeOffIcon:fnt,EmpathizeIcon:mnt,EmphasisIcon:knt,EngineOffIcon:bnt,EngineIcon:Mnt,EqualDoubleIcon:xnt,EqualNotIcon:znt,EqualIcon:Int,EraserOffIcon:ynt,EraserIcon:Cnt,Error404OffIcon:Snt,Error404Icon:$nt,ExchangeOffIcon:Ant,ExchangeIcon:Bnt,ExclamationCircleIcon:Hnt,ExclamationMarkOffIcon:Nnt,ExclamationMarkIcon:jnt,ExplicitOffIcon:Pnt,ExplicitIcon:Lnt,Exposure0Icon:Dnt,ExposureMinus1Icon:Fnt,ExposureMinus2Icon:Ont,ExposureOffIcon:Tnt,ExposurePlus1Icon:Rnt,ExposurePlus2Icon:Ent,ExposureIcon:Vnt,ExternalLinkOffIcon:_nt,ExternalLinkIcon:Wnt,EyeCheckIcon:Xnt,EyeClosedIcon:qnt,EyeCogIcon:Ynt,EyeEditIcon:Gnt,EyeExclamationIcon:Unt,EyeFilledIcon:Znt,EyeHeartIcon:Knt,EyeOffIcon:Qnt,EyeTableIcon:Jnt,EyeXIcon:tlt,EyeIcon:elt,Eyeglass2Icon:nlt,EyeglassOffIcon:llt,EyeglassIcon:rlt,FaceIdErrorIcon:olt,FaceIdIcon:slt,FaceMaskOffIcon:alt,FaceMaskIcon:ilt,FallIcon:hlt,FeatherOffIcon:dlt,FeatherIcon:clt,FenceOffIcon:ult,FenceIcon:plt,FidgetSpinnerIcon:glt,File3dIcon:wlt,FileAlertIcon:vlt,FileAnalyticsIcon:flt,FileArrowLeftIcon:mlt,FileArrowRightIcon:klt,FileBarcodeIcon:blt,FileBrokenIcon:Mlt,FileCertificateIcon:xlt,FileChartIcon:zlt,FileCheckIcon:Ilt,FileCode2Icon:ylt,FileCodeIcon:Clt,FileCvIcon:Slt,FileDatabaseIcon:$lt,FileDeltaIcon:Alt,FileDescriptionIcon:Blt,FileDiffIcon:Hlt,FileDigitIcon:Nlt,FileDislikeIcon:jlt,FileDollarIcon:Plt,FileDotsIcon:Llt,FileDownloadIcon:Dlt,FileEuroIcon:Flt,FileExportIcon:Olt,FileFilledIcon:Tlt,FileFunctionIcon:Rlt,FileHorizontalIcon:Elt,FileImportIcon:Vlt,FileInfinityIcon:_lt,FileInfoIcon:Wlt,FileInvoiceIcon:Xlt,FileLambdaIcon:qlt,FileLikeIcon:Ylt,FileMinusIcon:Glt,FileMusicIcon:Ult,FileOffIcon:Zlt,FileOrientationIcon:Klt,FilePencilIcon:Qlt,FilePercentIcon:Jlt,FilePhoneIcon:trt,FilePlusIcon:ert,FilePowerIcon:nrt,FileReportIcon:lrt,FileRssIcon:rrt,FileScissorsIcon:ort,FileSearchIcon:srt,FileSettingsIcon:art,FileShredderIcon:irt,FileSignalIcon:hrt,FileSpreadsheetIcon:drt,FileStackIcon:crt,FileStarIcon:urt,FileSymlinkIcon:prt,FileTextAiIcon:grt,FileTextIcon:wrt,FileTimeIcon:vrt,FileTypographyIcon:frt,FileUnknownIcon:mrt,FileUploadIcon:krt,FileVectorIcon:brt,FileXFilledIcon:Mrt,FileXIcon:xrt,FileZipIcon:zrt,FileIcon:Irt,FilesOffIcon:yrt,FilesIcon:Crt,FilterCogIcon:Srt,FilterDollarIcon:$rt,FilterEditIcon:Art,FilterMinusIcon:Brt,FilterOffIcon:Hrt,FilterPlusIcon:Nrt,FilterStarIcon:jrt,FilterXIcon:Prt,FilterIcon:Lrt,FiltersIcon:Drt,FingerprintOffIcon:Frt,FingerprintIcon:Ort,FireHydrantOffIcon:Trt,FireHydrantIcon:Rrt,FiretruckIcon:Ert,FirstAidKitOffIcon:Vrt,FirstAidKitIcon:_rt,FishBoneIcon:Wrt,FishChristianityIcon:Xrt,FishHookOffIcon:qrt,FishHookIcon:Yrt,FishOffIcon:Grt,FishIcon:Urt,Flag2FilledIcon:Zrt,Flag2OffIcon:Krt,Flag2Icon:Qrt,Flag3FilledIcon:Jrt,Flag3Icon:tot,FlagFilledIcon:eot,FlagOffIcon:not,FlagIcon:lot,FlameOffIcon:rot,FlameIcon:oot,FlareIcon:sot,Flask2OffIcon:aot,Flask2Icon:iot,FlaskOffIcon:hot,FlaskIcon:dot,FlipFlopsIcon:cot,FlipHorizontalIcon:uot,FlipVerticalIcon:pot,FloatCenterIcon:got,FloatLeftIcon:wot,FloatNoneIcon:vot,FloatRightIcon:fot,FlowerOffIcon:mot,FlowerIcon:kot,Focus2Icon:bot,FocusAutoIcon:Mot,FocusCenteredIcon:xot,FocusIcon:zot,FoldDownIcon:Iot,FoldUpIcon:yot,FoldIcon:Cot,FolderBoltIcon:Sot,FolderCancelIcon:$ot,FolderCheckIcon:Aot,FolderCodeIcon:Bot,FolderCogIcon:Hot,FolderDollarIcon:Not,FolderDownIcon:jot,FolderExclamationIcon:Pot,FolderFilledIcon:Lot,FolderHeartIcon:Dot,FolderMinusIcon:Fot,FolderOffIcon:Oot,FolderPauseIcon:Tot,FolderPinIcon:Rot,FolderPlusIcon:Eot,FolderQuestionIcon:Vot,FolderSearchIcon:_ot,FolderShareIcon:Wot,FolderStarIcon:Xot,FolderSymlinkIcon:qot,FolderUpIcon:Yot,FolderXIcon:Got,FolderIcon:Uot,FoldersOffIcon:Zot,FoldersIcon:Kot,Forbid2Icon:Qot,ForbidIcon:Jot,ForkliftIcon:tst,FormsIcon:est,FountainOffIcon:nst,FountainIcon:lst,FrameOffIcon:rst,FrameIcon:ost,FreeRightsIcon:sst,FreezeColumnIcon:ast,FreezeRowColumnIcon:ist,FreezeRowIcon:hst,FridgeOffIcon:dst,FridgeIcon:cst,FriendsOffIcon:ust,FriendsIcon:pst,FrustumOffIcon:gst,FrustumPlusIcon:wst,FrustumIcon:vst,FunctionOffIcon:fst,FunctionIcon:mst,GardenCartOffIcon:kst,GardenCartIcon:bst,GasStationOffIcon:Mst,GasStationIcon:xst,GaugeOffIcon:zst,GaugeIcon:Ist,GavelIcon:yst,GenderAgenderIcon:Cst,GenderAndrogyneIcon:Sst,GenderBigenderIcon:$st,GenderDemiboyIcon:Ast,GenderDemigirlIcon:Bst,GenderEpiceneIcon:Hst,GenderFemaleIcon:Nst,GenderFemmeIcon:jst,GenderGenderfluidIcon:Pst,GenderGenderlessIcon:Lst,GenderGenderqueerIcon:Dst,GenderHermaphroditeIcon:Fst,GenderIntergenderIcon:Ost,GenderMaleIcon:Tst,GenderNeutroisIcon:Rst,GenderThirdIcon:Est,GenderTransgenderIcon:Vst,GenderTrasvestiIcon:_st,GeometryIcon:Wst,Ghost2FilledIcon:Xst,Ghost2Icon:qst,GhostFilledIcon:Yst,GhostOffIcon:Gst,GhostIcon:Ust,GifIcon:Zst,GiftCardIcon:Kst,GiftOffIcon:Qst,GiftIcon:Jst,GitBranchDeletedIcon:tat,GitBranchIcon:eat,GitCherryPickIcon:nat,GitCommitIcon:lat,GitCompareIcon:rat,GitForkIcon:oat,GitMergeIcon:sat,GitPullRequestClosedIcon:aat,GitPullRequestDraftIcon:iat,GitPullRequestIcon:hat,GizmoIcon:dat,GlassFullIcon:cat,GlassOffIcon:uat,GlassIcon:pat,GlobeOffIcon:gat,GlobeIcon:wat,GoGameIcon:vat,GolfOffIcon:fat,GolfIcon:mat,GpsIcon:kat,GradienterIcon:bat,GrainIcon:Mat,GraphOffIcon:xat,GraphIcon:zat,Grave2Icon:Iat,GraveIcon:yat,GridDotsIcon:Cat,GridPatternIcon:Sat,GrillForkIcon:$at,GrillOffIcon:Aat,GrillSpatulaIcon:Bat,GrillIcon:Hat,GripHorizontalIcon:Nat,GripVerticalIcon:jat,GrowthIcon:Pat,GuitarPickFilledIcon:Lat,GuitarPickIcon:Dat,H1Icon:Fat,H2Icon:Oat,H3Icon:Tat,H4Icon:Rat,H5Icon:Eat,H6Icon:Vat,HammerOffIcon:_at,HammerIcon:Wat,HandClickIcon:Xat,HandFingerOffIcon:qat,HandFingerIcon:Yat,HandGrabIcon:Gat,HandLittleFingerIcon:Uat,HandMiddleFingerIcon:Zat,HandMoveIcon:Kat,HandOffIcon:Qat,HandRingFingerIcon:Jat,HandRockIcon:tit,HandSanitizerIcon:eit,HandStopIcon:nit,HandThreeFingersIcon:lit,HandTwoFingersIcon:rit,Hanger2Icon:oit,HangerOffIcon:sit,HangerIcon:ait,HashIcon:iit,HazeIcon:hit,HdrIcon:dit,HeadingOffIcon:cit,HeadingIcon:uit,HeadphonesFilledIcon:pit,HeadphonesOffIcon:git,HeadphonesIcon:wit,HeadsetOffIcon:vit,HeadsetIcon:fit,HealthRecognitionIcon:mit,HeartBrokenIcon:kit,HeartFilledIcon:bit,HeartHandshakeIcon:Mit,HeartMinusIcon:xit,HeartOffIcon:zit,HeartPlusIcon:Iit,HeartRateMonitorIcon:yit,HeartIcon:Cit,HeartbeatIcon:Sit,HeartsOffIcon:$it,HeartsIcon:Ait,HelicopterLandingIcon:Bit,HelicopterIcon:Hit,HelmetOffIcon:Nit,HelmetIcon:jit,HelpCircleFilledIcon:Pit,HelpCircleIcon:Lit,HelpHexagonFilledIcon:Dit,HelpHexagonIcon:Fit,HelpOctagonFilledIcon:Oit,HelpOctagonIcon:Tit,HelpOffIcon:Rit,HelpSmallIcon:Eit,HelpSquareFilledIcon:Vit,HelpSquareRoundedFilledIcon:_it,HelpSquareRoundedIcon:Wit,HelpSquareIcon:Xit,HelpTriangleFilledIcon:qit,HelpTriangleIcon:Yit,HelpIcon:Git,HemisphereOffIcon:Uit,HemispherePlusIcon:Zit,HemisphereIcon:Kit,Hexagon0FilledIcon:Qit,Hexagon1FilledIcon:Jit,Hexagon2FilledIcon:t0t,Hexagon3FilledIcon:e0t,Hexagon3dIcon:n0t,Hexagon4FilledIcon:l0t,Hexagon5FilledIcon:r0t,Hexagon6FilledIcon:o0t,Hexagon7FilledIcon:s0t,Hexagon8FilledIcon:a0t,Hexagon9FilledIcon:i0t,HexagonFilledIcon:h0t,HexagonLetterAIcon:d0t,HexagonLetterBIcon:c0t,HexagonLetterCIcon:u0t,HexagonLetterDIcon:p0t,HexagonLetterEIcon:g0t,HexagonLetterFIcon:w0t,HexagonLetterGIcon:v0t,HexagonLetterHIcon:f0t,HexagonLetterIIcon:m0t,HexagonLetterJIcon:k0t,HexagonLetterKIcon:b0t,HexagonLetterLIcon:M0t,HexagonLetterMIcon:x0t,HexagonLetterNIcon:z0t,HexagonLetterOIcon:I0t,HexagonLetterPIcon:y0t,HexagonLetterQIcon:C0t,HexagonLetterRIcon:S0t,HexagonLetterSIcon:$0t,HexagonLetterTIcon:A0t,HexagonLetterUIcon:B0t,HexagonLetterVIcon:H0t,HexagonLetterWIcon:N0t,HexagonLetterXIcon:j0t,HexagonLetterYIcon:P0t,HexagonLetterZIcon:L0t,HexagonNumber0Icon:D0t,HexagonNumber1Icon:F0t,HexagonNumber2Icon:O0t,HexagonNumber3Icon:T0t,HexagonNumber4Icon:R0t,HexagonNumber5Icon:E0t,HexagonNumber6Icon:V0t,HexagonNumber7Icon:_0t,HexagonNumber8Icon:W0t,HexagonNumber9Icon:X0t,HexagonOffIcon:q0t,HexagonIcon:Y0t,HexagonalPrismOffIcon:G0t,HexagonalPrismPlusIcon:U0t,HexagonalPrismIcon:Z0t,HexagonalPyramidOffIcon:K0t,HexagonalPyramidPlusIcon:Q0t,HexagonalPyramidIcon:J0t,HexagonsOffIcon:tht,HexagonsIcon:eht,Hierarchy2Icon:nht,Hierarchy3Icon:lht,HierarchyOffIcon:rht,HierarchyIcon:oht,HighlightOffIcon:sht,HighlightIcon:aht,HistoryOffIcon:iht,HistoryToggleIcon:hht,HistoryIcon:dht,Home2Icon:cht,HomeBoltIcon:uht,HomeCancelIcon:pht,HomeCheckIcon:ght,HomeCogIcon:wht,HomeDollarIcon:vht,HomeDotIcon:fht,HomeDownIcon:mht,HomeEcoIcon:kht,HomeEditIcon:bht,HomeExclamationIcon:Mht,HomeHandIcon:xht,HomeHeartIcon:zht,HomeInfinityIcon:Iht,HomeLinkIcon:yht,HomeMinusIcon:Cht,HomeMoveIcon:Sht,HomeOffIcon:$ht,HomePlusIcon:Aht,HomeQuestionIcon:Bht,HomeRibbonIcon:Hht,HomeSearchIcon:Nht,HomeShareIcon:jht,HomeShieldIcon:Pht,HomeSignalIcon:Lht,HomeStarIcon:Dht,HomeStatsIcon:Fht,HomeUpIcon:Oht,HomeXIcon:Tht,HomeIcon:Rht,HorseToyIcon:Eht,HotelServiceIcon:Vht,HourglassEmptyIcon:_ht,HourglassFilledIcon:Wht,HourglassHighIcon:Xht,HourglassLowIcon:qht,HourglassOffIcon:Yht,HourglassIcon:Ght,HtmlIcon:Uht,HttpConnectIcon:Zht,HttpDeleteIcon:Kht,HttpGetIcon:Qht,HttpHeadIcon:Jht,HttpOptionsIcon:t2t,HttpPatchIcon:e2t,HttpPostIcon:n2t,HttpPutIcon:l2t,HttpQueIcon:r2t,HttpTraceIcon:o2t,IceCream2Icon:s2t,IceCreamOffIcon:a2t,IceCreamIcon:i2t,IceSkatingIcon:h2t,IconsOffIcon:d2t,IconsIcon:c2t,IdBadge2Icon:u2t,IdBadgeOffIcon:p2t,IdBadgeIcon:g2t,IdOffIcon:w2t,IdIcon:v2t,InboxOffIcon:f2t,InboxIcon:m2t,IndentDecreaseIcon:k2t,IndentIncreaseIcon:b2t,InfinityOffIcon:M2t,InfinityIcon:x2t,InfoCircleFilledIcon:z2t,InfoCircleIcon:I2t,InfoHexagonFilledIcon:y2t,InfoHexagonIcon:C2t,InfoOctagonFilledIcon:S2t,InfoOctagonIcon:$2t,InfoSmallIcon:A2t,InfoSquareFilledIcon:B2t,InfoSquareRoundedFilledIcon:H2t,InfoSquareRoundedIcon:N2t,InfoSquareIcon:j2t,InfoTriangleFilledIcon:P2t,InfoTriangleIcon:L2t,InnerShadowBottomFilledIcon:D2t,InnerShadowBottomLeftFilledIcon:F2t,InnerShadowBottomLeftIcon:O2t,InnerShadowBottomRightFilledIcon:T2t,InnerShadowBottomRightIcon:R2t,InnerShadowBottomIcon:E2t,InnerShadowLeftFilledIcon:V2t,InnerShadowLeftIcon:_2t,InnerShadowRightFilledIcon:W2t,InnerShadowRightIcon:X2t,InnerShadowTopFilledIcon:q2t,InnerShadowTopLeftFilledIcon:Y2t,InnerShadowTopLeftIcon:G2t,InnerShadowTopRightFilledIcon:U2t,InnerShadowTopRightIcon:Z2t,InnerShadowTopIcon:K2t,InputSearchIcon:Q2t,Ironing1Icon:J2t,Ironing2Icon:t1t,Ironing3Icon:e1t,IroningOffIcon:n1t,IroningSteamOffIcon:l1t,IroningSteamIcon:r1t,IroningIcon:o1t,IrregularPolyhedronOffIcon:s1t,IrregularPolyhedronPlusIcon:a1t,IrregularPolyhedronIcon:i1t,ItalicIcon:h1t,JacketIcon:d1t,JetpackIcon:c1t,JewishStarFilledIcon:u1t,JewishStarIcon:p1t,JpgIcon:g1t,JsonIcon:w1t,JumpRopeIcon:v1t,KarateIcon:f1t,KayakIcon:m1t,KeringIcon:k1t,KeyOffIcon:b1t,KeyIcon:M1t,KeyboardHideIcon:x1t,KeyboardOffIcon:z1t,KeyboardShowIcon:I1t,KeyboardIcon:y1t,KeyframeAlignCenterIcon:C1t,KeyframeAlignHorizontalIcon:S1t,KeyframeAlignVerticalIcon:$1t,KeyframeIcon:A1t,KeyframesIcon:B1t,LadderOffIcon:H1t,LadderIcon:N1t,LambdaIcon:j1t,Lamp2Icon:P1t,LampOffIcon:L1t,LampIcon:D1t,LanguageHiraganaIcon:F1t,LanguageKatakanaIcon:O1t,LanguageOffIcon:T1t,LanguageIcon:R1t,LassoOffIcon:E1t,LassoPolygonIcon:V1t,LassoIcon:_1t,LayersDifferenceIcon:W1t,LayersIntersect2Icon:X1t,LayersIntersectIcon:q1t,LayersLinkedIcon:Y1t,LayersOffIcon:G1t,LayersSubtractIcon:U1t,LayersUnionIcon:Z1t,Layout2Icon:K1t,LayoutAlignBottomIcon:Q1t,LayoutAlignCenterIcon:J1t,LayoutAlignLeftIcon:tdt,LayoutAlignMiddleIcon:edt,LayoutAlignRightIcon:ndt,LayoutAlignTopIcon:ldt,LayoutBoardSplitIcon:rdt,LayoutBoardIcon:odt,LayoutBottombarCollapseIcon:sdt,LayoutBottombarExpandIcon:adt,LayoutBottombarIcon:idt,LayoutCardsIcon:hdt,LayoutCollageIcon:ddt,LayoutColumnsIcon:cdt,LayoutDashboardIcon:udt,LayoutDistributeHorizontalIcon:pdt,LayoutDistributeVerticalIcon:gdt,LayoutGridAddIcon:wdt,LayoutGridRemoveIcon:vdt,LayoutGridIcon:fdt,LayoutKanbanIcon:mdt,LayoutListIcon:kdt,LayoutNavbarCollapseIcon:bdt,LayoutNavbarExpandIcon:Mdt,LayoutNavbarIcon:xdt,LayoutOffIcon:zdt,LayoutRowsIcon:Idt,LayoutSidebarLeftCollapseIcon:ydt,LayoutSidebarLeftExpandIcon:Cdt,LayoutSidebarRightCollapseIcon:Sdt,LayoutSidebarRightExpandIcon:$dt,LayoutSidebarRightIcon:Adt,LayoutSidebarIcon:Bdt,LayoutIcon:Hdt,LeafOffIcon:Ndt,LeafIcon:jdt,LegoOffIcon:Pdt,LegoIcon:Ldt,Lemon2Icon:Ddt,LemonIcon:Fdt,LetterAIcon:Odt,LetterBIcon:Tdt,LetterCIcon:Rdt,LetterCaseLowerIcon:Edt,LetterCaseToggleIcon:Vdt,LetterCaseUpperIcon:_dt,LetterCaseIcon:Wdt,LetterDIcon:Xdt,LetterEIcon:qdt,LetterFIcon:Ydt,LetterGIcon:Gdt,LetterHIcon:Udt,LetterIIcon:Zdt,LetterJIcon:Kdt,LetterKIcon:Qdt,LetterLIcon:Jdt,LetterMIcon:tct,LetterNIcon:ect,LetterOIcon:nct,LetterPIcon:lct,LetterQIcon:rct,LetterRIcon:oct,LetterSIcon:sct,LetterSpacingIcon:act,LetterTIcon:ict,LetterUIcon:hct,LetterVIcon:dct,LetterWIcon:cct,LetterXIcon:uct,LetterYIcon:pct,LetterZIcon:gct,LicenseOffIcon:wct,LicenseIcon:vct,LifebuoyOffIcon:fct,LifebuoyIcon:mct,LighterIcon:kct,LineDashedIcon:bct,LineDottedIcon:Mct,LineHeightIcon:xct,LineIcon:zct,LinkOffIcon:Ict,LinkIcon:yct,ListCheckIcon:Cct,ListDetailsIcon:Sct,ListNumbersIcon:$ct,ListSearchIcon:Act,ListIcon:Bct,LivePhotoOffIcon:Hct,LivePhotoIcon:Nct,LiveViewIcon:jct,LoadBalancerIcon:Pct,Loader2Icon:Lct,Loader3Icon:Dct,LoaderQuarterIcon:Fct,LoaderIcon:Oct,LocationBrokenIcon:Tct,LocationFilledIcon:Rct,LocationOffIcon:Ect,LocationIcon:Vct,LockAccessOffIcon:_ct,LockAccessIcon:Wct,LockBoltIcon:Xct,LockCancelIcon:qct,LockCheckIcon:Yct,LockCodeIcon:Gct,LockCogIcon:Uct,LockDollarIcon:Zct,LockDownIcon:Kct,LockExclamationIcon:Qct,LockHeartIcon:Jct,LockMinusIcon:tut,LockOffIcon:eut,LockOpenOffIcon:nut,LockOpenIcon:lut,LockPauseIcon:rut,LockPinIcon:out,LockPlusIcon:sut,LockQuestionIcon:aut,LockSearchIcon:iut,LockShareIcon:hut,LockSquareRoundedFilledIcon:dut,LockSquareRoundedIcon:cut,LockSquareIcon:uut,LockStarIcon:put,LockUpIcon:gut,LockXIcon:wut,LockIcon:vut,LogicAndIcon:fut,LogicBufferIcon:mut,LogicNandIcon:kut,LogicNorIcon:but,LogicNotIcon:Mut,LogicOrIcon:xut,LogicXnorIcon:zut,LogicXorIcon:Iut,LoginIcon:yut,Logout2Icon:Cut,LogoutIcon:Sut,LollipopOffIcon:$ut,LollipopIcon:Aut,LuggageOffIcon:But,LuggageIcon:Hut,LungsOffIcon:Nut,LungsIcon:jut,MacroOffIcon:Put,MacroIcon:Lut,MagnetOffIcon:Dut,MagnetIcon:Fut,MailAiIcon:Out,MailBoltIcon:Tut,MailCancelIcon:Rut,MailCheckIcon:Eut,MailCodeIcon:Vut,MailCogIcon:_ut,MailDollarIcon:Wut,MailDownIcon:Xut,MailExclamationIcon:qut,MailFastIcon:Yut,MailFilledIcon:Gut,MailForwardIcon:Uut,MailHeartIcon:Zut,MailMinusIcon:Kut,MailOffIcon:Qut,MailOpenedFilledIcon:Jut,MailOpenedIcon:tpt,MailPauseIcon:ept,MailPinIcon:npt,MailPlusIcon:lpt,MailQuestionIcon:rpt,MailSearchIcon:opt,MailShareIcon:spt,MailStarIcon:apt,MailUpIcon:ipt,MailXIcon:hpt,MailIcon:dpt,MailboxOffIcon:cpt,MailboxIcon:upt,ManIcon:ppt,ManualGearboxIcon:gpt,Map2Icon:wpt,MapOffIcon:vpt,MapPinBoltIcon:fpt,MapPinCancelIcon:mpt,MapPinCheckIcon:kpt,MapPinCodeIcon:bpt,MapPinCogIcon:Mpt,MapPinDollarIcon:xpt,MapPinDownIcon:zpt,MapPinExclamationIcon:Ipt,MapPinFilledIcon:ypt,MapPinHeartIcon:Cpt,MapPinMinusIcon:Spt,MapPinOffIcon:$pt,MapPinPauseIcon:Apt,MapPinPinIcon:Bpt,MapPinPlusIcon:Hpt,MapPinQuestionIcon:Npt,MapPinSearchIcon:jpt,MapPinShareIcon:Ppt,MapPinStarIcon:Lpt,MapPinUpIcon:Dpt,MapPinXIcon:Fpt,MapPinIcon:Opt,MapPinsIcon:Tpt,MapSearchIcon:Rpt,MapIcon:Ept,MarkdownOffIcon:Vpt,MarkdownIcon:_pt,Marquee2Icon:Wpt,MarqueeOffIcon:Xpt,MarqueeIcon:qpt,MarsIcon:Ypt,MaskOffIcon:Gpt,MaskIcon:Upt,MasksTheaterOffIcon:Zpt,MasksTheaterIcon:Kpt,MassageIcon:Qpt,MatchstickIcon:Jpt,Math1Divide2Icon:t4t,Math1Divide3Icon:e4t,MathAvgIcon:n4t,MathEqualGreaterIcon:l4t,MathEqualLowerIcon:r4t,MathFunctionOffIcon:o4t,MathFunctionYIcon:s4t,MathFunctionIcon:a4t,MathGreaterIcon:i4t,MathIntegralXIcon:h4t,MathIntegralIcon:d4t,MathIntegralsIcon:c4t,MathLowerIcon:u4t,MathMaxIcon:p4t,MathMinIcon:g4t,MathNotIcon:w4t,MathOffIcon:v4t,MathPiDivide2Icon:f4t,MathPiIcon:m4t,MathSymbolsIcon:k4t,MathXDivide2Icon:b4t,MathXDivideY2Icon:M4t,MathXDivideYIcon:x4t,MathXMinusXIcon:z4t,MathXMinusYIcon:I4t,MathXPlusXIcon:y4t,MathXPlusYIcon:C4t,MathXyIcon:S4t,MathYMinusYIcon:$4t,MathYPlusYIcon:A4t,MathIcon:B4t,MaximizeOffIcon:H4t,MaximizeIcon:N4t,MeatOffIcon:j4t,MeatIcon:P4t,Medal2Icon:L4t,MedalIcon:D4t,MedicalCrossFilledIcon:F4t,MedicalCrossOffIcon:O4t,MedicalCrossIcon:T4t,MedicineSyrupIcon:R4t,MeepleIcon:E4t,MenorahIcon:V4t,Menu2Icon:_4t,MenuOrderIcon:W4t,MenuIcon:X4t,Message2BoltIcon:q4t,Message2CancelIcon:Y4t,Message2CheckIcon:G4t,Message2CodeIcon:U4t,Message2CogIcon:Z4t,Message2DollarIcon:K4t,Message2DownIcon:Q4t,Message2ExclamationIcon:J4t,Message2HeartIcon:tgt,Message2MinusIcon:egt,Message2OffIcon:ngt,Message2PauseIcon:lgt,Message2PinIcon:rgt,Message2PlusIcon:ogt,Message2QuestionIcon:sgt,Message2SearchIcon:agt,Message2ShareIcon:igt,Message2StarIcon:hgt,Message2UpIcon:dgt,Message2XIcon:cgt,Message2Icon:ugt,MessageBoltIcon:pgt,MessageCancelIcon:ggt,MessageChatbotIcon:wgt,MessageCheckIcon:vgt,MessageCircle2FilledIcon:fgt,MessageCircle2Icon:mgt,MessageCircleBoltIcon:kgt,MessageCircleCancelIcon:bgt,MessageCircleCheckIcon:Mgt,MessageCircleCodeIcon:xgt,MessageCircleCogIcon:zgt,MessageCircleDollarIcon:Igt,MessageCircleDownIcon:ygt,MessageCircleExclamationIcon:Cgt,MessageCircleHeartIcon:Sgt,MessageCircleMinusIcon:$gt,MessageCircleOffIcon:Agt,MessageCirclePauseIcon:Bgt,MessageCirclePinIcon:Hgt,MessageCirclePlusIcon:Ngt,MessageCircleQuestionIcon:jgt,MessageCircleSearchIcon:Pgt,MessageCircleShareIcon:Lgt,MessageCircleStarIcon:Dgt,MessageCircleUpIcon:Fgt,MessageCircleXIcon:Ogt,MessageCircleIcon:Tgt,MessageCodeIcon:Rgt,MessageCogIcon:Egt,MessageDollarIcon:Vgt,MessageDotsIcon:_gt,MessageDownIcon:Wgt,MessageExclamationIcon:Xgt,MessageForwardIcon:qgt,MessageHeartIcon:Ygt,MessageLanguageIcon:Ggt,MessageMinusIcon:Ugt,MessageOffIcon:Zgt,MessagePauseIcon:Kgt,MessagePinIcon:Qgt,MessagePlusIcon:Jgt,MessageQuestionIcon:twt,MessageReportIcon:ewt,MessageSearchIcon:nwt,MessageShareIcon:lwt,MessageStarIcon:rwt,MessageUpIcon:owt,MessageXIcon:swt,MessageIcon:awt,MessagesOffIcon:iwt,MessagesIcon:hwt,MeteorOffIcon:dwt,MeteorIcon:cwt,MickeyFilledIcon:uwt,MickeyIcon:pwt,Microphone2OffIcon:gwt,Microphone2Icon:wwt,MicrophoneOffIcon:vwt,MicrophoneIcon:fwt,MicroscopeOffIcon:mwt,MicroscopeIcon:kwt,MicrowaveOffIcon:bwt,MicrowaveIcon:Mwt,MilitaryAwardIcon:xwt,MilitaryRankIcon:zwt,MilkOffIcon:Iwt,MilkIcon:ywt,MilkshakeIcon:Cwt,MinimizeIcon:Swt,MinusVerticalIcon:$wt,MinusIcon:Awt,MistOffIcon:Bwt,MistIcon:Hwt,MobiledataOffIcon:Nwt,MobiledataIcon:jwt,MoneybagIcon:Pwt,MoodAngryIcon:Lwt,MoodAnnoyed2Icon:Dwt,MoodAnnoyedIcon:Fwt,MoodBoyIcon:Owt,MoodCheckIcon:Twt,MoodCogIcon:Rwt,MoodConfuzedFilledIcon:Ewt,MoodConfuzedIcon:Vwt,MoodCrazyHappyIcon:_wt,MoodCryIcon:Wwt,MoodDollarIcon:Xwt,MoodEditIcon:qwt,MoodEmptyFilledIcon:Ywt,MoodEmptyIcon:Gwt,MoodHappyFilledIcon:Uwt,MoodHappyIcon:Zwt,MoodHeartIcon:Kwt,MoodKidFilledIcon:Qwt,MoodKidIcon:Jwt,MoodLookLeftIcon:tvt,MoodLookRightIcon:evt,MoodMinusIcon:nvt,MoodNerdIcon:lvt,MoodNervousIcon:rvt,MoodNeutralFilledIcon:ovt,MoodNeutralIcon:svt,MoodOffIcon:avt,MoodPinIcon:ivt,MoodPlusIcon:hvt,MoodSad2Icon:dvt,MoodSadDizzyIcon:cvt,MoodSadFilledIcon:uvt,MoodSadSquintIcon:pvt,MoodSadIcon:gvt,MoodSearchIcon:wvt,MoodShareIcon:vvt,MoodSickIcon:fvt,MoodSilenceIcon:mvt,MoodSingIcon:kvt,MoodSmileBeamIcon:bvt,MoodSmileDizzyIcon:Mvt,MoodSmileFilledIcon:xvt,MoodSmileIcon:zvt,MoodSuprisedIcon:Ivt,MoodTongueWink2Icon:yvt,MoodTongueWinkIcon:Cvt,MoodTongueIcon:Svt,MoodUnamusedIcon:$vt,MoodUpIcon:Avt,MoodWink2Icon:Bvt,MoodWinkIcon:Hvt,MoodWrrrIcon:Nvt,MoodXIcon:jvt,MoodXdIcon:Pvt,Moon2Icon:Lvt,MoonFilledIcon:Dvt,MoonOffIcon:Fvt,MoonStarsIcon:Ovt,MoonIcon:Tvt,MopedIcon:Rvt,MotorbikeIcon:Evt,MountainOffIcon:Vvt,MountainIcon:_vt,Mouse2Icon:Wvt,MouseOffIcon:Xvt,MouseIcon:qvt,MoustacheIcon:Yvt,MovieOffIcon:Gvt,MovieIcon:Uvt,MugOffIcon:Zvt,MugIcon:Kvt,Multiplier05xIcon:Qvt,Multiplier15xIcon:Jvt,Multiplier1xIcon:t3t,Multiplier2xIcon:e3t,MushroomFilledIcon:n3t,MushroomOffIcon:l3t,MushroomIcon:r3t,MusicOffIcon:o3t,MusicIcon:s3t,NavigationFilledIcon:a3t,NavigationOffIcon:i3t,NavigationIcon:h3t,NeedleThreadIcon:d3t,NeedleIcon:c3t,NetworkOffIcon:u3t,NetworkIcon:p3t,NewSectionIcon:g3t,NewsOffIcon:w3t,NewsIcon:v3t,NfcOffIcon:f3t,NfcIcon:m3t,NoCopyrightIcon:k3t,NoCreativeCommonsIcon:b3t,NoDerivativesIcon:M3t,NorthStarIcon:x3t,NoteOffIcon:z3t,NoteIcon:I3t,NotebookOffIcon:y3t,NotebookIcon:C3t,NotesOffIcon:S3t,NotesIcon:$3t,NotificationOffIcon:A3t,NotificationIcon:B3t,Number0Icon:H3t,Number1Icon:N3t,Number2Icon:j3t,Number3Icon:P3t,Number4Icon:L3t,Number5Icon:D3t,Number6Icon:F3t,Number7Icon:O3t,Number8Icon:T3t,Number9Icon:R3t,NumberIcon:E3t,NumbersIcon:V3t,NurseIcon:_3t,OctagonFilledIcon:W3t,OctagonOffIcon:X3t,OctagonIcon:q3t,OctahedronOffIcon:Y3t,OctahedronPlusIcon:G3t,OctahedronIcon:U3t,OldIcon:Z3t,OlympicsOffIcon:K3t,OlympicsIcon:Q3t,OmIcon:J3t,OmegaIcon:tft,OutboundIcon:eft,OutletIcon:nft,OvalFilledIcon:lft,OvalVerticalFilledIcon:rft,OvalVerticalIcon:oft,OvalIcon:sft,OverlineIcon:aft,PackageExportIcon:ift,PackageImportIcon:hft,PackageOffIcon:dft,PackageIcon:cft,PackagesIcon:uft,PacmanIcon:pft,PageBreakIcon:gft,PaintFilledIcon:wft,PaintOffIcon:vft,PaintIcon:fft,PaletteOffIcon:mft,PaletteIcon:kft,PanoramaHorizontalOffIcon:bft,PanoramaHorizontalIcon:Mft,PanoramaVerticalOffIcon:xft,PanoramaVerticalIcon:zft,PaperBagOffIcon:Ift,PaperBagIcon:yft,PaperclipIcon:Cft,ParachuteOffIcon:Sft,ParachuteIcon:$ft,ParenthesesOffIcon:Aft,ParenthesesIcon:Bft,ParkingOffIcon:Hft,ParkingIcon:Nft,PasswordIcon:jft,PawFilledIcon:Pft,PawOffIcon:Lft,PawIcon:Dft,PdfIcon:Fft,PeaceIcon:Oft,PencilMinusIcon:Tft,PencilOffIcon:Rft,PencilPlusIcon:Eft,PencilIcon:Vft,Pennant2FilledIcon:_ft,Pennant2Icon:Wft,PennantFilledIcon:Xft,PennantOffIcon:qft,PennantIcon:Yft,PentagonFilledIcon:Gft,PentagonOffIcon:Uft,PentagonIcon:Zft,PentagramIcon:Kft,PepperOffIcon:Qft,PepperIcon:Jft,PercentageIcon:t5t,PerfumeIcon:e5t,PerspectiveOffIcon:n5t,PerspectiveIcon:l5t,PhoneCallIcon:r5t,PhoneCallingIcon:o5t,PhoneCheckIcon:s5t,PhoneFilledIcon:a5t,PhoneIncomingIcon:i5t,PhoneOffIcon:h5t,PhoneOutgoingIcon:d5t,PhonePauseIcon:c5t,PhonePlusIcon:u5t,PhoneXIcon:p5t,PhoneIcon:g5t,PhotoAiIcon:w5t,PhotoBoltIcon:v5t,PhotoCancelIcon:f5t,PhotoCheckIcon:m5t,PhotoCodeIcon:k5t,PhotoCogIcon:b5t,PhotoDollarIcon:M5t,PhotoDownIcon:x5t,PhotoEditIcon:z5t,PhotoExclamationIcon:I5t,PhotoFilledIcon:y5t,PhotoHeartIcon:C5t,PhotoMinusIcon:S5t,PhotoOffIcon:$5t,PhotoPauseIcon:A5t,PhotoPinIcon:B5t,PhotoPlusIcon:H5t,PhotoQuestionIcon:N5t,PhotoSearchIcon:j5t,PhotoSensor2Icon:P5t,PhotoSensor3Icon:L5t,PhotoSensorIcon:D5t,PhotoShareIcon:F5t,PhotoShieldIcon:O5t,PhotoStarIcon:T5t,PhotoUpIcon:R5t,PhotoXIcon:E5t,PhotoIcon:V5t,PhysotherapistIcon:_5t,PictureInPictureOffIcon:W5t,PictureInPictureOnIcon:X5t,PictureInPictureTopIcon:q5t,PictureInPictureIcon:Y5t,PigMoneyIcon:G5t,PigOffIcon:U5t,PigIcon:Z5t,PilcrowIcon:K5t,PillOffIcon:Q5t,PillIcon:J5t,PillsIcon:tmt,PinFilledIcon:emt,PinIcon:nmt,PingPongIcon:lmt,PinnedFilledIcon:rmt,PinnedOffIcon:omt,PinnedIcon:smt,PizzaOffIcon:amt,PizzaIcon:imt,PlaceholderIcon:hmt,PlaneArrivalIcon:dmt,PlaneDepartureIcon:cmt,PlaneInflightIcon:umt,PlaneOffIcon:pmt,PlaneTiltIcon:gmt,PlaneIcon:wmt,PlanetOffIcon:vmt,PlanetIcon:fmt,Plant2OffIcon:mmt,Plant2Icon:kmt,PlantOffIcon:bmt,PlantIcon:Mmt,PlayBasketballIcon:xmt,PlayCardOffIcon:zmt,PlayCardIcon:Imt,PlayFootballIcon:ymt,PlayHandballIcon:Cmt,PlayVolleyballIcon:Smt,PlayerEjectFilledIcon:$mt,PlayerEjectIcon:Amt,PlayerPauseFilledIcon:Bmt,PlayerPauseIcon:Hmt,PlayerPlayFilledIcon:Nmt,PlayerPlayIcon:jmt,PlayerRecordFilledIcon:Pmt,PlayerRecordIcon:Lmt,PlayerSkipBackFilledIcon:Dmt,PlayerSkipBackIcon:Fmt,PlayerSkipForwardFilledIcon:Omt,PlayerSkipForwardIcon:Tmt,PlayerStopFilledIcon:Rmt,PlayerStopIcon:Emt,PlayerTrackNextFilledIcon:Vmt,PlayerTrackNextIcon:_mt,PlayerTrackPrevFilledIcon:Wmt,PlayerTrackPrevIcon:Xmt,PlaylistAddIcon:qmt,PlaylistOffIcon:Ymt,PlaylistXIcon:Gmt,PlaylistIcon:Umt,PlaystationCircleIcon:Zmt,PlaystationSquareIcon:Kmt,PlaystationTriangleIcon:Qmt,PlaystationXIcon:Jmt,PlugConnectedXIcon:tkt,PlugConnectedIcon:ekt,PlugOffIcon:nkt,PlugXIcon:lkt,PlugIcon:rkt,PlusEqualIcon:okt,PlusMinusIcon:skt,PlusIcon:akt,PngIcon:ikt,PodiumOffIcon:hkt,PodiumIcon:dkt,PointFilledIcon:ckt,PointOffIcon:ukt,PointIcon:pkt,PointerBoltIcon:gkt,PointerCancelIcon:wkt,PointerCheckIcon:vkt,PointerCodeIcon:fkt,PointerCogIcon:mkt,PointerDollarIcon:kkt,PointerDownIcon:bkt,PointerExclamationIcon:Mkt,PointerHeartIcon:xkt,PointerMinusIcon:zkt,PointerOffIcon:Ikt,PointerPauseIcon:ykt,PointerPinIcon:Ckt,PointerPlusIcon:Skt,PointerQuestionIcon:$kt,PointerSearchIcon:Akt,PointerShareIcon:Bkt,PointerStarIcon:Hkt,PointerUpIcon:Nkt,PointerXIcon:jkt,PointerIcon:Pkt,PokeballOffIcon:Lkt,PokeballIcon:Dkt,PokerChipIcon:Fkt,PolaroidFilledIcon:Okt,PolaroidIcon:Tkt,PolygonOffIcon:Rkt,PolygonIcon:Ekt,PooIcon:Vkt,PoolOffIcon:_kt,PoolIcon:Wkt,PowerIcon:Xkt,PrayIcon:qkt,PremiumRightsIcon:Ykt,PrescriptionIcon:Gkt,PresentationAnalyticsIcon:Ukt,PresentationOffIcon:Zkt,PresentationIcon:Kkt,PrinterOffIcon:Qkt,PrinterIcon:Jkt,PrismOffIcon:t6t,PrismPlusIcon:e6t,PrismIcon:n6t,PrisonIcon:l6t,ProgressAlertIcon:r6t,ProgressBoltIcon:o6t,ProgressCheckIcon:s6t,ProgressDownIcon:a6t,ProgressHelpIcon:i6t,ProgressXIcon:h6t,ProgressIcon:d6t,PromptIcon:c6t,PropellerOffIcon:u6t,PropellerIcon:p6t,PumpkinScaryIcon:g6t,Puzzle2Icon:w6t,PuzzleFilledIcon:v6t,PuzzleOffIcon:f6t,PuzzleIcon:m6t,PyramidOffIcon:k6t,PyramidPlusIcon:b6t,PyramidIcon:M6t,QrcodeOffIcon:x6t,QrcodeIcon:z6t,QuestionMarkIcon:I6t,QuoteOffIcon:y6t,QuoteIcon:C6t,Radar2Icon:S6t,RadarOffIcon:$6t,RadarIcon:A6t,RadioOffIcon:B6t,RadioIcon:H6t,RadioactiveFilledIcon:N6t,RadioactiveOffIcon:j6t,RadioactiveIcon:P6t,RadiusBottomLeftIcon:L6t,RadiusBottomRightIcon:D6t,RadiusTopLeftIcon:F6t,RadiusTopRightIcon:O6t,RainbowOffIcon:T6t,RainbowIcon:R6t,Rating12PlusIcon:E6t,Rating14PlusIcon:V6t,Rating16PlusIcon:_6t,Rating18PlusIcon:W6t,Rating21PlusIcon:X6t,RazorElectricIcon:q6t,RazorIcon:Y6t,Receipt2Icon:G6t,ReceiptOffIcon:U6t,ReceiptRefundIcon:Z6t,ReceiptTaxIcon:K6t,ReceiptIcon:Q6t,RechargingIcon:J6t,RecordMailOffIcon:t7t,RecordMailIcon:e7t,RectangleFilledIcon:n7t,RectangleVerticalFilledIcon:l7t,RectangleVerticalIcon:r7t,RectangleIcon:o7t,RectangularPrismOffIcon:s7t,RectangularPrismPlusIcon:a7t,RectangularPrismIcon:i7t,RecycleOffIcon:h7t,RecycleIcon:d7t,RefreshAlertIcon:c7t,RefreshDotIcon:u7t,RefreshOffIcon:p7t,RefreshIcon:g7t,RegexOffIcon:w7t,RegexIcon:v7t,RegisteredIcon:f7t,RelationManyToManyIcon:m7t,RelationOneToManyIcon:k7t,RelationOneToOneIcon:b7t,ReloadIcon:M7t,RepeatOffIcon:x7t,RepeatOnceIcon:z7t,RepeatIcon:I7t,ReplaceFilledIcon:y7t,ReplaceOffIcon:C7t,ReplaceIcon:S7t,ReportAnalyticsIcon:$7t,ReportMedicalIcon:A7t,ReportMoneyIcon:B7t,ReportOffIcon:H7t,ReportSearchIcon:N7t,ReportIcon:j7t,ReservedLineIcon:P7t,ResizeIcon:L7t,RibbonHealthIcon:D7t,RingsIcon:F7t,RippleOffIcon:O7t,RippleIcon:T7t,RoadOffIcon:R7t,RoadSignIcon:E7t,RoadIcon:V7t,RobotOffIcon:_7t,RobotIcon:W7t,RocketOffIcon:X7t,RocketIcon:q7t,RollerSkatingIcon:Y7t,RollercoasterOffIcon:G7t,RollercoasterIcon:U7t,RosetteFilledIcon:Z7t,RosetteNumber0Icon:K7t,RosetteNumber1Icon:Q7t,RosetteNumber2Icon:J7t,RosetteNumber3Icon:t8t,RosetteNumber4Icon:e8t,RosetteNumber5Icon:n8t,RosetteNumber6Icon:l8t,RosetteNumber7Icon:r8t,RosetteNumber8Icon:o8t,RosetteNumber9Icon:s8t,RosetteIcon:a8t,Rotate2Icon:i8t,Rotate360Icon:h8t,RotateClockwise2Icon:d8t,RotateClockwiseIcon:c8t,RotateDotIcon:u8t,RotateRectangleIcon:p8t,RotateIcon:g8t,Route2Icon:w8t,RouteOffIcon:v8t,RouteIcon:f8t,RouterOffIcon:m8t,RouterIcon:k8t,RowInsertBottomIcon:b8t,RowInsertTopIcon:M8t,RssIcon:x8t,RubberStampOffIcon:z8t,RubberStampIcon:I8t,Ruler2OffIcon:y8t,Ruler2Icon:C8t,Ruler3Icon:S8t,RulerMeasureIcon:$8t,RulerOffIcon:A8t,RulerIcon:B8t,RunIcon:H8t,STurnDownIcon:N8t,STurnLeftIcon:j8t,STurnRightIcon:P8t,STurnUpIcon:L8t,Sailboat2Icon:D8t,SailboatOffIcon:F8t,SailboatIcon:O8t,SaladIcon:T8t,SaltIcon:R8t,SatelliteOffIcon:E8t,SatelliteIcon:V8t,SausageIcon:_8t,ScaleOffIcon:W8t,ScaleOutlineOffIcon:X8t,ScaleOutlineIcon:q8t,ScaleIcon:Y8t,ScanEyeIcon:G8t,ScanIcon:U8t,SchemaOffIcon:Z8t,SchemaIcon:K8t,SchoolBellIcon:Q8t,SchoolOffIcon:J8t,SchoolIcon:t9t,ScissorsOffIcon:e9t,ScissorsIcon:n9t,ScooterElectricIcon:l9t,ScooterIcon:r9t,ScoreboardIcon:o9t,ScreenShareOffIcon:s9t,ScreenShareIcon:a9t,ScreenshotIcon:i9t,ScribbleOffIcon:h9t,ScribbleIcon:d9t,ScriptMinusIcon:c9t,ScriptPlusIcon:u9t,ScriptXIcon:p9t,ScriptIcon:g9t,ScubaMaskOffIcon:w9t,ScubaMaskIcon:v9t,SdkIcon:f9t,SearchOffIcon:m9t,SearchIcon:k9t,SectionSignIcon:b9t,SectionIcon:M9t,SeedingOffIcon:x9t,SeedingIcon:z9t,SelectAllIcon:I9t,SelectIcon:y9t,SelectorIcon:C9t,SendOffIcon:S9t,SendIcon:$9t,SeoIcon:A9t,SeparatorHorizontalIcon:B9t,SeparatorVerticalIcon:H9t,SeparatorIcon:N9t,Server2Icon:j9t,ServerBoltIcon:P9t,ServerCogIcon:L9t,ServerOffIcon:D9t,ServerIcon:F9t,ServicemarkIcon:O9t,Settings2Icon:T9t,SettingsAutomationIcon:R9t,SettingsBoltIcon:E9t,SettingsCancelIcon:V9t,SettingsCheckIcon:_9t,SettingsCodeIcon:W9t,SettingsCogIcon:X9t,SettingsDollarIcon:q9t,SettingsDownIcon:Y9t,SettingsExclamationIcon:G9t,SettingsFilledIcon:U9t,SettingsHeartIcon:Z9t,SettingsMinusIcon:K9t,SettingsOffIcon:Q9t,SettingsPauseIcon:J9t,SettingsPinIcon:tbt,SettingsPlusIcon:ebt,SettingsQuestionIcon:nbt,SettingsSearchIcon:lbt,SettingsShareIcon:rbt,SettingsStarIcon:obt,SettingsUpIcon:sbt,SettingsXIcon:abt,SettingsIcon:ibt,ShadowOffIcon:hbt,ShadowIcon:dbt,Shape2Icon:cbt,Shape3Icon:ubt,ShapeOffIcon:pbt,ShapeIcon:gbt,Share2Icon:wbt,Share3Icon:vbt,ShareOffIcon:fbt,ShareIcon:mbt,ShiJumpingIcon:kbt,ShieldBoltIcon:bbt,ShieldCancelIcon:Mbt,ShieldCheckFilledIcon:xbt,ShieldCheckIcon:zbt,ShieldCheckeredFilledIcon:Ibt,ShieldCheckeredIcon:ybt,ShieldChevronIcon:Cbt,ShieldCodeIcon:Sbt,ShieldCogIcon:$bt,ShieldDollarIcon:Abt,ShieldDownIcon:Bbt,ShieldExclamationIcon:Hbt,ShieldFilledIcon:Nbt,ShieldHalfFilledIcon:jbt,ShieldHalfIcon:Pbt,ShieldHeartIcon:Lbt,ShieldLockFilledIcon:Dbt,ShieldLockIcon:Fbt,ShieldMinusIcon:Obt,ShieldOffIcon:Tbt,ShieldPauseIcon:Rbt,ShieldPinIcon:Ebt,ShieldPlusIcon:Vbt,ShieldQuestionIcon:_bt,ShieldSearchIcon:Wbt,ShieldShareIcon:Xbt,ShieldStarIcon:qbt,ShieldUpIcon:Ybt,ShieldXIcon:Gbt,ShieldIcon:Ubt,ShipOffIcon:Zbt,ShipIcon:Kbt,ShirtFilledIcon:Qbt,ShirtOffIcon:Jbt,ShirtSportIcon:tMt,ShirtIcon:eMt,ShoeOffIcon:nMt,ShoeIcon:lMt,ShoppingBagIcon:rMt,ShoppingCartDiscountIcon:oMt,ShoppingCartOffIcon:sMt,ShoppingCartPlusIcon:aMt,ShoppingCartXIcon:iMt,ShoppingCartIcon:hMt,ShovelIcon:dMt,ShredderIcon:cMt,SignLeftFilledIcon:uMt,SignLeftIcon:pMt,SignRightFilledIcon:gMt,SignRightIcon:wMt,Signal2gIcon:vMt,Signal3gIcon:fMt,Signal4gPlusIcon:mMt,Signal4gIcon:kMt,Signal5gIcon:bMt,Signal6gIcon:MMt,SignalEIcon:xMt,SignalGIcon:zMt,SignalHPlusIcon:IMt,SignalHIcon:yMt,SignalLteIcon:CMt,SignatureOffIcon:SMt,SignatureIcon:$Mt,SitemapOffIcon:AMt,SitemapIcon:BMt,SkateboardOffIcon:HMt,SkateboardIcon:NMt,SkullIcon:jMt,SlashIcon:PMt,SlashesIcon:LMt,SleighIcon:DMt,SliceIcon:FMt,SlideshowIcon:OMt,SmartHomeOffIcon:TMt,SmartHomeIcon:RMt,SmokingNoIcon:EMt,SmokingIcon:VMt,SnowflakeOffIcon:_Mt,SnowflakeIcon:WMt,SnowmanIcon:XMt,SoccerFieldIcon:qMt,SocialOffIcon:YMt,SocialIcon:GMt,SockIcon:UMt,SofaOffIcon:ZMt,SofaIcon:KMt,SolarPanel2Icon:QMt,SolarPanelIcon:JMt,Sort09Icon:txt,Sort90Icon:ext,SortAZIcon:nxt,SortAscending2Icon:lxt,SortAscendingLettersIcon:rxt,SortAscendingNumbersIcon:oxt,SortAscendingIcon:sxt,SortDescending2Icon:axt,SortDescendingLettersIcon:ixt,SortDescendingNumbersIcon:hxt,SortDescendingIcon:dxt,SortZAIcon:cxt,SosIcon:uxt,SoupOffIcon:pxt,SoupIcon:gxt,SourceCodeIcon:wxt,SpaceOffIcon:vxt,SpaceIcon:fxt,SpacingHorizontalIcon:mxt,SpacingVerticalIcon:kxt,SpadeFilledIcon:bxt,SpadeIcon:Mxt,SparklesIcon:xxt,SpeakerphoneIcon:zxt,SpeedboatIcon:Ixt,SphereOffIcon:yxt,SpherePlusIcon:Cxt,SphereIcon:Sxt,SpiderIcon:$xt,SpiralOffIcon:Axt,SpiralIcon:Bxt,SportBillardIcon:Hxt,SprayIcon:Nxt,SpyOffIcon:jxt,SpyIcon:Pxt,SqlIcon:Lxt,Square0FilledIcon:Dxt,Square1FilledIcon:Fxt,Square2FilledIcon:Oxt,Square3FilledIcon:Txt,Square4FilledIcon:Rxt,Square5FilledIcon:Ext,Square6FilledIcon:Vxt,Square7FilledIcon:_xt,Square8FilledIcon:Wxt,Square9FilledIcon:Xxt,SquareArrowDownIcon:qxt,SquareArrowLeftIcon:Yxt,SquareArrowRightIcon:Gxt,SquareArrowUpIcon:Uxt,SquareAsteriskIcon:Zxt,SquareCheckFilledIcon:Kxt,SquareCheckIcon:Qxt,SquareChevronDownIcon:Jxt,SquareChevronLeftIcon:tzt,SquareChevronRightIcon:ezt,SquareChevronUpIcon:nzt,SquareChevronsDownIcon:lzt,SquareChevronsLeftIcon:rzt,SquareChevronsRightIcon:ozt,SquareChevronsUpIcon:szt,SquareDotIcon:azt,SquareF0FilledIcon:izt,SquareF0Icon:hzt,SquareF1FilledIcon:dzt,SquareF1Icon:czt,SquareF2FilledIcon:uzt,SquareF2Icon:pzt,SquareF3FilledIcon:gzt,SquareF3Icon:wzt,SquareF4FilledIcon:vzt,SquareF4Icon:fzt,SquareF5FilledIcon:mzt,SquareF5Icon:kzt,SquareF6FilledIcon:bzt,SquareF6Icon:Mzt,SquareF7FilledIcon:xzt,SquareF7Icon:zzt,SquareF8FilledIcon:Izt,SquareF8Icon:yzt,SquareF9FilledIcon:Czt,SquareF9Icon:Szt,SquareForbid2Icon:$zt,SquareForbidIcon:Azt,SquareHalfIcon:Bzt,SquareKeyIcon:Hzt,SquareLetterAIcon:Nzt,SquareLetterBIcon:jzt,SquareLetterCIcon:Pzt,SquareLetterDIcon:Lzt,SquareLetterEIcon:Dzt,SquareLetterFIcon:Fzt,SquareLetterGIcon:Ozt,SquareLetterHIcon:Tzt,SquareLetterIIcon:Rzt,SquareLetterJIcon:Ezt,SquareLetterKIcon:Vzt,SquareLetterLIcon:_zt,SquareLetterMIcon:Wzt,SquareLetterNIcon:Xzt,SquareLetterOIcon:qzt,SquareLetterPIcon:Yzt,SquareLetterQIcon:Gzt,SquareLetterRIcon:Uzt,SquareLetterSIcon:Zzt,SquareLetterTIcon:Kzt,SquareLetterUIcon:Qzt,SquareLetterVIcon:Jzt,SquareLetterWIcon:tIt,SquareLetterXIcon:eIt,SquareLetterYIcon:nIt,SquareLetterZIcon:lIt,SquareMinusIcon:rIt,SquareNumber0Icon:oIt,SquareNumber1Icon:sIt,SquareNumber2Icon:aIt,SquareNumber3Icon:iIt,SquareNumber4Icon:hIt,SquareNumber5Icon:dIt,SquareNumber6Icon:cIt,SquareNumber7Icon:uIt,SquareNumber8Icon:pIt,SquareNumber9Icon:gIt,SquareOffIcon:wIt,SquarePlusIcon:vIt,SquareRoot2Icon:fIt,SquareRootIcon:mIt,SquareRotatedFilledIcon:kIt,SquareRotatedForbid2Icon:bIt,SquareRotatedForbidIcon:MIt,SquareRotatedOffIcon:xIt,SquareRotatedIcon:zIt,SquareRoundedArrowDownFilledIcon:IIt,SquareRoundedArrowDownIcon:yIt,SquareRoundedArrowLeftFilledIcon:CIt,SquareRoundedArrowLeftIcon:SIt,SquareRoundedArrowRightFilledIcon:$It,SquareRoundedArrowRightIcon:AIt,SquareRoundedArrowUpFilledIcon:BIt,SquareRoundedArrowUpIcon:HIt,SquareRoundedCheckFilledIcon:NIt,SquareRoundedCheckIcon:jIt,SquareRoundedChevronDownFilledIcon:PIt,SquareRoundedChevronDownIcon:LIt,SquareRoundedChevronLeftFilledIcon:DIt,SquareRoundedChevronLeftIcon:FIt,SquareRoundedChevronRightFilledIcon:OIt,SquareRoundedChevronRightIcon:TIt,SquareRoundedChevronUpFilledIcon:RIt,SquareRoundedChevronUpIcon:EIt,SquareRoundedChevronsDownFilledIcon:VIt,SquareRoundedChevronsDownIcon:_It,SquareRoundedChevronsLeftFilledIcon:WIt,SquareRoundedChevronsLeftIcon:XIt,SquareRoundedChevronsRightFilledIcon:qIt,SquareRoundedChevronsRightIcon:YIt,SquareRoundedChevronsUpFilledIcon:GIt,SquareRoundedChevronsUpIcon:UIt,SquareRoundedFilledIcon:ZIt,SquareRoundedLetterAIcon:KIt,SquareRoundedLetterBIcon:QIt,SquareRoundedLetterCIcon:JIt,SquareRoundedLetterDIcon:tyt,SquareRoundedLetterEIcon:eyt,SquareRoundedLetterFIcon:nyt,SquareRoundedLetterGIcon:lyt,SquareRoundedLetterHIcon:ryt,SquareRoundedLetterIIcon:oyt,SquareRoundedLetterJIcon:syt,SquareRoundedLetterKIcon:ayt,SquareRoundedLetterLIcon:iyt,SquareRoundedLetterMIcon:hyt,SquareRoundedLetterNIcon:dyt,SquareRoundedLetterOIcon:cyt,SquareRoundedLetterPIcon:uyt,SquareRoundedLetterQIcon:pyt,SquareRoundedLetterRIcon:gyt,SquareRoundedLetterSIcon:wyt,SquareRoundedLetterTIcon:vyt,SquareRoundedLetterUIcon:fyt,SquareRoundedLetterVIcon:myt,SquareRoundedLetterWIcon:kyt,SquareRoundedLetterXIcon:byt,SquareRoundedLetterYIcon:Myt,SquareRoundedLetterZIcon:xyt,SquareRoundedMinusIcon:zyt,SquareRoundedNumber0FilledIcon:Iyt,SquareRoundedNumber0Icon:yyt,SquareRoundedNumber1FilledIcon:Cyt,SquareRoundedNumber1Icon:Syt,SquareRoundedNumber2FilledIcon:$yt,SquareRoundedNumber2Icon:Ayt,SquareRoundedNumber3FilledIcon:Byt,SquareRoundedNumber3Icon:Hyt,SquareRoundedNumber4FilledIcon:Nyt,SquareRoundedNumber4Icon:jyt,SquareRoundedNumber5FilledIcon:Pyt,SquareRoundedNumber5Icon:Lyt,SquareRoundedNumber6FilledIcon:Dyt,SquareRoundedNumber6Icon:Fyt,SquareRoundedNumber7FilledIcon:Oyt,SquareRoundedNumber7Icon:Tyt,SquareRoundedNumber8FilledIcon:Ryt,SquareRoundedNumber8Icon:Eyt,SquareRoundedNumber9FilledIcon:Vyt,SquareRoundedNumber9Icon:_yt,SquareRoundedPlusFilledIcon:Wyt,SquareRoundedPlusIcon:Xyt,SquareRoundedXFilledIcon:qyt,SquareRoundedXIcon:Yyt,SquareRoundedIcon:Gyt,SquareToggleHorizontalIcon:Uyt,SquareToggleIcon:Zyt,SquareXIcon:Kyt,SquareIcon:Qyt,SquaresDiagonalIcon:Jyt,SquaresFilledIcon:tCt,Stack2Icon:eCt,Stack3Icon:nCt,StackPopIcon:lCt,StackPushIcon:rCt,StackIcon:oCt,StairsDownIcon:sCt,StairsUpIcon:aCt,StairsIcon:iCt,StarFilledIcon:hCt,StarHalfFilledIcon:dCt,StarHalfIcon:cCt,StarOffIcon:uCt,StarIcon:pCt,StarsFilledIcon:gCt,StarsOffIcon:wCt,StarsIcon:vCt,StatusChangeIcon:fCt,SteamIcon:mCt,SteeringWheelOffIcon:kCt,SteeringWheelIcon:bCt,StepIntoIcon:MCt,StepOutIcon:xCt,StereoGlassesIcon:zCt,StethoscopeOffIcon:ICt,StethoscopeIcon:yCt,StickerIcon:CCt,StormOffIcon:SCt,StormIcon:$Ct,Stretching2Icon:ACt,StretchingIcon:BCt,StrikethroughIcon:HCt,SubmarineIcon:NCt,SubscriptIcon:jCt,SubtaskIcon:PCt,SumOffIcon:LCt,SumIcon:DCt,SunFilledIcon:FCt,SunHighIcon:OCt,SunLowIcon:TCt,SunMoonIcon:RCt,SunOffIcon:ECt,SunWindIcon:VCt,SunIcon:_Ct,SunglassesIcon:WCt,SunriseIcon:XCt,Sunset2Icon:qCt,SunsetIcon:YCt,SuperscriptIcon:GCt,SvgIcon:UCt,SwimmingIcon:ZCt,SwipeIcon:KCt,Switch2Icon:QCt,Switch3Icon:JCt,SwitchHorizontalIcon:tSt,SwitchVerticalIcon:eSt,SwitchIcon:nSt,SwordOffIcon:lSt,SwordIcon:rSt,SwordsIcon:oSt,TableAliasIcon:sSt,TableDownIcon:aSt,TableExportIcon:iSt,TableFilledIcon:hSt,TableHeartIcon:dSt,TableImportIcon:cSt,TableMinusIcon:uSt,TableOffIcon:pSt,TableOptionsIcon:gSt,TablePlusIcon:wSt,TableShareIcon:vSt,TableShortcutIcon:fSt,TableIcon:mSt,TagOffIcon:kSt,TagIcon:bSt,TagsOffIcon:MSt,TagsIcon:xSt,Tallymark1Icon:zSt,Tallymark2Icon:ISt,Tallymark3Icon:ySt,Tallymark4Icon:CSt,TallymarksIcon:SSt,TankIcon:$St,TargetArrowIcon:ASt,TargetOffIcon:BSt,TargetIcon:HSt,TeapotIcon:NSt,TelescopeOffIcon:jSt,TelescopeIcon:PSt,TemperatureCelsiusIcon:LSt,TemperatureFahrenheitIcon:DSt,TemperatureMinusIcon:FSt,TemperatureOffIcon:OSt,TemperaturePlusIcon:TSt,TemperatureIcon:RSt,TemplateOffIcon:ESt,TemplateIcon:VSt,TentOffIcon:_St,TentIcon:WSt,Terminal2Icon:XSt,TerminalIcon:qSt,TestPipe2Icon:YSt,TestPipeOffIcon:GSt,TestPipeIcon:USt,TexIcon:ZSt,TextCaptionIcon:KSt,TextColorIcon:QSt,TextDecreaseIcon:JSt,TextDirectionLtrIcon:t$t,TextDirectionRtlIcon:e$t,TextIncreaseIcon:n$t,TextOrientationIcon:l$t,TextPlusIcon:r$t,TextRecognitionIcon:o$t,TextResizeIcon:s$t,TextSizeIcon:a$t,TextSpellcheckIcon:i$t,TextWrapDisabledIcon:h$t,TextWrapIcon:d$t,TextureIcon:c$t,TheaterIcon:u$t,ThermometerIcon:p$t,ThumbDownFilledIcon:g$t,ThumbDownOffIcon:w$t,ThumbDownIcon:v$t,ThumbUpFilledIcon:f$t,ThumbUpOffIcon:m$t,ThumbUpIcon:k$t,TicTacIcon:b$t,TicketOffIcon:M$t,TicketIcon:x$t,TieIcon:z$t,TildeIcon:I$t,TiltShiftOffIcon:y$t,TiltShiftIcon:C$t,TimelineEventExclamationIcon:S$t,TimelineEventMinusIcon:$$t,TimelineEventPlusIcon:A$t,TimelineEventTextIcon:B$t,TimelineEventXIcon:H$t,TimelineEventIcon:N$t,TimelineIcon:j$t,TirIcon:P$t,ToggleLeftIcon:L$t,ToggleRightIcon:D$t,ToiletPaperOffIcon:F$t,ToiletPaperIcon:O$t,TomlIcon:T$t,ToolIcon:R$t,ToolsKitchen2OffIcon:E$t,ToolsKitchen2Icon:V$t,ToolsKitchenOffIcon:_$t,ToolsKitchenIcon:W$t,ToolsOffIcon:X$t,ToolsIcon:q$t,TooltipIcon:Y$t,TopologyBusIcon:G$t,TopologyComplexIcon:U$t,TopologyFullHierarchyIcon:Z$t,TopologyFullIcon:K$t,TopologyRing2Icon:Q$t,TopologyRing3Icon:J$t,TopologyRingIcon:tAt,TopologyStar2Icon:eAt,TopologyStar3Icon:nAt,TopologyStarRing2Icon:lAt,TopologyStarRing3Icon:rAt,TopologyStarRingIcon:oAt,TopologyStarIcon:sAt,ToriiIcon:aAt,TornadoIcon:iAt,TournamentIcon:hAt,TowerOffIcon:dAt,TowerIcon:cAt,TrackIcon:uAt,TractorIcon:pAt,TrademarkIcon:gAt,TrafficConeOffIcon:wAt,TrafficConeIcon:vAt,TrafficLightsOffIcon:fAt,TrafficLightsIcon:mAt,TrainIcon:kAt,TransferInIcon:bAt,TransferOutIcon:MAt,TransformFilledIcon:xAt,TransformIcon:zAt,TransitionBottomIcon:IAt,TransitionLeftIcon:yAt,TransitionRightIcon:CAt,TransitionTopIcon:SAt,TrashFilledIcon:$At,TrashOffIcon:AAt,TrashXFilledIcon:BAt,TrashXIcon:HAt,TrashIcon:NAt,TreadmillIcon:jAt,TreeIcon:PAt,TreesIcon:LAt,TrekkingIcon:DAt,TrendingDown2Icon:FAt,TrendingDown3Icon:OAt,TrendingDownIcon:TAt,TrendingUp2Icon:RAt,TrendingUp3Icon:EAt,TrendingUpIcon:VAt,TriangleFilledIcon:_At,TriangleInvertedFilledIcon:WAt,TriangleInvertedIcon:XAt,TriangleOffIcon:qAt,TriangleSquareCircleIcon:YAt,TriangleIcon:GAt,TrianglesIcon:UAt,TridentIcon:ZAt,TrolleyIcon:KAt,TrophyFilledIcon:QAt,TrophyOffIcon:JAt,TrophyIcon:tBt,TrowelIcon:eBt,TruckDeliveryIcon:nBt,TruckLoadingIcon:lBt,TruckOffIcon:rBt,TruckReturnIcon:oBt,TruckIcon:sBt,TxtIcon:aBt,TypographyOffIcon:iBt,TypographyIcon:hBt,UfoOffIcon:dBt,UfoIcon:cBt,UmbrellaFilledIcon:uBt,UmbrellaOffIcon:pBt,UmbrellaIcon:gBt,UnderlineIcon:wBt,UnlinkIcon:vBt,UploadIcon:fBt,UrgentIcon:mBt,UsbIcon:kBt,UserBoltIcon:bBt,UserCancelIcon:MBt,UserCheckIcon:xBt,UserCircleIcon:zBt,UserCodeIcon:IBt,UserCogIcon:yBt,UserDollarIcon:CBt,UserDownIcon:SBt,UserEditIcon:$Bt,UserExclamationIcon:ABt,UserHeartIcon:BBt,UserMinusIcon:HBt,UserOffIcon:NBt,UserPauseIcon:jBt,UserPinIcon:PBt,UserPlusIcon:LBt,UserQuestionIcon:DBt,UserSearchIcon:FBt,UserShareIcon:OBt,UserShieldIcon:TBt,UserStarIcon:RBt,UserUpIcon:EBt,UserXIcon:VBt,UserIcon:_Bt,UsersGroupIcon:WBt,UsersMinusIcon:XBt,UsersPlusIcon:qBt,UsersIcon:YBt,UvIndexIcon:GBt,UxCircleIcon:UBt,VaccineBottleOffIcon:ZBt,VaccineBottleIcon:KBt,VaccineOffIcon:QBt,VaccineIcon:JBt,VacuumCleanerIcon:tHt,VariableMinusIcon:eHt,VariableOffIcon:nHt,VariablePlusIcon:lHt,VariableIcon:rHt,VectorBezier2Icon:oHt,VectorBezierArcIcon:sHt,VectorBezierCircleIcon:aHt,VectorBezierIcon:iHt,VectorOffIcon:hHt,VectorSplineIcon:dHt,VectorTriangleOffIcon:cHt,VectorTriangleIcon:uHt,VectorIcon:pHt,VenusIcon:gHt,VersionsFilledIcon:wHt,VersionsOffIcon:vHt,VersionsIcon:fHt,VideoMinusIcon:mHt,VideoOffIcon:kHt,VideoPlusIcon:bHt,VideoIcon:MHt,View360OffIcon:xHt,View360Icon:zHt,ViewfinderOffIcon:IHt,ViewfinderIcon:yHt,ViewportNarrowIcon:CHt,ViewportWideIcon:SHt,VinylIcon:$Ht,VipOffIcon:AHt,VipIcon:BHt,VirusOffIcon:HHt,VirusSearchIcon:NHt,VirusIcon:jHt,VocabularyOffIcon:PHt,VocabularyIcon:LHt,VolcanoIcon:DHt,Volume2Icon:FHt,Volume3Icon:OHt,VolumeOffIcon:THt,VolumeIcon:RHt,WalkIcon:EHt,WallOffIcon:VHt,WallIcon:_Ht,WalletOffIcon:WHt,WalletIcon:XHt,WallpaperOffIcon:qHt,WallpaperIcon:YHt,WandOffIcon:GHt,WandIcon:UHt,WashDry1Icon:ZHt,WashDry2Icon:KHt,WashDry3Icon:QHt,WashDryAIcon:JHt,WashDryDipIcon:tNt,WashDryFIcon:eNt,WashDryFlatIcon:nNt,WashDryHangIcon:lNt,WashDryOffIcon:rNt,WashDryPIcon:oNt,WashDryShadeIcon:sNt,WashDryWIcon:aNt,WashDryIcon:iNt,WashDrycleanOffIcon:hNt,WashDrycleanIcon:dNt,WashEcoIcon:cNt,WashGentleIcon:uNt,WashHandIcon:pNt,WashMachineIcon:gNt,WashOffIcon:wNt,WashPressIcon:vNt,WashTemperature1Icon:fNt,WashTemperature2Icon:mNt,WashTemperature3Icon:kNt,WashTemperature4Icon:bNt,WashTemperature5Icon:MNt,WashTemperature6Icon:xNt,WashTumbleDryIcon:zNt,WashTumbleOffIcon:INt,WashIcon:yNt,WaterpoloIcon:CNt,WaveSawToolIcon:SNt,WaveSineIcon:$Nt,WaveSquareIcon:ANt,WebhookOffIcon:BNt,WebhookIcon:HNt,WeightIcon:NNt,WheelchairOffIcon:jNt,WheelchairIcon:PNt,WhirlIcon:LNt,Wifi0Icon:DNt,Wifi1Icon:FNt,Wifi2Icon:ONt,WifiOffIcon:TNt,WifiIcon:RNt,WindOffIcon:ENt,WindIcon:VNt,WindmillFilledIcon:_Nt,WindmillOffIcon:WNt,WindmillIcon:XNt,WindowMaximizeIcon:qNt,WindowMinimizeIcon:YNt,WindowOffIcon:GNt,WindowIcon:UNt,WindsockIcon:ZNt,WiperWashIcon:KNt,WiperIcon:QNt,WomanIcon:JNt,WoodIcon:tjt,WorldBoltIcon:ejt,WorldCancelIcon:njt,WorldCheckIcon:ljt,WorldCodeIcon:rjt,WorldCogIcon:ojt,WorldDollarIcon:sjt,WorldDownIcon:ajt,WorldDownloadIcon:ijt,WorldExclamationIcon:hjt,WorldHeartIcon:djt,WorldLatitudeIcon:cjt,WorldLongitudeIcon:ujt,WorldMinusIcon:pjt,WorldOffIcon:gjt,WorldPauseIcon:wjt,WorldPinIcon:vjt,WorldPlusIcon:fjt,WorldQuestionIcon:mjt,WorldSearchIcon:kjt,WorldShareIcon:bjt,WorldStarIcon:Mjt,WorldUpIcon:xjt,WorldUploadIcon:zjt,WorldWwwIcon:Ijt,WorldXIcon:yjt,WorldIcon:Cjt,WreckingBallIcon:Sjt,WritingOffIcon:$jt,WritingSignOffIcon:Ajt,WritingSignIcon:Bjt,WritingIcon:Hjt,XIcon:Njt,XboxAIcon:jjt,XboxBIcon:Pjt,XboxXIcon:Ljt,XboxYIcon:Djt,XdIcon:Fjt,YinYangFilledIcon:Ojt,YinYangIcon:Tjt,YogaIcon:Rjt,ZeppelinOffIcon:Ejt,ZeppelinIcon:Vjt,ZipIcon:_jt,ZodiacAquariusIcon:Wjt,ZodiacAriesIcon:Xjt,ZodiacCancerIcon:qjt,ZodiacCapricornIcon:Yjt,ZodiacGeminiIcon:Gjt,ZodiacLeoIcon:Ujt,ZodiacLibraIcon:Zjt,ZodiacPiscesIcon:Kjt,ZodiacSagittariusIcon:Qjt,ZodiacScorpioIcon:Jjt,ZodiacTaurusIcon:tPt,ZodiacVirgoIcon:ePt,ZoomCancelIcon:nPt,ZoomCheckFilledIcon:lPt,ZoomCheckIcon:rPt,ZoomCodeIcon:oPt,ZoomExclamationIcon:sPt,ZoomFilledIcon:aPt,ZoomInAreaFilledIcon:iPt,ZoomInAreaIcon:hPt,ZoomInFilledIcon:dPt,ZoomInIcon:cPt,ZoomMoneyIcon:uPt,ZoomOutAreaIcon:pPt,ZoomOutFilledIcon:gPt,ZoomOutIcon:wPt,ZoomPanIcon:vPt,ZoomQuestionIcon:fPt,ZoomReplaceIcon:mPt,ZoomResetIcon:kPt,ZzzOffIcon:bPt,ZzzIcon:MPt}),zPt={install(n){Object.entries(xPt).forEach(([l,r])=>n.component(l,r))}};function IPt(){const n=[{id:1,username:"",password:"",firstName:"AstrBot",lastName:"dev"}],l=window.fetch;window.fetch=function(r,h){return new Promise((u,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return b();case(r.endsWith("/users")&&h.method==="GET"):return z();default:return l(r,h).then(D=>u(D)).catch(D=>g(D))}}function b(){P();const D=n[0];return D?C({id:D.id,username:D.username,firstName:D.firstName,lastName:D.lastName,token:"fake-jwt-token"}):A("Username or password is incorrect")}function z(){return B()?C(n):S()}function C(D){u({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){u({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function A(D){u({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class yPt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(u){let g=r.getPrintWindow(u);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let u=document.styleSheets;if(u&&u.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")u=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{u=l.value.id;let C=u.replace(new RegExp("#","g"),"");document.getElementById(C)||(console.log("id in Error"),u="")}}z()},(g=n).addEventListener?g.addEventListener(v,b,!1):g.attachEvent?g.attachEvent("on"+v,b):g["on"+v]=b;const z=()=>{new yPt({ids:u,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",N4)}};const Cr=Yc(Vf);IPt();Cr.use(ta);Cr.use(ub);Cr.use(N3());Cr.use(zPt);Cr.use(N4);Cr.use(mb);Cr.use(J9).mount("#app");export{Gp as $,Cp as A,He as B,Q8 as C,Pt as D,z3 as E,Zt as F,S8 as G,qm as H,Cm as I,ss as J,_8 as K,w8 as L,_4t as M,E8 as N,Up as O,Xa as P,A0 as Q,du as R,U6 as S,Kht as T,X as U,C8 as V,y9 as W,z4 as X,x0 as Y,z0 as Z,B6 as _,t as a,Yp as a0,Lw as a1,f9 as a2,k9 as a3,vr as a4,J7 as a5,q6 as a6,lV as a7,Bt as a8,Hn as a9,Ye as aa,pe as ab,Te as ac,ke as ad,Vt as ae,ye as af,no as ag,fn as ah,jg as ai,Ik as aj,vk as ak,vh as al,p8 as am,O3 as an,Ce as ao,Nn as ap,Df as aq,ih as b,Ca as c,dn as d,e,k8 as f,yp as g,Pw as h,ws as i,be as j,kv as k,Ip as l,zp as m,gl as n,ds as o,Nw as p,o as q,Qd as r,wv as s,nw as t,jw as u,m0 as v,U0 as w,mr as x,_t as y,_a as z}; +}`,p?u.prepend(s.css):w.head.appendChild(s.css))}var b=s.create(s.w.config.series,{});if(!b)return a(s);s.mount(b).then(function(){typeof s.w.config.chart.events.mounted=="function"&&s.w.config.chart.events.mounted(s,s.w),s.events.fireEvent("mounted",[s,s.w]),a(b)}).catch(function(M){i(M)})}else i(new Error("Element not found"))})}},{key:"create",value:function(s,a){var i=this.w;new R2(this).initModules();var d=this.w.globals;if(d.noData=!1,d.animationEnded=!1,this.responsive.checkResponsiveConfig(a),i.config.xaxis.convertedCatToNumeric&&new gt(i.config).convertCatToNumericXaxis(i.config,this.ctx),this.el===null||(this.core.setupElements(),i.config.chart.type==="treemap"&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),d.svgWidth===0))return d.animationEnded=!0,null;var u=tt.checkComboSeries(s);d.comboCharts=u.comboCharts,d.comboBarCount=u.comboBarCount;var p=s.every(function(M){return M.data&&M.data.length===0});(s.length===0||p)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(s),this.theme.init(),new Qt(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),d.noData&&d.collapsedSeries.length!==d.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),d.axisCharts&&(this.core.coreCalculations(),i.config.xaxis.type!=="category"&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),new tt(this).getLargestMarkerSize(),this.dimensions.plotCoords();var w=this.core.xySettings();this.grid.createGridMask();var f=this.core.plotChartType(s,w),b=new Et(this);return b.bringForward(),i.config.dataLabels.background.enabled&&b.dataLabelsBackground(),this.core.shiftGraphPosition(),{elGraph:f,xyRatios:w,dimensions:{plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}}}}},{key:"mount",value:function(){var s=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,i=this,d=i.w;return new Promise(function(u,p){if(i.el===null)return p(new Error("Not enough data to display or target element not found"));(a===null||d.globals.allSeriesCollapsed)&&i.series.handleNoData(),i.grid=new ft(i);var w,f,b=i.grid.drawGrid();if(i.annotations=new ht(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),d.config.grid.position==="back"&&(b&&d.globals.dom.elGraphical.add(b.el),b!=null&&(w=b.elGridBorders)!==null&&w!==void 0&&w.node&&d.globals.dom.elGraphical.add(b.elGridBorders)),Array.isArray(a.elGraph))for(var M=0;M0&&d.globals.memory.methodsToExec.forEach(function(N){N.method(N.params,!1,N.context)}),d.globals.axisCharts||d.globals.noData||i.core.resizeNonAxisCharts(),u(i)})}},{key:"destroy",value:function(){var s,a;window.removeEventListener("resize",this.windowResizeHandler),this.el.parentNode,s=this.parentResizeHandler,(a=xi.get(s))&&(a.disconnect(),xi.delete(s));var i=this.w.config.chart.id;i&&Apex._chartInstances.forEach(function(d,u){d.id===H.escapeString(i)&&Apex._chartInstances.splice(u,1)}),new T2(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(s){var a=this,i=arguments.length>1&&arguments[1]!==void 0&&arguments[1],d=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],u=!(arguments.length>3&&arguments[3]!==void 0)||arguments[3],p=!(arguments.length>4&&arguments[4]!==void 0)||arguments[4],w=this.w;return w.globals.selection=void 0,s.series&&(this.series.resetSeries(!1,!0,!1),s.series.length&&s.series[0].data&&(s.series=s.series.map(function(f,b){return a.updateHelpers._extendSeries(f,b)})),this.updateHelpers.revertDefaultAxisMinMax()),s.xaxis&&(s=this.updateHelpers.forceXAxisUpdate(s)),s.yaxis&&(s=this.updateHelpers.forceYAxisUpdate(s)),w.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),s.theme&&(s=this.theme.updateThemeOptions(s)),this.updateHelpers._updateOptions(s,i,d,u,p)}},{key:"updateSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(s,a,i)}},{key:"appendSeries",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=!(arguments.length>2&&arguments[2]!==void 0)||arguments[2],d=this.w.config.series.slice();return d.push(s),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(d,a,i)}},{key:"appendData",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var d=i.w.config.series.slice(),u=0;u0&&arguments[0]!==void 0)||arguments[0],a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];this.series.resetSeries(s,a)}},{key:"addEventListener",value:function(s,a){this.events.addEventListener(s,a)}},{key:"removeEventListener",value:function(s,a){this.events.removeEventListener(s,a)}},{key:"addXaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addXaxisAnnotationExternal(s,a,d)}},{key:"addYaxisAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addYaxisAnnotationExternal(s,a,d)}},{key:"addPointAnnotation",value:function(s){var a=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,d=this;i&&(d=i),d.annotations.addPointAnnotationExternal(s,a,d)}},{key:"clearAnnotations",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0,a=this;s&&(a=s),a.annotations.clearAnnotations(a)}},{key:"removeAnnotation",value:function(s){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:void 0,i=this;a&&(i=a),i.annotations.removeAnnotation(i,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(s,a){return this.coreUtils.getSeriesTotalsXRange(s,a)}},{key:"getHighestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).highestY}},{key:"getLowestValueInSeries",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return new lt(this.ctx).getMinYMaxY(s).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(s,a){return this.updateHelpers.toggleDataPointSelection(s,a)}},{key:"zoomX",value:function(s,a){this.ctx.toolbar.zoomUpdateOptions(s,a)}},{key:"setLocale",value:function(s){this.localization.setCurrentLocaleValues(s)}},{key:"dataURI",value:function(s){return new jt(this.ctx).dataURI(s)}},{key:"exportToCSV",value:function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return new jt(this.ctx).exportToCSV(s)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var s=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){s.w.globals.resized=!0,s.w.globals.dataChanged=!1,s.ctx.update()},150)}},{key:"_windowResizeHandler",value:function(){var s=this.w.config.chart.redrawOnWindowResize;typeof s=="function"&&(s=s()),s&&this._windowResize()}}],[{key:"getChartByID",value:function(s){var a=H.escapeString(s),i=Apex._chartInstances.filter(function(d){return d.id===a})[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var s=document.querySelectorAll("[data-apexcharts]"),a=0;a2?u-2:0),w=2;wEt&&typeof Et=="object"&&!Array.isArray(Et)&&Et!=null,U=(Et,ut)=>{typeof Object.assign!="function"&&function(){Object.assign=function(Nt){if(Nt==null)throw new TypeError("Cannot convert undefined or null to object");let jt=Object(Nt);for(let bt=1;bt{H(ut[Nt])?Nt in Et?pt[Nt]=U(Et[Nt],ut[Nt]):Object.assign(pt,{[Nt]:ut[Nt]}):Object.assign(pt,{[Nt]:ut[Nt]})}),pt},W=async()=>{if(await Object(v.nextTick)(),R.value)return;const Et={chart:{type:D.type||D.options.chart.type||"line",height:D.height,width:D.width,events:{}},series:D.series};I.forEach(pt=>{let Nt=(...jt)=>F(pt,...jt);Et.chart.events[pt]=Nt});const ut=U(D.options,Et);return R.value=new x.a(X.value,ut),R.value.render()},_=()=>(tt(),W()),tt=()=>{R.value.destroy()},nt=(Et,ut)=>R.value.updateSeries(Et,ut),Y=(Et,ut,pt,Nt)=>R.value.updateOptions(Et,ut,pt,Nt),G=Et=>R.value.toggleSeries(Et),et=Et=>{R.value.showSeries(Et)},st=Et=>{R.value.hideSeries(Et)},rt=(Et,ut)=>R.value.appendSeries(Et,ut),ht=()=>{R.value.resetSeries()},dt=(Et,ut)=>{R.value.toggleDataPointSelection(Et,ut)},Ct=Et=>R.value.appendData(Et),xt=(Et,ut)=>R.value.zoomX(Et,ut),wt=Et=>R.value.dataURI(Et),gt=Et=>R.value.setLocale(Et),It=(Et,ut)=>{R.value.addXaxisAnnotation(Et,ut)},At=(Et,ut)=>{R.value.addYaxisAnnotation(Et,ut)},Tt=(Et,ut)=>{R.value.addPointAnnotation(Et,ut)},Ft=(Et,ut)=>{R.value.removeAnnotation(Et,ut)},Qt=()=>{R.value.clearAnnotations()};Object(v.onBeforeMount)(()=>{window.ApexCharts=x.a}),Object(v.onMounted)(()=>{X.value=Object(v.getCurrentInstance)().proxy.$el,W()}),Object(v.onBeforeUnmount)(()=>{R.value&&tt()});const Jt=Object(v.toRefs)(D);return Object(v.watch)(Jt.options,()=>{!R.value&&D.options?W():R.value.updateOptions(D.options)}),Object(v.watch)(Jt.series,()=>{!R.value&&D.series?W():R.value.updateSeries(D.series)},{deep:!0}),Object(v.watch)(Jt.type,()=>{_()}),Object(v.watch)(Jt.width,()=>{_()}),Object(v.watch)(Jt.height,()=>{_()}),{chart:R,init:W,refresh:_,destroy:tt,updateOptions:Y,updateSeries:nt,toggleSeries:G,showSeries:et,hideSeries:st,resetSeries:ht,zoomX:xt,toggleDataPointSelection:dt,appendData:Ct,appendSeries:rt,addXaxisAnnotation:It,addYaxisAnnotation:At,addPointAnnotation:Tt,removeAnnotation:Ft,clearAnnotations:Qt,setLocale:gt,dataURI:wt}},render(){return Object(v.h)("div",{class:"vue-apexcharts"})}});const B=D=>{D.component($.name,$)};$.install=B;var P=$;r.default=P}})})(Xg);var qx=Xg.exports;const Yx=Vx(qx);var Ux={name:"OnetwotreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-123",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l2 -2v8"},null),e(" "),t("path",{d:"M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},Gx={name:"TwentyFourHoursIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-24-hours",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.094 8.094 0 0 0 3 5.24"},null),e(" "),t("path",{d:"M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M17 15v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M20 15v6"},null),e(" ")])}},Zx={name:"TwoFactorAuthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-2fa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M10 12l3 0"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 0 1 4 0v6"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" ")])}},Kx={name:"Deg360ViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" "),t("path",{d:"M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" ")])}},Qx={name:"Deg360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4"},null),e(" "),t("path",{d:"M9 13l3 3l-3 3"},null),e(" ")])}},Jx={name:"ThreedCubeSphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12v2.5"},null),e(" "),t("path",{d:"M12 18.5v2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tz={name:"ThreedCubeSphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-cube-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17.6l-2 -1.1v-2.5"},null),e(" "),t("path",{d:"M4 10v-2.5l2 -1.1"},null),e(" "),t("path",{d:"M10 4.1l2 -1.1l2 1.1"},null),e(" "),t("path",{d:"M18 6.4l2 1.1v2.5"},null),e(" "),t("path",{d:"M20 14v2.5l-2 1.12"},null),e(" "),t("path",{d:"M14 19.9l-2 1.1l-2 -1.1"},null),e(" "),t("path",{d:"M12 12l2 -1.1"},null),e(" "),t("path",{d:"M18 8.6l2 -1.1"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" "),t("path",{d:"M12 18.5l0 2.5"},null),e(" "),t("path",{d:"M12 12l-2 -1.12"},null),e(" "),t("path",{d:"M6 8.6l-2 -1.1"},null),e(" ")])}},ez={name:"ThreedRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-3d-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v4l-3 -3"},null),e(" "),t("path",{d:"M22 11l-3 3"},null),e(" "),t("path",{d:"M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M3 12.5v5.5l5 3"},null),e(" "),t("path",{d:"M8 15.545l5 -3.03"},null),e(" ")])}},nz={name:"AB2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z"},null),e(" "),t("path",{d:"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z"},null),e(" "),t("path",{d:"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4"},null),e(" "),t("path",{d:"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M8 7h-4"},null),e(" ")])}},lz={name:"ABOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 12v6"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rz={name:"ABIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-a-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M12 6l0 12"},null),e(" "),t("path",{d:"M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3"},null),e(" ")])}},oz={name:"AbacusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 21v-2m0 -4v-12"},null),e(" "),t("path",{d:"M5 7h2m4 0h8"},null),e(" "),t("path",{d:"M5 15h10"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 16v1"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v2"},null),e(" "),t("path",{d:"M8 8v1"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sz={name:"AbacusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abacus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3v18"},null),e(" "),t("path",{d:"M19 21v-18"},null),e(" "),t("path",{d:"M5 7h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" "),t("path",{d:"M8 13v4"},null),e(" "),t("path",{d:"M11 13v4"},null),e(" "),t("path",{d:"M16 13v4"},null),e(" "),t("path",{d:"M14 5v4"},null),e(" "),t("path",{d:"M11 5v4"},null),e(" "),t("path",{d:"M8 5v4"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},az={name:"AbcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-abc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01"},null),e(" ")])}},iz={name:"AccessPointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 1.172 2.828"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 1.635 8.952"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},hz={name:"AccessPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-access-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M14.828 9.172a4 4 0 0 1 0 5.656"},null),e(" "),t("path",{d:"M17.657 6.343a8 8 0 0 1 0 11.314"},null),e(" "),t("path",{d:"M9.168 14.828a4 4 0 0 1 0 -5.656"},null),e(" "),t("path",{d:"M6.337 17.657a8 8 0 0 1 0 -11.314"},null),e(" ")])}},dz={name:"AccessibleOffFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cz={name:"AccessibleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 8a.5 .5 0 1 0 -.5 -.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uz={name:"AccessibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-accessible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" ")])}},pz={name:"ActivityHeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5"},null),e(" ")])}},gz={name:"ActivityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-activity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h4l3 8l4 -16l3 8h4"},null),e(" ")])}},wz={name:"Ad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.933 5h-6.933v16h13v-8"},null),e(" "),t("path",{d:"M14 17h-5"},null),e(" "),t("path",{d:"M9 13h5v-4h-5z"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M18 6l2 -2"},null),e(" "),t("path",{d:"M19 9h2"},null),e(" ")])}},vz={name:"AdCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10c-5.43 0 -9.848 -4.327 -9.996 -9.72l-.004 -.28l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm-3.5 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v4.5l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4.5l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm6.5 0h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007v-4zm-6.5 0a.5 .5 0 0 1 .492 .41l.008 .09v1.5h-1v-1.5l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fz={name:"AdCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.91 4.949a9.968 9.968 0 0 0 -2.91 7.051c0 5.523 4.477 10 10 10a9.968 9.968 0 0 0 7.05 -2.909"},null),e(" "),t("path",{d:"M20.778 16.793a9.955 9.955 0 0 0 1.222 -4.793c0 -5.523 -4.477 -10 -10 -10c-1.74 0 -3.376 .444 -4.8 1.225"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 2.138 -1.358"},null),e(" "),t("path",{d:"M9.854 9.853c.094 .196 .146 .415 .146 .647v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 14v1h1"},null),e(" "),t("path",{d:"M17 13v-2a2 2 0 0 0 -2 -2h-1v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mz={name:"AdCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},kz={name:"AdFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bz={name:"AdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 2 -2m2 2v4"},null),e(" "),t("path",{d:"M7 13h4"},null),e(" "),t("path",{d:"M17 9v4"},null),e(" "),t("path",{d:"M16.115 12.131c.33 .149 .595 .412 .747 .74"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mz={name:"AdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M7 13l4 0"},null),e(" "),t("path",{d:"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5"},null),e(" ")])}},xz={name:"AddressBookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zz={name:"AddressBookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-address-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M10 16h6"},null),e(" "),t("path",{d:"M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8h3"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h3"},null),e(" ")])}},Iz={name:"AdjustmentsAltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-alt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4v4h-4z"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M6 12l0 8"},null),e(" "),t("path",{d:"M10 14h4v4h-4z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 18l0 2"},null),e(" "),t("path",{d:"M16 5h4v4h-4z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 9l0 11"},null),e(" ")])}},yz={name:"AdjustmentsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" ")])}},Cz={name:"AdjustmentsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.499 14.675a2 2 0 1 0 -1.499 3.325"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Sz={name:"AdjustmentsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.823 15.176a2 2 0 1 0 -2.638 2.651"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},$z={name:"AdjustmentsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.557 14.745a2 2 0 1 0 -1.557 3.255"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Az={name:"AdjustmentsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.199 14.399a2 2 0 1 0 -1.199 3.601"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Bz={name:"AdjustmentsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.366 14.54a2 2 0 1 0 -.216 3.097"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Hz={name:"AdjustmentsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.945 15.53a2 2 0 1 0 -1.945 2.47"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Nz={name:"AdjustmentsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},jz={name:"AdjustmentsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Pz={name:"AdjustmentsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v8.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Lz={name:"AdjustmentsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 6l8 0"},null),e(" "),t("path",{d:"M16 6l4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12l2 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 18l11 0"},null),e(" "),t("path",{d:"M19 18l1 0"},null),e(" ")])}},Dz={name:"AdjustmentsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.954 15.574a2 2 0 1 0 -1.954 2.426"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Oz={name:"AdjustmentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 6v2"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v4m0 4v2"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v5m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fz={name:"AdjustmentsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.627 14.836a2 2 0 1 0 -.62 2.892"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M18 9v4.5"},null),e(" ")])}},Rz={name:"AdjustmentsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.071 14.31a2 2 0 1 0 -1.071 3.69"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Tz={name:"AdjustmentsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.958 15.592a2 2 0 1 0 -1.958 2.408"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Ez={name:"AdjustmentsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.577 14.77a2 2 0 1 0 .117 2.295"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" ")])}},Vz={name:"AdjustmentsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 -1.042 3.707"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},_z={name:"AdjustmentsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.387 14.56a2 2 0 1 0 -.798 3.352"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" ")])}},Wz={name:"AdjustmentsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M18 9v1"},null),e(" ")])}},Xz={name:"AdjustmentsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.927 15.462a2 2 0 1 0 -1.927 2.538"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},qz={name:"AdjustmentsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M13.653 14.874a2 2 0 1 0 -.586 2.818"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Yz={name:"AdjustmentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-adjustments",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M6 4v4"},null),e(" "),t("path",{d:"M6 12v8"},null),e(" "),t("path",{d:"M10 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 4v10"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M16 7a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M18 4v1"},null),e(" "),t("path",{d:"M18 9v11"},null),e(" ")])}},Uz={name:"AerialLiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aerial-lift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14"},null),e(" ")])}},Gz={name:"AffiliateFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zz={name:"AffiliateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-affiliate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275"},null),e(" "),t("path",{d:"M11.683 12.317l5.759 -5.759"},null),e(" "),t("path",{d:"M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},Kz={name:"AirBalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0"},null),e(" ")])}},Qz={name:"AirConditioningDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},Jz={name:"AirConditioningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-air-conditioning",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 16a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3"},null),e(" ")])}},tI={name:"AlarmFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},eI={name:"AlarmMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nI={name:"AlarmMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},lI={name:"AlarmOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56"},null),e(" "),t("path",{d:"M12 12v1h1"},null),e(" "),t("path",{d:"M5.261 5.265l-1.011 .735"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rI={name:"AlarmPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oI={name:"AlarmPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" ")])}},sI={name:"AlarmSnoozeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aI={name:"AlarmSnoozeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm-snooze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M10 11h4l-4 4h4"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},iI={name:"AlarmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alarm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10l0 3l2 0"},null),e(" "),t("path",{d:"M7 4l-2.75 2"},null),e(" "),t("path",{d:"M17 4l2.75 2"},null),e(" ")])}},hI={name:"AlbumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413"},null),e(" "),t("path",{d:"M12 4v4m1.503 1.497l.497 -.497l2 2v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dI={name:"AlbumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-album",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v7l2 -2l2 2v-7"},null),e(" ")])}},cI={name:"AlertCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uI={name:"AlertCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},pI={name:"AlertHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.585 13.586l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gI={name:"AlertHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},wI={name:"AlertOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.887 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vI={name:"AlertOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},fI={name:"AlertSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},mI={name:"AlertSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6.99 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kI={name:"AlertSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.01 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bI={name:"AlertSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},MI={name:"AlertSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},xI={name:"AlertTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.07 14l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zI={name:"AlertTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alert-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 17h.01"},null),e(" ")])}},II={name:"AlienFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yI={name:"AlienIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alien",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17a2.5 2.5 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z"},null),e(" "),t("path",{d:"M8 11l2 2"},null),e(" "),t("path",{d:"M16 11l-2 2"},null),e(" ")])}},CI={name:"AlignBoxBottomCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SI={name:"AlignBoxBottomCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15v2"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" ")])}},$I={name:"AlignBoxBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-12.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AI={name:"AlignBoxBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v2"},null),e(" "),t("path",{d:"M10 11v6"},null),e(" "),t("path",{d:"M13 13v4"},null),e(" ")])}},BI={name:"AlignBoxBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HI={name:"AlignBoxBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15v2"},null),e(" "),t("path",{d:"M14 11v6"},null),e(" "),t("path",{d:"M17 13v4"},null),e(" ")])}},NI={name:"AlignBoxCenterMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.993 -2.802l-.007 -.198v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-6 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm2 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-1 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jI={name:"AlignBoxCenterMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-center-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},PI={name:"AlignBoxLeftBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LI={name:"AlignBoxLeftBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17h-2"},null),e(" "),t("path",{d:"M13 14h-6"},null),e(" "),t("path",{d:"M11 11h-4"},null),e(" ")])}},DI={name:"AlignBoxLeftMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 12h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OI={name:"AlignBoxLeftMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h-2"},null),e(" "),t("path",{d:"M13 12h-6"},null),e(" "),t("path",{d:"M11 9h-4"},null),e(" ")])}},FI={name:"AlignBoxLeftTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-10.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RI={name:"AlignBoxLeftTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-left-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13h-2"},null),e(" "),t("path",{d:"M13 10h-6"},null),e(" "),t("path",{d:"M11 7h-4"},null),e(" ")])}},TI={name:"AlignBoxRightBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 15h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EI={name:"AlignBoxRightBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 17h2"},null),e(" "),t("path",{d:"M11 14h6"},null),e(" "),t("path",{d:"M13 11h4"},null),e(" ")])}},VI={name:"AlignBoxRightMiddleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -3h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_I={name:"AlignBoxRightMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h2"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h6"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" ")])}},WI={name:"AlignBoxRightTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-.333 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},XI={name:"AlignBoxRightTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-right-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13h2"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 7h4"},null),e(" ")])}},qI={name:"AlignBoxTopCenterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YI={name:"AlignBoxTopCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9v-2"},null),e(" "),t("path",{d:"M12 13v-6"},null),e(" "),t("path",{d:"M15 11v-4"},null),e(" ")])}},UI={name:"AlignBoxTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GI={name:"AlignBoxTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v-2"},null),e(" "),t("path",{d:"M10 13v-6"},null),e(" "),t("path",{d:"M13 11v-4"},null),e(" ")])}},ZI={name:"AlignBoxTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KI={name:"AlignBoxTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-box-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 9v-2"},null),e(" "),t("path",{d:"M14 13v-6"},null),e(" "),t("path",{d:"M17 11v-4"},null),e(" ")])}},QI={name:"AlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M8 12l8 0"},null),e(" "),t("path",{d:"M6 18l12 0"},null),e(" ")])}},JI={name:"AlignJustifiedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-justified",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l12 0"},null),e(" ")])}},ty={name:"AlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 18l14 0"},null),e(" ")])}},ey={name:"AlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M6 18l14 0"},null),e(" ")])}},ny={name:"AlphaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alpha",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6"},null),e(" ")])}},ly={name:"AlphabetCyrillicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-cyrillic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M19 7h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3"},null),e(" ")])}},ry={name:"AlphabetGreekIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-greek",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v7"},null),e(" "),t("path",{d:"M5 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 20v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2"},null),e(" ")])}},oy={name:"AlphabetLatinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-alphabet-latin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M14 10m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" ")])}},sy={name:"AmbulanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ambulance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M6 10h4m-2 -2v4"},null),e(" ")])}},ay={name:"AmpersandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ampersand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922"},null),e(" ")])}},iy={name:"AnalyzeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.99 12.862a7.1 7.1 0 0 0 12.171 3.924a1.956 1.956 0 0 1 -.156 -.637l-.005 -.149l.005 -.15a2 2 0 1 1 1.769 2.137a9.099 9.099 0 0 1 -15.764 -4.85a1 1 0 0 1 1.98 -.275z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13.142 3.09a9.1 9.1 0 0 1 7.848 7.772a1 1 0 0 1 -1.98 .276a7.1 7.1 0 0 0 -6.125 -6.064a7.096 7.096 0 0 0 -6.048 2.136a2 2 0 1 1 -3.831 .939l-.006 -.149l.005 -.15a2 2 0 0 1 2.216 -1.838a9.094 9.094 0 0 1 7.921 -2.922z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},hy={name:"AnalyzeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.687 4.676"},null),e(" "),t("path",{d:"M20 16a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.888 9.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dy={name:"AnalyzeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-analyze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15 3"},null),e(" "),t("path",{d:"M19 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},cy={name:"AnchorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57"},null),e(" "),t("path",{d:"M21 13h-2"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M12.866 8.873a3 3 0 1 0 -3.737 -3.747"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uy={name:"AnchorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-anchor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},py={name:"AngleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-angle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 19h-18l9 -15"},null),e(" "),t("path",{d:"M20.615 15.171h.015"},null),e(" "),t("path",{d:"M19.515 11.771h.015"},null),e(" "),t("path",{d:"M17.715 8.671h.015"},null),e(" "),t("path",{d:"M15.415 5.971h.015"},null),e(" ")])}},gy={name:"AnkhIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ankh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13h12"},null),e(" "),t("path",{d:"M12 21v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211"},null),e(" ")])}},wy={name:"AntennaBars1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 .01"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},vy={name:"AntennaBars2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 .01"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},fy={name:"AntennaBars3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 .01"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},my={name:"AntennaBars4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 .01"},null),e(" ")])}},ky={name:"AntennaBars5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18l0 -3"},null),e(" "),t("path",{d:"M10 18l0 -6"},null),e(" "),t("path",{d:"M14 18l0 -9"},null),e(" "),t("path",{d:"M18 18l0 -12"},null),e(" ")])}},by={name:"AntennaBarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-bars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-3"},null),e(" "),t("path",{d:"M10 18v-6"},null),e(" "),t("path",{d:"M14 18v-4"},null),e(" "),t("path",{d:"M14 10v-1"},null),e(" "),t("path",{d:"M18 14v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},My={name:"AntennaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M8 8v2.5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-8m-4 0h-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xy={name:"AntennaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-antenna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v8"},null),e(" "),t("path",{d:"M16 4.5v7"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M8 5.5v5"},null),e(" "),t("path",{d:"M4 6v4"},null),e(" "),t("path",{d:"M20 8h-16"},null),e(" ")])}},zy={name:"ApertureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M7.395 7.534l2.416 7.438"},null),e(" "),t("path",{d:"M17.032 4.636l-4.852 3.526m-2.334 1.695l-1.349 .98"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l2.123 -6.533m.984 -3.028l.154 -.473"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Iy={name:"ApertureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aperture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3.6 15h10.55"},null),e(" "),t("path",{d:"M6.551 4.938l3.26 10.034"},null),e(" "),t("path",{d:"M17.032 4.636l-8.535 6.201"},null),e(" "),t("path",{d:"M20.559 14.51l-8.535 -6.201"},null),e(" "),t("path",{d:"M12.257 20.916l3.261 -10.034"},null),e(" ")])}},yy={name:"ApiAppOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 15v3.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M13 9h5.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cy={name:"ApiAppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-app",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5"},null),e(" "),t("path",{d:"M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5"},null),e(" "),t("path",{d:"M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5"},null),e(" "),t("path",{d:"M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5"},null),e(" ")])}},Sy={name:"ApiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$y={name:"ApiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-api",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13h5"},null),e(" "),t("path",{d:"M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3"},null),e(" "),t("path",{d:"M20 8v8"},null),e(" "),t("path",{d:"M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5"},null),e(" ")])}},Ay={name:"AppWindowFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-12.99 3l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm3 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},By={name:"AppWindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-app-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" ")])}},Hy={name:"AppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 10.5c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},Ny={name:"AppsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 13h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -1.993 .117l-.007 -.117v-2h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jy={name:"AppsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M18 14h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7h6"},null),e(" "),t("path",{d:"M17 4v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Py={name:"AppsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-apps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M17 4l0 6"},null),e(" ")])}},Ly={name:"ArchiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("rect",{x:"2",y:"3",width:"20",height:"4",rx:"2","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 9c.513 0 .936 .463 .993 1.06l.007 .14v7.2c0 1.917 -1.249 3.484 -2.824 3.594l-.176 .006h-10c-1.598 0 -2.904 -1.499 -2.995 -3.388l-.005 -.212v-7.2c0 -.663 .448 -1.2 1 -1.2h14zm-5 2h-4l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h4l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dy={name:"ArchiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oy={name:"ArchiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-archive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" ")])}},Fy={name:"Armchair2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16.124 12.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ry={name:"Armchair2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M7 19v2"},null),e(" "),t("path",{d:"M17 19v2"},null),e(" ")])}},Ty={name:"ArmchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ey={name:"ArmchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-armchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M6 19v2"},null),e(" "),t("path",{d:"M18 19v2"},null),e(" ")])}},Vy={name:"ArrowAutofitContentFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.707 3.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.292 1.293h4.585a1 1 0 0 1 .117 1.993l-.117 .007h-4.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1.008 1.008 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.064 -.092l.083 -.094l3 -3a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.613 3.21l.094 .083l3 3a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.292 -1.293h-4.585a1 1 0 0 1 -.117 -1.993l.117 -.007h4.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 13h-12a3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h12a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_y={name:"ArrowAutofitContentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-content",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 7h-7"},null),e(" "),t("path",{d:"M21 7h-7"},null),e(" ")])}},Wy={name:"ArrowAutofitDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M18 4v17"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" ")])}},Xy={name:"ArrowAutofitHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"},null),e(" "),t("path",{d:"M18 14v7"},null),e(" "),t("path",{d:"M18 3v7"},null),e(" "),t("path",{d:"M15 18l3 3l3 -3"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},qy={name:"ArrowAutofitLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 18h-17"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" ")])}},Yy={name:"ArrowAutofitRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M4 18h17"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Uy={name:"ArrowAutofitUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M18 20v-17"},null),e(" "),t("path",{d:"M15 6l3 -3l3 3"},null),e(" ")])}},Gy={name:"ArrowAutofitWidthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-autofit-width",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M10 18h-7"},null),e(" "),t("path",{d:"M21 18h-7"},null),e(" "),t("path",{d:"M6 15l-3 3l3 3"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},Zy={name:"ArrowBackUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M9 10h7a4 4 0 1 1 0 8h-1"},null),e(" ")])}},Ky={name:"ArrowBackUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M5 10h11a4 4 0 1 1 0 8h-1"},null),e(" ")])}},Qy={name:"ArrowBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1"},null),e(" ")])}},Jy={name:"ArrowBadgeDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.375 6.22l-4.375 3.498l-4.375 -3.5a1 1 0 0 0 -1.625 .782v6a1 1 0 0 0 .375 .78l5 4a1 1 0 0 0 1.25 0l5 -4a1 1 0 0 0 .375 -.78v-6a1 1 0 0 0 -1.625 -.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tC={name:"ArrowBadgeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13v-6l-5 4l-5 -4v6l5 4z"},null),e(" ")])}},eC={name:"ArrowBadgeLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6h-6a1 1 0 0 0 -.78 .375l-4 5a1 1 0 0 0 0 1.25l4 5a1 1 0 0 0 .78 .375h6l.112 -.006a1 1 0 0 0 .669 -1.619l-3.501 -4.375l3.5 -4.375a1 1 0 0 0 -.78 -1.625z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nC={name:"ArrowBadgeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h6l-4 -5l4 -5h-6l-4 5z"},null),e(" ")])}},lC={name:"ArrowBadgeRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rC={name:"ArrowBadgeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7h-6l4 5l-4 5h6l4 -5z"},null),e(" ")])}},oC={name:"ArrowBadgeUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sC={name:"ArrowBadgeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-badge-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11v6l-5 -4l-5 4v-6l5 -4z"},null),e(" ")])}},aC={name:"ArrowBarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" "),t("path",{d:"M12 20l4 -4"},null),e(" "),t("path",{d:"M12 20l-4 -4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},iC={name:"ArrowBarLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l10 0"},null),e(" "),t("path",{d:"M4 12l4 4"},null),e(" "),t("path",{d:"M4 12l4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},hC={name:"ArrowBarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-10 0"},null),e(" "),t("path",{d:"M20 12l-4 4"},null),e(" "),t("path",{d:"M20 12l-4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},dC={name:"ArrowBarToDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M12 14l0 -10"},null),e(" "),t("path",{d:"M12 14l4 -4"},null),e(" "),t("path",{d:"M12 14l-4 -4"},null),e(" ")])}},cC={name:"ArrowBarToLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l10 0"},null),e(" "),t("path",{d:"M10 12l4 4"},null),e(" "),t("path",{d:"M10 12l4 -4"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" ")])}},uC={name:"ArrowBarToRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l-10 0"},null),e(" "),t("path",{d:"M14 12l-4 4"},null),e(" "),t("path",{d:"M14 12l-4 -4"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" ")])}},pC={name:"ArrowBarToUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-to-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l0 10"},null),e(" "),t("path",{d:"M12 10l4 4"},null),e(" "),t("path",{d:"M12 10l-4 4"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" ")])}},gC={name:"ArrowBarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 4l4 4"},null),e(" "),t("path",{d:"M12 4l-4 4"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" ")])}},wC={name:"ArrowBearLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h-5v5"},null),e(" "),t("path",{d:"M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" "),t("path",{d:"M20 5l-4.5 4.5"},null),e(" ")])}},vC={name:"ArrowBearLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3h-5v5"},null),e(" "),t("path",{d:"M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93"},null),e(" ")])}},fC={name:"ArrowBearRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h5v5"},null),e(" "),t("path",{d:"M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M4 5l4.5 4.5"},null),e(" ")])}},mC={name:"ArrowBearRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bear-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3h5v5"},null),e(" "),t("path",{d:"M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" ")])}},kC={name:"ArrowBigDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bC={name:"ArrowBigDownLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5l-.117 .007a1 1 0 0 0 -.883 .993v4.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-4.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MC={name:"ArrowBigDownLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},xC={name:"ArrowBigDownLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l-.117 .007a1 1 0 0 0 -.883 .993v1.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-1.999a1 1 0 0 0 -1 -1h-6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 2a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 5a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zC={name:"ArrowBigDownLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" "),t("path",{d:"M15 6h-6"},null),e(" ")])}},IC={name:"ArrowBigDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z"},null),e(" ")])}},yC={name:"ArrowBigLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CC={name:"ArrowBigLeftLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h5a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-5 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.415 12l6.585 -6.586v3.586l.007 .117a1 1 0 0 0 .993 .883l5 -.001v4l-5 .001a1 1 0 0 0 -1 1v3.586l-6.585 -6.586z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SC={name:"ArrowBigLeftLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" ")])}},$C={name:"ArrowBigLeftLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h2a1 1 0 0 0 1 -1v-6l-.007 -.117a1 1 0 0 0 -.993 -.883l-2 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AC={name:"ArrowBigLeftLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z"},null),e(" "),t("path",{d:"M21 15v-6"},null),e(" "),t("path",{d:"M18 15v-6"},null),e(" ")])}},BC={name:"ArrowBigLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z"},null),e(" ")])}},HC={name:"ArrowBigRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-6.999a2 2 0 0 0 -2 2v4l.005 .15a2 2 0 0 0 1.995 1.85l6.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NC={name:"ArrowBigRightLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.586h-4.999a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l4.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jC={name:"ArrowBigRightLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},PC={name:"ArrowBigRightLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.089 3.634a2 2 0 0 0 -1.089 1.78l-.001 2.585l-1.999 .001a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 .993 .883l1.999 -.001l.001 2.587a2 2 0 0 0 3.414 1.414l6.586 -6.586a2 2 0 0 0 0 -2.828l-6.586 -6.586a2 2 0 0 0 -2.18 -.434l-.145 .068z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 8a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -1.993 .117l-.007 -.117v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LC={name:"ArrowBigRightLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},DC={name:"ArrowBigRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z"},null),e(" ")])}},OC={name:"ArrowBigUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v7a2 2 0 0 0 2 2h4l.15 -.005a2 2 0 0 0 1.85 -1.995l-.001 -7h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FC={name:"ArrowBigUpLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v5a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -5h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RC={name:"ArrowBigUpLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" ")])}},TC={name:"ArrowBigUpLinesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EC={name:"ArrowBigUpLinesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up-lines",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},VC={name:"ArrowBigUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-big-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},_C={name:"ArrowBounceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-bounce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h4"},null),e(" "),t("path",{d:"M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277"},null),e(" "),t("path",{d:"M15 6h5v5"},null),e(" ")])}},WC={name:"ArrowCurveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394"},null),e(" ")])}},XC={name:"ArrowCurveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-curve-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 7l4 -4l4 4"},null),e(" "),t("path",{d:"M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394"},null),e(" ")])}},qC={name:"ArrowDownBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},YC={name:"ArrowDownCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4"},null),e(" ")])}},UC={name:"ArrowDownLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 8.464l-9.536 9.536"},null),e(" "),t("path",{d:"M6 14v4h4"},null),e(" "),t("path",{d:"M15.586 8.414a2 2 0 1 0 2.828 -2.828a2 2 0 0 0 -2.828 2.828"},null),e(" ")])}},GC={name:"ArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M16 17l-9 0l0 -9"},null),e(" ")])}},ZC={name:"ArrowDownRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v13"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M14.5 5.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z"},null),e(" ")])}},KC={name:"ArrowDownRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 8.464l9.536 9.536"},null),e(" "),t("path",{d:"M14 18h4v-4"},null),e(" "),t("path",{d:"M8.414 8.414a2 2 0 1 0 -2.828 -2.828a2 2 0 0 0 2.828 2.828"},null),e(" ")])}},QC={name:"ArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M17 8l0 9l-9 0"},null),e(" ")])}},JC={name:"ArrowDownSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M14 3v4h-4v-4z"},null),e(" ")])}},tS={name:"ArrowDownTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6v15"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 3l3 3l3 -3"},null),e(" ")])}},eS={name:"ArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 13l-6 6"},null),e(" "),t("path",{d:"M6 13l6 6"},null),e(" ")])}},nS={name:"ArrowElbowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14v-6h6"},null),e(" "),t("path",{d:"M3 8l9 9l9 -9"},null),e(" ")])}},lS={name:"ArrowElbowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-elbow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14v-6h-6"},null),e(" "),t("path",{d:"M21 8l-9 9l-9 -9"},null),e(" ")])}},rS={name:"ArrowForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3h5v5"},null),e(" "),t("path",{d:"M8 3h-5v5"},null),e(" "),t("path",{d:"M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93"},null),e(" "),t("path",{d:"M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93"},null),e(" ")])}},oS={name:"ArrowForwardUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M15 10h-7a4 4 0 1 0 0 8h1"},null),e(" ")])}},sS={name:"ArrowForwardUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M19 10h-11a4 4 0 1 0 0 8h1"},null),e(" ")])}},aS={name:"ArrowForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1"},null),e(" ")])}},iS={name:"ArrowGuideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-guide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" ")])}},hS={name:"ArrowIterationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-iteration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M18 13l3 3l-3 3"},null),e(" ")])}},dS={name:"ArrowLeftBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-18"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9v6"},null),e(" ")])}},cS={name:"ArrowLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M19 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},uS={name:"ArrowLeftRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h-13"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z"},null),e(" ")])}},pS={name:"ArrowLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 13l-4 -4l4 -4"},null),e(" "),t("path",{d:"M12 14a5 5 0 0 1 5 -5h4"},null),e(" "),t("path",{d:"M12 19v-5a5 5 0 0 0 -5 -5h-4"},null),e(" ")])}},gS={name:"ArrowLeftSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h-14"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 14h-4v-4h4z"},null),e(" ")])}},wS={name:"ArrowLeftTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h-15"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M21 9l-3 3l3 3"},null),e(" ")])}},vS={name:"ArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l6 6"},null),e(" "),t("path",{d:"M5 12l6 -6"},null),e(" ")])}},fS={name:"ArrowLoopLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},mS={name:"ArrowLoopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21v-13a4 4 0 1 1 4 4h-13"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" ")])}},kS={name:"ArrowLoopRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},bS={name:"ArrowLoopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-loop-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-13a4 4 0 1 0 -4 4h13"},null),e(" "),t("path",{d:"M17 16l4 -4l-4 -4"},null),e(" ")])}},MS={name:"ArrowMergeBothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-both",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},xS={name:"ArrowMergeLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M6 18c4 -1.333 6 -4.667 6 -10"},null),e(" ")])}},zS={name:"ArrowMergeRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" "),t("path",{d:"M18 18c-4 -1.333 -6 -4.667 -6 -10"},null),e(" ")])}},IS={name:"ArrowMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394"},null),e(" "),t("path",{d:"M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394"},null),e(" ")])}},yS={name:"ArrowMoveDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v10"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CS={name:"ArrowMoveLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h-10"},null),e(" "),t("path",{d:"M6 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z"},null),e(" ")])}},SS={name:"ArrowMoveRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h10"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" ")])}},$S={name:"ArrowMoveUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-move-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" ")])}},AS={name:"ArrowNarrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 15l-4 4"},null),e(" "),t("path",{d:"M8 15l4 4"},null),e(" ")])}},BS={name:"ArrowNarrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M5 12l4 4"},null),e(" "),t("path",{d:"M5 12l4 -4"},null),e(" ")])}},HS={name:"ArrowNarrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M15 8l4 4"},null),e(" ")])}},NS={name:"ArrowNarrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-narrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 9l-4 -4"},null),e(" "),t("path",{d:"M8 9l4 -4"},null),e(" ")])}},jS={name:"ArrowRampLeft2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v8.707"},null),e(" "),t("path",{d:"M8 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21c0 -6.075 -4.925 -11 -11 -11h-3"},null),e(" ")])}},PS={name:"ArrowRampLeft3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v6"},null),e(" "),t("path",{d:"M8 16l-4 -4l4 -4"},null),e(" "),t("path",{d:"M18 21v-6a3 3 0 0 0 -3 -3h-11"},null),e(" ")])}},LS={name:"ArrowRampLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 8.707"},null),e(" "),t("path",{d:"M13 7l4 -4l4 4"},null),e(" "),t("path",{d:"M7 14l-4 -4l4 -4"},null),e(" "),t("path",{d:"M17 21a11 11 0 0 0 -11 -11h-3"},null),e(" ")])}},DS={name:"ArrowRampRight2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v8.707"},null),e(" "),t("path",{d:"M16 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21c0 -6.075 4.925 -11 11 -11h3"},null),e(" ")])}},OS={name:"ArrowRampRight3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v6"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M6 21v-6a3 3 0 0 1 3 -3h11"},null),e(" ")])}},FS={name:"ArrowRampRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-ramp-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 8.707"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 14l4 -4l-4 -4"},null),e(" "),t("path",{d:"M7 21a11 11 0 0 1 11 -11h3"},null),e(" ")])}},RS={name:"ArrowRightBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M3 9v6"},null),e(" ")])}},TS={name:"ArrowRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h14"},null),e(" ")])}},ES={name:"ArrowRightRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M5.5 9.5l-2.5 2.5l2.5 2.5l2.5 -2.5z"},null),e(" ")])}},VS={name:"ArrowRightSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l14 0"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" ")])}},_S={name:"ArrowRightTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 15l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 12l15 0"},null),e(" ")])}},WS={name:"ArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M13 18l6 -6"},null),e(" "),t("path",{d:"M13 6l6 6"},null),e(" ")])}},XS={name:"ArrowRotaryFirstLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13.5 9.5l-8.5 8.5"},null),e(" "),t("path",{d:"M10 18h-5v-5"},null),e(" ")])}},qS={name:"ArrowRotaryFirstRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-first-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M10.5 9.5l8.5 8.5"},null),e(" "),t("path",{d:"M14 18h5v-5"},null),e(" ")])}},YS={name:"ArrowRotaryLastLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M15 15v6"},null),e(" "),t("path",{d:"M12.5 9.5l-6.5 -6.5"},null),e(" "),t("path",{d:"M11 3h-5v5"},null),e(" ")])}},US={name:"ArrowRotaryLastRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-last-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15v6"},null),e(" "),t("path",{d:"M11.5 9.5l6.5 -6.5"},null),e(" "),t("path",{d:"M13 3h5v5"},null),e(" ")])}},GS={name:"ArrowRotaryLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6z"},null),e(" "),t("path",{d:"M16 10v10"},null),e(" "),t("path",{d:"M13 7h-10"},null),e(" "),t("path",{d:"M7 11l-4 -4l4 -4"},null),e(" ")])}},ZS={name:"ArrowRotaryRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 10v10"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" "),t("path",{d:"M11 7h10"},null),e(" ")])}},KS={name:"ArrowRotaryStraightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-rotary-straight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 16v5"},null),e(" "),t("path",{d:"M13 3v7"},null),e(" "),t("path",{d:"M9 7l4 -4l4 4"},null),e(" ")])}},QS={name:"ArrowRoundaboutLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9h8a5 5 0 1 1 5 5v7"},null),e(" "),t("path",{d:"M7 5l-4 4l4 4"},null),e(" ")])}},JS={name:"ArrowRoundaboutRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-roundabout-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9h-8a5 5 0 1 0 -5 5v7"},null),e(" "),t("path",{d:"M17 5l4 4l-4 4"},null),e(" ")])}},t$={name:"ArrowSharpTurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18v-11.31a.7 .7 0 0 0 -1.195 -.495l-9.805 9.805"},null),e(" "),t("path",{d:"M11 16h-5v-5"},null),e(" ")])}},e$={name:"ArrowSharpTurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-sharp-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-11.31a.7 .7 0 0 1 1.195 -.495l9.805 9.805"},null),e(" "),t("path",{d:"M13 16h5v-5"},null),e(" ")])}},n$={name:"ArrowUpBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l0 -18"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 21l6 0"},null),e(" ")])}},l$={name:"ArrowUpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17v-14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 0 4a2 2 0 0 0 0 -4"},null),e(" ")])}},r$={name:"ArrowUpLeftCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536l-9.536 -9.536"},null),e(" "),t("path",{d:"M10 6h-4v4"},null),e(" "),t("path",{d:"M15.586 15.586a2 2 0 1 0 2.828 2.828a2 2 0 0 0 -2.828 -2.828"},null),e(" ")])}},o$={name:"ArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l10 10"},null),e(" "),t("path",{d:"M16 7l-9 0l0 9"},null),e(" ")])}},s$={name:"ArrowUpRhombusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-rhombus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v-13"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},a$={name:"ArrowUpRightCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.464 15.536l9.536 -9.536"},null),e(" "),t("path",{d:"M18 10v-4h-4"},null),e(" "),t("path",{d:"M8.414 15.586a2 2 0 1 0 -2.828 2.828a2 2 0 0 0 2.828 -2.828"},null),e(" ")])}},i$={name:"ArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7l-10 10"},null),e(" "),t("path",{d:"M8 7l9 0l0 9"},null),e(" ")])}},h$={name:"ArrowUpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l0 -14"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10 21v-4h4v4z"},null),e(" ")])}},d$={name:"ArrowUpTailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up-tail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l0 -15"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M15 21l-3 -3l-3 3"},null),e(" ")])}},c$={name:"ArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M18 11l-6 -6"},null),e(" "),t("path",{d:"M6 11l6 -6"},null),e(" ")])}},u$={name:"ArrowWaveLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14h-4v-4"},null),e(" "),t("path",{d:"M21 12c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2"},null),e(" ")])}},p$={name:"ArrowWaveLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h-4v4"},null),e(" "),t("path",{d:"M21 12c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2"},null),e(" ")])}},g$={name:"ArrowWaveRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M3 12c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2"},null),e(" ")])}},w$={name:"ArrowWaveRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-wave-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2"},null),e(" ")])}},v$={name:"ArrowZigZagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrow-zig-zag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-10l10 6v-12"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" ")])}},f$={name:"ArrowsCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h4v4"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M4 20l5 -5"},null),e(" "),t("path",{d:"M16 20h4v-4"},null),e(" "),t("path",{d:"M4 4l16 16"},null),e(" ")])}},m$={name:"ArrowsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},k$={name:"ArrowsDiagonalMinimize2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 10h-4v-4"},null),e(" "),t("path",{d:"M20 4l-6 6"},null),e(" "),t("path",{d:"M6 14h4v4"},null),e(" "),t("path",{d:"M10 14l-6 6"},null),e(" ")])}},b$={name:"ArrowsDiagonalMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10h4v-4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" "),t("path",{d:"M18 14h-4v4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" ")])}},M$={name:"ArrowsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" ")])}},x$={name:"ArrowsDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16h10"},null),e(" "),t("path",{d:"M11 16l4 4"},null),e(" "),t("path",{d:"M11 16l4 -4"},null),e(" "),t("path",{d:"M13 8h-10"},null),e(" "),t("path",{d:"M13 8l-4 4"},null),e(" "),t("path",{d:"M13 8l-4 -4"},null),e(" ")])}},z$={name:"ArrowsDoubleNeSwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-ne-sw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14l11 -11"},null),e(" "),t("path",{d:"M10 3h4v4"},null),e(" "),t("path",{d:"M10 17v4h4"},null),e(" "),t("path",{d:"M21 10l-11 11"},null),e(" ")])}},I$={name:"ArrowsDoubleNwSeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-nw-se",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21l-11 -11"},null),e(" "),t("path",{d:"M3 14v-4h4"},null),e(" "),t("path",{d:"M17 14h4v-4"},null),e(" "),t("path",{d:"M10 3l11 11"},null),e(" ")])}},y$={name:"ArrowsDoubleSeNwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-se-nw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l11 11"},null),e(" "),t("path",{d:"M14 17v4h-4"},null),e(" "),t("path",{d:"M14 3h-4v4"},null),e(" "),t("path",{d:"M21 14l-11 -11"},null),e(" ")])}},C$={name:"ArrowsDoubleSwNeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-double-sw-ne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-11 11"},null),e(" "),t("path",{d:"M3 10v4h4"},null),e(" "),t("path",{d:"M17 10h4v4"},null),e(" "),t("path",{d:"M10 21l11 -11"},null),e(" ")])}},S$={name:"ArrowsDownUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" ")])}},$$={name:"ArrowsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l0 -18"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M4 18l3 3l3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},A$={name:"ArrowsExchange2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10h-14l4 -4"},null),e(" "),t("path",{d:"M7 14h14l-4 4"},null),e(" ")])}},B$={name:"ArrowsExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h14l-4 -4"},null),e(" "),t("path",{d:"M17 14h-14l4 4"},null),e(" ")])}},H$={name:"ArrowsHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" ")])}},N$={name:"ArrowsJoin2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448"},null),e(" "),t("path",{d:"M3 17h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},j$={name:"ArrowsJoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-join",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h5l3.5 5h9.5"},null),e(" "),t("path",{d:"M3 17h5l3.495 -5"},null),e(" "),t("path",{d:"M18 15l3 -3l-3 -3"},null),e(" ")])}},P$={name:"ArrowsLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-4 4l4 4"},null),e(" "),t("path",{d:"M3 7h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M13 17l4 4l4 -4"},null),e(" ")])}},L$={name:"ArrowsLeftRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M6 10l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},D$={name:"ArrowsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l18 0"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M6 4l-3 3l3 3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},O$={name:"ArrowsMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" "),t("path",{d:"M14 10l6 -6"},null),e(" "),t("path",{d:"M8 20l-4 0l0 -4"},null),e(" "),t("path",{d:"M4 20l6 -6"},null),e(" "),t("path",{d:"M16 20l4 0l0 -4"},null),e(" "),t("path",{d:"M14 14l6 6"},null),e(" "),t("path",{d:"M8 4l-4 0l0 4"},null),e(" "),t("path",{d:"M4 4l6 6"},null),e(" ")])}},F$={name:"ArrowsMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l4 0l0 -4"},null),e(" "),t("path",{d:"M3 3l6 6"},null),e(" "),t("path",{d:"M5 15l4 0l0 4"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M19 9l-4 0l0 -4"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M19 15l-4 0l0 4"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},R$={name:"ArrowsMoveHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},T$={name:"ArrowsMoveVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},E$={name:"ArrowsMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l3 3l-3 3"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" "),t("path",{d:"M6 9l-3 3l3 3"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M15 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" ")])}},V$={name:"ArrowsRandomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-random",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 21h-4v-4"},null),e(" "),t("path",{d:"M16 21l5 -5"},null),e(" "),t("path",{d:"M6.5 9.504l-3.5 -2l2 -3.504"},null),e(" "),t("path",{d:"M3 7.504l6.83 -1.87"},null),e(" "),t("path",{d:"M4 16l4 -1l1 4"},null),e(" "),t("path",{d:"M8 15l-3.5 6"},null),e(" "),t("path",{d:"M21 5l-.5 4l-4 -.5"},null),e(" "),t("path",{d:"M20.5 9l-4.5 -5.5"},null),e(" ")])}},_$={name:"ArrowsRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4l4 -4"},null),e(" "),t("path",{d:"M7 21v-11a3 3 0 0 1 3 -3h11"},null),e(" "),t("path",{d:"M17 11l4 -4l-4 -4"},null),e(" ")])}},W$={name:"ArrowsRightLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M6 20l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 17l18 0"},null),e(" ")])}},X$={name:"ArrowsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17l-18 0"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M21 7l-18 0"},null),e(" ")])}},q$={name:"ArrowsShuffle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5"},null),e(" ")])}},Y$={name:"ArrowsShuffleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-shuffle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5"},null),e(" "),t("path",{d:"M21 7h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3"},null),e(" ")])}},U$={name:"ArrowsSortIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-sort",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l4 -4l4 4m-4 -4v14"},null),e(" "),t("path",{d:"M21 15l-4 4l-4 -4m4 4v-14"},null),e(" ")])}},G$={name:"ArrowsSplit2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897"},null),e(" "),t("path",{d:"M21 7h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},Z$={name:"ArrowsSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17h-8l-3.5 -5h-6.5"},null),e(" "),t("path",{d:"M21 7h-8l-3.495 5"},null),e(" "),t("path",{d:"M18 10l3 -3l-3 -3"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},K$={name:"ArrowsTransferDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v6"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 21v-18"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 21v-2"},null),e(" "),t("path",{d:"M17 15v-2"},null),e(" ")])}},Q$={name:"ArrowsTransferUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-transfer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21v-6"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M17 3v18"},null),e(" "),t("path",{d:"M10 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M7 9v2"},null),e(" ")])}},J$={name:"ArrowsUpDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" "),t("path",{d:"M10 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M20 18l-3 3l-3 -3"},null),e(" "),t("path",{d:"M17 21l0 -18"},null),e(" ")])}},tA={name:"ArrowsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7l-4 -4l-4 4"},null),e(" "),t("path",{d:"M17 3v11a3 3 0 0 1 -3 3h-11"},null),e(" "),t("path",{d:"M7 13l-4 4l4 4"},null),e(" ")])}},eA={name:"ArrowsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 21l4 -4l-4 -4"},null),e(" "),t("path",{d:"M21 17h-11a3 3 0 0 1 -3 -3v-11"},null),e(" "),t("path",{d:"M11 7l-4 -4l-4 4"},null),e(" ")])}},nA={name:"ArrowsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l0 18"},null),e(" "),t("path",{d:"M4 6l3 -3l3 3"},null),e(" "),t("path",{d:"M20 6l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 3l0 18"},null),e(" ")])}},lA={name:"ArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7l4 -4l4 4"},null),e(" "),t("path",{d:"M8 17l4 4l4 -4"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},rA={name:"ArtboardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7h-6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-6a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 7a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 15a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oA={name:"ArtboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7"},null),e(" "),t("path",{d:"M3 8h1"},null),e(" "),t("path",{d:"M3 16h1"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M16 3v1"},null),e(" "),t("path",{d:"M20 8h1"},null),e(" "),t("path",{d:"M20 16h1"},null),e(" "),t("path",{d:"M8 20v1"},null),e(" "),t("path",{d:"M16 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sA={name:"ArtboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-artboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 8l1 0"},null),e(" "),t("path",{d:"M3 16l1 0"},null),e(" "),t("path",{d:"M8 3l0 1"},null),e(" "),t("path",{d:"M16 3l0 1"},null),e(" "),t("path",{d:"M20 8l1 0"},null),e(" "),t("path",{d:"M20 16l1 0"},null),e(" "),t("path",{d:"M8 20l0 1"},null),e(" "),t("path",{d:"M16 20l0 1"},null),e(" ")])}},aA={name:"ArticleFilledFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-filled-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-2 12h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm0 -4h-10l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h10l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iA={name:"ArticleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hA={name:"ArticleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-article",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8h10"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" ")])}},dA={name:"AspectRatioFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 3a1 1 0 0 1 .117 1.993l-.117 .007h-2v2a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-3a1 1 0 0 1 .883 -.993l.117 -.007h3zm9 5a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 1 -.883 .993l-.117 .007h-3a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 .883 -.993l.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cA={name:"AspectRatioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 12v-3h2"},null),e(" "),t("path",{d:"M17 12v1m-2 2h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uA={name:"AspectRatioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-aspect-ratio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" "),t("path",{d:"M17 12v3h-3"},null),e(" ")])}},pA={name:"AssemblyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689"},null),e(" "),t("path",{d:"M11.593 7.591c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gA={name:"AssemblyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-assembly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.422c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z"},null),e(" ")])}},wA={name:"AssetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.218 17.975l6.619 -12.174"},null),e(" "),t("path",{d:"M6.079 9.756l12.217 -6.631"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},vA={name:"AsteriskSimpleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk-simple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-9"},null),e(" "),t("path",{d:"M12 12l-9 -2.5"},null),e(" "),t("path",{d:"M12 12l9 -2.5"},null),e(" "),t("path",{d:"M12 12l6 8.5"},null),e(" "),t("path",{d:"M12 12l-6 8.5"},null),e(" ")])}},fA={name:"AsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 4.5"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l-8 4.5"},null),e(" ")])}},mA={name:"AtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M19.695 15.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kA={name:"AtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-at",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28"},null),e(" ")])}},bA={name:"Atom2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 20a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2.89 12.006a1 1 0 0 1 1.104 .884a8 8 0 0 0 4.444 6.311a1 1 0 1 1 -.876 1.799a10 10 0 0 1 -5.556 -7.89a1 1 0 0 1 .884 -1.103z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.993 12l.117 .006a1 1 0 0 1 .884 1.104a10 10 0 0 1 -5.556 7.889a1 1 0 1 1 -.876 -1.798a8 8 0 0 0 4.444 -6.31a1 1 0 0 1 .987 -.891z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.567 4.226a10 10 0 0 1 12.666 0a1 1 0 1 1 -1.266 1.548a8 8 0 0 0 -10.134 0a1 1 0 1 1 -1.266 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MA={name:"Atom2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M3 9l0 .01"},null),e(" "),t("path",{d:"M21 9l0 .01"},null),e(" "),t("path",{d:"M8 20.1a9 9 0 0 1 -5 -7.1"},null),e(" "),t("path",{d:"M16 20.1a9 9 0 0 0 5 -7.1"},null),e(" "),t("path",{d:"M6.2 5a9 9 0 0 1 11.4 0"},null),e(" ")])}},xA={name:"AtomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zA={name:"AtomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-atom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9"},null),e(" "),t("path",{d:"M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242"},null),e(" ")])}},IA={name:"AugmentedReality2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M17 17l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5z"},null),e(" "),t("path",{d:"M13 14.5v4.5l4 2.5"},null),e(" "),t("path",{d:"M17 17l4 -2.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" ")])}},yA={name:"AugmentedRealityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.557 .228 -1.061 .595 -1.424"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.558 0 1.062 -.228 1.425 -.596"},null),e(" "),t("path",{d:"M12 12.5l.312 -.195m2.457 -1.536l1.231 -.769"},null),e(" "),t("path",{d:"M9.225 9.235l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CA={name:"AugmentedRealityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-augmented-reality",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12.5l4 -2.5"},null),e(" "),t("path",{d:"M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z"},null),e(" "),t("path",{d:"M8 10v4.5l4 2.5"},null),e(" ")])}},SA={name:"AwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$A={name:"AwardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AA={name:"AwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889"},null),e(" "),t("path",{d:"M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889"},null),e(" ")])}},BA={name:"AxeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6.66 15.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z"},null),e(" ")])}},HA={name:"AxisXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 5v.01"},null),e(" "),t("path",{d:"M17 20l3 -3l-3 -3"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" ")])}},NA={name:"AxisYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-axis-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M19 20h-.01"},null),e(" "),t("path",{d:"M4 7l3 -3l3 3"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" ")])}},jA={name:"BabyBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z"},null),e(" ")])}},PA={name:"BabyCarriageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baby-carriage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6"},null),e(" "),t("path",{d:"M6 9h14"},null),e(" "),t("path",{d:"M9 17l1 -3"},null),e(" "),t("path",{d:"M16 14l1 3"},null),e(" ")])}},LA={name:"BackhoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backhoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M21.12 9.88l-3.12 -4.88l-5 5"},null),e(" "),t("path",{d:"M21.12 9.88a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z"},null),e(" ")])}},DA={name:"BackpackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OA={name:"BackpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M10 6v-1a2 2 0 1 1 4 0v1"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M11 10h2"},null),e(" ")])}},FA={name:"BackspaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5a2 2 0 0 1 1.995 1.85l.005 .15v10a2 2 0 0 1 -1.85 1.995l-.15 .005h-11a1 1 0 0 1 -.608 -.206l-.1 -.087l-5.037 -5.04c-.809 -.904 -.847 -2.25 -.083 -3.23l.12 -.144l5 -5a1 1 0 0 1 .577 -.284l.131 -.009h11zm-7.489 4.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RA={name:"BackspaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-backspace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5z"},null),e(" "),t("path",{d:"M12 10l4 4m0 -4l-4 4"},null),e(" ")])}},TA={name:"Badge3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" ")])}},EA={name:"Badge4kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-4k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M10 9v6"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" ")])}},VA={name:"Badge8kIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-8k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M17 9l-2 3l2 3"},null),e(" "),t("path",{d:"M15 12h-1"},null),e(" "),t("path",{d:"M8.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" ")])}},_A={name:"BadgeAdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" ")])}},WA={name:"BadgeArIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-ar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M7 13h3"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" ")])}},XA={name:"BadgeCcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-cc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},qA={name:"BadgeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v13a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-13a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YA={name:"BadgeHdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-hd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M10 15v-6"},null),e(" "),t("path",{d:"M7 12h3"},null),e(" ")])}},UA={name:"BadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GA={name:"BadgeSdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-sd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z"},null),e(" "),t("path",{d:"M7 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},ZA={name:"BadgeTmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-tm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 9h4"},null),e(" "),t("path",{d:"M8 9v6"},null),e(" "),t("path",{d:"M13 15v-6l2 3l2 -3v6"},null),e(" ")])}},KA={name:"BadgeVoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" "),t("path",{d:"M15.5 9a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" ")])}},QA={name:"BadgeVrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-vr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3"},null),e(" "),t("path",{d:"M7 9l2 6l2 -6"},null),e(" ")])}},JA={name:"BadgeWcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge-wc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6.5 9l.5 6l2 -4l2 4l.5 -6"},null),e(" "),t("path",{d:"M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" ")])}},tB={name:"BadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-13l-5 3l-5 -3v13l5 3z"},null),e(" ")])}},eB={name:"BadgesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nB={name:"BadgesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3"},null),e(" "),t("path",{d:"M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lB={name:"BadgesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-badges",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v-4l-5 3l-5 -3v4l5 3z"},null),e(" "),t("path",{d:"M17 8v-4l-5 3l-5 -3v4l5 3z"},null),e(" ")])}},rB={name:"BaguetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baguette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841z"},null),e(" "),t("path",{d:"M9.5 7.5l1.5 3.5"},null),e(" "),t("path",{d:"M6.5 10.5l1.5 3.5"},null),e(" "),t("path",{d:"M12.5 4.5l1.5 3.5"},null),e(" ")])}},oB={name:"BallAmericanFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-1 1m-2 2l-3 3"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M6.813 6.802a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sB={name:"BallAmericanFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-american-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M10 12l2 2"},null),e(" "),t("path",{d:"M12 10l2 2"},null),e(" "),t("path",{d:"M8 21a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M16 3a5 5 0 0 0 5 5"},null),e(" ")])}},aB={name:"BallBaseballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-baseball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z"},null),e(" "),t("path",{d:"M12.495 3.02a9 9 0 0 1 -9.475 9.475"},null),e(" "),t("path",{d:"M20.98 11.505a9 9 0 0 0 -9.475 9.475"},null),e(" "),t("path",{d:"M9 9l2 2"},null),e(" "),t("path",{d:"M13 13l2 2"},null),e(" "),t("path",{d:"M11 7l2 1"},null),e(" "),t("path",{d:"M7 11l1 2"},null),e(" "),t("path",{d:"M16 11l1 2"},null),e(" "),t("path",{d:"M11 16l2 1"},null),e(" ")])}},iB={name:"BallBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.65 5.65l12.7 12.7"},null),e(" "),t("path",{d:"M5.65 18.35l12.7 -12.7"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 0 9 9"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 1 9 9"},null),e(" ")])}},hB={name:"BallBowlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-bowling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 9l0 .01"},null),e(" "),t("path",{d:"M15 8l0 .01"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" ")])}},dB={name:"BallFootballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73"},null),e(" "),t("path",{d:"M12 7l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681z"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M15 16l2.5 3"},null),e(" "),t("path",{d:"M16.755 10.455l3.745 -1.455"},null),e(" "),t("path",{d:"M9.061 16.045l-2.561 2.955"},null),e(" "),t("path",{d:"M7.245 10.455l-3.745 -1.455"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cB={name:"BallFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55z"},null),e(" "),t("path",{d:"M12 7v-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45"},null),e(" ")])}},uB={name:"BallTennisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-tennis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 5.3a9 9 0 0 1 0 13.4"},null),e(" "),t("path",{d:"M18 5.3a9 9 0 0 0 0 13.4"},null),e(" ")])}},pB={name:"BallVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ball-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 4"},null),e(" "),t("path",{d:"M7.5 13.5a12 12 0 0 0 8.5 6.5"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -7.464 4.928"},null),e(" "),t("path",{d:"M12.951 7.353a12 12 0 0 0 -9.88 4.111"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 -.536 -8.928"},null),e(" "),t("path",{d:"M15.549 15.147a12 12 0 0 0 1.38 -10.611"},null),e(" ")])}},gB={name:"BalloonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a7 7 0 0 1 7 7c0 5.457 -3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.004 -.24a7 7 0 0 1 6.996 -6.76zm0 4a1 1 0 0 0 0 2l.117 .007a1 1 0 0 1 .883 .993l.007 .117a1 1 0 0 0 1.993 -.117a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 1 .993 .883l.007 .117v1a3 3 0 0 1 -2.824 2.995l-.176 .005h-3a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 1 -2 0a3 3 0 0 1 2.824 -2.995l.176 -.005h3a1 1 0 0 0 .993 -.883l.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wB={name:"BalloonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vB={name:"BalloonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-balloon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"},null),e(" "),t("path",{d:"M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"},null),e(" ")])}},fB={name:"BallpenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.828 2a3 3 0 0 1 1.977 .743l.145 .136l1.171 1.17a3 3 0 0 1 .136 4.1l-.136 .144l-1.706 1.707l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.292 -3.293l-1.586 -1.585l-7.464 7.464a3.828 3.828 0 0 1 -2.474 1.114l-.233 .008c-.674 0 -1.33 -.178 -1.905 -.508l-1.216 1.214a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.214 -1.216a3.828 3.828 0 0 1 .454 -4.442l.16 -.17l10.586 -10.586a3 3 0 0 1 1.923 -.873l.198 -.006zm0 2a1 1 0 0 0 -.608 .206l-.099 .087l-1.707 1.707l2.586 2.585l1.707 -1.706a1 1 0 0 0 .284 -.576l.01 -.131a1 1 0 0 0 -.207 -.609l-.087 -.099l-1.171 -1.171a1 1 0 0 0 -.708 -.293z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mB={name:"BallpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-2 2"},null),e(" "),t("path",{d:"M10 10l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172"},null),e(" "),t("path",{d:"M16 12l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kB={name:"BallpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ballpen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l7 7l-4 4"},null),e(" "),t("path",{d:"M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z"},null),e(" "),t("path",{d:"M4 20l1.768 -1.768"},null),e(" ")])}},bB={name:"BanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M5.7 5.7l12.6 12.6"},null),e(" ")])}},MB={name:"BandageFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.207 3.793a5.95 5.95 0 0 1 .179 8.228l-.179 .186l-8 8a5.95 5.95 0 0 1 -8.593 -8.228l.179 -.186l8 -8a5.95 5.95 0 0 1 8.414 0zm-8.207 9.207a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-4 0a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm2 -2a1 1 0 0 0 -1 1l.007 .127a1 1 0 0 0 1.993 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xB={name:"BandageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M10.513 6.487l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zB={name:"BandageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bandage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12l0 .01"},null),e(" "),t("path",{d:"M10 12l0 .01"},null),e(" "),t("path",{d:"M12 10l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" ")])}},IB={name:"BarbellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6.298 6.288a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M15 15v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yB={name:"BarbellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barbell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M22 12h-1"},null),e(" ")])}},CB={name:"BarcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2c.551 0 1.05 -.223 1.412 -.584"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11v2"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SB={name:"BarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 11h1v2h-1z"},null),e(" "),t("path",{d:"M10 11l0 2"},null),e(" "),t("path",{d:"M14 11h1v2h-1z"},null),e(" "),t("path",{d:"M19 11l0 2"},null),e(" ")])}},$B={name:"BarrelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63"},null),e(" "),t("path",{d:"M14 4c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13"},null),e(" "),t("path",{d:"M10 4a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h11.5"},null),e(" "),t("path",{d:"M19.5 8h-7.5m-4 0h-3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AB={name:"BarrelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22z"},null),e(" "),t("path",{d:"M14 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8"},null),e(" "),t("path",{d:"M10 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8"},null),e(" "),t("path",{d:"M4.5 16h15"},null),e(" "),t("path",{d:"M19.5 8h-15"},null),e(" ")])}},BB={name:"BarrierBlockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696"},null),e(" "),t("path",{d:"M16 16h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l4.244 -4.244"},null),e(" "),t("path",{d:"M13.745 9.755l2.755 -2.755"},null),e(" "),t("path",{d:"M13.5 16l1.249 -1.249"},null),e(" "),t("path",{d:"M16.741 12.759l3.259 -3.259"},null),e(" "),t("path",{d:"M4 13.5l4.752 -4.752"},null),e(" "),t("path",{d:"M17 17v3"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HB={name:"BarrierBlockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-barrier-block",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 16v4"},null),e(" "),t("path",{d:"M7.5 16l9 -9"},null),e(" "),t("path",{d:"M13.5 16l6.5 -6.5"},null),e(" "),t("path",{d:"M4 13.5l6.5 -6.5"},null),e(" "),t("path",{d:"M17 16v4"},null),e(" "),t("path",{d:"M5 20h4"},null),e(" "),t("path",{d:"M15 20h4"},null),e(" "),t("path",{d:"M17 7v-2"},null),e(" "),t("path",{d:"M7 7v-2"},null),e(" ")])}},NB={name:"BaselineDensityLargeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-large",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" ")])}},jB={name:"BaselineDensityMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M4 4h16"},null),e(" ")])}},PB={name:"BaselineDensitySmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline-density-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 21h16"},null),e(" ")])}},LB={name:"BaselineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-baseline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M8 16v-8a4 4 0 1 1 8 0v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" ")])}},DB={name:"BasketFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.684 3.27l.084 .09l4.7 5.64h3.532a1 1 0 0 1 .991 1.131l-.02 .112l-1.984 7.918c-.258 1.578 -1.41 2.781 -2.817 2.838l-.17 .001l-10.148 -.002c-1.37 -.053 -2.484 -1.157 -2.787 -2.57l-.035 -.185l-2 -8a1 1 0 0 1 .857 -1.237l.113 -.006h3.53l4.702 -5.64a1 1 0 0 1 1.452 -.09zm-.684 8.73a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176a3 3 0 1 0 2.995 -3.176zm0 -6.438l-2.865 3.438h5.73l-2.865 -3.438z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},OB={name:"BasketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l1.359 -1.63"},null),e(" "),t("path",{d:"M10.176 6.188l1.824 -2.188l5 6"},null),e(" "),t("path",{d:"M18.77 18.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7"},null),e(" "),t("path",{d:"M14 10h7l-1.397 5.587"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FB={name:"BasketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-basket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10l5 -6l5 6"},null),e(" "),t("path",{d:"M21 10l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},RB={name:"BatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},TB={name:"BathFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},EB={name:"BathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M6 12v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},VB={name:"BathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bath",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M6 12v-7a2 2 0 0 1 2 -2h3v2.25"},null),e(" "),t("path",{d:"M4 21l1 -1.5"},null),e(" "),t("path",{d:"M20 21l-1 -1.5"},null),e(" ")])}},_B={name:"Battery1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WB={name:"Battery1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},XB={name:"Battery2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qB={name:"Battery2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" ")])}},YB={name:"Battery3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UB={name:"Battery3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" ")])}},GB={name:"Battery4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11zm-10 3a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZB={name:"Battery4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" "),t("path",{d:"M10 10l0 4"},null),e(" "),t("path",{d:"M13 10l0 4"},null),e(" "),t("path",{d:"M16 10l0 4"},null),e(" ")])}},KB={name:"BatteryAutomotiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-automotive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 6v-2"},null),e(" "),t("path",{d:"M19 4l0 2"},null),e(" "),t("path",{d:"M6.5 13l3 0"},null),e(" "),t("path",{d:"M14.5 13l3 0"},null),e(" "),t("path",{d:"M16 11.5l0 3"},null),e(" ")])}},QB={name:"BatteryCharging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"},null),e(" "),t("path",{d:"M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"},null),e(" "),t("path",{d:"M6 22v-3"},null),e(" "),t("path",{d:"M4 15v-2.5"},null),e(" "),t("path",{d:"M8 15v-2.5"},null),e(" ")])}},JB={name:"BatteryChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M12 8l-2 4h3l-2 4"},null),e(" ")])}},tH={name:"BatteryEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"},null),e(" "),t("path",{d:"M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"},null),e(" "),t("path",{d:"M3 20v-3"},null),e(" ")])}},eH={name:"BatteryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6a3 3 0 0 1 2.995 2.824l.005 .176v.086l.052 .019a1.5 1.5 0 0 1 .941 1.25l.007 .145v3a1.5 1.5 0 0 1 -.948 1.395l-.052 .018v.087a3 3 0 0 1 -2.824 2.995l-.176 .005h-11a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h11z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nH={name:"BatteryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1"},null),e(" ")])}},lH={name:"BatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" ")])}},rH={name:"BeachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648"},null),e(" "),t("path",{d:"M10.27 6.269l9.926 5.731a6 6 0 0 0 -10.32 -6.123"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-.739 1.279"},null),e(" "),t("path",{d:"M12.794 12.82l-.794 1.376"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oH={name:"BeachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"},null),e(" "),t("path",{d:"M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"},null),e(" "),t("path",{d:"M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"},null),e(" "),t("path",{d:"M15 9l-3 5.196"},null),e(" "),t("path",{d:"M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"},null),e(" ")])}},sH={name:"BedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a1 1 0 0 1 .993 .883l.007 .117v6h6v-5a1 1 0 0 1 .883 -.993l.117 -.007h8a3 3 0 0 1 2.995 2.824l.005 .176v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-3h-16v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-11a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 8a2 2 0 1 1 -1.995 2.15l-.005 -.15l.005 -.15a2 2 0 0 1 1.995 -1.85z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aH={name:"BedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11"},null),e(" "),t("path",{d:"M3 14h11"},null),e(" "),t("path",{d:"M18 14h3"},null),e(" "),t("path",{d:"M21 18v-8a2 2 0 0 0 -2 -2h-7"},null),e(" "),t("path",{d:"M11 11v3"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iH={name:"BedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6"},null),e(" "),t("path",{d:"M7 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hH={name:"BeerFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dH={name:"BeerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9"},null),e(" "),t("path",{d:"M7 8h1m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cH={name:"BeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},uH={name:"BellBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.368 2.67"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},pH={name:"BellCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},gH={name:"BellCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.016 .129 .037 .256 .065 .382"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.502 2.959"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wH={name:"BellCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.498 2.958"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},vH={name:"BellCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" ")])}},fH={name:"BellDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.911 5.17"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.02 2.822"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},mH={name:"BellDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.518 2.955"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},kH={name:"BellExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1.5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},bH={name:"BellFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},MH={name:"BellHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1c0 1.408 .97 2.59 2.28 2.913"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xH={name:"BellMinusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 8h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zH={name:"BellMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3c.047 .386 .149 .758 .3 1.107"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.504 2.958"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},IH={name:"BellOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yH={name:"BellPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.022 2.821"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},CH={name:"BellPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.64 2.931"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},SH={name:"BellPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm0 6a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$H={name:"BellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.51 2.957"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},AH={name:"BellQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 5.914 .716"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},BH={name:"BellRinging2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.63 17.531c.612 .611 .211 1.658 -.652 1.706a3.992 3.992 0 0 1 -3.05 -1.166a3.992 3.992 0 0 1 -1.165 -3.049c.046 -.826 1.005 -1.228 1.624 -.726l.082 .074l3.161 3.16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.071 3.929c.96 .96 1.134 2.41 .52 3.547l-.09 .153l-.024 .036a8.013 8.013 0 0 1 -1.446 7.137l-.183 .223l-.191 .218l-2.073 2.072l-.08 .112a3 3 0 0 0 -.499 2.113l.035 .201l.045 .185c.264 .952 -.853 1.645 -1.585 1.051l-.086 -.078l-11.313 -11.313c-.727 -.727 -.017 -1.945 .973 -1.671a3 3 0 0 0 2.5 -.418l.116 -.086l2.101 -2.1a8 8 0 0 1 7.265 -1.86l.278 .071l.037 -.023a3.003 3.003 0 0 1 3.432 .192l.14 .117l.128 .12z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HH={name:"BellRinging2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0z"},null),e(" "),t("path",{d:"M7.343 12.414l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707"},null),e(" ")])}},NH={name:"BellRingingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.451 2.344a1 1 0 0 1 1.41 -.099a12.05 12.05 0 0 1 3.048 4.064a1 1 0 1 1 -1.818 .836a10.05 10.05 0 0 0 -2.54 -3.39a1 1 0 0 1 -.1 -1.41z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5.136 2.245a1 1 0 0 1 1.312 1.51a10.05 10.05 0 0 0 -2.54 3.39a1 1 0 1 1 -1.817 -.835a12.05 12.05 0 0 1 3.045 -4.065z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jH={name:"BellRingingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-ringing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M21 6.727a11.05 11.05 0 0 0 -2.794 -3.727"},null),e(" "),t("path",{d:"M3 6.727a11.05 11.05 0 0 1 2.792 -3.727"},null),e(" ")])}},PH={name:"BellSchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5"},null),e(" "),t("path",{d:"M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068"},null),e(" "),t("path",{d:"M10 10v.01"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},LH={name:"BellSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.685 2.984"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},DH={name:"BellShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},OH={name:"BellStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 17h-5.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 3.88 5"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 2.15 2.878"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},FH={name:"BellUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 3.49 2.96"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},RH={name:"BellXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm-1.489 6.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TH={name:"BellXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v2"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 4.194 2.753"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},EH={name:"BellZFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VH={name:"BellZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" "),t("path",{d:"M10 9h4l-4 4h4"},null),e(" ")])}},_H={name:"BellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"},null),e(" "),t("path",{d:"M9 17v1a3 3 0 0 0 6 0v-1"},null),e(" ")])}},WH={name:"BetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-beta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5"},null),e(" ")])}},XH={name:"BibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 7v6"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" ")])}},qH={name:"BikeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.437 16.44a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M12 19v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YH={name:"BikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 19l0 -4l-3 -3l5 -4l2 3l3 0"},null),e(" "),t("path",{d:"M17 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},UH={name:"BinaryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7v-2h-1"},null),e(" "),t("path",{d:"M18 19v-1"},null),e(" "),t("path",{d:"M15.5 5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M10.5 14h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5v-4a.5 .5 0 0 1 .5 -.5z"},null),e(" "),t("path",{d:"M6 10v.01"},null),e(" "),t("path",{d:"M6 19v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GH={name:"BinaryTree2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M6.316 12.496l4.368 -4.992"},null),e(" "),t("path",{d:"M17.684 12.496l-4.366 -4.99"},null),e(" ")])}},ZH={name:"BinaryTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M16 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M11 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5.058 18.306l2.88 -4.606"},null),e(" "),t("path",{d:"M10.061 10.303l2.877 -4.604"},null),e(" "),t("path",{d:"M10.065 13.705l2.876 4.6"},null),e(" "),t("path",{d:"M15.063 5.7l2.881 4.61"},null),e(" ")])}},KH={name:"BinaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-binary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 10v-5h-1m8 14v-5h-1"},null),e(" "),t("path",{d:"M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M6 10h.01m-.01 9h.01"},null),e(" ")])}},QH={name:"BiohazardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.586 10.586a2 2 0 1 0 2.836 2.82"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217"},null),e(" "),t("path",{d:"M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693"},null),e(" "),t("path",{d:"M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06"},null),e(" "),t("path",{d:"M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217"},null),e(" "),t("path",{d:"M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172"},null),e(" "),t("path",{d:"M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},JH={name:"BiohazardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-biohazard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798"},null),e(" ")])}},tN={name:"BladeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.586 3a2 2 0 0 1 2.828 0l.586 .585l.586 -.585a2 2 0 0 1 2.7 -.117l.128 .117l2.586 2.586a2 2 0 0 1 0 2.828l-.586 .586l.586 .586a2 2 0 0 1 0 2.828l-8.586 8.586a2 2 0 0 1 -2.828 0l-.586 -.586l-.586 .586a2 2 0 0 1 -2.828 0l-2.586 -2.586a2 2 0 0 1 0 -2.828l.585 -.587l-.585 -.585a2 2 0 0 1 -.117 -2.7l.117 -.129zm3.027 4.21a1 1 0 0 0 -1.32 1.497l.292 .293l-1.068 1.067a2.003 2.003 0 0 0 -2.512 1.784l-.005 .149l.005 .15c.01 .125 .03 .248 .062 .367l-1.067 1.068l-.293 -.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l.292 .293l-.292 .293l-.083 .094a1 1 0 0 0 1.497 1.32l.293 -.292l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l1.069 -1.067a2.003 2.003 0 0 0 2.449 -2.45l1.067 -1.068l.293 .292l.094 .083a1 1 0 0 0 1.32 -1.497l-.292 -.293l.292 -.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-.293 .292l-.293 -.292z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},eN={name:"BladeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0z"},null),e(" "),t("path",{d:"M8 16l3.2 -3.2"},null),e(" "),t("path",{d:"M12.8 11.2l3.2 -3.2"},null),e(" "),t("path",{d:"M14 8l2 2"},null),e(" "),t("path",{d:"M8 14l2 2"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},nN={name:"BleachChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M11 12h-1a2 2 0 1 0 0 4h1"},null),e(" "),t("path",{d:"M14 12v4h2"},null),e(" ")])}},lN={name:"BleachNoChlorineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-no-chlorine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M6.576 19l7.907 -13.733"},null),e(" "),t("path",{d:"M11.719 19.014l5.346 -9.284"},null),e(" ")])}},rN={name:"BleachOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oN={name:"BleachIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bleach",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" ")])}},sN={name:"BlockquoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blockquote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h15"},null),e(" "),t("path",{d:"M21 19h-15"},null),e(" "),t("path",{d:"M15 11h6"},null),e(" "),t("path",{d:"M21 7h-6"},null),e(" "),t("path",{d:"M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2"},null),e(" ")])}},aN={name:"BluetoothConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M18 12l1 0"},null),e(" ")])}},iN={name:"BluetoothOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4"},null),e(" ")])}},hN={name:"BluetoothXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802"},null),e(" "),t("path",{d:"M16 6l4 4"},null),e(" "),t("path",{d:"M20 6l-4 4"},null),e(" ")])}},dN={name:"BluetoothIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bluetooth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l10 8l-5 4l0 -16l5 4l-10 8"},null),e(" ")])}},cN={name:"BlurOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M16 12h5"},null),e(" "),t("path",{d:"M13 9h7"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h3m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uN={name:"BlurIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-blur",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" "),t("path",{d:"M12 12h9"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 6h6"},null),e(" "),t("path",{d:"M12 18h6"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},pN={name:"BmpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bmp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M6 14a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M9 16v-8l3 6l3 -6v8"},null),e(" ")])}},gN={name:"BoldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5"},null),e(" "),t("path",{d:"M17.107 17.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wN={name:"BoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5h6a3.5 3.5 0 0 1 0 7h-6z"},null),e(" "),t("path",{d:"M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7"},null),e(" ")])}},vN={name:"BoltOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893"},null),e(" ")])}},fN={name:"BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"},null),e(" ")])}},mN={name:"BombFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.499 3.996a2.2 2.2 0 0 1 1.556 .645l3.302 3.301a2.2 2.2 0 0 1 0 3.113l-.567 .567l.043 .192a8.5 8.5 0 0 1 -3.732 8.83l-.23 .144a8.5 8.5 0 1 1 -2.687 -15.623l.192 .042l.567 -.566a2.2 2.2 0 0 1 1.362 -.636zm-4.499 5.004a4 4 0 0 0 -4 4a1 1 0 0 0 2 0a2 2 0 0 1 2 -2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 2a1 1 0 0 1 .117 1.993l-.117 .007h-1c0 .83 -.302 1.629 -.846 2.25l-.154 .163l-1.293 1.293a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.293 -1.292c.232 -.232 .375 -.537 .407 -.86l.007 -.14a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kN={name:"BombIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bomb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0z"},null),e(" "),t("path",{d:"M17 7l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M7 13a3 3 0 0 1 3 -3"},null),e(" ")])}},bN={name:"BoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MN={name:"BoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z"},null),e(" ")])}},xN={name:"BongOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zN={name:"BongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4z"},null),e(" "),t("path",{d:"M8 3h6"},null),e(" "),t("path",{d:"M6.1 17h9.8"},null),e(" ")])}},IN={name:"Book2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"},null),e(" "),t("path",{d:"M19 16h-12a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" ")])}},yN={name:"BookDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M13 16h-7a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 19l3 3l3 -3"},null),e(" "),t("path",{d:"M18 22v-9"},null),e(" ")])}},CN={name:"BookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},SN={name:"BookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6v13"},null),e(" "),t("path",{d:"M12 6v2m0 4v7"},null),e(" "),t("path",{d:"M21 6v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$N={name:"BookUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5"},null),e(" "),t("path",{d:"M11 16h-5a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M15 16l3 -3l3 3"},null),e(" "),t("path",{d:"M18 13v9"},null),e(" ")])}},AN={name:"BookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-book",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"},null),e(" "),t("path",{d:"M3 6l0 13"},null),e(" "),t("path",{d:"M12 6l0 13"},null),e(" "),t("path",{d:"M21 6l0 13"},null),e(" ")])}},BN={name:"BookmarkEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.35 17.39l-4.35 2.61v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},HN={name:"BookmarkFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a3 3 0 0 1 2.995 2.824l.005 .176v14a1 1 0 0 1 -1.413 .911l-.101 -.054l-4.487 -2.691l-4.485 2.691a1 1 0 0 1 -1.508 -.743l-.006 -.114v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},NN={name:"BookmarkMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.427 17.256l-.427 -.256l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},jN={name:"BookmarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 17v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7"},null),e(" ")])}},PN={name:"BookmarkPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.357 17.214l-.357 -.214l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},LN={name:"BookmarkQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.006 18.804l-3.006 -1.804l-5 3v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},DN={name:"BookmarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2"},null),e(" ")])}},ON={name:"BookmarksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FN={name:"BookmarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bookmarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6z"},null),e(" "),t("path",{d:"M9.265 4a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6"},null),e(" ")])}},RN={name:"BooksOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M8 4a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M9 5a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M13 13v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M5 8h3"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M14.254 10.244l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75"},null),e(" "),t("path",{d:"M19.585 19.589l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M19.207 15.199l.716 -.18"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TN={name:"BooksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-books",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 8h4"},null),e(" "),t("path",{d:"M9 16h4"},null),e(" "),t("path",{d:"M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z"},null),e(" "),t("path",{d:"M14 9l4 -1"},null),e(" "),t("path",{d:"M16 16l3.923 -.98"},null),e(" ")])}},EN={name:"BorderAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},VN={name:"BorderBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20l-16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" ")])}},_N={name:"BorderCornersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-corners",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M20 16v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M8 20h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" ")])}},WN={name:"BorderHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},XN={name:"BorderInnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-inner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},qN={name:"BorderLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l0 -16"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},YN={name:"BorderNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},UN={name:"BorderOuterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-outer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" ")])}},GN={name:"BorderRadiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-radius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},ZN={name:"BorderRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" ")])}},KN={name:"BorderSidesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-sides",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M20 16v-8"},null),e(" "),t("path",{d:"M8 4h8"},null),e(" "),t("path",{d:"M8 20h8"},null),e(" ")])}},QN={name:"BorderStyle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v.01"},null),e(" "),t("path",{d:"M8 18v.01"},null),e(" "),t("path",{d:"M12 18v.01"},null),e(" "),t("path",{d:"M16 18v.01"},null),e(" "),t("path",{d:"M20 18v.01"},null),e(" "),t("path",{d:"M18 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" ")])}},JN={name:"BorderStyleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-style",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h14"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},tj={name:"BorderTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M12 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M12 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M12 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},ej={name:"BorderVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-border-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M20 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M20 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" "),t("path",{d:"M20 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" "),t("path",{d:"M20 16l0 .01"},null),e(" "),t("path",{d:"M4 20l0 .01"},null),e(" "),t("path",{d:"M8 20l0 .01"},null),e(" "),t("path",{d:"M16 20l0 .01"},null),e(" "),t("path",{d:"M20 20l0 .01"},null),e(" ")])}},nj={name:"BottleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 1a2 2 0 0 1 1.995 1.85l.005 .15v.5c0 1.317 .381 2.604 1.094 3.705l.17 .25l.05 .072a9.093 9.093 0 0 1 1.68 4.92l.006 .354v6.199a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6.2a9.1 9.1 0 0 1 1.486 -4.982l.2 -.292l.05 -.069a6.823 6.823 0 0 0 1.264 -3.957v-.5a2 2 0 0 1 1.85 -1.995l.15 -.005h2zm.362 5h-2.724a8.827 8.827 0 0 1 -1.08 2.334l-.194 .284l-.05 .069a7.091 7.091 0 0 0 -1.307 3.798l-.003 .125a3.33 3.33 0 0 1 1.975 -.61a3.4 3.4 0 0 1 2.833 1.417c.27 .375 .706 .593 1.209 .583a1.4 1.4 0 0 0 1.166 -.583a3.4 3.4 0 0 1 .81 -.8l.003 .183c0 -1.37 -.396 -2.707 -1.137 -3.852l-.228 -.332a8.827 8.827 0 0 1 -1.273 -2.616z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lj={name:"BottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rj={name:"BottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537"},null),e(" "),t("path",{d:"M7 14.803a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805"},null),e(" ")])}},oj={name:"BounceLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8"},null),e(" "),t("path",{d:"M6 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},sj={name:"BounceRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bounce-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8"},null),e(" "),t("path",{d:"M18 9a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" ")])}},aj={name:"BowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3h4v4"},null),e(" "),t("path",{d:"M21 3l-15 15"},null),e(" "),t("path",{d:"M3 18h3v3"},null),e(" "),t("path",{d:"M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z"},null),e(" ")])}},ij={name:"BowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" ")])}},hj={name:"BoxAlignBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 13h-16a1 1 0 0 0 -1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dj={name:"BoxAlignBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cj={name:"BoxAlignBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M15 20v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 15v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},uj={name:"BoxAlignBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pj={name:"BoxAlignBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M9 20v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 15v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" ")])}},gj={name:"BoxAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z"},null),e(" "),t("path",{d:"M4 9v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M9 4v.01"},null),e(" "),t("path",{d:"M15 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 9v.01"},null),e(" ")])}},wj={name:"BoxAlignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 3.003h-5a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h5a1 1 0 0 0 1 -1v-16a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20.003 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.002 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vj={name:"BoxAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.002 20.003v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z"},null),e(" "),t("path",{d:"M15.002 20.003h-.01"},null),e(" "),t("path",{d:"M20.003 20.003h-.011"},null),e(" "),t("path",{d:"M20.003 15.002h-.011"},null),e(" "),t("path",{d:"M20.003 9.002h-.011"},null),e(" "),t("path",{d:"M20.003 4.002h-.011"},null),e(" "),t("path",{d:"M15.002 4.002h-.01"},null),e(" ")])}},fj={name:"BoxAlignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.998 3.003h-5a1 1 0 0 0 -1 1v16a1 1 0 0 0 1 1h5a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 19.003a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 19.003a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 14.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 8.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.008 3.002a1 1 0 0 1 .117 1.993l-.128 .007a1 1 0 0 1 -.117 -1.993l.128 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.008 3.002a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mj={name:"BoxAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.998 20.003v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z"},null),e(" "),t("path",{d:"M8.998 20.003h.01"},null),e(" "),t("path",{d:"M3.997 20.003h.011"},null),e(" "),t("path",{d:"M3.997 15.002h.011"},null),e(" "),t("path",{d:"M3.997 9.002h.011"},null),e(" "),t("path",{d:"M3.997 4.002h.011"},null),e(" "),t("path",{d:"M8.998 4.002h.01"},null),e(" ")])}},kj={name:"BoxAlignTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.005h-14a2 2 0 0 0 -2 2v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 18.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 13.995a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bj={name:"BoxAlignTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 3a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 8a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mj={name:"BoxAlignTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M15 4h-.01"},null),e(" "),t("path",{d:"M20 4h-.01"},null),e(" "),t("path",{d:"M20 9h-.01"},null),e(" "),t("path",{d:"M20 15h-.01"},null),e(" "),t("path",{d:"M4 15h-.01"},null),e(" "),t("path",{d:"M20 20h-.01"},null),e(" "),t("path",{d:"M15 20h-.01"},null),e(" "),t("path",{d:"M9 20h-.01"},null),e(" "),t("path",{d:"M4 20h-.01"},null),e(" ")])}},xj={name:"BoxAlignTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3.01h-5a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-5a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 19a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 14a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 8a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 3a1 1 0 0 1 .993 .883l.007 .127a1 1 0 0 1 -1.993 .117l-.007 -.127a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zj={name:"BoxAlignTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z"},null),e(" "),t("path",{d:"M20 15.01v-.01"},null),e(" "),t("path",{d:"M20 20.01v-.01"},null),e(" "),t("path",{d:"M15 20.01v-.01"},null),e(" "),t("path",{d:"M9 20.01v-.01"},null),e(" "),t("path",{d:"M9 4.01v-.01"},null),e(" "),t("path",{d:"M4 20.01v-.01"},null),e(" "),t("path",{d:"M4 15.01v-.01"},null),e(" "),t("path",{d:"M4 9.01v-.01"},null),e(" "),t("path",{d:"M4 4.01v-.01"},null),e(" ")])}},Ij={name:"BoxAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10.005h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z"},null),e(" "),t("path",{d:"M4 15.005v-.01"},null),e(" "),t("path",{d:"M4 20.005v-.01"},null),e(" "),t("path",{d:"M9 20.005v-.01"},null),e(" "),t("path",{d:"M15 20.005v-.01"},null),e(" "),t("path",{d:"M20 20.005v-.01"},null),e(" "),t("path",{d:"M20 15.005v-.01"},null),e(" ")])}},yj={name:"BoxMarginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-margin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},Cj={name:"BoxModel2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sj={name:"BoxModel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},$j={name:"BoxModelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h4v4m0 4h-8v-8"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aj={name:"BoxModelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-model",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8h-8z"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16l3.3 3.3"},null),e(" "),t("path",{d:"M16 8l3.3 -3.3"},null),e(" "),t("path",{d:"M8 8l-3.3 -3.3"},null),e(" "),t("path",{d:"M8 16l-3.3 3.3"},null),e(" ")])}},Bj={name:"BoxMultiple0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Hj={name:"BoxMultiple1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 14v-8l-2 2"},null),e(" ")])}},Nj={name:"BoxMultiple2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},jj={name:"BoxMultiple3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 -2"},null),e(" ")])}},Pj={name:"BoxMultiple4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 14v-8l-4 6h5"},null),e(" ")])}},Lj={name:"BoxMultiple5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Dj={name:"BoxMultiple6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 8a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Oj={name:"BoxMultiple7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 6h4l-2 8"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Fj={name:"BoxMultiple8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Rj={name:"BoxMultiple9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 4 0v-4"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Tj={name:"BoxMultipleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-multiple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Ej={name:"BoxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5"},null),e(" "),t("path",{d:"M14.561 10.559l5.439 -3.059"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vj={name:"BoxPaddingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-padding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 16v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M8 8v.01"},null),e(" "),t("path",{d:"M16 16v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M16 8v.01"},null),e(" "),t("path",{d:"M12 8v.01"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},_j={name:"BoxSeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box-seam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M8.2 9.8l7.6 -4.6"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},Wj={name:"BoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-box",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" ")])}},Xj={name:"BracesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qj={name:"BracesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2"},null),e(" ")])}},Yj={name:"BracketsContainEndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-end",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4v16h-4"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M9 16h.01"},null),e(" "),t("path",{d:"M13 16h.01"},null),e(" ")])}},Uj={name:"BracketsContainStartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain-start",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-4v16h4"},null),e(" "),t("path",{d:"M18 16h-.01"},null),e(" "),t("path",{d:"M14 16h-.01"},null),e(" "),t("path",{d:"M10 16h-.01"},null),e(" ")])}},Gj={name:"BracketsContainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-contain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h-4v16h4"},null),e(" "),t("path",{d:"M17 4h4v16h-4"},null),e(" "),t("path",{d:"M8 16h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M16 16h.01"},null),e(" ")])}},Zj={name:"BracketsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v15h3"},null),e(" "),t("path",{d:"M16 4h3v11m0 4v1h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kj={name:"BracketsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brackets",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-3v16h3"},null),e(" "),t("path",{d:"M16 4h3v16h-3"},null),e(" ")])}},Qj={name:"BrailleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-braille",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z"},null),e(" "),t("path",{d:"M16 12h.01"},null),e(" "),t("path",{d:"M8 12h.01"},null),e(" "),t("path",{d:"M16 19h.01"},null),e(" ")])}},Jj={name:"BrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"},null),e(" "),t("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"},null),e(" "),t("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"},null),e(" "),t("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"},null),e(" "),t("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"},null),e(" ")])}},tP={name:"Brand4chanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-4chan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8z"},null),e(" "),t("path",{d:"M13.98 11s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8z"},null),e(" "),t("path",{d:"M13 13.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977z"},null),e(" "),t("path",{d:"M10.02 13l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8z"},null),e(" "),t("path",{d:"M11 10.02l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z"},null),e(" ")])}},eP={name:"BrandAbstractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-abstract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},nP={name:"BrandAdobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adobe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.893 4.514l7.977 14a.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z"},null),e(" ")])}},lP={name:"BrandAdonisJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-adonis-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8.863 16.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z"},null),e(" ")])}},rP={name:"BrandAirbnbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airbnb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z"},null),e(" ")])}},oP={name:"BrandAirtableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-airtable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v8l7 -3v-2.6z"},null),e(" "),t("path",{d:"M3 6l9 3l9 -3l-9 -3z"},null),e(" "),t("path",{d:"M14 12.3v8.7l7 -3v-8z"},null),e(" ")])}},sP={name:"BrandAlgoliaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-algolia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 11c-.414 -1.477 -1.886 -2.5 -3.5 -2.5a3.47 3.47 0 0 0 -3.5 3.5a3.47 3.47 0 0 0 3.5 3.5c.974 0 1.861 -.357 2.5 -1l4.5 4.5v-15h-7c-4.386 0 -8 3.582 -8 8s3.614 8 8 8a7.577 7.577 0 0 0 2.998 -.614"},null),e(" ")])}},aP={name:"BrandAlipayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alipay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M7 7h10"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M21 17.314c-2.971 -1.923 -15 -8.779 -15 -1.864c0 1.716 1.52 2.55 2.985 2.55c3.512 0 6.814 -5.425 6.814 -8h-6.604"},null),e(" ")])}},iP={name:"BrandAlpineJsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-alpine-js",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11.5l4.5 4.5h9l-9 -9z"},null),e(" "),t("path",{d:"M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5"},null),e(" ")])}},hP={name:"BrandAmazonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amazon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" ")])}},dP={name:"BrandAmdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5z"},null),e(" "),t("path",{d:"M11.293 20.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z"},null),e(" ")])}},cP={name:"BrandAmigoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-amigo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.591 3.635l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z"},null),e(" ")])}},uP={name:"BrandAmongUsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-among-us",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088z"},null),e(" "),t("path",{d:"M5.84 7.132c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481"},null),e(" "),t("path",{d:"M17 10c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881"},null),e(" ")])}},pP={name:"BrandAndroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-android",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10l0 6"},null),e(" "),t("path",{d:"M20 10l0 6"},null),e(" "),t("path",{d:"M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0"},null),e(" "),t("path",{d:"M8 3l1 2"},null),e(" "),t("path",{d:"M16 3l-1 2"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M15 18l0 3"},null),e(" ")])}},gP={name:"BrandAngularIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-angular",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"},null),e(" "),t("path",{d:"M9 15l3 -8l3 8"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},wP={name:"BrandAnsibleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ansible",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9.647 12.294l6.353 3.706l-4 -9l-4 9"},null),e(" ")])}},vP={name:"BrandAo3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ao3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11"},null),e(" "),t("path",{d:"M14 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 9c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2"},null),e(" ")])}},fP={name:"BrandAppgalleryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appgallery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M9 8a3 3 0 0 0 6 0"},null),e(" ")])}},mP={name:"BrandAppleArcadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-arcade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75"},null),e(" "),t("path",{d:"M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},kP={name:"BrandApplePodcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple-podcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M11.766 22h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752z"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},bP={name:"BrandAppleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-apple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1z"},null),e(" "),t("path",{d:"M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2"},null),e(" ")])}},MP={name:"BrandAppstoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-appstore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488"},null),e(" "),t("path",{d:"M7 14h5m2.9 0h2.1"},null),e(" "),t("path",{d:"M16 16l-2.51 -4.518m-1.487 -2.677l-1 -1.805"},null),e(" ")])}},xP={name:"BrandAsanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-asana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},zP={name:"BrandAwsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-aws",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94"},null),e(" "),t("path",{d:"M19.5 21c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1"},null),e(" "),t("path",{d:"M3 11v-4.5a1.5 1.5 0 0 1 3 0v4.5"},null),e(" "),t("path",{d:"M3 9h3"},null),e(" "),t("path",{d:"M9 5l1.2 6l1.8 -4l1.8 4l1.2 -6"},null),e(" "),t("path",{d:"M18 10.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"},null),e(" ")])}},IP={name:"BrandAzureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-azure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7.5l-4 9.5h4l6 -15z"},null),e(" "),t("path",{d:"M22 20l-7 -15l-3 7l4 5l-8 3z"},null),e(" ")])}},yP={name:"BrandBackboneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-backbone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 -8l-14 -8z"},null),e(" "),t("path",{d:"M19 20l-14 -8l14 -8z"},null),e(" ")])}},CP={name:"BrandBadooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-badoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z"},null),e(" "),t("path",{d:"M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5"},null),e(" ")])}},SP={name:"BrandBaiduIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-baidu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z"},null),e(" "),t("path",{d:"M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0"},null),e(" ")])}},$P={name:"BrandBandcampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandcamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6h13.5l-7 12h-13z"},null),e(" ")])}},AP={name:"BrandBandlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bandlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907"},null),e(" "),t("path",{d:"M15.078 4h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358"},null),e(" ")])}},BP={name:"BrandBeatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-beats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12.5 12.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M9 12v-8"},null),e(" ")])}},HP={name:"BrandBehanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-behance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5"},null),e(" "),t("path",{d:"M3 12l4.5 0"},null),e(" "),t("path",{d:"M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1"},null),e(" "),t("path",{d:"M16 6l3 0"},null),e(" ")])}},NP={name:"BrandBilibiliIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bilibili",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-6z"},null),e(" "),t("path",{d:"M8 3l2 3"},null),e(" "),t("path",{d:"M16 3l-2 3"},null),e(" "),t("path",{d:"M9 13v-2"},null),e(" "),t("path",{d:"M15 11v2"},null),e(" ")])}},jP={name:"BrandBinanceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-binance",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l2 2l4 -4l4 4l2 -2l-6 -6z"},null),e(" "),t("path",{d:"M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z"},null),e(" "),t("path",{d:"M20 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M4 10l2 2l-2 2l-2 -2z"},null),e(" "),t("path",{d:"M12 10l2 2l-2 2l-2 -2z"},null),e(" ")])}},PP={name:"BrandBingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z"},null),e(" ")])}},LP={name:"BrandBitbucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bitbucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.648 4a.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a.644 .644 0 0 0 .642 -.539l3.35 -14.71a.641 .641 0 0 0 -.64 -.744l-16.704 -.007z"},null),e(" "),t("path",{d:"M14 15h-4l-1 -6h6z"},null),e(" ")])}},DP={name:"BrandBlackberryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blackberry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M6 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M13 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M14 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M12 18a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M20 15a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" "),t("path",{d:"M21 9a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z"},null),e(" ")])}},OP={name:"BrandBlenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 16l9 -6.5"},null),e(" "),t("path",{d:"M6 9h9"},null),e(" "),t("path",{d:"M13 5l5.65 5"},null),e(" ")])}},FP={name:"BrandBloggerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-blogger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5z"},null),e(" "),t("path",{d:"M7 7m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" "),t("path",{d:"M7 14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z"},null),e(" ")])}},RP={name:"BrandBookingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-booking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5"},null),e(" "),t("path",{d:"M16 16l.01 0"},null),e(" ")])}},TP={name:"BrandBootstrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bootstrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"},null),e(" ")])}},EP={name:"BrandBulmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bulma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z"},null),e(" ")])}},VP={name:"BrandBumbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bumble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M9 8h6"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M16.268 3h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z"},null),e(" ")])}},_P={name:"BrandBunpoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-bunpo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01"},null),e(" ")])}},WP={name:"BrandCSharpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-c-sharp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" "),t("path",{d:"M16 7l-1 10"},null),e(" "),t("path",{d:"M20 7l-1 10"},null),e(" "),t("path",{d:"M14 10h7.5"},null),e(" "),t("path",{d:"M21 14h-7.5"},null),e(" ")])}},XP={name:"BrandCakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.84 12c0 2.05 .985 3.225 -.04 5c-1.026 1.775 -2.537 1.51 -4.314 2.534c-1.776 1.026 -2.302 2.466 -4.353 2.466c-2.051 0 -2.576 -1.441 -4.353 -2.466c-1.776 -1.024 -3.288 -.759 -4.314 -2.534c-1.025 -1.775 -.04 -2.95 -.04 -5s-.985 -3.225 .04 -5c1.026 -1.775 2.537 -1.51 4.314 -2.534c1.776 -1.026 2.302 -2.466 4.353 -2.466s2.577 1.441 4.353 2.466c1.776 1.024 3.288 .759 4.313 2.534c1.026 1.775 .04 2.95 .04 5z"},null),e(" ")])}},qP={name:"BrandCakephpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cakephp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11l8 2c1.361 -.545 2 -1.248 2 -2v-3.8c0 -1.765 -4.479 -3.2 -10.002 -3.2c-5.522 0 -9.998 1.435 -9.998 3.2v2.8c0 1.766 4.478 4 10 4v-3z"},null),e(" "),t("path",{d:"M12 14v3l8 2c1.362 -.547 2 -1.246 2 -2v-3c0 .754 -.638 1.453 -2 2l-8 -2z"},null),e(" "),t("path",{d:"M2 17c0 1.766 4.476 3 9.998 3l.002 -3c-5.522 0 -10 -1.734 -10 -3.5v3.5z"},null),e(" "),t("path",{d:"M2 10v4"},null),e(" "),t("path",{d:"M22 10v4"},null),e(" ")])}},YP={name:"BrandCampaignmonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-campaignmonitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538"},null),e(" ")])}},UP={name:"BrandCarbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-carbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},GP={name:"BrandCashappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cashapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.1 8.648a.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a.545 .545 0 0 1 .545 -.432h2.023l.114 .012a.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z"},null),e(" ")])}},ZP={name:"BrandChromeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-chrome",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9h8.4"},null),e(" "),t("path",{d:"M14.598 13.5l-4.2 7.275"},null),e(" "),t("path",{d:"M9.402 13.5l-4.2 -7.275"},null),e(" ")])}},KP={name:"BrandCinema4dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cinema-4d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.65 6.956a5.39 5.39 0 0 0 7.494 7.495"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.7 12.137a5.738 5.738 0 1 1 -5.737 -5.737"},null),e(" "),t("path",{d:"M17.7 12.338v-1.175c0 -.47 .171 -.92 .476 -1.253a1.56 1.56 0 0 1 1.149 -.52c.827 0 1.523 .676 1.62 1.573c.037 .344 .055 .69 .055 1.037"},null),e(" "),t("path",{d:"M11.662 6.4h1.175c.47 0 .92 -.176 1.253 -.49c.333 -.314 .52 -.74 .52 -1.184c0 -.852 -.676 -1.57 -1.573 -1.67a9.496 9.496 0 0 0 -1.037 -.056"},null),e(" ")])}},QP={name:"BrandCitymapperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-citymapper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" ")])}},JP={name:"BrandCloudflareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cloudflare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"},null),e(" "),t("path",{d:"M12 13h6"},null),e(" "),t("path",{d:"M17 10l-2.5 6"},null),e(" ")])}},tL={name:"BrandCodecovIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codecov",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144"},null),e(" ")])}},eL={name:"BrandCodepenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codepen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M3 9l0 6"},null),e(" "),t("path",{d:"M21 9l0 6"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},nL={name:"BrandCodesandboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-codesandbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z"},null),e(" "),t("path",{d:"M12 12l4 -2.25l4 -2.25"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-4 -2.25l-4 -2.25"},null),e(" "),t("path",{d:"M20 12l-4 2v4.75"},null),e(" "),t("path",{d:"M4 12l4 2l0 4.75"},null),e(" "),t("path",{d:"M8 5.25l4 2.25l4 -2.25"},null),e(" ")])}},lL={name:"BrandCohostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cohost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.526 17.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31z"},null),e(" "),t("path",{d:"M11 12.508c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508"},null),e(" ")])}},rL={name:"BrandCoinbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coinbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z"},null),e(" ")])}},oL={name:"BrandComedyCentralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-comedy-central",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.343 17.657a8 8 0 1 0 0 -11.314"},null),e(" "),t("path",{d:"M13.828 9.172a4 4 0 1 0 0 5.656"},null),e(" ")])}},sL={name:"BrandCoreosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-coreos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12 3c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3"},null),e(" "),t("path",{d:"M9.5 9a4.494 4.494 0 0 1 5.5 5.5"},null),e(" ")])}},aL={name:"BrandCouchdbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchdb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2z"},null),e(" "),t("path",{d:"M6 15h12"},null),e(" "),t("path",{d:"M6 18h12"},null),e(" "),t("path",{d:"M21 11v7"},null),e(" "),t("path",{d:"M3 11v7"},null),e(" ")])}},iL={name:"BrandCouchsurfingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-couchsurfing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},hL={name:"BrandCppIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cpp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M20 10v4"},null),e(" "),t("path",{d:"M11 12h4"},null),e(" "),t("path",{d:"M13 10v4"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3"},null),e(" ")])}},dL={name:"BrandCraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-craft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4h-8a8 8 0 1 0 0 16h8a8 8 0 0 0 -8 -8a8 8 0 0 0 8 -8"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},cL={name:"BrandCrunchbaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-crunchbase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10.414 11.586a2 2 0 1 0 0 2.828"},null),e(" "),t("path",{d:"M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 7v6"},null),e(" ")])}},uL={name:"BrandCss3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-css3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M8.5 8h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},pL={name:"BrandCtemplarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ctemplar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.04 14.831l4.46 -4.331"},null),e(" "),t("path",{d:"M12.555 20.82c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a.948 .948 0 0 0 1.11 0z"},null),e(" "),t("path",{d:"M20 5c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644"},null),e(" "),t("path",{d:"M17.738 15l-4.238 -4.5"},null),e(" ")])}},gL={name:"BrandCucumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cucumber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"},null),e(" "),t("path",{d:"M10.5 8l-.5 -1"},null),e(" "),t("path",{d:"M13.5 14l.5 1"},null),e(" "),t("path",{d:"M9 12.5l-1 .5"},null),e(" "),t("path",{d:"M11 14l-.5 1"},null),e(" "),t("path",{d:"M13 8l.5 -1"},null),e(" "),t("path",{d:"M16 12.5l-1 -.5"},null),e(" "),t("path",{d:"M9 10l-1 -.5"},null),e(" ")])}},wL={name:"BrandCupraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cupra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808"},null),e(" "),t("path",{d:"M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4"},null),e(" ")])}},vL={name:"BrandCypressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-cypress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577"},null),e(" "),t("path",{d:"M13.5 9l2 6"},null),e(" "),t("path",{d:"M10.764 9.411a3 3 0 1 0 -.023 5.19"},null),e(" ")])}},fL={name:"BrandD3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-d3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8"},null),e(" "),t("path",{d:"M12 4h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4"},null),e(" "),t("path",{d:"M17.472 12h-2.472"},null),e(" "),t("path",{d:"M17.472 12h-2.352"},null),e(" "),t("path",{d:"M17.472 12c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472"},null),e(" ")])}},mL={name:"BrandDaysCounterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-days-counter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.779 10.007a9 9 0 1 0 -10.77 10.772"},null),e(" "),t("path",{d:"M13 21h8v-7"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},kL={name:"BrandDcosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dcos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z"},null),e(" ")])}},bL={name:"BrandDebianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-debian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},ML={name:"BrandDeezerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deezer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16.5h2v.5h-2z"},null),e(" "),t("path",{d:"M8 16.5h2.5v.5h-2.5z"},null),e(" "),t("path",{d:"M16 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 17h-2.5v-.5h2.5z"},null),e(" "),t("path",{d:"M21.5 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 9.5h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M21.5 6h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M16 13h-2.5v.5h2.5z"},null),e(" "),t("path",{d:"M8 13.5h2.5v-.5h-2.5z"},null),e(" "),t("path",{d:"M8 9.5h2.5v.5h-2.5z"},null),e(" ")])}},xL={name:"BrandDeliverooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deliveroo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1z"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"11.5",cy:"14.5",r:"1",fill:"currentColor"},null),e(" ")])}},zL={name:"BrandDenoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deno",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},IL={name:"BrandDenodoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-denodo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 15.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 19h2v2h-2z"},null),e(" "),t("path",{d:"M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z"},null),e(" "),t("path",{d:"M17.634 7.634l1.732 -1l1 1.732l-1.732 1z"},null),e(" "),t("path",{d:"M11 3h2v2h-2z"},null),e(" "),t("path",{d:"M3.634 8.366l1 -1.732l1.732 1l-1 1.732z"},null),e(" ")])}},yL={name:"BrandDeviantartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-deviantart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z"},null),e(" ")])}},CL={name:"BrandDiggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-digg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-3v-4h3"},null),e(" "),t("path",{d:"M15 15h-3v-4h3"},null),e(" "),t("path",{d:"M9 15v-4"},null),e(" "),t("path",{d:"M15 11v7h-3"},null),e(" "),t("path",{d:"M6 7v8"},null),e(" "),t("path",{d:"M21 15h-3v-4h3"},null),e(" "),t("path",{d:"M21 11v7h-3"},null),e(" ")])}},SL={name:"BrandDingtalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dingtalk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 7.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z"},null),e(" ")])}},$L={name:"BrandDiscordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.983 3l.123 .006c2.014 .214 3.527 .672 4.966 1.673a1 1 0 0 1 .371 .488c1.876 5.315 2.373 9.987 1.451 12.28c-1.003 2.005 -2.606 3.553 -4.394 3.553c-.732 0 -1.693 -.968 -2.328 -2.045a21.512 21.512 0 0 0 2.103 -.493a1 1 0 1 0 -.55 -1.924c-3.32 .95 -6.13 .95 -9.45 0a1 1 0 0 0 -.55 1.924c.717 .204 1.416 .37 2.103 .494c-.635 1.075 -1.596 2.044 -2.328 2.044c-1.788 0 -3.391 -1.548 -4.428 -3.629c-.888 -2.217 -.39 -6.89 1.485 -12.204a1 1 0 0 1 .371 -.488c1.439 -1.001 2.952 -1.459 4.966 -1.673a1 1 0 0 1 .935 .435l.063 .107l.651 1.285l.137 -.016a12.97 12.97 0 0 1 2.643 0l.134 .016l.65 -1.284a1 1 0 0 1 .754 -.54l.122 -.009zm-5.983 7a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15zm6 0a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},AL={name:"BrandDiscordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-discord",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"},null),e(" "),t("path",{d:"M7 16.5c3.5 1 6.5 1 10 0"},null),e(" ")])}},BL={name:"BrandDisneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disney",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5"},null),e(" "),t("path",{d:"M10.02 8a505.153 505.153 0 0 0 0 13"},null),e(" ")])}},HL={name:"BrandDisqusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-disqus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z"},null),e(" "),t("path",{d:"M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z"},null),e(" ")])}},NL={name:"BrandDjangoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-django",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201"},null),e(" "),t("path",{d:"M16 7v.01"},null),e(" "),t("path",{d:"M16 10v5.586c0 .905 -.36 1.774 -1 2.414"},null),e(" ")])}},jL={name:"BrandDockerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-docker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z"},null),e(" "),t("path",{d:"M5 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 10h3v3h-3z"},null),e(" "),t("path",{d:"M11 10h3v3h-3z"},null),e(" "),t("path",{d:"M8 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 7h3v3h-3z"},null),e(" "),t("path",{d:"M11 4h3v3h-3z"},null),e(" "),t("path",{d:"M4.571 18c1.5 0 2.047 -.074 2.958 -.78"},null),e(" "),t("path",{d:"M10 16l0 .01"},null),e(" ")])}},PL={name:"BrandDoctrineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-doctrine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12 11l3 3l-3 3"},null),e(" "),t("path",{d:"M10 3l6.9 6"},null),e(" ")])}},LL={name:"BrandDolbyDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dolby-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891z"},null),e(" "),t("path",{d:"M3.063 6v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z"},null),e(" ")])}},DL={name:"BrandDoubanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-douban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M5 4h14"},null),e(" "),t("path",{d:"M8 8h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M16 14l-2 6"},null),e(" "),t("path",{d:"M8 17l1 3"},null),e(" ")])}},OL={name:"BrandDribbbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.384 14.38a22.877 22.877 0 0 1 1.056 4.863l.064 .644l.126 1.431a10 10 0 0 1 -9.15 -.98l2.08 -2.087l.246 -.24c1.793 -1.728 3.41 -2.875 5.387 -3.566l.191 -.065zm6.09 -.783l.414 .003l.981 .014a9.997 9.997 0 0 1 -4.319 6.704l-.054 -.605c-.18 -2.057 -.55 -3.958 -1.163 -5.814c1.044 -.182 2.203 -.278 3.529 -.298l.611 -.004zm-7.869 -3.181a24.91 24.91 0 0 1 1.052 2.098c-2.276 .77 -4.142 2.053 -6.144 3.967l-.355 .344l-2.236 2.24a10 10 0 0 1 -2.917 -6.741l-.005 -.324l.004 -.25h1.096l.467 -.002c3.547 -.026 6.356 -.367 8.938 -1.295l.1 -.037zm9.388 1.202l-1.515 -.02c-1.86 -.003 -3.45 .124 -4.865 .402a26.112 26.112 0 0 0 -1.163 -2.38c1.393 -.695 2.757 -1.597 4.179 -2.75l.428 -.354l.816 -.682a10 10 0 0 1 2.098 5.409l.022 .375zm-14.663 -8.46l1.266 1.522c1.145 1.398 2.121 2.713 2.949 3.985c-2.26 .766 -4.739 1.052 -7.883 1.081l-.562 .004h-.844a10 10 0 0 1 5.074 -6.593zm9.67 .182c.53 .306 1.026 .657 1.483 1.046l-1.025 .857c-1.379 1.128 -2.688 1.993 -4.034 2.649c-.89 -1.398 -1.943 -2.836 -3.182 -4.358l-.474 -.574l-.485 -.584a10 10 0 0 1 7.717 .964z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FL={name:"BrandDribbbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-dribbble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 3.6c5 6 7 10.5 7.5 16.2"},null),e(" "),t("path",{d:"M6.4 19c3.5 -3.5 6 -6.5 14.5 -6.4"},null),e(" "),t("path",{d:"M3.1 10.75c5 0 9.814 -.38 15.314 -5"},null),e(" ")])}},RL={name:"BrandDropsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416z"},null),e(" "),t("path",{d:"M14.466 10.923a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z"},null),e(" ")])}},TL={name:"BrandDrupalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-drupal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12z"},null),e(" "),t("path",{d:"M12 11.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z"},null),e(" ")])}},EL={name:"BrandEdgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-edge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.978 11.372a9 9 0 1 0 -1.593 5.773"},null),e(" "),t("path",{d:"M20.978 11.372c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79"},null),e(" "),t("path",{d:"M3.022 12.628c-.283 -4.043 8.717 -7.228 11.248 -2.688"},null),e(" "),t("path",{d:"M12.628 20.978c-2.993 .21 -5.162 -4.725 -3.567 -9.748"},null),e(" ")])}},VL={name:"BrandElasticIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-elastic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3z"},null),e(" "),t("path",{d:"M8.5 9l-3 -1"},null),e(" "),t("path",{d:"M9.5 5l-1 4l1 2l5 2l4 -4"},null),e(" "),t("path",{d:"M18.499 16l-3 -.5l-1 -2.5"},null),e(" "),t("path",{d:"M14.5 19l1 -3.5"},null),e(" "),t("path",{d:"M5.417 15l4.083 -4"},null),e(" ")])}},_L={name:"BrandElectronicArtsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-electronic-arts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M17.5 15l-3 -6l-3 6h-5l1.5 -3"},null),e(" "),t("path",{d:"M17 14h-2"},null),e(" "),t("path",{d:"M6.5 12h3.5"},null),e(" "),t("path",{d:"M8 9h3"},null),e(" ")])}},WL={name:"BrandEmberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ember",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252"},null),e(" ")])}},XL={name:"BrandEnvatoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-envato",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748z"},null),e(" "),t("path",{d:"M19.715 12.508c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z"},null),e(" ")])}},qL={name:"BrandEtsyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-etsy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12h-5"},null),e(" "),t("path",{d:"M3 3m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5"},null),e(" ")])}},YL={name:"BrandEvernoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-evernote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h5v-5"},null),e(" "),t("path",{d:"M17.9 19c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3"},null),e(" "),t("path",{d:"M15 10h1"},null),e(" ")])}},UL={name:"BrandFacebookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -.883 .993l-.117 .007h-3v1h3a1 1 0 0 1 .991 1.131l-.02 .112l-1 4a1 1 0 0 1 -.858 .75l-.113 .007h-2v6a1 1 0 0 1 -.883 .993l-.117 .007h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-6h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 .883 -.993l.117 -.007h2v-1a6 6 0 0 1 5.775 -5.996l.225 -.004h3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GL={name:"BrandFacebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-facebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3"},null),e(" ")])}},ZL={name:"BrandFeedlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-feedly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.833 12.278l4.445 -4.445"},null),e(" "),t("path",{d:"M10.055 14.5l2.223 -2.222"},null),e(" "),t("path",{d:"M12.278 16.722l.555 -.555"},null),e(" "),t("path",{d:"M19.828 14.828a4 4 0 0 0 0 -5.656l-5 -5a4 4 0 0 0 -5.656 0l-5 5a4 4 0 0 0 0 5.656l6.171 6.172h3.314l6.171 -6.172z"},null),e(" ")])}},KL={name:"BrandFigmaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-figma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 3m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15"},null),e(" ")])}},QL={name:"BrandFilezillaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-filezilla",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15.824a4.062 4.062 0 0 1 -2.25 .033c-.738 -.201 -2.018 -.08 -2.75 .143l4.583 -5h-6.583"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 15l2 -8h5"},null),e(" ")])}},JL={name:"BrandFinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-finder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 8v1"},null),e(" "),t("path",{d:"M17 8v1"},null),e(" "),t("path",{d:"M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7"},null),e(" "),t("path",{d:"M7 15.5c3.667 2 6.333 2 10 0"},null),e(" ")])}},tD={name:"BrandFirebaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firebase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"},null),e(" "),t("path",{d:"M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"},null),e(" "),t("path",{d:"M4.57 17.18l10.93 -10.68"},null),e(" ")])}},eD={name:"BrandFirefoxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-firefox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647"},null),e(" "),t("path",{d:"M4.914 9.485c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75"},null),e(" ")])}},nD={name:"BrandFiverrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fiverr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3h-2a6 6 0 0 0 -6 6h-3v4h3v8h4v-7h4v7h4v-11h-8v-1.033a1.967 1.967 0 0 1 2 -1.967h2v-4z"},null),e(" ")])}},lD={name:"BrandFlickrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flickr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},rD={name:"BrandFlightradar24Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flightradar24",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 20l3.5 -8l-6.5 6"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},oD={name:"BrandFlipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a.973 .973 0 0 1 -.974 .973h-4.053a.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z"},null),e(" ")])}},sD={name:"BrandFlutterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-flutter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 14l-3 -3l8 -8h6z"},null),e(" "),t("path",{d:"M14 21l-5 -5l5 -5h5l-5 5l5 5z"},null),e(" ")])}},aD={name:"BrandFortniteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-fortnite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z"},null),e(" ")])}},iD={name:"BrandFoursquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-foursquare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1z"},null),e(" "),t("path",{d:"M12 9l5 0"},null),e(" ")])}},hD={name:"BrandFramerMotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer-motion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-8 -8v16l16 -16v16l-4 -4"},null),e(" "),t("path",{d:"M20 12l-8 8l-4 -4"},null),e(" ")])}},dD={name:"BrandFramerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-framer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h12l-12 -12h12v6h-12v6l6 6v-6"},null),e(" ")])}},cD={name:"BrandFunimationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-funimation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 13h8a4 4 0 1 1 -8 0z"},null),e(" ")])}},uD={name:"BrandGatsbyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gatsby",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291z"},null),e(" "),t("path",{d:"M16 13h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985"},null),e(" ")])}},pD={name:"BrandGitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-git",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15v-6"},null),e(" "),t("path",{d:"M15 11l-2 -2"},null),e(" "),t("path",{d:"M11 7l-1.9 -1.9"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},gD={name:"BrandGithubCopilotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-copilot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5.5c0 -.667 .167 -1.333 .5 -2"},null),e(" "),t("path",{d:"M12 7.5c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4z"},null),e(" "),t("path",{d:"M4 12c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2"},null),e(" "),t("path",{d:"M20 18v-5.5c0 -.667 -.167 -1.333 -.5 -2"},null),e(" "),t("path",{d:"M12 7.5l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215z"},null),e(" "),t("path",{d:"M10 15v2"},null),e(" "),t("path",{d:"M14 15v2"},null),e(" ")])}},wD={name:"BrandGithubFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vD={name:"BrandGithubIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-github",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"},null),e(" ")])}},fD={name:"BrandGitlabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gitlab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z"},null),e(" ")])}},mD={name:"BrandGmailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gmail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z"},null),e(" "),t("path",{d:"M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M16 4l-4 4l-4 -4"},null),e(" "),t("path",{d:"M4 6.5l8 7.5l8 -7.5"},null),e(" ")])}},kD={name:"BrandGolangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-golang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"},null),e(" "),t("path",{d:"M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"},null),e(" "),t("path",{d:"M5.5 15h-1.5"},null),e(" "),t("path",{d:"M6 9h-2"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" ")])}},bD={name:"BrandGoogleAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M17 3m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105z"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},MD={name:"BrandGoogleBigQueryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-big-query",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033z"},null),e(" "),t("path",{d:"M11.5 11.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 14l2 2"},null),e(" ")])}},xD={name:"BrandGoogleDriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-drive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-6 10l-3 -5l6 -10z"},null),e(" "),t("path",{d:"M9 15h12l-3 5h-12"},null),e(" "),t("path",{d:"M15 15l-6 -10h6l6 10z"},null),e(" ")])}},zD={name:"BrandGoogleFitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-fit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029"},null),e(" ")])}},ID={name:"BrandGoogleHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928z"},null),e(" "),t("path",{d:"M7 13v4h10v-4l-5 -5"},null),e(" "),t("path",{d:"M14.8 5.2l-11.8 11.8"},null),e(" "),t("path",{d:"M7 17v4"},null),e(" "),t("path",{d:"M17 17v4"},null),e(" ")])}},yD={name:"BrandGoogleMapsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-maps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6.428 12.494l7.314 -9.252"},null),e(" "),t("path",{d:"M10.002 7.935l-2.937 -2.545"},null),e(" "),t("path",{d:"M17.693 6.593l-8.336 9.979"},null),e(" "),t("path",{d:"M17.591 6.376c.472 .907 .715 1.914 .709 2.935a7.263 7.263 0 0 1 -.72 3.18a19.085 19.085 0 0 1 -2.089 3c-.784 .933 -1.49 1.93 -2.11 2.98c-.314 .62 -.568 1.27 -.757 1.938c-.121 .36 -.277 .591 -.622 .591c-.315 0 -.463 -.136 -.626 -.593a10.595 10.595 0 0 0 -.779 -1.978a18.18 18.18 0 0 0 -1.423 -2.091c-.877 -1.184 -2.179 -2.535 -2.853 -4.071a7.077 7.077 0 0 1 -.621 -2.967a6.226 6.226 0 0 1 1.476 -4.055a6.25 6.25 0 0 1 4.811 -2.245a6.462 6.462 0 0 1 1.918 .284a6.255 6.255 0 0 1 3.686 3.092z"},null),e(" ")])}},CD={name:"BrandGoogleOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z"},null),e(" ")])}},SD={name:"BrandGooglePhotosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-photos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a.61 .61 0 0 1 -.426 -.173a.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409z"},null),e(" "),t("path",{d:"M16.5 17c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409z"},null),e(" "),t("path",{d:"M7 16.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a.61 .61 0 0 1 -.173 .431a.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5z"},null),e(" "),t("path",{d:"M17 7.5c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a.61 .61 0 0 1 .175 -.428a.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z"},null),e(" ")])}},$D={name:"BrandGooglePlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3.71v16.58a.7 .7 0 0 0 1.05 .606l14.622 -8.42a.55 .55 0 0 0 0 -.953l-14.622 -8.419a.7 .7 0 0 0 -1.05 .607z"},null),e(" "),t("path",{d:"M15 9l-10.5 11.5"},null),e(" "),t("path",{d:"M4.5 3.5l10.5 11.5"},null),e(" ")])}},AD={name:"BrandGooglePodcastsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google-podcasts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M8 17v2"},null),e(" "),t("path",{d:"M4 11v2"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M8 5v8"},null),e(" "),t("path",{d:"M16 7v-2"},null),e(" "),t("path",{d:"M16 19v-8"},null),e(" ")])}},BD={name:"BrandGoogleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-google",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.788 5.108a9 9 0 1 0 3.212 6.892h-8"},null),e(" ")])}},HD={name:"BrandGrammarlyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grammarly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15.697 9.434a4.5 4.5 0 1 0 .217 4.788"},null),e(" "),t("path",{d:"M13.5 14h2.5v2.5"},null),e(" ")])}},ND={name:"BrandGraphqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-graphql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.308 7.265l5.385 -3.029"},null),e(" "),t("path",{d:"M13.308 4.235l5.384 3.03"},null),e(" "),t("path",{d:"M20 9.5v5"},null),e(" "),t("path",{d:"M18.693 16.736l-5.385 3.029"},null),e(" "),t("path",{d:"M10.692 19.765l-5.384 -3.03"},null),e(" "),t("path",{d:"M4 14.5v-5"},null),e(" "),t("path",{d:"M12.772 4.786l6.121 10.202"},null),e(" "),t("path",{d:"M18.5 16h-13"},null),e(" "),t("path",{d:"M5.107 14.988l6.122 -10.201"},null),e(" "),t("path",{d:"M12 3.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M12 20.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M4 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 16m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M20 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" ")])}},jD={name:"BrandGravatarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gravatar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714"},null),e(" ")])}},PD={name:"BrandGrindrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-grindr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282z"},null),e(" "),t("path",{d:"M12 21c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981z"},null),e(" "),t("path",{d:"M11 13.282c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z"},null),e(" ")])}},LD={name:"BrandGuardianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-guardian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 13h6"},null),e(" "),t("path",{d:"M4 12c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976z"},null),e(" "),t("path",{d:"M14.5 3c1.416 0 3.853 1.16 4.5 2v3.5"},null),e(" "),t("path",{d:"M15 13v8s2.77 -.37 4 -2v-6"},null),e(" "),t("path",{d:"M13.5 21h1.5"},null),e(" "),t("path",{d:"M13.5 3h1"},null),e(" ")])}},DD={name:"BrandGumroadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-gumroad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M13.5 13h2.5v3"},null),e(" "),t("path",{d:"M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3"},null),e(" ")])}},OD={name:"BrandHboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hbo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 16v-8"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M9 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M19 8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},FD={name:"BrandHeadlessuiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-headlessui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111z"},null),e(" "),t("path",{d:"M7.252 7.704l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z"},null),e(" ")])}},RD={name:"BrandHexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M15 8v8"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},TD={name:"BrandHipchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-hipchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z"},null),e(" "),t("path",{d:"M7.5 13.5c2.5 2.5 6.5 2.5 9 0"},null),e(" ")])}},ED={name:"BrandHtml5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-html5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5"},null),e(" ")])}},VD={name:"BrandInertiaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-inertia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" "),t("path",{d:"M3.5 8l4 4l-4 4h4.5l4 -4l-4 -4z"},null),e(" ")])}},_D={name:"BrandInstagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-instagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16.5 7.5l0 .01"},null),e(" ")])}},WD={name:"BrandIntercomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-intercom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 8v3"},null),e(" "),t("path",{d:"M10 7v6"},null),e(" "),t("path",{d:"M14 7v6"},null),e(" "),t("path",{d:"M17 8v3"},null),e(" "),t("path",{d:"M7 15c4 2.667 6 2.667 10 0"},null),e(" ")])}},XD={name:"BrandItchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-itch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 7v1c0 1.087 1.078 2 2 2c1.107 0 2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2s2 -.91 2 -2c0 1.09 .893 2 2 2c.922 0 2 -.913 2 -2v-1c-.009 -.275 -.538 -.964 -1.588 -2.068a3 3 0 0 0 -2.174 -.932h-12.476a3 3 0 0 0 -2.174 .932c-1.05 1.104 -1.58 1.793 -1.588 2.068z"},null),e(" "),t("path",{d:"M4 10c-.117 6.28 .154 9.765 .814 10.456c1.534 .367 4.355 .535 7.186 .536c2.83 -.001 5.652 -.169 7.186 -.536c.99 -1.037 .898 -9.559 .814 -10.456"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},qD={name:"BrandJavascriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-javascript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z"},null),e(" "),t("path",{d:"M7.5 8h3v8l-2 -1"},null),e(" "),t("path",{d:"M16.5 8h-2.5a.5 .5 0 0 0 -.5 .5v3a.5 .5 0 0 0 .5 .5h1.423a.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5"},null),e(" ")])}},YD={name:"BrandJuejinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-juejin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12l10 7.422l10 -7.422"},null),e(" "),t("path",{d:"M7 9l5 4l5 -4"},null),e(" "),t("path",{d:"M11 6l1 .8l1 -.8l-1 -.8z"},null),e(" ")])}},UD={name:"BrandKickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z"},null),e(" ")])}},GD={name:"BrandKickstarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kickstarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z"},null),e(" ")])}},ZD={name:"BrandKotlinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-kotlin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-16v-16h16"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M4 12l8 -8"},null),e(" "),t("path",{d:"M12 12l8 8"},null),e(" ")])}},KD={name:"BrandLaravelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-laravel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5z"},null),e(" "),t("path",{d:"M11 18v4"},null),e(" "),t("path",{d:"M7 15.5l7 -4"},null),e(" "),t("path",{d:"M14 7.5v4"},null),e(" "),t("path",{d:"M14 11.5l4 2.5"},null),e(" "),t("path",{d:"M11 13v-7.5l-4 -2.5l-4 2.5"},null),e(" "),t("path",{d:"M7 8l4 -2.5"},null),e(" "),t("path",{d:"M18 10l4 -2.5"},null),e(" ")])}},QD={name:"BrandLastfmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-lastfm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7"},null),e(" ")])}},JD={name:"BrandLeetcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-leetcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13h7.5"},null),e(" "),t("path",{d:"M9.424 7.268l4.999 -4.999"},null),e(" "),t("path",{d:"M16.633 16.644l-2.402 2.415a3.189 3.189 0 0 1 -4.524 0l-3.77 -3.787a3.223 3.223 0 0 1 0 -4.544l3.77 -3.787a3.189 3.189 0 0 1 4.524 0l2.302 2.313"},null),e(" ")])}},tO={name:"BrandLetterboxdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-letterboxd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eO={name:"BrandLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10.663c0 -4.224 -4.041 -7.663 -9 -7.663s-9 3.439 -9 7.663c0 3.783 3.201 6.958 7.527 7.56c1.053 .239 .932 .644 .696 2.133c-.039 .238 -.184 .932 .777 .512c.96 -.42 5.18 -3.201 7.073 -5.48c1.304 -1.504 1.927 -3.029 1.927 -4.715v-.01z"},null),e(" ")])}},nO={name:"BrandLinkedinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linkedin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11l0 5"},null),e(" "),t("path",{d:"M8 8l0 .01"},null),e(" "),t("path",{d:"M12 16l0 -5"},null),e(" "),t("path",{d:"M16 16v-3a2 2 0 0 0 -4 0"},null),e(" ")])}},lO={name:"BrandLinktreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linktree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l-7 12h3v5h5v-5h-2l4 -7z"},null),e(" "),t("path",{d:"M15 3l7 12h-3v5h-5v-5h2l-4 -7z"},null),e(" ")])}},rO={name:"BrandLinqpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-linqpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z"},null),e(" ")])}},oO={name:"BrandLoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-loom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.464 6.518a6 6 0 1 0 -3.023 7.965"},null),e(" "),t("path",{d:"M17.482 17.464a6 6 0 1 0 -7.965 -3.023"},null),e(" "),t("path",{d:"M6.54 17.482a6 6 0 1 0 3.024 -7.965"},null),e(" "),t("path",{d:"M6.518 6.54a6 6 0 1 0 7.965 3.024"},null),e(" ")])}},sO={name:"BrandMailgunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mailgun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},aO={name:"BrandMantineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mantine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4"},null),e(" "),t("path",{d:"M14 9h-2"},null),e(" "),t("path",{d:"M14 15h-2"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},iO={name:"BrandMastercardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastercard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9.765a3 3 0 1 0 0 4.47"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},hO={name:"BrandMastodonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mastodon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944z"},null),e(" "),t("path",{d:"M12 11.204v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722"},null),e(" ")])}},dO={name:"BrandMatrixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-matrix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h-1v18h1"},null),e(" "),t("path",{d:"M20 21h1v-18h-1"},null),e(" "),t("path",{d:"M7 9v6"},null),e(" "),t("path",{d:"M12 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" "),t("path",{d:"M17 15v-3.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},cO={name:"BrandMcdonaldsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mcdonalds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16"},null),e(" ")])}},uO={name:"BrandMediumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-medium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 9h1l3 3l3 -3h1"},null),e(" "),t("path",{d:"M8 15l2 0"},null),e(" "),t("path",{d:"M14 15l2 0"},null),e(" "),t("path",{d:"M9 9l0 6"},null),e(" "),t("path",{d:"M15 9l0 6"},null),e(" ")])}},pO={name:"BrandMercedesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mercedes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v9"},null),e(" "),t("path",{d:"M12 12l7 5"},null),e(" "),t("path",{d:"M12 12l-7 5"},null),e(" ")])}},gO={name:"BrandMessengerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-messenger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" "),t("path",{d:"M8 13l3 -2l2 2l3 -2"},null),e(" ")])}},wO={name:"BrandMetaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-meta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z"},null),e(" "),t("path",{d:"M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z"},null),e(" ")])}},vO={name:"BrandMiniprogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-miniprogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M8 11.503a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2"},null),e(" ")])}},fO={name:"BrandMixpanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mixpanel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M20.5 12m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M13 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},mO={name:"BrandMondayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-monday",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" "),t("path",{d:"M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z"},null),e(" ")])}},kO={name:"BrandMongodbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mongodb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v19"},null),e(" "),t("path",{d:"M18 11.227c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z"},null),e(" ")])}},bO={name:"BrandMyOppoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-my-oppo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},MO={name:"BrandMysqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-mysql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" ")])}},xO={name:"BrandNationalGeographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-national-geographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v18h-10z"},null),e(" ")])}},zO={name:"BrandNemIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nem",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364z"},null),e(" "),t("path",{d:"M2.1 7.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11"},null),e(" "),t("path",{d:"M16.35 18.51s2.65 -5.51 -4.35 -8.51"},null),e(" ")])}},IO={name:"BrandNetbeansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netbeans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"},null),e(" "),t("path",{d:"M12 21v-9l-7.5 -4.5"},null),e(" "),t("path",{d:"M12 12l7.5 -4.5"},null),e(" "),t("path",{d:"M12 3v4.5"},null),e(" "),t("path",{d:"M19.5 16l-3.5 -2"},null),e(" "),t("path",{d:"M8 14l-3.5 2"},null),e(" ")])}},yO={name:"BrandNeteaseMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netease-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502"},null),e(" ")])}},CO={name:"BrandNetflixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-netflix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l10 18h-4l-10 -18z"},null),e(" "),t("path",{d:"M5 3v18h4v-10.5"},null),e(" "),t("path",{d:"M19 21v-18h-4v10.5"},null),e(" ")])}},SO={name:"BrandNexoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nexo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3z"},null),e(" "),t("path",{d:"M12 6l-5 -3l-5 3v12l5 3l4.7 -3.13"},null),e(" ")])}},$O={name:"BrandNextcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},AO={name:"BrandNextjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nextjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993"},null),e(" "),t("path",{d:"M15 12v-3"},null),e(" ")])}},BO={name:"BrandNordVpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nord-vpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5"},null),e(" "),t("path",{d:"M14.5 15l-3 -6l-2.5 4.5"},null),e(" ")])}},HO={name:"BrandNotionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-notion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3l6 6"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" "),t("path",{d:"M7 17h2"},null),e(" "),t("path",{d:"M15 7h2"},null),e(" "),t("path",{d:"M16 7v10h-1l-7 -7"},null),e(" ")])}},NO={name:"BrandNpmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-npm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1 8h22v7h-12v2h-4v-2h-6z"},null),e(" "),t("path",{d:"M7 8v7"},null),e(" "),t("path",{d:"M14 8v7"},null),e(" "),t("path",{d:"M17 11v4"},null),e(" "),t("path",{d:"M4 11v4"},null),e(" "),t("path",{d:"M11 11v1"},null),e(" "),t("path",{d:"M20 11v4"},null),e(" ")])}},jO={name:"BrandNuxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nuxt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913"},null),e(" "),t("path",{d:"M20.043 18c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z"},null),e(" ")])}},PO={name:"BrandNytimesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-nytimes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 5.058a8 8 0 1 0 8.706 9.965"},null),e(" "),t("path",{d:"M12 21v-11l-7.5 4"},null),e(" "),t("path",{d:"M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"},null),e(" "),t("path",{d:"M9 12v8"},null),e(" "),t("path",{d:"M16 13h-.01"},null),e(" ")])}},LO={name:"BrandOauthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-oauth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 10 0 1 0 20 0a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M12.556 6c.65 0 1.235 .373 1.508 .947l2.839 7.848a1.646 1.646 0 0 1 -1.01 2.108a1.673 1.673 0 0 1 -2.068 -.851l-.46 -1.052h-2.73l-.398 .905a1.67 1.67 0 0 1 -1.977 1.045l-.153 -.047a1.647 1.647 0 0 1 -1.056 -1.956l2.824 -7.852a1.664 1.664 0 0 1 1.409 -1.087l1.272 -.008z"},null),e(" ")])}},DO={name:"BrandOfficeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-office",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z"},null),e(" ")])}},OO={name:"BrandOkRuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ok-ru",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 12c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8z"},null),e(" "),t("path",{d:"M9.5 13c1.333 .667 3.667 .667 5 0"},null),e(" "),t("path",{d:"M9.5 17l2.5 -3l2.5 3"},null),e(" "),t("path",{d:"M12 13.5v.5"},null),e(" ")])}},FO={name:"BrandOnedriveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onedrive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z"},null),e(" ")])}},RO={name:"BrandOnlyfansIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-onlyfans",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13z"},null),e(" "),t("path",{d:"M8.5 15a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5z"},null),e(" "),t("path",{d:"M14 16c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5"},null),e(" ")])}},TO={name:"BrandOpenSourceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-open-source",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z"},null),e(" ")])}},EO={name:"BrandOpenaiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"},null),e(" "),t("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"},null),e(" "),t("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"},null),e(" "),t("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"},null),e(" "),t("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"},null),e(" "),t("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"},null),e(" ")])}},VO={name:"BrandOpenvpnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-openvpn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},_O={name:"BrandOperaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-opera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0"},null),e(" ")])}},WO={name:"BrandPagekitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pagekit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.077 20h-5.077v-16h11v14h-5.077"},null),e(" ")])}},XO={name:"BrandPatreonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-patreon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3h3v18h-3z"},null),e(" "),t("path",{d:"M15 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" ")])}},qO={name:"BrandPaypalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 2c3.113 0 5.309 1.785 5.863 4.565c1.725 1.185 2.637 3.152 2.637 5.435c0 2.933 -2.748 5.384 -5.783 5.496l-.217 .004h-1.754l-.466 2.8a1.998 1.998 0 0 1 -1.823 1.597l-.157 .003h-2.68a1.5 1.5 0 0 1 -1.182 -.54a1.495 1.495 0 0 1 -.348 -1.07l.042 -.29h-1.632c-1.004 0 -1.914 -.864 -1.994 -1.857l-.006 -.143l.01 -.141l1.993 -13.954l.003 -.048c.072 -.894 .815 -1.682 1.695 -1.832l.156 -.02l.143 -.005h5.5zm5.812 7.35l-.024 .087c-.706 2.403 -3.072 4.436 -5.555 4.557l-.233 .006h-2.503v.05l-.025 .183l-1.2 5a1.007 1.007 0 0 1 -.019 .07l-.088 .597h2.154l.595 -3.564a1 1 0 0 1 .865 -.829l.121 -.007h2.6c2.073 0 4 -1.67 4 -3.5c0 -1.022 -.236 -1.924 -.688 -2.65z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YO={name:"BrandPaypalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a.5 .5 0 0 1 -.5 -.6l.2 -1.4"},null),e(" ")])}},UO={name:"BrandPaypayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-paypay",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.375 21l3.938 -13.838"},null),e(" "),t("path",{d:"M3 6c16.731 0 21.231 9.881 4.5 11"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},GO={name:"BrandPeanutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-peanut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49"},null),e(" ")])}},ZO={name:"BrandPepsiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pepsi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16c5.713 -2.973 11 -3.5 13.449 -11.162"},null),e(" "),t("path",{d:"M5 17.5c5.118 -2.859 15 0 14 -11"},null),e(" ")])}},KO={name:"BrandPhpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-php",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0"},null),e(" "),t("path",{d:"M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"},null),e(" "),t("path",{d:"M12 7.5l-1 5.5"},null),e(" "),t("path",{d:"M11.6 10h2.4l-.5 3"},null),e(" ")])}},QO={name:"BrandPicsartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-picsart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M5 9v11a2 2 0 1 0 4 0v-4.5"},null),e(" ")])}},JO={name:"BrandPinterestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pinterest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l4 -9"},null),e(" "),t("path",{d:"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},tF={name:"BrandPlanetscaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-planetscale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.63a9 9 0 0 1 -9.362 9.362l9.362 -9.362z"},null),e(" "),t("path",{d:"M12 3a9.001 9.001 0 0 1 8.166 5.211l-11.955 11.955a9 9 0 0 1 3.789 -17.166z"},null),e(" "),t("path",{d:"M12 12l-6 6"},null),e(" ")])}},eF={name:"BrandPocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M8 11l4 4l4 -4"},null),e(" ")])}},nF={name:"BrandPolymerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-polymer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6"},null),e(" ")])}},lF={name:"BrandPowershellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-powershell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042z"},null),e(" "),t("path",{d:"M9 8l4 4l-6 4"},null),e(" "),t("path",{d:"M12 16h3"},null),e(" ")])}},rF={name:"BrandPrismaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-prisma",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147z"},null),e(" "),t("path",{d:"M8.5 22l3.5 -20"},null),e(" ")])}},oF={name:"BrandProducthuntIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-producthunt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},sF={name:"BrandPushbulletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushbullet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 8v8h2a4 4 0 1 0 0 -8h-2z"},null),e(" "),t("path",{d:"M8 8v8"},null),e(" ")])}},aF={name:"BrandPushoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-pushover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1"},null),e(" "),t("path",{d:"M12.5 6l-5.5 15"},null),e(" ")])}},iF={name:"BrandPythonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-python",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"},null),e(" "),t("path",{d:"M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"},null),e(" "),t("path",{d:"M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M11 6l0 .01"},null),e(" "),t("path",{d:"M13 18l0 .01"},null),e(" ")])}},hF={name:"BrandQqIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-qq",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9.748a14.716 14.716 0 0 0 11.995 -.052c.275 -9.236 -11.104 -11.256 -11.995 .052z"},null),e(" "),t("path",{d:"M18 10c.984 2.762 1.949 4.765 2 7.153c.014 .688 -.664 1.346 -1.184 .303c-.346 -.696 -.952 -1.181 -1.816 -1.456"},null),e(" "),t("path",{d:"M17 16c.031 1.831 .147 3.102 -1 4"},null),e(" "),t("path",{d:"M8 20c-1.099 -.87 -.914 -2.24 -1 -4"},null),e(" "),t("path",{d:"M6 10c-.783 2.338 -1.742 4.12 -1.968 6.43c-.217 2.227 .716 1.644 1.16 .917c.296 -.487 .898 -.934 1.808 -1.347"},null),e(" "),t("path",{d:"M15.898 13l-.476 -2"},null),e(" "),t("path",{d:"M8 20l-1.5 1c-.5 .5 -.5 1 .5 1h10c1 0 1 -.5 .5 -1l-1.5 -1"},null),e(" "),t("path",{d:"M13.75 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10.25 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},dF={name:"BrandRadixUiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-radix-ui",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 3h5v5h-5z"},null),e(" "),t("path",{d:"M11 11v10a5 5 0 0 1 -.217 -9.995l.217 -.005z"},null),e(" ")])}},cF={name:"BrandReactNativeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react-native",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"},null),e(" "),t("path",{d:"M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"},null),e(" "),t("path",{d:"M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"},null),e(" "),t("path",{d:"M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"},null),e(" "),t("path",{d:"M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"},null),e(" "),t("path",{d:"M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"},null),e(" "),t("path",{d:"M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"},null),e(" ")])}},uF={name:"BrandReactIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-react",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102"},null),e(" "),t("path",{d:"M17.692 15.289c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102"},null),e(" "),t("path",{d:"M6.305 15.287c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2"},null),e(" "),t("path",{d:"M17.694 8.716c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2"},null),e(" "),t("path",{d:"M12 5.424c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896"},null),e(" "),t("path",{d:"M12 18.574c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897"},null),e(" "),t("path",{d:"M11.5 12.866a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z"},null),e(" ")])}},pF={name:"BrandReasonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reason",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18h-3v-6h3"},null),e(" "),t("path",{d:"M18 15h-3"},null),e(" "),t("path",{d:"M8 18v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 18l-2 -3"},null),e(" ")])}},gF={name:"BrandRedditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-reddit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z"},null),e(" "),t("path",{d:"M12 8l1 -5l6 1"},null),e(" "),t("path",{d:"M19 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("circle",{cx:"9",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"13",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M10 17c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5"},null),e(" ")])}},wF={name:"BrandRedhatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redhat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18z"},null),e(" "),t("path",{d:"M6 10.5c0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5"},null),e(" ")])}},vF={name:"BrandReduxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-redux",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6"},null),e(" "),t("path",{d:"M4.711 11.979c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798"},null),e(" "),t("path",{d:"M15.014 19.99c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07"},null),e(" "),t("path",{d:"M10.493 9.862c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365z"},null),e(" "),t("path",{d:"M9.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.5 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},fF={name:"BrandRevolutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-revolut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1z"},null),e(" "),t("path",{d:"M15.5 13.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z"},null),e(" ")])}},mF={name:"BrandRustIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-rust",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.139 3.463c.473 -1.95 3.249 -1.95 3.722 0a1.916 1.916 0 0 0 2.859 1.185c1.714 -1.045 3.678 .918 2.633 2.633a1.916 1.916 0 0 0 1.184 2.858c1.95 .473 1.95 3.249 0 3.722a1.916 1.916 0 0 0 -1.185 2.859c1.045 1.714 -.918 3.678 -2.633 2.633a1.916 1.916 0 0 0 -2.858 1.184c-.473 1.95 -3.249 1.95 -3.722 0a1.916 1.916 0 0 0 -2.859 -1.185c-1.714 1.045 -3.678 -.918 -2.633 -2.633a1.916 1.916 0 0 0 -1.184 -2.858c-1.95 -.473 -1.95 -3.249 0 -3.722a1.916 1.916 0 0 0 1.185 -2.859c-1.045 -1.714 .918 -3.678 2.633 -2.633a1.914 1.914 0 0 0 2.858 -1.184z"},null),e(" "),t("path",{d:"M8 12h6a2 2 0 1 0 0 -4h-6v8v-4z"},null),e(" "),t("path",{d:"M19 16h-2a2 2 0 0 1 -2 -2a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M9 8h-4"},null),e(" "),t("path",{d:"M5 16h4"},null),e(" ")])}},kF={name:"BrandSafariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-safari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},bF={name:"BrandSamsungpassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-samsungpass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862"},null),e(" "),t("path",{d:"M10.485 17.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423"},null),e(" ")])}},MF={name:"BrandSassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10.523c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193"},null),e(" ")])}},xF={name:"BrandSentryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sentry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824"},null),e(" ")])}},zF={name:"BrandSharikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sharik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z"},null),e(" ")])}},IF={name:"BrandShazamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shazam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3"},null),e(" "),t("path",{d:"M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},yF={name:"BrandShopeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-shopee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16z"},null),e(" "),t("path",{d:"M8.5 7c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4"},null),e(" "),t("path",{d:"M9.5 17c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1"},null),e(" ")])}},CF={name:"BrandSketchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sketch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z"},null),e(" ")])}},SF={name:"BrandSkypeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-skype",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396z"},null),e(" "),t("path",{d:"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5"},null),e(" ")])}},$F={name:"BrandSlackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-slack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6"},null),e(" "),t("path",{d:"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6"},null),e(" "),t("path",{d:"M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6"},null),e(" ")])}},AF={name:"BrandSnapchatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapchat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118"},null),e(" ")])}},BF={name:"BrandSnapseedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snapseed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.152 3.115a.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378z"},null),e(" "),t("path",{d:"M8 20l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382"},null),e(" ")])}},HF={name:"BrandSnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21v-5.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 21v-5.5l-4.5 2.5"},null),e(" "),t("path",{d:"M3.5 14.5l4.5 -2.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M20.5 9.5l-4.5 2.5l4.5 2.5"},null),e(" "),t("path",{d:"M10 3v5.5l-4.5 -2.5"},null),e(" "),t("path",{d:"M14 3v5.5l4.5 -2.5"},null),e(" "),t("path",{d:"M12 11l1 1l-1 1l-1 -1z"},null),e(" ")])}},NF={name:"BrandSocketIoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-socket-io",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 11h1l3 -4z"},null),e(" "),t("path",{d:"M12 13h1l-4 4z"},null),e(" ")])}},jF={name:"BrandSolidjsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-solidjs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5z"},null),e(" "),t("path",{d:"M5 13.5c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825"},null),e(" "),t("path",{d:"M22 6.5c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545"},null),e(" "),t("path",{d:"M2 17.5l3 -4"},null),e(" "),t("path",{d:"M22 6.5l-3 4"},null),e(" "),t("path",{d:"M8.581 3.545l-2.953 3.711"},null),e(" "),t("path",{d:"M7.416 12.662c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785"},null),e(" ")])}},PF={name:"BrandSoundcloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-soundcloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"},null),e(" "),t("path",{d:"M9 8l0 9"},null),e(" "),t("path",{d:"M6 17l0 -7"},null),e(" "),t("path",{d:"M3 16l0 -2"},null),e(" ")])}},LF={name:"BrandSpaceheyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spacehey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 20h6v-6a3 3 0 0 0 -6 0v6z"},null),e(" "),t("path",{d:"M11 8v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z"},null),e(" ")])}},DF={name:"BrandSpeedtestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-speedtest",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 19.364a9 9 0 1 1 12.728 0"},null),e(" "),t("path",{d:"M16 9l-4 4"},null),e(" ")])}},OF={name:"BrandSpotifyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-spotify",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"},null),e(" "),t("path",{d:"M9 15c1.5 -1 4 -1 5 .5"},null),e(" "),t("path",{d:"M7 9c2 -1 6 -2 10 .5"},null),e(" ")])}},FF={name:"BrandStackoverflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackoverflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M8.322 12.582l7.956 .836"},null),e(" "),t("path",{d:"M8.787 9.168l7.826 1.664"},null),e(" "),t("path",{d:"M10.096 5.764l7.608 2.472"},null),e(" ")])}},RF={name:"BrandStackshareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stackshare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 12h3l3.5 6h3.5"},null),e(" "),t("path",{d:"M17 6h-3.5l-3.5 6"},null),e(" ")])}},TF={name:"BrandSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:"1",fill:"currentColor"},null),e(" ")])}},EF={name:"BrandStorjIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storj",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 21l-8 -4v-10l8 -4l8 4v10z"},null),e(" "),t("path",{d:"M9.1 15a2.1 2.1 0 0 1 -.648 -4.098c.282 -1.648 1.319 -2.902 3.048 -2.902c1.694 0 2.906 1.203 3.23 2.8h.17a2.1 2.1 0 0 1 .202 4.19l-.202 .01h-5.8z"},null),e(" "),t("path",{d:"M4 7l4.323 2.702"},null),e(" "),t("path",{d:"M16.413 14.758l3.587 2.242"},null),e(" "),t("path",{d:"M4 17l3.529 -2.206"},null),e(" "),t("path",{d:"M14.609 10.37l5.391 -3.37"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" ")])}},VF={name:"BrandStorybookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storybook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l.5 16.5l13.5 .5v-18z"},null),e(" "),t("path",{d:"M9 15c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985"},null),e(" "),t("path",{d:"M16 3.5v1"},null),e(" ")])}},_F={name:"BrandStorytelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-storytel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z"},null),e(" ")])}},WF={name:"BrandStravaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-strava",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13l-5 -10l-5 10m6 0l4 8l4 -8"},null),e(" ")])}},XF={name:"BrandStripeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-stripe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z"},null),e(" ")])}},qF={name:"BrandSublimeTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sublime-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 17l-14 4.5v-5.5l14 -4.5z"},null),e(" "),t("path",{d:"M19 11.5l-14 -4.5"},null),e(" "),t("path",{d:"M5 12.5l14 4.5"},null),e(" ")])}},YF={name:"BrandSugarizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-sugarizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.277 16l3.252 -3.252a1.61 1.61 0 0 0 -2.277 -2.276l-3.252 3.251l-3.252 -3.251a1.61 1.61 0 0 0 -2.276 2.276l3.251 3.252l-3.251 3.252a1.61 1.61 0 1 0 2.276 2.277l3.252 -3.252l3.252 3.252a1.61 1.61 0 1 0 2.277 -2.277l-3.252 -3.252z"},null),e(" "),t("path",{d:"M12 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},UF={name:"BrandSupabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supabase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14h8v7l8 -11h-8v-7z"},null),e(" ")])}},GF={name:"BrandSuperhumanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-superhuman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 3l-8 7l-8 -7l4 -3"},null),e(" "),t("path",{d:"M12 3l-8 6l8 6l8 -6z"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" ")])}},ZF={name:"BrandSupernovaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-supernova",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245"},null),e(" "),t("path",{d:"M9 9h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255"},null),e(" "),t("path",{d:"M15 9v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456"},null),e(" "),t("path",{d:"M9 15v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47"},null),e(" ")])}},KF={name:"BrandSurfsharkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-surfshark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155z"},null),e(" "),t("path",{d:"M8 16h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452"},null),e(" ")])}},QF={name:"BrandSvelteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-svelte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16"},null),e(" "),t("path",{d:"M8 17l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16"},null),e(" ")])}},JF={name:"BrandSwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-swift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.547 15.828c1.33 -4.126 -1.384 -9.521 -6.047 -12.828c-.135 -.096 2.39 6.704 1.308 9.124c-2.153 -1.454 -4.756 -3.494 -7.808 -6.124l-.5 2l-3.5 -1c4.36 4.748 7.213 7.695 8.56 8.841c-4.658 2.089 -10.65 -.978 -10.56 -.841c1.016 1.545 6 6 11 6c2 0 3.788 -.502 4.742 -1.389c.005 -.005 .432 -.446 1.378 -.17c.504 .148 1.463 .667 2.88 1.559v-1.507c0 -1.377 -.515 -2.67 -1.453 -3.665z"},null),e(" ")])}},tR={name:"BrandSymfonyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-symfony",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1"},null),e(" "),t("path",{d:"M9 17c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1"},null),e(" "),t("path",{d:"M22 12c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z"},null),e(" ")])}},eR={name:"BrandTablerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tabler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},nR={name:"BrandTailwindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tailwind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z"},null),e(" ")])}},lR={name:"BrandTaobaoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-taobao",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5c.968 .555 1.335 1.104 2 2"},null),e(" "),t("path",{d:"M2 10c5.007 3.674 2.85 6.544 0 10"},null),e(" "),t("path",{d:"M10 4c-.137 4.137 -2.258 5.286 -3.709 6.684"},null),e(" "),t("path",{d:"M10 6c2.194 -.8 3.736 -.852 6.056 -.993c4.206 -.158 5.523 2.264 5.803 5.153c.428 4.396 -.077 7.186 -2.117 9.298c-1.188 1.23 -3.238 2.62 -7.207 .259"},null),e(" "),t("path",{d:"M11 10h6"},null),e(" "),t("path",{d:"M13 10v6.493"},null),e(" "),t("path",{d:"M8 13h10"},null),e(" "),t("path",{d:"M16 15.512l.853 1.72"},null),e(" "),t("path",{d:"M16.5 17c-1.145 .361 -7 3 -8.5 -.5"},null),e(" "),t("path",{d:"M11.765 8.539l-1.765 2.461"},null),e(" ")])}},rR={name:"BrandTedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 8h4"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M13 8h-4v8h4"},null),e(" "),t("path",{d:"M9 12h2.5"},null),e(" "),t("path",{d:"M16 8v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z"},null),e(" ")])}},oR={name:"BrandTelegramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-telegram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"},null),e(" ")])}},sR={name:"BrandTerraformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-terraform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15.5l-11.476 -6.216a1 1 0 0 1 -.524 -.88v-4.054a1.35 1.35 0 0 1 2.03 -1.166l9.97 5.816v10.65a1.35 1.35 0 0 1 -2.03 1.166l-3.474 -2.027a1 1 0 0 1 -.496 -.863v-11.926"},null),e(" "),t("path",{d:"M15 15.5l5.504 -3.21a1 1 0 0 0 .496 -.864v-3.576a1.35 1.35 0 0 0 -2.03 -1.166l-3.97 2.316"},null),e(" ")])}},aR={name:"BrandTetherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tether",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549z"},null),e(" "),t("path",{d:"M12 15v-7"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" ")])}},iR={name:"BrandThreejsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-threejs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 22l-5 -19l19 5.5z"},null),e(" "),t("path",{d:"M12.573 17.58l-6.152 -1.576l8.796 -9.466l1.914 6.64"},null),e(" "),t("path",{d:"M12.573 17.58l-1.573 -6.58l6.13 2.179"},null),e(" "),t("path",{d:"M9.527 4.893l1.473 6.107l-6.31 -1.564z"},null),e(" ")])}},hR={name:"BrandTidalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tidal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z"},null),e(" ")])}},dR={name:"BrandTiktoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tikto-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.083 2h-4.083a1 1 0 0 0 -1 1v11.5a1.5 1.5 0 1 1 -2.519 -1.1l.12 -.1a1 1 0 0 0 .399 -.8v-4.326a1 1 0 0 0 -1.23 -.974a7.5 7.5 0 0 0 1.73 14.8l.243 -.005a7.5 7.5 0 0 0 7.257 -7.495v-2.7l.311 .153c1.122 .53 2.333 .868 3.59 .993a1 1 0 0 0 1.099 -.996v-4.033a1 1 0 0 0 -.834 -.986a5.005 5.005 0 0 1 -4.097 -4.096a1 1 0 0 0 -.986 -.835z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cR={name:"BrandTiktokIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tiktok",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 7.917v4.034a9.948 9.948 0 0 1 -5 -1.951v4.5a6.5 6.5 0 1 1 -8 -6.326v4.326a2.5 2.5 0 1 0 4 2v-11.5h4.083a6.005 6.005 0 0 0 4.917 4.917z"},null),e(" ")])}},uR={name:"BrandTinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z"},null),e(" ")])}},pR={name:"BrandTopbuzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-topbuzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.417 8.655a.524 .524 0 0 1 -.405 -.622l.986 -4.617a.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a.527 .527 0 0 1 -.625 .404l-4.642 -.982a.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z"},null),e(" ")])}},gR={name:"BrandTorchainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-torchain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277z"},null),e(" "),t("path",{d:"M8.412 8.464l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z"},null),e(" ")])}},wR={name:"BrandToyotaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-toyota",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0"},null),e(" "),t("path",{d:"M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z"},null),e(" "),t("path",{d:"M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806"},null),e(" ")])}},vR={name:"BrandTrelloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-trello",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7h3v10h-3z"},null),e(" "),t("path",{d:"M14 7h3v6h-3z"},null),e(" ")])}},fR={name:"BrandTripadvisorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tripadvisor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z"},null),e(" "),t("path",{d:"M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z"},null),e(" "),t("path",{d:"M10.5 15.5l1.5 2l1.5 -2"},null),e(" "),t("path",{d:"M9 6.75c2 -.667 4 -.667 6 0"},null),e(" ")])}},mR={name:"BrandTumblrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-tumblr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4"},null),e(" ")])}},kR={name:"BrandTwilioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twilio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M9 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},bR={name:"BrandTwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M16 8l0 4"},null),e(" "),t("path",{d:"M12 8l0 4"},null),e(" ")])}},MR={name:"BrandTwitterFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.058 3.41c-1.807 .767 -2.995 2.453 -3.056 4.38l-.002 .182l-.243 -.023c-2.392 -.269 -4.498 -1.512 -5.944 -3.531a1 1 0 0 0 -1.685 .092l-.097 .186l-.049 .099c-.719 1.485 -1.19 3.29 -1.017 5.203l.03 .273c.283 2.263 1.5 4.215 3.779 5.679l.173 .107l-.081 .043c-1.315 .663 -2.518 .952 -3.827 .9c-1.056 -.04 -1.446 1.372 -.518 1.878c3.598 1.961 7.461 2.566 10.792 1.6c4.06 -1.18 7.152 -4.223 8.335 -8.433l.127 -.495c.238 -.993 .372 -2.006 .401 -3.024l.003 -.332l.393 -.779l.44 -.862l.214 -.434l.118 -.247c.265 -.565 .456 -1.033 .574 -1.43l.014 -.056l.008 -.018c.22 -.593 -.166 -1.358 -.941 -1.358l-.122 .007a.997 .997 0 0 0 -.231 .057l-.086 .038a7.46 7.46 0 0 1 -.88 .36l-.356 .115l-.271 .08l-.772 .214c-1.336 -1.118 -3.144 -1.254 -5.012 -.554l-.211 .084z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xR={name:"BrandTwitterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-twitter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z"},null),e(" ")])}},zR={name:"BrandTypescriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-typescript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" "),t("path",{d:"M11 12v6"},null),e(" "),t("path",{d:"M21 19v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z"},null),e(" ")])}},IR={name:"BrandUberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-uber",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},yR={name:"BrandUbuntuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ubuntu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},CR={name:"BrandUnityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l6 4v7"},null),e(" "),t("path",{d:"M18 17l-6 4l-6 -4"},null),e(" "),t("path",{d:"M4 14v-7l6 -4"},null),e(" "),t("path",{d:"M4 7l8 5v9"},null),e(" "),t("path",{d:"M20 7l-8 5"},null),e(" ")])}},SR={name:"BrandUnsplashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-unsplash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z"},null),e(" ")])}},$R={name:"BrandUpworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-upwork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8"},null),e(" ")])}},AR={name:"BrandValorantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-valorant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 14h4.5l2 -2v-6z"},null),e(" "),t("path",{d:"M9 19h5l-11 -13v6z"},null),e(" ")])}},BR={name:"BrandVercelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vercel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h18l-9 -15z"},null),e(" ")])}},HR={name:"BrandVimeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vimeo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z"},null),e(" ")])}},NR={name:"BrandVintedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vinted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z"},null),e(" ")])}},jR={name:"BrandVisaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 15l-1 -6l-2.5 6"},null),e(" "),t("path",{d:"M9 15l1 -6"},null),e(" "),t("path",{d:"M3 9h1v6h.5l2.5 -6"},null),e(" "),t("path",{d:"M16 9.5a.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M18 14h2.7"},null),e(" ")])}},PR={name:"BrandVisualStudioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-visual-studio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"},null),e(" ")])}},LR={name:"BrandViteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z"},null),e(" "),t("path",{d:"M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5"},null),e(" ")])}},DR={name:"BrandVivaldiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vivaldi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674"},null),e(" ")])}},OR={name:"BrandVkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z"},null),e(" ")])}},FR={name:"BrandVlcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vlc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.79 4.337l3.101 9.305c.33 .985 -.113 2.07 -1.02 2.499a9.148 9.148 0 0 1 -7.742 0c-.907 -.428 -1.35 -1.514 -1.02 -2.499l3.1 -9.305c.267 -.8 .985 -1.337 1.791 -1.337c.807 0 1.525 .537 1.79 1.337z"},null),e(" "),t("path",{d:"M7 14h-1.429a2 2 0 0 0 -1.923 1.45l-.571 2a2 2 0 0 0 1.923 2.55h13.998a2 2 0 0 0 1.923 -2.55l-.572 -2a2 2 0 0 0 -1.923 -1.45h-1.426"},null),e(" ")])}},RR={name:"BrandVolkswagenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-volkswagen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11"},null),e(" "),t("path",{d:"M9 4l2 6h2l2 -6"},null),e(" ")])}},TR={name:"BrandVscoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vsco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -10 0a5 5 0 0 0 10 0z"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M18.364 18.364l-2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 18.364l2.828 -2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" ")])}},ER={name:"BrandVscodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vscode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3v18l4 -2.5v-13z"},null),e(" "),t("path",{d:"M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141"},null),e(" "),t("path",{d:"M16 16.5l-11 -10l-2 1l13 13.5"},null),e(" ")])}},VR={name:"BrandVueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-vue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 4l-4.5 8l-4.5 -8"},null),e(" "),t("path",{d:"M3 4l9 16l9 -16"},null),e(" ")])}},_R={name:"BrandWalmartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-walmart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8.04v-5.04"},null),e(" "),t("path",{d:"M15.5 10l4.5 -2.5"},null),e(" "),t("path",{d:"M15.5 14l4.5 2.5"},null),e(" "),t("path",{d:"M12 15.96v5.04"},null),e(" "),t("path",{d:"M8.5 14l-4.5 2.5"},null),e(" "),t("path",{d:"M8.5 10l-4.5 -2.505"},null),e(" ")])}},WR={name:"BrandWazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-waze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62"},null),e(" "),t("path",{d:"M10 18.69a17.29 17.29 0 0 0 3.33 .3h.54"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 9h.01"},null),e(" "),t("path",{d:"M11 9h.01"},null),e(" ")])}},XR={name:"BrandWebflowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-webflow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z"},null),e(" ")])}},qR={name:"BrandWechatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wechat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5z"},null),e(" "),t("path",{d:"M11.197 15.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233"},null),e(" "),t("path",{d:"M10 8h.01"},null),e(" "),t("path",{d:"M7 8h.01"},null),e(" "),t("path",{d:"M15 14h.01"},null),e(" "),t("path",{d:"M18 14h.01"},null),e(" ")])}},YR={name:"BrandWeiboIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-weibo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742z"},null),e(" "),t("path",{d:"M15 4h1a5 5 0 0 1 5 5v1"},null),e(" ")])}},UR={name:"BrandWhatsappIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-whatsapp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9"},null),e(" "),t("path",{d:"M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},GR={name:"BrandWikipediaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wikipedia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4.984h2"},null),e(" "),t("path",{d:"M8 4.984h2.5"},null),e(" "),t("path",{d:"M14.5 4.984h2.5"},null),e(" "),t("path",{d:"M22 4.984h-2"},null),e(" "),t("path",{d:"M4 4.984l5.455 14.516l6.545 -14.516"},null),e(" "),t("path",{d:"M9 4.984l6 14.516l6 -14.516"},null),e(" ")])}},ZR={name:"BrandWindowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},KR={name:"BrandWindyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-windy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13"},null),e(" "),t("path",{d:"M3 4c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14"},null),e(" ")])}},QR={name:"BrandWishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633"},null),e(" "),t("path",{d:"M14.504 14.429l.334 -3"},null),e(" ")])}},JR={name:"BrandWixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6"},null),e(" "),t("path",{d:"M13 11.5v3.5"},null),e(" "),t("path",{d:"M16 9l5 6"},null),e(" "),t("path",{d:"M21 9l-5 6"},null),e(" "),t("path",{d:"M13 9h.01"},null),e(" ")])}},tT={name:"BrandWordpressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-wordpress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9h3"},null),e(" "),t("path",{d:"M4 9h2.5"},null),e(" "),t("path",{d:"M11 9l3 11l4 -9"},null),e(" "),t("path",{d:"M5.5 9l3.5 11l3 -7"},null),e(" "),t("path",{d:"M18 11c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},eT={name:"BrandXamarinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xamarin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.958 21h-7.917a2 2 0 0 1 -1.732 -1l-4.041 -7a2 2 0 0 1 0 -2l4.041 -7a2 2 0 0 1 1.732 -1h7.917a2 2 0 0 1 1.732 1l4.042 7a2 2 0 0 1 0 2l-4.041 7a2 2 0 0 1 -1.733 1z"},null),e(" "),t("path",{d:"M15 16l-6 -8"},null),e(" "),t("path",{d:"M9 16l6 -8"},null),e(" ")])}},nT={name:"BrandXboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5"},null),e(" "),t("path",{d:"M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5"},null),e(" ")])}},lT={name:"BrandXingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-xing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21l-4 -7l6.5 -11"},null),e(" "),t("path",{d:"M7 7l2 3.5l-3 4.5"},null),e(" ")])}},rT={name:"BrandYahooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yahoo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l5 0"},null),e(" "),t("path",{d:"M7 18l7 0"},null),e(" "),t("path",{d:"M4.5 6l5.5 7v5"},null),e(" "),t("path",{d:"M10 13l6 -5"},null),e(" "),t("path",{d:"M12.5 8l5 0"},null),e(" "),t("path",{d:"M20 11l0 4"},null),e(" "),t("path",{d:"M20 18l0 .01"},null),e(" ")])}},oT={name:"BrandYatseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-yatse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z"},null),e(" ")])}},sT={name:"BrandYcombinatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-ycombinator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7l4 6l4 -6"},null),e(" "),t("path",{d:"M12 17l0 -4"},null),e(" ")])}},aT={name:"BrandYoutubeKidsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube-kids",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323z"},null),e(" "),t("path",{d:"M10 10l.972 4l4.028 -3z"},null),e(" ")])}},iT={name:"BrandYoutubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-youtube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M10 9l5 3l-5 3z"},null),e(" ")])}},hT={name:"BrandZalandoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zalando",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z"},null),e(" ")])}},dT={name:"BrandZapierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zapier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" "),t("path",{d:"M12 3v6"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M5.636 5.636l4.243 4.243"},null),e(" "),t("path",{d:"M18.364 18.364l-4.243 -4.243"},null),e(" "),t("path",{d:"M18.364 5.636l-4.243 4.243"},null),e(" "),t("path",{d:"M9.879 14.121l-4.243 4.243"},null),e(" ")])}},cT={name:"BrandZeitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zeit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-9 -16z"},null),e(" ")])}},uT={name:"BrandZhihuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zhihu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6h6v12h-2l-2 2l-1 -2h-1z"},null),e(" "),t("path",{d:"M4 12h6.5"},null),e(" "),t("path",{d:"M10.5 6h-5"},null),e(" "),t("path",{d:"M6 4c-.5 2.5 -1.5 3.5 -2.5 4.5"},null),e(" "),t("path",{d:"M8 6v7c0 4.5 -2 5.5 -4 7"},null),e(" "),t("path",{d:"M11 18l-3 -5"},null),e(" ")])}},pT={name:"BrandZoomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zoom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.011 9.385v5.128l3.989 3.487v-12z"},null),e(" "),t("path",{d:"M3.887 6h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a.882 .882 0 0 1 .208 -.71a.841 .841 0 0 1 .67 -.287z"},null),e(" ")])}},gT={name:"BrandZulipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zulip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17.5 21h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z"},null),e(" ")])}},wT={name:"BrandZwiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brand-zwift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z"},null),e(" ")])}},vT={name:"BreadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fT={name:"BreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z"},null),e(" ")])}},mT={name:"BriefcaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M8.185 4.158a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kT={name:"BriefcaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-briefcase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M3 13a20 20 0 0 0 18 0"},null),e(" ")])}},bT={name:"Brightness2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},MT={name:"BrightnessDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M19 12l0 .01"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" ")])}},xT={name:"BrightnessHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a3 3 0 0 0 0 6v-6z"},null),e(" "),t("path",{d:"M6 6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z"},null),e(" ")])}},zT={name:"BrightnessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12.5 8.5l4.15 -4.15"},null),e(" "),t("path",{d:"M12 14l1.025 -.983m2.065 -1.981l4.28 -4.106"},null),e(" "),t("path",{d:"M12 19.6l3.79 -3.79m2 -2l3.054 -3.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IT={name:"BrightnessUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 5l0 -2"},null),e(" "),t("path",{d:"M17 7l1.4 -1.4"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" "),t("path",{d:"M17 17l1.4 1.4"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M7 17l-1.4 1.4"},null),e(" "),t("path",{d:"M6 12l-2 0"},null),e(" "),t("path",{d:"M7 7l-1.4 -1.4"},null),e(" ")])}},yT={name:"BrightnessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brightness",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 9l4.65 -4.65"},null),e(" "),t("path",{d:"M12 14.3l7.37 -7.37"},null),e(" "),t("path",{d:"M12 19.6l8.85 -8.85"},null),e(" ")])}},CT={name:"BroadcastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536"},null),e(" "),t("path",{d:"M12 12a1 1 0 1 0 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ST={name:"BroadcastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-broadcast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 19.364a9 9 0 1 0 -12.728 0"},null),e(" "),t("path",{d:"M15.536 16.536a5 5 0 1 0 -7.072 0"},null),e(" "),t("path",{d:"M12 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},$T={name:"BrowserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M9.5 14.5l1.5 1.5l3 -3"},null),e(" ")])}},AT={name:"BrowserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},BT={name:"BrowserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},HT={name:"BrowserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M8 4v4"},null),e(" "),t("path",{d:"M10 16l4 -4"},null),e(" "),t("path",{d:"M14 16l-4 -4"},null),e(" ")])}},NT={name:"BrowserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-browser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M8 4l0 4"},null),e(" ")])}},jT={name:"BrushOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17a4 4 0 1 1 4 4h-4v-4z"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PT={name:"BrushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-brush",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a4 4 0 1 1 4 4h-4"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 0 -12.8 10.2"},null),e(" "),t("path",{d:"M21 3a16 16 0 0 1 -10.2 12.8"},null),e(" "),t("path",{d:"M10.6 9a9 9 0 0 1 4.4 4.4"},null),e(" ")])}},LT={name:"BucketDropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" "),t("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"},null),e(" "),t("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"},null),e(" ")])}},DT={name:"BucketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OT={name:"BucketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bucket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 7c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965"},null),e(" ")])}},FT={name:"BugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 5.873a3 3 0 0 1 5.116 2.127v1"},null),e(" "),t("path",{d:"M13 9h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1"},null),e(" "),t("path",{d:"M3 13h4"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" "),t("path",{d:"M12 20v-6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RT={name:"BugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v-1a3 3 0 0 1 6 0v1"},null),e(" "),t("path",{d:"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3"},null),e(" "),t("path",{d:"M3 13l4 0"},null),e(" "),t("path",{d:"M17 13l4 0"},null),e(" "),t("path",{d:"M12 20l0 -6"},null),e(" "),t("path",{d:"M4 19l3.35 -2"},null),e(" "),t("path",{d:"M20 19l-3.35 -2"},null),e(" "),t("path",{d:"M4 7l3.75 2.4"},null),e(" "),t("path",{d:"M20 7l-3.75 2.4"},null),e(" ")])}},TT={name:"BuildingArchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-arch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15"},null),e(" "),t("path",{d:"M9 21v-8a3 3 0 0 1 6 0v8"},null),e(" ")])}},ET={name:"BuildingBankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M5 6l7 -3l7 3"},null),e(" "),t("path",{d:"M4 10l0 11"},null),e(" "),t("path",{d:"M20 10l0 11"},null),e(" "),t("path",{d:"M8 14l0 3"},null),e(" "),t("path",{d:"M12 14l0 3"},null),e(" "),t("path",{d:"M16 14l0 3"},null),e(" ")])}},VT={name:"BuildingBridge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2"},null),e(" ")])}},_T={name:"BuildingBridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-bridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M2 15l20 0"},null),e(" "),t("path",{d:"M3 8a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2"},null),e(" "),t("path",{d:"M12 10l0 5"},null),e(" ")])}},WT={name:"BuildingBroadcastTowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-broadcast-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.616 13.924a5 5 0 1 0 -9.23 0"},null),e(" "),t("path",{d:"M20.307 15.469a9 9 0 1 0 -16.615 0"},null),e(" "),t("path",{d:"M9 21l3 -9l3 9"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},XT={name:"BuildingCarouselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-carousel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M5 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 22l4 -10l4 10"},null),e(" ")])}},qT={name:"BuildingCastleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-castle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 11l18 0"},null),e(" ")])}},YT={name:"BuildingChurchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-church",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M10 21v-4a2 2 0 0 1 4 0v4"},null),e(" "),t("path",{d:"M10 5l4 0"},null),e(" "),t("path",{d:"M12 3l0 5"},null),e(" "),t("path",{d:"M6 21v-7m-2 2l8 -8l8 8m-2 -2v7"},null),e(" ")])}},UT={name:"BuildingCircusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-circus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 6.5c0 1 -5 4.5 -8 4.5"},null),e(" "),t("path",{d:"M12 6.5c0 1 5 4.5 8 4.5"},null),e(" "),t("path",{d:"M6 11c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1"},null),e(" "),t("path",{d:"M18 11c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1"},null),e(" "),t("path",{d:"M12 7v-4l2 1h-2"},null),e(" ")])}},GT={name:"BuildingCommunityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-community",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8"},null),e(" "),t("path",{d:"M13 7l0 .01"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M17 11l0 .01"},null),e(" "),t("path",{d:"M17 15l0 .01"},null),e(" ")])}},ZT={name:"BuildingCottageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-cottage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M4 21v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 21v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5"},null),e(" ")])}},KT={name:"BuildingEstateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-estate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M19 21v-4"},null),e(" "),t("path",{d:"M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14"},null),e(" "),t("path",{d:"M9 17v4"},null),e(" "),t("path",{d:"M8 13h2"},null),e(" "),t("path",{d:"M8 9h2"},null),e(" ")])}},QT={name:"BuildingFactory2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-12l5 4v-4l5 4h4"},null),e(" "),t("path",{d:"M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 17h1"},null),e(" ")])}},JT={name:"BuildingFactoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-factory",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12"},null),e(" "),t("path",{d:"M12.5 13h4.5c.025 2.612 .894 5.296 2 8"},null),e(" "),t("path",{d:"M9 5a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1"},null),e(" "),t("path",{d:"M3 21l19 0"},null),e(" ")])}},tE={name:"BuildingFortressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-fortress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M7 7h0v.01"},null),e(" "),t("path",{d:"M7 10h0v.01"},null),e(" "),t("path",{d:"M7 13h0v.01"},null),e(" "),t("path",{d:"M17 7h0v.01"},null),e(" "),t("path",{d:"M17 10h0v.01"},null),e(" "),t("path",{d:"M17 13h0v.01"},null),e(" ")])}},eE={name:"BuildingHospitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-hospital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},nE={name:"BuildingLighthouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-lighthouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l2 3l2 15h-8l2 -15z"},null),e(" "),t("path",{d:"M8 9l8 0"},null),e(" "),t("path",{d:"M3 11l2 -2l-2 -2"},null),e(" "),t("path",{d:"M21 11l-2 -2l2 -2"},null),e(" ")])}},lE={name:"BuildingMonumentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-monument",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18l2 -13l2 -2l2 2l2 13"},null),e(" "),t("path",{d:"M5 21v-3h14v3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" ")])}},rE={name:"BuildingMosqueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-mosque",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-2a2 2 0 1 1 4 0v2h7"},null),e(" "),t("path",{d:"M4 21v-10"},null),e(" "),t("path",{d:"M20 21v-10"},null),e(" "),t("path",{d:"M4 16h3v-3h10v3h3"},null),e(" "),t("path",{d:"M17 13a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M21 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M5 10.5c0 -.329 -.077 -.653 -.224 -.947l-.776 -1.553l-.776 1.553a2.118 2.118 0 0 0 -.224 .947a.5 .5 0 0 0 .5 .5h1a.5 .5 0 0 0 .5 -.5z"},null),e(" "),t("path",{d:"M12 2a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" ")])}},oE={name:"BuildingPavilionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-pavilion",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h7v-3a2 2 0 0 1 4 0v3h7"},null),e(" "),t("path",{d:"M6 21l0 -9"},null),e(" "),t("path",{d:"M18 21l0 -9"},null),e(" "),t("path",{d:"M6 12h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3"},null),e(" ")])}},sE={name:"BuildingSkyscraperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-skyscraper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M5 21v-14l8 -4v18"},null),e(" "),t("path",{d:"M19 21v-10l-6 -4"},null),e(" "),t("path",{d:"M9 9l0 .01"},null),e(" "),t("path",{d:"M9 12l0 .01"},null),e(" "),t("path",{d:"M9 15l0 .01"},null),e(" "),t("path",{d:"M9 18l0 .01"},null),e(" ")])}},aE={name:"BuildingStadiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-stadium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7"},null),e(" "),t("path",{d:"M15 6h4v-3h-4v7"},null),e(" "),t("path",{d:"M7 6h4v-3h-4v7"},null),e(" ")])}},iE={name:"BuildingStoreIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-store",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4"},null),e(" "),t("path",{d:"M5 21l0 -10.15"},null),e(" "),t("path",{d:"M19 21l0 -10.15"},null),e(" "),t("path",{d:"M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4"},null),e(" ")])}},hE={name:"BuildingTunnelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-tunnel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M8 21v-9a4 4 0 1 1 8 0v9"},null),e(" "),t("path",{d:"M3 17h4"},null),e(" "),t("path",{d:"M17 17h4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 9l3 -3l-3 3z"},null),e(" ")])}},dE={name:"BuildingWarehouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-warehouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-13l9 -4l9 4v13"},null),e(" "),t("path",{d:"M13 13h4v8h-10v-6h6"},null),e(" "),t("path",{d:"M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3"},null),e(" ")])}},cE={name:"BuildingWindTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building-wind-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 11v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573"},null),e(" "),t("path",{d:"M13.01 9.28l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277"},null),e(" "),t("path",{d:"M13 12.716l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M10 21l1 -7"},null),e(" "),t("path",{d:"M13 14l1 7"},null),e(" ")])}},uE={name:"BuildingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-building",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M9 8l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M9 16l1 0"},null),e(" "),t("path",{d:"M14 8l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M14 16l1 0"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16"},null),e(" ")])}},pE={name:"BulbFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.893 4.893a1 1 0 0 1 1.32 -.083l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.693 4.893a1 1 0 0 1 1.497 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 18a1 1 0 0 1 1 1a3 3 0 0 1 -6 0a1 1 0 0 1 .883 -.993l.117 -.007h4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 6a6 6 0 0 1 3.6 10.8a1 1 0 0 1 -.471 .192l-.129 .008h-6a1 1 0 0 1 -.6 -.2a6 6 0 0 1 3.6 -10.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gE={name:"BulbOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M11.089 7.083a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544"},null),e(" "),t("path",{d:"M9.7 17h4.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wE={name:"BulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3"},null),e(" "),t("path",{d:"M9.7 17l4.6 0"},null),e(" ")])}},vE={name:"BulldozerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bulldozer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M19 13v4a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M14 19h-10"},null),e(" "),t("path",{d:"M4 15h10"},null),e(" "),t("path",{d:"M9 11v-5h2a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M5 15v-3a1 1 0 0 1 1 -1h8"},null),e(" "),t("path",{d:"M19 17h-3"},null),e(" ")])}},fE={name:"BusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16.18 16.172a2 2 0 0 0 2.652 2.648"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M2 10h8m4 0h3"},null),e(" "),t("path",{d:"M7 7v3"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mE={name:"BusStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 5h7c2.761 0 5 3.134 5 7v5h-2"},null),e(" "),t("path",{d:"M16 17h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7h4.5"},null),e(" "),t("path",{d:"M9.5 10h7.5"},null),e(" "),t("path",{d:"M12 5v5"},null),e(" "),t("path",{d:"M5 9v11"},null),e(" ")])}},kE={name:"BusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8"},null),e(" "),t("path",{d:"M16 5l1.5 7l4.5 0"},null),e(" "),t("path",{d:"M2 10l15 0"},null),e(" "),t("path",{d:"M7 5l0 5"},null),e(" "),t("path",{d:"M12 5l0 5"},null),e(" ")])}},bE={name:"BusinessplanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-businessplan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0"},null),e(" "),t("path",{d:"M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4"},null),e(" "),t("path",{d:"M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M5 15v1m0 -8v1"},null),e(" ")])}},ME={name:"ButterflyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-butterfly",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z"},null),e(" "),t("path",{d:"M12 19v-10"},null),e(" "),t("path",{d:"M9 3l3 2l3 -2"},null),e(" ")])}},xE={name:"CactusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zE={name:"CactusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cactus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9v1a3 3 0 0 0 3 3h1"},null),e(" "),t("path",{d:"M18 8v5a3 3 0 0 1 -3 3h-1"},null),e(" "),t("path",{d:"M10 21v-16a2 2 0 1 1 4 0v16"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},IE={name:"CakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},yE={name:"CakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z"},null),e(" "),t("path",{d:"M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197"},null),e(" "),t("path",{d:"M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},CE={name:"CalculatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11"},null),e(" "),t("path",{d:"M10 10h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M8 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M8 17v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SE={name:"CalculatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calculator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 14l0 .01"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" "),t("path",{d:"M16 14l0 .01"},null),e(" "),t("path",{d:"M8 17l0 .01"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M16 17l0 .01"},null),e(" ")])}},$E={name:"CalendarBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},AE={name:"CalendarCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},BE={name:"CalendarCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},HE={name:"CalendarCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},NE={name:"CalendarCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},jE={name:"CalendarDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h12.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},PE={name:"CalendarDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},LE={name:"CalendarDueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-due",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},DE={name:"CalendarEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" "),t("path",{d:"M8 3l0 4"},null),e(" "),t("path",{d:"M4 11l16 0"},null),e(" "),t("path",{d:"M8 15h2v2h-2z"},null),e(" ")])}},OE={name:"CalendarExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},FE={name:"CalendarHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},RE={name:"CalendarMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},TE={name:"CalendarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a2 2 0 0 1 2 2v9m-.184 3.839a2 2 0 0 1 -1.816 1.161h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.158 -1.815"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v1"},null),e(" "),t("path",{d:"M4 11h7m4 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EE={name:"CalendarPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},VE={name:"CalendarPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" ")])}},_E={name:"CalendarPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},WE={name:"CalendarQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},XE={name:"CalendarSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},qE={name:"CalendarShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},YE={name:"CalendarStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h11"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},UE={name:"CalendarStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" ")])}},GE={name:"CalendarTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 3v4"},null),e(" "),t("path",{d:"M7 3v4"},null),e(" "),t("path",{d:"M3 11h16"},null),e(" "),t("path",{d:"M18 16.496v1.504l1 1"},null),e(" ")])}},ZE={name:"CalendarUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},KE={name:"CalendarXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},QE={name:"CalendarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-calendar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M16 3v4"},null),e(" "),t("path",{d:"M8 3v4"},null),e(" "),t("path",{d:"M4 11h16"},null),e(" "),t("path",{d:"M11 15h1"},null),e(" "),t("path",{d:"M12 15v3"},null),e(" ")])}},JE={name:"CameraBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},tV={name:"CameraCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M14.984 13.307a3 3 0 1 0 -2.32 2.62"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},eV={name:"CameraCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},nV={name:"CameraCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.948 13.559a3 3 0 1 0 -2.58 2.419"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lV={name:"CameraCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M14.973 13.406a3 3 0 1 0 -2.973 2.594"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rV={name:"CameraDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M14.935 12.375a3.001 3.001 0 1 0 -1.902 3.442"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},oV={name:"CameraDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},sV={name:"CameraExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},aV={name:"CameraFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3a2 2 0 0 1 1.995 1.85l.005 .15a1 1 0 0 0 .883 .993l.117 .007h1a3 3 0 0 1 2.995 2.824l.005 .176v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9a3 3 0 0 1 2.824 -2.995l.176 -.005h1a1 1 0 0 0 1 -1a2 2 0 0 1 1.85 -1.995l.15 -.005h6zm-3 7a3 3 0 0 0 -2.985 2.698l-.011 .152l-.004 .15l.004 .15a3 3 0 1 0 2.996 -3.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},iV={name:"CameraHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.41 11.212a3 3 0 1 0 -4.15 4.231"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},hV={name:"CameraMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},dV={name:"CameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.297 4.289a.997 .997 0 0 1 .703 -.289h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.187 2.828c-.249 .11 -.524 .172 -.813 .172h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.298 0 .58 -.065 .834 -.181"},null),e(" "),t("path",{d:"M10.422 10.448a3 3 0 1 0 4.15 4.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cV={name:"CameraPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.958 13.506a3 3 0 1 0 -1.735 2.235"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},uV={name:"CameraPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M14.933 12.366a3.001 3.001 0 1 0 -2.933 3.634"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},pV={name:"CameraPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},gV={name:"CameraQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.975 12.612a3 3 0 1 0 -1.507 3.005"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},wV={name:"CameraRotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11.245 15.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905"},null),e(" "),t("path",{d:"M14 13h2v2"},null),e(" "),t("path",{d:"M10 13h-2v-2"},null),e(" ")])}},vV={name:"CameraSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.757 11.815a3 3 0 1 0 -3.431 4.109"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},fV={name:"CameraSelfieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-selfie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M15 11l.01 0"},null),e(" "),t("path",{d:"M9 11l.01 0"},null),e(" ")])}},mV={name:"CameraShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14.98 13.347a3 3 0 1 0 -2.39 2.595"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},kV={name:"CameraStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M14.569 11.45a3 3 0 1 0 -4.518 3.83"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},bV={name:"CameraUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M12 16a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},MV={name:"CameraXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},xV={name:"CameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 13a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},zV={name:"CamperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-camper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M15 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M5 18h-1a1 1 0 0 1 -1 -1v-11a2 2 0 0 1 2 -2h12a4 4 0 0 1 4 4h-18"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 18h1a1 1 0 0 0 1 -1v-4l-3 -5"},null),e(" "),t("path",{d:"M21 13h-7"},null),e(" "),t("path",{d:"M14 8v10"},null),e(" ")])}},IV={name:"CampfireIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-campfire",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21l16 -4"},null),e(" "),t("path",{d:"M20 21l-16 -4"},null),e(" "),t("path",{d:"M12 15a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z"},null),e(" ")])}},yV={name:"CandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z"},null),e(" "),t("path",{d:"M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},CV={name:"CandyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},SV={name:"CandyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-candy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z"},null),e(" "),t("path",{d:"M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913"},null),e(" "),t("path",{d:"M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248"},null),e(" ")])}},$V={name:"CaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032"},null),e(" ")])}},AV={name:"CannabisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cannabis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3z"},null),e(" "),t("path",{d:"M12 22v-5"},null),e(" ")])}},BV={name:"CaptureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.554 0 1.055 -.225 1.417 -.589"},null),e(" "),t("path",{d:"M9.87 9.887a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403"},null),e(" "),t("path",{d:"M4 8v-2c0 -.548 .22 -1.044 .577 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HV={name:"CaptureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-capture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},NV={name:"CarCraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17v-5h9"},null),e(" "),t("path",{d:"M4 12v-6l18 -3v2"},null),e(" "),t("path",{d:"M8 12v-4l-4 -2"},null),e(" ")])}},jV={name:"CarCrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-crash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4"},null),e(" "),t("path",{d:"M14 8v-2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M17.5 15.5l1.5 1.5"},null),e(" "),t("path",{d:"M17.5 8.5l1.5 -1.5"},null),e(" ")])}},PV={name:"CarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.584 15.588a2 2 0 0 0 2.828 2.83"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LV={name:"CarTurbineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car-turbine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.86 11c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6"},null),e(" "),t("path",{d:"M11 9c2.489 .108 4.489 .108 6 0"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M11 13l-3.5 -1.5"},null),e(" "),t("path",{d:"M11 13l2.5 3"},null),e(" "),t("path",{d:"M8.5 16l2.5 -3"},null),e(" "),t("path",{d:"M11 13l3.5 -1.5"},null),e(" "),t("path",{d:"M11 9v4"},null),e(" ")])}},DV={name:"CarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-car",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5"},null),e(" ")])}},OV={name:"CaravanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caravan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11 18h7a2 2 0 0 0 2 -2v-7a2 2 0 0 0 -2 -2h-9.5a5.5 5.5 0 0 0 -5.5 5.5v3.5a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8 7l7 -3l1 3"},null),e(" "),t("path",{d:"M13 11m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v2a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M20 16h2"},null),e(" ")])}},FV={name:"CardboardsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.714 12.7a1 1 0 0 0 -1.417 -1.411l1.417 1.41z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RV={name:"CardboardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cardboards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M8 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},TV={name:"CardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.604 7.197l7.138 -3.109a.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304z"},null),e(" "),t("path",{d:"M15 4h1a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M20 6c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374"},null),e(" ")])}},EV={name:"CaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l6 6l6 -6h-12"},null),e(" ")])}},VV={name:"CaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6l-6 6l6 6v-12"},null),e(" ")])}},_V={name:"CaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18l6 -6l-6 -6v12"},null),e(" ")])}},WV={name:"CaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14l-6 -6l-6 6h12"},null),e(" ")])}},XV={name:"CarouselHorizontalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-8a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 6a1 1 0 0 1 .117 1.993l-.117 .007h-1v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-8a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 1.995 1.85l.005 .15v8a2 2 0 0 1 -1.85 1.995l-.15 .005h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qV={name:"CarouselHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M22 17h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1"},null),e(" "),t("path",{d:"M2 17h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1"},null),e(" ")])}},YV={name:"CarouselVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-12a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 19a2 2 0 0 1 1.995 1.85l.005 .15v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-8v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a2 2 0 0 1 1.85 -1.995l.15 -.005h8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 1a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 1 1.993 -.117l.007 .117v1h8v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UV={name:"CarouselVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carousel-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M7 22v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1"},null),e(" "),t("path",{d:"M17 2v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1"},null),e(" ")])}},GV={name:"CarrotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZV={name:"CarrotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-carrot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689z"},null),e(" "),t("path",{d:"M9 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M16 14l-2 -2"},null),e(" "),t("path",{d:"M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z"},null),e(" "),t("path",{d:"M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z"},null),e(" ")])}},KV={name:"CashBanknoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405"},null),e(" "),t("path",{d:"M10 6h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QV={name:"CashBanknoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-banknote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 12l.01 0"},null),e(" "),t("path",{d:"M6 12l.01 0"},null),e(" ")])}},JV={name:"CashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12.582 12.59a2 2 0 0 0 2.83 2.826"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},t_={name:"CashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 9v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2"},null),e(" ")])}},e_={name:"CastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h.01"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n_={name:"CastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l.01 0"},null),e(" "),t("path",{d:"M7 19a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M11 19a8 8 0 0 0 -8 -8"},null),e(" "),t("path",{d:"M15 19h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2"},null),e(" ")])}},l_={name:"CatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546z"},null),e(" "),t("path",{d:"M2 16h5l-4 4"},null),e(" "),t("path",{d:"M22 16h-5l4 4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 11v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" ")])}},r_={name:"Category2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},o_={name:"CategoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-category",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v6h-6z"},null),e(" "),t("path",{d:"M14 4h6v6h-6z"},null),e(" "),t("path",{d:"M4 14h6v6h-6z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},s_={name:"CeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a7.99 7.99 0 0 0 -2.581 .426"},null),e(" "),t("path",{d:"M5.867 5.864a8 8 0 0 0 5.133 14.136"},null),e(" "),t("path",{d:"M20 4a8 8 0 0 0 -7.29 4.7"},null),e(" "),t("path",{d:"M12 12a8 8 0 0 0 8 8"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a_={name:"CeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ce",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M20 4a8 8 0 1 0 0 16"},null),e(" "),t("path",{d:"M12 12l8 0"},null),e(" ")])}},i_={name:"CellSignal1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" ")])}},h_={name:"CellSignal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},d_={name:"CellSignal3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" ")])}},c_={name:"CellSignal4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" ")])}},u_={name:"CellSignal5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z"},null),e(" "),t("path",{d:"M16 7v13"},null),e(" "),t("path",{d:"M12 20v-9"},null),e(" "),t("path",{d:"M8 20v-5"},null),e(" ")])}},p_={name:"CellSignalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell-signal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g_={name:"CellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4l-4 2v5l4 2l4 -2v-5z"},null),e(" "),t("path",{d:"M12 11l4 2l4 -2v-5l-4 -2l-4 2"},null),e(" "),t("path",{d:"M8 13v5l4 2l4 -2v-5"},null),e(" ")])}},w_={name:"Certificate2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M11 7h3"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v_={name:"Certificate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 7h4"},null),e(" "),t("path",{d:"M10 18v4l2 -1l2 1v-4"},null),e(" "),t("path",{d:"M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},f_={name:"CertificateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M6 12h3"},null),e(" "),t("path",{d:"M6 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m_={name:"CertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M13 17.5v4.5l2 -1.5l2 1.5v-4.5"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73"},null),e(" "),t("path",{d:"M6 9l12 0"},null),e(" "),t("path",{d:"M6 12l3 0"},null),e(" "),t("path",{d:"M6 15l2 0"},null),e(" ")])}},k_={name:"ChairDirectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chair-director",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l12 -9"},null),e(" "),t("path",{d:"M6 12l12 9"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M6 3v9"},null),e(" "),t("path",{d:"M18 3v9"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" ")])}},b_={name:"ChalkboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M17 17v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M_={name:"ChalkboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chalkboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M11 16m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},x_={name:"ChargingPileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-charging-pile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 7l-1 1"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M9 11.5l-1.5 2.5h3l-1.5 2.5"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M4 8l10 0"},null),e(" ")])}},z_={name:"ChartArcs3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 1 0 5 -5"},null),e(" "),t("path",{d:"M6.29 18.957a9 9 0 1 0 5.71 -15.957"},null),e(" ")])}},I_={name:"ChartArcsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arcs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.924 11.132a5 5 0 1 0 -4.056 5.792"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 9 -9"},null),e(" ")])}},y_={name:"ChartAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a1 1 0 0 1 .117 1.993l-.117 .007h-16a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.22 5.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C_={name:"ChartAreaLineFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.22 9.375a1 1 0 0 1 1.393 -.165l.094 .083l4 4a1 1 0 0 1 .284 .576l.009 .131v5a1 1 0 0 1 -.883 .993l-.117 .007h-16.022l-.11 -.009l-.11 -.02l-.107 -.034l-.105 -.046l-.1 -.059l-.094 -.07l-.06 -.055l-.072 -.082l-.064 -.089l-.054 -.096l-.016 -.035l-.04 -.103l-.027 -.106l-.015 -.108l-.004 -.11l.009 -.11l.019 -.105c.01 -.04 .022 -.077 .035 -.112l.046 -.105l.059 -.1l4 -6a1 1 0 0 1 1.165 -.39l.114 .05l3.277 1.638l3.495 -4.369z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M15.232 3.36a1 1 0 0 1 1.382 -.15l.093 .083l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3.226 -3.225l-4.299 5.158a1 1 0 0 1 -1.1 .303l-.115 -.049l-3.254 -1.626l-2.499 3.332a1 1 0 0 1 -1.295 .269l-.105 -.069a1 1 0 0 1 -.269 -1.295l.069 -.105l3 -4a1 1 0 0 1 1.137 -.341l.11 .047l3.291 1.645l4.494 -5.391z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},S_={name:"ChartAreaLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" "),t("path",{d:"M4 12l3 -4l4 2l5 -6l4 4"},null),e(" ")])}},$_={name:"ChartAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4l0 5l-16 0"},null),e(" ")])}},A_={name:"ChartArrowsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 21v-14"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M15 10l3 -3l3 3"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 21l0 -9"},null),e(" "),t("path",{d:"M3 6l3 -3l3 3"},null),e(" "),t("path",{d:"M6 21v-18"},null),e(" ")])}},B_={name:"ChartArrowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-arrows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l14 0"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M14 15l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3l0 18"},null),e(" "),t("path",{d:"M3 12l9 0"},null),e(" "),t("path",{d:"M18 3l3 3l-3 3"},null),e(" "),t("path",{d:"M3 6l18 0"},null),e(" ")])}},H_={name:"ChartBarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10"},null),e(" "),t("path",{d:"M15 11v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4"},null),e(" "),t("path",{d:"M4 20h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N_={name:"ChartBarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 8m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20l14 0"},null),e(" ")])}},j_={name:"ChartBubbleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 16a3 3 0 1 1 -2.995 3.176l-.005 -.176l.005 -.176a3 3 0 0 1 2.995 -2.824z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.5 2a5.5 5.5 0 1 1 -5.496 5.721l-.004 -.221l.004 -.221a5.5 5.5 0 0 1 5.496 -5.279z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},P_={name:"ChartBubbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-bubble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14.5 7.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},L_={name:"ChartCandleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a1 1 0 0 1 .993 .883l.007 .117v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3a1 1 0 0 1 .993 .883l.007 .117v9a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005a1 1 0 0 1 -1.993 .117l-.007 -.117l-.15 -.005a2 2 0 0 1 -1.844 -1.838l-.006 -.157v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-9a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a1 1 0 0 1 .993 .883l.007 .117a2 2 0 0 1 1.995 1.85l.005 .15v4a2 2 0 0 1 -1.85 1.995l-.15 .005v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},D_={name:"ChartCandleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-candle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4l0 2"},null),e(" "),t("path",{d:"M6 11l0 9"},null),e(" "),t("path",{d:"M10 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 4l0 10"},null),e(" "),t("path",{d:"M12 19l0 1"},null),e(" "),t("path",{d:"M16 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M18 4l0 1"},null),e(" "),t("path",{d:"M18 11l0 9"},null),e(" ")])}},O_={name:"ChartCirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" "),t("path",{d:"M14.5 14.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0"},null),e(" ")])}},F_={name:"ChartDonut2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},R_={name:"ChartDonut3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M8.929 14.582l-3.429 2.918"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},T_={name:"ChartDonut4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.848 14.667l-3.348 2.833"},null),e(" "),t("path",{d:"M12 3v5m4 4h5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.219 15.328l2.781 4.172"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},E_={name:"ChartDonutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v4a1 1 0 0 1 -.641 .933l-.107 .035a3.1 3.1 0 1 0 3.73 3.953l.05 -.173a1 1 0 0 1 .855 -.742l.113 -.006h3.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.775 2.526a.996 .996 0 0 1 .22 -.026l.122 .007l.112 .02l.103 .03a10 10 0 0 1 6.003 5.817l.108 .294a1 1 0 0 1 -.824 1.325l-.119 .007h-4.5a1 1 0 0 1 -.76 -.35a8 8 0 0 0 -.89 -.89a1 1 0 0 1 -.342 -.636l-.008 -.124v-4.495l.006 -.118c.005 -.042 .012 -.08 .02 -.116l.03 -.103a.998 .998 0 0 1 .168 -.299l.071 -.08c.03 -.028 .058 -.052 .087 -.075l.09 -.063l.088 -.05l.103 -.043l.112 -.032z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},V_={name:"ChartDonutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-donut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5"},null),e(" ")])}},__={name:"ChartDots2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 3l-6 1.5"},null),e(" "),t("path",{d:"M14.113 6.65l2.771 3.695"},null),e(" "),t("path",{d:"M16 12.5l-5 2"},null),e(" ")])}},W_={name:"ChartDots3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l5 -1.5"},null),e(" "),t("path",{d:"M6.5 8.5l7.81 5.37"},null),e(" "),t("path",{d:"M7 7l8 -1"},null),e(" ")])}},X_={name:"ChartDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M9 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.16 10.62l2.34 2.88"},null),e(" "),t("path",{d:"M15.088 13.328l2.837 -4.586"},null),e(" ")])}},q_={name:"ChartGridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M18 20v1"},null),e(" "),t("path",{d:"M18 3v1"},null),e(" "),t("path",{d:"M6 20v1"},null),e(" "),t("path",{d:"M6 10v-7"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M18 8v8"},null),e(" "),t("path",{d:"M8 12h13"},null),e(" "),t("path",{d:"M21 6h-1"},null),e(" "),t("path",{d:"M16 6h-13"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M20 18h1"},null),e(" "),t("path",{d:"M3 18h1"},null),e(" "),t("path",{d:"M6 14v2"},null),e(" ")])}},Y_={name:"ChartHistogramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-histogram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M20 18v3"},null),e(" "),t("path",{d:"M16 16v5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8 16v5"},null),e(" "),t("path",{d:"M3 11c6 0 5 -5 9 -5s3 5 9 5"},null),e(" ")])}},U_={name:"ChartInfographicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-infographic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 3v4h4"},null),e(" "),t("path",{d:"M9 17l0 4"},null),e(" "),t("path",{d:"M17 14l0 7"},null),e(" "),t("path",{d:"M13 13l0 8"},null),e(" "),t("path",{d:"M21 12l0 9"},null),e(" ")])}},G_={name:"ChartLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" "),t("path",{d:"M4 15l4 -6l4 2l4 -5l4 4"},null),e(" ")])}},Z_={name:"ChartPie2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},K_={name:"ChartPie3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Q_={name:"ChartPie4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12l-6.5 5.5"},null),e(" "),t("path",{d:"M12 3v9h9"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l5 7.5"},null),e(" ")])}},J_={name:"ChartPieFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.883 2.207a1.9 1.9 0 0 1 2.087 1.522l.025 .167l.005 .104v7a1 1 0 0 0 .883 .993l.117 .007h6.8a2 2 0 0 1 2 2a1 1 0 0 1 -.026 .226a10 10 0 1 1 -12.27 -11.933l.27 -.067l.11 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 3.5v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 .943 -1.332a10 10 0 0 0 -6.11 -6.111a1 1 0 0 0 -1.333 .943z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tW={name:"ChartPieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eW={name:"ChartPieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-pie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a.9 .9 0 0 0 -1 -.8"},null),e(" "),t("path",{d:"M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5"},null),e(" ")])}},nW={name:"ChartPpfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-ppf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 17c0 -6.075 -5.373 -11 -12 -11"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" ")])}},lW={name:"ChartRadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l9.5 7l-3.5 11h-12l-3.5 -11z"},null),e(" "),t("path",{d:"M12 7.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5z"},null),e(" "),t("path",{d:"M2.5 10l9.5 3l9.5 -3"},null),e(" "),t("path",{d:"M12 3v10l6 8"},null),e(" "),t("path",{d:"M6 21l6 -8"},null),e(" ")])}},rW={name:"ChartSankeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-sankey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3v18h18"},null),e(" "),t("path",{d:"M3 6h18"},null),e(" "),t("path",{d:"M3 8c10 0 8 9 18 9"},null),e(" ")])}},oW={name:"ChartTreemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chart-treemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M4 15h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" "),t("path",{d:"M16 12v8"},null),e(" "),t("path",{d:"M16 16h4"},null),e(" ")])}},sW={name:"CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l5 5l10 -10"},null),e(" ")])}},aW={name:"CheckboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11l3 3l8 -8"},null),e(" "),t("path",{d:"M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9"},null),e(" ")])}},iW={name:"ChecklistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checklist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 8h4"},null),e(" "),t("path",{d:"M9 12h2"},null),e(" ")])}},hW={name:"ChecksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l10 -10"},null),e(" "),t("path",{d:"M2 12l5 5m5 -5l5 -5"},null),e(" ")])}},dW={name:"CheckupListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-checkup-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14h.01"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" "),t("path",{d:"M12 16l1 1l3 -3"},null),e(" ")])}},cW={name:"CheeseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cheese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722"},null),e(" "),t("path",{d:"M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721"},null),e(" "),t("path",{d:"M15 13v.01"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M11 16v.01"},null),e(" ")])}},uW={name:"ChefHatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796"},null),e(" "),t("path",{d:"M6.161 17.009l10.839 -.009"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pW={name:"ChefHatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chef-hat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151z"},null),e(" "),t("path",{d:"M6.161 17.009l11.839 -.009"},null),e(" ")])}},gW={name:"CherryFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wW={name:"CherryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cherry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 13c.366 -2 1.866 -3.873 4.5 -5.6"},null),e(" "),t("path",{d:"M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9"},null),e(" "),t("path",{d:"M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0"},null),e(" ")])}},vW={name:"ChessBishopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.386 3.442c.646 .28 1.226 .62 1.74 1.017l-3.833 3.834l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.814 -3.813c.977 1.35 1.479 3.07 1.479 5.106c0 1.913 -1.178 3.722 -3.089 3.973l-.2 .02l-.211 .007h-5c-2.126 0 -3.5 -1.924 -3.5 -4c0 -3.68 1.57 -6.255 4.613 -7.56a2 2 0 0 1 1.387 -3.44z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 5v1","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fW={name:"ChessBishopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-bishop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 16c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5z"},null),e(" "),t("path",{d:"M15 8l-3 3"},null),e(" "),t("path",{d:"M12 5v1"},null),e(" ")])}},mW={name:"ChessFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a4 4 0 0 1 4 4a5.03 5.03 0 0 1 -.438 2.001l.438 -.001a1 1 0 0 1 .117 1.993l-.117 .007h-1.263l1.24 5.79a1 1 0 0 1 -.747 1.184l-.113 .02l-.117 .006h-6a1 1 0 0 1 -.996 -1.093l.018 -.117l1.24 -5.79h-1.262a1 1 0 0 1 -.117 -1.993l.117 -.007h.438a5.154 5.154 0 0 1 -.412 -1.525l-.02 -.259l-.006 -.216a4 4 0 0 1 4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kW={name:"ChessKingFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v2h2a1 1 0 0 1 .117 1.993l-.117 .007h-2v1.758a4.49 4.49 0 0 1 2.033 -.734l.24 -.018l.227 -.006a4.5 4.5 0 0 1 4.5 4.5a4.504 4.504 0 0 1 -4.064 4.478l-.217 .016l-.219 .006h-7a4.5 4.5 0 1 1 2.501 -8.241l-.001 -1.759h-2a1 1 0 0 1 -.117 -1.993l.117 -.007h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bW={name:"ChessKingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-king",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8.5 16a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M12 3v8"},null),e(" ")])}},MW={name:"ChessKnightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.959 1.99l-.147 .028l-.115 .029a1 1 0 0 0 -.646 1.27l.749 2.245l-2.815 1.735a2 2 0 0 0 -.655 2.751l.089 .133a2 2 0 0 0 1.614 .819l1.563 -.001l-1.614 4.674a1 1 0 0 0 .945 1.327h7.961a1 1 0 0 0 1 -.978l.112 -5c0 -3.827 -1.555 -6.878 -4.67 -7.966l-2.399 -.83l-.375 -.121l-.258 -.074l-.135 -.031l-.101 -.013l-.055 -.001l-.048 .003z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xW={name:"ChessKnightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-knight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M9 3l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z"},null),e(" ")])}},zW={name:"ChessQueenFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a2 2 0 0 1 1.572 3.236l.793 1.983l1.702 -1.702a2.003 2.003 0 0 1 1.933 -2.517a2 2 0 0 1 .674 3.884l-1.69 9.295a1 1 0 0 1 -.865 .814l-.119 .007h-8a1 1 0 0 1 -.956 -.705l-.028 -.116l-1.69 -9.295a2 2 0 1 1 2.607 -1.367l1.701 1.702l.794 -1.983a2 2 0 0 1 1.572 -3.236z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IW={name:"ChessQueenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-queen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},yW={name:"ChessRookFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3a1 1 0 0 1 .993 .883l.007 .117v2h1.652l.362 -2.164a1 1 0 0 1 1.034 -.836l.116 .013a1 1 0 0 1 .836 1.035l-.013 .116l-.5 3a1 1 0 0 1 -.865 .829l-.122 .007h-1.383l.877 7.89a1 1 0 0 1 -.877 1.103l-.117 .007h-8a1 1 0 0 1 -1 -.993l.006 -.117l.877 -7.89h-1.383a1 1 0 0 1 -.96 -.718l-.026 -.118l-.5 -3a1 1 0 0 1 1.947 -.442l.025 .114l.361 2.164h1.653v-2a1 1 0 0 1 1.993 -.117l.007 .117v2h2v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 18h-12a1 1 0 0 0 -1 1a2 2 0 0 0 2 2h10a2 2 0 0 0 1.987 -1.768l.011 -.174a1 1 0 0 0 -.998 -1.058z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CW={name:"ChessRookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess-rook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8z"},null),e(" "),t("path",{d:"M8 16l1 -9h6l1 9"},null),e(" "),t("path",{d:"M6 4l.5 3h11l.5 -3"},null),e(" "),t("path",{d:"M10 4v3"},null),e(" "),t("path",{d:"M14 4v3"},null),e(" ")])}},SW={name:"ChessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chess",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3z"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M6.684 16.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z"},null),e(" ")])}},$W={name:"ChevronDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v8h8"},null),e(" ")])}},AW={name:"ChevronDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8v8h-8"},null),e(" ")])}},BW={name:"ChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 6l6 -6"},null),e(" ")])}},HW={name:"ChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l-6 6l6 6"},null),e(" ")])}},NW={name:"ChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l6 6l-6 6"},null),e(" ")])}},jW={name:"ChevronUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-8h8"},null),e(" ")])}},PW={name:"ChevronUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h8v8"},null),e(" ")])}},LW={name:"ChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15l6 -6l6 6"},null),e(" ")])}},DW={name:"ChevronsDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5v8h8"},null),e(" "),t("path",{d:"M7 9v8h8"},null),e(" ")])}},OW={name:"ChevronsDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5v8h-8"},null),e(" "),t("path",{d:"M17 9v8h-8"},null),e(" ")])}},FW={name:"ChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l5 -5"},null),e(" "),t("path",{d:"M7 13l5 5l5 -5"},null),e(" ")])}},RW={name:"ChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l-5 5l5 5"},null),e(" "),t("path",{d:"M17 7l-5 5l5 5"},null),e(" ")])}},TW={name:"ChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 7l5 5l-5 5"},null),e(" ")])}},EW={name:"ChevronsUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15v-8h8"},null),e(" "),t("path",{d:"M11 19v-8h8"},null),e(" ")])}},VW={name:"ChevronsUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7h8v8"},null),e(" "),t("path",{d:"M5 11h8v8"},null),e(" ")])}},_W={name:"ChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11l5 -5l5 5"},null),e(" "),t("path",{d:"M7 17l5 -5l5 5"},null),e(" ")])}},WW={name:"ChiselIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-chisel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14l1.5 1.5"},null),e(" "),t("path",{d:"M18.347 15.575l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 6l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z"},null),e(" ")])}},XW={name:"ChristmasTreeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qW={name:"ChristmasTreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-christmas-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1z"},null),e(" "),t("path",{d:"M14 17v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3"},null),e(" ")])}},YW={name:"Circle0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},UW={name:"Circle1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GW={name:"Circle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZW={name:"Circle3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},KW={name:"Circle4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QW={name:"Circle5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},JW={name:"Circle6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tX={name:"Circle7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},eX={name:"Circle8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nX={name:"Circle9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lX={name:"CircleArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 3.66a1 1 0 0 0 -1 1v5.585l-2.293 -2.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4 4c.028 .028 .057 .054 .094 .083l.092 .064l.098 .052l.081 .034l.113 .034l.112 .02l.117 .006l.115 -.007l.114 -.02l.142 -.044l.113 -.054l.111 -.071a.939 .939 0 0 0 .112 -.097l4 -4l.083 -.094a1 1 0 0 0 -1.497 -1.32l-2.293 2.291v-5.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rX={name:"CircleArrowDownLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-8 4.66a1 1 0 0 0 -1 1v6l.007 .117l.029 .149l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l.09 .08l.096 .067l.098 .052l.11 .044l.112 .03l.126 .017l6.075 .003l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-3.586l4.293 -4.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-4.293 4.291v-3.584l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},oX={name:"CircleArrowDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15h-6v-6"},null),e(" ")])}},sX={name:"CircleArrowDownRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66l-.117 .007a1 1 0 0 0 -.883 .993v3.585l-4.293 -4.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l4.292 4.293h-3.585l-.117 .007a1 1 0 0 0 .117 1.993l6.034 .001a.998 .998 0 0 0 .186 -.025l.053 -.014l.066 -.02l.13 -.059l.093 -.055a.98 .98 0 0 0 .438 -.828v-6l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},aX={name:"CircleArrowDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M15 9v6l-6 -6"},null),e(" ")])}},iX={name:"CircleArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 4"},null),e(" ")])}},hX={name:"CircleArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a10 10 0 0 1 .324 19.995l-.324 .005l-.324 -.005a10 10 0 0 1 .324 -19.995zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.048 1.048 0 0 0 -.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.043 .07l.071 .095l.054 .058l4 4l.094 .083a1 1 0 0 0 1.32 -1.497l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.586l2.293 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dX={name:"CircleArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 0 -18a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M8 12l4 4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" ")])}},cX={name:"CircleArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .005a10 10 0 1 1 -.648 0l.324 -.005zm.613 5.21a1 1 0 0 0 -1.32 1.497l2.291 2.293h-5.584l-.117 .007a1 1 0 0 0 .117 1.993h5.584l-2.291 2.293l-.083 .094a1 1 0 0 0 1.497 1.32l4 -4l.073 -.082l.064 -.089l.062 -.113l.044 -.11l.03 -.112l.017 -.126l.003 -.075l-.007 -.118l-.029 -.148l-.035 -.105l-.054 -.113l-.071 -.111a1.008 1.008 0 0 0 -.097 -.112l-4 -4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uX={name:"CircleArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 16l4 -4"},null),e(" ")])}},pX={name:"CircleArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.98 3.66l-.163 .01l-.086 .016l-.142 .045l-.113 .054l-.07 .043l-.095 .071l-.058 .054l-4 4l-.083 .094a1 1 0 0 0 1.497 1.32l2.293 -2.293v5.586l.007 .117a1 1 0 0 0 1.993 -.117v-5.585l2.293 2.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4 -4l-.082 -.073l-.089 -.064l-.113 -.062l-.081 -.034l-.113 -.034l-.112 -.02l-.098 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gX={name:"CircleArrowUpLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007l-.149 .029l-.105 .035l-.113 .054l-.111 .071a1.01 1.01 0 0 0 -.112 .097l-.08 .09l-.067 .096l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 6.075l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-3.585l4.293 4.292l.094 .083a1 1 0 0 0 1.32 -1.497l-4.292 -4.293h3.585l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wX={name:"CircleArrowUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" "),t("path",{d:"M15 9h-6v6"},null),e(" ")])}},vX={name:"CircleArrowUpRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 4.66h-6l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h3.584l-4.291 4.293l-.083 .094a1 1 0 0 0 1.497 1.32l4.293 -4.293v3.586l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117l-.029 -.149l-.035 -.105l-.054 -.113l-.071 -.111a1.01 1.01 0 0 0 -.097 -.112l-.09 -.08l-.096 -.067l-.098 -.052l-.11 -.044l-.112 -.03l-.126 -.017l-.075 -.003z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fX={name:"CircleArrowUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M15 9l-6 6"},null),e(" "),t("path",{d:"M15 15v-6h-6"},null),e(" ")])}},mX={name:"CircleArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 12l-4 -4"},null),e(" ")])}},kX={name:"CircleCaretDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 15l-4 -4h8z"},null),e(" ")])}},bX={name:"CircleCaretLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l4 -4v8z"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" ")])}},MX={name:"CircleCaretRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12l-4 -4v8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},xX={name:"CircleCaretUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-caret-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l4 4h-8z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},zX={name:"CircleCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.293 5.953a1 1 0 0 0 -1.32 -.083l-.094 .083l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.403 1.403l.083 .094l2 2l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},IX={name:"CircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},yX={name:"CircleChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},CX={name:"CircleChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z"},null),e(" ")])}},SX={name:"CircleChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z"},null),e(" ")])}},$X={name:"CircleChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},AX={name:"CircleChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" ")])}},BX={name:"CircleChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 0 .265l0 -.265z"},null),e(" ")])}},HX={name:"CircleChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 0 -.265l0 .265z"},null),e(" ")])}},NX={name:"CircleChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 0 -.265 0l.265 0z"},null),e(" ")])}},jX={name:"CircleDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" ")])}},PX={name:"CircleDotFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 6.66a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},LX={name:"CircleDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},DX={name:"CircleDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.5 4.21l0 .01"},null),e(" "),t("path",{d:"M4.21 7.5l0 .01"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M4.21 16.5l0 .01"},null),e(" "),t("path",{d:"M7.5 19.79l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" "),t("path",{d:"M16.5 19.79l0 .01"},null),e(" "),t("path",{d:"M19.79 16.5l0 .01"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" "),t("path",{d:"M19.79 7.5l0 .01"},null),e(" "),t("path",{d:"M16.5 4.21l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" ")])}},OX={name:"CircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FX={name:"CircleHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 14l7 -7"},null),e(" "),t("path",{d:"M12 19l8.5 -8.5"},null),e(" "),t("path",{d:"M12 9l4.5 -4.5"},null),e(" ")])}},RX={name:"CircleHalfVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" ")])}},TX={name:"CircleHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},EX={name:"CircleKeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -20 0c0 -5.523 4.477 -10 10 -10zm2 5a3 3 0 0 0 -2.98 2.65l-.015 .174l-.005 .176l.005 .176c.019 .319 .087 .624 .197 .908l.09 .209l-3.5 3.5l-.082 .094a1 1 0 0 0 0 1.226l.083 .094l1.5 1.5l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-.792 -.793l.585 -.585l.793 .792l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.792 -.793l.792 -.792a3 3 0 1 0 1.293 -5.708zm0 2a1 1 0 1 1 0 2a1 1 0 0 1 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VX={name:"CircleKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" ")])}},_X={name:"CircleLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},WX={name:"CircleLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},XX={name:"CircleLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},qX={name:"CircleLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},YX={name:"CircleLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},UX={name:"CircleLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},GX={name:"CircleLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},ZX={name:"CircleLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},KX={name:"CircleLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},QX={name:"CircleLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},JX={name:"CircleLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},tq={name:"CircleLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},eq={name:"CircleLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},nq={name:"CircleLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},lq={name:"CircleLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},rq={name:"CircleLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},oq={name:"CircleLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},sq={name:"CircleLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},aq={name:"CircleLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},iq={name:"CircleLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},hq={name:"CircleLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},dq={name:"CircleLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},cq={name:"CircleLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},uq={name:"CircleLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},pq={name:"CircleLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},gq={name:"CircleLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},wq={name:"CircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},vq={name:"CircleNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},fq={name:"CircleNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},mq={name:"CircleNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},kq={name:"CircleNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},bq={name:"CircleNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},Mq={name:"CircleNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},xq={name:"CircleNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},zq={name:"CircleNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},Iq={name:"CircleNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},yq={name:"CircleNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},Cq={name:"CircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sq={name:"CirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},$q={name:"CircleRectangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h3v3m-3 1h-7v-4h3"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Aq={name:"CircleRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10h10v4h-10z"},null),e(" ")])}},Bq={name:"CircleSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0"},null),e(" "),t("path",{d:"M10 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hq={name:"CircleTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 20l7 -12h-14z"},null),e(" ")])}},Nq={name:"CircleXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-6.489 5.8a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jq={name:"CircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},Pq={name:"CircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Lq={name:"CirclesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17.5 12a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Dq={name:"CirclesRelationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles-relation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.183 6.117a6 6 0 1 0 4.511 3.986"},null),e(" "),t("path",{d:"M14.813 17.883a6 6 0 1 0 -4.496 -3.954"},null),e(" ")])}},Oq={name:"CirclesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17.5 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Fq={name:"CircuitAmmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ammeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},Rq={name:"CircuitBatteryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-battery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h4"},null),e(" "),t("path",{d:"M18 12h4"},null),e(" "),t("path",{d:"M18 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},Tq={name:"CircuitBulbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-bulb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h5"},null),e(" "),t("path",{d:"M17 12h5"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M15.5 8.5l-7 7"},null),e(" ")])}},Eq={name:"CircuitCapacitorPolarizedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor-polarized",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" "),t("path",{d:"M17 5h4"},null),e(" "),t("path",{d:"M19 3v4"},null),e(" ")])}},Vq={name:"CircuitCapacitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-capacitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-8"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M10 7v10"},null),e(" "),t("path",{d:"M14 7v10"},null),e(" ")])}},_q={name:"CircuitCellPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h9"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" "),t("path",{d:"M11 5v14"},null),e(" "),t("path",{d:"M15 9v6"},null),e(" "),t("path",{d:"M3 5h4"},null),e(" "),t("path",{d:"M5 3v4"},null),e(" ")])}},Wq={name:"CircuitCellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-cell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h8"},null),e(" "),t("path",{d:"M14 12h8"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M14 9v6"},null),e(" ")])}},Xq={name:"CircuitChangeoverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-changeover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 7h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l8.5 -3.5"},null),e(" ")])}},qq={name:"CircuitDiodeZenerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode-zener",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M14 7h2v10h2"},null),e(" ")])}},Yq={name:"CircuitDiodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-diode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 12h6"},null),e(" "),t("path",{d:"M8 7l8 5l-8 5z"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" ")])}},Uq={name:"CircuitGroundDigitalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground-digital",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-10"},null),e(" "),t("path",{d:"M12 21l-6 -8h12z"},null),e(" ")])}},Gq={name:"CircuitGroundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-ground",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8"},null),e(" "),t("path",{d:"M4 13h16"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" ")])}},Zq={name:"CircuitInductorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-inductor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3"},null),e(" ")])}},Kq={name:"CircuitMotorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-motor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 14v-4l2 2l2 -2v4"},null),e(" ")])}},Qq={name:"CircuitPushbuttonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-pushbutton",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 17h2"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 11h12"},null),e(" "),t("path",{d:"M12 11v-6"},null),e(" ")])}},Jq={name:"CircuitResistorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-resistor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5"},null),e(" ")])}},tY={name:"CircuitSwitchClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" ")])}},eY={name:"CircuitSwitchOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-switch-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 10.5l7.5 -5.5"},null),e(" ")])}},nY={name:"CircuitVoltmeterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-circuit-voltmeter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 12h-3"},null),e(" "),t("path",{d:"M19 12h3"},null),e(" "),t("path",{d:"M10 10l2 4l2 -4"},null),e(" ")])}},lY={name:"ClearAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h12"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M4 18h12"},null),e(" ")])}},rY={name:"ClearFormattingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clear-formatting",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 15l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M7 6v-1h11v1"},null),e(" "),t("path",{d:"M7 19l4 0"},null),e(" "),t("path",{d:"M13 5l-4 14"},null),e(" ")])}},oY={name:"ClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 0"},null),e(" "),t("path",{d:"M12 3l0 3"},null),e(" "),t("path",{d:"M7.8 7.8l-2.2 -2.2"},null),e(" "),t("path",{d:"M16.2 7.8l2.2 -2.2"},null),e(" "),t("path",{d:"M7.8 16.2l-2.2 2.2"},null),e(" "),t("path",{d:"M12 12l9 3l-4 2l-2 4l-3 -9"},null),e(" ")])}},sY={name:"ClipboardCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 14l2 2l4 -4"},null),e(" ")])}},aY={name:"ClipboardCopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},iY={name:"ClipboardDataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-data",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-4"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-2"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" ")])}},hY={name:"ClipboardHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11.993 16.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z"},null),e(" ")])}},dY={name:"ClipboardListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" "),t("path",{d:"M9 16l.01 0"},null),e(" "),t("path",{d:"M13 16l2 0"},null),e(" ")])}},cY={name:"ClipboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uY={name:"ClipboardPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},pY={name:"ClipboardTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 16h6"},null),e(" ")])}},gY={name:"ClipboardTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M11 17h2"},null),e(" ")])}},wY={name:"ClipboardXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},vY={name:"ClipboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clipboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},fY={name:"Clock2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M4 12h1"},null),e(" "),t("path",{d:"M19 12h1"},null),e(" "),t("path",{d:"M12 19v1"},null),e(" ")])}},mY={name:"ClockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},kY={name:"ClockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.997 12.25a9 9 0 1 0 -8.718 8.745"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},bY={name:"ClockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.021a9 9 0 1 0 -9.407 7.967"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},MY={name:"ClockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.931 13.111a9 9 0 1 0 -9.453 7.874"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},xY={name:"ClockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.002 9"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},zY={name:"ClockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.866 10.45a9 9 0 1 0 -7.815 10.488"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},IY={name:"ClockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.431 8.448"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},yY={name:"ClockEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},CY={name:"ClockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.502a9 9 0 1 0 -5.973 7.98"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},SY={name:"ClockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 2.66a1 1 0 0 0 -.993 .883l-.007 .117v5l.009 .131a1 1 0 0 0 .197 .477l.087 .1l3 3l.094 .082a1 1 0 0 0 1.226 0l.094 -.083l.083 -.094a1 1 0 0 0 0 -1.226l-.083 -.094l-2.707 -2.708v-4.585l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$Y={name:"ClockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.956 11.107a9 9 0 1 0 -9.579 9.871"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M12 7v5l.5 .5"},null),e(" ")])}},AY={name:"ClockHour1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M12 12l2 -3"},null),e(" ")])}},BY={name:"ClockHour10Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-10",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},HY={name:"ClockHour11Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-11",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 -3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},NY={name:"ClockHour12Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-12",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},jY={name:"ClockHour2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 -2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},PY={name:"ClockHour3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},LY={name:"ClockHour4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},DY={name:"ClockHour5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},OY={name:"ClockHour6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12v3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},FY={name:"ClockHour7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-2 3"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},RY={name:"ClockHour8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12l-3 2"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},TY={name:"ClockHour9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-hour-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12h-3.5"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" ")])}},EY={name:"ClockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.477 15.022a9 9 0 1 0 -7.998 5.965"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},VY={name:"ClockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.633 5.64a9 9 0 1 0 12.735 12.72m1.674 -2.32a9 9 0 0 0 -12.082 -12.082"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Y={name:"ClockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -7.909 7.922"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},WY={name:"ClockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.971 11.278a9 9 0 1 0 -8.313 9.698"},null),e(" "),t("path",{d:"M12 7v5l1.5 1.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},XY={name:"ClockPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M17 22l5 -3l-5 -3z"},null),e(" "),t("path",{d:"M13.017 20.943a9 9 0 1 1 7.831 -7.292"},null),e(" ")])}},qY={name:"ClockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.535a9 9 0 1 0 -8.468 8.45"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},YY={name:"ClockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.717 9.06"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},UY={name:"ClockRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.3a9 9 0 1 0 -8.683 8.694"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},GY={name:"ClockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.993 11.646a9 9 0 1 0 -9.318 9.348"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},ZY={name:"ClockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.943 13.016a9 9 0 1 0 -8.915 7.984"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" ")])}},KY={name:"ClockShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.98 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},QY={name:"ClockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.982 11.436a9 9 0 1 0 -9.966 9.51"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" ")])}},JY={name:"ClockStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M12 7v5l1 1"},null),e(" "),t("path",{d:"M16 16h6v6h-6z"},null),e(" ")])}},tU={name:"ClockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.548a9 9 0 1 0 -8.45 8.436"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M12 7v5l2.5 2.5"},null),e(" ")])}},eU={name:"ClockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.926 13.15a9 9 0 1 0 -7.835 7.784"},null),e(" "),t("path",{d:"M12 7v5l2 2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},nU={name:"ClockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 7v5l3 3"},null),e(" ")])}},lU={name:"ClothesRackOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v1m0 4v9"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rU={name:"ClothesRackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clothes-rack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 7v14"},null),e(" "),t("path",{d:"M9 21h6"},null),e(" "),t("path",{d:"M7.757 9.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},oU={name:"CloudBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.396 0 2.6 .831 3.148 2.03"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},sU={name:"CloudCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.45 3.45 0 0 1 2.756 1.373"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},aU={name:"CloudCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.388 0 2.585 .82 3.138 2.007"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},iU={name:"CloudCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.468 3.468 0 0 1 3.307 2.444"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},hU={name:"CloudCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c.956 0 1.822 .39 2.449 1.02"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},dU={name:"CloudComputingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-computing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M16 16v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M8 16v4a1 1 0 0 1 -1 1h-4"},null),e(" ")])}},cU={name:"CloudDataConnectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-data-connection",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 18h7"},null),e(" "),t("path",{d:"M3 18h7"},null),e(" ")])}},uU={name:"CloudDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 18.004h-6.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.28 1.023 1.957 2.51 1.873 4.027"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},pU={name:"CloudDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.573 .813 3.13 1.99"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},gU={name:"CloudDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4"},null),e(" "),t("path",{d:"M12 13l0 9"},null),e(" "),t("path",{d:"M9 19l3 3l3 -3"},null),e(" ")])}},wU={name:"CloudExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18.004h-8.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.374 0 2.562 .805 3.121 1.972"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},vU={name:"CloudFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.04 4.305c2.195 -.667 4.615 -.224 6.36 1.176c1.386 1.108 2.188 2.686 2.252 4.34l.003 .212l.091 .003c2.3 .107 4.143 1.961 4.25 4.27l.004 .211c0 2.407 -1.885 4.372 -4.255 4.482l-.21 .005h-11.878l-.222 -.008c-2.94 -.11 -5.317 -2.399 -5.43 -5.263l-.005 -.216c0 -2.747 2.08 -5.01 4.784 -5.417l.114 -.016l.07 -.181c.663 -1.62 2.056 -2.906 3.829 -3.518l.244 -.08z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fU={name:"CloudFogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-fog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" ")])}},mU={name:"CloudHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18.004h-3.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},kU={name:"CloudLockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 0 1 3.736 -1"},null),e(" ")])}},bU={name:"CloudLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027"},null),e(" "),t("path",{d:"M8 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 15v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},MU={name:"CloudMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .186 -.015 .37 -.042 .548"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},xU={name:"CloudOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.58 5.548c.24 -.11 .492 -.207 .752 -.286c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 .957 -.383 1.824 -1.003 2.454m-2.997 1.033h-11.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.13 -.582 .37 -1.128 .7 -1.62"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zU={name:"CloudPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.406 0 2.617 .843 3.16 2.055"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},IU={name:"CloudPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},yU={name:"CloudPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99a3.46 3.46 0 0 1 3.085 1.9"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},CU={name:"CloudQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 18.004h-7.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},SU={name:"CloudRainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-rain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 13v2m0 3v2m4 -5v2m0 3v2"},null),e(" ")])}},$U={name:"CloudSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18.004h-4.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},AU={name:"CloudShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18.004h-5.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.41 0 2.624 .848 3.164 2.065"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},BU={name:"CloudSnowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-snow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7"},null),e(" "),t("path",{d:"M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01"},null),e(" ")])}},HU={name:"CloudStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 18.004h-2.843c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.209 .967 1.88 2.347 1.88 3.776"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},NU={name:"CloudStormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M13 14l-2 4l3 0l-2 4"},null),e(" ")])}},jU={name:"CloudUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.004h-5.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.38 0 2.57 .811 3.128 1.986"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},PU={name:"CloudUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" ")])}},LU={name:"CloudXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18.004h-6.343c-2.572 -.004 -4.657 -2.011 -4.657 -4.487c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.37 0 2.556 .8 3.117 1.964"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},DU={name:"CloudIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cloud",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878"},null),e(" ")])}},OU={name:"Clover2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"},null),e(" "),t("path",{d:"M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"},null),e(" "),t("path",{d:"M15 15l6 6"},null),e(" ")])}},FU={name:"CloverIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clover",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"},null),e(" "),t("path",{d:"M12 14l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"},null),e(" "),t("path",{d:"M14 12l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397z"},null),e(" "),t("path",{d:"M10 12l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z"},null),e(" ")])}},RU={name:"ClubsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 0 -4.488 2.797l-.103 .225a4.998 4.998 0 0 0 -.334 2.837l.027 .14a5 5 0 0 0 -3.091 9.009l.198 .14a4.998 4.998 0 0 0 4.42 .58l.174 -.066l-.773 3.095a1 1 0 0 0 .97 1.243h6l.113 -.006a1 1 0 0 0 .857 -1.237l-.774 -3.095l.174 .065a5 5 0 1 0 1.527 -9.727l.028 -.14a4.997 4.997 0 0 0 -4.925 -5.86z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TU={name:"ClubsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-clubs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z"},null),e(" ")])}},EU={name:"CodeAsterixIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-asterix",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 11.875l3 -1.687"},null),e(" "),t("path",{d:"M12 11.875v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 -1.687"},null),e(" "),t("path",{d:"M12 11.875l3 1.688"},null),e(" "),t("path",{d:"M12 8.5v3.375"},null),e(" "),t("path",{d:"M12 11.875l-3 1.688"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},VU={name:"CodeCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 13.5l-1.5 -1.5l1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 10.5l1.5 1.5l-1.5 1.5"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 9.5l-2 5.5"},null),e(" ")])}},_U={name:"CodeCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l-2 -2l2 -2"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},WU={name:"CodeDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},XU={name:"CodeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},qU={name:"CodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-2.5 2.5"},null),e(" "),t("path",{d:"M14 4l-1.201 4.805m-.802 3.207l-2 7.988"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YU={name:"CodePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2"},null),e(" ")])}},UU={name:"CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8l-4 4l4 4"},null),e(" "),t("path",{d:"M17 8l4 4l-4 4"},null),e(" "),t("path",{d:"M14 4l-4 16"},null),e(" ")])}},GU={name:"CoffeeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99"},null),e(" "),t("path",{d:"M8 3c-.194 .14 -.364 .305 -.506 .49"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M14 10h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7"},null),e(" "),t("path",{d:"M20.116 16.124a3 3 0 0 0 -3.118 -4.953"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZU={name:"CoffeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"},null),e(" "),t("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"},null),e(" "),t("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"},null),e(" ")])}},KU={name:"CoffinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coffin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3l-2 6l2 12h6l2 -12l-2 -6z"},null),e(" "),t("path",{d:"M10 7v5"},null),e(" "),t("path",{d:"M8 9h4"},null),e(" "),t("path",{d:"M13 21h4l2 -12l-2 -6h-4"},null),e(" ")])}},QU={name:"CoinBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M10 7v10v-9"},null),e(" "),t("path",{d:"M13 7v1"},null),e(" "),t("path",{d:"M13 16v1"},null),e(" ")])}},JU={name:"CoinEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1"},null),e(" "),t("path",{d:"M7 10.5h4"},null),e(" "),t("path",{d:"M7 13.5h4"},null),e(" ")])}},tG={name:"CoinMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4 16h4v-7l4 4l4 -4v7h4"},null),e(" ")])}},eG={name:"CoinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 6v2m0 8v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nG={name:"CoinPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6"},null),e(" "),t("path",{d:"M9 12h4"},null),e(" ")])}},lG={name:"CoinRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" ")])}},rG={name:"CoinYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},oG={name:"CoinYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" "),t("path",{d:"M9 8l3 4.5"},null),e(" "),t("path",{d:"M15 8l-3 4.5v4.5"},null),e(" ")])}},sG={name:"CoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" ")])}},aG={name:"CoinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-coins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3z"},null),e(" "),t("path",{d:"M9 14v4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4"},null),e(" "),t("path",{d:"M3 6c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598z"},null),e(" "),t("path",{d:"M3 6v10c0 .888 .772 1.45 2 2"},null),e(" "),t("path",{d:"M3 11c0 .888 .772 1.45 2 2"},null),e(" ")])}},iG={name:"ColorFilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79"},null),e(" "),t("path",{d:"M17.58 10.21c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54"},null),e(" "),t("path",{d:"M12 8m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},hG={name:"ColorPickerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M12 8l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dG={name:"ColorPickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-picker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7l6 6"},null),e(" "),t("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"},null),e(" ")])}},cG={name:"ColorSwatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uG={name:"ColorSwatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-color-swatch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9"},null),e(" "),t("path",{d:"M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" ")])}},pG={name:"ColumnInsertLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M5 12l4 0"},null),e(" "),t("path",{d:"M7 10l0 4"},null),e(" ")])}},gG={name:"ColumnInsertRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-column-insert-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M15 12l4 0"},null),e(" "),t("path",{d:"M17 10l0 4"},null),e(" ")])}},wG={name:"Columns1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},vG={name:"Columns2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1v18"},null),e(" ")])}},fG={name:"Columns3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm6 -1v18m6 -18v18"},null),e(" ")])}},mG={name:"ColumnsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h2"},null),e(" "),t("path",{d:"M4 10h5.5"},null),e(" "),t("path",{d:"M4 14h5.5"},null),e(" "),t("path",{d:"M4 18h5.5"},null),e(" "),t("path",{d:"M14.5 6h5.5"},null),e(" "),t("path",{d:"M14.5 10h5.5"},null),e(" "),t("path",{d:"M18 14h2"},null),e(" "),t("path",{d:"M14.5 18h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kG={name:"ColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l5.5 0"},null),e(" "),t("path",{d:"M4 10l5.5 0"},null),e(" "),t("path",{d:"M4 14l5.5 0"},null),e(" "),t("path",{d:"M4 18l5.5 0"},null),e(" "),t("path",{d:"M14.5 6l5.5 0"},null),e(" "),t("path",{d:"M14.5 10l5.5 0"},null),e(" "),t("path",{d:"M14.5 14l5.5 0"},null),e(" "),t("path",{d:"M14.5 18l5.5 0"},null),e(" ")])}},bG={name:"CometIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-comet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" "),t("path",{d:"M4 4l7 7"},null),e(" "),t("path",{d:"M9 4l3.5 3.5"},null),e(" "),t("path",{d:"M4 9l3.5 3.5"},null),e(" ")])}},MG={name:"CommandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xG={name:"CommandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-command",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10"},null),e(" ")])}},zG={name:"CompassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9l3 -1l-1 3m-1 3l-6 2l2 -6"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IG={name:"CompassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-compass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16l2 -6l6 -2l-2 6l-6 2"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},yG={name:"ComponentsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M18.5 14.5l2.5 -2.5l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M12.499 8.501l2.501 -2.501l-3 -3l-2.5 2.5"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CG={name:"ComponentsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-components",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M15 12l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 6l3 3l3 -3l-3 -3z"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3l-3 -3z"},null),e(" ")])}},SG={name:"Cone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5.002v.5l-8.13 14.99a1 1 0 0 1 -1.74 0l-8.13 -14.989v-.5c0 -1.659 4.03 -3.003 9 -3.003s9 1.344 9 3.002"},null),e(" ")])}},$G={name:"ConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.396 16.384l-7.526 -13.877a1 1 0 0 0 -1.74 0l-1.626 2.998m-1.407 2.594l-5.097 9.398v.5c0 1.66 4.03 3.003 9 3.003c3.202 0 6.014 -.558 7.609 -1.398"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AG={name:"ConePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.03 12.022l-5.16 -9.515a1 1 0 0 0 -1.74 0l-8.13 14.99v.5c0 1.66 4.03 3.003 9 3.003c.17 0 .34 -.002 .508 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},BG={name:"ConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.998v-.5l-8.13 -14.99a1 1 0 0 0 -1.74 0l-8.13 14.989v.5c0 1.659 4.03 3.003 9 3.003s9 -1.344 9 -3.002"},null),e(" ")])}},HG={name:"ConfettiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1"},null),e(" "),t("path",{d:"M5 5v1"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h1"},null),e(" "),t("path",{d:"M19 19v1"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NG={name:"ConfettiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confetti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h2"},null),e(" "),t("path",{d:"M5 4v2"},null),e(" "),t("path",{d:"M11.5 4l-.5 2"},null),e(" "),t("path",{d:"M18 5h2"},null),e(" "),t("path",{d:"M19 4v2"},null),e(" "),t("path",{d:"M15 9l-1 1"},null),e(" "),t("path",{d:"M18 13l2 -.5"},null),e(" "),t("path",{d:"M18 19h2"},null),e(" "),t("path",{d:"M19 18v2"},null),e(" "),t("path",{d:"M14 16.518l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z"},null),e(" ")])}},jG={name:"ConfuciusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-confucius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 19l3 2v-18"},null),e(" "),t("path",{d:"M4 10l8 -2"},null),e(" "),t("path",{d:"M4 18l8 -10"},null),e(" "),t("path",{d:"M20 18l-8 -8l8 -4"},null),e(" ")])}},PG={name:"ContainerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8.297 4.289a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LG={name:"ContainerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-container",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" ")])}},DG={name:"Contrast2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OG={name:"Contrast2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2"},null),e(" ")])}},FG={name:"ContrastOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RG={name:"ContrastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-contrast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 0 -10v10"},null),e(" ")])}},TG={name:"CookerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cooker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7h.01"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M9 7h.01"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M5 11h14"},null),e(" ")])}},EG={name:"CookieManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M10 7h.01"},null),e(" "),t("path",{d:"M14 7h.01"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" ")])}},VG={name:"CookieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M18.192 18.187a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_G={name:"CookieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cookie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 14v.01"},null),e(" "),t("path",{d:"M11 8v.01"},null),e(" "),t("path",{d:"M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z"},null),e(" ")])}},WG={name:"CopyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XG={name:"CopyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},qG={name:"CopyleftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.117 5.889a4.016 4.016 0 0 0 -5.543 -.23a1 1 0 0 0 1.32 1.502a2.016 2.016 0 0 1 2.783 .116a1.993 1.993 0 0 1 0 2.766a2.016 2.016 0 0 1 -2.783 .116a1 1 0 0 0 -1.32 1.501a4.016 4.016 0 0 0 5.543 -.23a3.993 3.993 0 0 0 0 -5.542z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YG={name:"CopyleftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UG={name:"CopyleftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyleft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173"},null),e(" ")])}},GG={name:"CopyrightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2.34 5.659a4.016 4.016 0 0 0 -5.543 .23a3.993 3.993 0 0 0 0 5.542a4.016 4.016 0 0 0 5.543 .23a1 1 0 0 0 -1.32 -1.502c-.81 .711 -2.035 .66 -2.783 -.116a1.993 1.993 0 0 1 0 -2.766a2.016 2.016 0 0 1 2.783 -.116a1 1 0 0 0 1.32 -1.501z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZG={name:"CopyrightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KG={name:"CopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" ")])}},QG={name:"CornerDownLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a3 3 0 0 1 -3 3h-7"},null),e(" "),t("path",{d:"M13 10l-4 4l4 4m-5 -8l-4 4l4 4"},null),e(" ")])}},JG={name:"CornerDownLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},tZ={name:"CornerDownRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v6a3 3 0 0 0 3 3h7"},null),e(" "),t("path",{d:"M10 10l4 4l-4 4m5 -8l4 4l-4 4"},null),e(" ")])}},eZ={name:"CornerDownRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-down-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},nZ={name:"CornerLeftDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v7"},null),e(" "),t("path",{d:"M13 10l-4 4l-4 -4m8 5l-4 4l-4 -4"},null),e(" ")])}},lZ={name:"CornerLeftDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},rZ={name:"CornerLeftUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-6a3 3 0 0 1 -3 -3v-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l-4 4m8 -5l-4 -4l-4 4"},null),e(" ")])}},oZ={name:"CornerLeftUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-left-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},sZ={name:"CornerRightDownDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h6a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M10 10l4 4l4 -4m-8 5l4 4l4 -4"},null),e(" ")])}},aZ={name:"CornerRightDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4"},null),e(" ")])}},iZ={name:"CornerRightUpDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h6a3 3 0 0 0 3 -3v-7"},null),e(" "),t("path",{d:"M10 13l4 -4l4 4m-8 -5l4 -4l4 4"},null),e(" ")])}},hZ={name:"CornerRightUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-right-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4"},null),e(" ")])}},dZ={name:"CornerUpLeftDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-6a3 3 0 0 0 -3 -3h-7"},null),e(" "),t("path",{d:"M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4"},null),e(" ")])}},cZ={name:"CornerUpLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4"},null),e(" ")])}},uZ={name:"CornerUpRightDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-6a3 3 0 0 1 3 -3h7"},null),e(" "),t("path",{d:"M10 13l4 -4l-4 -4m5 8l4 -4l-4 -4"},null),e(" ")])}},pZ={name:"CornerUpRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-corner-up-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4"},null),e(" ")])}},gZ={name:"Cpu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},wZ={name:"CpuOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698"},null),e(" "),t("path",{d:"M13 9h2v2m0 4h-6v-6"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vZ={name:"CpuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cpu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M9 9h6v6h-6z"},null),e(" "),t("path",{d:"M3 10h2"},null),e(" "),t("path",{d:"M3 14h2"},null),e(" "),t("path",{d:"M10 3v2"},null),e(" "),t("path",{d:"M14 3v2"},null),e(" "),t("path",{d:"M21 10h-2"},null),e(" "),t("path",{d:"M21 14h-2"},null),e(" "),t("path",{d:"M14 21v-2"},null),e(" "),t("path",{d:"M10 21v-2"},null),e(" ")])}},fZ={name:"CraneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-12"},null),e(" "),t("path",{d:"M9 5v-2l-1 1"},null),e(" "),t("path",{d:"M6 6l-3 3h6"},null),e(" "),t("path",{d:"M13 9h8"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mZ={name:"CraneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21h6"},null),e(" "),t("path",{d:"M9 21v-18l-6 6h18"},null),e(" "),t("path",{d:"M9 3l10 6"},null),e(" "),t("path",{d:"M17 9v4a2 2 0 1 1 -2 2"},null),e(" ")])}},kZ={name:"CreativeCommonsByIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-by",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},bZ={name:"CreativeCommonsNcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l3 3"},null),e(" "),t("path",{d:"M15 15l3 3"},null),e(" ")])}},MZ={name:"CreativeCommonsNdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-nd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},xZ={name:"CreativeCommonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077"},null),e(" "),t("path",{d:"M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zZ={name:"CreativeCommonsSaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-sa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 16a4 4 0 1 0 -4 -4v1"},null),e(" "),t("path",{d:"M6 12l2 2l2 -2"},null),e(" ")])}},IZ={name:"CreativeCommonsZeroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons-zero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 9l-4 6"},null),e(" ")])}},yZ={name:"CreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" ")])}},CZ={name:"CreditCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87"},null),e(" "),t("path",{d:"M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87"},null),e(" "),t("path",{d:"M3 11l8 0"},null),e(" "),t("path",{d:"M15 11l6 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},SZ={name:"CreditCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-credit-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 10l18 0"},null),e(" "),t("path",{d:"M7 15l.01 0"},null),e(" "),t("path",{d:"M11 15l2 0"},null),e(" ")])}},$Z={name:"CricketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cricket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617"},null),e(" "),t("path",{d:"M10.5 7.5l6 6"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},AZ={name:"CropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"},null),e(" "),t("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"},null),e(" ")])}},BZ={name:"CrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2l-.117 .007a1 1 0 0 0 -.883 .993v4h-4a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 .993 .883h4v8a1 1 0 0 0 1 1h4l.117 -.007a1 1 0 0 0 .883 -.993v-8h4a1 1 0 0 0 1 -1v-4l-.007 -.117a1 1 0 0 0 -.993 -.883h-4v-4a1 1 0 0 0 -1 -1h-4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},HZ={name:"CrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},NZ={name:"CrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"},null),e(" ")])}},jZ={name:"CrosshairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crosshair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},PZ={name:"CrownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-13l-1.865 -9.327a.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a.25 .25 0 0 1 .401 .244l-1.363 6.818"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LZ={name:"CrownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z"},null),e(" ")])}},DZ={name:"CrutchesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092"},null),e(" "),t("path",{d:"M10 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OZ={name:"CrutchesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crutches",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092"},null),e(" "),t("path",{d:"M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},FZ={name:"CrystalBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-crystal-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.73 17.018a8 8 0 1 1 10.54 0"},null),e(" "),t("path",{d:"M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z"},null),e(" "),t("path",{d:"M11 7a3 3 0 0 0 -3 3"},null),e(" ")])}},RZ={name:"CsvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-csv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M17 8l2 8l2 -8"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},TZ={name:"CubeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.83 16.809c.11 -.248 .17 -.52 .17 -.801v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-3.012 1.725m-2.547 1.458l-1.441 .825c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l5.544 -3.174"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M14.532 10.538l6.198 -3.578"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},EZ={name:"CubePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-4.509a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.007c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},VZ={name:"CubeSendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M11 9.5v5.5l5 3"},null),e(" "),t("path",{d:"M16 12.545l5 -3.03"},null),e(" "),t("path",{d:"M7 9h-5"},null),e(" "),t("path",{d:"M7 12h-3"},null),e(" "),t("path",{d:"M7 15h-1"},null),e(" ")])}},_Z={name:"CubeUnfoldedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube-unfolded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5z"},null),e(" "),t("path",{d:"M7 15v-5h5v5h5v-5"},null),e(" ")])}},WZ={name:"CubeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cube",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 16.008v-8.018a1.98 1.98 0 0 0 -1 -1.717l-7 -4.008a2.016 2.016 0 0 0 -2 0l-7 4.008c-.619 .355 -1 1.01 -1 1.718v8.018c0 .709 .381 1.363 1 1.717l7 4.008a2.016 2.016 0 0 0 2 0l7 -4.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M12 12l8.73 -5.04"},null),e(" "),t("path",{d:"M3.27 6.96l8.73 5.04"},null),e(" ")])}},XZ={name:"CupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3v3h6m4 0h4v-3h-7"},null),e(" "),t("path",{d:"M17.5 11l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qZ={name:"CupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11h14v-3h-14z"},null),e(" "),t("path",{d:"M17.5 11l-1.5 10h-8l-1.5 -10"},null),e(" "),t("path",{d:"M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5v-2"},null),e(" ")])}},YZ={name:"CurlingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M8 5h6a2 2 0 0 1 2 2v2"},null),e(" ")])}},UZ={name:"CurlyLoopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-curly-loop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5"},null),e(" ")])}},GZ={name:"CurrencyAfghaniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-afghani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" ")])}},ZZ={name:"CurrencyBahrainiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bahraini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M7 19.01v-.01"},null),e(" "),t("path",{d:"M14 15.01v-.01"},null),e(" "),t("path",{d:"M17 15h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},KZ={name:"CurrencyBahtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-baht",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143"},null),e(" "),t("path",{d:"M8 6v12"},null),e(" "),t("path",{d:"M11 4v2"},null),e(" "),t("path",{d:"M11 18v2"},null),e(" ")])}},QZ={name:"CurrencyBitcoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-bitcoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M8 6l0 12"},null),e(" "),t("path",{d:"M8 12l6 0"},null),e(" "),t("path",{d:"M9 3l0 3"},null),e(" "),t("path",{d:"M13 3l0 3"},null),e(" "),t("path",{d:"M9 18l0 3"},null),e(" "),t("path",{d:"M13 18l0 3"},null),e(" ")])}},JZ={name:"CurrencyCentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-cent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536"},null),e(" "),t("path",{d:"M12 20v-2"},null),e(" "),t("path",{d:"M12 6v-2"},null),e(" ")])}},tK={name:"CurrencyDinarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dinar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20.01v-.01"},null),e(" "),t("path",{d:"M6 13l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894"},null),e(" "),t("path",{d:"M3 14v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68"},null),e(" "),t("path",{d:"M16 17l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869"},null),e(" ")])}},eK={name:"CurrencyDirhamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dirham",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 19h-3.5"},null),e(" "),t("path",{d:"M8.599 16.479a1.5 1.5 0 1 0 -1.099 2.521"},null),e(" "),t("path",{d:"M7 4v9"},null),e(" "),t("path",{d:"M15 13h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744"},null),e(" "),t("path",{d:"M11 13.01v-.01"},null),e(" ")])}},nK={name:"CurrencyDogecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dogecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h6"},null),e(" "),t("path",{d:"M9 6v12"},null),e(" "),t("path",{d:"M6 18h6a6 6 0 1 0 0 -12h-6"},null),e(" ")])}},lK={name:"CurrencyDollarAustralianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-australian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18l3.279 -11.476a.75 .75 0 0 1 1.442 0l3.279 11.476"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M4.5 14h5"},null),e(" ")])}},rK={name:"CurrencyDollarBruneiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-brunei",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},oK={name:"CurrencyDollarCanadianIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-canadian",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 18h-1a6 6 0 1 1 0 -12h1"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},sK={name:"CurrencyDollarGuyaneseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-guyanese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},aK={name:"CurrencyDollarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iK={name:"CurrencyDollarSingaporeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-singapore",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M10 6h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" ")])}},hK={name:"CurrencyDollarZimbabweanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar-zimbabwean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h7l-7 12h7"},null),e(" ")])}},dK={name:"CurrencyDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2"},null),e(" "),t("path",{d:"M12 3v3m0 12v3"},null),e(" ")])}},cK={name:"CurrencyDongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 16v-12"},null),e(" "),t("path",{d:"M17 5h-4"},null),e(" ")])}},uK={name:"CurrencyDramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-dram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10a6 6 0 1 1 12 0v10"},null),e(" "),t("path",{d:"M12 16h8"},null),e(" "),t("path",{d:"M12 12h8"},null),e(" ")])}},pK={name:"CurrencyEthereumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ethereum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l6 -9l6 9l-6 9z"},null),e(" "),t("path",{d:"M6 12l6 -3l6 3l-6 2z"},null),e(" ")])}},gK={name:"CurrencyEuroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18"},null),e(" "),t("path",{d:"M10 10h-5m0 4h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wK={name:"CurrencyEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.2 7a6 7 0 1 0 0 10"},null),e(" "),t("path",{d:"M13 10h-8m0 4h8"},null),e(" ")])}},vK={name:"CurrencyForintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-forint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4h-4a3 3 0 0 0 -3 3v12"},null),e(" "),t("path",{d:"M10 11h-6"},null),e(" "),t("path",{d:"M16 4v13a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M19 9h-5"},null),e(" ")])}},fK={name:"CurrencyFrankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-frank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h-6a2 2 0 0 0 -2 2v12"},null),e(" "),t("path",{d:"M7 15h4"},null),e(" "),t("path",{d:"M9 11h7"},null),e(" ")])}},mK={name:"CurrencyGuaraniIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-guarani",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5"},null),e(" "),t("path",{d:"M12 20v-16"},null),e(" ")])}},kK={name:"CurrencyHryvniaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-hryvnia",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},bK={name:"CurrencyIranianRialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-iranian-rial",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v9a2 2 0 0 1 -2 2h-1a3 3 0 0 1 -3 -3v-1"},null),e(" "),t("path",{d:"M12 5v8a1 1 0 0 0 1 1h1a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M21 14v1.096a5 5 0 0 1 -3.787 4.85l-.213 .054"},null),e(" "),t("path",{d:"M11 18h.01"},null),e(" "),t("path",{d:"M14 18h.01"},null),e(" ")])}},MK={name:"CurrencyKipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-kip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12h12"},null),e(" "),t("path",{d:"M9 5v14"},null),e(" "),t("path",{d:"M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7"},null),e(" ")])}},xK={name:"CurrencyKroneCzechIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-czech",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M19 6l-2 2l-2 -2"},null),e(" "),t("path",{d:"M19 12h-2a3 3 0 0 0 0 6h2"},null),e(" ")])}},zK={name:"CurrencyKroneDanishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-danish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" "),t("path",{d:"M20 18.01v-.01"},null),e(" ")])}},IK={name:"CurrencyKroneSwedishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-krone-swedish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6v12"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 -3 6 -6"},null),e(" "),t("path",{d:"M5 12c3.5 0 6 3 6 6"},null),e(" "),t("path",{d:"M15 10v8"},null),e(" "),t("path",{d:"M19 10a4 4 0 0 0 -4 4"},null),e(" ")])}},yK={name:"CurrencyLariIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lari",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 13a6 6 0 1 0 -6 6"},null),e(" "),t("path",{d:"M6 19h12"},null),e(" "),t("path",{d:"M10 5v7"},null),e(" "),t("path",{d:"M14 12v-7"},null),e(" ")])}},CK={name:"CurrencyLeuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-leu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h-7a3 3 0 0 1 -3 -3v-10"},null),e(" ")])}},SK={name:"CurrencyLiraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5v15a7 7 0 0 0 7 -7"},null),e(" "),t("path",{d:"M6 15l8 -4"},null),e(" "),t("path",{d:"M14 7l-8 4"},null),e(" ")])}},$K={name:"CurrencyLitecoinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-litecoin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717"},null),e(" "),t("path",{d:"M14 9l-9 4"},null),e(" ")])}},AK={name:"CurrencyLydIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-lyd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 15h.01"},null),e(" "),t("path",{d:"M21 5v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894"},null),e(" "),t("path",{d:"M5 8l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a.93 .93 0 0 1 -.673 -.293l-.673 -.707"},null),e(" ")])}},BK={name:"CurrencyManatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-manat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19v-7a5 5 0 1 1 10 0v7"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},HK={name:"CurrencyMoneroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-monero",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 18h3v-11l6 7l6 -7v11h3"},null),e(" ")])}},NK={name:"CurrencyNairaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-naira",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},jK={name:"CurrencyNanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-nano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 -16"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 16h10"},null),e(" "),t("path",{d:"M17 20l-10 -16"},null),e(" ")])}},PK={name:"CurrencyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},LK={name:"CurrencyPaangaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-paanga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M3 6h8"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},DK={name:"CurrencyPesoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-peso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5"},null),e(" "),t("path",{d:"M18 8h-12"},null),e(" "),t("path",{d:"M18 11h-12"},null),e(" ")])}},OK={name:"CurrencyPoundOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FK={name:"CurrencyPoundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-pound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7"},null),e(" ")])}},RK={name:"CurrencyQuetzalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-quetzal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M13 13l5 5"},null),e(" ")])}},TK={name:"CurrencyRealIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-real",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4"},null),e(" "),t("path",{d:"M4 18v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6"},null),e(" "),t("path",{d:"M18 6v-2"},null),e(" "),t("path",{d:"M17 20v-2"},null),e(" ")])}},EK={name:"CurrencyRenminbiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-renminbi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v8a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M19 9h-14"},null),e(" "),t("path",{d:"M19 5h-14"},null),e(" "),t("path",{d:"M9 9v4c0 2.5 -.667 4 -2 6"},null),e(" ")])}},VK={name:"CurrencyRippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 12h3l2 -2.5"},null),e(" "),t("path",{d:"M15 14.5l-2 -2.5"},null),e(" ")])}},_K={name:"CurrencyRiyalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-riyal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2"},null),e(" "),t("path",{d:"M18 12.01v-.01"},null),e(" "),t("path",{d:"M22 10v1a5 5 0 0 1 -5 5"},null),e(" ")])}},WK={name:"CurrencyRubelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rubel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 19v-14h6a3 3 0 0 1 0 6h-8"},null),e(" "),t("path",{d:"M14 15h-8"},null),e(" ")])}},XK={name:"CurrencyRufiyaaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rufiyaa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16h.01"},null),e(" "),t("path",{d:"M4 16c9.5 -4 11.5 -8 14 -9"},null),e(" "),t("path",{d:"M12 8l5 3"},null),e(" ")])}},qK={name:"CurrencyRupeeNepaleseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee-nepalese",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707"},null),e(" ")])}},YK={name:"CurrencyRupeeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-rupee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6"},null),e(" "),t("path",{d:"M7 9l11 0"},null),e(" ")])}},UK={name:"CurrencyShekelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-shekel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18v-12h4a4 4 0 0 1 4 4v4"},null),e(" "),t("path",{d:"M18 6v12h-4a4 4 0 0 1 -4 -4v-4"},null),e(" ")])}},GK={name:"CurrencySolanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-solana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h12l4 -4h-12z"},null),e(" "),t("path",{d:"M8 14l-4 -4h12l4 4"},null),e(" "),t("path",{d:"M16 10l4 -4h-12l-4 4"},null),e(" ")])}},ZK={name:"CurrencySomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-som",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18v-12h-5v10a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z"},null),e(" ")])}},KK={name:"CurrencyTakaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-taka",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5"},null),e(" "),t("path",{d:"M8 11h6"},null),e(" ")])}},QK={name:"CurrencyTengeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tenge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M12 9v10"},null),e(" ")])}},JK={name:"CurrencyTugrikIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-tugrik",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6h10"},null),e(" "),t("path",{d:"M12 6v13"},null),e(" "),t("path",{d:"M8 17l8 -3"},null),e(" "),t("path",{d:"M16 10l-8 3"},null),e(" ")])}},tQ={name:"CurrencyWonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-won",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l3.245 11.358a.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a.85 .85 0 0 0 1.624 -.035l3.245 -11.358"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M21 14h-18"},null),e(" ")])}},eQ={name:"CurrencyYenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7m5 -7l-3.328 4.66"},null),e(" "),t("path",{d:"M8 17h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},nQ={name:"CurrencyYenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7m10 0l-5 7"},null),e(" "),t("path",{d:"M8 17l8 0"},null),e(" "),t("path",{d:"M8 13l8 0"},null),e(" ")])}},lQ={name:"CurrencyYuanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-yuan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v-7l-5 -7"},null),e(" "),t("path",{d:"M17 5l-5 7"},null),e(" "),t("path",{d:"M8 13h8"},null),e(" ")])}},rQ={name:"CurrencyZlotyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency-zloty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7l7 -7h-7"},null),e(" "),t("path",{d:"M17 18v-13"},null),e(" "),t("path",{d:"M14 14.5l6 -3.5"},null),e(" ")])}},oQ={name:"CurrencyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-currency",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M4 4l3 3"},null),e(" "),t("path",{d:"M20 4l-3 3"},null),e(" "),t("path",{d:"M4 20l3 -3"},null),e(" "),t("path",{d:"M20 20l-3 -3"},null),e(" ")])}},sQ={name:"CurrentLocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245"},null),e(" "),t("path",{d:"M6.357 6.33a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M2 12h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aQ={name:"CurrentLocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-current-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" "),t("path",{d:"M12 2l0 2"},null),e(" "),t("path",{d:"M12 20l0 2"},null),e(" "),t("path",{d:"M20 12l2 0"},null),e(" "),t("path",{d:"M2 12l2 0"},null),e(" ")])}},iQ={name:"CursorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hQ={name:"CursorTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cursor-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M15 4a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3"},null),e(" ")])}},dQ={name:"CutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.15 14.85l8.85 -10.85"},null),e(" "),t("path",{d:"M6 4l8.85 10.85"},null),e(" ")])}},cQ={name:"CylinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.23 5.233c-.15 .245 -.23 .502 -.23 .767c0 1.131 1.461 2.117 3.62 2.628m3.38 .372c.332 0 .658 -.01 .977 -.029c3.404 -.204 6.023 -1.456 6.023 -2.971c0 -1.657 -3.134 -3 -7 -3c-1.645 0 -3.158 .243 -4.353 .65"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c3.245 0 5.974 -.946 6.767 -2.23m.233 -3.77v-9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uQ={name:"CylinderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3c.173 0 .345 -.003 .515 -.008m6.485 -8.992v-6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},pQ={name:"CylinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-cylinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12"},null),e(" ")])}},gQ={name:"DashboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.175 11.178a2 2 0 1 0 2.653 2.634"},null),e(" "),t("path",{d:"M14.5 10.5l1 -1"},null),e(" "),t("path",{d:"M8.621 4.612a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wQ={name:"DashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13.45 11.55l2.05 -2.05"},null),e(" "),t("path",{d:"M6.4 20a9 9 0 1 1 11.2 0z"},null),e(" ")])}},vQ={name:"DatabaseCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.21 0 .42 -.003 .626 -.01"},null),e(" "),t("path",{d:"M20 11.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},fQ={name:"DatabaseDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.415 0 .822 -.012 1.22 -.035"},null),e(" "),t("path",{d:"M20 10v-4"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.352 0 .698 -.009 1.037 -.025"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},mQ={name:"DatabaseEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.478 0 .947 -.016 1.402 -.046"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.526 3.04 2.786 6.972 2.975"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},kQ={name:"DatabaseExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.182 -.086 3.148 -.241m4.852 -2.759v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c1.064 0 2.079 -.078 3.007 -.22"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},bQ={name:"DatabaseExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183 -.086 3.15 -.241"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.157 0 .312 -.002 .466 -.005"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},MQ={name:"DatabaseHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.453 2.755 2.665 6.414 2.941"},null),e(" "),t("path",{d:"M20 11v-5"},null),e(" "),t("path",{d:"M4 12v6c0 1.579 3.253 2.873 7.383 2.991"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},xQ={name:"DatabaseImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68 -.05 2.454 -.144m5.546 -2.856v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.171 0 .341 -.002 .51 -.006"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zQ={name:"DatabaseLeakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-leak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v12c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-12"},null),e(" "),t("path",{d:"M4 15a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1"},null),e(" ")])}},IQ={name:"DatabaseMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.164 0 .328 -.002 .49 -.006"},null),e(" "),t("path",{d:"M20 15v-3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},yQ={name:"DatabaseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CQ={name:"DatabasePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c1.075 0 2.1 -.08 3.037 -.224"},null),e(" "),t("path",{d:"M20 12v-6"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.166 0 .331 -.002 .495 -.006"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},SQ={name:"DatabaseSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3m8 -3.5v-5.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},$Q={name:"DatabaseShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026"},null),e(" "),t("path",{d:"M20 13v-7"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},AQ={name:"DatabaseStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.43 2.67 2.627 6.243 2.927"},null),e(" "),t("path",{d:"M20 10.5v-4.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.546 3.12 2.82 7.128 2.982"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},BQ={name:"DatabaseXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3"},null),e(" "),t("path",{d:"M4 6v6c0 1.657 3.582 3 8 3c.537 0 1.062 -.02 1.57 -.058"},null),e(" "),t("path",{d:"M20 13.5v-7.5"},null),e(" "),t("path",{d:"M4 12v6c0 1.657 3.582 3 8 3c.384 0 .762 -.01 1.132 -.03"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},HQ={name:"DatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v6a8 3 0 0 0 16 0v-6"},null),e(" "),t("path",{d:"M4 12v6a8 3 0 0 0 16 0v-6"},null),e(" ")])}},NQ={name:"DecimalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-decimal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" ")])}},jQ={name:"DeerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3c0 2 1 3 4 3c2 0 3 1 3 3"},null),e(" "),t("path",{d:"M21 3c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3"},null),e(" "),t("path",{d:"M12 18c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6"},null),e(" "),t("path",{d:"M15.185 14.889l.095 -.18a4 4 0 1 1 -6.56 0"},null),e(" "),t("path",{d:"M17 3c0 1.333 -.333 2.333 -1 3"},null),e(" "),t("path",{d:"M7 3c0 1.333 .333 2.333 1 3"},null),e(" "),t("path",{d:"M7 6c-2.667 .667 -4.333 1.667 -5 3"},null),e(" "),t("path",{d:"M17 6c2.667 .667 4.333 1.667 5 3"},null),e(" "),t("path",{d:"M8.5 10l-1.5 -1"},null),e(" "),t("path",{d:"M15.5 10l1.5 -1"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},PQ={name:"DeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16l-8 -16z"},null),e(" ")])}},LQ={name:"DentalBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l1 2.5l-2 2l2 2"},null),e(" ")])}},DQ={name:"DentalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},OQ={name:"DentalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dental",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5z"},null),e(" "),t("path",{d:"M12 5.5l3 1.5"},null),e(" ")])}},FQ={name:"DeselectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-deselect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h3a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M16 16h-7a1 1 0 0 1 -1 -1v-7"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RQ={name:"DetailsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M20.986 16.984a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v5m0 4v7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TQ={name:"DetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M12 3v16"},null),e(" ")])}},EQ={name:"DeviceAirpodsCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 10h-18"},null),e(" "),t("path",{d:"M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5"},null),e(" ")])}},VQ={name:"DeviceAirpodsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-airpods",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4z"},null),e(" "),t("path",{d:"M18 4a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z"},null),e(" ")])}},_Q={name:"DeviceAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},WQ={name:"DeviceAudioTapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-audio-tape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M3 17l4 -3h10l4 3"},null),e(" "),t("circle",{cx:"7.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"16.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" ")])}},XQ={name:"DeviceCameraPhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-camera-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M17 15v-1"},null),e(" ")])}},qQ={name:"DeviceCctvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9"},null),e(" "),t("path",{d:"M10.36 10.35a4 4 0 1 0 5.285 5.3"},null),e(" "),t("path",{d:"M19 7v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YQ={name:"DeviceCctvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-cctv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 7v7a7 7 0 0 1 -14 0v-7"},null),e(" "),t("path",{d:"M12 14l.01 0"},null),e(" ")])}},UQ={name:"DeviceComputerCameraOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695"},null),e(" "),t("path",{d:"M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GQ={name:"DeviceComputerCameraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-computer-camera",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486"},null),e(" ")])}},ZQ={name:"DeviceDesktopAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" ")])}},KQ={name:"DeviceDesktopBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 16h-10.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},QQ={name:"DeviceDesktopCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},JQ={name:"DeviceDesktopCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},tJ={name:"DeviceDesktopCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},eJ={name:"DeviceDesktopCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h-8a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},nJ={name:"DeviceDesktopDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v5.5"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},lJ={name:"DeviceDesktopDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},rJ={name:"DeviceDesktopExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},oJ={name:"DeviceDesktopHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sJ={name:"DeviceDesktopMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},aJ={name:"DeviceDesktopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iJ={name:"DeviceDesktopPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M7 20h6"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},hJ={name:"DeviceDesktopPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},dJ={name:"DeviceDesktopPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},cJ={name:"DeviceDesktopQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h8"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},uJ={name:"DeviceDesktopSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 16h-7.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h4"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},pJ={name:"DeviceDesktopShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 16h-8.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h5.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},gJ={name:"DeviceDesktopStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h-6a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M7 20h3.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},wJ={name:"DeviceDesktopUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" ")])}},vJ={name:"DeviceDesktopXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16h-9a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M7 20h6.5"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},fJ={name:"DeviceDesktopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-desktop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" ")])}},mJ={name:"DeviceFloppyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-floppy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 4l0 4l-6 0l0 -4"},null),e(" ")])}},kJ={name:"DeviceGamepad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4z"},null),e(" "),t("path",{d:"M14 15l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232"},null),e(" "),t("path",{d:"M8 9v2"},null),e(" "),t("path",{d:"M7 10h2"},null),e(" "),t("path",{d:"M14 10h2"},null),e(" ")])}},bJ={name:"DeviceGamepadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-gamepad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 12h4m-2 -2v4"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M18 13l0 .01"},null),e(" ")])}},MJ={name:"DeviceHeartMonitorFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v12a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-12a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-4 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm-6 -6.764l-.106 .211a1 1 0 0 1 -.77 .545l-.124 .008l-5 -.001v3.001h14v-3.001l-4.382 .001l-.724 1.447a1 1 0 0 1 -1.725 .11l-.063 -.11l-1.106 -2.211zm7 -4.236h-12a1 1 0 0 0 -.993 .883l-.007 .117v1.999l4.381 .001l.725 -1.447a1 1 0 0 1 1.725 -.11l.063 .11l1.106 2.21l.106 -.21a1 1 0 0 1 .77 -.545l.124 -.008l5 -.001v-1.999a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xJ={name:"DeviceHeartMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-heart-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h6l1 -2l2 4l1 -2h6"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M14 17v.01"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" ")])}},zJ={name:"DeviceImacBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 17h-9.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h5.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},IJ={name:"DeviceImacCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h12.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},yJ={name:"DeviceImacCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},CJ={name:"DeviceImacCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 17h-7.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},SJ={name:"DeviceImacCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},$J={name:"DeviceImacDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v6.5"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},AJ={name:"DeviceImacDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},BJ={name:"DeviceImacExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 17h-11a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},HJ={name:"DeviceImacHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M3 13h9"},null),e(" "),t("path",{d:"M8 21h3.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},NJ={name:"DeviceImacMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},jJ={name:"DeviceImacOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h13a1 1 0 0 1 1 1v12c0 .28 -.115 .532 -.3 .713m-3.7 .287h-13a1 1 0 0 1 -1 -1v-12c0 -.276 .112 -.526 .293 -.707"},null),e(" "),t("path",{d:"M3 13h10m4 0h4"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PJ={name:"DeviceImacPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},LJ={name:"DeviceImacPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17h-8a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 13h11"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" ")])}},DJ={name:"DeviceImacPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13.5"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},OJ={name:"DeviceImacQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17h-10a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h11.5"},null),e(" "),t("path",{d:"M8 21h7"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},FJ={name:"DeviceImacSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 17h-7a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},RJ={name:"DeviceImacShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},TJ={name:"DeviceImacStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17h-6a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M3 13h10"},null),e(" "),t("path",{d:"M8 21h3"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},EJ={name:"DeviceImacUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 17h-8.5a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v8.5"},null),e(" "),t("path",{d:"M3 13h13"},null),e(" "),t("path",{d:"M8 21h4.5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},VJ={name:"DeviceImacXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17h-9a1 1 0 0 1 -1 -1v-12a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h5"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},_J={name:"DeviceImacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-imac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-12z"},null),e(" "),t("path",{d:"M3 13h18"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M10 17l-.5 4"},null),e(" "),t("path",{d:"M14 17l.5 4"},null),e(" ")])}},WJ={name:"DeviceIpadBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},XJ={name:"DeviceIpadCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},qJ={name:"DeviceIpadCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},YJ={name:"DeviceIpadCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},UJ={name:"DeviceIpadCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},GJ={name:"DeviceIpadDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ZJ={name:"DeviceIpadDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},KJ={name:"DeviceIpadExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},QJ={name:"DeviceIpadHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},JJ={name:"DeviceIpadHorizontalBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ttt={name:"DeviceIpadHorizontalCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},ett={name:"DeviceIpadHorizontalCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" ")])}},ntt={name:"DeviceIpadHorizontalCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h2.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ltt={name:"DeviceIpadHorizontalCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rtt={name:"DeviceIpadHorizontalDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ott={name:"DeviceIpadHorizontalDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},stt={name:"DeviceIpadHorizontalExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},att={name:"DeviceIpadHorizontalHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},itt={name:"DeviceIpadHorizontalMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},htt={name:"DeviceIpadHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12a2 2 0 0 1 2 2v12m-2 2h-16a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dtt={name:"DeviceIpadHorizontalPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},ctt={name:"DeviceIpadHorizontalPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},utt={name:"DeviceIpadHorizontalPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ptt={name:"DeviceIpadHorizontalQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M9 17h4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},gtt={name:"DeviceIpadHorizontalSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 20h-6.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},wtt={name:"DeviceIpadHorizontalShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 20h-7.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 17h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},vtt={name:"DeviceIpadHorizontalStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ftt={name:"DeviceIpadHorizontalUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20h-7a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M9 17h3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},mtt={name:"DeviceIpadHorizontalXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M9 17h4"},null),e(" ")])}},ktt={name:"DeviceIpadHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" ")])}},btt={name:"DeviceIpadMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Mtt={name:"DeviceIpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h12a2 2 0 0 1 2 2v12m0 4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16"},null),e(" "),t("path",{d:"M9 19h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xtt={name:"DeviceIpadPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},ztt={name:"DeviceIpadPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Itt={name:"DeviceIpadPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},ytt={name:"DeviceIpadQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Ctt={name:"DeviceIpadSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M9 18h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Stt={name:"DeviceIpadShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M9 18h3.5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},$tt={name:"DeviceIpadStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M9 18h1"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Att={name:"DeviceIpadUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7"},null),e(" ")])}},Btt={name:"DeviceIpadXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M13 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M9 18h4"},null),e(" ")])}},Htt={name:"DeviceIpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-ipad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-12a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h12zm-3 15h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z"},null),e(" ")])}},Ntt={name:"DeviceLandlinePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-landline-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M12 8h-6v3h6z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M6 14v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" "),t("path",{d:"M6 17v.01"},null),e(" ")])}},jtt={name:"DeviceLaptopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ptt={name:"DeviceLaptopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-laptop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" "),t("path",{d:"M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Ltt={name:"DeviceMobileBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-5.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Dtt={name:"DeviceMobileCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Ott={name:"DeviceMobileChargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-charging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 9.5l-1 2.5h2l-1 2.5"},null),e(" ")])}},Ftt={name:"DeviceMobileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v9.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Rtt={name:"DeviceMobileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Ttt={name:"DeviceMobileCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6.5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Ett={name:"DeviceMobileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Vtt={name:"DeviceMobileDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},_tt={name:"DeviceMobileExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Wtt={name:"DeviceMobileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-8a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h8zm-4 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1 -12h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xtt={name:"DeviceMobileHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},qtt={name:"DeviceMobileMessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3h10v8h-3l-4 2v-2h-3z"},null),e(" "),t("path",{d:"M15 16v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" ")])}},Ytt={name:"DeviceMobileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Utt={name:"DeviceMobileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.159 3.185c.256 -.119 .54 -.185 .841 -.185h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Gtt={name:"DeviceMobilePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Ztt={name:"DeviceMobilePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Ktt={name:"DeviceMobilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Qtt={name:"DeviceMobileQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},Jtt={name:"DeviceMobileRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 11v2"},null),e(" "),t("path",{d:"M7 12h-.01"},null),e(" ")])}},tet={name:"DeviceMobileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},eet={name:"DeviceMobileShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-4a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},net={name:"DeviceMobileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},ret={name:"DeviceMobileUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},oet={name:"DeviceMobileVibrationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-vibration",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l2 0"},null),e(" "),t("path",{d:"M9 17l0 .01"},null),e(" "),t("path",{d:"M21 6l-2 3l2 3l-2 3l2 3"},null),e(" ")])}},set={name:"DeviceMobileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},aet={name:"DeviceMobileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-mobile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 4h2"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" ")])}},iet={name:"DeviceNintendoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2"},null),e(" "),t("path",{d:"M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6"},null),e(" "),t("path",{d:"M6.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},het={name:"DeviceNintendoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-nintendo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z"},null),e(" "),t("path",{d:"M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z"},null),e(" "),t("circle",{cx:"17.5",cy:"15.5",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"6.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" ")])}},det={name:"DeviceRemoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-remote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 3m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M10 15v.01"},null),e(" "),t("path",{d:"M10 18v.01"},null),e(" "),t("path",{d:"M14 18v.01"},null),e(" "),t("path",{d:"M14 15v.01"},null),e(" ")])}},cet={name:"DeviceSdCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sd-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2z"},null),e(" "),t("path",{d:"M13 6v2"},null),e(" "),t("path",{d:"M16 6v2"},null),e(" "),t("path",{d:"M10 7v1"},null),e(" ")])}},uet={name:"DeviceSim1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 11l2 -2v8"},null),e(" ")])}},pet={name:"DeviceSim2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},get={name:"DeviceSim3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 9h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},wet={name:"DeviceSimIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-sim",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M9 11h3v6"},null),e(" "),t("path",{d:"M15 17v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M9 17v.01"},null),e(" ")])}},vet={name:"DeviceSpeakerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11.114 11.133a3 3 0 1 0 3.754 3.751"},null),e(" "),t("path",{d:"M12 7v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fet={name:"DeviceSpeakerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-speaker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 .01"},null),e(" ")])}},met={name:"DeviceTabletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-7.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},ket={name:"DeviceTabletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},bet={name:"DeviceTabletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M12.314 16.05a1 1 0 0 0 -1.042 1.635"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Met={name:"DeviceTabletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.344 16.06a1 1 0 0 0 -1.07 1.627"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},xet={name:"DeviceTabletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7.5"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},zet={name:"DeviceTabletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Iet={name:"DeviceTabletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},yet={name:"DeviceTabletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Cet={name:"DeviceTabletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 2a2 2 0 0 1 1.995 1.85l.005 .15v16a2 2 0 0 1 -1.85 1.995l-.15 .005h-12a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-16a2 2 0 0 1 1.85 -1.995l.15 -.005h12zm-6 13a2 2 0 0 0 -1.977 1.697l-.018 .154l-.005 .149l.005 .15a2 2 0 1 0 1.995 -2.15z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$et={name:"DeviceTabletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Aet={name:"DeviceTabletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v11"},null),e(" "),t("path",{d:"M12.872 16.51a1 1 0 1 0 -.872 1.49"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Bet={name:"DeviceTabletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Het={name:"DeviceTabletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Net={name:"DeviceTabletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M12 16a1 1 0 0 0 0 2"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},jet={name:"DeviceTabletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Pet={name:"DeviceTabletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Let={name:"DeviceTabletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Det={name:"DeviceTabletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-6a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9"},null),e(" "),t("path",{d:"M12.57 16.178a1 1 0 1 0 .016 1.633"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Oet={name:"DeviceTabletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Fet={name:"DeviceTabletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M12.906 16.576a1 1 0 1 0 -.906 1.424"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Ret={name:"DeviceTabletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-7a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Tet={name:"DeviceTabletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tablet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16z"},null),e(" "),t("path",{d:"M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" ")])}},Eet={name:"DeviceTvOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vet={name:"DeviceTvOldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" "),t("path",{d:"M15 7v13"},null),e(" "),t("path",{d:"M18 15v.01"},null),e(" "),t("path",{d:"M18 12v.01"},null),e(" ")])}},_et={name:"DeviceTvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-tv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 3l-4 4l-4 -4"},null),e(" ")])}},Wet={name:"DeviceWatchBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h4.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Xet={name:"DeviceWatchCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},qet={name:"DeviceWatchCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Yet={name:"DeviceWatchCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},Uet={name:"DeviceWatchCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2.5"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Get={name:"DeviceWatchDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},Zet={name:"DeviceWatchDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Ket={name:"DeviceWatchExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 18h-6a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Qet={name:"DeviceWatchHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h2.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Jet={name:"DeviceWatchMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},tnt={name:"DeviceWatchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h5a3 3 0 0 1 3 3v5m-.89 3.132a2.99 2.99 0 0 1 -2.11 .868h-6a3 3 0 0 1 -3 -3v-6c0 -.817 .327 -1.559 .857 -2.1"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 5v-2h6v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ent={name:"DeviceWatchPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},nnt={name:"DeviceWatchPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},lnt={name:"DeviceWatchPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},rnt={name:"DeviceWatchQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 18h-5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M9 18v3h6v-2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ont={name:"DeviceWatchSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},snt={name:"DeviceWatchShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 18h-3.5a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},ant={name:"DeviceWatchStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 18h-1a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v1"},null),e(" "),t("path",{d:"M9 18v3h2"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},int={name:"DeviceWatchStats2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M12 10a2 2 0 1 0 2 2"},null),e(" ")])}},hnt={name:"DeviceWatchStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 14v-4"},null),e(" "),t("path",{d:"M12 14v-1"},null),e(" "),t("path",{d:"M15 14v-3"},null),e(" ")])}},dnt={name:"DeviceWatchUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-3a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M9 18v3h3.5"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},cnt={name:"DeviceWatchXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 18h-4a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M9 18v3h4"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},unt={name:"DeviceWatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-device-watch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3v-6z"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" ")])}},pnt={name:"Devices2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6"},null),e(" "),t("path",{d:"M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 19l3 0"},null),e(" "),t("path",{d:"M17 8l0 .01"},null),e(" "),t("path",{d:"M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 15l0 4"},null),e(" ")])}},gnt={name:"DevicesBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},wnt={name:"DevicesCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},vnt={name:"DevicesCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fnt={name:"DevicesCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15.5v-6.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4m0 6a1 1 0 0 1 -1 1"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},mnt={name:"DevicesCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14.5v-5.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},knt={name:"DevicesDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},bnt={name:"DevicesDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Mnt={name:"DevicesExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xnt={name:"DevicesHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v-3a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h6"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},znt={name:"DevicesMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Int={name:"DevicesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ynt={name:"DevicesPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Cnt={name:"DevicesPcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9v10h-6v-14h2"},null),e(" "),t("path",{d:"M13 9h9v7h-2m-4 0h-4v-4"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M17 17v2"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Snt={name:"DevicesPcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h6v14h-6z"},null),e(" "),t("path",{d:"M12 9h10v7h-10z"},null),e(" "),t("path",{d:"M14 19h6"},null),e(" "),t("path",{d:"M17 16v3"},null),e(" "),t("path",{d:"M6 13v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" ")])}},$nt={name:"DevicesPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 14v-5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Ant={name:"DevicesPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Bnt={name:"DevicesQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20h-1a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Hnt={name:"DevicesSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h7"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Nnt={name:"DevicesShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15v-6a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},jnt={name:"DevicesStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 13v-4a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h5.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Pnt={name:"DevicesUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16.5v-7.5a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3.5"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h8"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Lnt={name:"DevicesXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Dnt={name:"DevicesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-devices",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-10z"},null),e(" "),t("path",{d:"M18 8v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9"},null),e(" "),t("path",{d:"M16 9h2"},null),e(" ")])}},Ont={name:"DiaboloOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.727 4.749c-.467 .38 -.727 .804 -.727 1.251c0 1.217 1.933 2.265 4.71 2.735m4.257 .243c3.962 -.178 7.033 -1.444 7.033 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.66 0 -3.202 .19 -4.48 .514"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c3.218 0 5.992 -.712 7.262 -1.74m-.211 -4.227l-1.051 -3.033l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2c.656 0 1.288 -.035 1.879 -.1m3.198 -.834c.585 -.308 .923 -.674 .923 -1.066"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Fnt={name:"DiaboloPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3c.17 0 .34 -.002 .508 -.006m5.492 -8.994l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Rnt={name:"DiaboloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diabolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0"},null),e(" "),t("path",{d:"M4 6v.143a1 1 0 0 0 .048 .307l1.952 5.55l-1.964 5.67a1 1 0 0 0 -.036 .265v.065c0 1.657 3.582 3 8 3s8 -1.343 8 -3v-.065a1 1 0 0 0 -.036 -.265l-1.964 -5.67l1.952 -5.55a1 1 0 0 0 .048 -.307v-.143"},null),e(" "),t("path",{d:"M6 12c0 1.105 2.686 2 6 2s6 -.895 6 -2"},null),e(" ")])}},Tnt={name:"DialpadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 2h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 9h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 16h-2a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ent={name:"DialpadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-4v-4"},null),e(" "),t("path",{d:"M17 3h4v4h-4z"},null),e(" "),t("path",{d:"M10 6v-3h4v4h-3"},null),e(" "),t("path",{d:"M3 10h4v4h-4z"},null),e(" "),t("path",{d:"M17 13v-3h4v4h-3"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 17h4v4h-4z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vnt={name:"DialpadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dialpad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 3h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M4 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 10h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M11 17h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1z"},null),e(" ")])}},_nt={name:"DiamondFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a1 1 0 0 1 .783 .378l.074 .108l3 5a1 1 0 0 1 -.032 1.078l-.08 .103l-8.53 9.533a1.7 1.7 0 0 1 -1.215 .51c-.4 0 -.785 -.14 -1.11 -.417l-.135 -.126l-8.5 -9.5a1 1 0 0 1 -.172 -1.067l.06 -.115l3.013 -5.022l.064 -.09a.982 .982 0 0 1 .155 -.154l.089 -.064l.088 -.05l.05 -.023l.06 -.025l.109 -.032l.112 -.02l.117 -.005h12zm-8.886 3.943a1 1 0 0 0 -1.371 .343l-.6 1l-.06 .116a1 1 0 0 0 .177 1.07l2 2.2l.09 .088a1 1 0 0 0 1.323 -.02l.087 -.09a1 1 0 0 0 -.02 -1.323l-1.501 -1.65l.218 -.363l.055 -.103a1 1 0 0 0 -.398 -1.268z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wnt={name:"DiamondOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Xnt={name:"DiamondIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamond",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5h12l3 5l-8.5 9.5a.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5"},null),e(" "),t("path",{d:"M10 12l-2 -2.2l.6 -1"},null),e(" ")])}},qnt={name:"DiamondsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2.005c-.777 0 -1.508 .367 -1.971 .99l-5.362 6.895c-.89 1.136 -.89 3.083 0 4.227l5.375 6.911a2.457 2.457 0 0 0 3.93 -.017l5.361 -6.894c.89 -1.136 .89 -3.083 0 -4.227l-5.375 -6.911a2.446 2.446 0 0 0 -1.958 -.974z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ynt={name:"DiamondsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-diamonds",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z"},null),e(" ")])}},Unt={name:"Dice1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 8.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Gnt={name:"Dice1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Znt={name:"Dice2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 11a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-5 -5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Knt={name:"Dice2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" ")])}},Qnt={name:"Dice3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jnt={name:"Dice3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},tlt={name:"Dice4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},elt={name:"Dice4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},nlt={name:"Dice5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},llt={name:"Dice5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},rlt={name:"Dice6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 13a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 -4.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},olt={name:"Dice6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},slt={name:"DiceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm0 -7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm7 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},alt={name:"DiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"8.5",cy:"15.5",r:".5",fill:"currentColor"},null),e(" ")])}},ilt={name:"DimensionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dimensions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h11"},null),e(" "),t("path",{d:"M12 7l2 -2l-2 -2"},null),e(" "),t("path",{d:"M5 3l-2 2l2 2"},null),e(" "),t("path",{d:"M19 10v11"},null),e(" "),t("path",{d:"M17 19l2 2l2 -2"},null),e(" "),t("path",{d:"M21 12l-2 -2l-2 2"},null),e(" "),t("path",{d:"M3 10m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z"},null),e(" ")])}},hlt={name:"DirectionHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" "),t("path",{d:"M14 9l3 3l-3 3"},null),e(" ")])}},dlt={name:"DirectionSignFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.52 2.614a2.095 2.095 0 0 1 2.835 -.117l.126 .117l7.905 7.905c.777 .777 .816 2.013 .117 2.836l-.117 .126l-7.905 7.905a2.094 2.094 0 0 1 -2.836 .117l-.126 -.117l-7.907 -7.906a2.096 2.096 0 0 1 -.115 -2.835l.117 -.126l7.905 -7.905zm5.969 9.535l.01 -.116l-.003 -.12l-.016 -.114l-.03 -.11l-.044 -.112l-.052 -.098l-.076 -.105l-.07 -.081l-3.5 -3.5l-.095 -.083a1 1 0 0 0 -1.226 0l-.094 .083l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l1.792 1.793h-5.085l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h5.085l-1.792 1.793l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l3.5 -3.5l.097 -.112l.05 -.074l.037 -.067l.05 -.112l.023 -.076l.025 -.117z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},clt={name:"DirectionSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M13.748 13.752l-1.748 1.748"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ult={name:"DirectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z"},null),e(" "),t("path",{d:"M8 12h7.5"},null),e(" "),t("path",{d:"M12 8.5l3.5 3.5l-3.5 3.5"},null),e(" ")])}},plt={name:"DirectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-direction",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},glt={name:"DirectionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 8v1h1m4 0h6l2 -2l-2 -2h-10"},null),e(" "),t("path",{d:"M14 14v3h-8l-2 -2l2 -2h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wlt={name:"DirectionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-directions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21v-4"},null),e(" "),t("path",{d:"M12 13v-4"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" "),t("path",{d:"M10 21h4"},null),e(" "),t("path",{d:"M8 5v4h11l2 -2l-2 -2z"},null),e(" "),t("path",{d:"M14 13v4h-8l-2 -2l2 -2z"},null),e(" ")])}},vlt={name:"Disabled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 11a5 5 0 1 0 3.95 7.95"},null),e(" "),t("path",{d:"M19 20l-4 -5h-4l3 -5l-4 -3l-4 1"},null),e(" ")])}},flt={name:"DisabledOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M11 11v4h4l4 5"},null),e(" "),t("path",{d:"M15 11h1"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mlt={name:"DisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 7l0 8l4 0l4 5"},null),e(" "),t("path",{d:"M11 11l5 0"},null),e(" "),t("path",{d:"M7 11.5a5 5 0 1 0 6 7.5"},null),e(" ")])}},klt={name:"DiscGolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" "),t("path",{d:"M6 5c.32 6.744 2.74 9.246 6 10"},null),e(" "),t("path",{d:"M18 5c-.32 6.744 -2.74 9.246 -6 10"},null),e(" "),t("path",{d:"M10 5c0 4.915 .552 7.082 2 10"},null),e(" "),t("path",{d:"M14 5c0 4.915 -.552 7.082 -2 10"},null),e(" "),t("path",{d:"M12 15v6"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M7 16c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1"},null),e(" "),t("path",{d:"M11 21h2"},null),e(" ")])}},blt={name:"DiscOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631"},null),e(" "),t("path",{d:"M11.298 11.288a1 1 0 1 0 1.402 1.427"},null),e(" "),t("path",{d:"M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086"},null),e(" "),t("path",{d:"M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mlt={name:"DiscIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-disc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" "),t("path",{d:"M12 17a5 5 0 0 0 5 -5"},null),e(" ")])}},xlt={name:"Discount2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M8.887 4.89a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zlt={name:"Discount2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},Ilt={name:"DiscountCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944zm3.697 7.282a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ylt={name:"DiscountCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Clt={name:"DiscountOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M9.148 9.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M14.148 14.145a.498 .498 0 0 0 .352 .855a.5 .5 0 0 0 .35 -.142"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Slt={name:"DiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},$lt={name:"DivideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-divide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"6",r:"1",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"18",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},Alt={name:"Dna2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M12 8h4"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Blt={name:"Dna2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1"},null),e(" "),t("path",{d:"M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1"},null),e(" "),t("path",{d:"M7 4h10"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M8 8h8"},null),e(" "),t("path",{d:"M8 16h8"},null),e(" ")])}},Hlt={name:"DnaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 1 0 5.657 5.657"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nlt={name:"DnaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dna",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M9.172 20.485a4 4 0 1 0 -5.657 -5.657"},null),e(" "),t("path",{d:"M14.828 3.515a4 4 0 0 0 5.657 5.657"},null),e(" ")])}},jlt={name:"DogBowlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog-bowl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586"},null),e(" "),t("path",{d:"M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586"},null),e(" "),t("path",{d:"M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z"},null),e(" ")])}},Plt={name:"DogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M19 12c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8"},null),e(" "),t("path",{d:"M11 16c0 .667 .333 1 1 1s1 -.333 1 -1h-2z"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M10 11v.01"},null),e(" "),t("path",{d:"M14 11v.01"},null),e(" "),t("path",{d:"M5 4l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a.953 .953 0 0 1 -.327 -.954l1.975 -6.815z"},null),e(" "),t("path",{d:"M19 4l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a.953 .953 0 0 0 .327 -.954l-1.975 -6.815z"},null),e(" ")])}},Llt={name:"DoorEnterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-enter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"},null),e(" "),t("path",{d:"M21 7h-7m3 -3l-3 3l3 3"},null),e(" ")])}},Dlt={name:"DoorExitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-exit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"},null),e(" "),t("path",{d:"M14 7h7m-3 -3l3 3l-3 3"},null),e(" ")])}},Olt={name:"DoorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-15"},null),e(" "),t("path",{d:"M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M18 18v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Flt={name:"DoorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-door",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12v.01"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" "),t("path",{d:"M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"},null),e(" ")])}},Rlt={name:"DotsCircleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-circle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 12l0 .01"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" "),t("path",{d:"M16 12l0 .01"},null),e(" ")])}},Tlt={name:"DotsDiagonal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Elt={name:"DotsDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Vlt={name:"DotsVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},_lt={name:"DotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Wlt={name:"DownloadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19"},null),e(" "),t("path",{d:"M7 11l5 5l2 -2m2 -2l1 -1"},null),e(" "),t("path",{d:"M12 4v4m0 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Xlt={name:"DownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 11l5 5l5 -5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},qlt={name:"DragDrop2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 4l0 .01"},null),e(" "),t("path",{d:"M8 4l0 .01"},null),e(" "),t("path",{d:"M12 4l0 .01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8l0 .01"},null),e(" "),t("path",{d:"M4 12l0 .01"},null),e(" "),t("path",{d:"M4 16l0 .01"},null),e(" ")])}},Ylt={name:"DragDropIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drag-drop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M13 13l9 3l-4 2l-2 4l-3 -9"},null),e(" "),t("path",{d:"M3 3l0 .01"},null),e(" "),t("path",{d:"M7 3l0 .01"},null),e(" "),t("path",{d:"M11 3l0 .01"},null),e(" "),t("path",{d:"M15 3l0 .01"},null),e(" "),t("path",{d:"M3 7l0 .01"},null),e(" "),t("path",{d:"M3 11l0 .01"},null),e(" "),t("path",{d:"M3 15l0 .01"},null),e(" ")])}},Ult={name:"DroneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14h-4v-4"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.957 5.95a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.965a3.5 3.5 0 1 0 -3.966 -3.965"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.035 18a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.035a3.5 3.5 0 1 0 3.966 3.965"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Glt={name:"DroneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10h4v4h-4z"},null),e(" "),t("path",{d:"M10 10l-3.5 -3.5"},null),e(" "),t("path",{d:"M9.96 6a3.5 3.5 0 1 0 -3.96 3.96"},null),e(" "),t("path",{d:"M14 10l3.5 -3.5"},null),e(" "),t("path",{d:"M18 9.96a3.5 3.5 0 1 0 -3.96 -3.96"},null),e(" "),t("path",{d:"M14 14l3.5 3.5"},null),e(" "),t("path",{d:"M14.04 18a3.5 3.5 0 1 0 3.96 -3.96"},null),e(" "),t("path",{d:"M10 14l-3.5 3.5"},null),e(" "),t("path",{d:"M6 14.04a3.5 3.5 0 1 0 3.96 3.96"},null),e(" ")])}},Zlt={name:"DropCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-drop-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Klt={name:"DropletBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.628 12.076a6.653 6.653 0 0 0 -.564 -1.199l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c1.7 1.375 3.906 1.852 5.958 1.431"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Qlt={name:"DropletCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.606 12.014a6.659 6.659 0 0 0 -.542 -1.137l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.154 7.154 0 0 0 4.826 1.572"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Jlt={name:"DropletCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.967 13.594a6.568 6.568 0 0 0 -.903 -2.717l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.04 1.565"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},trt={name:"DropletCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.907 13.147a6.586 6.586 0 0 0 -.843 -2.27l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.123 7.123 0 0 0 3.99 1.561"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},ert={name:"DropletCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.421 11.56a6.702 6.702 0 0 0 -.357 -.683l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.144 7.144 0 0 0 4.518 1.58"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},nrt={name:"DropletDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.668 10.29l-4.493 -6.673c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.175 7.175 0 0 0 5.493 1.51"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},lrt={name:"DropletDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.003a6.66 6.66 0 0 0 -.538 -1.126l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.159 7.159 0 0 0 4.972 1.564"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},rrt={name:"DropletExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.142 1.734 5.092 2.04 7.519 .919"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ort={name:"DropletFilled2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" "),t("path",{d:"M7.305 17.695l3.695 -3.695"},null),e(" "),t("path",{d:"M10.26 19.74l5.74 -5.74l-5.74 5.74z"},null),e(" ")])}},srt={name:"DropletFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.801 11.003a6 6 0 1 0 10.396 -.003l-5.197 -8l-5.199 8.003z",stroke:"#010202","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 3v17","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12l3.544 -3.544","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 17.3l5.558 -5.558","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},art={name:"DropletHalf2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M6 14h12"},null),e(" ")])}},irt={name:"DropletHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558"},null),e(" ")])}},hrt={name:"DropletHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z"},null),e(" "),t("path",{d:"M12 3v17"},null),e(" ")])}},drt={name:"DropletHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.288 11.282a6.734 6.734 0 0 0 -.224 -.405l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.117 7.117 0 0 0 3.824 1.548"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},crt={name:"DropletMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.946 15.083a6.538 6.538 0 0 0 -.882 -4.206l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.089 1.555"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},urt={name:"DropletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.963 14.938a6.54 6.54 0 0 0 -.899 -4.06l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-1.282 1.9m-1.625 2.415l-1.986 2.946c-1.695 2.837 -1.035 6.44 1.567 8.545c2.602 2.105 6.395 2.105 8.996 0a6.83 6.83 0 0 0 1.376 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},prt={name:"DropletPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.952 13.456a6.573 6.573 0 0 0 -.888 -2.579l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.176 7.176 0 0 0 5.517 1.507"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},grt={name:"DropletPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.163 7.163 0 0 0 5.102 1.554"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},wrt={name:"DropletPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.602 12.004a6.66 6.66 0 0 0 -.538 -1.127l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.033 1.56"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},vrt={name:"DropletQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546c2.203 1.782 5.259 2.056 7.723 .82"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},frt={name:"DropletSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.064 10.877l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.13 7.13 0 0 0 4.168 1.572"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},mrt={name:"DropletShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.884 13.025a6.591 6.591 0 0 0 -.82 -2.148l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.125 7.125 0 0 0 4.498 1.58"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},krt={name:"DropletStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.496 10.034l-4.321 -6.417c-.421 -.625 -1.288 -.803 -1.937 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.106 7.106 0 0 0 3.547 1.517"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},brt={name:"DropletUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.6 11.998a6.66 6.66 0 0 0 -.536 -1.12l-4.89 -7.26c-.42 -.626 -1.287 -.804 -1.936 -.398a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.16 7.16 0 0 0 5.002 1.562"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Mrt={name:"DropletXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.953 13.467a6.572 6.572 0 0 0 -.889 -2.59l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546a7.179 7.179 0 0 0 5.633 1.49"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},xrt={name:"DropletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-droplet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z"},null),e(" ")])}},zrt={name:"DualScreenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-dual-screen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4l8 3v15l-8 -3z"},null),e(" "),t("path",{d:"M13 19h6v-15h-14"},null),e(" ")])}},Irt={name:"EPassportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-e-passport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 12h-7"},null),e(" "),t("path",{d:"M15 12h7"},null),e(" ")])}},yrt={name:"EarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M11.42 7.414a3 3 0 0 1 4.131 4.13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Crt={name:"EarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ear",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4"},null),e(" "),t("path",{d:"M10 10a3 3 0 1 1 5 2.2"},null),e(" ")])}},Srt={name:"EaseInControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c8 0 18 -16 18 -16"},null),e(" "),t("path",{d:"M17 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 19h-2"},null),e(" "),t("path",{d:"M12 19h-2"},null),e(" ")])}},$rt={name:"EaseInOutControlPointsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out-control-points",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0z"},null),e(" "),t("path",{d:"M17 20h-2"},null),e(" "),t("path",{d:"M7 4a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 4h2"},null),e(" "),t("path",{d:"M14 4h-2"},null),e(" "),t("path",{d:"M12 20h-2"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},Art={name:"EaseInOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 10 -16 18 -16"},null),e(" ")])}},Brt={name:"EaseInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20c8 0 18 -16 18 -16"},null),e(" ")])}},Hrt={name:"EaseOutControlPointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out-control-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21s10 -16 18 -16"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M7 5h2"},null),e(" "),t("path",{d:"M14 5h-2"},null),e(" ")])}},Nrt={name:"EaseOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ease-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20s10 -16 18 -16"},null),e(" ")])}},jrt={name:"EditCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M7.476 7.471a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Prt={name:"EditCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M9 7.07a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6"},null),e(" ")])}},Lrt={name:"EditOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Drt={name:"EditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z"},null),e(" "),t("path",{d:"M16 5l3 3"},null),e(" ")])}},Ort={name:"EggCrackedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-cracked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" "),t("path",{d:"M12 3l-1.5 5l3.5 2.5l-2 3.5"},null),e(" ")])}},Frt={name:"EggFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.002 2c-4.173 -.008 -8.002 6.058 -8.002 12.083c0 4.708 3.25 7.917 8 7.917c4.727 -.206 8 -3.328 8 -7.917c0 -6.02 -3.825 -12.075 -7.998 -12.083z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Rrt={name:"EggFriedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-fried",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14 3a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z"},null),e(" ")])}},Trt={name:"EggOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158"},null),e(" "),t("path",{d:"M8.642 4.628c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ert={name:"EggIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-egg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z"},null),e(" ")])}},Vrt={name:"EggsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eggs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5z"},null),e(" "),t("path",{d:"M8 18c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8"},null),e(" ")])}},_rt={name:"ElevatorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14"},null),e(" "),t("path",{d:"M12 8l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wrt={name:"ElevatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-elevator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 10l2 -2l2 2"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},Xrt={name:"EmergencyBedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emergency-bed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M12 12v2l-2.5 2.5"},null),e(" "),t("path",{d:"M14.5 16.5l-2.5 -2.5"},null),e(" ")])}},qrt={name:"EmpathizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2.5 2.5 0 1 0 -2.5 -2.5"},null),e(" "),t("path",{d:"M12.317 12.315l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yrt={name:"EmpathizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-empathize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z"},null),e(" ")])}},Urt={name:"EmphasisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-emphasis",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5h-8v10h8m-1 -5h-7"},null),e(" "),t("path",{d:"M6 20l0 .01"},null),e(" "),t("path",{d:"M10 20l0 .01"},null),e(" "),t("path",{d:"M14 20l0 .01"},null),e(" "),t("path",{d:"M18 20l0 .01"},null),e(" ")])}},Grt={name:"EngineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zrt={name:"EngineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-engine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10v6"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M5 13h-2"},null),e(" "),t("path",{d:"M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"},null),e(" ")])}},Krt={name:"EqualDoubleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-double",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M3 14h7"},null),e(" "),t("path",{d:"M14 10h7"},null),e(" "),t("path",{d:"M14 14h7"},null),e(" ")])}},Qrt={name:"EqualNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},Jrt={name:"EqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M5 14h14"},null),e(" ")])}},tot={name:"EraserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},eot={name:"EraserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eraser",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"},null),e(" "),t("path",{d:"M18 13.3l-6.3 -6.3"},null),e(" ")])}},not={name:"Error404OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 10v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lot={name:"Error404Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-error-404",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z"},null),e(" "),t("path",{d:"M17 7v4a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M21 7v10"},null),e(" ")])}},rot={name:"ExchangeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3"},null),e(" "),t("path",{d:"M14 21l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3"},null),e(" "),t("path",{d:"M11.501 7.499l1.499 -1.499"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oot={name:"ExchangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exchange",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M5 16v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3"},null),e(" ")])}},sot={name:"ExclamationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 9v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},aot={name:"ExclamationMarkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-3m0 -4v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},iot={name:"ExclamationMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exclamation-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v.01"},null),e(" "),t("path",{d:"M12 15v-10"},null),e(" ")])}},hot={name:"ExplicitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2m-2 2v6h4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M12 12h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dot={name:"ExplicitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-explicit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},cot={name:"Exposure0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z"},null),e(" ")])}},uot={name:"ExposureMinus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},pot={name:"ExposureMinus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-minus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" ")])}},got={name:"ExposureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 9h2v2"},null),e(" "),t("path",{d:"M13 16h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wot={name:"ExposurePlus1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" "),t("path",{d:"M18 19v-14l-4 4"},null),e(" ")])}},vot={name:"ExposurePlus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure-plus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M6 9v6"},null),e(" ")])}},fot={name:"ExposureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-exposure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4.6 19.4l14.8 -14.8"},null),e(" "),t("path",{d:"M7 9h4m-2 -2v4"},null),e(" "),t("path",{d:"M13 16l4 0"},null),e(" ")])}},mot={name:"ExternalLinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M10 14l2 -2m2.007 -2.007l6 -6"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kot={name:"ExternalLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-external-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6"},null),e(" "),t("path",{d:"M11 13l9 -9"},null),e(" "),t("path",{d:"M15 4h5v5"},null),e(" ")])}},bot={name:"EyeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.143 17.961c-3.221 -.295 -5.936 -2.281 -8.143 -5.961c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.222 .37 -.449 .722 -.68 1.057"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Mot={name:"EyeClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4"},null),e(" "),t("path",{d:"M3 15l2.5 -3.8"},null),e(" "),t("path",{d:"M21 14.976l-2.492 -3.776"},null),e(" "),t("path",{d:"M9 17l.5 -4"},null),e(" "),t("path",{d:"M15 17l-.5 -4"},null),e(" ")])}},xot={name:"EyeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M12 18c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},zot={name:"EyeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M11.192 17.966c-3.242 -.28 -5.972 -2.269 -8.192 -5.966c2.4 -4 5.4 -6 9 -6c3.326 0 6.14 1.707 8.442 5.122"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Iot={name:"EyeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M14.473 17.659a8.897 8.897 0 0 1 -2.473 .341c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},yot={name:"EyeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.29 0 7.863 2.429 10.665 7.154l.22 .379l.045 .1l.03 .083l.014 .055l.014 .082l.011 .1v.11l-.014 .111a.992 .992 0 0 1 -.026 .11l-.039 .108l-.036 .075l-.016 .03c-2.764 4.836 -6.3 7.38 -10.555 7.499l-.313 .004c-4.396 0 -8.037 -2.549 -10.868 -7.504a1 1 0 0 1 0 -.992c2.831 -4.955 6.472 -7.504 10.868 -7.504zm0 5a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cot={name:"EyeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.923 11.45a2 2 0 1 0 -2.87 2.312"},null),e(" "),t("path",{d:"M10 17.78c-2.726 -.618 -5.059 -2.545 -7 -5.78c2.4 -4 5.4 -6 9 -6c3.325 0 6.137 1.705 8.438 5.117"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Sot={name:"EyeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"},null),e(" "),t("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$ot={name:"EyeTableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18h-.011"},null),e(" "),t("path",{d:"M12 18h-.011"},null),e(" "),t("path",{d:"M16 18h-.011"},null),e(" "),t("path",{d:"M4 3h16"},null),e(" "),t("path",{d:"M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17"},null),e(" "),t("path",{d:"M14 7h-4"},null),e(" "),t("path",{d:"M9 15h1"},null),e(" "),t("path",{d:"M14 15h1"},null),e(" "),t("path",{d:"M12 11v-4"},null),e(" ")])}},Aot={name:"EyeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M13.117 17.933a9.275 9.275 0 0 1 -1.117 .067c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6a18.728 18.728 0 0 1 -1.009 1.516"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Bot={name:"EyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"},null),e(" ")])}},Hot={name:"Eyeglass2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10v2.5"},null),e(" "),t("path",{d:"M16 4h2l3 10v2.5"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M17.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M6.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" ")])}},Not={name:"EyeglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.536 5.546l-2.536 8.454"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jot={name:"EyeglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-eyeglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16l4 0"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" ")])}},Pot={name:"FaceIdErrorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id-error",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15.05a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},Lot={name:"FaceIdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Dot={name:"FaceMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M9 14h5"},null),e(" "),t("path",{d:"M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oot={name:"FaceMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-face-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222"},null),e(" "),t("path",{d:"M19 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" "),t("path",{d:"M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z"},null),e(" ")])}},Fot={name:"FallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l1 -5l-1 -4l-3 -4h4l3 -3"},null),e(" "),t("path",{d:"M6 16l-1 -4l3 -4"},null),e(" "),t("path",{d:"M6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.5 12h2.5l4 2"},null),e(" ")])}},Rot={name:"FeatherOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l8 -8"},null),e(" "),t("path",{d:"M14 5v5h5"},null),e(" "),t("path",{d:"M9 11v4h4"},null),e(" "),t("path",{d:"M6 13v5h5"},null),e(" "),t("path",{d:"M6 13l3.502 -3.502m2.023 -2.023l2.475 -2.475"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1"},null),e(" "),t("path",{d:"M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tot={name:"FeatherIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-feather",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4"},null),e(" "),t("path",{d:"M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4"},null),e(" ")])}},Eot={name:"FenceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8v4h12m4 0v-4h-4"},null),e(" "),t("path",{d:"M6 16v4h4v-4"},null),e(" "),t("path",{d:"M10 12v-2m0 -4l-2 -2m-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-2"},null),e(" "),t("path",{d:"M18 12v-6l-2 -2l-2 2v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vot={name:"FenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v4h16v-4z"},null),e(" "),t("path",{d:"M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" "),t("path",{d:"M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6"},null),e(" ")])}},_ot={name:"FidgetSpinnerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fidget-spinner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v.01"},null),e(" "),t("path",{d:"M6 16v.01"},null),e(" "),t("path",{d:"M12 5v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M12 1a4 4 0 0 1 2.001 7.464l.001 .072a3.998 3.998 0 0 1 1.987 3.758l.22 .128a3.978 3.978 0 0 1 1.591 -.417l.2 -.005a4 4 0 1 1 -3.994 3.77l-.28 -.16c-.522 .25 -1.108 .39 -1.726 .39c-.619 0 -1.205 -.14 -1.728 -.391l-.279 .16l.007 .231a4 4 0 1 1 -2.212 -3.579l.222 -.129a3.998 3.998 0 0 1 1.988 -3.756l.002 -.071a4 4 0 0 1 -1.995 -3.265l-.005 -.2a4 4 0 0 1 4 -4z"},null),e(" ")])}},Wot={name:"File3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 13.5l4 -1.5"},null),e(" "),t("path",{d:"M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z"},null),e(" "),t("path",{d:"M8 12v4.2l4 1.8"},null),e(" ")])}},Xot={name:"FileAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17l.01 0"},null),e(" "),t("path",{d:"M12 11l0 3"},null),e(" ")])}},qot={name:"FileAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17l0 -5"},null),e(" "),t("path",{d:"M12 17l0 -1"},null),e(" "),t("path",{d:"M15 17l0 -3"},null),e(" ")])}},Yot={name:"FileArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 15h-6"},null),e(" "),t("path",{d:"M11.5 17.5l-2.5 -2.5l2.5 -2.5"},null),e(" ")])}},Uot={name:"FileArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15h6"},null),e(" "),t("path",{d:"M12.5 17.5l2.5 -2.5l-2.5 -2.5"},null),e(" ")])}},Got={name:"FileBarcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-barcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 13h1v3h-1z"},null),e(" "),t("path",{d:"M12 13v3"},null),e(" "),t("path",{d:"M15 13h1v3h-1z"},null),e(" ")])}},Zot={name:"FileBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 7v-2a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 16h.01"},null),e(" "),t("path",{d:"M5 13h.01"},null),e(" "),t("path",{d:"M5 10h.01"},null),e(" "),t("path",{d:"M19 13h.01"},null),e(" "),t("path",{d:"M19 16h.01"},null),e(" ")])}},Kot={name:"FileCertificateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-certificate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5"},null),e(" "),t("path",{d:"M6 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5"},null),e(" ")])}},Qot={name:"FileChartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-chart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10v4h4"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},Jot={name:"FileCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 15l2 2l4 -4"},null),e(" ")])}},tst={name:"FileCode2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-1v5h1"},null),e(" "),t("path",{d:"M14 12h1v5h-1"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},est={name:"FileCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13l-1 2l1 2"},null),e(" "),t("path",{d:"M14 13l1 2l-1 2"},null),e(" ")])}},nst={name:"FileCvIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-cv",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 12.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0"},null),e(" "),t("path",{d:"M13 11l1.5 6l1.5 -6"},null),e(" ")])}},lst={name:"FileDatabaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-database",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},rst={name:"FileDeltaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-delta",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6l-3 -6z"},null),e(" ")])}},ost={name:"FileDescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-description",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 17h6"},null),e(" "),t("path",{d:"M9 13h6"},null),e(" ")])}},sst={name:"FileDiffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-diff",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 10l0 4"},null),e(" "),t("path",{d:"M10 12l4 0"},null),e(" "),t("path",{d:"M10 17l4 0"},null),e(" ")])}},ast={name:"FileDigitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-digit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9 12m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 12v5"},null),e(" ")])}},ist={name:"FileDislikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dislike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5"},null),e(" ")])}},hst={name:"FileDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},dst={name:"FileDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14v.01"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M15 14v.01"},null),e(" ")])}},cst={name:"FileDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v-6"},null),e(" "),t("path",{d:"M9.5 14.5l2.5 2.5l2.5 -2.5"},null),e(" ")])}},ust={name:"FileEuroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-euro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14h-3"},null),e(" "),t("path",{d:"M14 11.172a3 3 0 1 0 0 5.656"},null),e(" ")])}},pst={name:"FileExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3"},null),e(" ")])}},gst={name:"FileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wst={name:"FileFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10.5 17h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333"},null),e(" "),t("path",{d:"M10.5 14h3"},null),e(" ")])}},vst={name:"FileHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M3 7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z"},null),e(" ")])}},fst={name:"FileImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 13v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3"},null),e(" ")])}},mst={name:"FileInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 21h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6"},null),e(" ")])}},kst={name:"FileInfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-info",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 14h1v4h1"},null),e(" "),t("path",{d:"M12 11h.01"},null),e(" ")])}},bst={name:"FileInvoiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-invoice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M13 17l2 0"},null),e(" ")])}},Mst={name:"FileLambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 17l2 -3"},null),e(" "),t("path",{d:"M15 17c-2.5 0 -2.5 -6 -5 -6"},null),e(" ")])}},xst={name:"FileLikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-like",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3"},null),e(" ")])}},zst={name:"FileMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Ist={name:"FileMusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16l0 -5l2 1"},null),e(" ")])}},yst={name:"FileOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M7 3h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" ")])}},Cst={name:"FileOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" "),t("path",{d:"M13 20h5a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M15 22l-2 -2l2 -2"},null),e(" "),t("path",{d:"M18 15l2 -2l2 2"},null),e(" ")])}},Sst={name:"FilePencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z"},null),e(" ")])}},$st={name:"FilePercentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-percent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 17l4 -4"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" "),t("path",{d:"M14 17h.01"},null),e(" ")])}},Ast={name:"FilePhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 12a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1"},null),e(" ")])}},Bst={name:"FilePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l0 6"},null),e(" "),t("path",{d:"M9 14l6 0"},null),e(" ")])}},Hst={name:"FilePowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11l-2 3h4l-2 3"},null),e(" ")])}},Nst={name:"FileReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M17 13v4h4"},null),e(" "),t("path",{d:"M12 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4"},null),e(" ")])}},jst={name:"FileRssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M15 17a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M9 17h.01"},null),e(" ")])}},Pst={name:"FileScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M15 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 17l6 -6"},null),e(" "),t("path",{d:"M15 17l-6 -6"},null),e(" ")])}},Lst={name:"FileSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},Dst={name:"FileSettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 10.5v1.5"},null),e(" "),t("path",{d:"M12 16v1.5"},null),e(" "),t("path",{d:"M15.031 12.25l-1.299 .75"},null),e(" "),t("path",{d:"M10.268 15l-1.3 .75"},null),e(" "),t("path",{d:"M15 15.803l-1.285 -.773"},null),e(" "),t("path",{d:"M10.285 12.97l-1.285 -.773"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},Ost={name:"FileShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M6 16l0 2"},null),e(" "),t("path",{d:"M10 16l0 6"},null),e(" "),t("path",{d:"M14 16l0 2"},null),e(" "),t("path",{d:"M18 16l0 4"},null),e(" ")])}},Fst={name:"FileSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14v.01"},null),e(" "),t("path",{d:"M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95"},null),e(" ")])}},Rst={name:"FileSpreadsheetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-spreadsheet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M8 11h8v7h-8z"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M11 11v7"},null),e(" ")])}},Tst={name:"FileStackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 15h14"},null),e(" ")])}},Est={name:"FileStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Vst={name:"FileSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M9 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5"},null),e(" ")])}},_st={name:"FileTextAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v3.5"},null),e(" "),t("path",{d:"M9 9h1"},null),e(" "),t("path",{d:"M9 13h2.5"},null),e(" "),t("path",{d:"M9 17h1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Wst={name:"FileTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9 9l1 0"},null),e(" "),t("path",{d:"M9 13l6 0"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" ")])}},Xst={name:"FileTimeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-time",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12.496v1.504l1 1"},null),e(" ")])}},qst={name:"FileTypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M12 18v-7"},null),e(" "),t("path",{d:"M9 12v-1h6v1"},null),e(" ")])}},Yst={name:"FileUnknownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-unknown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},Ust={name:"FileUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M12 11v6"},null),e(" "),t("path",{d:"M9.5 13.5l2.5 -2.5l2.5 2.5"},null),e(" ")])}},Gst={name:"FileVectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M9.5 16.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M14.5 12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M9.5 15a2.5 2.5 0 0 1 2.5 -2.5h1"},null),e(" ")])}},Zst={name:"FileXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.117 .007a1 1 0 0 1 .876 .876l.007 .117v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h4l.117 .007a1 1 0 0 1 .876 .876l.007 .117v9a3 3 0 0 1 -2.824 2.995l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h5zm-1.489 9.14a1 1 0 0 0 -1.301 1.473l.083 .094l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.403 1.403l.094 -.083l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.403 -1.403l-.094 .083l-1.293 1.292l-1.293 -1.292l-.094 -.083l-.102 -.07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 7h-4l-.001 -4.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Kst={name:"FileXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},Qst={name:"FileZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M11 5l-1 0"},null),e(" "),t("path",{d:"M13 7l-1 0"},null),e(" "),t("path",{d:"M11 9l-1 0"},null),e(" "),t("path",{d:"M13 11l-1 0"},null),e(" "),t("path",{d:"M11 13l-1 0"},null),e(" "),t("path",{d:"M13 15l-1 0"},null),e(" ")])}},Jst={name:"FileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-file",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z"},null),e(" ")])}},tat={name:"FilesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eat={name:"FilesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-files",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z"},null),e(" "),t("path",{d:"M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" ")])}},nat={name:"FilterCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},lat={name:"FilterDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.02 19.66l-4.02 1.34v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},rat={name:"FilterEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.97 20.344l-1.97 .656v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v1.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},oat={name:"FilterMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},sat={name:"FilterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h12v2.172a2 2 0 0 1 -.586 1.414l-3.914 3.914m-.5 3.5v4l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aat={name:"FilterPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20l-3 1v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v3"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},iat={name:"FilterStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.971 20.343l-1.971 .657v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},hat={name:"FilterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.785 19.405l-4.785 1.595v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},dat={name:"FilterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h16v2.172a2 2 0 0 1 -.586 1.414l-4.414 4.414v7l-6 2v-8.5l-4.48 -4.928a2 2 0 0 1 -.52 -1.345v-2.227z"},null),e(" ")])}},cat={name:"FiltersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-filters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M8 11a5 5 0 1 0 3.998 1.997"},null),e(" "),t("path",{d:"M12.002 19.003a5 5 0 1 0 3.998 -8.003"},null),e(" ")])}},uat={name:"FingerprintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1"},null),e(" "),t("path",{d:"M12 12v1a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pat={name:"FingerprintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fingerprint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3"},null),e(" "),t("path",{d:"M8 11a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6"},null),e(" "),t("path",{d:"M12 11v2a14 14 0 0 0 2.5 8"},null),e(" "),t("path",{d:"M8 15a18 18 0 0 0 1.8 6"},null),e(" "),t("path",{d:"M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95"},null),e(" ")])}},gat={name:"FireHydrantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 12a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M6 8h2m4 0h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wat={name:"FireHydrantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fire-hydrant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M17 21v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8h12"},null),e(" ")])}},vat={name:"FiretruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-firetruck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5"},null),e(" "),t("path",{d:"M12 18v-11h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" "),t("path",{d:"M3 9l18 -6"},null),e(" "),t("path",{d:"M6 12l0 -4"},null),e(" ")])}},fat={name:"FirstAidKitOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M12 8h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mat={name:"FirstAidKitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-first-aid-kit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" ")])}},kat={name:"FishBoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-bone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565"},null),e(" "),t("path",{d:"M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M4.422 12h10.578"},null),e(" "),t("path",{d:"M7 10v4"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" ")])}},bat={name:"FishChristianityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-christianity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10"},null),e(" ")])}},Mat={name:"FishHookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xat={name:"FishHookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-hook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9v6a5 5 0 0 1 -10 0v-4l3 3"},null),e(" "),t("path",{d:"M16 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 5v-2"},null),e(" ")])}},zat={name:"FishOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635"},null),e(" "),t("path",{d:"M2 9.504c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Iat={name:"FishIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fish",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571"},null),e(" "),t("path",{d:"M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504"},null),e(" "),t("path",{d:"M18 11v.01"},null),e(" "),t("path",{d:"M11.5 10.5c-.667 1 -.667 2 0 3"},null),e(" ")])}},yat={name:"Flag2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Cat={name:"Flag2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h9m4 0h1v-9h-10m-4 0v16"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Sat={name:"Flag2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14v-9h-14v16"},null),e(" ")])}},$at={name:"Flag3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4c.852 0 1.297 .986 .783 1.623l-.076 .084l-3.792 3.793l3.792 3.793c.603 .602 .22 1.614 -.593 1.701l-.114 .006h-13v6a1 1 0 0 1 -.883 .993l-.117 .007a1 1 0 0 1 -.993 -.883l-.007 -.117v-16a1 1 0 0 1 .883 -.993l.117 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Aat={name:"Flag3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16"},null),e(" ")])}},Bat={name:"FlagFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 .3 -.714a6 6 0 0 1 8.213 -.176l.351 .328a4 4 0 0 0 5.272 0l.249 -.227c.61 -.483 1.527 -.097 1.61 .676l.005 .113v9a1 1 0 0 1 -.3 .714a6 6 0 0 1 -8.213 .176l-.351 -.328a4 4 0 0 0 -5.136 -.114v6.552a1 1 0 0 1 -1.993 .117l-.007 -.117v-16z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Hat={name:"FlagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5v16"},null),e(" "),t("path",{d:"M19 5v9"},null),e(" "),t("path",{d:"M7.641 3.645a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nat={name:"FlagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0v-9z"},null),e(" "),t("path",{d:"M5 21v-7"},null),e(" ")])}},jat={name:"FlameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pat={name:"FlameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"},null),e(" ")])}},Lat={name:"FlareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z"},null),e(" ")])}},Dat={name:"Flask2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h8.9"},null),e(" "),t("path",{d:"M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oat={name:"Flask2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.1 15h11.8"},null),e(" "),t("path",{d:"M14 3v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4z"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" ")])}},Fat={name:"FlaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M10 3v3m-.268 3.736l-3.732 10.264a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rat={name:"FlaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 0"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" "),t("path",{d:"M10 3v6l-4 11a.7 .7 0 0 0 .5 1h11a.7 .7 0 0 0 .5 -1l-4 -11v-6"},null),e(" ")])}},Tat={name:"FlipFlopsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-flops",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007z"},null),e(" "),t("path",{d:"M14.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M18 16v1"},null),e(" "),t("path",{d:"M6 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007z"},null),e(" "),t("path",{d:"M2.5 14c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5"},null),e(" "),t("path",{d:"M6 16v1"},null),e(" ")])}},Eat={name:"FlipHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M7 16l10 0l-10 5l0 -5"},null),e(" "),t("path",{d:"M7 8l10 0l-10 -5l0 5"},null),e(" ")])}},Vat={name:"FlipVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16 7l0 10l5 0l-5 -10"},null),e(" "),t("path",{d:"M8 7l0 10l-5 0l5 -10"},null),e(" ")])}},_at={name:"FloatCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" "),t("path",{d:"M4 11l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M19 11l1 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},Wat={name:"FloatLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 7l6 0"},null),e(" "),t("path",{d:"M14 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},Xat={name:"FloatNoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-none",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},qat={name:"FloatRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-float-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 7l6 0"},null),e(" "),t("path",{d:"M4 11l6 0"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" "),t("path",{d:"M4 19l16 0"},null),e(" ")])}},Yat={name:"FlowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Uat={name:"FlowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-flower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z"},null),e(" ")])}},Gat={name:"Focus2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M12 3l0 2"},null),e(" "),t("path",{d:"M3 12l2 0"},null),e(" "),t("path",{d:"M12 19l0 2"},null),e(" "),t("path",{d:"M19 12l2 0"},null),e(" ")])}},Zat={name:"FocusAutoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-auto",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M10 15v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},Kat={name:"FocusCenteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus-centered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},Qat={name:"FocusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-focus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"12",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},Jat={name:"FoldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11v8l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M9 7l1 0"},null),e(" "),t("path",{d:"M14 7l1 0"},null),e(" "),t("path",{d:"M19 7l1 0"},null),e(" "),t("path",{d:"M4 7l1 0"},null),e(" ")])}},tit={name:"FoldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v-8l-3 3m6 0l-3 -3"},null),e(" "),t("path",{d:"M9 17l1 0"},null),e(" "),t("path",{d:"M14 17l1 0"},null),e(" "),t("path",{d:"M19 17l1 0"},null),e(" "),t("path",{d:"M4 17l1 0"},null),e(" ")])}},eit={name:"FoldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fold",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" "),t("path",{d:"M12 21v-6l3 3m-6 0l3 -3"},null),e(" "),t("path",{d:"M4 12l1 0"},null),e(" "),t("path",{d:"M9 12l1 0"},null),e(" "),t("path",{d:"M14 12l1 0"},null),e(" "),t("path",{d:"M19 12l1 0"},null),e(" ")])}},nit={name:"FolderBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},lit={name:"FolderCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},rit={name:"FolderCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},oit={name:"FolderCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},sit={name:"FolderCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 19h-7.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},ait={name:"FolderDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v1.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},iit={name:"FolderDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},hit={name:"FolderExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},dit={name:"FolderFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cit={name:"FolderHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},uit={name:"FolderMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},pit={name:"FolderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1l3 3h7a2 2 0 0 1 2 2v8m-2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.189 -1.829"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},git={name:"FolderPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},wit={name:"FolderPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},vit={name:"FolderPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},fit={name:"FolderQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},mit={name:"FolderSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},kit={name:"FolderShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},bit={name:"FolderStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Mit={name:"FolderSymlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-symlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21v-4a3 3 0 0 1 3 -3h5"},null),e(" "),t("path",{d:"M8 17l3 -3l-3 -3"},null),e(" "),t("path",{d:"M3 11v-5a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8"},null),e(" ")])}},xit={name:"FolderUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zit={name:"FolderXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Iit={name:"FolderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"},null),e(" ")])}},yit={name:"FoldersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cit={name:"FoldersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-folders",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2"},null),e(" ")])}},Sit={name:"Forbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},$it={name:"ForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},Ait={name:"ForkliftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forklift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M14 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 17l5 0"},null),e(" "),t("path",{d:"M3 17v-6h13v6"},null),e(" "),t("path",{d:"M5 11v-4h4"},null),e(" "),t("path",{d:"M9 11v-6h4l3 6"},null),e(" "),t("path",{d:"M22 15h-3v-10"},null),e(" "),t("path",{d:"M16 13l3 0"},null),e(" ")])}},Bit={name:"FormsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-forms",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M13 7h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7"},null),e(" "),t("path",{d:"M5 7h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M17 12h.01"},null),e(" "),t("path",{d:"M13 12h.01"},null),e(" ")])}},Hit={name:"FountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-1m0 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-4m0 -4v-2a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M7.451 3.43a3 3 0 0 1 4.549 2.57"},null),e(" "),t("path",{d:"M20 16h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nit={name:"FountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-5a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 16v-5a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M12 16v-10a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M6 6a3 3 0 0 1 6 0"},null),e(" "),t("path",{d:"M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z"},null),e(" ")])}},jit={name:"FrameOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M4 17h13"},null),e(" "),t("path",{d:"M7 7v13"},null),e(" "),t("path",{d:"M17 4v9m0 4v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Pit={name:"FrameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frame",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M4 17l16 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" ")])}},Lit={name:"FreeRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-free-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},Dit={name:"FreezeColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9.5l-6 6"},null),e(" "),t("path",{d:"M9 4l-6 6"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M9 3v18"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" ")])}},Oit={name:"FreezeRowColumnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row-column",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M15 3l-12 12"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" "),t("path",{d:"M9 15l-5 5"},null),e(" "),t("path",{d:"M21 9h-12v12"},null),e(" ")])}},Fit={name:"FreezeRowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-freeze-row",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M21 9h-18"},null),e(" "),t("path",{d:"M15 3l-6 6"},null),e(" "),t("path",{d:"M9.5 3l-6 6"},null),e(" "),t("path",{d:"M20 3.5l-5.5 5.5"},null),e(" ")])}},Rit={name:"FridgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M5 10h5m4 0h5"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tit={name:"FridgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-fridge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M5 10h14"},null),e(" "),t("path",{d:"M9 13v3"},null),e(" "),t("path",{d:"M9 6v1"},null),e(" ")])}},Eit={name:"FriendsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vit={name:"FriendsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-friends",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4"},null),e(" ")])}},_it={name:"FrustumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.72 3.728l3.484 -1.558a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l2.538 10.158c.103 .412 .07 .832 -.075 1.206m-2.299 1.699l-5.725 2.738a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.52 -10.08"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0"},null),e(" "),t("path",{d:"M12 7.32v.68m0 4v9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Wit={name:"FrustumPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.841 21.309a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.538 -10.158a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328l1.67 6.683"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Xit={name:"FrustumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-frustum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.402 5.508l2.538 10.158a1.99 1.99 0 0 1 -1.064 2.278l-7.036 3.366a1.945 1.945 0 0 1 -1.682 0l-7.035 -3.365a1.99 1.99 0 0 1 -1.064 -2.278l2.539 -10.159a1.98 1.98 0 0 1 1.11 -1.328l4.496 -2.01a1.95 1.95 0 0 1 1.59 0l4.496 2.01c.554 .246 .963 .736 1.112 1.328z"},null),e(" "),t("path",{d:"M18 4.82l-5.198 2.324a1.963 1.963 0 0 1 -1.602 0l-5.2 -2.325"},null),e(" "),t("path",{d:"M12 7.32v14.18"},null),e(" ")])}},qit={name:"FunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M9 12h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yit={name:"FunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z"},null),e(" "),t("path",{d:"M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" ")])}},Uit={name:"GardenCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Git={name:"GardenCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-garden-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055"},null),e(" "),t("path",{d:"M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323"},null),e(" ")])}},Zit={name:"GasStationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6"},null),e(" "),t("path",{d:"M3 20h12"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kit={name:"GasStationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gas-station",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3"},null),e(" "),t("path",{d:"M4 20v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14"},null),e(" "),t("path",{d:"M3 20l12 0"},null),e(" "),t("path",{d:"M18 7v1a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M4 11l10 0"},null),e(" ")])}},Qit={name:"GaugeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726"},null),e(" "),t("path",{d:"M11.283 11.303a1 1 0 0 0 1.419 1.41"},null),e(" "),t("path",{d:"M14 10l2 -2"},null),e(" "),t("path",{d:"M7 12c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jit={name:"GaugeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gauge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M13.41 10.59l2.59 -2.59"},null),e(" "),t("path",{d:"M7 12a5 5 0 0 1 5 -5"},null),e(" ")])}},t0t={name:"GavelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gavel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"},null),e(" "),t("path",{d:"M6 9l4 4"},null),e(" "),t("path",{d:"M13 10l-4 -4"},null),e(" "),t("path",{d:"M3 21h7"},null),e(" "),t("path",{d:"M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"},null),e(" ")])}},e0t={name:"GenderAgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-agender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M7 12h11"},null),e(" ")])}},n0t={name:"GenderAndrogyneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-androgyne",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11l6 -6"},null),e(" "),t("path",{d:"M9 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 9v-4h-4"},null),e(" "),t("path",{d:"M16.5 10.5l-3 -3"},null),e(" ")])}},l0t={name:"GenderBigenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-bigender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M19 3l-5 5"},null),e(" "),t("path",{d:"M15 3h4v4"},null),e(" "),t("path",{d:"M11 16v6"},null),e(" "),t("path",{d:"M8 19h6"},null),e(" ")])}},r0t={name:"GenderDemiboyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demiboy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" ")])}},o0t={name:"GenderDemigirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-demigirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h3"},null),e(" ")])}},s0t={name:"GenderEpiceneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-epicene",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z"},null),e(" "),t("path",{d:"M15.536 15.535l5.464 -5.535"},null),e(" "),t("path",{d:"M3 14l5.464 -5.535"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},a0t={name:"GenderFemaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-female",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},i0t={name:"GenderFemmeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-femme",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},h0t={name:"GenderGenderfluidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderfluid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z"},null),e(" "),t("path",{d:"M15.464 14l3 -5.196"},null),e(" "),t("path",{d:"M5.536 15.195l3 -5.196"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M17 20l3 -3"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" ")])}},d0t={name:"GenderGenderlessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderless",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M7 15h10"},null),e(" ")])}},c0t={name:"GenderGenderqueerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-genderqueer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 11v-8"},null),e(" "),t("path",{d:"M14.5 4.5l-5 3"},null),e(" "),t("path",{d:"M9.5 4.5l5 3"},null),e(" ")])}},u0t={name:"GenderHermaphroditeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-hermaphrodite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z"},null),e(" "),t("path",{d:"M15 3a3 3 0 1 1 -6 0"},null),e(" ")])}},p0t={name:"GenderIntergenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-intergender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 11.5l6.5 6.5v-4"},null),e(" "),t("path",{d:"M11.5 13.5l6.5 6.5"},null),e(" "),t("path",{d:"M9 4a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M14 20l2 -2"},null),e(" ")])}},g0t={name:"GenderMaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-male",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5h-5"},null),e(" "),t("path",{d:"M19 5v5"},null),e(" ")])}},w0t={name:"GenderNeutroisIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-neutrois",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" ")])}},v0t={name:"GenderThirdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-third",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0z"},null),e(" "),t("path",{d:"M11 12h-3"},null),e(" "),t("path",{d:"M8 12l-5 -4v8z"},null),e(" ")])}},f0t={name:"GenderTransgenderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-transgender",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M15 9l6 -6"},null),e(" "),t("path",{d:"M21 7v-4h-4"},null),e(" "),t("path",{d:"M9 9l-6 -6"},null),e(" "),t("path",{d:"M3 7v-4h4"},null),e(" "),t("path",{d:"M5.5 8.5l3 -3"},null),e(" "),t("path",{d:"M12 16v5"},null),e(" "),t("path",{d:"M9.5 19h5"},null),e(" ")])}},m0t={name:"GenderTrasvestiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gender-trasvesti",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10z"},null),e(" "),t("path",{d:"M6 6l5.4 5.4"},null),e(" "),t("path",{d:"M4 8l4 -4"},null),e(" ")])}},k0t={name:"GeometryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-geometry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714"},null),e(" "),t("path",{d:"M12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},b0t={name:"Ghost2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.999l.041 .002l.208 .003a8 8 0 0 1 7.747 7.747l.003 .248l.177 .006a3 3 0 0 1 2.819 2.819l.005 .176a3 3 0 0 1 -3 3l-.001 1.696l1.833 2.75a1 1 0 0 1 -.72 1.548l-.112 .006h-10c-3.445 .002 -6.327 -2.49 -6.901 -5.824l-.028 -.178l-.071 .001a3 3 0 0 1 -2.995 -2.824l-.005 -.175a3 3 0 0 1 3 -3l.004 -.25a8 8 0 0 1 7.996 -7.75zm0 10.001a2 2 0 0 0 -2 2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1a2 2 0 0 0 -2 -2zm-1.99 -4l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},M0t={name:"Ghost2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9h.01"},null),e(" "),t("path",{d:"M14 9h.01"},null),e(" "),t("path",{d:"M12 3a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7z"},null),e(" "),t("path",{d:"M11 14h2a1 1 0 0 0 -2 0z"},null),e(" ")])}},x0t={name:"GhostFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a8 8 0 0 1 7.996 7.75l.004 .25l-.001 6.954l.01 .103a2.78 2.78 0 0 1 -1.468 2.618l-.163 .08c-1.053 .475 -2.283 .248 -3.129 -.593l-.137 -.146a.65 .65 0 0 0 -1.024 0a2.65 2.65 0 0 1 -4.176 0a.65 .65 0 0 0 -.512 -.25c-.2 0 -.389 .092 -.55 .296a2.78 2.78 0 0 1 -4.859 -2.005l.008 -.091l.001 -6.966l.004 -.25a8 8 0 0 1 7.996 -7.75zm2.82 10.429a1 1 0 0 0 -1.391 -.25a2.5 2.5 0 0 1 -2.858 0a1 1 0 0 0 -1.142 1.642a4.5 4.5 0 0 0 5.142 0a1 1 0 0 0 .25 -1.392zm-4.81 -4.429l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm4 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},z0t={name:"GhostOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434"},null),e(" "),t("path",{d:"M14 10h.01"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I0t={name:"GhostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ghost",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7"},null),e(" "),t("path",{d:"M10 10l.01 0"},null),e(" "),t("path",{d:"M14 10l.01 0"},null),e(" "),t("path",{d:"M10 14a3.5 3.5 0 0 0 4 0"},null),e(" ")])}},y0t={name:"GifIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gif",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M16 16v-8h5"},null),e(" "),t("path",{d:"M20 12h-4"},null),e(" ")])}},C0t={name:"GiftCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 16l3 -3l3 3"},null),e(" "),t("path",{d:"M8 13c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z"},null),e(" ")])}},S0t={name:"GiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M19 12v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$0t={name:"GiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 8l0 13"},null),e(" "),t("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"},null),e(" ")])}},A0t={name:"GitBranchDeletedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch-deleted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" "),t("path",{d:"M15 4l4 4"},null),e(" "),t("path",{d:"M15 8l4 -4"},null),e(" ")])}},B0t={name:"GitBranchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-branch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M9 18h6a2 2 0 0 0 2 -2v-5"},null),e(" "),t("path",{d:"M14 14l3 -3l3 3"},null),e(" ")])}},H0t={name:"GitCherryPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-cherry-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 3v6"},null),e(" "),t("path",{d:"M7 15v6"},null),e(" "),t("path",{d:"M13 7h2.5l1.5 5l-1.5 5h-2.5"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" ")])}},N0t={name:"GitCommitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-commit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 3l0 6"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" ")])}},j0t={name:"GitCompareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-compare",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" "),t("path",{d:"M13 18h-5a2 2 0 0 1 -2 -2v-8"},null),e(" "),t("path",{d:"M10 15l3 3l-3 3"},null),e(" ")])}},P0t={name:"GitForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},L0t={name:"GitMergeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-merge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 8l0 8"},null),e(" "),t("path",{d:"M7 8a4 4 0 0 0 4 4h4"},null),e(" ")])}},D0t={name:"GitPullRequestClosedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-closed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11v5"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},O0t={name:"GitPullRequestDraftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request-draft",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 11h.01"},null),e(" "),t("path",{d:"M18 6h.01"},null),e(" ")])}},F0t={name:"GitPullRequestIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-git-pull-request",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 8l0 8"},null),e(" "),t("path",{d:"M11 6h5a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M14 9l-3 -3l3 -3"},null),e(" ")])}},R0t={name:"GizmoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gizmo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 19l-8 -5.5l-8 5.5"},null),e(" "),t("path",{d:"M12 4v9.5"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},T0t={name:"GlassFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" "),t("path",{d:"M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0"},null),e(" ")])}},E0t={name:"GlassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M7 3h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V0t={name:"GlassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-glass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 15l0 6"},null),e(" "),t("path",{d:"M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z"},null),e(" ")])}},_0t={name:"GlobeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555"},null),e(" "),t("path",{d:"M12 18v4"},null),e(" "),t("path",{d:"M8 22h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W0t={name:"GlobeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-globe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M6.75 16a8.015 8.015 0 1 0 9.25 -13"},null),e(" "),t("path",{d:"M12 18l0 4"},null),e(" "),t("path",{d:"M8 22l8 0"},null),e(" ")])}},X0t={name:"GoGameIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-go-game",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h7m4 0h7"},null),e(" "),t("path",{d:"M3 6h1m4 0h13"},null),e(" "),t("path",{d:"M3 18h1m4 0h8m4 0h1"},null),e(" "),t("path",{d:"M6 3v1m0 4v8m0 4v1"},null),e(" "),t("path",{d:"M12 3v7m0 4v7"},null),e(" "),t("path",{d:"M18 3v13m0 4v1"},null),e(" ")])}},q0t={name:"GolfOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-6m0 -4v-5l7 4l-5.07 2.897"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y0t={name:"GolfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-golf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18v-15l7 4l-7 4"},null),e(" "),t("path",{d:"M9 17.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33"},null),e(" ")])}},U0t={name:"GpsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gps",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l-1 -4l-4 -1l9 -4z"},null),e(" ")])}},G0t={name:"GradienterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-gradienter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7"},null),e(" "),t("path",{d:"M20.78 10a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Z0t={name:"GrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M14.5 19.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19.5 14.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},K0t={name:"GraphOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q0t={name:"GraphIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-graph",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 14l3 -3l2 2l3 -3l2 2"},null),e(" ")])}},J0t={name:"Grave2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171"},null),e(" "),t("path",{d:"M12 7v5"},null),e(" "),t("path",{d:"M10 9h4"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" ")])}},tht={name:"GraveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z"},null),e(" "),t("path",{d:"M10 16v-5h-4v-4h4v-4h4v4h4v4h-4v5"},null),e(" ")])}},eht={name:"GridDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},nht={name:"GridPatternIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grid-pattern",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" ")])}},lht={name:"GrillForkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-fork",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5l11.5 11.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05"},null),e(" ")])}},rht={name:"GrillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7"},null),e(" "),t("path",{d:"M18.827 18.815a2 2 0 1 1 -2.663 -2.633"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oht={name:"GrillSpatulaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill-spatula",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.2 10.2l6.3 6.3"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" "),t("path",{d:"M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z"},null),e(" ")])}},sht={name:"GrillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225z"},null),e(" "),t("path",{d:"M17 20a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M15 14l1 2"},null),e(" "),t("path",{d:"M9 14l-3 6"},null),e(" "),t("path",{d:"M15 18h-8"},null),e(" "),t("path",{d:"M15 5v-1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" "),t("path",{d:"M9 5v-1"},null),e(" ")])}},aht={name:"GripHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},iht={name:"GripVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-grip-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hht={name:"GrowthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-growth",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6"},null),e(" ")])}},dht={name:"GuitarPickFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-1.613 0 -2.882 .104 -3.825 .323l-.23 .057c-3.019 .708 -4.945 2.503 -4.945 5.62c0 3.367 1.939 8.274 4.22 11.125c.32 .4 .664 .786 1.03 1.158l.367 .36a4.904 4.904 0 0 0 6.752 .011a15.04 15.04 0 0 0 1.41 -1.528c2.491 -3.113 4.221 -7.294 4.221 -11.126c0 -3.025 -1.813 -4.806 -4.71 -5.562l-.266 -.066c-.936 -.25 -2.281 -.372 -4.024 -.372z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},cht={name:"GuitarPickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-guitar-pick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z"},null),e(" ")])}},uht={name:"H1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18v-8l-2 2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},pht={name:"H2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},ght={name:"H3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M17 16a2 2 0 1 0 2 -2"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},wht={name:"H4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18v-8l-4 6h5"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},vht={name:"H5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 18h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},fht={name:"H6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-h-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z"},null),e(" "),t("path",{d:"M21 12a2 2 0 1 0 -4 0v4"},null),e(" "),t("path",{d:"M4 6v12"},null),e(" "),t("path",{d:"M12 6v12"},null),e(" "),t("path",{d:"M11 18h2"},null),e(" "),t("path",{d:"M3 18h2"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M3 6h2"},null),e(" "),t("path",{d:"M11 6h2"},null),e(" ")])}},mht={name:"HammerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676"},null),e(" "),t("path",{d:"M18.713 14.702l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kht={name:"HammerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hammer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385"},null),e(" "),t("path",{d:"M18.121 15.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z"},null),e(" ")])}},bht={name:"HandClickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-click",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M5 3l-1 -1"},null),e(" "),t("path",{d:"M4 7h-1"},null),e(" "),t("path",{d:"M14 3l1 -1"},null),e(" "),t("path",{d:"M15 6h1"},null),e(" ")])}},Mht={name:"HandFingerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-5"},null),e(" "),t("path",{d:"M8.06 4.077a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1"},null),e(" "),t("path",{d:"M12.063 8.065a1.5 1.5 0 0 1 1.937 1.435v.5"},null),e(" "),t("path",{d:"M14.06 10.082a1.5 1.5 0 0 1 2.94 .418v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xht={name:"HandFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},zht={name:"HandGrabIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-grab",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5"},null),e(" "),t("path",{d:"M14 7.5a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Iht={name:"HandLittleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-little-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" ")])}},yht={name:"HandMiddleFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-middle-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-8a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Cht={name:"HandMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"},null),e(" "),t("path",{d:"M14 3.458c1.32 .354 2.558 .902 3.685 1.612"},null),e(" ")])}},Sht={name:"HandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8 13.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75"},null),e(" ")])}},$ht={name:"HandRingFingerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-ring-finger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 11.5v-2a1.5 1.5 0 1 1 3 0v2.5"},null),e(" "),t("path",{d:"M14 12v-6.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},Aht={name:"HandRockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-rock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M17 12v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" ")])}},Bht={name:"HandSanitizerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-sanitizer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10z"},null),e(" "),t("path",{d:"M15 3h-6a2 2 0 0 0 -2 2"},null),e(" "),t("path",{d:"M12 3v5"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},Hht={name:"HandStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" "),t("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" ")])}},Nht={name:"HandThreeFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-three-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" "),t("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"},null),e(" ")])}},jht={name:"HandTwoFingersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hand-two-fingers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"},null),e(" "),t("path",{d:"M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"},null),e(" "),t("path",{d:"M14 10.5a1.5 1.5 0 0 1 3 0v1.5"},null),e(" "),t("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"},null),e(" ")])}},Pht={name:"Hanger2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1"},null),e(" "),t("path",{d:"M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M6 16m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Lht={name:"HangerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dht={name:"HangerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hanger",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428"},null),e(" ")])}},Oht={name:"HashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 9l14 0"},null),e(" "),t("path",{d:"M5 15l14 0"},null),e(" "),t("path",{d:"M11 4l-4 16"},null),e(" "),t("path",{d:"M17 4l-4 16"},null),e(" ")])}},Fht={name:"HazeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-haze",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M20 12h1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M8 12a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 16h18"},null),e(" "),t("path",{d:"M3 20h18"},null),e(" ")])}},Rht={name:"HdrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hdr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M17 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},Tht={name:"HeadingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 7v12"},null),e(" "),t("path",{d:"M17 5v8m0 4v2"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Eht={name:"HeadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 5v14"},null),e(" "),t("path",{d:"M17 5v14"},null),e(" "),t("path",{d:"M15 19h4"},null),e(" "),t("path",{d:"M15 5h4"},null),e(" "),t("path",{d:"M5 19h4"},null),e(" "),t("path",{d:"M5 5h4"},null),e(" ")])}},Vht={name:"HeadphonesFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},_ht={name:"HeadphonesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 13h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3"},null),e(" "),t("path",{d:"M4 15v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3"},null),e(" ")])}},Wht={name:"HeadphonesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headphones",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15v-3a8 8 0 0 1 16 0v3"},null),e(" ")])}},Xht={name:"HeadsetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3c0 -1.953 .7 -3.742 1.862 -5.13m2.182 -1.825a8 8 0 0 1 11.956 6.955v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M16.169 12.18c.253 -.115 .534 -.18 .831 -.18h1a2 2 0 0 1 2 2v2m-1.183 2.826c-.25 .112 -.526 .174 -.817 .174h-1a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qht={name:"HeadsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-headset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 14v-3a8 8 0 1 1 16 0v3"},null),e(" "),t("path",{d:"M18 19c0 1.657 -2.686 3 -6 3"},null),e(" "),t("path",{d:"M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" "),t("path",{d:"M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z"},null),e(" ")])}},Yht={name:"HealthRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-health-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z"},null),e(" ")])}},Uht={name:"HeartBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-2 4l4 3l-2 4v3"},null),e(" ")])}},Ght={name:"HeartFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zht={name:"HeartHandshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-handshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M12 6l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25"},null),e(" "),t("path",{d:"M12.5 15.5l2 2"},null),e(" "),t("path",{d:"M15 13l2 2"},null),e(" ")])}},Kht={name:"HeartMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" ")])}},Qht={name:"HeartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19.5 12.572l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},Jht={name:"HeartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6"},null),e(" "),t("path",{d:"M14 16h6"},null),e(" "),t("path",{d:"M17 13v6"},null),e(" ")])}},t2t={name:"HeartRateMonitorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart-rate-monitor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9 16v4"},null),e(" "),t("path",{d:"M15 16v4"},null),e(" "),t("path",{d:"M7 10h2l2 3l2 -6l1 3h3"},null),e(" ")])}},e2t={name:"HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"},null),e(" ")])}},n2t={name:"HeartbeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-heartbeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"},null),e(" "),t("path",{d:"M3 13h2l2 3l2 -6l1 3h3"},null),e(" ")])}},l2t={name:"HeartsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M11.814 11.814a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r2t={name:"HeartsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hearts",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784"},null),e(" "),t("path",{d:"M15.99 20l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z"},null),e(" ")])}},o2t={name:"HelicopterLandingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter-landing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l0 8"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M15 8l0 8"},null),e(" ")])}},s2t={name:"HelicopterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helicopter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l1 2h6"},null),e(" "),t("path",{d:"M12 9a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2z"},null),e(" "),t("path",{d:"M13 9l0 -3"},null),e(" "),t("path",{d:"M5 6l15 0"},null),e(" "),t("path",{d:"M15 9.1v3.9h5.5"},null),e(" "),t("path",{d:"M15 19l0 -3"},null),e(" "),t("path",{d:"M19 19l-8 0"},null),e(" ")])}},a2t={name:"HelmetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847"},null),e(" "),t("path",{d:"M20 9h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},i2t={name:"HelmetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-helmet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z"},null),e(" "),t("path",{d:"M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5"},null),e(" ")])}},h2t={name:"HelpCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d2t={name:"HelpCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},c2t={name:"HelpHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 13.586a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u2t={name:"HelpHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},p2t={name:"HelpOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},g2t={name:"HelpOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},w2t={name:"HelpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v2t={name:"HelpSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},f2t={name:"HelpSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m2t={name:"HelpSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 13a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},k2t={name:"HelpSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},b2t={name:"HelpSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},M2t={name:"HelpTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 14a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},x2t={name:"HelpTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" "),t("path",{d:"M12 17v.01"},null),e(" "),t("path",{d:"M12 14a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},z2t={name:"HelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 17l0 .01"},null),e(" "),t("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"},null),e(" ")])}},I2t={name:"HemisphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.588 6.603c-2.178 .547 -3.588 1.417 -3.588 2.397c0 1.657 4.03 3 9 3m3.72 -.267c3.114 -.473 5.28 -1.518 5.28 -2.733c0 -1.657 -4.03 -3 -9 -3c-.662 0 -1.308 .024 -1.93 .07"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 13.677 7.69m2.165 -1.843a8.965 8.965 0 0 0 2.158 -5.847"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},y2t={name:"HemispherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 9 9m8.396 -5.752a8.978 8.978 0 0 0 .604 -3.248"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},C2t={name:"HemisphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hemisphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-9 0a9 3 0 1 0 18 0a9 3 0 1 0 -18 0"},null),e(" "),t("path",{d:"M3 9a9 9 0 0 0 18 0"},null),e(" ")])}},S2t={name:"Hexagon0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm1.575 5.586a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$2t={name:"Hexagon1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm.952 5.803l-.084 .076l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114c-.083 -.777 -1.008 -1.16 -1.617 -.67z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},A2t={name:"Hexagon2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},B2t={name:"Hexagon3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H2t={name:"Hexagon3dIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-3d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03z"},null),e(" "),t("path",{d:"M12 16.5v4.5"},null),e(" "),t("path",{d:"M4.5 7.5l3.5 2.5"},null),e(" "),t("path",{d:"M16 10l4 -2.5"},null),e(" "),t("path",{d:"M12 7.5v4.5l-4 2"},null),e(" "),t("path",{d:"M12 12l4 2"},null),e(" "),t("path",{d:"M12 16.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z"},null),e(" ")])}},N2t={name:"Hexagon4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j2t={name:"Hexagon5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},P2t={name:"Hexagon6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},L2t={name:"Hexagon7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm3.575 5.586h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},D2t={name:"Hexagon8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O2t={name:"Hexagon9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.216 0l6.775 3.995c.067 .04 .127 .084 .18 .133l.008 .007l.107 .076a3.223 3.223 0 0 1 1.284 2.39l.005 .203v7.284c0 1.175 -.643 2.256 -1.623 2.793l-6.804 4.302c-.98 .538 -2.166 .538 -3.2 -.032l-6.695 -4.237a3.226 3.226 0 0 1 -1.678 -2.826v-7.285a3.21 3.21 0 0 1 1.65 -2.808zm2.575 5.586h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},F2t={name:"HexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414l-6.775 3.996a3.21 3.21 0 0 0 -1.65 2.807v7.285a3.226 3.226 0 0 0 1.678 2.826l6.695 4.237c1.034 .57 2.22 .57 3.2 .032l6.804 -4.302c.98 -.537 1.623 -1.618 1.623 -2.793v-7.284l-.005 -.204a3.223 3.223 0 0 0 -1.284 -2.39l-.107 -.075l-.007 -.007a1.074 1.074 0 0 0 -.181 -.133l-6.776 -3.995a3.33 3.33 0 0 0 -3.216 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R2t={name:"HexagonLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},T2t={name:"HexagonLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},E2t={name:"HexagonLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},V2t={name:"HexagonLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},_2t={name:"HexagonLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},W2t={name:"HexagonLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},X2t={name:"HexagonLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},q2t={name:"HexagonLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Y2t={name:"HexagonLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},U2t={name:"HexagonLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},G2t={name:"HexagonLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},Z2t={name:"HexagonLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},K2t={name:"HexagonLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},Q2t={name:"HexagonLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},J2t={name:"HexagonLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},t1t={name:"HexagonLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},e1t={name:"HexagonLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},n1t={name:"HexagonLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},l1t={name:"HexagonLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},r1t={name:"HexagonLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},o1t={name:"HexagonLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},s1t={name:"HexagonLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},a1t={name:"HexagonLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},i1t={name:"HexagonLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},h1t={name:"HexagonLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},d1t={name:"HexagonLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},c1t={name:"HexagonNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},u1t={name:"HexagonNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},p1t={name:"HexagonNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},g1t={name:"HexagonNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},w1t={name:"HexagonNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},v1t={name:"HexagonNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},f1t={name:"HexagonNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},m1t={name:"HexagonNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},k1t={name:"HexagonNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},b1t={name:"HexagonNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},M1t={name:"HexagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},x1t={name:"HexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" ")])}},z1t={name:"HexagonalPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-1.87m-4 0h-1.87c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v2m0 4v5"},null),e(" "),t("path",{d:"M20.972 16.968a2.01 2.01 0 0 0 .028 -.337v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266a1.99 1.99 0 0 0 -1.066 .309m-2.345 1.643l-1.103 .774a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h7.265c.41 0 .811 -.126 1.147 -.363l2.26 -1.587"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I1t={name:"HexagonalPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v3.5"},null),e(" "),t("path",{d:"M21 12.5v-5.131c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644l3.367 2.363a2 2 0 0 0 1.147 .362h4.133"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},y1t={name:"HexagonalPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.792 6.996l-3.775 2.643a2.005 2.005 0 0 1 -1.147 .361h-7.74c-.41 0 -.81 -.126 -1.146 -.362l-3.774 -2.641"},null),e(" "),t("path",{d:"M8 10v11"},null),e(" "),t("path",{d:"M16 10v11"},null),e(" "),t("path",{d:"M3.853 18.274l3.367 2.363a2 2 0 0 0 1.147 .363h7.265c.41 0 .811 -.126 1.147 -.363l3.367 -2.363c.536 -.375 .854 -.99 .854 -1.643v-9.262c0 -.655 -.318 -1.268 -.853 -1.643l-3.367 -2.363a2 2 0 0 0 -1.147 -.363h-7.266c-.41 0 -.811 .126 -1.147 .363l-3.367 2.363a2.006 2.006 0 0 0 -.853 1.644v9.261c0 .655 .318 1.269 .853 1.644z"},null),e(" ")])}},C1t={name:"HexagonalPyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.877 7.88l-4.56 7.53a1.988 1.988 0 0 0 .266 2.484l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l1.264 -1.263m1.792 -2.205a1.986 1.986 0 0 0 -.262 -1.538l-7.846 -12.954a.996 .996 0 0 0 -1.676 0l-1.772 2.926"},null),e(" "),t("path",{d:"M12 2l-1.254 4.742m-.841 3.177l-2.905 10.981"},null),e(" "),t("path",{d:"M12 2l2.153 8.14m1.444 5.457l1.403 5.303"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},S1t={name:"HexagonalPyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.642 12.04l-5.804 -9.583a.996 .996 0 0 0 -1.676 0l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h4.982"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l3.304 12.489"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},$1t={name:"HexagonalPyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagonal-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.162 2.457l-7.846 12.954a1.988 1.988 0 0 0 .267 2.483l2.527 2.523c.374 .373 .88 .583 1.408 .583h8.964c.528 0 1.034 -.21 1.408 -.583l2.527 -2.523a1.988 1.988 0 0 0 .267 -2.483l-7.846 -12.954a.996 .996 0 0 0 -1.676 0z"},null),e(" "),t("path",{d:"M12 2l-5 18.9"},null),e(" "),t("path",{d:"M12 2l5 18.9"},null),e(" ")])}},A1t={name:"HexagonsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-3m1.332 -2.666l2.668 -1.334l4 2v5"},null),e(" "),t("path",{d:"M12 13l.661 -.331"},null),e(" "),t("path",{d:"M15.345 11.328l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B1t={name:"HexagonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hexagons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-5l4 -2l4 2v5l-4 2z"},null),e(" "),t("path",{d:"M8 11v-5l4 -2l4 2v5"},null),e(" "),t("path",{d:"M12 13l4 -2l4 2v5l-4 2l-4 -2"},null),e(" ")])}},H1t={name:"Hierarchy2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3h4v4h-4z"},null),e(" "),t("path",{d:"M3 17h4v4h-4z"},null),e(" "),t("path",{d:"M17 17h4v4h-4z"},null),e(" "),t("path",{d:"M7 17l5 -4l5 4"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},N1t={name:"Hierarchy3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17l2 -3"},null),e(" "),t("path",{d:"M9 10l2 -3"},null),e(" "),t("path",{d:"M13 7l2 3"},null),e(" "),t("path",{d:"M17 14l2 3"},null),e(" "),t("path",{d:"M15 14l-2 3"},null),e(" "),t("path",{d:"M9 14l2 3"},null),e(" ")])}},j1t={name:"HierarchyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.585 17.587a2 2 0 0 0 2.813 2.843"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7v1m0 4v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},P1t={name:"HierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l5.5 -4.5l5.5 4.5"},null),e(" "),t("path",{d:"M12 7l0 6"},null),e(" ")])}},L1t={name:"HighlightOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M19 15h2v2m-2 2h-6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D1t={name:"HighlightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-highlight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M12.5 5.5l4 4"},null),e(" "),t("path",{d:"M4.5 13.5l4 4"},null),e(" "),t("path",{d:"M21 15v4h-8l4 -4z"},null),e(" ")])}},O1t={name:"HistoryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F1t={name:"HistoryToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4l3 3"},null),e(" ")])}},R1t={name:"HistoryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-history",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l0 4l2 2"},null),e(" "),t("path",{d:"M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},T1t={name:"Home2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M10 12h4v4h-4z"},null),e(" ")])}},E1t={name:"HomeBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815"},null),e(" "),t("path",{d:"M19 14l-2 4h4l-2 4"},null),e(" ")])}},V1t={name:"HomeCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642"},null),e(" ")])}},_1t={name:"HomeCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 13.488v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},W1t={name:"HomeCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.6"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" ")])}},X1t={name:"HomeDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},q1t={name:"HomeDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" ")])}},Y1t={name:"HomeDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},U1t={name:"HomeEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},G1t={name:"HomeEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Z1t={name:"HomeExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},K1t={name:"HomeHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M16 17.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z"},null),e(" ")])}},Q1t={name:"HomeHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304"},null),e(" "),t("path",{d:"M19 21.5l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z"},null),e(" ")])}},J1t={name:"HomeInfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032"},null),e(" "),t("path",{d:"M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419"},null),e(" "),t("path",{d:"M15.54 17.582l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0"},null),e(" ")])}},tdt={name:"HomeLinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143"},null),e(" "),t("path",{d:"M21 21m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 16l-5 3l5 2"},null),e(" ")])}},edt={name:"HomeMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" ")])}},ndt={name:"HomeMoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-move",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},ldt={name:"HomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rdt={name:"HomePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},odt={name:"HomeQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},sdt={name:"HomeRibbonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-ribbon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15h5v7l-2.5 -1.5l-2.5 1.5z"},null),e(" "),t("path",{d:"M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" ")])}},adt={name:"HomeSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},idt={name:"HomeShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127"},null),e(" "),t("path",{d:"M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},hdt={name:"HomeShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.341"},null),e(" "),t("path",{d:"M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},ddt={name:"HomeSignalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-signal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 22v-2"},null),e(" "),t("path",{d:"M18 22v-4"},null),e(" "),t("path",{d:"M21 22v-6"},null),e(" "),t("path",{d:"M19 12.494v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},cdt={name:"HomeStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h1.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},udt={name:"HomeStatsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-stats",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M13 22l3 -3l2 2l4 -4"},null),e(" "),t("path",{d:"M19 17h3v3"},null),e(" ")])}},pdt={name:"HomeUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771"},null),e(" "),t("path",{d:"M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},gdt={name:"HomeXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},wdt={name:"HomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l-2 0l9 -9l9 9l-2 0"},null),e(" "),t("path",{d:"M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"},null),e(" "),t("path",{d:"M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"},null),e(" ")])}},vdt={name:"HorseToyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-horse-toy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 17.5c5.667 4.667 11.333 4.667 17 0"},null),e(" "),t("path",{d:"M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M5 18.5l2 -9.5"},null),e(" "),t("path",{d:"M8 20l2 -5h4l2 5"},null),e(" ")])}},fdt={name:"HotelServiceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hotel-service",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"},null),e(" ")])}},mdt={name:"HourglassEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},kdt={name:"HourglassFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a2 2 0 0 1 1.995 1.85l.005 .15v2a6.996 6.996 0 0 1 -3.393 6a6.994 6.994 0 0 1 3.388 5.728l.005 .272v2a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-2a6.996 6.996 0 0 1 3.393 -6a6.994 6.994 0 0 1 -3.388 -5.728l-.005 -.272v-2a2 2 0 0 1 1.85 -1.995l.15 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bdt={name:"HourglassHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Mdt={name:"HourglassLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},xdt={name:"HourglassOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6"},null),e(" "),t("path",{d:"M6 6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zdt={name:"HourglassIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-hourglass",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 7h11"},null),e(" "),t("path",{d:"M6.5 17h11"},null),e(" "),t("path",{d:"M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"},null),e(" ")])}},Idt={name:"HtmlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-html",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M1 16v-8"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M1 12h4"},null),e(" "),t("path",{d:"M7 8h4"},null),e(" "),t("path",{d:"M9 8v8"},null),e(" "),t("path",{d:"M20 8v8h3"},null),e(" ")])}},ydt={name:"HttpConnectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-connect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M17 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},Cdt={name:"HttpDeleteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-delete",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" ")])}},Sdt={name:"HttpGetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-get",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},$dt={name:"HttpHeadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-head",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16v-8"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},Adt={name:"HttpOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Bdt={name:"HttpPatchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-patch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" ")])}},Hdt={name:"HttpPostIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-post",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},Ndt={name:"HttpPutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-put",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},jdt={name:"HttpQueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-que",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M6 15l1 1"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},Pdt={name:"HttpTraceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-http-trace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M17 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M17 13h4"},null),e(" ")])}},Ldt={name:"IceCream2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 11a6 6 0 1 0 -11.315 0"},null),e(" "),t("path",{d:"M6.342 11l5.658 11l5.657 -11z"},null),e(" ")])}},Ddt={name:"IceCreamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 8v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294"},null),e(" "),t("path",{d:"M8 10.5l1.74 -.76m2.79 -1.222l3.47 -1.518"},null),e(" "),t("path",{d:"M8 14.5l4.488 -1.964"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Odt={name:"IceCreamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-cream",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5v-4.5"},null),e(" "),t("path",{d:"M8 17h8v-10a4 4 0 1 0 -8 0v10z"},null),e(" "),t("path",{d:"M8 10.5l8 -3.5"},null),e(" "),t("path",{d:"M8 14.5l8 -3.5"},null),e(" ")])}},Fdt={name:"IceSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ice-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M3 19h17a1 1 0 0 0 1 -1"},null),e(" "),t("path",{d:"M9 15v4"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" ")])}},Rdt={name:"IconsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M18 14h3v3m0 4h-7v-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tdt={name:"IconsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-icons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M2.5 21h8l-4 -7z"},null),e(" "),t("path",{d:"M14 3l7 7"},null),e(" "),t("path",{d:"M14 10l7 -7"},null),e(" "),t("path",{d:"M14 14h7v7h-7z"},null),e(" ")])}},Edt={name:"IdBadge2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12h3v4h-3z"},null),e(" "),t("path",{d:"M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" ")])}},Vdt={name:"IdBadgeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869"},null),e(" "),t("path",{d:"M11.179 11.176a2 2 0 1 0 2.635 2.667"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_dt={name:"IdBadgeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-badge",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 6h4"},null),e(" "),t("path",{d:"M9 18h6"},null),e(" ")])}},Wdt={name:"IdOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559"},null),e(" "),t("path",{d:"M8.175 8.178a2 2 0 1 0 2.646 2.65"},null),e(" "),t("path",{d:"M15 8h2"},null),e(" "),t("path",{d:"M16 12h1"},null),e(" "),t("path",{d:"M7 16h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Xdt={name:"IdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-id",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8l2 0"},null),e(" "),t("path",{d:"M15 12l2 0"},null),e(" "),t("path",{d:"M7 16l10 0"},null),e(" ")])}},qdt={name:"InboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l.987 -.987m2.013 -2.013h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ydt={name:"InboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13h3l3 3h4l3 -3h3"},null),e(" ")])}},Udt={name:"IndentDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-7 0"},null),e(" "),t("path",{d:"M20 12l-9 0"},null),e(" "),t("path",{d:"M20 18l-7 0"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" ")])}},Gdt={name:"IndentIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-indent-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6l-11 0"},null),e(" "),t("path",{d:"M20 12l-7 0"},null),e(" "),t("path",{d:"M20 18l-11 0"},null),e(" "),t("path",{d:"M4 8l4 4l-4 4"},null),e(" ")])}},Zdt={name:"InfinityOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Kdt={name:"InfinityIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-infinity",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828"},null),e(" ")])}},Qdt={name:"InfoCircleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Jdt={name:"InfoCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},tct={name:"InfoHexagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.425 1.414a3.33 3.33 0 0 1 3.026 -.097l.19 .097l6.775 3.995l.096 .063l.092 .077l.107 .075a3.224 3.224 0 0 1 1.266 2.188l.018 .202l.005 .204v7.284c0 1.106 -.57 2.129 -1.454 2.693l-.17 .1l-6.803 4.302c-.918 .504 -2.019 .535 -3.004 .068l-.196 -.1l-6.695 -4.237a3.225 3.225 0 0 1 -1.671 -2.619l-.007 -.207v-7.285c0 -1.106 .57 -2.128 1.476 -2.705l6.95 -4.098zm1.575 9.586h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ect={name:"InfoHexagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-hexagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27c.7 .398 1.13 1.143 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},nct={name:"InfoOctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.897 1a4 4 0 0 1 2.664 1.016l.165 .156l4.1 4.1a4 4 0 0 1 1.168 2.605l.006 .227v5.794a4 4 0 0 1 -1.016 2.664l-.156 .165l-4.1 4.1a4 4 0 0 1 -2.603 1.168l-.227 .006h-5.795a3.999 3.999 0 0 1 -2.664 -1.017l-.165 -.156l-4.1 -4.1a4 4 0 0 1 -1.168 -2.604l-.006 -.227v-5.794a4 4 0 0 1 1.016 -2.664l.156 -.165l4.1 -4.1a4 4 0 0 1 2.605 -1.168l.227 -.006h5.793zm-2.897 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},lct={name:"InfoOctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.1a3 3 0 0 1 .88 2.125v5.794a3 3 0 0 1 -.879 2.122l-4.1 4.101a3 3 0 0 1 -2.123 .88h-5.795a3 3 0 0 1 -2.122 -.88l-4.101 -4.1a3 3 0 0 1 -.88 -2.124v-5.794a3 3 0 0 1 .879 -2.122l4.1 -4.101a3 3 0 0 1 2.125 -.88z"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},rct={name:"InfoSmallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-small",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},oct={name:"InfoSquareFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 2a3 3 0 0 1 2.995 2.824l.005 .176v14a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-14a3 3 0 0 1 2.824 -2.995l.176 -.005h14zm-7 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sct={name:"InfoSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},act={name:"InfoSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ict={name:"InfoSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9h.01"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M11 12h1v4h1"},null),e(" ")])}},hct={name:"InfoTriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.94 2a2.99 2.99 0 0 1 2.45 1.279l.108 .164l8.431 14.074a2.989 2.989 0 0 1 -2.366 4.474l-.2 .009h-16.856a2.99 2.99 0 0 1 -2.648 -4.308l.101 -.189l8.425 -14.065a2.989 2.989 0 0 1 2.555 -1.438zm.06 10h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dct={name:"InfoTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-info-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10h.01"},null),e(" "),t("path",{d:"M11 13h1v4h1"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},cct={name:"InnerShadowBottomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.144 4.72c3.92 -3.695 10.093 -3.625 13.927 .209c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.32 10.816a1 1 0 1 0 -1.414 1.414a7 7 0 0 0 9.9 0a1 1 0 0 0 -1.414 -1.414a5 5 0 0 1 -7.072 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uct={name:"InnerShadowBottomLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm-6 9a1 1 0 0 0 -1 1a7 7 0 0 0 7 7a1 1 0 0 0 0 -2a5 5 0 0 1 -5 -5a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pct={name:"InnerShadowBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 0 6 6"},null),e(" ")])}},gct={name:"InnerShadowBottomRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm6 9a1 1 0 0 0 -1 1a5 5 0 0 1 -5 5a1 1 0 0 0 0 2a7 7 0 0 0 7 -7a1 1 0 0 0 -1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wct={name:"InnerShadowBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 1 -6 6"},null),e(" ")])}},vct={name:"InnerShadowBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 0 8.486 0"},null),e(" ")])}},fct={name:"InnerShadowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm3.535 2.121a1 1 0 0 0 -1.414 0a7 7 0 0 0 0 9.9a1 1 0 1 0 1.414 -1.414a5 5 0 0 1 0 -7.072a1 1 0 0 0 0 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},mct={name:"InnerShadowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M7.757 16.243a6 6 0 0 1 0 -8.486"},null),e(" ")])}},kct={name:"InnerShadowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a1 1 0 0 0 -1.413 1.414a5 5 0 0 1 0 7.072a1 1 0 0 0 1.414 1.414a7 7 0 0 0 0 -9.9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bct={name:"InnerShadowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 1 0 8.486"},null),e(" ")])}},Mct={name:"InnerShadowTopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.929 4.929c3.905 -3.905 10.237 -3.905 14.142 0c3.905 3.905 3.905 10.237 0 14.142c-3.905 3.905 -10.237 3.905 -14.142 0c-3.905 -3.905 -3.905 -10.237 0 -14.142zm12.02 2.121a7 7 0 0 0 -9.899 0a1 1 0 0 0 1.414 1.414a5 5 0 0 1 7.072 0a1 1 0 0 0 1.414 -1.414z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},xct={name:"InnerShadowTopLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a7 7 0 0 0 -7 7a1 1 0 0 0 2 0a5 5 0 0 1 5 -5a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zct={name:"InnerShadowTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18z"},null),e(" "),t("path",{d:"M6 12a6 6 0 0 1 6 -6"},null),e(" ")])}},Ict={name:"InnerShadowTopRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10zm0 3a1 1 0 0 0 0 2a5 5 0 0 1 5 5a1 1 0 0 0 2 0a7 7 0 0 0 -7 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yct={name:"InnerShadowTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z"},null),e(" "),t("path",{d:"M18 12a6 6 0 0 0 -6 -6"},null),e(" ")])}},Cct={name:"InnerShadowTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-inner-shadow-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728z"},null),e(" "),t("path",{d:"M16.243 7.757a6 6 0 0 0 -8.486 0"},null),e(" ")])}},Sct={name:"InputSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-input-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5"},null),e(" "),t("path",{d:"M15.5 15.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M17.5 17.5l2.5 2.5"},null),e(" ")])}},$ct={name:"Ironing1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" ")])}},Act={name:"Ironing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" ")])}},Bct={name:"Ironing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" ")])}},Hct={name:"IroningOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nct={name:"IroningSteamOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15"},null),e(" "),t("path",{d:"M16 16h-13a7 7 0 0 1 6.056 -6.937"},null),e(" "),t("path",{d:"M13 9h6.8"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jct={name:"IroningSteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19v2"},null),e(" "),t("path",{d:"M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" "),t("path",{d:"M8 19l-1 2"},null),e(" "),t("path",{d:"M16 19l1 2"},null),e(" ")])}},Pct={name:"IroningIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ironing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8"},null),e(" ")])}},Lct={name:"IrregularPolyhedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.706 4.73a1 1 0 0 0 -.458 1.14l1.752 6.13l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503c.04 -.016 .079 -.035 .116 -.055m-.474 -4.474l-.802 -2.806l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-3.544 1.412"},null),e(" "),t("path",{d:"M4.5 5.5c.661 .214 1.161 .38 1.5 .5m6 2c.29 -.003 .603 -.06 .878 -.17l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l.742 -.265m2.956 -1.057c.312 -.11 .816 -.291 1.512 -.54"},null),e(" "),t("path",{d:"M12 22v-10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dct={name:"IrregularPolyhedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 12l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l.221 -.088"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Oct={name:"IrregularPolyhedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-irregular-polyhedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12l-1.752 6.13a1 1 0 0 0 .592 1.205l6.282 2.503a2.46 2.46 0 0 0 1.756 0l6.282 -2.503a1 1 0 0 0 .592 -1.204l-1.752 -6.131l1.752 -6.13a1 1 0 0 0 -.592 -1.205l-6.282 -2.503a2.46 2.46 0 0 0 -1.756 0l-6.282 2.503a1 1 0 0 0 -.592 1.204l1.752 6.131z"},null),e(" "),t("path",{d:"M4.5 5.5l6.622 2.33a2.35 2.35 0 0 0 1.756 0l6.622 -2.33"},null),e(" "),t("path",{d:"M6 12l5.21 1.862a2.34 2.34 0 0 0 1.58 0l5.21 -1.862"},null),e(" "),t("path",{d:"M12 22v-14"},null),e(" ")])}},Fct={name:"ItalicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-italic",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5l6 0"},null),e(" "),t("path",{d:"M7 19l6 0"},null),e(" "),t("path",{d:"M14 5l-4 14"},null),e(" ")])}},Rct={name:"JacketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jacket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l-4 5l-4 -5"},null),e(" "),t("path",{d:"M12 19a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M20 13h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M4 17h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 19v-11"},null),e(" ")])}},Tct={name:"JetpackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jetpack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6a3 3 0 1 0 -6 0v7h6v-7z"},null),e(" "),t("path",{d:"M14 13h6v-7a3 3 0 0 0 -6 0v7z"},null),e(" "),t("path",{d:"M5 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M15 16c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M10 11h4"},null),e(" ")])}},Ect={name:"JewishStarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.433 6h-5.433l-.114 .006a1 1 0 0 0 -.743 1.508l2.69 4.486l-2.69 4.486l-.054 .1a1 1 0 0 0 .911 1.414h5.434l2.709 4.514l.074 .108a1 1 0 0 0 1.64 -.108l2.708 -4.514h5.435l.114 -.006a1 1 0 0 0 .743 -1.508l-2.691 -4.486l2.691 -4.486l.054 -.1a1 1 0 0 0 -.911 -1.414h-5.434l-2.709 -4.514a1 1 0 0 0 -1.714 0l-2.71 4.514z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vct={name:"JewishStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jewish-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z"},null),e(" ")])}},_ct={name:"JpgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jpg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 8h4v6a2 2 0 0 1 -2 2h-1.5a.5 .5 0 0 1 -.5 -.5v-.5"},null),e(" ")])}},Wct={name:"JsonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-json",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16v-8l3 8v-8"},null),e(" "),t("path",{d:"M15 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M1 8h3v6.5a1.5 1.5 0 0 1 -3 0v-.5"},null),e(" "),t("path",{d:"M7 15a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1"},null),e(" ")])}},Xct={name:"JumpRopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-jump-rope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6"},null),e(" "),t("path",{d:"M16 3m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z"},null),e(" ")])}},qct={name:"KarateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-karate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l4.5 1l3 2.5"},null),e(" "),t("path",{d:"M13 21v-8l3 -5.5"},null),e(" "),t("path",{d:"M8 4.5l4 2l4 1l4 3.5l-2 3.5"},null),e(" ")])}},Yct={name:"KayakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kayak",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0z"},null),e(" "),t("path",{d:"M17.586 17.586a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0z"},null),e(" "),t("path",{d:"M6.5 6.5l11 11"},null),e(" "),t("path",{d:"M22 2.5c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5z"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" "),t("path",{d:"M12.5 6.5l5 5"},null),e(" ")])}},Uct={name:"KeringIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-kering",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5"},null),e(" "),t("path",{d:"M3 9l3 6l3 -6"},null),e(" "),t("path",{d:"M9 20l6 -16"},null),e(" ")])}},Gct={name:"KeyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33"},null),e(" "),t("path",{d:"M14.931 14.948a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zct={name:"KeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" ")])}},Kct={name:"KeyboardHideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-hide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 21l2 -2l2 2"},null),e(" ")])}},Qct={name:"KeyboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jct={name:"KeyboardShowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard-show",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 7l0 .01"},null),e(" "),t("path",{d:"M10 7l0 .01"},null),e(" "),t("path",{d:"M14 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M6 11l0 .01"},null),e(" "),t("path",{d:"M18 11l0 .01"},null),e(" "),t("path",{d:"M10 11l4 0"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},tut={name:"KeyboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10l0 .01"},null),e(" "),t("path",{d:"M10 10l0 .01"},null),e(" "),t("path",{d:"M14 10l0 .01"},null),e(" "),t("path",{d:"M18 10l0 .01"},null),e(" "),t("path",{d:"M6 14l0 .01"},null),e(" "),t("path",{d:"M18 14l0 .01"},null),e(" "),t("path",{d:"M10 14l4 .01"},null),e(" ")])}},eut={name:"KeyframeAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},nut={name:"KeyframeAlignHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M3 12h2"},null),e(" "),t("path",{d:"M19 12h2"},null),e(" ")])}},lut={name:"KeyframeAlignVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe-align-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2v2"},null),e(" "),t("path",{d:"M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748z"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},rut={name:"KeyframeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" ")])}},out={name:"KeyframesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-keyframes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z"},null),e(" "),t("path",{d:"M17 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" "),t("path",{d:"M13 5l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836"},null),e(" ")])}},sut={name:"LadderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v1m0 4v13"},null),e(" "),t("path",{d:"M16 3v9m0 4v5"},null),e(" "),t("path",{d:"M8 14h6"},null),e(" "),t("path",{d:"M8 10h2m4 0h2"},null),e(" "),t("path",{d:"M10 6h6"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aut={name:"LadderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ladder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v18"},null),e(" "),t("path",{d:"M16 3v18"},null),e(" "),t("path",{d:"M8 14h8"},null),e(" "),t("path",{d:"M8 10h8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M8 18h8"},null),e(" ")])}},iut={name:"LambdaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lambda",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20l6.5 -9"},null),e(" "),t("path",{d:"M19 20c-6 0 -6 -16 -12 -16"},null),e(" ")])}},hut={name:"Lamp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h9"},null),e(" "),t("path",{d:"M10 21l-7 -8l8.5 -5.5"},null),e(" "),t("path",{d:"M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z"},null),e(" "),t("path",{d:"M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144"},null),e(" "),t("path",{d:"M15.5 12l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369"},null),e(" ")])}},dut={name:"LampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M7.325 7.35l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cut={name:"LampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M5 12h14l-4 -8h-6z"},null),e(" ")])}},uut={name:"LanguageHiraganaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-hiragana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M7 4c0 4.846 0 7 .5 8"},null),e(" "),t("path",{d:"M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},put={name:"LanguageKatakanaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-katakana",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"},null),e(" "),t("path",{d:"M8 8c0 1.5 .5 3 -2 5"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},gut={name:"LanguageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h1m4 0h2"},null),e(" "),t("path",{d:"M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8"},null),e(" "),t("path",{d:"M18 18h-5.1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wut={name:"LanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5h7"},null),e(" "),t("path",{d:"M9 3v2c0 4.418 -2.239 8 -5 8"},null),e(" "),t("path",{d:"M5 9c0 2.144 2.952 3.908 6.7 4"},null),e(" "),t("path",{d:"M12 20l4 -9l4 9"},null),e(" "),t("path",{d:"M19.1 18h-6.2"},null),e(" ")])}},vut={name:"LassoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fut={name:"LassoPolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},mut={name:"LassoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lasso",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255"},null),e(" "),t("path",{d:"M5 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17c0 1.42 .316 2.805 1 4"},null),e(" ")])}},kut={name:"LayersDifferenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-difference",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M10 8l-2 0l0 2"},null),e(" "),t("path",{d:"M8 14l0 2l2 0"},null),e(" "),t("path",{d:"M14 8l2 0l0 2"},null),e(" "),t("path",{d:"M16 14l0 2l-2 0"},null),e(" ")])}},but={name:"LayersIntersect2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},Mut={name:"LayersIntersectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-intersect",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xut={name:"LayersLinkedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-linked",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3"},null),e(" "),t("path",{d:"M5 15.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3"},null),e(" ")])}},zut={name:"LayersOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Iut={name:"LayersSubtractIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-subtract",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2"},null),e(" ")])}},yut={name:"LayersUnionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layers-union",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2"},null),e(" ")])}},Cut={name:"Layout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Sut={name:"LayoutAlignBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},$ut={name:"LayoutAlignCenterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-center",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 5"},null),e(" "),t("path",{d:"M12 15l0 5"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Aut={name:"LayoutAlignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},But={name:"LayoutAlignMiddleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-middle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l5 0"},null),e(" "),t("path",{d:"M15 12l5 0"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hut={name:"LayoutAlignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Nut={name:"LayoutAlignTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-align-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jut={name:"LayoutBoardSplitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board-split",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 9h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},Put={name:"LayoutBoardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-board",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h8"},null),e(" "),t("path",{d:"M12 15h8"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" ")])}},Lut={name:"LayoutBottombarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 8l-2 2l-2 -2"},null),e(" ")])}},Dut={name:"LayoutBottombarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M20 15h-16"},null),e(" "),t("path",{d:"M14 10l-2 -2l-2 2"},null),e(" ")])}},Out={name:"LayoutBottombarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-bottombar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 15l16 0"},null),e(" ")])}},Fut={name:"LayoutCardsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-cards",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Rut={name:"LayoutCollageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-collage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 4l4 16"},null),e(" "),t("path",{d:"M12 12l-8 2"},null),e(" ")])}},Tut={name:"LayoutColumnsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-columns",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Eut={name:"LayoutDashboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-dashboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4h6v8h-6z"},null),e(" "),t("path",{d:"M4 16h6v4h-6z"},null),e(" "),t("path",{d:"M14 12h6v8h-6z"},null),e(" "),t("path",{d:"M14 4h6v4h-6z"},null),e(" ")])}},Vut={name:"LayoutDistributeHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l16 0"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},_ut={name:"LayoutDistributeVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-distribute-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l0 16"},null),e(" "),t("path",{d:"M20 4l0 16"},null),e(" "),t("path",{d:"M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Wut={name:"LayoutGridAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 17h6m-3 -3v6"},null),e(" ")])}},Xut={name:"LayoutGridRemoveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid-remove",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" "),t("path",{d:"M14 17h6"},null),e(" ")])}},qut={name:"LayoutGridIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-grid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Yut={name:"LayoutKanbanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-kanban",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l6 0"},null),e(" "),t("path",{d:"M14 4l6 0"},null),e(" "),t("path",{d:"M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Uut={name:"LayoutListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 14m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Gut={name:"LayoutNavbarCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 16l2 -2l2 2"},null),e(" ")])}},Zut={name:"LayoutNavbarExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9h16"},null),e(" "),t("path",{d:"M10 14l2 2l2 -2"},null),e(" ")])}},Kut={name:"LayoutNavbarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-navbar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 9l16 0"},null),e(" ")])}},Qut={name:"LayoutOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Jut={name:"LayoutRowsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-rows",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" ")])}},tpt={name:"LayoutSidebarLeftCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M15 10l-2 2l2 2"},null),e(" ")])}},ept={name:"LayoutSidebarLeftExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-left-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4v16"},null),e(" "),t("path",{d:"M14 10l2 2l-2 2"},null),e(" ")])}},npt={name:"LayoutSidebarRightCollapseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-collapse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M9 10l2 2l-2 2"},null),e(" ")])}},lpt={name:"LayoutSidebarRightExpandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right-expand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4v16"},null),e(" "),t("path",{d:"M10 10l-2 2l2 2"},null),e(" ")])}},rpt={name:"LayoutSidebarRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 4l0 16"},null),e(" ")])}},opt={name:"LayoutSidebarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout-sidebar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 4l0 16"},null),e(" ")])}},spt={name:"LayoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-layout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" ")])}},apt={name:"LeafOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683"},null),e(" "),t("path",{d:"M6.618 6.623c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ipt={name:"LeafIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-leaf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21c.5 -4.5 2.5 -8 7 -10"},null),e(" "),t("path",{d:"M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z"},null),e(" ")])}},hpt={name:"LegoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8 4v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dpt={name:"LegoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lego",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 11l.01 0"},null),e(" "),t("path",{d:"M14.5 11l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M7 5h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3"},null),e(" ")])}},cpt={name:"Lemon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z"},null),e(" ")])}},upt={name:"LemonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lemon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143"},null),e(" "),t("path",{d:"M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192"},null),e(" "),t("path",{d:"M10.464 10.464l4.597 4.597"},null),e(" "),t("path",{d:"M10.464 10.464v6.364"},null),e(" "),t("path",{d:"M10.464 10.464h6.364"},null),e(" ")])}},ppt={name:"LetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12"},null),e(" "),t("path",{d:"M7 13l10 0"},null),e(" ")])}},gpt={name:"LetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6"},null),e(" "),t("path",{d:"M7 12l6 0"},null),e(" ")])}},wpt={name:"LetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5"},null),e(" ")])}},vpt={name:"LetterCaseLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},fpt={name:"LetterCaseToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" "),t("path",{d:"M10 12v7"},null),e(" ")])}},mpt={name:"LetterCaseUpperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case-upper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M14 13h7"},null),e(" ")])}},kpt={name:"LetterCaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-case",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0"},null),e(" "),t("path",{d:"M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5"},null),e(" "),t("path",{d:"M3 13h7"},null),e(" "),t("path",{d:"M21 12v7"},null),e(" ")])}},bpt={name:"LetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16"},null),e(" ")])}},Mpt={name:"LetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16h10"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},xpt={name:"LetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10v16"},null),e(" "),t("path",{d:"M7 12l8 0"},null),e(" ")])}},zpt={name:"LetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4"},null),e(" ")])}},Ipt={name:"LetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l0 16"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" ")])}},ypt={name:"LetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Cpt={name:"LetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Spt={name:"LetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l0 16"},null),e(" "),t("path",{d:"M7 12h2l8 -8"},null),e(" "),t("path",{d:"M9 12l8 8"},null),e(" ")])}},$pt={name:"LetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16h10"},null),e(" ")])}},Apt={name:"LetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 20v-16l6 14l6 -14v16"},null),e(" ")])}},Bpt={name:"LetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16l10 16v-16"},null),e(" ")])}},Hpt={name:"LetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" ")])}},Npt={name:"LetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" ")])}},jpt={name:"LetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6"},null),e(" "),t("path",{d:"M13 15l5 5"},null),e(" ")])}},Ppt={name:"LetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5"},null),e(" "),t("path",{d:"M12 13l5 7"},null),e(" ")])}},Lpt={name:"LetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4"},null),e(" ")])}},Dpt={name:"LetterSpacingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-spacing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5"},null),e(" "),t("path",{d:"M13 4l3 8l3 -8"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M17 20l2 -2l-2 -2"},null),e(" "),t("path",{d:"M7 16l-2 2l2 2"},null),e(" ")])}},Opt={name:"LetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l12 0"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" ")])}},Fpt={name:"LetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11"},null),e(" ")])}},Rpt={name:"LetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4l6 16l6 -16"},null),e(" ")])}},Tpt={name:"LetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4l4 16l4 -14l4 14l4 -16"},null),e(" ")])}},Ept={name:"LetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l10 16"},null),e(" "),t("path",{d:"M17 4l-10 16"},null),e(" ")])}},Vpt={name:"LetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4l5 9l5 -9"},null),e(" "),t("path",{d:"M12 13l0 7"},null),e(" ")])}},_pt={name:"LetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4h10l-10 16h10"},null),e(" ")])}},Wpt={name:"LicenseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Xpt={name:"LicenseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-license",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11"},null),e(" "),t("path",{d:"M9 7l4 0"},null),e(" "),t("path",{d:"M9 11l4 0"},null),e(" ")])}},qpt={name:"LifebuoyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M5.64 5.632a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ypt={name:"LifebuoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lifebuoy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 15l3.35 3.35"},null),e(" "),t("path",{d:"M9 15l-3.35 3.35"},null),e(" "),t("path",{d:"M5.65 5.65l3.35 3.35"},null),e(" "),t("path",{d:"M18.35 5.65l-3.35 3.35"},null),e(" ")])}},Upt={name:"LighterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lighter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z"},null),e(" "),t("path",{d:"M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"},null),e(" ")])}},Gpt={name:"LineDashedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dashed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h2"},null),e(" "),t("path",{d:"M17 12h2"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},Zpt={name:"LineDottedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-dotted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M8 12v.01"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M16 12v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" ")])}},Kpt={name:"LineHeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line-height",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l3 -3l3 3"},null),e(" "),t("path",{d:"M3 16l3 3l3 -3"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M13 6l7 0"},null),e(" "),t("path",{d:"M13 12l7 0"},null),e(" "),t("path",{d:"M13 18l7 0"},null),e(" ")])}},Qpt={name:"LineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Jpt={name:"LinkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3m2 -2l1 -1"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},t4t={name:"LinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-link",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" ")])}},e4t={name:"ListCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.5 5.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 11.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M3.5 17.5l1.5 1.5l2.5 -2.5"},null),e(" "),t("path",{d:"M11 6l9 0"},null),e(" "),t("path",{d:"M11 12l9 0"},null),e(" "),t("path",{d:"M11 18l9 0"},null),e(" ")])}},n4t={name:"ListDetailsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-details",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 5h8"},null),e(" "),t("path",{d:"M13 9h5"},null),e(" "),t("path",{d:"M13 15h8"},null),e(" "),t("path",{d:"M13 19h5"},null),e(" "),t("path",{d:"M3 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},l4t={name:"ListNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 6h9"},null),e(" "),t("path",{d:"M11 12h9"},null),e(" "),t("path",{d:"M12 18h8"},null),e(" "),t("path",{d:"M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4"},null),e(" "),t("path",{d:"M6 10v-6l-2 2"},null),e(" ")])}},r4t={name:"ListSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M18.5 18.5l2.5 2.5"},null),e(" "),t("path",{d:"M4 6h16"},null),e(" "),t("path",{d:"M4 12h4"},null),e(" "),t("path",{d:"M4 18h4"},null),e(" ")])}},o4t={name:"ListIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-list",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 6l11 0"},null),e(" "),t("path",{d:"M9 12l11 0"},null),e(" "),t("path",{d:"M9 18l11 0"},null),e(" "),t("path",{d:"M5 6l0 .01"},null),e(" "),t("path",{d:"M5 12l0 .01"},null),e(" "),t("path",{d:"M5 18l0 .01"},null),e(" ")])}},s4t={name:"LivePhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.296 11.29a1 1 0 1 0 1.414 1.415"},null),e(" "),t("path",{d:"M8.473 8.456a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851"},null),e(" "),t("path",{d:"M15.9 20.11v.01"},null),e(" "),t("path",{d:"M19.04 17.61v.01"},null),e(" "),t("path",{d:"M20.77 14v.01"},null),e(" "),t("path",{d:"M20.77 10v.01"},null),e(" "),t("path",{d:"M19.04 6.39v.01"},null),e(" "),t("path",{d:"M15.9 3.89v.01"},null),e(" "),t("path",{d:"M12 3v.01"},null),e(" "),t("path",{d:"M8.1 3.89v.01"},null),e(" "),t("path",{d:"M4.96 6.39v.01"},null),e(" "),t("path",{d:"M3.23 10v.01"},null),e(" "),t("path",{d:"M3.23 14v.01"},null),e(" "),t("path",{d:"M4.96 17.61v.01"},null),e(" "),t("path",{d:"M8.1 20.11v.01"},null),e(" "),t("path",{d:"M12 21v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a4t={name:"LivePhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M15.9 20.11l0 .01"},null),e(" "),t("path",{d:"M19.04 17.61l0 .01"},null),e(" "),t("path",{d:"M20.77 14l0 .01"},null),e(" "),t("path",{d:"M20.77 10l0 .01"},null),e(" "),t("path",{d:"M19.04 6.39l0 .01"},null),e(" "),t("path",{d:"M15.9 3.89l0 .01"},null),e(" "),t("path",{d:"M12 3l0 .01"},null),e(" "),t("path",{d:"M8.1 3.89l0 .01"},null),e(" "),t("path",{d:"M4.96 6.39l0 .01"},null),e(" "),t("path",{d:"M3.23 10l0 .01"},null),e(" "),t("path",{d:"M3.23 14l0 .01"},null),e(" "),t("path",{d:"M4.96 17.61l0 .01"},null),e(" "),t("path",{d:"M8.1 20.11l0 .01"},null),e(" "),t("path",{d:"M12 21l0 .01"},null),e(" ")])}},i4t={name:"LiveViewIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-live-view",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M12 18l-3.5 -5a4 4 0 1 1 7 0l-3.5 5"},null),e(" ")])}},h4t={name:"LoadBalancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-load-balancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 16v3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M12 10v-7"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" "),t("path",{d:"M14.894 12.227l6.11 -2.224"},null),e(" "),t("path",{d:"M17.159 8.21l3.845 1.793l-1.793 3.845"},null),e(" "),t("path",{d:"M9.101 12.214l-6.075 -2.211"},null),e(" "),t("path",{d:"M6.871 8.21l-3.845 1.793l1.793 3.845"},null),e(" ")])}},d4t={name:"Loader2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 1 0 9 9"},null),e(" ")])}},c4t={name:"Loader3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" ")])}},u4t={name:"LoaderQuarterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader-quarter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},p4t={name:"LoaderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-loader",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l0 -3"},null),e(" "),t("path",{d:"M16.25 7.75l2.15 -2.15"},null),e(" "),t("path",{d:"M18 12l3 0"},null),e(" "),t("path",{d:"M16.25 16.25l2.15 2.15"},null),e(" "),t("path",{d:"M12 18l0 3"},null),e(" "),t("path",{d:"M7.75 16.25l-2.15 2.15"},null),e(" "),t("path",{d:"M6 12l-3 0"},null),e(" "),t("path",{d:"M7.75 7.75l-2.15 -2.15"},null),e(" ")])}},g4t={name:"LocationBrokenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-broken",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.896 19.792l-2.896 -5.792l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.487 9.657"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},w4t={name:"LocationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.891 2.006l.106 -.006l.13 .008l.09 .016l.123 .035l.107 .046l.1 .057l.09 .067l.082 .075l.052 .059l.082 .116l.052 .096c.047 .1 .077 .206 .09 .316l.005 .106c0 .075 -.008 .149 -.024 .22l-.035 .123l-6.532 18.077a1.55 1.55 0 0 1 -1.409 .903a1.547 1.547 0 0 1 -1.329 -.747l-.065 -.127l-3.352 -6.702l-6.67 -3.336a1.55 1.55 0 0 1 -.898 -1.259l-.006 -.149c0 -.56 .301 -1.072 .841 -1.37l.14 -.07l18.017 -6.506l.106 -.03l.108 -.018z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},v4t={name:"LocationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.775 -1.724"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},f4t={name:"LocationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-location",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},m4t={name:"LockAccessOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.554 .225 -1.055 .588 -1.417"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.55 0 1.05 -.222 1.41 -.582"},null),e(" "),t("path",{d:"M15 11a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M10 11v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k4t={name:"LockAccessIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-access",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},b4t={name:"LockBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 21h-6.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},M4t={name:"LockCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.749 1.028"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},x4t={name:"LockCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},z4t={name:"LockCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},I4t={name:"LockCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.564 0 1.074 .234 1.437 .61"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},y4t={name:"LockDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},C4t={name:"LockDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.015"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},S4t={name:"LockExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.734 1.002"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},$4t={name:"LockHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.38 0 .734 .106 1.037 .29"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},A4t={name:"LockMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},B4t={name:"LockOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.719 -3.289a4 4 0 0 1 7.281 2.289v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},H4t={name:"LockOpenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-3m.347 -3.631a4 4 0 0 1 7.653 1.631"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N4t={name:"LockOpenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-open",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-5a4 4 0 0 1 8 0"},null),e(" ")])}},j4t={name:"LockPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},P4t={name:"LockPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.24 0 .47 .042 .683 .12"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},L4t={name:"LockPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.74 1.012"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},D4t={name:"LockQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21h-8a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10c.265 0 .518 .052 .75 .145"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},O4t={name:"LockSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-4.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},F4t={name:"LockShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M12 21h-5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},R4t={name:"LockSquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 4a3 3 0 0 1 2.995 2.824l.005 .176v1a2 2 0 0 1 1.995 1.85l.005 .15v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a3 3 0 0 1 3 -3zm3 6h-6v3h6v-3zm-3 -4a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},T4t={name:"LockSquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" ")])}},E4t={name:"LockSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 11v-2a2 2 0 1 1 4 0v2"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},V4t={name:"LockStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21h-4a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h9"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},_4t={name:"LockUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-5.5a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 1.739 1.01"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},W4t={name:"LockXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21h-6a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},X4t={name:"LockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"},null),e(" "),t("path",{d:"M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M8 11v-4a4 4 0 1 1 8 0v4"},null),e(" ")])}},q4t={name:"LogicAndIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-and",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" ")])}},Y4t={name:"LogicBufferIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-buffer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-5"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M7 5l10 7l-10 7z"},null),e(" ")])}},U4t={name:"LogicNandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},G4t={name:"LogicNorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-nor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h5"},null),e(" "),t("path",{d:"M2 15h5"},null),e(" "),t("path",{d:"M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Z4t={name:"LogicNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-3"},null),e(" "),t("path",{d:"M2 9h3"},null),e(" "),t("path",{d:"M2 15h3"},null),e(" "),t("path",{d:"M5 5l10 7l-10 7z"},null),e(" "),t("path",{d:"M17 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},K4t={name:"LogicOrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-or",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-6"},null),e(" "),t("path",{d:"M2 9h7"},null),e(" "),t("path",{d:"M2 15h7"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},Q4t={name:"LogicXnorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xnor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-2"},null),e(" "),t("path",{d:"M2 9h4"},null),e(" "),t("path",{d:"M2 15h4"},null),e(" "),t("path",{d:"M5 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" "),t("path",{d:"M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},J4t={name:"LogicXorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logic-xor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-4"},null),e(" "),t("path",{d:"M2 9h6"},null),e(" "),t("path",{d:"M2 15h6"},null),e(" "),t("path",{d:"M7 19c1.778 -4.667 1.778 -9.333 0 -14"},null),e(" "),t("path",{d:"M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z"},null),e(" ")])}},tgt={name:"LoginIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-login",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M20 12h-13l3 -3m0 6l-3 -3"},null),e(" ")])}},egt={name:"Logout2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v-2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M15 12h-12l3 -3"},null),e(" "),t("path",{d:"M6 15l-3 -3"},null),e(" ")])}},ngt={name:"LogoutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-logout",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M9 12h12l-3 -3"},null),e(" "),t("path",{d:"M18 15l3 -3"},null),e(" ")])}},lgt={name:"LollipopOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M12.71 12.715a3.5 3.5 0 0 1 -5.71 -2.715"},null),e(" "),t("path",{d:"M14 17c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 -3.5 3.5"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rgt={name:"LollipopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lollipop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 10a3.5 3.5 0 0 0 -7 0"},null),e(" "),t("path",{d:"M14 10a3.5 3.5 0 0 1 -7 0"},null),e(" "),t("path",{d:"M14 17a3.5 3.5 0 0 0 0 -7"},null),e(" "),t("path",{d:"M14 3a3.5 3.5 0 0 0 0 7"},null),e(" "),t("path",{d:"M3 21l6 -6"},null),e(" ")])}},ogt={name:"LuggageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h4m4 0h4"},null),e(" "),t("path",{d:"M6 16h10"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sgt={name:"LuggageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-luggage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" "),t("path",{d:"M6 16h12"},null),e(" "),t("path",{d:"M9 20v1"},null),e(" "),t("path",{d:"M15 20v1"},null),e(" ")])}},agt={name:"LungsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02"},null),e(" "),t("path",{d:"M15 11v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02"},null),e(" "),t("path",{d:"M9 12a2.99 2.99 0 0 0 2.132 -.89"},null),e(" "),t("path",{d:"M12 4v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},igt={name:"LungsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-lungs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z"},null),e(" "),t("path",{d:"M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z"},null),e(" "),t("path",{d:"M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M12 4v5"},null),e(" ")])}},hgt={name:"MacroOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 0 0 11.47 2.467"},null),e(" "),t("path",{d:"M15.53 15.53a6 6 0 0 0 -3.53 5.47"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M10.866 10.87a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dgt={name:"MacroIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-macro",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15a6 6 0 1 0 12 0"},null),e(" "),t("path",{d:"M18 15a6 6 0 0 0 -6 6"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 -6 -6"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M12 11a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z"},null),e(" ")])}},cgt={name:"MagnetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M15 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ugt={name:"MagnetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-magnet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"},null),e(" "),t("path",{d:"M4 8l5 0"},null),e(" "),t("path",{d:"M15 8l4 0"},null),e(" ")])}},pgt={name:"MailAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l8 5.345m4 -1.345l6 -4"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},ggt={name:"MailBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},wgt={name:"MailCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},vgt={name:"MailCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},fgt={name:"MailCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},mgt={name:"MailCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},kgt={name:"MailDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},bgt={name:"MailDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Mgt={name:"MailExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},xgt={name:"MailFastIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-fast",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7h3"},null),e(" "),t("path",{d:"M3 11h2"},null),e(" "),t("path",{d:"M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z"},null),e(" "),t("path",{d:"M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982"},null),e(" ")])}},zgt={name:"MailFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 7.535v9.465a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-9.465l9.445 6.297l.116 .066a1 1 0 0 0 .878 0l.116 -.066l9.445 -6.297z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19 4c1.08 0 2.027 .57 2.555 1.427l-9.555 6.37l-9.555 -6.37a2.999 2.999 0 0 1 2.354 -1.42l.201 -.007h14z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Igt={name:"MailForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 6l9 6l9 -6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" "),t("path",{d:"M18 15l3 3l-3 3"},null),e(" ")])}},ygt={name:"MailHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 19h-5.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M3 7l9 6l2.983 -1.989l6.017 -4.011"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Cgt={name:"MailMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Sgt={name:"MailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 7l9 6l.565 -.377m2.435 -1.623l6 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$gt={name:"MailOpenedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.872 14.287l6.522 6.52a2.996 2.996 0 0 1 -2.218 1.188l-.176 .005h-14a2.995 2.995 0 0 1 -2.394 -1.191l6.521 -6.522l2.318 1.545l.116 .066a1 1 0 0 0 .878 0l.116 -.066l2.317 -1.545z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M2 9.535l5.429 3.62l-5.429 5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M22 9.535v9.05l-5.43 -5.43z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.44 2.102l.115 .066l8.444 5.629l-8.999 6l-9 -6l8.445 -5.63a1 1 0 0 1 .994 -.065z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Agt={name:"MailOpenedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-opened",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 9l9 6l9 -6l-9 -6l-9 6"},null),e(" "),t("path",{d:"M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10"},null),e(" "),t("path",{d:"M3 19l6 -6"},null),e(" "),t("path",{d:"M15 13l6 6"},null),e(" ")])}},Bgt={name:"MailPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Hgt={name:"MailPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Ngt={name:"MailPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},jgt={name:"MailQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Pgt={name:"MailSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Lgt={name:"MailShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 19h-8a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Dgt={name:"MailStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4.5"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Ogt={name:"MailUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Fgt={name:"MailXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 19h-8.5a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Rgt={name:"MailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z"},null),e(" "),t("path",{d:"M3 7l9 6l9 -6"},null),e(" ")])}},Tgt={name:"MailboxOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5"},null),e(" "),t("path",{d:"M12 8v-5h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Egt={name:"MailboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mailbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5"},null),e(" "),t("path",{d:"M12 11v-8h4l2 2l-2 2h-4"},null),e(" "),t("path",{d:"M6 15h1"},null),e(" ")])}},Vgt={name:"ManIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-man",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M9 9h6l-1 7h-4z"},null),e(" "),t("path",{d:"M5 11c1.333 -1.333 2.667 -2 4 -2"},null),e(" "),t("path",{d:"M19 11c-1.333 -1.333 -2.667 -2 -4 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},_gt={name:"ManualGearboxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-manual-gearbox",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 8l0 8"},null),e(" "),t("path",{d:"M12 8l0 8"},null),e(" "),t("path",{d:"M19 8v2a2 2 0 0 1 -2 2h-12"},null),e(" ")])}},Wgt={name:"Map2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l-3 -1.5l-6 3v-13l6 -3l6 3l6 -3v7.5"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Xgt={name:"MapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333"},null),e(" "),t("path",{d:"M9 4v1m0 4v8"},null),e(" "),t("path",{d:"M15 7v4m0 4v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qgt={name:"MapPinBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.591 -4.629"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Ygt={name:"MapPinCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.463 21.431a1.999 1.999 0 0 1 -1.876 -.531l-4.244 -4.243a8 8 0 1 1 13.594 -4.655"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Ugt={name:"MapPinCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ggt={name:"MapPinCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M11.85 21.48a1.992 1.992 0 0 1 -1.263 -.58l-4.244 -4.243a8 8 0 1 1 13.385 -3.585"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Zgt={name:"MapPinCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.005 21.485a1.994 1.994 0 0 1 -1.418 -.585l-4.244 -4.243a8 8 0 1 1 13.634 -5.05"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Kgt={name:"MapPinDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.02 21.206a2 2 0 0 1 -2.433 -.306l-4.244 -4.243a8 8 0 1 1 13.607 -6.555"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Qgt={name:"MapPinDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.736 21.345a2 2 0 0 1 -2.149 -.445l-4.244 -4.243a8 8 0 1 1 13.59 -4.624"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Jgt={name:"MapPinExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M15.005 19.31l-1.591 1.59a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.592 -4.638"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},twt={name:"MapPinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.364 4.636a9 9 0 0 1 .203 12.519l-.203 .21l-4.243 4.242a3 3 0 0 1 -4.097 .135l-.144 -.135l-4.244 -4.243a9 9 0 0 1 12.728 -12.728zm-6.364 3.364a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ewt={name:"MapPinHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.973 2.839"},null),e(" "),t("path",{d:"M11.76 21.47a1.991 1.991 0 0 1 -1.173 -.57l-4.244 -4.243a8 8 0 1 1 13.657 -5.588"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},nwt={name:"MapPinMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},lwt={name:"MapPinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.442 9.432a3 3 0 0 0 4.113 4.134m1.445 -2.566a3 3 0 0 0 -3 -3"},null),e(" "),t("path",{d:"M17.152 17.162l-3.738 3.738a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.476 -10.794m2.18 -1.82a8.003 8.003 0 0 1 10.91 10.912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rwt={name:"MapPinPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.414 20.9a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.337 -3.413"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},owt={name:"MapPinPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.783 21.326a2 2 0 0 1 -2.196 -.426l-4.244 -4.243a8 8 0 1 1 13.657 -5.62"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},swt={name:"MapPinPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.794 21.322a2 2 0 0 1 -2.207 -.422l-4.244 -4.243a8 8 0 1 1 13.59 -4.616"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},awt={name:"MapPinQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},iwt={name:"MapPinSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.916 11.707a3 3 0 1 0 -2.916 2.293"},null),e(" "),t("path",{d:"M11.991 21.485a1.994 1.994 0 0 1 -1.404 -.585l-4.244 -4.243a8 8 0 1 1 13.651 -5.351"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},hwt={name:"MapPinShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.02 21.485a1.996 1.996 0 0 1 -1.433 -.585l-4.244 -4.243a8 8 0 1 1 13.403 -3.651"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},dwt={name:"MapPinStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11a3 3 0 1 0 -3.908 2.86"},null),e(" "),t("path",{d:"M11.059 21.25a2 2 0 0 1 -.472 -.35l-4.244 -4.243a8 8 0 1 1 13.646 -6.079"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},cwt={name:"MapPinUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M12.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},uwt={name:"MapPinXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M13.024 21.204a2 2 0 0 1 -2.437 -.304l-4.244 -4.243a8 8 0 1 1 13.119 -2.766"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},pwt={name:"MapPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"},null),e(" ")])}},gwt={name:"MapPinsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-pins",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M8 7l0 .01"},null),e(" "),t("path",{d:"M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z"},null),e(" "),t("path",{d:"M16 15l0 .01"},null),e(" ")])}},wwt={name:"MapSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v8"},null),e(" "),t("path",{d:"M9 4v13"},null),e(" "),t("path",{d:"M15 7v5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},vwt={name:"MapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-map",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13"},null),e(" "),t("path",{d:"M9 4l0 13"},null),e(" "),t("path",{d:"M15 7l0 13"},null),e(" ")])}},fwt={name:"MarkdownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M19 19h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2"},null),e(" "),t("path",{d:"M7 15v-6l2 2l1 -1m1 1v4"},null),e(" "),t("path",{d:"M17.5 13.5l.5 -.5m-2 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mwt={name:"MarkdownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-markdown",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 15v-6l2 2l2 -2v6"},null),e(" "),t("path",{d:"M14 13l2 2l2 -2m-2 2v-6"},null),e(" ")])}},kwt={name:"Marquee2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2"},null),e(" ")])}},bwt={name:"MarqueeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6c0 -.556 .227 -1.059 .593 -1.421"},null),e(" "),t("path",{d:"M9 4h1.5"},null),e(" "),t("path",{d:"M13.5 4h1.5"},null),e(" "),t("path",{d:"M18 4a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M20 9v1.5"},null),e(" "),t("path",{d:"M20 13.5v1.5"},null),e(" "),t("path",{d:"M19.402 19.426a1.993 1.993 0 0 1 -1.402 .574"},null),e(" "),t("path",{d:"M15 20h-1.5"},null),e(" "),t("path",{d:"M10.5 20h-1.5"},null),e(" "),t("path",{d:"M6 20a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M4 15v-1.5"},null),e(" "),t("path",{d:"M4 10.5v-1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mwt={name:"MarqueeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-marquee",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3"},null),e(" ")])}},xwt={name:"MarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 5l-5.4 5.4"},null),e(" "),t("path",{d:"M19 5l-5 0"},null),e(" "),t("path",{d:"M19 5l0 5"},null),e(" ")])}},zwt={name:"MaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M9.885 9.872a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Iwt={name:"MaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" ")])}},ywt={name:"MasksTheaterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c.657 .438 1.313 .588 1.97 .451"},null),e(" "),t("path",{d:"M8.632 15.982a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cwt={name:"MasksTheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-masks-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M18 13h.01"},null),e(" "),t("path",{d:"M15 16.5c1 .667 2 .667 3 0"},null),e(" "),t("path",{d:"M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M6 8h.01"},null),e(" "),t("path",{d:"M9 8h.01"},null),e(" "),t("path",{d:"M6 12c.764 -.51 1.528 -.63 2.291 -.36"},null),e(" ")])}},Swt={name:"MassageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-massage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 22l4 -2v-3h12"},null),e(" "),t("path",{d:"M11 20h9"},null),e(" "),t("path",{d:"M8 14l3 -2l1 -4c3 1 3 4 3 6"},null),e(" ")])}},$wt={name:"MatchstickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-matchstick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l14 -9"},null),e(" "),t("path",{d:"M17 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M17 3l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z"},null),e(" ")])}},Awt={name:"Math1Divide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},Bwt={name:"Math1Divide3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-1-divide-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15.5a.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 5l2 -2v6"},null),e(" ")])}},Hwt={name:"MathAvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-avg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},Nwt={name:"MathEqualGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -4"},null),e(" "),t("path",{d:"M5 14l14 -4l-14 -4"},null),e(" ")])}},jwt={name:"MathEqualLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-equal-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -4"},null),e(" "),t("path",{d:"M19 14l-14 -4l14 -4"},null),e(" ")])}},Pwt={name:"MathFunctionOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10h1c.882 0 .986 .777 1.694 2.692"},null),e(" "),t("path",{d:"M13 17c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186"},null),e(" "),t("path",{d:"M3 19c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Lwt={name:"MathFunctionYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l3 5.063"},null),e(" "),t("path",{d:"M21 12l-4.8 9"},null),e(" ")])}},Dwt={name:"MathFunctionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-function",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M5 12h6"},null),e(" "),t("path",{d:"M15 12l6 6"},null),e(" "),t("path",{d:"M15 18l6 -6"},null),e(" ")])}},Owt={name:"MathGreaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-greater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 18l14 -6l-14 -6"},null),e(" ")])}},Fwt={name:"MathIntegralXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M14 12l6 6"},null),e(" "),t("path",{d:"M14 18l6 -6"},null),e(" ")])}},Rwt={name:"MathIntegralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},Twt={name:"MathIntegralsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-integrals",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M11 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2"},null),e(" ")])}},Ewt={name:"MathLowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-lower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 18l-14 -6l14 -6"},null),e(" ")])}},Vwt={name:"MathMaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-max",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 20c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5"},null),e(" ")])}},_wt={name:"MathMinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-min",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z"},null),e(" "),t("path",{d:"M3 4c0 8.75 4 14 7 14.5"},null),e(" "),t("path",{d:"M14 18.5c3 -.5 7 -5.75 7 -14.5"},null),e(" ")])}},Wwt={name:"MathNotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-not",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14v4"},null),e(" ")])}},Xwt={name:"MathOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 19l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 14.5l1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M19 5h-7l-.646 2.262"},null),e(" "),t("path",{d:"M10.448 10.431l-2.448 8.569l-3 -6h-2"},null),e(" ")])}},qwt={name:"MathPiDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M10 9v-6"},null),e(" "),t("path",{d:"M14 3v6"},null),e(" "),t("path",{d:"M15 3h-6"},null),e(" ")])}},Ywt={name:"MathPiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-pi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20v-16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M20 4h-16"},null),e(" ")])}},Uwt={name:"MathSymbolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-symbols",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M16.5 4.5l3 3"},null),e(" "),t("path",{d:"M19.5 4.5l-3 3"},null),e(" "),t("path",{d:"M6 4l0 4"},null),e(" "),t("path",{d:"M4 6l4 0"},null),e(" "),t("path",{d:"M18 16l.01 0"},null),e(" "),t("path",{d:"M18 20l.01 0"},null),e(" "),t("path",{d:"M4 18l4 0"},null),e(" ")])}},Gwt={name:"MathXDivide2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" ")])}},Zwt={name:"MathXDivideY2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M15 14l3 4.5"},null),e(" "),t("path",{d:"M21 14l-4.5 7"},null),e(" "),t("path",{d:"M3 4l6 6"},null),e(" "),t("path",{d:"M3 10l6 -6"},null),e(" ")])}},Kwt={name:"MathXDivideYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-divide-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3l6 6"},null),e(" "),t("path",{d:"M9 9l6 -6"},null),e(" "),t("path",{d:"M9 15l3 4.5"},null),e(" "),t("path",{d:"M15 15l-4.5 7"},null),e(" "),t("path",{d:"M5 12h14"},null),e(" ")])}},Qwt={name:"MathXMinusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},Jwt={name:"MathXMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},tvt={name:"MathXPlusXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M16 9l6 6"},null),e(" "),t("path",{d:"M16 15l6 -6"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},evt={name:"MathXPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-x-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M2 9l6 6"},null),e(" "),t("path",{d:"M2 15l6 -6"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},nvt={name:"MathXyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-xy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 5.063"},null),e(" "),t("path",{d:"M4 9l6 6"},null),e(" "),t("path",{d:"M4 15l6 -6"},null),e(" "),t("path",{d:"M20 9l-4.8 9"},null),e(" ")])}},lvt={name:"MathYMinusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-minus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},rvt={name:"MathYPlusYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math-y-plus-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9l3 5.063"},null),e(" "),t("path",{d:"M8 9l-4.8 9"},null),e(" "),t("path",{d:"M16 9l3 5.063"},null),e(" "),t("path",{d:"M22 9l-4.8 9"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},ovt={name:"MathIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-math",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5h-7l-4 14l-3 -6h-2"},null),e(" "),t("path",{d:"M14 13l6 6"},null),e(" "),t("path",{d:"M14 19l6 -6"},null),e(" ")])}},svt={name:"MaximizeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2c0 -.551 .223 -1.05 .584 -1.412"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2c.545 0 1.04 -.218 1.4 -.572"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},avt={name:"MaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},ivt={name:"MeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c1.582 -1.582 2.679 -3.407 3.242 -5.2"},null),e(" "),t("path",{d:"M16.6 12.6c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503"},null),e(" "),t("path",{d:"M8.274 8.284c-1.792 .563 -3.616 1.66 -5.198 3.242"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hvt={name:"MeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821"},null),e(" "),t("path",{d:"M5.904 18.596c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071z"},null),e(" "),t("path",{d:"M7.5 16l1 1"},null),e(" "),t("path",{d:"M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121"},null),e(" ")])}},dvt={name:"Medal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3h6l3 7l-6 2l-6 -2z"},null),e(" "),t("path",{d:"M12 12l-3 -9"},null),e(" "),t("path",{d:"M15 11l-3 -8"},null),e(" "),t("path",{d:"M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},cvt={name:"MedalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v3m-4 -3v6m8 -6v6"},null),e(" "),t("path",{d:"M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z"},null),e(" ")])}},uvt={name:"MedicalCrossFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 2l-.15 .005a2 2 0 0 0 -1.85 1.995v2.803l-2.428 -1.401a2 2 0 0 0 -2.732 .732l-1 1.732l-.073 .138a2 2 0 0 0 .805 2.594l2.427 1.402l-2.427 1.402a2 2 0 0 0 -.732 2.732l1 1.732l.083 .132a2 2 0 0 0 2.649 .6l2.428 -1.402v2.804a2 2 0 0 0 2 2h2l.15 -.005a2 2 0 0 0 1.85 -1.995v-2.804l2.428 1.403a2 2 0 0 0 2.732 -.732l1 -1.732l.073 -.138a2 2 0 0 0 -.805 -2.594l-2.428 -1.403l2.428 -1.402a2 2 0 0 0 .732 -2.732l-1 -1.732l-.083 -.132a2 2 0 0 0 -2.649 -.6l-2.428 1.4v-2.802a2 2 0 0 0 -2 -2h-2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pvt={name:"MedicalCrossOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gvt={name:"MedicalCrossIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medical-cross",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z"},null),e(" ")])}},wvt={name:"MedicineSyrupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-medicine-syrup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z"},null),e(" "),t("path",{d:"M10 14h4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3"},null),e(" ")])}},vvt={name:"MeepleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meeple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z"},null),e(" ")])}},fvt={name:"MenorahIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menorah",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M8 4v2a4 4 0 1 0 8 0v-2"},null),e(" "),t("path",{d:"M4 4v2a8 8 0 1 0 16 0v-2"},null),e(" "),t("path",{d:"M10 20h4"},null),e(" ")])}},mvt={name:"Menu2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M4 18l16 0"},null),e(" ")])}},kvt={name:"MenuOrderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu-order",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M4 14h16"},null),e(" "),t("path",{d:"M9 18l3 3l3 -3"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},bvt={name:"MenuIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-menu",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8l16 0"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" ")])}},Mvt={name:"Message2BoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},xvt={name:"Message2CancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},zvt={name:"Message2CheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ivt={name:"Message2CodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-1 -1l-2 -2h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},yvt={name:"Message2CogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Cvt={name:"Message2DollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Svt={name:"Message2DownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},$vt={name:"Message2ExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Avt={name:"Message2HeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.5 19.5l-1.5 -1.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Bvt={name:"Message2MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hvt={name:"Message2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .57 -.16 1.104 -.436 1.558m-2.564 1.442h-3l-3 3l-3 -3h-3a3 3 0 0 1 -3 -3v-8c0 -1.084 .575 -2.034 1.437 -2.561"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nvt={name:"Message2PauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 20l-1 1l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},jvt={name:"Message2PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Pvt={name:"Message2PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.5 20.5l-.5 .5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Lvt={name:"Message2QuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14.5 18.5l-2.5 2.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Dvt={name:"Message2SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M12 21l-.5 -.5l-2.5 -2.5h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Ovt={name:"Message2ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12 21l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Fvt={name:"Message2StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Rvt={name:"Message2UpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.354 20.646l-.354 .354l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},Tvt={name:"Message2XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13.5 19.5l-1.5 1.5l-3 -3h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Evt={name:"Message2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M9 18h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-3l-3 3l-3 -3z"},null),e(" ")])}},Vvt={name:"MessageBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},_vt={name:"MessageCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.995 18.603l-3.995 2.397v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Wvt={name:"MessageChatbotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-chatbot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M9.5 9h.01"},null),e(" "),t("path",{d:"M14.5 9h.01"},null),e(" "),t("path",{d:"M9.5 13a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Xvt={name:"MessageCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M10.99 19.206l-2.99 1.794v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},qvt={name:"MessageCircle2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.821 4.91c3.898 -2.765 9.469 -2.539 13.073 .536c3.667 3.127 4.168 8.238 1.152 11.897c-2.842 3.447 -7.965 4.583 -12.231 2.805l-.232 -.101l-4.375 .931l-.075 .013l-.11 .009l-.113 -.004l-.044 -.005l-.11 -.02l-.105 -.034l-.1 -.044l-.076 -.042l-.108 -.077l-.081 -.074l-.073 -.083l-.053 -.075l-.065 -.115l-.042 -.106l-.031 -.113l-.013 -.075l-.009 -.11l.004 -.113l.005 -.044l.02 -.11l.022 -.072l1.15 -3.451l-.022 -.036c-2.21 -3.747 -1.209 -8.392 2.411 -11.118l.23 -.168z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Yvt={name:"MessageCircle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1"},null),e(" ")])}},Uvt={name:"MessageCircleBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 19.927a9.933 9.933 0 0 1 -5.338 -.927l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.043 2.746 6.346"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Gvt={name:"MessageCircleCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.015 19.98a9.87 9.87 0 0 1 -4.315 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.927 1.644 2.867 3.887 2.761 6.114"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Zvt={name:"MessageCircleCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.042 19.933a9.798 9.798 0 0 1 -3.342 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.127 1.814 3.052 4.36 2.694 6.808"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Kvt={name:"MessageCircleCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.036 19.933a9.798 9.798 0 0 1 -3.336 -.933l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.815 3.053 4.361 2.694 6.81"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Qvt={name:"MessageCircleCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.996 19.98a9.868 9.868 0 0 1 -4.296 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.842 1.572 2.783 3.691 2.77 5.821"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Jvt={name:"MessageCircleDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.16 19.914a9.94 9.94 0 0 1 -5.46 -.914l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.384 1.181 2.26 2.672 2.603 4.243"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},t3t={name:"MessageCircleDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.006 19.98a9.869 9.869 0 0 1 -4.306 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.993 1.7 2.93 4.041 2.746 6.344"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},e3t={name:"MessageCircleExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.34 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.96 1.671 2.898 3.963 2.755 6.227"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},n3t={name:"MessageCircleHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.59 19.88a9.763 9.763 0 0 1 -2.89 -.88l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.565 1.335 2.479 3.065 2.71 4.861"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},l3t={name:"MessageCircleMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.023 19.98a9.87 9.87 0 0 1 -4.323 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.718 2.319 3.473 5.832 2.096 8.811"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},r3t={name:"MessageCircleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.595 4.577c3.223 -1.176 7.025 -.61 9.65 1.63c2.982 2.543 3.601 6.523 1.636 9.66m-1.908 2.109c-2.787 2.19 -6.89 2.666 -10.273 1.024l-4.7 1l1.3 -3.9c-2.229 -3.296 -1.494 -7.511 1.68 -10.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},o3t={name:"MessageCirclePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.989 19.932a9.93 9.93 0 0 1 -5.289 -.932l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.131 1.818 3.056 4.37 2.692 6.824"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},s3t={name:"MessageCirclePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.337 19.974a9.891 9.891 0 0 1 -4.637 -.974l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.63 1.39 2.554 3.21 2.736 5.085"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},a3t={name:"MessageCirclePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.007 19.98a9.869 9.869 0 0 1 -4.307 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.992 1.7 2.93 4.04 2.747 6.34"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},i3t={name:"MessageCircleQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.02 19.52c-2.341 .736 -5 .606 -7.32 -.52l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.649 1.407 2.575 3.253 2.742 5.152"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},h3t={name:"MessageCircleSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.303 19.955a9.818 9.818 0 0 1 -3.603 -.955l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.73 1.476 2.665 3.435 2.76 5.433"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},d3t={name:"MessageCircleShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.58 19.963a9.906 9.906 0 0 1 -4.88 -.963l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.13 1.817 3.055 4.368 2.692 6.82"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},c3t={name:"MessageCircleStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.517 19.869a9.757 9.757 0 0 1 -2.817 -.869l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.666 1.421 2.594 3.29 2.747 5.21"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},u3t={name:"MessageCircleUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 19.98a9.869 9.869 0 0 1 -4.304 -.98l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c1.994 1.701 2.932 4.045 2.746 6.349"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},p3t={name:"MessageCircleXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.593 19.855a9.96 9.96 0 0 1 -5.893 -.855l-4.7 1l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c2.128 1.816 3.053 4.363 2.693 6.813"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},g3t={name:"MessageCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20l1.3 -3.9c-2.324 -3.437 -1.426 -7.872 2.1 -10.374c3.526 -2.501 8.59 -2.296 11.845 .48c3.255 2.777 3.695 7.266 1.029 10.501c-2.666 3.235 -7.615 4.215 -11.574 2.293l-4.7 1"},null),e(" ")])}},w3t={name:"MessageCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.012 19.193l-3.012 1.807v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},v3t={name:"MessageCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.031 18.581l-4.031 2.419v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},f3t={name:"MessageDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v3.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},m3t={name:"MessageDotsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-dots",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 11l0 .01"},null),e(" "),t("path",{d:"M8 11l0 .01"},null),e(" "),t("path",{d:"M16 11l0 .01"},null),e(" ")])}},k3t={name:"MessageDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.998 18.601l-3.998 2.399v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},b3t={name:"MessageExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M15 18h-2l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},M3t={name:"MessageForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" "),t("path",{d:"M15 11h-6"},null),e(" ")])}},x3t={name:"MessageHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h3.5"},null),e(" "),t("path",{d:"M10.48 19.512l-2.48 1.488v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},z3t={name:"MessageLanguageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-language",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M10 14v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 12h-4"},null),e(" ")])}},I3t={name:"MessageMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.976 18.614l-3.976 2.386v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},y3t={name:"MessageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h1m4 0h3"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M8 4h10a3 3 0 0 1 3 3v8c0 .577 -.163 1.116 -.445 1.573m-2.555 1.427h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8c0 -1.085 .576 -2.036 1.439 -2.562"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C3t={name:"MessagePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},S3t={name:"MessagePinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.007 18.596l-4.007 2.404v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},$3t={name:"MessagePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M12.01 18.594l-4.01 2.406v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},A3t={name:"MessageQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M14 18h-1l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},B3t={name:"MessageReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4"},null),e(" "),t("path",{d:"M12 8l0 3"},null),e(" "),t("path",{d:"M12 14l0 .01"},null),e(" ")])}},H3t={name:"MessageSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h5"},null),e(" "),t("path",{d:"M11.008 19.195l-3.008 1.805v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},N3t={name:"MessageShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},j3t={name:"MessageStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h4.5"},null),e(" "),t("path",{d:"M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},P3t={name:"MessageUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M11.99 18.606l-3.99 2.394v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},L3t={name:"MessageXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},D3t={name:"MessageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-message",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h8"},null),e(" "),t("path",{d:"M8 13h6"},null),e(" "),t("path",{d:"M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z"},null),e(" ")])}},O3t={name:"MessagesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M11 11a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},F3t={name:"MessagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-messages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M14 15v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2"},null),e(" ")])}},R3t={name:"MeteorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},T3t={name:"MeteorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-meteor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z"},null),e(" "),t("path",{d:"M9.5 14.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" ")])}},E3t={name:"MickeyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.501 2a4.5 4.5 0 0 1 .878 8.913a8 8 0 1 1 -15.374 3.372l-.005 -.285l.005 -.285a7.991 7.991 0 0 1 .615 -2.803a4.5 4.5 0 0 1 -3.187 -6.348a4.505 4.505 0 0 1 3.596 -2.539l.225 -.018l.281 -.007l.244 .009a4.5 4.5 0 0 1 4.215 4.247a8.001 8.001 0 0 1 4.013 0a4.5 4.5 0 0 1 4.493 -4.256z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},V3t={name:"MickeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mickey",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z"},null),e(" "),t("path",{d:"M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z"},null),e(" "),t("path",{d:"M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},_3t={name:"Microphone2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.908 12.917a5 5 0 1 0 -5.827 -5.819"},null),e(" "),t("path",{d:"M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},W3t={name:"Microphone2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 12.9a5 5 0 1 0 -3.902 -3.9"},null),e(" "),t("path",{d:"M15 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z"},null),e(" ")])}},X3t={name:"MicrophoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},q3t={name:"MicrophoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M5 10a7 7 0 0 0 14 0"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" ")])}},Y3t={name:"MicroscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M10 10l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U3t={name:"MicroscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M6 18h2"},null),e(" "),t("path",{d:"M7 18v3"},null),e(" "),t("path",{d:"M9 11l3 3l6 -6l-3 -3z"},null),e(" "),t("path",{d:"M10.5 12.5l-1.5 1.5"},null),e(" "),t("path",{d:"M17 3l3 3"},null),e(" "),t("path",{d:"M12 21a6 6 0 0 0 3.715 -10.712"},null),e(" ")])}},G3t={name:"MicrowaveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10"},null),e(" "),t("path",{d:"M15 6v5m0 4v3"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z3t={name:"MicrowaveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-microwave",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 6v12"},null),e(" "),t("path",{d:"M18 12h.01"},null),e(" "),t("path",{d:"M18 15h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" "),t("path",{d:"M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0"},null),e(" ")])}},K3t={name:"MilitaryAwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-award",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8.5 10.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18"},null),e(" "),t("path",{d:"M15.5 10.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18"},null),e(" ")])}},Q3t={name:"MilitaryRankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-military-rank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 7v13h-10v-13l5 -3z"},null),e(" "),t("path",{d:"M10 13l2 -1l2 1"},null),e(" "),t("path",{d:"M10 17l2 -1l2 1"},null),e(" "),t("path",{d:"M10 9l2 -1l2 1"},null),e(" ")])}},J3t={name:"MilkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tft={name:"MilkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z"},null),e(" "),t("path",{d:"M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759"},null),e(" "),t("path",{d:"M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" ")])}},eft={name:"MilkshakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-milkshake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 10a5 5 0 0 0 -10 0"},null),e(" "),t("path",{d:"M6 10m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 13l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243"},null),e(" "),t("path",{d:"M12 5v-2"},null),e(" ")])}},nft={name:"MinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 19v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M15 5v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M5 15h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M5 9h2a2 2 0 0 0 2 -2v-2"},null),e(" ")])}},lft={name:"MinusVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5v14"},null),e(" ")])}},rft={name:"MinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},oft={name:"MistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5h9"},null),e(" "),t("path",{d:"M3 10h7"},null),e(" "),t("path",{d:"M18 10h1"},null),e(" "),t("path",{d:"M5 15h5"},null),e(" "),t("path",{d:"M14 15h1m4 0h2"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sft={name:"MistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h3m4 0h9"},null),e(" "),t("path",{d:"M3 10h11m4 0h1"},null),e(" "),t("path",{d:"M5 15h5m4 0h7"},null),e(" "),t("path",{d:"M3 20h9m4 0h3"},null),e(" ")])}},aft={name:"MobiledataOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ift={name:"MobiledataIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mobiledata",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12v-8"},null),e(" "),t("path",{d:"M8 20v-8"},null),e(" "),t("path",{d:"M13 7l3 -3l3 3"},null),e(" "),t("path",{d:"M5 17l3 3l3 -3"},null),e(" ")])}},hft={name:"MoneybagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moneybag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M4 17v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z"},null),e(" ")])}},dft={name:"MoodAngryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-angry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 9l2 1"},null),e(" "),t("path",{d:"M16 9l-2 1"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" ")])}},cft={name:"MoodAnnoyed2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},uft={name:"MoodAnnoyedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-annoyed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 14c-2 0 -3 1 -3.5 2.05"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" ")])}},pft={name:"MoodBoyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-boy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81"},null),e(" "),t("path",{d:"M9.5 16a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 2c1.5 1 2.5 3.5 2.5 5"},null),e(" "),t("path",{d:"M12.5 2c1.5 2 2 3.5 2 5"},null),e(" "),t("path",{d:"M9 12l.01 0"},null),e(" "),t("path",{d:"M15 12l.01 0"},null),e(" ")])}},gft={name:"MoodCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},wft={name:"MoodCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.983 9"},null),e(" "),t("path",{d:"M18.001 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18.001 14.5v1.5"},null),e(" "),t("path",{d:"M18.001 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1"},null),e(" ")])}},vft={name:"MoodConfuzedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.43 10.162a11 11 0 0 0 -6.6 1.65a1 1 0 0 0 1.06 1.696a9 9 0 0 1 5.4 -1.35a1 1 0 0 0 .14 -1.996zm-6.56 -4.502l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fft={name:"MoodConfuzedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-confuzed",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 16a10 10 0 0 1 6 -1.5"},null),e(" ")])}},mft={name:"MoodCrazyHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-crazy-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 8.5l3 3"},null),e(" "),t("path",{d:"M7 11.5l3 -3"},null),e(" "),t("path",{d:"M14 8.5l3 3"},null),e(" "),t("path",{d:"M14 11.5l3 -3"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},kft={name:"MoodCryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-cry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" "),t("path",{d:"M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z"},null),e(" "),t("path",{d:"M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222"},null),e(" ")])}},bft={name:"MoodDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.87 10.48a9 9 0 1 0 -7.876 10.465"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.357 0 .709 -.052 1.043 -.151"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Mft={name:"MoodEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.955 11.104a9 9 0 1 0 -9.895 9.847"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.126 0 .251 -.006 .376 -.018"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},xft={name:"MoodEmptyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 10.66h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-5.99 -5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},zft={name:"MoodEmptyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-empty",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9 15l6 0"},null),e(" ")])}},Ift={name:"MoodHappyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-2 9.66h-6a1 1 0 0 0 -1 1v.05a3.975 3.975 0 0 0 3.777 3.97l.227 .005a4.026 4.026 0 0 0 3.99 -3.79l.006 -.206a1 1 0 0 0 -1 -1.029zm-5.99 -5l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yft={name:"MoodHappyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-happy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 0 8 0h-8"},null),e(" ")])}},Cft={name:"MoodHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.012 8.946"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.59 3.59 0 0 0 2.774 .99"},null),e(" "),t("path",{d:"M18.994 21.5l2.518 -2.58a1.74 1.74 0 0 0 .004 -2.413a1.627 1.627 0 0 0 -2.346 -.005l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 -.004a1.74 1.74 0 0 0 -.004 2.412l2.51 2.59z"},null),e(" ")])}},Sft={name:"MoodKidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 7.046 -9.232a3 3 0 0 0 2.949 3.556a1 1 0 0 0 0 -2l-.117 -.007a1 1 0 0 1 .117 -1.993c1.726 0 3.453 .447 5 1.34zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$ft={name:"MoodKidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-kid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M12 3a2 2 0 0 0 0 4"},null),e(" ")])}},Aft={name:"MoodLookLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M4 15h4"},null),e(" ")])}},Bft={name:"MoodLookRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-look-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 9h-.01"},null),e(" "),t("path",{d:"M20 15h-4"},null),e(" ")])}},Hft={name:"MoodMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.48 15.014a9 9 0 1 0 -7.956 5.97"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Nft={name:"MoodNerdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nerd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3.5 9h2.5"},null),e(" "),t("path",{d:"M18 9h2.5"},null),e(" "),t("path",{d:"M10 9.5c1.333 -1.333 2.667 -1.333 4 0"},null),e(" ")])}},jft={name:"MoodNervousIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-nervous",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M8 16l2 -2l2 2l2 -2l2 2"},null),e(" ")])}},Pft={name:"MoodNeutralFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-7.99 5.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Lft={name:"MoodNeutralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-neutral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" ")])}},Dft={name:"MoodOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Oft={name:"MoodPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.352 8.977"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.102 0 .203 -.004 .304 -.012"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Fft={name:"MoodPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.528a9 9 0 1 0 -8.45 8.456"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},Rft={name:"MoodSad2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M10 9.25c-.5 1 -2.5 1 -3 0"},null),e(" "),t("path",{d:"M17 9.25c-.5 1 -2.5 1 -3 0"},null),e(" ")])}},Tft={name:"MoodSadDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},Eft={name:"MoodSadFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-5 9.86a4.5 4.5 0 0 0 -3.214 1.35a1 1 0 1 0 1.428 1.4a2.5 2.5 0 0 1 3.572 0a1 1 0 0 0 1.428 -1.4a4.5 4.5 0 0 0 -3.214 -1.35zm-2.99 -4.2l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm6 0l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vft={name:"MoodSadSquintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad-squint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 16.05a3.5 3.5 0 0 0 -5 0"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},_ft={name:"MoodSadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15.25a3.5 3.5 0 0 1 5 0"},null),e(" ")])}},Wft={name:"MoodSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},Xft={name:"MoodShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.018a9 9 0 1 0 -8.942 7.982"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .672 1.56 1 2.5 1c.213 0 .424 -.017 .63 -.05"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qft={name:"MoodSickIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sick",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" ")])}},Yft={name:"MoodSilenceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-silence",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M8 15h8"},null),e(" "),t("path",{d:"M9 14v2"},null),e(" "),t("path",{d:"M12 14v2"},null),e(" "),t("path",{d:"M15 14v2"},null),e(" ")])}},Uft={name:"MoodSingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-sing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9h.01"},null),e(" "),t("path",{d:"M15 9h.01"},null),e(" "),t("path",{d:"M15 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},Gft={name:"MoodSmileBeamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-beam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" ")])}},Zft={name:"MoodSmileDizzyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-dizzy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M8 9l2 2"},null),e(" "),t("path",{d:"M10 9l-2 2"},null),e(" "),t("path",{d:"M14 9l2 2"},null),e(" "),t("path",{d:"M16 9l-2 2"},null),e(" ")])}},Kft={name:"MoodSmileFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.8 10.946a1 1 0 0 0 -1.414 .014a2.5 2.5 0 0 1 -3.572 0a1 1 0 0 0 -1.428 1.4a4.5 4.5 0 0 0 6.428 0a1 1 0 0 0 -.014 -1.414zm-6.19 -5.286l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993zm6 0l-.127 .007a1 1 0 0 0 .117 1.993l.127 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qft={name:"MoodSmileIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-smile",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" ")])}},Jft={name:"MoodSuprisedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-suprised",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 9l.01 0"},null),e(" "),t("path",{d:"M15 9l.01 0"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},t5t={name:"MoodTongueWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M15 10h-.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7"},null),e(" "),t("path",{d:"M7 10c.5 -1 2.5 -1 3 0"},null),e(" ")])}},e5t={name:"MoodTongueWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2"},null),e(" "),t("path",{d:"M15.5 14h-7"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},n5t={name:"MoodTongueIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-tongue",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10l.01 0"},null),e(" "),t("path",{d:"M15 10l.01 0"},null),e(" "),t("path",{d:"M10 14v2a2 2 0 0 0 4 0v-2m1.5 0h-7"},null),e(" ")])}},l5t={name:"MoodUnamusedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-unamused",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11 16l4 -1.5"},null),e(" "),t("path",{d:"M10 10c-.5 -1 -2.5 -1 -3 0"},null),e(" "),t("path",{d:"M17 10c-.5 -1 -2.5 -1 -3 0"},null),e(" ")])}},r5t={name:"MoodUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.984 12.536a9 9 0 1 0 -8.463 8.449"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1s1.842 -.36 2.5 -1"},null),e(" ")])}},o5t={name:"MoodWink2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 10h-.01"},null),e(" "),t("path",{d:"M14.5 15a3.5 3.5 0 0 1 -5 0"},null),e(" "),t("path",{d:"M15.5 8.5l-1.5 1.5l1.5 1.5"},null),e(" ")])}},s5t={name:"MoodWinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15a3.5 3.5 0 0 0 5 0"},null),e(" "),t("path",{d:"M8.5 8.5l1.5 1.5l-1.5 1.5"},null),e(" ")])}},a5t={name:"MoodWrrrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-wrrr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1"},null),e(" "),t("path",{d:"M8.5 11.5l1.5 -1.5l-1.5 -1.5"},null),e(" "),t("path",{d:"M15.5 11.5l-1.5 -1.5l1.5 -1.5"},null),e(" ")])}},i5t={name:"MoodXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.983 12.556a9 9 0 1 0 -8.433 8.427"},null),e(" "),t("path",{d:"M9 10h.01"},null),e(" "),t("path",{d:"M15 10h.01"},null),e(" "),t("path",{d:"M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045"},null),e(" "),t("path",{d:"M21.5 21.5l-5 -5"},null),e(" "),t("path",{d:"M16.5 21.5l5 -5"},null),e(" ")])}},h5t={name:"MoodXdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mood-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z"},null),e(" "),t("path",{d:"M9 14h6a3 3 0 1 1 -6 0z"},null),e(" "),t("path",{d:"M9 8l6 3"},null),e(" "),t("path",{d:"M9 11l6 -3"},null),e(" ")])}},d5t={name:"Moon2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.418 4.157a8 8 0 0 0 0 15.686"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},c5t={name:"MoonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u5t={name:"MoonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},p5t={name:"MoonStarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" "),t("path",{d:"M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 11h2m-1 -1v2"},null),e(" ")])}},g5t={name:"MoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"},null),e(" ")])}},w5t={name:"MopedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moped",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 16v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M6 9l3 0"},null),e(" ")])}},v5t={name:"MotorbikeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-motorbike",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M19 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7.5 14h5l4 -4h-10.5m1.5 4l4 -4"},null),e(" "),t("path",{d:"M13 6h2l1.5 3l2 4"},null),e(" ")])}},f5t={name:"MountainOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},m5t={name:"MountainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mountain",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"},null),e(" "),t("path",{d:"M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"},null),e(" ")])}},k5t={name:"Mouse2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 3v7"},null),e(" "),t("path",{d:"M6 10h12"},null),e(" ")])}},b5t={name:"MouseOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M5t={name:"MouseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mouse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" ")])}},x5t={name:"MoustacheIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-moustache",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6z"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z"},null),e(" ")])}},z5t={name:"MovieOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388"},null),e(" "),t("path",{d:"M8 8v12"},null),e(" "),t("path",{d:"M16 4v8m0 4v4"},null),e(" "),t("path",{d:"M4 8h4"},null),e(" "),t("path",{d:"M4 16h4"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M16 8h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I5t={name:"MovieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-movie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 4l0 16"},null),e(" "),t("path",{d:"M16 4l0 16"},null),e(" "),t("path",{d:"M4 8l4 0"},null),e(" "),t("path",{d:"M4 16l4 0"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M16 8l4 0"},null),e(" "),t("path",{d:"M16 16l4 0"},null),e(" ")])}},y5t={name:"MugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},C5t={name:"MugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077"},null),e(" "),t("path",{d:"M16 8h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5"},null),e(" ")])}},S5t={name:"Multiplier05xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-0-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M5 16v.01"},null),e(" "),t("path",{d:"M15 16l4 -4"},null),e(" "),t("path",{d:"M19 16l-4 -4"},null),e(" ")])}},$5t={name:"Multiplier15xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1-5x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16v-8l-2 2"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M17 16l4 -4"},null),e(" "),t("path",{d:"M21 16l-4 -4"},null),e(" ")])}},A5t={name:"Multiplier1xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-1x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l-2 2"},null),e(" "),t("path",{d:"M13 16l4 -4"},null),e(" "),t("path",{d:"M17 16l-4 -4"},null),e(" ")])}},B5t={name:"Multiplier2xIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-multiplier-2x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 16l4 -4"},null),e(" "),t("path",{d:"M18 16l-4 -4"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0"},null),e(" ")])}},H5t={name:"MushroomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15v4a3 3 0 0 1 -5.995 .176l-.005 -.176v-4h6zm-10.1 -2a1.9 1.9 0 0 1 -1.894 -1.752l-.006 -.148c0 -5.023 4.027 -9.1 9 -9.1s9 4.077 9 9.1a1.9 1.9 0 0 1 -1.752 1.894l-.148 .006h-14.2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N5t={name:"MushroomOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},j5t={name:"MushroomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-mushroom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a.9 .9 0 0 0 .9 .9h14.2a.9 .9 0 0 0 .9 -.9z"},null),e(" "),t("path",{d:"M10 12v7a2 2 0 1 0 4 0v-7"},null),e(" ")])}},P5t={name:"MusicOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.42 14.45a3 3 0 1 0 4.138 4.119"},null),e(" "),t("path",{d:"M9 17v-8m0 -4v-1h10v11"},null),e(" "),t("path",{d:"M12 8h7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},L5t={name:"MusicIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-music",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 17l0 -13l10 0l0 13"},null),e(" "),t("path",{d:"M9 8l10 0"},null),e(" ")])}},D5t={name:"NavigationFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.092 2.581a1 1 0 0 1 1.754 -.116l.062 .116l8.005 17.365c.198 .566 .05 1.196 -.378 1.615a1.53 1.53 0 0 1 -1.459 .393l-7.077 -2.398l-6.899 2.338a1.535 1.535 0 0 1 -1.52 -.231l-.112 -.1c-.398 -.386 -.556 -.954 -.393 -1.556l.047 -.15l7.97 -17.276z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},O5t={name:"NavigationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a.548 .548 0 0 0 .134 -.572l-.26 -.563"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},F5t={name:"NavigationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-navigation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18.5l7.265 2.463a.535 .535 0 0 0 .57 -.116a.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a.547 .547 0 0 0 .135 .572a.535 .535 0 0 0 .57 .116l7.265 -2.463"},null),e(" ")])}},R5t={name:"NeedleThreadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle-thread",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" "),t("path",{d:"M17 7c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808"},null),e(" "),t("path",{d:"M5.739 15.425c-1.393 -.565 -3.739 -1.925 -3.739 -3.425"},null),e(" "),t("path",{d:"M19.5 9.5l1.5 1.5"},null),e(" ")])}},T5t={name:"NeedleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-needle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918z"},null),e(" "),t("path",{d:"M17.5 6.5l-1 1"},null),e(" ")])}},E5t={name:"NetworkOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57"},null),e(" "),t("path",{d:"M12 3c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981"},null),e(" "),t("path",{d:"M6 9h3m4 0h5"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h5"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V5t={name:"NetworkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-network",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6"},null),e(" "),t("path",{d:"M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6"},null),e(" "),t("path",{d:"M6 9h12"},null),e(" "),t("path",{d:"M3 19h7"},null),e(" "),t("path",{d:"M14 19h7"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},_5t={name:"NewSectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-new-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" "),t("path",{d:"M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5"},null),e(" ")])}},W5t={name:"NewsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 12h4"},null),e(" "),t("path",{d:"M8 16h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X5t={name:"NewsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-news",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11"},null),e(" "),t("path",{d:"M8 8l4 0"},null),e(" "),t("path",{d:"M8 12l4 0"},null),e(" "),t("path",{d:"M8 16l4 0"},null),e(" ")])}},q5t={name:"NfcOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-9"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v5m0 4v2l-5 -5"},null),e(" "),t("path",{d:"M8 4h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Y5t={name:"NfcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nfc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 20a3 3 0 0 1 -3 -3v-11l5 5"},null),e(" "),t("path",{d:"M13 4a3 3 0 0 1 3 3v11l-5 -5"},null),e(" "),t("path",{d:"M4 4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z"},null),e(" ")])}},U5t={name:"NoCopyrightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-copyright",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},G5t={name:"NoCreativeCommonsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-creative-commons",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116"},null),e(" "),t("path",{d:"M6 6l1.5 1.5"},null),e(" "),t("path",{d:"M16.5 16.5l1.5 1.5"},null),e(" ")])}},Z5t={name:"NoDerivativesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-no-derivatives",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 10h6"},null),e(" "),t("path",{d:"M9 14h6"},null),e(" ")])}},K5t={name:"NorthStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-north-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 21v-18"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},Q5t={name:"NoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l3.505 -3.505m2 -2l1.501 -1.501"},null),e(" "),t("path",{d:"M17 13h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J5t={name:"NoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-note",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20l7 -7"},null),e(" "),t("path",{d:"M13 20v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7"},null),e(" ")])}},tmt={name:"NotebookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13"},null),e(" "),t("path",{d:"M13 8h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},emt={name:"NotebookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notebook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18"},null),e(" "),t("path",{d:"M13 8l2 0"},null),e(" "),t("path",{d:"M13 12l2 0"},null),e(" ")])}},nmt={name:"NotesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M11 7h4"},null),e(" "),t("path",{d:"M9 11h2"},null),e(" "),t("path",{d:"M9 15h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lmt={name:"NotesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 7l6 0"},null),e(" "),t("path",{d:"M9 11l6 0"},null),e(" "),t("path",{d:"M9 15l4 0"},null),e(" ")])}},rmt={name:"NotificationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},omt={name:"NotificationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-notification",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3"},null),e(" "),t("path",{d:"M17 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},smt={name:"Number0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8"},null),e(" "),t("path",{d:"M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z"},null),e(" ")])}},amt={name:"Number1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 20v-16l-5 5"},null),e(" ")])}},imt={name:"Number2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8"},null),e(" ")])}},hmt={name:"Number3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12a4 4 0 1 0 -4 -4"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 4 -4"},null),e(" ")])}},dmt={name:"Number4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 20v-15l-8 11h10"},null),e(" ")])}},cmt={name:"Number5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20h4a4 4 0 1 0 0 -8h-4v-8h8"},null),e(" ")])}},umt={name:"Number6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v8"},null),e(" ")])}},pmt={name:"Number7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h8l-4 16"},null),e(" ")])}},gmt={name:"Number8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 16m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},wmt={name:"Number9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M8 16a4 4 0 1 0 8 0v-8"},null),e(" ")])}},vmt={name:"NumberIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-number",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v-10l7 10v-10"},null),e(" "),t("path",{d:"M15 17h5"},null),e(" "),t("path",{d:"M17.5 10m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0"},null),e(" ")])}},fmt={name:"NumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 10v-7l-2 2"},null),e(" "),t("path",{d:"M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4"},null),e(" "),t("path",{d:"M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2"},null),e(" "),t("path",{d:"M6.5 10h3"},null),e(" ")])}},mmt={name:"NurseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-nurse",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" ")])}},kmt={name:"OctagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.3 2h-6.6c-.562 0 -1.016 .201 -1.407 .593l-4.7 4.7a1.894 1.894 0 0 0 -.593 1.407v6.6c0 .562 .201 1.016 .593 1.407l4.7 4.7c.391 .392 .845 .593 1.407 .593h6.6c.562 0 1.016 -.201 1.407 -.593l4.7 -4.7c.392 -.391 .593 -.845 .593 -1.407v-6.6c0 -.562 -.201 -1.016 -.593 -1.407l-4.7 -4.7a1.894 1.894 0 0 0 -1.407 -.593z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bmt={name:"OctagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Mmt={name:"OctagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.103 2h5.794a3 3 0 0 1 2.122 .879l4.101 4.101a3 3 0 0 1 .88 2.123v5.794a3 3 0 0 1 -.879 2.122l-4.101 4.101a3 3 0 0 1 -2.122 .879h-5.795a3 3 0 0 1 -2.122 -.879l-4.101 -4.1a3 3 0 0 1 -.88 -2.123v-5.794a3 3 0 0 1 .879 -2.122l4.101 -4.101a3 3 0 0 1 2.123 -.88z"},null),e(" ")])}},xmt={name:"OctahedronOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.771 6.77l-4.475 4.527a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l4.36 -4.412m2.002 -2.025l2.483 -2.512a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-2.375 2.403"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l1.544 -.46m3.094 -.92l4.207 -1.252c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v5.88m0 4v9.88"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zmt={name:"OctahedronPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.498 12.911l.206 -.208a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001l.08 -.081"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l2.634 -.784m5.41 -1.61l.801 -.238c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Imt={name:"OctahedronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-octahedron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.859 21.652l8.845 -8.949a.984 .984 0 0 0 0 -1.407l-8.845 -8.948a1.233 1.233 0 0 0 -1.718 0l-8.845 8.949a.984 .984 0 0 0 0 1.407l8.845 8.949a1.234 1.234 0 0 0 1.718 -.001z"},null),e(" "),t("path",{d:"M2 12c.004 .086 .103 .178 .296 .246l8.845 2.632c.459 .163 1.259 .163 1.718 0l8.845 -2.632c.195 -.07 .294 -.156 .296 -.243"},null),e(" "),t("path",{d:"M12 2.12v19.76"},null),e(" ")])}},ymt={name:"OldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-old",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 21l-1 -4l-2 -3v-6"},null),e(" "),t("path",{d:"M5 14l-1 -3l4 -3l3 2l3 .5"},null),e(" "),t("path",{d:"M8 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 17l-2 4"},null),e(" "),t("path",{d:"M16 21v-8.5a1.5 1.5 0 0 1 3 0v.5"},null),e(" ")])}},Cmt={name:"OlympicsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 9a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12.878 12.88a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Smt={name:"OlympicsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-olympics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},$mt={name:"OmIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-om",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2"},null),e(" "),t("path",{d:"M3.423 14.483a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5"},null),e(" "),t("path",{d:"M14.071 17.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087"},null),e(" "),t("path",{d:"M17 3l2 2"},null),e(" "),t("path",{d:"M12 3c1.667 3.667 4.667 5.333 9 5"},null),e(" ")])}},Amt={name:"OmegaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-omega",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5"},null),e(" ")])}},Bmt={name:"OutboundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outbound",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 9h4v4"},null),e(" ")])}},Hmt={name:"OutletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-outlet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("circle",{cx:"9",cy:"12",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15",cy:"12",r:".5",fill:"currentColor"},null),e(" ")])}},Nmt={name:"OvalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.972 0 7 4.542 7 10s-3.028 10 -7 10c-3.9 0 -6.89 -4.379 -6.997 -9.703l-.003 -.297l.003 -.297c.107 -5.323 3.097 -9.703 6.997 -9.703z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jmt={name:"OvalVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5c-5.457 0 -10 3.028 -10 7s4.543 7 10 7s10 -3.028 10 -7s-4.543 -7 -10 -7z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Pmt={name:"OvalVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z"},null),e(" ")])}},Lmt={name:"OvalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-oval",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0"},null),e(" ")])}},Dmt={name:"OverlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-overline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 5h14"},null),e(" ")])}},Omt={name:"PackageExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M15 18h7"},null),e(" "),t("path",{d:"M19 15l3 3l-3 3"},null),e(" ")])}},Fmt={name:"PackageImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M22 18h-7"},null),e(" "),t("path",{d:"M18 15l-3 3l3 3"},null),e(" ")])}},Rmt={name:"PackageOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25"},null),e(" "),t("path",{d:"M14.543 10.57l5.457 -3.07"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-4.35 2.447m-2.564 1.442l-1.086 .611"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Tmt={name:"PackageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-package",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5"},null),e(" "),t("path",{d:"M12 12l8 -4.5"},null),e(" "),t("path",{d:"M12 12l0 9"},null),e(" "),t("path",{d:"M12 12l-8 -4.5"},null),e(" "),t("path",{d:"M16 5.25l-8 4.5"},null),e(" ")])}},Emt={name:"PackagesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-packages",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M2 13.5v5.5l5 3"},null),e(" "),t("path",{d:"M7 16.545l5 -3.03"},null),e(" "),t("path",{d:"M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"},null),e(" "),t("path",{d:"M12 19l5 3"},null),e(" "),t("path",{d:"M17 16.5l5 -3"},null),e(" "),t("path",{d:"M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"},null),e(" "),t("path",{d:"M7 5.03v5.455"},null),e(" "),t("path",{d:"M12 8l5 -3"},null),e(" ")])}},Vmt={name:"PacmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pacman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981z"},null),e(" "),t("circle",{cx:"11.5",cy:"7.5",r:"1",fill:"currentColor"},null),e(" ")])}},_mt={name:"PageBreakIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-page-break",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"},null),e(" "),t("path",{d:"M19 18v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 14h3m4.5 0h3m4.5 0h3"},null),e(" "),t("path",{d:"M5 10v-5a2 2 0 0 1 2 -2h7l5 5v2"},null),e(" ")])}},Wmt={name:"PaintFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xmt={name:"PaintOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qmt={name:"PaintIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paint",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"},null),e(" "),t("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},Ymt={name:"PaletteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356"},null),e(" "),t("path",{d:"M8 4c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Umt={name:"PaletteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-palette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25"},null),e(" "),t("path",{d:"M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Gmt={name:"PanoramaHorizontalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Zmt={name:"PanoramaHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z"},null),e(" ")])}},Kmt={name:"PanoramaVerticalOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qmt={name:"PanoramaVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-panorama-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z"},null),e(" ")])}},Jmt={name:"PaperBagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2"},null),e(" "),t("path",{d:"M13.185 13.173a2 2 0 1 0 2.64 2.647"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tkt={name:"PaperBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paper-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M14 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944"},null),e(" "),t("path",{d:"M11 7h2"},null),e(" ")])}},ekt={name:"PaperclipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paperclip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5"},null),e(" ")])}},nkt={name:"ParachuteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M14.582 14.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lkt={name:"ParachuteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parachute",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12a10 10 0 1 0 -20 0"},null),e(" "),t("path",{d:"M22 12c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3"},null),e(" "),t("path",{d:"M2 12l10 10l-3.5 -10"},null),e(" "),t("path",{d:"M15.5 12l-3.5 10l10 -10"},null),e(" ")])}},rkt={name:"ParenthesesOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},okt={name:"ParenthesesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parentheses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4a12.25 12.25 0 0 0 0 16"},null),e(" "),t("path",{d:"M17 4a12.25 12.25 0 0 1 0 16"},null),e(" ")])}},skt={name:"ParkingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418"},null),e(" "),t("path",{d:"M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},akt={name:"ParkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-parking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8h4a2 2 0 0 1 0 4h-4"},null),e(" ")])}},ikt={name:"PasswordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-password",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10v4"},null),e(" "),t("path",{d:"M10 13l4 -2"},null),e(" "),t("path",{d:"M10 11l4 2"},null),e(" "),t("path",{d:"M5 10v4"},null),e(" "),t("path",{d:"M3 13l4 -2"},null),e(" "),t("path",{d:"M3 11l4 2"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M17 13l4 -2"},null),e(" "),t("path",{d:"M17 11l4 2"},null),e(" ")])}},hkt={name:"PawFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10c-1.32 0 -1.983 .421 -2.931 1.924l-.244 .398l-.395 .688a50.89 50.89 0 0 0 -.141 .254c-.24 .434 -.571 .753 -1.139 1.142l-.55 .365c-.94 .627 -1.432 1.118 -1.707 1.955c-.124 .338 -.196 .853 -.193 1.28c0 1.687 1.198 2.994 2.8 2.994l.242 -.006c.119 -.006 .234 -.017 .354 -.034l.248 -.043l.132 -.028l.291 -.073l.162 -.045l.57 -.17l.763 -.243l.455 -.136c.53 -.15 .94 -.222 1.283 -.222c.344 0 .753 .073 1.283 .222l.455 .136l.764 .242l.569 .171l.312 .084c.097 .024 .187 .045 .273 .062l.248 .043c.12 .017 .235 .028 .354 .034l.242 .006c1.602 0 2.8 -1.307 2.8 -3c0 -.427 -.073 -.939 -.207 -1.306c-.236 -.724 -.677 -1.223 -1.48 -1.83l-.257 -.19l-.528 -.38c-.642 -.47 -1.003 -.826 -1.253 -1.278l-.27 -.485l-.252 -.432c-1.011 -1.696 -1.618 -2.099 -3.053 -2.099z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.78 7h-.03c-1.219 .02 -2.35 1.066 -2.908 2.504c-.69 1.775 -.348 3.72 1.075 4.333c.256 .109 .527 .163 .801 .163c1.231 0 2.38 -1.053 2.943 -2.504c.686 -1.774 .34 -3.72 -1.076 -4.332a2.05 2.05 0 0 0 -.804 -.164z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.025 3c-.112 0 -.185 .002 -.27 .015l-.093 .016c-1.532 .206 -2.397 1.989 -2.108 3.855c.272 1.725 1.462 3.114 2.92 3.114l.187 -.005a1.26 1.26 0 0 0 .084 -.01l.092 -.016c1.533 -.206 2.397 -1.989 2.108 -3.855c-.27 -1.727 -1.46 -3.114 -2.92 -3.114z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14.972 3c-1.459 0 -2.647 1.388 -2.916 3.113c-.29 1.867 .574 3.65 2.174 3.867c.103 .013 .2 .02 .296 .02c1.39 0 2.543 -1.265 2.877 -2.883l.041 -.23c.29 -1.867 -.574 -3.65 -2.174 -3.867a2.154 2.154 0 0 0 -.298 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4.217 7c-.274 0 -.544 .054 -.797 .161c-1.426 .615 -1.767 2.562 -1.078 4.335c.563 1.451 1.71 2.504 2.941 2.504c.274 0 .544 -.054 .797 -.161c1.426 -.615 1.767 -2.562 1.078 -4.335c-.563 -1.451 -1.71 -2.504 -2.941 -2.504z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},dkt={name:"PawOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0z"},null),e(" "),t("path",{d:"M11 6.992a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ckt={name:"PawIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-paw",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z"},null),e(" "),t("path",{d:"M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z"},null),e(" "),t("path",{d:"M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z"},null),e(" "),t("path",{d:"M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z"},null),e(" "),t("path",{d:"M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z"},null),e(" ")])}},ukt={name:"PdfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pdf",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M3 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M17 12h3"},null),e(" "),t("path",{d:"M21 8h-4v8"},null),e(" ")])}},pkt={name:"PeaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-peace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" "),t("path",{d:"M12 12l6.3 6.3"},null),e(" "),t("path",{d:"M12 12l-6.3 6.3"},null),e(" ")])}},gkt={name:"PencilMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4"},null),e(" ")])}},wkt={name:"PencilOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vkt={name:"PencilPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4z"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" "),t("path",{d:"M16 18h4m-2 -2v4"},null),e(" ")])}},fkt={name:"PencilIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pencil",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"},null),e(" "),t("path",{d:"M13.5 6.5l4 4"},null),e(" ")])}},mkt={name:"Pennant2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v17h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-7.351l-8.406 -3.735c-.752 -.335 -.79 -1.365 -.113 -1.77l.113 -.058l8.406 -3.736v-.35a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kkt={name:"Pennant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-18"},null),e(" "),t("path",{d:"M14 4l-9 4l9 4"},null),e(" ")])}},bkt={name:"PennantFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v.35l8.406 3.736c.752 .335 .79 1.365 .113 1.77l-.113 .058l-8.406 3.735v7.351h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-17a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Mkt={name:"PennantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-11m0 -4v-3"},null),e(" "),t("path",{d:"M10 4l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xkt={name:"PennantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pennant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l4 0"},null),e(" "),t("path",{d:"M10 21l0 -18"},null),e(" "),t("path",{d:"M10 4l9 4l-9 4"},null),e(" ")])}},zkt={name:"PentagonFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.205 2.6l-6.96 5.238a3 3 0 0 0 -1.045 3.338l2.896 8.765a3 3 0 0 0 2.85 2.059h8.12a3 3 0 0 0 2.841 -2.037l2.973 -8.764a3 3 0 0 0 -1.05 -3.37l-7.033 -5.237l-.091 -.061l-.018 -.01l-.106 -.07a3 3 0 0 0 -3.377 .148z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Ikt={name:"PentagonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ykt={name:"PentagonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z"},null),e(" ")])}},Ckt={name:"PentagramIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pentagram",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728z"},null),e(" "),t("path",{d:"M15.236 11l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z"},null),e(" ")])}},Skt={name:"PepperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$kt={name:"PepperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pepper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M16 8c0 -2 2 -4 4 -4"},null),e(" ")])}},Akt={name:"PercentageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-percentage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 18l12 -12"},null),e(" ")])}},Bkt={name:"PerfumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perfume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v3"},null),e(" "),t("path",{d:"M14 6v3"},null),e(" "),t("path",{d:"M5 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M9 3h6v3h-6z"},null),e(" ")])}},Hkt={name:"PerspectiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nkt={name:"PerspectiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-perspective",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z"},null),e(" ")])}},jkt={name:"PhoneCallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-call",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M15 3a6 6 0 0 1 6 6"},null),e(" ")])}},Pkt={name:"PhoneCallingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-calling",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 7l0 .01"},null),e(" "),t("path",{d:"M18 7l0 .01"},null),e(" "),t("path",{d:"M21 7l0 .01"},null),e(" ")])}},Lkt={name:"PhoneCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6l2 2l4 -4"},null),e(" ")])}},Dkt={name:"PhoneFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3a1 1 0 0 1 .877 .519l.051 .11l2 5a1 1 0 0 1 -.313 1.16l-.1 .068l-1.674 1.004l.063 .103a10 10 0 0 0 3.132 3.132l.102 .062l1.005 -1.672a1 1 0 0 1 1.113 -.453l.115 .039l5 2a1 1 0 0 1 .622 .807l.007 .121v4c0 1.657 -1.343 3 -3.06 2.998c-8.579 -.521 -15.418 -7.36 -15.94 -15.998a3 3 0 0 1 2.824 -2.995l.176 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Okt={name:"PhoneIncomingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-incoming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M15 5l0 4l4 0"},null),e(" ")])}},Fkt={name:"PhoneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" "),t("path",{d:"M5.831 14.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657"},null),e(" ")])}},Rkt={name:"PhoneOutgoingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-outgoing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 9l5 -5"},null),e(" "),t("path",{d:"M16 4l4 0l0 4"},null),e(" ")])}},Tkt={name:"PhonePauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M20 3l0 4"},null),e(" "),t("path",{d:"M16 3l0 4"},null),e(" ")])}},Ekt={name:"PhonePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},Vkt={name:"PhoneXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M16 4l4 4m0 -4l-4 4"},null),e(" ")])}},_kt={name:"PhoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-phone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"},null),e(" ")])}},Wkt={name:"PhotoAiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-ai",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M10 21h-4a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1 1"},null),e(" "),t("path",{d:"M14 21v-4a2 2 0 1 1 4 0v4"},null),e(" "),t("path",{d:"M14 19h4"},null),e(" "),t("path",{d:"M21 15v6"},null),e(" ")])}},Xkt={name:"PhotoBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13.5 21h-7.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.669 -.643 1.45 -.823 2.18 -.54"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},qkt={name:"PhotoCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.616 -.593 1.328 -.792 2.008 -.598"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Ykt={name:"PhotoCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l.5 .5"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Ukt={name:"PhotoCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Gkt={name:"PhotoCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.48 -.461 1.016 -.684 1.551 -.67"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Zkt={name:"PhotoDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},Kkt={name:"PhotoDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.653 -.629 1.413 -.815 2.13 -.559"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Qkt={name:"PhotoEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 20h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.31 -.298 .644 -.497 .987 -.596"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},Jkt={name:"PhotoExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.665 -.64 1.44 -.821 2.167 -.545"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},t6t={name:"PhotoFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.813 11.612c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.986 4.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-1.292 -1.293l.292 -.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.674 4.675a4 4 0 0 1 -3.775 3.599l-.206 .005h-12a4 4 0 0 1 -3.98 -3.603l6.687 -6.69l.106 -.095zm9.187 -9.612a4 4 0 0 1 3.995 3.8l.005 .2v9.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-.307 .306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-5.307 5.306v-9.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 5l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e6t={name:"PhotoHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},n6t={name:"PhotoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},l6t={name:"PhotoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M7 3h11a3 3 0 0 1 3 3v11m-.856 3.099a2.991 2.991 0 0 1 -2.144 .901h-12a3 3 0 0 1 -3 -3v-12c0 -.845 .349 -1.608 .91 -2.153"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M16.33 12.338c.574 -.054 1.155 .166 1.67 .662l3 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r6t={name:"PhotoPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},o6t={name:"PhotoPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2.5 2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},s6t={name:"PhotoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M14 14l1 -1c.67 -.644 1.45 -.824 2.182 -.54"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},a6t={name:"PhotoQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M15 21h-9a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},i6t={name:"PhotoSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 21h-5.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" ")])}},h6t={name:"PhotoSensor2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},d6t={name:"PhotoSensor3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h1a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M20 17v1a2 2 0 0 1 -2 2h-1"},null),e(" "),t("path",{d:"M7 20h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 18v2"},null),e(" "),t("path",{d:"M4 12h2"},null),e(" "),t("path",{d:"M12 4v2"},null),e(" "),t("path",{d:"M20 12h-2"},null),e(" ")])}},c6t={name:"PhotoSensorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-sensor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M21 15v2a2 2 0 0 1 -2 2h-2"},null),e(" "),t("path",{d:"M7 19h-2a2 2 0 0 1 -2 -2v-2"},null),e(" "),t("path",{d:"M3 9v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z"},null),e(" ")])}},u6t={name:"PhotoShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12 21h-6a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},p6t={name:"PhotoShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11.5 20h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" ")])}},g6t={name:"PhotoStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M11 21h-5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v5.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},w6t={name:"PhotoUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M12.5 21h-6.5a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6.5"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3.5 3.5"},null),e(" "),t("path",{d:"M14 14l1 -1c.679 -.653 1.473 -.829 2.214 -.526"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},v6t={name:"PhotoXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M13 21h-7a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v7"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},f6t={name:"PhotoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-photo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8h.01"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5"},null),e(" "),t("path",{d:"M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3"},null),e(" ")])}},m6t={name:"PhysotherapistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-physotherapist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-1 -3l4 -2l4 1h3.5"},null),e(" "),t("path",{d:"M4 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17v-7"},null),e(" "),t("path",{d:"M8 20h7l1 -4l4 -2"},null),e(" "),t("path",{d:"M18 20h3"},null),e(" ")])}},k6t={name:"PictureInPictureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M7 12v-3h3"},null),e(" ")])}},b6t={name:"PictureInPictureOnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-on",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 9l4 4"},null),e(" "),t("path",{d:"M8 13h3v-3"},null),e(" ")])}},M6t={name:"PictureInPictureTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4"},null),e(" "),t("path",{d:"M15 10h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z"},null),e(" ")])}},x6t={name:"PictureInPictureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-picture-in-picture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4"},null),e(" "),t("path",{d:"M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z"},null),e(" ")])}},z6t={name:"PigMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M5.173 8.378a3 3 0 1 1 4.656 -1.377"},null),e(" "),t("path",{d:"M16 4v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z"},null),e(" ")])}},I6t={name:"PigOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M10 6h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},y6t={name:"PigIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pig",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11v.01"},null),e(" "),t("path",{d:"M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z"},null),e(" ")])}},C6t={name:"PilcrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pilcrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v16"},null),e(" "),t("path",{d:"M17 4v16"},null),e(" "),t("path",{d:"M19 4h-9.5a4.5 4.5 0 0 0 0 9h3.5"},null),e(" ")])}},S6t={name:"PillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$6t={name:"PillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" ")])}},A6t={name:"PillsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pills",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4.5 4.5l7 7"},null),e(" "),t("path",{d:"M19.5 14.5l-5 5"},null),e(" ")])}},B6t={name:"PinFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.113 3.21l.094 .083l5.5 5.5a1 1 0 0 1 -1.175 1.59l-3.172 3.171l-1.424 3.797a1 1 0 0 1 -.158 .277l-.07 .08l-1.5 1.5a1 1 0 0 1 -1.32 .082l-.095 -.083l-2.793 -2.792l-3.793 3.792a1 1 0 0 1 -1.497 -1.32l.083 -.094l3.792 -3.793l-2.792 -2.793a1 1 0 0 1 -.083 -1.32l.083 -.094l1.5 -1.5a1 1 0 0 1 .258 -.187l.098 -.042l3.796 -1.425l3.171 -3.17a1 1 0 0 1 1.497 -1.26z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},H6t={name:"PinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},N6t={name:"PingPongIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ping-pong",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864"},null),e(" "),t("path",{d:"M14 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M9.3 5.3l9.4 9.4"},null),e(" ")])}},j6t={name:"PinnedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3a1 1 0 0 1 .117 1.993l-.117 .007v4.764l1.894 3.789a1 1 0 0 1 .1 .331l.006 .116v2a1 1 0 0 1 -.883 .993l-.117 .007h-4v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-4h-4a1 1 0 0 1 -.993 -.883l-.007 -.117v-2a1 1 0 0 1 .06 -.34l.046 -.107l1.894 -3.791v-4.762a1 1 0 0 1 -.117 -1.993l.117 -.007h8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},P6t={name:"PinnedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251"},null),e(" "),t("path",{d:"M9 15l-4.5 4.5"},null),e(" "),t("path",{d:"M14.5 4l5.5 5.5"},null),e(" ")])}},L6t={name:"PinnedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pinned",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"},null),e(" "),t("path",{d:"M12 16l0 5"},null),e(" "),t("path",{d:"M8 4l8 0"},null),e(" ")])}},D6t={name:"PizzaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},O6t={name:"PizzaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pizza",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z"},null),e(" "),t("path",{d:"M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479"},null),e(" "),t("path",{d:"M13 11.01v-.01"},null),e(" "),t("path",{d:"M11 14v-.01"},null),e(" ")])}},F6t={name:"PlaceholderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-placeholder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.415a8 8 0 1 0 3 -15.415h-3"},null),e(" "),t("path",{d:"M13 8l-3 -3l3 -3"},null),e(" "),t("path",{d:"M7 17l4 -4l-4 -4l-4 4z"},null),e(" ")])}},R6t={name:"PlaneArrivalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-arrival",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},T6t={name:"PlaneDepartureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-departure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},E6t={name:"PlaneInflightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-inflight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"},null),e(" "),t("path",{d:"M3 21h18"},null),e(" ")])}},V6t={name:"PlaneOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_6t={name:"PlaneTiltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane-tilt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z"},null),e(" ")])}},W6t={name:"PlaneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plane",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z"},null),e(" ")])}},X6t={name:"PlanetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113"},null),e(" "),t("path",{d:"M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q6t={name:"PlanetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-planet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},Y6t={name:"Plant2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552"},null),e(" "),t("path",{d:"M12 19c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 3 7.013"},null),e(" "),t("path",{d:"M9.01 11.5a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U6t={name:"Plant2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 9a10 10 0 1 0 20 0"},null),e(" "),t("path",{d:"M12 19a10 10 0 0 1 10 -10"},null),e(" "),t("path",{d:"M2 9a10 10 0 0 1 10 10"},null),e(" "),t("path",{d:"M12 4a9.7 9.7 0 0 1 2.99 7.5"},null),e(" "),t("path",{d:"M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"},null),e(" ")])}},G6t={name:"PlantOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8"},null),e(" "),t("path",{d:"M11.9 7.908a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2"},null),e(" "),t("path",{d:"M12.531 8.528a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923"},null),e(" "),t("path",{d:"M12 15v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Z6t={name:"PlantIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plant",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z"},null),e(" "),t("path",{d:"M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 15l0 -6"},null),e(" ")])}},K6t={name:"PlayBasketballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-basketball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 21l3 -3l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l.5 -6"},null),e(" "),t("path",{d:"M5 12l1 -3l4.5 -1l3.5 3l4 1"},null),e(" "),t("path",{d:"M18.5 16a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},Q6t={name:"PlayCardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M13.716 13.712l-1.716 2.288l-3 -4l1.29 -1.72"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},J6t={name:"PlayCardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-card",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M16 18h.01"},null),e(" "),t("path",{d:"M12 16l-3 -4l3 -4l3 4z"},null),e(" ")])}},t7t={name:"PlayFootballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-football",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M14 21v-4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M6 12v-3l5 -1l3 3l3 1"},null),e(" "),t("path",{d:"M19.5 20a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},e7t={name:"PlayHandballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-handball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21l3.5 -2l-4.5 -4l2 -4.5"},null),e(" "),t("path",{d:"M7 6l2 4l5 .5l4 2.5l2.5 3"},null),e(" "),t("path",{d:"M4 20l5 -1l1.5 -2"},null),e(" "),t("path",{d:"M15 7a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M9.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},n7t={name:"PlayVolleyballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-play-volleyball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M20.5 10a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" "),t("path",{d:"M2 16l5 1l.5 -2.5"},null),e(" "),t("path",{d:"M11.5 21l2.5 -5.5l-5.5 -3.5l3.5 -4l3 4l4 2"},null),e(" ")])}},l7t={name:"PlayerEjectFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.247 3.341l-7 8c-.565 .647 -.106 1.659 .753 1.659h14c.86 0 1.318 -1.012 .753 -1.659l-7 -8a1 1 0 0 0 -1.506 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 15h-12a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r7t={name:"PlayerEjectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-eject",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12h14l-7 -8z"},null),e(" "),t("path",{d:"M5 16m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z"},null),e(" ")])}},o7t={name:"PlayerPauseFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s7t={name:"PlayerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},a7t={name:"PlayerPlayFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i7t={name:"PlayerPlayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-play",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 4v16l13 -8z"},null),e(" ")])}},h7t={name:"PlayerRecordFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5.072a8 8 0 1 1 -3.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 3.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d7t={name:"PlayerRecordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-record",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" ")])}},c7t={name:"PlayerSkipBackFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u7t={name:"PlayerSkipBackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-back",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 5v14l-12 -7z"},null),e(" "),t("path",{d:"M4 5l0 14"},null),e(" ")])}},p7t={name:"PlayerSkipForwardFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},g7t={name:"PlayerSkipForwardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-skip-forward",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 5v14l12 -7z"},null),e(" "),t("path",{d:"M20 5l0 14"},null),e(" ")])}},w7t={name:"PlayerStopFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},v7t={name:"PlayerStopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-stop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},f7t={name:"PlayerTrackNextFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M13 5v14c0 .86 1.012 1.318 1.659 .753l8 -7a1 1 0 0 0 0 -1.506l-8 -7c-.647 -.565 -1.659 -.106 -1.659 .753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m7t={name:"PlayerTrackNextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-next",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5v14l8 -7z"},null),e(" "),t("path",{d:"M14 5v14l8 -7z"},null),e(" ")])}},k7t={name:"PlayerTrackPrevFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},b7t={name:"PlayerTrackPrevIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-player-track-prev",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 5v14l-8 -7z"},null),e(" "),t("path",{d:"M10 5v14l-8 -7z"},null),e(" ")])}},M7t={name:"PlaylistAddIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-add",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h9"},null),e(" "),t("path",{d:"M11 16h-6"},null),e(" "),t("path",{d:"M15 16h6"},null),e(" "),t("path",{d:"M18 13v6"},null),e(" ")])}},x7t={name:"PlaylistOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 14a3 3 0 1 0 3 3"},null),e(" "),t("path",{d:"M17 13v-9h4"},null),e(" "),t("path",{d:"M13 5h-4m-4 0h-2"},null),e(" "),t("path",{d:"M3 9h6"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},z7t={name:"PlaylistXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-14"},null),e(" "),t("path",{d:"M5 12h7"},null),e(" "),t("path",{d:"M12 16h-7"},null),e(" "),t("path",{d:"M16 14l4 4"},null),e(" "),t("path",{d:"M20 14l-4 4"},null),e(" ")])}},I7t={name:"PlaylistIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playlist",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17v-13h4"},null),e(" "),t("path",{d:"M13 5h-10"},null),e(" "),t("path",{d:"M3 9l10 0"},null),e(" "),t("path",{d:"M9 13h-6"},null),e(" ")])}},y7t={name:"PlaystationCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M12 12m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0"},null),e(" ")])}},C7t={name:"PlaystationSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},S7t={name:"PlaystationTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M7.5 15h9l-4.5 -8z"},null),e(" ")])}},$7t={name:"PlaystationXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-playstation-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M8.5 8.5l7 7"},null),e(" "),t("path",{d:"M8.5 15.5l7 -7"},null),e(" ")])}},A7t={name:"PlugConnectedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" ")])}},B7t={name:"PlugConnectedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-connected",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z"},null),e(" "),t("path",{d:"M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z"},null),e(" "),t("path",{d:"M3 21l2.5 -2.5"},null),e(" "),t("path",{d:"M18.5 5.5l2.5 -2.5"},null),e(" "),t("path",{d:"M10 11l-2 2"},null),e(" "),t("path",{d:"M13 14l-2 2"},null),e(" ")])}},H7t={name:"PlugOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},N7t={name:"PlugXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" "),t("path",{d:"M16 16l4 4"},null),e(" "),t("path",{d:"M20 16l-4 4"},null),e(" ")])}},j7t={name:"PlugIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plug",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z"},null),e(" "),t("path",{d:"M4 20l3.5 -3.5"},null),e(" "),t("path",{d:"M15 4l-3.5 3.5"},null),e(" "),t("path",{d:"M20 9l-3.5 3.5"},null),e(" ")])}},P7t={name:"PlusEqualIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-equal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 16h-6"},null),e(" "),t("path",{d:"M20 19h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},L7t={name:"PlusMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h6"},null),e(" "),t("path",{d:"M7 4v6"},null),e(" "),t("path",{d:"M20 18h-6"},null),e(" "),t("path",{d:"M5 19l14 -14"},null),e(" ")])}},D7t={name:"PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},O7t={name:"PngIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-png",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M3 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},F7t={name:"PodiumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3"},null),e(" "),t("path",{d:"M7 8v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M15.599 15.613l-.599 5.387"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R7t={name:"PodiumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-podium",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z"},null),e(" "),t("path",{d:"M7 8v-2a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M8 12l1 9"},null),e(" "),t("path",{d:"M16 12l-1 9"},null),e(" "),t("path",{d:"M7 21h10"},null),e(" ")])}},T7t={name:"PointFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},E7t={name:"PointOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},V7t={name:"PointIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-point",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" ")])}},_7t={name:"PointerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.044 13.488l-1.266 -1.266l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.678 1.678"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},W7t={name:"PointerCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.526 12.97l-.748 -.748l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.714 .714"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},X7t={name:"PointerCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.487 14.93l-2.709 -2.708l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.785 .785"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},q7t={name:"PointerCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.76 13.203l-.982 -.981l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.67 .67"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},Y7t={name:"PointerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.774 13.218l-.996 -.996l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.343 .343"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},U7t={name:"PointerDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.787 .787"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},G7t={name:"PointerDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.992 13.436l-1.214 -1.214l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.171 1.171"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},Z7t={name:"PointerExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.97 13.414l-1.192 -1.192l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l2.778 2.778"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},K7t={name:"PointerHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.571 11.018l1.32 -.886a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Q7t={name:"PointerMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.6 15.043l-2.822 -2.821l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.188 1.188"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},J7t={name:"PointerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.662 11.628l2.229 -1.496a1.2 1.2 0 0 0 -.309 -2.228l-8.013 -2.303m-5.569 -1.601l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l.524 -.524"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tbt={name:"PointerPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.72 13.163l-.942 -.941l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.969 .969"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},ebt={name:"PointerPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.381 .381"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},nbt={name:"PointerPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.941 13.385l-1.163 -1.163l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.23 1.23"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},lbt={name:"PointerQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.062 12.506l-.284 -.284l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.278 1.278"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},rbt={name:"PointerSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.778 12.222l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},obt={name:"PointerShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.646 13.09l-.868 -.868l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.607 .607"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},sbt={name:"PointerStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.891 10.132a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},abt={name:"PointerUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.984 13.428l-1.206 -1.206l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l1.217 1.217"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},ibt={name:"PointerXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.768 13.212l-.99 -.99l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l.908 .908"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},hbt={name:"PointerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pointer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z"},null),e(" ")])}},dbt={name:"PokeballOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M3 12h6m7 0h5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cbt={name:"PokeballIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pokeball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12h6"},null),e(" "),t("path",{d:"M15 12h6"},null),e(" ")])}},ubt={name:"PokerChipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poker-chip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M18.364 5.636l-2.828 2.828"},null),e(" "),t("path",{d:"M8.464 15.536l-2.828 2.828"},null),e(" "),t("path",{d:"M5.636 5.636l2.828 2.828"},null),e(" "),t("path",{d:"M15.536 15.536l2.828 2.828"},null),e(" ")])}},pbt={name:"PolaroidFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.199 9.623l.108 .098l3.986 3.986l.094 .083a1 1 0 0 0 1.403 -1.403l-.083 -.094l-.292 -.293l1.292 -1.293l.106 -.095c.457 -.38 .918 -.38 1.386 .011l.108 .098l4.502 4.503a4.003 4.003 0 0 1 -3.596 2.77l-.213 .006h-12a4.002 4.002 0 0 1 -3.809 -2.775l5.516 -5.518l.106 -.095c.457 -.38 .918 -.38 1.386 .011zm8.801 -7.623a4 4 0 0 1 3.995 3.8l.005 .2v6.585l-3.293 -3.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-1.307 1.306l-2.293 -2.292l-.15 -.137c-1.256 -1.095 -2.85 -1.097 -4.096 -.017l-.154 .14l-4.307 4.306v-6.585a4 4 0 0 1 3.8 -3.995l.2 -.005h12zm-2.99 3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M8.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.01 20a1 1 0 0 1 .117 1.993l-.127 .007a1 1 0 0 1 -.117 -1.993l.127 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gbt={name:"PolaroidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polaroid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 16l16 0"},null),e(" "),t("path",{d:"M4 12l3 -3c.928 -.893 2.072 -.893 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2c.928 -.893 2.072 -.893 3 0l2 2"},null),e(" "),t("path",{d:"M14 7l.01 0"},null),e(" ")])}},wbt={name:"PolygonOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l1.546 -1.311"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-1.185 3.318m-1.062 2.972l-.253 .71"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},vbt={name:"PolygonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-polygon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 9.5l3.5 -3"},null),e(" "),t("path",{d:"M14 5.5l3 1.5"},null),e(" "),t("path",{d:"M18.5 10l-2.5 7"},null),e(" "),t("path",{d:"M13.5 17.5l-7 -5"},null),e(" ")])}},fbt={name:"PooIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-poo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 16a3.5 3.5 0 0 0 4 0"},null),e(" "),t("path",{d:"M11 4c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z"},null),e(" ")])}},mbt={name:"PoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861"},null),e(" "),t("path",{d:"M15 11v-6.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436"},null),e(" "),t("path",{d:"M15 5h-6"},null),e(" "),t("path",{d:"M9 10h1m4 0h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kbt={name:"PoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M2 16a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M15 12v-7.5a1.5 1.5 0 0 1 3 0"},null),e(" "),t("path",{d:"M9 12v-7.5a1.5 1.5 0 0 0 -3 0"},null),e(" "),t("path",{d:"M15 5l-6 0"},null),e(" "),t("path",{d:"M9 10l6 0"},null),e(" ")])}},bbt={name:"PowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-power",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 6a7.75 7.75 0 1 0 10 0"},null),e(" "),t("path",{d:"M12 4l0 8"},null),e(" ")])}},Mbt={name:"PrayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 20h8l-4 -4v-7l4 3l2 -2"},null),e(" ")])}},xbt={name:"PremiumRightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-premium-rights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75"},null),e(" "),t("path",{d:"M12 7v2"},null),e(" "),t("path",{d:"M12 15v2"},null),e(" ")])}},zbt={name:"PrescriptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prescription",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"},null),e(" "),t("path",{d:"M19 21l-9 -9"},null),e(" "),t("path",{d:"M13 21l6 -6"},null),e(" ")])}},Ibt={name:"PresentationAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12v-4"},null),e(" "),t("path",{d:"M15 12v-2"},null),e(" "),t("path",{d:"M12 12v-1"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" ")])}},ybt={name:"PresentationOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4h1m4 0h13"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10"},null),e(" "),t("path",{d:"M12 16v4"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M8 12l2 -2m4 0l2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cbt={name:"PresentationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-presentation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4l18 0"},null),e(" "),t("path",{d:"M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10"},null),e(" "),t("path",{d:"M12 16l0 4"},null),e(" "),t("path",{d:"M9 20l6 0"},null),e(" "),t("path",{d:"M8 12l3 -3l2 2l3 -3"},null),e(" ")])}},Sbt={name:"PrinterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2"},null),e(" "),t("path",{d:"M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$bt={name:"PrinterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-printer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M17 9v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4"},null),e(" "),t("path",{d:"M7 13m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Abt={name:"PrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12v10"},null),e(" "),t("path",{d:"M17.957 17.952l-4.937 3.703a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17m3 -1h12a1 1 0 0 1 1 1v11.17c0 .25 -.037 .495 -.109 .729"},null),e(" "),t("path",{d:"M12.688 8.7a1.7 1.7 0 0 0 .357 -.214l6.655 -5.186"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Bbt={name:"PrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M13.02 21.655a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v8"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Hbt={name:"PrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9v13"},null),e(" "),t("path",{d:"M19 17.17l-5.98 4.485a1.7 1.7 0 0 1 -2.04 0l-5.98 -4.485a2.5 2.5 0 0 1 -1 -2v-11.17a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v11.17a2.5 2.5 0 0 1 -1 2z"},null),e(" "),t("path",{d:"M4.3 3.3l6.655 5.186a1.7 1.7 0 0 0 2.09 0l6.655 -5.186"},null),e(" ")])}},Nbt={name:"PrisonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prison",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4v16"},null),e(" "),t("path",{d:"M14 4v16"},null),e(" "),t("path",{d:"M6 4v5"},null),e(" "),t("path",{d:"M6 15v5"},null),e(" "),t("path",{d:"M10 4v5"},null),e(" "),t("path",{d:"M11 9h-6v6h6z"},null),e(" "),t("path",{d:"M10 15v5"},null),e(" "),t("path",{d:"M8 12h-.01"},null),e(" ")])}},jbt={name:"ProgressAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 8v4"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" ")])}},Pbt={name:"ProgressBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9l-2 3h4l-2 3"},null),e(" ")])}},Lbt={name:"ProgressCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},Dbt={name:"ProgressDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M15 12l-3 3l-3 -3"},null),e(" ")])}},Obt={name:"ProgressHelpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-help",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16v.01"},null),e(" "),t("path",{d:"M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},Fbt={name:"ProgressXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" "),t("path",{d:"M14 14l-4 -4"},null),e(" "),t("path",{d:"M10 14l4 -4"},null),e(" ")])}},Rbt={name:"ProgressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-progress",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 20.777a8.942 8.942 0 0 1 -2.48 -.969"},null),e(" "),t("path",{d:"M14 3.223a9.003 9.003 0 0 1 0 17.554"},null),e(" "),t("path",{d:"M4.579 17.093a8.961 8.961 0 0 1 -1.227 -2.592"},null),e(" "),t("path",{d:"M3.124 10.5c.16 -.95 .468 -1.85 .9 -2.675l.169 -.305"},null),e(" "),t("path",{d:"M6.907 4.579a8.954 8.954 0 0 1 3.093 -1.356"},null),e(" ")])}},Tbt={name:"PromptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-prompt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M13 17l6 0"},null),e(" ")])}},Ebt={name:"PropellerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.448 10.432a3 3 0 1 0 4.106 4.143"},null),e(" "),t("path",{d:"M14.272 10.272c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Vbt={name:"PropellerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-propeller",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.167 10.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514"},null),e(" "),t("path",{d:"M13.169 16.751c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128"},null),e(" "),t("path",{d:"M8.664 13c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386"},null),e(" ")])}},_bt={name:"PumpkinScaryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pumpkin-scary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1"},null),e(" "),t("path",{d:"M10 11h.01"},null),e(" "),t("path",{d:"M14 11h.01"},null),e(" "),t("path",{d:"M17 6.082c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788z"},null),e(" "),t("path",{d:"M12 6c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106"},null),e(" ")])}},Wbt={name:"Puzzle2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 4v2.5a.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a.5 .5 0 0 1 .5 .5v1.5"},null),e(" "),t("path",{d:"M12 12v1.5a.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a.5 .5 0 0 0 -.5 .5v2.5"},null),e(" "),t("path",{d:"M20 12h-2.5a.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a.5 .5 0 0 1 -.5 .5h-1.5"},null),e(" "),t("path",{d:"M12 12h-1.5a.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a.5 .5 0 0 0 -.5 -.5h-2.5"},null),e(" ")])}},Xbt={name:"PuzzleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a3 3 0 0 1 2.995 2.824l.005 .176v1h3a2 2 0 0 1 1.995 1.85l.005 .15v3h1a3 3 0 0 1 .176 5.995l-.176 .005h-1v3a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-1a1 1 0 0 0 -1.993 -.117l-.007 .117v1a2 2 0 0 1 -1.85 1.995l-.15 .005h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1a1 1 0 0 0 .117 -1.993l-.117 -.007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h3v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qbt={name:"PuzzleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ybt={name:"PuzzleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-puzzle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1"},null),e(" ")])}},Ubt={name:"PyramidOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21.384 17.373a1.004 1.004 0 0 0 -.013 -1.091l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-1.8 2.917m-1.531 2.48l-5.209 8.439a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l5.903 -2.958"},null),e(" "),t("path",{d:"M12 2v6m0 4v10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Gbt={name:"PyramidPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.719 11.985l-5.889 -9.539a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054a1.994 1.994 0 0 0 1.789 0l.149 -.074"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},Zbt={name:"PyramidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-pyramid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.105 21.788a1.994 1.994 0 0 0 1.789 0l8.092 -4.054c.538 -.27 .718 -.951 .385 -1.452l-8.54 -13.836a.999 .999 0 0 0 -1.664 0l-8.54 13.836a1.005 1.005 0 0 0 .386 1.452l8.092 4.054z"},null),e(" "),t("path",{d:"M12 2v20"},null),e(" ")])}},Kbt={name:"QrcodeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705"},null),e(" "),t("path",{d:"M7 17v.01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7v.01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7v.01"},null),e(" "),t("path",{d:"M20 14v.01"},null),e(" "),t("path",{d:"M14 14v3"},null),e(" "),t("path",{d:"M14 20h3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qbt={name:"QrcodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-qrcode",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 17l0 .01"},null),e(" "),t("path",{d:"M14 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 7l0 .01"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 7l0 .01"},null),e(" "),t("path",{d:"M14 14l3 0"},null),e(" "),t("path",{d:"M20 14l0 .01"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M14 20l3 0"},null),e(" "),t("path",{d:"M17 17l3 0"},null),e(" "),t("path",{d:"M20 17l0 3"},null),e(" ")])}},Jbt={name:"QuestionMarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-question-mark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4"},null),e(" "),t("path",{d:"M12 19l0 .01"},null),e(" ")])}},t8t={name:"QuoteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},e8t={name:"QuoteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-quote",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" "),t("path",{d:"M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5"},null),e(" ")])}},n8t={name:"Radar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.51 15.56a5 5 0 1 0 -3.51 1.44"},null),e(" "),t("path",{d:"M18.832 17.86a9 9 0 1 0 -6.832 3.14"},null),e(" "),t("path",{d:"M12 12v9"},null),e(" ")])}},l8t={name:"RadarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5"},null),e(" "),t("path",{d:"M16 9a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},r8t={name:"RadarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9"},null),e(" "),t("path",{d:"M16 9a5 5 0 1 0 -7 7"},null),e(" "),t("path",{d:"M20.486 9a9 9 0 1 0 -11.482 11.495"},null),e(" ")])}},o8t={name:"RadioOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5"},null),e(" "),t("path",{d:"M4 12h8m4 0h4"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},s8t={name:"RadioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5"},null),e(" "),t("path",{d:"M4 12h16"},null),e(" "),t("path",{d:"M7 12v-2"},null),e(" "),t("path",{d:"M17 16v.01"},null),e(" "),t("path",{d:"M13 16v.01"},null),e(" ")])}},a8t={name:"RadioactiveFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 1 1a10 10 0 0 1 -5 8.656a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a.995 .995 0 0 1 -.133 -.542l.01 -.11l.023 -.106l.034 -.106l.046 -.1l.056 -.094l.067 -.089a.994 .994 0 0 1 .165 -.155l.098 -.064a2 2 0 0 0 .993 -1.57l.007 -.163a1 1 0 0 1 .883 -.994l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 3.344a10 10 0 0 1 10 0a1 1 0 0 1 .418 1.262l-.052 .104l-3 5.19l-.064 .098a.994 .994 0 0 1 -.155 .165l-.089 .067a1 1 0 0 1 -.195 .102l-.105 .034l-.107 .022a1.003 1.003 0 0 1 -.547 -.07l-.104 -.052a2 2 0 0 0 -1.842 -.082l-.158 .082a1 1 0 0 1 -1.302 -.268l-.064 -.098l-3 -5.19a1 1 0 0 1 .366 -1.366z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 11a1 1 0 0 1 .993 .884l.007 .117a2 2 0 0 0 .861 1.645l.237 .152a.994 .994 0 0 1 .165 .155l.067 .089l.056 .095l.045 .099c.014 .036 .026 .07 .035 .106l.022 .107l.011 .11a.994 .994 0 0 1 -.08 .437l-.053 .104l-3 5.19a1 1 0 0 1 -1.366 .366a10 10 0 0 1 -5 -8.656a1 1 0 0 1 .883 -.993l.117 -.007h6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i8t={name:"RadioactiveOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -8.536 -.25"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},h8t={name:"RadioactiveIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radioactive",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6"},null),e(" "),t("path",{d:"M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0"},null),e(" "),t("path",{d:"M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6"},null),e(" ")])}},d8t={name:"RadiusBottomLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 19h-6a8 8 0 0 1 -8 -8v-6"},null),e(" ")])}},c8t={name:"RadiusBottomRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-bottom-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5v6a8 8 0 0 1 -8 8h-6"},null),e(" ")])}},u8t={name:"RadiusTopLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19v-6a8 8 0 0 1 8 -8h6"},null),e(" ")])}},p8t={name:"RadiusTopRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-radius-top-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5h6a8 8 0 0 1 8 8v6"},null),e(" ")])}},g8t={name:"RainbowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114"},null),e(" "),t("path",{d:"M11.088 11.069a6 6 0 0 0 -5.088 5.931"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},w8t={name:"RainbowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rainbow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10"},null),e(" "),t("path",{d:"M18 17a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M14 17a2 2 0 1 0 -4 0"},null),e(" ")])}},v8t={name:"Rating12PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-12-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},f8t={name:"Rating14PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-14-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M12.5 15v-6m-2.5 0v4h3"},null),e(" ")])}},m8t={name:"Rating16PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-16-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1"},null),e(" ")])}},k8t={name:"Rating18PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-18-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 10.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M11.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0"},null),e(" "),t("path",{d:"M7 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" ")])}},b8t={name:"Rating21PlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rating-21-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 15v-6"},null),e(" "),t("path",{d:"M15.5 12h3"},null),e(" "),t("path",{d:"M17 10.5v3"},null),e(" "),t("path",{d:"M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3"},null),e(" ")])}},M8t={name:"RazorElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3v2"},null),e(" "),t("path",{d:"M12 3v2"},null),e(" "),t("path",{d:"M16 3v2"},null),e(" "),t("path",{d:"M9 12v6a3 3 0 0 0 6 0v-6h-6z"},null),e(" "),t("path",{d:"M8 5h8l-1 4h-6z"},null),e(" "),t("path",{d:"M12 17v1"},null),e(" ")])}},x8t={name:"RazorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-razor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10v4h-10z"},null),e(" "),t("path",{d:"M12 7v4"},null),e(" "),t("path",{d:"M12 11a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z"},null),e(" ")])}},z8t={name:"Receipt2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5"},null),e(" ")])}},I8t={name:"ReceiptOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M11 7l4 0"},null),e(" "),t("path",{d:"M9 11l2 0"},null),e(" "),t("path",{d:"M13 15l2 0"},null),e(" "),t("path",{d:"M15 11l0 .01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},y8t={name:"ReceiptRefundIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-refund",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" "),t("path",{d:"M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},C8t={name:"ReceiptTaxIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt-tax",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 14l6 -6"},null),e(" "),t("circle",{cx:"9.5",cy:"8.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"14.5",cy:"13.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2"},null),e(" ")])}},S8t={name:"ReceiptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-receipt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2"},null),e(" ")])}},$8t={name:"RechargingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recharging",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.038 4.5a9 9 0 0 0 -2.495 2.47"},null),e(" "),t("path",{d:"M3.186 10.209a9 9 0 0 0 0 3.508"},null),e(" "),t("path",{d:"M4.5 16.962a9 9 0 0 0 2.47 2.495"},null),e(" "),t("path",{d:"M10.209 20.814a9 9 0 0 0 3.5 0"},null),e(" "),t("path",{d:"M16.962 19.5a9 9 0 0 0 2.495 -2.47"},null),e(" "),t("path",{d:"M20.814 13.791a9 9 0 0 0 0 -3.508"},null),e(" "),t("path",{d:"M19.5 7.038a9 9 0 0 0 -2.47 -2.495"},null),e(" "),t("path",{d:"M13.791 3.186a9 9 0 0 0 -3.508 -.02"},null),e(" "),t("path",{d:"M12 8l-2 4h4l-2 4"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 0 -18"},null),e(" ")])}},A8t={name:"RecordMailOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18.569 14.557a3 3 0 1 0 -4.113 -4.149"},null),e(" "),t("path",{d:"M7 15h8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},B8t={name:"RecordMailIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-record-mail",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15l10 0"},null),e(" ")])}},H8t={name:"RectangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},N8t={name:"RectangleVerticalFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 2h-10a3 3 0 0 0 -3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-14a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},j8t={name:"RectangleVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" ")])}},P8t={name:"RectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},L8t={name:"RectangularPrismOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.18l-4.18 2.093c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l7.146 -3.578m2.67 -1.337l.184 -.093c.619 -.355 1 -1.01 1 -1.718v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-3.146 1.575"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l3.048 -1.458m2.71 -1.296l5.742 -2.746"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},D8t={name:"RectangularPrismPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12.5v-3.509a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.007c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l2.062 -1.032"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},O8t={name:"RectangularPrismIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rectangular-prism",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z"},null),e(" "),t("path",{d:"M9 21v-7.5"},null),e(" "),t("path",{d:"M9 13.5l11.5 -5.5"},null),e(" "),t("path",{d:"M3.5 11l5.5 2.5"},null),e(" ")])}},F8t={name:"RecycleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},R8t={name:"RecycleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-recycle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1"},null),e(" "),t("path",{d:"M8.536 11l-.732 -2.732l-2.732 .732"},null),e(" "),t("path",{d:"M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024"},null),e(" "),t("path",{d:"M15.464 11l2.732 .732l.732 -2.732"},null),e(" "),t("path",{d:"M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976"},null),e(" ")])}},T8t={name:"RefreshAlertIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-alert",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" "),t("path",{d:"M12 15l.01 0"},null),e(" ")])}},E8t={name:"RefreshDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},V8t={name:"RefreshOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_8t={name:"RefreshIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-refresh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"},null),e(" "),t("path",{d:"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"},null),e(" ")])}},W8t={name:"RegexOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X8t={name:"RegexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-regex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z"},null),e(" "),t("path",{d:"M17 7.875l3 -1.687"},null),e(" "),t("path",{d:"M17 7.875v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 -1.687"},null),e(" "),t("path",{d:"M17 7.875l3 1.688"},null),e(" "),t("path",{d:"M17 4.5v3.375"},null),e(" "),t("path",{d:"M17 7.875l-3 1.688"},null),e(" ")])}},q8t={name:"RegisteredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-registered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M14 15l-2 -2"},null),e(" ")])}},Y8t={name:"RelationManyToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-many-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M6 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},U8t={name:"RelationOneToManyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-many",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 10h1v4"},null),e(" "),t("path",{d:"M14 14v-4l3 4v-4"},null),e(" "),t("path",{d:"M11 10.5l0 .01"},null),e(" "),t("path",{d:"M11 13.5l0 .01"},null),e(" ")])}},G8t={name:"RelationOneToOneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-relation-one-to-one",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 10h1v4"},null),e(" "),t("path",{d:"M15 10h1v4"},null),e(" "),t("path",{d:"M12 10.5l0 .01"},null),e(" "),t("path",{d:"M12 13.5l0 .01"},null),e(" ")])}},Z8t={name:"ReloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747"},null),e(" "),t("path",{d:"M20 4v5h-5"},null),e(" ")])}},K8t={name:"RepeatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Q8t={name:"RepeatOnceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat-once",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 11l1 -1v4"},null),e(" ")])}},J8t={name:"RepeatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-repeat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3"},null),e(" ")])}},t9t={name:"ReplaceFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M20 14h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},e9t={name:"ReplaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M19 15h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},n9t={name:"ReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M15 15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" ")])}},l9t={name:"ReportAnalyticsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-analytics",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 17v-5"},null),e(" "),t("path",{d:"M12 17v-1"},null),e(" "),t("path",{d:"M15 17v-3"},null),e(" ")])}},r9t={name:"ReportMedicalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-medical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 14l4 0"},null),e(" "),t("path",{d:"M12 12l0 4"},null),e(" ")])}},o9t={name:"ReportMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M12 17v1m0 -8v1"},null),e(" ")])}},s9t={name:"ReportOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},a9t={name:"ReportSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 12v-5a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" "),t("path",{d:"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M18.5 19.5l2.5 2.5"},null),e(" ")])}},i9t={name:"ReportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-report",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"},null),e(" "),t("path",{d:"M18 14v4h4"},null),e(" "),t("path",{d:"M18 11v-4a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M18 18m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 11h4"},null),e(" "),t("path",{d:"M8 15h3"},null),e(" ")])}},h9t={name:"ReservedLineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-reserved-line",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 20h6"},null),e(" "),t("path",{d:"M12 14v6"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},d9t={name:"ResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M4 12h7a1 1 0 0 1 1 1v7"},null),e(" ")])}},c9t={name:"RibbonHealthIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ribbon-health",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84"},null),e(" ")])}},u9t={name:"RingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M7 15v-11"},null),e(" "),t("path",{d:"M17 15v-11"},null),e(" "),t("path",{d:"M3 4h18"},null),e(" ")])}},p9t={name:"RippleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},g9t={name:"RippleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ripple",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 17c3 -2 6 -2 9 0s6 2 9 0"},null),e(" "),t("path",{d:"M3 12c3 -2 6 -2 9 0s6 2 9 0"},null),e(" ")])}},w9t={name:"RoadOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l3.332 -11.661"},null),e(" "),t("path",{d:"M16 5l2.806 9.823"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-1"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},v9t={name:"RoadSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9 14v-2c0 -.59 .414 -1 1 -1h5"},null),e(" "),t("path",{d:"M13 9l2 2l-2 2"},null),e(" ")])}},f9t={name:"RoadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-road",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19l4 -14"},null),e(" "),t("path",{d:"M16 5l4 14"},null),e(" "),t("path",{d:"M12 8v-2"},null),e(" "),t("path",{d:"M12 13v-2"},null),e(" "),t("path",{d:"M12 18v-2"},null),e(" ")])}},m9t={name:"RobotOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M8.5 11.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15.854 11.853a.498 .498 0 0 0 -.354 -.853a.498 .498 0 0 0 -.356 .149"},null),e(" "),t("path",{d:"M8.336 4.343l-.336 -1.343"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},k9t={name:"RobotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-robot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("circle",{cx:"8.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"15.5",cy:"11.5",r:".5",fill:"currentColor"},null),e(" "),t("path",{d:"M9 7l-1 -4"},null),e(" "),t("path",{d:"M15 7l1 -4"},null),e(" ")])}},b9t={name:"RocketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},M9t={name:"RocketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rocket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3"},null),e(" "),t("path",{d:"M7 14a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3"},null),e(" "),t("path",{d:"M15 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},x9t={name:"RollerSkatingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-roller-skating",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9z"},null),e(" "),t("path",{d:"M8 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M16 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},z9t={name:"RollercoasterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675"},null),e(" "),t("path",{d:"M20 9v7m0 4v1"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-9"},null),e(" "),t("path",{d:"M16 9.5v2.5m0 4v5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M9.446 5.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},I9t={name:"RollercoasterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rollercoaster",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675"},null),e(" "),t("path",{d:"M20 9v12"},null),e(" "),t("path",{d:"M8 21v-3"},null),e(" "),t("path",{d:"M12 21v-10"},null),e(" "),t("path",{d:"M16 9.5v11.5"},null),e(" "),t("path",{d:"M15 3h5v3h-5z"},null),e(" "),t("path",{d:"M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z"},null),e(" ")])}},y9t={name:"RosetteFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.01 2.011a3.2 3.2 0 0 1 2.113 .797l.154 .145l.698 .698a1.2 1.2 0 0 0 .71 .341l.135 .008h1a3.2 3.2 0 0 1 3.195 3.018l.005 .182v1c0 .27 .092 .533 .258 .743l.09 .1l.697 .698a3.2 3.2 0 0 1 .147 4.382l-.145 .154l-.698 .698a1.2 1.2 0 0 0 -.341 .71l-.008 .135v1a3.2 3.2 0 0 1 -3.018 3.195l-.182 .005h-1a1.2 1.2 0 0 0 -.743 .258l-.1 .09l-.698 .697a3.2 3.2 0 0 1 -4.382 .147l-.154 -.145l-.698 -.698a1.2 1.2 0 0 0 -.71 -.341l-.135 -.008h-1a3.2 3.2 0 0 1 -3.195 -3.018l-.005 -.182v-1a1.2 1.2 0 0 0 -.258 -.743l-.09 -.1l-.697 -.698a3.2 3.2 0 0 1 -.147 -4.382l.145 -.154l.698 -.698a1.2 1.2 0 0 0 .341 -.71l.008 -.135v-1l.005 -.182a3.2 3.2 0 0 1 3.013 -3.013l.182 -.005h1a1.2 1.2 0 0 0 .743 -.258l.1 -.09l.698 -.697a3.2 3.2 0 0 1 2.269 -.944z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},C9t={name:"RosetteNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},S9t={name:"RosetteNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},$9t={name:"RosetteNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},A9t={name:"RosetteNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},B9t={name:"RosetteNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},H9t={name:"RosetteNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},N9t={name:"RosetteNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},j9t={name:"RosetteNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},P9t={name:"RosetteNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},L9t={name:"RosetteNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},D9t={name:"RosetteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rosette",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1"},null),e(" ")])}},O9t={name:"Rotate2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5"},null),e(" "),t("path",{d:"M18.37 7.16l0 .01"},null),e(" "),t("path",{d:"M13 19.94l0 .01"},null),e(" "),t("path",{d:"M16.84 18.37l0 .01"},null),e(" "),t("path",{d:"M19.37 15.1l0 .01"},null),e(" "),t("path",{d:"M19.94 11l0 .01"},null),e(" ")])}},F9t={name:"Rotate360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16h4v4"},null),e(" "),t("path",{d:"M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"},null),e(" ")])}},R9t={name:"RotateClockwise2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5"},null),e(" "),t("path",{d:"M5.63 7.16l0 .01"},null),e(" "),t("path",{d:"M4.06 11l0 .01"},null),e(" "),t("path",{d:"M4.63 15.1l0 .01"},null),e(" "),t("path",{d:"M7.16 18.37l0 .01"},null),e(" "),t("path",{d:"M11 19.94l0 .01"},null),e(" ")])}},T9t={name:"RotateClockwiseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-clockwise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5"},null),e(" ")])}},E9t={name:"RotateDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},V9t={name:"RotateRectangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate-rectangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988"},null),e(" "),t("path",{d:"M7.05 11.038v-3.988"},null),e(" ")])}},_9t={name:"RotateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rotate",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5"},null),e(" ")])}},W9t={name:"Route2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l4 4"},null),e(" "),t("path",{d:"M7 17l-4 4"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" "),t("path",{d:"M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2"},null),e(" ")])}},X9t={name:"RouteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},q9t={name:"RouteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-route",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 19h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5"},null),e(" ")])}},Y9t={name:"RouterOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M17 17v.01"},null),e(" "),t("path",{d:"M13 17v.01"},null),e(" "),t("path",{d:"M12.226 8.2a4 4 0 0 1 6.024 .55"},null),e(" "),t("path",{d:"M9.445 5.407a8 8 0 0 1 12.055 1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},U9t={name:"RouterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-router",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M17 17l0 .01"},null),e(" "),t("path",{d:"M13 17l0 .01"},null),e(" "),t("path",{d:"M15 13l0 -2"},null),e(" "),t("path",{d:"M11.75 8.75a4 4 0 0 1 6.5 0"},null),e(" "),t("path",{d:"M8.5 6.5a8 8 0 0 1 13 0"},null),e(" ")])}},G9t={name:"RowInsertBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1z"},null),e(" "),t("path",{d:"M12 15l0 4"},null),e(" "),t("path",{d:"M14 17l-4 0"},null),e(" ")])}},Z9t={name:"RowInsertTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-row-insert-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 9v-4"},null),e(" "),t("path",{d:"M10 7l4 0"},null),e(" ")])}},K9t={name:"RssIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rss",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 4a16 16 0 0 1 16 16"},null),e(" "),t("path",{d:"M4 11a9 9 0 0 1 9 9"},null),e(" ")])}},Q9t={name:"RubberStampOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.712 4.722a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178"},null),e(" ")])}},J9t={name:"RubberStampIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-rubber-stamp",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05z"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},tMt={name:"Ruler2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eMt={name:"Ruler2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4l-14 14l-4 -4z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 16l-1.5 -1.5"},null),e(" ")])}},nMt={name:"Ruler3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 8v2"},null),e(" "),t("path",{d:"M6 8v3"},null),e(" "),t("path",{d:"M12 8v3"},null),e(" "),t("path",{d:"M18 8v3"},null),e(" "),t("path",{d:"M15 8v2"},null),e(" ")])}},lMt={name:"RulerMeasureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-measure",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z"},null),e(" "),t("path",{d:"M9 12v2"},null),e(" "),t("path",{d:"M6 12v3"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M18 12v3"},null),e(" "),t("path",{d:"M15 12v2"},null),e(" "),t("path",{d:"M3 3v4"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M21 3v4"},null),e(" ")])}},rMt={name:"RulerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722"},null),e(" "),t("path",{d:"M4 8h2"},null),e(" "),t("path",{d:"M4 12h3"},null),e(" "),t("path",{d:"M4 16h2"},null),e(" "),t("path",{d:"M12 4v3"},null),e(" "),t("path",{d:"M16 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oMt={name:"RulerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ruler",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1"},null),e(" "),t("path",{d:"M4 8l2 0"},null),e(" "),t("path",{d:"M4 12l3 0"},null),e(" "),t("path",{d:"M4 16l2 0"},null),e(" "),t("path",{d:"M8 4l0 2"},null),e(" "),t("path",{d:"M12 4l0 3"},null),e(" "),t("path",{d:"M16 4l0 2"},null),e(" ")])}},sMt={name:"RunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-run",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 17l5 1l.75 -1.5"},null),e(" "),t("path",{d:"M15 21l0 -4l-4 -3l1 -6"},null),e(" "),t("path",{d:"M7 12l0 -3l5 -1l3 3l3 1"},null),e(" ")])}},aMt={name:"STurnDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M5 7v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5"},null),e(" "),t("path",{d:"M16 18l3 3l3 -3"},null),e(" ")])}},iMt={name:"STurnLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z"},null),e(" "),t("path",{d:"M17 5h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5"},null),e(" "),t("path",{d:"M6 16l-3 3l3 3"},null),e(" ")])}},hMt={name:"STurnRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5"},null),e(" "),t("path",{d:"M18 16l3 3l-3 3"},null),e(" ")])}},dMt={name:"STurnUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-s-turn-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M5 17v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5"},null),e(" "),t("path",{d:"M16 6l3 -3l3 3"},null),e(" ")])}},cMt={name:"Sailboat2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M12 11v4"},null),e(" "),t("path",{d:"M7 3c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" ")])}},uMt={name:"SailboatOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h12m4 0h2l-.506 1.517"},null),e(" "),t("path",{d:"M11 11v1h1m4 0h2l-7 -9v4"},null),e(" "),t("path",{d:"M7.713 7.718l-1.713 4.282"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pMt={name:"SailboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sailboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -3h18l-1 3"},null),e(" "),t("path",{d:"M11 12h7l-7 -9v9"},null),e(" "),t("path",{d:"M8 7l-2 5"},null),e(" ")])}},gMt={name:"SaladIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salad",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M18.5 11c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076"},null),e(" "),t("path",{d:"M5.255 11.008a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35"},null),e(" "),t("path",{d:"M8 8l1 -4l4 2.5"},null),e(" "),t("path",{d:"M13 11v-.5a2.5 2.5 0 1 0 -5 0v.5"},null),e(" ")])}},wMt={name:"SaltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-salt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13v.01"},null),e(" "),t("path",{d:"M10 16v.01"},null),e(" "),t("path",{d:"M14 16v.01"},null),e(" "),t("path",{d:"M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z"},null),e(" "),t("path",{d:"M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671"},null),e(" ")])}},vMt={name:"SatelliteOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17c.69 0 1.316 -.28 1.769 -.733"},null),e(" "),t("path",{d:"M15 21c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fMt={name:"SatelliteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-satellite",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z"},null),e(" "),t("path",{d:"M6 10l-3 3l3 3l3 -3"},null),e(" "),t("path",{d:"M10 6l3 -3l3 3l-3 3"},null),e(" "),t("path",{d:"M12 12l1.5 1.5"},null),e(" "),t("path",{d:"M14.5 17a2.5 2.5 0 0 0 2.5 -2.5"},null),e(" "),t("path",{d:"M15 21a6 6 0 0 0 6 -6"},null),e(" ")])}},mMt={name:"SausageIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sausage",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z"},null),e(" "),t("path",{d:"M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99"},null),e(" "),t("path",{d:"M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245"},null),e(" ")])}},kMt={name:"ScaleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20h10"},null),e(" "),t("path",{d:"M9.452 5.425l2.548 -.425l6 1"},null),e(" "),t("path",{d:"M12 3v5m0 4v8"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M18.873 14.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bMt={name:"ScaleOutlineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827"},null),e(" "),t("path",{d:"M11.062 7.062c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MMt={name:"ScaleOutlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale-outline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"},null),e(" "),t("path",{d:"M12 7c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z"},null),e(" ")])}},xMt={name:"ScaleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scale",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M6 6l6 -1l6 1"},null),e(" "),t("path",{d:"M12 3l0 17"},null),e(" "),t("path",{d:"M9 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M21 12l-3 -6l-3 6a3 3 0 0 0 6 0"},null),e(" ")])}},zMt={name:"ScanEyeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan-eye",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 12c3.333 -4.667 6.667 -4.667 10 0"},null),e(" "),t("path",{d:"M7 12c3.333 4.667 6.667 4.667 10 0"},null),e(" "),t("path",{d:"M12 12h-.01"},null),e(" ")])}},IMt={name:"ScanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7v-1a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 17v1a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-1"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},yMt={name:"SchemaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 2h4v4m-4 0h-1v-1"},null),e(" "),t("path",{d:"M15 11v-1h5v4h-2"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h2"},null),e(" "),t("path",{d:"M7.5 7.5v2.5"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CMt={name:"SchemaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-schema",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 2h5v4h-5z"},null),e(" "),t("path",{d:"M15 10h5v4h-5z"},null),e(" "),t("path",{d:"M5 18h5v4h-5z"},null),e(" "),t("path",{d:"M5 10h5v4h-5z"},null),e(" "),t("path",{d:"M10 12h5"},null),e(" "),t("path",{d:"M7.5 6v4"},null),e(" "),t("path",{d:"M7.5 14v4"},null),e(" ")])}},SMt={name:"SchoolBellIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-bell",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17a3 3 0 0 0 3 3"},null),e(" "),t("path",{d:"M14.805 6.37l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786"},null),e(" "),t("path",{d:"M16.505 7.495a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z"},null),e(" ")])}},$Mt={name:"SchoolOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6"},null),e(" "),t("path",{d:"M6 10.6v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},AMt={name:"SchoolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-school",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 9l-10 -4l-10 4l10 4l10 -4v6"},null),e(" "),t("path",{d:"M6 10.6v5.4a6 3 0 0 0 12 0v-5.4"},null),e(" ")])}},BMt={name:"ScissorsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.432 4.442a3 3 0 1 0 4.114 4.146"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 15.4l3.4 -3.4m2 -2l5 -5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},HMt={name:"ScissorsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scissors",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.6 8.6l10.4 10.4"},null),e(" "),t("path",{d:"M8.6 15.4l10.4 -10.4"},null),e(" ")])}},NMt={name:"ScooterElectricIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter-electric",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M10 4l-2 4h3l-2 4"},null),e(" ")])}},jMt={name:"ScooterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scooter",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1"},null),e(" ")])}},PMt={name:"ScoreboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scoreboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5v2"},null),e(" "),t("path",{d:"M12 10v1"},null),e(" "),t("path",{d:"M12 14v1"},null),e(" "),t("path",{d:"M12 18v1"},null),e(" "),t("path",{d:"M7 3v2"},null),e(" "),t("path",{d:"M17 3v2"},null),e(" "),t("path",{d:"M15 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M6 9h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5"},null),e(" ")])}},LMt={name:"ScreenShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 8l4 -4m-4 0l4 4"},null),e(" ")])}},DMt={name:"ScreenShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screen-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9"},null),e(" "),t("path",{d:"M7 20l10 0"},null),e(" "),t("path",{d:"M9 16l0 4"},null),e(" "),t("path",{d:"M15 16l0 4"},null),e(" "),t("path",{d:"M17 4h4v4"},null),e(" "),t("path",{d:"M16 9l5 -5"},null),e(" ")])}},OMt={name:"ScreenshotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-screenshot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 19a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M5 13v-2"},null),e(" "),t("path",{d:"M5 7a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M11 5h2"},null),e(" "),t("path",{d:"M17 5a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M19 11v2"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" "),t("path",{d:"M21 19h-4"},null),e(" "),t("path",{d:"M13 19h-2"},null),e(" ")])}},FMt={name:"ScribbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RMt={name:"ScribbleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scribble",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5"},null),e(" ")])}},TMt={name:"ScriptMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},EMt={name:"ScriptPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 19h4"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M19 17v4"},null),e(" ")])}},VMt={name:"ScriptXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" "),t("path",{d:"M17 17l4 4m0 -4l-4 4"},null),e(" ")])}},_Mt={name:"ScriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-script",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8"},null),e(" ")])}},WMt={name:"ScubaMaskOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XMt={name:"ScubaMaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-scuba-mask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 17a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5"},null),e(" ")])}},qMt={name:"SdkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sdk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M17 8v8"},null),e(" "),t("path",{d:"M21 8l-3 4l3 4"},null),e(" "),t("path",{d:"M17 12h1"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},YMt={name:"SearchOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UMt={name:"SearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},GMt={name:"SectionSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.172 19a3 3 0 1 0 2.828 -4"},null),e(" "),t("path",{d:"M14.83 5a3 3 0 1 0 -2.83 4"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},ZMt={name:"SectionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-section",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h.01"},null),e(" "),t("path",{d:"M4 20h.01"},null),e(" "),t("path",{d:"M8 20h.01"},null),e(" "),t("path",{d:"M12 20h.01"},null),e(" "),t("path",{d:"M16 20h.01"},null),e(" "),t("path",{d:"M20 4h.01"},null),e(" "),t("path",{d:"M4 4h.01"},null),e(" "),t("path",{d:"M8 4h.01"},null),e(" "),t("path",{d:"M12 4h.01"},null),e(" "),t("path",{d:"M16 4l0 .01"},null),e(" "),t("path",{d:"M4 8m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" ")])}},KMt={name:"SeedingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3"},null),e(" "),t("path",{d:"M12 20v-8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QMt={name:"SeedingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seeding",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"},null),e(" "),t("path",{d:"M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"},null),e(" "),t("path",{d:"M12 20l0 -10"},null),e(" ")])}},JMt={name:"SelectAllIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select-all",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M16 20v.01"},null),e(" "),t("path",{d:"M8 20v.01"},null),e(" "),t("path",{d:"M4 20v.01"},null),e(" "),t("path",{d:"M4 16v.01"},null),e(" "),t("path",{d:"M4 12v.01"},null),e(" "),t("path",{d:"M4 8v.01"},null),e(" "),t("path",{d:"M4 4v.01"},null),e(" "),t("path",{d:"M8 4v.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M16 4v.01"},null),e(" "),t("path",{d:"M20 4v.01"},null),e(" "),t("path",{d:"M20 8v.01"},null),e(" "),t("path",{d:"M20 12v.01"},null),e(" "),t("path",{d:"M20 16v.01"},null),e(" "),t("path",{d:"M20 20v.01"},null),e(" ")])}},txt={name:"SelectIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-select",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 11l3 3l3 -3"},null),e(" ")])}},ext={name:"SelectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-selector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l4 -4l4 4"},null),e(" "),t("path",{d:"M16 15l-4 4l-4 -4"},null),e(" ")])}},nxt={name:"SendOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l2 -2m2 -2l7 -7"},null),e(" "),t("path",{d:"M10.718 6.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l4.772 -1.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lxt={name:"SendIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-send",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 14l11 -11"},null),e(" "),t("path",{d:"M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5"},null),e(" ")])}},rxt={name:"SeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-seo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M14 16h-4v-8h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M17 8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" ")])}},oxt={name:"SeparatorHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12l16 0"},null),e(" "),t("path",{d:"M8 8l4 -4l4 4"},null),e(" "),t("path",{d:"M16 16l-4 4l-4 -4"},null),e(" ")])}},sxt={name:"SeparatorVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l0 16"},null),e(" "),t("path",{d:"M8 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 16l4 -4l-4 -4"},null),e(" ")])}},axt={name:"SeparatorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-separator",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12l0 .01"},null),e(" "),t("path",{d:"M7 12l10 0"},null),e(" "),t("path",{d:"M21 12l0 .01"},null),e(" ")])}},ixt={name:"Server2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" "),t("path",{d:"M11 8h6"},null),e(" "),t("path",{d:"M11 16h6"},null),e(" ")])}},hxt={name:"ServerBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M20 15l-2 3h3l-2 3"},null),e(" ")])}},dxt={name:"ServerCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 14.5v1.5"},null),e(" "),t("path",{d:"M18 20v1.5"},null),e(" "),t("path",{d:"M21.032 16.25l-1.299 .75"},null),e(" "),t("path",{d:"M16.27 19l-1.3 .75"},null),e(" "),t("path",{d:"M14.97 16.25l1.3 .75"},null),e(" "),t("path",{d:"M19.733 19l1.3 .75"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" ")])}},cxt={name:"ServerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2"},null),e(" "),t("path",{d:"M16 12h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6"},null),e(" "),t("path",{d:"M7 8v.01"},null),e(" "),t("path",{d:"M7 16v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},uxt={name:"ServerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-server",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M7 8l0 .01"},null),e(" "),t("path",{d:"M7 16l0 .01"},null),e(" ")])}},pxt={name:"ServicemarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-servicemark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},gxt={name:"Settings2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.875 6.27a2.225 2.225 0 0 1 1.125 1.948v7.284c0 .809 -.443 1.555 -1.158 1.948l-6.75 4.27a2.269 2.269 0 0 1 -2.184 0l-6.75 -4.27a2.225 2.225 0 0 1 -1.158 -1.948v-7.285c0 -.809 .443 -1.554 1.158 -1.947l6.75 -3.98a2.33 2.33 0 0 1 2.25 0l6.75 3.98h-.033z"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},wxt={name:"SettingsAutomationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-automation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M10 9v6l5 -3z"},null),e(" ")])}},vxt={name:"SettingsBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.256 20.473c-.855 .907 -2.583 .643 -2.931 -.79a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.07 .26 1.488 1.29 1.254 2.15"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},fxt={name:"SettingsCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.29 20.977c-.818 .132 -1.724 -.3 -1.965 -1.294a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.983 .238 1.416 1.126 1.298 1.937"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},mxt={name:"SettingsCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.445 20.913a1.665 1.665 0 0 1 -1.12 -1.23a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.31 .318 1.643 1.79 .997 2.694"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},kxt={name:"SettingsCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.482 20.924a1.666 1.666 0 0 1 -1.157 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.312 .318 1.644 1.794 .995 2.697"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},bxt={name:"SettingsCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.003 21c-.732 .001 -1.465 -.438 -1.678 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.886 .215 1.325 .957 1.318 1.694"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},Mxt={name:"SettingsDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.038 20.666c-.902 .665 -2.393 .337 -2.713 -.983a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 .402 2.248"},null),e(" "),t("path",{d:"M15 12a3 3 0 1 0 -1.724 2.716"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},xxt={name:"SettingsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.52 20.924c-.87 .262 -1.93 -.152 -2.195 -1.241a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.088 .264 1.502 1.323 1.242 2.192"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},zxt={name:"SettingsExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.004 18.401a1.724 1.724 0 0 0 -1.329 1.282c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.079 .262 1.495 1.305 1.248 2.17"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},Ixt={name:"SettingsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.647 4.081a.724 .724 0 0 0 1.08 .448c2.439 -1.485 5.23 1.305 3.745 3.744a.724 .724 0 0 0 .447 1.08c2.775 .673 2.775 4.62 0 5.294a.724 .724 0 0 0 -.448 1.08c1.485 2.439 -1.305 5.23 -3.744 3.745a.724 .724 0 0 0 -1.08 .447c-.673 2.775 -4.62 2.775 -5.294 0a.724 .724 0 0 0 -1.08 -.448c-2.439 1.485 -5.23 -1.305 -3.745 -3.744a.724 .724 0 0 0 -.447 -1.08c-2.775 -.673 -2.775 -4.62 0 -5.294a.724 .724 0 0 0 .448 -1.08c-1.485 -2.439 1.305 -5.23 3.744 -3.745a.722 .722 0 0 0 1.08 -.447c.673 -2.775 4.62 -2.775 5.294 0zm-2.647 4.919a3 3 0 1 0 0 6a3 3 0 0 0 0 -6z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},yxt={name:"SettingsHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.231 20.828a1.668 1.668 0 0 1 -.906 -1.145a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.509 .123 .87 .421 1.084 .792"},null),e(" "),t("path",{d:"M14.882 11.165a3.001 3.001 0 1 0 -4.31 3.474"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},Cxt={name:"SettingsMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.488 20.933c-.863 .243 -1.902 -.174 -2.163 -1.25a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.535 .13 -.976 .507 -1.187 1.016c-.049 .118 -.084 .185 -.106 .309"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Sxt={name:"SettingsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.451 5.437c.418 -.218 .75 -.609 .874 -1.12c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35c-.486 .118 -.894 .44 -1.123 .878m-.188 3.803c-.517 .523 -1.349 .734 -2.125 .262a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.472 -.774 -.262 -1.604 .259 -2.121"},null),e(" "),t("path",{d:"M9.889 9.869a3 3 0 1 0 4.226 4.26m.592 -3.424a3.012 3.012 0 0 0 -1.419 -1.415"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$xt={name:"SettingsPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.69c-.905 .632 -2.363 .296 -2.679 -1.007a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.314 .319 1.645 1.798 .992 2.701"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},Axt={name:"SettingsPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.578 20.905c-.88 .299 -1.983 -.109 -2.253 -1.222a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.574 .14 .96 .5 1.16 .937"},null),e(" "),t("path",{d:"M14.99 12.256a3 3 0 1 0 -2.33 2.671"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},Bxt={name:"SettingsPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.483 20.935c-.862 .239 -1.898 -.178 -2.158 -1.252a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.08 .262 1.496 1.308 1.247 2.173"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Hxt={name:"SettingsQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.69 18.498c-.508 .21 -.885 .65 -1.015 1.185c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.179 .982"},null),e(" "),t("path",{d:"M14.95 12.553a3 3 0 1 0 -1.211 1.892"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},Nxt={name:"SettingsSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.646 20.965a1.67 1.67 0 0 1 -1.321 -1.282a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c.728 .177 1.154 .71 1.279 1.303"},null),e(" "),t("path",{d:"M14.985 11.694a3 3 0 1 0 -3.29 3.29"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},jxt={name:"SettingsShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.004 21c-.732 .002 -1.466 -.437 -1.679 -1.317a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.306 .317 1.64 1.78 1.004 2.684"},null),e(" "),t("path",{d:"M12 15a3 3 0 1 0 0 -6a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Pxt={name:"SettingsStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 19.683a1.723 1.723 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572a1.67 1.67 0 0 1 1.106 .831"},null),e(" "),t("path",{d:"M14.89 11.195a3.001 3.001 0 1 0 -4.457 3.364"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},Lxt={name:"SettingsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.501 20.93c-.866 .25 -1.914 -.166 -2.176 -1.247a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.074 .26 1.49 1.296 1.252 2.158"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Dxt={name:"SettingsXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.675 19.683c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.66 1.66 0 0 0 -.324 .114"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Oxt={name:"SettingsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-settings",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z"},null),e(" "),t("path",{d:"M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},Fxt={name:"ShadowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088"},null),e(" "),t("path",{d:"M16 12h2"},null),e(" "),t("path",{d:"M13 15h2"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rxt={name:"ShadowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shadow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M13 12h5"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M13 18h1"},null),e(" "),t("path",{d:"M13 9h4"},null),e(" "),t("path",{d:"M13 6h1"},null),e(" ")])}},Txt={name:"Shape2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6.5 17.5l11 -11m-12.5 .5v10m14 -10v10"},null),e(" ")])}},Ext={name:"Shape3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 5h10m-12 2v10m14 -10v10"},null),e(" ")])}},Vxt={name:"ShapeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.575 3.597a2 2 0 0 0 2.849 2.808"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.574 17.598a2 2 0 0 0 2.826 2.83"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_xt={name:"ShapeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shape",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" ")])}},Wxt={name:"Share2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M12 14v-11"},null),e(" "),t("path",{d:"M9 6l3 -3l3 3"},null),e(" ")])}},Xxt={name:"Share3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4v4c-6.575 1.028 -9.02 6.788 -10 12c-.037 .206 5.384 -5.962 10 -6v4l8 -7l-8 -7z"},null),e(" ")])}},qxt={name:"ShareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M15.861 15.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45"},null),e(" "),t("path",{d:"M8.7 10.7l1.336 -.688m2.624 -1.352l2.64 -1.36"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Yxt={name:"ShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M8.7 10.7l6.6 -3.4"},null),e(" "),t("path",{d:"M8.7 13.3l6.6 3.4"},null),e(" ")])}},Uxt={name:"ShiJumpingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shi-jumping",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M17 17.5l-5 -4.5v-6l5 4"},null),e(" "),t("path",{d:"M7 17.5l5 -4.5"},null),e(" "),t("path",{d:"M15.103 21.58l6.762 -14.502a2 2 0 0 0 -.968 -2.657"},null),e(" "),t("path",{d:"M8.897 21.58l-6.762 -14.503a2 2 0 0 1 .968 -2.657"},null),e(" "),t("path",{d:"M7 11l5 -4"},null),e(" ")])}},Gxt={name:"ShieldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.342 20.566c-.436 .17 -.884 .315 -1.342 .434a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.34"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},Zxt={name:"ShieldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.277 20.925c-.092 .026 -.184 .051 -.277 .075a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .145 6.232"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},Kxt={name:"ShieldCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qxt={name:"ShieldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},Jxt={name:"ShieldCheckeredFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tzt={name:"ShieldCheckeredIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-checkered",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M3.5 12h17"},null),e(" ")])}},ezt={name:"ShieldChevronIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-chevron",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M4 14l8 -3l8 3"},null),e(" ")])}},nzt={name:"ShieldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.078 7.024"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},lzt={name:"ShieldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.568 1.933 .635 3.957 .223 5.89"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},rzt={name:"ShieldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.018 20.687c-.333 .119 -.673 .223 -1.018 .313a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.433 1.472 .575 2.998 .436 4.495"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},ozt={name:"ShieldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.444 20.876c-.147 .044 -.295 .085 -.444 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .117 6.343"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},szt={name:"ShieldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.04 19.745c-.942 .551 -1.964 .976 -3.04 1.255a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .195 6.015"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},azt={name:"ShieldFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.884 2.007l.114 -.007l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},izt={name:"ShieldHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M12 11h8.9"},null),e(" "),t("path",{d:"M12 8h8.9"},null),e(" "),t("path",{d:"M12 5h3.1"},null),e(" "),t("path",{d:"M12 17h6.2"},null),e(" "),t("path",{d:"M12 14h8"},null),e(" ")])}},hzt={name:"ShieldHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" ")])}},dzt={name:"ShieldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12.01 12.01 0 0 1 .378 5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},czt={name:"ShieldLockFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm.002 7a2 2 0 0 0 -1.995 1.85l-.005 .15l.005 .15a2 2 0 0 0 .995 1.581v1.769l.007 .117a1 1 0 0 0 1.993 -.117l.001 -1.768a2 2 0 0 0 -1.001 -3.732z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uzt={name:"ShieldLockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-lock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" "),t("path",{d:"M12 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12l0 2.5"},null),e(" ")])}},pzt={name:"ShieldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.46 20.871c-.153 .046 -.306 .089 -.46 .129a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.916 9.015"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},gzt={name:"ShieldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.67 17.667a12 12 0 0 1 -5.67 3.333a12 12 0 0 1 -8.5 -15c.794 .036 1.583 -.006 2.357 -.124m3.128 -.926a11.997 11.997 0 0 0 3.015 -1.95a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.116 9.376"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wzt={name:"ShieldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.081 7.034"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},vzt={name:"ShieldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.597 20.829a12 12 0 0 1 -.597 .171a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.506 1.72 .614 3.512 .342 5.248"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},fzt={name:"ShieldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},mzt={name:"ShieldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.065 19.732c-.95 .557 -1.98 .986 -3.065 1.268a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.51 1.738 .617 3.55 .333 5.303"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},kzt={name:"ShieldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.539 1.832 .627 3.747 .283 5.588"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},bzt={name:"ShieldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .193 6.025"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},Mzt={name:"ShieldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.143 20.743a12 12 0 0 1 -7.643 -14.743a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3c.504 1.716 .614 3.505 .343 5.237"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},xzt={name:"ShieldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.442 20.876a13.12 13.12 0 0 1 -.442 .124a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .119 6.336"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},zzt={name:"ShieldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.252 20.601c-.408 .155 -.826 .288 -1.252 .399a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.19 7.357"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},Izt={name:"ShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"},null),e(" ")])}},yzt={name:"ShipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h10m4 0h4l-1.334 2.668"},null),e(" "),t("path",{d:"M5 13v-6h2m4 0h2l4 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Czt={name:"ShipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ship",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1"},null),e(" "),t("path",{d:"M4 18l-1 -5h18l-2 4"},null),e(" "),t("path",{d:"M5 13v-6h8l4 6"},null),e(" "),t("path",{d:"M7 7v-4h-1"},null),e(" ")])}},Szt={name:"ShirtFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$zt={name:"ShirtOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Azt={name:"ShirtSportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt-sport",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" "),t("path",{d:"M10.5 11h2.5l-1.5 5"},null),e(" ")])}},Bzt={name:"ShirtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shirt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0"},null),e(" ")])}},Hzt={name:"ShoeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l.663 -1.327"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Nzt={name:"ShoeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shoe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M14 13l1 -2"},null),e(" "),t("path",{d:"M8 18v-1a4 4 0 0 0 -4 -4h-1"},null),e(" "),t("path",{d:"M10 12l1.5 -3"},null),e(" ")])}},jzt={name:"ShoppingBagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-bag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304z"},null),e(" "),t("path",{d:"M9 11v-5a3 3 0 0 1 6 0v5"},null),e(" ")])}},Pzt={name:"ShoppingCartDiscountIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-discount",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M20 6l-1 7h-13"},null),e(" "),t("path",{d:"M10 10l6 -6"},null),e(" "),t("path",{d:"M10.5 4.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" "),t("path",{d:"M15.5 9.5m-.5 0a.5 .5 0 1 0 1 0a.5 .5 0 1 0 -1 0"},null),e(" ")])}},Lzt={name:"ShoppingCartOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17a2 2 0 1 0 2 2"},null),e(" "),t("path",{d:"M17 17h-11v-11"},null),e(" "),t("path",{d:"M9.239 5.231l10.761 .769l-1 7h-2m-4 0h-7"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Dzt={name:"ShoppingCartPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l6 .429m7.138 6.573l-.143 1h-13"},null),e(" "),t("path",{d:"M15 6h6m-3 -3v6"},null),e(" ")])}},Ozt={name:"ShoppingCartXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l8 .571m5.43 4.43l-.429 3h-13"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M21 3l-4 4"},null),e(" ")])}},Fzt={name:"ShoppingCartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shopping-cart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17h-11v-14h-2"},null),e(" "),t("path",{d:"M6 5l14 1l-1 7h-13"},null),e(" ")])}},Rzt={name:"ShovelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shovel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 4l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-8 8"},null),e(" "),t("path",{d:"M8.276 11.284l4.44 4.44a.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a.968 .968 0 0 1 1.37 0z"},null),e(" ")])}},Tzt={name:"ShredderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-shredder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3"},null),e(" ")])}},Ezt={name:"SignLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 2a1 1 0 0 1 .993 .883l.007 .117v2h3a1 1 0 0 1 .993 .883l.007 .117v5a1 1 0 0 1 -.883 .993l-.117 .007h-3v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-5a1 1 0 0 1 -.694 -.28l-.087 -.095l-2 -2.5a1 1 0 0 1 -.072 -1.147l.072 -.103l2 -2.5a1 1 0 0 1 .652 -.367l.129 -.008h5v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vzt={name:"SignLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 21h-4"},null),e(" "),t("path",{d:"M14 21v-10"},null),e(" "),t("path",{d:"M14 6v-3"},null),e(" "),t("path",{d:"M18 6h-10l-2 2.5l2 2.5h10z"},null),e(" ")])}},_zt={name:"SignRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 2a1 1 0 0 1 .993 .883l.007 .117v2h5a1 1 0 0 1 .694 .28l.087 .095l2 2.5a1 1 0 0 1 .072 1.147l-.072 .103l-2 2.5a1 1 0 0 1 -.652 .367l-.129 .008h-5v8h1a1 1 0 0 1 .117 1.993l-.117 .007h-4a1 1 0 0 1 -.117 -1.993l.117 -.007h1v-8h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .883 -.993l.117 -.007h3v-2a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wzt={name:"SignRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sign-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h4"},null),e(" "),t("path",{d:"M10 21v-10"},null),e(" "),t("path",{d:"M10 6v-3"},null),e(" "),t("path",{d:"M6 6h10l2 2.5l-2 2.5h-10z"},null),e(" ")])}},Xzt={name:"Signal2gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-2g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1"},null),e(" "),t("path",{d:"M5 8h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h4"},null),e(" ")])}},qzt={name:"Signal3gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-3g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5"},null),e(" ")])}},Yzt={name:"Signal4gPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M3 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M7 8v8"},null),e(" "),t("path",{d:"M19 10v4"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Uzt={name:"Signal4gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-4g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M17 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Gzt={name:"Signal5gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-5g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M6 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},Zzt={name:"Signal6gIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-6g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},Kzt={name:"SignalEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},Qzt={name:"SignalGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},Jzt={name:"SignalHPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 16v-8"},null),e(" "),t("path",{d:"M11 8v8"},null),e(" "),t("path",{d:"M7 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M16 10v4"},null),e(" ")])}},tIt={name:"SignalHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},eIt={name:"SignalLteIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signal-lte",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-4v8h4"},null),e(" "),t("path",{d:"M17 12h2.5"},null),e(" "),t("path",{d:"M4 8v8h4"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},nIt={name:"SignatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lIt={name:"SignatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-signature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2"},null),e(" ")])}},rIt={name:"SitemapOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M19 15a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407"},null),e(" "),t("path",{d:"M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oIt={name:"SitemapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sitemap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M15 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 15v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M12 9l0 3"},null),e(" ")])}},sIt={name:"SkateboardOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 15a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M3 9c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},aIt={name:"SkateboardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skateboard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 9a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1"},null),e(" ")])}},iIt={name:"SkullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-skull",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z"},null),e(" "),t("path",{d:"M10 17v3"},null),e(" "),t("path",{d:"M14 17v3"},null),e(" "),t("path",{d:"M9 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 11m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hIt={name:"SlashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 5l-10 14"},null),e(" ")])}},dIt={name:"SlashesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slashes",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 5l-10 14"},null),e(" "),t("path",{d:"M20 5l-10 14"},null),e(" ")])}},cIt={name:"SleighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sleigh",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h15a4 4 0 0 0 4 -4"},null),e(" "),t("path",{d:"M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"},null),e(" "),t("path",{d:"M15 15v4"},null),e(" "),t("path",{d:"M7 15v4"},null),e(" ")])}},uIt={name:"SliceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slice",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4"},null),e(" ")])}},pIt={name:"SlideshowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-slideshow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 6l.01 0"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 13l4 -4a3 5 0 0 1 3 0l4 4"},null),e(" "),t("path",{d:"M13 12l2 -2a3 5 0 0 1 3 0l3 3"},null),e(" "),t("path",{d:"M8 21l.01 0"},null),e(" "),t("path",{d:"M12 21l.01 0"},null),e(" "),t("path",{d:"M16 21l.01 0"},null),e(" ")])}},gIt={name:"SmartHomeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8"},null),e(" "),t("path",{d:"M15.332 15.345c-2.213 .976 -5.335 .86 -7.332 -.345"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wIt={name:"SmartHomeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smart-home",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105"},null),e(" "),t("path",{d:"M16 15c-2.21 1.333 -5.792 1.333 -8 0"},null),e(" ")])}},vIt={name:"SmokingNoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking-no",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M17 13h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9"},null),e(" ")])}},fIt={name:"SmokingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-smoking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M8 13l0 4"},null),e(" "),t("path",{d:"M16 5v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5"},null),e(" ")])}},mIt={name:"SnowflakeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6m1.196 1.186l1.804 1.034"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l-.031 .75"},null),e(" "),t("path",{d:"M19.928 14.268l-1.015 .67"},null),e(" "),t("path",{d:"M14.212 14.226l-2.171 1.262"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l.802 -.466"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kIt={name:"SnowflakeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowflake",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4l2 1l2 -1"},null),e(" "),t("path",{d:"M12 2v6.5l3 1.72"},null),e(" "),t("path",{d:"M17.928 6.268l.134 2.232l1.866 1.232"},null),e(" "),t("path",{d:"M20.66 7l-5.629 3.25l.01 3.458"},null),e(" "),t("path",{d:"M19.928 14.268l-1.866 1.232l-.134 2.232"},null),e(" "),t("path",{d:"M20.66 17l-5.629 -3.25l-2.99 1.738"},null),e(" "),t("path",{d:"M14 20l-2 -1l-2 1"},null),e(" "),t("path",{d:"M12 22v-6.5l-3 -1.72"},null),e(" "),t("path",{d:"M6.072 17.732l-.134 -2.232l-1.866 -1.232"},null),e(" "),t("path",{d:"M3.34 17l5.629 -3.25l-.01 -3.458"},null),e(" "),t("path",{d:"M4.072 9.732l1.866 -1.232l.134 -2.232"},null),e(" "),t("path",{d:"M3.34 7l5.629 3.25l2.99 -1.738"},null),e(" ")])}},bIt={name:"SnowmanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-snowman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z"},null),e(" "),t("path",{d:"M17.5 11.5l2.5 -1.5"},null),e(" "),t("path",{d:"M6.5 11.5l-2.5 -1.5"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},MIt={name:"SoccerFieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soccer-field",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 9h3v6h-3z"},null),e(" "),t("path",{d:"M18 9h3v6h-3z"},null),e(" "),t("path",{d:"M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},xIt={name:"SocialOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17.57 17.602a2 2 0 0 0 2.83 2.827"},null),e(" "),t("path",{d:"M11.113 11.133a3 3 0 1 0 3.765 3.715"},null),e(" "),t("path",{d:"M12 7v1"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},zIt={name:"SocialIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-social",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 7l0 4"},null),e(" "),t("path",{d:"M6.7 17.8l2.8 -2"},null),e(" "),t("path",{d:"M17.3 17.8l-2.8 -2"},null),e(" ")])}},IIt={name:"SockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8z"},null),e(" "),t("path",{d:"M7.895 15.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4"},null),e(" ")])}},yIt={name:"SofaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8"},null),e(" "),t("path",{d:"M4 11v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v3m0 4v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},CIt={name:"SofaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sofa",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M4 11v-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3"},null),e(" "),t("path",{d:"M12 5v9"},null),e(" ")])}},SIt={name:"SolarPanel2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 2a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M4 3h1"},null),e(" "),t("path",{d:"M19 3h1"},null),e(" "),t("path",{d:"M12 9v1"},null),e(" "),t("path",{d:"M17.2 7.2l.707 .707"},null),e(" "),t("path",{d:"M6.8 7.2l-.7 .7"},null),e(" "),t("path",{d:"M4.28 21h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 17h16"},null),e(" "),t("path",{d:"M10 13l-1 8"},null),e(" "),t("path",{d:"M14 13l1 8"},null),e(" ")])}},$It={name:"SolarPanelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-solar-panel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.28 14h15.44a1 1 0 0 0 .97 -1.243l-1.5 -6a1 1 0 0 0 -.97 -.757h-12.44a1 1 0 0 0 -.97 .757l-1.5 6a1 1 0 0 0 .97 1.243z"},null),e(" "),t("path",{d:"M4 10h16"},null),e(" "),t("path",{d:"M10 6l-1 8"},null),e(" "),t("path",{d:"M14 6l1 8"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" ")])}},AIt={name:"Sort09Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-0-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" "),t("path",{d:"M4 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M16 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},BIt={name:"Sort90Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-9-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M16 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},HIt={name:"SortAZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-a-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 8h4l-4 8h4"},null),e(" "),t("path",{d:"M4 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M4 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},NIt={name:"SortAscending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9l3 -3l3 3"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M17 6v12"},null),e(" ")])}},jIt={name:"SortAscendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 21h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},PIt={name:"SortAscendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 16v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},LIt={name:"SortAscendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-ascending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l7 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l9 0"},null),e(" "),t("path",{d:"M15 9l3 -3l3 3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},DIt={name:"SortDescending2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M5 14m0 .5a.5 .5 0 0 1 .5 -.5h4a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-4a.5 .5 0 0 1 -.5 -.5z"},null),e(" "),t("path",{d:"M14 15l3 3l3 -3"},null),e(" "),t("path",{d:"M17 18v-12"},null),e(" ")])}},OIt={name:"SortDescendingLettersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-letters",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4"},null),e(" "),t("path",{d:"M19 10h-4l4 -7h-4"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" ")])}},FIt={name:"SortDescendingNumbersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending-numbers",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l3 3l3 -3"},null),e(" "),t("path",{d:"M7 6v12"},null),e(" "),t("path",{d:"M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5v3a2 2 0 0 1 -2 2h-1.5"},null),e(" ")])}},RIt={name:"SortDescendingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-descending",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l9 0"},null),e(" "),t("path",{d:"M4 12l7 0"},null),e(" "),t("path",{d:"M4 18l7 0"},null),e(" "),t("path",{d:"M15 15l3 3l3 -3"},null),e(" "),t("path",{d:"M18 6l0 12"},null),e(" ")])}},TIt={name:"SortZAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sort-z-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" "),t("path",{d:"M16 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M16 13h4"},null),e(" "),t("path",{d:"M11 12h2"},null),e(" ")])}},EIt={name:"SosIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sos",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8h4v8h-4z"},null),e(" "),t("path",{d:"M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3"},null),e(" ")])}},VIt={name:"SoupOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M15 11h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M15 5v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_It={name:"SoupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-soup",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M12 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M16 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" "),t("path",{d:"M8 4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"},null),e(" ")])}},WIt={name:"SourceCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-source-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5"},null),e(" "),t("path",{d:"M6 5l-2 2l2 2"},null),e(" "),t("path",{d:"M10 9l2 -2l-2 -2"},null),e(" ")])}},XIt={name:"SpaceOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qIt={name:"SpaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-space",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3"},null),e(" ")])}},YIt={name:"SpacingHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},UIt={name:"SpacingVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spacing-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" ")])}},GIt={name:"SpadeFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.327 2.26a1395.065 1395.065 0 0 0 -4.923 4.504c-.626 .6 -1.212 1.21 -1.774 1.843a6.528 6.528 0 0 0 -.314 8.245l.14 .177c1.012 1.205 2.561 1.755 4.055 1.574l.246 -.037l-.706 2.118a1 1 0 0 0 .949 1.316h6l.118 -.007a1 1 0 0 0 .83 -1.31l-.688 -2.065l.104 .02c1.589 .25 3.262 -.387 4.32 -1.785a6.527 6.527 0 0 0 -.311 -8.243a31.787 31.787 0 0 0 -1.76 -1.83l-4.938 -4.518a1 1 0 0 0 -1.348 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ZIt={name:"SpadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z"},null),e(" ")])}},KIt={name:"SparklesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sparkles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 18a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm0 -12a2 2 0 0 1 2 2a2 2 0 0 1 2 -2a2 2 0 0 1 -2 -2a2 2 0 0 1 -2 2zm-7 12a6 6 0 0 1 6 -6a6 6 0 0 1 -6 -6a6 6 0 0 1 -6 6a6 6 0 0 1 6 6z"},null),e(" ")])}},QIt={name:"SpeakerphoneIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speakerphone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 8a3 3 0 0 1 0 6"},null),e(" "),t("path",{d:"M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5"},null),e(" "),t("path",{d:"M12 8h0l4.524 -3.77a.9 .9 0 0 1 1.476 .692v12.156a.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8"},null),e(" ")])}},JIt={name:"SpeedboatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-speedboat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4z"},null),e(" "),t("path",{d:"M6 13l1.5 -5"},null),e(" "),t("path",{d:"M6 8h8l2 3"},null),e(" ")])}},tyt={name:"SphereOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c.987 0 1.936 -.053 2.825 -.15m3.357 -.67c1.735 -.547 2.818 -1.32 2.818 -2.18"},null),e(" "),t("path",{d:"M20.051 16.027a9 9 0 0 0 -12.083 -12.075m-2.34 1.692a9 9 0 0 0 12.74 12.716"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eyt={name:"SpherePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3c1.116 0 2.185 -.068 3.172 -.192m5.724 -2.35a1.1 1.1 0 0 0 .104 -.458"},null),e(" "),t("path",{d:"M20.984 12.546a9 9 0 1 0 -8.442 8.438"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},nyt={name:"SphereIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sphere",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12c0 1.657 4.03 3 9 3s9 -1.343 9 -3"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},lyt={name:"SpiderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spider",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4v2l5 5"},null),e(" "),t("path",{d:"M2.5 9.5l1.5 1.5h6"},null),e(" "),t("path",{d:"M4 19v-2l6 -6"},null),e(" "),t("path",{d:"M19 4v2l-5 5"},null),e(" "),t("path",{d:"M21.5 9.5l-1.5 1.5h-6"},null),e(" "),t("path",{d:"M20 19v-2l-6 -6"},null),e(" "),t("path",{d:"M12 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},ryt={name:"SpiralOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oyt={name:"SpiralIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spiral",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813"},null),e(" ")])}},syt={name:"SportBillardIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sport-billard",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 12m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0"},null),e(" ")])}},ayt={name:"SprayIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spray",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M6 10v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4"},null),e(" "),t("path",{d:"M15 7h.01"},null),e(" "),t("path",{d:"M18 9h.01"},null),e(" "),t("path",{d:"M18 5h.01"},null),e(" "),t("path",{d:"M21 3h.01"},null),e(" "),t("path",{d:"M21 7h.01"},null),e(" "),t("path",{d:"M21 11h.01"},null),e(" "),t("path",{d:"M10 7h1"},null),e(" ")])}},iyt={name:"SpyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h8m4 0h6"},null),e(" "),t("path",{d:"M5 11v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M14.88 14.877a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hyt={name:"SpyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-spy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11h18"},null),e(" "),t("path",{d:"M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4"},null),e(" "),t("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M10 17h4"},null),e(" ")])}},dyt={name:"SqlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sql",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M17 8v8h4"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M3 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},cyt={name:"Square0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-6.333 5a3 3 0 0 0 -2.995 2.824l-.005 .176v4l.005 .176a3 3 0 0 0 5.99 0l.005 -.176v-4l-.005 -.176a3 3 0 0 0 -2.995 -2.824zm0 2a1 1 0 0 1 .993 .883l.007 .117v4l-.007 .117a1 1 0 0 1 -1.986 0l-.007 -.117v-4l.007 -.117a1 1 0 0 1 .993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},uyt={name:"Square1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.339 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pyt={name:"Square2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gyt={name:"Square3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},wyt={name:"Square4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},vyt={name:"Square5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},fyt={name:"Square6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},myt={name:"Square7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-4.333 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kyt={name:"Square8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},byt={name:"Square9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-5.333 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Myt={name:"SquareArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},xyt={name:"SquareArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},zyt={name:"SquareArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Iyt={name:"SquareArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},yyt={name:"SquareAsteriskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-asterisk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8.5v7"},null),e(" "),t("path",{d:"M9 10l6 4"},null),e(" "),t("path",{d:"M9 14l6 -4"},null),e(" ")])}},Cyt={name:"SquareCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.626 7.293a1 1 0 0 0 -1.414 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Syt={name:"SquareCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" ")])}},$yt={name:"SquareChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Ayt={name:"SquareChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Byt={name:"SquareChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Hyt={name:"SquareChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" ")])}},Nyt={name:"SquareChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},jyt={name:"SquareChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Pyt={name:"SquareChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Lyt={name:"SquareChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Dyt={name:"SquareDotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-dot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Oyt={name:"SquareF0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6a2.5 2.5 0 0 0 -2.495 2.336l-.005 .164v3l.005 .164a2.5 2.5 0 0 0 4.99 0l.005 -.164v-3l-.005 -.164a2.5 2.5 0 0 0 -2.495 -2.336zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm4.5 2a.5 .5 0 0 1 .492 .41l.008 .09v3l-.008 .09a.5 .5 0 0 1 -.984 0l-.008 -.09v-3l.008 -.09a.5 .5 0 0 1 .492 -.41z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Fyt={name:"SquareF0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 10.5v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0z"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Ryt={name:"SquareF1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-8.333 6h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5.994 .886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v3.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Tyt={name:"SquareF1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 11l2 -2v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Eyt={name:"SquareF2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v1h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-1h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.995 -1.85zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Vyt={name:"SquareF2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},_yt={name:"SquareF3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.833 6h-1l-.144 .007a1.5 1.5 0 0 0 -1.356 1.493a1 1 0 0 0 1 1l.117 -.007a1 1 0 0 0 .727 -.457l.02 -.036h.636l.09 .008a.5 .5 0 0 1 0 .984l-.09 .008h-.5l-.133 .007c-1.156 .124 -1.156 1.862 0 1.986l.133 .007h.5l.09 .008a.5 .5 0 0 1 .41 .492l-.008 .09a.5 .5 0 0 1 -.492 .41h-.635l-.02 -.036a1 1 0 0 0 -1.845 .536a1.5 1.5 0 0 0 1.5 1.5h1l.164 -.005a2.5 2.5 0 0 0 2.336 -2.495l-.005 -.164a2.487 2.487 0 0 0 -.477 -1.312l-.019 -.024l.126 -.183a2.5 2.5 0 0 0 -2.125 -3.817zm-4.5 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Wyt={name:"SquareF3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9.5a.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a.5 .5 0 0 1 -.5 -.5"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Xyt={name:"SquareF4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6a1 1 0 0 0 -.993 .883l-.007 .117v2h-1v-2l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},qyt={name:"SquareF4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9v2a1 1 0 0 0 1 1h1"},null),e(" "),t("path",{d:"M16 9v6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Yyt={name:"SquareF5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.857 .764l-.02 .112l-.006 .117v3l.007 .117a1 1 0 0 0 .764 .857l.112 .02l.117 .006h2v1h-1.033l-.025 -.087l-.049 -.113a1 1 0 0 0 -1.893 .45c0 .867 .63 1.587 1.458 1.726l.148 .018l.144 .006h1.25l.157 -.006a2 2 0 0 0 1.819 -1.683l.019 -.162l.005 -.149v-1l-.006 -.157a2 2 0 0 0 -1.683 -1.819l-.162 -.019l-.149 -.005h-1v-1h2l.117 -.007a1 1 0 0 0 .857 -.764l.02 -.112l.006 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006zm-6 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Uyt={name:"SquareF5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Gyt={name:"SquareF6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.25l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v4l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-1v-1h1.032l.026 .087a1 1 0 0 0 1.942 -.337a1.75 1.75 0 0 0 -1.606 -1.744l-.144 -.006zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Zyt={name:"SquareF6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 9.75a.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Kyt={name:"SquareF7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.333 6h-3l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.718l-1.188 4.757l-.022 .115a1 1 0 0 0 1.962 .37l1.5 -6l.021 -.11a1 1 0 0 0 -.991 -1.132zm-6 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Qyt={name:"SquareF7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 9h3l-1.5 6"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},Jyt={name:"SquareF8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.333 6h-1l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v1l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v1l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h1l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-1l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-1l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm-5 0h-2l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117v6l.007 .117a1 1 0 0 0 .876 .876l.117 .007l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117v-2h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm5 5v1h-1v-1h1zm0 -3v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},tCt={name:"SquareF8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14.5 12h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},eCt={name:"SquareF9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-3.083 6h-1.5l-.144 .006a1.75 1.75 0 0 0 -1.606 1.744v1.5l.006 .144a1.75 1.75 0 0 0 1.744 1.606h1.25v1h-1.033l-.025 -.087a1 1 0 0 0 -1.942 .337c0 .966 .784 1.75 1.75 1.75h1.5l.144 -.006a1.75 1.75 0 0 0 1.606 -1.744v-4.5l-.006 -.144a1.75 1.75 0 0 0 -1.744 -1.606zm-5.25 0h-2l-.117 .007a1 1 0 0 0 -.883 .993v6l.007 .117a1 1 0 0 0 .993 .883l.117 -.007a1 1 0 0 0 .883 -.993v-2h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993zm5 2v1h-1v-1h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},nCt={name:"SquareF9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-f9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M13 14.25c0 .414 .336 .75 .75 .75h1.5a.75 .75 0 0 0 .75 -.75v-4.5a.75 .75 0 0 0 -.75 -.75h-1.5a.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25"},null),e(" "),t("path",{d:"M8 12h2"},null),e(" "),t("path",{d:"M10 9h-2v6"},null),e(" ")])}},lCt={name:"SquareForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" ")])}},rCt={name:"SquareForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 9l6 6"},null),e(" ")])}},oCt={name:"SquareHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4v16"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 13l7.5 -7.5"},null),e(" "),t("path",{d:"M12 18l8 -8"},null),e(" "),t("path",{d:"M15 20l5 -5"},null),e(" "),t("path",{d:"M12 8l4 -4"},null),e(" ")])}},sCt={name:"SquareKeyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-key",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12.5 11.5l-4 4l1.5 1.5"},null),e(" "),t("path",{d:"M12 15l-1.5 -1.5"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},aCt={name:"SquareLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" ")])}},iCt={name:"SquareLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" ")])}},hCt={name:"SquareLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" ")])}},dCt={name:"SquareLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},cCt={name:"SquareLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" ")])}},uCt={name:"SquareLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" ")])}},pCt={name:"SquareLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" ")])}},gCt={name:"SquareLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" ")])}},wCt={name:"SquareLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},vCt={name:"SquareLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" ")])}},fCt={name:"SquareLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" ")])}},mCt={name:"SquareLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" ")])}},kCt={name:"SquareLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" ")])}},bCt={name:"SquareLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" ")])}},MCt={name:"SquareLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" ")])}},xCt={name:"SquareLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" ")])}},zCt={name:"SquareLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" ")])}},ICt={name:"SquareLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" ")])}},yCt={name:"SquareLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" ")])}},CCt={name:"SquareLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" ")])}},SCt={name:"SquareLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" ")])}},$Ct={name:"SquareLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" ")])}},ACt={name:"SquareLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" ")])}},BCt={name:"SquareLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},HCt={name:"SquareLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" ")])}},NCt={name:"SquareLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" ")])}},jCt={name:"SquareMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" ")])}},PCt={name:"SquareNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" ")])}},LCt={name:"SquareNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" ")])}},DCt={name:"SquareNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},OCt={name:"SquareNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" ")])}},FCt={name:"SquareNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" ")])}},RCt={name:"SquareNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" ")])}},TCt={name:"SquareNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" ")])}},ECt={name:"SquareNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" ")])}},VCt={name:"SquareNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" ")])}},_Ct={name:"SquareNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" ")])}},WCt={name:"SquareOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XCt={name:"SquarePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M9 12l6 0"},null),e(" "),t("path",{d:"M12 9l0 6"},null),e(" ")])}},qCt={name:"SquareRoot2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M12 19c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M3 12h1l3 8l3 -16h10"},null),e(" ")])}},YCt={name:"SquareRootIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-root",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h2l4 8l4 -16h8"},null),e(" ")])}},UCt={name:"SquareRotatedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.793 2.893l-6.9 6.9c-1.172 1.171 -1.172 3.243 0 4.414l6.9 6.9c1.171 1.172 3.243 1.172 4.414 0l6.9 -6.9c1.172 -1.171 1.172 -3.243 0 -4.414l-6.9 -6.9c-1.171 -1.172 -3.243 -1.172 -4.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},GCt={name:"SquareRotatedForbid2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 9.5l5 5"},null),e(" ")])}},ZCt={name:"SquareRotatedForbidIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-forbid",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" "),t("path",{d:"M9.5 14.5l5 -5"},null),e(" ")])}},KCt={name:"SquareRotatedOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},QCt={name:"SquareRotatedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rotated",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z"},null),e(" ")])}},JCt={name:"SquareRoundedArrowDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm0 5a1 1 0 0 1 .993 .883l.007 .117v5.585l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-4 4a1.008 1.008 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.092 -.064l-.094 -.083l-4 -4a1 1 0 0 1 1.32 -1.497l.094 .083l2.293 2.292v-5.585a1 1 0 0 1 1 -1z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},tSt={name:"SquareRoundedArrowDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12l4 4l4 -4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},eSt={name:"SquareRoundedArrowLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm.707 5.293a1 1 0 0 0 -1.414 0l-4 4a1.037 1.037 0 0 0 -.2 .284l-.022 .052a.95 .95 0 0 0 -.06 .222l-.008 .067l-.002 .063v-.035v.073a1.034 1.034 0 0 0 .07 .352l.023 .052l.03 .061l.022 .037a1.2 1.2 0 0 0 .05 .074l.024 .03l.073 .082l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},nSt={name:"SquareRoundedArrowLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8l-4 4l4 4"},null),e(" "),t("path",{d:"M16 12h-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},lSt={name:"SquareRoundedArrowRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm.613 5.21l.094 .083l4 4a.927 .927 0 0 1 .097 .112l.071 .11l.054 .114l.035 .105l.03 .148l.006 .118l-.003 .075l-.017 .126l-.03 .111l-.044 .111l-.052 .098l-.074 .104l-.073 .082l-4 4a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293h-5.585a1 1 0 0 1 -.117 -1.993l.117 -.007h5.585l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},rSt={name:"SquareRoundedArrowRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 16l4 -4l-4 -4"},null),e(" "),t("path",{d:"M8 12h8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},oSt={name:"SquareRoundedArrowUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.148 5.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l4 4a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292v5.585a1 1 0 0 1 -1.993 .117l-.007 -.117v-5.585l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l4 -4a.927 .927 0 0 1 .112 -.097l.11 -.071l.114 -.054l.105 -.035l.118 -.025z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},sSt={name:"SquareRoundedArrowUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-arrow-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l-4 -4l-4 4"},null),e(" "),t("path",{d:"M12 16v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},aSt={name:"SquareRoundedCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 7.293a1 1 0 0 1 1.497 1.32l-.083 .094l-4 4a1 1 0 0 1 -1.32 .083l-.094 -.083l-2 -2a1 1 0 0 1 1.32 -1.497l.094 .083l1.293 1.292l3.293 -3.292z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},iSt={name:"SquareRoundedCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12l2 2l4 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},hSt={name:"SquareRoundedChevronDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 8.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},dSt={name:"SquareRoundedChevronDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 11l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},cSt={name:"SquareRoundedChevronLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm1.707 6.293a1 1 0 0 0 -1.414 0l-3 3l-.083 .094a1 1 0 0 0 .083 1.32l3 3l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},uSt={name:"SquareRoundedChevronLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},pSt={name:"SquareRoundedChevronRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-1.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},gSt={name:"SquareRoundedChevronRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},wSt={name:"SquareRoundedChevronUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 7.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},vSt={name:"SquareRoundedChevronUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevron-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 13l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},fSt={name:"SquareRoundedChevronsDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414zm0 4a1 1 0 0 1 1.32 -.083l.094 .083l2.293 2.292l2.293 -2.292a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 0 -1.414z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},mSt={name:"SquareRoundedChevronsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9l-3 3l-3 -3"},null),e(" "),t("path",{d:"M15 13l-3 3l-3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},kSt={name:"SquareRoundedChevronsLeftFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm2.293 6.293a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm-4 0a1 1 0 0 1 1.497 1.32l-.083 .094l-2.292 2.293l2.292 2.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.32 .083l-.094 -.083l-3 -3a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},bSt={name:"SquareRoundedChevronsLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M11 15l-3 -3l3 -3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},MSt={name:"SquareRoundedChevronsRightFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-3.707 6.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094zm4 0a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 .083 1.32l-.083 .094l-3 3a1 1 0 0 1 -1.497 -1.32l.083 -.094l2.292 -2.293l-2.292 -2.293a1 1 0 0 1 -.083 -1.32l.083 -.094z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},xSt={name:"SquareRoundedChevronsRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 9l3 3l-3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},zSt={name:"SquareRoundedChevronsUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001zm-.707 9.293a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3zm0 -4a1 1 0 0 1 1.32 -.083l.094 .083l3 3a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.293 -2.292l-2.293 2.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 -.083 -1.32l.083 -.094l3 -3z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},ISt={name:"SquareRoundedChevronsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-chevrons-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l3 -3l3 3"},null),e(" "),t("path",{d:"M9 11l3 -3l3 3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ySt={name:"SquareRoundedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c-.218 0 -.432 .002 -.642 .005l-.616 .017l-.299 .013l-.579 .034l-.553 .046c-4.785 .464 -6.732 2.411 -7.196 7.196l-.046 .553l-.034 .579c-.005 .098 -.01 .198 -.013 .299l-.017 .616l-.004 .318l-.001 .324c0 .218 .002 .432 .005 .642l.017 .616l.013 .299l.034 .579l.046 .553c.464 4.785 2.411 6.732 7.196 7.196l.553 .046l.579 .034c.098 .005 .198 .01 .299 .013l.616 .017l.642 .005l.642 -.005l.616 -.017l.299 -.013l.579 -.034l.553 -.046c4.785 -.464 6.732 -2.411 7.196 -7.196l.046 -.553l.034 -.579c.005 -.098 .01 -.198 .013 -.299l.017 -.616l.005 -.642l-.005 -.642l-.017 -.616l-.013 -.299l-.034 -.579l-.046 -.553c-.464 -4.785 -2.411 -6.732 -7.196 -7.196l-.553 -.046l-.579 -.034a28.058 28.058 0 0 0 -.299 -.013l-.616 -.017l-.318 -.004l-.324 -.001z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},CSt={name:"SquareRoundedLetterAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-6a2 2 0 1 1 4 0v6"},null),e(" "),t("path",{d:"M10 13h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},SSt={name:"SquareRoundedLetterBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},$St={name:"SquareRoundedLetterCIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-c",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ASt={name:"SquareRoundedLetterDIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-d",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},BSt={name:"SquareRoundedLetterEIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-e",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-4v8h4"},null),e(" "),t("path",{d:"M10 12h2.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},HSt={name:"SquareRoundedLetterFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h3"},null),e(" "),t("path",{d:"M14 8h-4v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},NSt={name:"SquareRoundedLetterGIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-g",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},jSt={name:"SquareRoundedLetterHIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-h",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8m4 0v8"},null),e(" "),t("path",{d:"M10 12h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},PSt={name:"SquareRoundedLetterIIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-i",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},LSt={name:"SquareRoundedLetterJIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-j",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4v6a2 2 0 1 1 -4 0"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},DSt={name:"SquareRoundedLetterKIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-k",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8"},null),e(" "),t("path",{d:"M14 8l-2.5 4l2.5 4"},null),e(" "),t("path",{d:"M10 12h1.5"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},OSt={name:"SquareRoundedLetterLIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-l",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},FSt={name:"SquareRoundedLetterMIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-m",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 16v-8l3 5l3 -5v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},RSt={name:"SquareRoundedLetterNIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-n",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v-8l4 8v-8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},TSt={name:"SquareRoundedLetterOIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-o",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ESt={name:"SquareRoundedLetterPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},VSt={name:"SquareRoundedLetterQIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-q",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z"},null),e(" "),t("path",{d:"M13 15l1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},_St={name:"SquareRoundedLetterRIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-r",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},WSt={name:"SquareRoundedLetterSIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-s",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},XSt={name:"SquareRoundedLetterTIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-t",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},qSt={name:"SquareRoundedLetterUIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-u",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v6a2 2 0 1 0 4 0v-6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},YSt={name:"SquareRoundedLetterVIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-v",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 8l2 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},USt={name:"SquareRoundedLetterWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8l1 8l2 -5l2 5l1 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},GSt={name:"SquareRoundedLetterXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},ZSt={name:"SquareRoundedLetterYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8l2 5l2 -5"},null),e(" "),t("path",{d:"M12 16v-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},KSt={name:"SquareRoundedLetterZIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-letter-z",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-4 8h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},QSt={name:"SquareRoundedMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},JSt={name:"SquareRoundedNumber0FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm0 5a3 3 0 0 0 -3 3v4a3 3 0 0 0 6 0v-4a3 3 0 0 0 -3 -3zm0 2a1 1 0 0 1 1 1v4a1 1 0 0 1 -2 0v-4a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},t$t={name:"SquareRoundedNumber0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},e$t={name:"SquareRoundedNumber1FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm.994 5.886c-.083 -.777 -1.008 -1.16 -1.617 -.67l-.084 .077l-2 2l-.083 .094a1 1 0 0 0 0 1.226l.083 .094l.094 .083a1 1 0 0 0 1.226 0l.094 -.083l.293 -.293v5.586l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.006 -.114z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},n$t={name:"SquareRoundedNumber1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l2 -2v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},l$t={name:"SquareRoundedNumber2FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-3l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h3v2h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h3l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-3v-2h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},r$t={name:"SquareRoundedNumber2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},o$t={name:"SquareRoundedNumber3FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.85 1.995a1 1 0 0 0 1.974 .23l.02 -.113l.006 -.117h2v2h-2l-.133 .007c-1.111 .12 -1.154 1.73 -.128 1.965l.128 .021l.133 .007h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},s$t={name:"SquareRoundedNumber3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},a$t={name:"SquareRoundedNumber4FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5a1 1 0 0 0 -.993 .883l-.007 .117v3h-2v-3l-.007 -.117a1 1 0 0 0 -1.986 0l-.007 .117v3l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v3l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-8l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},i$t={name:"SquareRoundedNumber4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8v3a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M14 8v8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},h$t={name:"SquareRoundedNumber5FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4a1 1 0 0 0 -.993 .883l-.007 .117v4a1 1 0 0 0 .883 .993l.117 .007h3v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2a2 2 0 0 0 1.995 -1.85l.005 -.15v-2a2 2 0 0 0 -1.85 -1.995l-.15 -.005h-2v-2h3a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -.883 -.993l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},d$t={name:"SquareRoundedNumber5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},c$t={name:"SquareRoundedNumber6FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v6l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006h-2v-2h2l.007 .117a1 1 0 0 0 1.993 -.117a2 2 0 0 0 -1.85 -1.995l-.15 -.005zm0 6v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},u$t={name:"SquareRoundedNumber6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},p$t={name:"SquareRoundedNumber7FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm2 5h-4l-.117 .007a1 1 0 0 0 -.876 .876l-.007 .117l.007 .117a1 1 0 0 0 .876 .876l.117 .007h2.718l-1.688 6.757l-.022 .115a1 1 0 0 0 1.927 .482l.035 -.111l2 -8l.021 -.112a1 1 0 0 0 -.878 -1.125l-.113 -.006z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},g$t={name:"SquareRoundedNumber7Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-7",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 8h4l-2 8"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},w$t={name:"SquareRoundedNumber8FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15c.018 .236 .077 .46 .17 .667l.075 .152l.018 .03l-.018 .032c-.133 .24 -.218 .509 -.243 .795l-.007 .174v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-2l-.005 -.15a1.988 1.988 0 0 0 -.17 -.667l-.075 -.152l-.019 -.032l.02 -.03a2.01 2.01 0 0 0 .242 -.795l.007 -.174v-2l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 6v2h-2v-2h2zm0 -4v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},v$t={name:"SquareRoundedNumber8Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-8",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},f$t={name:"SquareRoundedNumber9FilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.642 .005l.616 .017l.299 .013l.579 .034l.553 .046c4.687 .455 6.65 2.333 7.166 6.906l.03 .29l.046 .553l.041 .727l.006 .15l.017 .617l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.455 4.687 -2.333 6.65 -6.906 7.166l-.29 .03l-.553 .046l-.727 .041l-.15 .006l-.617 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.687 -.455 -6.65 -2.333 -7.166 -6.906l-.03 -.29l-.046 -.553l-.041 -.727l-.006 -.15l-.017 -.617l-.004 -.318v-.648l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.455 -4.687 2.333 -6.65 6.906 -7.166l.29 -.03l.553 -.046l.727 -.041l.15 -.006l.617 -.017c.21 -.003 .424 -.005 .642 -.005zm1 5h-2l-.15 .005a2 2 0 0 0 -1.844 1.838l-.006 .157v2l.005 .15a2 2 0 0 0 1.838 1.844l.157 .006h2v2h-2l-.007 -.117a1 1 0 0 0 -1.993 .117a2 2 0 0 0 1.85 1.995l.15 .005h2l.15 -.005a2 2 0 0 0 1.844 -1.838l.006 -.157v-6l-.005 -.15a2 2 0 0 0 -1.838 -1.844l-.157 -.006zm0 2v2h-2v-2h2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},m$t={name:"SquareRoundedNumber9Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-number-9",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},k$t={name:"SquareRoundedPlusFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm0 6a1 1 0 0 0 -1 1v2h-2l-.117 .007a1 1 0 0 0 .117 1.993h2v2l.007 .117a1 1 0 0 0 1.993 -.117v-2h2l.117 -.007a1 1 0 0 0 -.117 -1.993h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},b$t={name:"SquareRoundedPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},M$t={name:"SquareRoundedXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z",fill:"currentColor","stroke-width":"0"},null),e(" ")])}},x$t={name:"SquareRoundedXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},z$t={name:"SquareRoundedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-rounded",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"},null),e(" ")])}},I$t={name:"SquareToggleHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M22 12h-20"},null),e(" "),t("path",{d:"M4 14v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M4 18a2 2 0 0 0 2 2"},null),e(" "),t("path",{d:"M14 20l-4 0"},null),e(" ")])}},y$t={name:"SquareToggleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-toggle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l0 20"},null),e(" "),t("path",{d:"M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"},null),e(" "),t("path",{d:"M20 6a2 2 0 0 0 -2 -2"},null),e(" "),t("path",{d:"M18 20a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M20 10l0 4"},null),e(" ")])}},C$t={name:"SquareXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M10 10l4 4m0 -4l-4 4"},null),e(" ")])}},S$t={name:"SquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},$$t={name:"SquaresDiagonalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-diagonal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" ")])}},A$t={name:"SquaresFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-squares-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M8 14.5l6.492 -6.492"},null),e(" "),t("path",{d:"M13.496 20l6.504 -6.504l-6.504 6.504z"},null),e(" "),t("path",{d:"M8.586 19.414l10.827 -10.827"},null),e(" "),t("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"},null),e(" ")])}},B$t={name:"Stack2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 12l8 4l8 -4"},null),e(" "),t("path",{d:"M4 16l8 4l8 -4"},null),e(" ")])}},H$t={name:"Stack3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 10l8 4l8 -4"},null),e(" "),t("path",{d:"M4 18l8 4l8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},N$t={name:"StackPopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-pop",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 11v-7"},null),e(" "),t("path",{d:"M9 7l3 -3l3 3"},null),e(" ")])}},j$t={name:"StackPushIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack-push",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10l-2 1l8 4l8 -4l-2 -1"},null),e(" "),t("path",{d:"M4 15l8 4l8 -4"},null),e(" "),t("path",{d:"M12 4v7"},null),e(" "),t("path",{d:"M15 8l-3 3l-3 -3"},null),e(" ")])}},P$t={name:"StackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stack",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6l-8 4l8 4l8 -4l-8 -4"},null),e(" "),t("path",{d:"M4 14l8 4l8 -4"},null),e(" ")])}},L$t={name:"StairsDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M11 4l-7 7v-4m4 4h-4"},null),e(" ")])}},D$t={name:"StairsUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h4v-4h4v-4h4v-4h4"},null),e(" "),t("path",{d:"M4 11l7 -7v4m-4 -4h4"},null),e(" ")])}},O$t={name:"StairsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stairs",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18h4v-4h4v-4h4v-4h4"},null),e(" ")])}},F$t={name:"StarFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},R$t={name:"StarHalfFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},T$t={name:"StarHalfIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-half",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z"},null),e(" ")])}},E$t={name:"StarOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917"},null),e(" ")])}},V$t={name:"StarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"},null),e(" ")])}},_$t={name:"StarsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.657 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.907 -.278l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.773l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.057 12.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.895l1.708 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.324 -1.891l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11.857 2.007a1.39 1.39 0 0 0 -1.103 .765l-.855 1.723l-1.907 .277c-.52 .072 -.96 .44 -1.124 .944l-.038 .14c-.1 .465 .046 .954 .393 1.29l1.377 1.337l-.326 1.892a1.393 1.393 0 0 0 2.018 1.465l1.708 -.894l1.709 .896a1.388 1.388 0 0 0 1.462 -.105l.112 -.09a1.39 1.39 0 0 0 .442 -1.272l-.325 -1.892l1.38 -1.339c.38 -.371 .516 -.924 .352 -1.427l-.051 -.134a1.39 1.39 0 0 0 -1.073 -.81l-1.908 -.279l-.853 -1.722a1.393 1.393 0 0 0 -1.247 -.772l-.143 .007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},W$t={name:"StarsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.373 13.371l.076 -.154a.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l1.601 -.232"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M9.557 5.556l1 -.146l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a.392 .392 0 0 1 -.568 -.41l.188 -1.093"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},X$t={name:"StarsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stars",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17.8 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M6.2 19.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" "),t("path",{d:"M12 9.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},q$t={name:"StatusChangeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-status-change",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12v-2a6 6 0 1 1 12 0v2"},null),e(" "),t("path",{d:"M15 9l3 3l3 -3"},null),e(" ")])}},Y$t={name:"SteamIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steam",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5.5 5.5l3 3"},null),e(" "),t("path",{d:"M15.5 15.5l3 3"},null),e(" "),t("path",{d:"M18.5 5.5l-3 3"},null),e(" "),t("path",{d:"M8.5 15.5l-3 3"},null),e(" ")])}},U$t={name:"SteeringWheelOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719"},null),e(" "),t("path",{d:"M10.595 10.576a2 2 0 1 0 2.827 2.83"},null),e(" "),t("path",{d:"M12 14v7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M15.542 11.543l5.208 -1.543"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},G$t={name:"SteeringWheelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-steering-wheel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M10 12l-6.75 -2"},null),e(" "),t("path",{d:"M14 12l6.75 -2"},null),e(" ")])}},Z$t={name:"StepIntoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-into",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 11l-4 4"},null),e(" "),t("path",{d:"M8 11l4 4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},K$t={name:"StepOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-step-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l0 12"},null),e(" "),t("path",{d:"M16 7l-4 -4"},null),e(" "),t("path",{d:"M8 7l4 -4"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Q$t={name:"StereoGlassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stereo-glasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 3h-2l-3 9"},null),e(" "),t("path",{d:"M16 3h2l3 9"},null),e(" "),t("path",{d:"M3 12v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18z"},null),e(" "),t("path",{d:"M7 16h1"},null),e(" "),t("path",{d:"M16 16h1"},null),e(" ")])}},J$t={name:"StethoscopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tAt={name:"StethoscopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stethoscope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1"},null),e(" "),t("path",{d:"M8 15a6 6 0 1 0 12 0v-3"},null),e(" "),t("path",{d:"M11 3v2"},null),e(" "),t("path",{d:"M6 3v2"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},eAt={name:"StickerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sticker",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8"},null),e(" "),t("path",{d:"M20 12a8 8 0 1 1 -8 -8"},null),e(" ")])}},nAt={name:"StormOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39"},null),e(" "),t("path",{d:"M7.037 7.063a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059"},null),e(" "),t("path",{d:"M5.369 14.236c-1.605 -3.428 -1.597 -6.673 -1 -9.849"},null),e(" "),t("path",{d:"M18.63 9.76a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},lAt={name:"StormIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-storm",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236"},null),e(" "),t("path",{d:"M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236"},null),e(" ")])}},rAt={name:"Stretching2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M6.5 21l3.5 -5"},null),e(" "),t("path",{d:"M5 11l7 -2"},null),e(" "),t("path",{d:"M16 21l-4 -7v-5l7 -4"},null),e(" ")])}},oAt={name:"StretchingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-stretching",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M5 20l5 -.5l1 -2"},null),e(" "),t("path",{d:"M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2"},null),e(" ")])}},sAt={name:"StrikethroughIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-strikethrough",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" "),t("path",{d:"M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"},null),e(" ")])}},aAt={name:"SubmarineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-submarine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2z"},null),e(" "),t("path",{d:"M17 11l-1 -3h-5l-1 3"},null),e(" "),t("path",{d:"M13 8v-2a1 1 0 0 1 1 -1h1"},null),e(" ")])}},iAt={name:"SubscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},hAt={name:"SubtaskIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-subtask",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 9l6 0"},null),e(" "),t("path",{d:"M4 5l4 0"},null),e(" "),t("path",{d:"M6 5v11a1 1 0 0 0 1 1h5"},null),e(" "),t("path",{d:"M12 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M12 15m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"},null),e(" ")])}},dAt={name:"SumOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},cAt={name:"SumIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sum",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2"},null),e(" ")])}},uAt={name:"SunFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},pAt={name:"SunHighIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-high",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"},null),e(" "),t("path",{d:"M6.343 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M6.343 6.343l-1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 6.343l1.414 -1.414"},null),e(" "),t("path",{d:"M17.657 17.657l1.414 1.414"},null),e(" "),t("path",{d:"M4 12h-2"},null),e(" "),t("path",{d:"M12 4v-2"},null),e(" "),t("path",{d:"M20 12h2"},null),e(" "),t("path",{d:"M12 20v2"},null),e(" ")])}},gAt={name:"SunLowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-low",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M4 12h.01"},null),e(" "),t("path",{d:"M12 4v.01"},null),e(" "),t("path",{d:"M20 12h.01"},null),e(" "),t("path",{d:"M12 20v.01"},null),e(" "),t("path",{d:"M6.31 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.71 6.31l-.01 -.01"},null),e(" "),t("path",{d:"M17.7 17.7l.01 .01"},null),e(" "),t("path",{d:"M6.3 17.7l.01 .01"},null),e(" ")])}},wAt={name:"SunMoonIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-moon",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.173 14.83a4 4 0 1 1 5.657 -5.657"},null),e(" "),t("path",{d:"M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914"},null),e(" "),t("path",{d:"M3 12h1"},null),e(" "),t("path",{d:"M12 3v1"},null),e(" "),t("path",{d:"M5.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M3 21l18 -18"},null),e(" ")])}},vAt={name:"SunOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},fAt={name:"SunWindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.468 10a4 4 0 1 0 -5.466 5.46"},null),e(" "),t("path",{d:"M2 12h1"},null),e(" "),t("path",{d:"M11 3v1"},null),e(" "),t("path",{d:"M11 20v1"},null),e(" "),t("path",{d:"M4.6 5.6l.7 .7"},null),e(" "),t("path",{d:"M17.4 5.6l-.7 .7"},null),e(" "),t("path",{d:"M5.3 17.7l-.7 .7"},null),e(" "),t("path",{d:"M15 13h5a2 2 0 1 0 0 -4"},null),e(" "),t("path",{d:"M12 16h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286"},null),e(" ")])}},mAt={name:"SunIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sun",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"},null),e(" ")])}},kAt={name:"SunglassesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunglasses",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h-2l-3 10"},null),e(" "),t("path",{d:"M16 4h2l3 10"},null),e(" "),t("path",{d:"M10 16h4"},null),e(" "),t("path",{d:"M21 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5"},null),e(" "),t("path",{d:"M4 14l4.5 4.5"},null),e(" "),t("path",{d:"M15 14l4.5 4.5"},null),e(" ")])}},bAt={name:"SunriseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunrise",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 9v-6l3 3m-6 0l3 -3"},null),e(" ")])}},MAt={name:"Sunset2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13h1"},null),e(" "),t("path",{d:"M20 13h1"},null),e(" "),t("path",{d:"M5.6 6.6l.7 .7"},null),e(" "),t("path",{d:"M18.4 6.6l-.7 .7"},null),e(" "),t("path",{d:"M8 13a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M3 17h18"},null),e(" "),t("path",{d:"M7 20h5"},null),e(" "),t("path",{d:"M16 20h1"},null),e(" "),t("path",{d:"M12 5v-1"},null),e(" ")])}},xAt={name:"SunsetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sunset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0"},null),e(" "),t("path",{d:"M3 21l18 0"},null),e(" "),t("path",{d:"M12 3v6l3 -3m-6 0l3 3"},null),e(" ")])}},zAt={name:"SuperscriptIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-superscript",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l8 10m-8 0l8 -10"},null),e(" "),t("path",{d:"M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2"},null),e(" ")])}},IAt={name:"SvgIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-svg",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1"},null),e(" "),t("path",{d:"M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M10 8l1.5 8h1l1.5 -8"},null),e(" ")])}},yAt={name:"SwimmingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swimming",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M6 11l4 -2l3.5 3l-1.5 2"},null),e(" "),t("path",{d:"M3 16.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" ")])}},CAt={name:"SwipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954"},null),e(" "),t("path",{d:"M9.167 4.511a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z"},null),e(" ")])}},SAt={name:"Switch2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h5l7 10h6"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},$At={name:"Switch3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" "),t("path",{d:"M18 4l3 3l-3 3"},null),e(" "),t("path",{d:"M3 7h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 20l3 -3l-3 -3"},null),e(" ")])}},AAt={name:"SwitchHorizontalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-horizontal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3l4 4l-4 4"},null),e(" "),t("path",{d:"M10 7l10 0"},null),e(" "),t("path",{d:"M8 13l-4 4l4 4"},null),e(" "),t("path",{d:"M4 17l9 0"},null),e(" ")])}},BAt={name:"SwitchVerticalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch-vertical",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8l4 -4l4 4"},null),e(" "),t("path",{d:"M7 4l0 9"},null),e(" "),t("path",{d:"M13 16l4 4l4 -4"},null),e(" "),t("path",{d:"M17 10l0 10"},null),e(" ")])}},HAt={name:"SwitchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-switch",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 4l4 0l0 4"},null),e(" "),t("path",{d:"M14.75 9.25l4.25 -5.25"},null),e(" "),t("path",{d:"M5 19l4 -4"},null),e(" "),t("path",{d:"M15 19l4 0l0 -4"},null),e(" "),t("path",{d:"M5 5l14 14"},null),e(" ")])}},NAt={name:"SwordOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},jAt={name:"SwordIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-sword",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"},null),e(" "),t("path",{d:"M6.5 11.5l6 6"},null),e(" ")])}},PAt={name:"SwordsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-swords",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z"},null),e(" "),t("path",{d:"M5 13l6 6"},null),e(" "),t("path",{d:"M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365"},null),e(" "),t("path",{d:"M10 5.5l-2 -2.5h-5v5l3 2.5"},null),e(" ")])}},LAt={name:"TableAliasIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-alias",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12v-7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v10"},null),e(" "),t("path",{d:"M2 17a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z"},null),e(" ")])}},DAt={name:"TableDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},OAt={name:"TableExportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-export",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16l3 3l-3 3"},null),e(" ")])}},FAt={name:"TableFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 11h4a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-2a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M21 12v6a3 3 0 0 1 -2.824 2.995l-.176 .005h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 2.995 2.824l.005 .176v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h6z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M9 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h2a1 1 0 0 1 1 1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},RAt={name:"TableHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},TAt={name:"TableImportIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-import",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},EAt={name:"TableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},VAt={name:"TableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h12a2 2 0 0 1 2 2v12m-.585 3.413a1.994 1.994 0 0 1 -1.415 .587h-14a2 2 0 0 1 -2 -2v-14c0 -.55 .223 -1.05 .583 -1.412"},null),e(" "),t("path",{d:"M3 10h7m4 0h7"},null),e(" "),t("path",{d:"M10 3v3m0 4v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_At={name:"TableOptionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-options",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},WAt={name:"TablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},XAt={name:"TableShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21h-7a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},qAt={name:"TableShortcutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table-shortcut",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 13v-8a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v11"},null),e(" "),t("path",{d:"M2 22l5 -5"},null),e(" "),t("path",{d:"M7 21.5v-4.5h-4.5"},null),e(" ")])}},YAt={name:"TableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-table",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-14z"},null),e(" "),t("path",{d:"M3 10h18"},null),e(" "),t("path",{d:"M10 3v18"},null),e(" ")])}},UAt={name:"TagOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.792 7.793a1 1 0 0 0 1.414 1.414"},null),e(" "),t("path",{d:"M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},GAt={name:"TagIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tag",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("circle",{cx:"8.5",cy:"8.5",r:"1",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"},null),e(" ")])}},ZAt={name:"TagsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085"},null),e(" "),t("path",{d:"M17.573 18.407l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KAt={name:"TagsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tags",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"},null),e(" "),t("path",{d:"M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"},null),e(" "),t("path",{d:"M6 9h-.01"},null),e(" ")])}},QAt={name:"Tallymark1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" ")])}},JAt={name:"Tallymark2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" ")])}},tBt={name:"Tallymark3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 5l0 14"},null),e(" "),t("path",{d:"M12 5l0 14"},null),e(" "),t("path",{d:"M16 5l0 14"},null),e(" ")])}},eBt={name:"Tallymark4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymark-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" ")])}},nBt={name:"TallymarksIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tallymarks",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 5l0 14"},null),e(" "),t("path",{d:"M10 5l0 14"},null),e(" "),t("path",{d:"M14 5l0 14"},null),e(" "),t("path",{d:"M18 5l0 14"},null),e(" "),t("path",{d:"M3 17l18 -10"},null),e(" ")])}},lBt={name:"TankIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tank",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M6 12l1 -5h5l3 5"},null),e(" "),t("path",{d:"M21 9l-7.8 0"},null),e(" ")])}},rBt={name:"TargetArrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-arrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 7a5 5 0 1 0 5 5"},null),e(" "),t("path",{d:"M13 3.055a9 9 0 1 0 7.941 7.945"},null),e(" "),t("path",{d:"M15 6v3h3l3 -3h-3v-3z"},null),e(" "),t("path",{d:"M15 9l-3 3"},null),e(" ")])}},oBt={name:"TargetOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.286 11.3a1 1 0 0 0 1.41 1.419"},null),e(" "),t("path",{d:"M8.44 8.49a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836"},null),e(" "),t("path",{d:"M5.649 5.623a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sBt={name:"TargetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-target",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},aBt={name:"TeapotIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-teapot",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78z"},null),e(" "),t("path",{d:"M7.47 12.5l-4.257 -5.019a.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3"},null),e(" "),t("path",{d:"M7 17h10"},null),e(" ")])}},iBt={name:"TelescopeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M8.238 8.264l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hBt={name:"TelescopeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-telescope",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l6 -5l6 5"},null),e(" "),t("path",{d:"M12 13v8"},null),e(" "),t("path",{d:"M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z"},null),e(" "),t("path",{d:"M14 5l3 5.5"},null),e(" ")])}},dBt={name:"TemperatureCelsiusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-celsius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 9a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3"},null),e(" ")])}},cBt={name:"TemperatureFahrenheitIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-fahrenheit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 12l5 0"},null),e(" "),t("path",{d:"M20 6h-6a1 1 0 0 0 -1 1v11"},null),e(" ")])}},uBt={name:"TemperatureMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" ")])}},pBt={name:"TemperatureOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1"},null),e(" "),t("path",{d:"M13 9h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},gBt={name:"TemperaturePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M8 9l4 0"},null),e(" "),t("path",{d:"M16 9l6 0"},null),e(" "),t("path",{d:"M19 6l0 6"},null),e(" ")])}},wBt={name:"TemperatureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-temperature",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5"},null),e(" "),t("path",{d:"M10 9l4 0"},null),e(" ")])}},vBt={name:"TemplateOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M16 12h4"},null),e(" "),t("path",{d:"M14 16h2"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fBt={name:"TemplateIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-template",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M14 12l6 0"},null),e(" "),t("path",{d:"M14 16l6 0"},null),e(" "),t("path",{d:"M14 20l6 0"},null),e(" ")])}},mBt={name:"TentOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kBt={name:"TentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 14l4 6h6l-9 -16l-9 16h6l4 -6"},null),e(" ")])}},bBt={name:"Terminal2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 9l3 3l-3 3"},null),e(" "),t("path",{d:"M13 15l3 0"},null),e(" "),t("path",{d:"M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z"},null),e(" ")])}},MBt={name:"TerminalIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-terminal",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7l5 5l-5 5"},null),e(" "),t("path",{d:"M12 19l7 0"},null),e(" ")])}},xBt={name:"TestPipe2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 3v15a3 3 0 0 1 -6 0v-15"},null),e(" "),t("path",{d:"M9 12h6"},null),e(" "),t("path",{d:"M8 3h8"},null),e(" ")])}},zBt={name:"TestPipeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4"},null),e(" "),t("path",{d:"M7 13h6"},null),e(" "),t("path",{d:"M19 15l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IBt={name:"TestPipeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-test-pipe",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124"},null),e(" "),t("path",{d:"M7 13h8"},null),e(" "),t("path",{d:"M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z"},null),e(" "),t("path",{d:"M15 3l6 6"},null),e(" ")])}},yBt={name:"TexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1h-6v1"},null),e(" "),t("path",{d:"M6 15v-8"},null),e(" "),t("path",{d:"M21 15l-5 -8"},null),e(" "),t("path",{d:"M16 15l5 -8"},null),e(" "),t("path",{d:"M14 11h-4v8h4"},null),e(" "),t("path",{d:"M10 15h3"},null),e(" ")])}},CBt={name:"TextCaptionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-caption",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15h16"},null),e(" "),t("path",{d:"M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 20h12"},null),e(" ")])}},SBt={name:"TextColorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-color",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15v-7a3 3 0 0 1 6 0v7"},null),e(" "),t("path",{d:"M9 11h6"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},$Bt={name:"TextDecreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-decrease",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},ABt={name:"TextDirectionLtrIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-ltr",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M17 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" ")])}},BBt={name:"TextDirectionRtlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-direction-rtl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5"},null),e(" "),t("path",{d:"M14 15v-11"},null),e(" "),t("path",{d:"M10 15v-11"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" "),t("path",{d:"M7 21l-2 -2l2 -2"},null),e(" ")])}},HBt={name:"TextIncreaseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-increase",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5"},null),e(" "),t("path",{d:"M4 13h7"},null),e(" "),t("path",{d:"M18 9v6"},null),e(" "),t("path",{d:"M21 12h-6"},null),e(" ")])}},NBt={name:"TextOrientationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-orientation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5"},null),e(" "),t("path",{d:"M5.5 11.5l5 -5"},null),e(" "),t("path",{d:"M21 12l-9 9"},null),e(" "),t("path",{d:"M21 12v4"},null),e(" "),t("path",{d:"M21 12h-4"},null),e(" ")])}},jBt={name:"TextPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 10h-14"},null),e(" "),t("path",{d:"M5 6h14"},null),e(" "),t("path",{d:"M14 14h-9"},null),e(" "),t("path",{d:"M5 18h6"},null),e(" "),t("path",{d:"M18 15v6"},null),e(" "),t("path",{d:"M15 18h6"},null),e(" ")])}},PBt={name:"TextRecognitionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-recognition",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"},null),e(" "),t("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"},null),e(" "),t("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"},null),e(" "),t("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M12 16v-7"},null),e(" "),t("path",{d:"M9 9h6"},null),e(" ")])}},LBt={name:"TextResizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-resize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M7 5h10"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M19 7v10"},null),e(" "),t("path",{d:"M10 10h4"},null),e(" "),t("path",{d:"M12 14v-4"},null),e(" ")])}},DBt={name:"TextSizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-size",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7v-2h13v2"},null),e(" "),t("path",{d:"M10 5v14"},null),e(" "),t("path",{d:"M12 19h-4"},null),e(" "),t("path",{d:"M15 13v-1h6v1"},null),e(" "),t("path",{d:"M18 12v7"},null),e(" "),t("path",{d:"M17 19h2"},null),e(" ")])}},OBt={name:"TextSpellcheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-spellcheck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5"},null),e(" "),t("path",{d:"M5 10h7"},null),e(" "),t("path",{d:"M10 18l3 3l7 -7"},null),e(" ")])}},FBt={name:"TextWrapDisabledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap-disabled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l10 0"},null),e(" "),t("path",{d:"M4 18l10 0"},null),e(" "),t("path",{d:"M4 12h17l-3 -3m0 6l3 -3"},null),e(" ")])}},RBt={name:"TextWrapIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-text-wrap",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 6l16 0"},null),e(" "),t("path",{d:"M4 18l5 0"},null),e(" "),t("path",{d:"M4 12h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2"},null),e(" ")])}},TBt={name:"TextureIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-texture",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3l-3 3"},null),e(" "),t("path",{d:"M21 18l-3 3"},null),e(" "),t("path",{d:"M11 3l-8 8"},null),e(" "),t("path",{d:"M16 3l-13 13"},null),e(" "),t("path",{d:"M21 3l-18 18"},null),e(" "),t("path",{d:"M21 8l-13 13"},null),e(" "),t("path",{d:"M21 13l-8 8"},null),e(" ")])}},EBt={name:"TheaterIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-theater",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M20 16v-10a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v10l4 -6c2.667 1.333 5.333 1.333 8 0l4 6z"},null),e(" ")])}},VBt={name:"ThermometerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thermometer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z"},null),e(" "),t("path",{d:"M16 7l-1.5 -1.5"},null),e(" "),t("path",{d:"M13 10l-1.5 -1.5"},null),e(" "),t("path",{d:"M10 13l-1.5 -1.5"},null),e(" "),t("path",{d:"M7 17l-3 3"},null),e(" ")])}},_Bt={name:"ThumbDownFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 21.008a3 3 0 0 0 2.995 -2.823l.005 -.177v-4h2a3 3 0 0 0 2.98 -2.65l.015 -.173l.005 -.177l-.02 -.196l-1.006 -5.032c-.381 -1.625 -1.502 -2.796 -2.81 -2.78l-.164 .008h-8a1 1 0 0 0 -.993 .884l-.007 .116l.001 9.536a1 1 0 0 0 .5 .866a2.998 2.998 0 0 1 1.492 2.396l.007 .202v1a3 3 0 0 0 3 3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 14.008a1 1 0 0 0 .993 -.883l.007 -.117v-9a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a2 2 0 0 0 -1.995 1.852l-.005 .15v7a2 2 0 0 0 1.85 1.994l.15 .005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WBt={name:"ThumbDownOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XBt={name:"ThumbDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3"},null),e(" ")])}},qBt={name:"ThumbUpFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 3a3 3 0 0 1 2.995 2.824l.005 .176v4h2a3 3 0 0 1 2.98 2.65l.015 .174l.005 .176l-.02 .196l-1.006 5.032c-.381 1.626 -1.502 2.796 -2.81 2.78l-.164 -.008h-8a1 1 0 0 1 -.993 -.883l-.007 -.117l.001 -9.536a1 1 0 0 1 .5 -.865a2.998 2.998 0 0 0 1.492 -2.397l.007 -.202v-1a3 3 0 0 1 3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M5 10a1 1 0 0 1 .993 .883l.007 .117v9a1 1 0 0 1 -.883 .993l-.117 .007h-1a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7a2 2 0 0 1 1.85 -1.995l.15 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},YBt={name:"ThumbUpOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},UBt={name:"ThumbUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-thumb-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3"},null),e(" ")])}},GBt={name:"TicTacIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tic-tac",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 12h18"},null),e(" "),t("path",{d:"M12 3v18"},null),e(" "),t("path",{d:"M4 16l4 4"},null),e(" "),t("path",{d:"M4 20l4 -4"},null),e(" "),t("path",{d:"M16 4l4 4"},null),e(" "),t("path",{d:"M16 8l4 -4"},null),e(" "),t("path",{d:"M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},ZBt={name:"TicketOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5v2"},null),e(" "),t("path",{d:"M15 17v2"},null),e(" "),t("path",{d:"M9 5h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},KBt={name:"TicketIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ticket",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 5l0 2"},null),e(" "),t("path",{d:"M15 11l0 2"},null),e(" "),t("path",{d:"M15 17l0 2"},null),e(" "),t("path",{d:"M5 5h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2"},null),e(" ")])}},QBt={name:"TieIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tie",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z"},null),e(" "),t("path",{d:"M10.5 7h3l5 5.5"},null),e(" ")])}},JBt={name:"TildeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilde",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3"},null),e(" ")])}},tHt={name:"TiltShiftOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -.577 .263"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M10.57 10.602a2 2 0 0 0 2.862 2.795"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},eHt={name:"TiltShiftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tilt-shift",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.56 3.69a9 9 0 0 0 -2.92 1.95"},null),e(" "),t("path",{d:"M3.69 8.56a9 9 0 0 0 -.69 3.44"},null),e(" "),t("path",{d:"M3.69 15.44a9 9 0 0 0 1.95 2.92"},null),e(" "),t("path",{d:"M8.56 20.31a9 9 0 0 0 3.44 .69"},null),e(" "),t("path",{d:"M15.44 20.31a9 9 0 0 0 2.92 -1.95"},null),e(" "),t("path",{d:"M20.31 15.44a9 9 0 0 0 .69 -3.44"},null),e(" "),t("path",{d:"M20.31 8.56a9 9 0 0 0 -1.95 -2.92"},null),e(" "),t("path",{d:"M15.44 3.69a9 9 0 0 0 -3.44 -.69"},null),e(" "),t("path",{d:"M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},nHt={name:"TimelineEventExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M12 6v2"},null),e(" "),t("path",{d:"M12 11v.01"},null),e(" ")])}},lHt={name:"TimelineEventMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" ")])}},rHt={name:"TimelineEventPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M10 8h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" ")])}},oHt={name:"TimelineEventTextIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-text",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M9 6h6"},null),e(" "),t("path",{d:"M9 9h3"},null),e(" ")])}},sHt={name:"TimelineEventXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" "),t("path",{d:"M13.5 9.5l-3 -3"},null),e(" "),t("path",{d:"M10.5 9.5l3 -3"},null),e(" ")])}},aHt={name:"TimelineEventIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline-event",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10 20h-6"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z"},null),e(" ")])}},iHt={name:"TimelineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-timeline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 16l6 -7l5 5l5 -6"},null),e(" "),t("path",{d:"M15 14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},hHt={name:"TirIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tir",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M7 18h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5"},null),e(" "),t("path",{d:"M12 18v-13h3"},null),e(" "),t("path",{d:"M3 17l0 -5l9 0"},null),e(" ")])}},dHt={name:"ToggleLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},cHt={name:"ToggleRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toggle-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M2 6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z"},null),e(" ")])}},uHt={name:"ToiletPaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M7 3h11"},null),e(" "),t("path",{d:"M21 10v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},pHt={name:"ToiletPaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toilet-paper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0"},null),e(" "),t("path",{d:"M21 10c0 -3.866 -1.343 -7 -3 -7"},null),e(" "),t("path",{d:"M6 3h12"},null),e(" "),t("path",{d:"M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10"},null),e(" "),t("path",{d:"M6 10h.01"},null),e(" ")])}},gHt={name:"TomlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-toml",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M1.499 8h3"},null),e(" "),t("path",{d:"M2.999 8v8"},null),e(" "),t("path",{d:"M8.5 8a1.5 1.5 0 0 1 1.5 1.5v5a1.5 1.5 0 0 1 -3 0v-5a1.5 1.5 0 0 1 1.5 -1.5z"},null),e(" "),t("path",{d:"M13 16v-8l2 5l2 -5v8"},null),e(" "),t("path",{d:"M20 8v8h2.5"},null),e(" ")])}},wHt={name:"ToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5"},null),e(" ")])}},vHt={name:"ToolsKitchen2OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941"},null),e(" "),t("path",{d:"M19 19v2h-1v-3"},null),e(" "),t("path",{d:"M8 8v13"},null),e(" "),t("path",{d:"M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fHt={name:"ToolsKitchen2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3"},null),e(" ")])}},mHt={name:"ToolsKitchenOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M15.225 11.216c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1"},null),e(" "),t("path",{d:"M20 15v1m0 4v1h-1v-2"},null),e(" "),t("path",{d:"M8 12v6"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},kHt={name:"ToolsKitchenIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-kitchen",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 3h8l-1 9h-6z"},null),e(" "),t("path",{d:"M7 18h2v3h-2z"},null),e(" "),t("path",{d:"M20 3v12h-5c-.023 -3.681 .184 -7.406 5 -12z"},null),e(" "),t("path",{d:"M20 15v6h-1v-3"},null),e(" "),t("path",{d:"M8 12l0 6"},null),e(" ")])}},bHt={name:"ToolsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5m-2 2l-2 2l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5m-2 2l-2 2l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},MHt={name:"ToolsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tools",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4"},null),e(" "),t("path",{d:"M14.5 5.5l4 4"},null),e(" "),t("path",{d:"M12 8l-5 -5l-4 4l5 5"},null),e(" "),t("path",{d:"M7 8l-1.5 1.5"},null),e(" "),t("path",{d:"M16 12l5 5l-4 4l-5 -5"},null),e(" "),t("path",{d:"M16 17l-1.5 1.5"},null),e(" ")])}},xHt={name:"TooltipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tooltip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z"},null),e(" ")])}},zHt={name:"TopologyBusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-bus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M2 16h20"},null),e(" "),t("path",{d:"M4 12v4"},null),e(" "),t("path",{d:"M12 12v4"},null),e(" "),t("path",{d:"M20 12v4"},null),e(" ")])}},IHt={name:"TopologyComplexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-complex",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},yHt={name:"TopologyFullHierarchyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full-hierarchy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" "),t("path",{d:"M10.5 13.5l-3 3"},null),e(" ")])}},CHt={name:"TopologyFullIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-full",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" "),t("path",{d:"M7.5 7.5l9 9"},null),e(" "),t("path",{d:"M7.5 16.5l9 -9"},null),e(" ")])}},SHt={name:"TopologyRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M21 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M18 16l-5 -8"},null),e(" "),t("path",{d:"M11 8l-5 8"},null),e(" ")])}},$Ht={name:"TopologyRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 8v8"},null),e(" "),t("path",{d:"M18 16v-8"},null),e(" "),t("path",{d:"M8 6h8"},null),e(" "),t("path",{d:"M16 18h-8"},null),e(" ")])}},AHt={name:"TopologyRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" ")])}},BHt={name:"TopologyStar2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},HHt={name:"TopologyStar3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" ")])}},NHt={name:"TopologyStarRing2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" "),t("path",{d:"M5.5 10.5l5 -5"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M18.5 13.5l-5 5"},null),e(" "),t("path",{d:"M10.5 18.5l-5 -5"},null),e(" ")])}},jHt={name:"TopologyStarRing3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M10 5a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M18 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M15 7l-2 3"},null),e(" "),t("path",{d:"M9 7l2 3"},null),e(" "),t("path",{d:"M11 14l-2 3"},null),e(" "),t("path",{d:"M13 14l2 3"},null),e(" "),t("path",{d:"M10 5h4"},null),e(" "),t("path",{d:"M10 19h4"},null),e(" "),t("path",{d:"M17 17l2 -3"},null),e(" "),t("path",{d:"M19 10l-2 -3"},null),e(" "),t("path",{d:"M7 7l-2 3"},null),e(" "),t("path",{d:"M5 14l2 3"},null),e(" ")])}},PHt={name:"TopologyStarRingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star-ring",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M22 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M6 12h4"},null),e(" "),t("path",{d:"M14 12h4"},null),e(" "),t("path",{d:"M13.5 5.5l5 5"},null),e(" "),t("path",{d:"M5.5 13.5l5 5"},null),e(" "),t("path",{d:"M13.5 18.5l5 -5"},null),e(" "),t("path",{d:"M10.5 5.5l-5 5"},null),e(" "),t("path",{d:"M12 6v4"},null),e(" "),t("path",{d:"M12 14v4"},null),e(" ")])}},LHt={name:"TopologyStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-topology-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M8 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M7.5 7.5l3 3"},null),e(" "),t("path",{d:"M7.5 16.5l3 -3"},null),e(" "),t("path",{d:"M13.5 13.5l3 3"},null),e(" "),t("path",{d:"M16.5 7.5l-3 3"},null),e(" ")])}},DHt={name:"ToriiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-torii",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4c5.333 1.333 10.667 1.333 16 0"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M12 5v3"},null),e(" "),t("path",{d:"M18 4.5v15.5"},null),e(" "),t("path",{d:"M6 4.5v15.5"},null),e(" ")])}},OHt={name:"TornadoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tornado",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 4l-18 0"},null),e(" "),t("path",{d:"M13 16l-6 0"},null),e(" "),t("path",{d:"M11 20l4 0"},null),e(" "),t("path",{d:"M6 8l14 0"},null),e(" "),t("path",{d:"M4 12l12 0"},null),e(" ")])}},FHt={name:"TournamentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tournament",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M20 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 12h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3"},null),e(" "),t("path",{d:"M6 4h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2"},null),e(" "),t("path",{d:"M14 10h4"},null),e(" ")])}},RHt={name:"TowerOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},THt={name:"TowerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tower",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z"},null),e(" "),t("path",{d:"M10 21v-5a2 2 0 1 1 4 0v5"},null),e(" ")])}},EHt={name:"TrackIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-track",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7"},null),e(" ")])}},VHt={name:"TractorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tractor",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 15l0 .01"},null),e(" "),t("path",{d:"M19 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M10.5 17l6.5 0"},null),e(" "),t("path",{d:"M20 15.2v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5"},null),e(" "),t("path",{d:"M18 5h-1a1 1 0 0 0 -1 1v4"},null),e(" ")])}},_Ht={name:"TrademarkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trademark",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.5 9h5m-2.5 0v6"},null),e(" "),t("path",{d:"M13 15v-6l3 4l3 -4v6"},null),e(" ")])}},WHt={name:"TrafficConeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h16"},null),e(" "),t("path",{d:"M9.4 10h.6m4 0h.6"},null),e(" "),t("path",{d:"M7.8 15h7.2"},null),e(" "),t("path",{d:"M6 20l3.5 -10.5"},null),e(" "),t("path",{d:"M10.5 6.5l.5 -1.5h2l2 6m2 6l1 3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XHt={name:"TrafficConeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-cone",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 0"},null),e(" "),t("path",{d:"M9.4 10l5.2 0"},null),e(" "),t("path",{d:"M7.8 15l8.4 0"},null),e(" "),t("path",{d:"M6 20l5 -15h2l5 15"},null),e(" ")])}},qHt={name:"TrafficLightsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10"},null),e(" "),t("path",{d:"M12 8a1 1 0 1 0 -1 -1"},null),e(" "),t("path",{d:"M11.291 11.295a1 1 0 0 0 1.418 1.41"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},YHt={name:"TrafficLightsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-traffic-lights",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5z"},null),e(" "),t("path",{d:"M12 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M12 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},UHt={name:"TrainIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-train",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 13c0 -3.87 -3.37 -7 -10 -7h-8"},null),e(" "),t("path",{d:"M3 15h16a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M3 6v5h17.5"},null),e(" "),t("path",{d:"M3 10l0 4"},null),e(" "),t("path",{d:"M8 11l0 -5"},null),e(" "),t("path",{d:"M13 11l0 -4.5"},null),e(" "),t("path",{d:"M3 19l18 0"},null),e(" ")])}},GHt={name:"TransferInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 18v3h16v-14l-8 -4l-8 4v3"},null),e(" "),t("path",{d:"M4 14h9"},null),e(" "),t("path",{d:"M10 11l3 3l-3 3"},null),e(" ")])}},ZHt={name:"TransferOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transfer-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 19v2h16v-14l-8 -4l-8 4v2"},null),e(" "),t("path",{d:"M13 14h-9"},null),e(" "),t("path",{d:"M7 11l-3 3l3 3"},null),e(" ")])}},KHt={name:"TransformFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 14a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16.707 2.293a1 1 0 0 1 .083 1.32l-.083 .094l-1.293 1.293h3.586a3 3 0 0 1 2.995 2.824l.005 .176v3a1 1 0 0 1 -1.993 .117l-.007 -.117v-3a1 1 0 0 0 -.883 -.993l-.117 -.007h-3.585l1.292 1.293a1 1 0 0 1 -1.32 1.497l-.094 -.083l-3 -3a.98 .98 0 0 1 -.28 -.872l.036 -.146l.04 -.104c.058 -.126 .14 -.24 .245 -.334l2.959 -2.958a1 1 0 0 1 1.414 0z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 12a1 1 0 0 1 .993 .883l.007 .117v3a1 1 0 0 0 .883 .993l.117 .007h3.585l-1.292 -1.293a1 1 0 0 1 -.083 -1.32l.083 -.094a1 1 0 0 1 1.32 -.083l.094 .083l3 3a.98 .98 0 0 1 .28 .872l-.036 .146l-.04 .104a1.02 1.02 0 0 1 -.245 .334l-2.959 2.958a1 1 0 0 1 -1.497 -1.32l.083 -.094l1.291 -1.293h-3.584a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a4 4 0 1 1 -3.995 4.2l-.005 -.2l.005 -.2a4 4 0 0 1 3.995 -3.8z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},QHt={name:"TransformIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transform",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" "),t("path",{d:"M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3"},null),e(" "),t("path",{d:"M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"},null),e(" ")])}},JHt={name:"TransitionBottomIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-bottom",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 9v8"},null),e(" "),t("path",{d:"M9 14l3 3l3 -3"},null),e(" ")])}},tNt={name:"TransitionLeftIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-left",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3"},null),e(" "),t("path",{d:"M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z"},null),e(" "),t("path",{d:"M15 12h-8"},null),e(" "),t("path",{d:"M10 9l-3 3l3 3"},null),e(" ")])}},eNt={name:"TransitionRightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-right",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z"},null),e(" "),t("path",{d:"M9 12h8"},null),e(" "),t("path",{d:"M14 15l3 -3l-3 -3"},null),e(" ")])}},nNt={name:"TransitionTopIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-transition-top",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3"},null),e(" "),t("path",{d:"M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z"},null),e(" "),t("path",{d:"M12 15v-8"},null),e(" "),t("path",{d:"M9 10l3 -3l3 3"},null),e(" ")])}},lNt={name:"TrashFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},rNt={name:"TrashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M4 7h3m4 0h9"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 14l0 3"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923"},null),e(" "),t("path",{d:"M18.384 14.373l.616 -7.373"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},oNt={name:"TrashXFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 6a1 1 0 0 1 .117 1.993l-.117 .007h-.081l-.919 11a3 3 0 0 1 -2.824 2.995l-.176 .005h-8c-1.598 0 -2.904 -1.249 -2.992 -2.75l-.005 -.167l-.923 -11.083h-.08a1 1 0 0 1 -.117 -1.993l.117 -.007h16zm-9.489 5.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M14 2a2 2 0 0 1 2 2a1 1 0 0 1 -1.993 .117l-.007 -.117h-4l-.007 .117a1 1 0 0 1 -1.993 -.117a2 2 0 0 1 1.85 -1.995l.15 -.005h4z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},sNt={name:"TrashXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7h16"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M10 12l4 4m0 -4l-4 4"},null),e(" ")])}},aNt={name:"TrashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 7l16 0"},null),e(" "),t("path",{d:"M10 11l0 6"},null),e(" "),t("path",{d:"M14 11l0 6"},null),e(" "),t("path",{d:"M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"},null),e(" "),t("path",{d:"M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"},null),e(" ")])}},iNt={name:"TreadmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-treadmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 3a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M3 14l4 1l.5 -.5"},null),e(" "),t("path",{d:"M12 18v-3l-3 -2.923l.75 -5.077"},null),e(" "),t("path",{d:"M6 10v-2l4 -1l2.5 2.5l2.5 .5"},null),e(" "),t("path",{d:"M21 22a1 1 0 0 0 -1 -1h-16a1 1 0 0 0 -1 1"},null),e(" "),t("path",{d:"M18 21l1 -11l2 -1"},null),e(" ")])}},hNt={name:"TreeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-tree",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 13l-2 -2"},null),e(" "),t("path",{d:"M12 12l2 -2"},null),e(" "),t("path",{d:"M12 21v-13"},null),e(" "),t("path",{d:"M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},dNt={name:"TreesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trees",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 5l3 3l-2 1l4 4l-3 1l4 4h-9"},null),e(" "),t("path",{d:"M15 21l0 -3"},null),e(" "),t("path",{d:"M8 13l-2 -2"},null),e(" "),t("path",{d:"M8 12l2 -2"},null),e(" "),t("path",{d:"M8 21v-13"},null),e(" "),t("path",{d:"M5.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"},null),e(" ")])}},cNt={name:"TrekkingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trekking",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l2 -4"},null),e(" "),t("path",{d:"M13 21v-4l-3 -3l1 -6l3 4l3 2"},null),e(" "),t("path",{d:"M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2"},null),e(" "),t("path",{d:"M17 12v9"},null),e(" "),t("path",{d:"M16 20h2"},null),e(" ")])}},uNt={name:"TrendingDown2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h5l7 10h6"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},pNt={name:"TrendingDown3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397"},null),e(" "),t("path",{d:"M18 19l3 -3l-3 -3"},null),e(" ")])}},gNt={name:"TrendingDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 7l6 6l4 -4l8 8"},null),e(" "),t("path",{d:"M21 10l0 7l-7 0"},null),e(" ")])}},wNt={name:"TrendingUp2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h5l7 -10h6"},null),e(" ")])}},vNt={name:"TrendingUp3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 5l3 3l-3 3"},null),e(" "),t("path",{d:"M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397"},null),e(" ")])}},fNt={name:"TrendingUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trending-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 17l6 -6l4 4l8 -8"},null),e(" "),t("path",{d:"M14 7l7 0l0 7"},null),e(" ")])}},mNt={name:"TriangleFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kNt={name:"TriangleInvertedFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.007 3a3 3 0 0 1 2.828 3.94l-.068 .185l-.062 .126l-7.09 12.233a3 3 0 0 1 -5.137 .19l-.103 -.173l-7.1 -12.25l-.061 -.125a3 3 0 0 1 2.625 -4.125l.058 -.001l.06 .002l.043 -.002h14.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},bNt={name:"TriangleInvertedIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-inverted",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 20.043l-8.422 -14.06a1.989 1.989 0 0 1 1.7 -2.983h16.845a1.989 1.989 0 0 1 1.7 2.983l-8.422 14.06a1.989 1.989 0 0 1 -3.4 0z"},null),e(" ")])}},MNt={name:"TriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xNt={name:"TriangleSquareCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle-square-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3l-4 7h8z"},null),e(" "),t("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" ")])}},zNt={name:"TriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"},null),e(" ")])}},INt={name:"TrianglesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-triangles",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9.974 21h8.052a.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a.973 .973 0 0 0 -1.622 0l-4.025 6.048a.977 .977 0 0 0 .81 1.517z"},null),e(" "),t("path",{d:"M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a.973 .973 0 0 0 .53 .157z"},null),e(" ")])}},yNt={name:"TridentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trident",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2"},null),e(" "),t("path",{d:"M12 21v-18l-2 2m4 0l-2 -2"},null),e(" ")])}},CNt={name:"TrolleyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trolley",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M6 16l3 2"},null),e(" "),t("path",{d:"M12 17l8 -12"},null),e(" "),t("path",{d:"M17 10l2 1"},null),e(" "),t("path",{d:"M9.592 4.695l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z"},null),e(" ")])}},SNt={name:"TrophyFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3a1 1 0 0 1 .993 .883l.007 .117v2.17a3 3 0 1 1 0 5.659v.171a6.002 6.002 0 0 1 -5 5.917v2.083h3a1 1 0 0 1 .117 1.993l-.117 .007h-8a1 1 0 0 1 -.117 -1.993l.117 -.007h3v-2.083a6.002 6.002 0 0 1 -4.996 -5.692l-.004 -.225v-.171a3 3 0 0 1 -3.996 -2.653l-.003 -.176l.005 -.176a3 3 0 0 1 3.995 -2.654l-.001 -2.17a1 1 0 0 1 1 -1h10zm-12 5a1 1 0 1 0 0 2a1 1 0 0 0 0 -2zm14 0a1 1 0 1 0 0 2a1 1 0 0 0 0 -2z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},$Nt={name:"TrophyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21h8"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M8 4h9"},null),e(" "),t("path",{d:"M17 4v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ANt={name:"TrophyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trophy",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 21l8 0"},null),e(" "),t("path",{d:"M12 17l0 4"},null),e(" "),t("path",{d:"M7 4l10 0"},null),e(" "),t("path",{d:"M17 4v8a5 5 0 0 1 -10 0v-8"},null),e(" "),t("path",{d:"M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},BNt={name:"TrowelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-trowel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274z"},null),e(" "),t("path",{d:"M10 10l6.5 6.5"},null),e(" "),t("path",{d:"M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z"},null),e(" ")])}},HNt={name:"TruckDeliveryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-delivery",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" "),t("path",{d:"M3 9l4 0"},null),e(" ")])}},NNt={name:"TruckLoadingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-loading",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15"},null),e(" "),t("path",{d:"M9 6m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M9 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M18 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},jNt={name:"TruckOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15.585 15.586a2 2 0 0 0 2.826 2.831"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PNt={name:"TruckReturnIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck-return",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2"},null),e(" "),t("path",{d:"M9 17l6 0"},null),e(" "),t("path",{d:"M13 6h5l3 5v6h-2"},null),e(" ")])}},LNt={name:"TruckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-truck",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M17 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5"},null),e(" ")])}},DNt={name:"TxtIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-txt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 8h4"},null),e(" "),t("path",{d:"M5 8v8"},null),e(" "),t("path",{d:"M17 8h4"},null),e(" "),t("path",{d:"M19 8v8"},null),e(" "),t("path",{d:"M10 8l4 8"},null),e(" "),t("path",{d:"M10 16l4 -8"},null),e(" ")])}},ONt={name:"TypographyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20h3"},null),e(" "),t("path",{d:"M14 20h6"},null),e(" "),t("path",{d:"M6.9 15h6.9"},null),e(" "),t("path",{d:"M13 13l3 7"},null),e(" "),t("path",{d:"M5 20l4.09 -10.906"},null),e(" "),t("path",{d:"M10.181 6.183l.819 -2.183h2l3.904 8.924"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},FNt={name:"TypographyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-typography",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l3 0"},null),e(" "),t("path",{d:"M14 20l7 0"},null),e(" "),t("path",{d:"M6.9 15l6.9 0"},null),e(" "),t("path",{d:"M10.2 6.3l5.8 13.7"},null),e(" "),t("path",{d:"M5 20l6 -16l2 0l7 16"},null),e(" ")])}},RNt={name:"UfoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},TNt={name:"UfoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ufo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724"},null),e(" "),t("path",{d:"M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035"},null),e(" "),t("path",{d:"M15 17l2 3"},null),e(" "),t("path",{d:"M8.5 17l-1.5 3"},null),e(" "),t("path",{d:"M12 14h.01"},null),e(" "),t("path",{d:"M7 13h.01"},null),e(" "),t("path",{d:"M17 13h.01"},null),e(" ")])}},ENt={name:"UmbrellaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3a9 9 0 0 1 9 9a1 1 0 0 1 -.883 .993l-.117 .007h-7v5a1 1 0 0 0 1.993 .117l.007 -.117a1 1 0 0 1 2 0a3 3 0 0 1 -5.995 .176l-.005 -.176v-5h-7a1 1 0 0 1 -.993 -.883l-.007 -.117a9 9 0 0 1 9 -9z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},VNt={name:"UmbrellaOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 1 0 4 0"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},_Nt={name:"UmbrellaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-umbrella",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12a8 8 0 0 1 16 0z"},null),e(" "),t("path",{d:"M12 12v6a2 2 0 0 0 4 0"},null),e(" ")])}},WNt={name:"UnderlineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-underline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 5v5a5 5 0 0 0 10 0v-5"},null),e(" "),t("path",{d:"M5 19h14"},null),e(" ")])}},XNt={name:"UnlinkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-unlink",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 22v-2"},null),e(" "),t("path",{d:"M9 15l6 -6"},null),e(" "),t("path",{d:"M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"},null),e(" "),t("path",{d:"M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"},null),e(" "),t("path",{d:"M20 17h2"},null),e(" "),t("path",{d:"M2 7h2"},null),e(" "),t("path",{d:"M7 2v2"},null),e(" ")])}},qNt={name:"UploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"},null),e(" "),t("path",{d:"M7 9l5 -5l5 5"},null),e(" "),t("path",{d:"M12 4l0 12"},null),e(" ")])}},YNt={name:"UrgentIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-urgent",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16v-4a4 4 0 0 1 8 0v4"},null),e(" "),t("path",{d:"M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7"},null),e(" "),t("path",{d:"M6 16m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"},null),e(" ")])}},UNt={name:"UsbIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-usb",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M12 17v-11.5"},null),e(" "),t("path",{d:"M7 10v3l5 3"},null),e(" "),t("path",{d:"M12 14.5l5 -2v-2.5"},null),e(" "),t("path",{d:"M16 10h2v-2h-2z"},null),e(" "),t("path",{d:"M7 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M10 5.5h4l-2 -2.5z"},null),e(" ")])}},GNt={name:"UserBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.267 0 .529 .026 .781 .076"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},ZNt={name:"UserCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},KNt={name:"UserCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},QNt={name:"UserCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855"},null),e(" ")])}},JNt={name:"UserCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},tjt={name:"UserCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},ejt={name:"UserDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},njt={name:"UserDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.342 0 .674 .043 .99 .124"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},ljt={name:"UserEditIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-edit",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z"},null),e(" ")])}},rjt={name:"UserExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.008 .128"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},ojt={name:"UserHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},sjt={name:"UserMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.348 0 .686 .045 1.009 .128"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},ajt={name:"UserOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.18 8.189a4.01 4.01 0 0 0 2.616 2.627m3.507 -.545a4 4 0 1 0 -5.59 -5.552"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4c.412 0 .81 .062 1.183 .178m2.633 2.618c.12 .38 .184 .785 .184 1.204v2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ijt={name:"UserPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},hjt={name:"UserPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2.5"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},djt={name:"UserPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" ")])}},cjt={name:"UserQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ujt={name:"UserSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h1.5"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},pjt={name:"UserShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},gjt={name:"UserShieldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-shield",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h2"},null),e(" "),t("path",{d:"M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" ")])}},wjt={name:"UserStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h.5"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},vjt={name:"UserUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},fjt={name:"UserXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h3.5"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},mjt={name:"UserIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-user",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" ")])}},kjt={name:"UsersGroupIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-group",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 13a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M8 21v-1a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M15 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M17 10h2a2 2 0 0 1 2 2v1"},null),e(" "),t("path",{d:"M5 5a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"},null),e(" "),t("path",{d:"M3 13v-1a2 2 0 0 1 2 -2h2"},null),e(" ")])}},bjt={name:"UsersMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.948 0 1.818 .33 2.504 .88"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Mjt={name:"UsersPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4c.96 0 1.84 .338 2.53 .901"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},xjt={name:"UsersIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-users",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"},null),e(" "),t("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"},null),e(" "),t("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"},null),e(" ")])}},zjt={name:"UvIndexIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-uv-index",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0"},null),e(" "),t("path",{d:"M12 4v-1"},null),e(" "),t("path",{d:"M13 16l2 5h1l2 -5"},null),e(" "),t("path",{d:"M6 16v3a2 2 0 1 0 4 0v-3"},null),e(" ")])}},Ijt={name:"UxCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-ux-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M7 10v2a2 2 0 1 0 4 0v-2"},null),e(" "),t("path",{d:"M14 10l3 4"},null),e(" "),t("path",{d:"M14 14l3 -4"},null),e(" ")])}},yjt={name:"VaccineBottleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4"},null),e(" "),t("path",{d:"M8.7 8.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h5m4 0h1"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Cjt={name:"VaccineBottleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-bottle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" "),t("path",{d:"M7 18h10"},null),e(" "),t("path",{d:"M11 15h2"},null),e(" ")])}},Sjt={name:"VaccineOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},$jt={name:"VaccineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vaccine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3l4 4"},null),e(" "),t("path",{d:"M19 5l-4.5 4.5"},null),e(" "),t("path",{d:"M11.5 6.5l6 6"},null),e(" "),t("path",{d:"M16.5 11.5l-6.5 6.5h-4v-4l6.5 -6.5"},null),e(" "),t("path",{d:"M7.5 12.5l1.5 1.5"},null),e(" "),t("path",{d:"M10.5 9.5l1.5 1.5"},null),e(" "),t("path",{d:"M3 21l3 -3"},null),e(" ")])}},Ajt={name:"VacuumCleanerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vacuum-cleaner",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z"},null),e(" "),t("path",{d:"M14 9a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z"},null),e(" "),t("path",{d:"M12 16h.01"},null),e(" ")])}},Bjt={name:"VariableMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},Hjt={name:"VariableOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32"},null),e(" "),t("path",{d:"M19 4c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717"},null),e(" "),t("path",{d:"M11.696 11.696c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Njt={name:"VariablePlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},jjt={name:"VariableIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-variable",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1"},null),e(" "),t("path",{d:"M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5"},null),e(" ")])}},Pjt={name:"VectorBezier2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M7 5l7 0"},null),e(" "),t("path",{d:"M10 19l7 0"},null),e(" "),t("path",{d:"M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5"},null),e(" ")])}},Ljt={name:"VectorBezierArcIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-arc",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},Djt={name:"VectorBezierCircleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier-circle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M19 10a5 5 0 0 0 -5 -5"},null),e(" "),t("path",{d:"M19 14a5 5 0 0 1 -5 5"},null),e(" "),t("path",{d:"M5 14a5 5 0 0 0 5 5"},null),e(" "),t("path",{d:"M5 10a5 5 0 0 1 5 -5"},null),e(" ")])}},Ojt={name:"VectorBezierIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-bezier",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M10 8.5a6 6 0 0 0 -5 5.5"},null),e(" "),t("path",{d:"M14 8.5a6 6 0 0 1 5 5.5"},null),e(" "),t("path",{d:"M10 8l-6 0"},null),e(" "),t("path",{d:"M20 8l-6 0"},null),e(" "),t("path",{d:"M3 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M21 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" ")])}},Fjt={name:"VectorOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.72 20.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7v10"},null),e(" "),t("path",{d:"M19 7v8"},null),e(" "),t("path",{d:"M9 5h8"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Rjt={name:"VectorSplineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-spline",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"},null),e(" ")])}},Tjt={name:"VectorTriangleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M20.705 20.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714"},null),e(" "),t("path",{d:"M6.5 17.1l3.749 -6.823"},null),e(" "),t("path",{d:"M13.158 9.197l-.658 -1.197"},null),e(" "),t("path",{d:"M7 19h10"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Ejt={name:"VectorTriangleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector-triangle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M6.5 17.1l5 -9.1"},null),e(" "),t("path",{d:"M17.5 17.1l-5 -9.1"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},Vjt={name:"VectorIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vector",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M5 7l0 10"},null),e(" "),t("path",{d:"M19 7l0 10"},null),e(" "),t("path",{d:"M7 5l10 0"},null),e(" "),t("path",{d:"M7 19l10 0"},null),e(" ")])}},_jt={name:"VenusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-venus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 14l0 7"},null),e(" "),t("path",{d:"M9 18l6 0"},null),e(" ")])}},Wjt={name:"VersionsFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 4h-6a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M7 6a1 1 0 0 1 .993 .883l.007 .117v10a1 1 0 0 1 -1.993 .117l-.007 -.117v-10a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M4 7a1 1 0 0 1 .993 .883l.007 .117v8a1 1 0 0 1 -1.993 .117l-.007 -.117v-8a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},Xjt={name:"VersionsOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7"},null),e(" "),t("path",{d:"M7 7v10"},null),e(" "),t("path",{d:"M4 8v8"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},qjt={name:"VersionsIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-versions",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 7l0 10"},null),e(" "),t("path",{d:"M4 8l0 8"},null),e(" ")])}},Yjt={name:"VideoMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" ")])}},Ujt={name:"VideoOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M15 11v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946"},null),e(" "),t("path",{d:"M10 6h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1"},null),e(" ")])}},Gjt={name:"VideoPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M7 12l4 0"},null),e(" "),t("path",{d:"M9 10l0 4"},null),e(" ")])}},Zjt={name:"VideoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-video",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4z"},null),e(" "),t("path",{d:"M3 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"},null),e(" ")])}},Kjt={name:"View360OffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M8.32 8.349c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},Qjt={name:"View360Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-view-360",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 12m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0"},null),e(" "),t("path",{d:"M3 12c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z"},null),e(" ")])}},Jjt={name:"ViewfinderOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08"},null),e(" "),t("path",{d:"M12 3v4"},null),e(" "),t("path",{d:"M12 21v-3"},null),e(" "),t("path",{d:"M3 12h4"},null),e(" "),t("path",{d:"M21 12h-3"},null),e(" "),t("path",{d:"M12 12v.01"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tPt={name:"ViewfinderIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewfinder",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3l0 4"},null),e(" "),t("path",{d:"M12 21l0 -3"},null),e(" "),t("path",{d:"M3 12l4 0"},null),e(" "),t("path",{d:"M21 12l-3 0"},null),e(" "),t("path",{d:"M12 12l0 .01"},null),e(" ")])}},ePt={name:"ViewportNarrowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-narrow",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M21 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M9 6v-3h6v3"},null),e(" "),t("path",{d:"M9 18v3h6v-3"},null),e(" ")])}},nPt={name:"ViewportWideIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-viewport-wide",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 12h-7l3 -3m0 6l-3 -3"},null),e(" "),t("path",{d:"M14 12h7l-3 -3m0 6l3 -3"},null),e(" "),t("path",{d:"M3 6v-3h18v3"},null),e(" "),t("path",{d:"M3 18v3h18v-3"},null),e(" ")])}},lPt={name:"VinylIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vinyl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 3.937a9 9 0 1 0 5 8.063"},null),e(" "),t("path",{d:"M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M20 4l-3.5 10l-2.5 2"},null),e(" ")])}},rPt={name:"VipOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h2m4 0h12"},null),e(" "),t("path",{d:"M3 19h16"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 12v3"},null),e(" "),t("path",{d:"M16 12v-3h2a2 2 0 1 1 0 4h-1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oPt={name:"VipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 5h18"},null),e(" "),t("path",{d:"M3 19h18"},null),e(" "),t("path",{d:"M4 9l2 6h1l2 -6"},null),e(" "),t("path",{d:"M12 9v6"},null),e(" "),t("path",{d:"M16 15v-6h2a2 2 0 1 1 0 4h-2"},null),e(" ")])}},sPt={name:"VirusOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" "),t("path",{d:"M8.469 8.46a5 5 0 0 0 7.058 7.084"},null),e(" "),t("path",{d:"M16.913 12.936a5 5 0 0 0 -5.826 -5.853"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M18.364 18.363l-.707 .707"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M5.636 5.637l-.707 .707"},null),e(" ")])}},aPt={name:"VirusSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 12a5 5 0 1 0 -5 5"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" "),t("path",{d:"M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0"},null),e(" "),t("path",{d:"M19.5 19.5l2.5 2.5"},null),e(" ")])}},iPt={name:"VirusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-virus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M12 7v-4"},null),e(" "),t("path",{d:"M11 3h2"},null),e(" "),t("path",{d:"M15.536 8.464l2.828 -2.828"},null),e(" "),t("path",{d:"M17.657 4.929l1.414 1.414"},null),e(" "),t("path",{d:"M17 12h4"},null),e(" "),t("path",{d:"M21 11v2"},null),e(" "),t("path",{d:"M15.535 15.536l2.829 2.828"},null),e(" "),t("path",{d:"M19.071 17.657l-1.414 1.414"},null),e(" "),t("path",{d:"M12 17v4"},null),e(" "),t("path",{d:"M13 21h-2"},null),e(" "),t("path",{d:"M8.465 15.536l-2.829 2.828"},null),e(" "),t("path",{d:"M6.343 19.071l-1.413 -1.414"},null),e(" "),t("path",{d:"M7 12h-4"},null),e(" "),t("path",{d:"M3 13v-2"},null),e(" "),t("path",{d:"M8.464 8.464l-2.828 -2.828"},null),e(" "),t("path",{d:"M4.929 6.343l1.414 -1.413"},null),e(" ")])}},hPt={name:"VocabularyOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712"},null),e(" "),t("path",{d:"M12 5v3m0 4v9"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},dPt={name:"VocabularyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-vocabulary",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z"},null),e(" "),t("path",{d:"M12 5v16"},null),e(" "),t("path",{d:"M7 7h1"},null),e(" "),t("path",{d:"M7 11h1"},null),e(" "),t("path",{d:"M16 7h1"},null),e(" "),t("path",{d:"M16 11h1"},null),e(" "),t("path",{d:"M16 15h1"},null),e(" ")])}},cPt={name:"VolcanoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volcano",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 8v-1a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M15 8v-1a2 2 0 1 1 4 0"},null),e(" "),t("path",{d:"M4 20l3.472 -7.812a2 2 0 0 1 1.828 -1.188h5.4a2 2 0 0 1 1.828 1.188l3.472 7.812"},null),e(" "),t("path",{d:"M6.192 15.064a2.14 2.14 0 0 1 .475 -.064c.527 -.009 1.026 .178 1.333 .5c.307 .32 .806 .507 1.333 .5c.527 .007 1.026 -.18 1.334 -.5c.307 -.322 .806 -.509 1.333 -.5c.527 -.009 1.026 .178 1.333 .5c.308 .32 .807 .507 1.334 .5c.527 .007 1.026 -.18 1.333 -.5c.307 -.322 .806 -.509 1.333 -.5c.161 .003 .32 .025 .472 .064"},null),e(" "),t("path",{d:"M12 8v-4"},null),e(" ")])}},uPt={name:"Volume2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},pPt={name:"Volume3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" "),t("path",{d:"M16 10l4 4m0 -4l-4 4"},null),e(" ")])}},gPt={name:"VolumeOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615"},null),e(" "),t("path",{d:"M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wPt={name:"VolumeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-volume",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 8a5 5 0 0 1 0 8"},null),e(" "),t("path",{d:"M17.7 5a9 9 0 0 1 0 14"},null),e(" "),t("path",{d:"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5"},null),e(" ")])}},vPt={name:"WalkIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-walk",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M7 21l3 -4"},null),e(" "),t("path",{d:"M16 21l-2 -4l-3 -3l1 -6"},null),e(" "),t("path",{d:"M6 12l2 -3l4 -1l3 3l3 1"},null),e(" ")])}},fPt={name:"WallOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409"},null),e(" "),t("path",{d:"M4 8h4m4 0h8"},null),e(" "),t("path",{d:"M20 12h-4m-4 0h-8"},null),e(" "),t("path",{d:"M4 16h12"},null),e(" "),t("path",{d:"M9 4v1"},null),e(" "),t("path",{d:"M14 8v2"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},mPt={name:"WallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wall",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M4 8h16"},null),e(" "),t("path",{d:"M20 12h-16"},null),e(" "),t("path",{d:"M4 16h16"},null),e(" "),t("path",{d:"M9 4v4"},null),e(" "),t("path",{d:"M14 8v4"},null),e(" "),t("path",{d:"M8 12v4"},null),e(" "),t("path",{d:"M16 12v4"},null),e(" "),t("path",{d:"M11 16v4"},null),e(" ")])}},kPt={name:"WalletOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3"},null),e(" "),t("path",{d:"M19 19a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M16 12h4v4m-4 0a2 2 0 0 1 -2 -2"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bPt={name:"WalletIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallet",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12"},null),e(" "),t("path",{d:"M20 12v4h-4a2 2 0 0 1 0 -4h4"},null),e(" ")])}},MPt={name:"WallpaperOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},xPt={name:"WallpaperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wallpaper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"},null),e(" "),t("path",{d:"M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M8 18v-12a2 2 0 1 0 -4 0v12"},null),e(" ")])}},zPt={name:"WandOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589"},null),e(" "),t("path",{d:"M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},IPt={name:"WandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"},null),e(" "),t("path",{d:"M15 6l3 3"},null),e(" "),t("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" "),t("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"},null),e(" ")])}},yPt={name:"WashDry1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" ")])}},CPt={name:"WashDry2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" ")])}},SPt={name:"WashDry3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" ")])}},$Pt={name:"WashDryAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8"},null),e(" "),t("path",{d:"M15 13h-6"},null),e(" ")])}},APt={name:"WashDryDipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-dip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 7v10"},null),e(" "),t("path",{d:"M16 7v10"},null),e(" "),t("path",{d:"M8 7v10"},null),e(" ")])}},BPt={name:"WashDryFIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-f",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" ")])}},HPt={name:"WashDryFlatIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-flat",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z"},null),e(" "),t("path",{d:"M7 12h10"},null),e(" ")])}},NPt={name:"WashDryHangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-hang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M4 4.01c5.333 5.323 10.667 5.32 16 -.01"},null),e(" ")])}},jPt={name:"WashDryOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},PPt={name:"WashDryPIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-p",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5"},null),e(" ")])}},LPt={name:"WashDryShadeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-shade",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M3 11l8 -8"},null),e(" "),t("path",{d:"M3 17l14 -14"},null),e(" ")])}},DPt={name:"WashDryWIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry-w",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8"},null),e(" ")])}},OPt={name:"WashDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" ")])}},FPt={name:"WashDrycleanOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},RPt={name:"WashDrycleanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-dryclean",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" ")])}},TPt={name:"WashEcoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-eco",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h5.306m8.162 -6.972l.838 -5.028"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M16 22s0 -2 3 -4"},null),e(" "),t("path",{d:"M19 21a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z"},null),e(" ")])}},EPt={name:"WashGentleIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-gentle",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 18h14"},null),e(" "),t("path",{d:"M5 21h14"},null),e(" ")])}},VPt={name:"WashHandIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-hand",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.426 -.296 .777 -.5 1.5 -.5h1"},null),e(" "),t("path",{d:"M16 8l.615 .034c.552 .067 1.046 .23 1.385 .466c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M14 10.5l.586 .578a1.516 1.516 0 0 0 2 0c.476 -.433 .55 -1.112 .176 -1.622l-1.762 -2.456c-.37 -.506 -1.331 -1 -2 -1h-3.117a1 1 0 0 0 -.992 .876l-.499 3.986a3.857 3.857 0 0 0 2.608 4.138a2.28 2.28 0 0 0 3 -2.162v-2.338z"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},_Pt={name:"WashMachineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-machine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"},null),e(" "),t("path",{d:"M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M8 6h.01"},null),e(" "),t("path",{d:"M11 6h.01"},null),e(" "),t("path",{d:"M14 6h2"},null),e(" "),t("path",{d:"M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0"},null),e(" ")])}},WPt={name:"WashOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},XPt={name:"WashPressIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-press",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M5 20h14"},null),e(" ")])}},qPt={name:"WashTemperature1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" ")])}},YPt={name:"WashTemperature2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 13h.01"},null),e(" "),t("path",{d:"M10 13h.01"},null),e(" ")])}},UPt={name:"WashTemperature3Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-3",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 13h.01"},null),e(" "),t("path",{d:"M15 13h.01"},null),e(" "),t("path",{d:"M9 13h.01"},null),e(" ")])}},GPt={name:"WashTemperature4Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-4",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M14 12h.01"},null),e(" "),t("path",{d:"M10 12h.01"},null),e(" ")])}},ZPt={name:"WashTemperature5Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-5",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M14 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},KPt={name:"WashTemperature6Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-temperature-6",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M9 15h.01"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" "),t("path",{d:"M12 15h.01"},null),e(" "),t("path",{d:"M15 15h.01"},null),e(" "),t("path",{d:"M15 12h.01"},null),e(" "),t("path",{d:"M12 12h.01"},null),e(" "),t("path",{d:"M9 12h.01"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" ")])}},QPt={name:"WashTumbleDryIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-dry",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z"},null),e(" "),t("path",{d:"M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},JPt={name:"WashTumbleOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash-tumble-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11"},null),e(" "),t("path",{d:"M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},tLt={name:"WashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034"},null),e(" "),t("path",{d:"M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329"},null),e(" ")])}},eLt={name:"WaterpoloIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-waterpolo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 9a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"},null),e(" "),t("path",{d:"M5 8l3 4l4.5 1l7.5 -1"},null),e(" "),t("path",{d:"M3 18.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25"},null),e(" "),t("path",{d:"M12 16l.5 -3"},null),e(" "),t("path",{d:"M6.5 5a.5 .5 0 1 0 0 -1a.5 .5 0 0 0 0 1z",fill:"currentColor"},null),e(" ")])}},nLt={name:"WaveSawToolIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-saw-tool",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5l4 8v-16l4 8h5"},null),e(" ")])}},lLt={name:"WaveSineIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-sine",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2"},null),e(" ")])}},rLt={name:"WaveSquareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wave-square",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12h5v8h4v-16h4v8h5"},null),e(" ")])}},oLt={name:"WebhookOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4"},null),e(" "),t("path",{d:"M16 8a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},sLt={name:"WebhookIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-webhook",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4.876 13.61a4 4 0 1 0 6.124 3.39h6"},null),e(" "),t("path",{d:"M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5"},null),e(" "),t("path",{d:"M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5"},null),e(" ")])}},aLt={name:"WeightIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-weight",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M6.835 9h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z"},null),e(" ")])}},iLt={name:"WheelchairOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M17.582 17.59a2 2 0 0 0 2.833 2.824"},null),e(" "),t("path",{d:"M14 14h-1.4"},null),e(" "),t("path",{d:"M6 6v5"},null),e(" "),t("path",{d:"M6 8h2m4 0h5"},null),e(" "),t("path",{d:"M15 8v3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},hLt={name:"WheelchairIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wheelchair",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19 17a3 3 0 0 0 -3 -3h-3.4"},null),e(" "),t("path",{d:"M3 3h1a2 2 0 0 1 2 2v6"},null),e(" "),t("path",{d:"M6 8h11"},null),e(" "),t("path",{d:"M15 8v6"},null),e(" ")])}},dLt={name:"WhirlIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-whirl",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z"},null),e(" "),t("path",{d:"M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5"},null),e(" "),t("path",{d:"M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6"},null),e(" "),t("path",{d:"M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5"},null),e(" "),t("path",{d:"M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6"},null),e(" ")])}},cLt={name:"Wifi0Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-0",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" ")])}},uLt={name:"Wifi1Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-1",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" ")])}},pLt={name:"Wifi2Icon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-2",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" ")])}},gLt={name:"WifiOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2"},null),e(" "),t("path",{d:"M3.515 9.515a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},wLt={name:"WifiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wifi",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18l.01 0"},null),e(" "),t("path",{d:"M9.172 15.172a4 4 0 0 1 5.656 0"},null),e(" "),t("path",{d:"M6.343 12.343a8 8 0 0 1 11.314 0"},null),e(" "),t("path",{d:"M3.515 9.515c4.686 -4.687 12.284 -4.687 17 0"},null),e(" ")])}},vLt={name:"WindOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h9"},null),e(" "),t("path",{d:"M16 12h2.5a2.5 2.5 0 0 1 1.801 4.282"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fLt={name:"WindIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wind",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24"},null),e(" "),t("path",{d:"M3 12h15.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" "),t("path",{d:"M4 16h5.5a2.5 2.5 0 1 1 -2.34 3.24"},null),e(" ")])}},mLt={name:"WindmillFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 2c3.292 0 6 2.435 6 5.5c0 1.337 -.515 2.554 -1.369 3.5h4.369a1 1 0 0 1 1 1c0 3.292 -2.435 6 -5.5 6c-1.336 0 -2.553 -.515 -3.5 -1.368v4.368a1 1 0 0 1 -1 1c-3.292 0 -6 -2.435 -6 -5.5c0 -1.336 .515 -2.553 1.368 -3.5h-4.368a1 1 0 0 1 -1 -1c0 -3.292 2.435 -6 5.5 -6c1.337 0 2.554 .515 3.5 1.369v-4.369a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},kLt={name:"WindmillOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M6.981 7.033c-2.244 .285 -3.981 2.402 -3.981 4.967h9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},bLt={name:"WindmillIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windmill",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9z"},null),e(" "),t("path",{d:"M12 12c0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9z"},null),e(" "),t("path",{d:"M12 12c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9z"},null),e(" "),t("path",{d:"M12 12c0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z"},null),e(" ")])}},MLt={name:"WindowMaximizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-maximize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M12 8h4v4"},null),e(" "),t("path",{d:"M16 8l-5 5"},null),e(" ")])}},xLt={name:"WindowMinimizeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-minimize",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1z"},null),e(" "),t("path",{d:"M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6"},null),e(" "),t("path",{d:"M15 13h-4v-4"},null),e(" "),t("path",{d:"M11 13l5 -5"},null),e(" ")])}},zLt={name:"WindowOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158"},null),e(" "),t("path",{d:"M5 13h8m4 0h2"},null),e(" "),t("path",{d:"M12 3v5m0 4v9"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ILt={name:"WindowIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-window",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7z"},null),e(" "),t("path",{d:"M5 13l14 0"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},yLt={name:"WindsockIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-windsock",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3v18"},null),e(" "),t("path",{d:"M6 11l12 -1v-4l-12 -1"},null),e(" "),t("path",{d:"M10 5.5v5"},null),e(" "),t("path",{d:"M14 6v4"},null),e(" "),t("path",{d:"M4 21h4"},null),e(" ")])}},CLt={name:"WiperWashIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper-wash",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 11l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 20l0 -14"},null),e(" "),t("path",{d:"M4 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M7 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 0 -.4 -1.8"},null),e(" "),t("path",{d:"M12 6a4 4 0 0 1 .4 -1.8"},null),e(" "),t("path",{d:"M15 2.1a4 4 0 0 1 2 0"},null),e(" "),t("path",{d:"M20 6a4 4 0 0 0 -.4 -1.8"},null),e(" ")])}},SLt={name:"WiperIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wiper",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M3 9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0"},null),e(" "),t("path",{d:"M12 18l-2.2 -12.8"},null),e(" ")])}},$Lt={name:"WomanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-woman",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 16v5"},null),e(" "),t("path",{d:"M14 16v5"},null),e(" "),t("path",{d:"M8 16h8l-2 -7h-4z"},null),e(" "),t("path",{d:"M5 11c1.667 -1.333 3.333 -2 5 -2"},null),e(" "),t("path",{d:"M19 11c-1.667 -1.333 -3.333 -2 -5 -2"},null),e(" "),t("path",{d:"M12 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" ")])}},ALt={name:"WoodIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wood",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0"},null),e(" "),t("path",{d:"M18 5.5v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627"},null),e(" "),t("path",{d:"M10 12.5v1.5"},null),e(" "),t("path",{d:"M14 16v1"},null),e(" ")])}},BLt={name:"WorldBoltIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-bolt",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -7.52 8.36"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.856 2.27 12"},null),e(" "),t("path",{d:"M19 16l-2 3h4l-2 3"},null),e(" ")])}},HLt={name:"WorldCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.985 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.53 10.275"},null),e(" "),t("path",{d:"M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 21l4 -4"},null),e(" ")])}},NLt={name:"WorldCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.946 12.99a9 9 0 1 0 -9.46 7.995"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h13.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.997 16.997 0 0 1 2.311 12.001"},null),e(" "),t("path",{d:"M15 19l2 2l4 -4"},null),e(" ")])}},jLt={name:"WorldCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.942 13.02a9 9 0 1 0 -9.47 7.964"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2 3.206 2.837 6.913 2.508 10.537"},null),e(" "),t("path",{d:"M20 21l2 -2l-2 -2"},null),e(" "),t("path",{d:"M17 17l-2 2l2 2"},null),e(" ")])}},PLt={name:"WorldCogIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-cog",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -8.979 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.522 10.376"},null),e(" "),t("path",{d:"M19.001 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M19.001 15.5v1.5"},null),e(" "),t("path",{d:"M19.001 21v1.5"},null),e(" "),t("path",{d:"M22.032 17.25l-1.299 .75"},null),e(" "),t("path",{d:"M17.27 20l-1.3 .75"},null),e(" "),t("path",{d:"M15.97 17.25l1.3 .75"},null),e(" "),t("path",{d:"M20.733 20l1.3 .75"},null),e(" ")])}},LLt={name:"WorldDollarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-dollar",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.876 10.51a9 9 0 1 0 -7.839 10.43"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.02"},null),e(" "),t("path",{d:"M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M19 21v1m0 -8v1"},null),e(" ")])}},DLt={name:"WorldDownIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-down",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.509a9 9 0 1 0 -8.455 8.476"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c2.313 3.706 3.07 7.857 2.27 12"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" "),t("path",{d:"M22 19l-3 3l-3 -3"},null),e(" ")])}},OLt={name:"WorldDownloadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-download",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 14v7m-3 -3l3 3l3 -3"},null),e(" ")])}},FLt={name:"WorldExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.986 12.51a9 9 0 1 0 -5.71 7.873"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 16v3"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" ")])}},RLt={name:"WorldHeartIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-heart",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.679 8.974"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.983 16.983 0 0 1 2.556 8.136"},null),e(" "),t("path",{d:"M18 22l3.35 -3.284a2.143 2.143 0 0 0 .005 -3.071a2.242 2.242 0 0 0 -3.129 -.006l-.224 .22l-.223 -.22a2.242 2.242 0 0 0 -3.128 -.006a2.143 2.143 0 0 0 -.006 3.071l3.355 3.296z"},null),e(" ")])}},TLt={name:"WorldLatitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-latitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M4.6 7l14.8 0"},null),e(" "),t("path",{d:"M3 12l18 0"},null),e(" "),t("path",{d:"M4.6 17l14.8 0"},null),e(" ")])}},ELt={name:"WorldLongitudeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-longitude",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M11.5 3a11.2 11.2 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a11.2 11.2 0 0 1 0 18"},null),e(" "),t("path",{d:"M12 3l0 18"},null),e(" ")])}},VLt={name:"WorldMinusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-minus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.483 15.006a9 9 0 1 0 -7.958 5.978"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.94 16.94 0 0 1 2.307 12"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" ")])}},_Lt={name:"WorldOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5.657 5.615a9 9 0 1 0 12.717 12.739m1.672 -2.322a9 9 0 0 0 -12.066 -12.084"},null),e(" "),t("path",{d:"M3.6 9h5.4m4 0h7.4"},null),e(" "),t("path",{d:"M3.6 15h11.4m4 0h1.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.493 3.022m-.847 3.145c-.68 4.027 .1 8.244 2.34 11.833"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.005m-.207 3.818a16.979 16.979 0 0 1 -2.342 6.177"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},WLt={name:"WorldPauseIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pause",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.945 12.997a9 9 0 1 0 -7.928 7.945"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.51 10.526"},null),e(" "),t("path",{d:"M17 17v5"},null),e(" "),t("path",{d:"M21 17v5"},null),e(" ")])}},XLt={name:"WorldPinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-pin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.972 11.291a9 9 0 1 0 -8.322 9.686"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.986 16.986 0 0 1 2.578 9.018"},null),e(" "),t("path",{d:"M21.121 20.121a3 3 0 1 0 -4.242 0c.418 .419 1.125 1.045 2.121 1.879c1.051 -.89 1.759 -1.516 2.121 -1.879z"},null),e(" "),t("path",{d:"M19 18v.01"},null),e(" ")])}},qLt={name:"WorldPlusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-plus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.518a9 9 0 1 0 -8.45 8.466"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h11.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.998 16.998 0 0 1 2.283 12.157"},null),e(" "),t("path",{d:"M16 19h6"},null),e(" "),t("path",{d:"M19 16v6"},null),e(" ")])}},YLt={name:"WorldQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.975 11.33a9 9 0 1 0 -5.673 9.043"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.988 16.988 0 0 1 2.57 9.518m-1.056 5.403a17 17 0 0 1 -1.514 3.079"},null),e(" "),t("path",{d:"M19 22v.01"},null),e(" "),t("path",{d:"M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483"},null),e(" ")])}},ULt={name:"WorldSearchIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-search",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h7.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.984 16.984 0 0 1 2.574 8.62"},null),e(" "),t("path",{d:"M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M20.2 20.2l1.8 1.8"},null),e(" ")])}},GLt={name:"WorldShareIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-share",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.94 13.045a9 9 0 1 0 -8.953 7.955"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.4"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.991 16.991 0 0 1 2.529 10.294"},null),e(" "),t("path",{d:"M16 22l5 -5"},null),e(" "),t("path",{d:"M21 21.5v-4.5h-4.5"},null),e(" ")])}},ZLt={name:"WorldStarIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-star",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9.968 8.948"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h6.4"},null),e(" "),t("path",{d:"M11.5 3a17.001 17.001 0 0 0 -1.886 13.802"},null),e(" "),t("path",{d:"M12.5 3a16.982 16.982 0 0 1 2.549 8.01"},null),e(" "),t("path",{d:"M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z"},null),e(" ")])}},KLt={name:"WorldUpIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-up",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.985 12.52a9 9 0 1 0 -8.451 8.463"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h10.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.996 16.996 0 0 1 2.391 11.512"},null),e(" "),t("path",{d:"M19 22v-6"},null),e(" "),t("path",{d:"M22 19l-3 -3l-3 3"},null),e(" ")])}},QLt={name:"WorldUploadIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-upload",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 12a9 9 0 1 0 -9 9"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h8.4"},null),e(" "),t("path",{d:"M11.578 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3c1.719 2.755 2.5 5.876 2.5 9"},null),e(" "),t("path",{d:"M18 21v-7m3 3l-3 -3l-3 3"},null),e(" ")])}},JLt={name:"WorldWwwIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-www",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4"},null),e(" "),t("path",{d:"M11.5 3a16.989 16.989 0 0 0 -1.826 4"},null),e(" "),t("path",{d:"M12.5 3a16.989 16.989 0 0 1 1.828 4"},null),e(" "),t("path",{d:"M19.5 17a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4"},null),e(" "),t("path",{d:"M11.5 21a16.989 16.989 0 0 1 -1.826 -4"},null),e(" "),t("path",{d:"M12.5 21a16.989 16.989 0 0 0 1.828 -4"},null),e(" "),t("path",{d:"M2 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M17 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" "),t("path",{d:"M9.5 10l1 4l1.5 -4l1.5 4l1 -4"},null),e(" ")])}},tDt={name:"WorldXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20.929 13.131a9 9 0 1 0 -8.931 7.869"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h9.9"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a16.992 16.992 0 0 1 2.505 10.573"},null),e(" "),t("path",{d:"M22 22l-5 -5"},null),e(" "),t("path",{d:"M17 22l5 -5"},null),e(" ")])}},eDt={name:"WorldIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-world",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"},null),e(" "),t("path",{d:"M3.6 9h16.8"},null),e(" "),t("path",{d:"M3.6 15h16.8"},null),e(" "),t("path",{d:"M11.5 3a17 17 0 0 0 0 18"},null),e(" "),t("path",{d:"M12.5 3a17 17 0 0 1 0 18"},null),e(" ")])}},nDt={name:"WreckingBallIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-wrecking-ball",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"},null),e(" "),t("path",{d:"M13 19l-9 0"},null),e(" "),t("path",{d:"M4 15l9 0"},null),e(" "),t("path",{d:"M8 12v-5h2a3 3 0 0 1 3 3v5"},null),e(" "),t("path",{d:"M5 15v-2a1 1 0 0 1 1 -1h7"},null),e(" "),t("path",{d:"M19 11v-7l-6 7"},null),e(" ")])}},lDt={name:"WritingOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},rDt={name:"WritingSignOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M16 16v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},oDt={name:"WritingSignIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing-sign",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" ")])}},sDt={name:"WritingIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-writing",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"},null),e(" "),t("path",{d:"M16 7h4"},null),e(" "),t("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"},null),e(" ")])}},aDt={name:"XIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M18 6l-12 12"},null),e(" "),t("path",{d:"M6 6l12 12"},null),e(" ")])}},iDt={name:"XboxAIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-a",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M15 16l-3 -8l-3 8"},null),e(" "),t("path",{d:"M14 14h-4"},null),e(" ")])}},hDt={name:"XboxBIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-b",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 1 0 4h-3v-4"},null),e(" "),t("path",{d:"M13 12h-3"},null),e(" "),t("path",{d:"M13 12a2 2 0 1 0 0 -4h-3v4"},null),e(" ")])}},dDt={name:"XboxXIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-x",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l6 8"},null),e(" "),t("path",{d:"M15 8l-6 8"},null),e(" ")])}},cDt={name:"XboxYIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xbox-y",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z"},null),e(" "),t("path",{d:"M9 8l3 4"},null),e(" "),t("path",{d:"M15 8l-2.988 3.984l-.012 4.016"},null),e(" ")])}},uDt={name:"XdIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-xd",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 8l4 8"},null),e(" "),t("path",{d:"M6 16l4 -8"},null),e(" "),t("path",{d:"M14 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z"},null),e(" ")])}},pDt={name:"YinYangFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-9 1.732a8 8 0 0 0 4 14.928l.2 -.005a4 4 0 0 0 0 -7.99l-.2 -.005a4 4 0 0 1 -.2 -7.995l.2 -.005a7.995 7.995 0 0 0 -4 1.072zm4 1.428a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M12 14.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0 -3z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},gDt={name:"YinYangIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yin-yang",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"},null),e(" "),t("path",{d:"M12 3a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9"},null),e(" "),t("circle",{cx:"12",cy:"7.5",r:".5",fill:"currentColor"},null),e(" "),t("circle",{cx:"12",cy:"16.5",r:".5",fill:"currentColor"},null),e(" ")])}},wDt={name:"YogaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-yoga",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0"},null),e(" "),t("path",{d:"M4 20h4l1.5 -3"},null),e(" "),t("path",{d:"M17 20l-1 -5h-5l1 -7"},null),e(" "),t("path",{d:"M4 10l4 -1l4 -1l4 1.5l4 1.5"},null),e(" ")])}},vDt={name:"ZeppelinOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},fDt={name:"ZeppelinIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zeppelin",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z"},null),e(" "),t("path",{d:"M10 15.5v4.5h6v-4"},null),e(" ")])}},mDt={name:"ZipIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zip",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M16 16v-8h2a2 2 0 1 1 0 4h-2"},null),e(" "),t("path",{d:"M12 8v8"},null),e(" "),t("path",{d:"M4 8h4l-4 8h4"},null),e(" ")])}},kDt={name:"ZodiacAquariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aquarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" "),t("path",{d:"M3 17l3 -3l3 3l3 -3l3 3l3 -3l3 3"},null),e(" ")])}},bDt={name:"ZodiacAriesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-aries",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 5a5 5 0 1 0 -4 8"},null),e(" "),t("path",{d:"M16 13a5 5 0 1 0 -4 -8"},null),e(" "),t("path",{d:"M12 21l0 -16"},null),e(" ")])}},MDt={name:"ZodiacCancerIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-cancer",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M18 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M3 12a10 6.5 0 0 1 14 -6.5"},null),e(" "),t("path",{d:"M21 12a10 6.5 0 0 1 -14 6.5"},null),e(" ")])}},xDt={name:"ZodiacCapricornIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-capricorn",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 4a3 3 0 0 1 3 3v9"},null),e(" "),t("path",{d:"M7 7a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3"},null),e(" "),t("path",{d:"M16 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" ")])}},zDt={name:"ZodiacGeminiIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-gemini",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 3a21 21 0 0 0 18 0"},null),e(" "),t("path",{d:"M3 21a21 21 0 0 1 18 0"},null),e(" "),t("path",{d:"M7 4.5l0 15"},null),e(" "),t("path",{d:"M17 4.5l0 15"},null),e(" ")])}},IDt={name:"ZodiacLeoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-leo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 17a4 4 0 1 0 8 0"},null),e(" "),t("path",{d:"M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"},null),e(" "),t("path",{d:"M7 7c0 3 2 5 2 9"},null),e(" "),t("path",{d:"M15 7c0 4 -2 6 -2 10"},null),e(" ")])}},yDt={name:"ZodiacLibraIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-libra",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 20l14 0"},null),e(" "),t("path",{d:"M5 17h5v-.3a7 7 0 1 1 4 0v.3h5"},null),e(" ")])}},CDt={name:"ZodiacPiscesIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-pisces",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M5 3a21 21 0 0 1 0 18"},null),e(" "),t("path",{d:"M19 3a21 21 0 0 0 0 18"},null),e(" "),t("path",{d:"M5 12l14 0"},null),e(" ")])}},SDt={name:"ZodiacSagittariusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-sagittarius",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 20l16 -16"},null),e(" "),t("path",{d:"M13 4h7v7"},null),e(" "),t("path",{d:"M6.5 12.5l5 5"},null),e(" ")])}},$Dt={name:"ZodiacScorpioIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-scorpio",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3"},null),e(" ")])}},ADt={name:"ZodiacTaurusIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-taurus",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M6 3a6 6 0 0 0 12 0"},null),e(" "),t("path",{d:"M12 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0"},null),e(" ")])}},BDt={name:"ZodiacVirgoIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zodiac-virgo",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M3 4a2 2 0 0 1 2 2v9"},null),e(" "),t("path",{d:"M5 6a2 2 0 0 1 4 0v9"},null),e(" "),t("path",{d:"M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5"},null),e(" "),t("path",{d:"M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0"},null),e(" ")])}},HDt={name:"ZoomCancelIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-cancel",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M8 8l4 4"},null),e(" "),t("path",{d:"M12 8l-4 4"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},NDt={name:"ZoomCheckFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-.293 4.22a1 1 0 0 0 -1.414 0l-3.293 3.294l-1.293 -1.293l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},jDt={name:"ZoomCheckIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-check",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M7 10l2 2l4 -4"},null),e(" ")])}},PDt={name:"ZoomCodeIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-code",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M8 8l-2 2l2 2"},null),e(" "),t("path",{d:"M12 8l2 2l-2 2"},null),e(" ")])}},LDt={name:"ZoomExclamationIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-exclamation",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13v.01"},null),e(" "),t("path",{d:"M10 7v3"},null),e(" ")])}},DDt={name:"ZoomFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},ODt={name:"ZoomInAreaFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 9a6 6 0 0 1 4.891 9.476l2.816 2.817a1 1 0 0 1 -1.32 1.497l-.094 -.083l-2.817 -2.816a6 6 0 0 1 -9.472 -4.666l-.004 -.225l.004 -.225a6 6 0 0 1 5.996 -5.775zm0 3a1 1 0 0 0 -.993 .883l-.007 .117v1h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h1v1l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-1h1l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 14a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 0 .883 .993l.117 .007h1a1 1 0 0 1 .117 1.993l-.117 .007h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M3 9a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M6 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 0 -.993 .883l-.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a3 3 0 0 1 2.824 -2.995l.176 -.005h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M11 2a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" "),t("path",{d:"M16 2a3 3 0 0 1 2.995 2.824l.005 .176v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 0 -.883 -.993l-.117 -.007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},FDt={name:"ZoomInAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M15 13v4"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},RDt={name:"ZoomInFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -.993 .883l-.007 .117v2h-2l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h2v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2h2l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007h-2v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},TDt={name:"ZoomInIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-in",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M10 7l0 6"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},EDt={name:"ZoomMoneyIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-money",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M12 7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5"},null),e(" "),t("path",{d:"M10 13v1m0 -8v1"},null),e(" ")])}},VDt={name:"ZoomOutAreaIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-area",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M13 15h4"},null),e(" "),t("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"},null),e(" "),t("path",{d:"M22 22l-3 -3"},null),e(" "),t("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"},null),e(" "),t("path",{d:"M3 11v-1"},null),e(" "),t("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"},null),e(" "),t("path",{d:"M10 3h1"},null),e(" "),t("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"},null),e(" ")])}},_Dt={name:"ZoomOutFilledIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out-filled",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M14 3.072a8 8 0 0 1 2.617 11.424l4.944 4.943a1.5 1.5 0 0 1 -2.008 2.225l-.114 -.103l-4.943 -4.944a8 8 0 0 1 -12.49 -6.332l-.006 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-1 5.928h-6l-.117 .007a1 1 0 0 0 0 1.986l.117 .007h6l.117 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z","stroke-width":"0",fill:"currentColor"},null),e(" ")])}},WDt={name:"ZoomOutIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-out",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M7 10l6 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" ")])}},XDt={name:"ZoomPanIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-pan",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"},null),e(" "),t("path",{d:"M17 17l-2.5 -2.5"},null),e(" "),t("path",{d:"M10 5l2 -2l2 2"},null),e(" "),t("path",{d:"M19 10l2 2l-2 2"},null),e(" "),t("path",{d:"M5 10l-2 2l2 2"},null),e(" "),t("path",{d:"M10 19l2 2l2 -2"},null),e(" ")])}},qDt={name:"ZoomQuestionIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-question",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M10 13l0 .01"},null),e(" "),t("path",{d:"M10 10a1.5 1.5 0 1 0 -1.14 -2.474"},null),e(" ")])}},YDt={name:"ZoomReplaceIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-replace",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.291 8a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403"},null),e(" "),t("path",{d:"M17 4v4h-4"},null),e(" "),t("path",{d:"M16.705 12a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403"},null),e(" "),t("path",{d:"M3 16v-4h4"},null),e(" ")])}},UDt={name:"ZoomResetIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zoom-reset",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M21 21l-6 -6"},null),e(" "),t("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"},null),e(" "),t("path",{d:"M3 4v4h4"},null),e(" ")])}},GDt={name:"ZzzOffIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz-off",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-5.146 6.862m1.146 1.138h4"},null),e(" "),t("path",{d:"M3 3l18 18"},null),e(" ")])}},ZDt={name:"ZzzIcon",props:{size:{type:[Number,String],default:24}},render(){const n=this.$props.size+"px",l=this.$data.attrs||{},r={width:l.width||n,height:l.height||n};return t("svg",o({xmlns:"http://www.w3.org/2000/svg",class:"icon-tabler icon-tabler-zzz",width:"24",height:"24",viewBox:"0 0 24 24","stroke-width":"2",stroke:"currentColor",fill:"none","stroke-linecap":"round","stroke-linejoin":"round"},r),[e(" "),t("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"},null),e(" "),t("path",{d:"M4 12h6l-6 8h6"},null),e(" "),t("path",{d:"M14 4h6l-6 8h6"},null),e(" ")])}},KDt=Object.freeze({__proto__:null,OnetwotreeIcon:Ux,TwentyFourHoursIcon:Gx,TwoFactorAuthIcon:Zx,Deg360ViewIcon:Kx,Deg360Icon:Qx,ThreedCubeSphereOffIcon:Jx,ThreedCubeSphereIcon:tz,ThreedRotateIcon:ez,AB2Icon:nz,ABOffIcon:lz,ABIcon:rz,AbacusOffIcon:oz,AbacusIcon:sz,AbcIcon:az,AccessPointOffIcon:iz,AccessPointIcon:hz,AccessibleOffFilledIcon:dz,AccessibleOffIcon:cz,AccessibleIcon:uz,ActivityHeartbeatIcon:pz,ActivityIcon:gz,Ad2Icon:wz,AdCircleFilledIcon:vz,AdCircleOffIcon:fz,AdCircleIcon:mz,AdFilledIcon:kz,AdOffIcon:bz,AdIcon:Mz,AddressBookOffIcon:xz,AddressBookIcon:zz,AdjustmentsAltIcon:Iz,AdjustmentsBoltIcon:yz,AdjustmentsCancelIcon:Cz,AdjustmentsCheckIcon:Sz,AdjustmentsCodeIcon:$z,AdjustmentsCogIcon:Az,AdjustmentsDollarIcon:Bz,AdjustmentsDownIcon:Hz,AdjustmentsExclamationIcon:Nz,AdjustmentsFilledIcon:jz,AdjustmentsHeartIcon:Pz,AdjustmentsHorizontalIcon:Lz,AdjustmentsMinusIcon:Dz,AdjustmentsOffIcon:Oz,AdjustmentsPauseIcon:Fz,AdjustmentsPinIcon:Rz,AdjustmentsPlusIcon:Tz,AdjustmentsQuestionIcon:Ez,AdjustmentsSearchIcon:Vz,AdjustmentsShareIcon:_z,AdjustmentsStarIcon:Wz,AdjustmentsUpIcon:Xz,AdjustmentsXIcon:qz,AdjustmentsIcon:Yz,AerialLiftIcon:Uz,AffiliateFilledIcon:Gz,AffiliateIcon:Zz,AirBalloonIcon:Kz,AirConditioningDisabledIcon:Qz,AirConditioningIcon:Jz,AlarmFilledIcon:tI,AlarmMinusFilledIcon:eI,AlarmMinusIcon:nI,AlarmOffIcon:lI,AlarmPlusFilledIcon:rI,AlarmPlusIcon:oI,AlarmSnoozeFilledIcon:sI,AlarmSnoozeIcon:aI,AlarmIcon:iI,AlbumOffIcon:hI,AlbumIcon:dI,AlertCircleFilledIcon:cI,AlertCircleIcon:uI,AlertHexagonFilledIcon:pI,AlertHexagonIcon:gI,AlertOctagonFilledIcon:wI,AlertOctagonIcon:vI,AlertSmallIcon:fI,AlertSquareFilledIcon:mI,AlertSquareRoundedFilledIcon:kI,AlertSquareRoundedIcon:bI,AlertSquareIcon:MI,AlertTriangleFilledIcon:xI,AlertTriangleIcon:zI,AlienFilledIcon:II,AlienIcon:yI,AlignBoxBottomCenterFilledIcon:CI,AlignBoxBottomCenterIcon:SI,AlignBoxBottomLeftFilledIcon:$I,AlignBoxBottomLeftIcon:AI,AlignBoxBottomRightFilledIcon:BI,AlignBoxBottomRightIcon:HI,AlignBoxCenterMiddleFilledIcon:NI,AlignBoxCenterMiddleIcon:jI,AlignBoxLeftBottomFilledIcon:PI,AlignBoxLeftBottomIcon:LI,AlignBoxLeftMiddleFilledIcon:DI,AlignBoxLeftMiddleIcon:OI,AlignBoxLeftTopFilledIcon:FI,AlignBoxLeftTopIcon:RI,AlignBoxRightBottomFilledIcon:TI,AlignBoxRightBottomIcon:EI,AlignBoxRightMiddleFilledIcon:VI,AlignBoxRightMiddleIcon:_I,AlignBoxRightTopFilledIcon:WI,AlignBoxRightTopIcon:XI,AlignBoxTopCenterFilledIcon:qI,AlignBoxTopCenterIcon:YI,AlignBoxTopLeftFilledIcon:UI,AlignBoxTopLeftIcon:GI,AlignBoxTopRightFilledIcon:ZI,AlignBoxTopRightIcon:KI,AlignCenterIcon:QI,AlignJustifiedIcon:JI,AlignLeftIcon:ty,AlignRightIcon:ey,AlphaIcon:ny,AlphabetCyrillicIcon:ly,AlphabetGreekIcon:ry,AlphabetLatinIcon:oy,AmbulanceIcon:sy,AmpersandIcon:ay,AnalyzeFilledIcon:iy,AnalyzeOffIcon:hy,AnalyzeIcon:dy,AnchorOffIcon:cy,AnchorIcon:uy,AngleIcon:py,AnkhIcon:gy,AntennaBars1Icon:wy,AntennaBars2Icon:vy,AntennaBars3Icon:fy,AntennaBars4Icon:my,AntennaBars5Icon:ky,AntennaBarsOffIcon:by,AntennaOffIcon:My,AntennaIcon:xy,ApertureOffIcon:zy,ApertureIcon:Iy,ApiAppOffIcon:yy,ApiAppIcon:Cy,ApiOffIcon:Sy,ApiIcon:$y,AppWindowFilledIcon:Ay,AppWindowIcon:By,AppleIcon:Hy,AppsFilledIcon:Ny,AppsOffIcon:jy,AppsIcon:Py,ArchiveFilledIcon:Ly,ArchiveOffIcon:Dy,ArchiveIcon:Oy,Armchair2OffIcon:Fy,Armchair2Icon:Ry,ArmchairOffIcon:Ty,ArmchairIcon:Ey,ArrowAutofitContentFilledIcon:Vy,ArrowAutofitContentIcon:_y,ArrowAutofitDownIcon:Wy,ArrowAutofitHeightIcon:Xy,ArrowAutofitLeftIcon:qy,ArrowAutofitRightIcon:Yy,ArrowAutofitUpIcon:Uy,ArrowAutofitWidthIcon:Gy,ArrowBackUpDoubleIcon:Zy,ArrowBackUpIcon:Ky,ArrowBackIcon:Qy,ArrowBadgeDownFilledIcon:Jy,ArrowBadgeDownIcon:tC,ArrowBadgeLeftFilledIcon:eC,ArrowBadgeLeftIcon:nC,ArrowBadgeRightFilledIcon:lC,ArrowBadgeRightIcon:rC,ArrowBadgeUpFilledIcon:oC,ArrowBadgeUpIcon:sC,ArrowBarDownIcon:aC,ArrowBarLeftIcon:iC,ArrowBarRightIcon:hC,ArrowBarToDownIcon:dC,ArrowBarToLeftIcon:cC,ArrowBarToRightIcon:uC,ArrowBarToUpIcon:pC,ArrowBarUpIcon:gC,ArrowBearLeft2Icon:wC,ArrowBearLeftIcon:vC,ArrowBearRight2Icon:fC,ArrowBearRightIcon:mC,ArrowBigDownFilledIcon:kC,ArrowBigDownLineFilledIcon:bC,ArrowBigDownLineIcon:MC,ArrowBigDownLinesFilledIcon:xC,ArrowBigDownLinesIcon:zC,ArrowBigDownIcon:IC,ArrowBigLeftFilledIcon:yC,ArrowBigLeftLineFilledIcon:CC,ArrowBigLeftLineIcon:SC,ArrowBigLeftLinesFilledIcon:$C,ArrowBigLeftLinesIcon:AC,ArrowBigLeftIcon:BC,ArrowBigRightFilledIcon:HC,ArrowBigRightLineFilledIcon:NC,ArrowBigRightLineIcon:jC,ArrowBigRightLinesFilledIcon:PC,ArrowBigRightLinesIcon:LC,ArrowBigRightIcon:DC,ArrowBigUpFilledIcon:OC,ArrowBigUpLineFilledIcon:FC,ArrowBigUpLineIcon:RC,ArrowBigUpLinesFilledIcon:TC,ArrowBigUpLinesIcon:EC,ArrowBigUpIcon:VC,ArrowBounceIcon:_C,ArrowCurveLeftIcon:WC,ArrowCurveRightIcon:XC,ArrowDownBarIcon:qC,ArrowDownCircleIcon:YC,ArrowDownLeftCircleIcon:UC,ArrowDownLeftIcon:GC,ArrowDownRhombusIcon:ZC,ArrowDownRightCircleIcon:KC,ArrowDownRightIcon:QC,ArrowDownSquareIcon:JC,ArrowDownTailIcon:tS,ArrowDownIcon:eS,ArrowElbowLeftIcon:nS,ArrowElbowRightIcon:lS,ArrowForkIcon:rS,ArrowForwardUpDoubleIcon:oS,ArrowForwardUpIcon:sS,ArrowForwardIcon:aS,ArrowGuideIcon:iS,ArrowIterationIcon:hS,ArrowLeftBarIcon:dS,ArrowLeftCircleIcon:cS,ArrowLeftRhombusIcon:uS,ArrowLeftRightIcon:pS,ArrowLeftSquareIcon:gS,ArrowLeftTailIcon:wS,ArrowLeftIcon:vS,ArrowLoopLeft2Icon:fS,ArrowLoopLeftIcon:mS,ArrowLoopRight2Icon:kS,ArrowLoopRightIcon:bS,ArrowMergeBothIcon:MS,ArrowMergeLeftIcon:xS,ArrowMergeRightIcon:zS,ArrowMergeIcon:IS,ArrowMoveDownIcon:yS,ArrowMoveLeftIcon:CS,ArrowMoveRightIcon:SS,ArrowMoveUpIcon:$S,ArrowNarrowDownIcon:AS,ArrowNarrowLeftIcon:BS,ArrowNarrowRightIcon:HS,ArrowNarrowUpIcon:NS,ArrowRampLeft2Icon:jS,ArrowRampLeft3Icon:PS,ArrowRampLeftIcon:LS,ArrowRampRight2Icon:DS,ArrowRampRight3Icon:OS,ArrowRampRightIcon:FS,ArrowRightBarIcon:RS,ArrowRightCircleIcon:TS,ArrowRightRhombusIcon:ES,ArrowRightSquareIcon:VS,ArrowRightTailIcon:_S,ArrowRightIcon:WS,ArrowRotaryFirstLeftIcon:XS,ArrowRotaryFirstRightIcon:qS,ArrowRotaryLastLeftIcon:YS,ArrowRotaryLastRightIcon:US,ArrowRotaryLeftIcon:GS,ArrowRotaryRightIcon:ZS,ArrowRotaryStraightIcon:KS,ArrowRoundaboutLeftIcon:QS,ArrowRoundaboutRightIcon:JS,ArrowSharpTurnLeftIcon:t$,ArrowSharpTurnRightIcon:e$,ArrowUpBarIcon:n$,ArrowUpCircleIcon:l$,ArrowUpLeftCircleIcon:r$,ArrowUpLeftIcon:o$,ArrowUpRhombusIcon:s$,ArrowUpRightCircleIcon:a$,ArrowUpRightIcon:i$,ArrowUpSquareIcon:h$,ArrowUpTailIcon:d$,ArrowUpIcon:c$,ArrowWaveLeftDownIcon:u$,ArrowWaveLeftUpIcon:p$,ArrowWaveRightDownIcon:g$,ArrowWaveRightUpIcon:w$,ArrowZigZagIcon:v$,ArrowsCrossIcon:f$,ArrowsDiagonal2Icon:m$,ArrowsDiagonalMinimize2Icon:k$,ArrowsDiagonalMinimizeIcon:b$,ArrowsDiagonalIcon:M$,ArrowsDiffIcon:x$,ArrowsDoubleNeSwIcon:z$,ArrowsDoubleNwSeIcon:I$,ArrowsDoubleSeNwIcon:y$,ArrowsDoubleSwNeIcon:C$,ArrowsDownUpIcon:S$,ArrowsDownIcon:$$,ArrowsExchange2Icon:A$,ArrowsExchangeIcon:B$,ArrowsHorizontalIcon:H$,ArrowsJoin2Icon:N$,ArrowsJoinIcon:j$,ArrowsLeftDownIcon:P$,ArrowsLeftRightIcon:L$,ArrowsLeftIcon:D$,ArrowsMaximizeIcon:O$,ArrowsMinimizeIcon:F$,ArrowsMoveHorizontalIcon:R$,ArrowsMoveVerticalIcon:T$,ArrowsMoveIcon:E$,ArrowsRandomIcon:V$,ArrowsRightDownIcon:_$,ArrowsRightLeftIcon:W$,ArrowsRightIcon:X$,ArrowsShuffle2Icon:q$,ArrowsShuffleIcon:Y$,ArrowsSortIcon:U$,ArrowsSplit2Icon:G$,ArrowsSplitIcon:Z$,ArrowsTransferDownIcon:K$,ArrowsTransferUpIcon:Q$,ArrowsUpDownIcon:J$,ArrowsUpLeftIcon:tA,ArrowsUpRightIcon:eA,ArrowsUpIcon:nA,ArrowsVerticalIcon:lA,ArtboardFilledIcon:rA,ArtboardOffIcon:oA,ArtboardIcon:sA,ArticleFilledFilledIcon:aA,ArticleOffIcon:iA,ArticleIcon:hA,AspectRatioFilledIcon:dA,AspectRatioOffIcon:cA,AspectRatioIcon:uA,AssemblyOffIcon:pA,AssemblyIcon:gA,AssetIcon:wA,AsteriskSimpleIcon:vA,AsteriskIcon:fA,AtOffIcon:mA,AtIcon:kA,Atom2FilledIcon:bA,Atom2Icon:MA,AtomOffIcon:xA,AtomIcon:zA,AugmentedReality2Icon:IA,AugmentedRealityOffIcon:yA,AugmentedRealityIcon:CA,AwardFilledIcon:SA,AwardOffIcon:$A,AwardIcon:AA,AxeIcon:BA,AxisXIcon:HA,AxisYIcon:NA,BabyBottleIcon:jA,BabyCarriageIcon:PA,BackhoeIcon:LA,BackpackOffIcon:DA,BackpackIcon:OA,BackspaceFilledIcon:FA,BackspaceIcon:RA,Badge3dIcon:TA,Badge4kIcon:EA,Badge8kIcon:VA,BadgeAdIcon:_A,BadgeArIcon:WA,BadgeCcIcon:XA,BadgeFilledIcon:qA,BadgeHdIcon:YA,BadgeOffIcon:UA,BadgeSdIcon:GA,BadgeTmIcon:ZA,BadgeVoIcon:KA,BadgeVrIcon:QA,BadgeWcIcon:JA,BadgeIcon:tB,BadgesFilledIcon:eB,BadgesOffIcon:nB,BadgesIcon:lB,BaguetteIcon:rB,BallAmericanFootballOffIcon:oB,BallAmericanFootballIcon:sB,BallBaseballIcon:aB,BallBasketballIcon:iB,BallBowlingIcon:hB,BallFootballOffIcon:dB,BallFootballIcon:cB,BallTennisIcon:uB,BallVolleyballIcon:pB,BalloonFilledIcon:gB,BalloonOffIcon:wB,BalloonIcon:vB,BallpenFilledIcon:fB,BallpenOffIcon:mB,BallpenIcon:kB,BanIcon:bB,BandageFilledIcon:MB,BandageOffIcon:xB,BandageIcon:zB,BarbellOffIcon:IB,BarbellIcon:yB,BarcodeOffIcon:CB,BarcodeIcon:SB,BarrelOffIcon:$B,BarrelIcon:AB,BarrierBlockOffIcon:BB,BarrierBlockIcon:HB,BaselineDensityLargeIcon:NB,BaselineDensityMediumIcon:jB,BaselineDensitySmallIcon:PB,BaselineIcon:LB,BasketFilledIcon:DB,BasketOffIcon:OB,BasketIcon:FB,BatIcon:RB,BathFilledIcon:TB,BathOffIcon:EB,BathIcon:VB,Battery1FilledIcon:_B,Battery1Icon:WB,Battery2FilledIcon:XB,Battery2Icon:qB,Battery3FilledIcon:YB,Battery3Icon:UB,Battery4FilledIcon:GB,Battery4Icon:ZB,BatteryAutomotiveIcon:KB,BatteryCharging2Icon:QB,BatteryChargingIcon:JB,BatteryEcoIcon:tH,BatteryFilledIcon:eH,BatteryOffIcon:nH,BatteryIcon:lH,BeachOffIcon:rH,BeachIcon:oH,BedFilledIcon:sH,BedOffIcon:aH,BedIcon:iH,BeerFilledIcon:hH,BeerOffIcon:dH,BeerIcon:cH,BellBoltIcon:uH,BellCancelIcon:pH,BellCheckIcon:gH,BellCodeIcon:wH,BellCogIcon:vH,BellDollarIcon:fH,BellDownIcon:mH,BellExclamationIcon:kH,BellFilledIcon:bH,BellHeartIcon:MH,BellMinusFilledIcon:xH,BellMinusIcon:zH,BellOffIcon:IH,BellPauseIcon:yH,BellPinIcon:CH,BellPlusFilledIcon:SH,BellPlusIcon:$H,BellQuestionIcon:AH,BellRinging2FilledIcon:BH,BellRinging2Icon:HH,BellRingingFilledIcon:NH,BellRingingIcon:jH,BellSchoolIcon:PH,BellSearchIcon:LH,BellShareIcon:DH,BellStarIcon:OH,BellUpIcon:FH,BellXFilledIcon:RH,BellXIcon:TH,BellZFilledIcon:EH,BellZIcon:VH,BellIcon:_H,BetaIcon:WH,BibleIcon:XH,BikeOffIcon:qH,BikeIcon:YH,BinaryOffIcon:UH,BinaryTree2Icon:GH,BinaryTreeIcon:ZH,BinaryIcon:KH,BiohazardOffIcon:QH,BiohazardIcon:JH,BladeFilledIcon:tN,BladeIcon:eN,BleachChlorineIcon:nN,BleachNoChlorineIcon:lN,BleachOffIcon:rN,BleachIcon:oN,BlockquoteIcon:sN,BluetoothConnectedIcon:aN,BluetoothOffIcon:iN,BluetoothXIcon:hN,BluetoothIcon:dN,BlurOffIcon:cN,BlurIcon:uN,BmpIcon:pN,BoldOffIcon:gN,BoldIcon:wN,BoltOffIcon:vN,BoltIcon:fN,BombFilledIcon:mN,BombIcon:kN,BoneOffIcon:bN,BoneIcon:MN,BongOffIcon:xN,BongIcon:zN,Book2Icon:IN,BookDownloadIcon:yN,BookFilledIcon:CN,BookOffIcon:SN,BookUploadIcon:$N,BookIcon:AN,BookmarkEditIcon:BN,BookmarkFilledIcon:HN,BookmarkMinusIcon:NN,BookmarkOffIcon:jN,BookmarkPlusIcon:PN,BookmarkQuestionIcon:LN,BookmarkIcon:DN,BookmarksOffIcon:ON,BookmarksIcon:FN,BooksOffIcon:RN,BooksIcon:TN,BorderAllIcon:EN,BorderBottomIcon:VN,BorderCornersIcon:_N,BorderHorizontalIcon:WN,BorderInnerIcon:XN,BorderLeftIcon:qN,BorderNoneIcon:YN,BorderOuterIcon:UN,BorderRadiusIcon:GN,BorderRightIcon:ZN,BorderSidesIcon:KN,BorderStyle2Icon:QN,BorderStyleIcon:JN,BorderTopIcon:tj,BorderVerticalIcon:ej,BottleFilledIcon:nj,BottleOffIcon:lj,BottleIcon:rj,BounceLeftIcon:oj,BounceRightIcon:sj,BowIcon:aj,BowlIcon:ij,BoxAlignBottomFilledIcon:hj,BoxAlignBottomLeftFilledIcon:dj,BoxAlignBottomLeftIcon:cj,BoxAlignBottomRightFilledIcon:uj,BoxAlignBottomRightIcon:pj,BoxAlignBottomIcon:gj,BoxAlignLeftFilledIcon:wj,BoxAlignLeftIcon:vj,BoxAlignRightFilledIcon:fj,BoxAlignRightIcon:mj,BoxAlignTopFilledIcon:kj,BoxAlignTopLeftFilledIcon:bj,BoxAlignTopLeftIcon:Mj,BoxAlignTopRightFilledIcon:xj,BoxAlignTopRightIcon:zj,BoxAlignTopIcon:Ij,BoxMarginIcon:yj,BoxModel2OffIcon:Cj,BoxModel2Icon:Sj,BoxModelOffIcon:$j,BoxModelIcon:Aj,BoxMultiple0Icon:Bj,BoxMultiple1Icon:Hj,BoxMultiple2Icon:Nj,BoxMultiple3Icon:jj,BoxMultiple4Icon:Pj,BoxMultiple5Icon:Lj,BoxMultiple6Icon:Dj,BoxMultiple7Icon:Oj,BoxMultiple8Icon:Fj,BoxMultiple9Icon:Rj,BoxMultipleIcon:Tj,BoxOffIcon:Ej,BoxPaddingIcon:Vj,BoxSeamIcon:_j,BoxIcon:Wj,BracesOffIcon:Xj,BracesIcon:qj,BracketsContainEndIcon:Yj,BracketsContainStartIcon:Uj,BracketsContainIcon:Gj,BracketsOffIcon:Zj,BracketsIcon:Kj,BrailleIcon:Qj,BrainIcon:Jj,Brand4chanIcon:tP,BrandAbstractIcon:eP,BrandAdobeIcon:nP,BrandAdonisJsIcon:lP,BrandAirbnbIcon:rP,BrandAirtableIcon:oP,BrandAlgoliaIcon:sP,BrandAlipayIcon:aP,BrandAlpineJsIcon:iP,BrandAmazonIcon:hP,BrandAmdIcon:dP,BrandAmigoIcon:cP,BrandAmongUsIcon:uP,BrandAndroidIcon:pP,BrandAngularIcon:gP,BrandAnsibleIcon:wP,BrandAo3Icon:vP,BrandAppgalleryIcon:fP,BrandAppleArcadeIcon:mP,BrandApplePodcastIcon:kP,BrandAppleIcon:bP,BrandAppstoreIcon:MP,BrandAsanaIcon:xP,BrandAwsIcon:zP,BrandAzureIcon:IP,BrandBackboneIcon:yP,BrandBadooIcon:CP,BrandBaiduIcon:SP,BrandBandcampIcon:$P,BrandBandlabIcon:AP,BrandBeatsIcon:BP,BrandBehanceIcon:HP,BrandBilibiliIcon:NP,BrandBinanceIcon:jP,BrandBingIcon:PP,BrandBitbucketIcon:LP,BrandBlackberryIcon:DP,BrandBlenderIcon:OP,BrandBloggerIcon:FP,BrandBookingIcon:RP,BrandBootstrapIcon:TP,BrandBulmaIcon:EP,BrandBumbleIcon:VP,BrandBunpoIcon:_P,BrandCSharpIcon:WP,BrandCakeIcon:XP,BrandCakephpIcon:qP,BrandCampaignmonitorIcon:YP,BrandCarbonIcon:UP,BrandCashappIcon:GP,BrandChromeIcon:ZP,BrandCinema4dIcon:KP,BrandCitymapperIcon:QP,BrandCloudflareIcon:JP,BrandCodecovIcon:tL,BrandCodepenIcon:eL,BrandCodesandboxIcon:nL,BrandCohostIcon:lL,BrandCoinbaseIcon:rL,BrandComedyCentralIcon:oL,BrandCoreosIcon:sL,BrandCouchdbIcon:aL,BrandCouchsurfingIcon:iL,BrandCppIcon:hL,BrandCraftIcon:dL,BrandCrunchbaseIcon:cL,BrandCss3Icon:uL,BrandCtemplarIcon:pL,BrandCucumberIcon:gL,BrandCupraIcon:wL,BrandCypressIcon:vL,BrandD3Icon:fL,BrandDaysCounterIcon:mL,BrandDcosIcon:kL,BrandDebianIcon:bL,BrandDeezerIcon:ML,BrandDeliverooIcon:xL,BrandDenoIcon:zL,BrandDenodoIcon:IL,BrandDeviantartIcon:yL,BrandDiggIcon:CL,BrandDingtalkIcon:SL,BrandDiscordFilledIcon:$L,BrandDiscordIcon:AL,BrandDisneyIcon:BL,BrandDisqusIcon:HL,BrandDjangoIcon:NL,BrandDockerIcon:jL,BrandDoctrineIcon:PL,BrandDolbyDigitalIcon:LL,BrandDoubanIcon:DL,BrandDribbbleFilledIcon:OL,BrandDribbbleIcon:FL,BrandDropsIcon:RL,BrandDrupalIcon:TL,BrandEdgeIcon:EL,BrandElasticIcon:VL,BrandElectronicArtsIcon:_L,BrandEmberIcon:WL,BrandEnvatoIcon:XL,BrandEtsyIcon:qL,BrandEvernoteIcon:YL,BrandFacebookFilledIcon:UL,BrandFacebookIcon:GL,BrandFeedlyIcon:ZL,BrandFigmaIcon:KL,BrandFilezillaIcon:QL,BrandFinderIcon:JL,BrandFirebaseIcon:tD,BrandFirefoxIcon:eD,BrandFiverrIcon:nD,BrandFlickrIcon:lD,BrandFlightradar24Icon:rD,BrandFlipboardIcon:oD,BrandFlutterIcon:sD,BrandFortniteIcon:aD,BrandFoursquareIcon:iD,BrandFramerMotionIcon:hD,BrandFramerIcon:dD,BrandFunimationIcon:cD,BrandGatsbyIcon:uD,BrandGitIcon:pD,BrandGithubCopilotIcon:gD,BrandGithubFilledIcon:wD,BrandGithubIcon:vD,BrandGitlabIcon:fD,BrandGmailIcon:mD,BrandGolangIcon:kD,BrandGoogleAnalyticsIcon:bD,BrandGoogleBigQueryIcon:MD,BrandGoogleDriveIcon:xD,BrandGoogleFitIcon:zD,BrandGoogleHomeIcon:ID,BrandGoogleMapsIcon:yD,BrandGoogleOneIcon:CD,BrandGooglePhotosIcon:SD,BrandGooglePlayIcon:$D,BrandGooglePodcastsIcon:AD,BrandGoogleIcon:BD,BrandGrammarlyIcon:HD,BrandGraphqlIcon:ND,BrandGravatarIcon:jD,BrandGrindrIcon:PD,BrandGuardianIcon:LD,BrandGumroadIcon:DD,BrandHboIcon:OD,BrandHeadlessuiIcon:FD,BrandHexoIcon:RD,BrandHipchatIcon:TD,BrandHtml5Icon:ED,BrandInertiaIcon:VD,BrandInstagramIcon:_D,BrandIntercomIcon:WD,BrandItchIcon:XD,BrandJavascriptIcon:qD,BrandJuejinIcon:YD,BrandKickIcon:UD,BrandKickstarterIcon:GD,BrandKotlinIcon:ZD,BrandLaravelIcon:KD,BrandLastfmIcon:QD,BrandLeetcodeIcon:JD,BrandLetterboxdIcon:tO,BrandLineIcon:eO,BrandLinkedinIcon:nO,BrandLinktreeIcon:lO,BrandLinqpadIcon:rO,BrandLoomIcon:oO,BrandMailgunIcon:sO,BrandMantineIcon:aO,BrandMastercardIcon:iO,BrandMastodonIcon:hO,BrandMatrixIcon:dO,BrandMcdonaldsIcon:cO,BrandMediumIcon:uO,BrandMercedesIcon:pO,BrandMessengerIcon:gO,BrandMetaIcon:wO,BrandMiniprogramIcon:vO,BrandMixpanelIcon:fO,BrandMondayIcon:mO,BrandMongodbIcon:kO,BrandMyOppoIcon:bO,BrandMysqlIcon:MO,BrandNationalGeographicIcon:xO,BrandNemIcon:zO,BrandNetbeansIcon:IO,BrandNeteaseMusicIcon:yO,BrandNetflixIcon:CO,BrandNexoIcon:SO,BrandNextcloudIcon:$O,BrandNextjsIcon:AO,BrandNordVpnIcon:BO,BrandNotionIcon:HO,BrandNpmIcon:NO,BrandNuxtIcon:jO,BrandNytimesIcon:PO,BrandOauthIcon:LO,BrandOfficeIcon:DO,BrandOkRuIcon:OO,BrandOnedriveIcon:FO,BrandOnlyfansIcon:RO,BrandOpenSourceIcon:TO,BrandOpenaiIcon:EO,BrandOpenvpnIcon:VO,BrandOperaIcon:_O,BrandPagekitIcon:WO,BrandPatreonIcon:XO,BrandPaypalFilledIcon:qO,BrandPaypalIcon:YO,BrandPaypayIcon:UO,BrandPeanutIcon:GO,BrandPepsiIcon:ZO,BrandPhpIcon:KO,BrandPicsartIcon:QO,BrandPinterestIcon:JO,BrandPlanetscaleIcon:tF,BrandPocketIcon:eF,BrandPolymerIcon:nF,BrandPowershellIcon:lF,BrandPrismaIcon:rF,BrandProducthuntIcon:oF,BrandPushbulletIcon:sF,BrandPushoverIcon:aF,BrandPythonIcon:iF,BrandQqIcon:hF,BrandRadixUiIcon:dF,BrandReactNativeIcon:cF,BrandReactIcon:uF,BrandReasonIcon:pF,BrandRedditIcon:gF,BrandRedhatIcon:wF,BrandReduxIcon:vF,BrandRevolutIcon:fF,BrandRustIcon:mF,BrandSafariIcon:kF,BrandSamsungpassIcon:bF,BrandSassIcon:MF,BrandSentryIcon:xF,BrandSharikIcon:zF,BrandShazamIcon:IF,BrandShopeeIcon:yF,BrandSketchIcon:CF,BrandSkypeIcon:SF,BrandSlackIcon:$F,BrandSnapchatIcon:AF,BrandSnapseedIcon:BF,BrandSnowflakeIcon:HF,BrandSocketIoIcon:NF,BrandSolidjsIcon:jF,BrandSoundcloudIcon:PF,BrandSpaceheyIcon:LF,BrandSpeedtestIcon:DF,BrandSpotifyIcon:OF,BrandStackoverflowIcon:FF,BrandStackshareIcon:RF,BrandSteamIcon:TF,BrandStorjIcon:EF,BrandStorybookIcon:VF,BrandStorytelIcon:_F,BrandStravaIcon:WF,BrandStripeIcon:XF,BrandSublimeTextIcon:qF,BrandSugarizerIcon:YF,BrandSupabaseIcon:UF,BrandSuperhumanIcon:GF,BrandSupernovaIcon:ZF,BrandSurfsharkIcon:KF,BrandSvelteIcon:QF,BrandSwiftIcon:JF,BrandSymfonyIcon:tR,BrandTablerIcon:eR,BrandTailwindIcon:nR,BrandTaobaoIcon:lR,BrandTedIcon:rR,BrandTelegramIcon:oR,BrandTerraformIcon:sR,BrandTetherIcon:aR,BrandThreejsIcon:iR,BrandTidalIcon:hR,BrandTiktoFilledIcon:dR,BrandTiktokIcon:cR,BrandTinderIcon:uR,BrandTopbuzzIcon:pR,BrandTorchainIcon:gR,BrandToyotaIcon:wR,BrandTrelloIcon:vR,BrandTripadvisorIcon:fR,BrandTumblrIcon:mR,BrandTwilioIcon:kR,BrandTwitchIcon:bR,BrandTwitterFilledIcon:MR,BrandTwitterIcon:xR,BrandTypescriptIcon:zR,BrandUberIcon:IR,BrandUbuntuIcon:yR,BrandUnityIcon:CR,BrandUnsplashIcon:SR,BrandUpworkIcon:$R,BrandValorantIcon:AR,BrandVercelIcon:BR,BrandVimeoIcon:HR,BrandVintedIcon:NR,BrandVisaIcon:jR,BrandVisualStudioIcon:PR,BrandViteIcon:LR,BrandVivaldiIcon:DR,BrandVkIcon:OR,BrandVlcIcon:FR,BrandVolkswagenIcon:RR,BrandVscoIcon:TR,BrandVscodeIcon:ER,BrandVueIcon:VR,BrandWalmartIcon:_R,BrandWazeIcon:WR,BrandWebflowIcon:XR,BrandWechatIcon:qR,BrandWeiboIcon:YR,BrandWhatsappIcon:UR,BrandWikipediaIcon:GR,BrandWindowsIcon:ZR,BrandWindyIcon:KR,BrandWishIcon:QR,BrandWixIcon:JR,BrandWordpressIcon:tT,BrandXamarinIcon:eT,BrandXboxIcon:nT,BrandXingIcon:lT,BrandYahooIcon:rT,BrandYatseIcon:oT,BrandYcombinatorIcon:sT,BrandYoutubeKidsIcon:aT,BrandYoutubeIcon:iT,BrandZalandoIcon:hT,BrandZapierIcon:dT,BrandZeitIcon:cT,BrandZhihuIcon:uT,BrandZoomIcon:pT,BrandZulipIcon:gT,BrandZwiftIcon:wT,BreadOffIcon:vT,BreadIcon:fT,BriefcaseOffIcon:mT,BriefcaseIcon:kT,Brightness2Icon:bT,BrightnessDownIcon:MT,BrightnessHalfIcon:xT,BrightnessOffIcon:zT,BrightnessUpIcon:IT,BrightnessIcon:yT,BroadcastOffIcon:CT,BroadcastIcon:ST,BrowserCheckIcon:$T,BrowserOffIcon:AT,BrowserPlusIcon:BT,BrowserXIcon:HT,BrowserIcon:NT,BrushOffIcon:jT,BrushIcon:PT,BucketDropletIcon:LT,BucketOffIcon:DT,BucketIcon:OT,BugOffIcon:FT,BugIcon:RT,BuildingArchIcon:TT,BuildingBankIcon:ET,BuildingBridge2Icon:VT,BuildingBridgeIcon:_T,BuildingBroadcastTowerIcon:WT,BuildingCarouselIcon:XT,BuildingCastleIcon:qT,BuildingChurchIcon:YT,BuildingCircusIcon:UT,BuildingCommunityIcon:GT,BuildingCottageIcon:ZT,BuildingEstateIcon:KT,BuildingFactory2Icon:QT,BuildingFactoryIcon:JT,BuildingFortressIcon:tE,BuildingHospitalIcon:eE,BuildingLighthouseIcon:nE,BuildingMonumentIcon:lE,BuildingMosqueIcon:rE,BuildingPavilionIcon:oE,BuildingSkyscraperIcon:sE,BuildingStadiumIcon:aE,BuildingStoreIcon:iE,BuildingTunnelIcon:hE,BuildingWarehouseIcon:dE,BuildingWindTurbineIcon:cE,BuildingIcon:uE,BulbFilledIcon:pE,BulbOffIcon:gE,BulbIcon:wE,BulldozerIcon:vE,BusOffIcon:fE,BusStopIcon:mE,BusIcon:kE,BusinessplanIcon:bE,ButterflyIcon:ME,CactusOffIcon:xE,CactusIcon:zE,CakeOffIcon:IE,CakeIcon:yE,CalculatorOffIcon:CE,CalculatorIcon:SE,CalendarBoltIcon:$E,CalendarCancelIcon:AE,CalendarCheckIcon:BE,CalendarCodeIcon:HE,CalendarCogIcon:NE,CalendarDollarIcon:jE,CalendarDownIcon:PE,CalendarDueIcon:LE,CalendarEventIcon:DE,CalendarExclamationIcon:OE,CalendarHeartIcon:FE,CalendarMinusIcon:RE,CalendarOffIcon:TE,CalendarPauseIcon:EE,CalendarPinIcon:VE,CalendarPlusIcon:_E,CalendarQuestionIcon:WE,CalendarSearchIcon:XE,CalendarShareIcon:qE,CalendarStarIcon:YE,CalendarStatsIcon:UE,CalendarTimeIcon:GE,CalendarUpIcon:ZE,CalendarXIcon:KE,CalendarIcon:QE,CameraBoltIcon:JE,CameraCancelIcon:tV,CameraCheckIcon:eV,CameraCodeIcon:nV,CameraCogIcon:lV,CameraDollarIcon:rV,CameraDownIcon:oV,CameraExclamationIcon:sV,CameraFilledIcon:aV,CameraHeartIcon:iV,CameraMinusIcon:hV,CameraOffIcon:dV,CameraPauseIcon:cV,CameraPinIcon:uV,CameraPlusIcon:pV,CameraQuestionIcon:gV,CameraRotateIcon:wV,CameraSearchIcon:vV,CameraSelfieIcon:fV,CameraShareIcon:mV,CameraStarIcon:kV,CameraUpIcon:bV,CameraXIcon:MV,CameraIcon:xV,CamperIcon:zV,CampfireIcon:IV,CandleIcon:yV,CandyOffIcon:CV,CandyIcon:SV,CaneIcon:$V,CannabisIcon:AV,CaptureOffIcon:BV,CaptureIcon:HV,CarCraneIcon:NV,CarCrashIcon:jV,CarOffIcon:PV,CarTurbineIcon:LV,CarIcon:DV,CaravanIcon:OV,CardboardsOffIcon:FV,CardboardsIcon:RV,CardsIcon:TV,CaretDownIcon:EV,CaretLeftIcon:VV,CaretRightIcon:_V,CaretUpIcon:WV,CarouselHorizontalFilledIcon:XV,CarouselHorizontalIcon:qV,CarouselVerticalFilledIcon:YV,CarouselVerticalIcon:UV,CarrotOffIcon:GV,CarrotIcon:ZV,CashBanknoteOffIcon:KV,CashBanknoteIcon:QV,CashOffIcon:JV,CashIcon:t_,CastOffIcon:e_,CastIcon:n_,CatIcon:l_,Category2Icon:r_,CategoryIcon:o_,CeOffIcon:s_,CeIcon:a_,CellSignal1Icon:i_,CellSignal2Icon:h_,CellSignal3Icon:d_,CellSignal4Icon:c_,CellSignal5Icon:u_,CellSignalOffIcon:p_,CellIcon:g_,Certificate2OffIcon:w_,Certificate2Icon:v_,CertificateOffIcon:f_,CertificateIcon:m_,ChairDirectorIcon:k_,ChalkboardOffIcon:b_,ChalkboardIcon:M_,ChargingPileIcon:x_,ChartArcs3Icon:z_,ChartArcsIcon:I_,ChartAreaFilledIcon:y_,ChartAreaLineFilledIcon:C_,ChartAreaLineIcon:S_,ChartAreaIcon:$_,ChartArrowsVerticalIcon:A_,ChartArrowsIcon:B_,ChartBarOffIcon:H_,ChartBarIcon:N_,ChartBubbleFilledIcon:j_,ChartBubbleIcon:P_,ChartCandleFilledIcon:L_,ChartCandleIcon:D_,ChartCirclesIcon:O_,ChartDonut2Icon:F_,ChartDonut3Icon:R_,ChartDonut4Icon:T_,ChartDonutFilledIcon:E_,ChartDonutIcon:V_,ChartDots2Icon:__,ChartDots3Icon:W_,ChartDotsIcon:X_,ChartGridDotsIcon:q_,ChartHistogramIcon:Y_,ChartInfographicIcon:U_,ChartLineIcon:G_,ChartPie2Icon:Z_,ChartPie3Icon:K_,ChartPie4Icon:Q_,ChartPieFilledIcon:J_,ChartPieOffIcon:tW,ChartPieIcon:eW,ChartPpfIcon:nW,ChartRadarIcon:lW,ChartSankeyIcon:rW,ChartTreemapIcon:oW,CheckIcon:sW,CheckboxIcon:aW,ChecklistIcon:iW,ChecksIcon:hW,CheckupListIcon:dW,CheeseIcon:cW,ChefHatOffIcon:uW,ChefHatIcon:pW,CherryFilledIcon:gW,CherryIcon:wW,ChessBishopFilledIcon:vW,ChessBishopIcon:fW,ChessFilledIcon:mW,ChessKingFilledIcon:kW,ChessKingIcon:bW,ChessKnightFilledIcon:MW,ChessKnightIcon:xW,ChessQueenFilledIcon:zW,ChessQueenIcon:IW,ChessRookFilledIcon:yW,ChessRookIcon:CW,ChessIcon:SW,ChevronDownLeftIcon:$W,ChevronDownRightIcon:AW,ChevronDownIcon:BW,ChevronLeftIcon:HW,ChevronRightIcon:NW,ChevronUpLeftIcon:jW,ChevronUpRightIcon:PW,ChevronUpIcon:LW,ChevronsDownLeftIcon:DW,ChevronsDownRightIcon:OW,ChevronsDownIcon:FW,ChevronsLeftIcon:RW,ChevronsRightIcon:TW,ChevronsUpLeftIcon:EW,ChevronsUpRightIcon:VW,ChevronsUpIcon:_W,ChiselIcon:WW,ChristmasTreeOffIcon:XW,ChristmasTreeIcon:qW,Circle0FilledIcon:YW,Circle1FilledIcon:UW,Circle2FilledIcon:GW,Circle3FilledIcon:ZW,Circle4FilledIcon:KW,Circle5FilledIcon:QW,Circle6FilledIcon:JW,Circle7FilledIcon:tX,Circle8FilledIcon:eX,Circle9FilledIcon:nX,CircleArrowDownFilledIcon:lX,CircleArrowDownLeftFilledIcon:rX,CircleArrowDownLeftIcon:oX,CircleArrowDownRightFilledIcon:sX,CircleArrowDownRightIcon:aX,CircleArrowDownIcon:iX,CircleArrowLeftFilledIcon:hX,CircleArrowLeftIcon:dX,CircleArrowRightFilledIcon:cX,CircleArrowRightIcon:uX,CircleArrowUpFilledIcon:pX,CircleArrowUpLeftFilledIcon:gX,CircleArrowUpLeftIcon:wX,CircleArrowUpRightFilledIcon:vX,CircleArrowUpRightIcon:fX,CircleArrowUpIcon:mX,CircleCaretDownIcon:kX,CircleCaretLeftIcon:bX,CircleCaretRightIcon:MX,CircleCaretUpIcon:xX,CircleCheckFilledIcon:zX,CircleCheckIcon:IX,CircleChevronDownIcon:yX,CircleChevronLeftIcon:CX,CircleChevronRightIcon:SX,CircleChevronUpIcon:$X,CircleChevronsDownIcon:AX,CircleChevronsLeftIcon:BX,CircleChevronsRightIcon:HX,CircleChevronsUpIcon:NX,CircleDashedIcon:jX,CircleDotFilledIcon:PX,CircleDotIcon:LX,CircleDottedIcon:DX,CircleFilledIcon:OX,CircleHalf2Icon:FX,CircleHalfVerticalIcon:RX,CircleHalfIcon:TX,CircleKeyFilledIcon:EX,CircleKeyIcon:VX,CircleLetterAIcon:_X,CircleLetterBIcon:WX,CircleLetterCIcon:XX,CircleLetterDIcon:qX,CircleLetterEIcon:YX,CircleLetterFIcon:UX,CircleLetterGIcon:GX,CircleLetterHIcon:ZX,CircleLetterIIcon:KX,CircleLetterJIcon:QX,CircleLetterKIcon:JX,CircleLetterLIcon:tq,CircleLetterMIcon:eq,CircleLetterNIcon:nq,CircleLetterOIcon:lq,CircleLetterPIcon:rq,CircleLetterQIcon:oq,CircleLetterRIcon:sq,CircleLetterSIcon:aq,CircleLetterTIcon:iq,CircleLetterUIcon:hq,CircleLetterVIcon:dq,CircleLetterWIcon:cq,CircleLetterXIcon:uq,CircleLetterYIcon:pq,CircleLetterZIcon:gq,CircleMinusIcon:wq,CircleNumber0Icon:vq,CircleNumber1Icon:fq,CircleNumber2Icon:mq,CircleNumber3Icon:kq,CircleNumber4Icon:bq,CircleNumber5Icon:Mq,CircleNumber6Icon:xq,CircleNumber7Icon:zq,CircleNumber8Icon:Iq,CircleNumber9Icon:yq,CircleOffIcon:Cq,CirclePlusIcon:Sq,CircleRectangleOffIcon:$q,CircleRectangleIcon:Aq,CircleSquareIcon:Bq,CircleTriangleIcon:Hq,CircleXFilledIcon:Nq,CircleXIcon:jq,CircleIcon:Pq,CirclesFilledIcon:Lq,CirclesRelationIcon:Dq,CirclesIcon:Oq,CircuitAmmeterIcon:Fq,CircuitBatteryIcon:Rq,CircuitBulbIcon:Tq,CircuitCapacitorPolarizedIcon:Eq,CircuitCapacitorIcon:Vq,CircuitCellPlusIcon:_q,CircuitCellIcon:Wq,CircuitChangeoverIcon:Xq,CircuitDiodeZenerIcon:qq,CircuitDiodeIcon:Yq,CircuitGroundDigitalIcon:Uq,CircuitGroundIcon:Gq,CircuitInductorIcon:Zq,CircuitMotorIcon:Kq,CircuitPushbuttonIcon:Qq,CircuitResistorIcon:Jq,CircuitSwitchClosedIcon:tY,CircuitSwitchOpenIcon:eY,CircuitVoltmeterIcon:nY,ClearAllIcon:lY,ClearFormattingIcon:rY,ClickIcon:oY,ClipboardCheckIcon:sY,ClipboardCopyIcon:aY,ClipboardDataIcon:iY,ClipboardHeartIcon:hY,ClipboardListIcon:dY,ClipboardOffIcon:cY,ClipboardPlusIcon:uY,ClipboardTextIcon:pY,ClipboardTypographyIcon:gY,ClipboardXIcon:wY,ClipboardIcon:vY,Clock2Icon:fY,ClockBoltIcon:mY,ClockCancelIcon:kY,ClockCheckIcon:bY,ClockCodeIcon:MY,ClockCogIcon:xY,ClockDollarIcon:zY,ClockDownIcon:IY,ClockEditIcon:yY,ClockExclamationIcon:CY,ClockFilledIcon:SY,ClockHeartIcon:$Y,ClockHour1Icon:AY,ClockHour10Icon:BY,ClockHour11Icon:HY,ClockHour12Icon:NY,ClockHour2Icon:jY,ClockHour3Icon:PY,ClockHour4Icon:LY,ClockHour5Icon:DY,ClockHour6Icon:OY,ClockHour7Icon:FY,ClockHour8Icon:RY,ClockHour9Icon:TY,ClockMinusIcon:EY,ClockOffIcon:VY,ClockPauseIcon:_Y,ClockPinIcon:WY,ClockPlayIcon:XY,ClockPlusIcon:qY,ClockQuestionIcon:YY,ClockRecordIcon:UY,ClockSearchIcon:GY,ClockShareIcon:ZY,ClockShieldIcon:KY,ClockStarIcon:QY,ClockStopIcon:JY,ClockUpIcon:tU,ClockXIcon:eU,ClockIcon:nU,ClothesRackOffIcon:lU,ClothesRackIcon:rU,CloudBoltIcon:oU,CloudCancelIcon:sU,CloudCheckIcon:aU,CloudCodeIcon:iU,CloudCogIcon:hU,CloudComputingIcon:dU,CloudDataConnectionIcon:cU,CloudDollarIcon:uU,CloudDownIcon:pU,CloudDownloadIcon:gU,CloudExclamationIcon:wU,CloudFilledIcon:vU,CloudFogIcon:fU,CloudHeartIcon:mU,CloudLockOpenIcon:kU,CloudLockIcon:bU,CloudMinusIcon:MU,CloudOffIcon:xU,CloudPauseIcon:zU,CloudPinIcon:IU,CloudPlusIcon:yU,CloudQuestionIcon:CU,CloudRainIcon:SU,CloudSearchIcon:$U,CloudShareIcon:AU,CloudSnowIcon:BU,CloudStarIcon:HU,CloudStormIcon:NU,CloudUpIcon:jU,CloudUploadIcon:PU,CloudXIcon:LU,CloudIcon:DU,Clover2Icon:OU,CloverIcon:FU,ClubsFilledIcon:RU,ClubsIcon:TU,CodeAsterixIcon:EU,CodeCircle2Icon:VU,CodeCircleIcon:_U,CodeDotsIcon:WU,CodeMinusIcon:XU,CodeOffIcon:qU,CodePlusIcon:YU,CodeIcon:UU,CoffeeOffIcon:GU,CoffeeIcon:ZU,CoffinIcon:KU,CoinBitcoinIcon:QU,CoinEuroIcon:JU,CoinMoneroIcon:tG,CoinOffIcon:eG,CoinPoundIcon:nG,CoinRupeeIcon:lG,CoinYenIcon:rG,CoinYuanIcon:oG,CoinIcon:sG,CoinsIcon:aG,ColorFilterIcon:iG,ColorPickerOffIcon:hG,ColorPickerIcon:dG,ColorSwatchOffIcon:cG,ColorSwatchIcon:uG,ColumnInsertLeftIcon:pG,ColumnInsertRightIcon:gG,Columns1Icon:wG,Columns2Icon:vG,Columns3Icon:fG,ColumnsOffIcon:mG,ColumnsIcon:kG,CometIcon:bG,CommandOffIcon:MG,CommandIcon:xG,CompassOffIcon:zG,CompassIcon:IG,ComponentsOffIcon:yG,ComponentsIcon:CG,Cone2Icon:SG,ConeOffIcon:$G,ConePlusIcon:AG,ConeIcon:BG,ConfettiOffIcon:HG,ConfettiIcon:NG,ConfuciusIcon:jG,ContainerOffIcon:PG,ContainerIcon:LG,Contrast2OffIcon:DG,Contrast2Icon:OG,ContrastOffIcon:FG,ContrastIcon:RG,CookerIcon:TG,CookieManIcon:EG,CookieOffIcon:VG,CookieIcon:_G,CopyOffIcon:WG,CopyIcon:XG,CopyleftFilledIcon:qG,CopyleftOffIcon:YG,CopyleftIcon:UG,CopyrightFilledIcon:GG,CopyrightOffIcon:ZG,CopyrightIcon:KG,CornerDownLeftDoubleIcon:QG,CornerDownLeftIcon:JG,CornerDownRightDoubleIcon:tZ,CornerDownRightIcon:eZ,CornerLeftDownDoubleIcon:nZ,CornerLeftDownIcon:lZ,CornerLeftUpDoubleIcon:rZ,CornerLeftUpIcon:oZ,CornerRightDownDoubleIcon:sZ,CornerRightDownIcon:aZ,CornerRightUpDoubleIcon:iZ,CornerRightUpIcon:hZ,CornerUpLeftDoubleIcon:dZ,CornerUpLeftIcon:cZ,CornerUpRightDoubleIcon:uZ,CornerUpRightIcon:pZ,Cpu2Icon:gZ,CpuOffIcon:wZ,CpuIcon:vZ,CraneOffIcon:fZ,CraneIcon:mZ,CreativeCommonsByIcon:kZ,CreativeCommonsNcIcon:bZ,CreativeCommonsNdIcon:MZ,CreativeCommonsOffIcon:xZ,CreativeCommonsSaIcon:zZ,CreativeCommonsZeroIcon:IZ,CreativeCommonsIcon:yZ,CreditCardOffIcon:CZ,CreditCardIcon:SZ,CricketIcon:$Z,CropIcon:AZ,CrossFilledIcon:BZ,CrossOffIcon:HZ,CrossIcon:NZ,CrosshairIcon:jZ,CrownOffIcon:PZ,CrownIcon:LZ,CrutchesOffIcon:DZ,CrutchesIcon:OZ,CrystalBallIcon:FZ,CsvIcon:RZ,CubeOffIcon:TZ,CubePlusIcon:EZ,CubeSendIcon:VZ,CubeUnfoldedIcon:_Z,CubeIcon:WZ,CupOffIcon:XZ,CupIcon:qZ,CurlingIcon:YZ,CurlyLoopIcon:UZ,CurrencyAfghaniIcon:GZ,CurrencyBahrainiIcon:ZZ,CurrencyBahtIcon:KZ,CurrencyBitcoinIcon:QZ,CurrencyCentIcon:JZ,CurrencyDinarIcon:tK,CurrencyDirhamIcon:eK,CurrencyDogecoinIcon:nK,CurrencyDollarAustralianIcon:lK,CurrencyDollarBruneiIcon:rK,CurrencyDollarCanadianIcon:oK,CurrencyDollarGuyaneseIcon:sK,CurrencyDollarOffIcon:aK,CurrencyDollarSingaporeIcon:iK,CurrencyDollarZimbabweanIcon:hK,CurrencyDollarIcon:dK,CurrencyDongIcon:cK,CurrencyDramIcon:uK,CurrencyEthereumIcon:pK,CurrencyEuroOffIcon:gK,CurrencyEuroIcon:wK,CurrencyForintIcon:vK,CurrencyFrankIcon:fK,CurrencyGuaraniIcon:mK,CurrencyHryvniaIcon:kK,CurrencyIranianRialIcon:bK,CurrencyKipIcon:MK,CurrencyKroneCzechIcon:xK,CurrencyKroneDanishIcon:zK,CurrencyKroneSwedishIcon:IK,CurrencyLariIcon:yK,CurrencyLeuIcon:CK,CurrencyLiraIcon:SK,CurrencyLitecoinIcon:$K,CurrencyLydIcon:AK,CurrencyManatIcon:BK,CurrencyMoneroIcon:HK,CurrencyNairaIcon:NK,CurrencyNanoIcon:jK,CurrencyOffIcon:PK,CurrencyPaangaIcon:LK,CurrencyPesoIcon:DK,CurrencyPoundOffIcon:OK,CurrencyPoundIcon:FK,CurrencyQuetzalIcon:RK,CurrencyRealIcon:TK,CurrencyRenminbiIcon:EK,CurrencyRippleIcon:VK,CurrencyRiyalIcon:_K,CurrencyRubelIcon:WK,CurrencyRufiyaaIcon:XK,CurrencyRupeeNepaleseIcon:qK,CurrencyRupeeIcon:YK,CurrencyShekelIcon:UK,CurrencySolanaIcon:GK,CurrencySomIcon:ZK,CurrencyTakaIcon:KK,CurrencyTengeIcon:QK,CurrencyTugrikIcon:JK,CurrencyWonIcon:tQ,CurrencyYenOffIcon:eQ,CurrencyYenIcon:nQ,CurrencyYuanIcon:lQ,CurrencyZlotyIcon:rQ,CurrencyIcon:oQ,CurrentLocationOffIcon:sQ,CurrentLocationIcon:aQ,CursorOffIcon:iQ,CursorTextIcon:hQ,CutIcon:dQ,CylinderOffIcon:cQ,CylinderPlusIcon:uQ,CylinderIcon:pQ,DashboardOffIcon:gQ,DashboardIcon:wQ,DatabaseCogIcon:vQ,DatabaseDollarIcon:fQ,DatabaseEditIcon:mQ,DatabaseExclamationIcon:kQ,DatabaseExportIcon:bQ,DatabaseHeartIcon:MQ,DatabaseImportIcon:xQ,DatabaseLeakIcon:zQ,DatabaseMinusIcon:IQ,DatabaseOffIcon:yQ,DatabasePlusIcon:CQ,DatabaseSearchIcon:SQ,DatabaseShareIcon:$Q,DatabaseStarIcon:AQ,DatabaseXIcon:BQ,DatabaseIcon:HQ,DecimalIcon:NQ,DeerIcon:jQ,DeltaIcon:PQ,DentalBrokenIcon:LQ,DentalOffIcon:DQ,DentalIcon:OQ,DeselectIcon:FQ,DetailsOffIcon:RQ,DetailsIcon:TQ,DeviceAirpodsCaseIcon:EQ,DeviceAirpodsIcon:VQ,DeviceAnalyticsIcon:_Q,DeviceAudioTapeIcon:WQ,DeviceCameraPhoneIcon:XQ,DeviceCctvOffIcon:qQ,DeviceCctvIcon:YQ,DeviceComputerCameraOffIcon:UQ,DeviceComputerCameraIcon:GQ,DeviceDesktopAnalyticsIcon:ZQ,DeviceDesktopBoltIcon:KQ,DeviceDesktopCancelIcon:QQ,DeviceDesktopCheckIcon:JQ,DeviceDesktopCodeIcon:tJ,DeviceDesktopCogIcon:eJ,DeviceDesktopDollarIcon:nJ,DeviceDesktopDownIcon:lJ,DeviceDesktopExclamationIcon:rJ,DeviceDesktopHeartIcon:oJ,DeviceDesktopMinusIcon:sJ,DeviceDesktopOffIcon:aJ,DeviceDesktopPauseIcon:iJ,DeviceDesktopPinIcon:hJ,DeviceDesktopPlusIcon:dJ,DeviceDesktopQuestionIcon:cJ,DeviceDesktopSearchIcon:uJ,DeviceDesktopShareIcon:pJ,DeviceDesktopStarIcon:gJ,DeviceDesktopUpIcon:wJ,DeviceDesktopXIcon:vJ,DeviceDesktopIcon:fJ,DeviceFloppyIcon:mJ,DeviceGamepad2Icon:kJ,DeviceGamepadIcon:bJ,DeviceHeartMonitorFilledIcon:MJ,DeviceHeartMonitorIcon:xJ,DeviceImacBoltIcon:zJ,DeviceImacCancelIcon:IJ,DeviceImacCheckIcon:yJ,DeviceImacCodeIcon:CJ,DeviceImacCogIcon:SJ,DeviceImacDollarIcon:$J,DeviceImacDownIcon:AJ,DeviceImacExclamationIcon:BJ,DeviceImacHeartIcon:HJ,DeviceImacMinusIcon:NJ,DeviceImacOffIcon:jJ,DeviceImacPauseIcon:PJ,DeviceImacPinIcon:LJ,DeviceImacPlusIcon:DJ,DeviceImacQuestionIcon:OJ,DeviceImacSearchIcon:FJ,DeviceImacShareIcon:RJ,DeviceImacStarIcon:TJ,DeviceImacUpIcon:EJ,DeviceImacXIcon:VJ,DeviceImacIcon:_J,DeviceIpadBoltIcon:WJ,DeviceIpadCancelIcon:XJ,DeviceIpadCheckIcon:qJ,DeviceIpadCodeIcon:YJ,DeviceIpadCogIcon:UJ,DeviceIpadDollarIcon:GJ,DeviceIpadDownIcon:ZJ,DeviceIpadExclamationIcon:KJ,DeviceIpadHeartIcon:QJ,DeviceIpadHorizontalBoltIcon:JJ,DeviceIpadHorizontalCancelIcon:ttt,DeviceIpadHorizontalCheckIcon:ett,DeviceIpadHorizontalCodeIcon:ntt,DeviceIpadHorizontalCogIcon:ltt,DeviceIpadHorizontalDollarIcon:rtt,DeviceIpadHorizontalDownIcon:ott,DeviceIpadHorizontalExclamationIcon:stt,DeviceIpadHorizontalHeartIcon:att,DeviceIpadHorizontalMinusIcon:itt,DeviceIpadHorizontalOffIcon:htt,DeviceIpadHorizontalPauseIcon:dtt,DeviceIpadHorizontalPinIcon:ctt,DeviceIpadHorizontalPlusIcon:utt,DeviceIpadHorizontalQuestionIcon:ptt,DeviceIpadHorizontalSearchIcon:gtt,DeviceIpadHorizontalShareIcon:wtt,DeviceIpadHorizontalStarIcon:vtt,DeviceIpadHorizontalUpIcon:ftt,DeviceIpadHorizontalXIcon:mtt,DeviceIpadHorizontalIcon:ktt,DeviceIpadMinusIcon:btt,DeviceIpadOffIcon:Mtt,DeviceIpadPauseIcon:xtt,DeviceIpadPinIcon:ztt,DeviceIpadPlusIcon:Itt,DeviceIpadQuestionIcon:ytt,DeviceIpadSearchIcon:Ctt,DeviceIpadShareIcon:Stt,DeviceIpadStarIcon:$tt,DeviceIpadUpIcon:Att,DeviceIpadXIcon:Btt,DeviceIpadIcon:Htt,DeviceLandlinePhoneIcon:Ntt,DeviceLaptopOffIcon:jtt,DeviceLaptopIcon:Ptt,DeviceMobileBoltIcon:Ltt,DeviceMobileCancelIcon:Dtt,DeviceMobileChargingIcon:Ott,DeviceMobileCheckIcon:Ftt,DeviceMobileCodeIcon:Rtt,DeviceMobileCogIcon:Ttt,DeviceMobileDollarIcon:Ett,DeviceMobileDownIcon:Vtt,DeviceMobileExclamationIcon:_tt,DeviceMobileFilledIcon:Wtt,DeviceMobileHeartIcon:Xtt,DeviceMobileMessageIcon:qtt,DeviceMobileMinusIcon:Ytt,DeviceMobileOffIcon:Utt,DeviceMobilePauseIcon:Gtt,DeviceMobilePinIcon:Ztt,DeviceMobilePlusIcon:Ktt,DeviceMobileQuestionIcon:Qtt,DeviceMobileRotatedIcon:Jtt,DeviceMobileSearchIcon:tet,DeviceMobileShareIcon:eet,DeviceMobileStarIcon:net,DeviceMobileUpIcon:ret,DeviceMobileVibrationIcon:oet,DeviceMobileXIcon:set,DeviceMobileIcon:aet,DeviceNintendoOffIcon:iet,DeviceNintendoIcon:het,DeviceRemoteIcon:det,DeviceSdCardIcon:cet,DeviceSim1Icon:uet,DeviceSim2Icon:pet,DeviceSim3Icon:get,DeviceSimIcon:wet,DeviceSpeakerOffIcon:vet,DeviceSpeakerIcon:fet,DeviceTabletBoltIcon:met,DeviceTabletCancelIcon:ket,DeviceTabletCheckIcon:bet,DeviceTabletCodeIcon:Met,DeviceTabletCogIcon:xet,DeviceTabletDollarIcon:zet,DeviceTabletDownIcon:Iet,DeviceTabletExclamationIcon:yet,DeviceTabletFilledIcon:Cet,DeviceTabletHeartIcon:$et,DeviceTabletMinusIcon:Aet,DeviceTabletOffIcon:Bet,DeviceTabletPauseIcon:Het,DeviceTabletPinIcon:Net,DeviceTabletPlusIcon:jet,DeviceTabletQuestionIcon:Pet,DeviceTabletSearchIcon:Let,DeviceTabletShareIcon:Det,DeviceTabletStarIcon:Oet,DeviceTabletUpIcon:Fet,DeviceTabletXIcon:Ret,DeviceTabletIcon:Tet,DeviceTvOffIcon:Eet,DeviceTvOldIcon:Vet,DeviceTvIcon:_et,DeviceWatchBoltIcon:Wet,DeviceWatchCancelIcon:Xet,DeviceWatchCheckIcon:qet,DeviceWatchCodeIcon:Yet,DeviceWatchCogIcon:Uet,DeviceWatchDollarIcon:Get,DeviceWatchDownIcon:Zet,DeviceWatchExclamationIcon:Ket,DeviceWatchHeartIcon:Qet,DeviceWatchMinusIcon:Jet,DeviceWatchOffIcon:tnt,DeviceWatchPauseIcon:ent,DeviceWatchPinIcon:nnt,DeviceWatchPlusIcon:lnt,DeviceWatchQuestionIcon:rnt,DeviceWatchSearchIcon:ont,DeviceWatchShareIcon:snt,DeviceWatchStarIcon:ant,DeviceWatchStats2Icon:int,DeviceWatchStatsIcon:hnt,DeviceWatchUpIcon:dnt,DeviceWatchXIcon:cnt,DeviceWatchIcon:unt,Devices2Icon:pnt,DevicesBoltIcon:gnt,DevicesCancelIcon:wnt,DevicesCheckIcon:vnt,DevicesCodeIcon:fnt,DevicesCogIcon:mnt,DevicesDollarIcon:knt,DevicesDownIcon:bnt,DevicesExclamationIcon:Mnt,DevicesHeartIcon:xnt,DevicesMinusIcon:znt,DevicesOffIcon:Int,DevicesPauseIcon:ynt,DevicesPcOffIcon:Cnt,DevicesPcIcon:Snt,DevicesPinIcon:$nt,DevicesPlusIcon:Ant,DevicesQuestionIcon:Bnt,DevicesSearchIcon:Hnt,DevicesShareIcon:Nnt,DevicesStarIcon:jnt,DevicesUpIcon:Pnt,DevicesXIcon:Lnt,DevicesIcon:Dnt,DiaboloOffIcon:Ont,DiaboloPlusIcon:Fnt,DiaboloIcon:Rnt,DialpadFilledIcon:Tnt,DialpadOffIcon:Ent,DialpadIcon:Vnt,DiamondFilledIcon:_nt,DiamondOffIcon:Wnt,DiamondIcon:Xnt,DiamondsFilledIcon:qnt,DiamondsIcon:Ynt,Dice1FilledIcon:Unt,Dice1Icon:Gnt,Dice2FilledIcon:Znt,Dice2Icon:Knt,Dice3FilledIcon:Qnt,Dice3Icon:Jnt,Dice4FilledIcon:tlt,Dice4Icon:elt,Dice5FilledIcon:nlt,Dice5Icon:llt,Dice6FilledIcon:rlt,Dice6Icon:olt,DiceFilledIcon:slt,DiceIcon:alt,DimensionsIcon:ilt,DirectionHorizontalIcon:hlt,DirectionSignFilledIcon:dlt,DirectionSignOffIcon:clt,DirectionSignIcon:ult,DirectionIcon:plt,DirectionsOffIcon:glt,DirectionsIcon:wlt,Disabled2Icon:vlt,DisabledOffIcon:flt,DisabledIcon:mlt,DiscGolfIcon:klt,DiscOffIcon:blt,DiscIcon:Mlt,Discount2OffIcon:xlt,Discount2Icon:zlt,DiscountCheckFilledIcon:Ilt,DiscountCheckIcon:ylt,DiscountOffIcon:Clt,DiscountIcon:Slt,DivideIcon:$lt,Dna2OffIcon:Alt,Dna2Icon:Blt,DnaOffIcon:Hlt,DnaIcon:Nlt,DogBowlIcon:jlt,DogIcon:Plt,DoorEnterIcon:Llt,DoorExitIcon:Dlt,DoorOffIcon:Olt,DoorIcon:Flt,DotsCircleHorizontalIcon:Rlt,DotsDiagonal2Icon:Tlt,DotsDiagonalIcon:Elt,DotsVerticalIcon:Vlt,DotsIcon:_lt,DownloadOffIcon:Wlt,DownloadIcon:Xlt,DragDrop2Icon:qlt,DragDropIcon:Ylt,DroneOffIcon:Ult,DroneIcon:Glt,DropCircleIcon:Zlt,DropletBoltIcon:Klt,DropletCancelIcon:Qlt,DropletCheckIcon:Jlt,DropletCodeIcon:trt,DropletCogIcon:ert,DropletDollarIcon:nrt,DropletDownIcon:lrt,DropletExclamationIcon:rrt,DropletFilled2Icon:ort,DropletFilledIcon:srt,DropletHalf2Icon:art,DropletHalfFilledIcon:irt,DropletHalfIcon:hrt,DropletHeartIcon:drt,DropletMinusIcon:crt,DropletOffIcon:urt,DropletPauseIcon:prt,DropletPinIcon:grt,DropletPlusIcon:wrt,DropletQuestionIcon:vrt,DropletSearchIcon:frt,DropletShareIcon:mrt,DropletStarIcon:krt,DropletUpIcon:brt,DropletXIcon:Mrt,DropletIcon:xrt,DualScreenIcon:zrt,EPassportIcon:Irt,EarOffIcon:yrt,EarIcon:Crt,EaseInControlPointIcon:Srt,EaseInOutControlPointsIcon:$rt,EaseInOutIcon:Art,EaseInIcon:Brt,EaseOutControlPointIcon:Hrt,EaseOutIcon:Nrt,EditCircleOffIcon:jrt,EditCircleIcon:Prt,EditOffIcon:Lrt,EditIcon:Drt,EggCrackedIcon:Ort,EggFilledIcon:Frt,EggFriedIcon:Rrt,EggOffIcon:Trt,EggIcon:Ert,EggsIcon:Vrt,ElevatorOffIcon:_rt,ElevatorIcon:Wrt,EmergencyBedIcon:Xrt,EmpathizeOffIcon:qrt,EmpathizeIcon:Yrt,EmphasisIcon:Urt,EngineOffIcon:Grt,EngineIcon:Zrt,EqualDoubleIcon:Krt,EqualNotIcon:Qrt,EqualIcon:Jrt,EraserOffIcon:tot,EraserIcon:eot,Error404OffIcon:not,Error404Icon:lot,ExchangeOffIcon:rot,ExchangeIcon:oot,ExclamationCircleIcon:sot,ExclamationMarkOffIcon:aot,ExclamationMarkIcon:iot,ExplicitOffIcon:hot,ExplicitIcon:dot,Exposure0Icon:cot,ExposureMinus1Icon:uot,ExposureMinus2Icon:pot,ExposureOffIcon:got,ExposurePlus1Icon:wot,ExposurePlus2Icon:vot,ExposureIcon:fot,ExternalLinkOffIcon:mot,ExternalLinkIcon:kot,EyeCheckIcon:bot,EyeClosedIcon:Mot,EyeCogIcon:xot,EyeEditIcon:zot,EyeExclamationIcon:Iot,EyeFilledIcon:yot,EyeHeartIcon:Cot,EyeOffIcon:Sot,EyeTableIcon:$ot,EyeXIcon:Aot,EyeIcon:Bot,Eyeglass2Icon:Hot,EyeglassOffIcon:Not,EyeglassIcon:jot,FaceIdErrorIcon:Pot,FaceIdIcon:Lot,FaceMaskOffIcon:Dot,FaceMaskIcon:Oot,FallIcon:Fot,FeatherOffIcon:Rot,FeatherIcon:Tot,FenceOffIcon:Eot,FenceIcon:Vot,FidgetSpinnerIcon:_ot,File3dIcon:Wot,FileAlertIcon:Xot,FileAnalyticsIcon:qot,FileArrowLeftIcon:Yot,FileArrowRightIcon:Uot,FileBarcodeIcon:Got,FileBrokenIcon:Zot,FileCertificateIcon:Kot,FileChartIcon:Qot,FileCheckIcon:Jot,FileCode2Icon:tst,FileCodeIcon:est,FileCvIcon:nst,FileDatabaseIcon:lst,FileDeltaIcon:rst,FileDescriptionIcon:ost,FileDiffIcon:sst,FileDigitIcon:ast,FileDislikeIcon:ist,FileDollarIcon:hst,FileDotsIcon:dst,FileDownloadIcon:cst,FileEuroIcon:ust,FileExportIcon:pst,FileFilledIcon:gst,FileFunctionIcon:wst,FileHorizontalIcon:vst,FileImportIcon:fst,FileInfinityIcon:mst,FileInfoIcon:kst,FileInvoiceIcon:bst,FileLambdaIcon:Mst,FileLikeIcon:xst,FileMinusIcon:zst,FileMusicIcon:Ist,FileOffIcon:yst,FileOrientationIcon:Cst,FilePencilIcon:Sst,FilePercentIcon:$st,FilePhoneIcon:Ast,FilePlusIcon:Bst,FilePowerIcon:Hst,FileReportIcon:Nst,FileRssIcon:jst,FileScissorsIcon:Pst,FileSearchIcon:Lst,FileSettingsIcon:Dst,FileShredderIcon:Ost,FileSignalIcon:Fst,FileSpreadsheetIcon:Rst,FileStackIcon:Tst,FileStarIcon:Est,FileSymlinkIcon:Vst,FileTextAiIcon:_st,FileTextIcon:Wst,FileTimeIcon:Xst,FileTypographyIcon:qst,FileUnknownIcon:Yst,FileUploadIcon:Ust,FileVectorIcon:Gst,FileXFilledIcon:Zst,FileXIcon:Kst,FileZipIcon:Qst,FileIcon:Jst,FilesOffIcon:tat,FilesIcon:eat,FilterCogIcon:nat,FilterDollarIcon:lat,FilterEditIcon:rat,FilterMinusIcon:oat,FilterOffIcon:sat,FilterPlusIcon:aat,FilterStarIcon:iat,FilterXIcon:hat,FilterIcon:dat,FiltersIcon:cat,FingerprintOffIcon:uat,FingerprintIcon:pat,FireHydrantOffIcon:gat,FireHydrantIcon:wat,FiretruckIcon:vat,FirstAidKitOffIcon:fat,FirstAidKitIcon:mat,FishBoneIcon:kat,FishChristianityIcon:bat,FishHookOffIcon:Mat,FishHookIcon:xat,FishOffIcon:zat,FishIcon:Iat,Flag2FilledIcon:yat,Flag2OffIcon:Cat,Flag2Icon:Sat,Flag3FilledIcon:$at,Flag3Icon:Aat,FlagFilledIcon:Bat,FlagOffIcon:Hat,FlagIcon:Nat,FlameOffIcon:jat,FlameIcon:Pat,FlareIcon:Lat,Flask2OffIcon:Dat,Flask2Icon:Oat,FlaskOffIcon:Fat,FlaskIcon:Rat,FlipFlopsIcon:Tat,FlipHorizontalIcon:Eat,FlipVerticalIcon:Vat,FloatCenterIcon:_at,FloatLeftIcon:Wat,FloatNoneIcon:Xat,FloatRightIcon:qat,FlowerOffIcon:Yat,FlowerIcon:Uat,Focus2Icon:Gat,FocusAutoIcon:Zat,FocusCenteredIcon:Kat,FocusIcon:Qat,FoldDownIcon:Jat,FoldUpIcon:tit,FoldIcon:eit,FolderBoltIcon:nit,FolderCancelIcon:lit,FolderCheckIcon:rit,FolderCodeIcon:oit,FolderCogIcon:sit,FolderDollarIcon:ait,FolderDownIcon:iit,FolderExclamationIcon:hit,FolderFilledIcon:dit,FolderHeartIcon:cit,FolderMinusIcon:uit,FolderOffIcon:pit,FolderPauseIcon:git,FolderPinIcon:wit,FolderPlusIcon:vit,FolderQuestionIcon:fit,FolderSearchIcon:mit,FolderShareIcon:kit,FolderStarIcon:bit,FolderSymlinkIcon:Mit,FolderUpIcon:xit,FolderXIcon:zit,FolderIcon:Iit,FoldersOffIcon:yit,FoldersIcon:Cit,Forbid2Icon:Sit,ForbidIcon:$it,ForkliftIcon:Ait,FormsIcon:Bit,FountainOffIcon:Hit,FountainIcon:Nit,FrameOffIcon:jit,FrameIcon:Pit,FreeRightsIcon:Lit,FreezeColumnIcon:Dit,FreezeRowColumnIcon:Oit,FreezeRowIcon:Fit,FridgeOffIcon:Rit,FridgeIcon:Tit,FriendsOffIcon:Eit,FriendsIcon:Vit,FrustumOffIcon:_it,FrustumPlusIcon:Wit,FrustumIcon:Xit,FunctionOffIcon:qit,FunctionIcon:Yit,GardenCartOffIcon:Uit,GardenCartIcon:Git,GasStationOffIcon:Zit,GasStationIcon:Kit,GaugeOffIcon:Qit,GaugeIcon:Jit,GavelIcon:t0t,GenderAgenderIcon:e0t,GenderAndrogyneIcon:n0t,GenderBigenderIcon:l0t,GenderDemiboyIcon:r0t,GenderDemigirlIcon:o0t,GenderEpiceneIcon:s0t,GenderFemaleIcon:a0t,GenderFemmeIcon:i0t,GenderGenderfluidIcon:h0t,GenderGenderlessIcon:d0t,GenderGenderqueerIcon:c0t,GenderHermaphroditeIcon:u0t,GenderIntergenderIcon:p0t,GenderMaleIcon:g0t,GenderNeutroisIcon:w0t,GenderThirdIcon:v0t,GenderTransgenderIcon:f0t,GenderTrasvestiIcon:m0t,GeometryIcon:k0t,Ghost2FilledIcon:b0t,Ghost2Icon:M0t,GhostFilledIcon:x0t,GhostOffIcon:z0t,GhostIcon:I0t,GifIcon:y0t,GiftCardIcon:C0t,GiftOffIcon:S0t,GiftIcon:$0t,GitBranchDeletedIcon:A0t,GitBranchIcon:B0t,GitCherryPickIcon:H0t,GitCommitIcon:N0t,GitCompareIcon:j0t,GitForkIcon:P0t,GitMergeIcon:L0t,GitPullRequestClosedIcon:D0t,GitPullRequestDraftIcon:O0t,GitPullRequestIcon:F0t,GizmoIcon:R0t,GlassFullIcon:T0t,GlassOffIcon:E0t,GlassIcon:V0t,GlobeOffIcon:_0t,GlobeIcon:W0t,GoGameIcon:X0t,GolfOffIcon:q0t,GolfIcon:Y0t,GpsIcon:U0t,GradienterIcon:G0t,GrainIcon:Z0t,GraphOffIcon:K0t,GraphIcon:Q0t,Grave2Icon:J0t,GraveIcon:tht,GridDotsIcon:eht,GridPatternIcon:nht,GrillForkIcon:lht,GrillOffIcon:rht,GrillSpatulaIcon:oht,GrillIcon:sht,GripHorizontalIcon:aht,GripVerticalIcon:iht,GrowthIcon:hht,GuitarPickFilledIcon:dht,GuitarPickIcon:cht,H1Icon:uht,H2Icon:pht,H3Icon:ght,H4Icon:wht,H5Icon:vht,H6Icon:fht,HammerOffIcon:mht,HammerIcon:kht,HandClickIcon:bht,HandFingerOffIcon:Mht,HandFingerIcon:xht,HandGrabIcon:zht,HandLittleFingerIcon:Iht,HandMiddleFingerIcon:yht,HandMoveIcon:Cht,HandOffIcon:Sht,HandRingFingerIcon:$ht,HandRockIcon:Aht,HandSanitizerIcon:Bht,HandStopIcon:Hht,HandThreeFingersIcon:Nht,HandTwoFingersIcon:jht,Hanger2Icon:Pht,HangerOffIcon:Lht,HangerIcon:Dht,HashIcon:Oht,HazeIcon:Fht,HdrIcon:Rht,HeadingOffIcon:Tht,HeadingIcon:Eht,HeadphonesFilledIcon:Vht,HeadphonesOffIcon:_ht,HeadphonesIcon:Wht,HeadsetOffIcon:Xht,HeadsetIcon:qht,HealthRecognitionIcon:Yht,HeartBrokenIcon:Uht,HeartFilledIcon:Ght,HeartHandshakeIcon:Zht,HeartMinusIcon:Kht,HeartOffIcon:Qht,HeartPlusIcon:Jht,HeartRateMonitorIcon:t2t,HeartIcon:e2t,HeartbeatIcon:n2t,HeartsOffIcon:l2t,HeartsIcon:r2t,HelicopterLandingIcon:o2t,HelicopterIcon:s2t,HelmetOffIcon:a2t,HelmetIcon:i2t,HelpCircleFilledIcon:h2t,HelpCircleIcon:d2t,HelpHexagonFilledIcon:c2t,HelpHexagonIcon:u2t,HelpOctagonFilledIcon:p2t,HelpOctagonIcon:g2t,HelpOffIcon:w2t,HelpSmallIcon:v2t,HelpSquareFilledIcon:f2t,HelpSquareRoundedFilledIcon:m2t,HelpSquareRoundedIcon:k2t,HelpSquareIcon:b2t,HelpTriangleFilledIcon:M2t,HelpTriangleIcon:x2t,HelpIcon:z2t,HemisphereOffIcon:I2t,HemispherePlusIcon:y2t,HemisphereIcon:C2t,Hexagon0FilledIcon:S2t,Hexagon1FilledIcon:$2t,Hexagon2FilledIcon:A2t,Hexagon3FilledIcon:B2t,Hexagon3dIcon:H2t,Hexagon4FilledIcon:N2t,Hexagon5FilledIcon:j2t,Hexagon6FilledIcon:P2t,Hexagon7FilledIcon:L2t,Hexagon8FilledIcon:D2t,Hexagon9FilledIcon:O2t,HexagonFilledIcon:F2t,HexagonLetterAIcon:R2t,HexagonLetterBIcon:T2t,HexagonLetterCIcon:E2t,HexagonLetterDIcon:V2t,HexagonLetterEIcon:_2t,HexagonLetterFIcon:W2t,HexagonLetterGIcon:X2t,HexagonLetterHIcon:q2t,HexagonLetterIIcon:Y2t,HexagonLetterJIcon:U2t,HexagonLetterKIcon:G2t,HexagonLetterLIcon:Z2t,HexagonLetterMIcon:K2t,HexagonLetterNIcon:Q2t,HexagonLetterOIcon:J2t,HexagonLetterPIcon:t1t,HexagonLetterQIcon:e1t,HexagonLetterRIcon:n1t,HexagonLetterSIcon:l1t,HexagonLetterTIcon:r1t,HexagonLetterUIcon:o1t,HexagonLetterVIcon:s1t,HexagonLetterWIcon:a1t,HexagonLetterXIcon:i1t,HexagonLetterYIcon:h1t,HexagonLetterZIcon:d1t,HexagonNumber0Icon:c1t,HexagonNumber1Icon:u1t,HexagonNumber2Icon:p1t,HexagonNumber3Icon:g1t,HexagonNumber4Icon:w1t,HexagonNumber5Icon:v1t,HexagonNumber6Icon:f1t,HexagonNumber7Icon:m1t,HexagonNumber8Icon:k1t,HexagonNumber9Icon:b1t,HexagonOffIcon:M1t,HexagonIcon:x1t,HexagonalPrismOffIcon:z1t,HexagonalPrismPlusIcon:I1t,HexagonalPrismIcon:y1t,HexagonalPyramidOffIcon:C1t,HexagonalPyramidPlusIcon:S1t,HexagonalPyramidIcon:$1t,HexagonsOffIcon:A1t,HexagonsIcon:B1t,Hierarchy2Icon:H1t,Hierarchy3Icon:N1t,HierarchyOffIcon:j1t,HierarchyIcon:P1t,HighlightOffIcon:L1t,HighlightIcon:D1t,HistoryOffIcon:O1t,HistoryToggleIcon:F1t,HistoryIcon:R1t,Home2Icon:T1t,HomeBoltIcon:E1t,HomeCancelIcon:V1t,HomeCheckIcon:_1t,HomeCogIcon:W1t,HomeDollarIcon:X1t,HomeDotIcon:q1t,HomeDownIcon:Y1t,HomeEcoIcon:U1t,HomeEditIcon:G1t,HomeExclamationIcon:Z1t,HomeHandIcon:K1t,HomeHeartIcon:Q1t,HomeInfinityIcon:J1t,HomeLinkIcon:tdt,HomeMinusIcon:edt,HomeMoveIcon:ndt,HomeOffIcon:ldt,HomePlusIcon:rdt,HomeQuestionIcon:odt,HomeRibbonIcon:sdt,HomeSearchIcon:adt,HomeShareIcon:idt,HomeShieldIcon:hdt,HomeSignalIcon:ddt,HomeStarIcon:cdt,HomeStatsIcon:udt,HomeUpIcon:pdt,HomeXIcon:gdt,HomeIcon:wdt,HorseToyIcon:vdt,HotelServiceIcon:fdt,HourglassEmptyIcon:mdt,HourglassFilledIcon:kdt,HourglassHighIcon:bdt,HourglassLowIcon:Mdt,HourglassOffIcon:xdt,HourglassIcon:zdt,HtmlIcon:Idt,HttpConnectIcon:ydt,HttpDeleteIcon:Cdt,HttpGetIcon:Sdt,HttpHeadIcon:$dt,HttpOptionsIcon:Adt,HttpPatchIcon:Bdt,HttpPostIcon:Hdt,HttpPutIcon:Ndt,HttpQueIcon:jdt,HttpTraceIcon:Pdt,IceCream2Icon:Ldt,IceCreamOffIcon:Ddt,IceCreamIcon:Odt,IceSkatingIcon:Fdt,IconsOffIcon:Rdt,IconsIcon:Tdt,IdBadge2Icon:Edt,IdBadgeOffIcon:Vdt,IdBadgeIcon:_dt,IdOffIcon:Wdt,IdIcon:Xdt,InboxOffIcon:qdt,InboxIcon:Ydt,IndentDecreaseIcon:Udt,IndentIncreaseIcon:Gdt,InfinityOffIcon:Zdt,InfinityIcon:Kdt,InfoCircleFilledIcon:Qdt,InfoCircleIcon:Jdt,InfoHexagonFilledIcon:tct,InfoHexagonIcon:ect,InfoOctagonFilledIcon:nct,InfoOctagonIcon:lct,InfoSmallIcon:rct,InfoSquareFilledIcon:oct,InfoSquareRoundedFilledIcon:sct,InfoSquareRoundedIcon:act,InfoSquareIcon:ict,InfoTriangleFilledIcon:hct,InfoTriangleIcon:dct,InnerShadowBottomFilledIcon:cct,InnerShadowBottomLeftFilledIcon:uct,InnerShadowBottomLeftIcon:pct,InnerShadowBottomRightFilledIcon:gct,InnerShadowBottomRightIcon:wct,InnerShadowBottomIcon:vct,InnerShadowLeftFilledIcon:fct,InnerShadowLeftIcon:mct,InnerShadowRightFilledIcon:kct,InnerShadowRightIcon:bct,InnerShadowTopFilledIcon:Mct,InnerShadowTopLeftFilledIcon:xct,InnerShadowTopLeftIcon:zct,InnerShadowTopRightFilledIcon:Ict,InnerShadowTopRightIcon:yct,InnerShadowTopIcon:Cct,InputSearchIcon:Sct,Ironing1Icon:$ct,Ironing2Icon:Act,Ironing3Icon:Bct,IroningOffIcon:Hct,IroningSteamOffIcon:Nct,IroningSteamIcon:jct,IroningIcon:Pct,IrregularPolyhedronOffIcon:Lct,IrregularPolyhedronPlusIcon:Dct,IrregularPolyhedronIcon:Oct,ItalicIcon:Fct,JacketIcon:Rct,JetpackIcon:Tct,JewishStarFilledIcon:Ect,JewishStarIcon:Vct,JpgIcon:_ct,JsonIcon:Wct,JumpRopeIcon:Xct,KarateIcon:qct,KayakIcon:Yct,KeringIcon:Uct,KeyOffIcon:Gct,KeyIcon:Zct,KeyboardHideIcon:Kct,KeyboardOffIcon:Qct,KeyboardShowIcon:Jct,KeyboardIcon:tut,KeyframeAlignCenterIcon:eut,KeyframeAlignHorizontalIcon:nut,KeyframeAlignVerticalIcon:lut,KeyframeIcon:rut,KeyframesIcon:out,LadderOffIcon:sut,LadderIcon:aut,LambdaIcon:iut,Lamp2Icon:hut,LampOffIcon:dut,LampIcon:cut,LanguageHiraganaIcon:uut,LanguageKatakanaIcon:put,LanguageOffIcon:gut,LanguageIcon:wut,LassoOffIcon:vut,LassoPolygonIcon:fut,LassoIcon:mut,LayersDifferenceIcon:kut,LayersIntersect2Icon:but,LayersIntersectIcon:Mut,LayersLinkedIcon:xut,LayersOffIcon:zut,LayersSubtractIcon:Iut,LayersUnionIcon:yut,Layout2Icon:Cut,LayoutAlignBottomIcon:Sut,LayoutAlignCenterIcon:$ut,LayoutAlignLeftIcon:Aut,LayoutAlignMiddleIcon:But,LayoutAlignRightIcon:Hut,LayoutAlignTopIcon:Nut,LayoutBoardSplitIcon:jut,LayoutBoardIcon:Put,LayoutBottombarCollapseIcon:Lut,LayoutBottombarExpandIcon:Dut,LayoutBottombarIcon:Out,LayoutCardsIcon:Fut,LayoutCollageIcon:Rut,LayoutColumnsIcon:Tut,LayoutDashboardIcon:Eut,LayoutDistributeHorizontalIcon:Vut,LayoutDistributeVerticalIcon:_ut,LayoutGridAddIcon:Wut,LayoutGridRemoveIcon:Xut,LayoutGridIcon:qut,LayoutKanbanIcon:Yut,LayoutListIcon:Uut,LayoutNavbarCollapseIcon:Gut,LayoutNavbarExpandIcon:Zut,LayoutNavbarIcon:Kut,LayoutOffIcon:Qut,LayoutRowsIcon:Jut,LayoutSidebarLeftCollapseIcon:tpt,LayoutSidebarLeftExpandIcon:ept,LayoutSidebarRightCollapseIcon:npt,LayoutSidebarRightExpandIcon:lpt,LayoutSidebarRightIcon:rpt,LayoutSidebarIcon:opt,LayoutIcon:spt,LeafOffIcon:apt,LeafIcon:ipt,LegoOffIcon:hpt,LegoIcon:dpt,Lemon2Icon:cpt,LemonIcon:upt,LetterAIcon:ppt,LetterBIcon:gpt,LetterCIcon:wpt,LetterCaseLowerIcon:vpt,LetterCaseToggleIcon:fpt,LetterCaseUpperIcon:mpt,LetterCaseIcon:kpt,LetterDIcon:bpt,LetterEIcon:Mpt,LetterFIcon:xpt,LetterGIcon:zpt,LetterHIcon:Ipt,LetterIIcon:ypt,LetterJIcon:Cpt,LetterKIcon:Spt,LetterLIcon:$pt,LetterMIcon:Apt,LetterNIcon:Bpt,LetterOIcon:Hpt,LetterPIcon:Npt,LetterQIcon:jpt,LetterRIcon:Ppt,LetterSIcon:Lpt,LetterSpacingIcon:Dpt,LetterTIcon:Opt,LetterUIcon:Fpt,LetterVIcon:Rpt,LetterWIcon:Tpt,LetterXIcon:Ept,LetterYIcon:Vpt,LetterZIcon:_pt,LicenseOffIcon:Wpt,LicenseIcon:Xpt,LifebuoyOffIcon:qpt,LifebuoyIcon:Ypt,LighterIcon:Upt,LineDashedIcon:Gpt,LineDottedIcon:Zpt,LineHeightIcon:Kpt,LineIcon:Qpt,LinkOffIcon:Jpt,LinkIcon:t4t,ListCheckIcon:e4t,ListDetailsIcon:n4t,ListNumbersIcon:l4t,ListSearchIcon:r4t,ListIcon:o4t,LivePhotoOffIcon:s4t,LivePhotoIcon:a4t,LiveViewIcon:i4t,LoadBalancerIcon:h4t,Loader2Icon:d4t,Loader3Icon:c4t,LoaderQuarterIcon:u4t,LoaderIcon:p4t,LocationBrokenIcon:g4t,LocationFilledIcon:w4t,LocationOffIcon:v4t,LocationIcon:f4t,LockAccessOffIcon:m4t,LockAccessIcon:k4t,LockBoltIcon:b4t,LockCancelIcon:M4t,LockCheckIcon:x4t,LockCodeIcon:z4t,LockCogIcon:I4t,LockDollarIcon:y4t,LockDownIcon:C4t,LockExclamationIcon:S4t,LockHeartIcon:$4t,LockMinusIcon:A4t,LockOffIcon:B4t,LockOpenOffIcon:H4t,LockOpenIcon:N4t,LockPauseIcon:j4t,LockPinIcon:P4t,LockPlusIcon:L4t,LockQuestionIcon:D4t,LockSearchIcon:O4t,LockShareIcon:F4t,LockSquareRoundedFilledIcon:R4t,LockSquareRoundedIcon:T4t,LockSquareIcon:E4t,LockStarIcon:V4t,LockUpIcon:_4t,LockXIcon:W4t,LockIcon:X4t,LogicAndIcon:q4t,LogicBufferIcon:Y4t,LogicNandIcon:U4t,LogicNorIcon:G4t,LogicNotIcon:Z4t,LogicOrIcon:K4t,LogicXnorIcon:Q4t,LogicXorIcon:J4t,LoginIcon:tgt,Logout2Icon:egt,LogoutIcon:ngt,LollipopOffIcon:lgt,LollipopIcon:rgt,LuggageOffIcon:ogt,LuggageIcon:sgt,LungsOffIcon:agt,LungsIcon:igt,MacroOffIcon:hgt,MacroIcon:dgt,MagnetOffIcon:cgt,MagnetIcon:ugt,MailAiIcon:pgt,MailBoltIcon:ggt,MailCancelIcon:wgt,MailCheckIcon:vgt,MailCodeIcon:fgt,MailCogIcon:mgt,MailDollarIcon:kgt,MailDownIcon:bgt,MailExclamationIcon:Mgt,MailFastIcon:xgt,MailFilledIcon:zgt,MailForwardIcon:Igt,MailHeartIcon:ygt,MailMinusIcon:Cgt,MailOffIcon:Sgt,MailOpenedFilledIcon:$gt,MailOpenedIcon:Agt,MailPauseIcon:Bgt,MailPinIcon:Hgt,MailPlusIcon:Ngt,MailQuestionIcon:jgt,MailSearchIcon:Pgt,MailShareIcon:Lgt,MailStarIcon:Dgt,MailUpIcon:Ogt,MailXIcon:Fgt,MailIcon:Rgt,MailboxOffIcon:Tgt,MailboxIcon:Egt,ManIcon:Vgt,ManualGearboxIcon:_gt,Map2Icon:Wgt,MapOffIcon:Xgt,MapPinBoltIcon:qgt,MapPinCancelIcon:Ygt,MapPinCheckIcon:Ugt,MapPinCodeIcon:Ggt,MapPinCogIcon:Zgt,MapPinDollarIcon:Kgt,MapPinDownIcon:Qgt,MapPinExclamationIcon:Jgt,MapPinFilledIcon:twt,MapPinHeartIcon:ewt,MapPinMinusIcon:nwt,MapPinOffIcon:lwt,MapPinPauseIcon:rwt,MapPinPinIcon:owt,MapPinPlusIcon:swt,MapPinQuestionIcon:awt,MapPinSearchIcon:iwt,MapPinShareIcon:hwt,MapPinStarIcon:dwt,MapPinUpIcon:cwt,MapPinXIcon:uwt,MapPinIcon:pwt,MapPinsIcon:gwt,MapSearchIcon:wwt,MapIcon:vwt,MarkdownOffIcon:fwt,MarkdownIcon:mwt,Marquee2Icon:kwt,MarqueeOffIcon:bwt,MarqueeIcon:Mwt,MarsIcon:xwt,MaskOffIcon:zwt,MaskIcon:Iwt,MasksTheaterOffIcon:ywt,MasksTheaterIcon:Cwt,MassageIcon:Swt,MatchstickIcon:$wt,Math1Divide2Icon:Awt,Math1Divide3Icon:Bwt,MathAvgIcon:Hwt,MathEqualGreaterIcon:Nwt,MathEqualLowerIcon:jwt,MathFunctionOffIcon:Pwt,MathFunctionYIcon:Lwt,MathFunctionIcon:Dwt,MathGreaterIcon:Owt,MathIntegralXIcon:Fwt,MathIntegralIcon:Rwt,MathIntegralsIcon:Twt,MathLowerIcon:Ewt,MathMaxIcon:Vwt,MathMinIcon:_wt,MathNotIcon:Wwt,MathOffIcon:Xwt,MathPiDivide2Icon:qwt,MathPiIcon:Ywt,MathSymbolsIcon:Uwt,MathXDivide2Icon:Gwt,MathXDivideY2Icon:Zwt,MathXDivideYIcon:Kwt,MathXMinusXIcon:Qwt,MathXMinusYIcon:Jwt,MathXPlusXIcon:tvt,MathXPlusYIcon:evt,MathXyIcon:nvt,MathYMinusYIcon:lvt,MathYPlusYIcon:rvt,MathIcon:ovt,MaximizeOffIcon:svt,MaximizeIcon:avt,MeatOffIcon:ivt,MeatIcon:hvt,Medal2Icon:dvt,MedalIcon:cvt,MedicalCrossFilledIcon:uvt,MedicalCrossOffIcon:pvt,MedicalCrossIcon:gvt,MedicineSyrupIcon:wvt,MeepleIcon:vvt,MenorahIcon:fvt,Menu2Icon:mvt,MenuOrderIcon:kvt,MenuIcon:bvt,Message2BoltIcon:Mvt,Message2CancelIcon:xvt,Message2CheckIcon:zvt,Message2CodeIcon:Ivt,Message2CogIcon:yvt,Message2DollarIcon:Cvt,Message2DownIcon:Svt,Message2ExclamationIcon:$vt,Message2HeartIcon:Avt,Message2MinusIcon:Bvt,Message2OffIcon:Hvt,Message2PauseIcon:Nvt,Message2PinIcon:jvt,Message2PlusIcon:Pvt,Message2QuestionIcon:Lvt,Message2SearchIcon:Dvt,Message2ShareIcon:Ovt,Message2StarIcon:Fvt,Message2UpIcon:Rvt,Message2XIcon:Tvt,Message2Icon:Evt,MessageBoltIcon:Vvt,MessageCancelIcon:_vt,MessageChatbotIcon:Wvt,MessageCheckIcon:Xvt,MessageCircle2FilledIcon:qvt,MessageCircle2Icon:Yvt,MessageCircleBoltIcon:Uvt,MessageCircleCancelIcon:Gvt,MessageCircleCheckIcon:Zvt,MessageCircleCodeIcon:Kvt,MessageCircleCogIcon:Qvt,MessageCircleDollarIcon:Jvt,MessageCircleDownIcon:t3t,MessageCircleExclamationIcon:e3t,MessageCircleHeartIcon:n3t,MessageCircleMinusIcon:l3t,MessageCircleOffIcon:r3t,MessageCirclePauseIcon:o3t,MessageCirclePinIcon:s3t,MessageCirclePlusIcon:a3t,MessageCircleQuestionIcon:i3t,MessageCircleSearchIcon:h3t,MessageCircleShareIcon:d3t,MessageCircleStarIcon:c3t,MessageCircleUpIcon:u3t,MessageCircleXIcon:p3t,MessageCircleIcon:g3t,MessageCodeIcon:w3t,MessageCogIcon:v3t,MessageDollarIcon:f3t,MessageDotsIcon:m3t,MessageDownIcon:k3t,MessageExclamationIcon:b3t,MessageForwardIcon:M3t,MessageHeartIcon:x3t,MessageLanguageIcon:z3t,MessageMinusIcon:I3t,MessageOffIcon:y3t,MessagePauseIcon:C3t,MessagePinIcon:S3t,MessagePlusIcon:$3t,MessageQuestionIcon:A3t,MessageReportIcon:B3t,MessageSearchIcon:H3t,MessageShareIcon:N3t,MessageStarIcon:j3t,MessageUpIcon:P3t,MessageXIcon:L3t,MessageIcon:D3t,MessagesOffIcon:O3t,MessagesIcon:F3t,MeteorOffIcon:R3t,MeteorIcon:T3t,MickeyFilledIcon:E3t,MickeyIcon:V3t,Microphone2OffIcon:_3t,Microphone2Icon:W3t,MicrophoneOffIcon:X3t,MicrophoneIcon:q3t,MicroscopeOffIcon:Y3t,MicroscopeIcon:U3t,MicrowaveOffIcon:G3t,MicrowaveIcon:Z3t,MilitaryAwardIcon:K3t,MilitaryRankIcon:Q3t,MilkOffIcon:J3t,MilkIcon:tft,MilkshakeIcon:eft,MinimizeIcon:nft,MinusVerticalIcon:lft,MinusIcon:rft,MistOffIcon:oft,MistIcon:sft,MobiledataOffIcon:aft,MobiledataIcon:ift,MoneybagIcon:hft,MoodAngryIcon:dft,MoodAnnoyed2Icon:cft,MoodAnnoyedIcon:uft,MoodBoyIcon:pft,MoodCheckIcon:gft,MoodCogIcon:wft,MoodConfuzedFilledIcon:vft,MoodConfuzedIcon:fft,MoodCrazyHappyIcon:mft,MoodCryIcon:kft,MoodDollarIcon:bft,MoodEditIcon:Mft,MoodEmptyFilledIcon:xft,MoodEmptyIcon:zft,MoodHappyFilledIcon:Ift,MoodHappyIcon:yft,MoodHeartIcon:Cft,MoodKidFilledIcon:Sft,MoodKidIcon:$ft,MoodLookLeftIcon:Aft,MoodLookRightIcon:Bft,MoodMinusIcon:Hft,MoodNerdIcon:Nft,MoodNervousIcon:jft,MoodNeutralFilledIcon:Pft,MoodNeutralIcon:Lft,MoodOffIcon:Dft,MoodPinIcon:Oft,MoodPlusIcon:Fft,MoodSad2Icon:Rft,MoodSadDizzyIcon:Tft,MoodSadFilledIcon:Eft,MoodSadSquintIcon:Vft,MoodSadIcon:_ft,MoodSearchIcon:Wft,MoodShareIcon:Xft,MoodSickIcon:qft,MoodSilenceIcon:Yft,MoodSingIcon:Uft,MoodSmileBeamIcon:Gft,MoodSmileDizzyIcon:Zft,MoodSmileFilledIcon:Kft,MoodSmileIcon:Qft,MoodSuprisedIcon:Jft,MoodTongueWink2Icon:t5t,MoodTongueWinkIcon:e5t,MoodTongueIcon:n5t,MoodUnamusedIcon:l5t,MoodUpIcon:r5t,MoodWink2Icon:o5t,MoodWinkIcon:s5t,MoodWrrrIcon:a5t,MoodXIcon:i5t,MoodXdIcon:h5t,Moon2Icon:d5t,MoonFilledIcon:c5t,MoonOffIcon:u5t,MoonStarsIcon:p5t,MoonIcon:g5t,MopedIcon:w5t,MotorbikeIcon:v5t,MountainOffIcon:f5t,MountainIcon:m5t,Mouse2Icon:k5t,MouseOffIcon:b5t,MouseIcon:M5t,MoustacheIcon:x5t,MovieOffIcon:z5t,MovieIcon:I5t,MugOffIcon:y5t,MugIcon:C5t,Multiplier05xIcon:S5t,Multiplier15xIcon:$5t,Multiplier1xIcon:A5t,Multiplier2xIcon:B5t,MushroomFilledIcon:H5t,MushroomOffIcon:N5t,MushroomIcon:j5t,MusicOffIcon:P5t,MusicIcon:L5t,NavigationFilledIcon:D5t,NavigationOffIcon:O5t,NavigationIcon:F5t,NeedleThreadIcon:R5t,NeedleIcon:T5t,NetworkOffIcon:E5t,NetworkIcon:V5t,NewSectionIcon:_5t,NewsOffIcon:W5t,NewsIcon:X5t,NfcOffIcon:q5t,NfcIcon:Y5t,NoCopyrightIcon:U5t,NoCreativeCommonsIcon:G5t,NoDerivativesIcon:Z5t,NorthStarIcon:K5t,NoteOffIcon:Q5t,NoteIcon:J5t,NotebookOffIcon:tmt,NotebookIcon:emt,NotesOffIcon:nmt,NotesIcon:lmt,NotificationOffIcon:rmt,NotificationIcon:omt,Number0Icon:smt,Number1Icon:amt,Number2Icon:imt,Number3Icon:hmt,Number4Icon:dmt,Number5Icon:cmt,Number6Icon:umt,Number7Icon:pmt,Number8Icon:gmt,Number9Icon:wmt,NumberIcon:vmt,NumbersIcon:fmt,NurseIcon:mmt,OctagonFilledIcon:kmt,OctagonOffIcon:bmt,OctagonIcon:Mmt,OctahedronOffIcon:xmt,OctahedronPlusIcon:zmt,OctahedronIcon:Imt,OldIcon:ymt,OlympicsOffIcon:Cmt,OlympicsIcon:Smt,OmIcon:$mt,OmegaIcon:Amt,OutboundIcon:Bmt,OutletIcon:Hmt,OvalFilledIcon:Nmt,OvalVerticalFilledIcon:jmt,OvalVerticalIcon:Pmt,OvalIcon:Lmt,OverlineIcon:Dmt,PackageExportIcon:Omt,PackageImportIcon:Fmt,PackageOffIcon:Rmt,PackageIcon:Tmt,PackagesIcon:Emt,PacmanIcon:Vmt,PageBreakIcon:_mt,PaintFilledIcon:Wmt,PaintOffIcon:Xmt,PaintIcon:qmt,PaletteOffIcon:Ymt,PaletteIcon:Umt,PanoramaHorizontalOffIcon:Gmt,PanoramaHorizontalIcon:Zmt,PanoramaVerticalOffIcon:Kmt,PanoramaVerticalIcon:Qmt,PaperBagOffIcon:Jmt,PaperBagIcon:tkt,PaperclipIcon:ekt,ParachuteOffIcon:nkt,ParachuteIcon:lkt,ParenthesesOffIcon:rkt,ParenthesesIcon:okt,ParkingOffIcon:skt,ParkingIcon:akt,PasswordIcon:ikt,PawFilledIcon:hkt,PawOffIcon:dkt,PawIcon:ckt,PdfIcon:ukt,PeaceIcon:pkt,PencilMinusIcon:gkt,PencilOffIcon:wkt,PencilPlusIcon:vkt,PencilIcon:fkt,Pennant2FilledIcon:mkt,Pennant2Icon:kkt,PennantFilledIcon:bkt,PennantOffIcon:Mkt,PennantIcon:xkt,PentagonFilledIcon:zkt,PentagonOffIcon:Ikt,PentagonIcon:ykt,PentagramIcon:Ckt,PepperOffIcon:Skt,PepperIcon:$kt,PercentageIcon:Akt,PerfumeIcon:Bkt,PerspectiveOffIcon:Hkt,PerspectiveIcon:Nkt,PhoneCallIcon:jkt,PhoneCallingIcon:Pkt,PhoneCheckIcon:Lkt,PhoneFilledIcon:Dkt,PhoneIncomingIcon:Okt,PhoneOffIcon:Fkt,PhoneOutgoingIcon:Rkt,PhonePauseIcon:Tkt,PhonePlusIcon:Ekt,PhoneXIcon:Vkt,PhoneIcon:_kt,PhotoAiIcon:Wkt,PhotoBoltIcon:Xkt,PhotoCancelIcon:qkt,PhotoCheckIcon:Ykt,PhotoCodeIcon:Ukt,PhotoCogIcon:Gkt,PhotoDollarIcon:Zkt,PhotoDownIcon:Kkt,PhotoEditIcon:Qkt,PhotoExclamationIcon:Jkt,PhotoFilledIcon:t6t,PhotoHeartIcon:e6t,PhotoMinusIcon:n6t,PhotoOffIcon:l6t,PhotoPauseIcon:r6t,PhotoPinIcon:o6t,PhotoPlusIcon:s6t,PhotoQuestionIcon:a6t,PhotoSearchIcon:i6t,PhotoSensor2Icon:h6t,PhotoSensor3Icon:d6t,PhotoSensorIcon:c6t,PhotoShareIcon:u6t,PhotoShieldIcon:p6t,PhotoStarIcon:g6t,PhotoUpIcon:w6t,PhotoXIcon:v6t,PhotoIcon:f6t,PhysotherapistIcon:m6t,PictureInPictureOffIcon:k6t,PictureInPictureOnIcon:b6t,PictureInPictureTopIcon:M6t,PictureInPictureIcon:x6t,PigMoneyIcon:z6t,PigOffIcon:I6t,PigIcon:y6t,PilcrowIcon:C6t,PillOffIcon:S6t,PillIcon:$6t,PillsIcon:A6t,PinFilledIcon:B6t,PinIcon:H6t,PingPongIcon:N6t,PinnedFilledIcon:j6t,PinnedOffIcon:P6t,PinnedIcon:L6t,PizzaOffIcon:D6t,PizzaIcon:O6t,PlaceholderIcon:F6t,PlaneArrivalIcon:R6t,PlaneDepartureIcon:T6t,PlaneInflightIcon:E6t,PlaneOffIcon:V6t,PlaneTiltIcon:_6t,PlaneIcon:W6t,PlanetOffIcon:X6t,PlanetIcon:q6t,Plant2OffIcon:Y6t,Plant2Icon:U6t,PlantOffIcon:G6t,PlantIcon:Z6t,PlayBasketballIcon:K6t,PlayCardOffIcon:Q6t,PlayCardIcon:J6t,PlayFootballIcon:t7t,PlayHandballIcon:e7t,PlayVolleyballIcon:n7t,PlayerEjectFilledIcon:l7t,PlayerEjectIcon:r7t,PlayerPauseFilledIcon:o7t,PlayerPauseIcon:s7t,PlayerPlayFilledIcon:a7t,PlayerPlayIcon:i7t,PlayerRecordFilledIcon:h7t,PlayerRecordIcon:d7t,PlayerSkipBackFilledIcon:c7t,PlayerSkipBackIcon:u7t,PlayerSkipForwardFilledIcon:p7t,PlayerSkipForwardIcon:g7t,PlayerStopFilledIcon:w7t,PlayerStopIcon:v7t,PlayerTrackNextFilledIcon:f7t,PlayerTrackNextIcon:m7t,PlayerTrackPrevFilledIcon:k7t,PlayerTrackPrevIcon:b7t,PlaylistAddIcon:M7t,PlaylistOffIcon:x7t,PlaylistXIcon:z7t,PlaylistIcon:I7t,PlaystationCircleIcon:y7t,PlaystationSquareIcon:C7t,PlaystationTriangleIcon:S7t,PlaystationXIcon:$7t,PlugConnectedXIcon:A7t,PlugConnectedIcon:B7t,PlugOffIcon:H7t,PlugXIcon:N7t,PlugIcon:j7t,PlusEqualIcon:P7t,PlusMinusIcon:L7t,PlusIcon:D7t,PngIcon:O7t,PodiumOffIcon:F7t,PodiumIcon:R7t,PointFilledIcon:T7t,PointOffIcon:E7t,PointIcon:V7t,PointerBoltIcon:_7t,PointerCancelIcon:W7t,PointerCheckIcon:X7t,PointerCodeIcon:q7t,PointerCogIcon:Y7t,PointerDollarIcon:U7t,PointerDownIcon:G7t,PointerExclamationIcon:Z7t,PointerHeartIcon:K7t,PointerMinusIcon:Q7t,PointerOffIcon:J7t,PointerPauseIcon:tbt,PointerPinIcon:ebt,PointerPlusIcon:nbt,PointerQuestionIcon:lbt,PointerSearchIcon:rbt,PointerShareIcon:obt,PointerStarIcon:sbt,PointerUpIcon:abt,PointerXIcon:ibt,PointerIcon:hbt,PokeballOffIcon:dbt,PokeballIcon:cbt,PokerChipIcon:ubt,PolaroidFilledIcon:pbt,PolaroidIcon:gbt,PolygonOffIcon:wbt,PolygonIcon:vbt,PooIcon:fbt,PoolOffIcon:mbt,PoolIcon:kbt,PowerIcon:bbt,PrayIcon:Mbt,PremiumRightsIcon:xbt,PrescriptionIcon:zbt,PresentationAnalyticsIcon:Ibt,PresentationOffIcon:ybt,PresentationIcon:Cbt,PrinterOffIcon:Sbt,PrinterIcon:$bt,PrismOffIcon:Abt,PrismPlusIcon:Bbt,PrismIcon:Hbt,PrisonIcon:Nbt,ProgressAlertIcon:jbt,ProgressBoltIcon:Pbt,ProgressCheckIcon:Lbt,ProgressDownIcon:Dbt,ProgressHelpIcon:Obt,ProgressXIcon:Fbt,ProgressIcon:Rbt,PromptIcon:Tbt,PropellerOffIcon:Ebt,PropellerIcon:Vbt,PumpkinScaryIcon:_bt,Puzzle2Icon:Wbt,PuzzleFilledIcon:Xbt,PuzzleOffIcon:qbt,PuzzleIcon:Ybt,PyramidOffIcon:Ubt,PyramidPlusIcon:Gbt,PyramidIcon:Zbt,QrcodeOffIcon:Kbt,QrcodeIcon:Qbt,QuestionMarkIcon:Jbt,QuoteOffIcon:t8t,QuoteIcon:e8t,Radar2Icon:n8t,RadarOffIcon:l8t,RadarIcon:r8t,RadioOffIcon:o8t,RadioIcon:s8t,RadioactiveFilledIcon:a8t,RadioactiveOffIcon:i8t,RadioactiveIcon:h8t,RadiusBottomLeftIcon:d8t,RadiusBottomRightIcon:c8t,RadiusTopLeftIcon:u8t,RadiusTopRightIcon:p8t,RainbowOffIcon:g8t,RainbowIcon:w8t,Rating12PlusIcon:v8t,Rating14PlusIcon:f8t,Rating16PlusIcon:m8t,Rating18PlusIcon:k8t,Rating21PlusIcon:b8t,RazorElectricIcon:M8t,RazorIcon:x8t,Receipt2Icon:z8t,ReceiptOffIcon:I8t,ReceiptRefundIcon:y8t,ReceiptTaxIcon:C8t,ReceiptIcon:S8t,RechargingIcon:$8t,RecordMailOffIcon:A8t,RecordMailIcon:B8t,RectangleFilledIcon:H8t,RectangleVerticalFilledIcon:N8t,RectangleVerticalIcon:j8t,RectangleIcon:P8t,RectangularPrismOffIcon:L8t,RectangularPrismPlusIcon:D8t,RectangularPrismIcon:O8t,RecycleOffIcon:F8t,RecycleIcon:R8t,RefreshAlertIcon:T8t,RefreshDotIcon:E8t,RefreshOffIcon:V8t,RefreshIcon:_8t,RegexOffIcon:W8t,RegexIcon:X8t,RegisteredIcon:q8t,RelationManyToManyIcon:Y8t,RelationOneToManyIcon:U8t,RelationOneToOneIcon:G8t,ReloadIcon:Z8t,RepeatOffIcon:K8t,RepeatOnceIcon:Q8t,RepeatIcon:J8t,ReplaceFilledIcon:t9t,ReplaceOffIcon:e9t,ReplaceIcon:n9t,ReportAnalyticsIcon:l9t,ReportMedicalIcon:r9t,ReportMoneyIcon:o9t,ReportOffIcon:s9t,ReportSearchIcon:a9t,ReportIcon:i9t,ReservedLineIcon:h9t,ResizeIcon:d9t,RibbonHealthIcon:c9t,RingsIcon:u9t,RippleOffIcon:p9t,RippleIcon:g9t,RoadOffIcon:w9t,RoadSignIcon:v9t,RoadIcon:f9t,RobotOffIcon:m9t,RobotIcon:k9t,RocketOffIcon:b9t,RocketIcon:M9t,RollerSkatingIcon:x9t,RollercoasterOffIcon:z9t,RollercoasterIcon:I9t,RosetteFilledIcon:y9t,RosetteNumber0Icon:C9t,RosetteNumber1Icon:S9t,RosetteNumber2Icon:$9t,RosetteNumber3Icon:A9t,RosetteNumber4Icon:B9t,RosetteNumber5Icon:H9t,RosetteNumber6Icon:N9t,RosetteNumber7Icon:j9t,RosetteNumber8Icon:P9t,RosetteNumber9Icon:L9t,RosetteIcon:D9t,Rotate2Icon:O9t,Rotate360Icon:F9t,RotateClockwise2Icon:R9t,RotateClockwiseIcon:T9t,RotateDotIcon:E9t,RotateRectangleIcon:V9t,RotateIcon:_9t,Route2Icon:W9t,RouteOffIcon:X9t,RouteIcon:q9t,RouterOffIcon:Y9t,RouterIcon:U9t,RowInsertBottomIcon:G9t,RowInsertTopIcon:Z9t,RssIcon:K9t,RubberStampOffIcon:Q9t,RubberStampIcon:J9t,Ruler2OffIcon:tMt,Ruler2Icon:eMt,Ruler3Icon:nMt,RulerMeasureIcon:lMt,RulerOffIcon:rMt,RulerIcon:oMt,RunIcon:sMt,STurnDownIcon:aMt,STurnLeftIcon:iMt,STurnRightIcon:hMt,STurnUpIcon:dMt,Sailboat2Icon:cMt,SailboatOffIcon:uMt,SailboatIcon:pMt,SaladIcon:gMt,SaltIcon:wMt,SatelliteOffIcon:vMt,SatelliteIcon:fMt,SausageIcon:mMt,ScaleOffIcon:kMt,ScaleOutlineOffIcon:bMt,ScaleOutlineIcon:MMt,ScaleIcon:xMt,ScanEyeIcon:zMt,ScanIcon:IMt,SchemaOffIcon:yMt,SchemaIcon:CMt,SchoolBellIcon:SMt,SchoolOffIcon:$Mt,SchoolIcon:AMt,ScissorsOffIcon:BMt,ScissorsIcon:HMt,ScooterElectricIcon:NMt,ScooterIcon:jMt,ScoreboardIcon:PMt,ScreenShareOffIcon:LMt,ScreenShareIcon:DMt,ScreenshotIcon:OMt,ScribbleOffIcon:FMt,ScribbleIcon:RMt,ScriptMinusIcon:TMt,ScriptPlusIcon:EMt,ScriptXIcon:VMt,ScriptIcon:_Mt,ScubaMaskOffIcon:WMt,ScubaMaskIcon:XMt,SdkIcon:qMt,SearchOffIcon:YMt,SearchIcon:UMt,SectionSignIcon:GMt,SectionIcon:ZMt,SeedingOffIcon:KMt,SeedingIcon:QMt,SelectAllIcon:JMt,SelectIcon:txt,SelectorIcon:ext,SendOffIcon:nxt,SendIcon:lxt,SeoIcon:rxt,SeparatorHorizontalIcon:oxt,SeparatorVerticalIcon:sxt,SeparatorIcon:axt,Server2Icon:ixt,ServerBoltIcon:hxt,ServerCogIcon:dxt,ServerOffIcon:cxt,ServerIcon:uxt,ServicemarkIcon:pxt,Settings2Icon:gxt,SettingsAutomationIcon:wxt,SettingsBoltIcon:vxt,SettingsCancelIcon:fxt,SettingsCheckIcon:mxt,SettingsCodeIcon:kxt,SettingsCogIcon:bxt,SettingsDollarIcon:Mxt,SettingsDownIcon:xxt,SettingsExclamationIcon:zxt,SettingsFilledIcon:Ixt,SettingsHeartIcon:yxt,SettingsMinusIcon:Cxt,SettingsOffIcon:Sxt,SettingsPauseIcon:$xt,SettingsPinIcon:Axt,SettingsPlusIcon:Bxt,SettingsQuestionIcon:Hxt,SettingsSearchIcon:Nxt,SettingsShareIcon:jxt,SettingsStarIcon:Pxt,SettingsUpIcon:Lxt,SettingsXIcon:Dxt,SettingsIcon:Oxt,ShadowOffIcon:Fxt,ShadowIcon:Rxt,Shape2Icon:Txt,Shape3Icon:Ext,ShapeOffIcon:Vxt,ShapeIcon:_xt,Share2Icon:Wxt,Share3Icon:Xxt,ShareOffIcon:qxt,ShareIcon:Yxt,ShiJumpingIcon:Uxt,ShieldBoltIcon:Gxt,ShieldCancelIcon:Zxt,ShieldCheckFilledIcon:Kxt,ShieldCheckIcon:Qxt,ShieldCheckeredFilledIcon:Jxt,ShieldCheckeredIcon:tzt,ShieldChevronIcon:ezt,ShieldCodeIcon:nzt,ShieldCogIcon:lzt,ShieldDollarIcon:rzt,ShieldDownIcon:ozt,ShieldExclamationIcon:szt,ShieldFilledIcon:azt,ShieldHalfFilledIcon:izt,ShieldHalfIcon:hzt,ShieldHeartIcon:dzt,ShieldLockFilledIcon:czt,ShieldLockIcon:uzt,ShieldMinusIcon:pzt,ShieldOffIcon:gzt,ShieldPauseIcon:wzt,ShieldPinIcon:vzt,ShieldPlusIcon:fzt,ShieldQuestionIcon:mzt,ShieldSearchIcon:kzt,ShieldShareIcon:bzt,ShieldStarIcon:Mzt,ShieldUpIcon:xzt,ShieldXIcon:zzt,ShieldIcon:Izt,ShipOffIcon:yzt,ShipIcon:Czt,ShirtFilledIcon:Szt,ShirtOffIcon:$zt,ShirtSportIcon:Azt,ShirtIcon:Bzt,ShoeOffIcon:Hzt,ShoeIcon:Nzt,ShoppingBagIcon:jzt,ShoppingCartDiscountIcon:Pzt,ShoppingCartOffIcon:Lzt,ShoppingCartPlusIcon:Dzt,ShoppingCartXIcon:Ozt,ShoppingCartIcon:Fzt,ShovelIcon:Rzt,ShredderIcon:Tzt,SignLeftFilledIcon:Ezt,SignLeftIcon:Vzt,SignRightFilledIcon:_zt,SignRightIcon:Wzt,Signal2gIcon:Xzt,Signal3gIcon:qzt,Signal4gPlusIcon:Yzt,Signal4gIcon:Uzt,Signal5gIcon:Gzt,Signal6gIcon:Zzt,SignalEIcon:Kzt,SignalGIcon:Qzt,SignalHPlusIcon:Jzt,SignalHIcon:tIt,SignalLteIcon:eIt,SignatureOffIcon:nIt,SignatureIcon:lIt,SitemapOffIcon:rIt,SitemapIcon:oIt,SkateboardOffIcon:sIt,SkateboardIcon:aIt,SkullIcon:iIt,SlashIcon:hIt,SlashesIcon:dIt,SleighIcon:cIt,SliceIcon:uIt,SlideshowIcon:pIt,SmartHomeOffIcon:gIt,SmartHomeIcon:wIt,SmokingNoIcon:vIt,SmokingIcon:fIt,SnowflakeOffIcon:mIt,SnowflakeIcon:kIt,SnowmanIcon:bIt,SoccerFieldIcon:MIt,SocialOffIcon:xIt,SocialIcon:zIt,SockIcon:IIt,SofaOffIcon:yIt,SofaIcon:CIt,SolarPanel2Icon:SIt,SolarPanelIcon:$It,Sort09Icon:AIt,Sort90Icon:BIt,SortAZIcon:HIt,SortAscending2Icon:NIt,SortAscendingLettersIcon:jIt,SortAscendingNumbersIcon:PIt,SortAscendingIcon:LIt,SortDescending2Icon:DIt,SortDescendingLettersIcon:OIt,SortDescendingNumbersIcon:FIt,SortDescendingIcon:RIt,SortZAIcon:TIt,SosIcon:EIt,SoupOffIcon:VIt,SoupIcon:_It,SourceCodeIcon:WIt,SpaceOffIcon:XIt,SpaceIcon:qIt,SpacingHorizontalIcon:YIt,SpacingVerticalIcon:UIt,SpadeFilledIcon:GIt,SpadeIcon:ZIt,SparklesIcon:KIt,SpeakerphoneIcon:QIt,SpeedboatIcon:JIt,SphereOffIcon:tyt,SpherePlusIcon:eyt,SphereIcon:nyt,SpiderIcon:lyt,SpiralOffIcon:ryt,SpiralIcon:oyt,SportBillardIcon:syt,SprayIcon:ayt,SpyOffIcon:iyt,SpyIcon:hyt,SqlIcon:dyt,Square0FilledIcon:cyt,Square1FilledIcon:uyt,Square2FilledIcon:pyt,Square3FilledIcon:gyt,Square4FilledIcon:wyt,Square5FilledIcon:vyt,Square6FilledIcon:fyt,Square7FilledIcon:myt,Square8FilledIcon:kyt,Square9FilledIcon:byt,SquareArrowDownIcon:Myt,SquareArrowLeftIcon:xyt,SquareArrowRightIcon:zyt,SquareArrowUpIcon:Iyt,SquareAsteriskIcon:yyt,SquareCheckFilledIcon:Cyt,SquareCheckIcon:Syt,SquareChevronDownIcon:$yt,SquareChevronLeftIcon:Ayt,SquareChevronRightIcon:Byt,SquareChevronUpIcon:Hyt,SquareChevronsDownIcon:Nyt,SquareChevronsLeftIcon:jyt,SquareChevronsRightIcon:Pyt,SquareChevronsUpIcon:Lyt,SquareDotIcon:Dyt,SquareF0FilledIcon:Oyt,SquareF0Icon:Fyt,SquareF1FilledIcon:Ryt,SquareF1Icon:Tyt,SquareF2FilledIcon:Eyt,SquareF2Icon:Vyt,SquareF3FilledIcon:_yt,SquareF3Icon:Wyt,SquareF4FilledIcon:Xyt,SquareF4Icon:qyt,SquareF5FilledIcon:Yyt,SquareF5Icon:Uyt,SquareF6FilledIcon:Gyt,SquareF6Icon:Zyt,SquareF7FilledIcon:Kyt,SquareF7Icon:Qyt,SquareF8FilledIcon:Jyt,SquareF8Icon:tCt,SquareF9FilledIcon:eCt,SquareF9Icon:nCt,SquareForbid2Icon:lCt,SquareForbidIcon:rCt,SquareHalfIcon:oCt,SquareKeyIcon:sCt,SquareLetterAIcon:aCt,SquareLetterBIcon:iCt,SquareLetterCIcon:hCt,SquareLetterDIcon:dCt,SquareLetterEIcon:cCt,SquareLetterFIcon:uCt,SquareLetterGIcon:pCt,SquareLetterHIcon:gCt,SquareLetterIIcon:wCt,SquareLetterJIcon:vCt,SquareLetterKIcon:fCt,SquareLetterLIcon:mCt,SquareLetterMIcon:kCt,SquareLetterNIcon:bCt,SquareLetterOIcon:MCt,SquareLetterPIcon:xCt,SquareLetterQIcon:zCt,SquareLetterRIcon:ICt,SquareLetterSIcon:yCt,SquareLetterTIcon:CCt,SquareLetterUIcon:SCt,SquareLetterVIcon:$Ct,SquareLetterWIcon:ACt,SquareLetterXIcon:BCt,SquareLetterYIcon:HCt,SquareLetterZIcon:NCt,SquareMinusIcon:jCt,SquareNumber0Icon:PCt,SquareNumber1Icon:LCt,SquareNumber2Icon:DCt,SquareNumber3Icon:OCt,SquareNumber4Icon:FCt,SquareNumber5Icon:RCt,SquareNumber6Icon:TCt,SquareNumber7Icon:ECt,SquareNumber8Icon:VCt,SquareNumber9Icon:_Ct,SquareOffIcon:WCt,SquarePlusIcon:XCt,SquareRoot2Icon:qCt,SquareRootIcon:YCt,SquareRotatedFilledIcon:UCt,SquareRotatedForbid2Icon:GCt,SquareRotatedForbidIcon:ZCt,SquareRotatedOffIcon:KCt,SquareRotatedIcon:QCt,SquareRoundedArrowDownFilledIcon:JCt,SquareRoundedArrowDownIcon:tSt,SquareRoundedArrowLeftFilledIcon:eSt,SquareRoundedArrowLeftIcon:nSt,SquareRoundedArrowRightFilledIcon:lSt,SquareRoundedArrowRightIcon:rSt,SquareRoundedArrowUpFilledIcon:oSt,SquareRoundedArrowUpIcon:sSt,SquareRoundedCheckFilledIcon:aSt,SquareRoundedCheckIcon:iSt,SquareRoundedChevronDownFilledIcon:hSt,SquareRoundedChevronDownIcon:dSt,SquareRoundedChevronLeftFilledIcon:cSt,SquareRoundedChevronLeftIcon:uSt,SquareRoundedChevronRightFilledIcon:pSt,SquareRoundedChevronRightIcon:gSt,SquareRoundedChevronUpFilledIcon:wSt,SquareRoundedChevronUpIcon:vSt,SquareRoundedChevronsDownFilledIcon:fSt,SquareRoundedChevronsDownIcon:mSt,SquareRoundedChevronsLeftFilledIcon:kSt,SquareRoundedChevronsLeftIcon:bSt,SquareRoundedChevronsRightFilledIcon:MSt,SquareRoundedChevronsRightIcon:xSt,SquareRoundedChevronsUpFilledIcon:zSt,SquareRoundedChevronsUpIcon:ISt,SquareRoundedFilledIcon:ySt,SquareRoundedLetterAIcon:CSt,SquareRoundedLetterBIcon:SSt,SquareRoundedLetterCIcon:$St,SquareRoundedLetterDIcon:ASt,SquareRoundedLetterEIcon:BSt,SquareRoundedLetterFIcon:HSt,SquareRoundedLetterGIcon:NSt,SquareRoundedLetterHIcon:jSt,SquareRoundedLetterIIcon:PSt,SquareRoundedLetterJIcon:LSt,SquareRoundedLetterKIcon:DSt,SquareRoundedLetterLIcon:OSt,SquareRoundedLetterMIcon:FSt,SquareRoundedLetterNIcon:RSt,SquareRoundedLetterOIcon:TSt,SquareRoundedLetterPIcon:ESt,SquareRoundedLetterQIcon:VSt,SquareRoundedLetterRIcon:_St,SquareRoundedLetterSIcon:WSt,SquareRoundedLetterTIcon:XSt,SquareRoundedLetterUIcon:qSt,SquareRoundedLetterVIcon:YSt,SquareRoundedLetterWIcon:USt,SquareRoundedLetterXIcon:GSt,SquareRoundedLetterYIcon:ZSt,SquareRoundedLetterZIcon:KSt,SquareRoundedMinusIcon:QSt,SquareRoundedNumber0FilledIcon:JSt,SquareRoundedNumber0Icon:t$t,SquareRoundedNumber1FilledIcon:e$t,SquareRoundedNumber1Icon:n$t,SquareRoundedNumber2FilledIcon:l$t,SquareRoundedNumber2Icon:r$t,SquareRoundedNumber3FilledIcon:o$t,SquareRoundedNumber3Icon:s$t,SquareRoundedNumber4FilledIcon:a$t,SquareRoundedNumber4Icon:i$t,SquareRoundedNumber5FilledIcon:h$t,SquareRoundedNumber5Icon:d$t,SquareRoundedNumber6FilledIcon:c$t,SquareRoundedNumber6Icon:u$t,SquareRoundedNumber7FilledIcon:p$t,SquareRoundedNumber7Icon:g$t,SquareRoundedNumber8FilledIcon:w$t,SquareRoundedNumber8Icon:v$t,SquareRoundedNumber9FilledIcon:f$t,SquareRoundedNumber9Icon:m$t,SquareRoundedPlusFilledIcon:k$t,SquareRoundedPlusIcon:b$t,SquareRoundedXFilledIcon:M$t,SquareRoundedXIcon:x$t,SquareRoundedIcon:z$t,SquareToggleHorizontalIcon:I$t,SquareToggleIcon:y$t,SquareXIcon:C$t,SquareIcon:S$t,SquaresDiagonalIcon:$$t,SquaresFilledIcon:A$t,Stack2Icon:B$t,Stack3Icon:H$t,StackPopIcon:N$t,StackPushIcon:j$t,StackIcon:P$t,StairsDownIcon:L$t,StairsUpIcon:D$t,StairsIcon:O$t,StarFilledIcon:F$t,StarHalfFilledIcon:R$t,StarHalfIcon:T$t,StarOffIcon:E$t,StarIcon:V$t,StarsFilledIcon:_$t,StarsOffIcon:W$t,StarsIcon:X$t,StatusChangeIcon:q$t,SteamIcon:Y$t,SteeringWheelOffIcon:U$t,SteeringWheelIcon:G$t,StepIntoIcon:Z$t,StepOutIcon:K$t,StereoGlassesIcon:Q$t,StethoscopeOffIcon:J$t,StethoscopeIcon:tAt,StickerIcon:eAt,StormOffIcon:nAt,StormIcon:lAt,Stretching2Icon:rAt,StretchingIcon:oAt,StrikethroughIcon:sAt,SubmarineIcon:aAt,SubscriptIcon:iAt,SubtaskIcon:hAt,SumOffIcon:dAt,SumIcon:cAt,SunFilledIcon:uAt,SunHighIcon:pAt,SunLowIcon:gAt,SunMoonIcon:wAt,SunOffIcon:vAt,SunWindIcon:fAt,SunIcon:mAt,SunglassesIcon:kAt,SunriseIcon:bAt,Sunset2Icon:MAt,SunsetIcon:xAt,SuperscriptIcon:zAt,SvgIcon:IAt,SwimmingIcon:yAt,SwipeIcon:CAt,Switch2Icon:SAt,Switch3Icon:$At,SwitchHorizontalIcon:AAt,SwitchVerticalIcon:BAt,SwitchIcon:HAt,SwordOffIcon:NAt,SwordIcon:jAt,SwordsIcon:PAt,TableAliasIcon:LAt,TableDownIcon:DAt,TableExportIcon:OAt,TableFilledIcon:FAt,TableHeartIcon:RAt,TableImportIcon:TAt,TableMinusIcon:EAt,TableOffIcon:VAt,TableOptionsIcon:_At,TablePlusIcon:WAt,TableShareIcon:XAt,TableShortcutIcon:qAt,TableIcon:YAt,TagOffIcon:UAt,TagIcon:GAt,TagsOffIcon:ZAt,TagsIcon:KAt,Tallymark1Icon:QAt,Tallymark2Icon:JAt,Tallymark3Icon:tBt,Tallymark4Icon:eBt,TallymarksIcon:nBt,TankIcon:lBt,TargetArrowIcon:rBt,TargetOffIcon:oBt,TargetIcon:sBt,TeapotIcon:aBt,TelescopeOffIcon:iBt,TelescopeIcon:hBt,TemperatureCelsiusIcon:dBt,TemperatureFahrenheitIcon:cBt,TemperatureMinusIcon:uBt,TemperatureOffIcon:pBt,TemperaturePlusIcon:gBt,TemperatureIcon:wBt,TemplateOffIcon:vBt,TemplateIcon:fBt,TentOffIcon:mBt,TentIcon:kBt,Terminal2Icon:bBt,TerminalIcon:MBt,TestPipe2Icon:xBt,TestPipeOffIcon:zBt,TestPipeIcon:IBt,TexIcon:yBt,TextCaptionIcon:CBt,TextColorIcon:SBt,TextDecreaseIcon:$Bt,TextDirectionLtrIcon:ABt,TextDirectionRtlIcon:BBt,TextIncreaseIcon:HBt,TextOrientationIcon:NBt,TextPlusIcon:jBt,TextRecognitionIcon:PBt,TextResizeIcon:LBt,TextSizeIcon:DBt,TextSpellcheckIcon:OBt,TextWrapDisabledIcon:FBt,TextWrapIcon:RBt,TextureIcon:TBt,TheaterIcon:EBt,ThermometerIcon:VBt,ThumbDownFilledIcon:_Bt,ThumbDownOffIcon:WBt,ThumbDownIcon:XBt,ThumbUpFilledIcon:qBt,ThumbUpOffIcon:YBt,ThumbUpIcon:UBt,TicTacIcon:GBt,TicketOffIcon:ZBt,TicketIcon:KBt,TieIcon:QBt,TildeIcon:JBt,TiltShiftOffIcon:tHt,TiltShiftIcon:eHt,TimelineEventExclamationIcon:nHt,TimelineEventMinusIcon:lHt,TimelineEventPlusIcon:rHt,TimelineEventTextIcon:oHt,TimelineEventXIcon:sHt,TimelineEventIcon:aHt,TimelineIcon:iHt,TirIcon:hHt,ToggleLeftIcon:dHt,ToggleRightIcon:cHt,ToiletPaperOffIcon:uHt,ToiletPaperIcon:pHt,TomlIcon:gHt,ToolIcon:wHt,ToolsKitchen2OffIcon:vHt,ToolsKitchen2Icon:fHt,ToolsKitchenOffIcon:mHt,ToolsKitchenIcon:kHt,ToolsOffIcon:bHt,ToolsIcon:MHt,TooltipIcon:xHt,TopologyBusIcon:zHt,TopologyComplexIcon:IHt,TopologyFullHierarchyIcon:yHt,TopologyFullIcon:CHt,TopologyRing2Icon:SHt,TopologyRing3Icon:$Ht,TopologyRingIcon:AHt,TopologyStar2Icon:BHt,TopologyStar3Icon:HHt,TopologyStarRing2Icon:NHt,TopologyStarRing3Icon:jHt,TopologyStarRingIcon:PHt,TopologyStarIcon:LHt,ToriiIcon:DHt,TornadoIcon:OHt,TournamentIcon:FHt,TowerOffIcon:RHt,TowerIcon:THt,TrackIcon:EHt,TractorIcon:VHt,TrademarkIcon:_Ht,TrafficConeOffIcon:WHt,TrafficConeIcon:XHt,TrafficLightsOffIcon:qHt,TrafficLightsIcon:YHt,TrainIcon:UHt,TransferInIcon:GHt,TransferOutIcon:ZHt,TransformFilledIcon:KHt,TransformIcon:QHt,TransitionBottomIcon:JHt,TransitionLeftIcon:tNt,TransitionRightIcon:eNt,TransitionTopIcon:nNt,TrashFilledIcon:lNt,TrashOffIcon:rNt,TrashXFilledIcon:oNt,TrashXIcon:sNt,TrashIcon:aNt,TreadmillIcon:iNt,TreeIcon:hNt,TreesIcon:dNt,TrekkingIcon:cNt,TrendingDown2Icon:uNt,TrendingDown3Icon:pNt,TrendingDownIcon:gNt,TrendingUp2Icon:wNt,TrendingUp3Icon:vNt,TrendingUpIcon:fNt,TriangleFilledIcon:mNt,TriangleInvertedFilledIcon:kNt,TriangleInvertedIcon:bNt,TriangleOffIcon:MNt,TriangleSquareCircleIcon:xNt,TriangleIcon:zNt,TrianglesIcon:INt,TridentIcon:yNt,TrolleyIcon:CNt,TrophyFilledIcon:SNt,TrophyOffIcon:$Nt,TrophyIcon:ANt,TrowelIcon:BNt,TruckDeliveryIcon:HNt,TruckLoadingIcon:NNt,TruckOffIcon:jNt,TruckReturnIcon:PNt,TruckIcon:LNt,TxtIcon:DNt,TypographyOffIcon:ONt,TypographyIcon:FNt,UfoOffIcon:RNt,UfoIcon:TNt,UmbrellaFilledIcon:ENt,UmbrellaOffIcon:VNt,UmbrellaIcon:_Nt,UnderlineIcon:WNt,UnlinkIcon:XNt,UploadIcon:qNt,UrgentIcon:YNt,UsbIcon:UNt,UserBoltIcon:GNt,UserCancelIcon:ZNt,UserCheckIcon:KNt,UserCircleIcon:QNt,UserCodeIcon:JNt,UserCogIcon:tjt,UserDollarIcon:ejt,UserDownIcon:njt,UserEditIcon:ljt,UserExclamationIcon:rjt,UserHeartIcon:ojt,UserMinusIcon:sjt,UserOffIcon:ajt,UserPauseIcon:ijt,UserPinIcon:hjt,UserPlusIcon:djt,UserQuestionIcon:cjt,UserSearchIcon:ujt,UserShareIcon:pjt,UserShieldIcon:gjt,UserStarIcon:wjt,UserUpIcon:vjt,UserXIcon:fjt,UserIcon:mjt,UsersGroupIcon:kjt,UsersMinusIcon:bjt,UsersPlusIcon:Mjt,UsersIcon:xjt,UvIndexIcon:zjt,UxCircleIcon:Ijt,VaccineBottleOffIcon:yjt,VaccineBottleIcon:Cjt,VaccineOffIcon:Sjt,VaccineIcon:$jt,VacuumCleanerIcon:Ajt,VariableMinusIcon:Bjt,VariableOffIcon:Hjt,VariablePlusIcon:Njt,VariableIcon:jjt,VectorBezier2Icon:Pjt,VectorBezierArcIcon:Ljt,VectorBezierCircleIcon:Djt,VectorBezierIcon:Ojt,VectorOffIcon:Fjt,VectorSplineIcon:Rjt,VectorTriangleOffIcon:Tjt,VectorTriangleIcon:Ejt,VectorIcon:Vjt,VenusIcon:_jt,VersionsFilledIcon:Wjt,VersionsOffIcon:Xjt,VersionsIcon:qjt,VideoMinusIcon:Yjt,VideoOffIcon:Ujt,VideoPlusIcon:Gjt,VideoIcon:Zjt,View360OffIcon:Kjt,View360Icon:Qjt,ViewfinderOffIcon:Jjt,ViewfinderIcon:tPt,ViewportNarrowIcon:ePt,ViewportWideIcon:nPt,VinylIcon:lPt,VipOffIcon:rPt,VipIcon:oPt,VirusOffIcon:sPt,VirusSearchIcon:aPt,VirusIcon:iPt,VocabularyOffIcon:hPt,VocabularyIcon:dPt,VolcanoIcon:cPt,Volume2Icon:uPt,Volume3Icon:pPt,VolumeOffIcon:gPt,VolumeIcon:wPt,WalkIcon:vPt,WallOffIcon:fPt,WallIcon:mPt,WalletOffIcon:kPt,WalletIcon:bPt,WallpaperOffIcon:MPt,WallpaperIcon:xPt,WandOffIcon:zPt,WandIcon:IPt,WashDry1Icon:yPt,WashDry2Icon:CPt,WashDry3Icon:SPt,WashDryAIcon:$Pt,WashDryDipIcon:APt,WashDryFIcon:BPt,WashDryFlatIcon:HPt,WashDryHangIcon:NPt,WashDryOffIcon:jPt,WashDryPIcon:PPt,WashDryShadeIcon:LPt,WashDryWIcon:DPt,WashDryIcon:OPt,WashDrycleanOffIcon:FPt,WashDrycleanIcon:RPt,WashEcoIcon:TPt,WashGentleIcon:EPt,WashHandIcon:VPt,WashMachineIcon:_Pt,WashOffIcon:WPt,WashPressIcon:XPt,WashTemperature1Icon:qPt,WashTemperature2Icon:YPt,WashTemperature3Icon:UPt,WashTemperature4Icon:GPt,WashTemperature5Icon:ZPt,WashTemperature6Icon:KPt,WashTumbleDryIcon:QPt,WashTumbleOffIcon:JPt,WashIcon:tLt,WaterpoloIcon:eLt,WaveSawToolIcon:nLt,WaveSineIcon:lLt,WaveSquareIcon:rLt,WebhookOffIcon:oLt,WebhookIcon:sLt,WeightIcon:aLt,WheelchairOffIcon:iLt,WheelchairIcon:hLt,WhirlIcon:dLt,Wifi0Icon:cLt,Wifi1Icon:uLt,Wifi2Icon:pLt,WifiOffIcon:gLt,WifiIcon:wLt,WindOffIcon:vLt,WindIcon:fLt,WindmillFilledIcon:mLt,WindmillOffIcon:kLt,WindmillIcon:bLt,WindowMaximizeIcon:MLt,WindowMinimizeIcon:xLt,WindowOffIcon:zLt,WindowIcon:ILt,WindsockIcon:yLt,WiperWashIcon:CLt,WiperIcon:SLt,WomanIcon:$Lt,WoodIcon:ALt,WorldBoltIcon:BLt,WorldCancelIcon:HLt,WorldCheckIcon:NLt,WorldCodeIcon:jLt,WorldCogIcon:PLt,WorldDollarIcon:LLt,WorldDownIcon:DLt,WorldDownloadIcon:OLt,WorldExclamationIcon:FLt,WorldHeartIcon:RLt,WorldLatitudeIcon:TLt,WorldLongitudeIcon:ELt,WorldMinusIcon:VLt,WorldOffIcon:_Lt,WorldPauseIcon:WLt,WorldPinIcon:XLt,WorldPlusIcon:qLt,WorldQuestionIcon:YLt,WorldSearchIcon:ULt,WorldShareIcon:GLt,WorldStarIcon:ZLt,WorldUpIcon:KLt,WorldUploadIcon:QLt,WorldWwwIcon:JLt,WorldXIcon:tDt,WorldIcon:eDt,WreckingBallIcon:nDt,WritingOffIcon:lDt,WritingSignOffIcon:rDt,WritingSignIcon:oDt,WritingIcon:sDt,XIcon:aDt,XboxAIcon:iDt,XboxBIcon:hDt,XboxXIcon:dDt,XboxYIcon:cDt,XdIcon:uDt,YinYangFilledIcon:pDt,YinYangIcon:gDt,YogaIcon:wDt,ZeppelinOffIcon:vDt,ZeppelinIcon:fDt,ZipIcon:mDt,ZodiacAquariusIcon:kDt,ZodiacAriesIcon:bDt,ZodiacCancerIcon:MDt,ZodiacCapricornIcon:xDt,ZodiacGeminiIcon:zDt,ZodiacLeoIcon:IDt,ZodiacLibraIcon:yDt,ZodiacPiscesIcon:CDt,ZodiacSagittariusIcon:SDt,ZodiacScorpioIcon:$Dt,ZodiacTaurusIcon:ADt,ZodiacVirgoIcon:BDt,ZoomCancelIcon:HDt,ZoomCheckFilledIcon:NDt,ZoomCheckIcon:jDt,ZoomCodeIcon:PDt,ZoomExclamationIcon:LDt,ZoomFilledIcon:DDt,ZoomInAreaFilledIcon:ODt,ZoomInAreaIcon:FDt,ZoomInFilledIcon:RDt,ZoomInIcon:TDt,ZoomMoneyIcon:EDt,ZoomOutAreaIcon:VDt,ZoomOutFilledIcon:_Dt,ZoomOutIcon:WDt,ZoomPanIcon:XDt,ZoomQuestionIcon:qDt,ZoomReplaceIcon:YDt,ZoomResetIcon:UDt,ZzzOffIcon:GDt,ZzzIcon:ZDt}),QDt={install(n){Object.entries(KDt).forEach(([l,r])=>n.component(l,r))}};function JDt(){const n=[{id:1,username:"",password:"",firstName:"AstrBot",lastName:"dev"}],l=window.fetch;window.fetch=function(r,h){return new Promise((c,g)=>{setTimeout(v,500);function v(){switch(!0){case(r.endsWith("/users/authenticate")&&h.method==="POST"):return k();case(r.endsWith("/users")&&h.method==="GET"):return x();default:return l(r,h).then(D=>c(D)).catch(D=>g(D))}}function k(){P();const D=n[0];return D?I({id:D.id,username:D.username,firstName:D.firstName,lastName:D.lastName,token:"fake-jwt-token"}):$("Username or password is incorrect")}function x(){return B()?I(n):S()}function I(D){c({ok:!0,text:()=>Promise.resolve(JSON.stringify(D))})}function S(){c({status:401,text:()=>Promise.resolve(JSON.stringify({message:"Unauthorized"}))})}function $(D){c({status:400,text:()=>Promise.resolve(JSON.stringify({message:D}))})}function B(){return h.headers.Authorization==="Bearer fake-jwt-token"}function P(){return h.body&&JSON.parse(h.body)}})}}class tOt{constructor(l){this.standards={strict:"strict",loose:"loose",html5:"html5"},this.previewBody=null,this.close=null,this.previewBodyUtilPrintBtn=null,this.selectArray=[],this.counter=0,this.settings={standard:this.standards.html5},Object.assign(this.settings,l),this.init()}init(){this.counter++,this.settings.id=`printArea_${this.counter}`;let l="";this.settings.url&&!this.settings.asyncUrl&&(l=this.settings.url);let r=this;if(this.settings.asyncUrl)return void r.settings.asyncUrl(function(c){let g=r.getPrintWindow(c);r.settings.preview?r.previewIfrmaeLoad():r.print(g)},r.settings.vue);let h=this.getPrintWindow(l);this.settings.url||this.write(h.doc),this.settings.preview?this.previewIfrmaeLoad():this.print(h)}addEvent(l,r,h){l.addEventListener?l.addEventListener(r,h,!1):l.attachEvent?l.attachEvent("on"+r,h):l["on"+r]=h}previewIfrmaeLoad(){let l=document.getElementById("vue-pirnt-nb-previewBox");if(l){let r=this,h=l.querySelector("iframe");this.settings.previewBeforeOpenCallback(),this.addEvent(h,"load",function(){r.previewBoxShow(),r.removeCanvasImg(),r.settings.previewOpenCallback()}),this.addEvent(l.querySelector(".previewBodyUtilPrintBtn"),"click",function(){r.settings.beforeOpenCallback(),r.settings.openCallback(),h.contentWindow.print(),r.settings.closeCallback()})}}removeCanvasImg(){let l=this;try{if(l.elsdom){let r=l.elsdom.querySelectorAll(".canvasImg");for(let h=0;h${this.getHead()}${this.getBody()}`),l.close()}docType(){return this.settings.standard===this.standards.html5?"":``}getHead(){let l="",r="",h="";this.settings.extraHead&&this.settings.extraHead.replace(/([^,]+)/g,g=>{l+=g}),[].forEach.call(document.querySelectorAll("link"),function(g){g.href.indexOf(".css")>=0&&(r+=``)});let c=document.styleSheets;if(c&&c.length>0)for(let g=0;g{r+=``}),`${this.settings.popTitle}${l}${r}`}getBody(){let l=this.settings.ids;return l=l.replace(new RegExp("#","g"),""),this.elsdom=this.beforeHanler(document.getElementById(l)),""+this.getFormData(this.elsdom).outerHTML+""}beforeHanler(l){let r=l.querySelectorAll("canvas");for(let h=0;h{if(typeof l.value=="string")c=l.value;else{if(typeof l.value!="object"||!l.value.id)return void window.print();{c=l.value.id;let I=c.replace(new RegExp("#","g"),"");document.getElementById(I)||(console.log("id in Error"),c="")}}x()},(g=n).addEventListener?g.addEventListener(v,k,!1):g.attachEvent?g.attachEvent("on"+v,k):g["on"+v]=k;const x=()=>{new tOt({ids:c,vue:h,url:l.value.url,standard:"",extraHead:l.value.extraHead,extraCss:l.value.extraCss,zIndex:l.value.zIndex||20002,previewTitle:l.value.previewTitle||"打印预览",previewPrintBtnLabel:l.value.previewPrintBtnLabel||"打印",popTitle:l.value.popTitle,preview:l.value.preview||!1,asyncUrl:l.value.asyncUrl,previewBeforeOpenCallback(){l.value.previewBeforeOpenCallback&&l.value.previewBeforeOpenCallback(h)},previewOpenCallback(){l.value.previewOpenCallback&&l.value.previewOpenCallback(h)},openCallback(){l.value.openCallback&&l.value.openCallback(h)},closeCallback(){l.value.closeCallback&&l.value.closeCallback(h)},beforeOpenCallback(){l.value.beforeOpenCallback&&l.value.beforeOpenCallback(h)}})}},install:function(n){n.directive("print",qg)}};const Pr=Tu(nm);JDt();Pr.use(fa);Pr.use(Ex);Pr.use(Yf());Pr.use(QDt);Pr.use(qg);Pr.use(Yx);Pr.use($x).mount("#app");export{Cdt as $,T4 as A,je as B,SM as C,Lt as D,Ff as E,Kt as F,nM as G,B9 as H,Me as I,I8 as J,ag as K,hg as L,mvt as M,W9 as N,Ir as O,og as P,M7 as Q,Ik as R,yk as S,e7 as T,ms as U,eM as V,mM as W,lp as X,vM as Y,pi as Z,sh as _,t as a,q as a0,tx as a1,Og as a2,J0 as a3,th as a4,o8 as a5,ig as a6,Gv as a7,qM as a8,UM as a9,$9 as aa,M8 as ab,NW as ac,Ht as ad,Ln as ae,Ze as af,we as ag,Ve as ah,_t as ai,Se as aj,uo as ak,bn as al,Yw as am,J7 as an,X7 as ao,_x as ap,eOt as aq,Vx as ar,V9 as as,Jf as at,$e as au,Dn as av,Z5 as aw,Rh as b,_a as c,pn as d,e,U9 as f,R4 as g,Uv as h,As as i,xe as j,j3 as k,F4 as l,O4 as m,Ml as n,xs as o,qv as p,o as q,Xc as r,A3 as s,vv as t,Yv as u,G0 as v,Ch as w,Cr as x,Wt as y,ci as z}; diff --git a/addons/dashboard/dist/assets/md5-3db5e3e8.js b/addons/dashboard/dist/assets/md5-3db5e3e8.js new file mode 100644 index 000000000..9d0824fcc --- /dev/null +++ b/addons/dashboard/dist/assets/md5-3db5e3e8.js @@ -0,0 +1,9 @@ +import{ap as K,aq as Y,ar as V}from"./index-c75f6ac5.js";var C={exports:{}};const $={},k=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),z=K(k);/** + * [js-md5]{@link https://github.com/emn178/js-md5} + * + * @namespace md5 + * @version 0.8.3 + * @author Chen, Yi-Cyuan [emn178@gmail.com] + * @copyright Chen, Yi-Cyuan 2014-2023 + * @license MIT + */(function(E){(function(){var b="input is invalid type",J="finalize already called",w=typeof window=="object",c=w?window:{};c.JS_MD5_NO_WINDOW&&(w=!1);var j=!w&&typeof self=="object",O=!c.JS_MD5_NO_NODE_JS&&typeof process=="object"&&process.versions&&process.versions.node;O?c=Y:j&&(c=self);var I=!c.JS_MD5_NO_COMMON_JS&&!0&&E.exports,p=!c.JS_MD5_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",n="0123456789abcdef".split(""),H=[128,32768,8388608,-2147483648],l=[0,8,16,24],y=["hex","array","digest","buffer","arrayBuffer","base64"],F="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""),x=[],B;if(p){var S=new ArrayBuffer(68);B=new Uint8Array(S),x=new Uint32Array(S)}var d=Array.isArray;(c.JS_MD5_NO_NODE_JS||!d)&&(d=function(t){return Object.prototype.toString.call(t)==="[object Array]"});var _=ArrayBuffer.isView;p&&(c.JS_MD5_NO_ARRAY_BUFFER_IS_VIEW||!_)&&(_=function(t){return typeof t=="object"&&t.buffer&&t.buffer.constructor===ArrayBuffer});var M=function(t){var e=typeof t;if(e==="string")return[t,!0];if(e!=="object"||t===null)throw new Error(b);if(p&&t.constructor===ArrayBuffer)return[new Uint8Array(t),!1];if(!d(t)&&!_(t))throw new Error(b);return[t,!1]},R=function(t){return function(e){return new o(!0).update(e)[t]()}},P=function(){var t=R("hex");O&&(t=W(t)),t.create=function(){return new o},t.update=function(r){return t.create().update(r)};for(var e=0;e>>6,u[h++]=128|r&63):r<55296||r>=57344?(u[h++]=224|r>>>12,u[h++]=128|r>>>6&63,u[h++]=128|r&63):(r=65536+((r&1023)<<10|t.charCodeAt(++a)&1023),u[h++]=240|r>>>18,u[h++]=128|r>>>12&63,u[h++]=128|r>>>6&63,u[h++]=128|r&63);else for(h=this.start;a>>2]|=r<>>2]|=(192|r>>>6)<>>2]|=(128|r&63)<=57344?(s[h>>>2]|=(224|r>>>12)<>>2]|=(128|r>>>6&63)<>>2]|=(128|r&63)<>>2]|=(240|r>>>18)<>>2]|=(128|r>>>12&63)<>>2]|=(128|r>>>6&63)<>>2]|=(128|r&63)<>>2]|=t[a]<=64?(this.start=h-64,this.hash(),this.hashed=!0):this.start=h}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296<<0,this.bytes=this.bytes%4294967296),this},o.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var t=this.blocks,e=this.lastByteIndex;t[e>>>2]|=H[e&3],e>=56&&(this.hashed||this.hash(),t[0]=t[16],t[16]=t[1]=t[2]=t[3]=t[4]=t[5]=t[6]=t[7]=t[8]=t[9]=t[10]=t[11]=t[12]=t[13]=t[14]=t[15]=0),t[14]=this.bytes<<3,t[15]=this.hBytes<<3|this.bytes>>>29,this.hash()}},o.prototype.hash=function(){var t,e,i,r,a,h,f=this.blocks;this.first?(t=f[0]-680876937,t=(t<<7|t>>>25)-271733879<<0,r=(-1732584194^t&2004318071)+f[1]-117830708,r=(r<<12|r>>>20)+t<<0,i=(-271733879^r&(t^-271733879))+f[2]-1126478375,i=(i<<17|i>>>15)+r<<0,e=(t^i&(r^t))+f[3]-1316259209,e=(e<<22|e>>>10)+i<<0):(t=this.h0,e=this.h1,i=this.h2,r=this.h3,t+=(r^e&(i^r))+f[0]-680876936,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+f[1]-389564586,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+f[2]+606105819,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+f[3]-1044525330,e=(e<<22|e>>>10)+i<<0),t+=(r^e&(i^r))+f[4]-176418897,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+f[5]+1200080426,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+f[6]-1473231341,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+f[7]-45705983,e=(e<<22|e>>>10)+i<<0,t+=(r^e&(i^r))+f[8]+1770035416,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+f[9]-1958414417,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+f[10]-42063,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+f[11]-1990404162,e=(e<<22|e>>>10)+i<<0,t+=(r^e&(i^r))+f[12]+1804603682,t=(t<<7|t>>>25)+e<<0,r+=(i^t&(e^i))+f[13]-40341101,r=(r<<12|r>>>20)+t<<0,i+=(e^r&(t^e))+f[14]-1502002290,i=(i<<17|i>>>15)+r<<0,e+=(t^i&(r^t))+f[15]+1236535329,e=(e<<22|e>>>10)+i<<0,t+=(i^r&(e^i))+f[1]-165796510,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+f[6]-1069501632,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+f[11]+643717713,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+f[0]-373897302,e=(e<<20|e>>>12)+i<<0,t+=(i^r&(e^i))+f[5]-701558691,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+f[10]+38016083,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+f[15]-660478335,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+f[4]-405537848,e=(e<<20|e>>>12)+i<<0,t+=(i^r&(e^i))+f[9]+568446438,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+f[14]-1019803690,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+f[3]-187363961,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+f[8]+1163531501,e=(e<<20|e>>>12)+i<<0,t+=(i^r&(e^i))+f[13]-1444681467,t=(t<<5|t>>>27)+e<<0,r+=(e^i&(t^e))+f[2]-51403784,r=(r<<9|r>>>23)+t<<0,i+=(t^e&(r^t))+f[7]+1735328473,i=(i<<14|i>>>18)+r<<0,e+=(r^t&(i^r))+f[12]-1926607734,e=(e<<20|e>>>12)+i<<0,a=e^i,t+=(a^r)+f[5]-378558,t=(t<<4|t>>>28)+e<<0,r+=(a^t)+f[8]-2022574463,r=(r<<11|r>>>21)+t<<0,h=r^t,i+=(h^e)+f[11]+1839030562,i=(i<<16|i>>>16)+r<<0,e+=(h^i)+f[14]-35309556,e=(e<<23|e>>>9)+i<<0,a=e^i,t+=(a^r)+f[1]-1530992060,t=(t<<4|t>>>28)+e<<0,r+=(a^t)+f[4]+1272893353,r=(r<<11|r>>>21)+t<<0,h=r^t,i+=(h^e)+f[7]-155497632,i=(i<<16|i>>>16)+r<<0,e+=(h^i)+f[10]-1094730640,e=(e<<23|e>>>9)+i<<0,a=e^i,t+=(a^r)+f[13]+681279174,t=(t<<4|t>>>28)+e<<0,r+=(a^t)+f[0]-358537222,r=(r<<11|r>>>21)+t<<0,h=r^t,i+=(h^e)+f[3]-722521979,i=(i<<16|i>>>16)+r<<0,e+=(h^i)+f[6]+76029189,e=(e<<23|e>>>9)+i<<0,a=e^i,t+=(a^r)+f[9]-640364487,t=(t<<4|t>>>28)+e<<0,r+=(a^t)+f[12]-421815835,r=(r<<11|r>>>21)+t<<0,h=r^t,i+=(h^e)+f[15]+530742520,i=(i<<16|i>>>16)+r<<0,e+=(h^i)+f[2]-995338651,e=(e<<23|e>>>9)+i<<0,t+=(i^(e|~r))+f[0]-198630844,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+f[7]+1126891415,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+f[14]-1416354905,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+f[5]-57434055,e=(e<<21|e>>>11)+i<<0,t+=(i^(e|~r))+f[12]+1700485571,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+f[3]-1894986606,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+f[10]-1051523,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+f[1]-2054922799,e=(e<<21|e>>>11)+i<<0,t+=(i^(e|~r))+f[8]+1873313359,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+f[15]-30611744,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+f[6]-1560198380,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+f[13]+1309151649,e=(e<<21|e>>>11)+i<<0,t+=(i^(e|~r))+f[4]-145523070,t=(t<<6|t>>>26)+e<<0,r+=(e^(t|~i))+f[11]-1120210379,r=(r<<10|r>>>22)+t<<0,i+=(t^(r|~e))+f[2]+718787259,i=(i<<15|i>>>17)+r<<0,e+=(r^(i|~t))+f[9]-343485551,e=(e<<21|e>>>11)+i<<0,this.first?(this.h0=t+1732584193<<0,this.h1=e-271733879<<0,this.h2=i-1732584194<<0,this.h3=r+271733878<<0,this.first=!1):(this.h0=this.h0+t<<0,this.h1=this.h1+e<<0,this.h2=this.h2+i<<0,this.h3=this.h3+r<<0)},o.prototype.hex=function(){this.finalize();var t=this.h0,e=this.h1,i=this.h2,r=this.h3;return n[t>>>4&15]+n[t&15]+n[t>>>12&15]+n[t>>>8&15]+n[t>>>20&15]+n[t>>>16&15]+n[t>>>28&15]+n[t>>>24&15]+n[e>>>4&15]+n[e&15]+n[e>>>12&15]+n[e>>>8&15]+n[e>>>20&15]+n[e>>>16&15]+n[e>>>28&15]+n[e>>>24&15]+n[i>>>4&15]+n[i&15]+n[i>>>12&15]+n[i>>>8&15]+n[i>>>20&15]+n[i>>>16&15]+n[i>>>28&15]+n[i>>>24&15]+n[r>>>4&15]+n[r&15]+n[r>>>12&15]+n[r>>>8&15]+n[r>>>20&15]+n[r>>>16&15]+n[r>>>28&15]+n[r>>>24&15]},o.prototype.toString=o.prototype.hex,o.prototype.digest=function(){this.finalize();var t=this.h0,e=this.h1,i=this.h2,r=this.h3;return[t&255,t>>>8&255,t>>>16&255,t>>>24&255,e&255,e>>>8&255,e>>>16&255,e>>>24&255,i&255,i>>>8&255,i>>>16&255,i>>>24&255,r&255,r>>>8&255,r>>>16&255,r>>>24&255]},o.prototype.array=o.prototype.digest,o.prototype.arrayBuffer=function(){this.finalize();var t=new ArrayBuffer(16),e=new Uint32Array(t);return e[0]=this.h0,e[1]=this.h1,e[2]=this.h2,e[3]=this.h3,t},o.prototype.buffer=o.prototype.arrayBuffer,o.prototype.base64=function(){for(var t,e,i,r="",a=this.array(),h=0;h<15;)t=a[h++],e=a[h++],i=a[h++],r+=F[t>>>2]+F[(t<<4|e>>>4)&63]+F[(e<<2|i>>>6)&63]+F[i&63];return t=a[h],r+=F[t>>>2]+F[t<<4&63]+"==",r};function A(t,e){var i,r=M(t);if(t=r[0],r[1]){var a=[],h=t.length,f=0,s;for(i=0;i>>6,a[f++]=128|s&63):s<55296||s>=57344?(a[f++]=224|s>>>12,a[f++]=128|s>>>6&63,a[f++]=128|s&63):(s=65536+((s&1023)<<10|t.charCodeAt(++i)&1023),a[f++]=240|s>>>18,a[f++]=128|s>>>12&63,a[f++]=128|s>>>6&63,a[f++]=128|s&63);t=a}t.length>64&&(t=new o(!0).update(t).array());var u=[],D=[];for(i=0;i<64;++i){var U=t[i]||0;u[i]=92^U,D[i]=54^U}o.call(this,e),this.update(D),this.oKeyPad=u,this.inner=!0,this.sharedMemory=e}A.prototype=new o,A.prototype.finalize=function(){if(o.prototype.finalize.call(this),this.inner){this.inner=!1;var t=this.array();o.call(this,this.sharedMemory),this.update(this.oKeyPad),this.update(t),o.prototype.finalize.call(this)}};var v=P();v.md5=v,v.md5.hmac=T(),I?E.exports=v:c.md5=v})()})(C);var q=C.exports;const m=V(q);export{m as a,q as m}; diff --git a/addons/dashboard/dist/index.html b/addons/dashboard/dist/index.html index 3b37e8933..60bb6e043 100644 --- a/addons/dashboard/dist/index.html +++ b/addons/dashboard/dist/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" /> AstrBot - 仪表盘 - + diff --git a/addons/dashboard/helper.py b/addons/dashboard/helper.py index 0c39b88c9..320190bd0 100644 --- a/addons/dashboard/helper.py +++ b/addons/dashboard/helper.py @@ -382,6 +382,14 @@ class DashBoardHelper(): value=config['default_personality_str'], path="default_personality_str", ), + DashBoardConfig( + config_type="item", + val_type="string", + name="面板用户名", + description="是的,就是你理解的这个面板的用户名", + value=config['dashboard_username'], + path="dashboard_username", + ), ] ) diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py index cce4a15b0..555ad7508 100644 --- a/addons/dashboard/server.py +++ b/addons/dashboard/server.py @@ -6,6 +6,7 @@ from util import general_utils as gu from dataclasses import dataclass import logging from cores.database.conn import dbConn +from util.cmd_config import CmdConfig @dataclass class DashBoardData(): @@ -27,6 +28,7 @@ class AstrBotDashBoard(): log = logging.getLogger('werkzeug') log.setLevel(logging.ERROR) self.funcs = {} + self.cc = CmdConfig() @self.dashboard_be.get("/") @@ -34,10 +36,46 @@ class AstrBotDashBoard(): # 返回页面 return self.dashboard_be.send_static_file("index.html") - # 如果是以.js结尾的 - # @self.dashboard_be.get("/.js") - # def js(path): - # return self.dashboard_be.send_static_file(path + ".js") + @self.dashboard_be.post("/api/authenticate") + def authenticate(): + username = self.cc.get("dashboard_username", "") + password = self.cc.get("dashboard_password", "") + # 获得请求体 + post_data = request.json + if post_data["username"] == username and post_data["password"] == password: + return Response( + status="success", + message="登录成功。", + data={ + "token": "astrbot-test-token", + "username": username + } + ).__dict__ + else: + return Response( + status="error", + message="用户名或密码错误。", + data=None + ).__dict__ + + @self.dashboard_be.post("/api/change_password") + def change_password(): + password = self.cc.get("dashboard_password", "") + # 获得请求体 + post_data = request.json + if post_data["password"] == password: + self.cc.put("dashboard_password", post_data["new_password"]) + return Response( + status="success", + message="修改成功。", + data=None + ).__dict__ + else: + return Response( + status="error", + message="原密码错误。", + data=None + ).__dict__ @self.dashboard_be.get("/api/stats") def get_stats(): diff --git a/app.py b/app.py new file mode 100644 index 000000000..dc0f19c28 --- /dev/null +++ b/app.py @@ -0,0 +1,159 @@ +# fastapi +from typing import Union + +from fastapi import FastAPI, Request + +import pymysql +import re +import requests +from pydantic import BaseModel +import os +import threading +import time +import json + + +app = FastAPI() +db = pymysql.connect( + host='localhost', + port=3306, + user='sorbot', + password='sorbot123.,.', + database='sorbot' +) + +cnt_10m = 0 +cnt_ips_10m = 0 +url = 'http://localhost:9091/metrics/job/sorbot' +ip_ls = [] + +class Tick(BaseModel): + version: str + count: int + ip: str + others: str + +def get_from_db(ip: str): + db.ping() + cursor = db.cursor() + sql = f"SELECT * FROM bases WHERE ip = '{ip}'" + print(sql) + cursor.execute(sql) + result = cursor.fetchone() + cursor.close() + return result + +# 当前 IP:117.133.151.135 来自于:中国 北京 北京 移动 +# def filter_ip(ori: str): +# # 正则表达式得到ip +# ip = re.findall(r'\b(?:\d{1,3}\.){3}\d{1,3}\b|\b(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}\b', ori)[0] +# return ip + +def thread_total_cnt(): + global cnt_10m, cnt_ips_10m + while True: + try: + metric_data = 'qqc_total ' + str(cnt_10m) + cmd = "echo " + metric_data + " | curl --data-binary @- " + url + print(cmd) + res = os.system('echo \'' + metric_data + '\' | curl --data-binary @- ' + url) + cnt_10m = 0 + except Exception as e: + print(e) + + try: + metric_data = 'qqc_ips_total ' + str(cnt_ips_10m) + cmd = "echo " + metric_data + " | curl --data-binary @- " + url + print(cmd) + res = os.system('echo \'' + metric_data + '\' | curl --data-binary @- ' + url) + cnt_ips_10m = 0 + ip_ls.clear() + except Exception as e: + print(e) + print('thread_total_cnt sleep 5 min') + time.sleep(610) + + +# 启动线程 +t = threading.Thread(target=thread_total_cnt, daemon=True) +t.start() + + + +def push_to_gateway(tick: Tick): + # push to gateway + ip = tick.ip + others = json.loads(tick.others) + admin = others['admin'] + if admin is None: + admin = "unknown" + if tick.version is None: + tick.version = "unknown" + metric_data = 'qqc_ips{version="' + tick.version + '",ip="' + ip + '",admin="' + admin + '"} ' + str(tick.count) + print(metric_data) + # r = requests.post(url, data=metric_data.encode('utf-8'), ) + # print(r.text) + cmd = "echo " + metric_data + " | curl --data-binary @- " + url + print(cmd) + res = os.system('echo \'' + metric_data + '\' | curl --data-binary @- ' + url) + + + +@app.post("/upload") +def upload(tick: Tick, request: Request): + global cnt_ips_10m, cnt_10m + # ip = filter_ip(tick.ip) + ip = request.client.host + print("IP", ip, "|", "TICK", tick.__dict__) + tick.ip = ip + result = get_from_db(ip) + try: + if result is None: + # 插入数据库 + db.ping() + cursor = db.cursor() + sql = f"INSERT INTO bases (ip, count, version, others) VALUES ('{ip}', {tick.count}, '{tick.version}', '{tick.others}')" + cursor.execute(sql) + db.commit() + cursor.close() + else: + # 更新数据库 + db.ping() + cursor = db.cursor() + cnt = result[1] + tick.count + sql = f"UPDATE bases SET count = {cnt}, version = '{tick.version}', others = '{tick.others}' WHERE ip = '{ip}'" + cursor.execute(sql) + db.commit() + cursor.close() + # print(result) + except Exception as e: + print(e) + raise e + try: + # insert 到 clicks 表。结构是:total_cnt, ip, timestamp, version + db.ping() + cursor = db.cursor() + sql = f"INSERT INTO clicks (total_cnt, ip, timestamp, version) VALUES ({tick.count}, '{ip}', {int(time.time())}, '{tick.version}')" + cursor.execute(sql) + db.commit() + cursor.close() + except Exception as e: + print(e) + raise e + cnt_10m += tick.count + if ip not in ip_ls: + cnt_ips_10m += 1 + ip_ls.append(ip) + + # push to gateway + push_to_gateway(tick) + + return { + "code": 200, + "status": "ok", + } + + +@app.get("/items/{item_id}") +def read_item(item_id: int, q: Union[str, None] = None): + return {"item_id": item_id, "q": q} \ No newline at end of file diff --git a/cores/qqbot/core.py b/cores/qqbot/core.py index 6634b0d19..09227339f 100644 --- a/cores/qqbot/core.py +++ b/cores/qqbot/core.py @@ -127,6 +127,8 @@ cc.init_attributes("openai_image_generate", { }) cc.init_attributes("http_proxy", "") cc.init_attributes("https_proxy", "") +cc.init_attributes("dashboard_username", "") +cc.init_attributes("dashboard_password", "") # cc.init_attributes(["qq_forward_mode"], False) # QQ机器人 From 57bde33bfe6f3d518a0d764fce5a90c7b5118e1c Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Thu, 21 Dec 2023 14:00:29 +0800 Subject: [PATCH 13/17] =?UTF-8?q?perf:=20=E4=BC=98=E5=8C=96=E6=8F=92?= =?UTF-8?q?=E4=BB=B6=E4=BB=A3=E7=A0=81=E7=BB=93=E6=9E=84=E3=80=82=20fix:?= =?UTF-8?q?=20=E4=BF=AE=E5=A4=8D=E5=8D=B8=E8=BD=BD=E6=8F=92=E4=BB=B6?= =?UTF-8?q?=E4=B9=8B=E5=90=8E=EF=BC=8C=E7=BA=BF=E7=A8=8B=E6=97=A0=E9=99=90?= =?UTF-8?q?=E8=87=AA=E6=97=8B=E7=9A=84=E9=97=AE=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 + addons/dashboard/server.py | 12 +- app.py | 159 ---------------------- cores/qqbot/core.py | 5 +- model/command/command.py | 164 +++++------------------ util/{ => function_calling}/func_call.py | 0 util/{ => function_calling}/gplugin.py | 2 +- util/general_utils.py | 13 +- util/plugin_util.py | 120 ++++++++++++++++- 9 files changed, 178 insertions(+), 299 deletions(-) delete mode 100644 app.py rename util/{ => function_calling}/func_call.py (100%) rename util/{ => function_calling}/gplugin.py (99%) diff --git a/.gitignore b/.gitignore index 690818a8c..7ee4d84dd 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ botpy.log data.db configs/session configs/config.yaml +**/.DS_Store +temp diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py index 555ad7508..645e3a786 100644 --- a/addons/dashboard/server.py +++ b/addons/dashboard/server.py @@ -155,6 +155,14 @@ class AstrBotDashBoard(): message="", data=_plugin_resp ).__dict__ + + @self.dashboard_be.post("/api/extensions/install") + def install_plugin(): + pass + + @self.dashboard_be.post("/api/extensions/uninstall") + def uninstall_plugin(): + pass def register(self, name: str): def decorator(func): @@ -163,7 +171,9 @@ class AstrBotDashBoard(): return decorator def run(self): - gu.log(f"\n\n==================\n您可以访问:\n\thttp://localhost:6185/\n来登录可视化面板。\n==================\n\n", tag="可视化面板") + ip_address = gu.get_local_ip_addresses() + ip_str = f"http://{ip_address}:6185\n\thttp://localhost:6185" + gu.log(f"\n\n==================\n您可以访问:\n\n\t{ip_str}\n\n来登录可视化面板。\n注意: 所有配置项现已全量迁移至 cmd_config.json 文件下。您可以登录可视化面板在线修改配置。\n==================\n\n", tag="可视化面板") # self.dashboard_be.run(host="0.0.0.0", port=6185) http_server = make_server('0.0.0.0', 6185, self.dashboard_be) http_server.serve_forever() diff --git a/app.py b/app.py deleted file mode 100644 index dc0f19c28..000000000 --- a/app.py +++ /dev/null @@ -1,159 +0,0 @@ -# fastapi -from typing import Union - -from fastapi import FastAPI, Request - -import pymysql -import re -import requests -from pydantic import BaseModel -import os -import threading -import time -import json - - -app = FastAPI() -db = pymysql.connect( - host='localhost', - port=3306, - user='sorbot', - password='sorbot123.,.', - database='sorbot' -) - -cnt_10m = 0 -cnt_ips_10m = 0 -url = 'http://localhost:9091/metrics/job/sorbot' -ip_ls = [] - -class Tick(BaseModel): - version: str - count: int - ip: str - others: str - -def get_from_db(ip: str): - db.ping() - cursor = db.cursor() - sql = f"SELECT * FROM bases WHERE ip = '{ip}'" - print(sql) - cursor.execute(sql) - result = cursor.fetchone() - cursor.close() - return result - -# 当前 IP:117.133.151.135 来自于:中国 北京 北京 移动 -# def filter_ip(ori: str): -# # 正则表达式得到ip -# ip = re.findall(r'\b(?:\d{1,3}\.){3}\d{1,3}\b|\b(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}\b', ori)[0] -# return ip - -def thread_total_cnt(): - global cnt_10m, cnt_ips_10m - while True: - try: - metric_data = 'qqc_total ' + str(cnt_10m) - cmd = "echo " + metric_data + " | curl --data-binary @- " + url - print(cmd) - res = os.system('echo \'' + metric_data + '\' | curl --data-binary @- ' + url) - cnt_10m = 0 - except Exception as e: - print(e) - - try: - metric_data = 'qqc_ips_total ' + str(cnt_ips_10m) - cmd = "echo " + metric_data + " | curl --data-binary @- " + url - print(cmd) - res = os.system('echo \'' + metric_data + '\' | curl --data-binary @- ' + url) - cnt_ips_10m = 0 - ip_ls.clear() - except Exception as e: - print(e) - print('thread_total_cnt sleep 5 min') - time.sleep(610) - - -# 启动线程 -t = threading.Thread(target=thread_total_cnt, daemon=True) -t.start() - - - -def push_to_gateway(tick: Tick): - # push to gateway - ip = tick.ip - others = json.loads(tick.others) - admin = others['admin'] - if admin is None: - admin = "unknown" - if tick.version is None: - tick.version = "unknown" - metric_data = 'qqc_ips{version="' + tick.version + '",ip="' + ip + '",admin="' + admin + '"} ' + str(tick.count) - print(metric_data) - # r = requests.post(url, data=metric_data.encode('utf-8'), ) - # print(r.text) - cmd = "echo " + metric_data + " | curl --data-binary @- " + url - print(cmd) - res = os.system('echo \'' + metric_data + '\' | curl --data-binary @- ' + url) - - - -@app.post("/upload") -def upload(tick: Tick, request: Request): - global cnt_ips_10m, cnt_10m - # ip = filter_ip(tick.ip) - ip = request.client.host - print("IP", ip, "|", "TICK", tick.__dict__) - tick.ip = ip - result = get_from_db(ip) - try: - if result is None: - # 插入数据库 - db.ping() - cursor = db.cursor() - sql = f"INSERT INTO bases (ip, count, version, others) VALUES ('{ip}', {tick.count}, '{tick.version}', '{tick.others}')" - cursor.execute(sql) - db.commit() - cursor.close() - else: - # 更新数据库 - db.ping() - cursor = db.cursor() - cnt = result[1] + tick.count - sql = f"UPDATE bases SET count = {cnt}, version = '{tick.version}', others = '{tick.others}' WHERE ip = '{ip}'" - cursor.execute(sql) - db.commit() - cursor.close() - # print(result) - except Exception as e: - print(e) - raise e - try: - # insert 到 clicks 表。结构是:total_cnt, ip, timestamp, version - db.ping() - cursor = db.cursor() - sql = f"INSERT INTO clicks (total_cnt, ip, timestamp, version) VALUES ({tick.count}, '{ip}', {int(time.time())}, '{tick.version}')" - cursor.execute(sql) - db.commit() - cursor.close() - except Exception as e: - print(e) - raise e - cnt_10m += tick.count - if ip not in ip_ls: - cnt_ips_10m += 1 - ip_ls.append(ip) - - # push to gateway - push_to_gateway(tick) - - return { - "code": 200, - "status": "ok", - } - - -@app.get("/items/{item_id}") -def read_item(item_id: int, q: Union[str, None] = None): - return {"item_id": item_id, "q": q} \ No newline at end of file diff --git a/cores/qqbot/core.py b/cores/qqbot/core.py index 09227339f..a76a20738 100644 --- a/cores/qqbot/core.py +++ b/cores/qqbot/core.py @@ -33,7 +33,8 @@ from model.provider.provider import Provider from model.command.command import Command from util import general_utils as gu from util.cmd_config import CmdConfig as cc -import util.gplugin as gplugin +import util.function_calling.gplugin as gplugin +import util.plugin_util as putil from PIL import Image as PILImage import io import traceback @@ -357,7 +358,7 @@ def initBot(cfg): gu.log("--------加载插件--------", gu.LEVEL_INFO, fg=gu.FG_COLORS['yellow']) # 加载插件 _command = Command(None, _global_object) - ok, err = _command.plugin_reload(_global_object.cached_plugins) + ok, err = putil.plugin_reload(_global_object.cached_plugins) if ok: gu.log("加载插件完成", gu.LEVEL_INFO) else: diff --git a/model/command/command.py b/model/command/command.py index 0d70f8ce8..b167690e0 100644 --- a/model/command/command.py +++ b/model/command/command.py @@ -118,46 +118,6 @@ class Command: return None except BaseException as e: raise e - - def plugin_reload(self, cached_plugins: dict, target: str = None, all: bool = False): - plugins = self.get_plugin_modules() - if plugins is None: - return False, "未找到任何插件模块" - fail_rec = "" - for plugin in plugins: - try: - p = plugin['module'] - root_dir_name = plugin['pname'] - if p not in cached_plugins or p == target or all: - module = __import__("addons.plugins." + root_dir_name + "." + p, fromlist=[p]) - if p in cached_plugins: - module = importlib.reload(module) - cls = putil.get_classes(p, module) - obj = getattr(module, cls[0])() - try: - info = obj.info() - if 'name' not in info or 'desc' not in info or 'version' not in info or 'author' not in info: - fail_rec += f"载入插件{p}失败,原因: 插件信息不完整\n" - continue - if isinstance(info, dict) == False: - fail_rec += f"载入插件{p}失败,原因: 插件信息格式不正确\n" - continue - except BaseException as e: - fail_rec += f"调用插件{p} info失败, 原因: {str(e)}\n" - continue - cached_plugins[info['name']] = { - "module": module, - "clsobj": obj, - "info": info, - "name": info['name'], - "root_dir_name": root_dir_name, - } - except BaseException as e: - fail_rec += f"加载{p}插件出现问题,原因 {str(e)}\n" - if fail_rec == "": - return True, None - else: - return False, fail_rec ''' 插件指令 @@ -170,81 +130,28 @@ class Command: p = gu.create_text_image("【插件指令面板】", "安装插件: \nplugin i 插件Github地址\n卸载插件: \nplugin d 插件名 \n重载插件: \nplugin reload\n查看插件列表:\nplugin l\n更新插件: plugin u 插件名\n") return True, [Image.fromFileSystem(p)], "plugin" else: - ppath = "" - if os.path.exists("addons/plugins"): - ppath = "addons/plugins" - elif os.path.exists("QQChannelChatGPT/addons/plugins"): - ppath = "QQChannelChatGPT/addons/plugins" - else: - return False, "未找到插件目录", "plugin" if l[1] == "i": if role != "admin": return False, f"你的身份组{role}没有权限安装插件", "plugin" try: - # 删除末尾的/ - if l[2].endswith("/"): - l[2] = l[2][:-1] - # 得到url的最后一段 - d = l[2].split("/")[-1] - # 转换非法字符:- - d = d.replace("-", "_") - # 创建文件夹 - plugin_path = os.path.join(ppath, d) - if os.path.exists(plugin_path): - shutil.rmtree(plugin_path) - os.mkdir(plugin_path) - Repo.clone_from(l[2],to_path=plugin_path,branch='master') - - # 读取插件的requirements.txt - if os.path.exists(os.path.join(plugin_path, "requirements.txt")): - mm = pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt")]) - if mm != 0: - return False, "插件依赖安装失败,需要您手动pip安装对应插件的依赖。", "plugin" - # 加载没缓存的插件 - ok, err = self.plugin_reload(cached_plugins, target=d) - if ok: - return True, "插件拉取并载入成功~", "plugin" - else: - # if os.path.exists(plugin_path): - # shutil.rmtree(plugin_path) - return False, f"插件拉取载入失败。\n跟踪: \n{err}", "plugin" + putil.install_plugin(l[2], cached_plugins) + return True, "插件拉取并载入成功~", "plugin" except BaseException as e: return False, f"拉取插件失败,原因: {str(e)}", "plugin" elif l[1] == "d": if role != "admin": return False, f"你的身份组{role}没有权限删除插件", "plugin" - if l[2] not in cached_plugins: - return False, "未找到该插件", "plugin" - try: - root_dir_name = cached_plugins[l[2]]["root_dir_name"] - self.remove_dir(os.path.join(ppath, root_dir_name)) - del cached_plugins[l[2]] + putil.uninstall_plugin(l[2], cached_plugins) return True, "插件卸载成功~", "plugin" except BaseException as e: return False, f"卸载插件失败,原因: {str(e)}", "plugin" elif l[1] == "u": - if l[2] not in cached_plugins: - return False, "未找到该插件", "plugin" - root_dir_name = cached_plugins[l[2]]["root_dir_name"] - plugin_path = os.path.join(ppath, root_dir_name) try: - repo = Repo(path = plugin_path) - repo.remotes.origin.pull() - # 读取插件的requirements.txt - if os.path.exists(os.path.join(plugin_path, "requirements.txt")): - mm = pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt")]) - if mm != 0: - return False, "插件依赖安装失败,需要您手动pip安装对应插件的依赖。", "plugin" - - ok, err = self.plugin_reload(cached_plugins, target=l[2]) - if ok: - return True, "\n更新插件成功!!", "plugin" - else: - return False, "更新插件成功,但是重载插件失败。\n问题跟踪: \n"+err, "plugin" + putil.update_plugin(l[2], cached_plugins) + return True, "\n更新插件成功!!", "plugin" except BaseException as e: - return False, "更新插件失败, 请使用plugin i指令覆盖安装", "plugin" - + return False, f"更新插件失败,原因: {str(e)}。\n建议: 使用 plugin i 指令进行覆盖安装(插件数据可能会丢失)", "plugin" elif l[1] == "l": try: plugin_list_info = "\n".join([f"{k}: \n名称: {v['info']['name']}\n简介: {v['info']['desc']}\n版本: {v['info']['version']}\n作者: {v['info']['author']}\n" for k, v in cached_plugins.items()]) @@ -262,45 +169,34 @@ class Command: return False, "未找到该插件", "plugin" except BaseException as e: return False, f"获取插件信息失败,原因: {str(e)}", "plugin" - elif l[1] == "reload": - if role != "admin": - return False, f"你的身份组{role}没有权限重载插件", "plugin" - for plugin in cached_plugins: - try: - print(f"更新插件 {plugin} 依赖...") - plugin_path = os.path.join(ppath, cached_plugins[plugin]["root_dir_name"]) - if os.path.exists(os.path.join(plugin_path, "requirements.txt")): - mm = pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt"), "--quiet"]) - if mm != 0: - return False, "插件依赖安装失败,需要您手动pip安装对应插件的依赖。", "plugin" - except BaseException as e: - print(f"插件{plugin}依赖安装失败,原因: {str(e)}") - try: - ok, err = self.plugin_reload(cached_plugins, all = True) - if ok: - return True, "\n重载插件成功~", "plugin" - else: - # if os.path.exists(plugin_path): - # shutil.rmtree(plugin_path) - return False, f"插件重载失败。\n跟踪: \n{err}", "plugin" - except BaseException as e: - return False, f"插件重载失败,原因: {str(e)}", "plugin" - + # elif l[1] == "reload": + # if role != "admin": + # return False, f"你的身份组{role}没有权限重载插件", "plugin" + # for plugin in cached_plugins: + # try: + # print(f"更新插件 {plugin} 依赖...") + # plugin_path = os.path.join(ppath, cached_plugins[plugin]["root_dir_name"]) + # if os.path.exists(os.path.join(plugin_path, "requirements.txt")): + # mm = pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt"), "--quiet"]) + # if mm != 0: + # return False, "插件依赖安装失败,需要您手动pip安装对应插件的依赖。", "plugin" + # except BaseException as e: + # print(f"插件{plugin}依赖安装失败,原因: {str(e)}") + # try: + # ok, err = self.plugin_reload(cached_plugins, all = True) + # if ok: + # return True, "\n重载插件成功~", "plugin" + # else: + # # if os.path.exists(plugin_path): + # # shutil.rmtree(plugin_path) + # return False, f"插件重载失败。\n跟踪: \n{err}", "plugin" + # except BaseException as e: + # return False, f"插件重载失败,原因: {str(e)}", "plugin" + elif l[1] == "dev": if role != "admin": return False, f"你的身份组{role}没有权限开发者模式", "plugin" return True, "cached_plugins: \n" + str(cached_plugins), "plugin" - - def remove_dir(self, file_path): - while 1: - if not os.path.exists(file_path): - break - try: - shutil.rmtree(file_path) - except PermissionError as e: - err_file_path = str(e).split("\'", 2)[1] - if os.path.exists(err_file_path): - os.chmod(err_file_path, stat.S_IWUSR) ''' nick: 存储机器人的昵称 diff --git a/util/func_call.py b/util/function_calling/func_call.py similarity index 100% rename from util/func_call.py rename to util/function_calling/func_call.py diff --git a/util/gplugin.py b/util/function_calling/gplugin.py similarity index 99% rename from util/gplugin.py rename to util/function_calling/gplugin.py index 5795179ff..6faff1ffa 100644 --- a/util/gplugin.py +++ b/util/function_calling/gplugin.py @@ -2,7 +2,7 @@ import requests import util.general_utils as gu from bs4 import BeautifulSoup import time -from util.func_call import ( +from util.function_calling.func_call import ( FuncCall, FuncCallJsonFormatError, FuncNotFoundError diff --git a/util/general_utils.py b/util/general_utils.py index db8185f9c..de68f2783 100644 --- a/util/general_utils.py +++ b/util/general_utils.py @@ -6,6 +6,7 @@ import os import re import requests from util.cmd_config import CmdConfig +import socket PLATFORM_GOCQ = 'gocq' PLATFORM_QQCHAN = 'qqchan' @@ -520,4 +521,14 @@ def try_migrate_config(old_config: dict): if cc.get("qqbot", None) is None: # 未迁移过 for k in old_config: - cc.put(k, old_config[k]) \ No newline at end of file + cc.put(k, old_config[k]) + +def get_local_ip_addresses(): + try: + s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + s.connect(('8.8.8.8', 80)) + ip = s.getsockname()[0] + finally: + s.close() + + return ip \ No newline at end of file diff --git a/util/plugin_util.py b/util/plugin_util.py index b20e15d21..ef6317102 100644 --- a/util/plugin_util.py +++ b/util/plugin_util.py @@ -3,6 +3,16 @@ ''' import os import inspect +try: + import git.exc + from git.repo import Repo +except ImportError: + pass +import shutil +from pip._internal import main as pipmain +import importlib +import stat + # 找出模块里所有的类名 def get_classes(p_name, arg): @@ -31,4 +41,112 @@ def get_modules(path): "module": file[:-3], }) return modules - \ No newline at end of file + +def get_plugin_store_path(): + if os.path.exists("addons/plugins"): + return "addons/plugins" + elif os.path.exists("QQChannelChatGPT/addons/plugins"): + return "QQChannelChatGPT/addons/plugins" + elif os.path.exists("AstrBot/addons/plugins"): + return "AstrBot/addons/plugins" + else: + raise FileNotFoundError("插件文件夹不存在。") + +def plugin_reload(self, cached_plugins: dict, target: str = None, all: bool = False): + plugins = self.get_plugin_modules() + if plugins is None: + return False, "未找到任何插件模块" + fail_rec = "" + for plugin in plugins: + try: + p = plugin['module'] + root_dir_name = plugin['pname'] + if p not in cached_plugins or p == target or all: + module = __import__("addons.plugins." + root_dir_name + "." + p, fromlist=[p]) + if p in cached_plugins: + module = importlib.reload(module) + cls = get_classes(p, module) + obj = getattr(module, cls[0])() + try: + info = obj.info() + if 'name' not in info or 'desc' not in info or 'version' not in info or 'author' not in info: + fail_rec += f"载入插件{p}失败,原因: 插件信息不完整\n" + continue + if isinstance(info, dict) == False: + fail_rec += f"载入插件{p}失败,原因: 插件信息格式不正确\n" + continue + except BaseException as e: + fail_rec += f"调用插件{p} info失败, 原因: {str(e)}\n" + continue + cached_plugins[info['name']] = { + "module": module, + "clsobj": obj, + "info": info, + "name": info['name'], + "root_dir_name": root_dir_name, + } + except BaseException as e: + fail_rec += f"加载{p}插件出现问题,原因 {str(e)}\n" + if fail_rec == "": + return True, None + else: + return False, fail_rec + +def install_plugin(repo_url: str, cached_plugins: dict): + ppath = get_plugin_store_path() + # 删除末尾的 / + if repo_url.endswith("/"): + repo_url = repo_url[:-1] + # 得到 url 的最后一段 + d = repo_url.split("/")[-1] + # 转换非法字符:- + d = d.replace("-", "_") + # 创建文件夹 + plugin_path = os.path.join(ppath, d) + if os.path.exists(plugin_path): + shutil.rmtree(plugin_path) + Repo.clone_from(repo_url, to_path=plugin_path, branch='master') + # 读取插件的requirements.txt + if os.path.exists(os.path.join(plugin_path, "requirements.txt")): + if pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt")]) != 0: + raise Exception("插件的依赖安装失败, 需要您手动 pip 安装对应插件的依赖。") + ok, err = plugin_reload(cached_plugins, target=d) + if not ok: raise Exception(err) + +def uninstall_plugin(plugin_name: str, cached_plugins: dict): + if plugin_name not in cached_plugins: + raise Exception("插件不存在。") + root_dir_name = cached_plugins[plugin_name]["root_dir_name"] + ppath = get_plugin_store_path() + del cached_plugins[plugin_name] + if not remove_dir(os.path.join(ppath, root_dir_name)): + raise Exception("移除插件成功,但是删除插件文件夹失败。您可以手动删除该文件夹,位于 addons/plugins/ 下。") + +def update_plugin(plugin_name: str, cached_plugins: dict): + if plugin_name not in cached_plugins: + raise Exception("插件不存在。") + ppath = get_plugin_store_path() + root_dir_name = cached_plugins[plugin_name]["root_dir_name"] + plugin_path = os.path.join(ppath, root_dir_name) + repo = Repo(path = plugin_path) + repo.remotes.origin.pull() + # 读取插件的requirements.txt + if os.path.exists(os.path.join(plugin_path, "requirements.txt")): + if pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt")]) != 0: + raise Exception("插件依赖安装失败, 需要您手动pip安装对应插件的依赖。") + ok, err = plugin_reload(cached_plugins, target=plugin_name) + if not ok: raise Exception(err) + +def remove_dir(self, file_path) -> bool: + try_cnt = 50 + while try_cnt > 0: + if not os.path.exists(file_path): + return False + try: + shutil.rmtree(file_path) + return True + except PermissionError as e: + err_file_path = str(e).split("\'", 2)[1] + if os.path.exists(err_file_path): + os.chmod(err_file_path, stat.S_IWUSR) + try_cnt -= 1 \ No newline at end of file From 1fc0248d8f96af273a54ef281e3d84797bc898f5 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Fri, 22 Dec 2023 16:00:46 +0800 Subject: [PATCH 14/17] =?UTF-8?q?feat:=20=E6=8F=92=E4=BB=B6=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E5=8D=B8=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...e_vue_type_style_index_0_lang-aa6ced5d.js} | 2 +- ...ut-525cd529.js => BlankLayout-434d9bb3.js} | 2 +- ...Page-55b28b0b.js => ColorPage-c6cfe87e.js} | 2 +- ...age-9cac3e0c.js => ConfigPage-9cadf278.js} | 2 +- ...ca906c.js => DefaultDashboard-4f67e2ec.js} | 2 +- ...e-81062baf.js => Error404Page-a7e4df24.js} | 2 +- .../dist/assets/ExtensionPage-180d977b.js | 1 + .../dist/assets/ExtensionPage-dd2d5b82.js | 1 - ...out-43cdec2d.js => FullLayout-71b73dcb.js} | 2 +- ...Page-83b1dbf4.js => LoginPage-ba6297b9.js} | 2 +- ...e_type_script_setup_true_lang-845ef4aa.js} | 2 +- ...-dc137c6e.js => MaterialIcons-c997ec21.js} | 2 +- ...e-2c6d8bac.js => RegisterPage-796fb781.js} | 2 +- ...age-1e332d97.js => ShadowPage-a816a721.js} | 2 +- ...ge-b0efbf05.js => StarterPage-1e1151ff.js} | 2 +- ...ns-ee63977c.js => TablerIcons-3bd524da.js} | 2 +- ...bc8b4876.js => TypographyPage-5e7cf496.js} | 2 +- ...e_type_script_setup_true_lang-e922762c.js} | 2 +- .../{index-c75f6ac5.js => index-800319b6.js} | 4 +- .../{md5-3db5e3e8.js => md5-d27f8a54.js} | 2 +- addons/dashboard/dist/index.html | 2 +- addons/dashboard/server.py | 57 ++++++++++++++++++- model/command/command.py | 14 ----- util/plugin_util.py | 26 +++++++-- 24 files changed, 96 insertions(+), 43 deletions(-) rename addons/dashboard/dist/assets/{BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js => BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js} (93%) rename addons/dashboard/dist/assets/{BlankLayout-525cd529.js => BlankLayout-434d9bb3.js} (70%) rename addons/dashboard/dist/assets/{ColorPage-55b28b0b.js => ColorPage-c6cfe87e.js} (83%) rename addons/dashboard/dist/assets/{ConfigPage-9cac3e0c.js => ConfigPage-9cadf278.js} (95%) rename addons/dashboard/dist/assets/{DefaultDashboard-4eca906c.js => DefaultDashboard-4f67e2ec.js} (99%) rename addons/dashboard/dist/assets/{Error404Page-81062baf.js => Error404Page-a7e4df24.js} (94%) create mode 100644 addons/dashboard/dist/assets/ExtensionPage-180d977b.js delete mode 100644 addons/dashboard/dist/assets/ExtensionPage-dd2d5b82.js rename addons/dashboard/dist/assets/{FullLayout-43cdec2d.js => FullLayout-71b73dcb.js} (97%) rename addons/dashboard/dist/assets/{LoginPage-83b1dbf4.js => LoginPage-ba6297b9.js} (99%) rename addons/dashboard/dist/assets/{LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js => LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js} (94%) rename addons/dashboard/dist/assets/{MaterialIcons-dc137c6e.js => MaterialIcons-c997ec21.js} (70%) rename addons/dashboard/dist/assets/{RegisterPage-2c6d8bac.js => RegisterPage-796fb781.js} (96%) rename addons/dashboard/dist/assets/{ShadowPage-1e332d97.js => ShadowPage-a816a721.js} (81%) rename addons/dashboard/dist/assets/{StarterPage-b0efbf05.js => StarterPage-1e1151ff.js} (83%) rename addons/dashboard/dist/assets/{TablerIcons-ee63977c.js => TablerIcons-3bd524da.js} (69%) rename addons/dashboard/dist/assets/{TypographyPage-bc8b4876.js => TypographyPage-5e7cf496.js} (94%) rename addons/dashboard/dist/assets/{UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js => UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js} (88%) rename addons/dashboard/dist/assets/{index-c75f6ac5.js => index-800319b6.js} (99%) rename addons/dashboard/dist/assets/{md5-3db5e3e8.js => md5-d27f8a54.js} (99%) diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js similarity index 93% rename from addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js rename to addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js index 20f24d19b..6a4a84b7c 100644 --- a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js +++ b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js @@ -1 +1 @@ -import{x as i,o as l,c as _,w as s,a as e,f as a,J as m,V as r,b as t,t as u,ab as p,B as n,ac as o,j as f}from"./index-c75f6ac5.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const c=d;return(x,B)=>(l(),_(r,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(r,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(c.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:c.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; +import{x as i,o as l,c as _,w as s,a as e,f as a,J as m,V as r,b as t,t as u,ab as p,B as n,ac as o,j as f}from"./index-800319b6.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const c=d;return(x,B)=>(l(),_(r,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(r,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(c.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:c.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/addons/dashboard/dist/assets/BlankLayout-525cd529.js b/addons/dashboard/dist/assets/BlankLayout-434d9bb3.js similarity index 70% rename from addons/dashboard/dist/assets/BlankLayout-525cd529.js rename to addons/dashboard/dist/assets/BlankLayout-434d9bb3.js index b1971af13..856fef53e 100644 --- a/addons/dashboard/dist/assets/BlankLayout-525cd529.js +++ b/addons/dashboard/dist/assets/BlankLayout-434d9bb3.js @@ -1 +1 @@ -import{x as e,o as a,c as t,w as o,a as s,B as n,X as r,T as c}from"./index-c75f6ac5.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; +import{x as e,o as a,c as t,w as o,a as s,B as n,X as r,T as c}from"./index-800319b6.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/ColorPage-55b28b0b.js b/addons/dashboard/dist/assets/ColorPage-c6cfe87e.js similarity index 83% rename from addons/dashboard/dist/assets/ColorPage-55b28b0b.js rename to addons/dashboard/dist/assets/ColorPage-c6cfe87e.js index 7b67b48bf..6b90b0523 100644 --- a/addons/dashboard/dist/assets/ColorPage-55b28b0b.js +++ b/addons/dashboard/dist/assets/ColorPage-c6cfe87e.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,_ as b,e as x,t as y}from"./index-c75f6ac5.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,_ as b,e as x,t as y}from"./index-800319b6.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-9cac3e0c.js b/addons/dashboard/dist/assets/ConfigPage-9cadf278.js similarity index 95% rename from addons/dashboard/dist/assets/ConfigPage-9cac3e0c.js rename to addons/dashboard/dist/assets/ConfigPage-9cadf278.js index 8900488d7..f305ac0ab 100644 --- a/addons/dashboard/dist/assets/ConfigPage-9cac3e0c.js +++ b/addons/dashboard/dist/assets/ConfigPage-9cadf278.js @@ -1 +1 @@ -import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as g,V as C,d as U,e as x,t as c,a8 as B,R as _,c as r,a9 as w,O as v,b as V,aa as N,i as F,q as P,k as f,A as S}from"./index-c75f6ac5.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){_.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){_.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},$=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,g(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,g(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":O=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{$ as default}; +import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as g,V as C,d as U,e as x,t as c,a8 as B,R as _,c as r,a9 as w,O as v,b as V,aa as N,i as F,q as P,k as f,A as S}from"./index-800319b6.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){_.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){_.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},$=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,g(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,g(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":O=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{$ as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-4eca906c.js b/addons/dashboard/dist/assets/DefaultDashboard-4f67e2ec.js similarity index 99% rename from addons/dashboard/dist/assets/DefaultDashboard-4eca906c.js rename to addons/dashboard/dist/assets/DefaultDashboard-4f67e2ec.js index bcc8fd86f..19942787a 100644 --- a/addons/dashboard/dist/assets/DefaultDashboard-4eca906c.js +++ b/addons/dashboard/dist/assets/DefaultDashboard-4f67e2ec.js @@ -1 +1 @@ -import{y as R,p as u,o as _,c as f,w as e,a as t,L as w,b as s,d as p,j as $,Z as I,q as z,_ as F,z as S,s as M,F as O,u as j,n as x,r as N,l as V,e as y,t as h,J as b,$ as U,D as W,a0 as C,a1 as G,a2 as D,a3 as H,a4 as L,V as k,f as m,G as X,a5 as q,R as A}from"./index-c75f6ac5.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";const E={class:"d-flex align-start mb-6"},J={class:"ml-auto z-1"},Y={class:"text-h1 font-weight-medium"},Z=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),K={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.message_total=a.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},Q=Object.assign(K,{setup(a){const l=R([{title:"移除",icon:U}]);return(n,i)=>{const o=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",E,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),s("div",J,[t(I,{"close-on-content-click":!1},{activator:e(({props:c})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},c),{default:e(()=>[t(o,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),M(O,null,j(l.value,(c,r)=>(_(),f(x,{key:r,value:r},{prepend:e(()=>[(_(),f(N(c.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(c.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),s("h2",Y,h(n.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.session_total=a.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(a){const l=W("1"),n=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),i={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},o=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(r,d)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),s("div",et,[t(G,{modelValue:l.value,"onUpdate:modelValue":d[0]||(d[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(D,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(D,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(H,{modelValue:l.value,"onUpdate:modelValue":d[1]||(d[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",at,h(r.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:n.value,series:i.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",ot,h(r.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:o.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.memory=a.sys_perf.memory,this.runtime_str=a.sys_start_time;let n=new Date().getTime(),i=new Date(a.sys_start_time*1e3).getTime(),o=n-i,c=Math.floor(o/(24*3600*1e3)),r=o%(24*3600*1e3),d=Math.floor(r/(3600*1e3)),g=r%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),P=Math.round(T/1e3);this.runtime_str=c+"天"+d+"小时"+v+"分"+P+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=s("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=s("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(a,l,n,i,o,c){return _(),M(O,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),s("div",null,[s("h4",ct,h(a.runtime_str),1),ut]),t(X),s("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),s("div",null,[s("h4",_t,h(a.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=B(rt,[["render",ft]]),bt=s("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(a,l){let n=[],i=[];for(let o=0;o{const i=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,s("h3",gt,h(l.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(q,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.select,"onUpdate:modelValue":n[0]||(n[0]=o=>l.select=o),items:l.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),s("div",vt,[t(i,{type:"bar",height:"280",options:l.chartOptions1,series:l.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=s("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Mt={class:"text-center mt-3"},Ot={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(a,l){let n={};for(let i=0;i({platforms:[]}),mounted(){}},Dt=Object.assign(Ot,{setup(a){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(l,n)=>{const i=u("DotsIcon"),o=u("perfect-scrollbar"),c=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",xt,[$t,s("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:r})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},r),{default:e(()=>[t(i,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),s("div",kt,[t(o,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),M(O,null,j(l.platforms,(r,d)=>(_(),f(x,{key:d,value:r,color:"secondary",rounded:"sm"},{default:e(()=>[s("div",Tt,[s("div",null,[s("h6",St,h(r.name),1)]),s("div",Ct,h(r.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),s("div",Mt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:Q,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){A.get("/api/stats").then(a=>{console.log("stat",a.data.data),this.stat=a.data.data})}};function It(a,l,n,i,o,c){const r=u("TotalMessage"),d=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(r,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:a.stat},null,8,["stat"])]),_:1})]),_:1})}const jt=B(Lt,[["render",It]]);export{jt as default}; +import{y as R,p as u,o as _,c as f,w as e,a as t,L as w,b as s,d as p,j as $,Z as I,q as z,_ as F,z as S,s as M,F as O,u as j,n as x,r as N,l as V,e as y,t as h,J as b,$ as U,D as W,a0 as C,a1 as G,a2 as D,a3 as H,a4 as L,V as k,f as m,G as X,a5 as q,R as A}from"./index-800319b6.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";const E={class:"d-flex align-start mb-6"},J={class:"ml-auto z-1"},Y={class:"text-h1 font-weight-medium"},Z=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),K={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.message_total=a.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},Q=Object.assign(K,{setup(a){const l=R([{title:"移除",icon:U}]);return(n,i)=>{const o=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",E,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),s("div",J,[t(I,{"close-on-content-click":!1},{activator:e(({props:c})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},c),{default:e(()=>[t(o,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),M(O,null,j(l.value,(c,r)=>(_(),f(x,{key:r,value:r},{prepend:e(()=>[(_(),f(N(c.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(c.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),s("h2",Y,h(n.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.session_total=a.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(a){const l=W("1"),n=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),i={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},o=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(r,d)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),s("div",et,[t(G,{modelValue:l.value,"onUpdate:modelValue":d[0]||(d[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(D,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(D,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(H,{modelValue:l.value,"onUpdate:modelValue":d[1]||(d[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",at,h(r.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:n.value,series:i.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",ot,h(r.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:o.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.memory=a.sys_perf.memory,this.runtime_str=a.sys_start_time;let n=new Date().getTime(),i=new Date(a.sys_start_time*1e3).getTime(),o=n-i,c=Math.floor(o/(24*3600*1e3)),r=o%(24*3600*1e3),d=Math.floor(r/(3600*1e3)),g=r%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),P=Math.round(T/1e3);this.runtime_str=c+"天"+d+"小时"+v+"分"+P+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=s("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=s("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(a,l,n,i,o,c){return _(),M(O,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),s("div",null,[s("h4",ct,h(a.runtime_str),1),ut]),t(X),s("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),s("div",null,[s("h4",_t,h(a.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=B(rt,[["render",ft]]),bt=s("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(a,l){let n=[],i=[];for(let o=0;o{const i=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,s("h3",gt,h(l.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(q,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.select,"onUpdate:modelValue":n[0]||(n[0]=o=>l.select=o),items:l.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),s("div",vt,[t(i,{type:"bar",height:"280",options:l.chartOptions1,series:l.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=s("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Mt={class:"text-center mt-3"},Ot={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(a,l){let n={};for(let i=0;i({platforms:[]}),mounted(){}},Dt=Object.assign(Ot,{setup(a){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(l,n)=>{const i=u("DotsIcon"),o=u("perfect-scrollbar"),c=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",xt,[$t,s("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:r})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},r),{default:e(()=>[t(i,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),s("div",kt,[t(o,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),M(O,null,j(l.platforms,(r,d)=>(_(),f(x,{key:d,value:r,color:"secondary",rounded:"sm"},{default:e(()=>[s("div",Tt,[s("div",null,[s("h6",St,h(r.name),1)]),s("div",Ct,h(r.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),s("div",Mt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:Q,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){A.get("/api/stats").then(a=>{console.log("stat",a.data.data),this.stat=a.data.data})}};function It(a,l,n,i,o,c){const r=u("TotalMessage"),d=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(r,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:a.stat},null,8,["stat"])]),_:1})]),_:1})}const jt=B(Lt,[["render",It]]);export{jt as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-81062baf.js b/addons/dashboard/dist/assets/Error404Page-a7e4df24.js similarity index 94% rename from addons/dashboard/dist/assets/Error404Page-81062baf.js rename to addons/dashboard/dist/assets/Error404Page-a7e4df24.js index 53dcadc8e..37535f664 100644 --- a/addons/dashboard/dist/assets/Error404Page-81062baf.js +++ b/addons/dashboard/dist/assets/Error404Page-a7e4df24.js @@ -1 +1 @@ -import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-c75f6ac5.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; +import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-800319b6.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-180d977b.js b/addons/dashboard/dist/assets/ExtensionPage-180d977b.js new file mode 100644 index 000000000..fe32eea58 --- /dev/null +++ b/addons/dashboard/dist/assets/ExtensionPage-180d977b.js @@ -0,0 +1 @@ +import{x as b,o as d,c as h,w as e,a,a6 as C,b as i,K as x,e as o,t as u,G as m,d as r,A as E,L as V,a7 as y,J as w,s as p,f as c,F as f,u as $,V as k,q as S,N as B,O as N,P as T,H as j,a8 as D,R as g,j as F}from"./index-800319b6.js";const G={class:"d-sm-flex align-center justify-space-between"},v=b({__name:"ExtensionCard",props:{title:String,link:String},setup(n){const s=n,l=t=>{window.open(t,"_blank")};return(t,_)=>(d(),h(w,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(C,{style:{padding:"10px 20px"}},{default:e(()=>[i("div",G,[a(x,null,{default:e(()=>[o(u(s.title),1)]),_:1}),a(m),a(r,{icon:"mdi-link",variant:"plain",onClick:_[0]||(_[0]=z=>l(s.link))})])]),_:1}),a(E),a(V,null,{default:e(()=>[y(t.$slots,"default")]),_:3})]),_:3}))}}),P=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 已安装的插件")],-1),U={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},q={class:"d-flex align-center gap-3"},A=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 插件市场 [待开发]")],-1),I=i("span",{class:"text-h5"},"从 Git 仓库链接安装插件",-1),L=i("small",null,"github, gitee, gitlab 等公开的仓库都行。",-1),O=i("br",null,null,-1),R={name:"ExtensionPage",components:{ExtensionCard:v},data(){return{extension_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:"",extension_url:"",status:"",dialog:!1,snack_message:"",snack_show:!1,snack_success:"success",install_loading:!1,uninstall_loading:!1}},mounted(){this.getExtensions()},methods:{getExtensions(){g.get("/api/extensions").then(n=>{this.extension_data.data=n.data.data,console.log(this.extension_data)})},newExtension(){this.install_loading=!0,console.log(this.install_loading),g.post("/api/extensions/install",{url:this.extension_url}).then(n=>{if(this.install_loading=!1,n.data.status==="error"){this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=n.data.data,console.log(this.extension_data),this.extension_url="",this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(n=>{this.install_loading=!1,this.snack_message=n,this.snack_show=!0,this.snack_success="error"})},uninstallExtension(n){this.uninstall_loading=!0,g.post("/api/extensions/uninstall",{name:n}).then(s=>{if(this.uninstall_loading=!1,s.data.status==="error"){this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=s.data.data,console.log(this.extension_data),this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(s=>{this.uninstall_loading=!1,this.snack_message=s,this.snack_show=!0,this.snack_success="error"})}}},J=Object.assign(R,{setup(n){return(s,l)=>(d(),p(f,null,[a(k,null,{default:e(()=>[a(c,{cols:"12",md:"12"},{default:e(()=>[P]),_:1}),(d(!0),p(f,null,$(s.extension_data.data,t=>(d(),h(c,{cols:"12",md:"6",lg:"4"},{default:e(()=>[(d(),h(v,{key:t.name,title:t.name,link:t.repo,style:{"margin-bottom":"16px"}},{default:e(()=>[i("p",U,u(t.desc),1),i("div",q,[a(F,null,{default:e(()=>[o("mdi-account")]),_:1}),i("span",null,u(t.author),1),a(m),a(r,{variant:"plain",onClick:_=>s.uninstallExtension(t.name),loading:s.uninstall_loading},{default:e(()=>[o("卸 载")]),_:2},1032,["onClick","loading"])])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),a(c,{cols:"12",md:"12"},{default:e(()=>[A]),_:1})]),_:1}),a(j,{modelValue:s.dialog,"onUpdate:modelValue":l[3]||(l[3]=t=>s.dialog=t),persistent:"",width:"700"},{activator:e(({props:t})=>[a(r,S(t,{icon:"mdi-content-plus",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary"}),null,16)]),default:e(()=>[a(w,null,{default:e(()=>[a(x,null,{default:e(()=>[I]),_:1}),a(V,null,{default:e(()=>[a(B,null,{default:e(()=>[a(k,null,{default:e(()=>[a(c,{cols:"12"},{default:e(()=>[a(N,{label:"Git 库链接",modelValue:s.extension_url,"onUpdate:modelValue":l[0]||(l[0]=t=>s.extension_url=t),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),L,O,i("small",null,u(s.status),1)]),_:1}),a(T,null,{default:e(()=>[a(m),a(r,{color:"blue-darken-1",variant:"text",onClick:l[1]||(l[1]=t=>s.dialog=!1)},{default:e(()=>[o(" 关闭 ")]),_:1}),a(r,{color:"blue-darken-1",variant:"text",loading:s.install_loading,onClick:l[2]||(l[2]=t=>s.newExtension(s.extension_url))},{default:e(()=>[o(" 安装 ")]),_:1},8,["loading"])]),_:1})]),_:1})]),_:1},8,["modelValue"]),a(D,{timeout:2e3,elevation:"24",color:s.snack_success,modelValue:s.snack_show,"onUpdate:modelValue":l[4]||(l[4]=t=>s.snack_show=t)},{default:e(()=>[o(u(s.snack_message),1)]),_:1},8,["color","modelValue"])],64))}});export{J as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-dd2d5b82.js b/addons/dashboard/dist/assets/ExtensionPage-dd2d5b82.js deleted file mode 100644 index ac82b5d7e..000000000 --- a/addons/dashboard/dist/assets/ExtensionPage-dd2d5b82.js +++ /dev/null @@ -1 +0,0 @@ -import{x as C,o as i,c,w as t,a as e,a6 as w,b as l,K as V,e as d,t as p,G as g,d as u,A as y,L as k,a7 as E,J as v,s as f,f as r,F as x,u as $,V as h,q as B,N as S,O as N,P as T,H as j,R as m,j as D}from"./index-c75f6ac5.js";const F={class:"d-sm-flex align-center justify-space-between"},b=C({__name:"ExtensionCard",props:{title:String,link:String},setup(o){const n=o,s=a=>{window.open(a,"_blank")};return(a,_)=>(i(),c(v,{variant:"outlined",elevation:"0",class:"withbg"},{default:t(()=>[e(w,{style:{padding:"10px 20px"}},{default:t(()=>[l("div",F,[e(V,null,{default:t(()=>[d(p(n.title),1)]),_:1}),e(g),e(u,{icon:"mdi-link",variant:"plain",onClick:_[0]||(_[0]=U=>s(n.link))})])]),_:1}),e(y),e(k,null,{default:t(()=>[E(a.$slots,"default")]),_:3})]),_:3}))}}),G=l("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[l("h3",null,"🧩 已安装的插件")],-1),P={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},q={class:"d-flex align-center gap-3"},A=l("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[l("h3",null,"🧩 插件市场 [待开发]")],-1),I=l("span",{class:"text-h5"},"从 Git 仓库链接安装插件",-1),L=l("small",null,"github, gitee, gitlab 等公开的仓库都行。",-1),O=l("br",null,null,-1),R={name:"ExtensionPage",components:{ExtensionCard:b},data(){return{extension_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:"",extension_url:"",status:"",dialog:!1}},mounted(){this.getExtensions()},methods:{getExtensions(){m.get("/api/extensions").then(o=>{this.extension_data.data=o.data.data,console.log(this.extension_data)})},newExtension(o){m.post("/api/extensions/install",{url:o}).then(n=>{this.extension_data.data=n.data.data,console.log(this.extension_data)})},uninstallExtension(o){m.post("/api/extensions/uninstall",{name:o}).then(n=>{this.extension_data.data=n.data.data,console.log(this.extension_data)})}}},H=Object.assign(R,{setup(o){return(n,s)=>(i(),f(x,null,[e(h,null,{default:t(()=>[e(r,{cols:"12",md:"12"},{default:t(()=>[G]),_:1}),(i(!0),f(x,null,$(n.extension_data.data,a=>(i(),c(r,{cols:"12",md:"6",lg:"4"},{default:t(()=>[(i(),c(b,{key:a.name,title:a.name,link:a.repo,style:{"margin-bottom":"16px"}},{default:t(()=>[l("p",P,p(a.desc),1),l("div",q,[e(D,null,{default:t(()=>[d("mdi-account")]),_:1}),l("span",null,p(a.author),1),e(g),e(u,{variant:"plain",onClick:_=>n.uninstallExtension(a.name)},{default:t(()=>[d("卸 载[待开发]")]),_:2},1032,["onClick"])])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),e(r,{cols:"12",md:"12"},{default:t(()=>[A]),_:1})]),_:1}),e(j,{modelValue:n.dialog,"onUpdate:modelValue":s[3]||(s[3]=a=>n.dialog=a),persistent:"",width:"700"},{activator:t(({props:a})=>[e(u,B(a,{icon:"mdi-content-plus",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary"}),null,16)]),default:t(()=>[e(v,null,{default:t(()=>[e(V,null,{default:t(()=>[I]),_:1}),e(k,null,{default:t(()=>[e(S,null,{default:t(()=>[e(h,null,{default:t(()=>[e(r,{cols:"12"},{default:t(()=>[e(N,{label:"Git 库链接",modelValue:n.extension_url,"onUpdate:modelValue":s[0]||(s[0]=a=>n.extension_url=a),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),L,O,l("small",null,p(n.status),1)]),_:1}),e(T,null,{default:t(()=>[e(g),e(u,{color:"blue-darken-1",variant:"text",onClick:s[1]||(s[1]=a=>n.dialog=!1)},{default:t(()=>[d(" 关闭 ")]),_:1}),e(u,{color:"blue-darken-1",variant:"text",onClick:s[2]||(s[2]=a=>n.newExtension(n.extension_url))},{default:t(()=>[d(" 安装 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])],64))}});export{H as default}; diff --git a/addons/dashboard/dist/assets/FullLayout-43cdec2d.js b/addons/dashboard/dist/assets/FullLayout-71b73dcb.js similarity index 97% rename from addons/dashboard/dist/assets/FullLayout-43cdec2d.js rename to addons/dashboard/dist/assets/FullLayout-71b73dcb.js index 64b7a33b1..3d8e32972 100644 --- a/addons/dashboard/dist/assets/FullLayout-43cdec2d.js +++ b/addons/dashboard/dist/assets/FullLayout-71b73dcb.js @@ -1 +1 @@ -import{o as s,c as i,w as t,e as v,t as h,g as F,h as q,a as e,i as A,j as g,k as w,l as D,m as R,n as E,r as I,p as M,q as P,s as k,F as y,u as j,v as G,x as z,y as W,b as _,z as H,A as J,B as o,C as K,D as b,d as V,E as N,M as B,G as T,H as Q,I as C,J as X,K as Y,L as Z,N as O,V as ee,f as te,O as L,P as ae,Q as le,R as se,S as ie,T as ne,U as oe,W as re,X as ue,Y as de}from"./index-c75f6ac5.js";import{_ as ce,u as S}from"./LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js";import{m as $}from"./md5-3db5e3e8.js";const me=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],fe={__name:"NavGroup",props:{item:Object},setup(a){const l=a;return(n,r)=>(s(),i(F,{color:"darkText",class:"smallCap"},{default:t(()=>[v(h(l.item.header),1)]),_:1}))}},U={__name:"NavItem",props:{item:Object,level:Number},setup(a){return(l,n)=>(s(),i(E,{to:a.item.type==="external"?"":a.item.to,href:a.item.type==="external"?a.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:a.item.disabled,target:a.item.type==="external"?"_blank":""},q({prepend:t(()=>[a.item.icon?(s(),i(g,{key:0,color:a.item.iconColor,size:a.item.iconSize,class:"hide-menu",icon:a.item.icon},null,8,["color","size","icon"])):w("",!0)]),default:t(()=>[e(D,null,{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},[a.item.chip?{name:"append",fn:t(()=>[e(A,{color:a.item.chipColor,class:"sidebarchip hide-menu",size:a.item.chipIcon?"small":"default",variant:a.item.chipVariant,"prepend-icon":a.item.chipIcon},{default:t(()=>[v(h(a.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},pe={__name:"IconSet",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>l.level>0?(s(),i(I(l.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(s(),i(I(l.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ve={__name:"NavCollapse",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>{const u=M("NavCollapse",!0);return s(),i(G,{"no-action":""},{activator:t(({props:f})=>[e(E,P(f,{value:a.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[e(pe,{item:a.item.icon,level:a.level},null,8,["item","level"])]),default:t(()=>[e(D,{class:"mr-auto"},{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},1040,["value"])]),default:t(()=>[(s(!0),k(y,null,j(a.item.children,(f,d)=>(s(),k(y,{key:d},[f.children?(s(),i(u,{key:0,item:f,level:l.level+1},null,8,["item","level"])):(s(),i(U,{key:1,item:f,level:l.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},he={__name:"LogoMain",setup(a){return(l,n)=>(s(),i(ce))}},_e={class:"pa-5"},Ve={class:"pa-4 text-center"},be=z({__name:"VerticalSidebar",setup(a){const l=S(),n=W(me);return(r,u)=>{const f=M("perfect-scrollbar");return s(),i(K,{left:"",modelValue:o(l).Sidebar_drawer,"onUpdate:modelValue":u[0]||(u[0]=d=>o(l).Sidebar_drawer=d),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:o(l).mini_sidebar,"expand-on-hover":""},{default:t(()=>[_("div",_e,[e(he)]),e(f,{class:"scrollnavbar"},{default:t(()=>[e(H,{class:"pa-4"},{default:t(()=>[(s(!0),k(y,null,j(n.value,(d,x)=>(s(),k(y,{key:x},[d.header?(s(),i(fe,{item:d,key:d.title},null,8,["item"])):d.divider?(s(),i(J,{key:1,class:"my-3"})):d.children?(s(),i(ve,{key:2,class:"leftPadding",item:d,level:0},null,8,["item"])):(s(),i(U,{key:3,item:d,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),_("div",Ve,[e(A,{color:"inputBorder",size:"small"},{default:t(()=>[v(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),Ce=_("span",{class:"text-h5"},"密码修改",-1),ke=_("small",null,"如果是第一次修改密码,原密码请留空。",-1),ye=_("br",null,null,-1),xe=z({__name:"VerticalHeader",setup(a){const l=S();b(!1);let n=b(!1),r=b(""),u=b(""),f=b("");const d=p=>{window.open(p,"_blank")};function x(){r.value!=""&&(r.value=$.md5(r.value)),u.value=$.md5(u.value),se.post("/api/change_password",{password:r.value,new_password:u.value}).then(p=>{if(p.data.status=="error"){f.value=p.data.message,r.value="",u.value="";return}n.value=!n.value,f.value=p.data.message,setTimeout(()=>{ie().logout()},1e3)}).catch(p=>{console.log(p),f.value=p,r.value="",u.value=""})}return(p,c)=>(s(),i(le,{elevation:"0",height:"80"},{default:t(()=>[e(V,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=N(m=>o(l).SET_MINI_SIDEBAR(!o(l).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1}),e(V,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:N(o(l).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),e(T),e(Q,{modelValue:o(n),"onUpdate:modelValue":c[4]||(c[4]=m=>C(n)?n.value=m:n=m),persistent:"",width:"700"},{activator:t(({props:m})=>[e(V,P({class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},m),{default:t(()=>[e(g,{icon:"mdi-account-edit",size:"25"})]),_:2},1040)]),default:t(()=>[e(X,null,{default:t(()=>[e(Y,null,{default:t(()=>[Ce]),_:1}),e(Z,null,{default:t(()=>[e(O,null,{default:t(()=>[e(ee,null,{default:t(()=>[e(te,{cols:"12"},{default:t(()=>[e(L,{label:"原密码*",type:"password",modelValue:o(r),"onUpdate:modelValue":c[1]||(c[1]=m=>C(r)?r.value=m:r=m),required:""},null,8,["modelValue"]),e(L,{label:"新密码*",type:"password",modelValue:o(u),"onUpdate:modelValue":c[2]||(c[2]=m=>C(u)?u.value=m:u=m),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),ke,ye,_("small",null,h(o(f)),1)]),_:1}),e(ae,null,{default:t(()=>[e(T),e(V,{color:"blue-darken-1",variant:"text",onClick:c[3]||(c[3]=m=>C(n)?n.value=!1:n=!1)},{default:t(()=>[v(" 关闭 ")]),_:1}),e(V,{color:"blue-darken-1",variant:"text",onClick:x},{default:t(()=>[v(" 提交 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(V,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",onClick:c[5]||(c[5]=m=>d("https://github.com/Soulter/AstrBot")),rounded:"pill"},{default:t(()=>[e(g,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),Se=z({__name:"FullLayout",setup(a){const l=S();return(n,r)=>(s(),i(de,null,{default:t(()=>[e(ne,{theme:"PurpleTheme",class:oe([o(l).fontTheme,o(l).mini_sidebar?"mini-sidebar":"",o(l).inputBg?"inputWithbg":""])},{default:t(()=>[e(be),e(xe),e(re,null,{default:t(()=>[e(O,{fluid:"",class:"page-wrapper"},{default:t(()=>[_("div",null,[e(o(ue))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{Se as default}; +import{o as s,c as i,w as t,e as v,t as h,g as F,h as q,a as e,i as A,j as g,k as w,l as D,m as R,n as E,r as I,p as M,q as P,s as k,F as y,u as j,v as G,x as z,y as W,b as _,z as H,A as J,B as o,C as K,D as b,d as V,E as N,M as B,G as T,H as Q,I as C,J as X,K as Y,L as Z,N as O,V as ee,f as te,O as L,P as ae,Q as le,R as se,S as ie,T as ne,U as oe,W as re,X as ue,Y as de}from"./index-800319b6.js";import{_ as ce,u as S}from"./LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js";import{m as $}from"./md5-d27f8a54.js";const me=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],fe={__name:"NavGroup",props:{item:Object},setup(a){const l=a;return(n,r)=>(s(),i(F,{color:"darkText",class:"smallCap"},{default:t(()=>[v(h(l.item.header),1)]),_:1}))}},U={__name:"NavItem",props:{item:Object,level:Number},setup(a){return(l,n)=>(s(),i(E,{to:a.item.type==="external"?"":a.item.to,href:a.item.type==="external"?a.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:a.item.disabled,target:a.item.type==="external"?"_blank":""},q({prepend:t(()=>[a.item.icon?(s(),i(g,{key:0,color:a.item.iconColor,size:a.item.iconSize,class:"hide-menu",icon:a.item.icon},null,8,["color","size","icon"])):w("",!0)]),default:t(()=>[e(D,null,{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},[a.item.chip?{name:"append",fn:t(()=>[e(A,{color:a.item.chipColor,class:"sidebarchip hide-menu",size:a.item.chipIcon?"small":"default",variant:a.item.chipVariant,"prepend-icon":a.item.chipIcon},{default:t(()=>[v(h(a.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},pe={__name:"IconSet",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>l.level>0?(s(),i(I(l.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(s(),i(I(l.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ve={__name:"NavCollapse",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>{const u=M("NavCollapse",!0);return s(),i(G,{"no-action":""},{activator:t(({props:f})=>[e(E,P(f,{value:a.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[e(pe,{item:a.item.icon,level:a.level},null,8,["item","level"])]),default:t(()=>[e(D,{class:"mr-auto"},{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},1040,["value"])]),default:t(()=>[(s(!0),k(y,null,j(a.item.children,(f,d)=>(s(),k(y,{key:d},[f.children?(s(),i(u,{key:0,item:f,level:l.level+1},null,8,["item","level"])):(s(),i(U,{key:1,item:f,level:l.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},he={__name:"LogoMain",setup(a){return(l,n)=>(s(),i(ce))}},_e={class:"pa-5"},Ve={class:"pa-4 text-center"},be=z({__name:"VerticalSidebar",setup(a){const l=S(),n=W(me);return(r,u)=>{const f=M("perfect-scrollbar");return s(),i(K,{left:"",modelValue:o(l).Sidebar_drawer,"onUpdate:modelValue":u[0]||(u[0]=d=>o(l).Sidebar_drawer=d),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:o(l).mini_sidebar,"expand-on-hover":""},{default:t(()=>[_("div",_e,[e(he)]),e(f,{class:"scrollnavbar"},{default:t(()=>[e(H,{class:"pa-4"},{default:t(()=>[(s(!0),k(y,null,j(n.value,(d,x)=>(s(),k(y,{key:x},[d.header?(s(),i(fe,{item:d,key:d.title},null,8,["item"])):d.divider?(s(),i(J,{key:1,class:"my-3"})):d.children?(s(),i(ve,{key:2,class:"leftPadding",item:d,level:0},null,8,["item"])):(s(),i(U,{key:3,item:d,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),_("div",Ve,[e(A,{color:"inputBorder",size:"small"},{default:t(()=>[v(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),Ce=_("span",{class:"text-h5"},"密码修改",-1),ke=_("small",null,"如果是第一次修改密码,原密码请留空。",-1),ye=_("br",null,null,-1),xe=z({__name:"VerticalHeader",setup(a){const l=S();b(!1);let n=b(!1),r=b(""),u=b(""),f=b("");const d=p=>{window.open(p,"_blank")};function x(){r.value!=""&&(r.value=$.md5(r.value)),u.value=$.md5(u.value),se.post("/api/change_password",{password:r.value,new_password:u.value}).then(p=>{if(p.data.status=="error"){f.value=p.data.message,r.value="",u.value="";return}n.value=!n.value,f.value=p.data.message,setTimeout(()=>{ie().logout()},1e3)}).catch(p=>{console.log(p),f.value=p,r.value="",u.value=""})}return(p,c)=>(s(),i(le,{elevation:"0",height:"80"},{default:t(()=>[e(V,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=N(m=>o(l).SET_MINI_SIDEBAR(!o(l).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1}),e(V,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:N(o(l).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),e(T),e(Q,{modelValue:o(n),"onUpdate:modelValue":c[4]||(c[4]=m=>C(n)?n.value=m:n=m),persistent:"",width:"700"},{activator:t(({props:m})=>[e(V,P({class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},m),{default:t(()=>[e(g,{icon:"mdi-account-edit",size:"25"})]),_:2},1040)]),default:t(()=>[e(X,null,{default:t(()=>[e(Y,null,{default:t(()=>[Ce]),_:1}),e(Z,null,{default:t(()=>[e(O,null,{default:t(()=>[e(ee,null,{default:t(()=>[e(te,{cols:"12"},{default:t(()=>[e(L,{label:"原密码*",type:"password",modelValue:o(r),"onUpdate:modelValue":c[1]||(c[1]=m=>C(r)?r.value=m:r=m),required:""},null,8,["modelValue"]),e(L,{label:"新密码*",type:"password",modelValue:o(u),"onUpdate:modelValue":c[2]||(c[2]=m=>C(u)?u.value=m:u=m),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),ke,ye,_("small",null,h(o(f)),1)]),_:1}),e(ae,null,{default:t(()=>[e(T),e(V,{color:"blue-darken-1",variant:"text",onClick:c[3]||(c[3]=m=>C(n)?n.value=!1:n=!1)},{default:t(()=>[v(" 关闭 ")]),_:1}),e(V,{color:"blue-darken-1",variant:"text",onClick:x},{default:t(()=>[v(" 提交 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(V,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",onClick:c[5]||(c[5]=m=>d("https://github.com/Soulter/AstrBot")),rounded:"pill"},{default:t(()=>[e(g,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),Se=z({__name:"FullLayout",setup(a){const l=S();return(n,r)=>(s(),i(de,null,{default:t(()=>[e(ne,{theme:"PurpleTheme",class:oe([o(l).fontTheme,o(l).mini_sidebar?"mini-sidebar":"",o(l).inputBg?"inputWithbg":""])},{default:t(()=>[e(be),e(xe),e(re,null,{default:t(()=>[e(O,{fluid:"",class:"page-wrapper"},{default:t(()=>[_("div",null,[e(o(ue))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{Se as default}; diff --git a/addons/dashboard/dist/assets/LoginPage-83b1dbf4.js b/addons/dashboard/dist/assets/LoginPage-ba6297b9.js similarity index 99% rename from addons/dashboard/dist/assets/LoginPage-83b1dbf4.js rename to addons/dashboard/dist/assets/LoginPage-ba6297b9.js index dea3e203f..4c61490ce 100644 --- a/addons/dashboard/dist/assets/LoginPage-83b1dbf4.js +++ b/addons/dashboard/dist/assets/LoginPage-ba6297b9.js @@ -1,4 +1,4 @@ -import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js";import{x as ke,ad as we,r as Ot,ae as Vt,D as A,af as Ne,a0 as P,B as I,ag as Q,ah as St,I as Be,ai as Ie,aj as Et,ak as jt,al as At,am as G,y as wt,o as Re,c as tt,w as C,a as j,O as qe,b as ge,an as Ft,d as Pt,e as Ge,s as Ct,ao as Tt,t as Nt,k as Bt,S as It,f as Fe,N as Rt,V as Pe,J as Ye,L as kt}from"./index-c75f6ac5.js";import{a as Mt}from"./md5-3db5e3e8.js";/** +import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js";import{x as ke,ad as we,r as Ot,ae as Vt,D as A,af as Ne,a0 as P,B as I,ag as Q,ah as St,I as Be,ai as Ie,aj as Et,ak as jt,al as At,am as G,y as wt,o as Re,c as tt,w as C,a as j,O as qe,b as ge,an as Ft,d as Pt,e as Ge,s as Ct,ao as Tt,t as Nt,k as Bt,S as It,f as Fe,N as Rt,V as Pe,J as Ye,L as kt}from"./index-800319b6.js";import{a as Mt}from"./md5-d27f8a54.js";/** * vee-validate v4.11.3 * (c) 2023 Abdelrahman Awad * @license MIT diff --git a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js similarity index 94% rename from addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js rename to addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js index c799d1b26..fe1c87a03 100644 --- a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js +++ b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js @@ -1 +1 @@ -import{at as _,x as d,D as n,o as c,s as m,a as f,w as p,au as r,b as a,av as o,B as t,aw as h}from"./index-c75f6ac5.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[f(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:p(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; +import{at as _,x as d,D as n,o as c,s as m,a as f,w as p,au as r,b as a,av as o,B as t,aw as h}from"./index-800319b6.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[f(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:p(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/addons/dashboard/dist/assets/MaterialIcons-dc137c6e.js b/addons/dashboard/dist/assets/MaterialIcons-c997ec21.js similarity index 70% rename from addons/dashboard/dist/assets/MaterialIcons-dc137c6e.js rename to addons/dashboard/dist/assets/MaterialIcons-c997ec21.js index f7a848e10..59551a60a 100644 --- a/addons/dashboard/dist/assets/MaterialIcons-dc137c6e.js +++ b/addons/dashboard/dist/assets/MaterialIcons-c997ec21.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-c75f6ac5.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-800319b6.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-2c6d8bac.js b/addons/dashboard/dist/assets/RegisterPage-796fb781.js similarity index 96% rename from addons/dashboard/dist/assets/RegisterPage-2c6d8bac.js rename to addons/dashboard/dist/assets/RegisterPage-796fb781.js index 4070c49f3..b4dcec1a5 100644 --- a/addons/dashboard/dist/assets/RegisterPage-2c6d8bac.js +++ b/addons/dashboard/dist/assets/RegisterPage-796fb781.js @@ -1 +1 @@ -import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,O as m,an as A,as as E,F,c as T,N as q,J as V,L as P}from"./index-c75f6ac5.js";const z="/assets/social-google-a359a253.svg",N=["src"],S=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(z),alt:"google"},null,8,N),S]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},J=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),Y=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),J,Y]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; +import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,O as m,an as A,as as E,F,c as T,N as q,J as V,L as P}from"./index-800319b6.js";const z="/assets/social-google-a359a253.svg",N=["src"],S=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(z),alt:"google"},null,8,N),S]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},J=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),Y=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),J,Y]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/ShadowPage-1e332d97.js b/addons/dashboard/dist/assets/ShadowPage-a816a721.js similarity index 81% rename from addons/dashboard/dist/assets/ShadowPage-1e332d97.js rename to addons/dashboard/dist/assets/ShadowPage-a816a721.js index 2486dc324..c636e78b3 100644 --- a/addons/dashboard/dist/assets/ShadowPage-1e332d97.js +++ b/addons/dashboard/dist/assets/ShadowPage-a816a721.js @@ -1 +1 @@ -import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,J as p,U as b,b as h,t as g}from"./index-c75f6ac5.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(V,x)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,J as p,U as b,b as h,t as g}from"./index-800319b6.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(V,x)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/StarterPage-b0efbf05.js b/addons/dashboard/dist/assets/StarterPage-1e1151ff.js similarity index 83% rename from addons/dashboard/dist/assets/StarterPage-b0efbf05.js rename to addons/dashboard/dist/assets/StarterPage-1e1151ff.js index 4ccf4bd5a..4cda00a7b 100644 --- a/addons/dashboard/dist/assets/StarterPage-b0efbf05.js +++ b/addons/dashboard/dist/assets/StarterPage-1e1151ff.js @@ -1 +1 @@ -import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-c75f6ac5.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; +import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-800319b6.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; diff --git a/addons/dashboard/dist/assets/TablerIcons-ee63977c.js b/addons/dashboard/dist/assets/TablerIcons-3bd524da.js similarity index 69% rename from addons/dashboard/dist/assets/TablerIcons-ee63977c.js rename to addons/dashboard/dist/assets/TablerIcons-3bd524da.js index 95edcd607..cc639875a 100644 --- a/addons/dashboard/dist/assets/TablerIcons-ee63977c.js +++ b/addons/dashboard/dist/assets/TablerIcons-3bd524da.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-c75f6ac5.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-800319b6.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/addons/dashboard/dist/assets/TypographyPage-bc8b4876.js b/addons/dashboard/dist/assets/TypographyPage-5e7cf496.js similarity index 94% rename from addons/dashboard/dist/assets/TypographyPage-bc8b4876.js rename to addons/dashboard/dist/assets/TypographyPage-5e7cf496.js index 758bc3a0e..3d21807d2 100644 --- a/addons/dashboard/dist/assets/TypographyPage-bc8b4876.js +++ b/addons/dashboard/dist/assets/TypographyPage-5e7cf496.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js";import{x as f,o as i,c as g,w as e,a,a6 as y,K as b,e as w,t as d,A as C,L as V,a7 as L,J as _,D as o,s as h,f as k,b as t,F as x,u as B,U as H,V as T}from"./index-c75f6ac5.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),D={class:"d-flex flex-column gap-1"},S={class:"text-caption pa-2 bg-lightprimary"},z=t("div",{class:"text-grey"},"Class",-1),N={class:"font-weight-medium"},U=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),$=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(O,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",D,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",S,[z,t("div",N,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[U]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[$]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as f,o as i,c as g,w as e,a,a6 as y,K as b,e as w,t as d,A as C,L as V,a7 as L,J as _,D as o,s as h,f as k,b as t,F as x,u as B,U as H,V as T}from"./index-800319b6.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),D={class:"d-flex flex-column gap-1"},S={class:"text-caption pa-2 bg-lightprimary"},z=t("div",{class:"text-grey"},"Class",-1),N={class:"font-weight-medium"},U=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),$=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(O,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",D,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",S,[z,t("div",N,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[U]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[$]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; diff --git a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js similarity index 88% rename from addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js rename to addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js index 1d62b42f1..c65380183 100644 --- a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js +++ b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js @@ -1 +1 @@ -import{x as n,o,c as i,w as e,a,a6 as d,b as c,K as u,e as p,t as _,a7 as s,A as f,L as V,J as m}from"./index-c75f6ac5.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; +import{x as n,o,c as i,w as e,a,a6 as d,b as c,K as u,e as p,t as _,a7 as s,A as f,L as V,J as m}from"./index-800319b6.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/addons/dashboard/dist/assets/index-c75f6ac5.js b/addons/dashboard/dist/assets/index-800319b6.js similarity index 99% rename from addons/dashboard/dist/assets/index-c75f6ac5.js rename to addons/dashboard/dist/assets/index-800319b6.js index d1c6cd977..d78356b3a 100644 --- a/addons/dashboard/dist/assets/index-c75f6ac5.js +++ b/addons/dashboard/dist/assets/index-800319b6.js @@ -6,11 +6,11 @@ * vue-router v4.2.4 * (c) 2023 Eduardo San Martin Morote * @license MIT - */const Wr=typeof window<"u";function t5(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const fe=Object.assign;function Li(n,l){const r={};for(const h in l){const c=l[h];r[h]=Kn(c)?c.map(n):n(c)}return r}const Wo=()=>{},Kn=Array.isArray,e5=/\/$/,n5=n=>n.replace(e5,"");function Di(n,l,r="/"){let h,c={},g="",v="";const k=l.indexOf("#");let x=l.indexOf("?");return k=0&&(x=-1),x>-1&&(h=l.slice(0,x),g=l.slice(x+1,k>-1?k:l.length),c=n(g)),k>-1&&(h=h||l.slice(0,k),v=l.slice(k,l.length)),h=s5(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:c,hash:v}}function l5(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function A1(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function r5(n,l,r){const h=l.matched.length-1,c=r.matched.length-1;return h>-1&&h===c&&eo(l.matched[h],r.matched[c])&&qu(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function eo(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function qu(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!o5(n[r],l[r]))return!1;return!0}function o5(n,l){return Kn(n)?B1(n,l):Kn(l)?B1(l,n):n===l}function B1(n,l){return Kn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function s5(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),c=h[h.length-1];(c===".."||c===".")&&h.push("");let g=r.length-1,v,k;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var rs;(function(n){n.pop="pop",n.push="push"})(rs||(rs={}));var Xo;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Xo||(Xo={}));function a5(n){if(!n)if(Wr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),n5(n)}const i5=/^[^#]+#/;function h5(n,l){return n.replace(i5,"#")+l}function d5(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Ga=()=>({left:window.pageXOffset,top:window.pageYOffset});function c5(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),c=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!c)return;l=d5(c,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function H1(n,l){return(history.state?history.state.position-l:-1)+n}const x0=new Map;function u5(n,l){x0.set(n,l)}function p5(n){const l=x0.get(n);return x0.delete(n),l}let g5=()=>location.protocol+"//"+location.host;function Yu(n,l){const{pathname:r,search:h,hash:c}=l,g=n.indexOf("#");if(g>-1){let k=c.includes(n.slice(g))?n.slice(g).length:1,x=c.slice(k);return x[0]!=="/"&&(x="/"+x),A1(x,"")}return A1(r,n)+h+c}function w5(n,l,r,h){let c=[],g=[],v=null;const k=({state:B})=>{const P=Yu(n,location),D=r.value,F=l.value;let X=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}X=F?B.position-F.position:0}else h(P);c.forEach(R=>{R(r.value,D,{delta:X,type:rs.pop,direction:X?X>0?Xo.forward:Xo.back:Xo.unknown})})};function x(){v=r.value}function I(B){c.push(B);const P=()=>{const D=c.indexOf(B);D>-1&&c.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(fe({},B.state,{scroll:Ga()}),"")}function $(){for(const B of g)B();g=[],window.removeEventListener("popstate",k),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",k),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:x,listen:I,destroy:$}}function N1(n,l,r,h=!1,c=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:c?Ga():null}}function v5(n){const{history:l,location:r}=window,h={value:Yu(n,r)},c={value:l.state};c.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(x,I,S){const $=n.indexOf("#"),B=$>-1?(r.host&&document.querySelector("base")?n:n.slice($))+x:g5()+n+x;try{l[S?"replaceState":"pushState"](I,"",B),c.value=I}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(x,I){const S=fe({},l.state,N1(c.value.back,x,c.value.forward,!0),I,{position:c.value.position});g(x,S,!0),h.value=x}function k(x,I){const S=fe({},c.value,l.state,{forward:x,scroll:Ga()});g(S.current,S,!0);const $=fe({},N1(h.value,x,null),{position:S.position+1},I);g(x,$,!1),h.value=x}return{location:h,state:c,push:k,replace:v}}function f5(n){n=a5(n);const l=v5(n),r=w5(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const c=fe({location:"",base:n,go:h,createHref:h5.bind(null,n)},l,r);return Object.defineProperty(c,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(c,"state",{enumerable:!0,get:()=>l.state.value}),c}function m5(n){return typeof n=="string"||n&&typeof n=="object"}function Uu(n){return typeof n=="string"||typeof n=="symbol"}const Pl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Gu=Symbol("");var j1;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(j1||(j1={}));function no(n,l){return fe(new Error,{type:n,[Gu]:!0},l)}function dl(n,l){return n instanceof Error&&Gu in n&&(l==null||!!(n.type&l))}const P1="[^/]+?",k5={sensitive:!1,strict:!1,start:!0,end:!0},b5=/[.+*?^${}()[\]/\\]/g;function M5(n,l){const r=fe({},k5,l),h=[];let c=r.start?"^":"";const g=[];for(const I of n){const S=I.length?[]:[90];r.strict&&!I.length&&(c+="/");for(let $=0;$l.length?l.length===1&&l[0]===40+40?1:-1:0}function z5(n,l){let r=0;const h=n.score,c=l.score;for(;r0&&l[l.length-1]<0}const I5={type:0,value:""},y5=/[a-zA-Z0-9_]/;function C5(n){if(!n)return[[]];if(n==="/")return[[I5]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${I}": ${P}`)}let r=0,h=r;const c=[];let g;function v(){g&&c.push(g),g=[]}let k=0,x,I="",S="";function $(){I&&(r===0?g.push({type:0,value:I}):r===1||r===2||r===3?(g.length>1&&(x==="*"||x==="+")&&l(`A repeatable param (${I}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:I,regexp:S,repeatable:x==="*"||x==="+",optional:x==="*"||x==="?"})):l("Invalid state to consume buffer"),I="")}function B(){I+=x}for(;k{v(H)}:Wo}function v(S){if(Uu(S)){const $=h.get(S);$&&(h.delete(S),r.splice(r.indexOf($),1),$.children.forEach(v),$.alias.forEach(v))}else{const $=r.indexOf(S);$>-1&&(r.splice($,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function k(){return r}function x(S){let $=0;for(;$=0&&(S.record.path!==r[$].record.path||!Zu(S,r[$]));)$++;r.splice($,0,S),S.record.name&&!O1(S)&&h.set(S.record.name,S)}function I(S,$){let B,P={},D,F;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw no(1,{location:S});F=B.record.name,P=fe(D1($.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&D1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),F=B.record.name);else{if(B=$.name?h.get($.name):r.find(H=>H.re.test($.path)),!B)throw no(1,{location:S,currentLocation:$});F=B.record.name,P=fe({},$.params,S.params),D=B.stringify(P)}const X=[];let R=B;for(;R;)X.unshift(R.record),R=R.parent;return{name:F,path:D,params:P,matched:X,meta:H5(X)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:I,removeRoute:v,getRoutes:k,getRecordMatcher:c}}function D1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function A5(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:B5(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function B5(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function O1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function H5(n){return n.reduce((l,r)=>fe(l,r.meta),{})}function F1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function Zu(n,l){return l.children.some(r=>r===n||Zu(n,r))}const Ku=/#/g,N5=/&/g,j5=/\//g,P5=/=/g,L5=/\?/g,Qu=/\+/g,D5=/%5B/g,O5=/%5D/g,Ju=/%5E/g,F5=/%60/g,tp=/%7B/g,R5=/%7C/g,ep=/%7D/g,T5=/%20/g;function Xh(n){return encodeURI(""+n).replace(R5,"|").replace(D5,"[").replace(O5,"]")}function E5(n){return Xh(n).replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function z0(n){return Xh(n).replace(Qu,"%2B").replace(T5,"+").replace(Ku,"%23").replace(N5,"%26").replace(F5,"`").replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function V5(n){return z0(n).replace(P5,"%3D")}function _5(n){return Xh(n).replace(Ku,"%23").replace(L5,"%3F")}function W5(n){return n==null?"":_5(n).replace(j5,"%2F")}function wa(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function X5(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let c=0;cg&&z0(g)):[h&&z0(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function q5(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Kn(h)?h.map(c=>c==null?null:""+c):h==null?h:""+h)}return l}const Y5=Symbol(""),T1=Symbol(""),qh=Symbol(""),np=Symbol(""),I0=Symbol("");function $o(){let n=[];function l(h){return n.push(h),()=>{const c=n.indexOf(h);c>-1&&n.splice(c,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Rl(n,l,r,h,c){const g=h&&(h.enterCallbacks[c]=h.enterCallbacks[c]||[]);return()=>new Promise((v,k)=>{const x=$=>{$===!1?k(no(4,{from:r,to:l})):$ instanceof Error?k($):m5($)?k(no(2,{from:l,to:$})):(g&&h.enterCallbacks[c]===g&&typeof $=="function"&&g.push($),v())},I=n.call(h&&h.instances[c],l,r,x);let S=Promise.resolve(I);n.length<3&&(S=S.then(x)),S.catch($=>k($))})}function Oi(n,l,r,h){const c=[];for(const g of n)for(const v in g.components){let k=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(U5(k)){const I=(k.__vccOpts||k)[l];I&&c.push(Rl(I,r,h,g,v))}else{let x=k();c.push(()=>x.then(I=>{if(!I)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=t5(I)?I.default:I;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Rl(B,r,h,g,v)()}))}}return c}function U5(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function E1(n){const l=de(qh),r=de(np),h=q(()=>l.resolve(je(n.to))),c=q(()=>{const{matched:x}=h.value,{length:I}=x,S=x[I-1],$=r.matched;if(!S||!$.length)return-1;const B=$.findIndex(eo.bind(null,S));if(B>-1)return B;const P=V1(x[I-2]);return I>1&&V1(S)===P&&$[$.length-1].path!==P?$.findIndex(eo.bind(null,x[I-2])):B}),g=q(()=>c.value>-1&&Q5(r.params,h.value.params)),v=q(()=>c.value>-1&&c.value===r.matched.length-1&&qu(r.params,h.value.params));function k(x={}){return K5(x)?l[je(n.replace)?"replace":"push"](je(n.to)).catch(Wo):Promise.resolve()}return{route:h,href:q(()=>h.value.href),isActive:g,isExactActive:v,navigate:k}}const G5=Cr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:E1,setup(n,{slots:l}){const r=Ze(E1(n)),{options:h}=de(qh),c=q(()=>({[_1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[_1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Ln("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:c.value},g)}}}),Z5=G5;function K5(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Q5(n,l){for(const r in l){const h=l[r],c=n[r];if(typeof h=="string"){if(h!==c)return!1}else if(!Kn(c)||c.length!==h.length||h.some((g,v)=>g!==c[v]))return!1}return!0}function V1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const _1=(n,l,r)=>n??l??r,J5=Cr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=de(I0),c=q(()=>n.route||h.value),g=de(T1,0),v=q(()=>{let I=je(g);const{matched:S}=c.value;let $;for(;($=S[I])&&!$.components;)I++;return I}),k=q(()=>c.value.matched[v.value]);Se(T1,q(()=>v.value+1)),Se(Y5,k),Se(I0,c);const x=Lt();return _t(()=>[x.value,k.value,n.name],([I,S,$],[B,P,D])=>{S&&(S.instances[$]=I,P&&P!==S&&I&&I===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),I&&S&&(!P||!eo(S,P)||!B)&&(S.enterCallbacks[$]||[]).forEach(F=>F(I))},{flush:"post"}),()=>{const I=c.value,S=n.name,$=k.value,B=$&&$.components[S];if(!B)return W1(r.default,{Component:B,route:I});const P=$.props[S],D=P?P===!0?I.params:typeof P=="function"?P(I):P:null,X=Ln(B,fe({},D,l,{onVnodeUnmounted:R=>{R.component.isUnmounted&&($.instances[S]=null)},ref:x}));return W1(r.default,{Component:X,route:I})||X}}});function W1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const lp=J5;function tm(n){const l=$5(n.routes,n),r=n.parseQuery||X5,h=n.stringifyQuery||R1,c=n.history,g=$o(),v=$o(),k=$o(),x=Wt(Pl);let I=Pl;Wr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=Li.bind(null,pt=>""+pt),$=Li.bind(null,W5),B=Li.bind(null,wa);function P(pt,Nt){let jt,bt;return Uu(pt)?(jt=l.getRecordMatcher(pt),bt=Nt):bt=pt,l.addRoute(bt,jt)}function D(pt){const Nt=l.getRecordMatcher(pt);Nt&&l.removeRoute(Nt)}function F(){return l.getRoutes().map(pt=>pt.record)}function X(pt){return!!l.getRecordMatcher(pt)}function R(pt,Nt){if(Nt=fe({},Nt||x.value),typeof pt=="string"){const at=Di(r,pt,Nt.path),ct=l.resolve({path:at.path},Nt),kt=c.createHref(at.fullPath);return fe(at,ct,{params:B(ct.params),hash:wa(at.hash),redirectedFrom:void 0,href:kt})}let jt;if("path"in pt)jt=fe({},pt,{path:Di(r,pt.path,Nt.path).path});else{const at=fe({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];jt=fe({},pt,{params:$(at)}),Nt.params=$(Nt.params)}const bt=l.resolve(jt,Nt),ft=pt.hash||"";bt.params=S(B(bt.params));const J=l5(h,fe({},pt,{hash:E5(ft),path:bt.path})),lt=c.createHref(J);return fe({fullPath:J,hash:ft,query:h===R1?q5(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?Di(r,pt,x.value.path):fe({},pt)}function U(pt,Nt){if(I!==pt)return no(8,{from:Nt,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(fe(H(pt),{replace:!0}))}function tt(pt){const Nt=pt.matched[pt.matched.length-1];if(Nt&&Nt.redirect){const{redirect:jt}=Nt;let bt=typeof jt=="function"?jt(pt):jt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),fe({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Nt){const jt=I=R(pt),bt=x.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(jt);if(at)return nt(fe(H(at),{state:typeof at=="object"?fe({},ft,at.state):ft,force:J,replace:lt}),Nt||jt);const ct=jt;ct.redirectedFrom=Nt;let kt;return!J&&r5(h,bt,jt)&&(kt=no(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>dl(yt)?dl(yt,2)?yt:At(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(dl(yt,2))return nt(fe({replace:lt},H(yt.to),{state:typeof yt.to=="object"?fe({},ft,yt.to.state):ft,force:J}),Nt||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function Y(pt,Nt){const jt=U(pt,Nt);return jt?Promise.reject(jt):Promise.resolve()}function G(pt){const Nt=Jt.values().next().value;return Nt&&typeof Nt.runWithContext=="function"?Nt.runWithContext(pt):pt()}function et(pt,Nt){let jt;const[bt,ft,J]=em(pt,Nt);jt=Oi(bt.reverse(),"beforeRouteLeave",pt,Nt);for(const at of bt)at.leaveGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});const lt=Y.bind(null,pt,Nt);return jt.push(lt),ut(jt).then(()=>{jt=[];for(const at of g.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>{jt=Oi(ft,"beforeRouteUpdate",pt,Nt);for(const at of ft)at.updateGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});return jt.push(lt),ut(jt)}).then(()=>{jt=[];for(const at of J)if(at.beforeEnter)if(Kn(at.beforeEnter))for(const ct of at.beforeEnter)jt.push(Rl(ct,pt,Nt));else jt.push(Rl(at.beforeEnter,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),jt=Oi(J,"beforeRouteEnter",pt,Nt),jt.push(lt),ut(jt))).then(()=>{jt=[];for(const at of v.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).catch(at=>dl(at,8)?at:Promise.reject(at))}function st(pt,Nt,jt){k.list().forEach(bt=>G(()=>bt(pt,Nt,jt)))}function rt(pt,Nt,jt,bt,ft){const J=U(pt,Nt);if(J)return J;const lt=Nt===Pl,at=Wr?history.state:{};jt&&(bt||lt?c.replace(pt.fullPath,fe({scroll:lt&&at&&at.scroll},ft)):c.push(pt.fullPath,ft)),x.value=pt,Tt(pt,Nt,jt,lt),At()}let ht;function dt(){ht||(ht=c.listen((pt,Nt,jt)=>{if(!Et.listening)return;const bt=R(pt),ft=tt(bt);if(ft){nt(fe(ft,{replace:!0}),bt).catch(Wo);return}I=bt;const J=x.value;Wr&&u5(H1(J.fullPath,jt.delta),Ga()),et(bt,J).catch(lt=>dl(lt,12)?lt:dl(lt,2)?(nt(lt.to,bt).then(at=>{dl(at,20)&&!jt.delta&&jt.type===rs.pop&&c.go(-1,!1)}).catch(Wo),Promise.reject()):(jt.delta&&c.go(-jt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(jt.delta&&!dl(lt,8)?c.go(-jt.delta,!1):jt.type===rs.pop&&dl(lt,20)&&c.go(-1,!1)),st(bt,J,lt)}).catch(Wo)}))}let Ct=$o(),xt=$o(),wt;function gt(pt,Nt,jt){At(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Nt,jt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&x.value!==Pl?Promise.resolve():new Promise((pt,Nt)=>{Ct.add([pt,Nt])})}function At(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Nt,jt])=>pt?jt(pt):Nt()),Ct.reset()),pt}function Tt(pt,Nt,jt,bt){const{scrollBehavior:ft}=n;if(!Wr||!ft)return Promise.resolve();const J=!jt&&p5(H1(pt.fullPath,0))||(bt||!jt)&&history.state&&history.state.scroll||null;return we().then(()=>ft(pt,Nt,J)).then(lt=>lt&&c5(lt)).catch(lt=>gt(lt,pt,Nt))}const Ft=pt=>c.go(pt);let Qt;const Jt=new Set,Et={currentRoute:x,listening:!0,addRoute:P,removeRoute:D,hasRoute:X,getRoutes:F,resolve:R,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:k.add,onError:xt.add,isReady:It,install(pt){const Nt=this;pt.component("RouterLink",Z5),pt.component("RouterView",lp),pt.config.globalProperties.$router=Nt,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>je(x)}),Wr&&!Qt&&x.value===Pl&&(Qt=!0,W(c.location).catch(ft=>{}));const jt={};for(const ft in Pl)Object.defineProperty(jt,ft,{get:()=>x.value[ft],enumerable:!0});pt.provide(qh,Nt),pt.provide(np,fh(jt)),pt.provide(I0,x);const bt=pt.unmount;Jt.add(pt),pt.unmount=function(){Jt.delete(pt),Jt.size<1&&(I=Pl,ht&&ht(),ht=null,x.value=Pl,Qt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Nt,jt)=>Nt.then(()=>G(jt)),Promise.resolve())}return Et}function em(n,l){const r=[],h=[],c=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;veo(I,k))?h.push(k):r.push(k));const x=n.matched[v];x&&(l.matched.find(I=>eo(I,x))||c.push(x))}return[r,h,c]}const nm=Cr({__name:"App",setup(n){return(l,r)=>(xs(),_a(je(lp)))}}),lm="modulepreload",rm=function(n){return"/"+n},X1={},en=function(l,r,h){if(!r||r.length===0)return l();const c=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=rm(g),g in X1)return;X1[g]=!0;const v=g.endsWith(".css"),k=v?'[rel="stylesheet"]':"";if(!!h)for(let S=c.length-1;S>=0;S--){const $=c[S];if($.href===g&&(!v||$.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${k}`))return;const I=document.createElement("link");if(I.rel=v?"stylesheet":lm,v||(I.as="script",I.crossOrigin=""),I.href=g,document.head.appendChild(I),v)return new Promise((S,$)=>{I.addEventListener("load",S),I.addEventListener("error",()=>$(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},om={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>en(()=>import("./FullLayout-43cdec2d.js"),["assets/FullLayout-43cdec2d.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js","assets/md5-3db5e3e8.js"]),children:[{name:"Dashboard",path:"/",component:()=>en(()=>import("./DefaultDashboard-4eca906c.js"),["assets/DefaultDashboard-4eca906c.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Extensions",path:"/extension",component:()=>en(()=>import("./ExtensionPage-dd2d5b82.js"),[])},{name:"Configs",path:"/config",component:()=>en(()=>import("./ConfigPage-9cac3e0c.js"),["assets/ConfigPage-9cac3e0c.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Default",path:"/dashboard/default",component:()=>en(()=>import("./DefaultDashboard-4eca906c.js"),["assets/DefaultDashboard-4eca906c.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Starter",path:"/starter",component:()=>en(()=>import("./StarterPage-b0efbf05.js"),["assets/StarterPage-b0efbf05.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>en(()=>import("./TablerIcons-ee63977c.js"),["assets/TablerIcons-ee63977c.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Material Icons",path:"/icons/material",component:()=>en(()=>import("./MaterialIcons-dc137c6e.js"),["assets/MaterialIcons-dc137c6e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Typography",path:"/utils/typography",component:()=>en(()=>import("./TypographyPage-bc8b4876.js"),["assets/TypographyPage-bc8b4876.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>en(()=>import("./ShadowPage-1e332d97.js"),["assets/ShadowPage-1e332d97.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])},{name:"Colors",path:"/utils/colors",component:()=>en(()=>import("./ColorPage-55b28b0b.js"),["assets/ColorPage-55b28b0b.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-f4cd58c1.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-4e20b330.js"])}]},sm={path:"/auth",component:()=>en(()=>import("./BlankLayout-525cd529.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>en(()=>import("./LoginPage-83b1dbf4.js"),["assets/LoginPage-83b1dbf4.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js","assets/md5-3db5e3e8.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>en(()=>import("./RegisterPage-2c6d8bac.js"),["assets/RegisterPage-2c6d8bac.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-adfb09fe.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>en(()=>import("./Error404Page-81062baf.js"),["assets/Error404Page-81062baf.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]};function rp(n,l){return function(){return n.apply(l,arguments)}}const{toString:am}=Object.prototype,{getPrototypeOf:Yh}=Object,Za=(n=>l=>{const r=am.call(l);return n[r]||(n[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),il=n=>(n=n.toLowerCase(),l=>Za(l)===n),Ka=n=>l=>typeof l===n,{isArray:po}=Array,os=Ka("undefined");function im(n){return n!==null&&!os(n)&&n.constructor!==null&&!os(n.constructor)&&jn(n.constructor.isBuffer)&&n.constructor.isBuffer(n)}const op=il("ArrayBuffer");function hm(n){let l;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?l=ArrayBuffer.isView(n):l=n&&n.buffer&&op(n.buffer),l}const dm=Ka("string"),jn=Ka("function"),sp=Ka("number"),Qa=n=>n!==null&&typeof n=="object",cm=n=>n===!0||n===!1,ra=n=>{if(Za(n)!=="object")return!1;const l=Yh(n);return(l===null||l===Object.prototype||Object.getPrototypeOf(l)===null)&&!(Symbol.toStringTag in n)&&!(Symbol.iterator in n)},um=il("Date"),pm=il("File"),gm=il("Blob"),wm=il("FileList"),vm=n=>Qa(n)&&jn(n.pipe),fm=n=>{let l;return n&&(typeof FormData=="function"&&n instanceof FormData||jn(n.append)&&((l=Za(n))==="formdata"||l==="object"&&jn(n.toString)&&n.toString()==="[object FormData]"))},mm=il("URLSearchParams"),km=n=>n.trim?n.trim():n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ys(n,l,{allOwnKeys:r=!1}={}){if(n===null||typeof n>"u")return;let h,c;if(typeof n!="object"&&(n=[n]),po(n))for(h=0,c=n.length;h0;)if(c=r[h],l===c.toLowerCase())return c;return null}const ip=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),hp=n=>!os(n)&&n!==ip;function y0(){const{caseless:n}=hp(this)&&this||{},l={},r=(h,c)=>{const g=n&&ap(l,c)||c;ra(l[g])&&ra(h)?l[g]=y0(l[g],h):ra(h)?l[g]=y0({},h):po(h)?l[g]=h.slice():l[g]=h};for(let h=0,c=arguments.length;h(ys(l,(c,g)=>{r&&jn(c)?n[g]=rp(c,r):n[g]=c},{allOwnKeys:h}),n),Mm=n=>(n.charCodeAt(0)===65279&&(n=n.slice(1)),n),xm=(n,l,r,h)=>{n.prototype=Object.create(l.prototype,h),n.prototype.constructor=n,Object.defineProperty(n,"super",{value:l.prototype}),r&&Object.assign(n.prototype,r)},zm=(n,l,r,h)=>{let c,g,v;const k={};if(l=l||{},n==null)return l;do{for(c=Object.getOwnPropertyNames(n),g=c.length;g-- >0;)v=c[g],(!h||h(v,n,l))&&!k[v]&&(l[v]=n[v],k[v]=!0);n=r!==!1&&Yh(n)}while(n&&(!r||r(n,l))&&n!==Object.prototype);return l},Im=(n,l,r)=>{n=String(n),(r===void 0||r>n.length)&&(r=n.length),r-=l.length;const h=n.indexOf(l,r);return h!==-1&&h===r},ym=n=>{if(!n)return null;if(po(n))return n;let l=n.length;if(!sp(l))return null;const r=new Array(l);for(;l-- >0;)r[l]=n[l];return r},Cm=(n=>l=>n&&l instanceof n)(typeof Uint8Array<"u"&&Yh(Uint8Array)),Sm=(n,l)=>{const h=(n&&n[Symbol.iterator]).call(n);let c;for(;(c=h.next())&&!c.done;){const g=c.value;l.call(n,g[0],g[1])}},$m=(n,l)=>{let r;const h=[];for(;(r=n.exec(l))!==null;)h.push(r);return h},Am=il("HTMLFormElement"),Bm=n=>n.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,h,c){return h.toUpperCase()+c}),q1=(({hasOwnProperty:n})=>(l,r)=>n.call(l,r))(Object.prototype),Hm=il("RegExp"),dp=(n,l)=>{const r=Object.getOwnPropertyDescriptors(n),h={};ys(r,(c,g)=>{let v;(v=l(c,g,n))!==!1&&(h[g]=v||c)}),Object.defineProperties(n,h)},Nm=n=>{dp(n,(l,r)=>{if(jn(n)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const h=n[r];if(jn(h)){if(l.enumerable=!1,"writable"in l){l.writable=!1;return}l.set||(l.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},jm=(n,l)=>{const r={},h=c=>{c.forEach(g=>{r[g]=!0})};return po(n)?h(n):h(String(n).split(l)),r},Pm=()=>{},Lm=(n,l)=>(n=+n,Number.isFinite(n)?n:l),Fi="abcdefghijklmnopqrstuvwxyz",Y1="0123456789",cp={DIGIT:Y1,ALPHA:Fi,ALPHA_DIGIT:Fi+Fi.toUpperCase()+Y1},Dm=(n=16,l=cp.ALPHA_DIGIT)=>{let r="";const{length:h}=l;for(;n--;)r+=l[Math.random()*h|0];return r};function Om(n){return!!(n&&jn(n.append)&&n[Symbol.toStringTag]==="FormData"&&n[Symbol.iterator])}const Fm=n=>{const l=new Array(10),r=(h,c)=>{if(Qa(h)){if(l.indexOf(h)>=0)return;if(!("toJSON"in h)){l[c]=h;const g=po(h)?[]:{};return ys(h,(v,k)=>{const x=r(v,c+1);!os(x)&&(g[k]=x)}),l[c]=void 0,g}}return h};return r(n,0)},Rm=il("AsyncFunction"),Tm=n=>n&&(Qa(n)||jn(n))&&jn(n.then)&&jn(n.catch),St={isArray:po,isArrayBuffer:op,isBuffer:im,isFormData:fm,isArrayBufferView:hm,isString:dm,isNumber:sp,isBoolean:cm,isObject:Qa,isPlainObject:ra,isUndefined:os,isDate:um,isFile:pm,isBlob:gm,isRegExp:Hm,isFunction:jn,isStream:vm,isURLSearchParams:mm,isTypedArray:Cm,isFileList:wm,forEach:ys,merge:y0,extend:bm,trim:km,stripBOM:Mm,inherits:xm,toFlatObject:zm,kindOf:Za,kindOfTest:il,endsWith:Im,toArray:ym,forEachEntry:Sm,matchAll:$m,isHTMLForm:Am,hasOwnProperty:q1,hasOwnProp:q1,reduceDescriptors:dp,freezeMethods:Nm,toObjectSet:jm,toCamelCase:Bm,noop:Pm,toFiniteNumber:Lm,findKey:ap,global:ip,isContextDefined:hp,ALPHABET:cp,generateString:Dm,isSpecCompliantForm:Om,toJSONObject:Fm,isAsyncFn:Rm,isThenable:Tm};function pe(n,l,r,h,c){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=n,this.name="AxiosError",l&&(this.code=l),r&&(this.config=r),h&&(this.request=h),c&&(this.response=c)}St.inherits(pe,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:St.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const up=pe.prototype,pp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(n=>{pp[n]={value:n}});Object.defineProperties(pe,pp);Object.defineProperty(up,"isAxiosError",{value:!0});pe.from=(n,l,r,h,c,g)=>{const v=Object.create(up);return St.toFlatObject(n,v,function(x){return x!==Error.prototype},k=>k!=="isAxiosError"),pe.call(v,n.message,l,r,h,c),v.cause=n,v.name=n.name,g&&Object.assign(v,g),v};const Em=null;function C0(n){return St.isPlainObject(n)||St.isArray(n)}function gp(n){return St.endsWith(n,"[]")?n.slice(0,-2):n}function U1(n,l,r){return n?n.concat(l).map(function(c,g){return c=gp(c),!r&&g?"["+c+"]":c}).join(r?".":""):l}function Vm(n){return St.isArray(n)&&!n.some(C0)}const _m=St.toFlatObject(St,{},null,function(l){return/^is[A-Z]/.test(l)});function Ja(n,l,r){if(!St.isObject(n))throw new TypeError("target must be an object");l=l||new FormData,r=St.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(F,X){return!St.isUndefined(X[F])});const h=r.metaTokens,c=r.visitor||S,g=r.dots,v=r.indexes,x=(r.Blob||typeof Blob<"u"&&Blob)&&St.isSpecCompliantForm(l);if(!St.isFunction(c))throw new TypeError("visitor must be a function");function I(D){if(D===null)return"";if(St.isDate(D))return D.toISOString();if(!x&&St.isBlob(D))throw new pe("Blob is not supported. Use a Buffer instead.");return St.isArrayBuffer(D)||St.isTypedArray(D)?x&&typeof Blob=="function"?new Blob([D]):Buffer.from(D):D}function S(D,F,X){let R=D;if(D&&!X&&typeof D=="object"){if(St.endsWith(F,"{}"))F=h?F:F.slice(0,-2),D=JSON.stringify(D);else if(St.isArray(D)&&Vm(D)||(St.isFileList(D)||St.endsWith(F,"[]"))&&(R=St.toArray(D)))return F=gp(F),R.forEach(function(U,W){!(St.isUndefined(U)||U===null)&&l.append(v===!0?U1([F],W,g):v===null?F:F+"[]",I(U))}),!1}return C0(D)?!0:(l.append(U1(X,F,g),I(D)),!1)}const $=[],B=Object.assign(_m,{defaultVisitor:S,convertValue:I,isVisitable:C0});function P(D,F){if(!St.isUndefined(D)){if($.indexOf(D)!==-1)throw Error("Circular reference detected in "+F.join("."));$.push(D),St.forEach(D,function(R,H){(!(St.isUndefined(R)||R===null)&&c.call(l,R,St.isString(H)?H.trim():H,F,B))===!0&&P(R,F?F.concat(H):[H])}),$.pop()}}if(!St.isObject(n))throw new TypeError("data must be an object");return P(n),l}function G1(n){const l={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(n).replace(/[!'()~]|%20|%00/g,function(h){return l[h]})}function Uh(n,l){this._pairs=[],n&&Ja(n,this,l)}const wp=Uh.prototype;wp.append=function(l,r){this._pairs.push([l,r])};wp.toString=function(l){const r=l?function(h){return l.call(this,h,G1)}:G1;return this._pairs.map(function(c){return r(c[0])+"="+r(c[1])},"").join("&")};function Wm(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function vp(n,l,r){if(!l)return n;const h=r&&r.encode||Wm,c=r&&r.serialize;let g;if(c?g=c(l,r):g=St.isURLSearchParams(l)?l.toString():new Uh(l,r).toString(h),g){const v=n.indexOf("#");v!==-1&&(n=n.slice(0,v)),n+=(n.indexOf("?")===-1?"?":"&")+g}return n}class Xm{constructor(){this.handlers=[]}use(l,r,h){return this.handlers.push({fulfilled:l,rejected:r,synchronous:h?h.synchronous:!1,runWhen:h?h.runWhen:null}),this.handlers.length-1}eject(l){this.handlers[l]&&(this.handlers[l]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(l){St.forEach(this.handlers,function(h){h!==null&&l(h)})}}const Z1=Xm,fp={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},qm=typeof URLSearchParams<"u"?URLSearchParams:Uh,Ym=typeof FormData<"u"?FormData:null,Um=typeof Blob<"u"?Blob:null,Gm={isBrowser:!0,classes:{URLSearchParams:qm,FormData:Ym,Blob:Um},protocols:["http","https","file","blob","url","data"]},mp=typeof window<"u"&&typeof document<"u",Zm=(n=>mp&&["ReactNative","NativeScript","NS"].indexOf(n)<0)(typeof navigator<"u"&&navigator.product),Km=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Qm=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:mp,hasStandardBrowserEnv:Zm,hasStandardBrowserWebWorkerEnv:Km},Symbol.toStringTag,{value:"Module"})),nl={...Qm,...Gm};function Jm(n,l){return Ja(n,new nl.classes.URLSearchParams,Object.assign({visitor:function(r,h,c,g){return nl.isNode&&St.isBuffer(r)?(this.append(h,r.toString("base64")),!1):g.defaultVisitor.apply(this,arguments)}},l))}function tk(n){return St.matchAll(/\w+|\[(\w*)]/g,n).map(l=>l[0]==="[]"?"":l[1]||l[0])}function ek(n){const l={},r=Object.keys(n);let h;const c=r.length;let g;for(h=0;h=r.length;return v=!v&&St.isArray(c)?c.length:v,x?(St.hasOwnProp(c,v)?c[v]=[c[v],h]:c[v]=h,!k):((!c[v]||!St.isObject(c[v]))&&(c[v]=[]),l(r,h,c[v],g)&&St.isArray(c[v])&&(c[v]=ek(c[v])),!k)}if(St.isFormData(n)&&St.isFunction(n.entries)){const r={};return St.forEachEntry(n,(h,c)=>{l(tk(h),c,r,0)}),r}return null}function nk(n,l,r){if(St.isString(n))try{return(l||JSON.parse)(n),St.trim(n)}catch(h){if(h.name!=="SyntaxError")throw h}return(r||JSON.stringify)(n)}const Gh={transitional:fp,adapter:["xhr","http"],transformRequest:[function(l,r){const h=r.getContentType()||"",c=h.indexOf("application/json")>-1,g=St.isObject(l);if(g&&St.isHTMLForm(l)&&(l=new FormData(l)),St.isFormData(l))return c&&c?JSON.stringify(kp(l)):l;if(St.isArrayBuffer(l)||St.isBuffer(l)||St.isStream(l)||St.isFile(l)||St.isBlob(l))return l;if(St.isArrayBufferView(l))return l.buffer;if(St.isURLSearchParams(l))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),l.toString();let k;if(g){if(h.indexOf("application/x-www-form-urlencoded")>-1)return Jm(l,this.formSerializer).toString();if((k=St.isFileList(l))||h.indexOf("multipart/form-data")>-1){const x=this.env&&this.env.FormData;return Ja(k?{"files[]":l}:l,x&&new x,this.formSerializer)}}return g||c?(r.setContentType("application/json",!1),nk(l)):l}],transformResponse:[function(l){const r=this.transitional||Gh.transitional,h=r&&r.forcedJSONParsing,c=this.responseType==="json";if(l&&St.isString(l)&&(h&&!this.responseType||c)){const v=!(r&&r.silentJSONParsing)&&c;try{return JSON.parse(l)}catch(k){if(v)throw k.name==="SyntaxError"?pe.from(k,pe.ERR_BAD_RESPONSE,this,null,this.response):k}}return l}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:nl.classes.FormData,Blob:nl.classes.Blob},validateStatus:function(l){return l>=200&&l<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};St.forEach(["delete","get","head","post","put","patch"],n=>{Gh.headers[n]={}});const Zh=Gh,lk=St.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),rk=n=>{const l={};let r,h,c;return n&&n.split(` + */const Wr=typeof window<"u";function t5(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const fe=Object.assign;function Li(n,l){const r={};for(const h in l){const c=l[h];r[h]=Kn(c)?c.map(n):n(c)}return r}const Wo=()=>{},Kn=Array.isArray,e5=/\/$/,n5=n=>n.replace(e5,"");function Di(n,l,r="/"){let h,c={},g="",v="";const k=l.indexOf("#");let x=l.indexOf("?");return k=0&&(x=-1),x>-1&&(h=l.slice(0,x),g=l.slice(x+1,k>-1?k:l.length),c=n(g)),k>-1&&(h=h||l.slice(0,k),v=l.slice(k,l.length)),h=s5(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:c,hash:v}}function l5(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function A1(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function r5(n,l,r){const h=l.matched.length-1,c=r.matched.length-1;return h>-1&&h===c&&eo(l.matched[h],r.matched[c])&&qu(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function eo(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function qu(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!o5(n[r],l[r]))return!1;return!0}function o5(n,l){return Kn(n)?B1(n,l):Kn(l)?B1(l,n):n===l}function B1(n,l){return Kn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function s5(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),c=h[h.length-1];(c===".."||c===".")&&h.push("");let g=r.length-1,v,k;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var rs;(function(n){n.pop="pop",n.push="push"})(rs||(rs={}));var Xo;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Xo||(Xo={}));function a5(n){if(!n)if(Wr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),n5(n)}const i5=/^[^#]+#/;function h5(n,l){return n.replace(i5,"#")+l}function d5(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Ga=()=>({left:window.pageXOffset,top:window.pageYOffset});function c5(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),c=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!c)return;l=d5(c,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function H1(n,l){return(history.state?history.state.position-l:-1)+n}const x0=new Map;function u5(n,l){x0.set(n,l)}function p5(n){const l=x0.get(n);return x0.delete(n),l}let g5=()=>location.protocol+"//"+location.host;function Yu(n,l){const{pathname:r,search:h,hash:c}=l,g=n.indexOf("#");if(g>-1){let k=c.includes(n.slice(g))?n.slice(g).length:1,x=c.slice(k);return x[0]!=="/"&&(x="/"+x),A1(x,"")}return A1(r,n)+h+c}function w5(n,l,r,h){let c=[],g=[],v=null;const k=({state:B})=>{const P=Yu(n,location),D=r.value,F=l.value;let X=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}X=F?B.position-F.position:0}else h(P);c.forEach(R=>{R(r.value,D,{delta:X,type:rs.pop,direction:X?X>0?Xo.forward:Xo.back:Xo.unknown})})};function x(){v=r.value}function I(B){c.push(B);const P=()=>{const D=c.indexOf(B);D>-1&&c.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(fe({},B.state,{scroll:Ga()}),"")}function $(){for(const B of g)B();g=[],window.removeEventListener("popstate",k),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",k),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:x,listen:I,destroy:$}}function N1(n,l,r,h=!1,c=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:c?Ga():null}}function v5(n){const{history:l,location:r}=window,h={value:Yu(n,r)},c={value:l.state};c.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(x,I,S){const $=n.indexOf("#"),B=$>-1?(r.host&&document.querySelector("base")?n:n.slice($))+x:g5()+n+x;try{l[S?"replaceState":"pushState"](I,"",B),c.value=I}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(x,I){const S=fe({},l.state,N1(c.value.back,x,c.value.forward,!0),I,{position:c.value.position});g(x,S,!0),h.value=x}function k(x,I){const S=fe({},c.value,l.state,{forward:x,scroll:Ga()});g(S.current,S,!0);const $=fe({},N1(h.value,x,null),{position:S.position+1},I);g(x,$,!1),h.value=x}return{location:h,state:c,push:k,replace:v}}function f5(n){n=a5(n);const l=v5(n),r=w5(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const c=fe({location:"",base:n,go:h,createHref:h5.bind(null,n)},l,r);return Object.defineProperty(c,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(c,"state",{enumerable:!0,get:()=>l.state.value}),c}function m5(n){return typeof n=="string"||n&&typeof n=="object"}function Uu(n){return typeof n=="string"||typeof n=="symbol"}const Pl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Gu=Symbol("");var j1;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(j1||(j1={}));function no(n,l){return fe(new Error,{type:n,[Gu]:!0},l)}function dl(n,l){return n instanceof Error&&Gu in n&&(l==null||!!(n.type&l))}const P1="[^/]+?",k5={sensitive:!1,strict:!1,start:!0,end:!0},b5=/[.+*?^${}()[\]/\\]/g;function M5(n,l){const r=fe({},k5,l),h=[];let c=r.start?"^":"";const g=[];for(const I of n){const S=I.length?[]:[90];r.strict&&!I.length&&(c+="/");for(let $=0;$l.length?l.length===1&&l[0]===40+40?1:-1:0}function z5(n,l){let r=0;const h=n.score,c=l.score;for(;r0&&l[l.length-1]<0}const I5={type:0,value:""},y5=/[a-zA-Z0-9_]/;function C5(n){if(!n)return[[]];if(n==="/")return[[I5]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${I}": ${P}`)}let r=0,h=r;const c=[];let g;function v(){g&&c.push(g),g=[]}let k=0,x,I="",S="";function $(){I&&(r===0?g.push({type:0,value:I}):r===1||r===2||r===3?(g.length>1&&(x==="*"||x==="+")&&l(`A repeatable param (${I}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:I,regexp:S,repeatable:x==="*"||x==="+",optional:x==="*"||x==="?"})):l("Invalid state to consume buffer"),I="")}function B(){I+=x}for(;k{v(H)}:Wo}function v(S){if(Uu(S)){const $=h.get(S);$&&(h.delete(S),r.splice(r.indexOf($),1),$.children.forEach(v),$.alias.forEach(v))}else{const $=r.indexOf(S);$>-1&&(r.splice($,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function k(){return r}function x(S){let $=0;for(;$=0&&(S.record.path!==r[$].record.path||!Zu(S,r[$]));)$++;r.splice($,0,S),S.record.name&&!O1(S)&&h.set(S.record.name,S)}function I(S,$){let B,P={},D,F;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw no(1,{location:S});F=B.record.name,P=fe(D1($.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&D1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),F=B.record.name);else{if(B=$.name?h.get($.name):r.find(H=>H.re.test($.path)),!B)throw no(1,{location:S,currentLocation:$});F=B.record.name,P=fe({},$.params,S.params),D=B.stringify(P)}const X=[];let R=B;for(;R;)X.unshift(R.record),R=R.parent;return{name:F,path:D,params:P,matched:X,meta:H5(X)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:I,removeRoute:v,getRoutes:k,getRecordMatcher:c}}function D1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function A5(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:B5(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function B5(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function O1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function H5(n){return n.reduce((l,r)=>fe(l,r.meta),{})}function F1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function Zu(n,l){return l.children.some(r=>r===n||Zu(n,r))}const Ku=/#/g,N5=/&/g,j5=/\//g,P5=/=/g,L5=/\?/g,Qu=/\+/g,D5=/%5B/g,O5=/%5D/g,Ju=/%5E/g,F5=/%60/g,tp=/%7B/g,R5=/%7C/g,ep=/%7D/g,T5=/%20/g;function Xh(n){return encodeURI(""+n).replace(R5,"|").replace(D5,"[").replace(O5,"]")}function E5(n){return Xh(n).replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function z0(n){return Xh(n).replace(Qu,"%2B").replace(T5,"+").replace(Ku,"%23").replace(N5,"%26").replace(F5,"`").replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function V5(n){return z0(n).replace(P5,"%3D")}function _5(n){return Xh(n).replace(Ku,"%23").replace(L5,"%3F")}function W5(n){return n==null?"":_5(n).replace(j5,"%2F")}function wa(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function X5(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let c=0;cg&&z0(g)):[h&&z0(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function q5(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Kn(h)?h.map(c=>c==null?null:""+c):h==null?h:""+h)}return l}const Y5=Symbol(""),T1=Symbol(""),qh=Symbol(""),np=Symbol(""),I0=Symbol("");function $o(){let n=[];function l(h){return n.push(h),()=>{const c=n.indexOf(h);c>-1&&n.splice(c,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Rl(n,l,r,h,c){const g=h&&(h.enterCallbacks[c]=h.enterCallbacks[c]||[]);return()=>new Promise((v,k)=>{const x=$=>{$===!1?k(no(4,{from:r,to:l})):$ instanceof Error?k($):m5($)?k(no(2,{from:l,to:$})):(g&&h.enterCallbacks[c]===g&&typeof $=="function"&&g.push($),v())},I=n.call(h&&h.instances[c],l,r,x);let S=Promise.resolve(I);n.length<3&&(S=S.then(x)),S.catch($=>k($))})}function Oi(n,l,r,h){const c=[];for(const g of n)for(const v in g.components){let k=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(U5(k)){const I=(k.__vccOpts||k)[l];I&&c.push(Rl(I,r,h,g,v))}else{let x=k();c.push(()=>x.then(I=>{if(!I)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=t5(I)?I.default:I;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Rl(B,r,h,g,v)()}))}}return c}function U5(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function E1(n){const l=de(qh),r=de(np),h=q(()=>l.resolve(je(n.to))),c=q(()=>{const{matched:x}=h.value,{length:I}=x,S=x[I-1],$=r.matched;if(!S||!$.length)return-1;const B=$.findIndex(eo.bind(null,S));if(B>-1)return B;const P=V1(x[I-2]);return I>1&&V1(S)===P&&$[$.length-1].path!==P?$.findIndex(eo.bind(null,x[I-2])):B}),g=q(()=>c.value>-1&&Q5(r.params,h.value.params)),v=q(()=>c.value>-1&&c.value===r.matched.length-1&&qu(r.params,h.value.params));function k(x={}){return K5(x)?l[je(n.replace)?"replace":"push"](je(n.to)).catch(Wo):Promise.resolve()}return{route:h,href:q(()=>h.value.href),isActive:g,isExactActive:v,navigate:k}}const G5=Cr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:E1,setup(n,{slots:l}){const r=Ze(E1(n)),{options:h}=de(qh),c=q(()=>({[_1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[_1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Ln("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:c.value},g)}}}),Z5=G5;function K5(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Q5(n,l){for(const r in l){const h=l[r],c=n[r];if(typeof h=="string"){if(h!==c)return!1}else if(!Kn(c)||c.length!==h.length||h.some((g,v)=>g!==c[v]))return!1}return!0}function V1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const _1=(n,l,r)=>n??l??r,J5=Cr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=de(I0),c=q(()=>n.route||h.value),g=de(T1,0),v=q(()=>{let I=je(g);const{matched:S}=c.value;let $;for(;($=S[I])&&!$.components;)I++;return I}),k=q(()=>c.value.matched[v.value]);Se(T1,q(()=>v.value+1)),Se(Y5,k),Se(I0,c);const x=Lt();return _t(()=>[x.value,k.value,n.name],([I,S,$],[B,P,D])=>{S&&(S.instances[$]=I,P&&P!==S&&I&&I===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),I&&S&&(!P||!eo(S,P)||!B)&&(S.enterCallbacks[$]||[]).forEach(F=>F(I))},{flush:"post"}),()=>{const I=c.value,S=n.name,$=k.value,B=$&&$.components[S];if(!B)return W1(r.default,{Component:B,route:I});const P=$.props[S],D=P?P===!0?I.params:typeof P=="function"?P(I):P:null,X=Ln(B,fe({},D,l,{onVnodeUnmounted:R=>{R.component.isUnmounted&&($.instances[S]=null)},ref:x}));return W1(r.default,{Component:X,route:I})||X}}});function W1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const lp=J5;function tm(n){const l=$5(n.routes,n),r=n.parseQuery||X5,h=n.stringifyQuery||R1,c=n.history,g=$o(),v=$o(),k=$o(),x=Wt(Pl);let I=Pl;Wr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=Li.bind(null,pt=>""+pt),$=Li.bind(null,W5),B=Li.bind(null,wa);function P(pt,Nt){let jt,bt;return Uu(pt)?(jt=l.getRecordMatcher(pt),bt=Nt):bt=pt,l.addRoute(bt,jt)}function D(pt){const Nt=l.getRecordMatcher(pt);Nt&&l.removeRoute(Nt)}function F(){return l.getRoutes().map(pt=>pt.record)}function X(pt){return!!l.getRecordMatcher(pt)}function R(pt,Nt){if(Nt=fe({},Nt||x.value),typeof pt=="string"){const at=Di(r,pt,Nt.path),ct=l.resolve({path:at.path},Nt),kt=c.createHref(at.fullPath);return fe(at,ct,{params:B(ct.params),hash:wa(at.hash),redirectedFrom:void 0,href:kt})}let jt;if("path"in pt)jt=fe({},pt,{path:Di(r,pt.path,Nt.path).path});else{const at=fe({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];jt=fe({},pt,{params:$(at)}),Nt.params=$(Nt.params)}const bt=l.resolve(jt,Nt),ft=pt.hash||"";bt.params=S(B(bt.params));const J=l5(h,fe({},pt,{hash:E5(ft),path:bt.path})),lt=c.createHref(J);return fe({fullPath:J,hash:ft,query:h===R1?q5(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?Di(r,pt,x.value.path):fe({},pt)}function U(pt,Nt){if(I!==pt)return no(8,{from:Nt,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(fe(H(pt),{replace:!0}))}function tt(pt){const Nt=pt.matched[pt.matched.length-1];if(Nt&&Nt.redirect){const{redirect:jt}=Nt;let bt=typeof jt=="function"?jt(pt):jt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),fe({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Nt){const jt=I=R(pt),bt=x.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(jt);if(at)return nt(fe(H(at),{state:typeof at=="object"?fe({},ft,at.state):ft,force:J,replace:lt}),Nt||jt);const ct=jt;ct.redirectedFrom=Nt;let kt;return!J&&r5(h,bt,jt)&&(kt=no(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>dl(yt)?dl(yt,2)?yt:At(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(dl(yt,2))return nt(fe({replace:lt},H(yt.to),{state:typeof yt.to=="object"?fe({},ft,yt.to.state):ft,force:J}),Nt||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function Y(pt,Nt){const jt=U(pt,Nt);return jt?Promise.reject(jt):Promise.resolve()}function G(pt){const Nt=Jt.values().next().value;return Nt&&typeof Nt.runWithContext=="function"?Nt.runWithContext(pt):pt()}function et(pt,Nt){let jt;const[bt,ft,J]=em(pt,Nt);jt=Oi(bt.reverse(),"beforeRouteLeave",pt,Nt);for(const at of bt)at.leaveGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});const lt=Y.bind(null,pt,Nt);return jt.push(lt),ut(jt).then(()=>{jt=[];for(const at of g.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>{jt=Oi(ft,"beforeRouteUpdate",pt,Nt);for(const at of ft)at.updateGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});return jt.push(lt),ut(jt)}).then(()=>{jt=[];for(const at of J)if(at.beforeEnter)if(Kn(at.beforeEnter))for(const ct of at.beforeEnter)jt.push(Rl(ct,pt,Nt));else jt.push(Rl(at.beforeEnter,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),jt=Oi(J,"beforeRouteEnter",pt,Nt),jt.push(lt),ut(jt))).then(()=>{jt=[];for(const at of v.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).catch(at=>dl(at,8)?at:Promise.reject(at))}function st(pt,Nt,jt){k.list().forEach(bt=>G(()=>bt(pt,Nt,jt)))}function rt(pt,Nt,jt,bt,ft){const J=U(pt,Nt);if(J)return J;const lt=Nt===Pl,at=Wr?history.state:{};jt&&(bt||lt?c.replace(pt.fullPath,fe({scroll:lt&&at&&at.scroll},ft)):c.push(pt.fullPath,ft)),x.value=pt,Tt(pt,Nt,jt,lt),At()}let ht;function dt(){ht||(ht=c.listen((pt,Nt,jt)=>{if(!Et.listening)return;const bt=R(pt),ft=tt(bt);if(ft){nt(fe(ft,{replace:!0}),bt).catch(Wo);return}I=bt;const J=x.value;Wr&&u5(H1(J.fullPath,jt.delta),Ga()),et(bt,J).catch(lt=>dl(lt,12)?lt:dl(lt,2)?(nt(lt.to,bt).then(at=>{dl(at,20)&&!jt.delta&&jt.type===rs.pop&&c.go(-1,!1)}).catch(Wo),Promise.reject()):(jt.delta&&c.go(-jt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(jt.delta&&!dl(lt,8)?c.go(-jt.delta,!1):jt.type===rs.pop&&dl(lt,20)&&c.go(-1,!1)),st(bt,J,lt)}).catch(Wo)}))}let Ct=$o(),xt=$o(),wt;function gt(pt,Nt,jt){At(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Nt,jt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&x.value!==Pl?Promise.resolve():new Promise((pt,Nt)=>{Ct.add([pt,Nt])})}function At(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Nt,jt])=>pt?jt(pt):Nt()),Ct.reset()),pt}function Tt(pt,Nt,jt,bt){const{scrollBehavior:ft}=n;if(!Wr||!ft)return Promise.resolve();const J=!jt&&p5(H1(pt.fullPath,0))||(bt||!jt)&&history.state&&history.state.scroll||null;return we().then(()=>ft(pt,Nt,J)).then(lt=>lt&&c5(lt)).catch(lt=>gt(lt,pt,Nt))}const Ft=pt=>c.go(pt);let Qt;const Jt=new Set,Et={currentRoute:x,listening:!0,addRoute:P,removeRoute:D,hasRoute:X,getRoutes:F,resolve:R,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:k.add,onError:xt.add,isReady:It,install(pt){const Nt=this;pt.component("RouterLink",Z5),pt.component("RouterView",lp),pt.config.globalProperties.$router=Nt,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>je(x)}),Wr&&!Qt&&x.value===Pl&&(Qt=!0,W(c.location).catch(ft=>{}));const jt={};for(const ft in Pl)Object.defineProperty(jt,ft,{get:()=>x.value[ft],enumerable:!0});pt.provide(qh,Nt),pt.provide(np,fh(jt)),pt.provide(I0,x);const bt=pt.unmount;Jt.add(pt),pt.unmount=function(){Jt.delete(pt),Jt.size<1&&(I=Pl,ht&&ht(),ht=null,x.value=Pl,Qt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Nt,jt)=>Nt.then(()=>G(jt)),Promise.resolve())}return Et}function em(n,l){const r=[],h=[],c=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;veo(I,k))?h.push(k):r.push(k));const x=n.matched[v];x&&(l.matched.find(I=>eo(I,x))||c.push(x))}return[r,h,c]}const nm=Cr({__name:"App",setup(n){return(l,r)=>(xs(),_a(je(lp)))}}),lm="modulepreload",rm=function(n){return"/"+n},X1={},en=function(l,r,h){if(!r||r.length===0)return l();const c=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=rm(g),g in X1)return;X1[g]=!0;const v=g.endsWith(".css"),k=v?'[rel="stylesheet"]':"";if(!!h)for(let S=c.length-1;S>=0;S--){const $=c[S];if($.href===g&&(!v||$.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${k}`))return;const I=document.createElement("link");if(I.rel=v?"stylesheet":lm,v||(I.as="script",I.crossOrigin=""),I.href=g,document.head.appendChild(I),v)return new Promise((S,$)=>{I.addEventListener("load",S),I.addEventListener("error",()=>$(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},om={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>en(()=>import("./FullLayout-71b73dcb.js"),["assets/FullLayout-71b73dcb.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js","assets/md5-d27f8a54.js"]),children:[{name:"Dashboard",path:"/",component:()=>en(()=>import("./DefaultDashboard-4f67e2ec.js"),["assets/DefaultDashboard-4f67e2ec.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Extensions",path:"/extension",component:()=>en(()=>import("./ExtensionPage-180d977b.js"),[])},{name:"Configs",path:"/config",component:()=>en(()=>import("./ConfigPage-9cadf278.js"),["assets/ConfigPage-9cadf278.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Default",path:"/dashboard/default",component:()=>en(()=>import("./DefaultDashboard-4f67e2ec.js"),["assets/DefaultDashboard-4f67e2ec.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Starter",path:"/starter",component:()=>en(()=>import("./StarterPage-1e1151ff.js"),["assets/StarterPage-1e1151ff.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>en(()=>import("./TablerIcons-3bd524da.js"),["assets/TablerIcons-3bd524da.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Material Icons",path:"/icons/material",component:()=>en(()=>import("./MaterialIcons-c997ec21.js"),["assets/MaterialIcons-c997ec21.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Typography",path:"/utils/typography",component:()=>en(()=>import("./TypographyPage-5e7cf496.js"),["assets/TypographyPage-5e7cf496.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>en(()=>import("./ShadowPage-a816a721.js"),["assets/ShadowPage-a816a721.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Colors",path:"/utils/colors",component:()=>en(()=>import("./ColorPage-c6cfe87e.js"),["assets/ColorPage-c6cfe87e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])}]},sm={path:"/auth",component:()=>en(()=>import("./BlankLayout-434d9bb3.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>en(()=>import("./LoginPage-ba6297b9.js"),["assets/LoginPage-ba6297b9.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js","assets/md5-d27f8a54.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>en(()=>import("./RegisterPage-796fb781.js"),["assets/RegisterPage-796fb781.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>en(()=>import("./Error404Page-a7e4df24.js"),["assets/Error404Page-a7e4df24.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]};function rp(n,l){return function(){return n.apply(l,arguments)}}const{toString:am}=Object.prototype,{getPrototypeOf:Yh}=Object,Za=(n=>l=>{const r=am.call(l);return n[r]||(n[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),il=n=>(n=n.toLowerCase(),l=>Za(l)===n),Ka=n=>l=>typeof l===n,{isArray:po}=Array,os=Ka("undefined");function im(n){return n!==null&&!os(n)&&n.constructor!==null&&!os(n.constructor)&&jn(n.constructor.isBuffer)&&n.constructor.isBuffer(n)}const op=il("ArrayBuffer");function hm(n){let l;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?l=ArrayBuffer.isView(n):l=n&&n.buffer&&op(n.buffer),l}const dm=Ka("string"),jn=Ka("function"),sp=Ka("number"),Qa=n=>n!==null&&typeof n=="object",cm=n=>n===!0||n===!1,ra=n=>{if(Za(n)!=="object")return!1;const l=Yh(n);return(l===null||l===Object.prototype||Object.getPrototypeOf(l)===null)&&!(Symbol.toStringTag in n)&&!(Symbol.iterator in n)},um=il("Date"),pm=il("File"),gm=il("Blob"),wm=il("FileList"),vm=n=>Qa(n)&&jn(n.pipe),fm=n=>{let l;return n&&(typeof FormData=="function"&&n instanceof FormData||jn(n.append)&&((l=Za(n))==="formdata"||l==="object"&&jn(n.toString)&&n.toString()==="[object FormData]"))},mm=il("URLSearchParams"),km=n=>n.trim?n.trim():n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ys(n,l,{allOwnKeys:r=!1}={}){if(n===null||typeof n>"u")return;let h,c;if(typeof n!="object"&&(n=[n]),po(n))for(h=0,c=n.length;h0;)if(c=r[h],l===c.toLowerCase())return c;return null}const ip=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),hp=n=>!os(n)&&n!==ip;function y0(){const{caseless:n}=hp(this)&&this||{},l={},r=(h,c)=>{const g=n&&ap(l,c)||c;ra(l[g])&&ra(h)?l[g]=y0(l[g],h):ra(h)?l[g]=y0({},h):po(h)?l[g]=h.slice():l[g]=h};for(let h=0,c=arguments.length;h(ys(l,(c,g)=>{r&&jn(c)?n[g]=rp(c,r):n[g]=c},{allOwnKeys:h}),n),Mm=n=>(n.charCodeAt(0)===65279&&(n=n.slice(1)),n),xm=(n,l,r,h)=>{n.prototype=Object.create(l.prototype,h),n.prototype.constructor=n,Object.defineProperty(n,"super",{value:l.prototype}),r&&Object.assign(n.prototype,r)},zm=(n,l,r,h)=>{let c,g,v;const k={};if(l=l||{},n==null)return l;do{for(c=Object.getOwnPropertyNames(n),g=c.length;g-- >0;)v=c[g],(!h||h(v,n,l))&&!k[v]&&(l[v]=n[v],k[v]=!0);n=r!==!1&&Yh(n)}while(n&&(!r||r(n,l))&&n!==Object.prototype);return l},Im=(n,l,r)=>{n=String(n),(r===void 0||r>n.length)&&(r=n.length),r-=l.length;const h=n.indexOf(l,r);return h!==-1&&h===r},ym=n=>{if(!n)return null;if(po(n))return n;let l=n.length;if(!sp(l))return null;const r=new Array(l);for(;l-- >0;)r[l]=n[l];return r},Cm=(n=>l=>n&&l instanceof n)(typeof Uint8Array<"u"&&Yh(Uint8Array)),Sm=(n,l)=>{const h=(n&&n[Symbol.iterator]).call(n);let c;for(;(c=h.next())&&!c.done;){const g=c.value;l.call(n,g[0],g[1])}},$m=(n,l)=>{let r;const h=[];for(;(r=n.exec(l))!==null;)h.push(r);return h},Am=il("HTMLFormElement"),Bm=n=>n.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,h,c){return h.toUpperCase()+c}),q1=(({hasOwnProperty:n})=>(l,r)=>n.call(l,r))(Object.prototype),Hm=il("RegExp"),dp=(n,l)=>{const r=Object.getOwnPropertyDescriptors(n),h={};ys(r,(c,g)=>{let v;(v=l(c,g,n))!==!1&&(h[g]=v||c)}),Object.defineProperties(n,h)},Nm=n=>{dp(n,(l,r)=>{if(jn(n)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const h=n[r];if(jn(h)){if(l.enumerable=!1,"writable"in l){l.writable=!1;return}l.set||(l.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},jm=(n,l)=>{const r={},h=c=>{c.forEach(g=>{r[g]=!0})};return po(n)?h(n):h(String(n).split(l)),r},Pm=()=>{},Lm=(n,l)=>(n=+n,Number.isFinite(n)?n:l),Fi="abcdefghijklmnopqrstuvwxyz",Y1="0123456789",cp={DIGIT:Y1,ALPHA:Fi,ALPHA_DIGIT:Fi+Fi.toUpperCase()+Y1},Dm=(n=16,l=cp.ALPHA_DIGIT)=>{let r="";const{length:h}=l;for(;n--;)r+=l[Math.random()*h|0];return r};function Om(n){return!!(n&&jn(n.append)&&n[Symbol.toStringTag]==="FormData"&&n[Symbol.iterator])}const Fm=n=>{const l=new Array(10),r=(h,c)=>{if(Qa(h)){if(l.indexOf(h)>=0)return;if(!("toJSON"in h)){l[c]=h;const g=po(h)?[]:{};return ys(h,(v,k)=>{const x=r(v,c+1);!os(x)&&(g[k]=x)}),l[c]=void 0,g}}return h};return r(n,0)},Rm=il("AsyncFunction"),Tm=n=>n&&(Qa(n)||jn(n))&&jn(n.then)&&jn(n.catch),St={isArray:po,isArrayBuffer:op,isBuffer:im,isFormData:fm,isArrayBufferView:hm,isString:dm,isNumber:sp,isBoolean:cm,isObject:Qa,isPlainObject:ra,isUndefined:os,isDate:um,isFile:pm,isBlob:gm,isRegExp:Hm,isFunction:jn,isStream:vm,isURLSearchParams:mm,isTypedArray:Cm,isFileList:wm,forEach:ys,merge:y0,extend:bm,trim:km,stripBOM:Mm,inherits:xm,toFlatObject:zm,kindOf:Za,kindOfTest:il,endsWith:Im,toArray:ym,forEachEntry:Sm,matchAll:$m,isHTMLForm:Am,hasOwnProperty:q1,hasOwnProp:q1,reduceDescriptors:dp,freezeMethods:Nm,toObjectSet:jm,toCamelCase:Bm,noop:Pm,toFiniteNumber:Lm,findKey:ap,global:ip,isContextDefined:hp,ALPHABET:cp,generateString:Dm,isSpecCompliantForm:Om,toJSONObject:Fm,isAsyncFn:Rm,isThenable:Tm};function pe(n,l,r,h,c){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=n,this.name="AxiosError",l&&(this.code=l),r&&(this.config=r),h&&(this.request=h),c&&(this.response=c)}St.inherits(pe,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:St.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const up=pe.prototype,pp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(n=>{pp[n]={value:n}});Object.defineProperties(pe,pp);Object.defineProperty(up,"isAxiosError",{value:!0});pe.from=(n,l,r,h,c,g)=>{const v=Object.create(up);return St.toFlatObject(n,v,function(x){return x!==Error.prototype},k=>k!=="isAxiosError"),pe.call(v,n.message,l,r,h,c),v.cause=n,v.name=n.name,g&&Object.assign(v,g),v};const Em=null;function C0(n){return St.isPlainObject(n)||St.isArray(n)}function gp(n){return St.endsWith(n,"[]")?n.slice(0,-2):n}function U1(n,l,r){return n?n.concat(l).map(function(c,g){return c=gp(c),!r&&g?"["+c+"]":c}).join(r?".":""):l}function Vm(n){return St.isArray(n)&&!n.some(C0)}const _m=St.toFlatObject(St,{},null,function(l){return/^is[A-Z]/.test(l)});function Ja(n,l,r){if(!St.isObject(n))throw new TypeError("target must be an object");l=l||new FormData,r=St.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(F,X){return!St.isUndefined(X[F])});const h=r.metaTokens,c=r.visitor||S,g=r.dots,v=r.indexes,x=(r.Blob||typeof Blob<"u"&&Blob)&&St.isSpecCompliantForm(l);if(!St.isFunction(c))throw new TypeError("visitor must be a function");function I(D){if(D===null)return"";if(St.isDate(D))return D.toISOString();if(!x&&St.isBlob(D))throw new pe("Blob is not supported. Use a Buffer instead.");return St.isArrayBuffer(D)||St.isTypedArray(D)?x&&typeof Blob=="function"?new Blob([D]):Buffer.from(D):D}function S(D,F,X){let R=D;if(D&&!X&&typeof D=="object"){if(St.endsWith(F,"{}"))F=h?F:F.slice(0,-2),D=JSON.stringify(D);else if(St.isArray(D)&&Vm(D)||(St.isFileList(D)||St.endsWith(F,"[]"))&&(R=St.toArray(D)))return F=gp(F),R.forEach(function(U,W){!(St.isUndefined(U)||U===null)&&l.append(v===!0?U1([F],W,g):v===null?F:F+"[]",I(U))}),!1}return C0(D)?!0:(l.append(U1(X,F,g),I(D)),!1)}const $=[],B=Object.assign(_m,{defaultVisitor:S,convertValue:I,isVisitable:C0});function P(D,F){if(!St.isUndefined(D)){if($.indexOf(D)!==-1)throw Error("Circular reference detected in "+F.join("."));$.push(D),St.forEach(D,function(R,H){(!(St.isUndefined(R)||R===null)&&c.call(l,R,St.isString(H)?H.trim():H,F,B))===!0&&P(R,F?F.concat(H):[H])}),$.pop()}}if(!St.isObject(n))throw new TypeError("data must be an object");return P(n),l}function G1(n){const l={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(n).replace(/[!'()~]|%20|%00/g,function(h){return l[h]})}function Uh(n,l){this._pairs=[],n&&Ja(n,this,l)}const wp=Uh.prototype;wp.append=function(l,r){this._pairs.push([l,r])};wp.toString=function(l){const r=l?function(h){return l.call(this,h,G1)}:G1;return this._pairs.map(function(c){return r(c[0])+"="+r(c[1])},"").join("&")};function Wm(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function vp(n,l,r){if(!l)return n;const h=r&&r.encode||Wm,c=r&&r.serialize;let g;if(c?g=c(l,r):g=St.isURLSearchParams(l)?l.toString():new Uh(l,r).toString(h),g){const v=n.indexOf("#");v!==-1&&(n=n.slice(0,v)),n+=(n.indexOf("?")===-1?"?":"&")+g}return n}class Xm{constructor(){this.handlers=[]}use(l,r,h){return this.handlers.push({fulfilled:l,rejected:r,synchronous:h?h.synchronous:!1,runWhen:h?h.runWhen:null}),this.handlers.length-1}eject(l){this.handlers[l]&&(this.handlers[l]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(l){St.forEach(this.handlers,function(h){h!==null&&l(h)})}}const Z1=Xm,fp={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},qm=typeof URLSearchParams<"u"?URLSearchParams:Uh,Ym=typeof FormData<"u"?FormData:null,Um=typeof Blob<"u"?Blob:null,Gm={isBrowser:!0,classes:{URLSearchParams:qm,FormData:Ym,Blob:Um},protocols:["http","https","file","blob","url","data"]},mp=typeof window<"u"&&typeof document<"u",Zm=(n=>mp&&["ReactNative","NativeScript","NS"].indexOf(n)<0)(typeof navigator<"u"&&navigator.product),Km=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Qm=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:mp,hasStandardBrowserEnv:Zm,hasStandardBrowserWebWorkerEnv:Km},Symbol.toStringTag,{value:"Module"})),nl={...Qm,...Gm};function Jm(n,l){return Ja(n,new nl.classes.URLSearchParams,Object.assign({visitor:function(r,h,c,g){return nl.isNode&&St.isBuffer(r)?(this.append(h,r.toString("base64")),!1):g.defaultVisitor.apply(this,arguments)}},l))}function tk(n){return St.matchAll(/\w+|\[(\w*)]/g,n).map(l=>l[0]==="[]"?"":l[1]||l[0])}function ek(n){const l={},r=Object.keys(n);let h;const c=r.length;let g;for(h=0;h=r.length;return v=!v&&St.isArray(c)?c.length:v,x?(St.hasOwnProp(c,v)?c[v]=[c[v],h]:c[v]=h,!k):((!c[v]||!St.isObject(c[v]))&&(c[v]=[]),l(r,h,c[v],g)&&St.isArray(c[v])&&(c[v]=ek(c[v])),!k)}if(St.isFormData(n)&&St.isFunction(n.entries)){const r={};return St.forEachEntry(n,(h,c)=>{l(tk(h),c,r,0)}),r}return null}function nk(n,l,r){if(St.isString(n))try{return(l||JSON.parse)(n),St.trim(n)}catch(h){if(h.name!=="SyntaxError")throw h}return(r||JSON.stringify)(n)}const Gh={transitional:fp,adapter:["xhr","http"],transformRequest:[function(l,r){const h=r.getContentType()||"",c=h.indexOf("application/json")>-1,g=St.isObject(l);if(g&&St.isHTMLForm(l)&&(l=new FormData(l)),St.isFormData(l))return c&&c?JSON.stringify(kp(l)):l;if(St.isArrayBuffer(l)||St.isBuffer(l)||St.isStream(l)||St.isFile(l)||St.isBlob(l))return l;if(St.isArrayBufferView(l))return l.buffer;if(St.isURLSearchParams(l))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),l.toString();let k;if(g){if(h.indexOf("application/x-www-form-urlencoded")>-1)return Jm(l,this.formSerializer).toString();if((k=St.isFileList(l))||h.indexOf("multipart/form-data")>-1){const x=this.env&&this.env.FormData;return Ja(k?{"files[]":l}:l,x&&new x,this.formSerializer)}}return g||c?(r.setContentType("application/json",!1),nk(l)):l}],transformResponse:[function(l){const r=this.transitional||Gh.transitional,h=r&&r.forcedJSONParsing,c=this.responseType==="json";if(l&&St.isString(l)&&(h&&!this.responseType||c)){const v=!(r&&r.silentJSONParsing)&&c;try{return JSON.parse(l)}catch(k){if(v)throw k.name==="SyntaxError"?pe.from(k,pe.ERR_BAD_RESPONSE,this,null,this.response):k}}return l}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:nl.classes.FormData,Blob:nl.classes.Blob},validateStatus:function(l){return l>=200&&l<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};St.forEach(["delete","get","head","post","put","patch"],n=>{Gh.headers[n]={}});const Zh=Gh,lk=St.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),rk=n=>{const l={};let r,h,c;return n&&n.split(` `).forEach(function(v){c=v.indexOf(":"),r=v.substring(0,c).trim().toLowerCase(),h=v.substring(c+1).trim(),!(!r||l[r]&&lk[r])&&(r==="set-cookie"?l[r]?l[r].push(h):l[r]=[h]:l[r]=l[r]?l[r]+", "+h:h)}),l},K1=Symbol("internals");function Ao(n){return n&&String(n).trim().toLowerCase()}function oa(n){return n===!1||n==null?n:St.isArray(n)?n.map(oa):String(n)}function ok(n){const l=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let h;for(;h=r.exec(n);)l[h[1]]=h[2];return l}const sk=n=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(n.trim());function Ri(n,l,r,h,c){if(St.isFunction(h))return h.call(this,l,r);if(c&&(l=r),!!St.isString(l)){if(St.isString(h))return l.indexOf(h)!==-1;if(St.isRegExp(h))return h.test(l)}}function ak(n){return n.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(l,r,h)=>r.toUpperCase()+h)}function ik(n,l){const r=St.toCamelCase(" "+l);["get","set","has"].forEach(h=>{Object.defineProperty(n,h+r,{value:function(c,g,v){return this[h].call(this,l,c,g,v)},configurable:!0})})}class ti{constructor(l){l&&this.set(l)}set(l,r,h){const c=this;function g(k,x,I){const S=Ao(x);if(!S)throw new Error("header name must be a non-empty string");const $=St.findKey(c,S);(!$||c[$]===void 0||I===!0||I===void 0&&c[$]!==!1)&&(c[$||x]=oa(k))}const v=(k,x)=>St.forEach(k,(I,S)=>g(I,S,x));return St.isPlainObject(l)||l instanceof this.constructor?v(l,r):St.isString(l)&&(l=l.trim())&&!sk(l)?v(rk(l),r):l!=null&&g(r,l,h),this}get(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);if(h){const c=this[h];if(!r)return c;if(r===!0)return ok(c);if(St.isFunction(r))return r.call(this,c,h);if(St.isRegExp(r))return r.exec(c);throw new TypeError("parser must be boolean|regexp|function")}}}has(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);return!!(h&&this[h]!==void 0&&(!r||Ri(this,this[h],h,r)))}return!1}delete(l,r){const h=this;let c=!1;function g(v){if(v=Ao(v),v){const k=St.findKey(h,v);k&&(!r||Ri(h,h[k],k,r))&&(delete h[k],c=!0)}}return St.isArray(l)?l.forEach(g):g(l),c}clear(l){const r=Object.keys(this);let h=r.length,c=!1;for(;h--;){const g=r[h];(!l||Ri(this,this[g],g,l,!0))&&(delete this[g],c=!0)}return c}normalize(l){const r=this,h={};return St.forEach(this,(c,g)=>{const v=St.findKey(h,g);if(v){r[v]=oa(c),delete r[g];return}const k=l?ak(g):String(g).trim();k!==g&&delete r[g],r[k]=oa(c),h[k]=!0}),this}concat(...l){return this.constructor.concat(this,...l)}toJSON(l){const r=Object.create(null);return St.forEach(this,(h,c)=>{h!=null&&h!==!1&&(r[c]=l&&St.isArray(h)?h.join(", "):h)}),r}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([l,r])=>l+": "+r).join(` `)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(l){return l instanceof this?l:new this(l)}static concat(l,...r){const h=new this(l);return r.forEach(c=>h.set(c)),h}static accessor(l){const h=(this[K1]=this[K1]={accessors:{}}).accessors,c=this.prototype;function g(v){const k=Ao(v);h[k]||(ik(c,v),h[k]=!0)}return St.isArray(l)?l.forEach(g):g(l),this}}ti.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);St.reduceDescriptors(ti.prototype,({value:n},l)=>{let r=l[0].toUpperCase()+l.slice(1);return{get:()=>n,set(h){this[r]=h}}});St.freezeMethods(ti);const ml=ti;function Ti(n,l){const r=this||Zh,h=l||r,c=ml.from(h.headers);let g=h.data;return St.forEach(n,function(k){g=k.call(r,g,c.normalize(),l?l.status:void 0)}),c.normalize(),g}function bp(n){return!!(n&&n.__CANCEL__)}function Cs(n,l,r){pe.call(this,n??"canceled",pe.ERR_CANCELED,l,r),this.name="CanceledError"}St.inherits(Cs,pe,{__CANCEL__:!0});function hk(n,l,r){const h=r.config.validateStatus;!r.status||!h||h(r.status)?n(r):l(new pe("Request failed with status code "+r.status,[pe.ERR_BAD_REQUEST,pe.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r))}const dk=nl.hasStandardBrowserEnv?{write(n,l,r,h,c,g){const v=[n+"="+encodeURIComponent(l)];St.isNumber(r)&&v.push("expires="+new Date(r).toGMTString()),St.isString(h)&&v.push("path="+h),St.isString(c)&&v.push("domain="+c),g===!0&&v.push("secure"),document.cookie=v.join("; ")},read(n){const l=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return l?decodeURIComponent(l[3]):null},remove(n){this.write(n,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function ck(n){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(n)}function uk(n,l){return l?n.replace(/\/+$/,"")+"/"+l.replace(/^\/+/,""):n}function Mp(n,l){return n&&!ck(l)?uk(n,l):l}const pk=nl.hasStandardBrowserEnv?function(){const l=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");let h;function c(g){let v=g;return l&&(r.setAttribute("href",v),v=r.href),r.setAttribute("href",v),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:r.pathname.charAt(0)==="/"?r.pathname:"/"+r.pathname}}return h=c(window.location.href),function(v){const k=St.isString(v)?c(v):v;return k.protocol===h.protocol&&k.host===h.host}}():function(){return function(){return!0}}();function gk(n){const l=/^([-+\w]{1,25})(:?\/\/|:)/.exec(n);return l&&l[1]||""}function wk(n,l){n=n||10;const r=new Array(n),h=new Array(n);let c=0,g=0,v;return l=l!==void 0?l:1e3,function(x){const I=Date.now(),S=h[g];v||(v=I),r[c]=x,h[c]=I;let $=g,B=0;for(;$!==c;)B+=r[$++],$=$%n;if(c=(c+1)%n,c===g&&(g=(g+1)%n),I-v{const g=c.loaded,v=c.lengthComputable?c.total:void 0,k=g-r,x=h(k),I=g<=v;r=g;const S={loaded:g,total:v,progress:v?g/v:void 0,bytes:k,rate:x||void 0,estimated:x&&v&&I?(v-g)/x:void 0,event:c};S[l?"download":"upload"]=!0,n(S)}}const vk=typeof XMLHttpRequest<"u",fk=vk&&function(n){return new Promise(function(r,h){let c=n.data;const g=ml.from(n.headers).normalize();let{responseType:v,withXSRFToken:k}=n,x;function I(){n.cancelToken&&n.cancelToken.unsubscribe(x),n.signal&&n.signal.removeEventListener("abort",x)}let S;if(St.isFormData(c)){if(nl.hasStandardBrowserEnv||nl.hasStandardBrowserWebWorkerEnv)g.setContentType(!1);else if((S=g.getContentType())!==!1){const[F,...X]=S?S.split(";").map(R=>R.trim()).filter(Boolean):[];g.setContentType([F||"multipart/form-data",...X].join("; "))}}let $=new XMLHttpRequest;if(n.auth){const F=n.auth.username||"",X=n.auth.password?unescape(encodeURIComponent(n.auth.password)):"";g.set("Authorization","Basic "+btoa(F+":"+X))}const B=Mp(n.baseURL,n.url);$.open(n.method.toUpperCase(),vp(B,n.params,n.paramsSerializer),!0),$.timeout=n.timeout;function P(){if(!$)return;const F=ml.from("getAllResponseHeaders"in $&&$.getAllResponseHeaders()),R={data:!v||v==="text"||v==="json"?$.responseText:$.response,status:$.status,statusText:$.statusText,headers:F,config:n,request:$};hk(function(U){r(U),I()},function(U){h(U),I()},R),$=null}if("onloadend"in $?$.onloadend=P:$.onreadystatechange=function(){!$||$.readyState!==4||$.status===0&&!($.responseURL&&$.responseURL.indexOf("file:")===0)||setTimeout(P)},$.onabort=function(){$&&(h(new pe("Request aborted",pe.ECONNABORTED,n,$)),$=null)},$.onerror=function(){h(new pe("Network Error",pe.ERR_NETWORK,n,$)),$=null},$.ontimeout=function(){let X=n.timeout?"timeout of "+n.timeout+"ms exceeded":"timeout exceeded";const R=n.transitional||fp;n.timeoutErrorMessage&&(X=n.timeoutErrorMessage),h(new pe(X,R.clarifyTimeoutError?pe.ETIMEDOUT:pe.ECONNABORTED,n,$)),$=null},nl.hasStandardBrowserEnv&&(k&&St.isFunction(k)&&(k=k(n)),k||k!==!1&&pk(B))){const F=n.xsrfHeaderName&&n.xsrfCookieName&&dk.read(n.xsrfCookieName);F&&g.set(n.xsrfHeaderName,F)}c===void 0&&g.setContentType(null),"setRequestHeader"in $&&St.forEach(g.toJSON(),function(X,R){$.setRequestHeader(R,X)}),St.isUndefined(n.withCredentials)||($.withCredentials=!!n.withCredentials),v&&v!=="json"&&($.responseType=n.responseType),typeof n.onDownloadProgress=="function"&&$.addEventListener("progress",Q1(n.onDownloadProgress,!0)),typeof n.onUploadProgress=="function"&&$.upload&&$.upload.addEventListener("progress",Q1(n.onUploadProgress)),(n.cancelToken||n.signal)&&(x=F=>{$&&(h(!F||F.type?new Cs(null,n,$):F),$.abort(),$=null)},n.cancelToken&&n.cancelToken.subscribe(x),n.signal&&(n.signal.aborted?x():n.signal.addEventListener("abort",x)));const D=gk(B);if(D&&nl.protocols.indexOf(D)===-1){h(new pe("Unsupported protocol "+D+":",pe.ERR_BAD_REQUEST,n));return}$.send(c||null)})},S0={http:Em,xhr:fk};St.forEach(S0,(n,l)=>{if(n){try{Object.defineProperty(n,"name",{value:l})}catch{}Object.defineProperty(n,"adapterName",{value:l})}});const J1=n=>`- ${n}`,mk=n=>St.isFunction(n)||n===null||n===!1,xp={getAdapter:n=>{n=St.isArray(n)?n:[n];const{length:l}=n;let r,h;const c={};for(let g=0;g`adapter ${k} `+(x===!1?"is not supported by the environment":"is not available in the build"));let v=l?g.length>1?`since : `+g.map(J1).join(` -`):" "+J1(g[0]):"as no adapter specified";throw new pe("There is no suitable adapter to dispatch the request "+v,"ERR_NOT_SUPPORT")}return h},adapters:S0};function Ei(n){if(n.cancelToken&&n.cancelToken.throwIfRequested(),n.signal&&n.signal.aborted)throw new Cs(null,n)}function td(n){return Ei(n),n.headers=ml.from(n.headers),n.data=Ti.call(n,n.transformRequest),["post","put","patch"].indexOf(n.method)!==-1&&n.headers.setContentType("application/x-www-form-urlencoded",!1),xp.getAdapter(n.adapter||Zh.adapter)(n).then(function(h){return Ei(n),h.data=Ti.call(n,n.transformResponse,h),h.headers=ml.from(h.headers),h},function(h){return bp(h)||(Ei(n),h&&h.response&&(h.response.data=Ti.call(n,n.transformResponse,h.response),h.response.headers=ml.from(h.response.headers))),Promise.reject(h)})}const ed=n=>n instanceof ml?n.toJSON():n;function lo(n,l){l=l||{};const r={};function h(I,S,$){return St.isPlainObject(I)&&St.isPlainObject(S)?St.merge.call({caseless:$},I,S):St.isPlainObject(S)?St.merge({},S):St.isArray(S)?S.slice():S}function c(I,S,$){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I,$)}else return h(I,S,$)}function g(I,S){if(!St.isUndefined(S))return h(void 0,S)}function v(I,S){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I)}else return h(void 0,S)}function k(I,S,$){if($ in l)return h(I,S);if($ in n)return h(void 0,I)}const x={url:g,method:g,data:g,baseURL:v,transformRequest:v,transformResponse:v,paramsSerializer:v,timeout:v,timeoutMessage:v,withCredentials:v,withXSRFToken:v,adapter:v,responseType:v,xsrfCookieName:v,xsrfHeaderName:v,onUploadProgress:v,onDownloadProgress:v,decompress:v,maxContentLength:v,maxBodyLength:v,beforeRedirect:v,transport:v,httpAgent:v,httpsAgent:v,cancelToken:v,socketPath:v,responseEncoding:v,validateStatus:k,headers:(I,S)=>c(ed(I),ed(S),!0)};return St.forEach(Object.keys(Object.assign({},n,l)),function(S){const $=x[S]||c,B=$(n[S],l[S],S);St.isUndefined(B)&&$!==k||(r[S]=B)}),r}const zp="1.6.2",Kh={};["object","boolean","number","function","string","symbol"].forEach((n,l)=>{Kh[n]=function(h){return typeof h===n||"a"+(l<1?"n ":" ")+n}});const nd={};Kh.transitional=function(l,r,h){function c(g,v){return"[Axios v"+zp+"] Transitional option '"+g+"'"+v+(h?". "+h:"")}return(g,v,k)=>{if(l===!1)throw new pe(c(v," has been removed"+(r?" in "+r:"")),pe.ERR_DEPRECATED);return r&&!nd[v]&&(nd[v]=!0,console.warn(c(v," has been deprecated since v"+r+" and will be removed in the near future"))),l?l(g,v,k):!0}};function kk(n,l,r){if(typeof n!="object")throw new pe("options must be an object",pe.ERR_BAD_OPTION_VALUE);const h=Object.keys(n);let c=h.length;for(;c-- >0;){const g=h[c],v=l[g];if(v){const k=n[g],x=k===void 0||v(k,g,n);if(x!==!0)throw new pe("option "+g+" must be "+x,pe.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new pe("Unknown option "+g,pe.ERR_BAD_OPTION)}}const $0={assertOptions:kk,validators:Kh},Ll=$0.validators;class va{constructor(l){this.defaults=l,this.interceptors={request:new Z1,response:new Z1}}request(l,r){typeof l=="string"?(r=r||{},r.url=l):r=l||{},r=lo(this.defaults,r);const{transitional:h,paramsSerializer:c,headers:g}=r;h!==void 0&&$0.assertOptions(h,{silentJSONParsing:Ll.transitional(Ll.boolean),forcedJSONParsing:Ll.transitional(Ll.boolean),clarifyTimeoutError:Ll.transitional(Ll.boolean)},!1),c!=null&&(St.isFunction(c)?r.paramsSerializer={serialize:c}:$0.assertOptions(c,{encode:Ll.function,serialize:Ll.function},!0)),r.method=(r.method||this.defaults.method||"get").toLowerCase();let v=g&&St.merge(g.common,g[r.method]);g&&St.forEach(["delete","get","head","post","put","patch","common"],D=>{delete g[D]}),r.headers=ml.concat(v,g);const k=[];let x=!0;this.interceptors.request.forEach(function(F){typeof F.runWhen=="function"&&F.runWhen(r)===!1||(x=x&&F.synchronous,k.unshift(F.fulfilled,F.rejected))});const I=[];this.interceptors.response.forEach(function(F){I.push(F.fulfilled,F.rejected)});let S,$=0,B;if(!x){const D=[td.bind(this),void 0];for(D.unshift.apply(D,k),D.push.apply(D,I),B=D.length,S=Promise.resolve(r);${if(!h._listeners)return;let g=h._listeners.length;for(;g-- >0;)h._listeners[g](c);h._listeners=null}),this.promise.then=c=>{let g;const v=new Promise(k=>{h.subscribe(k),g=k}).then(c);return v.cancel=function(){h.unsubscribe(g)},v},l(function(g,v,k){h.reason||(h.reason=new Cs(g,v,k),r(h.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(l){if(this.reason){l(this.reason);return}this._listeners?this._listeners.push(l):this._listeners=[l]}unsubscribe(l){if(!this._listeners)return;const r=this._listeners.indexOf(l);r!==-1&&this._listeners.splice(r,1)}static source(){let l;return{token:new Qh(function(c){l=c}),cancel:l}}}const bk=Qh;function Mk(n){return function(r){return n.apply(null,r)}}function xk(n){return St.isObject(n)&&n.isAxiosError===!0}const A0={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(A0).forEach(([n,l])=>{A0[l]=n});const zk=A0;function Ip(n){const l=new sa(n),r=rp(sa.prototype.request,l);return St.extend(r,sa.prototype,l,{allOwnKeys:!0}),St.extend(r,l,null,{allOwnKeys:!0}),r.create=function(c){return Ip(lo(n,c))},r}const Re=Ip(Zh);Re.Axios=sa;Re.CanceledError=Cs;Re.CancelToken=bk;Re.isCancel=bp;Re.VERSION=zp;Re.toFormData=Ja;Re.AxiosError=pe;Re.Cancel=Re.CanceledError;Re.all=function(l){return Promise.all(l)};Re.spread=Mk;Re.isAxiosError=xk;Re.mergeConfig=lo;Re.AxiosHeaders=ml;Re.formToJSON=n=>kp(St.isHTMLForm(n)?new FormData(n):n);Re.getAdapter=xp.getAdapter;Re.HttpStatusCode=zk;Re.default=Re;const Ik=Re,yk=Jf({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){Ik.post("/api/authenticate",{username:n,password:l}).then(r=>{console.log("auth",r),this.user=r.data.data,localStorage.setItem("user",JSON.stringify(this.user)),fa.push(this.returnUrl||"/dashboard/default")})},logout(){this.user=null,localStorage.removeItem("user"),fa.push("/auth/login")}}}),fa=tm({history:f5("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>en(()=>import("./Error404Page-81062baf.js"),["assets/Error404Page-81062baf.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},om,sm]});fa.beforeEach(async(n,l,r)=>{const c=!["/auth/login"].includes(n.path),g=yk();if(n.matched.some(v=>v.meta.requiresAuth)){if(c&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const ze=typeof window<"u",Jh=ze&&"IntersectionObserver"in window,Ck=ze&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function ld(n,l,r){Sk(n,l),l.set(n,r)}function Sk(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function $k(n,l,r){var h=yp(n,l,"set");return Ak(n,h,r),r}function Ak(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function sr(n,l){var r=yp(n,l,"get");return Bk(n,r)}function yp(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function Bk(n,l){return l.get?l.get.call(n):l.value}function Cp(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let c=0;cSr(n[h],l[h]))}function B0(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),Cp(n,l.split("."),r))}function ln(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const c=l(n,r);return typeof c>"u"?r:c}if(typeof l=="string")return B0(n,l,r);if(Array.isArray(l))return Cp(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function gl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function qt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function H0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function N0(n){return n&&"$el"in n?n.$el:n}const rd=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),j0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function Sp(n){return Object.keys(n)}function cr(n,l){return l.every(r=>n.hasOwnProperty(r))}function Mr(n,l,r){const h=Object.create(null),c=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:c[g]=n[g];return[h,c]}function On(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const $p=/^on[^a-z]/,t2=n=>$p.test(n),Hk=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function $r(n){const[l,r]=Mr(n,[$p]),h=On(l,Hk),[c,g]=Mr(r,["class","style","id",/^data-/]);return Object.assign(c,l),Object.assign(g,h),[c,g]}function Pn(n){return n==null?[]:Array.isArray(n)?n:[n]}function rn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function od(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function sd(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function Nk(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const c in n)h[c]=n[c];for(const c in l){const g=n[c],v=l[c];if(H0(g)&&H0(v)){h[c]=Nn(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[c]=r(g,v);continue}h[c]=v}return h}function Ap(n){return n.map(l=>l.type===Kt?Ap(l.children):l).flat()}function vr(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(vr.cache.has(n))return vr.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return vr.cache.set(n,l),l}vr.cache=new Map;function qo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>qo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>qo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return qo(n,l.component.subTree).flat(1)}return[]}var Us=new WeakMap,Fr=new WeakMap;class jk{constructor(l){ld(this,Us,{writable:!0,value:[]}),ld(this,Fr,{writable:!0,value:0}),this.size=l}push(l){sr(this,Us)[sr(this,Fr)]=l,$k(this,Fr,(sr(this,Fr)+1)%this.size)}values(){return sr(this,Us).slice(sr(this,Fr)).concat(sr(this,Us).slice(0,sr(this,Fr)))}}function Pk(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function e2(n){const l=Ze({}),r=q(n);return bn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),vs(l)}function ma(n,l){return n.includes(l)}function Bp(n){return n[2].toLowerCase()+n.slice(3)}const ol=()=>[Function,Array];function id(n,l){return l="on"+Il(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function n2(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function Hp(n,l,r){let h,c=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do c+=g,h=n[c];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&c=0);return h}function ka(n,l){var h,c,g,v;const r=ss(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(c=r[0])==null||c.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const k=Hp(r,l);k?k.focus():ka(n,l==="next"?"first":"last")}}function Np(){}function ro(n,l){if(!(ze&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const jp=["top","bottom"],Lk=["start","end","left","right"];function P0(n,l){let[r,h]=n.split(" ");return h||(h=ma(jp,r)?"start":ma(Lk,r)?"top":"center"),{side:L0(r,l),align:L0(h,l)}}function L0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function Vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function _i(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function hd(n){return{side:n.align,align:n.side}}function dd(n){return ma(jp,n.side)?"y":"x"}class Kr{constructor(l){let{x:r,y:h,width:c,height:g}=l;this.x=r,this.y=h,this.width=c,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function cd(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function l2(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let c,g,v,k,x;if(h.startsWith("matrix3d("))c=h.slice(9,-1).split(/, /),g=+c[0],v=+c[5],k=+c[12],x=+c[13];else if(h.startsWith("matrix("))c=h.slice(7,-1).split(/, /),g=+c[0],v=+c[3],k=+c[4],x=+c[5];else return new Kr(l);const I=r.transformOrigin,S=l.x-k-(1-g)*parseFloat(I),$=l.y-x-(1-v)*parseFloat(I.slice(I.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new Kr({x:S,y:$,width:B,height:P})}else return new Kr(l)}function ur(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(c=>{h.onfinish=()=>{c(h)}})),h}const aa=new WeakMap;function Dk(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);if(l[r]==null)c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))});else if(!c||![...c].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=c||new Set;g.add([h,l[r]]),aa.has(n)||aa.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function Ok(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))})}else n.removeAttribute(r)})}const Rr=2.4,ud=.2126729,pd=.7151522,gd=.072175,Fk=.55,Rk=.58,Tk=.57,Ek=.62,Gs=.03,wd=1.45,Vk=5e-4,_k=1.25,Wk=1.25,vd=.078,fd=12.82051282051282,Zs=.06,md=.001;function kd(n,l){const r=(n.r/255)**Rr,h=(n.g/255)**Rr,c=(n.b/255)**Rr,g=(l.r/255)**Rr,v=(l.g/255)**Rr,k=(l.b/255)**Rr;let x=r*ud+h*pd+c*gd,I=g*ud+v*pd+k*gd;if(x<=Gs&&(x+=(Gs-x)**wd),I<=Gs&&(I+=(Gs-I)**wd),Math.abs(I-x)x){const $=(I**Fk-x**Rk)*_k;S=$-md?0:$>-vd?$-$*fd*Zs:$+Zs}return S*100}function Xk(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const ba=.20689655172413793,qk=n=>n>ba**3?Math.cbrt(n):n/(3*ba**2)+4/29,Yk=n=>n>ba?n**3:3*ba**2*(n-4/29);function Pp(n){const l=qk,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Lp(n){const l=Yk,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const Uk=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],Gk=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,Zk=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],Kk=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function Dp(n){const l=Array(3),r=Gk,h=Uk;for(let c=0;c<3;++c)l[c]=Math.round(rn(r(h[c][0]*n[0]+h[c][1]*n[1]+h[c][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function r2(n){let{r:l,g:r,b:h}=n;const c=[0,0,0],g=Kk,v=Zk;l=g(l/255),r=g(r/255),h=g(h/255);for(let k=0;k<3;++k)c[k]=v[k][0]*l+v[k][1]*r+v[k][2]*h;return c}function bd(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const Md=/^(?(?:rgb|hsl)a?)\((?.+)\)/,Qk={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h})};function Yn(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&Md.test(n)){const{groups:l}=n.match(Md),{fn:r,values:h}=l,c=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return Qk[r](...c)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Ep(l)}else if(typeof n=="object"){if(cr(n,["r","g","b"]))return n;if(cr(n,["h","s","l"]))return bl(o2(n));if(cr(n,["h","s","v"]))return bl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} +`):" "+J1(g[0]):"as no adapter specified";throw new pe("There is no suitable adapter to dispatch the request "+v,"ERR_NOT_SUPPORT")}return h},adapters:S0};function Ei(n){if(n.cancelToken&&n.cancelToken.throwIfRequested(),n.signal&&n.signal.aborted)throw new Cs(null,n)}function td(n){return Ei(n),n.headers=ml.from(n.headers),n.data=Ti.call(n,n.transformRequest),["post","put","patch"].indexOf(n.method)!==-1&&n.headers.setContentType("application/x-www-form-urlencoded",!1),xp.getAdapter(n.adapter||Zh.adapter)(n).then(function(h){return Ei(n),h.data=Ti.call(n,n.transformResponse,h),h.headers=ml.from(h.headers),h},function(h){return bp(h)||(Ei(n),h&&h.response&&(h.response.data=Ti.call(n,n.transformResponse,h.response),h.response.headers=ml.from(h.response.headers))),Promise.reject(h)})}const ed=n=>n instanceof ml?n.toJSON():n;function lo(n,l){l=l||{};const r={};function h(I,S,$){return St.isPlainObject(I)&&St.isPlainObject(S)?St.merge.call({caseless:$},I,S):St.isPlainObject(S)?St.merge({},S):St.isArray(S)?S.slice():S}function c(I,S,$){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I,$)}else return h(I,S,$)}function g(I,S){if(!St.isUndefined(S))return h(void 0,S)}function v(I,S){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I)}else return h(void 0,S)}function k(I,S,$){if($ in l)return h(I,S);if($ in n)return h(void 0,I)}const x={url:g,method:g,data:g,baseURL:v,transformRequest:v,transformResponse:v,paramsSerializer:v,timeout:v,timeoutMessage:v,withCredentials:v,withXSRFToken:v,adapter:v,responseType:v,xsrfCookieName:v,xsrfHeaderName:v,onUploadProgress:v,onDownloadProgress:v,decompress:v,maxContentLength:v,maxBodyLength:v,beforeRedirect:v,transport:v,httpAgent:v,httpsAgent:v,cancelToken:v,socketPath:v,responseEncoding:v,validateStatus:k,headers:(I,S)=>c(ed(I),ed(S),!0)};return St.forEach(Object.keys(Object.assign({},n,l)),function(S){const $=x[S]||c,B=$(n[S],l[S],S);St.isUndefined(B)&&$!==k||(r[S]=B)}),r}const zp="1.6.2",Kh={};["object","boolean","number","function","string","symbol"].forEach((n,l)=>{Kh[n]=function(h){return typeof h===n||"a"+(l<1?"n ":" ")+n}});const nd={};Kh.transitional=function(l,r,h){function c(g,v){return"[Axios v"+zp+"] Transitional option '"+g+"'"+v+(h?". "+h:"")}return(g,v,k)=>{if(l===!1)throw new pe(c(v," has been removed"+(r?" in "+r:"")),pe.ERR_DEPRECATED);return r&&!nd[v]&&(nd[v]=!0,console.warn(c(v," has been deprecated since v"+r+" and will be removed in the near future"))),l?l(g,v,k):!0}};function kk(n,l,r){if(typeof n!="object")throw new pe("options must be an object",pe.ERR_BAD_OPTION_VALUE);const h=Object.keys(n);let c=h.length;for(;c-- >0;){const g=h[c],v=l[g];if(v){const k=n[g],x=k===void 0||v(k,g,n);if(x!==!0)throw new pe("option "+g+" must be "+x,pe.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new pe("Unknown option "+g,pe.ERR_BAD_OPTION)}}const $0={assertOptions:kk,validators:Kh},Ll=$0.validators;class va{constructor(l){this.defaults=l,this.interceptors={request:new Z1,response:new Z1}}request(l,r){typeof l=="string"?(r=r||{},r.url=l):r=l||{},r=lo(this.defaults,r);const{transitional:h,paramsSerializer:c,headers:g}=r;h!==void 0&&$0.assertOptions(h,{silentJSONParsing:Ll.transitional(Ll.boolean),forcedJSONParsing:Ll.transitional(Ll.boolean),clarifyTimeoutError:Ll.transitional(Ll.boolean)},!1),c!=null&&(St.isFunction(c)?r.paramsSerializer={serialize:c}:$0.assertOptions(c,{encode:Ll.function,serialize:Ll.function},!0)),r.method=(r.method||this.defaults.method||"get").toLowerCase();let v=g&&St.merge(g.common,g[r.method]);g&&St.forEach(["delete","get","head","post","put","patch","common"],D=>{delete g[D]}),r.headers=ml.concat(v,g);const k=[];let x=!0;this.interceptors.request.forEach(function(F){typeof F.runWhen=="function"&&F.runWhen(r)===!1||(x=x&&F.synchronous,k.unshift(F.fulfilled,F.rejected))});const I=[];this.interceptors.response.forEach(function(F){I.push(F.fulfilled,F.rejected)});let S,$=0,B;if(!x){const D=[td.bind(this),void 0];for(D.unshift.apply(D,k),D.push.apply(D,I),B=D.length,S=Promise.resolve(r);${if(!h._listeners)return;let g=h._listeners.length;for(;g-- >0;)h._listeners[g](c);h._listeners=null}),this.promise.then=c=>{let g;const v=new Promise(k=>{h.subscribe(k),g=k}).then(c);return v.cancel=function(){h.unsubscribe(g)},v},l(function(g,v,k){h.reason||(h.reason=new Cs(g,v,k),r(h.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(l){if(this.reason){l(this.reason);return}this._listeners?this._listeners.push(l):this._listeners=[l]}unsubscribe(l){if(!this._listeners)return;const r=this._listeners.indexOf(l);r!==-1&&this._listeners.splice(r,1)}static source(){let l;return{token:new Qh(function(c){l=c}),cancel:l}}}const bk=Qh;function Mk(n){return function(r){return n.apply(null,r)}}function xk(n){return St.isObject(n)&&n.isAxiosError===!0}const A0={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(A0).forEach(([n,l])=>{A0[l]=n});const zk=A0;function Ip(n){const l=new sa(n),r=rp(sa.prototype.request,l);return St.extend(r,sa.prototype,l,{allOwnKeys:!0}),St.extend(r,l,null,{allOwnKeys:!0}),r.create=function(c){return Ip(lo(n,c))},r}const Re=Ip(Zh);Re.Axios=sa;Re.CanceledError=Cs;Re.CancelToken=bk;Re.isCancel=bp;Re.VERSION=zp;Re.toFormData=Ja;Re.AxiosError=pe;Re.Cancel=Re.CanceledError;Re.all=function(l){return Promise.all(l)};Re.spread=Mk;Re.isAxiosError=xk;Re.mergeConfig=lo;Re.AxiosHeaders=ml;Re.formToJSON=n=>kp(St.isHTMLForm(n)?new FormData(n):n);Re.getAdapter=xp.getAdapter;Re.HttpStatusCode=zk;Re.default=Re;const Ik=Re,yk=Jf({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){Ik.post("/api/authenticate",{username:n,password:l}).then(r=>{console.log("auth",r),this.user=r.data.data,localStorage.setItem("user",JSON.stringify(this.user)),fa.push(this.returnUrl||"/dashboard/default")})},logout(){this.user=null,localStorage.removeItem("user"),fa.push("/auth/login")}}}),fa=tm({history:f5("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>en(()=>import("./Error404Page-a7e4df24.js"),["assets/Error404Page-a7e4df24.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},om,sm]});fa.beforeEach(async(n,l,r)=>{const c=!["/auth/login"].includes(n.path),g=yk();if(n.matched.some(v=>v.meta.requiresAuth)){if(c&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const ze=typeof window<"u",Jh=ze&&"IntersectionObserver"in window,Ck=ze&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function ld(n,l,r){Sk(n,l),l.set(n,r)}function Sk(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function $k(n,l,r){var h=yp(n,l,"set");return Ak(n,h,r),r}function Ak(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function sr(n,l){var r=yp(n,l,"get");return Bk(n,r)}function yp(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function Bk(n,l){return l.get?l.get.call(n):l.value}function Cp(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let c=0;cSr(n[h],l[h]))}function B0(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),Cp(n,l.split("."),r))}function ln(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const c=l(n,r);return typeof c>"u"?r:c}if(typeof l=="string")return B0(n,l,r);if(Array.isArray(l))return Cp(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function gl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function qt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function H0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function N0(n){return n&&"$el"in n?n.$el:n}const rd=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),j0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function Sp(n){return Object.keys(n)}function cr(n,l){return l.every(r=>n.hasOwnProperty(r))}function Mr(n,l,r){const h=Object.create(null),c=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:c[g]=n[g];return[h,c]}function On(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const $p=/^on[^a-z]/,t2=n=>$p.test(n),Hk=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function $r(n){const[l,r]=Mr(n,[$p]),h=On(l,Hk),[c,g]=Mr(r,["class","style","id",/^data-/]);return Object.assign(c,l),Object.assign(g,h),[c,g]}function Pn(n){return n==null?[]:Array.isArray(n)?n:[n]}function rn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function od(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function sd(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function Nk(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const c in n)h[c]=n[c];for(const c in l){const g=n[c],v=l[c];if(H0(g)&&H0(v)){h[c]=Nn(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[c]=r(g,v);continue}h[c]=v}return h}function Ap(n){return n.map(l=>l.type===Kt?Ap(l.children):l).flat()}function vr(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(vr.cache.has(n))return vr.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return vr.cache.set(n,l),l}vr.cache=new Map;function qo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>qo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>qo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return qo(n,l.component.subTree).flat(1)}return[]}var Us=new WeakMap,Fr=new WeakMap;class jk{constructor(l){ld(this,Us,{writable:!0,value:[]}),ld(this,Fr,{writable:!0,value:0}),this.size=l}push(l){sr(this,Us)[sr(this,Fr)]=l,$k(this,Fr,(sr(this,Fr)+1)%this.size)}values(){return sr(this,Us).slice(sr(this,Fr)).concat(sr(this,Us).slice(0,sr(this,Fr)))}}function Pk(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function e2(n){const l=Ze({}),r=q(n);return bn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),vs(l)}function ma(n,l){return n.includes(l)}function Bp(n){return n[2].toLowerCase()+n.slice(3)}const ol=()=>[Function,Array];function id(n,l){return l="on"+Il(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function n2(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function Hp(n,l,r){let h,c=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do c+=g,h=n[c];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&c=0);return h}function ka(n,l){var h,c,g,v;const r=ss(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(c=r[0])==null||c.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const k=Hp(r,l);k?k.focus():ka(n,l==="next"?"first":"last")}}function Np(){}function ro(n,l){if(!(ze&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const jp=["top","bottom"],Lk=["start","end","left","right"];function P0(n,l){let[r,h]=n.split(" ");return h||(h=ma(jp,r)?"start":ma(Lk,r)?"top":"center"),{side:L0(r,l),align:L0(h,l)}}function L0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function Vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function _i(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function hd(n){return{side:n.align,align:n.side}}function dd(n){return ma(jp,n.side)?"y":"x"}class Kr{constructor(l){let{x:r,y:h,width:c,height:g}=l;this.x=r,this.y=h,this.width=c,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function cd(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function l2(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let c,g,v,k,x;if(h.startsWith("matrix3d("))c=h.slice(9,-1).split(/, /),g=+c[0],v=+c[5],k=+c[12],x=+c[13];else if(h.startsWith("matrix("))c=h.slice(7,-1).split(/, /),g=+c[0],v=+c[3],k=+c[4],x=+c[5];else return new Kr(l);const I=r.transformOrigin,S=l.x-k-(1-g)*parseFloat(I),$=l.y-x-(1-v)*parseFloat(I.slice(I.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new Kr({x:S,y:$,width:B,height:P})}else return new Kr(l)}function ur(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(c=>{h.onfinish=()=>{c(h)}})),h}const aa=new WeakMap;function Dk(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);if(l[r]==null)c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))});else if(!c||![...c].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=c||new Set;g.add([h,l[r]]),aa.has(n)||aa.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function Ok(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))})}else n.removeAttribute(r)})}const Rr=2.4,ud=.2126729,pd=.7151522,gd=.072175,Fk=.55,Rk=.58,Tk=.57,Ek=.62,Gs=.03,wd=1.45,Vk=5e-4,_k=1.25,Wk=1.25,vd=.078,fd=12.82051282051282,Zs=.06,md=.001;function kd(n,l){const r=(n.r/255)**Rr,h=(n.g/255)**Rr,c=(n.b/255)**Rr,g=(l.r/255)**Rr,v=(l.g/255)**Rr,k=(l.b/255)**Rr;let x=r*ud+h*pd+c*gd,I=g*ud+v*pd+k*gd;if(x<=Gs&&(x+=(Gs-x)**wd),I<=Gs&&(I+=(Gs-I)**wd),Math.abs(I-x)x){const $=(I**Fk-x**Rk)*_k;S=$-md?0:$>-vd?$-$*fd*Zs:$+Zs}return S*100}function Xk(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const ba=.20689655172413793,qk=n=>n>ba**3?Math.cbrt(n):n/(3*ba**2)+4/29,Yk=n=>n>ba?n**3:3*ba**2*(n-4/29);function Pp(n){const l=qk,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Lp(n){const l=Yk,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const Uk=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],Gk=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,Zk=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],Kk=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function Dp(n){const l=Array(3),r=Gk,h=Uk;for(let c=0;c<3;++c)l[c]=Math.round(rn(r(h[c][0]*n[0]+h[c][1]*n[1]+h[c][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function r2(n){let{r:l,g:r,b:h}=n;const c=[0,0,0],g=Kk,v=Zk;l=g(l/255),r=g(r/255),h=g(h/255);for(let k=0;k<3;++k)c[k]=v[k][0]*l+v[k][1]*r+v[k][2]*h;return c}function bd(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const Md=/^(?(?:rgb|hsl)a?)\((?.+)\)/,Qk={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h})};function Yn(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&Md.test(n)){const{groups:l}=n.match(Md),{fn:r,values:h}=l,c=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return Qk[r](...c)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Ep(l)}else if(typeof n=="object"){if(cr(n,["r","g","b"]))return n;if(cr(n,["h","s","l"]))return bl(o2(n));if(cr(n,["h","s","v"]))return bl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function bl(n){const{h:l,s:r,v:h,a:c}=n,g=k=>{const x=(k+l/60)%6;return h-h*r*Math.max(Math.min(x,4-x,1),0)},v=[g(5),g(3),g(1)].map(k=>Math.round(k*255));return{r:v[0],g:v[1],b:v[2],a:c}}function xd(n){return bl(o2(n))}function ei(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,c=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;c!==g&&(c===l?v=60*(0+(r-h)/(c-g)):c===r?v=60*(2+(h-l)/(c-g)):c===h&&(v=60*(4+(l-r)/(c-g)))),v<0&&(v=v+360);const k=c===0?0:(c-g)/c,x=[v,k,c];return{h:x[0],s:x[1],v:x[2],a:n.a}}function Op(n){const{h:l,s:r,v:h,a:c}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:c}}function o2(n){const{h:l,s:r,l:h,a:c}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:c}}function Fp(n){let{r:l,g:r,b:h,a:c}=n;return c===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${c})`}function Rp(n){return Fp(bl(n))}function Ks(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Tp(n){let{r:l,g:r,b:h,a:c}=n;return`#${[Ks(l),Ks(r),Ks(h),c!==void 0?Ks(Math.round(c*255)):""].join("")}`}function Ep(n){n=t6(n);let[l,r,h,c]=Nk(n,2).map(g=>parseInt(g,16));return c=c===void 0?c:c/255,{r:l,g:r,b:h,a:c}}function Jk(n){const l=Ep(n);return ei(l)}function Vp(n){return Tp(bl(n))}function t6(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=sd(sd(n,6),8,"F")),n}function e6(n,l){const r=Pp(r2(n));return r[0]=r[0]+l*10,Dp(Lp(r))}function n6(n,l){const r=Pp(r2(n));return r[0]=r[0]-l*10,Dp(Lp(r))}function D0(n){const l=Yn(n);return r2(l)[1]}function l6(n,l){const r=D0(n),h=D0(l),c=Math.max(r,h),g=Math.min(r,h);return(c+.05)/(g+.05)}function _p(n){const l=Math.abs(kd(Yn(0),Yn(n)));return Math.abs(kd(Yn(16777215),Yn(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,c)=>{const v=typeof n[c]=="object"&&n[c]!=null&&!Array.isArray(n[c])?n[c]:{type:n[c]};return r&&c in r?h[c]={...v,default:r[c]}:h[c]=v,l&&!h[c].source&&(h[c].source=l),h},{})}const Xt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Fn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return Mr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,c){const g=i2();if(!g.value)return n._setup(h,c);const{props:v,provideSubDefaults:k}=c6(h,h._as??n.name,g),x=n._setup(v,c);return k(),x}}return n}function Bt(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Fn:Cr)(l)}function Qn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return Bt()({name:r??Il(Sn(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Xt()},setup(h,c){let{slots:g}=c;return()=>{var v;return Ln(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Wp(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const as="cubic-bezier(0.4, 0, 0.2, 1)",r6="cubic-bezier(0.0, 0, 0.2, 1)",o6="cubic-bezier(0.4, 0, 1, 1)";function Ye(n,l){const r=al();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function Cl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=Ye(n).type;return vr((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Xp=0,ia=new WeakMap;function hn(){const n=Ye("getUid");if(ia.has(n))return ia.get(n);{const l=Xp++;return ia.set(n,l),l}}hn.reset=()=>{Xp=0,ia=new WeakMap};function s2(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?s6(n):a2(n))return n;n=n.parentElement}return document.scrollingElement}function Ma(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(a2(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function a2(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function s6(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function a6(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Ye("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function i6(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Dt(n){const l=Ye("useRender");l.render=n}const oo=Symbol.for("vuetify:defaults");function h6(n){return Lt(n)}function i2(){const n=de(oo);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Te(n,l){const r=i2(),h=Lt(n),c=q(()=>{if(je(l==null?void 0:l.disabled))return r.value;const v=je(l==null?void 0:l.scoped),k=je(l==null?void 0:l.reset),x=je(l==null?void 0:l.root);if(h.value==null&&!(v||k||x))return r.value;let I=Nn(h.value,{prev:r.value});if(v)return I;if(k||x){const S=Number(k||1/0);for(let $=0;$<=S&&!(!I||!("prev"in I));$++)I=I.prev;return I&&typeof x=="string"&&x in I&&(I=Nn(Nn(I,{prev:I}),I[x])),I}return I.prev?Nn(I.prev,I):I});return Se(oo,c),c}function d6(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[vr(l)])<"u"}function c6(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:i2();const h=Ye("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const c=q(()=>{var x;return(x=r.value)==null?void 0:x[n._as??l]}),g=new Proxy(n,{get(x,I){var $,B,P,D;const S=Reflect.get(x,I);return I==="class"||I==="style"?[($=c.value)==null?void 0:$[I],S].filter(F=>F!=null):typeof I=="string"&&!d6(h.vnode,I)?((B=c.value)==null?void 0:B[I])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[I])??S:S}}),v=Wt();bn(()=>{if(c.value){const x=Object.entries(c.value).filter(I=>{let[S]=I;return S.startsWith(S[0].toUpperCase())});v.value=x.length?Object.fromEntries(x):void 0}else v.value=void 0});function k(){const x=a6(oo,h);Se(oo,q(()=>v.value?Nn((x==null?void 0:x.value)??{},v.value):x==null?void 0:x.value))}return{props:g,provideSubDefaults:k}}const ni=["sm","md","lg","xl","xxl"],O0=Symbol.for("vuetify:display"),zd={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},u6=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:zd;return Nn(zd,n)};function Id(n){return ze&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function yd(n){return ze&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function Cd(n){const l=ze&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),c=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),k=r(/chrome/i),x=r(/edge/i),I=r(/firefox/i),S=r(/opera/i),$=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:c,cordova:g,electron:v,chrome:k,edge:x,firefox:I,opera:S,win:$,mac:B,linux:P,touch:Ck,ssr:l==="ssr"}}function p6(n,l){const{thresholds:r,mobileBreakpoint:h}=u6(n),c=Wt(yd(l)),g=Wt(Cd(l)),v=Ze({}),k=Wt(Id(l));function x(){c.value=yd(),k.value=Id()}function I(){x(),g.value=Cd()}return bn(()=>{const S=k.value=r.xxl,X=S?"xs":$?"sm":B?"md":P?"lg":D?"xl":"xxl",R=typeof h=="number"?h:r[h],H=k.valueLn(d2,{...n,class:"mdi"})},ee=[String,Function,Object,Array],F0=Symbol.for("vuetify:icons"),li=mt({icon:{type:ee},tag:{type:String,required:!0}},"icon"),R0=Bt()({name:"VComponentIcon",props:li(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var c;return[n.icon?t(h,null,null):(c=r.default)==null?void 0:c.call(r)]}})}}}),h2=Fn({name:"VSvgIcon",inheritAttrs:!1,props:li(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),v6=Fn({name:"VLigatureIcon",props:li(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),d2=Fn({name:"VClassIcon",props:li(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),f6={svg:{component:h2},class:{component:d2}};function m6(n){return Nn({defaultSet:"mdi",sets:{...f6,mdi:w6},aliases:{...g6,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const k6=n=>{const l=de(F0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:q(()=>{var x;const h=je(n);if(!h)return{component:R0};let c=h;if(typeof c=="string"&&(c=c.trim(),c.startsWith("$")&&(c=(x=l.aliases)==null?void 0:x[c.slice(1)])),!c)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(c))return{component:h2,icon:c};if(typeof c!="string")return{component:R0,icon:c};const g=Object.keys(l.sets).find(I=>typeof c=="string"&&c.startsWith(`${I}:`)),v=g?c.slice(g.length+1):c;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},b6={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},M6={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Zl(n,l){let r;function h(){r=io(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}_t(n,c=>{c&&!r?h():c||(r==null||r.stop(),r=void 0)},{immediate:!0}),sn(()=>{r==null||r.stop()})}function ne(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:$=>$,c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:$=>$;const g=Ye("useProxiedModel"),v=Lt(n[l]!==void 0?n[l]:r),k=vr(l),I=q(k!==l?()=>{var $,B,P,D;return n[l],!!((($=g.vnode.props)!=null&&$.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(k))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${k}`)))}:()=>{var $,B;return n[l],!!(($=g.vnode.props)!=null&&$.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Zl(()=>!I.value,()=>{_t(()=>n[l],$=>{v.value=$})});const S=q({get(){const $=n[l];return h(I.value?$:v.value)},set($){const B=c($),P=le(I.value?n[l]:v.value);P===B||h(P)===$||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>I.value?n[l]:v.value}),S}const Sd="$vuetify.",$d=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),qp=(n,l,r)=>function(h){for(var c=arguments.length,g=new Array(c>1?c-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function Wi(n,l,r){const h=ne(n,l,n[l]??r.value);return h.value=n[l]??r.value,_t(r,c=>{n[l]==null&&(h.value=r.value)}),h}function Up(n){return l=>{const r=Wi(l,"locale",n.current),h=Wi(l,"fallback",n.fallback),c=Wi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:c,t:qp(r,h,c),n:Yp(r,h),provide:Up({current:r,fallback:h,messages:c})}}}function x6(n){const l=Wt((n==null?void 0:n.locale)??"en"),r=Wt((n==null?void 0:n.fallback)??"en"),h=Lt({en:b6,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:qp(l,r,h),n:Yp(l,r),provide:Up({current:l,fallback:r,messages:h})}}const so=Symbol.for("vuetify:locale");function z6(n){return n.name!=null}function I6(n){const l=n!=null&&n.adapter&&z6(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:x6(n),r=C6(l,n);return{...l,...r}}function Rn(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function y6(n){const l=de(so);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=S6(r,l.rtl,n),c={...r,...h};return Se(so,c),c}function C6(n,l){const r=Lt((l==null?void 0:l.rtl)??M6),h=q(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function S6(n,l,r){const h=q(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Ue(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const is=Symbol.for("vuetify:theme"),ue=mt({theme:String},"theme"),Bo={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function $6(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Bo;if(!n)return{...Bo,isDisabled:!0};const l={};for(const[c,g]of Object.entries(n.themes??{})){const v=g.dark||c==="dark"?(r=Bo.themes)==null?void 0:r.dark:(h=Bo.themes)==null?void 0:h.light;l[c]=Nn(v,g)}return Nn(Bo,{...n,themes:l})}function A6(n){const l=$6(n),r=Lt(l.defaultTheme),h=Lt(l.themes),c=q(()=>{const S={};for(const[$,B]of Object.entries(h.value)){const P=S[$]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const F=P.colors[D];if(F)for(const X of["lighten","darken"]){const R=X==="lighten"?e6:n6;for(const H of gl(l.variations[X],1))P.colors[`${D}-${X}-${H}`]=Tp(R(Yn(F),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const F=`on-${D}`,X=Yn(P.colors[D]);P.colors[F]=_p(X)}}return S}),g=q(()=>c.value[r.value]),v=q(()=>{const S=[];g.value.dark&&ar(S,":root",["color-scheme: dark"]),ar(S,":root",Ad(g.value));for(const[D,F]of Object.entries(c.value))ar(S,`.v-theme--${D}`,[`color-scheme: ${F.dark?"dark":"normal"}`,...Ad(F)]);const $=[],B=[],P=new Set(Object.values(c.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?ar(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(ar($,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),ar(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),ar(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...$,...B),S.map((D,F)=>F===0?D:` ${D}`).join("")});function k(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function x(S){if(l.isDisabled)return;const $=S._context.provides.usehead;if($)if($.push){const B=$.push(k);ze&&_t(v,()=>{B.patch(k)})}else ze?($.addHeadObjs(q(k)),bn(()=>$.updateDOM())):$.addHeadObjs(k());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=ze?document.getElementById("vuetify-theme-stylesheet"):null;ze?_t(v,P,{immediate:!0}):P()}}const I=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:x,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:c,themeClasses:I,styles:v,global:{name:r,current:g}}}function ve(n){Ye("provideTheme");const l=de(is,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=q(()=>n.theme??(l==null?void 0:l.name.value)),h=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`),c={...l,name:r,themeClasses:h};return Se(is,c),c}function Gp(){Ye("useTheme");const n=de(is,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function ar(n,l,r){n.push(`${l} { `,...r.map(h=>` ${h}; `),`} diff --git a/addons/dashboard/dist/assets/md5-3db5e3e8.js b/addons/dashboard/dist/assets/md5-d27f8a54.js similarity index 99% rename from addons/dashboard/dist/assets/md5-3db5e3e8.js rename to addons/dashboard/dist/assets/md5-d27f8a54.js index 9d0824fcc..72e51450e 100644 --- a/addons/dashboard/dist/assets/md5-3db5e3e8.js +++ b/addons/dashboard/dist/assets/md5-d27f8a54.js @@ -1,4 +1,4 @@ -import{ap as K,aq as Y,ar as V}from"./index-c75f6ac5.js";var C={exports:{}};const $={},k=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),z=K(k);/** +import{ap as K,aq as Y,ar as V}from"./index-800319b6.js";var C={exports:{}};const $={},k=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),z=K(k);/** * [js-md5]{@link https://github.com/emn178/js-md5} * * @namespace md5 diff --git a/addons/dashboard/dist/index.html b/addons/dashboard/dist/index.html index 60bb6e043..142b05502 100644 --- a/addons/dashboard/dist/index.html +++ b/addons/dashboard/dist/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" /> AstrBot - 仪表盘 - + diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py index 645e3a786..8a3a79c95 100644 --- a/addons/dashboard/server.py +++ b/addons/dashboard/server.py @@ -7,6 +7,7 @@ from dataclasses import dataclass import logging from cores.database.conn import dbConn from util.cmd_config import CmdConfig +import util.plugin_util as putil @dataclass class DashBoardData(): @@ -158,11 +159,63 @@ class AstrBotDashBoard(): @self.dashboard_be.post("/api/extensions/install") def install_plugin(): - pass + post_data = request.json + repo_url = post_data["url"] + try: + gu.log(f"正在安装插件 {repo_url}", tag="可视化面板") + putil.install_plugin(repo_url, self.dashboard_data.plugins) + gu.log(f"安装插件 {repo_url} 成功", tag="可视化面板") + return Response( + status="success", + message="安装成功~", + data=None + ).__dict__ + except Exception as e: + return Response( + status="error", + message=e.__str__(), + data=None + ).__dict__ @self.dashboard_be.post("/api/extensions/uninstall") def uninstall_plugin(): - pass + post_data = request.json + plugin_name = post_data["name"] + try: + gu.log(f"正在卸载插件 {plugin_name}", tag="可视化面板") + putil.uninstall_plugin(plugin_name, self.dashboard_data.plugins) + gu.log(f"卸载插件 {plugin_name} 成功", tag="可视化面板") + return Response( + status="success", + message="卸载成功~", + data=None + ).__dict__ + except Exception as e: + return Response( + status="error", + message=e.__str__(), + data=None + ).__dict__ + + @self.dashboard_be.post("/api/extensions/update") + def update_plugin(): + post_data = request.json + plugin_name = post_data["name"] + try: + gu.log(f"正在更新插件 {plugin_name}", tag="可视化面板") + putil.update_plugin(plugin_name, self.dashboard_data.plugins) + gu.log(f"更新插件 {plugin_name} 成功", tag="可视化面板") + return Response( + status="success", + message="更新成功~", + data=None + ).__dict__ + except Exception as e: + return Response( + status="error", + message=e.__str__(), + data=None + ).__dict__ def register(self, name: str): def decorator(func): diff --git a/model/command/command.py b/model/command/command.py index b167690e0..8700b497c 100644 --- a/model/command/command.py +++ b/model/command/command.py @@ -104,20 +104,6 @@ class Command: obj = cc.get_all() p = gu.create_text_image("【cmd_config.json】", json.dumps(obj, indent=4, ensure_ascii=False)) return True, [Image.fromFileSystem(p)], "newconf" - - def get_plugin_modules(self): - plugins = [] - try: - if os.path.exists("addons/plugins"): - plugins = putil.get_modules("addons/plugins") - return plugins - elif os.path.exists("QQChannelChatGPT/addons/plugins"): - plugins = putil.get_modules("QQChannelChatGPT/addons/plugins") - return plugins - else: - return None - except BaseException as e: - raise e ''' 插件指令 diff --git a/util/plugin_util.py b/util/plugin_util.py index ef6317102..1b20b60c3 100644 --- a/util/plugin_util.py +++ b/util/plugin_util.py @@ -51,9 +51,23 @@ def get_plugin_store_path(): return "AstrBot/addons/plugins" else: raise FileNotFoundError("插件文件夹不存在。") + +def get_plugin_modules(): + plugins = [] + try: + if os.path.exists("addons/plugins"): + plugins = get_modules("addons/plugins") + return plugins + elif os.path.exists("QQChannelChatGPT/addons/plugins"): + plugins = get_modules("QQChannelChatGPT/addons/plugins") + return plugins + else: + return None + except BaseException as e: + raise e -def plugin_reload(self, cached_plugins: dict, target: str = None, all: bool = False): - plugins = self.get_plugin_modules() +def plugin_reload(cached_plugins: dict, target: str = None, all: bool = False): + plugins = get_plugin_modules() if plugins is None: return False, "未找到任何插件模块" fail_rec = "" @@ -104,11 +118,11 @@ def install_plugin(repo_url: str, cached_plugins: dict): # 创建文件夹 plugin_path = os.path.join(ppath, d) if os.path.exists(plugin_path): - shutil.rmtree(plugin_path) + remove_dir(plugin_path) Repo.clone_from(repo_url, to_path=plugin_path, branch='master') # 读取插件的requirements.txt if os.path.exists(os.path.join(plugin_path, "requirements.txt")): - if pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt")]) != 0: + if pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt"), '--quiet']) != 0: raise Exception("插件的依赖安装失败, 需要您手动 pip 安装对应插件的依赖。") ok, err = plugin_reload(cached_plugins, target=d) if not ok: raise Exception(err) @@ -132,12 +146,12 @@ def update_plugin(plugin_name: str, cached_plugins: dict): repo.remotes.origin.pull() # 读取插件的requirements.txt if os.path.exists(os.path.join(plugin_path, "requirements.txt")): - if pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt")]) != 0: + if pipmain(['install', '-r', os.path.join(plugin_path, "requirements.txt"), '--quiet']) != 0: raise Exception("插件依赖安装失败, 需要您手动pip安装对应插件的依赖。") ok, err = plugin_reload(cached_plugins, target=plugin_name) if not ok: raise Exception(err) -def remove_dir(self, file_path) -> bool: +def remove_dir(file_path) -> bool: try_cnt = 50 while try_cnt > 0: if not os.path.exists(file_path): From 40af5b75740a03bf07e1d2106a02b86498cd4042 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Tue, 26 Dec 2023 09:25:22 +0800 Subject: [PATCH 15/17] =?UTF-8?q?feat:=20=E6=94=AF=E6=8C=81=E6=9B=B4?= =?UTF-8?q?=E5=A4=9A=E9=85=8D=E7=BD=AE=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...e_vue_type_style_index_0_lang-455328a2.js} | 2 +- ...ut-434d9bb3.js => BlankLayout-ad940a6c.js} | 2 +- ...Page-c6cfe87e.js => ColorPage-22c7f5ba.js} | 2 +- ...age-9cadf278.js => ConfigPage-cbc9d918.js} | 2 +- .../dist/assets/ConsolePage-57b1b1f5.js | 9 ++ .../dist/assets/ConsolePage-e3b0c442.css | 0 .../dist/assets/DefaultDashboard-4f67e2ec.js | 1 - .../dist/assets/DefaultDashboard-b70e2279.js | 1 + ...e-a7e4df24.js => Error404Page-1f0e3199.js} | 2 +- ...-180d977b.js => ExtensionPage-e262e5bf.js} | 2 +- ...out-71b73dcb.js => FullLayout-297dfa95.js} | 2 +- ...Page-ba6297b9.js => LoginPage-decfa242.js} | 2 +- ...e_type_script_setup_true_lang-93ad8543.js} | 2 +- ...-c997ec21.js => MaterialIcons-0da52fba.js} | 2 +- ...e-796fb781.js => RegisterPage-6fba9b67.js} | 2 +- ...age-a816a721.js => ShadowPage-7b3e7ed6.js} | 2 +- .../dist/assets/StarterPage-1e1151ff.js | 1 - ...ns-3bd524da.js => TablerIcons-03a8e23e.js} | 2 +- ...5e7cf496.js => TypographyPage-db19a414.js} | 2 +- ...e_type_script_setup_true_lang-41ddeb15.js} | 2 +- .../{index-800319b6.js => index-ffe5e9b0.js} | 4 +- .../{md5-d27f8a54.js => md5-15332791.js} | 2 +- addons/dashboard/dist/index.html | 2 +- addons/dashboard/helper.py | 76 ++++++++++++++-- addons/dashboard/server.py | 5 +- addons/plugins/helloworld/helloworld.py | 87 ++++++++----------- cores/database/conn.py | 18 ++++ 27 files changed, 155 insertions(+), 81 deletions(-) rename addons/dashboard/dist/assets/{BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js => BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js} (93%) rename addons/dashboard/dist/assets/{BlankLayout-434d9bb3.js => BlankLayout-ad940a6c.js} (70%) rename addons/dashboard/dist/assets/{ColorPage-c6cfe87e.js => ColorPage-22c7f5ba.js} (83%) rename addons/dashboard/dist/assets/{ConfigPage-9cadf278.js => ConfigPage-cbc9d918.js} (95%) create mode 100644 addons/dashboard/dist/assets/ConsolePage-57b1b1f5.js create mode 100644 addons/dashboard/dist/assets/ConsolePage-e3b0c442.css delete mode 100644 addons/dashboard/dist/assets/DefaultDashboard-4f67e2ec.js create mode 100644 addons/dashboard/dist/assets/DefaultDashboard-b70e2279.js rename addons/dashboard/dist/assets/{Error404Page-a7e4df24.js => Error404Page-1f0e3199.js} (94%) rename addons/dashboard/dist/assets/{ExtensionPage-180d977b.js => ExtensionPage-e262e5bf.js} (74%) rename addons/dashboard/dist/assets/{FullLayout-71b73dcb.js => FullLayout-297dfa95.js} (97%) rename addons/dashboard/dist/assets/{LoginPage-ba6297b9.js => LoginPage-decfa242.js} (99%) rename addons/dashboard/dist/assets/{LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js => LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js} (94%) rename addons/dashboard/dist/assets/{MaterialIcons-c997ec21.js => MaterialIcons-0da52fba.js} (70%) rename addons/dashboard/dist/assets/{RegisterPage-796fb781.js => RegisterPage-6fba9b67.js} (96%) rename addons/dashboard/dist/assets/{ShadowPage-a816a721.js => ShadowPage-7b3e7ed6.js} (81%) delete mode 100644 addons/dashboard/dist/assets/StarterPage-1e1151ff.js rename addons/dashboard/dist/assets/{TablerIcons-3bd524da.js => TablerIcons-03a8e23e.js} (69%) rename addons/dashboard/dist/assets/{TypographyPage-5e7cf496.js => TypographyPage-db19a414.js} (94%) rename addons/dashboard/dist/assets/{UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js => UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js} (88%) rename addons/dashboard/dist/assets/{index-800319b6.js => index-ffe5e9b0.js} (99%) rename addons/dashboard/dist/assets/{md5-d27f8a54.js => md5-15332791.js} (99%) diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js similarity index 93% rename from addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js rename to addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js index 6a4a84b7c..cead73bbb 100644 --- a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js +++ b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js @@ -1 +1 @@ -import{x as i,o as l,c as _,w as s,a as e,f as a,J as m,V as r,b as t,t as u,ab as p,B as n,ac as o,j as f}from"./index-800319b6.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const c=d;return(x,B)=>(l(),_(r,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(r,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(c.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:c.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; +import{x as i,o as l,c as _,w as s,a as e,f as a,J as m,V as r,b as t,t as u,ab as p,B as n,ac as o,j as f}from"./index-ffe5e9b0.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const c=d;return(x,B)=>(l(),_(r,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(r,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(c.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:c.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/addons/dashboard/dist/assets/BlankLayout-434d9bb3.js b/addons/dashboard/dist/assets/BlankLayout-ad940a6c.js similarity index 70% rename from addons/dashboard/dist/assets/BlankLayout-434d9bb3.js rename to addons/dashboard/dist/assets/BlankLayout-ad940a6c.js index 856fef53e..4fe8b4dab 100644 --- a/addons/dashboard/dist/assets/BlankLayout-434d9bb3.js +++ b/addons/dashboard/dist/assets/BlankLayout-ad940a6c.js @@ -1 +1 @@ -import{x as e,o as a,c as t,w as o,a as s,B as n,X as r,T as c}from"./index-800319b6.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; +import{x as e,o as a,c as t,w as o,a as s,B as n,X as r,T as c}from"./index-ffe5e9b0.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/ColorPage-c6cfe87e.js b/addons/dashboard/dist/assets/ColorPage-22c7f5ba.js similarity index 83% rename from addons/dashboard/dist/assets/ColorPage-c6cfe87e.js rename to addons/dashboard/dist/assets/ColorPage-22c7f5ba.js index 6b90b0523..d7c868358 100644 --- a/addons/dashboard/dist/assets/ColorPage-c6cfe87e.js +++ b/addons/dashboard/dist/assets/ColorPage-22c7f5ba.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,_ as b,e as x,t as y}from"./index-800319b6.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,_ as b,e as x,t as y}from"./index-ffe5e9b0.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-9cadf278.js b/addons/dashboard/dist/assets/ConfigPage-cbc9d918.js similarity index 95% rename from addons/dashboard/dist/assets/ConfigPage-9cadf278.js rename to addons/dashboard/dist/assets/ConfigPage-cbc9d918.js index f305ac0ab..7b0f2df05 100644 --- a/addons/dashboard/dist/assets/ConfigPage-9cadf278.js +++ b/addons/dashboard/dist/assets/ConfigPage-cbc9d918.js @@ -1 +1 @@ -import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as g,V as C,d as U,e as x,t as c,a8 as B,R as _,c as r,a9 as w,O as v,b as V,aa as N,i as F,q as P,k as f,A as S}from"./index-800319b6.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){_.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){_.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},$=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,g(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,g(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":O=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{$ as default}; +import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as g,V as C,d as U,e as x,t as c,a8 as B,R as _,c as r,a9 as w,O as v,b as V,aa as N,i as F,q as P,k as f,A as S}from"./index-ffe5e9b0.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){_.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){_.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},$=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,g(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,g(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":O=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{$ as default}; diff --git a/addons/dashboard/dist/assets/ConsolePage-57b1b1f5.js b/addons/dashboard/dist/assets/ConsolePage-57b1b1f5.js new file mode 100644 index 000000000..3f47e23e6 --- /dev/null +++ b/addons/dashboard/dist/assets/ConsolePage-57b1b1f5.js @@ -0,0 +1,9 @@ +import{o as me,s as Se,b as Ce}from"./index-ffe5e9b0.js";var fe={exports:{}};(function(ee,ge){(function(ae,ne){ee.exports=ne()})(self,()=>(()=>{var ae={4567:function(I,r,a){var l=this&&this.__decorate||function(i,o,c,v){var m,h=arguments.length,g=h<3?o:v===null?v=Object.getOwnPropertyDescriptor(o,c):v;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(i,o,c,v);else for(var b=i.length-1;b>=0;b--)(m=i[b])&&(g=(h<3?m(g):h>3?m(o,c,g):m(o,c))||g);return h>3&&g&&Object.defineProperty(o,c,g),g},u=this&&this.__param||function(i,o){return function(c,v){o(c,v,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.AccessibilityManager=void 0;const n=a(9042),d=a(6114),f=a(9924),p=a(844),_=a(5596),e=a(4725),s=a(3656);let t=r.AccessibilityManager=class extends p.Disposable{constructor(i,o){super(),this._terminal=i,this._renderService=o,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce="",this._accessibilityContainer=document.createElement("div"),this._accessibilityContainer.classList.add("xterm-accessibility"),this._rowContainer=document.createElement("div"),this._rowContainer.setAttribute("role","list"),this._rowContainer.classList.add("xterm-accessibility-tree"),this._rowElements=[];for(let c=0;cthis._handleBoundaryFocus(c,0),this._bottomBoundaryFocusListener=c=>this._handleBoundaryFocus(c,1),this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions(),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=document.createElement("div"),this._liveRegion.classList.add("live-region"),this._liveRegion.setAttribute("aria-live","assertive"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this.register(new f.TimeBasedDebouncer(this._renderRows.bind(this))),!this._terminal.element)throw new Error("Cannot enable accessibility before Terminal.open");this._terminal.element.insertAdjacentElement("afterbegin",this._accessibilityContainer),this.register(this._terminal.onResize(c=>this._handleResize(c.rows))),this.register(this._terminal.onRender(c=>this._refreshRows(c.start,c.end))),this.register(this._terminal.onScroll(()=>this._refreshRows())),this.register(this._terminal.onA11yChar(c=>this._handleChar(c))),this.register(this._terminal.onLineFeed(()=>this._handleChar(` +`))),this.register(this._terminal.onA11yTab(c=>this._handleTab(c))),this.register(this._terminal.onKey(c=>this._handleKey(c.key))),this.register(this._terminal.onBlur(()=>this._clearLiveRegion())),this.register(this._renderService.onDimensionsChange(()=>this._refreshRowsDimensions())),this._screenDprMonitor=new _.ScreenDprMonitor(window),this.register(this._screenDprMonitor),this._screenDprMonitor.setListener(()=>this._refreshRowsDimensions()),this.register((0,s.addDisposableDomListener)(window,"resize",()=>this._refreshRowsDimensions())),this._refreshRows(),this.register((0,p.toDisposable)(()=>{this._accessibilityContainer.remove(),this._rowElements.length=0}))}_handleTab(i){for(let o=0;o0?this._charsToConsume.shift()!==i&&(this._charsToAnnounce+=i):this._charsToAnnounce+=i,i===` +`&&(this._liveRegionLineCount++,this._liveRegionLineCount===21&&(this._liveRegion.textContent+=n.tooMuchOutput)),d.isMac&&this._liveRegion.textContent&&this._liveRegion.textContent.length>0&&!this._liveRegion.parentNode&&setTimeout(()=>{this._accessibilityContainer.appendChild(this._liveRegion)},0))}_clearLiveRegion(){this._liveRegion.textContent="",this._liveRegionLineCount=0,d.isMac&&this._liveRegion.remove()}_handleKey(i){this._clearLiveRegion(),/\p{Control}/u.test(i)||this._charsToConsume.push(i)}_refreshRows(i,o){this._liveRegionDebouncer.refresh(i,o,this._terminal.rows)}_renderRows(i,o){const c=this._terminal.buffer,v=c.lines.length.toString();for(let m=i;m<=o;m++){const h=c.translateBufferLineToString(c.ydisp+m,!0),g=(c.ydisp+m+1).toString(),b=this._rowElements[m];b&&(h.length===0?b.innerText=" ":b.textContent=h,b.setAttribute("aria-posinset",g),b.setAttribute("aria-setsize",v))}this._announceCharacters()}_announceCharacters(){this._charsToAnnounce.length!==0&&(this._liveRegion.textContent+=this._charsToAnnounce,this._charsToAnnounce="")}_handleBoundaryFocus(i,o){const c=i.target,v=this._rowElements[o===0?1:this._rowElements.length-2];if(c.getAttribute("aria-posinset")===(o===0?"1":`${this._terminal.buffer.lines.length}`)||i.relatedTarget!==v)return;let m,h;if(o===0?(m=c,h=this._rowElements.pop(),this._rowContainer.removeChild(h)):(m=this._rowElements.shift(),h=c,this._rowContainer.removeChild(m)),m.removeEventListener("focus",this._topBoundaryFocusListener),h.removeEventListener("focus",this._bottomBoundaryFocusListener),o===0){const g=this._createAccessibilityTreeNode();this._rowElements.unshift(g),this._rowContainer.insertAdjacentElement("afterbegin",g)}else{const g=this._createAccessibilityTreeNode();this._rowElements.push(g),this._rowContainer.appendChild(g)}this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._terminal.scrollLines(o===0?-1:1),this._rowElements[o===0?1:this._rowElements.length-2].focus(),i.preventDefault(),i.stopImmediatePropagation()}_handleResize(i){this._rowElements[this._rowElements.length-1].removeEventListener("focus",this._bottomBoundaryFocusListener);for(let o=this._rowContainer.children.length;oi;)this._rowContainer.removeChild(this._rowElements.pop());this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions()}_createAccessibilityTreeNode(){const i=document.createElement("div");return i.setAttribute("role","listitem"),i.tabIndex=-1,this._refreshRowDimensions(i),i}_refreshRowsDimensions(){if(this._renderService.dimensions.css.cell.height){this._accessibilityContainer.style.width=`${this._renderService.dimensions.css.canvas.width}px`,this._rowElements.length!==this._terminal.rows&&this._handleResize(this._terminal.rows);for(let i=0;i{function a(d){return d.replace(/\r?\n/g,"\r")}function l(d,f){return f?"\x1B[200~"+d+"\x1B[201~":d}function u(d,f,p,_){d=l(d=a(d),p.decPrivateModes.bracketedPasteMode&&_.rawOptions.ignoreBracketedPasteMode!==!0),p.triggerDataEvent(d,!0),f.value=""}function n(d,f,p){const _=p.getBoundingClientRect(),e=d.clientX-_.left-10,s=d.clientY-_.top-10;f.style.width="20px",f.style.height="20px",f.style.left=`${e}px`,f.style.top=`${s}px`,f.style.zIndex="1000",f.focus()}Object.defineProperty(r,"__esModule",{value:!0}),r.rightClickHandler=r.moveTextAreaUnderMouseCursor=r.paste=r.handlePasteEvent=r.copyHandler=r.bracketTextForPaste=r.prepareTextForTerminal=void 0,r.prepareTextForTerminal=a,r.bracketTextForPaste=l,r.copyHandler=function(d,f){d.clipboardData&&d.clipboardData.setData("text/plain",f.selectionText),d.preventDefault()},r.handlePasteEvent=function(d,f,p,_){d.stopPropagation(),d.clipboardData&&u(d.clipboardData.getData("text/plain"),f,p,_)},r.paste=u,r.moveTextAreaUnderMouseCursor=n,r.rightClickHandler=function(d,f,p,_,e){n(d,f,p),e&&_.rightClickSelect(d),f.value=_.selectionText,f.select()}},7239:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ColorContrastCache=void 0;const l=a(1505);r.ColorContrastCache=class{constructor(){this._color=new l.TwoKeyMap,this._css=new l.TwoKeyMap}setCss(u,n,d){this._css.set(u,n,d)}getCss(u,n){return this._css.get(u,n)}setColor(u,n,d){this._color.set(u,n,d)}getColor(u,n){return this._color.get(u,n)}clear(){this._color.clear(),this._css.clear()}}},3656:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.addDisposableDomListener=void 0,r.addDisposableDomListener=function(a,l,u,n){a.addEventListener(l,u,n);let d=!1;return{dispose:()=>{d||(d=!0,a.removeEventListener(l,u,n))}}}},6465:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.Linkifier2=void 0;const n=a(3656),d=a(8460),f=a(844),p=a(2585);let _=r.Linkifier2=class extends f.Disposable{get currentLink(){return this._currentLink}constructor(e){super(),this._bufferService=e,this._linkProviders=[],this._linkCacheDisposables=[],this._isMouseOut=!0,this._wasResized=!1,this._activeLine=-1,this._onShowLinkUnderline=this.register(new d.EventEmitter),this.onShowLinkUnderline=this._onShowLinkUnderline.event,this._onHideLinkUnderline=this.register(new d.EventEmitter),this.onHideLinkUnderline=this._onHideLinkUnderline.event,this.register((0,f.getDisposeArrayDisposable)(this._linkCacheDisposables)),this.register((0,f.toDisposable)(()=>{this._lastMouseEvent=void 0})),this.register(this._bufferService.onResize(()=>{this._clearCurrentLink(),this._wasResized=!0}))}registerLinkProvider(e){return this._linkProviders.push(e),{dispose:()=>{const s=this._linkProviders.indexOf(e);s!==-1&&this._linkProviders.splice(s,1)}}}attachToDom(e,s,t){this._element=e,this._mouseService=s,this._renderService=t,this.register((0,n.addDisposableDomListener)(this._element,"mouseleave",()=>{this._isMouseOut=!0,this._clearCurrentLink()})),this.register((0,n.addDisposableDomListener)(this._element,"mousemove",this._handleMouseMove.bind(this))),this.register((0,n.addDisposableDomListener)(this._element,"mousedown",this._handleMouseDown.bind(this))),this.register((0,n.addDisposableDomListener)(this._element,"mouseup",this._handleMouseUp.bind(this)))}_handleMouseMove(e){if(this._lastMouseEvent=e,!this._element||!this._mouseService)return;const s=this._positionFromMouseEvent(e,this._element,this._mouseService);if(!s)return;this._isMouseOut=!1;const t=e.composedPath();for(let i=0;i{c==null||c.forEach(v=>{v.link.dispose&&v.link.dispose()})}),this._activeProviderReplies=new Map,this._activeLine=e.y);let o=!1;for(const[c,v]of this._linkProviders.entries())s?!((i=this._activeProviderReplies)===null||i===void 0)&&i.get(c)&&(o=this._checkLinkProviderResult(c,e,o)):v.provideLinks(e.y,m=>{var h,g;if(this._isMouseOut)return;const b=m==null?void 0:m.map(L=>({link:L}));(h=this._activeProviderReplies)===null||h===void 0||h.set(c,b),o=this._checkLinkProviderResult(c,e,o),((g=this._activeProviderReplies)===null||g===void 0?void 0:g.size)===this._linkProviders.length&&this._removeIntersectingLinks(e.y,this._activeProviderReplies)})}_removeIntersectingLinks(e,s){const t=new Set;for(let i=0;ie?this._bufferService.cols:v.link.range.end.x;for(let g=m;g<=h;g++){if(t.has(g)){o.splice(c--,1);break}t.add(g)}}}}_checkLinkProviderResult(e,s,t){var i;if(!this._activeProviderReplies)return t;const o=this._activeProviderReplies.get(e);let c=!1;for(let v=0;vthis._linkAtPosition(m.link,s));v&&(t=!0,this._handleNewLink(v))}if(this._activeProviderReplies.size===this._linkProviders.length&&!t)for(let v=0;vthis._linkAtPosition(h.link,s));if(m){t=!0,this._handleNewLink(m);break}}return t}_handleMouseDown(){this._mouseDownLink=this._currentLink}_handleMouseUp(e){if(!this._element||!this._mouseService||!this._currentLink)return;const s=this._positionFromMouseEvent(e,this._element,this._mouseService);s&&this._mouseDownLink===this._currentLink&&this._linkAtPosition(this._currentLink.link,s)&&this._currentLink.link.activate(e,this._currentLink.link.text)}_clearCurrentLink(e,s){this._element&&this._currentLink&&this._lastMouseEvent&&(!e||!s||this._currentLink.link.range.start.y>=e&&this._currentLink.link.range.end.y<=s)&&(this._linkLeave(this._element,this._currentLink.link,this._lastMouseEvent),this._currentLink=void 0,(0,f.disposeArray)(this._linkCacheDisposables))}_handleNewLink(e){if(!this._element||!this._lastMouseEvent||!this._mouseService)return;const s=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);s&&this._linkAtPosition(e.link,s)&&(this._currentLink=e,this._currentLink.state={decorations:{underline:e.link.decorations===void 0||e.link.decorations.underline,pointerCursor:e.link.decorations===void 0||e.link.decorations.pointerCursor},isHovered:!0},this._linkHover(this._element,e.link,this._lastMouseEvent),e.link.decorations={},Object.defineProperties(e.link.decorations,{pointerCursor:{get:()=>{var t,i;return(i=(t=this._currentLink)===null||t===void 0?void 0:t.state)===null||i===void 0?void 0:i.decorations.pointerCursor},set:t=>{var i,o;!((i=this._currentLink)===null||i===void 0)&&i.state&&this._currentLink.state.decorations.pointerCursor!==t&&(this._currentLink.state.decorations.pointerCursor=t,this._currentLink.state.isHovered&&((o=this._element)===null||o===void 0||o.classList.toggle("xterm-cursor-pointer",t)))}},underline:{get:()=>{var t,i;return(i=(t=this._currentLink)===null||t===void 0?void 0:t.state)===null||i===void 0?void 0:i.decorations.underline},set:t=>{var i,o,c;!((i=this._currentLink)===null||i===void 0)&&i.state&&((c=(o=this._currentLink)===null||o===void 0?void 0:o.state)===null||c===void 0?void 0:c.decorations.underline)!==t&&(this._currentLink.state.decorations.underline=t,this._currentLink.state.isHovered&&this._fireUnderlineEvent(e.link,t))}}}),this._renderService&&this._linkCacheDisposables.push(this._renderService.onRenderedViewportChange(t=>{if(!this._currentLink)return;const i=t.start===0?0:t.start+1+this._bufferService.buffer.ydisp,o=this._bufferService.buffer.ydisp+1+t.end;if(this._currentLink.link.range.start.y>=i&&this._currentLink.link.range.end.y<=o&&(this._clearCurrentLink(i,o),this._lastMouseEvent&&this._element)){const c=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);c&&this._askForLink(c,!1)}})))}_linkHover(e,s,t){var i;!((i=this._currentLink)===null||i===void 0)&&i.state&&(this._currentLink.state.isHovered=!0,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(s,!0),this._currentLink.state.decorations.pointerCursor&&e.classList.add("xterm-cursor-pointer")),s.hover&&s.hover(t,s.text)}_fireUnderlineEvent(e,s){const t=e.range,i=this._bufferService.buffer.ydisp,o=this._createLinkUnderlineEvent(t.start.x-1,t.start.y-i-1,t.end.x,t.end.y-i-1,void 0);(s?this._onShowLinkUnderline:this._onHideLinkUnderline).fire(o)}_linkLeave(e,s,t){var i;!((i=this._currentLink)===null||i===void 0)&&i.state&&(this._currentLink.state.isHovered=!1,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(s,!1),this._currentLink.state.decorations.pointerCursor&&e.classList.remove("xterm-cursor-pointer")),s.leave&&s.leave(t,s.text)}_linkAtPosition(e,s){const t=e.range.start.y*this._bufferService.cols+e.range.start.x,i=e.range.end.y*this._bufferService.cols+e.range.end.x,o=s.y*this._bufferService.cols+s.x;return t<=o&&o<=i}_positionFromMouseEvent(e,s,t){const i=t.getCoords(e,s,this._bufferService.cols,this._bufferService.rows);if(i)return{x:i[0],y:i[1]+this._bufferService.buffer.ydisp}}_createLinkUnderlineEvent(e,s,t,i,o){return{x1:e,y1:s,x2:t,y2:i,cols:this._bufferService.cols,fg:o}}};r.Linkifier2=_=l([u(0,p.IBufferService)],_)},9042:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.tooMuchOutput=r.promptLabel=void 0,r.promptLabel="Terminal input",r.tooMuchOutput="Too much output to announce, navigate to rows manually to read"},3730:function(I,r,a){var l=this&&this.__decorate||function(_,e,s,t){var i,o=arguments.length,c=o<3?e:t===null?t=Object.getOwnPropertyDescriptor(e,s):t;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(_,e,s,t);else for(var v=_.length-1;v>=0;v--)(i=_[v])&&(c=(o<3?i(c):o>3?i(e,s,c):i(e,s))||c);return o>3&&c&&Object.defineProperty(e,s,c),c},u=this&&this.__param||function(_,e){return function(s,t){e(s,t,_)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OscLinkProvider=void 0;const n=a(511),d=a(2585);let f=r.OscLinkProvider=class{constructor(_,e,s){this._bufferService=_,this._optionsService=e,this._oscLinkService=s}provideLinks(_,e){var s;const t=this._bufferService.buffer.lines.get(_-1);if(!t)return void e(void 0);const i=[],o=this._optionsService.rawOptions.linkHandler,c=new n.CellData,v=t.getTrimmedLength();let m=-1,h=-1,g=!1;for(let b=0;bo?o.activate(x,T,y):p(0,T),hover:(x,T)=>{var O;return(O=o==null?void 0:o.hover)===null||O===void 0?void 0:O.call(o,x,T,y)},leave:(x,T)=>{var O;return(O=o==null?void 0:o.leave)===null||O===void 0?void 0:O.call(o,x,T,y)}})}g=!1,c.hasExtendedAttrs()&&c.extended.urlId?(h=b,m=c.extended.urlId):(h=-1,m=-1)}}e(i)}};function p(_,e){if(confirm(`Do you want to navigate to ${e}? + +WARNING: This link could potentially be dangerous`)){const s=window.open();if(s){try{s.opener=null}catch{}s.location.href=e}else console.warn("Opening link blocked as opener could not be cleared")}}r.OscLinkProvider=f=l([u(0,d.IBufferService),u(1,d.IOptionsService),u(2,d.IOscLinkService)],f)},6193:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.RenderDebouncer=void 0,r.RenderDebouncer=class{constructor(a,l){this._parentWindow=a,this._renderCallback=l,this._refreshCallbacks=[]}dispose(){this._animationFrame&&(this._parentWindow.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}addRefreshCallback(a){return this._refreshCallbacks.push(a),this._animationFrame||(this._animationFrame=this._parentWindow.requestAnimationFrame(()=>this._innerRefresh())),this._animationFrame}refresh(a,l,u){this._rowCount=u,a=a!==void 0?a:0,l=l!==void 0?l:this._rowCount-1,this._rowStart=this._rowStart!==void 0?Math.min(this._rowStart,a):a,this._rowEnd=this._rowEnd!==void 0?Math.max(this._rowEnd,l):l,this._animationFrame||(this._animationFrame=this._parentWindow.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._animationFrame=void 0,this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return void this._runRefreshCallbacks();const a=Math.max(this._rowStart,0),l=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(a,l),this._runRefreshCallbacks()}_runRefreshCallbacks(){for(const a of this._refreshCallbacks)a(0);this._refreshCallbacks=[]}}},5596:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ScreenDprMonitor=void 0;const l=a(844);class u extends l.Disposable{constructor(d){super(),this._parentWindow=d,this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this.register((0,l.toDisposable)(()=>{this.clearListener()}))}setListener(d){this._listener&&this.clearListener(),this._listener=d,this._outerListener=()=>{this._listener&&(this._listener(this._parentWindow.devicePixelRatio,this._currentDevicePixelRatio),this._updateDpr())},this._updateDpr()}_updateDpr(){var d;this._outerListener&&((d=this._resolutionMediaMatchList)===null||d===void 0||d.removeListener(this._outerListener),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._resolutionMediaMatchList=this._parentWindow.matchMedia(`screen and (resolution: ${this._parentWindow.devicePixelRatio}dppx)`),this._resolutionMediaMatchList.addListener(this._outerListener))}clearListener(){this._resolutionMediaMatchList&&this._listener&&this._outerListener&&(this._resolutionMediaMatchList.removeListener(this._outerListener),this._resolutionMediaMatchList=void 0,this._listener=void 0,this._outerListener=void 0)}}r.ScreenDprMonitor=u},3236:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Terminal=void 0;const l=a(3614),u=a(3656),n=a(6465),d=a(9042),f=a(3730),p=a(1680),_=a(3107),e=a(5744),s=a(2950),t=a(1296),i=a(428),o=a(4269),c=a(5114),v=a(8934),m=a(3230),h=a(9312),g=a(4725),b=a(6731),L=a(8055),y=a(8969),k=a(8460),x=a(844),T=a(6114),O=a(8437),M=a(2584),C=a(7399),w=a(5941),E=a(9074),D=a(2585),P=a(5435),H=a(4567),U=typeof window<"u"?window.document:null;class W extends y.CoreTerminal{get onFocus(){return this._onFocus.event}get onBlur(){return this._onBlur.event}get onA11yChar(){return this._onA11yCharEmitter.event}get onA11yTab(){return this._onA11yTabEmitter.event}get onWillOpen(){return this._onWillOpen.event}constructor(S={}){super(S),this.browser=T,this._keyDownHandled=!1,this._keyDownSeen=!1,this._keyPressHandled=!1,this._unprocessedDeadKey=!1,this._accessibilityManager=this.register(new x.MutableDisposable),this._onCursorMove=this.register(new k.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onKey=this.register(new k.EventEmitter),this.onKey=this._onKey.event,this._onRender=this.register(new k.EventEmitter),this.onRender=this._onRender.event,this._onSelectionChange=this.register(new k.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onTitleChange=this.register(new k.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onBell=this.register(new k.EventEmitter),this.onBell=this._onBell.event,this._onFocus=this.register(new k.EventEmitter),this._onBlur=this.register(new k.EventEmitter),this._onA11yCharEmitter=this.register(new k.EventEmitter),this._onA11yTabEmitter=this.register(new k.EventEmitter),this._onWillOpen=this.register(new k.EventEmitter),this._setup(),this.linkifier2=this.register(this._instantiationService.createInstance(n.Linkifier2)),this.linkifier2.registerLinkProvider(this._instantiationService.createInstance(f.OscLinkProvider)),this._decorationService=this._instantiationService.createInstance(E.DecorationService),this._instantiationService.setService(D.IDecorationService,this._decorationService),this.register(this._inputHandler.onRequestBell(()=>this._onBell.fire())),this.register(this._inputHandler.onRequestRefreshRows((R,B)=>this.refresh(R,B))),this.register(this._inputHandler.onRequestSendFocus(()=>this._reportFocus())),this.register(this._inputHandler.onRequestReset(()=>this.reset())),this.register(this._inputHandler.onRequestWindowsOptionsReport(R=>this._reportWindowsOptions(R))),this.register(this._inputHandler.onColor(R=>this._handleColorEvent(R))),this.register((0,k.forwardEvent)(this._inputHandler.onCursorMove,this._onCursorMove)),this.register((0,k.forwardEvent)(this._inputHandler.onTitleChange,this._onTitleChange)),this.register((0,k.forwardEvent)(this._inputHandler.onA11yChar,this._onA11yCharEmitter)),this.register((0,k.forwardEvent)(this._inputHandler.onA11yTab,this._onA11yTabEmitter)),this.register(this._bufferService.onResize(R=>this._afterResize(R.cols,R.rows))),this.register((0,x.toDisposable)(()=>{var R,B;this._customKeyEventHandler=void 0,(B=(R=this.element)===null||R===void 0?void 0:R.parentNode)===null||B===void 0||B.removeChild(this.element)}))}_handleColorEvent(S){if(this._themeService)for(const R of S){let B,A="";switch(R.index){case 256:B="foreground",A="10";break;case 257:B="background",A="11";break;case 258:B="cursor",A="12";break;default:B="ansi",A="4;"+R.index}switch(R.type){case 0:const N=L.color.toColorRGB(B==="ansi"?this._themeService.colors.ansi[R.index]:this._themeService.colors[B]);this.coreService.triggerDataEvent(`${M.C0.ESC}]${A};${(0,w.toRgbString)(N)}${M.C1_ESCAPED.ST}`);break;case 1:if(B==="ansi")this._themeService.modifyColors(F=>F.ansi[R.index]=L.rgba.toColor(...R.color));else{const F=B;this._themeService.modifyColors(j=>j[F]=L.rgba.toColor(...R.color))}break;case 2:this._themeService.restoreColor(R.index)}}}_setup(){super._setup(),this._customKeyEventHandler=void 0}get buffer(){return this.buffers.active}focus(){this.textarea&&this.textarea.focus({preventScroll:!0})}_handleScreenReaderModeOptionChange(S){S?!this._accessibilityManager.value&&this._renderService&&(this._accessibilityManager.value=this._instantiationService.createInstance(H.AccessibilityManager,this)):this._accessibilityManager.clear()}_handleTextAreaFocus(S){this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(M.C0.ESC+"[I"),this.updateCursorStyle(S),this.element.classList.add("focus"),this._showCursor(),this._onFocus.fire()}blur(){var S;return(S=this.textarea)===null||S===void 0?void 0:S.blur()}_handleTextAreaBlur(){this.textarea.value="",this.refresh(this.buffer.y,this.buffer.y),this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(M.C0.ESC+"[O"),this.element.classList.remove("focus"),this._onBlur.fire()}_syncTextArea(){if(!this.textarea||!this.buffer.isCursorInViewport||this._compositionHelper.isComposing||!this._renderService)return;const S=this.buffer.ybase+this.buffer.y,R=this.buffer.lines.get(S);if(!R)return;const B=Math.min(this.buffer.x,this.cols-1),A=this._renderService.dimensions.css.cell.height,N=R.getWidth(B),F=this._renderService.dimensions.css.cell.width*N,j=this.buffer.y*this._renderService.dimensions.css.cell.height,q=B*this._renderService.dimensions.css.cell.width;this.textarea.style.left=q+"px",this.textarea.style.top=j+"px",this.textarea.style.width=F+"px",this.textarea.style.height=A+"px",this.textarea.style.lineHeight=A+"px",this.textarea.style.zIndex="-5"}_initGlobal(){this._bindKeys(),this.register((0,u.addDisposableDomListener)(this.element,"copy",R=>{this.hasSelection()&&(0,l.copyHandler)(R,this._selectionService)}));const S=R=>(0,l.handlePasteEvent)(R,this.textarea,this.coreService,this.optionsService);this.register((0,u.addDisposableDomListener)(this.textarea,"paste",S)),this.register((0,u.addDisposableDomListener)(this.element,"paste",S)),T.isFirefox?this.register((0,u.addDisposableDomListener)(this.element,"mousedown",R=>{R.button===2&&(0,l.rightClickHandler)(R,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})):this.register((0,u.addDisposableDomListener)(this.element,"contextmenu",R=>{(0,l.rightClickHandler)(R,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})),T.isLinux&&this.register((0,u.addDisposableDomListener)(this.element,"auxclick",R=>{R.button===1&&(0,l.moveTextAreaUnderMouseCursor)(R,this.textarea,this.screenElement)}))}_bindKeys(){this.register((0,u.addDisposableDomListener)(this.textarea,"keyup",S=>this._keyUp(S),!0)),this.register((0,u.addDisposableDomListener)(this.textarea,"keydown",S=>this._keyDown(S),!0)),this.register((0,u.addDisposableDomListener)(this.textarea,"keypress",S=>this._keyPress(S),!0)),this.register((0,u.addDisposableDomListener)(this.textarea,"compositionstart",()=>this._compositionHelper.compositionstart())),this.register((0,u.addDisposableDomListener)(this.textarea,"compositionupdate",S=>this._compositionHelper.compositionupdate(S))),this.register((0,u.addDisposableDomListener)(this.textarea,"compositionend",()=>this._compositionHelper.compositionend())),this.register((0,u.addDisposableDomListener)(this.textarea,"input",S=>this._inputEvent(S),!0)),this.register(this.onRender(()=>this._compositionHelper.updateCompositionElements()))}open(S){var R;if(!S)throw new Error("Terminal requires a parent element.");S.isConnected||this._logService.debug("Terminal.open was called on an element that was not attached to the DOM"),this._document=S.ownerDocument,this.element=this._document.createElement("div"),this.element.dir="ltr",this.element.classList.add("terminal"),this.element.classList.add("xterm"),S.appendChild(this.element);const B=U.createDocumentFragment();this._viewportElement=U.createElement("div"),this._viewportElement.classList.add("xterm-viewport"),B.appendChild(this._viewportElement),this._viewportScrollArea=U.createElement("div"),this._viewportScrollArea.classList.add("xterm-scroll-area"),this._viewportElement.appendChild(this._viewportScrollArea),this.screenElement=U.createElement("div"),this.screenElement.classList.add("xterm-screen"),this._helperContainer=U.createElement("div"),this._helperContainer.classList.add("xterm-helpers"),this.screenElement.appendChild(this._helperContainer),B.appendChild(this.screenElement),this.textarea=U.createElement("textarea"),this.textarea.classList.add("xterm-helper-textarea"),this.textarea.setAttribute("aria-label",d.promptLabel),T.isChromeOS||this.textarea.setAttribute("aria-multiline","false"),this.textarea.setAttribute("autocorrect","off"),this.textarea.setAttribute("autocapitalize","off"),this.textarea.setAttribute("spellcheck","false"),this.textarea.tabIndex=0,this._coreBrowserService=this._instantiationService.createInstance(c.CoreBrowserService,this.textarea,(R=this._document.defaultView)!==null&&R!==void 0?R:window),this._instantiationService.setService(g.ICoreBrowserService,this._coreBrowserService),this.register((0,u.addDisposableDomListener)(this.textarea,"focus",A=>this._handleTextAreaFocus(A))),this.register((0,u.addDisposableDomListener)(this.textarea,"blur",()=>this._handleTextAreaBlur())),this._helperContainer.appendChild(this.textarea),this._charSizeService=this._instantiationService.createInstance(i.CharSizeService,this._document,this._helperContainer),this._instantiationService.setService(g.ICharSizeService,this._charSizeService),this._themeService=this._instantiationService.createInstance(b.ThemeService),this._instantiationService.setService(g.IThemeService,this._themeService),this._characterJoinerService=this._instantiationService.createInstance(o.CharacterJoinerService),this._instantiationService.setService(g.ICharacterJoinerService,this._characterJoinerService),this._renderService=this.register(this._instantiationService.createInstance(m.RenderService,this.rows,this.screenElement)),this._instantiationService.setService(g.IRenderService,this._renderService),this.register(this._renderService.onRenderedViewportChange(A=>this._onRender.fire(A))),this.onResize(A=>this._renderService.resize(A.cols,A.rows)),this._compositionView=U.createElement("div"),this._compositionView.classList.add("composition-view"),this._compositionHelper=this._instantiationService.createInstance(s.CompositionHelper,this.textarea,this._compositionView),this._helperContainer.appendChild(this._compositionView),this.element.appendChild(B);try{this._onWillOpen.fire(this.element)}catch{}this._renderService.hasRenderer()||this._renderService.setRenderer(this._createRenderer()),this._mouseService=this._instantiationService.createInstance(v.MouseService),this._instantiationService.setService(g.IMouseService,this._mouseService),this.viewport=this._instantiationService.createInstance(p.Viewport,this._viewportElement,this._viewportScrollArea),this.viewport.onRequestScrollLines(A=>this.scrollLines(A.amount,A.suppressScrollEvent,1)),this.register(this._inputHandler.onRequestSyncScrollBar(()=>this.viewport.syncScrollArea())),this.register(this.viewport),this.register(this.onCursorMove(()=>{this._renderService.handleCursorMove(),this._syncTextArea()})),this.register(this.onResize(()=>this._renderService.handleResize(this.cols,this.rows))),this.register(this.onBlur(()=>this._renderService.handleBlur())),this.register(this.onFocus(()=>this._renderService.handleFocus())),this.register(this._renderService.onDimensionsChange(()=>this.viewport.syncScrollArea())),this._selectionService=this.register(this._instantiationService.createInstance(h.SelectionService,this.element,this.screenElement,this.linkifier2)),this._instantiationService.setService(g.ISelectionService,this._selectionService),this.register(this._selectionService.onRequestScrollLines(A=>this.scrollLines(A.amount,A.suppressScrollEvent))),this.register(this._selectionService.onSelectionChange(()=>this._onSelectionChange.fire())),this.register(this._selectionService.onRequestRedraw(A=>this._renderService.handleSelectionChanged(A.start,A.end,A.columnSelectMode))),this.register(this._selectionService.onLinuxMouseSelection(A=>{this.textarea.value=A,this.textarea.focus(),this.textarea.select()})),this.register(this._onScroll.event(A=>{this.viewport.syncScrollArea(),this._selectionService.refresh()})),this.register((0,u.addDisposableDomListener)(this._viewportElement,"scroll",()=>this._selectionService.refresh())),this.linkifier2.attachToDom(this.screenElement,this._mouseService,this._renderService),this.register(this._instantiationService.createInstance(_.BufferDecorationRenderer,this.screenElement)),this.register((0,u.addDisposableDomListener)(this.element,"mousedown",A=>this._selectionService.handleMouseDown(A))),this.coreMouseService.areMouseEventsActive?(this._selectionService.disable(),this.element.classList.add("enable-mouse-events")):this._selectionService.enable(),this.options.screenReaderMode&&(this._accessibilityManager.value=this._instantiationService.createInstance(H.AccessibilityManager,this)),this.register(this.optionsService.onSpecificOptionChange("screenReaderMode",A=>this._handleScreenReaderModeOptionChange(A))),this.options.overviewRulerWidth&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(e.OverviewRulerRenderer,this._viewportElement,this.screenElement))),this.optionsService.onSpecificOptionChange("overviewRulerWidth",A=>{!this._overviewRulerRenderer&&A&&this._viewportElement&&this.screenElement&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(e.OverviewRulerRenderer,this._viewportElement,this.screenElement)))}),this._charSizeService.measure(),this.refresh(0,this.rows-1),this._initGlobal(),this.bindMouse()}_createRenderer(){return this._instantiationService.createInstance(t.DomRenderer,this.element,this.screenElement,this._viewportElement,this.linkifier2)}bindMouse(){const S=this,R=this.element;function B(F){const j=S._mouseService.getMouseReportCoords(F,S.screenElement);if(!j)return!1;let q,V;switch(F.overrideType||F.type){case"mousemove":V=32,F.buttons===void 0?(q=3,F.button!==void 0&&(q=F.button<3?F.button:3)):q=1&F.buttons?0:4&F.buttons?1:2&F.buttons?2:3;break;case"mouseup":V=0,q=F.button<3?F.button:3;break;case"mousedown":V=1,q=F.button<3?F.button:3;break;case"wheel":if(S.viewport.getLinesScrolled(F)===0)return!1;V=F.deltaY<0?0:1,q=4;break;default:return!1}return!(V===void 0||q===void 0||q>4)&&S.coreMouseService.triggerMouseEvent({col:j.col,row:j.row,x:j.x,y:j.y,button:q,action:V,ctrl:F.ctrlKey,alt:F.altKey,shift:F.shiftKey})}const A={mouseup:null,wheel:null,mousedrag:null,mousemove:null},N={mouseup:F=>(B(F),F.buttons||(this._document.removeEventListener("mouseup",A.mouseup),A.mousedrag&&this._document.removeEventListener("mousemove",A.mousedrag)),this.cancel(F)),wheel:F=>(B(F),this.cancel(F,!0)),mousedrag:F=>{F.buttons&&B(F)},mousemove:F=>{F.buttons||B(F)}};this.register(this.coreMouseService.onProtocolChange(F=>{F?(this.optionsService.rawOptions.logLevel==="debug"&&this._logService.debug("Binding to mouse events:",this.coreMouseService.explainEvents(F)),this.element.classList.add("enable-mouse-events"),this._selectionService.disable()):(this._logService.debug("Unbinding from mouse events."),this.element.classList.remove("enable-mouse-events"),this._selectionService.enable()),8&F?A.mousemove||(R.addEventListener("mousemove",N.mousemove),A.mousemove=N.mousemove):(R.removeEventListener("mousemove",A.mousemove),A.mousemove=null),16&F?A.wheel||(R.addEventListener("wheel",N.wheel,{passive:!1}),A.wheel=N.wheel):(R.removeEventListener("wheel",A.wheel),A.wheel=null),2&F?A.mouseup||(R.addEventListener("mouseup",N.mouseup),A.mouseup=N.mouseup):(this._document.removeEventListener("mouseup",A.mouseup),R.removeEventListener("mouseup",A.mouseup),A.mouseup=null),4&F?A.mousedrag||(A.mousedrag=N.mousedrag):(this._document.removeEventListener("mousemove",A.mousedrag),A.mousedrag=null)})),this.coreMouseService.activeProtocol=this.coreMouseService.activeProtocol,this.register((0,u.addDisposableDomListener)(R,"mousedown",F=>{if(F.preventDefault(),this.focus(),this.coreMouseService.areMouseEventsActive&&!this._selectionService.shouldForceSelection(F))return B(F),A.mouseup&&this._document.addEventListener("mouseup",A.mouseup),A.mousedrag&&this._document.addEventListener("mousemove",A.mousedrag),this.cancel(F)})),this.register((0,u.addDisposableDomListener)(R,"wheel",F=>{if(!A.wheel){if(!this.buffer.hasScrollback){const j=this.viewport.getLinesScrolled(F);if(j===0)return;const q=M.C0.ESC+(this.coreService.decPrivateModes.applicationCursorKeys?"O":"[")+(F.deltaY<0?"A":"B");let V="";for(let Q=0;Q{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchStart(F),this.cancel(F)},{passive:!0})),this.register((0,u.addDisposableDomListener)(R,"touchmove",F=>{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchMove(F)?void 0:this.cancel(F)},{passive:!1}))}refresh(S,R){var B;(B=this._renderService)===null||B===void 0||B.refreshRows(S,R)}updateCursorStyle(S){var R;!((R=this._selectionService)===null||R===void 0)&&R.shouldColumnSelect(S)?this.element.classList.add("column-select"):this.element.classList.remove("column-select")}_showCursor(){this.coreService.isCursorInitialized||(this.coreService.isCursorInitialized=!0,this.refresh(this.buffer.y,this.buffer.y))}scrollLines(S,R,B=0){var A;B===1?(super.scrollLines(S,R,B),this.refresh(0,this.rows-1)):(A=this.viewport)===null||A===void 0||A.scrollLines(S)}paste(S){(0,l.paste)(S,this.textarea,this.coreService,this.optionsService)}attachCustomKeyEventHandler(S){this._customKeyEventHandler=S}registerLinkProvider(S){return this.linkifier2.registerLinkProvider(S)}registerCharacterJoiner(S){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");const R=this._characterJoinerService.register(S);return this.refresh(0,this.rows-1),R}deregisterCharacterJoiner(S){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");this._characterJoinerService.deregister(S)&&this.refresh(0,this.rows-1)}get markers(){return this.buffer.markers}registerMarker(S){return this.buffer.addMarker(this.buffer.ybase+this.buffer.y+S)}registerDecoration(S){return this._decorationService.registerDecoration(S)}hasSelection(){return!!this._selectionService&&this._selectionService.hasSelection}select(S,R,B){this._selectionService.setSelection(S,R,B)}getSelection(){return this._selectionService?this._selectionService.selectionText:""}getSelectionPosition(){if(this._selectionService&&this._selectionService.hasSelection)return{start:{x:this._selectionService.selectionStart[0],y:this._selectionService.selectionStart[1]},end:{x:this._selectionService.selectionEnd[0],y:this._selectionService.selectionEnd[1]}}}clearSelection(){var S;(S=this._selectionService)===null||S===void 0||S.clearSelection()}selectAll(){var S;(S=this._selectionService)===null||S===void 0||S.selectAll()}selectLines(S,R){var B;(B=this._selectionService)===null||B===void 0||B.selectLines(S,R)}_keyDown(S){if(this._keyDownHandled=!1,this._keyDownSeen=!0,this._customKeyEventHandler&&this._customKeyEventHandler(S)===!1)return!1;const R=this.browser.isMac&&this.options.macOptionIsMeta&&S.altKey;if(!R&&!this._compositionHelper.keydown(S))return this.options.scrollOnUserInput&&this.buffer.ybase!==this.buffer.ydisp&&this.scrollToBottom(),!1;R||S.key!=="Dead"&&S.key!=="AltGraph"||(this._unprocessedDeadKey=!0);const B=(0,C.evaluateKeyboardEvent)(S,this.coreService.decPrivateModes.applicationCursorKeys,this.browser.isMac,this.options.macOptionIsMeta);if(this.updateCursorStyle(S),B.type===3||B.type===2){const A=this.rows-1;return this.scrollLines(B.type===2?-A:A),this.cancel(S,!0)}return B.type===1&&this.selectAll(),!!this._isThirdLevelShift(this.browser,S)||(B.cancel&&this.cancel(S,!0),!B.key||!!(S.key&&!S.ctrlKey&&!S.altKey&&!S.metaKey&&S.key.length===1&&S.key.charCodeAt(0)>=65&&S.key.charCodeAt(0)<=90)||(this._unprocessedDeadKey?(this._unprocessedDeadKey=!1,!0):(B.key!==M.C0.ETX&&B.key!==M.C0.CR||(this.textarea.value=""),this._onKey.fire({key:B.key,domEvent:S}),this._showCursor(),this.coreService.triggerDataEvent(B.key,!0),!this.optionsService.rawOptions.screenReaderMode||S.altKey||S.ctrlKey?this.cancel(S,!0):void(this._keyDownHandled=!0))))}_isThirdLevelShift(S,R){const B=S.isMac&&!this.options.macOptionIsMeta&&R.altKey&&!R.ctrlKey&&!R.metaKey||S.isWindows&&R.altKey&&R.ctrlKey&&!R.metaKey||S.isWindows&&R.getModifierState("AltGraph");return R.type==="keypress"?B:B&&(!R.keyCode||R.keyCode>47)}_keyUp(S){this._keyDownSeen=!1,this._customKeyEventHandler&&this._customKeyEventHandler(S)===!1||(function(R){return R.keyCode===16||R.keyCode===17||R.keyCode===18}(S)||this.focus(),this.updateCursorStyle(S),this._keyPressHandled=!1)}_keyPress(S){let R;if(this._keyPressHandled=!1,this._keyDownHandled||this._customKeyEventHandler&&this._customKeyEventHandler(S)===!1)return!1;if(this.cancel(S),S.charCode)R=S.charCode;else if(S.which===null||S.which===void 0)R=S.keyCode;else{if(S.which===0||S.charCode===0)return!1;R=S.which}return!(!R||(S.altKey||S.ctrlKey||S.metaKey)&&!this._isThirdLevelShift(this.browser,S)||(R=String.fromCharCode(R),this._onKey.fire({key:R,domEvent:S}),this._showCursor(),this.coreService.triggerDataEvent(R,!0),this._keyPressHandled=!0,this._unprocessedDeadKey=!1,0))}_inputEvent(S){if(S.data&&S.inputType==="insertText"&&(!S.composed||!this._keyDownSeen)&&!this.optionsService.rawOptions.screenReaderMode){if(this._keyPressHandled)return!1;this._unprocessedDeadKey=!1;const R=S.data;return this.coreService.triggerDataEvent(R,!0),this.cancel(S),!0}return!1}resize(S,R){S!==this.cols||R!==this.rows?super.resize(S,R):this._charSizeService&&!this._charSizeService.hasValidSize&&this._charSizeService.measure()}_afterResize(S,R){var B,A;(B=this._charSizeService)===null||B===void 0||B.measure(),(A=this.viewport)===null||A===void 0||A.syncScrollArea(!0)}clear(){var S;if(this.buffer.ybase!==0||this.buffer.y!==0){this.buffer.clearAllMarkers(),this.buffer.lines.set(0,this.buffer.lines.get(this.buffer.ybase+this.buffer.y)),this.buffer.lines.length=1,this.buffer.ydisp=0,this.buffer.ybase=0,this.buffer.y=0;for(let R=1;R{Object.defineProperty(r,"__esModule",{value:!0}),r.TimeBasedDebouncer=void 0,r.TimeBasedDebouncer=class{constructor(a,l=1e3){this._renderCallback=a,this._debounceThresholdMS=l,this._lastRefreshMs=0,this._additionalRefreshRequested=!1}dispose(){this._refreshTimeoutID&&clearTimeout(this._refreshTimeoutID)}refresh(a,l,u){this._rowCount=u,a=a!==void 0?a:0,l=l!==void 0?l:this._rowCount-1,this._rowStart=this._rowStart!==void 0?Math.min(this._rowStart,a):a,this._rowEnd=this._rowEnd!==void 0?Math.max(this._rowEnd,l):l;const n=Date.now();if(n-this._lastRefreshMs>=this._debounceThresholdMS)this._lastRefreshMs=n,this._innerRefresh();else if(!this._additionalRefreshRequested){const d=n-this._lastRefreshMs,f=this._debounceThresholdMS-d;this._additionalRefreshRequested=!0,this._refreshTimeoutID=window.setTimeout(()=>{this._lastRefreshMs=Date.now(),this._innerRefresh(),this._additionalRefreshRequested=!1,this._refreshTimeoutID=void 0},f)}}_innerRefresh(){if(this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return;const a=Math.max(this._rowStart,0),l=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(a,l)}}},1680:function(I,r,a){var l=this&&this.__decorate||function(s,t,i,o){var c,v=arguments.length,m=v<3?t:o===null?o=Object.getOwnPropertyDescriptor(t,i):o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")m=Reflect.decorate(s,t,i,o);else for(var h=s.length-1;h>=0;h--)(c=s[h])&&(m=(v<3?c(m):v>3?c(t,i,m):c(t,i))||m);return v>3&&m&&Object.defineProperty(t,i,m),m},u=this&&this.__param||function(s,t){return function(i,o){t(i,o,s)}};Object.defineProperty(r,"__esModule",{value:!0}),r.Viewport=void 0;const n=a(3656),d=a(4725),f=a(8460),p=a(844),_=a(2585);let e=r.Viewport=class extends p.Disposable{constructor(s,t,i,o,c,v,m,h){super(),this._viewportElement=s,this._scrollArea=t,this._bufferService=i,this._optionsService=o,this._charSizeService=c,this._renderService=v,this._coreBrowserService=m,this.scrollBarWidth=0,this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._wheelPartialScroll=0,this._refreshAnimationFrame=null,this._ignoreNextScrollEvent=!1,this._smoothScrollState={startTime:0,origin:-1,target:-1},this._onRequestScrollLines=this.register(new f.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this.scrollBarWidth=this._viewportElement.offsetWidth-this._scrollArea.offsetWidth||15,this.register((0,n.addDisposableDomListener)(this._viewportElement,"scroll",this._handleScroll.bind(this))),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate(g=>this._activeBuffer=g.activeBuffer)),this._renderDimensions=this._renderService.dimensions,this.register(this._renderService.onDimensionsChange(g=>this._renderDimensions=g)),this._handleThemeChange(h.colors),this.register(h.onChangeColors(g=>this._handleThemeChange(g))),this.register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.syncScrollArea())),setTimeout(()=>this.syncScrollArea())}_handleThemeChange(s){this._viewportElement.style.backgroundColor=s.background.css}reset(){this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._coreBrowserService.window.requestAnimationFrame(()=>this.syncScrollArea())}_refresh(s){if(s)return this._innerRefresh(),void(this._refreshAnimationFrame!==null&&this._coreBrowserService.window.cancelAnimationFrame(this._refreshAnimationFrame));this._refreshAnimationFrame===null&&(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._charSizeService.height>0){this._currentRowHeight=this._renderService.dimensions.device.cell.height/this._coreBrowserService.dpr,this._currentDeviceCellHeight=this._renderService.dimensions.device.cell.height,this._lastRecordedViewportHeight=this._viewportElement.offsetHeight;const t=Math.round(this._currentRowHeight*this._lastRecordedBufferLength)+(this._lastRecordedViewportHeight-this._renderService.dimensions.css.canvas.height);this._lastRecordedBufferHeight!==t&&(this._lastRecordedBufferHeight=t,this._scrollArea.style.height=this._lastRecordedBufferHeight+"px")}const s=this._bufferService.buffer.ydisp*this._currentRowHeight;this._viewportElement.scrollTop!==s&&(this._ignoreNextScrollEvent=!0,this._viewportElement.scrollTop=s),this._refreshAnimationFrame=null}syncScrollArea(s=!1){if(this._lastRecordedBufferLength!==this._bufferService.buffer.lines.length)return this._lastRecordedBufferLength=this._bufferService.buffer.lines.length,void this._refresh(s);this._lastRecordedViewportHeight===this._renderService.dimensions.css.canvas.height&&this._lastScrollTop===this._activeBuffer.ydisp*this._currentRowHeight&&this._renderDimensions.device.cell.height===this._currentDeviceCellHeight||this._refresh(s)}_handleScroll(s){if(this._lastScrollTop=this._viewportElement.scrollTop,!this._viewportElement.offsetParent)return;if(this._ignoreNextScrollEvent)return this._ignoreNextScrollEvent=!1,void this._onRequestScrollLines.fire({amount:0,suppressScrollEvent:!0});const t=Math.round(this._lastScrollTop/this._currentRowHeight)-this._bufferService.buffer.ydisp;this._onRequestScrollLines.fire({amount:t,suppressScrollEvent:!0})}_smoothScroll(){if(this._isDisposed||this._smoothScrollState.origin===-1||this._smoothScrollState.target===-1)return;const s=this._smoothScrollPercent();this._viewportElement.scrollTop=this._smoothScrollState.origin+Math.round(s*(this._smoothScrollState.target-this._smoothScrollState.origin)),s<1?this._coreBrowserService.window.requestAnimationFrame(()=>this._smoothScroll()):this._clearSmoothScrollState()}_smoothScrollPercent(){return this._optionsService.rawOptions.smoothScrollDuration&&this._smoothScrollState.startTime?Math.max(Math.min((Date.now()-this._smoothScrollState.startTime)/this._optionsService.rawOptions.smoothScrollDuration,1),0):1}_clearSmoothScrollState(){this._smoothScrollState.startTime=0,this._smoothScrollState.origin=-1,this._smoothScrollState.target=-1}_bubbleScroll(s,t){const i=this._viewportElement.scrollTop+this._lastRecordedViewportHeight;return!(t<0&&this._viewportElement.scrollTop!==0||t>0&&i0&&(o=y),c=""}}return{bufferElements:v,cursorElement:o}}getLinesScrolled(s){if(s.deltaY===0||s.shiftKey)return 0;let t=this._applyScrollModifier(s.deltaY,s);return s.deltaMode===WheelEvent.DOM_DELTA_PIXEL?(t/=this._currentRowHeight+0,this._wheelPartialScroll+=t,t=Math.floor(Math.abs(this._wheelPartialScroll))*(this._wheelPartialScroll>0?1:-1),this._wheelPartialScroll%=1):s.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(t*=this._bufferService.rows),t}_applyScrollModifier(s,t){const i=this._optionsService.rawOptions.fastScrollModifier;return i==="alt"&&t.altKey||i==="ctrl"&&t.ctrlKey||i==="shift"&&t.shiftKey?s*this._optionsService.rawOptions.fastScrollSensitivity*this._optionsService.rawOptions.scrollSensitivity:s*this._optionsService.rawOptions.scrollSensitivity}handleTouchStart(s){this._lastTouchY=s.touches[0].pageY}handleTouchMove(s){const t=this._lastTouchY-s.touches[0].pageY;return this._lastTouchY=s.touches[0].pageY,t!==0&&(this._viewportElement.scrollTop+=t,this._bubbleScroll(s,t))}};r.Viewport=e=l([u(2,_.IBufferService),u(3,_.IOptionsService),u(4,d.ICharSizeService),u(5,d.IRenderService),u(6,d.ICoreBrowserService),u(7,d.IThemeService)],e)},3107:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.BufferDecorationRenderer=void 0;const n=a(3656),d=a(4725),f=a(844),p=a(2585);let _=r.BufferDecorationRenderer=class extends f.Disposable{constructor(e,s,t,i){super(),this._screenElement=e,this._bufferService=s,this._decorationService=t,this._renderService=i,this._decorationElements=new Map,this._altBufferIsActive=!1,this._dimensionsChanged=!1,this._container=document.createElement("div"),this._container.classList.add("xterm-decoration-container"),this._screenElement.appendChild(this._container),this.register(this._renderService.onRenderedViewportChange(()=>this._doRefreshDecorations())),this.register(this._renderService.onDimensionsChange(()=>{this._dimensionsChanged=!0,this._queueRefresh()})),this.register((0,n.addDisposableDomListener)(window,"resize",()=>this._queueRefresh())),this.register(this._bufferService.buffers.onBufferActivate(()=>{this._altBufferIsActive=this._bufferService.buffer===this._bufferService.buffers.alt})),this.register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh())),this.register(this._decorationService.onDecorationRemoved(o=>this._removeDecoration(o))),this.register((0,f.toDisposable)(()=>{this._container.remove(),this._decorationElements.clear()}))}_queueRefresh(){this._animationFrame===void 0&&(this._animationFrame=this._renderService.addRefreshCallback(()=>{this._doRefreshDecorations(),this._animationFrame=void 0}))}_doRefreshDecorations(){for(const e of this._decorationService.decorations)this._renderDecoration(e);this._dimensionsChanged=!1}_renderDecoration(e){this._refreshStyle(e),this._dimensionsChanged&&this._refreshXPosition(e)}_createElement(e){var s,t;const i=document.createElement("div");i.classList.add("xterm-decoration"),i.classList.toggle("xterm-decoration-top-layer",((s=e==null?void 0:e.options)===null||s===void 0?void 0:s.layer)==="top"),i.style.width=`${Math.round((e.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,i.style.height=(e.options.height||1)*this._renderService.dimensions.css.cell.height+"px",i.style.top=(e.marker.line-this._bufferService.buffers.active.ydisp)*this._renderService.dimensions.css.cell.height+"px",i.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`;const o=(t=e.options.x)!==null&&t!==void 0?t:0;return o&&o>this._bufferService.cols&&(i.style.display="none"),this._refreshXPosition(e,i),i}_refreshStyle(e){const s=e.marker.line-this._bufferService.buffers.active.ydisp;if(s<0||s>=this._bufferService.rows)e.element&&(e.element.style.display="none",e.onRenderEmitter.fire(e.element));else{let t=this._decorationElements.get(e);t||(t=this._createElement(e),e.element=t,this._decorationElements.set(e,t),this._container.appendChild(t),e.onDispose(()=>{this._decorationElements.delete(e),t.remove()})),t.style.top=s*this._renderService.dimensions.css.cell.height+"px",t.style.display=this._altBufferIsActive?"none":"block",e.onRenderEmitter.fire(t)}}_refreshXPosition(e,s=e.element){var t;if(!s)return;const i=(t=e.options.x)!==null&&t!==void 0?t:0;(e.options.anchor||"left")==="right"?s.style.right=i?i*this._renderService.dimensions.css.cell.width+"px":"":s.style.left=i?i*this._renderService.dimensions.css.cell.width+"px":""}_removeDecoration(e){var s;(s=this._decorationElements.get(e))===null||s===void 0||s.remove(),this._decorationElements.delete(e),e.dispose()}};r.BufferDecorationRenderer=_=l([u(1,p.IBufferService),u(2,p.IDecorationService),u(3,d.IRenderService)],_)},5871:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ColorZoneStore=void 0,r.ColorZoneStore=class{constructor(){this._zones=[],this._zonePool=[],this._zonePoolIndex=0,this._linePadding={full:0,left:0,center:0,right:0}}get zones(){return this._zonePool.length=Math.min(this._zonePool.length,this._zones.length),this._zones}clear(){this._zones.length=0,this._zonePoolIndex=0}addDecoration(a){if(a.options.overviewRulerOptions){for(const l of this._zones)if(l.color===a.options.overviewRulerOptions.color&&l.position===a.options.overviewRulerOptions.position){if(this._lineIntersectsZone(l,a.marker.line))return;if(this._lineAdjacentToZone(l,a.marker.line,a.options.overviewRulerOptions.position))return void this._addLineToZone(l,a.marker.line)}if(this._zonePoolIndex=a.startBufferLine&&l<=a.endBufferLine}_lineAdjacentToZone(a,l,u){return l>=a.startBufferLine-this._linePadding[u||"full"]&&l<=a.endBufferLine+this._linePadding[u||"full"]}_addLineToZone(a,l){a.startBufferLine=Math.min(a.startBufferLine,l),a.endBufferLine=Math.max(a.endBufferLine,l)}}},5744:function(I,r,a){var l=this&&this.__decorate||function(o,c,v,m){var h,g=arguments.length,b=g<3?c:m===null?m=Object.getOwnPropertyDescriptor(c,v):m;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")b=Reflect.decorate(o,c,v,m);else for(var L=o.length-1;L>=0;L--)(h=o[L])&&(b=(g<3?h(b):g>3?h(c,v,b):h(c,v))||b);return g>3&&b&&Object.defineProperty(c,v,b),b},u=this&&this.__param||function(o,c){return function(v,m){c(v,m,o)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OverviewRulerRenderer=void 0;const n=a(5871),d=a(3656),f=a(4725),p=a(844),_=a(2585),e={full:0,left:0,center:0,right:0},s={full:0,left:0,center:0,right:0},t={full:0,left:0,center:0,right:0};let i=r.OverviewRulerRenderer=class extends p.Disposable{get _width(){return this._optionsService.options.overviewRulerWidth||0}constructor(o,c,v,m,h,g,b){var L;super(),this._viewportElement=o,this._screenElement=c,this._bufferService=v,this._decorationService=m,this._renderService=h,this._optionsService=g,this._coreBrowseService=b,this._colorZoneStore=new n.ColorZoneStore,this._shouldUpdateDimensions=!0,this._shouldUpdateAnchor=!0,this._lastKnownBufferLength=0,this._canvas=document.createElement("canvas"),this._canvas.classList.add("xterm-decoration-overview-ruler"),this._refreshCanvasDimensions(),(L=this._viewportElement.parentElement)===null||L===void 0||L.insertBefore(this._canvas,this._viewportElement);const y=this._canvas.getContext("2d");if(!y)throw new Error("Ctx cannot be null");this._ctx=y,this._registerDecorationListeners(),this._registerBufferChangeListeners(),this._registerDimensionChangeListeners(),this.register((0,p.toDisposable)(()=>{var k;(k=this._canvas)===null||k===void 0||k.remove()}))}_registerDecorationListeners(){this.register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh(void 0,!0))),this.register(this._decorationService.onDecorationRemoved(()=>this._queueRefresh(void 0,!0)))}_registerBufferChangeListeners(){this.register(this._renderService.onRenderedViewportChange(()=>this._queueRefresh())),this.register(this._bufferService.buffers.onBufferActivate(()=>{this._canvas.style.display=this._bufferService.buffer===this._bufferService.buffers.alt?"none":"block"})),this.register(this._bufferService.onScroll(()=>{this._lastKnownBufferLength!==this._bufferService.buffers.normal.lines.length&&(this._refreshDrawHeightConstants(),this._refreshColorZonePadding())}))}_registerDimensionChangeListeners(){this.register(this._renderService.onRender(()=>{this._containerHeight&&this._containerHeight===this._screenElement.clientHeight||(this._queueRefresh(!0),this._containerHeight=this._screenElement.clientHeight)})),this.register(this._optionsService.onSpecificOptionChange("overviewRulerWidth",()=>this._queueRefresh(!0))),this.register((0,d.addDisposableDomListener)(this._coreBrowseService.window,"resize",()=>this._queueRefresh(!0))),this._queueRefresh(!0)}_refreshDrawConstants(){const o=Math.floor(this._canvas.width/3),c=Math.ceil(this._canvas.width/3);s.full=this._canvas.width,s.left=o,s.center=c,s.right=o,this._refreshDrawHeightConstants(),t.full=0,t.left=0,t.center=s.left,t.right=s.left+s.center}_refreshDrawHeightConstants(){e.full=Math.round(2*this._coreBrowseService.dpr);const o=this._canvas.height/this._bufferService.buffer.lines.length,c=Math.round(Math.max(Math.min(o,12),6)*this._coreBrowseService.dpr);e.left=c,e.center=c,e.right=c}_refreshColorZonePadding(){this._colorZoneStore.setPadding({full:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.full),left:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.left),center:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.center),right:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.right)}),this._lastKnownBufferLength=this._bufferService.buffers.normal.lines.length}_refreshCanvasDimensions(){this._canvas.style.width=`${this._width}px`,this._canvas.width=Math.round(this._width*this._coreBrowseService.dpr),this._canvas.style.height=`${this._screenElement.clientHeight}px`,this._canvas.height=Math.round(this._screenElement.clientHeight*this._coreBrowseService.dpr),this._refreshDrawConstants(),this._refreshColorZonePadding()}_refreshDecorations(){this._shouldUpdateDimensions&&this._refreshCanvasDimensions(),this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height),this._colorZoneStore.clear();for(const c of this._decorationService.decorations)this._colorZoneStore.addDecoration(c);this._ctx.lineWidth=1;const o=this._colorZoneStore.zones;for(const c of o)c.position!=="full"&&this._renderColorZone(c);for(const c of o)c.position==="full"&&this._renderColorZone(c);this._shouldUpdateDimensions=!1,this._shouldUpdateAnchor=!1}_renderColorZone(o){this._ctx.fillStyle=o.color,this._ctx.fillRect(t[o.position||"full"],Math.round((this._canvas.height-1)*(o.startBufferLine/this._bufferService.buffers.active.lines.length)-e[o.position||"full"]/2),s[o.position||"full"],Math.round((this._canvas.height-1)*((o.endBufferLine-o.startBufferLine)/this._bufferService.buffers.active.lines.length)+e[o.position||"full"]))}_queueRefresh(o,c){this._shouldUpdateDimensions=o||this._shouldUpdateDimensions,this._shouldUpdateAnchor=c||this._shouldUpdateAnchor,this._animationFrame===void 0&&(this._animationFrame=this._coreBrowseService.window.requestAnimationFrame(()=>{this._refreshDecorations(),this._animationFrame=void 0}))}};r.OverviewRulerRenderer=i=l([u(2,_.IBufferService),u(3,_.IDecorationService),u(4,f.IRenderService),u(5,_.IOptionsService),u(6,f.ICoreBrowserService)],i)},2950:function(I,r,a){var l=this&&this.__decorate||function(_,e,s,t){var i,o=arguments.length,c=o<3?e:t===null?t=Object.getOwnPropertyDescriptor(e,s):t;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(_,e,s,t);else for(var v=_.length-1;v>=0;v--)(i=_[v])&&(c=(o<3?i(c):o>3?i(e,s,c):i(e,s))||c);return o>3&&c&&Object.defineProperty(e,s,c),c},u=this&&this.__param||function(_,e){return function(s,t){e(s,t,_)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CompositionHelper=void 0;const n=a(4725),d=a(2585),f=a(2584);let p=r.CompositionHelper=class{get isComposing(){return this._isComposing}constructor(_,e,s,t,i,o){this._textarea=_,this._compositionView=e,this._bufferService=s,this._optionsService=t,this._coreService=i,this._renderService=o,this._isComposing=!1,this._isSendingComposition=!1,this._compositionPosition={start:0,end:0},this._dataAlreadySent=""}compositionstart(){this._isComposing=!0,this._compositionPosition.start=this._textarea.value.length,this._compositionView.textContent="",this._dataAlreadySent="",this._compositionView.classList.add("active")}compositionupdate(_){this._compositionView.textContent=_.data,this.updateCompositionElements(),setTimeout(()=>{this._compositionPosition.end=this._textarea.value.length},0)}compositionend(){this._finalizeComposition(!0)}keydown(_){if(this._isComposing||this._isSendingComposition){if(_.keyCode===229||_.keyCode===16||_.keyCode===17||_.keyCode===18)return!1;this._finalizeComposition(!1)}return _.keyCode!==229||(this._handleAnyTextareaChanges(),!1)}_finalizeComposition(_){if(this._compositionView.classList.remove("active"),this._isComposing=!1,_){const e={start:this._compositionPosition.start,end:this._compositionPosition.end};this._isSendingComposition=!0,setTimeout(()=>{if(this._isSendingComposition){let s;this._isSendingComposition=!1,e.start+=this._dataAlreadySent.length,s=this._isComposing?this._textarea.value.substring(e.start,e.end):this._textarea.value.substring(e.start),s.length>0&&this._coreService.triggerDataEvent(s,!0)}},0)}else{this._isSendingComposition=!1;const e=this._textarea.value.substring(this._compositionPosition.start,this._compositionPosition.end);this._coreService.triggerDataEvent(e,!0)}}_handleAnyTextareaChanges(){const _=this._textarea.value;setTimeout(()=>{if(!this._isComposing){const e=this._textarea.value,s=e.replace(_,"");this._dataAlreadySent=s,e.length>_.length?this._coreService.triggerDataEvent(s,!0):e.length<_.length?this._coreService.triggerDataEvent(`${f.C0.DEL}`,!0):e.length===_.length&&e!==_&&this._coreService.triggerDataEvent(e,!0)}},0)}updateCompositionElements(_){if(this._isComposing){if(this._bufferService.buffer.isCursorInViewport){const e=Math.min(this._bufferService.buffer.x,this._bufferService.cols-1),s=this._renderService.dimensions.css.cell.height,t=this._bufferService.buffer.y*this._renderService.dimensions.css.cell.height,i=e*this._renderService.dimensions.css.cell.width;this._compositionView.style.left=i+"px",this._compositionView.style.top=t+"px",this._compositionView.style.height=s+"px",this._compositionView.style.lineHeight=s+"px",this._compositionView.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._compositionView.style.fontSize=this._optionsService.rawOptions.fontSize+"px";const o=this._compositionView.getBoundingClientRect();this._textarea.style.left=i+"px",this._textarea.style.top=t+"px",this._textarea.style.width=Math.max(o.width,1)+"px",this._textarea.style.height=Math.max(o.height,1)+"px",this._textarea.style.lineHeight=o.height+"px"}_||setTimeout(()=>this.updateCompositionElements(!0),0)}}};r.CompositionHelper=p=l([u(2,d.IBufferService),u(3,d.IOptionsService),u(4,d.ICoreService),u(5,n.IRenderService)],p)},9806:(I,r)=>{function a(l,u,n){const d=n.getBoundingClientRect(),f=l.getComputedStyle(n),p=parseInt(f.getPropertyValue("padding-left")),_=parseInt(f.getPropertyValue("padding-top"));return[u.clientX-d.left-p,u.clientY-d.top-_]}Object.defineProperty(r,"__esModule",{value:!0}),r.getCoords=r.getCoordsRelativeToElement=void 0,r.getCoordsRelativeToElement=a,r.getCoords=function(l,u,n,d,f,p,_,e,s){if(!p)return;const t=a(l,u,n);return t?(t[0]=Math.ceil((t[0]+(s?_/2:0))/_),t[1]=Math.ceil(t[1]/e),t[0]=Math.min(Math.max(t[0],1),d+(s?1:0)),t[1]=Math.min(Math.max(t[1],1),f),t):void 0}},9504:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.moveToCellSequence=void 0;const l=a(2584);function u(e,s,t,i){const o=e-n(e,t),c=s-n(s,t),v=Math.abs(o-c)-function(m,h,g){let b=0;const L=m-n(m,g),y=h-n(h,g);for(let k=0;k=0&&es?"A":"B"}function f(e,s,t,i,o,c){let v=e,m=s,h="";for(;v!==t||m!==i;)v+=o?1:-1,o&&v>c.cols-1?(h+=c.buffer.translateBufferLineToString(m,!1,e,v),v=0,e=0,m++):!o&&v<0&&(h+=c.buffer.translateBufferLineToString(m,!1,0,e+1),v=c.cols-1,e=v,m--);return h+c.buffer.translateBufferLineToString(m,!1,e,v)}function p(e,s){const t=s?"O":"[";return l.C0.ESC+t+e}function _(e,s){e=Math.floor(e);let t="";for(let i=0;i0?L-n(L,y):g;const T=L,O=function(M,C,w,E,D,P){let H;return H=u(w,E,D,P).length>0?E-n(E,D):C,M=w&&He?"D":"C",_(Math.abs(o-e),p(v,i));v=c>s?"D":"C";const m=Math.abs(c-s);return _(function(h,g){return g.cols-h}(c>s?e:o,t)+(m-1)*t.cols+1+((c>s?o:e)-1),p(v,i))}},1296:function(I,r,a){var l=this&&this.__decorate||function(y,k,x,T){var O,M=arguments.length,C=M<3?k:T===null?T=Object.getOwnPropertyDescriptor(k,x):T;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")C=Reflect.decorate(y,k,x,T);else for(var w=y.length-1;w>=0;w--)(O=y[w])&&(C=(M<3?O(C):M>3?O(k,x,C):O(k,x))||C);return M>3&&C&&Object.defineProperty(k,x,C),C},u=this&&this.__param||function(y,k){return function(x,T){k(x,T,y)}};Object.defineProperty(r,"__esModule",{value:!0}),r.DomRenderer=void 0;const n=a(3787),d=a(2550),f=a(2223),p=a(6171),_=a(4725),e=a(8055),s=a(8460),t=a(844),i=a(2585),o="xterm-dom-renderer-owner-",c="xterm-rows",v="xterm-fg-",m="xterm-bg-",h="xterm-focus",g="xterm-selection";let b=1,L=r.DomRenderer=class extends t.Disposable{constructor(y,k,x,T,O,M,C,w,E,D){super(),this._element=y,this._screenElement=k,this._viewportElement=x,this._linkifier2=T,this._charSizeService=M,this._optionsService=C,this._bufferService=w,this._coreBrowserService=E,this._themeService=D,this._terminalClass=b++,this._rowElements=[],this.onRequestRedraw=this.register(new s.EventEmitter).event,this._rowContainer=document.createElement("div"),this._rowContainer.classList.add(c),this._rowContainer.style.lineHeight="normal",this._rowContainer.setAttribute("aria-hidden","true"),this._refreshRowElements(this._bufferService.cols,this._bufferService.rows),this._selectionContainer=document.createElement("div"),this._selectionContainer.classList.add(g),this._selectionContainer.setAttribute("aria-hidden","true"),this.dimensions=(0,p.createRenderDimensions)(),this._updateDimensions(),this.register(this._optionsService.onOptionChange(()=>this._handleOptionsChanged())),this.register(this._themeService.onChangeColors(P=>this._injectCss(P))),this._injectCss(this._themeService.colors),this._rowFactory=O.createInstance(n.DomRendererRowFactory,document),this._element.classList.add(o+this._terminalClass),this._screenElement.appendChild(this._rowContainer),this._screenElement.appendChild(this._selectionContainer),this.register(this._linkifier2.onShowLinkUnderline(P=>this._handleLinkHover(P))),this.register(this._linkifier2.onHideLinkUnderline(P=>this._handleLinkLeave(P))),this.register((0,t.toDisposable)(()=>{this._element.classList.remove(o+this._terminalClass),this._rowContainer.remove(),this._selectionContainer.remove(),this._widthCache.dispose(),this._themeStyleElement.remove(),this._dimensionsStyleElement.remove()})),this._widthCache=new d.WidthCache(document),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}_updateDimensions(){const y=this._coreBrowserService.dpr;this.dimensions.device.char.width=this._charSizeService.width*y,this.dimensions.device.char.height=Math.ceil(this._charSizeService.height*y),this.dimensions.device.cell.width=this.dimensions.device.char.width+Math.round(this._optionsService.rawOptions.letterSpacing),this.dimensions.device.cell.height=Math.floor(this.dimensions.device.char.height*this._optionsService.rawOptions.lineHeight),this.dimensions.device.char.left=0,this.dimensions.device.char.top=0,this.dimensions.device.canvas.width=this.dimensions.device.cell.width*this._bufferService.cols,this.dimensions.device.canvas.height=this.dimensions.device.cell.height*this._bufferService.rows,this.dimensions.css.canvas.width=Math.round(this.dimensions.device.canvas.width/y),this.dimensions.css.canvas.height=Math.round(this.dimensions.device.canvas.height/y),this.dimensions.css.cell.width=this.dimensions.css.canvas.width/this._bufferService.cols,this.dimensions.css.cell.height=this.dimensions.css.canvas.height/this._bufferService.rows;for(const x of this._rowElements)x.style.width=`${this.dimensions.css.canvas.width}px`,x.style.height=`${this.dimensions.css.cell.height}px`,x.style.lineHeight=`${this.dimensions.css.cell.height}px`,x.style.overflow="hidden";this._dimensionsStyleElement||(this._dimensionsStyleElement=document.createElement("style"),this._screenElement.appendChild(this._dimensionsStyleElement));const k=`${this._terminalSelector} .${c} span { display: inline-block; height: 100%; vertical-align: top;}`;this._dimensionsStyleElement.textContent=k,this._selectionContainer.style.height=this._viewportElement.style.height,this._screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._screenElement.style.height=`${this.dimensions.css.canvas.height}px`}_injectCss(y){this._themeStyleElement||(this._themeStyleElement=document.createElement("style"),this._screenElement.appendChild(this._themeStyleElement));let k=`${this._terminalSelector} .${c} { color: ${y.foreground.css}; font-family: ${this._optionsService.rawOptions.fontFamily}; font-size: ${this._optionsService.rawOptions.fontSize}px; font-kerning: none; white-space: pre}`;k+=`${this._terminalSelector} .${c} .xterm-dim { color: ${e.color.multiplyOpacity(y.foreground,.5).css};}`,k+=`${this._terminalSelector} span:not(.xterm-bold) { font-weight: ${this._optionsService.rawOptions.fontWeight};}${this._terminalSelector} span.xterm-bold { font-weight: ${this._optionsService.rawOptions.fontWeightBold};}${this._terminalSelector} span.xterm-italic { font-style: italic;}`,k+="@keyframes blink_box_shadow_"+this._terminalClass+" { 50% { border-bottom-style: hidden; }}",k+="@keyframes blink_block_"+this._terminalClass+` { 0% { background-color: ${y.cursor.css}; color: ${y.cursorAccent.css}; } 50% { background-color: inherit; color: ${y.cursor.css}; }}`,k+=`${this._terminalSelector} .${c}.${h} .xterm-cursor.xterm-cursor-blink:not(.xterm-cursor-block) { animation: blink_box_shadow_`+this._terminalClass+` 1s step-end infinite;}${this._terminalSelector} .${c}.${h} .xterm-cursor.xterm-cursor-blink.xterm-cursor-block { animation: blink_block_`+this._terminalClass+` 1s step-end infinite;}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-block { background-color: ${y.cursor.css}; color: ${y.cursorAccent.css};}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-outline { outline: 1px solid ${y.cursor.css}; outline-offset: -1px;}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-bar { box-shadow: ${this._optionsService.rawOptions.cursorWidth}px 0 0 ${y.cursor.css} inset;}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-underline { border-bottom: 1px ${y.cursor.css}; border-bottom-style: solid; height: calc(100% - 1px);}`,k+=`${this._terminalSelector} .${g} { position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none;}${this._terminalSelector}.focus .${g} div { position: absolute; background-color: ${y.selectionBackgroundOpaque.css};}${this._terminalSelector} .${g} div { position: absolute; background-color: ${y.selectionInactiveBackgroundOpaque.css};}`;for(const[x,T]of y.ansi.entries())k+=`${this._terminalSelector} .${v}${x} { color: ${T.css}; }${this._terminalSelector} .${v}${x}.xterm-dim { color: ${e.color.multiplyOpacity(T,.5).css}; }${this._terminalSelector} .${m}${x} { background-color: ${T.css}; }`;k+=`${this._terminalSelector} .${v}${f.INVERTED_DEFAULT_COLOR} { color: ${e.color.opaque(y.background).css}; }${this._terminalSelector} .${v}${f.INVERTED_DEFAULT_COLOR}.xterm-dim { color: ${e.color.multiplyOpacity(e.color.opaque(y.background),.5).css}; }${this._terminalSelector} .${m}${f.INVERTED_DEFAULT_COLOR} { background-color: ${y.foreground.css}; }`,this._themeStyleElement.textContent=k}_setDefaultSpacing(){const y=this.dimensions.css.cell.width-this._widthCache.get("W",!1,!1);this._rowContainer.style.letterSpacing=`${y}px`,this._rowFactory.defaultSpacing=y}handleDevicePixelRatioChange(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}_refreshRowElements(y,k){for(let x=this._rowElements.length;x<=k;x++){const T=document.createElement("div");this._rowContainer.appendChild(T),this._rowElements.push(T)}for(;this._rowElements.length>k;)this._rowContainer.removeChild(this._rowElements.pop())}handleResize(y,k){this._refreshRowElements(y,k),this._updateDimensions()}handleCharSizeChanged(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}handleBlur(){this._rowContainer.classList.remove(h)}handleFocus(){this._rowContainer.classList.add(h),this.renderRows(this._bufferService.buffer.y,this._bufferService.buffer.y)}handleSelectionChanged(y,k,x){if(this._selectionContainer.replaceChildren(),this._rowFactory.handleSelectionChanged(y,k,x),this.renderRows(0,this._bufferService.rows-1),!y||!k)return;const T=y[1]-this._bufferService.buffer.ydisp,O=k[1]-this._bufferService.buffer.ydisp,M=Math.max(T,0),C=Math.min(O,this._bufferService.rows-1);if(M>=this._bufferService.rows||C<0)return;const w=document.createDocumentFragment();if(x){const E=y[0]>k[0];w.appendChild(this._createSelectionElement(M,E?k[0]:y[0],E?y[0]:k[0],C-M+1))}else{const E=T===M?y[0]:0,D=M===O?k[0]:this._bufferService.cols;w.appendChild(this._createSelectionElement(M,E,D));const P=C-M-1;if(w.appendChild(this._createSelectionElement(M+1,0,this._bufferService.cols,P)),M!==C){const H=O===C?k[0]:this._bufferService.cols;w.appendChild(this._createSelectionElement(C,0,H))}}this._selectionContainer.appendChild(w)}_createSelectionElement(y,k,x,T=1){const O=document.createElement("div");return O.style.height=T*this.dimensions.css.cell.height+"px",O.style.top=y*this.dimensions.css.cell.height+"px",O.style.left=k*this.dimensions.css.cell.width+"px",O.style.width=this.dimensions.css.cell.width*(x-k)+"px",O}handleCursorMove(){}_handleOptionsChanged(){this._updateDimensions(),this._injectCss(this._themeService.colors),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}clear(){for(const y of this._rowElements)y.replaceChildren()}renderRows(y,k){const x=this._bufferService.buffer,T=x.ybase+x.y,O=Math.min(x.x,this._bufferService.cols-1),M=this._optionsService.rawOptions.cursorBlink,C=this._optionsService.rawOptions.cursorStyle,w=this._optionsService.rawOptions.cursorInactiveStyle;for(let E=y;E<=k;E++){const D=E+x.ydisp,P=this._rowElements[E],H=x.lines.get(D);if(!P||!H)break;P.replaceChildren(...this._rowFactory.createRow(H,D,D===T,C,w,O,M,this.dimensions.css.cell.width,this._widthCache,-1,-1))}}get _terminalSelector(){return`.${o}${this._terminalClass}`}_handleLinkHover(y){this._setCellUnderline(y.x1,y.x2,y.y1,y.y2,y.cols,!0)}_handleLinkLeave(y){this._setCellUnderline(y.x1,y.x2,y.y1,y.y2,y.cols,!1)}_setCellUnderline(y,k,x,T,O,M){x<0&&(y=0),T<0&&(k=0);const C=this._bufferService.rows-1;x=Math.max(Math.min(x,C),0),T=Math.max(Math.min(T,C),0),O=Math.min(O,this._bufferService.cols);const w=this._bufferService.buffer,E=w.ybase+w.y,D=Math.min(w.x,O-1),P=this._optionsService.rawOptions.cursorBlink,H=this._optionsService.rawOptions.cursorStyle,U=this._optionsService.rawOptions.cursorInactiveStyle;for(let W=x;W<=T;++W){const z=W+w.ydisp,S=this._rowElements[W],R=w.lines.get(z);if(!S||!R)break;S.replaceChildren(...this._rowFactory.createRow(R,z,z===E,H,U,D,P,this.dimensions.css.cell.width,this._widthCache,M?W===x?y:0:-1,M?(W===T?k:O)-1:-1))}}};r.DomRenderer=L=l([u(4,i.IInstantiationService),u(5,_.ICharSizeService),u(6,i.IOptionsService),u(7,i.IBufferService),u(8,_.ICoreBrowserService),u(9,_.IThemeService)],L)},3787:function(I,r,a){var l=this&&this.__decorate||function(v,m,h,g){var b,L=arguments.length,y=L<3?m:g===null?g=Object.getOwnPropertyDescriptor(m,h):g;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")y=Reflect.decorate(v,m,h,g);else for(var k=v.length-1;k>=0;k--)(b=v[k])&&(y=(L<3?b(y):L>3?b(m,h,y):b(m,h))||y);return L>3&&y&&Object.defineProperty(m,h,y),y},u=this&&this.__param||function(v,m){return function(h,g){m(h,g,v)}};Object.defineProperty(r,"__esModule",{value:!0}),r.DomRendererRowFactory=void 0;const n=a(2223),d=a(643),f=a(511),p=a(2585),_=a(8055),e=a(4725),s=a(4269),t=a(6171),i=a(3734);let o=r.DomRendererRowFactory=class{constructor(v,m,h,g,b,L,y){this._document=v,this._characterJoinerService=m,this._optionsService=h,this._coreBrowserService=g,this._coreService=b,this._decorationService=L,this._themeService=y,this._workCell=new f.CellData,this._columnSelectMode=!1,this.defaultSpacing=0}handleSelectionChanged(v,m,h){this._selectionStart=v,this._selectionEnd=m,this._columnSelectMode=h}createRow(v,m,h,g,b,L,y,k,x,T,O){const M=[],C=this._characterJoinerService.getJoinedCharacters(m),w=this._themeService.colors;let E,D=v.getNoBgTrimmedLength();h&&D0&&j===C[0][0]){V=!0;const K=C.shift();$=new s.JoinedCellData(this._workCell,v.translateToString(!0,K[0],K[1]),K[1]-K[0]),Q=K[1]-1,q=$.getWidth()}const te=this._isCellInSelection(j,m),he=h&&j===L,ce=F&&j>=T&&j<=O;let le=!1;this._decorationService.forEachDecorationAtCell(j,m,void 0,K=>{le=!0});let oe=$.getChars()||d.WHITESPACE_CELL_CHAR;if(oe===" "&&($.isUnderline()||$.isOverline())&&(oe=" "),A=q*k-x.get(oe,$.isBold(),$.isItalic()),E){if(P&&(te&&B||!te&&!B&&$.bg===U)&&(te&&B&&w.selectionForeground||$.fg===W)&&$.extended.ext===z&&ce===S&&A===R&&!he&&!V&&!le){H+=oe,P++;continue}P&&(E.textContent=H),E=this._document.createElement("span"),P=0,H=""}else E=this._document.createElement("span");if(U=$.bg,W=$.fg,z=$.extended.ext,S=ce,R=A,B=te,V&&L>=j&&L<=Q&&(L=j),!this._coreService.isCursorHidden&&he){if(N.push("xterm-cursor"),this._coreBrowserService.isFocused)y&&N.push("xterm-cursor-blink"),N.push(g==="bar"?"xterm-cursor-bar":g==="underline"?"xterm-cursor-underline":"xterm-cursor-block");else if(b)switch(b){case"outline":N.push("xterm-cursor-outline");break;case"block":N.push("xterm-cursor-block");break;case"bar":N.push("xterm-cursor-bar");break;case"underline":N.push("xterm-cursor-underline")}}if($.isBold()&&N.push("xterm-bold"),$.isItalic()&&N.push("xterm-italic"),$.isDim()&&N.push("xterm-dim"),H=$.isInvisible()?d.WHITESPACE_CELL_CHAR:$.getChars()||d.WHITESPACE_CELL_CHAR,$.isUnderline()&&(N.push(`xterm-underline-${$.extended.underlineStyle}`),H===" "&&(H=" "),!$.isUnderlineColorDefault()))if($.isUnderlineColorRGB())E.style.textDecorationColor=`rgb(${i.AttributeData.toColorRGB($.getUnderlineColor()).join(",")})`;else{let K=$.getUnderlineColor();this._optionsService.rawOptions.drawBoldTextInBrightColors&&$.isBold()&&K<8&&(K+=8),E.style.textDecorationColor=w.ansi[K].css}$.isOverline()&&(N.push("xterm-overline"),H===" "&&(H=" ")),$.isStrikethrough()&&N.push("xterm-strikethrough"),ce&&(E.style.textDecoration="underline");let G=$.getFgColor(),ie=$.getFgColorMode(),X=$.getBgColor(),se=$.getBgColorMode();const de=!!$.isInverse();if(de){const K=G;G=X,X=K;const pe=ie;ie=se,se=pe}let Y,_e,Z,re=!1;switch(this._decorationService.forEachDecorationAtCell(j,m,void 0,K=>{K.options.layer!=="top"&&re||(K.backgroundColorRGB&&(se=50331648,X=K.backgroundColorRGB.rgba>>8&16777215,Y=K.backgroundColorRGB),K.foregroundColorRGB&&(ie=50331648,G=K.foregroundColorRGB.rgba>>8&16777215,_e=K.foregroundColorRGB),re=K.options.layer==="top")}),!re&&te&&(Y=this._coreBrowserService.isFocused?w.selectionBackgroundOpaque:w.selectionInactiveBackgroundOpaque,X=Y.rgba>>8&16777215,se=50331648,re=!0,w.selectionForeground&&(ie=50331648,G=w.selectionForeground.rgba>>8&16777215,_e=w.selectionForeground)),re&&N.push("xterm-decoration-top"),se){case 16777216:case 33554432:Z=w.ansi[X],N.push(`xterm-bg-${X}`);break;case 50331648:Z=_.rgba.toColor(X>>16,X>>8&255,255&X),this._addStyle(E,`background-color:#${c((X>>>0).toString(16),"0",6)}`);break;default:de?(Z=w.foreground,N.push(`xterm-bg-${n.INVERTED_DEFAULT_COLOR}`)):Z=w.background}switch(Y||$.isDim()&&(Y=_.color.multiplyOpacity(Z,.5)),ie){case 16777216:case 33554432:$.isBold()&&G<8&&this._optionsService.rawOptions.drawBoldTextInBrightColors&&(G+=8),this._applyMinimumContrast(E,Z,w.ansi[G],$,Y,void 0)||N.push(`xterm-fg-${G}`);break;case 50331648:const K=_.rgba.toColor(G>>16&255,G>>8&255,255&G);this._applyMinimumContrast(E,Z,K,$,Y,_e)||this._addStyle(E,`color:#${c(G.toString(16),"0",6)}`);break;default:this._applyMinimumContrast(E,Z,w.foreground,$,Y,void 0)||de&&N.push(`xterm-fg-${n.INVERTED_DEFAULT_COLOR}`)}N.length&&(E.className=N.join(" "),N.length=0),he||V||le?E.textContent=H:P++,A!==this.defaultSpacing&&(E.style.letterSpacing=`${A}px`),M.push(E),j=Q}return E&&P&&(E.textContent=H),M}_applyMinimumContrast(v,m,h,g,b,L){if(this._optionsService.rawOptions.minimumContrastRatio===1||(0,t.excludeFromContrastRatioDemands)(g.getCode()))return!1;const y=this._getContrastCache(g);let k;if(b||L||(k=y.getColor(m.rgba,h.rgba)),k===void 0){const x=this._optionsService.rawOptions.minimumContrastRatio/(g.isDim()?2:1);k=_.color.ensureContrastRatio(b||m,L||h,x),y.setColor((b||m).rgba,(L||h).rgba,k??null)}return!!k&&(this._addStyle(v,`color:${k.css}`),!0)}_getContrastCache(v){return v.isDim()?this._themeService.colors.halfContrastCache:this._themeService.colors.contrastCache}_addStyle(v,m){v.setAttribute("style",`${v.getAttribute("style")||""}${m};`)}_isCellInSelection(v,m){const h=this._selectionStart,g=this._selectionEnd;return!(!h||!g)&&(this._columnSelectMode?h[0]<=g[0]?v>=h[0]&&m>=h[1]&&v=h[1]&&v>=g[0]&&m<=g[1]:m>h[1]&&m=h[0]&&v=h[0])}};function c(v,m,h){for(;v.length{Object.defineProperty(r,"__esModule",{value:!0}),r.WidthCache=void 0,r.WidthCache=class{constructor(a){this._flat=new Float32Array(256),this._font="",this._fontSize=0,this._weight="normal",this._weightBold="bold",this._measureElements=[],this._container=a.createElement("div"),this._container.style.position="absolute",this._container.style.top="-50000px",this._container.style.width="50000px",this._container.style.whiteSpace="pre",this._container.style.fontKerning="none";const l=a.createElement("span"),u=a.createElement("span");u.style.fontWeight="bold";const n=a.createElement("span");n.style.fontStyle="italic";const d=a.createElement("span");d.style.fontWeight="bold",d.style.fontStyle="italic",this._measureElements=[l,u,n,d],this._container.appendChild(l),this._container.appendChild(u),this._container.appendChild(n),this._container.appendChild(d),a.body.appendChild(this._container),this.clear()}dispose(){this._container.remove(),this._measureElements.length=0,this._holey=void 0}clear(){this._flat.fill(-9999),this._holey=new Map}setFont(a,l,u,n){a===this._font&&l===this._fontSize&&u===this._weight&&n===this._weightBold||(this._font=a,this._fontSize=l,this._weight=u,this._weightBold=n,this._container.style.fontFamily=this._font,this._container.style.fontSize=`${this._fontSize}px`,this._measureElements[0].style.fontWeight=`${u}`,this._measureElements[1].style.fontWeight=`${n}`,this._measureElements[2].style.fontWeight=`${u}`,this._measureElements[3].style.fontWeight=`${n}`,this.clear())}get(a,l,u){let n=0;if(!l&&!u&&a.length===1&&(n=a.charCodeAt(0))<256)return this._flat[n]!==-9999?this._flat[n]:this._flat[n]=this._measure(a,0);let d=a;l&&(d+="B"),u&&(d+="I");let f=this._holey.get(d);if(f===void 0){let p=0;l&&(p|=1),u&&(p|=2),f=this._measure(a,p),this._holey.set(d,f)}return f}_measure(a,l){const u=this._measureElements[l];return u.textContent=a.repeat(32),u.offsetWidth/32}}},2223:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.TEXT_BASELINE=r.DIM_OPACITY=r.INVERTED_DEFAULT_COLOR=void 0;const l=a(6114);r.INVERTED_DEFAULT_COLOR=257,r.DIM_OPACITY=.5,r.TEXT_BASELINE=l.isFirefox||l.isLegacyEdge?"bottom":"ideographic"},6171:(I,r)=>{function a(l){return 57508<=l&&l<=57558}Object.defineProperty(r,"__esModule",{value:!0}),r.createRenderDimensions=r.excludeFromContrastRatioDemands=r.isRestrictedPowerlineGlyph=r.isPowerlineGlyph=r.throwIfFalsy=void 0,r.throwIfFalsy=function(l){if(!l)throw new Error("value must not be falsy");return l},r.isPowerlineGlyph=a,r.isRestrictedPowerlineGlyph=function(l){return 57520<=l&&l<=57527},r.excludeFromContrastRatioDemands=function(l){return a(l)||function(u){return 9472<=u&&u<=9631}(l)},r.createRenderDimensions=function(){return{css:{canvas:{width:0,height:0},cell:{width:0,height:0}},device:{canvas:{width:0,height:0},cell:{width:0,height:0},char:{width:0,height:0,left:0,top:0}}}}},456:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.SelectionModel=void 0,r.SelectionModel=class{constructor(a){this._bufferService=a,this.isSelectAllActive=!1,this.selectionStartLength=0}clearSelection(){this.selectionStart=void 0,this.selectionEnd=void 0,this.isSelectAllActive=!1,this.selectionStartLength=0}get finalSelectionStart(){return this.isSelectAllActive?[0,0]:this.selectionEnd&&this.selectionStart&&this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart}get finalSelectionEnd(){if(this.isSelectAllActive)return[this._bufferService.cols,this._bufferService.buffer.ybase+this._bufferService.rows-1];if(this.selectionStart){if(!this.selectionEnd||this.areSelectionValuesReversed()){const a=this.selectionStart[0]+this.selectionStartLength;return a>this._bufferService.cols?a%this._bufferService.cols==0?[this._bufferService.cols,this.selectionStart[1]+Math.floor(a/this._bufferService.cols)-1]:[a%this._bufferService.cols,this.selectionStart[1]+Math.floor(a/this._bufferService.cols)]:[a,this.selectionStart[1]]}if(this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]){const a=this.selectionStart[0]+this.selectionStartLength;return a>this._bufferService.cols?[a%this._bufferService.cols,this.selectionStart[1]+Math.floor(a/this._bufferService.cols)]:[Math.max(a,this.selectionEnd[0]),this.selectionEnd[1]]}return this.selectionEnd}}areSelectionValuesReversed(){const a=this.selectionStart,l=this.selectionEnd;return!(!a||!l)&&(a[1]>l[1]||a[1]===l[1]&&a[0]>l[0])}handleTrim(a){return this.selectionStart&&(this.selectionStart[1]-=a),this.selectionEnd&&(this.selectionEnd[1]-=a),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)}}},428:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CharSizeService=void 0;const n=a(2585),d=a(8460),f=a(844);let p=r.CharSizeService=class extends f.Disposable{get hasValidSize(){return this.width>0&&this.height>0}constructor(e,s,t){super(),this._optionsService=t,this.width=0,this.height=0,this._onCharSizeChange=this.register(new d.EventEmitter),this.onCharSizeChange=this._onCharSizeChange.event,this._measureStrategy=new _(e,s,this._optionsService),this.register(this._optionsService.onMultipleOptionChange(["fontFamily","fontSize"],()=>this.measure()))}measure(){const e=this._measureStrategy.measure();e.width===this.width&&e.height===this.height||(this.width=e.width,this.height=e.height,this._onCharSizeChange.fire())}};r.CharSizeService=p=l([u(2,n.IOptionsService)],p);class _{constructor(s,t,i){this._document=s,this._parentElement=t,this._optionsService=i,this._result={width:0,height:0},this._measureElement=this._document.createElement("span"),this._measureElement.classList.add("xterm-char-measure-element"),this._measureElement.textContent="W".repeat(32),this._measureElement.setAttribute("aria-hidden","true"),this._measureElement.style.whiteSpace="pre",this._measureElement.style.fontKerning="none",this._parentElement.appendChild(this._measureElement)}measure(){this._measureElement.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._measureElement.style.fontSize=`${this._optionsService.rawOptions.fontSize}px`;const s={height:Number(this._measureElement.offsetHeight),width:Number(this._measureElement.offsetWidth)};return s.width!==0&&s.height!==0&&(this._result.width=s.width/32,this._result.height=Math.ceil(s.height)),this._result}}},4269:function(I,r,a){var l=this&&this.__decorate||function(s,t,i,o){var c,v=arguments.length,m=v<3?t:o===null?o=Object.getOwnPropertyDescriptor(t,i):o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")m=Reflect.decorate(s,t,i,o);else for(var h=s.length-1;h>=0;h--)(c=s[h])&&(m=(v<3?c(m):v>3?c(t,i,m):c(t,i))||m);return v>3&&m&&Object.defineProperty(t,i,m),m},u=this&&this.__param||function(s,t){return function(i,o){t(i,o,s)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CharacterJoinerService=r.JoinedCellData=void 0;const n=a(3734),d=a(643),f=a(511),p=a(2585);class _ extends n.AttributeData{constructor(t,i,o){super(),this.content=0,this.combinedData="",this.fg=t.fg,this.bg=t.bg,this.combinedData=i,this._width=o}isCombined(){return 2097152}getWidth(){return this._width}getChars(){return this.combinedData}getCode(){return 2097151}setFromCharData(t){throw new Error("not implemented")}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}r.JoinedCellData=_;let e=r.CharacterJoinerService=class ve{constructor(t){this._bufferService=t,this._characterJoiners=[],this._nextCharacterJoinerId=0,this._workCell=new f.CellData}register(t){const i={id:this._nextCharacterJoinerId++,handler:t};return this._characterJoiners.push(i),i.id}deregister(t){for(let i=0;i1){const y=this._getJoinedRanges(c,h,m,i,v);for(let k=0;k1){const L=this._getJoinedRanges(c,h,m,i,v);for(let y=0;y{Object.defineProperty(r,"__esModule",{value:!0}),r.CoreBrowserService=void 0,r.CoreBrowserService=class{constructor(a,l){this._textarea=a,this.window=l,this._isFocused=!1,this._cachedIsFocused=void 0,this._textarea.addEventListener("focus",()=>this._isFocused=!0),this._textarea.addEventListener("blur",()=>this._isFocused=!1)}get dpr(){return this.window.devicePixelRatio}get isFocused(){return this._cachedIsFocused===void 0&&(this._cachedIsFocused=this._isFocused&&this._textarea.ownerDocument.hasFocus(),queueMicrotask(()=>this._cachedIsFocused=void 0)),this._cachedIsFocused}}},8934:function(I,r,a){var l=this&&this.__decorate||function(p,_,e,s){var t,i=arguments.length,o=i<3?_:s===null?s=Object.getOwnPropertyDescriptor(_,e):s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(p,_,e,s);else for(var c=p.length-1;c>=0;c--)(t=p[c])&&(o=(i<3?t(o):i>3?t(_,e,o):t(_,e))||o);return i>3&&o&&Object.defineProperty(_,e,o),o},u=this&&this.__param||function(p,_){return function(e,s){_(e,s,p)}};Object.defineProperty(r,"__esModule",{value:!0}),r.MouseService=void 0;const n=a(4725),d=a(9806);let f=r.MouseService=class{constructor(p,_){this._renderService=p,this._charSizeService=_}getCoords(p,_,e,s,t){return(0,d.getCoords)(window,p,_,e,s,this._charSizeService.hasValidSize,this._renderService.dimensions.css.cell.width,this._renderService.dimensions.css.cell.height,t)}getMouseReportCoords(p,_){const e=(0,d.getCoordsRelativeToElement)(window,p,_);if(this._charSizeService.hasValidSize)return e[0]=Math.min(Math.max(e[0],0),this._renderService.dimensions.css.canvas.width-1),e[1]=Math.min(Math.max(e[1],0),this._renderService.dimensions.css.canvas.height-1),{col:Math.floor(e[0]/this._renderService.dimensions.css.cell.width),row:Math.floor(e[1]/this._renderService.dimensions.css.cell.height),x:Math.floor(e[0]),y:Math.floor(e[1])}}};r.MouseService=f=l([u(0,n.IRenderService),u(1,n.ICharSizeService)],f)},3230:function(I,r,a){var l=this&&this.__decorate||function(o,c,v,m){var h,g=arguments.length,b=g<3?c:m===null?m=Object.getOwnPropertyDescriptor(c,v):m;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")b=Reflect.decorate(o,c,v,m);else for(var L=o.length-1;L>=0;L--)(h=o[L])&&(b=(g<3?h(b):g>3?h(c,v,b):h(c,v))||b);return g>3&&b&&Object.defineProperty(c,v,b),b},u=this&&this.__param||function(o,c){return function(v,m){c(v,m,o)}};Object.defineProperty(r,"__esModule",{value:!0}),r.RenderService=void 0;const n=a(3656),d=a(6193),f=a(5596),p=a(4725),_=a(8460),e=a(844),s=a(7226),t=a(2585);let i=r.RenderService=class extends e.Disposable{get dimensions(){return this._renderer.value.dimensions}constructor(o,c,v,m,h,g,b,L){if(super(),this._rowCount=o,this._charSizeService=m,this._renderer=this.register(new e.MutableDisposable),this._pausedResizeTask=new s.DebouncedIdleTask,this._isPaused=!1,this._needsFullRefresh=!1,this._isNextRenderRedrawOnly=!0,this._needsSelectionRefresh=!1,this._canvasWidth=0,this._canvasHeight=0,this._selectionState={start:void 0,end:void 0,columnSelectMode:!1},this._onDimensionsChange=this.register(new _.EventEmitter),this.onDimensionsChange=this._onDimensionsChange.event,this._onRenderedViewportChange=this.register(new _.EventEmitter),this.onRenderedViewportChange=this._onRenderedViewportChange.event,this._onRender=this.register(new _.EventEmitter),this.onRender=this._onRender.event,this._onRefreshRequest=this.register(new _.EventEmitter),this.onRefreshRequest=this._onRefreshRequest.event,this._renderDebouncer=new d.RenderDebouncer(b.window,(y,k)=>this._renderRows(y,k)),this.register(this._renderDebouncer),this._screenDprMonitor=new f.ScreenDprMonitor(b.window),this._screenDprMonitor.setListener(()=>this.handleDevicePixelRatioChange()),this.register(this._screenDprMonitor),this.register(g.onResize(()=>this._fullRefresh())),this.register(g.buffers.onBufferActivate(()=>{var y;return(y=this._renderer.value)===null||y===void 0?void 0:y.clear()})),this.register(v.onOptionChange(()=>this._handleOptionsChanged())),this.register(this._charSizeService.onCharSizeChange(()=>this.handleCharSizeChanged())),this.register(h.onDecorationRegistered(()=>this._fullRefresh())),this.register(h.onDecorationRemoved(()=>this._fullRefresh())),this.register(v.onMultipleOptionChange(["customGlyphs","drawBoldTextInBrightColors","letterSpacing","lineHeight","fontFamily","fontSize","fontWeight","fontWeightBold","minimumContrastRatio"],()=>{this.clear(),this.handleResize(g.cols,g.rows),this._fullRefresh()})),this.register(v.onMultipleOptionChange(["cursorBlink","cursorStyle"],()=>this.refreshRows(g.buffer.y,g.buffer.y,!0))),this.register((0,n.addDisposableDomListener)(b.window,"resize",()=>this.handleDevicePixelRatioChange())),this.register(L.onChangeColors(()=>this._fullRefresh())),"IntersectionObserver"in b.window){const y=new b.window.IntersectionObserver(k=>this._handleIntersectionChange(k[k.length-1]),{threshold:0});y.observe(c),this.register({dispose:()=>y.disconnect()})}}_handleIntersectionChange(o){this._isPaused=o.isIntersecting===void 0?o.intersectionRatio===0:!o.isIntersecting,this._isPaused||this._charSizeService.hasValidSize||this._charSizeService.measure(),!this._isPaused&&this._needsFullRefresh&&(this._pausedResizeTask.flush(),this.refreshRows(0,this._rowCount-1),this._needsFullRefresh=!1)}refreshRows(o,c,v=!1){this._isPaused?this._needsFullRefresh=!0:(v||(this._isNextRenderRedrawOnly=!1),this._renderDebouncer.refresh(o,c,this._rowCount))}_renderRows(o,c){this._renderer.value&&(o=Math.min(o,this._rowCount-1),c=Math.min(c,this._rowCount-1),this._renderer.value.renderRows(o,c),this._needsSelectionRefresh&&(this._renderer.value.handleSelectionChanged(this._selectionState.start,this._selectionState.end,this._selectionState.columnSelectMode),this._needsSelectionRefresh=!1),this._isNextRenderRedrawOnly||this._onRenderedViewportChange.fire({start:o,end:c}),this._onRender.fire({start:o,end:c}),this._isNextRenderRedrawOnly=!0)}resize(o,c){this._rowCount=c,this._fireOnCanvasResize()}_handleOptionsChanged(){this._renderer.value&&(this.refreshRows(0,this._rowCount-1),this._fireOnCanvasResize())}_fireOnCanvasResize(){this._renderer.value&&(this._renderer.value.dimensions.css.canvas.width===this._canvasWidth&&this._renderer.value.dimensions.css.canvas.height===this._canvasHeight||this._onDimensionsChange.fire(this._renderer.value.dimensions))}hasRenderer(){return!!this._renderer.value}setRenderer(o){this._renderer.value=o,this._renderer.value.onRequestRedraw(c=>this.refreshRows(c.start,c.end,!0)),this._needsSelectionRefresh=!0,this._fullRefresh()}addRefreshCallback(o){return this._renderDebouncer.addRefreshCallback(o)}_fullRefresh(){this._isPaused?this._needsFullRefresh=!0:this.refreshRows(0,this._rowCount-1)}clearTextureAtlas(){var o,c;this._renderer.value&&((c=(o=this._renderer.value).clearTextureAtlas)===null||c===void 0||c.call(o),this._fullRefresh())}handleDevicePixelRatioChange(){this._charSizeService.measure(),this._renderer.value&&(this._renderer.value.handleDevicePixelRatioChange(),this.refreshRows(0,this._rowCount-1))}handleResize(o,c){this._renderer.value&&(this._isPaused?this._pausedResizeTask.set(()=>this._renderer.value.handleResize(o,c)):this._renderer.value.handleResize(o,c),this._fullRefresh())}handleCharSizeChanged(){var o;(o=this._renderer.value)===null||o===void 0||o.handleCharSizeChanged()}handleBlur(){var o;(o=this._renderer.value)===null||o===void 0||o.handleBlur()}handleFocus(){var o;(o=this._renderer.value)===null||o===void 0||o.handleFocus()}handleSelectionChanged(o,c,v){var m;this._selectionState.start=o,this._selectionState.end=c,this._selectionState.columnSelectMode=v,(m=this._renderer.value)===null||m===void 0||m.handleSelectionChanged(o,c,v)}handleCursorMove(){var o;(o=this._renderer.value)===null||o===void 0||o.handleCursorMove()}clear(){var o;(o=this._renderer.value)===null||o===void 0||o.clear()}};r.RenderService=i=l([u(2,t.IOptionsService),u(3,p.ICharSizeService),u(4,t.IDecorationService),u(5,t.IBufferService),u(6,p.ICoreBrowserService),u(7,p.IThemeService)],i)},9312:function(I,r,a){var l=this&&this.__decorate||function(h,g,b,L){var y,k=arguments.length,x=k<3?g:L===null?L=Object.getOwnPropertyDescriptor(g,b):L;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")x=Reflect.decorate(h,g,b,L);else for(var T=h.length-1;T>=0;T--)(y=h[T])&&(x=(k<3?y(x):k>3?y(g,b,x):y(g,b))||x);return k>3&&x&&Object.defineProperty(g,b,x),x},u=this&&this.__param||function(h,g){return function(b,L){g(b,L,h)}};Object.defineProperty(r,"__esModule",{value:!0}),r.SelectionService=void 0;const n=a(9806),d=a(9504),f=a(456),p=a(4725),_=a(8460),e=a(844),s=a(6114),t=a(4841),i=a(511),o=a(2585),c=String.fromCharCode(160),v=new RegExp(c,"g");let m=r.SelectionService=class extends e.Disposable{constructor(h,g,b,L,y,k,x,T,O){super(),this._element=h,this._screenElement=g,this._linkifier=b,this._bufferService=L,this._coreService=y,this._mouseService=k,this._optionsService=x,this._renderService=T,this._coreBrowserService=O,this._dragScrollAmount=0,this._enabled=!0,this._workCell=new i.CellData,this._mouseDownTimeStamp=0,this._oldHasSelection=!1,this._oldSelectionStart=void 0,this._oldSelectionEnd=void 0,this._onLinuxMouseSelection=this.register(new _.EventEmitter),this.onLinuxMouseSelection=this._onLinuxMouseSelection.event,this._onRedrawRequest=this.register(new _.EventEmitter),this.onRequestRedraw=this._onRedrawRequest.event,this._onSelectionChange=this.register(new _.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onRequestScrollLines=this.register(new _.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this._mouseMoveListener=M=>this._handleMouseMove(M),this._mouseUpListener=M=>this._handleMouseUp(M),this._coreService.onUserInput(()=>{this.hasSelection&&this.clearSelection()}),this._trimListener=this._bufferService.buffer.lines.onTrim(M=>this._handleTrim(M)),this.register(this._bufferService.buffers.onBufferActivate(M=>this._handleBufferActivate(M))),this.enable(),this._model=new f.SelectionModel(this._bufferService),this._activeSelectionMode=0,this.register((0,e.toDisposable)(()=>{this._removeMouseDownListeners()}))}reset(){this.clearSelection()}disable(){this.clearSelection(),this._enabled=!1}enable(){this._enabled=!0}get selectionStart(){return this._model.finalSelectionStart}get selectionEnd(){return this._model.finalSelectionEnd}get hasSelection(){const h=this._model.finalSelectionStart,g=this._model.finalSelectionEnd;return!(!h||!g||h[0]===g[0]&&h[1]===g[1])}get selectionText(){const h=this._model.finalSelectionStart,g=this._model.finalSelectionEnd;if(!h||!g)return"";const b=this._bufferService.buffer,L=[];if(this._activeSelectionMode===3){if(h[0]===g[0])return"";const y=h[0]y.replace(v," ")).join(s.isWindows?`\r +`:` +`)}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(h){this._refreshAnimationFrame||(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._refresh())),s.isLinux&&h&&this.selectionText.length&&this._onLinuxMouseSelection.fire(this.selectionText)}_refresh(){this._refreshAnimationFrame=void 0,this._onRedrawRequest.fire({start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd,columnSelectMode:this._activeSelectionMode===3})}_isClickInSelection(h){const g=this._getMouseBufferCoords(h),b=this._model.finalSelectionStart,L=this._model.finalSelectionEnd;return!!(b&&L&&g)&&this._areCoordsInSelection(g,b,L)}isCellInSelection(h,g){const b=this._model.finalSelectionStart,L=this._model.finalSelectionEnd;return!(!b||!L)&&this._areCoordsInSelection([h,g],b,L)}_areCoordsInSelection(h,g,b){return h[1]>g[1]&&h[1]=g[0]&&h[0]=g[0]}_selectWordAtCursor(h,g){var b,L;const y=(L=(b=this._linkifier.currentLink)===null||b===void 0?void 0:b.link)===null||L===void 0?void 0:L.range;if(y)return this._model.selectionStart=[y.start.x-1,y.start.y-1],this._model.selectionStartLength=(0,t.getRangeLength)(y,this._bufferService.cols),this._model.selectionEnd=void 0,!0;const k=this._getMouseBufferCoords(h);return!!k&&(this._selectWordAt(k,g),this._model.selectionEnd=void 0,!0)}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(h,g){this._model.clearSelection(),h=Math.max(h,0),g=Math.min(g,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,h],this._model.selectionEnd=[this._bufferService.cols,g],this.refresh(),this._onSelectionChange.fire()}_handleTrim(h){this._model.handleTrim(h)&&this.refresh()}_getMouseBufferCoords(h){const g=this._mouseService.getCoords(h,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(g)return g[0]--,g[1]--,g[1]+=this._bufferService.buffer.ydisp,g}_getMouseEventScrollAmount(h){let g=(0,n.getCoordsRelativeToElement)(this._coreBrowserService.window,h,this._screenElement)[1];const b=this._renderService.dimensions.css.canvas.height;return g>=0&&g<=b?0:(g>b&&(g-=b),g=Math.min(Math.max(g,-50),50),g/=50,g/Math.abs(g)+Math.round(14*g))}shouldForceSelection(h){return s.isMac?h.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:h.shiftKey}handleMouseDown(h){if(this._mouseDownTimeStamp=h.timeStamp,(h.button!==2||!this.hasSelection)&&h.button===0){if(!this._enabled){if(!this.shouldForceSelection(h))return;h.stopPropagation()}h.preventDefault(),this._dragScrollAmount=0,this._enabled&&h.shiftKey?this._handleIncrementalClick(h):h.detail===1?this._handleSingleClick(h):h.detail===2?this._handleDoubleClick(h):h.detail===3&&this._handleTripleClick(h),this._addMouseDownListeners(),this.refresh(!0)}}_addMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.addEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.addEventListener("mouseup",this._mouseUpListener)),this._dragScrollIntervalTimer=this._coreBrowserService.window.setInterval(()=>this._dragScroll(),50)}_removeMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.removeEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.removeEventListener("mouseup",this._mouseUpListener)),this._coreBrowserService.window.clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=void 0}_handleIncrementalClick(h){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(h))}_handleSingleClick(h){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(h)?3:0,this._model.selectionStart=this._getMouseBufferCoords(h),!this._model.selectionStart)return;this._model.selectionEnd=void 0;const g=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);g&&g.length!==this._model.selectionStart[0]&&g.hasWidth(this._model.selectionStart[0])===0&&this._model.selectionStart[0]++}_handleDoubleClick(h){this._selectWordAtCursor(h,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(h){const g=this._getMouseBufferCoords(h);g&&(this._activeSelectionMode=2,this._selectLineAt(g[1]))}shouldColumnSelect(h){return h.altKey&&!(s.isMac&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(h){if(h.stopImmediatePropagation(),!this._model.selectionStart)return;const g=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(h),!this._model.selectionEnd)return void this.refresh(!0);this._activeSelectionMode===2?this._model.selectionEnd[1]0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));const b=this._bufferService.buffer;if(this._model.selectionEnd[1]0?(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(h.ydisp+this._bufferService.rows,h.lines.length-1)):(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=h.ydisp),this.refresh()}}_handleMouseUp(h){const g=h.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&g<500&&h.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){const b=this._mouseService.getCoords(h,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(b&&b[0]!==void 0&&b[1]!==void 0){const L=(0,d.moveToCellSequence)(b[0]-1,b[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(L,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){const h=this._model.finalSelectionStart,g=this._model.finalSelectionEnd,b=!(!h||!g||h[0]===g[0]&&h[1]===g[1]);b?h&&g&&(this._oldSelectionStart&&this._oldSelectionEnd&&h[0]===this._oldSelectionStart[0]&&h[1]===this._oldSelectionStart[1]&&g[0]===this._oldSelectionEnd[0]&&g[1]===this._oldSelectionEnd[1]||this._fireOnSelectionChange(h,g,b)):this._oldHasSelection&&this._fireOnSelectionChange(h,g,b)}_fireOnSelectionChange(h,g,b){this._oldSelectionStart=h,this._oldSelectionEnd=g,this._oldHasSelection=b,this._onSelectionChange.fire()}_handleBufferActivate(h){this.clearSelection(),this._trimListener.dispose(),this._trimListener=h.activeBuffer.lines.onTrim(g=>this._handleTrim(g))}_convertViewportColToCharacterIndex(h,g){let b=g;for(let L=0;g>=L;L++){const y=h.loadCell(L,this._workCell).getChars().length;this._workCell.getWidth()===0?b--:y>1&&g!==L&&(b+=y-1)}return b}setSelection(h,g,b){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[h,g],this._model.selectionStartLength=b,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(h){this._isClickInSelection(h)||(this._selectWordAtCursor(h,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(h,g,b=!0,L=!0){if(h[0]>=this._bufferService.cols)return;const y=this._bufferService.buffer,k=y.lines.get(h[1]);if(!k)return;const x=y.translateBufferLineToString(h[1],!1);let T=this._convertViewportColToCharacterIndex(k,h[0]),O=T;const M=h[0]-T;let C=0,w=0,E=0,D=0;if(x.charAt(T)===" "){for(;T>0&&x.charAt(T-1)===" ";)T--;for(;O1&&(D+=z-1,O+=z-1);U>0&&T>0&&!this._isCharWordSeparator(k.loadCell(U-1,this._workCell));){k.loadCell(U-1,this._workCell);const S=this._workCell.getChars().length;this._workCell.getWidth()===0?(C++,U--):S>1&&(E+=S-1,T-=S-1),T--,U--}for(;W1&&(D+=S-1,O+=S-1),O++,W++}}O++;let P=T+M-C+E,H=Math.min(this._bufferService.cols,O-T+C+w-E-D);if(g||x.slice(T,O).trim()!==""){if(b&&P===0&&k.getCodePoint(0)!==32){const U=y.lines.get(h[1]-1);if(U&&k.isWrapped&&U.getCodePoint(this._bufferService.cols-1)!==32){const W=this._getWordAt([this._bufferService.cols-1,h[1]-1],!1,!0,!1);if(W){const z=this._bufferService.cols-W.start;P-=z,H+=z}}}if(L&&P+H===this._bufferService.cols&&k.getCodePoint(this._bufferService.cols-1)!==32){const U=y.lines.get(h[1]+1);if(U!=null&&U.isWrapped&&U.getCodePoint(0)!==32){const W=this._getWordAt([0,h[1]+1],!1,!1,!0);W&&(H+=W.length)}}return{start:P,length:H}}}_selectWordAt(h,g){const b=this._getWordAt(h,g);if(b){for(;b.start<0;)b.start+=this._bufferService.cols,h[1]--;this._model.selectionStart=[b.start,h[1]],this._model.selectionStartLength=b.length}}_selectToWordAt(h){const g=this._getWordAt(h,!0);if(g){let b=h[1];for(;g.start<0;)g.start+=this._bufferService.cols,b--;if(!this._model.areSelectionValuesReversed())for(;g.start+g.length>this._bufferService.cols;)g.length-=this._bufferService.cols,b++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?g.start:g.start+g.length,b]}}_isCharWordSeparator(h){return h.getWidth()!==0&&this._optionsService.rawOptions.wordSeparator.indexOf(h.getChars())>=0}_selectLineAt(h){const g=this._bufferService.buffer.getWrappedRangeForLine(h),b={start:{x:0,y:g.first},end:{x:this._bufferService.cols-1,y:g.last}};this._model.selectionStart=[0,g.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=(0,t.getRangeLength)(b,this._bufferService.cols)}};r.SelectionService=m=l([u(3,o.IBufferService),u(4,o.ICoreService),u(5,p.IMouseService),u(6,o.IOptionsService),u(7,p.IRenderService),u(8,p.ICoreBrowserService)],m)},4725:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.IThemeService=r.ICharacterJoinerService=r.ISelectionService=r.IRenderService=r.IMouseService=r.ICoreBrowserService=r.ICharSizeService=void 0;const l=a(8343);r.ICharSizeService=(0,l.createDecorator)("CharSizeService"),r.ICoreBrowserService=(0,l.createDecorator)("CoreBrowserService"),r.IMouseService=(0,l.createDecorator)("MouseService"),r.IRenderService=(0,l.createDecorator)("RenderService"),r.ISelectionService=(0,l.createDecorator)("SelectionService"),r.ICharacterJoinerService=(0,l.createDecorator)("CharacterJoinerService"),r.IThemeService=(0,l.createDecorator)("ThemeService")},6731:function(I,r,a){var l=this&&this.__decorate||function(m,h,g,b){var L,y=arguments.length,k=y<3?h:b===null?b=Object.getOwnPropertyDescriptor(h,g):b;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")k=Reflect.decorate(m,h,g,b);else for(var x=m.length-1;x>=0;x--)(L=m[x])&&(k=(y<3?L(k):y>3?L(h,g,k):L(h,g))||k);return y>3&&k&&Object.defineProperty(h,g,k),k},u=this&&this.__param||function(m,h){return function(g,b){h(g,b,m)}};Object.defineProperty(r,"__esModule",{value:!0}),r.ThemeService=r.DEFAULT_ANSI_COLORS=void 0;const n=a(7239),d=a(8055),f=a(8460),p=a(844),_=a(2585),e=d.css.toColor("#ffffff"),s=d.css.toColor("#000000"),t=d.css.toColor("#ffffff"),i=d.css.toColor("#000000"),o={css:"rgba(255, 255, 255, 0.3)",rgba:4294967117};r.DEFAULT_ANSI_COLORS=Object.freeze((()=>{const m=[d.css.toColor("#2e3436"),d.css.toColor("#cc0000"),d.css.toColor("#4e9a06"),d.css.toColor("#c4a000"),d.css.toColor("#3465a4"),d.css.toColor("#75507b"),d.css.toColor("#06989a"),d.css.toColor("#d3d7cf"),d.css.toColor("#555753"),d.css.toColor("#ef2929"),d.css.toColor("#8ae234"),d.css.toColor("#fce94f"),d.css.toColor("#729fcf"),d.css.toColor("#ad7fa8"),d.css.toColor("#34e2e2"),d.css.toColor("#eeeeec")],h=[0,95,135,175,215,255];for(let g=0;g<216;g++){const b=h[g/36%6|0],L=h[g/6%6|0],y=h[g%6];m.push({css:d.channels.toCss(b,L,y),rgba:d.channels.toRgba(b,L,y)})}for(let g=0;g<24;g++){const b=8+10*g;m.push({css:d.channels.toCss(b,b,b),rgba:d.channels.toRgba(b,b,b)})}return m})());let c=r.ThemeService=class extends p.Disposable{get colors(){return this._colors}constructor(m){super(),this._optionsService=m,this._contrastCache=new n.ColorContrastCache,this._halfContrastCache=new n.ColorContrastCache,this._onChangeColors=this.register(new f.EventEmitter),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:e,background:s,cursor:t,cursorAccent:i,selectionForeground:void 0,selectionBackgroundTransparent:o,selectionBackgroundOpaque:d.color.blend(s,o),selectionInactiveBackgroundTransparent:o,selectionInactiveBackgroundOpaque:d.color.blend(s,o),ansi:r.DEFAULT_ANSI_COLORS.slice(),contrastCache:this._contrastCache,halfContrastCache:this._halfContrastCache},this._updateRestoreColors(),this._setTheme(this._optionsService.rawOptions.theme),this.register(this._optionsService.onSpecificOptionChange("minimumContrastRatio",()=>this._contrastCache.clear())),this.register(this._optionsService.onSpecificOptionChange("theme",()=>this._setTheme(this._optionsService.rawOptions.theme)))}_setTheme(m={}){const h=this._colors;if(h.foreground=v(m.foreground,e),h.background=v(m.background,s),h.cursor=v(m.cursor,t),h.cursorAccent=v(m.cursorAccent,i),h.selectionBackgroundTransparent=v(m.selectionBackground,o),h.selectionBackgroundOpaque=d.color.blend(h.background,h.selectionBackgroundTransparent),h.selectionInactiveBackgroundTransparent=v(m.selectionInactiveBackground,h.selectionBackgroundTransparent),h.selectionInactiveBackgroundOpaque=d.color.blend(h.background,h.selectionInactiveBackgroundTransparent),h.selectionForeground=m.selectionForeground?v(m.selectionForeground,d.NULL_COLOR):void 0,h.selectionForeground===d.NULL_COLOR&&(h.selectionForeground=void 0),d.color.isOpaque(h.selectionBackgroundTransparent)&&(h.selectionBackgroundTransparent=d.color.opacity(h.selectionBackgroundTransparent,.3)),d.color.isOpaque(h.selectionInactiveBackgroundTransparent)&&(h.selectionInactiveBackgroundTransparent=d.color.opacity(h.selectionInactiveBackgroundTransparent,.3)),h.ansi=r.DEFAULT_ANSI_COLORS.slice(),h.ansi[0]=v(m.black,r.DEFAULT_ANSI_COLORS[0]),h.ansi[1]=v(m.red,r.DEFAULT_ANSI_COLORS[1]),h.ansi[2]=v(m.green,r.DEFAULT_ANSI_COLORS[2]),h.ansi[3]=v(m.yellow,r.DEFAULT_ANSI_COLORS[3]),h.ansi[4]=v(m.blue,r.DEFAULT_ANSI_COLORS[4]),h.ansi[5]=v(m.magenta,r.DEFAULT_ANSI_COLORS[5]),h.ansi[6]=v(m.cyan,r.DEFAULT_ANSI_COLORS[6]),h.ansi[7]=v(m.white,r.DEFAULT_ANSI_COLORS[7]),h.ansi[8]=v(m.brightBlack,r.DEFAULT_ANSI_COLORS[8]),h.ansi[9]=v(m.brightRed,r.DEFAULT_ANSI_COLORS[9]),h.ansi[10]=v(m.brightGreen,r.DEFAULT_ANSI_COLORS[10]),h.ansi[11]=v(m.brightYellow,r.DEFAULT_ANSI_COLORS[11]),h.ansi[12]=v(m.brightBlue,r.DEFAULT_ANSI_COLORS[12]),h.ansi[13]=v(m.brightMagenta,r.DEFAULT_ANSI_COLORS[13]),h.ansi[14]=v(m.brightCyan,r.DEFAULT_ANSI_COLORS[14]),h.ansi[15]=v(m.brightWhite,r.DEFAULT_ANSI_COLORS[15]),m.extendedAnsi){const g=Math.min(h.ansi.length-16,m.extendedAnsi.length);for(let b=0;b{Object.defineProperty(r,"__esModule",{value:!0}),r.CircularList=void 0;const l=a(8460),u=a(844);class n extends u.Disposable{constructor(f){super(),this._maxLength=f,this.onDeleteEmitter=this.register(new l.EventEmitter),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this.register(new l.EventEmitter),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this.register(new l.EventEmitter),this.onTrim=this.onTrimEmitter.event,this._array=new Array(this._maxLength),this._startIndex=0,this._length=0}get maxLength(){return this._maxLength}set maxLength(f){if(this._maxLength===f)return;const p=new Array(f);for(let _=0;_this._length)for(let p=this._length;p=f;e--)this._array[this._getCyclicIndex(e+_.length)]=this._array[this._getCyclicIndex(e)];for(let e=0;e<_.length;e++)this._array[this._getCyclicIndex(f+e)]=_[e];if(_.length&&this.onInsertEmitter.fire({index:f,amount:_.length}),this._length+_.length>this._maxLength){const e=this._length+_.length-this._maxLength;this._startIndex+=e,this._length=this._maxLength,this.onTrimEmitter.fire(e)}else this._length+=_.length}trimStart(f){f>this._length&&(f=this._length),this._startIndex+=f,this._length-=f,this.onTrimEmitter.fire(f)}shiftElements(f,p,_){if(!(p<=0)){if(f<0||f>=this._length)throw new Error("start argument out of range");if(f+_<0)throw new Error("Cannot shift elements in list beyond index 0");if(_>0){for(let s=p-1;s>=0;s--)this.set(f+s+_,this.get(f+s));const e=f+p+_-this._length;if(e>0)for(this._length+=e;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let e=0;e{Object.defineProperty(r,"__esModule",{value:!0}),r.clone=void 0,r.clone=function a(l,u=5){if(typeof l!="object")return l;const n=Array.isArray(l)?[]:{};for(const d in l)n[d]=u<=1?l[d]:l[d]&&a(l[d],u-1);return n}},8055:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.contrastRatio=r.toPaddedHex=r.rgba=r.rgb=r.css=r.color=r.channels=r.NULL_COLOR=void 0;const l=a(6114);let u=0,n=0,d=0,f=0;var p,_,e,s,t;function i(c){const v=c.toString(16);return v.length<2?"0"+v:v}function o(c,v){return c>>0}}(p||(r.channels=p={})),function(c){function v(m,h){return f=Math.round(255*h),[u,n,d]=t.toChannels(m.rgba),{css:p.toCss(u,n,d,f),rgba:p.toRgba(u,n,d,f)}}c.blend=function(m,h){if(f=(255&h.rgba)/255,f===1)return{css:h.css,rgba:h.rgba};const g=h.rgba>>24&255,b=h.rgba>>16&255,L=h.rgba>>8&255,y=m.rgba>>24&255,k=m.rgba>>16&255,x=m.rgba>>8&255;return u=y+Math.round((g-y)*f),n=k+Math.round((b-k)*f),d=x+Math.round((L-x)*f),{css:p.toCss(u,n,d),rgba:p.toRgba(u,n,d)}},c.isOpaque=function(m){return(255&m.rgba)==255},c.ensureContrastRatio=function(m,h,g){const b=t.ensureContrastRatio(m.rgba,h.rgba,g);if(b)return t.toColor(b>>24&255,b>>16&255,b>>8&255)},c.opaque=function(m){const h=(255|m.rgba)>>>0;return[u,n,d]=t.toChannels(h),{css:p.toCss(u,n,d),rgba:h}},c.opacity=v,c.multiplyOpacity=function(m,h){return f=255&m.rgba,v(m,f*h/255)},c.toColorRGB=function(m){return[m.rgba>>24&255,m.rgba>>16&255,m.rgba>>8&255]}}(_||(r.color=_={})),function(c){let v,m;if(!l.isNode){const h=document.createElement("canvas");h.width=1,h.height=1;const g=h.getContext("2d",{willReadFrequently:!0});g&&(v=g,v.globalCompositeOperation="copy",m=v.createLinearGradient(0,0,1,1))}c.toColor=function(h){if(h.match(/#[\da-f]{3,8}/i))switch(h.length){case 4:return u=parseInt(h.slice(1,2).repeat(2),16),n=parseInt(h.slice(2,3).repeat(2),16),d=parseInt(h.slice(3,4).repeat(2),16),t.toColor(u,n,d);case 5:return u=parseInt(h.slice(1,2).repeat(2),16),n=parseInt(h.slice(2,3).repeat(2),16),d=parseInt(h.slice(3,4).repeat(2),16),f=parseInt(h.slice(4,5).repeat(2),16),t.toColor(u,n,d,f);case 7:return{css:h,rgba:(parseInt(h.slice(1),16)<<8|255)>>>0};case 9:return{css:h,rgba:parseInt(h.slice(1),16)>>>0}}const g=h.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(g)return u=parseInt(g[1]),n=parseInt(g[2]),d=parseInt(g[3]),f=Math.round(255*(g[5]===void 0?1:parseFloat(g[5]))),t.toColor(u,n,d,f);if(!v||!m)throw new Error("css.toColor: Unsupported css format");if(v.fillStyle=m,v.fillStyle=h,typeof v.fillStyle!="string")throw new Error("css.toColor: Unsupported css format");if(v.fillRect(0,0,1,1),[u,n,d,f]=v.getImageData(0,0,1,1).data,f!==255)throw new Error("css.toColor: Unsupported css format");return{rgba:p.toRgba(u,n,d,f),css:h}}}(e||(r.css=e={})),function(c){function v(m,h,g){const b=m/255,L=h/255,y=g/255;return .2126*(b<=.03928?b/12.92:Math.pow((b+.055)/1.055,2.4))+.7152*(L<=.03928?L/12.92:Math.pow((L+.055)/1.055,2.4))+.0722*(y<=.03928?y/12.92:Math.pow((y+.055)/1.055,2.4))}c.relativeLuminance=function(m){return v(m>>16&255,m>>8&255,255&m)},c.relativeLuminance2=v}(s||(r.rgb=s={})),function(c){function v(h,g,b){const L=h>>24&255,y=h>>16&255,k=h>>8&255;let x=g>>24&255,T=g>>16&255,O=g>>8&255,M=o(s.relativeLuminance2(x,T,O),s.relativeLuminance2(L,y,k));for(;M0||T>0||O>0);)x-=Math.max(0,Math.ceil(.1*x)),T-=Math.max(0,Math.ceil(.1*T)),O-=Math.max(0,Math.ceil(.1*O)),M=o(s.relativeLuminance2(x,T,O),s.relativeLuminance2(L,y,k));return(x<<24|T<<16|O<<8|255)>>>0}function m(h,g,b){const L=h>>24&255,y=h>>16&255,k=h>>8&255;let x=g>>24&255,T=g>>16&255,O=g>>8&255,M=o(s.relativeLuminance2(x,T,O),s.relativeLuminance2(L,y,k));for(;M>>0}c.ensureContrastRatio=function(h,g,b){const L=s.relativeLuminance(h>>8),y=s.relativeLuminance(g>>8);if(o(L,y)>8));if(Oo(L,s.relativeLuminance(M>>8))?T:M}return T}const k=m(h,g,b),x=o(L,s.relativeLuminance(k>>8));if(xo(L,s.relativeLuminance(T>>8))?k:T}return k}},c.reduceLuminance=v,c.increaseLuminance=m,c.toChannels=function(h){return[h>>24&255,h>>16&255,h>>8&255,255&h]},c.toColor=function(h,g,b,L){return{css:p.toCss(h,g,b,L),rgba:p.toRgba(h,g,b,L)}}}(t||(r.rgba=t={})),r.toPaddedHex=i,r.contrastRatio=o},8969:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CoreTerminal=void 0;const l=a(844),u=a(2585),n=a(4348),d=a(7866),f=a(744),p=a(7302),_=a(6975),e=a(8460),s=a(1753),t=a(1480),i=a(7994),o=a(9282),c=a(5435),v=a(5981),m=a(2660);let h=!1;class g extends l.Disposable{get onScroll(){return this._onScrollApi||(this._onScrollApi=this.register(new e.EventEmitter),this._onScroll.event(L=>{var y;(y=this._onScrollApi)===null||y===void 0||y.fire(L.position)})),this._onScrollApi.event}get cols(){return this._bufferService.cols}get rows(){return this._bufferService.rows}get buffers(){return this._bufferService.buffers}get options(){return this.optionsService.options}set options(L){for(const y in L)this.optionsService.options[y]=L[y]}constructor(L){super(),this._windowsWrappingHeuristics=this.register(new l.MutableDisposable),this._onBinary=this.register(new e.EventEmitter),this.onBinary=this._onBinary.event,this._onData=this.register(new e.EventEmitter),this.onData=this._onData.event,this._onLineFeed=this.register(new e.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onResize=this.register(new e.EventEmitter),this.onResize=this._onResize.event,this._onWriteParsed=this.register(new e.EventEmitter),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this.register(new e.EventEmitter),this._instantiationService=new n.InstantiationService,this.optionsService=this.register(new p.OptionsService(L)),this._instantiationService.setService(u.IOptionsService,this.optionsService),this._bufferService=this.register(this._instantiationService.createInstance(f.BufferService)),this._instantiationService.setService(u.IBufferService,this._bufferService),this._logService=this.register(this._instantiationService.createInstance(d.LogService)),this._instantiationService.setService(u.ILogService,this._logService),this.coreService=this.register(this._instantiationService.createInstance(_.CoreService)),this._instantiationService.setService(u.ICoreService,this.coreService),this.coreMouseService=this.register(this._instantiationService.createInstance(s.CoreMouseService)),this._instantiationService.setService(u.ICoreMouseService,this.coreMouseService),this.unicodeService=this.register(this._instantiationService.createInstance(t.UnicodeService)),this._instantiationService.setService(u.IUnicodeService,this.unicodeService),this._charsetService=this._instantiationService.createInstance(i.CharsetService),this._instantiationService.setService(u.ICharsetService,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(m.OscLinkService),this._instantiationService.setService(u.IOscLinkService,this._oscLinkService),this._inputHandler=this.register(new c.InputHandler(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this.register((0,e.forwardEvent)(this._inputHandler.onLineFeed,this._onLineFeed)),this.register(this._inputHandler),this.register((0,e.forwardEvent)(this._bufferService.onResize,this._onResize)),this.register((0,e.forwardEvent)(this.coreService.onData,this._onData)),this.register((0,e.forwardEvent)(this.coreService.onBinary,this._onBinary)),this.register(this.coreService.onRequestScrollToBottom(()=>this.scrollToBottom())),this.register(this.coreService.onUserInput(()=>this._writeBuffer.handleUserInput())),this.register(this.optionsService.onMultipleOptionChange(["windowsMode","windowsPty"],()=>this._handleWindowsPtyOptionChange())),this.register(this._bufferService.onScroll(y=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this.register(this._inputHandler.onScroll(y=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this._writeBuffer=this.register(new v.WriteBuffer((y,k)=>this._inputHandler.parse(y,k))),this.register((0,e.forwardEvent)(this._writeBuffer.onWriteParsed,this._onWriteParsed))}write(L,y){this._writeBuffer.write(L,y)}writeSync(L,y){this._logService.logLevel<=u.LogLevelEnum.WARN&&!h&&(this._logService.warn("writeSync is unreliable and will be removed soon."),h=!0),this._writeBuffer.writeSync(L,y)}resize(L,y){isNaN(L)||isNaN(y)||(L=Math.max(L,f.MINIMUM_COLS),y=Math.max(y,f.MINIMUM_ROWS),this._bufferService.resize(L,y))}scroll(L,y=!1){this._bufferService.scroll(L,y)}scrollLines(L,y,k){this._bufferService.scrollLines(L,y,k)}scrollPages(L){this.scrollLines(L*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(L){const y=L-this._bufferService.buffer.ydisp;y!==0&&this.scrollLines(y)}registerEscHandler(L,y){return this._inputHandler.registerEscHandler(L,y)}registerDcsHandler(L,y){return this._inputHandler.registerDcsHandler(L,y)}registerCsiHandler(L,y){return this._inputHandler.registerCsiHandler(L,y)}registerOscHandler(L,y){return this._inputHandler.registerOscHandler(L,y)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let L=!1;const y=this.optionsService.rawOptions.windowsPty;y&&y.buildNumber!==void 0&&y.buildNumber!==void 0?L=y.backend==="conpty"&&y.buildNumber<21376:this.optionsService.rawOptions.windowsMode&&(L=!0),L?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){const L=[];L.push(this.onLineFeed(o.updateWindowsModeWrappedState.bind(null,this._bufferService))),L.push(this.registerCsiHandler({final:"H"},()=>((0,o.updateWindowsModeWrappedState)(this._bufferService),!1))),this._windowsWrappingHeuristics.value=(0,l.toDisposable)(()=>{for(const y of L)y.dispose()})}}}r.CoreTerminal=g},8460:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.forwardEvent=r.EventEmitter=void 0,r.EventEmitter=class{constructor(){this._listeners=[],this._disposed=!1}get event(){return this._event||(this._event=a=>(this._listeners.push(a),{dispose:()=>{if(!this._disposed){for(let l=0;ll.fire(u))}},5435:function(I,r,a){var l=this&&this.__decorate||function(M,C,w,E){var D,P=arguments.length,H=P<3?C:E===null?E=Object.getOwnPropertyDescriptor(C,w):E;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")H=Reflect.decorate(M,C,w,E);else for(var U=M.length-1;U>=0;U--)(D=M[U])&&(H=(P<3?D(H):P>3?D(C,w,H):D(C,w))||H);return P>3&&H&&Object.defineProperty(C,w,H),H},u=this&&this.__param||function(M,C){return function(w,E){C(w,E,M)}};Object.defineProperty(r,"__esModule",{value:!0}),r.InputHandler=r.WindowsOptionsReportType=void 0;const n=a(2584),d=a(7116),f=a(2015),p=a(844),_=a(482),e=a(8437),s=a(8460),t=a(643),i=a(511),o=a(3734),c=a(2585),v=a(6242),m=a(6351),h=a(5941),g={"(":0,")":1,"*":2,"+":3,"-":1,".":2},b=131072;function L(M,C){if(M>24)return C.setWinLines||!1;switch(M){case 1:return!!C.restoreWin;case 2:return!!C.minimizeWin;case 3:return!!C.setWinPosition;case 4:return!!C.setWinSizePixels;case 5:return!!C.raiseWin;case 6:return!!C.lowerWin;case 7:return!!C.refreshWin;case 8:return!!C.setWinSizeChars;case 9:return!!C.maximizeWin;case 10:return!!C.fullscreenWin;case 11:return!!C.getWinState;case 13:return!!C.getWinPosition;case 14:return!!C.getWinSizePixels;case 15:return!!C.getScreenSizePixels;case 16:return!!C.getCellSizePixels;case 18:return!!C.getWinSizeChars;case 19:return!!C.getScreenSizeChars;case 20:return!!C.getIconTitle;case 21:return!!C.getWinTitle;case 22:return!!C.pushTitle;case 23:return!!C.popTitle;case 24:return!!C.setWinLines}return!1}var y;(function(M){M[M.GET_WIN_SIZE_PIXELS=0]="GET_WIN_SIZE_PIXELS",M[M.GET_CELL_SIZE_PIXELS=1]="GET_CELL_SIZE_PIXELS"})(y||(r.WindowsOptionsReportType=y={}));let k=0;class x extends p.Disposable{getAttrData(){return this._curAttrData}constructor(C,w,E,D,P,H,U,W,z=new f.EscapeSequenceParser){super(),this._bufferService=C,this._charsetService=w,this._coreService=E,this._logService=D,this._optionsService=P,this._oscLinkService=H,this._coreMouseService=U,this._unicodeService=W,this._parser=z,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new _.StringToUtf32,this._utf8Decoder=new _.Utf8ToUtf32,this._workCell=new i.CellData,this._windowTitle="",this._iconName="",this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=e.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=e.DEFAULT_ATTR_DATA.clone(),this._onRequestBell=this.register(new s.EventEmitter),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this.register(new s.EventEmitter),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this.register(new s.EventEmitter),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this.register(new s.EventEmitter),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this.register(new s.EventEmitter),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this.register(new s.EventEmitter),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this.register(new s.EventEmitter),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this.register(new s.EventEmitter),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this.register(new s.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this.register(new s.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onScroll=this.register(new s.EventEmitter),this.onScroll=this._onScroll.event,this._onTitleChange=this.register(new s.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onColor=this.register(new s.EventEmitter),this.onColor=this._onColor.event,this._parseStack={paused:!1,cursorStartX:0,cursorStartY:0,decodedLength:0,position:0},this._specialColors=[256,257,258],this.register(this._parser),this._dirtyRowTracker=new T(this._bufferService),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate(S=>this._activeBuffer=S.activeBuffer)),this._parser.setCsiHandlerFallback((S,R)=>{this._logService.debug("Unknown CSI code: ",{identifier:this._parser.identToString(S),params:R.toArray()})}),this._parser.setEscHandlerFallback(S=>{this._logService.debug("Unknown ESC code: ",{identifier:this._parser.identToString(S)})}),this._parser.setExecuteHandlerFallback(S=>{this._logService.debug("Unknown EXECUTE code: ",{code:S})}),this._parser.setOscHandlerFallback((S,R,B)=>{this._logService.debug("Unknown OSC code: ",{identifier:S,action:R,data:B})}),this._parser.setDcsHandlerFallback((S,R,B)=>{R==="HOOK"&&(B=B.toArray()),this._logService.debug("Unknown DCS code: ",{identifier:this._parser.identToString(S),action:R,payload:B})}),this._parser.setPrintHandler((S,R,B)=>this.print(S,R,B)),this._parser.registerCsiHandler({final:"@"},S=>this.insertChars(S)),this._parser.registerCsiHandler({intermediates:" ",final:"@"},S=>this.scrollLeft(S)),this._parser.registerCsiHandler({final:"A"},S=>this.cursorUp(S)),this._parser.registerCsiHandler({intermediates:" ",final:"A"},S=>this.scrollRight(S)),this._parser.registerCsiHandler({final:"B"},S=>this.cursorDown(S)),this._parser.registerCsiHandler({final:"C"},S=>this.cursorForward(S)),this._parser.registerCsiHandler({final:"D"},S=>this.cursorBackward(S)),this._parser.registerCsiHandler({final:"E"},S=>this.cursorNextLine(S)),this._parser.registerCsiHandler({final:"F"},S=>this.cursorPrecedingLine(S)),this._parser.registerCsiHandler({final:"G"},S=>this.cursorCharAbsolute(S)),this._parser.registerCsiHandler({final:"H"},S=>this.cursorPosition(S)),this._parser.registerCsiHandler({final:"I"},S=>this.cursorForwardTab(S)),this._parser.registerCsiHandler({final:"J"},S=>this.eraseInDisplay(S,!1)),this._parser.registerCsiHandler({prefix:"?",final:"J"},S=>this.eraseInDisplay(S,!0)),this._parser.registerCsiHandler({final:"K"},S=>this.eraseInLine(S,!1)),this._parser.registerCsiHandler({prefix:"?",final:"K"},S=>this.eraseInLine(S,!0)),this._parser.registerCsiHandler({final:"L"},S=>this.insertLines(S)),this._parser.registerCsiHandler({final:"M"},S=>this.deleteLines(S)),this._parser.registerCsiHandler({final:"P"},S=>this.deleteChars(S)),this._parser.registerCsiHandler({final:"S"},S=>this.scrollUp(S)),this._parser.registerCsiHandler({final:"T"},S=>this.scrollDown(S)),this._parser.registerCsiHandler({final:"X"},S=>this.eraseChars(S)),this._parser.registerCsiHandler({final:"Z"},S=>this.cursorBackwardTab(S)),this._parser.registerCsiHandler({final:"`"},S=>this.charPosAbsolute(S)),this._parser.registerCsiHandler({final:"a"},S=>this.hPositionRelative(S)),this._parser.registerCsiHandler({final:"b"},S=>this.repeatPrecedingCharacter(S)),this._parser.registerCsiHandler({final:"c"},S=>this.sendDeviceAttributesPrimary(S)),this._parser.registerCsiHandler({prefix:">",final:"c"},S=>this.sendDeviceAttributesSecondary(S)),this._parser.registerCsiHandler({final:"d"},S=>this.linePosAbsolute(S)),this._parser.registerCsiHandler({final:"e"},S=>this.vPositionRelative(S)),this._parser.registerCsiHandler({final:"f"},S=>this.hVPosition(S)),this._parser.registerCsiHandler({final:"g"},S=>this.tabClear(S)),this._parser.registerCsiHandler({final:"h"},S=>this.setMode(S)),this._parser.registerCsiHandler({prefix:"?",final:"h"},S=>this.setModePrivate(S)),this._parser.registerCsiHandler({final:"l"},S=>this.resetMode(S)),this._parser.registerCsiHandler({prefix:"?",final:"l"},S=>this.resetModePrivate(S)),this._parser.registerCsiHandler({final:"m"},S=>this.charAttributes(S)),this._parser.registerCsiHandler({final:"n"},S=>this.deviceStatus(S)),this._parser.registerCsiHandler({prefix:"?",final:"n"},S=>this.deviceStatusPrivate(S)),this._parser.registerCsiHandler({intermediates:"!",final:"p"},S=>this.softReset(S)),this._parser.registerCsiHandler({intermediates:" ",final:"q"},S=>this.setCursorStyle(S)),this._parser.registerCsiHandler({final:"r"},S=>this.setScrollRegion(S)),this._parser.registerCsiHandler({final:"s"},S=>this.saveCursor(S)),this._parser.registerCsiHandler({final:"t"},S=>this.windowOptions(S)),this._parser.registerCsiHandler({final:"u"},S=>this.restoreCursor(S)),this._parser.registerCsiHandler({intermediates:"'",final:"}"},S=>this.insertColumns(S)),this._parser.registerCsiHandler({intermediates:"'",final:"~"},S=>this.deleteColumns(S)),this._parser.registerCsiHandler({intermediates:'"',final:"q"},S=>this.selectProtected(S)),this._parser.registerCsiHandler({intermediates:"$",final:"p"},S=>this.requestMode(S,!0)),this._parser.registerCsiHandler({prefix:"?",intermediates:"$",final:"p"},S=>this.requestMode(S,!1)),this._parser.setExecuteHandler(n.C0.BEL,()=>this.bell()),this._parser.setExecuteHandler(n.C0.LF,()=>this.lineFeed()),this._parser.setExecuteHandler(n.C0.VT,()=>this.lineFeed()),this._parser.setExecuteHandler(n.C0.FF,()=>this.lineFeed()),this._parser.setExecuteHandler(n.C0.CR,()=>this.carriageReturn()),this._parser.setExecuteHandler(n.C0.BS,()=>this.backspace()),this._parser.setExecuteHandler(n.C0.HT,()=>this.tab()),this._parser.setExecuteHandler(n.C0.SO,()=>this.shiftOut()),this._parser.setExecuteHandler(n.C0.SI,()=>this.shiftIn()),this._parser.setExecuteHandler(n.C1.IND,()=>this.index()),this._parser.setExecuteHandler(n.C1.NEL,()=>this.nextLine()),this._parser.setExecuteHandler(n.C1.HTS,()=>this.tabSet()),this._parser.registerOscHandler(0,new v.OscHandler(S=>(this.setTitle(S),this.setIconName(S),!0))),this._parser.registerOscHandler(1,new v.OscHandler(S=>this.setIconName(S))),this._parser.registerOscHandler(2,new v.OscHandler(S=>this.setTitle(S))),this._parser.registerOscHandler(4,new v.OscHandler(S=>this.setOrReportIndexedColor(S))),this._parser.registerOscHandler(8,new v.OscHandler(S=>this.setHyperlink(S))),this._parser.registerOscHandler(10,new v.OscHandler(S=>this.setOrReportFgColor(S))),this._parser.registerOscHandler(11,new v.OscHandler(S=>this.setOrReportBgColor(S))),this._parser.registerOscHandler(12,new v.OscHandler(S=>this.setOrReportCursorColor(S))),this._parser.registerOscHandler(104,new v.OscHandler(S=>this.restoreIndexedColor(S))),this._parser.registerOscHandler(110,new v.OscHandler(S=>this.restoreFgColor(S))),this._parser.registerOscHandler(111,new v.OscHandler(S=>this.restoreBgColor(S))),this._parser.registerOscHandler(112,new v.OscHandler(S=>this.restoreCursorColor(S))),this._parser.registerEscHandler({final:"7"},()=>this.saveCursor()),this._parser.registerEscHandler({final:"8"},()=>this.restoreCursor()),this._parser.registerEscHandler({final:"D"},()=>this.index()),this._parser.registerEscHandler({final:"E"},()=>this.nextLine()),this._parser.registerEscHandler({final:"H"},()=>this.tabSet()),this._parser.registerEscHandler({final:"M"},()=>this.reverseIndex()),this._parser.registerEscHandler({final:"="},()=>this.keypadApplicationMode()),this._parser.registerEscHandler({final:">"},()=>this.keypadNumericMode()),this._parser.registerEscHandler({final:"c"},()=>this.fullReset()),this._parser.registerEscHandler({final:"n"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"o"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"|"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"}"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"~"},()=>this.setgLevel(1)),this._parser.registerEscHandler({intermediates:"%",final:"@"},()=>this.selectDefaultCharset()),this._parser.registerEscHandler({intermediates:"%",final:"G"},()=>this.selectDefaultCharset());for(const S in d.CHARSETS)this._parser.registerEscHandler({intermediates:"(",final:S},()=>this.selectCharset("("+S)),this._parser.registerEscHandler({intermediates:")",final:S},()=>this.selectCharset(")"+S)),this._parser.registerEscHandler({intermediates:"*",final:S},()=>this.selectCharset("*"+S)),this._parser.registerEscHandler({intermediates:"+",final:S},()=>this.selectCharset("+"+S)),this._parser.registerEscHandler({intermediates:"-",final:S},()=>this.selectCharset("-"+S)),this._parser.registerEscHandler({intermediates:".",final:S},()=>this.selectCharset("."+S)),this._parser.registerEscHandler({intermediates:"/",final:S},()=>this.selectCharset("/"+S));this._parser.registerEscHandler({intermediates:"#",final:"8"},()=>this.screenAlignmentPattern()),this._parser.setErrorHandler(S=>(this._logService.error("Parsing error: ",S),S)),this._parser.registerDcsHandler({intermediates:"$",final:"q"},new m.DcsHandler((S,R)=>this.requestStatusString(S,R)))}_preserveStack(C,w,E,D){this._parseStack.paused=!0,this._parseStack.cursorStartX=C,this._parseStack.cursorStartY=w,this._parseStack.decodedLength=E,this._parseStack.position=D}_logSlowResolvingAsync(C){this._logService.logLevel<=c.LogLevelEnum.WARN&&Promise.race([C,new Promise((w,E)=>setTimeout(()=>E("#SLOW_TIMEOUT"),5e3))]).catch(w=>{if(w!=="#SLOW_TIMEOUT")throw w;console.warn("async parser handler taking longer than 5000 ms")})}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(C,w){let E,D=this._activeBuffer.x,P=this._activeBuffer.y,H=0;const U=this._parseStack.paused;if(U){if(E=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,w))return this._logSlowResolvingAsync(E),E;D=this._parseStack.cursorStartX,P=this._parseStack.cursorStartY,this._parseStack.paused=!1,C.length>b&&(H=this._parseStack.position+b)}if(this._logService.logLevel<=c.LogLevelEnum.DEBUG&&this._logService.debug("parsing data"+(typeof C=="string"?` "${C}"`:` "${Array.prototype.map.call(C,W=>String.fromCharCode(W)).join("")}"`),typeof C=="string"?C.split("").map(W=>W.charCodeAt(0)):C),this._parseBuffer.lengthb)for(let W=H;W0&&B.getWidth(this._activeBuffer.x-1)===2&&B.setCellFromCodePoint(this._activeBuffer.x-1,0,1,R.fg,R.bg,R.extended);for(let A=w;A=W){if(z){for(;this._activeBuffer.x=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!0),B=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y)}else if(this._activeBuffer.x=W-1,P===2)continue}if(S&&(B.insertCells(this._activeBuffer.x,P,this._activeBuffer.getNullCell(R),R),B.getWidth(W-1)===2&&B.setCellFromCodePoint(W-1,t.NULL_CELL_CODE,t.NULL_CELL_WIDTH,R.fg,R.bg,R.extended)),B.setCellFromCodePoint(this._activeBuffer.x++,D,P,R.fg,R.bg,R.extended),P>0)for(;--P;)B.setCellFromCodePoint(this._activeBuffer.x++,0,0,R.fg,R.bg,R.extended)}else B.getWidth(this._activeBuffer.x-1)?B.addCodepointToCell(this._activeBuffer.x-1,D):B.addCodepointToCell(this._activeBuffer.x-2,D)}E-w>0&&(B.loadCell(this._activeBuffer.x-1,this._workCell),this._workCell.getWidth()===2||this._workCell.getCode()>65535?this._parser.precedingCodepoint=0:this._workCell.isCombined()?this._parser.precedingCodepoint=this._workCell.getChars().charCodeAt(0):this._parser.precedingCodepoint=this._workCell.content),this._activeBuffer.x0&&B.getWidth(this._activeBuffer.x)===0&&!B.hasContent(this._activeBuffer.x)&&B.setCellFromCodePoint(this._activeBuffer.x,0,1,R.fg,R.bg,R.extended),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(C,w){return C.final!=="t"||C.prefix||C.intermediates?this._parser.registerCsiHandler(C,w):this._parser.registerCsiHandler(C,E=>!L(E.params[0],this._optionsService.rawOptions.windowOptions)||w(E))}registerDcsHandler(C,w){return this._parser.registerDcsHandler(C,new m.DcsHandler(w))}registerEscHandler(C,w){return this._parser.registerEscHandler(C,w)}registerOscHandler(C,w){return this._parser.registerOscHandler(C,new v.OscHandler(w))}bell(){return this._onRequestBell.fire(),!0}lineFeed(){return this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._optionsService.rawOptions.convertEol&&(this._activeBuffer.x=0),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows?this._activeBuffer.y=this._bufferService.rows-1:this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.x>=this._bufferService.cols&&this._activeBuffer.x--,this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._onLineFeed.fire(),!0}carriageReturn(){return this._activeBuffer.x=0,!0}backspace(){var C;if(!this._coreService.decPrivateModes.reverseWraparound)return this._restrictCursor(),this._activeBuffer.x>0&&this._activeBuffer.x--,!0;if(this._restrictCursor(this._bufferService.cols),this._activeBuffer.x>0)this._activeBuffer.x--;else if(this._activeBuffer.x===0&&this._activeBuffer.y>this._activeBuffer.scrollTop&&this._activeBuffer.y<=this._activeBuffer.scrollBottom&&(!((C=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y))===null||C===void 0)&&C.isWrapped)){this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.y--,this._activeBuffer.x=this._bufferService.cols-1;const w=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);w.hasWidth(this._activeBuffer.x)&&!w.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;const C=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-C),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(C=this._bufferService.cols-1){this._activeBuffer.x=Math.min(C,Math.max(0,this._activeBuffer.x)),this._activeBuffer.y=this._coreService.decPrivateModes.origin?Math.min(this._activeBuffer.scrollBottom,Math.max(this._activeBuffer.scrollTop,this._activeBuffer.y)):Math.min(this._bufferService.rows-1,Math.max(0,this._activeBuffer.y)),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_setCursor(C,w){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=C,this._activeBuffer.y=this._activeBuffer.scrollTop+w):(this._activeBuffer.x=C,this._activeBuffer.y=w),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(C,w){this._restrictCursor(),this._setCursor(this._activeBuffer.x+C,this._activeBuffer.y+w)}cursorUp(C){const w=this._activeBuffer.y-this._activeBuffer.scrollTop;return w>=0?this._moveCursor(0,-Math.min(w,C.params[0]||1)):this._moveCursor(0,-(C.params[0]||1)),!0}cursorDown(C){const w=this._activeBuffer.scrollBottom-this._activeBuffer.y;return w>=0?this._moveCursor(0,Math.min(w,C.params[0]||1)):this._moveCursor(0,C.params[0]||1),!0}cursorForward(C){return this._moveCursor(C.params[0]||1,0),!0}cursorBackward(C){return this._moveCursor(-(C.params[0]||1),0),!0}cursorNextLine(C){return this.cursorDown(C),this._activeBuffer.x=0,!0}cursorPrecedingLine(C){return this.cursorUp(C),this._activeBuffer.x=0,!0}cursorCharAbsolute(C){return this._setCursor((C.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(C){return this._setCursor(C.length>=2?(C.params[1]||1)-1:0,(C.params[0]||1)-1),!0}charPosAbsolute(C){return this._setCursor((C.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(C){return this._moveCursor(C.params[0]||1,0),!0}linePosAbsolute(C){return this._setCursor(this._activeBuffer.x,(C.params[0]||1)-1),!0}vPositionRelative(C){return this._moveCursor(0,C.params[0]||1),!0}hVPosition(C){return this.cursorPosition(C),!0}tabClear(C){const w=C.params[0];return w===0?delete this._activeBuffer.tabs[this._activeBuffer.x]:w===3&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(C){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let w=C.params[0]||1;for(;w--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(C){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let w=C.params[0]||1;for(;w--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(C){const w=C.params[0];return w===1&&(this._curAttrData.bg|=536870912),w!==2&&w!==0||(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(C,w,E,D=!1,P=!1){const H=this._activeBuffer.lines.get(this._activeBuffer.ybase+C);H.replaceCells(w,E,this._activeBuffer.getNullCell(this._eraseAttrData()),this._eraseAttrData(),P),D&&(H.isWrapped=!1)}_resetBufferLine(C,w=!1){const E=this._activeBuffer.lines.get(this._activeBuffer.ybase+C);E&&(E.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),w),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+C),E.isWrapped=!1)}eraseInDisplay(C,w=!1){let E;switch(this._restrictCursor(this._bufferService.cols),C.params[0]){case 0:for(E=this._activeBuffer.y,this._dirtyRowTracker.markDirty(E),this._eraseInBufferLine(E++,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,w);E=this._bufferService.cols&&(this._activeBuffer.lines.get(E+1).isWrapped=!1);E--;)this._resetBufferLine(E,w);this._dirtyRowTracker.markDirty(0);break;case 2:for(E=this._bufferService.rows,this._dirtyRowTracker.markDirty(E-1);E--;)this._resetBufferLine(E,w);this._dirtyRowTracker.markDirty(0);break;case 3:const D=this._activeBuffer.lines.length-this._bufferService.rows;D>0&&(this._activeBuffer.lines.trimStart(D),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-D,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-D,0),this._onScroll.fire(0))}return!0}eraseInLine(C,w=!1){switch(this._restrictCursor(this._bufferService.cols),C.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,w);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,w);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,w)}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(C){this._restrictCursor();let w=C.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.y0||(this._is("xterm")||this._is("rxvt-unicode")||this._is("screen")?this._coreService.triggerDataEvent(n.C0.ESC+"[?1;2c"):this._is("linux")&&this._coreService.triggerDataEvent(n.C0.ESC+"[?6c")),!0}sendDeviceAttributesSecondary(C){return C.params[0]>0||(this._is("xterm")?this._coreService.triggerDataEvent(n.C0.ESC+"[>0;276;0c"):this._is("rxvt-unicode")?this._coreService.triggerDataEvent(n.C0.ESC+"[>85;95;0c"):this._is("linux")?this._coreService.triggerDataEvent(C.params[0]+"c"):this._is("screen")&&this._coreService.triggerDataEvent(n.C0.ESC+"[>83;40003;0c")),!0}_is(C){return(this._optionsService.rawOptions.termName+"").indexOf(C)===0}setMode(C){for(let w=0;wj?1:2,A=C.params[0];return N=A,F=w?A===2?4:A===4?B(H.modes.insertMode):A===12?3:A===20?B(R.convertEol):0:A===1?B(E.applicationCursorKeys):A===3?R.windowOptions.setWinLines?W===80?2:W===132?1:0:0:A===6?B(E.origin):A===7?B(E.wraparound):A===8?3:A===9?B(D==="X10"):A===12?B(R.cursorBlink):A===25?B(!H.isCursorHidden):A===45?B(E.reverseWraparound):A===66?B(E.applicationKeypad):A===67?4:A===1e3?B(D==="VT200"):A===1002?B(D==="DRAG"):A===1003?B(D==="ANY"):A===1004?B(E.sendFocus):A===1005?4:A===1006?B(P==="SGR"):A===1015?4:A===1016?B(P==="SGR_PIXELS"):A===1048?1:A===47||A===1047||A===1049?B(z===S):A===2004?B(E.bracketedPasteMode):0,H.triggerDataEvent(`${n.C0.ESC}[${w?"":"?"}${N};${F}$y`),!0;var N,F}_updateAttrColor(C,w,E,D,P){return w===2?(C|=50331648,C&=-16777216,C|=o.AttributeData.fromColorRGB([E,D,P])):w===5&&(C&=-50331904,C|=33554432|255&E),C}_extractColor(C,w,E){const D=[0,0,-1,0,0,0];let P=0,H=0;do{if(D[H+P]=C.params[w+H],C.hasSubParams(w+H)){const U=C.getSubParams(w+H);let W=0;do D[1]===5&&(P=1),D[H+W+1+P]=U[W];while(++W=2||D[1]===2&&H+P>=5)break;D[1]&&(P=1)}while(++H+w5)&&(C=1),w.extended.underlineStyle=C,w.fg|=268435456,C===0&&(w.fg&=-268435457),w.updateExtended()}_processSGR0(C){C.fg=e.DEFAULT_ATTR_DATA.fg,C.bg=e.DEFAULT_ATTR_DATA.bg,C.extended=C.extended.clone(),C.extended.underlineStyle=0,C.extended.underlineColor&=-67108864,C.updateExtended()}charAttributes(C){if(C.length===1&&C.params[0]===0)return this._processSGR0(this._curAttrData),!0;const w=C.length;let E;const D=this._curAttrData;for(let P=0;P=30&&E<=37?(D.fg&=-50331904,D.fg|=16777216|E-30):E>=40&&E<=47?(D.bg&=-50331904,D.bg|=16777216|E-40):E>=90&&E<=97?(D.fg&=-50331904,D.fg|=16777224|E-90):E>=100&&E<=107?(D.bg&=-50331904,D.bg|=16777224|E-100):E===0?this._processSGR0(D):E===1?D.fg|=134217728:E===3?D.bg|=67108864:E===4?(D.fg|=268435456,this._processUnderline(C.hasSubParams(P)?C.getSubParams(P)[0]:1,D)):E===5?D.fg|=536870912:E===7?D.fg|=67108864:E===8?D.fg|=1073741824:E===9?D.fg|=2147483648:E===2?D.bg|=134217728:E===21?this._processUnderline(2,D):E===22?(D.fg&=-134217729,D.bg&=-134217729):E===23?D.bg&=-67108865:E===24?(D.fg&=-268435457,this._processUnderline(0,D)):E===25?D.fg&=-536870913:E===27?D.fg&=-67108865:E===28?D.fg&=-1073741825:E===29?D.fg&=2147483647:E===39?(D.fg&=-67108864,D.fg|=16777215&e.DEFAULT_ATTR_DATA.fg):E===49?(D.bg&=-67108864,D.bg|=16777215&e.DEFAULT_ATTR_DATA.bg):E===38||E===48||E===58?P+=this._extractColor(C,P,D):E===53?D.bg|=1073741824:E===55?D.bg&=-1073741825:E===59?(D.extended=D.extended.clone(),D.extended.underlineColor=-1,D.updateExtended()):E===100?(D.fg&=-67108864,D.fg|=16777215&e.DEFAULT_ATTR_DATA.fg,D.bg&=-67108864,D.bg|=16777215&e.DEFAULT_ATTR_DATA.bg):this._logService.debug("Unknown SGR attribute: %d.",E);return!0}deviceStatus(C){switch(C.params[0]){case 5:this._coreService.triggerDataEvent(`${n.C0.ESC}[0n`);break;case 6:const w=this._activeBuffer.y+1,E=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${n.C0.ESC}[${w};${E}R`)}return!0}deviceStatusPrivate(C){if(C.params[0]===6){const w=this._activeBuffer.y+1,E=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${n.C0.ESC}[?${w};${E}R`)}return!0}softReset(C){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=e.DEFAULT_ATTR_DATA.clone(),this._coreService.reset(),this._charsetService.reset(),this._activeBuffer.savedX=0,this._activeBuffer.savedY=this._activeBuffer.ybase,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,this._coreService.decPrivateModes.origin=!1,!0}setCursorStyle(C){const w=C.params[0]||1;switch(w){case 1:case 2:this._optionsService.options.cursorStyle="block";break;case 3:case 4:this._optionsService.options.cursorStyle="underline";break;case 5:case 6:this._optionsService.options.cursorStyle="bar"}const E=w%2==1;return this._optionsService.options.cursorBlink=E,!0}setScrollRegion(C){const w=C.params[0]||1;let E;return(C.length<2||(E=C.params[1])>this._bufferService.rows||E===0)&&(E=this._bufferService.rows),E>w&&(this._activeBuffer.scrollTop=w-1,this._activeBuffer.scrollBottom=E-1,this._setCursor(0,0)),!0}windowOptions(C){if(!L(C.params[0],this._optionsService.rawOptions.windowOptions))return!0;const w=C.length>1?C.params[1]:0;switch(C.params[0]){case 14:w!==2&&this._onRequestWindowsOptionsReport.fire(y.GET_WIN_SIZE_PIXELS);break;case 16:this._onRequestWindowsOptionsReport.fire(y.GET_CELL_SIZE_PIXELS);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${n.C0.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:w!==0&&w!==2||(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>10&&this._windowTitleStack.shift()),w!==0&&w!==1||(this._iconNameStack.push(this._iconName),this._iconNameStack.length>10&&this._iconNameStack.shift());break;case 23:w!==0&&w!==2||this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),w!==0&&w!==1||this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop())}return!0}saveCursor(C){return this._activeBuffer.savedX=this._activeBuffer.x,this._activeBuffer.savedY=this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,!0}restoreCursor(C){return this._activeBuffer.x=this._activeBuffer.savedX||0,this._activeBuffer.y=Math.max(this._activeBuffer.savedY-this._activeBuffer.ybase,0),this._curAttrData.fg=this._activeBuffer.savedCurAttrData.fg,this._curAttrData.bg=this._activeBuffer.savedCurAttrData.bg,this._charsetService.charset=this._savedCharset,this._activeBuffer.savedCharset&&(this._charsetService.charset=this._activeBuffer.savedCharset),this._restrictCursor(),!0}setTitle(C){return this._windowTitle=C,this._onTitleChange.fire(C),!0}setIconName(C){return this._iconName=C,!0}setOrReportIndexedColor(C){const w=[],E=C.split(";");for(;E.length>1;){const D=E.shift(),P=E.shift();if(/^\d+$/.exec(D)){const H=parseInt(D);if(O(H))if(P==="?")w.push({type:0,index:H});else{const U=(0,h.parseColor)(P);U&&w.push({type:1,index:H,color:U})}}}return w.length&&this._onColor.fire(w),!0}setHyperlink(C){const w=C.split(";");return!(w.length<2)&&(w[1]?this._createHyperlink(w[0],w[1]):!w[0]&&this._finishHyperlink())}_createHyperlink(C,w){this._getCurrentLinkId()&&this._finishHyperlink();const E=C.split(":");let D;const P=E.findIndex(H=>H.startsWith("id="));return P!==-1&&(D=E[P].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:D,uri:w}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(C,w){const E=C.split(";");for(let D=0;D=this._specialColors.length);++D,++w)if(E[D]==="?")this._onColor.fire([{type:0,index:this._specialColors[w]}]);else{const P=(0,h.parseColor)(E[D]);P&&this._onColor.fire([{type:1,index:this._specialColors[w],color:P}])}return!0}setOrReportFgColor(C){return this._setOrReportSpecialColor(C,0)}setOrReportBgColor(C){return this._setOrReportSpecialColor(C,1)}setOrReportCursorColor(C){return this._setOrReportSpecialColor(C,2)}restoreIndexedColor(C){if(!C)return this._onColor.fire([{type:2}]),!0;const w=[],E=C.split(";");for(let D=0;D=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._restrictCursor(),!0}tabSet(){return this._activeBuffer.tabs[this._activeBuffer.x]=!0,!0}reverseIndex(){if(this._restrictCursor(),this._activeBuffer.y===this._activeBuffer.scrollTop){const C=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,C,1),this._activeBuffer.lines.set(this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.getBlankLine(this._eraseAttrData())),this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom)}else this._activeBuffer.y--,this._restrictCursor();return!0}fullReset(){return this._parser.reset(),this._onRequestReset.fire(),!0}reset(){this._curAttrData=e.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=e.DEFAULT_ATTR_DATA.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=67108863&this._curAttrData.bg,this._eraseAttrDataInternal}setgLevel(C){return this._charsetService.setgLevel(C),!0}screenAlignmentPattern(){const C=new i.CellData;C.content=4194304|"E".charCodeAt(0),C.fg=this._curAttrData.fg,C.bg=this._curAttrData.bg,this._setCursor(0,0);for(let w=0;w(this._coreService.triggerDataEvent(`${n.C0.ESC}${P}${n.C0.ESC}\\`),!0))(C==='"q'?`P1$r${this._curAttrData.isProtected()?1:0}"q`:C==='"p'?'P1$r61;1"p':C==="r"?`P1$r${E.scrollTop+1};${E.scrollBottom+1}r`:C==="m"?"P1$r0m":C===" q"?`P1$r${{block:2,underline:4,bar:6}[D.cursorStyle]-(D.cursorBlink?1:0)} q`:"P0$r")}markRangeDirty(C,w){this._dirtyRowTracker.markRangeDirty(C,w)}}r.InputHandler=x;let T=class{constructor(M){this._bufferService=M,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(M){Mthis.end&&(this.end=M)}markRangeDirty(M,C){M>C&&(k=M,M=C,C=k),Mthis.end&&(this.end=C)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};function O(M){return 0<=M&&M<256}T=l([u(0,c.IBufferService)],T)},844:(I,r)=>{function a(l){for(const u of l)u.dispose();l.length=0}Object.defineProperty(r,"__esModule",{value:!0}),r.getDisposeArrayDisposable=r.disposeArray=r.toDisposable=r.MutableDisposable=r.Disposable=void 0,r.Disposable=class{constructor(){this._disposables=[],this._isDisposed=!1}dispose(){this._isDisposed=!0;for(const l of this._disposables)l.dispose();this._disposables.length=0}register(l){return this._disposables.push(l),l}unregister(l){const u=this._disposables.indexOf(l);u!==-1&&this._disposables.splice(u,1)}},r.MutableDisposable=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(l){var u;this._isDisposed||l===this._value||((u=this._value)===null||u===void 0||u.dispose(),this._value=l)}clear(){this.value=void 0}dispose(){var l;this._isDisposed=!0,(l=this._value)===null||l===void 0||l.dispose(),this._value=void 0}},r.toDisposable=function(l){return{dispose:l}},r.disposeArray=a,r.getDisposeArrayDisposable=function(l){return{dispose:()=>a(l)}}},1505:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.FourKeyMap=r.TwoKeyMap=void 0;class a{constructor(){this._data={}}set(u,n,d){this._data[u]||(this._data[u]={}),this._data[u][n]=d}get(u,n){return this._data[u]?this._data[u][n]:void 0}clear(){this._data={}}}r.TwoKeyMap=a,r.FourKeyMap=class{constructor(){this._data=new a}set(l,u,n,d,f){this._data.get(l,u)||this._data.set(l,u,new a),this._data.get(l,u).set(n,d,f)}get(l,u,n,d){var f;return(f=this._data.get(l,u))===null||f===void 0?void 0:f.get(n,d)}clear(){this._data.clear()}}},6114:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.isChromeOS=r.isLinux=r.isWindows=r.isIphone=r.isIpad=r.isMac=r.getSafariVersion=r.isSafari=r.isLegacyEdge=r.isFirefox=r.isNode=void 0,r.isNode=typeof navigator>"u";const a=r.isNode?"node":navigator.userAgent,l=r.isNode?"node":navigator.platform;r.isFirefox=a.includes("Firefox"),r.isLegacyEdge=a.includes("Edge"),r.isSafari=/^((?!chrome|android).)*safari/i.test(a),r.getSafariVersion=function(){if(!r.isSafari)return 0;const u=a.match(/Version\/(\d+)/);return u===null||u.length<2?0:parseInt(u[1])},r.isMac=["Macintosh","MacIntel","MacPPC","Mac68K"].includes(l),r.isIpad=l==="iPad",r.isIphone=l==="iPhone",r.isWindows=["Windows","Win16","Win32","WinCE"].includes(l),r.isLinux=l.indexOf("Linux")>=0,r.isChromeOS=/\bCrOS\b/.test(a)},6106:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.SortedList=void 0;let a=0;r.SortedList=class{constructor(l){this._getKey=l,this._array=[]}clear(){this._array.length=0}insert(l){this._array.length!==0?(a=this._search(this._getKey(l)),this._array.splice(a,0,l)):this._array.push(l)}delete(l){if(this._array.length===0)return!1;const u=this._getKey(l);if(u===void 0||(a=this._search(u),a===-1)||this._getKey(this._array[a])!==u)return!1;do if(this._array[a]===l)return this._array.splice(a,1),!0;while(++a=this._array.length)&&this._getKey(this._array[a])===l))do yield this._array[a];while(++a=this._array.length)&&this._getKey(this._array[a])===l))do u(this._array[a]);while(++a=u;){let d=u+n>>1;const f=this._getKey(this._array[d]);if(f>l)n=d-1;else{if(!(f0&&this._getKey(this._array[d-1])===l;)d--;return d}u=d+1}}return u}}},7226:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DebouncedIdleTask=r.IdleTaskQueue=r.PriorityTaskQueue=void 0;const l=a(6114);class u{constructor(){this._tasks=[],this._i=0}enqueue(f){this._tasks.push(f),this._start()}flush(){for(;this._is)return e-p<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(e-p))}ms`),void this._start();e=s}this.clear()}}class n extends u{_requestCallback(f){return setTimeout(()=>f(this._createDeadline(16)))}_cancelCallback(f){clearTimeout(f)}_createDeadline(f){const p=Date.now()+f;return{timeRemaining:()=>Math.max(0,p-Date.now())}}}r.PriorityTaskQueue=n,r.IdleTaskQueue=!l.isNode&&"requestIdleCallback"in window?class extends u{_requestCallback(d){return requestIdleCallback(d)}_cancelCallback(d){cancelIdleCallback(d)}}:n,r.DebouncedIdleTask=class{constructor(){this._queue=new r.IdleTaskQueue}set(d){this._queue.clear(),this._queue.enqueue(d)}flush(){this._queue.flush()}}},9282:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.updateWindowsModeWrappedState=void 0;const l=a(643);r.updateWindowsModeWrappedState=function(u){const n=u.buffer.lines.get(u.buffer.ybase+u.buffer.y-1),d=n==null?void 0:n.get(u.cols-1),f=u.buffer.lines.get(u.buffer.ybase+u.buffer.y);f&&d&&(f.isWrapped=d[l.CHAR_DATA_CODE_INDEX]!==l.NULL_CELL_CODE&&d[l.CHAR_DATA_CODE_INDEX]!==l.WHITESPACE_CELL_CODE)}},3734:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ExtendedAttrs=r.AttributeData=void 0;class a{constructor(){this.fg=0,this.bg=0,this.extended=new l}static toColorRGB(n){return[n>>>16&255,n>>>8&255,255&n]}static fromColorRGB(n){return(255&n[0])<<16|(255&n[1])<<8|255&n[2]}clone(){const n=new a;return n.fg=this.fg,n.bg=this.bg,n.extended=this.extended.clone(),n}isInverse(){return 67108864&this.fg}isBold(){return 134217728&this.fg}isUnderline(){return this.hasExtendedAttrs()&&this.extended.underlineStyle!==0?1:268435456&this.fg}isBlink(){return 536870912&this.fg}isInvisible(){return 1073741824&this.fg}isItalic(){return 67108864&this.bg}isDim(){return 134217728&this.bg}isStrikethrough(){return 2147483648&this.fg}isProtected(){return 536870912&this.bg}isOverline(){return 1073741824&this.bg}getFgColorMode(){return 50331648&this.fg}getBgColorMode(){return 50331648&this.bg}isFgRGB(){return(50331648&this.fg)==50331648}isBgRGB(){return(50331648&this.bg)==50331648}isFgPalette(){return(50331648&this.fg)==16777216||(50331648&this.fg)==33554432}isBgPalette(){return(50331648&this.bg)==16777216||(50331648&this.bg)==33554432}isFgDefault(){return(50331648&this.fg)==0}isBgDefault(){return(50331648&this.bg)==0}isAttributeDefault(){return this.fg===0&&this.bg===0}getFgColor(){switch(50331648&this.fg){case 16777216:case 33554432:return 255&this.fg;case 50331648:return 16777215&this.fg;default:return-1}}getBgColor(){switch(50331648&this.bg){case 16777216:case 33554432:return 255&this.bg;case 50331648:return 16777215&this.bg;default:return-1}}hasExtendedAttrs(){return 268435456&this.bg}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(268435456&this.bg&&~this.extended.underlineColor)switch(50331648&this.extended.underlineColor){case 16777216:case 33554432:return 255&this.extended.underlineColor;case 50331648:return 16777215&this.extended.underlineColor;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return 268435456&this.bg&&~this.extended.underlineColor?50331648&this.extended.underlineColor:this.getFgColorMode()}isUnderlineColorRGB(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==50331648:this.isFgRGB()}isUnderlineColorPalette(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==16777216||(50331648&this.extended.underlineColor)==33554432:this.isFgPalette()}isUnderlineColorDefault(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==0:this.isFgDefault()}getUnderlineStyle(){return 268435456&this.fg?268435456&this.bg?this.extended.underlineStyle:1:0}}r.AttributeData=a;class l{get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(n){this._ext=n}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(n){this._ext&=-469762049,this._ext|=n<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(n){this._ext&=-67108864,this._ext|=67108863&n}get urlId(){return this._urlId}set urlId(n){this._urlId=n}constructor(n=0,d=0){this._ext=0,this._urlId=0,this._ext=n,this._urlId=d}clone(){return new l(this._ext,this._urlId)}isEmpty(){return this.underlineStyle===0&&this._urlId===0}}r.ExtendedAttrs=l},9092:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Buffer=r.MAX_BUFFER_SIZE=void 0;const l=a(6349),u=a(7226),n=a(3734),d=a(8437),f=a(4634),p=a(511),_=a(643),e=a(4863),s=a(7116);r.MAX_BUFFER_SIZE=4294967295,r.Buffer=class{constructor(t,i,o){this._hasScrollback=t,this._optionsService=i,this._bufferService=o,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=d.DEFAULT_ATTR_DATA.clone(),this.savedCharset=s.DEFAULT_CHARSET,this.markers=[],this._nullCell=p.CellData.fromCharData([0,_.NULL_CELL_CHAR,_.NULL_CELL_WIDTH,_.NULL_CELL_CODE]),this._whitespaceCell=p.CellData.fromCharData([0,_.WHITESPACE_CELL_CHAR,_.WHITESPACE_CELL_WIDTH,_.WHITESPACE_CELL_CODE]),this._isClearing=!1,this._memoryCleanupQueue=new u.IdleTaskQueue,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new l.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(t){return t?(this._nullCell.fg=t.fg,this._nullCell.bg=t.bg,this._nullCell.extended=t.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new n.ExtendedAttrs),this._nullCell}getWhitespaceCell(t){return t?(this._whitespaceCell.fg=t.fg,this._whitespaceCell.bg=t.bg,this._whitespaceCell.extended=t.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new n.ExtendedAttrs),this._whitespaceCell}getBlankLine(t,i){return new d.BufferLine(this._bufferService.cols,this.getNullCell(t),i)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){const t=this.ybase+this.y-this.ydisp;return t>=0&&tr.MAX_BUFFER_SIZE?r.MAX_BUFFER_SIZE:i}fillViewportRows(t){if(this.lines.length===0){t===void 0&&(t=d.DEFAULT_ATTR_DATA);let i=this._rows;for(;i--;)this.lines.push(this.getBlankLine(t))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new l.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(t,i){const o=this.getNullCell(d.DEFAULT_ATTR_DATA);let c=0;const v=this._getCorrectBufferLength(i);if(v>this.lines.maxLength&&(this.lines.maxLength=v),this.lines.length>0){if(this._cols0&&this.lines.length<=this.ybase+this.y+m+1?(this.ybase--,m++,this.ydisp>0&&this.ydisp--):this.lines.push(new d.BufferLine(t,o)));else for(let h=this._rows;h>i;h--)this.lines.length>i+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(v0&&(this.lines.trimStart(h),this.ybase=Math.max(this.ybase-h,0),this.ydisp=Math.max(this.ydisp-h,0),this.savedY=Math.max(this.savedY-h,0)),this.lines.maxLength=v}this.x=Math.min(this.x,t-1),this.y=Math.min(this.y,i-1),m&&(this.y+=m),this.savedX=Math.min(this.savedX,t-1),this.scrollTop=0}if(this.scrollBottom=i-1,this._isReflowEnabled&&(this._reflow(t,i),this._cols>t))for(let m=0;m.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue(()=>this._batchedMemoryCleanup()))}_batchedMemoryCleanup(){let t=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,t=!1);let i=0;for(;this._memoryCleanupPosition100)return!0;return t}get _isReflowEnabled(){const t=this._optionsService.rawOptions.windowsPty;return t&&t.buildNumber?this._hasScrollback&&t.backend==="conpty"&&t.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(t,i){this._cols!==t&&(t>this._cols?this._reflowLarger(t,i):this._reflowSmaller(t,i))}_reflowLarger(t,i){const o=(0,f.reflowLargerGetLinesToRemove)(this.lines,this._cols,t,this.ybase+this.y,this.getNullCell(d.DEFAULT_ATTR_DATA));if(o.length>0){const c=(0,f.reflowLargerCreateNewLayout)(this.lines,o);(0,f.reflowLargerApplyNewLayout)(this.lines,c.layout),this._reflowLargerAdjustViewport(t,i,c.countRemoved)}}_reflowLargerAdjustViewport(t,i,o){const c=this.getNullCell(d.DEFAULT_ATTR_DATA);let v=o;for(;v-- >0;)this.ybase===0?(this.y>0&&this.y--,this.lines.length=0;m--){let h=this.lines.get(m);if(!h||!h.isWrapped&&h.getTrimmedLength()<=t)continue;const g=[h];for(;h.isWrapped&&m>0;)h=this.lines.get(--m),g.unshift(h);const b=this.ybase+this.y;if(b>=m&&b0&&(c.push({start:m+g.length+v,newLines:T}),v+=T.length),g.push(...T);let O=y.length-1,M=y[O];M===0&&(O--,M=y[O]);let C=g.length-k-1,w=L;for(;C>=0;){const D=Math.min(w,M);if(g[O]===void 0)break;if(g[O].copyCellsFrom(g[C],w-D,M-D,D,!0),M-=D,M===0&&(O--,M=y[O]),w-=D,w===0){C--;const P=Math.max(C,0);w=(0,f.getWrappedLineTrimmedLength)(g,P,this._cols)}}for(let D=0;D0;)this.ybase===0?this.y0){const m=[],h=[];for(let O=0;O=0;O--)if(y&&y.start>b+k){for(let M=y.newLines.length-1;M>=0;M--)this.lines.set(O--,y.newLines[M]);O++,m.push({index:b+1,amount:y.newLines.length}),k+=y.newLines.length,y=c[++L]}else this.lines.set(O,h[b--]);let x=0;for(let O=m.length-1;O>=0;O--)m[O].index+=x,this.lines.onInsertEmitter.fire(m[O]),x+=m[O].amount;const T=Math.max(0,g+v-this.lines.maxLength);T>0&&this.lines.onTrimEmitter.fire(T)}}translateBufferLineToString(t,i,o=0,c){const v=this.lines.get(t);return v?v.translateToString(i,o,c):""}getWrappedRangeForLine(t){let i=t,o=t;for(;i>0&&this.lines.get(i).isWrapped;)i--;for(;o+10;);return t>=this._cols?this._cols-1:t<0?0:t}nextStop(t){for(t==null&&(t=this.x);!this.tabs[++t]&&t=this._cols?this._cols-1:t<0?0:t}clearMarkers(t){this._isClearing=!0;for(let i=0;i{i.line-=o,i.line<0&&i.dispose()})),i.register(this.lines.onInsert(o=>{i.line>=o.index&&(i.line+=o.amount)})),i.register(this.lines.onDelete(o=>{i.line>=o.index&&i.lineo.index&&(i.line-=o.amount)})),i.register(i.onDispose(()=>this._removeMarker(i))),i}_removeMarker(t){this._isClearing||this.markers.splice(this.markers.indexOf(t),1)}}},8437:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferLine=r.DEFAULT_ATTR_DATA=void 0;const l=a(3734),u=a(511),n=a(643),d=a(482);r.DEFAULT_ATTR_DATA=Object.freeze(new l.AttributeData);let f=0;class p{constructor(e,s,t=!1){this.isWrapped=t,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(3*e);const i=s||u.CellData.fromCharData([0,n.NULL_CELL_CHAR,n.NULL_CELL_WIDTH,n.NULL_CELL_CODE]);for(let o=0;o>22,2097152&s?this._combined[e].charCodeAt(this._combined[e].length-1):t]}set(e,s){this._data[3*e+1]=s[n.CHAR_DATA_ATTR_INDEX],s[n.CHAR_DATA_CHAR_INDEX].length>1?(this._combined[e]=s[1],this._data[3*e+0]=2097152|e|s[n.CHAR_DATA_WIDTH_INDEX]<<22):this._data[3*e+0]=s[n.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|s[n.CHAR_DATA_WIDTH_INDEX]<<22}getWidth(e){return this._data[3*e+0]>>22}hasWidth(e){return 12582912&this._data[3*e+0]}getFg(e){return this._data[3*e+1]}getBg(e){return this._data[3*e+2]}hasContent(e){return 4194303&this._data[3*e+0]}getCodePoint(e){const s=this._data[3*e+0];return 2097152&s?this._combined[e].charCodeAt(this._combined[e].length-1):2097151&s}isCombined(e){return 2097152&this._data[3*e+0]}getString(e){const s=this._data[3*e+0];return 2097152&s?this._combined[e]:2097151&s?(0,d.stringFromCodePoint)(2097151&s):""}isProtected(e){return 536870912&this._data[3*e+2]}loadCell(e,s){return f=3*e,s.content=this._data[f+0],s.fg=this._data[f+1],s.bg=this._data[f+2],2097152&s.content&&(s.combinedData=this._combined[e]),268435456&s.bg&&(s.extended=this._extendedAttrs[e]),s}setCell(e,s){2097152&s.content&&(this._combined[e]=s.combinedData),268435456&s.bg&&(this._extendedAttrs[e]=s.extended),this._data[3*e+0]=s.content,this._data[3*e+1]=s.fg,this._data[3*e+2]=s.bg}setCellFromCodePoint(e,s,t,i,o,c){268435456&o&&(this._extendedAttrs[e]=c),this._data[3*e+0]=s|t<<22,this._data[3*e+1]=i,this._data[3*e+2]=o}addCodepointToCell(e,s){let t=this._data[3*e+0];2097152&t?this._combined[e]+=(0,d.stringFromCodePoint)(s):(2097151&t?(this._combined[e]=(0,d.stringFromCodePoint)(2097151&t)+(0,d.stringFromCodePoint)(s),t&=-2097152,t|=2097152):t=s|4194304,this._data[3*e+0]=t)}insertCells(e,s,t,i){if((e%=this.length)&&this.getWidth(e-1)===2&&this.setCellFromCodePoint(e-1,0,1,(i==null?void 0:i.fg)||0,(i==null?void 0:i.bg)||0,(i==null?void 0:i.extended)||new l.ExtendedAttrs),s=0;--c)this.setCell(e+s+c,this.loadCell(e+c,o));for(let c=0;cthis.length){if(this._data.buffer.byteLength>=4*t)this._data=new Uint32Array(this._data.buffer,0,t);else{const i=new Uint32Array(t);i.set(this._data),this._data=i}for(let i=this.length;i=e&&delete this._combined[v]}const o=Object.keys(this._extendedAttrs);for(let c=0;c=e&&delete this._extendedAttrs[v]}}return this.length=e,4*t*2=0;--e)if(4194303&this._data[3*e+0])return e+(this._data[3*e+0]>>22);return 0}getNoBgTrimmedLength(){for(let e=this.length-1;e>=0;--e)if(4194303&this._data[3*e+0]||50331648&this._data[3*e+2])return e+(this._data[3*e+0]>>22);return 0}copyCellsFrom(e,s,t,i,o){const c=e._data;if(o)for(let m=i-1;m>=0;m--){for(let h=0;h<3;h++)this._data[3*(t+m)+h]=c[3*(s+m)+h];268435456&c[3*(s+m)+2]&&(this._extendedAttrs[t+m]=e._extendedAttrs[s+m])}else for(let m=0;m=s&&(this._combined[h-s+t]=e._combined[h])}}translateToString(e=!1,s=0,t=this.length){e&&(t=Math.min(t,this.getTrimmedLength()));let i="";for(;s>22||1}return i}}r.BufferLine=p},4841:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.getRangeLength=void 0,r.getRangeLength=function(a,l){if(a.start.y>a.end.y)throw new Error(`Buffer range end (${a.end.x}, ${a.end.y}) cannot be before start (${a.start.x}, ${a.start.y})`);return l*(a.end.y-a.start.y)+(a.end.x-a.start.x+1)}},4634:(I,r)=>{function a(l,u,n){if(u===l.length-1)return l[u].getTrimmedLength();const d=!l[u].hasContent(n-1)&&l[u].getWidth(n-1)===1,f=l[u+1].getWidth(0)===2;return d&&f?n-1:n}Object.defineProperty(r,"__esModule",{value:!0}),r.getWrappedLineTrimmedLength=r.reflowSmallerGetNewLineLengths=r.reflowLargerApplyNewLayout=r.reflowLargerCreateNewLayout=r.reflowLargerGetLinesToRemove=void 0,r.reflowLargerGetLinesToRemove=function(l,u,n,d,f){const p=[];for(let _=0;_=_&&d0&&(h>i||t[h].getTrimmedLength()===0);h--)m++;m>0&&(p.push(_+t.length-m),p.push(m)),_+=t.length-1}return p},r.reflowLargerCreateNewLayout=function(l,u){const n=[];let d=0,f=u[d],p=0;for(let _=0;_a(l,t,u)).reduce((s,t)=>s+t);let p=0,_=0,e=0;for(;es&&(p-=s,_++);const t=l[_].getWidth(p-1)===2;t&&p--;const i=t?n-1:n;d.push(i),e+=i}return d},r.getWrappedLineTrimmedLength=a},5295:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferSet=void 0;const l=a(8460),u=a(844),n=a(9092);class d extends u.Disposable{constructor(p,_){super(),this._optionsService=p,this._bufferService=_,this._onBufferActivate=this.register(new l.EventEmitter),this.onBufferActivate=this._onBufferActivate.event,this.reset(),this.register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.resize(this._bufferService.cols,this._bufferService.rows))),this.register(this._optionsService.onSpecificOptionChange("tabStopWidth",()=>this.setupTabStops()))}reset(){this._normal=new n.Buffer(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new n.Buffer(!1,this._optionsService,this._bufferService),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}),this.setupTabStops()}get alt(){return this._alt}get active(){return this._activeBuffer}get normal(){return this._normal}activateNormalBuffer(){this._activeBuffer!==this._normal&&(this._normal.x=this._alt.x,this._normal.y=this._alt.y,this._alt.clearAllMarkers(),this._alt.clear(),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}))}activateAltBuffer(p){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(p),this._alt.x=this._normal.x,this._alt.y=this._normal.y,this._activeBuffer=this._alt,this._onBufferActivate.fire({activeBuffer:this._alt,inactiveBuffer:this._normal}))}resize(p,_){this._normal.resize(p,_),this._alt.resize(p,_),this.setupTabStops(p)}setupTabStops(p){this._normal.setupTabStops(p),this._alt.setupTabStops(p)}}r.BufferSet=d},511:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CellData=void 0;const l=a(482),u=a(643),n=a(3734);class d extends n.AttributeData{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new n.ExtendedAttrs,this.combinedData=""}static fromCharData(p){const _=new d;return _.setFromCharData(p),_}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?(0,l.stringFromCodePoint)(2097151&this.content):""}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(p){this.fg=p[u.CHAR_DATA_ATTR_INDEX],this.bg=0;let _=!1;if(p[u.CHAR_DATA_CHAR_INDEX].length>2)_=!0;else if(p[u.CHAR_DATA_CHAR_INDEX].length===2){const e=p[u.CHAR_DATA_CHAR_INDEX].charCodeAt(0);if(55296<=e&&e<=56319){const s=p[u.CHAR_DATA_CHAR_INDEX].charCodeAt(1);56320<=s&&s<=57343?this.content=1024*(e-55296)+s-56320+65536|p[u.CHAR_DATA_WIDTH_INDEX]<<22:_=!0}else _=!0}else this.content=p[u.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|p[u.CHAR_DATA_WIDTH_INDEX]<<22;_&&(this.combinedData=p[u.CHAR_DATA_CHAR_INDEX],this.content=2097152|p[u.CHAR_DATA_WIDTH_INDEX]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}r.CellData=d},643:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.WHITESPACE_CELL_CODE=r.WHITESPACE_CELL_WIDTH=r.WHITESPACE_CELL_CHAR=r.NULL_CELL_CODE=r.NULL_CELL_WIDTH=r.NULL_CELL_CHAR=r.CHAR_DATA_CODE_INDEX=r.CHAR_DATA_WIDTH_INDEX=r.CHAR_DATA_CHAR_INDEX=r.CHAR_DATA_ATTR_INDEX=r.DEFAULT_EXT=r.DEFAULT_ATTR=r.DEFAULT_COLOR=void 0,r.DEFAULT_COLOR=0,r.DEFAULT_ATTR=256|r.DEFAULT_COLOR<<9,r.DEFAULT_EXT=0,r.CHAR_DATA_ATTR_INDEX=0,r.CHAR_DATA_CHAR_INDEX=1,r.CHAR_DATA_WIDTH_INDEX=2,r.CHAR_DATA_CODE_INDEX=3,r.NULL_CELL_CHAR="",r.NULL_CELL_WIDTH=1,r.NULL_CELL_CODE=0,r.WHITESPACE_CELL_CHAR=" ",r.WHITESPACE_CELL_WIDTH=1,r.WHITESPACE_CELL_CODE=32},4863:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Marker=void 0;const l=a(8460),u=a(844);class n{get id(){return this._id}constructor(f){this.line=f,this.isDisposed=!1,this._disposables=[],this._id=n._nextId++,this._onDispose=this.register(new l.EventEmitter),this.onDispose=this._onDispose.event}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),(0,u.disposeArray)(this._disposables),this._disposables.length=0)}register(f){return this._disposables.push(f),f}}r.Marker=n,n._nextId=1},7116:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DEFAULT_CHARSET=r.CHARSETS=void 0,r.CHARSETS={},r.DEFAULT_CHARSET=r.CHARSETS.B,r.CHARSETS[0]={"`":"◆",a:"▒",b:"␉",c:"␌",d:"␍",e:"␊",f:"°",g:"±",h:"␤",i:"␋",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"},r.CHARSETS.A={"#":"£"},r.CHARSETS.B=void 0,r.CHARSETS[4]={"#":"£","@":"¾","[":"ij","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"},r.CHARSETS.C=r.CHARSETS[5]={"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},r.CHARSETS.R={"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"},r.CHARSETS.Q={"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"},r.CHARSETS.K={"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"},r.CHARSETS.Y={"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"},r.CHARSETS.E=r.CHARSETS[6]={"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"},r.CHARSETS.Z={"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"},r.CHARSETS.H=r.CHARSETS[7]={"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},r.CHARSETS["="]={"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}},2584:(I,r)=>{var a,l,u;Object.defineProperty(r,"__esModule",{value:!0}),r.C1_ESCAPED=r.C1=r.C0=void 0,function(n){n.NUL="\0",n.SOH="",n.STX="",n.ETX="",n.EOT="",n.ENQ="",n.ACK="",n.BEL="\x07",n.BS="\b",n.HT=" ",n.LF=` +`,n.VT="\v",n.FF="\f",n.CR="\r",n.SO="",n.SI="",n.DLE="",n.DC1="",n.DC2="",n.DC3="",n.DC4="",n.NAK="",n.SYN="",n.ETB="",n.CAN="",n.EM="",n.SUB="",n.ESC="\x1B",n.FS="",n.GS="",n.RS="",n.US="",n.SP=" ",n.DEL=""}(a||(r.C0=a={})),function(n){n.PAD="€",n.HOP="",n.BPH="‚",n.NBH="ƒ",n.IND="„",n.NEL="…",n.SSA="†",n.ESA="‡",n.HTS="ˆ",n.HTJ="‰",n.VTS="Š",n.PLD="‹",n.PLU="Œ",n.RI="",n.SS2="Ž",n.SS3="",n.DCS="",n.PU1="‘",n.PU2="’",n.STS="“",n.CCH="”",n.MW="•",n.SPA="–",n.EPA="—",n.SOS="˜",n.SGCI="™",n.SCI="š",n.CSI="›",n.ST="œ",n.OSC="",n.PM="ž",n.APC="Ÿ"}(l||(r.C1=l={})),function(n){n.ST=`${a.ESC}\\`}(u||(r.C1_ESCAPED=u={}))},7399:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.evaluateKeyboardEvent=void 0;const l=a(2584),u={48:["0",")"],49:["1","!"],50:["2","@"],51:["3","#"],52:["4","$"],53:["5","%"],54:["6","^"],55:["7","&"],56:["8","*"],57:["9","("],186:[";",":"],187:["=","+"],188:[",","<"],189:["-","_"],190:[".",">"],191:["/","?"],192:["`","~"],219:["[","{"],220:["\\","|"],221:["]","}"],222:["'",'"']};r.evaluateKeyboardEvent=function(n,d,f,p){const _={type:0,cancel:!1,key:void 0},e=(n.shiftKey?1:0)|(n.altKey?2:0)|(n.ctrlKey?4:0)|(n.metaKey?8:0);switch(n.keyCode){case 0:n.key==="UIKeyInputUpArrow"?_.key=d?l.C0.ESC+"OA":l.C0.ESC+"[A":n.key==="UIKeyInputLeftArrow"?_.key=d?l.C0.ESC+"OD":l.C0.ESC+"[D":n.key==="UIKeyInputRightArrow"?_.key=d?l.C0.ESC+"OC":l.C0.ESC+"[C":n.key==="UIKeyInputDownArrow"&&(_.key=d?l.C0.ESC+"OB":l.C0.ESC+"[B");break;case 8:if(n.altKey){_.key=l.C0.ESC+l.C0.DEL;break}_.key=l.C0.DEL;break;case 9:if(n.shiftKey){_.key=l.C0.ESC+"[Z";break}_.key=l.C0.HT,_.cancel=!0;break;case 13:_.key=n.altKey?l.C0.ESC+l.C0.CR:l.C0.CR,_.cancel=!0;break;case 27:_.key=l.C0.ESC,n.altKey&&(_.key=l.C0.ESC+l.C0.ESC),_.cancel=!0;break;case 37:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"D",_.key===l.C0.ESC+"[1;3D"&&(_.key=l.C0.ESC+(f?"b":"[1;5D"))):_.key=d?l.C0.ESC+"OD":l.C0.ESC+"[D";break;case 39:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"C",_.key===l.C0.ESC+"[1;3C"&&(_.key=l.C0.ESC+(f?"f":"[1;5C"))):_.key=d?l.C0.ESC+"OC":l.C0.ESC+"[C";break;case 38:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"A",f||_.key!==l.C0.ESC+"[1;3A"||(_.key=l.C0.ESC+"[1;5A")):_.key=d?l.C0.ESC+"OA":l.C0.ESC+"[A";break;case 40:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"B",f||_.key!==l.C0.ESC+"[1;3B"||(_.key=l.C0.ESC+"[1;5B")):_.key=d?l.C0.ESC+"OB":l.C0.ESC+"[B";break;case 45:n.shiftKey||n.ctrlKey||(_.key=l.C0.ESC+"[2~");break;case 46:_.key=e?l.C0.ESC+"[3;"+(e+1)+"~":l.C0.ESC+"[3~";break;case 36:_.key=e?l.C0.ESC+"[1;"+(e+1)+"H":d?l.C0.ESC+"OH":l.C0.ESC+"[H";break;case 35:_.key=e?l.C0.ESC+"[1;"+(e+1)+"F":d?l.C0.ESC+"OF":l.C0.ESC+"[F";break;case 33:n.shiftKey?_.type=2:n.ctrlKey?_.key=l.C0.ESC+"[5;"+(e+1)+"~":_.key=l.C0.ESC+"[5~";break;case 34:n.shiftKey?_.type=3:n.ctrlKey?_.key=l.C0.ESC+"[6;"+(e+1)+"~":_.key=l.C0.ESC+"[6~";break;case 112:_.key=e?l.C0.ESC+"[1;"+(e+1)+"P":l.C0.ESC+"OP";break;case 113:_.key=e?l.C0.ESC+"[1;"+(e+1)+"Q":l.C0.ESC+"OQ";break;case 114:_.key=e?l.C0.ESC+"[1;"+(e+1)+"R":l.C0.ESC+"OR";break;case 115:_.key=e?l.C0.ESC+"[1;"+(e+1)+"S":l.C0.ESC+"OS";break;case 116:_.key=e?l.C0.ESC+"[15;"+(e+1)+"~":l.C0.ESC+"[15~";break;case 117:_.key=e?l.C0.ESC+"[17;"+(e+1)+"~":l.C0.ESC+"[17~";break;case 118:_.key=e?l.C0.ESC+"[18;"+(e+1)+"~":l.C0.ESC+"[18~";break;case 119:_.key=e?l.C0.ESC+"[19;"+(e+1)+"~":l.C0.ESC+"[19~";break;case 120:_.key=e?l.C0.ESC+"[20;"+(e+1)+"~":l.C0.ESC+"[20~";break;case 121:_.key=e?l.C0.ESC+"[21;"+(e+1)+"~":l.C0.ESC+"[21~";break;case 122:_.key=e?l.C0.ESC+"[23;"+(e+1)+"~":l.C0.ESC+"[23~";break;case 123:_.key=e?l.C0.ESC+"[24;"+(e+1)+"~":l.C0.ESC+"[24~";break;default:if(!n.ctrlKey||n.shiftKey||n.altKey||n.metaKey)if(f&&!p||!n.altKey||n.metaKey)!f||n.altKey||n.ctrlKey||n.shiftKey||!n.metaKey?n.key&&!n.ctrlKey&&!n.altKey&&!n.metaKey&&n.keyCode>=48&&n.key.length===1?_.key=n.key:n.key&&n.ctrlKey&&(n.key==="_"&&(_.key=l.C0.US),n.key==="@"&&(_.key=l.C0.NUL)):n.keyCode===65&&(_.type=1);else{const s=u[n.keyCode],t=s==null?void 0:s[n.shiftKey?1:0];if(t)_.key=l.C0.ESC+t;else if(n.keyCode>=65&&n.keyCode<=90){const i=n.ctrlKey?n.keyCode-64:n.keyCode+32;let o=String.fromCharCode(i);n.shiftKey&&(o=o.toUpperCase()),_.key=l.C0.ESC+o}else if(n.keyCode===32)_.key=l.C0.ESC+(n.ctrlKey?l.C0.NUL:" ");else if(n.key==="Dead"&&n.code.startsWith("Key")){let i=n.code.slice(3,4);n.shiftKey||(i=i.toLowerCase()),_.key=l.C0.ESC+i,_.cancel=!0}}else n.keyCode>=65&&n.keyCode<=90?_.key=String.fromCharCode(n.keyCode-64):n.keyCode===32?_.key=l.C0.NUL:n.keyCode>=51&&n.keyCode<=55?_.key=String.fromCharCode(n.keyCode-51+27):n.keyCode===56?_.key=l.C0.DEL:n.keyCode===219?_.key=l.C0.ESC:n.keyCode===220?_.key=l.C0.FS:n.keyCode===221&&(_.key=l.C0.GS)}return _}},482:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Utf8ToUtf32=r.StringToUtf32=r.utf32ToString=r.stringFromCodePoint=void 0,r.stringFromCodePoint=function(a){return a>65535?(a-=65536,String.fromCharCode(55296+(a>>10))+String.fromCharCode(a%1024+56320)):String.fromCharCode(a)},r.utf32ToString=function(a,l=0,u=a.length){let n="";for(let d=l;d65535?(f-=65536,n+=String.fromCharCode(55296+(f>>10))+String.fromCharCode(f%1024+56320)):n+=String.fromCharCode(f)}return n},r.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(a,l){const u=a.length;if(!u)return 0;let n=0,d=0;if(this._interim){const f=a.charCodeAt(d++);56320<=f&&f<=57343?l[n++]=1024*(this._interim-55296)+f-56320+65536:(l[n++]=this._interim,l[n++]=f),this._interim=0}for(let f=d;f=u)return this._interim=p,n;const _=a.charCodeAt(f);56320<=_&&_<=57343?l[n++]=1024*(p-55296)+_-56320+65536:(l[n++]=p,l[n++]=_)}else p!==65279&&(l[n++]=p)}return n}},r.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(a,l){const u=a.length;if(!u)return 0;let n,d,f,p,_=0,e=0,s=0;if(this.interim[0]){let o=!1,c=this.interim[0];c&=(224&c)==192?31:(240&c)==224?15:7;let v,m=0;for(;(v=63&this.interim[++m])&&m<4;)c<<=6,c|=v;const h=(224&this.interim[0])==192?2:(240&this.interim[0])==224?3:4,g=h-m;for(;s=u)return 0;if(v=a[s++],(192&v)!=128){s--,o=!0;break}this.interim[m++]=v,c<<=6,c|=63&v}o||(h===2?c<128?s--:l[_++]=c:h===3?c<2048||c>=55296&&c<=57343||c===65279||(l[_++]=c):c<65536||c>1114111||(l[_++]=c)),this.interim.fill(0)}const t=u-4;let i=s;for(;i=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(e=(31&n)<<6|63&d,e<128){i--;continue}l[_++]=e}else if((240&n)==224){if(i>=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,_;if(f=a[i++],(192&f)!=128){i--;continue}if(e=(15&n)<<12|(63&d)<<6|63&f,e<2048||e>=55296&&e<=57343||e===65279)continue;l[_++]=e}else if((248&n)==240){if(i>=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,_;if(f=a[i++],(192&f)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,this.interim[2]=f,_;if(p=a[i++],(192&p)!=128){i--;continue}if(e=(7&n)<<18|(63&d)<<12|(63&f)<<6|63&p,e<65536||e>1114111)continue;l[_++]=e}}return _}}},225:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeV6=void 0;const a=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531]],l=[[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]];let u;r.UnicodeV6=class{constructor(){if(this.version="6",!u){u=new Uint8Array(65536),u.fill(1),u[0]=0,u.fill(0,1,32),u.fill(0,127,160),u.fill(2,4352,4448),u[9001]=2,u[9002]=2,u.fill(2,11904,42192),u[12351]=1,u.fill(2,44032,55204),u.fill(2,63744,64256),u.fill(2,65040,65050),u.fill(2,65072,65136),u.fill(2,65280,65377),u.fill(2,65504,65511);for(let n=0;nf[e][1])return!1;for(;e>=_;)if(p=_+e>>1,d>f[p][1])_=p+1;else{if(!(d=131072&&n<=196605||n>=196608&&n<=262141?2:1}}},5981:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.WriteBuffer=void 0;const l=a(8460),u=a(844);class n extends u.Disposable{constructor(f){super(),this._action=f,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this.register(new l.EventEmitter),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(f,p){if(p!==void 0&&this._syncCalls>p)return void(this._syncCalls=0);if(this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;let _;for(this._isSyncWriting=!0;_=this._writeBuffer.shift();){this._action(_);const e=this._callbacks.shift();e&&e()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(f,p){if(this._pendingData>5e7)throw new Error("write data discarded, use flow control to avoid losing data");if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput)return this._didUserInput=!1,this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(p),void this._innerWrite();setTimeout(()=>this._innerWrite())}this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(p)}_innerWrite(f=0,p=!0){const _=f||Date.now();for(;this._writeBuffer.length>this._bufferOffset;){const e=this._writeBuffer[this._bufferOffset],s=this._action(e,p);if(s){const i=o=>Date.now()-_>=12?setTimeout(()=>this._innerWrite(0,o)):this._innerWrite(_,o);return void s.catch(o=>(queueMicrotask(()=>{throw o}),Promise.resolve(!1))).then(i)}const t=this._callbacks[this._bufferOffset];if(t&&t(),this._bufferOffset++,this._pendingData-=e.length,Date.now()-_>=12)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>50&&(this._writeBuffer=this._writeBuffer.slice(this._bufferOffset),this._callbacks=this._callbacks.slice(this._bufferOffset),this._bufferOffset=0),setTimeout(()=>this._innerWrite())):(this._writeBuffer.length=0,this._callbacks.length=0,this._pendingData=0,this._bufferOffset=0),this._onWriteParsed.fire()}}r.WriteBuffer=n},5941:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.toRgbString=r.parseColor=void 0;const a=/^([\da-f])\/([\da-f])\/([\da-f])$|^([\da-f]{2})\/([\da-f]{2})\/([\da-f]{2})$|^([\da-f]{3})\/([\da-f]{3})\/([\da-f]{3})$|^([\da-f]{4})\/([\da-f]{4})\/([\da-f]{4})$/,l=/^[\da-f]+$/;function u(n,d){const f=n.toString(16),p=f.length<2?"0"+f:f;switch(d){case 4:return f[0];case 8:return p;case 12:return(p+p).slice(0,3);default:return p+p}}r.parseColor=function(n){if(!n)return;let d=n.toLowerCase();if(d.indexOf("rgb:")===0){d=d.slice(4);const f=a.exec(d);if(f){const p=f[1]?15:f[4]?255:f[7]?4095:65535;return[Math.round(parseInt(f[1]||f[4]||f[7]||f[10],16)/p*255),Math.round(parseInt(f[2]||f[5]||f[8]||f[11],16)/p*255),Math.round(parseInt(f[3]||f[6]||f[9]||f[12],16)/p*255)]}}else if(d.indexOf("#")===0&&(d=d.slice(1),l.exec(d)&&[3,6,9,12].includes(d.length))){const f=d.length/3,p=[0,0,0];for(let _=0;_<3;++_){const e=parseInt(d.slice(f*_,f*_+f),16);p[_]=f===1?e<<4:f===2?e:f===3?e>>4:e>>8}return p}},r.toRgbString=function(n,d=16){const[f,p,_]=n;return`rgb:${u(f,d)}/${u(p,d)}/${u(_,d)}`}},5770:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.PAYLOAD_LIMIT=void 0,r.PAYLOAD_LIMIT=1e7},6351:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DcsHandler=r.DcsParser=void 0;const l=a(482),u=a(8742),n=a(5770),d=[];r.DcsParser=class{constructor(){this._handlers=Object.create(null),this._active=d,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=d}registerHandler(p,_){this._handlers[p]===void 0&&(this._handlers[p]=[]);const e=this._handlers[p];return e.push(_),{dispose:()=>{const s=e.indexOf(_);s!==-1&&e.splice(s,1)}}}clearHandler(p){this._handlers[p]&&delete this._handlers[p]}setHandlerFallback(p){this._handlerFb=p}reset(){if(this._active.length)for(let p=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;p>=0;--p)this._active[p].unhook(!1);this._stack.paused=!1,this._active=d,this._ident=0}hook(p,_){if(this.reset(),this._ident=p,this._active=this._handlers[p]||d,this._active.length)for(let e=this._active.length-1;e>=0;e--)this._active[e].hook(_);else this._handlerFb(this._ident,"HOOK",_)}put(p,_,e){if(this._active.length)for(let s=this._active.length-1;s>=0;s--)this._active[s].put(p,_,e);else this._handlerFb(this._ident,"PUT",(0,l.utf32ToString)(p,_,e))}unhook(p,_=!0){if(this._active.length){let e=!1,s=this._active.length-1,t=!1;if(this._stack.paused&&(s=this._stack.loopPosition-1,e=_,t=this._stack.fallThrough,this._stack.paused=!1),!t&&e===!1){for(;s>=0&&(e=this._active[s].unhook(p),e!==!0);s--)if(e instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!1,e;s--}for(;s>=0;s--)if(e=this._active[s].unhook(!1),e instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!0,e}else this._handlerFb(this._ident,"UNHOOK",p);this._active=d,this._ident=0}};const f=new u.Params;f.addParam(0),r.DcsHandler=class{constructor(p){this._handler=p,this._data="",this._params=f,this._hitLimit=!1}hook(p){this._params=p.length>1||p.params[0]?p.clone():f,this._data="",this._hitLimit=!1}put(p,_,e){this._hitLimit||(this._data+=(0,l.utf32ToString)(p,_,e),this._data.length>n.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}unhook(p){let _=!1;if(this._hitLimit)_=!1;else if(p&&(_=this._handler(this._data,this._params),_ instanceof Promise))return _.then(e=>(this._params=f,this._data="",this._hitLimit=!1,e));return this._params=f,this._data="",this._hitLimit=!1,_}}},2015:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.EscapeSequenceParser=r.VT500_TRANSITION_TABLE=r.TransitionTable=void 0;const l=a(844),u=a(8742),n=a(6242),d=a(6351);class f{constructor(s){this.table=new Uint8Array(s)}setDefault(s,t){this.table.fill(s<<4|t)}add(s,t,i,o){this.table[t<<8|s]=i<<4|o}addMany(s,t,i,o){for(let c=0;ch),t=(m,h)=>s.slice(m,h),i=t(32,127),o=t(0,24);o.push(25),o.push.apply(o,t(28,32));const c=t(0,14);let v;for(v in e.setDefault(1,0),e.addMany(i,0,2,0),c)e.addMany([24,26,153,154],v,3,0),e.addMany(t(128,144),v,3,0),e.addMany(t(144,152),v,3,0),e.add(156,v,0,0),e.add(27,v,11,1),e.add(157,v,4,8),e.addMany([152,158,159],v,0,7),e.add(155,v,11,3),e.add(144,v,11,9);return e.addMany(o,0,3,0),e.addMany(o,1,3,1),e.add(127,1,0,1),e.addMany(o,8,0,8),e.addMany(o,3,3,3),e.add(127,3,0,3),e.addMany(o,4,3,4),e.add(127,4,0,4),e.addMany(o,6,3,6),e.addMany(o,5,3,5),e.add(127,5,0,5),e.addMany(o,2,3,2),e.add(127,2,0,2),e.add(93,1,4,8),e.addMany(i,8,5,8),e.add(127,8,5,8),e.addMany([156,27,24,26,7],8,6,0),e.addMany(t(28,32),8,0,8),e.addMany([88,94,95],1,0,7),e.addMany(i,7,0,7),e.addMany(o,7,0,7),e.add(156,7,0,0),e.add(127,7,0,7),e.add(91,1,11,3),e.addMany(t(64,127),3,7,0),e.addMany(t(48,60),3,8,4),e.addMany([60,61,62,63],3,9,4),e.addMany(t(48,60),4,8,4),e.addMany(t(64,127),4,7,0),e.addMany([60,61,62,63],4,0,6),e.addMany(t(32,64),6,0,6),e.add(127,6,0,6),e.addMany(t(64,127),6,0,0),e.addMany(t(32,48),3,9,5),e.addMany(t(32,48),5,9,5),e.addMany(t(48,64),5,0,6),e.addMany(t(64,127),5,7,0),e.addMany(t(32,48),4,9,5),e.addMany(t(32,48),1,9,2),e.addMany(t(32,48),2,9,2),e.addMany(t(48,127),2,10,0),e.addMany(t(48,80),1,10,0),e.addMany(t(81,88),1,10,0),e.addMany([89,90,92],1,10,0),e.addMany(t(96,127),1,10,0),e.add(80,1,11,9),e.addMany(o,9,0,9),e.add(127,9,0,9),e.addMany(t(28,32),9,0,9),e.addMany(t(32,48),9,9,12),e.addMany(t(48,60),9,8,10),e.addMany([60,61,62,63],9,9,10),e.addMany(o,11,0,11),e.addMany(t(32,128),11,0,11),e.addMany(t(28,32),11,0,11),e.addMany(o,10,0,10),e.add(127,10,0,10),e.addMany(t(28,32),10,0,10),e.addMany(t(48,60),10,8,10),e.addMany([60,61,62,63],10,0,11),e.addMany(t(32,48),10,9,12),e.addMany(o,12,0,12),e.add(127,12,0,12),e.addMany(t(28,32),12,0,12),e.addMany(t(32,48),12,9,12),e.addMany(t(48,64),12,0,11),e.addMany(t(64,127),12,12,13),e.addMany(t(64,127),10,12,13),e.addMany(t(64,127),9,12,13),e.addMany(o,13,13,13),e.addMany(i,13,13,13),e.add(127,13,0,13),e.addMany([27,156,24,26],13,14,0),e.add(p,0,2,0),e.add(p,8,5,8),e.add(p,6,0,6),e.add(p,11,0,11),e.add(p,13,13,13),e}();class _ extends l.Disposable{constructor(s=r.VT500_TRANSITION_TABLE){super(),this._transitions=s,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new u.Params,this._params.addParam(0),this._collect=0,this.precedingCodepoint=0,this._printHandlerFb=(t,i,o)=>{},this._executeHandlerFb=t=>{},this._csiHandlerFb=(t,i)=>{},this._escHandlerFb=t=>{},this._errorHandlerFb=t=>t,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this.register((0,l.toDisposable)(()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)})),this._oscParser=this.register(new n.OscParser),this._dcsParser=this.register(new d.DcsParser),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:"\\"},()=>!0)}_identifier(s,t=[64,126]){let i=0;if(s.prefix){if(s.prefix.length>1)throw new Error("only one byte as prefix supported");if(i=s.prefix.charCodeAt(0),i&&60>i||i>63)throw new Error("prefix must be in range 0x3c .. 0x3f")}if(s.intermediates){if(s.intermediates.length>2)throw new Error("only two bytes as intermediates are supported");for(let c=0;cv||v>47)throw new Error("intermediate must be in range 0x20 .. 0x2f");i<<=8,i|=v}}if(s.final.length!==1)throw new Error("final must be a single byte");const o=s.final.charCodeAt(0);if(t[0]>o||o>t[1])throw new Error(`final must be in range ${t[0]} .. ${t[1]}`);return i<<=8,i|=o,i}identToString(s){const t=[];for(;s;)t.push(String.fromCharCode(255&s)),s>>=8;return t.reverse().join("")}setPrintHandler(s){this._printHandler=s}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(s,t){const i=this._identifier(s,[48,126]);this._escHandlers[i]===void 0&&(this._escHandlers[i]=[]);const o=this._escHandlers[i];return o.push(t),{dispose:()=>{const c=o.indexOf(t);c!==-1&&o.splice(c,1)}}}clearEscHandler(s){this._escHandlers[this._identifier(s,[48,126])]&&delete this._escHandlers[this._identifier(s,[48,126])]}setEscHandlerFallback(s){this._escHandlerFb=s}setExecuteHandler(s,t){this._executeHandlers[s.charCodeAt(0)]=t}clearExecuteHandler(s){this._executeHandlers[s.charCodeAt(0)]&&delete this._executeHandlers[s.charCodeAt(0)]}setExecuteHandlerFallback(s){this._executeHandlerFb=s}registerCsiHandler(s,t){const i=this._identifier(s);this._csiHandlers[i]===void 0&&(this._csiHandlers[i]=[]);const o=this._csiHandlers[i];return o.push(t),{dispose:()=>{const c=o.indexOf(t);c!==-1&&o.splice(c,1)}}}clearCsiHandler(s){this._csiHandlers[this._identifier(s)]&&delete this._csiHandlers[this._identifier(s)]}setCsiHandlerFallback(s){this._csiHandlerFb=s}registerDcsHandler(s,t){return this._dcsParser.registerHandler(this._identifier(s),t)}clearDcsHandler(s){this._dcsParser.clearHandler(this._identifier(s))}setDcsHandlerFallback(s){this._dcsParser.setHandlerFallback(s)}registerOscHandler(s,t){return this._oscParser.registerHandler(s,t)}clearOscHandler(s){this._oscParser.clearHandler(s)}setOscHandlerFallback(s){this._oscParser.setHandlerFallback(s)}setErrorHandler(s){this._errorHandler=s}clearErrorHandler(){this._errorHandler=this._errorHandlerFb}reset(){this.currentState=this.initialState,this._oscParser.reset(),this._dcsParser.reset(),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingCodepoint=0,this._parseStack.state!==0&&(this._parseStack.state=2,this._parseStack.handlers=[])}_preserveStack(s,t,i,o,c){this._parseStack.state=s,this._parseStack.handlers=t,this._parseStack.handlerPos=i,this._parseStack.transition=o,this._parseStack.chunkPos=c}parse(s,t,i){let o,c=0,v=0,m=0;if(this._parseStack.state)if(this._parseStack.state===2)this._parseStack.state=0,m=this._parseStack.chunkPos+1;else{if(i===void 0||this._parseStack.state===1)throw this._parseStack.state=1,new Error("improper continuation due to previous async handler, giving up parsing");const h=this._parseStack.handlers;let g=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(i===!1&&g>-1){for(;g>=0&&(o=h[g](this._params),o!==!0);g--)if(o instanceof Promise)return this._parseStack.handlerPos=g,o}this._parseStack.handlers=[];break;case 4:if(i===!1&&g>-1){for(;g>=0&&(o=h[g](),o!==!0);g--)if(o instanceof Promise)return this._parseStack.handlerPos=g,o}this._parseStack.handlers=[];break;case 6:if(c=s[this._parseStack.chunkPos],o=this._dcsParser.unhook(c!==24&&c!==26,i),o)return o;c===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(c=s[this._parseStack.chunkPos],o=this._oscParser.end(c!==24&&c!==26,i),o)return o;c===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0}this._parseStack.state=0,m=this._parseStack.chunkPos+1,this.precedingCodepoint=0,this.currentState=15&this._parseStack.transition}for(let h=m;h>4){case 2:for(let k=h+1;;++k){if(k>=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=0&&(o=g[b](this._params),o!==!0);b--)if(o instanceof Promise)return this._preserveStack(3,g,b,v,h),o;b<0&&this._csiHandlerFb(this._collect<<8|c,this._params),this.precedingCodepoint=0;break;case 8:do switch(c){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(c-48)}while(++h47&&c<60);h--;break;case 9:this._collect<<=8,this._collect|=c;break;case 10:const L=this._escHandlers[this._collect<<8|c];let y=L?L.length-1:-1;for(;y>=0&&(o=L[y](),o!==!0);y--)if(o instanceof Promise)return this._preserveStack(4,L,y,v,h),o;y<0&&this._escHandlerFb(this._collect<<8|c),this.precedingCodepoint=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|c,this._params);break;case 13:for(let k=h+1;;++k)if(k>=t||(c=s[k])===24||c===26||c===27||c>127&&c=t||(c=s[k])<32||c>127&&c{Object.defineProperty(r,"__esModule",{value:!0}),r.OscHandler=r.OscParser=void 0;const l=a(5770),u=a(482),n=[];r.OscParser=class{constructor(){this._state=0,this._active=n,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(d,f){this._handlers[d]===void 0&&(this._handlers[d]=[]);const p=this._handlers[d];return p.push(f),{dispose:()=>{const _=p.indexOf(f);_!==-1&&p.splice(_,1)}}}clearHandler(d){this._handlers[d]&&delete this._handlers[d]}setHandlerFallback(d){this._handlerFb=d}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=n}reset(){if(this._state===2)for(let d=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;d>=0;--d)this._active[d].end(!1);this._stack.paused=!1,this._active=n,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||n,this._active.length)for(let d=this._active.length-1;d>=0;d--)this._active[d].start();else this._handlerFb(this._id,"START")}_put(d,f,p){if(this._active.length)for(let _=this._active.length-1;_>=0;_--)this._active[_].put(d,f,p);else this._handlerFb(this._id,"PUT",(0,u.utf32ToString)(d,f,p))}start(){this.reset(),this._state=1}put(d,f,p){if(this._state!==3){if(this._state===1)for(;f0&&this._put(d,f,p)}}end(d,f=!0){if(this._state!==0){if(this._state!==3)if(this._state===1&&this._start(),this._active.length){let p=!1,_=this._active.length-1,e=!1;if(this._stack.paused&&(_=this._stack.loopPosition-1,p=f,e=this._stack.fallThrough,this._stack.paused=!1),!e&&p===!1){for(;_>=0&&(p=this._active[_].end(d),p!==!0);_--)if(p instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=_,this._stack.fallThrough=!1,p;_--}for(;_>=0;_--)if(p=this._active[_].end(!1),p instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=_,this._stack.fallThrough=!0,p}else this._handlerFb(this._id,"END",d);this._active=n,this._id=-1,this._state=0}}},r.OscHandler=class{constructor(d){this._handler=d,this._data="",this._hitLimit=!1}start(){this._data="",this._hitLimit=!1}put(d,f,p){this._hitLimit||(this._data+=(0,u.utf32ToString)(d,f,p),this._data.length>l.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}end(d){let f=!1;if(this._hitLimit)f=!1;else if(d&&(f=this._handler(this._data),f instanceof Promise))return f.then(p=>(this._data="",this._hitLimit=!1,p));return this._data="",this._hitLimit=!1,f}}},8742:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Params=void 0;const a=2147483647;class l{static fromArray(n){const d=new l;if(!n.length)return d;for(let f=Array.isArray(n[0])?1:0;f256)throw new Error("maxSubParamsLength must not be greater than 256");this.params=new Int32Array(n),this.length=0,this._subParams=new Int32Array(d),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(n),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}clone(){const n=new l(this.maxLength,this.maxSubParamsLength);return n.params.set(this.params),n.length=this.length,n._subParams.set(this._subParams),n._subParamsLength=this._subParamsLength,n._subParamsIdx.set(this._subParamsIdx),n._rejectDigits=this._rejectDigits,n._rejectSubDigits=this._rejectSubDigits,n._digitIsSub=this._digitIsSub,n}toArray(){const n=[];for(let d=0;d>8,p=255&this._subParamsIdx[d];p-f>0&&n.push(Array.prototype.slice.call(this._subParams,f,p))}return n}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(n){if(this._digitIsSub=!1,this.length>=this.maxLength)this._rejectDigits=!0;else{if(n<-1)throw new Error("values lesser than -1 are not allowed");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=n>a?a:n}}addSubParam(n){if(this._digitIsSub=!0,this.length)if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength)this._rejectSubDigits=!0;else{if(n<-1)throw new Error("values lesser than -1 are not allowed");this._subParams[this._subParamsLength++]=n>a?a:n,this._subParamsIdx[this.length-1]++}}hasSubParams(n){return(255&this._subParamsIdx[n])-(this._subParamsIdx[n]>>8)>0}getSubParams(n){const d=this._subParamsIdx[n]>>8,f=255&this._subParamsIdx[n];return f-d>0?this._subParams.subarray(d,f):null}getSubParamsAll(){const n={};for(let d=0;d>8,p=255&this._subParamsIdx[d];p-f>0&&(n[d]=this._subParams.slice(f,p))}return n}addDigit(n){let d;if(this._rejectDigits||!(d=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;const f=this._digitIsSub?this._subParams:this.params,p=f[d-1];f[d-1]=~p?Math.min(10*p+n,a):n}}r.Params=l},5741:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.AddonManager=void 0,r.AddonManager=class{constructor(){this._addons=[]}dispose(){for(let a=this._addons.length-1;a>=0;a--)this._addons[a].instance.dispose()}loadAddon(a,l){const u={instance:l,dispose:l.dispose,isDisposed:!1};this._addons.push(u),l.dispose=()=>this._wrappedAddonDispose(u),l.activate(a)}_wrappedAddonDispose(a){if(a.isDisposed)return;let l=-1;for(let u=0;u{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferApiView=void 0;const l=a(3785),u=a(511);r.BufferApiView=class{constructor(n,d){this._buffer=n,this.type=d}init(n){return this._buffer=n,this}get cursorY(){return this._buffer.y}get cursorX(){return this._buffer.x}get viewportY(){return this._buffer.ydisp}get baseY(){return this._buffer.ybase}get length(){return this._buffer.lines.length}getLine(n){const d=this._buffer.lines.get(n);if(d)return new l.BufferLineApiView(d)}getNullCell(){return new u.CellData}}},3785:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferLineApiView=void 0;const l=a(511);r.BufferLineApiView=class{constructor(u){this._line=u}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(u,n){if(!(u<0||u>=this._line.length))return n?(this._line.loadCell(u,n),n):this._line.loadCell(u,new l.CellData)}translateToString(u,n,d){return this._line.translateToString(u,n,d)}}},8285:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferNamespaceApi=void 0;const l=a(8771),u=a(8460),n=a(844);class d extends n.Disposable{constructor(p){super(),this._core=p,this._onBufferChange=this.register(new u.EventEmitter),this.onBufferChange=this._onBufferChange.event,this._normal=new l.BufferApiView(this._core.buffers.normal,"normal"),this._alternate=new l.BufferApiView(this._core.buffers.alt,"alternate"),this._core.buffers.onBufferActivate(()=>this._onBufferChange.fire(this.active))}get active(){if(this._core.buffers.active===this._core.buffers.normal)return this.normal;if(this._core.buffers.active===this._core.buffers.alt)return this.alternate;throw new Error("Active buffer is neither normal nor alternate")}get normal(){return this._normal.init(this._core.buffers.normal)}get alternate(){return this._alternate.init(this._core.buffers.alt)}}r.BufferNamespaceApi=d},7975:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ParserApi=void 0,r.ParserApi=class{constructor(a){this._core=a}registerCsiHandler(a,l){return this._core.registerCsiHandler(a,u=>l(u.toArray()))}addCsiHandler(a,l){return this.registerCsiHandler(a,l)}registerDcsHandler(a,l){return this._core.registerDcsHandler(a,(u,n)=>l(u,n.toArray()))}addDcsHandler(a,l){return this.registerDcsHandler(a,l)}registerEscHandler(a,l){return this._core.registerEscHandler(a,l)}addEscHandler(a,l){return this.registerEscHandler(a,l)}registerOscHandler(a,l){return this._core.registerOscHandler(a,l)}addOscHandler(a,l){return this.registerOscHandler(a,l)}}},7090:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeApi=void 0,r.UnicodeApi=class{constructor(a){this._core=a}register(a){this._core.unicodeService.register(a)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(a){this._core.unicodeService.activeVersion=a}}},744:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.BufferService=r.MINIMUM_ROWS=r.MINIMUM_COLS=void 0;const n=a(8460),d=a(844),f=a(5295),p=a(2585);r.MINIMUM_COLS=2,r.MINIMUM_ROWS=1;let _=r.BufferService=class extends d.Disposable{get buffer(){return this.buffers.active}constructor(e){super(),this.isUserScrolling=!1,this._onResize=this.register(new n.EventEmitter),this.onResize=this._onResize.event,this._onScroll=this.register(new n.EventEmitter),this.onScroll=this._onScroll.event,this.cols=Math.max(e.rawOptions.cols||0,r.MINIMUM_COLS),this.rows=Math.max(e.rawOptions.rows||0,r.MINIMUM_ROWS),this.buffers=this.register(new f.BufferSet(e,this))}resize(e,s){this.cols=e,this.rows=s,this.buffers.resize(e,s),this._onResize.fire({cols:e,rows:s})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(e,s=!1){const t=this.buffer;let i;i=this._cachedBlankLine,i&&i.length===this.cols&&i.getFg(0)===e.fg&&i.getBg(0)===e.bg||(i=t.getBlankLine(e,s),this._cachedBlankLine=i),i.isWrapped=s;const o=t.ybase+t.scrollTop,c=t.ybase+t.scrollBottom;if(t.scrollTop===0){const v=t.lines.isFull;c===t.lines.length-1?v?t.lines.recycle().copyFrom(i):t.lines.push(i.clone()):t.lines.splice(c+1,0,i.clone()),v?this.isUserScrolling&&(t.ydisp=Math.max(t.ydisp-1,0)):(t.ybase++,this.isUserScrolling||t.ydisp++)}else{const v=c-o+1;t.lines.shiftElements(o+1,v-1,-1),t.lines.set(c,i.clone())}this.isUserScrolling||(t.ydisp=t.ybase),this._onScroll.fire(t.ydisp)}scrollLines(e,s,t){const i=this.buffer;if(e<0){if(i.ydisp===0)return;this.isUserScrolling=!0}else e+i.ydisp>=i.ybase&&(this.isUserScrolling=!1);const o=i.ydisp;i.ydisp=Math.max(Math.min(i.ydisp+e,i.ybase),0),o!==i.ydisp&&(s||this._onScroll.fire(i.ydisp))}};r.BufferService=_=l([u(0,p.IOptionsService)],_)},7994:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CharsetService=void 0,r.CharsetService=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(a){this.glevel=a,this.charset=this._charsets[a]}setgCharset(a,l){this._charsets[a]=l,this.glevel===a&&(this.charset=l)}}},1753:function(I,r,a){var l=this&&this.__decorate||function(i,o,c,v){var m,h=arguments.length,g=h<3?o:v===null?v=Object.getOwnPropertyDescriptor(o,c):v;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(i,o,c,v);else for(var b=i.length-1;b>=0;b--)(m=i[b])&&(g=(h<3?m(g):h>3?m(o,c,g):m(o,c))||g);return h>3&&g&&Object.defineProperty(o,c,g),g},u=this&&this.__param||function(i,o){return function(c,v){o(c,v,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreMouseService=void 0;const n=a(2585),d=a(8460),f=a(844),p={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:i=>i.button!==4&&i.action===1&&(i.ctrl=!1,i.alt=!1,i.shift=!1,!0)},VT200:{events:19,restrict:i=>i.action!==32},DRAG:{events:23,restrict:i=>i.action!==32||i.button!==3},ANY:{events:31,restrict:i=>!0}};function _(i,o){let c=(i.ctrl?16:0)|(i.shift?4:0)|(i.alt?8:0);return i.button===4?(c|=64,c|=i.action):(c|=3&i.button,4&i.button&&(c|=64),8&i.button&&(c|=128),i.action===32?c|=32:i.action!==0||o||(c|=3)),c}const e=String.fromCharCode,s={DEFAULT:i=>{const o=[_(i,!1)+32,i.col+32,i.row+32];return o[0]>255||o[1]>255||o[2]>255?"":`\x1B[M${e(o[0])}${e(o[1])}${e(o[2])}`},SGR:i=>{const o=i.action===0&&i.button!==4?"m":"M";return`\x1B[<${_(i,!0)};${i.col};${i.row}${o}`},SGR_PIXELS:i=>{const o=i.action===0&&i.button!==4?"m":"M";return`\x1B[<${_(i,!0)};${i.x};${i.y}${o}`}};let t=r.CoreMouseService=class extends f.Disposable{constructor(i,o){super(),this._bufferService=i,this._coreService=o,this._protocols={},this._encodings={},this._activeProtocol="",this._activeEncoding="",this._lastEvent=null,this._onProtocolChange=this.register(new d.EventEmitter),this.onProtocolChange=this._onProtocolChange.event;for(const c of Object.keys(p))this.addProtocol(c,p[c]);for(const c of Object.keys(s))this.addEncoding(c,s[c]);this.reset()}addProtocol(i,o){this._protocols[i]=o}addEncoding(i,o){this._encodings[i]=o}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return this._protocols[this._activeProtocol].events!==0}set activeProtocol(i){if(!this._protocols[i])throw new Error(`unknown protocol "${i}"`);this._activeProtocol=i,this._onProtocolChange.fire(this._protocols[i].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(i){if(!this._encodings[i])throw new Error(`unknown encoding "${i}"`);this._activeEncoding=i}reset(){this.activeProtocol="NONE",this.activeEncoding="DEFAULT",this._lastEvent=null}triggerMouseEvent(i){if(i.col<0||i.col>=this._bufferService.cols||i.row<0||i.row>=this._bufferService.rows||i.button===4&&i.action===32||i.button===3&&i.action!==32||i.button!==4&&(i.action===2||i.action===3)||(i.col++,i.row++,i.action===32&&this._lastEvent&&this._equalEvents(this._lastEvent,i,this._activeEncoding==="SGR_PIXELS"))||!this._protocols[this._activeProtocol].restrict(i))return!1;const o=this._encodings[this._activeEncoding](i);return o&&(this._activeEncoding==="DEFAULT"?this._coreService.triggerBinaryEvent(o):this._coreService.triggerDataEvent(o,!0)),this._lastEvent=i,!0}explainEvents(i){return{down:!!(1&i),up:!!(2&i),drag:!!(4&i),move:!!(8&i),wheel:!!(16&i)}}_equalEvents(i,o,c){if(c){if(i.x!==o.x||i.y!==o.y)return!1}else if(i.col!==o.col||i.row!==o.row)return!1;return i.button===o.button&&i.action===o.action&&i.ctrl===o.ctrl&&i.alt===o.alt&&i.shift===o.shift}};r.CoreMouseService=t=l([u(0,n.IBufferService),u(1,n.ICoreService)],t)},6975:function(I,r,a){var l=this&&this.__decorate||function(t,i,o,c){var v,m=arguments.length,h=m<3?i:c===null?c=Object.getOwnPropertyDescriptor(i,o):c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")h=Reflect.decorate(t,i,o,c);else for(var g=t.length-1;g>=0;g--)(v=t[g])&&(h=(m<3?v(h):m>3?v(i,o,h):v(i,o))||h);return m>3&&h&&Object.defineProperty(i,o,h),h},u=this&&this.__param||function(t,i){return function(o,c){i(o,c,t)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreService=void 0;const n=a(1439),d=a(8460),f=a(844),p=a(2585),_=Object.freeze({insertMode:!1}),e=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,origin:!1,reverseWraparound:!1,sendFocus:!1,wraparound:!0});let s=r.CoreService=class extends f.Disposable{constructor(t,i,o){super(),this._bufferService=t,this._logService=i,this._optionsService=o,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this.register(new d.EventEmitter),this.onData=this._onData.event,this._onUserInput=this.register(new d.EventEmitter),this.onUserInput=this._onUserInput.event,this._onBinary=this.register(new d.EventEmitter),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this.register(new d.EventEmitter),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=(0,n.clone)(_),this.decPrivateModes=(0,n.clone)(e)}reset(){this.modes=(0,n.clone)(_),this.decPrivateModes=(0,n.clone)(e)}triggerDataEvent(t,i=!1){if(this._optionsService.rawOptions.disableStdin)return;const o=this._bufferService.buffer;i&&this._optionsService.rawOptions.scrollOnUserInput&&o.ybase!==o.ydisp&&this._onRequestScrollToBottom.fire(),i&&this._onUserInput.fire(),this._logService.debug(`sending data "${t}"`,()=>t.split("").map(c=>c.charCodeAt(0))),this._onData.fire(t)}triggerBinaryEvent(t){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${t}"`,()=>t.split("").map(i=>i.charCodeAt(0))),this._onBinary.fire(t))}};r.CoreService=s=l([u(0,p.IBufferService),u(1,p.ILogService),u(2,p.IOptionsService)],s)},9074:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DecorationService=void 0;const l=a(8055),u=a(8460),n=a(844),d=a(6106);let f=0,p=0;class _ extends n.Disposable{get decorations(){return this._decorations.values()}constructor(){super(),this._decorations=new d.SortedList(t=>t==null?void 0:t.marker.line),this._onDecorationRegistered=this.register(new u.EventEmitter),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this.register(new u.EventEmitter),this.onDecorationRemoved=this._onDecorationRemoved.event,this.register((0,n.toDisposable)(()=>this.reset()))}registerDecoration(t){if(t.marker.isDisposed)return;const i=new e(t);if(i){const o=i.marker.onDispose(()=>i.dispose());i.onDispose(()=>{i&&(this._decorations.delete(i)&&this._onDecorationRemoved.fire(i),o.dispose())}),this._decorations.insert(i),this._onDecorationRegistered.fire(i)}return i}reset(){for(const t of this._decorations.values())t.dispose();this._decorations.clear()}*getDecorationsAtCell(t,i,o){var c,v,m;let h=0,g=0;for(const b of this._decorations.getKeyIterator(i))h=(c=b.options.x)!==null&&c!==void 0?c:0,g=h+((v=b.options.width)!==null&&v!==void 0?v:1),t>=h&&t{var m,h,g;f=(m=v.options.x)!==null&&m!==void 0?m:0,p=f+((h=v.options.width)!==null&&h!==void 0?h:1),t>=f&&t{Object.defineProperty(r,"__esModule",{value:!0}),r.InstantiationService=r.ServiceCollection=void 0;const l=a(2585),u=a(8343);class n{constructor(...f){this._entries=new Map;for(const[p,_]of f)this.set(p,_)}set(f,p){const _=this._entries.get(f);return this._entries.set(f,p),_}forEach(f){for(const[p,_]of this._entries.entries())f(p,_)}has(f){return this._entries.has(f)}get(f){return this._entries.get(f)}}r.ServiceCollection=n,r.InstantiationService=class{constructor(){this._services=new n,this._services.set(l.IInstantiationService,this)}setService(d,f){this._services.set(d,f)}getService(d){return this._services.get(d)}createInstance(d,...f){const p=(0,u.getServiceDependencies)(d).sort((s,t)=>s.index-t.index),_=[];for(const s of p){const t=this._services.get(s.id);if(!t)throw new Error(`[createInstance] ${d.name} depends on UNKNOWN service ${s.id}.`);_.push(t)}const e=p.length>0?p[0].index:f.length;if(f.length!==e)throw new Error(`[createInstance] First service dependency of ${d.name} at position ${e+1} conflicts with ${f.length} static arguments`);return new d(...f,..._)}}},7866:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.traceCall=r.setTraceLogger=r.LogService=void 0;const n=a(844),d=a(2585),f={trace:d.LogLevelEnum.TRACE,debug:d.LogLevelEnum.DEBUG,info:d.LogLevelEnum.INFO,warn:d.LogLevelEnum.WARN,error:d.LogLevelEnum.ERROR,off:d.LogLevelEnum.OFF};let p,_=r.LogService=class extends n.Disposable{get logLevel(){return this._logLevel}constructor(e){super(),this._optionsService=e,this._logLevel=d.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange("logLevel",()=>this._updateLogLevel())),p=this}_updateLogLevel(){this._logLevel=f[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let s=0;sJSON.stringify(v)).join(", ")})`);const c=i.apply(this,o);return p.trace(`GlyphRenderer#${i.name} return`,c),c}}},7302:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.OptionsService=r.DEFAULT_OPTIONS=void 0;const l=a(8460),u=a(844),n=a(6114);r.DEFAULT_OPTIONS={cols:80,rows:24,cursorBlink:!1,cursorStyle:"block",cursorWidth:1,cursorInactiveStyle:"outline",customGlyphs:!0,drawBoldTextInBrightColors:!0,fastScrollModifier:"alt",fastScrollSensitivity:5,fontFamily:"courier-new, courier, monospace",fontSize:15,fontWeight:"normal",fontWeightBold:"bold",ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:"info",logger:null,scrollback:1e3,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},rightClickSelectsWord:n.isMac,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:" ()[]{}',\"`",altClickMovesCursor:!0,convertEol:!1,termName:"xterm",cancelEvents:!1,overviewRulerWidth:0};const d=["normal","bold","100","200","300","400","500","600","700","800","900"];class f extends u.Disposable{constructor(_){super(),this._onOptionChange=this.register(new l.EventEmitter),this.onOptionChange=this._onOptionChange.event;const e=Object.assign({},r.DEFAULT_OPTIONS);for(const s in _)if(s in e)try{const t=_[s];e[s]=this._sanitizeAndValidateOption(s,t)}catch(t){console.error(t)}this.rawOptions=e,this.options=Object.assign({},e),this._setupOptions()}onSpecificOptionChange(_,e){return this.onOptionChange(s=>{s===_&&e(this.rawOptions[_])})}onMultipleOptionChange(_,e){return this.onOptionChange(s=>{_.indexOf(s)!==-1&&e()})}_setupOptions(){const _=s=>{if(!(s in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${s}"`);return this.rawOptions[s]},e=(s,t)=>{if(!(s in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${s}"`);t=this._sanitizeAndValidateOption(s,t),this.rawOptions[s]!==t&&(this.rawOptions[s]=t,this._onOptionChange.fire(s))};for(const s in this.rawOptions){const t={get:_.bind(this,s),set:e.bind(this,s)};Object.defineProperty(this.options,s,t)}}_sanitizeAndValidateOption(_,e){switch(_){case"cursorStyle":if(e||(e=r.DEFAULT_OPTIONS[_]),!function(s){return s==="block"||s==="underline"||s==="bar"}(e))throw new Error(`"${e}" is not a valid value for ${_}`);break;case"wordSeparator":e||(e=r.DEFAULT_OPTIONS[_]);break;case"fontWeight":case"fontWeightBold":if(typeof e=="number"&&1<=e&&e<=1e3)break;e=d.includes(e)?e:r.DEFAULT_OPTIONS[_];break;case"cursorWidth":e=Math.floor(e);case"lineHeight":case"tabStopWidth":if(e<1)throw new Error(`${_} cannot be less than 1, value: ${e}`);break;case"minimumContrastRatio":e=Math.max(1,Math.min(21,Math.round(10*e)/10));break;case"scrollback":if((e=Math.min(e,4294967295))<0)throw new Error(`${_} cannot be less than 0, value: ${e}`);break;case"fastScrollSensitivity":case"scrollSensitivity":if(e<=0)throw new Error(`${_} cannot be less than or equal to 0, value: ${e}`);break;case"rows":case"cols":if(!e&&e!==0)throw new Error(`${_} must be numeric, value: ${e}`);break;case"windowsPty":e=e??{}}return e}}r.OptionsService=f},2660:function(I,r,a){var l=this&&this.__decorate||function(f,p,_,e){var s,t=arguments.length,i=t<3?p:e===null?e=Object.getOwnPropertyDescriptor(p,_):e;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(f,p,_,e);else for(var o=f.length-1;o>=0;o--)(s=f[o])&&(i=(t<3?s(i):t>3?s(p,_,i):s(p,_))||i);return t>3&&i&&Object.defineProperty(p,_,i),i},u=this&&this.__param||function(f,p){return function(_,e){p(_,e,f)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OscLinkService=void 0;const n=a(2585);let d=r.OscLinkService=class{constructor(f){this._bufferService=f,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(f){const p=this._bufferService.buffer;if(f.id===void 0){const o=p.addMarker(p.ybase+p.y),c={data:f,id:this._nextId++,lines:[o]};return o.onDispose(()=>this._removeMarkerFromLink(c,o)),this._dataByLinkId.set(c.id,c),c.id}const _=f,e=this._getEntryIdKey(_),s=this._entriesWithId.get(e);if(s)return this.addLineToLink(s.id,p.ybase+p.y),s.id;const t=p.addMarker(p.ybase+p.y),i={id:this._nextId++,key:this._getEntryIdKey(_),data:_,lines:[t]};return t.onDispose(()=>this._removeMarkerFromLink(i,t)),this._entriesWithId.set(i.key,i),this._dataByLinkId.set(i.id,i),i.id}addLineToLink(f,p){const _=this._dataByLinkId.get(f);if(_&&_.lines.every(e=>e.line!==p)){const e=this._bufferService.buffer.addMarker(p);_.lines.push(e),e.onDispose(()=>this._removeMarkerFromLink(_,e))}}getLinkData(f){var p;return(p=this._dataByLinkId.get(f))===null||p===void 0?void 0:p.data}_getEntryIdKey(f){return`${f.id};;${f.uri}`}_removeMarkerFromLink(f,p){const _=f.lines.indexOf(p);_!==-1&&(f.lines.splice(_,1),f.lines.length===0&&(f.data.id!==void 0&&this._entriesWithId.delete(f.key),this._dataByLinkId.delete(f.id)))}};r.OscLinkService=d=l([u(0,n.IBufferService)],d)},8343:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.createDecorator=r.getServiceDependencies=r.serviceRegistry=void 0;const a="di$target",l="di$dependencies";r.serviceRegistry=new Map,r.getServiceDependencies=function(u){return u[l]||[]},r.createDecorator=function(u){if(r.serviceRegistry.has(u))return r.serviceRegistry.get(u);const n=function(d,f,p){if(arguments.length!==3)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");(function(_,e,s){e[a]===e?e[l].push({id:_,index:s}):(e[l]=[{id:_,index:s}],e[a]=e)})(n,d,p)};return n.toString=()=>u,r.serviceRegistry.set(u,n),n}},2585:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.IDecorationService=r.IUnicodeService=r.IOscLinkService=r.IOptionsService=r.ILogService=r.LogLevelEnum=r.IInstantiationService=r.ICharsetService=r.ICoreService=r.ICoreMouseService=r.IBufferService=void 0;const l=a(8343);var u;r.IBufferService=(0,l.createDecorator)("BufferService"),r.ICoreMouseService=(0,l.createDecorator)("CoreMouseService"),r.ICoreService=(0,l.createDecorator)("CoreService"),r.ICharsetService=(0,l.createDecorator)("CharsetService"),r.IInstantiationService=(0,l.createDecorator)("InstantiationService"),function(n){n[n.TRACE=0]="TRACE",n[n.DEBUG=1]="DEBUG",n[n.INFO=2]="INFO",n[n.WARN=3]="WARN",n[n.ERROR=4]="ERROR",n[n.OFF=5]="OFF"}(u||(r.LogLevelEnum=u={})),r.ILogService=(0,l.createDecorator)("LogService"),r.IOptionsService=(0,l.createDecorator)("OptionsService"),r.IOscLinkService=(0,l.createDecorator)("OscLinkService"),r.IUnicodeService=(0,l.createDecorator)("UnicodeService"),r.IDecorationService=(0,l.createDecorator)("DecorationService")},1480:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeService=void 0;const l=a(8460),u=a(225);r.UnicodeService=class{constructor(){this._providers=Object.create(null),this._active="",this._onChange=new l.EventEmitter,this.onChange=this._onChange.event;const n=new u.UnicodeV6;this.register(n),this._active=n.version,this._activeProvider=n}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(n){if(!this._providers[n])throw new Error(`unknown Unicode version "${n}"`);this._active=n,this._activeProvider=this._providers[n],this._onChange.fire(n)}register(n){this._providers[n.version]=n}wcwidth(n){return this._activeProvider.wcwidth(n)}getStringCellWidth(n){let d=0;const f=n.length;for(let p=0;p=f)return d+this.wcwidth(_);const e=n.charCodeAt(p);56320<=e&&e<=57343?_=1024*(_-55296)+e-56320+65536:d+=this.wcwidth(e)}d+=this.wcwidth(_)}return d}}}},ne={};function J(I){var r=ne[I];if(r!==void 0)return r.exports;var a=ne[I]={exports:{}};return ae[I].call(a.exports,a,a.exports,J),a.exports}var ue={};return(()=>{var I=ue;Object.defineProperty(I,"__esModule",{value:!0}),I.Terminal=void 0;const r=J(9042),a=J(3236),l=J(844),u=J(5741),n=J(8285),d=J(7975),f=J(7090),p=["cols","rows"];class _ extends l.Disposable{constructor(s){super(),this._core=this.register(new a.Terminal(s)),this._addonManager=this.register(new u.AddonManager),this._publicOptions=Object.assign({},this._core.options);const t=o=>this._core.options[o],i=(o,c)=>{this._checkReadonlyOptions(o),this._core.options[o]=c};for(const o in this._core.options){const c={get:t.bind(this,o),set:i.bind(this,o)};Object.defineProperty(this._publicOptions,o,c)}}_checkReadonlyOptions(s){if(p.includes(s))throw new Error(`Option "${s}" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw new Error("You must set the allowProposedApi option to true to use proposed API")}get onBell(){return this._core.onBell}get onBinary(){return this._core.onBinary}get onCursorMove(){return this._core.onCursorMove}get onData(){return this._core.onData}get onKey(){return this._core.onKey}get onLineFeed(){return this._core.onLineFeed}get onRender(){return this._core.onRender}get onResize(){return this._core.onResize}get onScroll(){return this._core.onScroll}get onSelectionChange(){return this._core.onSelectionChange}get onTitleChange(){return this._core.onTitleChange}get onWriteParsed(){return this._core.onWriteParsed}get element(){return this._core.element}get parser(){return this._parser||(this._parser=new d.ParserApi(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new f.UnicodeApi(this._core)}get textarea(){return this._core.textarea}get rows(){return this._core.rows}get cols(){return this._core.cols}get buffer(){return this._buffer||(this._buffer=this.register(new n.BufferNamespaceApi(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){const s=this._core.coreService.decPrivateModes;let t="none";switch(this._core.coreMouseService.activeProtocol){case"X10":t="x10";break;case"VT200":t="vt200";break;case"DRAG":t="drag";break;case"ANY":t="any"}return{applicationCursorKeysMode:s.applicationCursorKeys,applicationKeypadMode:s.applicationKeypad,bracketedPasteMode:s.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:t,originMode:s.origin,reverseWraparoundMode:s.reverseWraparound,sendFocusMode:s.sendFocus,wraparoundMode:s.wraparound}}get options(){return this._publicOptions}set options(s){for(const t in s)this._publicOptions[t]=s[t]}blur(){this._core.blur()}focus(){this._core.focus()}resize(s,t){this._verifyIntegers(s,t),this._core.resize(s,t)}open(s){this._core.open(s)}attachCustomKeyEventHandler(s){this._core.attachCustomKeyEventHandler(s)}registerLinkProvider(s){return this._core.registerLinkProvider(s)}registerCharacterJoiner(s){return this._checkProposedApi(),this._core.registerCharacterJoiner(s)}deregisterCharacterJoiner(s){this._checkProposedApi(),this._core.deregisterCharacterJoiner(s)}registerMarker(s=0){return this._verifyIntegers(s),this._core.registerMarker(s)}registerDecoration(s){var t,i,o;return this._checkProposedApi(),this._verifyPositiveIntegers((t=s.x)!==null&&t!==void 0?t:0,(i=s.width)!==null&&i!==void 0?i:0,(o=s.height)!==null&&o!==void 0?o:0),this._core.registerDecoration(s)}hasSelection(){return this._core.hasSelection()}select(s,t,i){this._verifyIntegers(s,t,i),this._core.select(s,t,i)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(s,t){this._verifyIntegers(s,t),this._core.selectLines(s,t)}dispose(){super.dispose()}scrollLines(s){this._verifyIntegers(s),this._core.scrollLines(s)}scrollPages(s){this._verifyIntegers(s),this._core.scrollPages(s)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(s){this._verifyIntegers(s),this._core.scrollToLine(s)}clear(){this._core.clear()}write(s,t){this._core.write(s,t)}writeln(s,t){this._core.write(s),this._core.write(`\r +`,t)}paste(s){this._core.paste(s)}refresh(s,t){this._verifyIntegers(s,t),this._core.refresh(s,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(s){this._addonManager.loadAddon(this,s)}static get strings(){return r}_verifyIntegers(...s){for(const t of s)if(t===1/0||isNaN(t)||t%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...s){for(const t of s)if(t&&(t===1/0||isNaN(t)||t%1!=0||t<0))throw new Error("This API only accepts positive integers")}}I.Terminal=_})(),ue})())})(fe);var be=fe.exports;const ye={style:{width:"100%",height:"100%","background-color":"#fff",padding:"16px","border-radius":"10px"}},we=Ce("div",{id:"terminal",style:{}},null,-1),Ee=[we],ke={name:"ConsolePage",components:{},data(){return{term:null}},mounted(){this.term=new be.Terminal({rows:35,cols:100,theme:{foreground:"#000",background:"#ffffff"}}),this.term.open(document.getElementById("terminal"));for(let ee=0;ee<200;ee++)this.term.write("AstrBot Console By xterm && Soulter")},methods:{}},De=Object.assign(ke,{setup(ee){return(ge,ae)=>(me(),Se("div",ye,Ee))}});export{De as default}; diff --git a/addons/dashboard/dist/assets/ConsolePage-e3b0c442.css b/addons/dashboard/dist/assets/ConsolePage-e3b0c442.css new file mode 100644 index 000000000..e69de29bb diff --git a/addons/dashboard/dist/assets/DefaultDashboard-4f67e2ec.js b/addons/dashboard/dist/assets/DefaultDashboard-4f67e2ec.js deleted file mode 100644 index 19942787a..000000000 --- a/addons/dashboard/dist/assets/DefaultDashboard-4f67e2ec.js +++ /dev/null @@ -1 +0,0 @@ -import{y as R,p as u,o as _,c as f,w as e,a as t,L as w,b as s,d as p,j as $,Z as I,q as z,_ as F,z as S,s as M,F as O,u as j,n as x,r as N,l as V,e as y,t as h,J as b,$ as U,D as W,a0 as C,a1 as G,a2 as D,a3 as H,a4 as L,V as k,f as m,G as X,a5 as q,R as A}from"./index-800319b6.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";const E={class:"d-flex align-start mb-6"},J={class:"ml-auto z-1"},Y={class:"text-h1 font-weight-medium"},Z=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),K={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.message_total=a.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},Q=Object.assign(K,{setup(a){const l=R([{title:"移除",icon:U}]);return(n,i)=>{const o=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",E,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),s("div",J,[t(I,{"close-on-content-click":!1},{activator:e(({props:c})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},c),{default:e(()=>[t(o,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),M(O,null,j(l.value,(c,r)=>(_(),f(x,{key:r,value:r},{prepend:e(()=>[(_(),f(N(c.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(c.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),s("h2",Y,h(n.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=s("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.session_total=a.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(a){const l=W("1"),n=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),i={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},o=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(r,d)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),s("div",et,[t(G,{modelValue:l.value,"onUpdate:modelValue":d[0]||(d[0]=v=>l.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(D,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(D,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(H,{modelValue:l.value,"onUpdate:modelValue":d[1]||(d[1]=v=>l.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",at,h(r.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:n.value,series:i.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[s("h2",ot,h(r.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:o.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(a,l){this.memory=a.sys_perf.memory,this.runtime_str=a.sys_start_time;let n=new Date().getTime(),i=new Date(a.sys_start_time*1e3).getTime(),o=n-i,c=Math.floor(o/(24*3600*1e3)),r=o%(24*3600*1e3),d=Math.floor(r/(3600*1e3)),g=r%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),P=Math.round(T/1e3);this.runtime_str=c+"天"+d+"小时"+v+"分"+P+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=s("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=s("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(a,l,n,i,o,c){return _(),M(O,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),s("div",null,[s("h4",ct,h(a.runtime_str),1),ut]),t(X),s("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[s("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),s("div",null,[s("h4",_t,h(a.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=B(rt,[["render",ft]]),bt=s("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(a,l){let n=[],i=[];for(let o=0;o{const i=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,s("h3",gt,h(l.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(q,{color:"primary",variant:"outlined","hide-details":"",modelValue:l.select,"onUpdate:modelValue":n[0]||(n[0]=o=>l.select=o),items:l.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),s("div",vt,[t(i,{type:"bar",height:"280",options:l.chartOptions1,series:l.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=s("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Mt={class:"text-center mt-3"},Ot={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(a,l){let n={};for(let i=0;i({platforms:[]}),mounted(){}},Dt=Object.assign(Ot,{setup(a){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(l,n)=>{const i=u("DotsIcon"),o=u("perfect-scrollbar"),c=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[s("div",xt,[$t,s("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:r})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},r),{default:e(()=>[t(i,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),s("div",kt,[t(o,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),M(O,null,j(l.platforms,(r,d)=>(_(),f(x,{key:d,value:r,color:"secondary",rounded:"sm"},{default:e(()=>[s("div",Tt,[s("div",null,[s("h6",St,h(r.name),1)]),s("div",Ct,h(r.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),s("div",Mt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(c,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:Q,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Dt},data:()=>({stat:{}}),mounted(){A.get("/api/stats").then(a=>{console.log("stat",a.data.data),this.stat=a.data.data})}};function It(a,l,n,i,o,c){const r=u("TotalMessage"),d=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(r,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(d,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:a.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:a.stat},null,8,["stat"])]),_:1})]),_:1})}const jt=B(Lt,[["render",It]]);export{jt as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-b70e2279.js b/addons/dashboard/dist/assets/DefaultDashboard-b70e2279.js new file mode 100644 index 000000000..7106c79fa --- /dev/null +++ b/addons/dashboard/dist/assets/DefaultDashboard-b70e2279.js @@ -0,0 +1 @@ +import{y as P,p as u,o as _,c as f,w as e,a as t,L as w,b as a,d as p,j as $,Z as I,q as z,_ as F,z as S,s as M,F as D,u as j,n as x,r as N,l as V,e as y,t as h,J as b,$ as U,D as W,a0 as C,a1 as G,a2 as O,a3 as H,a4 as L,V as k,f as m,G as X,a5 as q,R as A}from"./index-ffe5e9b0.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";const E={class:"d-flex align-start mb-6"},J={class:"ml-auto z-1"},Y={class:"text-h1 font-weight-medium"},Z=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),K={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.message_total=s.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},Q=Object.assign(K,{setup(s){const o=P([{title:"移除",icon:U}]);return(d,c)=>{const l=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",E,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),a("div",J,[t(I,{"close-on-content-click":!1},{activator:e(({props:r})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},r),{default:e(()=>[t(l,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),M(D,null,j(o.value,(r,n)=>(_(),f(x,{key:n,value:n},{prepend:e(()=>[(_(),f(N(r.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(r.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),a("h2",Y,h(d.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.session_total=s.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(s){const o=W("1"),d=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},l=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),r={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(n,i)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",et,[t(G,{modelValue:o.value,"onUpdate:modelValue":i[0]||(i[0]=v=>o.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(O,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(O,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(H,{modelValue:o.value,"onUpdate:modelValue":i[1]||(i[1]=v=>o.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[a("h2",at,h(n.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:d.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[a("h2",ot,h(n.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:l.value,series:r.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.memory=s.sys_perf.memory,this.runtime_str=s.sys_start_time;let d=new Date().getTime(),c=new Date(s.sys_start_time*1e3).getTime(),l=d-c,r=Math.floor(l/(24*3600*1e3)),n=l%(24*3600*1e3),i=Math.floor(n/(3600*1e3)),g=n%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),R=Math.round(T/1e3);this.runtime_str=r+"天"+i+"小时"+v+"分"+R+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(s,o,d,c,l,r){return _(),M(D,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),a("div",null,[a("h4",ct,h(s.runtime_str),1),ut]),t(X),a("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[a("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",_t,h(s.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=B(rt,[["render",ft]]),bt=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(s,o){let d=[],c=[];for(let l=0;l{const c=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,a("h3",gt,h(o.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(q,{color:"primary",variant:"outlined","hide-details":"",modelValue:o.select,"onUpdate:modelValue":d[0]||(d[0]=l=>o.select=l),items:o.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),a("div",vt,[t(c,{type:"bar",height:"280",options:o.chartOptions1,series:o.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Mt={class:"text-center mt-3"},Dt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.platforms=s.platform},deep:!0}},data:()=>({platforms:[]}),mounted(){}},Ot=Object.assign(Dt,{setup(s){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(o,d)=>{const c=u("DotsIcon"),l=u("perfect-scrollbar"),r=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",xt,[$t,a("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:n})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},n),{default:e(()=>[t(c,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",kt,[t(l,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),M(D,null,j(o.platforms,(n,i)=>(_(),f(x,{key:i,value:n,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Tt,[a("div",null,[a("h6",St,h(n.name),1)]),a("div",Ct,h(n.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Mt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(r,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:Q,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Ot},data:()=>({stat:{}}),mounted(){A.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,o,d,c,l,r){const n=u("TotalMessage"),i=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(n,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(i,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const jt=B(Lt,[["render",It]]);export{jt as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-a7e4df24.js b/addons/dashboard/dist/assets/Error404Page-1f0e3199.js similarity index 94% rename from addons/dashboard/dist/assets/Error404Page-a7e4df24.js rename to addons/dashboard/dist/assets/Error404Page-1f0e3199.js index 37535f664..9c3e44632 100644 --- a/addons/dashboard/dist/assets/Error404Page-a7e4df24.js +++ b/addons/dashboard/dist/assets/Error404Page-1f0e3199.js @@ -1 +1 @@ -import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-800319b6.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; +import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-ffe5e9b0.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-180d977b.js b/addons/dashboard/dist/assets/ExtensionPage-e262e5bf.js similarity index 74% rename from addons/dashboard/dist/assets/ExtensionPage-180d977b.js rename to addons/dashboard/dist/assets/ExtensionPage-e262e5bf.js index fe32eea58..de705be52 100644 --- a/addons/dashboard/dist/assets/ExtensionPage-180d977b.js +++ b/addons/dashboard/dist/assets/ExtensionPage-e262e5bf.js @@ -1 +1 @@ -import{x as b,o as d,c as h,w as e,a,a6 as C,b as i,K as x,e as o,t as u,G as m,d as r,A as E,L as V,a7 as y,J as w,s as p,f as c,F as f,u as $,V as k,q as S,N as B,O as N,P as T,H as j,a8 as D,R as g,j as F}from"./index-800319b6.js";const G={class:"d-sm-flex align-center justify-space-between"},v=b({__name:"ExtensionCard",props:{title:String,link:String},setup(n){const s=n,l=t=>{window.open(t,"_blank")};return(t,_)=>(d(),h(w,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(C,{style:{padding:"10px 20px"}},{default:e(()=>[i("div",G,[a(x,null,{default:e(()=>[o(u(s.title),1)]),_:1}),a(m),a(r,{icon:"mdi-link",variant:"plain",onClick:_[0]||(_[0]=z=>l(s.link))})])]),_:1}),a(E),a(V,null,{default:e(()=>[y(t.$slots,"default")]),_:3})]),_:3}))}}),P=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 已安装的插件")],-1),U={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},q={class:"d-flex align-center gap-3"},A=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 插件市场 [待开发]")],-1),I=i("span",{class:"text-h5"},"从 Git 仓库链接安装插件",-1),L=i("small",null,"github, gitee, gitlab 等公开的仓库都行。",-1),O=i("br",null,null,-1),R={name:"ExtensionPage",components:{ExtensionCard:v},data(){return{extension_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:"",extension_url:"",status:"",dialog:!1,snack_message:"",snack_show:!1,snack_success:"success",install_loading:!1,uninstall_loading:!1}},mounted(){this.getExtensions()},methods:{getExtensions(){g.get("/api/extensions").then(n=>{this.extension_data.data=n.data.data,console.log(this.extension_data)})},newExtension(){this.install_loading=!0,console.log(this.install_loading),g.post("/api/extensions/install",{url:this.extension_url}).then(n=>{if(this.install_loading=!1,n.data.status==="error"){this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=n.data.data,console.log(this.extension_data),this.extension_url="",this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(n=>{this.install_loading=!1,this.snack_message=n,this.snack_show=!0,this.snack_success="error"})},uninstallExtension(n){this.uninstall_loading=!0,g.post("/api/extensions/uninstall",{name:n}).then(s=>{if(this.uninstall_loading=!1,s.data.status==="error"){this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=s.data.data,console.log(this.extension_data),this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(s=>{this.uninstall_loading=!1,this.snack_message=s,this.snack_show=!0,this.snack_success="error"})}}},J=Object.assign(R,{setup(n){return(s,l)=>(d(),p(f,null,[a(k,null,{default:e(()=>[a(c,{cols:"12",md:"12"},{default:e(()=>[P]),_:1}),(d(!0),p(f,null,$(s.extension_data.data,t=>(d(),h(c,{cols:"12",md:"6",lg:"4"},{default:e(()=>[(d(),h(v,{key:t.name,title:t.name,link:t.repo,style:{"margin-bottom":"16px"}},{default:e(()=>[i("p",U,u(t.desc),1),i("div",q,[a(F,null,{default:e(()=>[o("mdi-account")]),_:1}),i("span",null,u(t.author),1),a(m),a(r,{variant:"plain",onClick:_=>s.uninstallExtension(t.name),loading:s.uninstall_loading},{default:e(()=>[o("卸 载")]),_:2},1032,["onClick","loading"])])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),a(c,{cols:"12",md:"12"},{default:e(()=>[A]),_:1})]),_:1}),a(j,{modelValue:s.dialog,"onUpdate:modelValue":l[3]||(l[3]=t=>s.dialog=t),persistent:"",width:"700"},{activator:e(({props:t})=>[a(r,S(t,{icon:"mdi-content-plus",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary"}),null,16)]),default:e(()=>[a(w,null,{default:e(()=>[a(x,null,{default:e(()=>[I]),_:1}),a(V,null,{default:e(()=>[a(B,null,{default:e(()=>[a(k,null,{default:e(()=>[a(c,{cols:"12"},{default:e(()=>[a(N,{label:"Git 库链接",modelValue:s.extension_url,"onUpdate:modelValue":l[0]||(l[0]=t=>s.extension_url=t),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),L,O,i("small",null,u(s.status),1)]),_:1}),a(T,null,{default:e(()=>[a(m),a(r,{color:"blue-darken-1",variant:"text",onClick:l[1]||(l[1]=t=>s.dialog=!1)},{default:e(()=>[o(" 关闭 ")]),_:1}),a(r,{color:"blue-darken-1",variant:"text",loading:s.install_loading,onClick:l[2]||(l[2]=t=>s.newExtension(s.extension_url))},{default:e(()=>[o(" 安装 ")]),_:1},8,["loading"])]),_:1})]),_:1})]),_:1},8,["modelValue"]),a(D,{timeout:2e3,elevation:"24",color:s.snack_success,modelValue:s.snack_show,"onUpdate:modelValue":l[4]||(l[4]=t=>s.snack_show=t)},{default:e(()=>[o(u(s.snack_message),1)]),_:1},8,["color","modelValue"])],64))}});export{J as default}; +import{x as b,o as d,c as h,w as e,a,a6 as C,b as i,K as x,e as o,t as u,G as m,d as r,A as E,L as V,a7 as y,J as w,s as p,f as c,F as f,u as $,V as k,q as S,N as B,O as N,P as T,H as j,a8 as D,R as g,j as F}from"./index-ffe5e9b0.js";const G={class:"d-sm-flex align-center justify-space-between"},v=b({__name:"ExtensionCard",props:{title:String,link:String},setup(n){const s=n,l=t=>{window.open(t,"_blank")};return(t,_)=>(d(),h(w,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(C,{style:{padding:"10px 20px"}},{default:e(()=>[i("div",G,[a(x,null,{default:e(()=>[o(u(s.title),1)]),_:1}),a(m),a(r,{icon:"mdi-link",variant:"plain",onClick:_[0]||(_[0]=z=>l(s.link))})])]),_:1}),a(E),a(V,null,{default:e(()=>[y(t.$slots,"default")]),_:3})]),_:3}))}}),P=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 已安装的插件")],-1),U={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},q={class:"d-flex align-center gap-3"},A=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 插件市场 [待开发]")],-1),I=i("span",{class:"text-h5"},"从 Git 仓库链接安装插件",-1),L=i("small",null,"github, gitee, gitlab 等公开的仓库都行。",-1),O=i("br",null,null,-1),R={name:"ExtensionPage",components:{ExtensionCard:v},data(){return{extension_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:"",extension_url:"",status:"",dialog:!1,snack_message:"",snack_show:!1,snack_success:"success",install_loading:!1,uninstall_loading:!1}},mounted(){this.getExtensions()},methods:{getExtensions(){g.get("/api/extensions").then(n=>{this.extension_data.data=n.data.data,console.log(this.extension_data)})},newExtension(){this.install_loading=!0,console.log(this.install_loading),g.post("/api/extensions/install",{url:this.extension_url}).then(n=>{if(this.install_loading=!1,n.data.status==="error"){this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=n.data.data,console.log(this.extension_data),this.extension_url="",this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(n=>{this.install_loading=!1,this.snack_message=n,this.snack_show=!0,this.snack_success="error"})},uninstallExtension(n){this.uninstall_loading=!0,g.post("/api/extensions/uninstall",{name:n}).then(s=>{if(this.uninstall_loading=!1,s.data.status==="error"){this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=s.data.data,console.log(this.extension_data),this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(s=>{this.uninstall_loading=!1,this.snack_message=s,this.snack_show=!0,this.snack_success="error"})}}},J=Object.assign(R,{setup(n){return(s,l)=>(d(),p(f,null,[a(k,null,{default:e(()=>[a(c,{cols:"12",md:"12"},{default:e(()=>[P]),_:1}),(d(!0),p(f,null,$(s.extension_data.data,t=>(d(),h(c,{cols:"12",md:"6",lg:"4"},{default:e(()=>[(d(),h(v,{key:t.name,title:t.name,link:t.repo,style:{"margin-bottom":"16px"}},{default:e(()=>[i("p",U,u(t.desc),1),i("div",q,[a(F,null,{default:e(()=>[o("mdi-account")]),_:1}),i("span",null,u(t.author),1),a(m),a(r,{variant:"plain",onClick:_=>s.uninstallExtension(t.name),loading:s.uninstall_loading},{default:e(()=>[o("卸 载")]),_:2},1032,["onClick","loading"])])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),a(c,{cols:"12",md:"12"},{default:e(()=>[A]),_:1})]),_:1}),a(j,{modelValue:s.dialog,"onUpdate:modelValue":l[3]||(l[3]=t=>s.dialog=t),persistent:"",width:"700"},{activator:e(({props:t})=>[a(r,S(t,{icon:"mdi-plus",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary"}),null,16)]),default:e(()=>[a(w,null,{default:e(()=>[a(x,null,{default:e(()=>[I]),_:1}),a(V,null,{default:e(()=>[a(B,null,{default:e(()=>[a(k,null,{default:e(()=>[a(c,{cols:"12"},{default:e(()=>[a(N,{label:"Git 库链接",modelValue:s.extension_url,"onUpdate:modelValue":l[0]||(l[0]=t=>s.extension_url=t),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),L,O,i("small",null,u(s.status),1)]),_:1}),a(T,null,{default:e(()=>[a(m),a(r,{color:"blue-darken-1",variant:"text",onClick:l[1]||(l[1]=t=>s.dialog=!1)},{default:e(()=>[o(" 关闭 ")]),_:1}),a(r,{color:"blue-darken-1",variant:"text",loading:s.install_loading,onClick:l[2]||(l[2]=t=>s.newExtension(s.extension_url))},{default:e(()=>[o(" 安装 ")]),_:1},8,["loading"])]),_:1})]),_:1})]),_:1},8,["modelValue"]),a(D,{timeout:2e3,elevation:"24",color:s.snack_success,modelValue:s.snack_show,"onUpdate:modelValue":l[4]||(l[4]=t=>s.snack_show=t)},{default:e(()=>[o(u(s.snack_message),1)]),_:1},8,["color","modelValue"])],64))}});export{J as default}; diff --git a/addons/dashboard/dist/assets/FullLayout-71b73dcb.js b/addons/dashboard/dist/assets/FullLayout-297dfa95.js similarity index 97% rename from addons/dashboard/dist/assets/FullLayout-71b73dcb.js rename to addons/dashboard/dist/assets/FullLayout-297dfa95.js index 3d8e32972..a32c468d6 100644 --- a/addons/dashboard/dist/assets/FullLayout-71b73dcb.js +++ b/addons/dashboard/dist/assets/FullLayout-297dfa95.js @@ -1 +1 @@ -import{o as s,c as i,w as t,e as v,t as h,g as F,h as q,a as e,i as A,j as g,k as w,l as D,m as R,n as E,r as I,p as M,q as P,s as k,F as y,u as j,v as G,x as z,y as W,b as _,z as H,A as J,B as o,C as K,D as b,d as V,E as N,M as B,G as T,H as Q,I as C,J as X,K as Y,L as Z,N as O,V as ee,f as te,O as L,P as ae,Q as le,R as se,S as ie,T as ne,U as oe,W as re,X as ue,Y as de}from"./index-800319b6.js";import{_ as ce,u as S}from"./LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js";import{m as $}from"./md5-d27f8a54.js";const me=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],fe={__name:"NavGroup",props:{item:Object},setup(a){const l=a;return(n,r)=>(s(),i(F,{color:"darkText",class:"smallCap"},{default:t(()=>[v(h(l.item.header),1)]),_:1}))}},U={__name:"NavItem",props:{item:Object,level:Number},setup(a){return(l,n)=>(s(),i(E,{to:a.item.type==="external"?"":a.item.to,href:a.item.type==="external"?a.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:a.item.disabled,target:a.item.type==="external"?"_blank":""},q({prepend:t(()=>[a.item.icon?(s(),i(g,{key:0,color:a.item.iconColor,size:a.item.iconSize,class:"hide-menu",icon:a.item.icon},null,8,["color","size","icon"])):w("",!0)]),default:t(()=>[e(D,null,{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},[a.item.chip?{name:"append",fn:t(()=>[e(A,{color:a.item.chipColor,class:"sidebarchip hide-menu",size:a.item.chipIcon?"small":"default",variant:a.item.chipVariant,"prepend-icon":a.item.chipIcon},{default:t(()=>[v(h(a.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},pe={__name:"IconSet",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>l.level>0?(s(),i(I(l.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(s(),i(I(l.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ve={__name:"NavCollapse",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>{const u=M("NavCollapse",!0);return s(),i(G,{"no-action":""},{activator:t(({props:f})=>[e(E,P(f,{value:a.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[e(pe,{item:a.item.icon,level:a.level},null,8,["item","level"])]),default:t(()=>[e(D,{class:"mr-auto"},{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},1040,["value"])]),default:t(()=>[(s(!0),k(y,null,j(a.item.children,(f,d)=>(s(),k(y,{key:d},[f.children?(s(),i(u,{key:0,item:f,level:l.level+1},null,8,["item","level"])):(s(),i(U,{key:1,item:f,level:l.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},he={__name:"LogoMain",setup(a){return(l,n)=>(s(),i(ce))}},_e={class:"pa-5"},Ve={class:"pa-4 text-center"},be=z({__name:"VerticalSidebar",setup(a){const l=S(),n=W(me);return(r,u)=>{const f=M("perfect-scrollbar");return s(),i(K,{left:"",modelValue:o(l).Sidebar_drawer,"onUpdate:modelValue":u[0]||(u[0]=d=>o(l).Sidebar_drawer=d),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:o(l).mini_sidebar,"expand-on-hover":""},{default:t(()=>[_("div",_e,[e(he)]),e(f,{class:"scrollnavbar"},{default:t(()=>[e(H,{class:"pa-4"},{default:t(()=>[(s(!0),k(y,null,j(n.value,(d,x)=>(s(),k(y,{key:x},[d.header?(s(),i(fe,{item:d,key:d.title},null,8,["item"])):d.divider?(s(),i(J,{key:1,class:"my-3"})):d.children?(s(),i(ve,{key:2,class:"leftPadding",item:d,level:0},null,8,["item"])):(s(),i(U,{key:3,item:d,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),_("div",Ve,[e(A,{color:"inputBorder",size:"small"},{default:t(()=>[v(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),Ce=_("span",{class:"text-h5"},"密码修改",-1),ke=_("small",null,"如果是第一次修改密码,原密码请留空。",-1),ye=_("br",null,null,-1),xe=z({__name:"VerticalHeader",setup(a){const l=S();b(!1);let n=b(!1),r=b(""),u=b(""),f=b("");const d=p=>{window.open(p,"_blank")};function x(){r.value!=""&&(r.value=$.md5(r.value)),u.value=$.md5(u.value),se.post("/api/change_password",{password:r.value,new_password:u.value}).then(p=>{if(p.data.status=="error"){f.value=p.data.message,r.value="",u.value="";return}n.value=!n.value,f.value=p.data.message,setTimeout(()=>{ie().logout()},1e3)}).catch(p=>{console.log(p),f.value=p,r.value="",u.value=""})}return(p,c)=>(s(),i(le,{elevation:"0",height:"80"},{default:t(()=>[e(V,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=N(m=>o(l).SET_MINI_SIDEBAR(!o(l).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1}),e(V,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:N(o(l).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),e(T),e(Q,{modelValue:o(n),"onUpdate:modelValue":c[4]||(c[4]=m=>C(n)?n.value=m:n=m),persistent:"",width:"700"},{activator:t(({props:m})=>[e(V,P({class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},m),{default:t(()=>[e(g,{icon:"mdi-account-edit",size:"25"})]),_:2},1040)]),default:t(()=>[e(X,null,{default:t(()=>[e(Y,null,{default:t(()=>[Ce]),_:1}),e(Z,null,{default:t(()=>[e(O,null,{default:t(()=>[e(ee,null,{default:t(()=>[e(te,{cols:"12"},{default:t(()=>[e(L,{label:"原密码*",type:"password",modelValue:o(r),"onUpdate:modelValue":c[1]||(c[1]=m=>C(r)?r.value=m:r=m),required:""},null,8,["modelValue"]),e(L,{label:"新密码*",type:"password",modelValue:o(u),"onUpdate:modelValue":c[2]||(c[2]=m=>C(u)?u.value=m:u=m),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),ke,ye,_("small",null,h(o(f)),1)]),_:1}),e(ae,null,{default:t(()=>[e(T),e(V,{color:"blue-darken-1",variant:"text",onClick:c[3]||(c[3]=m=>C(n)?n.value=!1:n=!1)},{default:t(()=>[v(" 关闭 ")]),_:1}),e(V,{color:"blue-darken-1",variant:"text",onClick:x},{default:t(()=>[v(" 提交 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(V,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",onClick:c[5]||(c[5]=m=>d("https://github.com/Soulter/AstrBot")),rounded:"pill"},{default:t(()=>[e(g,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),Se=z({__name:"FullLayout",setup(a){const l=S();return(n,r)=>(s(),i(de,null,{default:t(()=>[e(ne,{theme:"PurpleTheme",class:oe([o(l).fontTheme,o(l).mini_sidebar?"mini-sidebar":"",o(l).inputBg?"inputWithbg":""])},{default:t(()=>[e(be),e(xe),e(re,null,{default:t(()=>[e(O,{fluid:"",class:"page-wrapper"},{default:t(()=>[_("div",null,[e(o(ue))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{Se as default}; +import{o as s,c as i,w as t,e as v,t as h,g as F,h as q,a as e,i as A,j as g,k as w,l as D,m as R,n as E,r as I,p as M,q as P,s as k,F as y,u as j,v as G,x as z,y as W,b as _,z as H,A as J,B as o,C as K,D as b,d as V,E as N,M as B,G as T,H as Q,I as C,J as X,K as Y,L as Z,N as O,V as ee,f as te,O as L,P as ae,Q as le,R as se,S as ie,T as ne,U as oe,W as re,X as ue,Y as de}from"./index-ffe5e9b0.js";import{_ as ce,u as S}from"./LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js";import{m as $}from"./md5-15332791.js";const me=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],fe={__name:"NavGroup",props:{item:Object},setup(a){const l=a;return(n,r)=>(s(),i(F,{color:"darkText",class:"smallCap"},{default:t(()=>[v(h(l.item.header),1)]),_:1}))}},U={__name:"NavItem",props:{item:Object,level:Number},setup(a){return(l,n)=>(s(),i(E,{to:a.item.type==="external"?"":a.item.to,href:a.item.type==="external"?a.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:a.item.disabled,target:a.item.type==="external"?"_blank":""},q({prepend:t(()=>[a.item.icon?(s(),i(g,{key:0,color:a.item.iconColor,size:a.item.iconSize,class:"hide-menu",icon:a.item.icon},null,8,["color","size","icon"])):w("",!0)]),default:t(()=>[e(D,null,{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},[a.item.chip?{name:"append",fn:t(()=>[e(A,{color:a.item.chipColor,class:"sidebarchip hide-menu",size:a.item.chipIcon?"small":"default",variant:a.item.chipVariant,"prepend-icon":a.item.chipIcon},{default:t(()=>[v(h(a.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},pe={__name:"IconSet",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>l.level>0?(s(),i(I(l.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(s(),i(I(l.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ve={__name:"NavCollapse",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>{const u=M("NavCollapse",!0);return s(),i(G,{"no-action":""},{activator:t(({props:f})=>[e(E,P(f,{value:a.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[e(pe,{item:a.item.icon,level:a.level},null,8,["item","level"])]),default:t(()=>[e(D,{class:"mr-auto"},{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},1040,["value"])]),default:t(()=>[(s(!0),k(y,null,j(a.item.children,(f,d)=>(s(),k(y,{key:d},[f.children?(s(),i(u,{key:0,item:f,level:l.level+1},null,8,["item","level"])):(s(),i(U,{key:1,item:f,level:l.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},he={__name:"LogoMain",setup(a){return(l,n)=>(s(),i(ce))}},_e={class:"pa-5"},Ve={class:"pa-4 text-center"},be=z({__name:"VerticalSidebar",setup(a){const l=S(),n=W(me);return(r,u)=>{const f=M("perfect-scrollbar");return s(),i(K,{left:"",modelValue:o(l).Sidebar_drawer,"onUpdate:modelValue":u[0]||(u[0]=d=>o(l).Sidebar_drawer=d),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:o(l).mini_sidebar,"expand-on-hover":""},{default:t(()=>[_("div",_e,[e(he)]),e(f,{class:"scrollnavbar"},{default:t(()=>[e(H,{class:"pa-4"},{default:t(()=>[(s(!0),k(y,null,j(n.value,(d,x)=>(s(),k(y,{key:x},[d.header?(s(),i(fe,{item:d,key:d.title},null,8,["item"])):d.divider?(s(),i(J,{key:1,class:"my-3"})):d.children?(s(),i(ve,{key:2,class:"leftPadding",item:d,level:0},null,8,["item"])):(s(),i(U,{key:3,item:d,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),_("div",Ve,[e(A,{color:"inputBorder",size:"small"},{default:t(()=>[v(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),Ce=_("span",{class:"text-h5"},"密码修改",-1),ke=_("small",null,"如果是第一次修改密码,原密码请留空。",-1),ye=_("br",null,null,-1),xe=z({__name:"VerticalHeader",setup(a){const l=S();b(!1);let n=b(!1),r=b(""),u=b(""),f=b("");const d=p=>{window.open(p,"_blank")};function x(){r.value!=""&&(r.value=$.md5(r.value)),u.value=$.md5(u.value),se.post("/api/change_password",{password:r.value,new_password:u.value}).then(p=>{if(p.data.status=="error"){f.value=p.data.message,r.value="",u.value="";return}n.value=!n.value,f.value=p.data.message,setTimeout(()=>{ie().logout()},1e3)}).catch(p=>{console.log(p),f.value=p,r.value="",u.value=""})}return(p,c)=>(s(),i(le,{elevation:"0",height:"80"},{default:t(()=>[e(V,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=N(m=>o(l).SET_MINI_SIDEBAR(!o(l).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1}),e(V,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:N(o(l).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),e(T),e(Q,{modelValue:o(n),"onUpdate:modelValue":c[4]||(c[4]=m=>C(n)?n.value=m:n=m),persistent:"",width:"700"},{activator:t(({props:m})=>[e(V,P({class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},m),{default:t(()=>[e(g,{icon:"mdi-account-edit",size:"25"})]),_:2},1040)]),default:t(()=>[e(X,null,{default:t(()=>[e(Y,null,{default:t(()=>[Ce]),_:1}),e(Z,null,{default:t(()=>[e(O,null,{default:t(()=>[e(ee,null,{default:t(()=>[e(te,{cols:"12"},{default:t(()=>[e(L,{label:"原密码*",type:"password",modelValue:o(r),"onUpdate:modelValue":c[1]||(c[1]=m=>C(r)?r.value=m:r=m),required:""},null,8,["modelValue"]),e(L,{label:"新密码*",type:"password",modelValue:o(u),"onUpdate:modelValue":c[2]||(c[2]=m=>C(u)?u.value=m:u=m),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),ke,ye,_("small",null,h(o(f)),1)]),_:1}),e(ae,null,{default:t(()=>[e(T),e(V,{color:"blue-darken-1",variant:"text",onClick:c[3]||(c[3]=m=>C(n)?n.value=!1:n=!1)},{default:t(()=>[v(" 关闭 ")]),_:1}),e(V,{color:"blue-darken-1",variant:"text",onClick:x},{default:t(()=>[v(" 提交 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(V,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",onClick:c[5]||(c[5]=m=>d("https://github.com/Soulter/AstrBot")),rounded:"pill"},{default:t(()=>[e(g,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),Se=z({__name:"FullLayout",setup(a){const l=S();return(n,r)=>(s(),i(de,null,{default:t(()=>[e(ne,{theme:"PurpleTheme",class:oe([o(l).fontTheme,o(l).mini_sidebar?"mini-sidebar":"",o(l).inputBg?"inputWithbg":""])},{default:t(()=>[e(be),e(xe),e(re,null,{default:t(()=>[e(O,{fluid:"",class:"page-wrapper"},{default:t(()=>[_("div",null,[e(o(ue))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{Se as default}; diff --git a/addons/dashboard/dist/assets/LoginPage-ba6297b9.js b/addons/dashboard/dist/assets/LoginPage-decfa242.js similarity index 99% rename from addons/dashboard/dist/assets/LoginPage-ba6297b9.js rename to addons/dashboard/dist/assets/LoginPage-decfa242.js index 4c61490ce..6d5149468 100644 --- a/addons/dashboard/dist/assets/LoginPage-ba6297b9.js +++ b/addons/dashboard/dist/assets/LoginPage-decfa242.js @@ -1,4 +1,4 @@ -import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js";import{x as ke,ad as we,r as Ot,ae as Vt,D as A,af as Ne,a0 as P,B as I,ag as Q,ah as St,I as Be,ai as Ie,aj as Et,ak as jt,al as At,am as G,y as wt,o as Re,c as tt,w as C,a as j,O as qe,b as ge,an as Ft,d as Pt,e as Ge,s as Ct,ao as Tt,t as Nt,k as Bt,S as It,f as Fe,N as Rt,V as Pe,J as Ye,L as kt}from"./index-800319b6.js";import{a as Mt}from"./md5-d27f8a54.js";/** +import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js";import{x as ke,ad as we,r as Ot,ae as Vt,D as A,af as Ne,a0 as P,B as I,ag as Q,ah as St,I as Be,ai as Ie,aj as Et,ak as jt,al as At,am as G,y as wt,o as Re,c as tt,w as C,a as j,O as qe,b as ge,an as Ft,d as Pt,e as Ge,s as Ct,ao as Tt,t as Nt,k as Bt,S as It,f as Fe,N as Rt,V as Pe,J as Ye,L as kt}from"./index-ffe5e9b0.js";import{a as Mt}from"./md5-15332791.js";/** * vee-validate v4.11.3 * (c) 2023 Abdelrahman Awad * @license MIT diff --git a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js similarity index 94% rename from addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js rename to addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js index fe1c87a03..64fc87340 100644 --- a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js +++ b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js @@ -1 +1 @@ -import{at as _,x as d,D as n,o as c,s as m,a as f,w as p,au as r,b as a,av as o,B as t,aw as h}from"./index-800319b6.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[f(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:p(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; +import{at as _,x as d,D as n,o as c,s as m,a as f,w as p,au as r,b as a,av as o,B as t,aw as h}from"./index-ffe5e9b0.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[f(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:p(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/addons/dashboard/dist/assets/MaterialIcons-c997ec21.js b/addons/dashboard/dist/assets/MaterialIcons-0da52fba.js similarity index 70% rename from addons/dashboard/dist/assets/MaterialIcons-c997ec21.js rename to addons/dashboard/dist/assets/MaterialIcons-0da52fba.js index 59551a60a..09f9b7de2 100644 --- a/addons/dashboard/dist/assets/MaterialIcons-c997ec21.js +++ b/addons/dashboard/dist/assets/MaterialIcons-0da52fba.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-800319b6.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-ffe5e9b0.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-796fb781.js b/addons/dashboard/dist/assets/RegisterPage-6fba9b67.js similarity index 96% rename from addons/dashboard/dist/assets/RegisterPage-796fb781.js rename to addons/dashboard/dist/assets/RegisterPage-6fba9b67.js index b4dcec1a5..591f86591 100644 --- a/addons/dashboard/dist/assets/RegisterPage-796fb781.js +++ b/addons/dashboard/dist/assets/RegisterPage-6fba9b67.js @@ -1 +1 @@ -import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,O as m,an as A,as as E,F,c as T,N as q,J as V,L as P}from"./index-800319b6.js";const z="/assets/social-google-a359a253.svg",N=["src"],S=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(z),alt:"google"},null,8,N),S]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},J=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),Y=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),J,Y]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; +import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,O as m,an as A,as as E,F,c as T,N as q,J as V,L as P}from"./index-ffe5e9b0.js";const z="/assets/social-google-a359a253.svg",N=["src"],S=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(z),alt:"google"},null,8,N),S]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},J=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),Y=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),J,Y]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/ShadowPage-a816a721.js b/addons/dashboard/dist/assets/ShadowPage-7b3e7ed6.js similarity index 81% rename from addons/dashboard/dist/assets/ShadowPage-a816a721.js rename to addons/dashboard/dist/assets/ShadowPage-7b3e7ed6.js index c636e78b3..b2fd890c4 100644 --- a/addons/dashboard/dist/assets/ShadowPage-a816a721.js +++ b/addons/dashboard/dist/assets/ShadowPage-7b3e7ed6.js @@ -1 +1 @@ -import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,J as p,U as b,b as h,t as g}from"./index-800319b6.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(V,x)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,J as p,U as b,b as h,t as g}from"./index-ffe5e9b0.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(V,x)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/StarterPage-1e1151ff.js b/addons/dashboard/dist/assets/StarterPage-1e1151ff.js deleted file mode 100644 index 4cda00a7b..000000000 --- a/addons/dashboard/dist/assets/StarterPage-1e1151ff.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as l}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as n,D as o,y as r,o as u,s as m,a as e,w as a,f as c,e as d,V as p,F as f}from"./index-800319b6.js";const V=n({__name:"StarterPage",setup(_){const t=o({title:"Sample Page"}),i=r([{title:"Others",disabled:!1,href:"#"},{title:"Sample Page",disabled:!0,href:"#"}]);return(b,g)=>(u(),m(f,null,[e(s,{title:t.value.title,breadcrumbs:i.value},null,8,["title","breadcrumbs"]),e(p,null,{default:a(()=>[e(c,{cols:"12",md:"12"},{default:a(()=>[e(l,{title:"Simple Title"},{default:a(()=>[d(" Lorem ipsum dolor sit amen, consenter nipissing eli, sed do elusion tempos incident ut laborers et doolie magna alissa. Ut enif ad minim venice, quin nostrum exercitation illampu laborings nisi ut liquid ex ea commons construal. Duos aube grue dolor in reprehended in voltage veil esse colum doolie eu fujian bulla parian. Exceptive sin ocean cuspidate non president, sunk in culpa qui officiate descent molls anim id est labours. ")]),_:1})]),_:1})]),_:1})],64))}});export{V as default}; diff --git a/addons/dashboard/dist/assets/TablerIcons-3bd524da.js b/addons/dashboard/dist/assets/TablerIcons-03a8e23e.js similarity index 69% rename from addons/dashboard/dist/assets/TablerIcons-3bd524da.js rename to addons/dashboard/dist/assets/TablerIcons-03a8e23e.js index cc639875a..4793e9e07 100644 --- a/addons/dashboard/dist/assets/TablerIcons-3bd524da.js +++ b/addons/dashboard/dist/assets/TablerIcons-03a8e23e.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-800319b6.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-ffe5e9b0.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/addons/dashboard/dist/assets/TypographyPage-5e7cf496.js b/addons/dashboard/dist/assets/TypographyPage-db19a414.js similarity index 94% rename from addons/dashboard/dist/assets/TypographyPage-5e7cf496.js rename to addons/dashboard/dist/assets/TypographyPage-db19a414.js index 3d21807d2..0ba3e3687 100644 --- a/addons/dashboard/dist/assets/TypographyPage-5e7cf496.js +++ b/addons/dashboard/dist/assets/TypographyPage-db19a414.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js";import{x as f,o as i,c as g,w as e,a,a6 as y,K as b,e as w,t as d,A as C,L as V,a7 as L,J as _,D as o,s as h,f as k,b as t,F as x,u as B,U as H,V as T}from"./index-800319b6.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),D={class:"d-flex flex-column gap-1"},S={class:"text-caption pa-2 bg-lightprimary"},z=t("div",{class:"text-grey"},"Class",-1),N={class:"font-weight-medium"},U=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),$=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(O,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",D,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",S,[z,t("div",N,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[U]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[$]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as f,o as i,c as g,w as e,a,a6 as y,K as b,e as w,t as d,A as C,L as V,a7 as L,J as _,D as o,s as h,f as k,b as t,F as x,u as B,U as H,V as T}from"./index-ffe5e9b0.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),D={class:"d-flex flex-column gap-1"},S={class:"text-caption pa-2 bg-lightprimary"},z=t("div",{class:"text-grey"},"Class",-1),N={class:"font-weight-medium"},U=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),$=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(O,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",D,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",S,[z,t("div",N,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[U]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[$]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; diff --git a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js similarity index 88% rename from addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js rename to addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js index c65380183..e9df2e5da 100644 --- a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js +++ b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js @@ -1 +1 @@ -import{x as n,o,c as i,w as e,a,a6 as d,b as c,K as u,e as p,t as _,a7 as s,A as f,L as V,J as m}from"./index-800319b6.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; +import{x as n,o,c as i,w as e,a,a6 as d,b as c,K as u,e as p,t as _,a7 as s,A as f,L as V,J as m}from"./index-ffe5e9b0.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/addons/dashboard/dist/assets/index-800319b6.js b/addons/dashboard/dist/assets/index-ffe5e9b0.js similarity index 99% rename from addons/dashboard/dist/assets/index-800319b6.js rename to addons/dashboard/dist/assets/index-ffe5e9b0.js index d78356b3a..891b5753a 100644 --- a/addons/dashboard/dist/assets/index-800319b6.js +++ b/addons/dashboard/dist/assets/index-ffe5e9b0.js @@ -6,11 +6,11 @@ * vue-router v4.2.4 * (c) 2023 Eduardo San Martin Morote * @license MIT - */const Wr=typeof window<"u";function t5(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const fe=Object.assign;function Li(n,l){const r={};for(const h in l){const c=l[h];r[h]=Kn(c)?c.map(n):n(c)}return r}const Wo=()=>{},Kn=Array.isArray,e5=/\/$/,n5=n=>n.replace(e5,"");function Di(n,l,r="/"){let h,c={},g="",v="";const k=l.indexOf("#");let x=l.indexOf("?");return k=0&&(x=-1),x>-1&&(h=l.slice(0,x),g=l.slice(x+1,k>-1?k:l.length),c=n(g)),k>-1&&(h=h||l.slice(0,k),v=l.slice(k,l.length)),h=s5(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:c,hash:v}}function l5(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function A1(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function r5(n,l,r){const h=l.matched.length-1,c=r.matched.length-1;return h>-1&&h===c&&eo(l.matched[h],r.matched[c])&&qu(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function eo(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function qu(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!o5(n[r],l[r]))return!1;return!0}function o5(n,l){return Kn(n)?B1(n,l):Kn(l)?B1(l,n):n===l}function B1(n,l){return Kn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function s5(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),c=h[h.length-1];(c===".."||c===".")&&h.push("");let g=r.length-1,v,k;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var rs;(function(n){n.pop="pop",n.push="push"})(rs||(rs={}));var Xo;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Xo||(Xo={}));function a5(n){if(!n)if(Wr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),n5(n)}const i5=/^[^#]+#/;function h5(n,l){return n.replace(i5,"#")+l}function d5(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Ga=()=>({left:window.pageXOffset,top:window.pageYOffset});function c5(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),c=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!c)return;l=d5(c,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function H1(n,l){return(history.state?history.state.position-l:-1)+n}const x0=new Map;function u5(n,l){x0.set(n,l)}function p5(n){const l=x0.get(n);return x0.delete(n),l}let g5=()=>location.protocol+"//"+location.host;function Yu(n,l){const{pathname:r,search:h,hash:c}=l,g=n.indexOf("#");if(g>-1){let k=c.includes(n.slice(g))?n.slice(g).length:1,x=c.slice(k);return x[0]!=="/"&&(x="/"+x),A1(x,"")}return A1(r,n)+h+c}function w5(n,l,r,h){let c=[],g=[],v=null;const k=({state:B})=>{const P=Yu(n,location),D=r.value,F=l.value;let X=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}X=F?B.position-F.position:0}else h(P);c.forEach(R=>{R(r.value,D,{delta:X,type:rs.pop,direction:X?X>0?Xo.forward:Xo.back:Xo.unknown})})};function x(){v=r.value}function I(B){c.push(B);const P=()=>{const D=c.indexOf(B);D>-1&&c.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(fe({},B.state,{scroll:Ga()}),"")}function $(){for(const B of g)B();g=[],window.removeEventListener("popstate",k),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",k),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:x,listen:I,destroy:$}}function N1(n,l,r,h=!1,c=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:c?Ga():null}}function v5(n){const{history:l,location:r}=window,h={value:Yu(n,r)},c={value:l.state};c.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(x,I,S){const $=n.indexOf("#"),B=$>-1?(r.host&&document.querySelector("base")?n:n.slice($))+x:g5()+n+x;try{l[S?"replaceState":"pushState"](I,"",B),c.value=I}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(x,I){const S=fe({},l.state,N1(c.value.back,x,c.value.forward,!0),I,{position:c.value.position});g(x,S,!0),h.value=x}function k(x,I){const S=fe({},c.value,l.state,{forward:x,scroll:Ga()});g(S.current,S,!0);const $=fe({},N1(h.value,x,null),{position:S.position+1},I);g(x,$,!1),h.value=x}return{location:h,state:c,push:k,replace:v}}function f5(n){n=a5(n);const l=v5(n),r=w5(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const c=fe({location:"",base:n,go:h,createHref:h5.bind(null,n)},l,r);return Object.defineProperty(c,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(c,"state",{enumerable:!0,get:()=>l.state.value}),c}function m5(n){return typeof n=="string"||n&&typeof n=="object"}function Uu(n){return typeof n=="string"||typeof n=="symbol"}const Pl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Gu=Symbol("");var j1;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(j1||(j1={}));function no(n,l){return fe(new Error,{type:n,[Gu]:!0},l)}function dl(n,l){return n instanceof Error&&Gu in n&&(l==null||!!(n.type&l))}const P1="[^/]+?",k5={sensitive:!1,strict:!1,start:!0,end:!0},b5=/[.+*?^${}()[\]/\\]/g;function M5(n,l){const r=fe({},k5,l),h=[];let c=r.start?"^":"";const g=[];for(const I of n){const S=I.length?[]:[90];r.strict&&!I.length&&(c+="/");for(let $=0;$l.length?l.length===1&&l[0]===40+40?1:-1:0}function z5(n,l){let r=0;const h=n.score,c=l.score;for(;r0&&l[l.length-1]<0}const I5={type:0,value:""},y5=/[a-zA-Z0-9_]/;function C5(n){if(!n)return[[]];if(n==="/")return[[I5]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${I}": ${P}`)}let r=0,h=r;const c=[];let g;function v(){g&&c.push(g),g=[]}let k=0,x,I="",S="";function $(){I&&(r===0?g.push({type:0,value:I}):r===1||r===2||r===3?(g.length>1&&(x==="*"||x==="+")&&l(`A repeatable param (${I}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:I,regexp:S,repeatable:x==="*"||x==="+",optional:x==="*"||x==="?"})):l("Invalid state to consume buffer"),I="")}function B(){I+=x}for(;k{v(H)}:Wo}function v(S){if(Uu(S)){const $=h.get(S);$&&(h.delete(S),r.splice(r.indexOf($),1),$.children.forEach(v),$.alias.forEach(v))}else{const $=r.indexOf(S);$>-1&&(r.splice($,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function k(){return r}function x(S){let $=0;for(;$=0&&(S.record.path!==r[$].record.path||!Zu(S,r[$]));)$++;r.splice($,0,S),S.record.name&&!O1(S)&&h.set(S.record.name,S)}function I(S,$){let B,P={},D,F;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw no(1,{location:S});F=B.record.name,P=fe(D1($.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&D1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),F=B.record.name);else{if(B=$.name?h.get($.name):r.find(H=>H.re.test($.path)),!B)throw no(1,{location:S,currentLocation:$});F=B.record.name,P=fe({},$.params,S.params),D=B.stringify(P)}const X=[];let R=B;for(;R;)X.unshift(R.record),R=R.parent;return{name:F,path:D,params:P,matched:X,meta:H5(X)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:I,removeRoute:v,getRoutes:k,getRecordMatcher:c}}function D1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function A5(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:B5(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function B5(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function O1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function H5(n){return n.reduce((l,r)=>fe(l,r.meta),{})}function F1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function Zu(n,l){return l.children.some(r=>r===n||Zu(n,r))}const Ku=/#/g,N5=/&/g,j5=/\//g,P5=/=/g,L5=/\?/g,Qu=/\+/g,D5=/%5B/g,O5=/%5D/g,Ju=/%5E/g,F5=/%60/g,tp=/%7B/g,R5=/%7C/g,ep=/%7D/g,T5=/%20/g;function Xh(n){return encodeURI(""+n).replace(R5,"|").replace(D5,"[").replace(O5,"]")}function E5(n){return Xh(n).replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function z0(n){return Xh(n).replace(Qu,"%2B").replace(T5,"+").replace(Ku,"%23").replace(N5,"%26").replace(F5,"`").replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function V5(n){return z0(n).replace(P5,"%3D")}function _5(n){return Xh(n).replace(Ku,"%23").replace(L5,"%3F")}function W5(n){return n==null?"":_5(n).replace(j5,"%2F")}function wa(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function X5(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let c=0;cg&&z0(g)):[h&&z0(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function q5(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Kn(h)?h.map(c=>c==null?null:""+c):h==null?h:""+h)}return l}const Y5=Symbol(""),T1=Symbol(""),qh=Symbol(""),np=Symbol(""),I0=Symbol("");function $o(){let n=[];function l(h){return n.push(h),()=>{const c=n.indexOf(h);c>-1&&n.splice(c,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Rl(n,l,r,h,c){const g=h&&(h.enterCallbacks[c]=h.enterCallbacks[c]||[]);return()=>new Promise((v,k)=>{const x=$=>{$===!1?k(no(4,{from:r,to:l})):$ instanceof Error?k($):m5($)?k(no(2,{from:l,to:$})):(g&&h.enterCallbacks[c]===g&&typeof $=="function"&&g.push($),v())},I=n.call(h&&h.instances[c],l,r,x);let S=Promise.resolve(I);n.length<3&&(S=S.then(x)),S.catch($=>k($))})}function Oi(n,l,r,h){const c=[];for(const g of n)for(const v in g.components){let k=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(U5(k)){const I=(k.__vccOpts||k)[l];I&&c.push(Rl(I,r,h,g,v))}else{let x=k();c.push(()=>x.then(I=>{if(!I)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=t5(I)?I.default:I;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Rl(B,r,h,g,v)()}))}}return c}function U5(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function E1(n){const l=de(qh),r=de(np),h=q(()=>l.resolve(je(n.to))),c=q(()=>{const{matched:x}=h.value,{length:I}=x,S=x[I-1],$=r.matched;if(!S||!$.length)return-1;const B=$.findIndex(eo.bind(null,S));if(B>-1)return B;const P=V1(x[I-2]);return I>1&&V1(S)===P&&$[$.length-1].path!==P?$.findIndex(eo.bind(null,x[I-2])):B}),g=q(()=>c.value>-1&&Q5(r.params,h.value.params)),v=q(()=>c.value>-1&&c.value===r.matched.length-1&&qu(r.params,h.value.params));function k(x={}){return K5(x)?l[je(n.replace)?"replace":"push"](je(n.to)).catch(Wo):Promise.resolve()}return{route:h,href:q(()=>h.value.href),isActive:g,isExactActive:v,navigate:k}}const G5=Cr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:E1,setup(n,{slots:l}){const r=Ze(E1(n)),{options:h}=de(qh),c=q(()=>({[_1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[_1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Ln("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:c.value},g)}}}),Z5=G5;function K5(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Q5(n,l){for(const r in l){const h=l[r],c=n[r];if(typeof h=="string"){if(h!==c)return!1}else if(!Kn(c)||c.length!==h.length||h.some((g,v)=>g!==c[v]))return!1}return!0}function V1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const _1=(n,l,r)=>n??l??r,J5=Cr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=de(I0),c=q(()=>n.route||h.value),g=de(T1,0),v=q(()=>{let I=je(g);const{matched:S}=c.value;let $;for(;($=S[I])&&!$.components;)I++;return I}),k=q(()=>c.value.matched[v.value]);Se(T1,q(()=>v.value+1)),Se(Y5,k),Se(I0,c);const x=Lt();return _t(()=>[x.value,k.value,n.name],([I,S,$],[B,P,D])=>{S&&(S.instances[$]=I,P&&P!==S&&I&&I===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),I&&S&&(!P||!eo(S,P)||!B)&&(S.enterCallbacks[$]||[]).forEach(F=>F(I))},{flush:"post"}),()=>{const I=c.value,S=n.name,$=k.value,B=$&&$.components[S];if(!B)return W1(r.default,{Component:B,route:I});const P=$.props[S],D=P?P===!0?I.params:typeof P=="function"?P(I):P:null,X=Ln(B,fe({},D,l,{onVnodeUnmounted:R=>{R.component.isUnmounted&&($.instances[S]=null)},ref:x}));return W1(r.default,{Component:X,route:I})||X}}});function W1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const lp=J5;function tm(n){const l=$5(n.routes,n),r=n.parseQuery||X5,h=n.stringifyQuery||R1,c=n.history,g=$o(),v=$o(),k=$o(),x=Wt(Pl);let I=Pl;Wr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=Li.bind(null,pt=>""+pt),$=Li.bind(null,W5),B=Li.bind(null,wa);function P(pt,Nt){let jt,bt;return Uu(pt)?(jt=l.getRecordMatcher(pt),bt=Nt):bt=pt,l.addRoute(bt,jt)}function D(pt){const Nt=l.getRecordMatcher(pt);Nt&&l.removeRoute(Nt)}function F(){return l.getRoutes().map(pt=>pt.record)}function X(pt){return!!l.getRecordMatcher(pt)}function R(pt,Nt){if(Nt=fe({},Nt||x.value),typeof pt=="string"){const at=Di(r,pt,Nt.path),ct=l.resolve({path:at.path},Nt),kt=c.createHref(at.fullPath);return fe(at,ct,{params:B(ct.params),hash:wa(at.hash),redirectedFrom:void 0,href:kt})}let jt;if("path"in pt)jt=fe({},pt,{path:Di(r,pt.path,Nt.path).path});else{const at=fe({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];jt=fe({},pt,{params:$(at)}),Nt.params=$(Nt.params)}const bt=l.resolve(jt,Nt),ft=pt.hash||"";bt.params=S(B(bt.params));const J=l5(h,fe({},pt,{hash:E5(ft),path:bt.path})),lt=c.createHref(J);return fe({fullPath:J,hash:ft,query:h===R1?q5(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?Di(r,pt,x.value.path):fe({},pt)}function U(pt,Nt){if(I!==pt)return no(8,{from:Nt,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(fe(H(pt),{replace:!0}))}function tt(pt){const Nt=pt.matched[pt.matched.length-1];if(Nt&&Nt.redirect){const{redirect:jt}=Nt;let bt=typeof jt=="function"?jt(pt):jt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),fe({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Nt){const jt=I=R(pt),bt=x.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(jt);if(at)return nt(fe(H(at),{state:typeof at=="object"?fe({},ft,at.state):ft,force:J,replace:lt}),Nt||jt);const ct=jt;ct.redirectedFrom=Nt;let kt;return!J&&r5(h,bt,jt)&&(kt=no(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>dl(yt)?dl(yt,2)?yt:At(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(dl(yt,2))return nt(fe({replace:lt},H(yt.to),{state:typeof yt.to=="object"?fe({},ft,yt.to.state):ft,force:J}),Nt||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function Y(pt,Nt){const jt=U(pt,Nt);return jt?Promise.reject(jt):Promise.resolve()}function G(pt){const Nt=Jt.values().next().value;return Nt&&typeof Nt.runWithContext=="function"?Nt.runWithContext(pt):pt()}function et(pt,Nt){let jt;const[bt,ft,J]=em(pt,Nt);jt=Oi(bt.reverse(),"beforeRouteLeave",pt,Nt);for(const at of bt)at.leaveGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});const lt=Y.bind(null,pt,Nt);return jt.push(lt),ut(jt).then(()=>{jt=[];for(const at of g.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>{jt=Oi(ft,"beforeRouteUpdate",pt,Nt);for(const at of ft)at.updateGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});return jt.push(lt),ut(jt)}).then(()=>{jt=[];for(const at of J)if(at.beforeEnter)if(Kn(at.beforeEnter))for(const ct of at.beforeEnter)jt.push(Rl(ct,pt,Nt));else jt.push(Rl(at.beforeEnter,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),jt=Oi(J,"beforeRouteEnter",pt,Nt),jt.push(lt),ut(jt))).then(()=>{jt=[];for(const at of v.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).catch(at=>dl(at,8)?at:Promise.reject(at))}function st(pt,Nt,jt){k.list().forEach(bt=>G(()=>bt(pt,Nt,jt)))}function rt(pt,Nt,jt,bt,ft){const J=U(pt,Nt);if(J)return J;const lt=Nt===Pl,at=Wr?history.state:{};jt&&(bt||lt?c.replace(pt.fullPath,fe({scroll:lt&&at&&at.scroll},ft)):c.push(pt.fullPath,ft)),x.value=pt,Tt(pt,Nt,jt,lt),At()}let ht;function dt(){ht||(ht=c.listen((pt,Nt,jt)=>{if(!Et.listening)return;const bt=R(pt),ft=tt(bt);if(ft){nt(fe(ft,{replace:!0}),bt).catch(Wo);return}I=bt;const J=x.value;Wr&&u5(H1(J.fullPath,jt.delta),Ga()),et(bt,J).catch(lt=>dl(lt,12)?lt:dl(lt,2)?(nt(lt.to,bt).then(at=>{dl(at,20)&&!jt.delta&&jt.type===rs.pop&&c.go(-1,!1)}).catch(Wo),Promise.reject()):(jt.delta&&c.go(-jt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(jt.delta&&!dl(lt,8)?c.go(-jt.delta,!1):jt.type===rs.pop&&dl(lt,20)&&c.go(-1,!1)),st(bt,J,lt)}).catch(Wo)}))}let Ct=$o(),xt=$o(),wt;function gt(pt,Nt,jt){At(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Nt,jt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&x.value!==Pl?Promise.resolve():new Promise((pt,Nt)=>{Ct.add([pt,Nt])})}function At(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Nt,jt])=>pt?jt(pt):Nt()),Ct.reset()),pt}function Tt(pt,Nt,jt,bt){const{scrollBehavior:ft}=n;if(!Wr||!ft)return Promise.resolve();const J=!jt&&p5(H1(pt.fullPath,0))||(bt||!jt)&&history.state&&history.state.scroll||null;return we().then(()=>ft(pt,Nt,J)).then(lt=>lt&&c5(lt)).catch(lt=>gt(lt,pt,Nt))}const Ft=pt=>c.go(pt);let Qt;const Jt=new Set,Et={currentRoute:x,listening:!0,addRoute:P,removeRoute:D,hasRoute:X,getRoutes:F,resolve:R,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:k.add,onError:xt.add,isReady:It,install(pt){const Nt=this;pt.component("RouterLink",Z5),pt.component("RouterView",lp),pt.config.globalProperties.$router=Nt,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>je(x)}),Wr&&!Qt&&x.value===Pl&&(Qt=!0,W(c.location).catch(ft=>{}));const jt={};for(const ft in Pl)Object.defineProperty(jt,ft,{get:()=>x.value[ft],enumerable:!0});pt.provide(qh,Nt),pt.provide(np,fh(jt)),pt.provide(I0,x);const bt=pt.unmount;Jt.add(pt),pt.unmount=function(){Jt.delete(pt),Jt.size<1&&(I=Pl,ht&&ht(),ht=null,x.value=Pl,Qt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Nt,jt)=>Nt.then(()=>G(jt)),Promise.resolve())}return Et}function em(n,l){const r=[],h=[],c=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;veo(I,k))?h.push(k):r.push(k));const x=n.matched[v];x&&(l.matched.find(I=>eo(I,x))||c.push(x))}return[r,h,c]}const nm=Cr({__name:"App",setup(n){return(l,r)=>(xs(),_a(je(lp)))}}),lm="modulepreload",rm=function(n){return"/"+n},X1={},en=function(l,r,h){if(!r||r.length===0)return l();const c=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=rm(g),g in X1)return;X1[g]=!0;const v=g.endsWith(".css"),k=v?'[rel="stylesheet"]':"";if(!!h)for(let S=c.length-1;S>=0;S--){const $=c[S];if($.href===g&&(!v||$.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${k}`))return;const I=document.createElement("link");if(I.rel=v?"stylesheet":lm,v||(I.as="script",I.crossOrigin=""),I.href=g,document.head.appendChild(I),v)return new Promise((S,$)=>{I.addEventListener("load",S),I.addEventListener("error",()=>$(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},om={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>en(()=>import("./FullLayout-71b73dcb.js"),["assets/FullLayout-71b73dcb.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js","assets/md5-d27f8a54.js"]),children:[{name:"Dashboard",path:"/",component:()=>en(()=>import("./DefaultDashboard-4f67e2ec.js"),["assets/DefaultDashboard-4f67e2ec.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Extensions",path:"/extension",component:()=>en(()=>import("./ExtensionPage-180d977b.js"),[])},{name:"Configs",path:"/config",component:()=>en(()=>import("./ConfigPage-9cadf278.js"),["assets/ConfigPage-9cadf278.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Default",path:"/dashboard/default",component:()=>en(()=>import("./DefaultDashboard-4f67e2ec.js"),["assets/DefaultDashboard-4f67e2ec.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Starter",path:"/starter",component:()=>en(()=>import("./StarterPage-1e1151ff.js"),["assets/StarterPage-1e1151ff.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>en(()=>import("./TablerIcons-3bd524da.js"),["assets/TablerIcons-3bd524da.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Material Icons",path:"/icons/material",component:()=>en(()=>import("./MaterialIcons-c997ec21.js"),["assets/MaterialIcons-c997ec21.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Typography",path:"/utils/typography",component:()=>en(()=>import("./TypographyPage-5e7cf496.js"),["assets/TypographyPage-5e7cf496.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>en(()=>import("./ShadowPage-a816a721.js"),["assets/ShadowPage-a816a721.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])},{name:"Colors",path:"/utils/colors",component:()=>en(()=>import("./ColorPage-c6cfe87e.js"),["assets/ColorPage-c6cfe87e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-aa6ced5d.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-e922762c.js"])}]},sm={path:"/auth",component:()=>en(()=>import("./BlankLayout-434d9bb3.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>en(()=>import("./LoginPage-ba6297b9.js"),["assets/LoginPage-ba6297b9.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js","assets/md5-d27f8a54.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>en(()=>import("./RegisterPage-796fb781.js"),["assets/RegisterPage-796fb781.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-845ef4aa.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>en(()=>import("./Error404Page-a7e4df24.js"),["assets/Error404Page-a7e4df24.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]};function rp(n,l){return function(){return n.apply(l,arguments)}}const{toString:am}=Object.prototype,{getPrototypeOf:Yh}=Object,Za=(n=>l=>{const r=am.call(l);return n[r]||(n[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),il=n=>(n=n.toLowerCase(),l=>Za(l)===n),Ka=n=>l=>typeof l===n,{isArray:po}=Array,os=Ka("undefined");function im(n){return n!==null&&!os(n)&&n.constructor!==null&&!os(n.constructor)&&jn(n.constructor.isBuffer)&&n.constructor.isBuffer(n)}const op=il("ArrayBuffer");function hm(n){let l;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?l=ArrayBuffer.isView(n):l=n&&n.buffer&&op(n.buffer),l}const dm=Ka("string"),jn=Ka("function"),sp=Ka("number"),Qa=n=>n!==null&&typeof n=="object",cm=n=>n===!0||n===!1,ra=n=>{if(Za(n)!=="object")return!1;const l=Yh(n);return(l===null||l===Object.prototype||Object.getPrototypeOf(l)===null)&&!(Symbol.toStringTag in n)&&!(Symbol.iterator in n)},um=il("Date"),pm=il("File"),gm=il("Blob"),wm=il("FileList"),vm=n=>Qa(n)&&jn(n.pipe),fm=n=>{let l;return n&&(typeof FormData=="function"&&n instanceof FormData||jn(n.append)&&((l=Za(n))==="formdata"||l==="object"&&jn(n.toString)&&n.toString()==="[object FormData]"))},mm=il("URLSearchParams"),km=n=>n.trim?n.trim():n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ys(n,l,{allOwnKeys:r=!1}={}){if(n===null||typeof n>"u")return;let h,c;if(typeof n!="object"&&(n=[n]),po(n))for(h=0,c=n.length;h0;)if(c=r[h],l===c.toLowerCase())return c;return null}const ip=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),hp=n=>!os(n)&&n!==ip;function y0(){const{caseless:n}=hp(this)&&this||{},l={},r=(h,c)=>{const g=n&&ap(l,c)||c;ra(l[g])&&ra(h)?l[g]=y0(l[g],h):ra(h)?l[g]=y0({},h):po(h)?l[g]=h.slice():l[g]=h};for(let h=0,c=arguments.length;h(ys(l,(c,g)=>{r&&jn(c)?n[g]=rp(c,r):n[g]=c},{allOwnKeys:h}),n),Mm=n=>(n.charCodeAt(0)===65279&&(n=n.slice(1)),n),xm=(n,l,r,h)=>{n.prototype=Object.create(l.prototype,h),n.prototype.constructor=n,Object.defineProperty(n,"super",{value:l.prototype}),r&&Object.assign(n.prototype,r)},zm=(n,l,r,h)=>{let c,g,v;const k={};if(l=l||{},n==null)return l;do{for(c=Object.getOwnPropertyNames(n),g=c.length;g-- >0;)v=c[g],(!h||h(v,n,l))&&!k[v]&&(l[v]=n[v],k[v]=!0);n=r!==!1&&Yh(n)}while(n&&(!r||r(n,l))&&n!==Object.prototype);return l},Im=(n,l,r)=>{n=String(n),(r===void 0||r>n.length)&&(r=n.length),r-=l.length;const h=n.indexOf(l,r);return h!==-1&&h===r},ym=n=>{if(!n)return null;if(po(n))return n;let l=n.length;if(!sp(l))return null;const r=new Array(l);for(;l-- >0;)r[l]=n[l];return r},Cm=(n=>l=>n&&l instanceof n)(typeof Uint8Array<"u"&&Yh(Uint8Array)),Sm=(n,l)=>{const h=(n&&n[Symbol.iterator]).call(n);let c;for(;(c=h.next())&&!c.done;){const g=c.value;l.call(n,g[0],g[1])}},$m=(n,l)=>{let r;const h=[];for(;(r=n.exec(l))!==null;)h.push(r);return h},Am=il("HTMLFormElement"),Bm=n=>n.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,h,c){return h.toUpperCase()+c}),q1=(({hasOwnProperty:n})=>(l,r)=>n.call(l,r))(Object.prototype),Hm=il("RegExp"),dp=(n,l)=>{const r=Object.getOwnPropertyDescriptors(n),h={};ys(r,(c,g)=>{let v;(v=l(c,g,n))!==!1&&(h[g]=v||c)}),Object.defineProperties(n,h)},Nm=n=>{dp(n,(l,r)=>{if(jn(n)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const h=n[r];if(jn(h)){if(l.enumerable=!1,"writable"in l){l.writable=!1;return}l.set||(l.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},jm=(n,l)=>{const r={},h=c=>{c.forEach(g=>{r[g]=!0})};return po(n)?h(n):h(String(n).split(l)),r},Pm=()=>{},Lm=(n,l)=>(n=+n,Number.isFinite(n)?n:l),Fi="abcdefghijklmnopqrstuvwxyz",Y1="0123456789",cp={DIGIT:Y1,ALPHA:Fi,ALPHA_DIGIT:Fi+Fi.toUpperCase()+Y1},Dm=(n=16,l=cp.ALPHA_DIGIT)=>{let r="";const{length:h}=l;for(;n--;)r+=l[Math.random()*h|0];return r};function Om(n){return!!(n&&jn(n.append)&&n[Symbol.toStringTag]==="FormData"&&n[Symbol.iterator])}const Fm=n=>{const l=new Array(10),r=(h,c)=>{if(Qa(h)){if(l.indexOf(h)>=0)return;if(!("toJSON"in h)){l[c]=h;const g=po(h)?[]:{};return ys(h,(v,k)=>{const x=r(v,c+1);!os(x)&&(g[k]=x)}),l[c]=void 0,g}}return h};return r(n,0)},Rm=il("AsyncFunction"),Tm=n=>n&&(Qa(n)||jn(n))&&jn(n.then)&&jn(n.catch),St={isArray:po,isArrayBuffer:op,isBuffer:im,isFormData:fm,isArrayBufferView:hm,isString:dm,isNumber:sp,isBoolean:cm,isObject:Qa,isPlainObject:ra,isUndefined:os,isDate:um,isFile:pm,isBlob:gm,isRegExp:Hm,isFunction:jn,isStream:vm,isURLSearchParams:mm,isTypedArray:Cm,isFileList:wm,forEach:ys,merge:y0,extend:bm,trim:km,stripBOM:Mm,inherits:xm,toFlatObject:zm,kindOf:Za,kindOfTest:il,endsWith:Im,toArray:ym,forEachEntry:Sm,matchAll:$m,isHTMLForm:Am,hasOwnProperty:q1,hasOwnProp:q1,reduceDescriptors:dp,freezeMethods:Nm,toObjectSet:jm,toCamelCase:Bm,noop:Pm,toFiniteNumber:Lm,findKey:ap,global:ip,isContextDefined:hp,ALPHABET:cp,generateString:Dm,isSpecCompliantForm:Om,toJSONObject:Fm,isAsyncFn:Rm,isThenable:Tm};function pe(n,l,r,h,c){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=n,this.name="AxiosError",l&&(this.code=l),r&&(this.config=r),h&&(this.request=h),c&&(this.response=c)}St.inherits(pe,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:St.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const up=pe.prototype,pp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(n=>{pp[n]={value:n}});Object.defineProperties(pe,pp);Object.defineProperty(up,"isAxiosError",{value:!0});pe.from=(n,l,r,h,c,g)=>{const v=Object.create(up);return St.toFlatObject(n,v,function(x){return x!==Error.prototype},k=>k!=="isAxiosError"),pe.call(v,n.message,l,r,h,c),v.cause=n,v.name=n.name,g&&Object.assign(v,g),v};const Em=null;function C0(n){return St.isPlainObject(n)||St.isArray(n)}function gp(n){return St.endsWith(n,"[]")?n.slice(0,-2):n}function U1(n,l,r){return n?n.concat(l).map(function(c,g){return c=gp(c),!r&&g?"["+c+"]":c}).join(r?".":""):l}function Vm(n){return St.isArray(n)&&!n.some(C0)}const _m=St.toFlatObject(St,{},null,function(l){return/^is[A-Z]/.test(l)});function Ja(n,l,r){if(!St.isObject(n))throw new TypeError("target must be an object");l=l||new FormData,r=St.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(F,X){return!St.isUndefined(X[F])});const h=r.metaTokens,c=r.visitor||S,g=r.dots,v=r.indexes,x=(r.Blob||typeof Blob<"u"&&Blob)&&St.isSpecCompliantForm(l);if(!St.isFunction(c))throw new TypeError("visitor must be a function");function I(D){if(D===null)return"";if(St.isDate(D))return D.toISOString();if(!x&&St.isBlob(D))throw new pe("Blob is not supported. Use a Buffer instead.");return St.isArrayBuffer(D)||St.isTypedArray(D)?x&&typeof Blob=="function"?new Blob([D]):Buffer.from(D):D}function S(D,F,X){let R=D;if(D&&!X&&typeof D=="object"){if(St.endsWith(F,"{}"))F=h?F:F.slice(0,-2),D=JSON.stringify(D);else if(St.isArray(D)&&Vm(D)||(St.isFileList(D)||St.endsWith(F,"[]"))&&(R=St.toArray(D)))return F=gp(F),R.forEach(function(U,W){!(St.isUndefined(U)||U===null)&&l.append(v===!0?U1([F],W,g):v===null?F:F+"[]",I(U))}),!1}return C0(D)?!0:(l.append(U1(X,F,g),I(D)),!1)}const $=[],B=Object.assign(_m,{defaultVisitor:S,convertValue:I,isVisitable:C0});function P(D,F){if(!St.isUndefined(D)){if($.indexOf(D)!==-1)throw Error("Circular reference detected in "+F.join("."));$.push(D),St.forEach(D,function(R,H){(!(St.isUndefined(R)||R===null)&&c.call(l,R,St.isString(H)?H.trim():H,F,B))===!0&&P(R,F?F.concat(H):[H])}),$.pop()}}if(!St.isObject(n))throw new TypeError("data must be an object");return P(n),l}function G1(n){const l={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(n).replace(/[!'()~]|%20|%00/g,function(h){return l[h]})}function Uh(n,l){this._pairs=[],n&&Ja(n,this,l)}const wp=Uh.prototype;wp.append=function(l,r){this._pairs.push([l,r])};wp.toString=function(l){const r=l?function(h){return l.call(this,h,G1)}:G1;return this._pairs.map(function(c){return r(c[0])+"="+r(c[1])},"").join("&")};function Wm(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function vp(n,l,r){if(!l)return n;const h=r&&r.encode||Wm,c=r&&r.serialize;let g;if(c?g=c(l,r):g=St.isURLSearchParams(l)?l.toString():new Uh(l,r).toString(h),g){const v=n.indexOf("#");v!==-1&&(n=n.slice(0,v)),n+=(n.indexOf("?")===-1?"?":"&")+g}return n}class Xm{constructor(){this.handlers=[]}use(l,r,h){return this.handlers.push({fulfilled:l,rejected:r,synchronous:h?h.synchronous:!1,runWhen:h?h.runWhen:null}),this.handlers.length-1}eject(l){this.handlers[l]&&(this.handlers[l]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(l){St.forEach(this.handlers,function(h){h!==null&&l(h)})}}const Z1=Xm,fp={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},qm=typeof URLSearchParams<"u"?URLSearchParams:Uh,Ym=typeof FormData<"u"?FormData:null,Um=typeof Blob<"u"?Blob:null,Gm={isBrowser:!0,classes:{URLSearchParams:qm,FormData:Ym,Blob:Um},protocols:["http","https","file","blob","url","data"]},mp=typeof window<"u"&&typeof document<"u",Zm=(n=>mp&&["ReactNative","NativeScript","NS"].indexOf(n)<0)(typeof navigator<"u"&&navigator.product),Km=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Qm=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:mp,hasStandardBrowserEnv:Zm,hasStandardBrowserWebWorkerEnv:Km},Symbol.toStringTag,{value:"Module"})),nl={...Qm,...Gm};function Jm(n,l){return Ja(n,new nl.classes.URLSearchParams,Object.assign({visitor:function(r,h,c,g){return nl.isNode&&St.isBuffer(r)?(this.append(h,r.toString("base64")),!1):g.defaultVisitor.apply(this,arguments)}},l))}function tk(n){return St.matchAll(/\w+|\[(\w*)]/g,n).map(l=>l[0]==="[]"?"":l[1]||l[0])}function ek(n){const l={},r=Object.keys(n);let h;const c=r.length;let g;for(h=0;h=r.length;return v=!v&&St.isArray(c)?c.length:v,x?(St.hasOwnProp(c,v)?c[v]=[c[v],h]:c[v]=h,!k):((!c[v]||!St.isObject(c[v]))&&(c[v]=[]),l(r,h,c[v],g)&&St.isArray(c[v])&&(c[v]=ek(c[v])),!k)}if(St.isFormData(n)&&St.isFunction(n.entries)){const r={};return St.forEachEntry(n,(h,c)=>{l(tk(h),c,r,0)}),r}return null}function nk(n,l,r){if(St.isString(n))try{return(l||JSON.parse)(n),St.trim(n)}catch(h){if(h.name!=="SyntaxError")throw h}return(r||JSON.stringify)(n)}const Gh={transitional:fp,adapter:["xhr","http"],transformRequest:[function(l,r){const h=r.getContentType()||"",c=h.indexOf("application/json")>-1,g=St.isObject(l);if(g&&St.isHTMLForm(l)&&(l=new FormData(l)),St.isFormData(l))return c&&c?JSON.stringify(kp(l)):l;if(St.isArrayBuffer(l)||St.isBuffer(l)||St.isStream(l)||St.isFile(l)||St.isBlob(l))return l;if(St.isArrayBufferView(l))return l.buffer;if(St.isURLSearchParams(l))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),l.toString();let k;if(g){if(h.indexOf("application/x-www-form-urlencoded")>-1)return Jm(l,this.formSerializer).toString();if((k=St.isFileList(l))||h.indexOf("multipart/form-data")>-1){const x=this.env&&this.env.FormData;return Ja(k?{"files[]":l}:l,x&&new x,this.formSerializer)}}return g||c?(r.setContentType("application/json",!1),nk(l)):l}],transformResponse:[function(l){const r=this.transitional||Gh.transitional,h=r&&r.forcedJSONParsing,c=this.responseType==="json";if(l&&St.isString(l)&&(h&&!this.responseType||c)){const v=!(r&&r.silentJSONParsing)&&c;try{return JSON.parse(l)}catch(k){if(v)throw k.name==="SyntaxError"?pe.from(k,pe.ERR_BAD_RESPONSE,this,null,this.response):k}}return l}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:nl.classes.FormData,Blob:nl.classes.Blob},validateStatus:function(l){return l>=200&&l<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};St.forEach(["delete","get","head","post","put","patch"],n=>{Gh.headers[n]={}});const Zh=Gh,lk=St.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),rk=n=>{const l={};let r,h,c;return n&&n.split(` + */const Wr=typeof window<"u";function t5(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const fe=Object.assign;function Li(n,l){const r={};for(const h in l){const c=l[h];r[h]=Kn(c)?c.map(n):n(c)}return r}const Wo=()=>{},Kn=Array.isArray,e5=/\/$/,n5=n=>n.replace(e5,"");function Di(n,l,r="/"){let h,c={},g="",v="";const k=l.indexOf("#");let x=l.indexOf("?");return k=0&&(x=-1),x>-1&&(h=l.slice(0,x),g=l.slice(x+1,k>-1?k:l.length),c=n(g)),k>-1&&(h=h||l.slice(0,k),v=l.slice(k,l.length)),h=s5(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:c,hash:v}}function l5(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function A1(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function r5(n,l,r){const h=l.matched.length-1,c=r.matched.length-1;return h>-1&&h===c&&eo(l.matched[h],r.matched[c])&&qu(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function eo(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function qu(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!o5(n[r],l[r]))return!1;return!0}function o5(n,l){return Kn(n)?B1(n,l):Kn(l)?B1(l,n):n===l}function B1(n,l){return Kn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function s5(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),c=h[h.length-1];(c===".."||c===".")&&h.push("");let g=r.length-1,v,k;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var rs;(function(n){n.pop="pop",n.push="push"})(rs||(rs={}));var Xo;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Xo||(Xo={}));function a5(n){if(!n)if(Wr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),n5(n)}const i5=/^[^#]+#/;function h5(n,l){return n.replace(i5,"#")+l}function d5(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Ga=()=>({left:window.pageXOffset,top:window.pageYOffset});function c5(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),c=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!c)return;l=d5(c,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function H1(n,l){return(history.state?history.state.position-l:-1)+n}const x0=new Map;function u5(n,l){x0.set(n,l)}function p5(n){const l=x0.get(n);return x0.delete(n),l}let g5=()=>location.protocol+"//"+location.host;function Yu(n,l){const{pathname:r,search:h,hash:c}=l,g=n.indexOf("#");if(g>-1){let k=c.includes(n.slice(g))?n.slice(g).length:1,x=c.slice(k);return x[0]!=="/"&&(x="/"+x),A1(x,"")}return A1(r,n)+h+c}function w5(n,l,r,h){let c=[],g=[],v=null;const k=({state:B})=>{const P=Yu(n,location),D=r.value,F=l.value;let X=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}X=F?B.position-F.position:0}else h(P);c.forEach(R=>{R(r.value,D,{delta:X,type:rs.pop,direction:X?X>0?Xo.forward:Xo.back:Xo.unknown})})};function x(){v=r.value}function I(B){c.push(B);const P=()=>{const D=c.indexOf(B);D>-1&&c.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(fe({},B.state,{scroll:Ga()}),"")}function $(){for(const B of g)B();g=[],window.removeEventListener("popstate",k),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",k),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:x,listen:I,destroy:$}}function N1(n,l,r,h=!1,c=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:c?Ga():null}}function v5(n){const{history:l,location:r}=window,h={value:Yu(n,r)},c={value:l.state};c.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(x,I,S){const $=n.indexOf("#"),B=$>-1?(r.host&&document.querySelector("base")?n:n.slice($))+x:g5()+n+x;try{l[S?"replaceState":"pushState"](I,"",B),c.value=I}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(x,I){const S=fe({},l.state,N1(c.value.back,x,c.value.forward,!0),I,{position:c.value.position});g(x,S,!0),h.value=x}function k(x,I){const S=fe({},c.value,l.state,{forward:x,scroll:Ga()});g(S.current,S,!0);const $=fe({},N1(h.value,x,null),{position:S.position+1},I);g(x,$,!1),h.value=x}return{location:h,state:c,push:k,replace:v}}function f5(n){n=a5(n);const l=v5(n),r=w5(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const c=fe({location:"",base:n,go:h,createHref:h5.bind(null,n)},l,r);return Object.defineProperty(c,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(c,"state",{enumerable:!0,get:()=>l.state.value}),c}function m5(n){return typeof n=="string"||n&&typeof n=="object"}function Uu(n){return typeof n=="string"||typeof n=="symbol"}const Pl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Gu=Symbol("");var j1;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(j1||(j1={}));function no(n,l){return fe(new Error,{type:n,[Gu]:!0},l)}function dl(n,l){return n instanceof Error&&Gu in n&&(l==null||!!(n.type&l))}const P1="[^/]+?",k5={sensitive:!1,strict:!1,start:!0,end:!0},b5=/[.+*?^${}()[\]/\\]/g;function M5(n,l){const r=fe({},k5,l),h=[];let c=r.start?"^":"";const g=[];for(const I of n){const S=I.length?[]:[90];r.strict&&!I.length&&(c+="/");for(let $=0;$l.length?l.length===1&&l[0]===40+40?1:-1:0}function z5(n,l){let r=0;const h=n.score,c=l.score;for(;r0&&l[l.length-1]<0}const I5={type:0,value:""},y5=/[a-zA-Z0-9_]/;function C5(n){if(!n)return[[]];if(n==="/")return[[I5]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${I}": ${P}`)}let r=0,h=r;const c=[];let g;function v(){g&&c.push(g),g=[]}let k=0,x,I="",S="";function $(){I&&(r===0?g.push({type:0,value:I}):r===1||r===2||r===3?(g.length>1&&(x==="*"||x==="+")&&l(`A repeatable param (${I}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:I,regexp:S,repeatable:x==="*"||x==="+",optional:x==="*"||x==="?"})):l("Invalid state to consume buffer"),I="")}function B(){I+=x}for(;k{v(H)}:Wo}function v(S){if(Uu(S)){const $=h.get(S);$&&(h.delete(S),r.splice(r.indexOf($),1),$.children.forEach(v),$.alias.forEach(v))}else{const $=r.indexOf(S);$>-1&&(r.splice($,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function k(){return r}function x(S){let $=0;for(;$=0&&(S.record.path!==r[$].record.path||!Zu(S,r[$]));)$++;r.splice($,0,S),S.record.name&&!O1(S)&&h.set(S.record.name,S)}function I(S,$){let B,P={},D,F;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw no(1,{location:S});F=B.record.name,P=fe(D1($.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&D1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),F=B.record.name);else{if(B=$.name?h.get($.name):r.find(H=>H.re.test($.path)),!B)throw no(1,{location:S,currentLocation:$});F=B.record.name,P=fe({},$.params,S.params),D=B.stringify(P)}const X=[];let R=B;for(;R;)X.unshift(R.record),R=R.parent;return{name:F,path:D,params:P,matched:X,meta:H5(X)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:I,removeRoute:v,getRoutes:k,getRecordMatcher:c}}function D1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function A5(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:B5(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function B5(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function O1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function H5(n){return n.reduce((l,r)=>fe(l,r.meta),{})}function F1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function Zu(n,l){return l.children.some(r=>r===n||Zu(n,r))}const Ku=/#/g,N5=/&/g,j5=/\//g,P5=/=/g,L5=/\?/g,Qu=/\+/g,D5=/%5B/g,O5=/%5D/g,Ju=/%5E/g,F5=/%60/g,tp=/%7B/g,R5=/%7C/g,ep=/%7D/g,T5=/%20/g;function Xh(n){return encodeURI(""+n).replace(R5,"|").replace(D5,"[").replace(O5,"]")}function E5(n){return Xh(n).replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function z0(n){return Xh(n).replace(Qu,"%2B").replace(T5,"+").replace(Ku,"%23").replace(N5,"%26").replace(F5,"`").replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function V5(n){return z0(n).replace(P5,"%3D")}function _5(n){return Xh(n).replace(Ku,"%23").replace(L5,"%3F")}function W5(n){return n==null?"":_5(n).replace(j5,"%2F")}function wa(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function X5(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let c=0;cg&&z0(g)):[h&&z0(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function q5(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Kn(h)?h.map(c=>c==null?null:""+c):h==null?h:""+h)}return l}const Y5=Symbol(""),T1=Symbol(""),qh=Symbol(""),np=Symbol(""),I0=Symbol("");function $o(){let n=[];function l(h){return n.push(h),()=>{const c=n.indexOf(h);c>-1&&n.splice(c,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Rl(n,l,r,h,c){const g=h&&(h.enterCallbacks[c]=h.enterCallbacks[c]||[]);return()=>new Promise((v,k)=>{const x=$=>{$===!1?k(no(4,{from:r,to:l})):$ instanceof Error?k($):m5($)?k(no(2,{from:l,to:$})):(g&&h.enterCallbacks[c]===g&&typeof $=="function"&&g.push($),v())},I=n.call(h&&h.instances[c],l,r,x);let S=Promise.resolve(I);n.length<3&&(S=S.then(x)),S.catch($=>k($))})}function Oi(n,l,r,h){const c=[];for(const g of n)for(const v in g.components){let k=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(U5(k)){const I=(k.__vccOpts||k)[l];I&&c.push(Rl(I,r,h,g,v))}else{let x=k();c.push(()=>x.then(I=>{if(!I)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=t5(I)?I.default:I;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Rl(B,r,h,g,v)()}))}}return c}function U5(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function E1(n){const l=de(qh),r=de(np),h=q(()=>l.resolve(je(n.to))),c=q(()=>{const{matched:x}=h.value,{length:I}=x,S=x[I-1],$=r.matched;if(!S||!$.length)return-1;const B=$.findIndex(eo.bind(null,S));if(B>-1)return B;const P=V1(x[I-2]);return I>1&&V1(S)===P&&$[$.length-1].path!==P?$.findIndex(eo.bind(null,x[I-2])):B}),g=q(()=>c.value>-1&&Q5(r.params,h.value.params)),v=q(()=>c.value>-1&&c.value===r.matched.length-1&&qu(r.params,h.value.params));function k(x={}){return K5(x)?l[je(n.replace)?"replace":"push"](je(n.to)).catch(Wo):Promise.resolve()}return{route:h,href:q(()=>h.value.href),isActive:g,isExactActive:v,navigate:k}}const G5=Cr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:E1,setup(n,{slots:l}){const r=Ze(E1(n)),{options:h}=de(qh),c=q(()=>({[_1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[_1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Ln("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:c.value},g)}}}),Z5=G5;function K5(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Q5(n,l){for(const r in l){const h=l[r],c=n[r];if(typeof h=="string"){if(h!==c)return!1}else if(!Kn(c)||c.length!==h.length||h.some((g,v)=>g!==c[v]))return!1}return!0}function V1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const _1=(n,l,r)=>n??l??r,J5=Cr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=de(I0),c=q(()=>n.route||h.value),g=de(T1,0),v=q(()=>{let I=je(g);const{matched:S}=c.value;let $;for(;($=S[I])&&!$.components;)I++;return I}),k=q(()=>c.value.matched[v.value]);Se(T1,q(()=>v.value+1)),Se(Y5,k),Se(I0,c);const x=Lt();return _t(()=>[x.value,k.value,n.name],([I,S,$],[B,P,D])=>{S&&(S.instances[$]=I,P&&P!==S&&I&&I===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),I&&S&&(!P||!eo(S,P)||!B)&&(S.enterCallbacks[$]||[]).forEach(F=>F(I))},{flush:"post"}),()=>{const I=c.value,S=n.name,$=k.value,B=$&&$.components[S];if(!B)return W1(r.default,{Component:B,route:I});const P=$.props[S],D=P?P===!0?I.params:typeof P=="function"?P(I):P:null,X=Ln(B,fe({},D,l,{onVnodeUnmounted:R=>{R.component.isUnmounted&&($.instances[S]=null)},ref:x}));return W1(r.default,{Component:X,route:I})||X}}});function W1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const lp=J5;function tm(n){const l=$5(n.routes,n),r=n.parseQuery||X5,h=n.stringifyQuery||R1,c=n.history,g=$o(),v=$o(),k=$o(),x=Wt(Pl);let I=Pl;Wr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=Li.bind(null,pt=>""+pt),$=Li.bind(null,W5),B=Li.bind(null,wa);function P(pt,Nt){let jt,bt;return Uu(pt)?(jt=l.getRecordMatcher(pt),bt=Nt):bt=pt,l.addRoute(bt,jt)}function D(pt){const Nt=l.getRecordMatcher(pt);Nt&&l.removeRoute(Nt)}function F(){return l.getRoutes().map(pt=>pt.record)}function X(pt){return!!l.getRecordMatcher(pt)}function R(pt,Nt){if(Nt=fe({},Nt||x.value),typeof pt=="string"){const at=Di(r,pt,Nt.path),ct=l.resolve({path:at.path},Nt),kt=c.createHref(at.fullPath);return fe(at,ct,{params:B(ct.params),hash:wa(at.hash),redirectedFrom:void 0,href:kt})}let jt;if("path"in pt)jt=fe({},pt,{path:Di(r,pt.path,Nt.path).path});else{const at=fe({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];jt=fe({},pt,{params:$(at)}),Nt.params=$(Nt.params)}const bt=l.resolve(jt,Nt),ft=pt.hash||"";bt.params=S(B(bt.params));const J=l5(h,fe({},pt,{hash:E5(ft),path:bt.path})),lt=c.createHref(J);return fe({fullPath:J,hash:ft,query:h===R1?q5(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?Di(r,pt,x.value.path):fe({},pt)}function U(pt,Nt){if(I!==pt)return no(8,{from:Nt,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(fe(H(pt),{replace:!0}))}function tt(pt){const Nt=pt.matched[pt.matched.length-1];if(Nt&&Nt.redirect){const{redirect:jt}=Nt;let bt=typeof jt=="function"?jt(pt):jt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),fe({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Nt){const jt=I=R(pt),bt=x.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(jt);if(at)return nt(fe(H(at),{state:typeof at=="object"?fe({},ft,at.state):ft,force:J,replace:lt}),Nt||jt);const ct=jt;ct.redirectedFrom=Nt;let kt;return!J&&r5(h,bt,jt)&&(kt=no(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>dl(yt)?dl(yt,2)?yt:At(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(dl(yt,2))return nt(fe({replace:lt},H(yt.to),{state:typeof yt.to=="object"?fe({},ft,yt.to.state):ft,force:J}),Nt||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function Y(pt,Nt){const jt=U(pt,Nt);return jt?Promise.reject(jt):Promise.resolve()}function G(pt){const Nt=Jt.values().next().value;return Nt&&typeof Nt.runWithContext=="function"?Nt.runWithContext(pt):pt()}function et(pt,Nt){let jt;const[bt,ft,J]=em(pt,Nt);jt=Oi(bt.reverse(),"beforeRouteLeave",pt,Nt);for(const at of bt)at.leaveGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});const lt=Y.bind(null,pt,Nt);return jt.push(lt),ut(jt).then(()=>{jt=[];for(const at of g.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>{jt=Oi(ft,"beforeRouteUpdate",pt,Nt);for(const at of ft)at.updateGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});return jt.push(lt),ut(jt)}).then(()=>{jt=[];for(const at of J)if(at.beforeEnter)if(Kn(at.beforeEnter))for(const ct of at.beforeEnter)jt.push(Rl(ct,pt,Nt));else jt.push(Rl(at.beforeEnter,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),jt=Oi(J,"beforeRouteEnter",pt,Nt),jt.push(lt),ut(jt))).then(()=>{jt=[];for(const at of v.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).catch(at=>dl(at,8)?at:Promise.reject(at))}function st(pt,Nt,jt){k.list().forEach(bt=>G(()=>bt(pt,Nt,jt)))}function rt(pt,Nt,jt,bt,ft){const J=U(pt,Nt);if(J)return J;const lt=Nt===Pl,at=Wr?history.state:{};jt&&(bt||lt?c.replace(pt.fullPath,fe({scroll:lt&&at&&at.scroll},ft)):c.push(pt.fullPath,ft)),x.value=pt,Tt(pt,Nt,jt,lt),At()}let ht;function dt(){ht||(ht=c.listen((pt,Nt,jt)=>{if(!Et.listening)return;const bt=R(pt),ft=tt(bt);if(ft){nt(fe(ft,{replace:!0}),bt).catch(Wo);return}I=bt;const J=x.value;Wr&&u5(H1(J.fullPath,jt.delta),Ga()),et(bt,J).catch(lt=>dl(lt,12)?lt:dl(lt,2)?(nt(lt.to,bt).then(at=>{dl(at,20)&&!jt.delta&&jt.type===rs.pop&&c.go(-1,!1)}).catch(Wo),Promise.reject()):(jt.delta&&c.go(-jt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(jt.delta&&!dl(lt,8)?c.go(-jt.delta,!1):jt.type===rs.pop&&dl(lt,20)&&c.go(-1,!1)),st(bt,J,lt)}).catch(Wo)}))}let Ct=$o(),xt=$o(),wt;function gt(pt,Nt,jt){At(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Nt,jt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&x.value!==Pl?Promise.resolve():new Promise((pt,Nt)=>{Ct.add([pt,Nt])})}function At(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Nt,jt])=>pt?jt(pt):Nt()),Ct.reset()),pt}function Tt(pt,Nt,jt,bt){const{scrollBehavior:ft}=n;if(!Wr||!ft)return Promise.resolve();const J=!jt&&p5(H1(pt.fullPath,0))||(bt||!jt)&&history.state&&history.state.scroll||null;return we().then(()=>ft(pt,Nt,J)).then(lt=>lt&&c5(lt)).catch(lt=>gt(lt,pt,Nt))}const Ft=pt=>c.go(pt);let Qt;const Jt=new Set,Et={currentRoute:x,listening:!0,addRoute:P,removeRoute:D,hasRoute:X,getRoutes:F,resolve:R,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:k.add,onError:xt.add,isReady:It,install(pt){const Nt=this;pt.component("RouterLink",Z5),pt.component("RouterView",lp),pt.config.globalProperties.$router=Nt,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>je(x)}),Wr&&!Qt&&x.value===Pl&&(Qt=!0,W(c.location).catch(ft=>{}));const jt={};for(const ft in Pl)Object.defineProperty(jt,ft,{get:()=>x.value[ft],enumerable:!0});pt.provide(qh,Nt),pt.provide(np,fh(jt)),pt.provide(I0,x);const bt=pt.unmount;Jt.add(pt),pt.unmount=function(){Jt.delete(pt),Jt.size<1&&(I=Pl,ht&&ht(),ht=null,x.value=Pl,Qt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Nt,jt)=>Nt.then(()=>G(jt)),Promise.resolve())}return Et}function em(n,l){const r=[],h=[],c=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;veo(I,k))?h.push(k):r.push(k));const x=n.matched[v];x&&(l.matched.find(I=>eo(I,x))||c.push(x))}return[r,h,c]}const nm=Cr({__name:"App",setup(n){return(l,r)=>(xs(),_a(je(lp)))}}),lm="modulepreload",rm=function(n){return"/"+n},X1={},en=function(l,r,h){if(!r||r.length===0)return l();const c=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=rm(g),g in X1)return;X1[g]=!0;const v=g.endsWith(".css"),k=v?'[rel="stylesheet"]':"";if(!!h)for(let S=c.length-1;S>=0;S--){const $=c[S];if($.href===g&&(!v||$.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${k}`))return;const I=document.createElement("link");if(I.rel=v?"stylesheet":lm,v||(I.as="script",I.crossOrigin=""),I.href=g,document.head.appendChild(I),v)return new Promise((S,$)=>{I.addEventListener("load",S),I.addEventListener("error",()=>$(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},om={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>en(()=>import("./FullLayout-297dfa95.js"),["assets/FullLayout-297dfa95.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js","assets/md5-15332791.js"]),children:[{name:"Dashboard",path:"/",component:()=>en(()=>import("./DefaultDashboard-b70e2279.js"),["assets/DefaultDashboard-b70e2279.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Extensions",path:"/extension",component:()=>en(()=>import("./ExtensionPage-e262e5bf.js"),[])},{name:"Configs",path:"/config",component:()=>en(()=>import("./ConfigPage-cbc9d918.js"),["assets/ConfigPage-cbc9d918.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Default",path:"/dashboard/default",component:()=>en(()=>import("./DefaultDashboard-b70e2279.js"),["assets/DefaultDashboard-b70e2279.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Console",path:"/console",component:()=>en(()=>import("./ConsolePage-57b1b1f5.js"),["assets/ConsolePage-57b1b1f5.js","assets/ConsolePage-e3b0c442.css"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>en(()=>import("./TablerIcons-03a8e23e.js"),["assets/TablerIcons-03a8e23e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Material Icons",path:"/icons/material",component:()=>en(()=>import("./MaterialIcons-0da52fba.js"),["assets/MaterialIcons-0da52fba.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Typography",path:"/utils/typography",component:()=>en(()=>import("./TypographyPage-db19a414.js"),["assets/TypographyPage-db19a414.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>en(()=>import("./ShadowPage-7b3e7ed6.js"),["assets/ShadowPage-7b3e7ed6.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Colors",path:"/utils/colors",component:()=>en(()=>import("./ColorPage-22c7f5ba.js"),["assets/ColorPage-22c7f5ba.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])}]},sm={path:"/auth",component:()=>en(()=>import("./BlankLayout-ad940a6c.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>en(()=>import("./LoginPage-decfa242.js"),["assets/LoginPage-decfa242.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js","assets/md5-15332791.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>en(()=>import("./RegisterPage-6fba9b67.js"),["assets/RegisterPage-6fba9b67.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>en(()=>import("./Error404Page-1f0e3199.js"),["assets/Error404Page-1f0e3199.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]};function rp(n,l){return function(){return n.apply(l,arguments)}}const{toString:am}=Object.prototype,{getPrototypeOf:Yh}=Object,Za=(n=>l=>{const r=am.call(l);return n[r]||(n[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),il=n=>(n=n.toLowerCase(),l=>Za(l)===n),Ka=n=>l=>typeof l===n,{isArray:po}=Array,os=Ka("undefined");function im(n){return n!==null&&!os(n)&&n.constructor!==null&&!os(n.constructor)&&jn(n.constructor.isBuffer)&&n.constructor.isBuffer(n)}const op=il("ArrayBuffer");function hm(n){let l;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?l=ArrayBuffer.isView(n):l=n&&n.buffer&&op(n.buffer),l}const dm=Ka("string"),jn=Ka("function"),sp=Ka("number"),Qa=n=>n!==null&&typeof n=="object",cm=n=>n===!0||n===!1,ra=n=>{if(Za(n)!=="object")return!1;const l=Yh(n);return(l===null||l===Object.prototype||Object.getPrototypeOf(l)===null)&&!(Symbol.toStringTag in n)&&!(Symbol.iterator in n)},um=il("Date"),pm=il("File"),gm=il("Blob"),wm=il("FileList"),vm=n=>Qa(n)&&jn(n.pipe),fm=n=>{let l;return n&&(typeof FormData=="function"&&n instanceof FormData||jn(n.append)&&((l=Za(n))==="formdata"||l==="object"&&jn(n.toString)&&n.toString()==="[object FormData]"))},mm=il("URLSearchParams"),km=n=>n.trim?n.trim():n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ys(n,l,{allOwnKeys:r=!1}={}){if(n===null||typeof n>"u")return;let h,c;if(typeof n!="object"&&(n=[n]),po(n))for(h=0,c=n.length;h0;)if(c=r[h],l===c.toLowerCase())return c;return null}const ip=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),hp=n=>!os(n)&&n!==ip;function y0(){const{caseless:n}=hp(this)&&this||{},l={},r=(h,c)=>{const g=n&&ap(l,c)||c;ra(l[g])&&ra(h)?l[g]=y0(l[g],h):ra(h)?l[g]=y0({},h):po(h)?l[g]=h.slice():l[g]=h};for(let h=0,c=arguments.length;h(ys(l,(c,g)=>{r&&jn(c)?n[g]=rp(c,r):n[g]=c},{allOwnKeys:h}),n),Mm=n=>(n.charCodeAt(0)===65279&&(n=n.slice(1)),n),xm=(n,l,r,h)=>{n.prototype=Object.create(l.prototype,h),n.prototype.constructor=n,Object.defineProperty(n,"super",{value:l.prototype}),r&&Object.assign(n.prototype,r)},zm=(n,l,r,h)=>{let c,g,v;const k={};if(l=l||{},n==null)return l;do{for(c=Object.getOwnPropertyNames(n),g=c.length;g-- >0;)v=c[g],(!h||h(v,n,l))&&!k[v]&&(l[v]=n[v],k[v]=!0);n=r!==!1&&Yh(n)}while(n&&(!r||r(n,l))&&n!==Object.prototype);return l},Im=(n,l,r)=>{n=String(n),(r===void 0||r>n.length)&&(r=n.length),r-=l.length;const h=n.indexOf(l,r);return h!==-1&&h===r},ym=n=>{if(!n)return null;if(po(n))return n;let l=n.length;if(!sp(l))return null;const r=new Array(l);for(;l-- >0;)r[l]=n[l];return r},Cm=(n=>l=>n&&l instanceof n)(typeof Uint8Array<"u"&&Yh(Uint8Array)),Sm=(n,l)=>{const h=(n&&n[Symbol.iterator]).call(n);let c;for(;(c=h.next())&&!c.done;){const g=c.value;l.call(n,g[0],g[1])}},$m=(n,l)=>{let r;const h=[];for(;(r=n.exec(l))!==null;)h.push(r);return h},Am=il("HTMLFormElement"),Bm=n=>n.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,h,c){return h.toUpperCase()+c}),q1=(({hasOwnProperty:n})=>(l,r)=>n.call(l,r))(Object.prototype),Hm=il("RegExp"),dp=(n,l)=>{const r=Object.getOwnPropertyDescriptors(n),h={};ys(r,(c,g)=>{let v;(v=l(c,g,n))!==!1&&(h[g]=v||c)}),Object.defineProperties(n,h)},Nm=n=>{dp(n,(l,r)=>{if(jn(n)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const h=n[r];if(jn(h)){if(l.enumerable=!1,"writable"in l){l.writable=!1;return}l.set||(l.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},jm=(n,l)=>{const r={},h=c=>{c.forEach(g=>{r[g]=!0})};return po(n)?h(n):h(String(n).split(l)),r},Pm=()=>{},Lm=(n,l)=>(n=+n,Number.isFinite(n)?n:l),Fi="abcdefghijklmnopqrstuvwxyz",Y1="0123456789",cp={DIGIT:Y1,ALPHA:Fi,ALPHA_DIGIT:Fi+Fi.toUpperCase()+Y1},Dm=(n=16,l=cp.ALPHA_DIGIT)=>{let r="";const{length:h}=l;for(;n--;)r+=l[Math.random()*h|0];return r};function Om(n){return!!(n&&jn(n.append)&&n[Symbol.toStringTag]==="FormData"&&n[Symbol.iterator])}const Fm=n=>{const l=new Array(10),r=(h,c)=>{if(Qa(h)){if(l.indexOf(h)>=0)return;if(!("toJSON"in h)){l[c]=h;const g=po(h)?[]:{};return ys(h,(v,k)=>{const x=r(v,c+1);!os(x)&&(g[k]=x)}),l[c]=void 0,g}}return h};return r(n,0)},Rm=il("AsyncFunction"),Tm=n=>n&&(Qa(n)||jn(n))&&jn(n.then)&&jn(n.catch),St={isArray:po,isArrayBuffer:op,isBuffer:im,isFormData:fm,isArrayBufferView:hm,isString:dm,isNumber:sp,isBoolean:cm,isObject:Qa,isPlainObject:ra,isUndefined:os,isDate:um,isFile:pm,isBlob:gm,isRegExp:Hm,isFunction:jn,isStream:vm,isURLSearchParams:mm,isTypedArray:Cm,isFileList:wm,forEach:ys,merge:y0,extend:bm,trim:km,stripBOM:Mm,inherits:xm,toFlatObject:zm,kindOf:Za,kindOfTest:il,endsWith:Im,toArray:ym,forEachEntry:Sm,matchAll:$m,isHTMLForm:Am,hasOwnProperty:q1,hasOwnProp:q1,reduceDescriptors:dp,freezeMethods:Nm,toObjectSet:jm,toCamelCase:Bm,noop:Pm,toFiniteNumber:Lm,findKey:ap,global:ip,isContextDefined:hp,ALPHABET:cp,generateString:Dm,isSpecCompliantForm:Om,toJSONObject:Fm,isAsyncFn:Rm,isThenable:Tm};function pe(n,l,r,h,c){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=n,this.name="AxiosError",l&&(this.code=l),r&&(this.config=r),h&&(this.request=h),c&&(this.response=c)}St.inherits(pe,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:St.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const up=pe.prototype,pp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(n=>{pp[n]={value:n}});Object.defineProperties(pe,pp);Object.defineProperty(up,"isAxiosError",{value:!0});pe.from=(n,l,r,h,c,g)=>{const v=Object.create(up);return St.toFlatObject(n,v,function(x){return x!==Error.prototype},k=>k!=="isAxiosError"),pe.call(v,n.message,l,r,h,c),v.cause=n,v.name=n.name,g&&Object.assign(v,g),v};const Em=null;function C0(n){return St.isPlainObject(n)||St.isArray(n)}function gp(n){return St.endsWith(n,"[]")?n.slice(0,-2):n}function U1(n,l,r){return n?n.concat(l).map(function(c,g){return c=gp(c),!r&&g?"["+c+"]":c}).join(r?".":""):l}function Vm(n){return St.isArray(n)&&!n.some(C0)}const _m=St.toFlatObject(St,{},null,function(l){return/^is[A-Z]/.test(l)});function Ja(n,l,r){if(!St.isObject(n))throw new TypeError("target must be an object");l=l||new FormData,r=St.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(F,X){return!St.isUndefined(X[F])});const h=r.metaTokens,c=r.visitor||S,g=r.dots,v=r.indexes,x=(r.Blob||typeof Blob<"u"&&Blob)&&St.isSpecCompliantForm(l);if(!St.isFunction(c))throw new TypeError("visitor must be a function");function I(D){if(D===null)return"";if(St.isDate(D))return D.toISOString();if(!x&&St.isBlob(D))throw new pe("Blob is not supported. Use a Buffer instead.");return St.isArrayBuffer(D)||St.isTypedArray(D)?x&&typeof Blob=="function"?new Blob([D]):Buffer.from(D):D}function S(D,F,X){let R=D;if(D&&!X&&typeof D=="object"){if(St.endsWith(F,"{}"))F=h?F:F.slice(0,-2),D=JSON.stringify(D);else if(St.isArray(D)&&Vm(D)||(St.isFileList(D)||St.endsWith(F,"[]"))&&(R=St.toArray(D)))return F=gp(F),R.forEach(function(U,W){!(St.isUndefined(U)||U===null)&&l.append(v===!0?U1([F],W,g):v===null?F:F+"[]",I(U))}),!1}return C0(D)?!0:(l.append(U1(X,F,g),I(D)),!1)}const $=[],B=Object.assign(_m,{defaultVisitor:S,convertValue:I,isVisitable:C0});function P(D,F){if(!St.isUndefined(D)){if($.indexOf(D)!==-1)throw Error("Circular reference detected in "+F.join("."));$.push(D),St.forEach(D,function(R,H){(!(St.isUndefined(R)||R===null)&&c.call(l,R,St.isString(H)?H.trim():H,F,B))===!0&&P(R,F?F.concat(H):[H])}),$.pop()}}if(!St.isObject(n))throw new TypeError("data must be an object");return P(n),l}function G1(n){const l={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(n).replace(/[!'()~]|%20|%00/g,function(h){return l[h]})}function Uh(n,l){this._pairs=[],n&&Ja(n,this,l)}const wp=Uh.prototype;wp.append=function(l,r){this._pairs.push([l,r])};wp.toString=function(l){const r=l?function(h){return l.call(this,h,G1)}:G1;return this._pairs.map(function(c){return r(c[0])+"="+r(c[1])},"").join("&")};function Wm(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function vp(n,l,r){if(!l)return n;const h=r&&r.encode||Wm,c=r&&r.serialize;let g;if(c?g=c(l,r):g=St.isURLSearchParams(l)?l.toString():new Uh(l,r).toString(h),g){const v=n.indexOf("#");v!==-1&&(n=n.slice(0,v)),n+=(n.indexOf("?")===-1?"?":"&")+g}return n}class Xm{constructor(){this.handlers=[]}use(l,r,h){return this.handlers.push({fulfilled:l,rejected:r,synchronous:h?h.synchronous:!1,runWhen:h?h.runWhen:null}),this.handlers.length-1}eject(l){this.handlers[l]&&(this.handlers[l]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(l){St.forEach(this.handlers,function(h){h!==null&&l(h)})}}const Z1=Xm,fp={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},qm=typeof URLSearchParams<"u"?URLSearchParams:Uh,Ym=typeof FormData<"u"?FormData:null,Um=typeof Blob<"u"?Blob:null,Gm={isBrowser:!0,classes:{URLSearchParams:qm,FormData:Ym,Blob:Um},protocols:["http","https","file","blob","url","data"]},mp=typeof window<"u"&&typeof document<"u",Zm=(n=>mp&&["ReactNative","NativeScript","NS"].indexOf(n)<0)(typeof navigator<"u"&&navigator.product),Km=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Qm=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:mp,hasStandardBrowserEnv:Zm,hasStandardBrowserWebWorkerEnv:Km},Symbol.toStringTag,{value:"Module"})),nl={...Qm,...Gm};function Jm(n,l){return Ja(n,new nl.classes.URLSearchParams,Object.assign({visitor:function(r,h,c,g){return nl.isNode&&St.isBuffer(r)?(this.append(h,r.toString("base64")),!1):g.defaultVisitor.apply(this,arguments)}},l))}function tk(n){return St.matchAll(/\w+|\[(\w*)]/g,n).map(l=>l[0]==="[]"?"":l[1]||l[0])}function ek(n){const l={},r=Object.keys(n);let h;const c=r.length;let g;for(h=0;h=r.length;return v=!v&&St.isArray(c)?c.length:v,x?(St.hasOwnProp(c,v)?c[v]=[c[v],h]:c[v]=h,!k):((!c[v]||!St.isObject(c[v]))&&(c[v]=[]),l(r,h,c[v],g)&&St.isArray(c[v])&&(c[v]=ek(c[v])),!k)}if(St.isFormData(n)&&St.isFunction(n.entries)){const r={};return St.forEachEntry(n,(h,c)=>{l(tk(h),c,r,0)}),r}return null}function nk(n,l,r){if(St.isString(n))try{return(l||JSON.parse)(n),St.trim(n)}catch(h){if(h.name!=="SyntaxError")throw h}return(r||JSON.stringify)(n)}const Gh={transitional:fp,adapter:["xhr","http"],transformRequest:[function(l,r){const h=r.getContentType()||"",c=h.indexOf("application/json")>-1,g=St.isObject(l);if(g&&St.isHTMLForm(l)&&(l=new FormData(l)),St.isFormData(l))return c&&c?JSON.stringify(kp(l)):l;if(St.isArrayBuffer(l)||St.isBuffer(l)||St.isStream(l)||St.isFile(l)||St.isBlob(l))return l;if(St.isArrayBufferView(l))return l.buffer;if(St.isURLSearchParams(l))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),l.toString();let k;if(g){if(h.indexOf("application/x-www-form-urlencoded")>-1)return Jm(l,this.formSerializer).toString();if((k=St.isFileList(l))||h.indexOf("multipart/form-data")>-1){const x=this.env&&this.env.FormData;return Ja(k?{"files[]":l}:l,x&&new x,this.formSerializer)}}return g||c?(r.setContentType("application/json",!1),nk(l)):l}],transformResponse:[function(l){const r=this.transitional||Gh.transitional,h=r&&r.forcedJSONParsing,c=this.responseType==="json";if(l&&St.isString(l)&&(h&&!this.responseType||c)){const v=!(r&&r.silentJSONParsing)&&c;try{return JSON.parse(l)}catch(k){if(v)throw k.name==="SyntaxError"?pe.from(k,pe.ERR_BAD_RESPONSE,this,null,this.response):k}}return l}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:nl.classes.FormData,Blob:nl.classes.Blob},validateStatus:function(l){return l>=200&&l<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};St.forEach(["delete","get","head","post","put","patch"],n=>{Gh.headers[n]={}});const Zh=Gh,lk=St.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),rk=n=>{const l={};let r,h,c;return n&&n.split(` `).forEach(function(v){c=v.indexOf(":"),r=v.substring(0,c).trim().toLowerCase(),h=v.substring(c+1).trim(),!(!r||l[r]&&lk[r])&&(r==="set-cookie"?l[r]?l[r].push(h):l[r]=[h]:l[r]=l[r]?l[r]+", "+h:h)}),l},K1=Symbol("internals");function Ao(n){return n&&String(n).trim().toLowerCase()}function oa(n){return n===!1||n==null?n:St.isArray(n)?n.map(oa):String(n)}function ok(n){const l=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let h;for(;h=r.exec(n);)l[h[1]]=h[2];return l}const sk=n=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(n.trim());function Ri(n,l,r,h,c){if(St.isFunction(h))return h.call(this,l,r);if(c&&(l=r),!!St.isString(l)){if(St.isString(h))return l.indexOf(h)!==-1;if(St.isRegExp(h))return h.test(l)}}function ak(n){return n.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(l,r,h)=>r.toUpperCase()+h)}function ik(n,l){const r=St.toCamelCase(" "+l);["get","set","has"].forEach(h=>{Object.defineProperty(n,h+r,{value:function(c,g,v){return this[h].call(this,l,c,g,v)},configurable:!0})})}class ti{constructor(l){l&&this.set(l)}set(l,r,h){const c=this;function g(k,x,I){const S=Ao(x);if(!S)throw new Error("header name must be a non-empty string");const $=St.findKey(c,S);(!$||c[$]===void 0||I===!0||I===void 0&&c[$]!==!1)&&(c[$||x]=oa(k))}const v=(k,x)=>St.forEach(k,(I,S)=>g(I,S,x));return St.isPlainObject(l)||l instanceof this.constructor?v(l,r):St.isString(l)&&(l=l.trim())&&!sk(l)?v(rk(l),r):l!=null&&g(r,l,h),this}get(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);if(h){const c=this[h];if(!r)return c;if(r===!0)return ok(c);if(St.isFunction(r))return r.call(this,c,h);if(St.isRegExp(r))return r.exec(c);throw new TypeError("parser must be boolean|regexp|function")}}}has(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);return!!(h&&this[h]!==void 0&&(!r||Ri(this,this[h],h,r)))}return!1}delete(l,r){const h=this;let c=!1;function g(v){if(v=Ao(v),v){const k=St.findKey(h,v);k&&(!r||Ri(h,h[k],k,r))&&(delete h[k],c=!0)}}return St.isArray(l)?l.forEach(g):g(l),c}clear(l){const r=Object.keys(this);let h=r.length,c=!1;for(;h--;){const g=r[h];(!l||Ri(this,this[g],g,l,!0))&&(delete this[g],c=!0)}return c}normalize(l){const r=this,h={};return St.forEach(this,(c,g)=>{const v=St.findKey(h,g);if(v){r[v]=oa(c),delete r[g];return}const k=l?ak(g):String(g).trim();k!==g&&delete r[g],r[k]=oa(c),h[k]=!0}),this}concat(...l){return this.constructor.concat(this,...l)}toJSON(l){const r=Object.create(null);return St.forEach(this,(h,c)=>{h!=null&&h!==!1&&(r[c]=l&&St.isArray(h)?h.join(", "):h)}),r}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([l,r])=>l+": "+r).join(` `)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(l){return l instanceof this?l:new this(l)}static concat(l,...r){const h=new this(l);return r.forEach(c=>h.set(c)),h}static accessor(l){const h=(this[K1]=this[K1]={accessors:{}}).accessors,c=this.prototype;function g(v){const k=Ao(v);h[k]||(ik(c,v),h[k]=!0)}return St.isArray(l)?l.forEach(g):g(l),this}}ti.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);St.reduceDescriptors(ti.prototype,({value:n},l)=>{let r=l[0].toUpperCase()+l.slice(1);return{get:()=>n,set(h){this[r]=h}}});St.freezeMethods(ti);const ml=ti;function Ti(n,l){const r=this||Zh,h=l||r,c=ml.from(h.headers);let g=h.data;return St.forEach(n,function(k){g=k.call(r,g,c.normalize(),l?l.status:void 0)}),c.normalize(),g}function bp(n){return!!(n&&n.__CANCEL__)}function Cs(n,l,r){pe.call(this,n??"canceled",pe.ERR_CANCELED,l,r),this.name="CanceledError"}St.inherits(Cs,pe,{__CANCEL__:!0});function hk(n,l,r){const h=r.config.validateStatus;!r.status||!h||h(r.status)?n(r):l(new pe("Request failed with status code "+r.status,[pe.ERR_BAD_REQUEST,pe.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r))}const dk=nl.hasStandardBrowserEnv?{write(n,l,r,h,c,g){const v=[n+"="+encodeURIComponent(l)];St.isNumber(r)&&v.push("expires="+new Date(r).toGMTString()),St.isString(h)&&v.push("path="+h),St.isString(c)&&v.push("domain="+c),g===!0&&v.push("secure"),document.cookie=v.join("; ")},read(n){const l=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return l?decodeURIComponent(l[3]):null},remove(n){this.write(n,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function ck(n){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(n)}function uk(n,l){return l?n.replace(/\/+$/,"")+"/"+l.replace(/^\/+/,""):n}function Mp(n,l){return n&&!ck(l)?uk(n,l):l}const pk=nl.hasStandardBrowserEnv?function(){const l=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");let h;function c(g){let v=g;return l&&(r.setAttribute("href",v),v=r.href),r.setAttribute("href",v),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:r.pathname.charAt(0)==="/"?r.pathname:"/"+r.pathname}}return h=c(window.location.href),function(v){const k=St.isString(v)?c(v):v;return k.protocol===h.protocol&&k.host===h.host}}():function(){return function(){return!0}}();function gk(n){const l=/^([-+\w]{1,25})(:?\/\/|:)/.exec(n);return l&&l[1]||""}function wk(n,l){n=n||10;const r=new Array(n),h=new Array(n);let c=0,g=0,v;return l=l!==void 0?l:1e3,function(x){const I=Date.now(),S=h[g];v||(v=I),r[c]=x,h[c]=I;let $=g,B=0;for(;$!==c;)B+=r[$++],$=$%n;if(c=(c+1)%n,c===g&&(g=(g+1)%n),I-v{const g=c.loaded,v=c.lengthComputable?c.total:void 0,k=g-r,x=h(k),I=g<=v;r=g;const S={loaded:g,total:v,progress:v?g/v:void 0,bytes:k,rate:x||void 0,estimated:x&&v&&I?(v-g)/x:void 0,event:c};S[l?"download":"upload"]=!0,n(S)}}const vk=typeof XMLHttpRequest<"u",fk=vk&&function(n){return new Promise(function(r,h){let c=n.data;const g=ml.from(n.headers).normalize();let{responseType:v,withXSRFToken:k}=n,x;function I(){n.cancelToken&&n.cancelToken.unsubscribe(x),n.signal&&n.signal.removeEventListener("abort",x)}let S;if(St.isFormData(c)){if(nl.hasStandardBrowserEnv||nl.hasStandardBrowserWebWorkerEnv)g.setContentType(!1);else if((S=g.getContentType())!==!1){const[F,...X]=S?S.split(";").map(R=>R.trim()).filter(Boolean):[];g.setContentType([F||"multipart/form-data",...X].join("; "))}}let $=new XMLHttpRequest;if(n.auth){const F=n.auth.username||"",X=n.auth.password?unescape(encodeURIComponent(n.auth.password)):"";g.set("Authorization","Basic "+btoa(F+":"+X))}const B=Mp(n.baseURL,n.url);$.open(n.method.toUpperCase(),vp(B,n.params,n.paramsSerializer),!0),$.timeout=n.timeout;function P(){if(!$)return;const F=ml.from("getAllResponseHeaders"in $&&$.getAllResponseHeaders()),R={data:!v||v==="text"||v==="json"?$.responseText:$.response,status:$.status,statusText:$.statusText,headers:F,config:n,request:$};hk(function(U){r(U),I()},function(U){h(U),I()},R),$=null}if("onloadend"in $?$.onloadend=P:$.onreadystatechange=function(){!$||$.readyState!==4||$.status===0&&!($.responseURL&&$.responseURL.indexOf("file:")===0)||setTimeout(P)},$.onabort=function(){$&&(h(new pe("Request aborted",pe.ECONNABORTED,n,$)),$=null)},$.onerror=function(){h(new pe("Network Error",pe.ERR_NETWORK,n,$)),$=null},$.ontimeout=function(){let X=n.timeout?"timeout of "+n.timeout+"ms exceeded":"timeout exceeded";const R=n.transitional||fp;n.timeoutErrorMessage&&(X=n.timeoutErrorMessage),h(new pe(X,R.clarifyTimeoutError?pe.ETIMEDOUT:pe.ECONNABORTED,n,$)),$=null},nl.hasStandardBrowserEnv&&(k&&St.isFunction(k)&&(k=k(n)),k||k!==!1&&pk(B))){const F=n.xsrfHeaderName&&n.xsrfCookieName&&dk.read(n.xsrfCookieName);F&&g.set(n.xsrfHeaderName,F)}c===void 0&&g.setContentType(null),"setRequestHeader"in $&&St.forEach(g.toJSON(),function(X,R){$.setRequestHeader(R,X)}),St.isUndefined(n.withCredentials)||($.withCredentials=!!n.withCredentials),v&&v!=="json"&&($.responseType=n.responseType),typeof n.onDownloadProgress=="function"&&$.addEventListener("progress",Q1(n.onDownloadProgress,!0)),typeof n.onUploadProgress=="function"&&$.upload&&$.upload.addEventListener("progress",Q1(n.onUploadProgress)),(n.cancelToken||n.signal)&&(x=F=>{$&&(h(!F||F.type?new Cs(null,n,$):F),$.abort(),$=null)},n.cancelToken&&n.cancelToken.subscribe(x),n.signal&&(n.signal.aborted?x():n.signal.addEventListener("abort",x)));const D=gk(B);if(D&&nl.protocols.indexOf(D)===-1){h(new pe("Unsupported protocol "+D+":",pe.ERR_BAD_REQUEST,n));return}$.send(c||null)})},S0={http:Em,xhr:fk};St.forEach(S0,(n,l)=>{if(n){try{Object.defineProperty(n,"name",{value:l})}catch{}Object.defineProperty(n,"adapterName",{value:l})}});const J1=n=>`- ${n}`,mk=n=>St.isFunction(n)||n===null||n===!1,xp={getAdapter:n=>{n=St.isArray(n)?n:[n];const{length:l}=n;let r,h;const c={};for(let g=0;g`adapter ${k} `+(x===!1?"is not supported by the environment":"is not available in the build"));let v=l?g.length>1?`since : `+g.map(J1).join(` -`):" "+J1(g[0]):"as no adapter specified";throw new pe("There is no suitable adapter to dispatch the request "+v,"ERR_NOT_SUPPORT")}return h},adapters:S0};function Ei(n){if(n.cancelToken&&n.cancelToken.throwIfRequested(),n.signal&&n.signal.aborted)throw new Cs(null,n)}function td(n){return Ei(n),n.headers=ml.from(n.headers),n.data=Ti.call(n,n.transformRequest),["post","put","patch"].indexOf(n.method)!==-1&&n.headers.setContentType("application/x-www-form-urlencoded",!1),xp.getAdapter(n.adapter||Zh.adapter)(n).then(function(h){return Ei(n),h.data=Ti.call(n,n.transformResponse,h),h.headers=ml.from(h.headers),h},function(h){return bp(h)||(Ei(n),h&&h.response&&(h.response.data=Ti.call(n,n.transformResponse,h.response),h.response.headers=ml.from(h.response.headers))),Promise.reject(h)})}const ed=n=>n instanceof ml?n.toJSON():n;function lo(n,l){l=l||{};const r={};function h(I,S,$){return St.isPlainObject(I)&&St.isPlainObject(S)?St.merge.call({caseless:$},I,S):St.isPlainObject(S)?St.merge({},S):St.isArray(S)?S.slice():S}function c(I,S,$){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I,$)}else return h(I,S,$)}function g(I,S){if(!St.isUndefined(S))return h(void 0,S)}function v(I,S){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I)}else return h(void 0,S)}function k(I,S,$){if($ in l)return h(I,S);if($ in n)return h(void 0,I)}const x={url:g,method:g,data:g,baseURL:v,transformRequest:v,transformResponse:v,paramsSerializer:v,timeout:v,timeoutMessage:v,withCredentials:v,withXSRFToken:v,adapter:v,responseType:v,xsrfCookieName:v,xsrfHeaderName:v,onUploadProgress:v,onDownloadProgress:v,decompress:v,maxContentLength:v,maxBodyLength:v,beforeRedirect:v,transport:v,httpAgent:v,httpsAgent:v,cancelToken:v,socketPath:v,responseEncoding:v,validateStatus:k,headers:(I,S)=>c(ed(I),ed(S),!0)};return St.forEach(Object.keys(Object.assign({},n,l)),function(S){const $=x[S]||c,B=$(n[S],l[S],S);St.isUndefined(B)&&$!==k||(r[S]=B)}),r}const zp="1.6.2",Kh={};["object","boolean","number","function","string","symbol"].forEach((n,l)=>{Kh[n]=function(h){return typeof h===n||"a"+(l<1?"n ":" ")+n}});const nd={};Kh.transitional=function(l,r,h){function c(g,v){return"[Axios v"+zp+"] Transitional option '"+g+"'"+v+(h?". "+h:"")}return(g,v,k)=>{if(l===!1)throw new pe(c(v," has been removed"+(r?" in "+r:"")),pe.ERR_DEPRECATED);return r&&!nd[v]&&(nd[v]=!0,console.warn(c(v," has been deprecated since v"+r+" and will be removed in the near future"))),l?l(g,v,k):!0}};function kk(n,l,r){if(typeof n!="object")throw new pe("options must be an object",pe.ERR_BAD_OPTION_VALUE);const h=Object.keys(n);let c=h.length;for(;c-- >0;){const g=h[c],v=l[g];if(v){const k=n[g],x=k===void 0||v(k,g,n);if(x!==!0)throw new pe("option "+g+" must be "+x,pe.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new pe("Unknown option "+g,pe.ERR_BAD_OPTION)}}const $0={assertOptions:kk,validators:Kh},Ll=$0.validators;class va{constructor(l){this.defaults=l,this.interceptors={request:new Z1,response:new Z1}}request(l,r){typeof l=="string"?(r=r||{},r.url=l):r=l||{},r=lo(this.defaults,r);const{transitional:h,paramsSerializer:c,headers:g}=r;h!==void 0&&$0.assertOptions(h,{silentJSONParsing:Ll.transitional(Ll.boolean),forcedJSONParsing:Ll.transitional(Ll.boolean),clarifyTimeoutError:Ll.transitional(Ll.boolean)},!1),c!=null&&(St.isFunction(c)?r.paramsSerializer={serialize:c}:$0.assertOptions(c,{encode:Ll.function,serialize:Ll.function},!0)),r.method=(r.method||this.defaults.method||"get").toLowerCase();let v=g&&St.merge(g.common,g[r.method]);g&&St.forEach(["delete","get","head","post","put","patch","common"],D=>{delete g[D]}),r.headers=ml.concat(v,g);const k=[];let x=!0;this.interceptors.request.forEach(function(F){typeof F.runWhen=="function"&&F.runWhen(r)===!1||(x=x&&F.synchronous,k.unshift(F.fulfilled,F.rejected))});const I=[];this.interceptors.response.forEach(function(F){I.push(F.fulfilled,F.rejected)});let S,$=0,B;if(!x){const D=[td.bind(this),void 0];for(D.unshift.apply(D,k),D.push.apply(D,I),B=D.length,S=Promise.resolve(r);${if(!h._listeners)return;let g=h._listeners.length;for(;g-- >0;)h._listeners[g](c);h._listeners=null}),this.promise.then=c=>{let g;const v=new Promise(k=>{h.subscribe(k),g=k}).then(c);return v.cancel=function(){h.unsubscribe(g)},v},l(function(g,v,k){h.reason||(h.reason=new Cs(g,v,k),r(h.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(l){if(this.reason){l(this.reason);return}this._listeners?this._listeners.push(l):this._listeners=[l]}unsubscribe(l){if(!this._listeners)return;const r=this._listeners.indexOf(l);r!==-1&&this._listeners.splice(r,1)}static source(){let l;return{token:new Qh(function(c){l=c}),cancel:l}}}const bk=Qh;function Mk(n){return function(r){return n.apply(null,r)}}function xk(n){return St.isObject(n)&&n.isAxiosError===!0}const A0={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(A0).forEach(([n,l])=>{A0[l]=n});const zk=A0;function Ip(n){const l=new sa(n),r=rp(sa.prototype.request,l);return St.extend(r,sa.prototype,l,{allOwnKeys:!0}),St.extend(r,l,null,{allOwnKeys:!0}),r.create=function(c){return Ip(lo(n,c))},r}const Re=Ip(Zh);Re.Axios=sa;Re.CanceledError=Cs;Re.CancelToken=bk;Re.isCancel=bp;Re.VERSION=zp;Re.toFormData=Ja;Re.AxiosError=pe;Re.Cancel=Re.CanceledError;Re.all=function(l){return Promise.all(l)};Re.spread=Mk;Re.isAxiosError=xk;Re.mergeConfig=lo;Re.AxiosHeaders=ml;Re.formToJSON=n=>kp(St.isHTMLForm(n)?new FormData(n):n);Re.getAdapter=xp.getAdapter;Re.HttpStatusCode=zk;Re.default=Re;const Ik=Re,yk=Jf({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){Ik.post("/api/authenticate",{username:n,password:l}).then(r=>{console.log("auth",r),this.user=r.data.data,localStorage.setItem("user",JSON.stringify(this.user)),fa.push(this.returnUrl||"/dashboard/default")})},logout(){this.user=null,localStorage.removeItem("user"),fa.push("/auth/login")}}}),fa=tm({history:f5("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>en(()=>import("./Error404Page-a7e4df24.js"),["assets/Error404Page-a7e4df24.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},om,sm]});fa.beforeEach(async(n,l,r)=>{const c=!["/auth/login"].includes(n.path),g=yk();if(n.matched.some(v=>v.meta.requiresAuth)){if(c&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const ze=typeof window<"u",Jh=ze&&"IntersectionObserver"in window,Ck=ze&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function ld(n,l,r){Sk(n,l),l.set(n,r)}function Sk(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function $k(n,l,r){var h=yp(n,l,"set");return Ak(n,h,r),r}function Ak(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function sr(n,l){var r=yp(n,l,"get");return Bk(n,r)}function yp(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function Bk(n,l){return l.get?l.get.call(n):l.value}function Cp(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let c=0;cSr(n[h],l[h]))}function B0(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),Cp(n,l.split("."),r))}function ln(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const c=l(n,r);return typeof c>"u"?r:c}if(typeof l=="string")return B0(n,l,r);if(Array.isArray(l))return Cp(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function gl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function qt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function H0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function N0(n){return n&&"$el"in n?n.$el:n}const rd=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),j0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function Sp(n){return Object.keys(n)}function cr(n,l){return l.every(r=>n.hasOwnProperty(r))}function Mr(n,l,r){const h=Object.create(null),c=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:c[g]=n[g];return[h,c]}function On(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const $p=/^on[^a-z]/,t2=n=>$p.test(n),Hk=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function $r(n){const[l,r]=Mr(n,[$p]),h=On(l,Hk),[c,g]=Mr(r,["class","style","id",/^data-/]);return Object.assign(c,l),Object.assign(g,h),[c,g]}function Pn(n){return n==null?[]:Array.isArray(n)?n:[n]}function rn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function od(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function sd(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function Nk(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const c in n)h[c]=n[c];for(const c in l){const g=n[c],v=l[c];if(H0(g)&&H0(v)){h[c]=Nn(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[c]=r(g,v);continue}h[c]=v}return h}function Ap(n){return n.map(l=>l.type===Kt?Ap(l.children):l).flat()}function vr(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(vr.cache.has(n))return vr.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return vr.cache.set(n,l),l}vr.cache=new Map;function qo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>qo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>qo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return qo(n,l.component.subTree).flat(1)}return[]}var Us=new WeakMap,Fr=new WeakMap;class jk{constructor(l){ld(this,Us,{writable:!0,value:[]}),ld(this,Fr,{writable:!0,value:0}),this.size=l}push(l){sr(this,Us)[sr(this,Fr)]=l,$k(this,Fr,(sr(this,Fr)+1)%this.size)}values(){return sr(this,Us).slice(sr(this,Fr)).concat(sr(this,Us).slice(0,sr(this,Fr)))}}function Pk(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function e2(n){const l=Ze({}),r=q(n);return bn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),vs(l)}function ma(n,l){return n.includes(l)}function Bp(n){return n[2].toLowerCase()+n.slice(3)}const ol=()=>[Function,Array];function id(n,l){return l="on"+Il(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function n2(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function Hp(n,l,r){let h,c=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do c+=g,h=n[c];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&c=0);return h}function ka(n,l){var h,c,g,v;const r=ss(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(c=r[0])==null||c.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const k=Hp(r,l);k?k.focus():ka(n,l==="next"?"first":"last")}}function Np(){}function ro(n,l){if(!(ze&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const jp=["top","bottom"],Lk=["start","end","left","right"];function P0(n,l){let[r,h]=n.split(" ");return h||(h=ma(jp,r)?"start":ma(Lk,r)?"top":"center"),{side:L0(r,l),align:L0(h,l)}}function L0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function Vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function _i(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function hd(n){return{side:n.align,align:n.side}}function dd(n){return ma(jp,n.side)?"y":"x"}class Kr{constructor(l){let{x:r,y:h,width:c,height:g}=l;this.x=r,this.y=h,this.width=c,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function cd(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function l2(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let c,g,v,k,x;if(h.startsWith("matrix3d("))c=h.slice(9,-1).split(/, /),g=+c[0],v=+c[5],k=+c[12],x=+c[13];else if(h.startsWith("matrix("))c=h.slice(7,-1).split(/, /),g=+c[0],v=+c[3],k=+c[4],x=+c[5];else return new Kr(l);const I=r.transformOrigin,S=l.x-k-(1-g)*parseFloat(I),$=l.y-x-(1-v)*parseFloat(I.slice(I.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new Kr({x:S,y:$,width:B,height:P})}else return new Kr(l)}function ur(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(c=>{h.onfinish=()=>{c(h)}})),h}const aa=new WeakMap;function Dk(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);if(l[r]==null)c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))});else if(!c||![...c].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=c||new Set;g.add([h,l[r]]),aa.has(n)||aa.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function Ok(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))})}else n.removeAttribute(r)})}const Rr=2.4,ud=.2126729,pd=.7151522,gd=.072175,Fk=.55,Rk=.58,Tk=.57,Ek=.62,Gs=.03,wd=1.45,Vk=5e-4,_k=1.25,Wk=1.25,vd=.078,fd=12.82051282051282,Zs=.06,md=.001;function kd(n,l){const r=(n.r/255)**Rr,h=(n.g/255)**Rr,c=(n.b/255)**Rr,g=(l.r/255)**Rr,v=(l.g/255)**Rr,k=(l.b/255)**Rr;let x=r*ud+h*pd+c*gd,I=g*ud+v*pd+k*gd;if(x<=Gs&&(x+=(Gs-x)**wd),I<=Gs&&(I+=(Gs-I)**wd),Math.abs(I-x)x){const $=(I**Fk-x**Rk)*_k;S=$-md?0:$>-vd?$-$*fd*Zs:$+Zs}return S*100}function Xk(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const ba=.20689655172413793,qk=n=>n>ba**3?Math.cbrt(n):n/(3*ba**2)+4/29,Yk=n=>n>ba?n**3:3*ba**2*(n-4/29);function Pp(n){const l=qk,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Lp(n){const l=Yk,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const Uk=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],Gk=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,Zk=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],Kk=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function Dp(n){const l=Array(3),r=Gk,h=Uk;for(let c=0;c<3;++c)l[c]=Math.round(rn(r(h[c][0]*n[0]+h[c][1]*n[1]+h[c][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function r2(n){let{r:l,g:r,b:h}=n;const c=[0,0,0],g=Kk,v=Zk;l=g(l/255),r=g(r/255),h=g(h/255);for(let k=0;k<3;++k)c[k]=v[k][0]*l+v[k][1]*r+v[k][2]*h;return c}function bd(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const Md=/^(?(?:rgb|hsl)a?)\((?.+)\)/,Qk={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h})};function Yn(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&Md.test(n)){const{groups:l}=n.match(Md),{fn:r,values:h}=l,c=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return Qk[r](...c)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Ep(l)}else if(typeof n=="object"){if(cr(n,["r","g","b"]))return n;if(cr(n,["h","s","l"]))return bl(o2(n));if(cr(n,["h","s","v"]))return bl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} +`):" "+J1(g[0]):"as no adapter specified";throw new pe("There is no suitable adapter to dispatch the request "+v,"ERR_NOT_SUPPORT")}return h},adapters:S0};function Ei(n){if(n.cancelToken&&n.cancelToken.throwIfRequested(),n.signal&&n.signal.aborted)throw new Cs(null,n)}function td(n){return Ei(n),n.headers=ml.from(n.headers),n.data=Ti.call(n,n.transformRequest),["post","put","patch"].indexOf(n.method)!==-1&&n.headers.setContentType("application/x-www-form-urlencoded",!1),xp.getAdapter(n.adapter||Zh.adapter)(n).then(function(h){return Ei(n),h.data=Ti.call(n,n.transformResponse,h),h.headers=ml.from(h.headers),h},function(h){return bp(h)||(Ei(n),h&&h.response&&(h.response.data=Ti.call(n,n.transformResponse,h.response),h.response.headers=ml.from(h.response.headers))),Promise.reject(h)})}const ed=n=>n instanceof ml?n.toJSON():n;function lo(n,l){l=l||{};const r={};function h(I,S,$){return St.isPlainObject(I)&&St.isPlainObject(S)?St.merge.call({caseless:$},I,S):St.isPlainObject(S)?St.merge({},S):St.isArray(S)?S.slice():S}function c(I,S,$){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I,$)}else return h(I,S,$)}function g(I,S){if(!St.isUndefined(S))return h(void 0,S)}function v(I,S){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I)}else return h(void 0,S)}function k(I,S,$){if($ in l)return h(I,S);if($ in n)return h(void 0,I)}const x={url:g,method:g,data:g,baseURL:v,transformRequest:v,transformResponse:v,paramsSerializer:v,timeout:v,timeoutMessage:v,withCredentials:v,withXSRFToken:v,adapter:v,responseType:v,xsrfCookieName:v,xsrfHeaderName:v,onUploadProgress:v,onDownloadProgress:v,decompress:v,maxContentLength:v,maxBodyLength:v,beforeRedirect:v,transport:v,httpAgent:v,httpsAgent:v,cancelToken:v,socketPath:v,responseEncoding:v,validateStatus:k,headers:(I,S)=>c(ed(I),ed(S),!0)};return St.forEach(Object.keys(Object.assign({},n,l)),function(S){const $=x[S]||c,B=$(n[S],l[S],S);St.isUndefined(B)&&$!==k||(r[S]=B)}),r}const zp="1.6.2",Kh={};["object","boolean","number","function","string","symbol"].forEach((n,l)=>{Kh[n]=function(h){return typeof h===n||"a"+(l<1?"n ":" ")+n}});const nd={};Kh.transitional=function(l,r,h){function c(g,v){return"[Axios v"+zp+"] Transitional option '"+g+"'"+v+(h?". "+h:"")}return(g,v,k)=>{if(l===!1)throw new pe(c(v," has been removed"+(r?" in "+r:"")),pe.ERR_DEPRECATED);return r&&!nd[v]&&(nd[v]=!0,console.warn(c(v," has been deprecated since v"+r+" and will be removed in the near future"))),l?l(g,v,k):!0}};function kk(n,l,r){if(typeof n!="object")throw new pe("options must be an object",pe.ERR_BAD_OPTION_VALUE);const h=Object.keys(n);let c=h.length;for(;c-- >0;){const g=h[c],v=l[g];if(v){const k=n[g],x=k===void 0||v(k,g,n);if(x!==!0)throw new pe("option "+g+" must be "+x,pe.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new pe("Unknown option "+g,pe.ERR_BAD_OPTION)}}const $0={assertOptions:kk,validators:Kh},Ll=$0.validators;class va{constructor(l){this.defaults=l,this.interceptors={request:new Z1,response:new Z1}}request(l,r){typeof l=="string"?(r=r||{},r.url=l):r=l||{},r=lo(this.defaults,r);const{transitional:h,paramsSerializer:c,headers:g}=r;h!==void 0&&$0.assertOptions(h,{silentJSONParsing:Ll.transitional(Ll.boolean),forcedJSONParsing:Ll.transitional(Ll.boolean),clarifyTimeoutError:Ll.transitional(Ll.boolean)},!1),c!=null&&(St.isFunction(c)?r.paramsSerializer={serialize:c}:$0.assertOptions(c,{encode:Ll.function,serialize:Ll.function},!0)),r.method=(r.method||this.defaults.method||"get").toLowerCase();let v=g&&St.merge(g.common,g[r.method]);g&&St.forEach(["delete","get","head","post","put","patch","common"],D=>{delete g[D]}),r.headers=ml.concat(v,g);const k=[];let x=!0;this.interceptors.request.forEach(function(F){typeof F.runWhen=="function"&&F.runWhen(r)===!1||(x=x&&F.synchronous,k.unshift(F.fulfilled,F.rejected))});const I=[];this.interceptors.response.forEach(function(F){I.push(F.fulfilled,F.rejected)});let S,$=0,B;if(!x){const D=[td.bind(this),void 0];for(D.unshift.apply(D,k),D.push.apply(D,I),B=D.length,S=Promise.resolve(r);${if(!h._listeners)return;let g=h._listeners.length;for(;g-- >0;)h._listeners[g](c);h._listeners=null}),this.promise.then=c=>{let g;const v=new Promise(k=>{h.subscribe(k),g=k}).then(c);return v.cancel=function(){h.unsubscribe(g)},v},l(function(g,v,k){h.reason||(h.reason=new Cs(g,v,k),r(h.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(l){if(this.reason){l(this.reason);return}this._listeners?this._listeners.push(l):this._listeners=[l]}unsubscribe(l){if(!this._listeners)return;const r=this._listeners.indexOf(l);r!==-1&&this._listeners.splice(r,1)}static source(){let l;return{token:new Qh(function(c){l=c}),cancel:l}}}const bk=Qh;function Mk(n){return function(r){return n.apply(null,r)}}function xk(n){return St.isObject(n)&&n.isAxiosError===!0}const A0={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(A0).forEach(([n,l])=>{A0[l]=n});const zk=A0;function Ip(n){const l=new sa(n),r=rp(sa.prototype.request,l);return St.extend(r,sa.prototype,l,{allOwnKeys:!0}),St.extend(r,l,null,{allOwnKeys:!0}),r.create=function(c){return Ip(lo(n,c))},r}const Re=Ip(Zh);Re.Axios=sa;Re.CanceledError=Cs;Re.CancelToken=bk;Re.isCancel=bp;Re.VERSION=zp;Re.toFormData=Ja;Re.AxiosError=pe;Re.Cancel=Re.CanceledError;Re.all=function(l){return Promise.all(l)};Re.spread=Mk;Re.isAxiosError=xk;Re.mergeConfig=lo;Re.AxiosHeaders=ml;Re.formToJSON=n=>kp(St.isHTMLForm(n)?new FormData(n):n);Re.getAdapter=xp.getAdapter;Re.HttpStatusCode=zk;Re.default=Re;const Ik=Re,yk=Jf({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){Ik.post("/api/authenticate",{username:n,password:l}).then(r=>{console.log("auth",r),this.user=r.data.data,localStorage.setItem("user",JSON.stringify(this.user)),fa.push(this.returnUrl||"/dashboard/default")})},logout(){this.user=null,localStorage.removeItem("user"),fa.push("/auth/login")}}}),fa=tm({history:f5("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>en(()=>import("./Error404Page-1f0e3199.js"),["assets/Error404Page-1f0e3199.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},om,sm]});fa.beforeEach(async(n,l,r)=>{const c=!["/auth/login"].includes(n.path),g=yk();if(n.matched.some(v=>v.meta.requiresAuth)){if(c&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const ze=typeof window<"u",Jh=ze&&"IntersectionObserver"in window,Ck=ze&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function ld(n,l,r){Sk(n,l),l.set(n,r)}function Sk(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function $k(n,l,r){var h=yp(n,l,"set");return Ak(n,h,r),r}function Ak(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function sr(n,l){var r=yp(n,l,"get");return Bk(n,r)}function yp(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function Bk(n,l){return l.get?l.get.call(n):l.value}function Cp(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let c=0;cSr(n[h],l[h]))}function B0(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),Cp(n,l.split("."),r))}function ln(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const c=l(n,r);return typeof c>"u"?r:c}if(typeof l=="string")return B0(n,l,r);if(Array.isArray(l))return Cp(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function gl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function qt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function H0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function N0(n){return n&&"$el"in n?n.$el:n}const rd=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),j0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function Sp(n){return Object.keys(n)}function cr(n,l){return l.every(r=>n.hasOwnProperty(r))}function Mr(n,l,r){const h=Object.create(null),c=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:c[g]=n[g];return[h,c]}function On(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const $p=/^on[^a-z]/,t2=n=>$p.test(n),Hk=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function $r(n){const[l,r]=Mr(n,[$p]),h=On(l,Hk),[c,g]=Mr(r,["class","style","id",/^data-/]);return Object.assign(c,l),Object.assign(g,h),[c,g]}function Pn(n){return n==null?[]:Array.isArray(n)?n:[n]}function rn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function od(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function sd(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function Nk(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const c in n)h[c]=n[c];for(const c in l){const g=n[c],v=l[c];if(H0(g)&&H0(v)){h[c]=Nn(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[c]=r(g,v);continue}h[c]=v}return h}function Ap(n){return n.map(l=>l.type===Kt?Ap(l.children):l).flat()}function vr(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(vr.cache.has(n))return vr.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return vr.cache.set(n,l),l}vr.cache=new Map;function qo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>qo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>qo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return qo(n,l.component.subTree).flat(1)}return[]}var Us=new WeakMap,Fr=new WeakMap;class jk{constructor(l){ld(this,Us,{writable:!0,value:[]}),ld(this,Fr,{writable:!0,value:0}),this.size=l}push(l){sr(this,Us)[sr(this,Fr)]=l,$k(this,Fr,(sr(this,Fr)+1)%this.size)}values(){return sr(this,Us).slice(sr(this,Fr)).concat(sr(this,Us).slice(0,sr(this,Fr)))}}function Pk(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function e2(n){const l=Ze({}),r=q(n);return bn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),vs(l)}function ma(n,l){return n.includes(l)}function Bp(n){return n[2].toLowerCase()+n.slice(3)}const ol=()=>[Function,Array];function id(n,l){return l="on"+Il(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function n2(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function Hp(n,l,r){let h,c=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do c+=g,h=n[c];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&c=0);return h}function ka(n,l){var h,c,g,v;const r=ss(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(c=r[0])==null||c.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const k=Hp(r,l);k?k.focus():ka(n,l==="next"?"first":"last")}}function Np(){}function ro(n,l){if(!(ze&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const jp=["top","bottom"],Lk=["start","end","left","right"];function P0(n,l){let[r,h]=n.split(" ");return h||(h=ma(jp,r)?"start":ma(Lk,r)?"top":"center"),{side:L0(r,l),align:L0(h,l)}}function L0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function Vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function _i(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function hd(n){return{side:n.align,align:n.side}}function dd(n){return ma(jp,n.side)?"y":"x"}class Kr{constructor(l){let{x:r,y:h,width:c,height:g}=l;this.x=r,this.y=h,this.width=c,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function cd(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function l2(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let c,g,v,k,x;if(h.startsWith("matrix3d("))c=h.slice(9,-1).split(/, /),g=+c[0],v=+c[5],k=+c[12],x=+c[13];else if(h.startsWith("matrix("))c=h.slice(7,-1).split(/, /),g=+c[0],v=+c[3],k=+c[4],x=+c[5];else return new Kr(l);const I=r.transformOrigin,S=l.x-k-(1-g)*parseFloat(I),$=l.y-x-(1-v)*parseFloat(I.slice(I.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new Kr({x:S,y:$,width:B,height:P})}else return new Kr(l)}function ur(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(c=>{h.onfinish=()=>{c(h)}})),h}const aa=new WeakMap;function Dk(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);if(l[r]==null)c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))});else if(!c||![...c].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=c||new Set;g.add([h,l[r]]),aa.has(n)||aa.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function Ok(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))})}else n.removeAttribute(r)})}const Rr=2.4,ud=.2126729,pd=.7151522,gd=.072175,Fk=.55,Rk=.58,Tk=.57,Ek=.62,Gs=.03,wd=1.45,Vk=5e-4,_k=1.25,Wk=1.25,vd=.078,fd=12.82051282051282,Zs=.06,md=.001;function kd(n,l){const r=(n.r/255)**Rr,h=(n.g/255)**Rr,c=(n.b/255)**Rr,g=(l.r/255)**Rr,v=(l.g/255)**Rr,k=(l.b/255)**Rr;let x=r*ud+h*pd+c*gd,I=g*ud+v*pd+k*gd;if(x<=Gs&&(x+=(Gs-x)**wd),I<=Gs&&(I+=(Gs-I)**wd),Math.abs(I-x)x){const $=(I**Fk-x**Rk)*_k;S=$-md?0:$>-vd?$-$*fd*Zs:$+Zs}return S*100}function Xk(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const ba=.20689655172413793,qk=n=>n>ba**3?Math.cbrt(n):n/(3*ba**2)+4/29,Yk=n=>n>ba?n**3:3*ba**2*(n-4/29);function Pp(n){const l=qk,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Lp(n){const l=Yk,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const Uk=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],Gk=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,Zk=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],Kk=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function Dp(n){const l=Array(3),r=Gk,h=Uk;for(let c=0;c<3;++c)l[c]=Math.round(rn(r(h[c][0]*n[0]+h[c][1]*n[1]+h[c][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function r2(n){let{r:l,g:r,b:h}=n;const c=[0,0,0],g=Kk,v=Zk;l=g(l/255),r=g(r/255),h=g(h/255);for(let k=0;k<3;++k)c[k]=v[k][0]*l+v[k][1]*r+v[k][2]*h;return c}function bd(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const Md=/^(?(?:rgb|hsl)a?)\((?.+)\)/,Qk={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h})};function Yn(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&Md.test(n)){const{groups:l}=n.match(Md),{fn:r,values:h}=l,c=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return Qk[r](...c)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Ep(l)}else if(typeof n=="object"){if(cr(n,["r","g","b"]))return n;if(cr(n,["h","s","l"]))return bl(o2(n));if(cr(n,["h","s","v"]))return bl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function bl(n){const{h:l,s:r,v:h,a:c}=n,g=k=>{const x=(k+l/60)%6;return h-h*r*Math.max(Math.min(x,4-x,1),0)},v=[g(5),g(3),g(1)].map(k=>Math.round(k*255));return{r:v[0],g:v[1],b:v[2],a:c}}function xd(n){return bl(o2(n))}function ei(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,c=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;c!==g&&(c===l?v=60*(0+(r-h)/(c-g)):c===r?v=60*(2+(h-l)/(c-g)):c===h&&(v=60*(4+(l-r)/(c-g)))),v<0&&(v=v+360);const k=c===0?0:(c-g)/c,x=[v,k,c];return{h:x[0],s:x[1],v:x[2],a:n.a}}function Op(n){const{h:l,s:r,v:h,a:c}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:c}}function o2(n){const{h:l,s:r,l:h,a:c}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:c}}function Fp(n){let{r:l,g:r,b:h,a:c}=n;return c===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${c})`}function Rp(n){return Fp(bl(n))}function Ks(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Tp(n){let{r:l,g:r,b:h,a:c}=n;return`#${[Ks(l),Ks(r),Ks(h),c!==void 0?Ks(Math.round(c*255)):""].join("")}`}function Ep(n){n=t6(n);let[l,r,h,c]=Nk(n,2).map(g=>parseInt(g,16));return c=c===void 0?c:c/255,{r:l,g:r,b:h,a:c}}function Jk(n){const l=Ep(n);return ei(l)}function Vp(n){return Tp(bl(n))}function t6(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=sd(sd(n,6),8,"F")),n}function e6(n,l){const r=Pp(r2(n));return r[0]=r[0]+l*10,Dp(Lp(r))}function n6(n,l){const r=Pp(r2(n));return r[0]=r[0]-l*10,Dp(Lp(r))}function D0(n){const l=Yn(n);return r2(l)[1]}function l6(n,l){const r=D0(n),h=D0(l),c=Math.max(r,h),g=Math.min(r,h);return(c+.05)/(g+.05)}function _p(n){const l=Math.abs(kd(Yn(0),Yn(n)));return Math.abs(kd(Yn(16777215),Yn(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,c)=>{const v=typeof n[c]=="object"&&n[c]!=null&&!Array.isArray(n[c])?n[c]:{type:n[c]};return r&&c in r?h[c]={...v,default:r[c]}:h[c]=v,l&&!h[c].source&&(h[c].source=l),h},{})}const Xt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Fn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return Mr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,c){const g=i2();if(!g.value)return n._setup(h,c);const{props:v,provideSubDefaults:k}=c6(h,h._as??n.name,g),x=n._setup(v,c);return k(),x}}return n}function Bt(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Fn:Cr)(l)}function Qn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return Bt()({name:r??Il(Sn(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Xt()},setup(h,c){let{slots:g}=c;return()=>{var v;return Ln(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Wp(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const as="cubic-bezier(0.4, 0, 0.2, 1)",r6="cubic-bezier(0.0, 0, 0.2, 1)",o6="cubic-bezier(0.4, 0, 1, 1)";function Ye(n,l){const r=al();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function Cl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=Ye(n).type;return vr((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Xp=0,ia=new WeakMap;function hn(){const n=Ye("getUid");if(ia.has(n))return ia.get(n);{const l=Xp++;return ia.set(n,l),l}}hn.reset=()=>{Xp=0,ia=new WeakMap};function s2(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?s6(n):a2(n))return n;n=n.parentElement}return document.scrollingElement}function Ma(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(a2(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function a2(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function s6(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function a6(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Ye("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function i6(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Dt(n){const l=Ye("useRender");l.render=n}const oo=Symbol.for("vuetify:defaults");function h6(n){return Lt(n)}function i2(){const n=de(oo);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Te(n,l){const r=i2(),h=Lt(n),c=q(()=>{if(je(l==null?void 0:l.disabled))return r.value;const v=je(l==null?void 0:l.scoped),k=je(l==null?void 0:l.reset),x=je(l==null?void 0:l.root);if(h.value==null&&!(v||k||x))return r.value;let I=Nn(h.value,{prev:r.value});if(v)return I;if(k||x){const S=Number(k||1/0);for(let $=0;$<=S&&!(!I||!("prev"in I));$++)I=I.prev;return I&&typeof x=="string"&&x in I&&(I=Nn(Nn(I,{prev:I}),I[x])),I}return I.prev?Nn(I.prev,I):I});return Se(oo,c),c}function d6(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[vr(l)])<"u"}function c6(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:i2();const h=Ye("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const c=q(()=>{var x;return(x=r.value)==null?void 0:x[n._as??l]}),g=new Proxy(n,{get(x,I){var $,B,P,D;const S=Reflect.get(x,I);return I==="class"||I==="style"?[($=c.value)==null?void 0:$[I],S].filter(F=>F!=null):typeof I=="string"&&!d6(h.vnode,I)?((B=c.value)==null?void 0:B[I])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[I])??S:S}}),v=Wt();bn(()=>{if(c.value){const x=Object.entries(c.value).filter(I=>{let[S]=I;return S.startsWith(S[0].toUpperCase())});v.value=x.length?Object.fromEntries(x):void 0}else v.value=void 0});function k(){const x=a6(oo,h);Se(oo,q(()=>v.value?Nn((x==null?void 0:x.value)??{},v.value):x==null?void 0:x.value))}return{props:g,provideSubDefaults:k}}const ni=["sm","md","lg","xl","xxl"],O0=Symbol.for("vuetify:display"),zd={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},u6=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:zd;return Nn(zd,n)};function Id(n){return ze&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function yd(n){return ze&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function Cd(n){const l=ze&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),c=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),k=r(/chrome/i),x=r(/edge/i),I=r(/firefox/i),S=r(/opera/i),$=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:c,cordova:g,electron:v,chrome:k,edge:x,firefox:I,opera:S,win:$,mac:B,linux:P,touch:Ck,ssr:l==="ssr"}}function p6(n,l){const{thresholds:r,mobileBreakpoint:h}=u6(n),c=Wt(yd(l)),g=Wt(Cd(l)),v=Ze({}),k=Wt(Id(l));function x(){c.value=yd(),k.value=Id()}function I(){x(),g.value=Cd()}return bn(()=>{const S=k.value=r.xxl,X=S?"xs":$?"sm":B?"md":P?"lg":D?"xl":"xxl",R=typeof h=="number"?h:r[h],H=k.valueLn(d2,{...n,class:"mdi"})},ee=[String,Function,Object,Array],F0=Symbol.for("vuetify:icons"),li=mt({icon:{type:ee},tag:{type:String,required:!0}},"icon"),R0=Bt()({name:"VComponentIcon",props:li(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var c;return[n.icon?t(h,null,null):(c=r.default)==null?void 0:c.call(r)]}})}}}),h2=Fn({name:"VSvgIcon",inheritAttrs:!1,props:li(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),v6=Fn({name:"VLigatureIcon",props:li(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),d2=Fn({name:"VClassIcon",props:li(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),f6={svg:{component:h2},class:{component:d2}};function m6(n){return Nn({defaultSet:"mdi",sets:{...f6,mdi:w6},aliases:{...g6,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const k6=n=>{const l=de(F0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:q(()=>{var x;const h=je(n);if(!h)return{component:R0};let c=h;if(typeof c=="string"&&(c=c.trim(),c.startsWith("$")&&(c=(x=l.aliases)==null?void 0:x[c.slice(1)])),!c)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(c))return{component:h2,icon:c};if(typeof c!="string")return{component:R0,icon:c};const g=Object.keys(l.sets).find(I=>typeof c=="string"&&c.startsWith(`${I}:`)),v=g?c.slice(g.length+1):c;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},b6={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},M6={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Zl(n,l){let r;function h(){r=io(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}_t(n,c=>{c&&!r?h():c||(r==null||r.stop(),r=void 0)},{immediate:!0}),sn(()=>{r==null||r.stop()})}function ne(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:$=>$,c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:$=>$;const g=Ye("useProxiedModel"),v=Lt(n[l]!==void 0?n[l]:r),k=vr(l),I=q(k!==l?()=>{var $,B,P,D;return n[l],!!((($=g.vnode.props)!=null&&$.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(k))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${k}`)))}:()=>{var $,B;return n[l],!!(($=g.vnode.props)!=null&&$.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Zl(()=>!I.value,()=>{_t(()=>n[l],$=>{v.value=$})});const S=q({get(){const $=n[l];return h(I.value?$:v.value)},set($){const B=c($),P=le(I.value?n[l]:v.value);P===B||h(P)===$||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>I.value?n[l]:v.value}),S}const Sd="$vuetify.",$d=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),qp=(n,l,r)=>function(h){for(var c=arguments.length,g=new Array(c>1?c-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function Wi(n,l,r){const h=ne(n,l,n[l]??r.value);return h.value=n[l]??r.value,_t(r,c=>{n[l]==null&&(h.value=r.value)}),h}function Up(n){return l=>{const r=Wi(l,"locale",n.current),h=Wi(l,"fallback",n.fallback),c=Wi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:c,t:qp(r,h,c),n:Yp(r,h),provide:Up({current:r,fallback:h,messages:c})}}}function x6(n){const l=Wt((n==null?void 0:n.locale)??"en"),r=Wt((n==null?void 0:n.fallback)??"en"),h=Lt({en:b6,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:qp(l,r,h),n:Yp(l,r),provide:Up({current:l,fallback:r,messages:h})}}const so=Symbol.for("vuetify:locale");function z6(n){return n.name!=null}function I6(n){const l=n!=null&&n.adapter&&z6(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:x6(n),r=C6(l,n);return{...l,...r}}function Rn(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function y6(n){const l=de(so);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=S6(r,l.rtl,n),c={...r,...h};return Se(so,c),c}function C6(n,l){const r=Lt((l==null?void 0:l.rtl)??M6),h=q(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function S6(n,l,r){const h=q(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Ue(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const is=Symbol.for("vuetify:theme"),ue=mt({theme:String},"theme"),Bo={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function $6(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Bo;if(!n)return{...Bo,isDisabled:!0};const l={};for(const[c,g]of Object.entries(n.themes??{})){const v=g.dark||c==="dark"?(r=Bo.themes)==null?void 0:r.dark:(h=Bo.themes)==null?void 0:h.light;l[c]=Nn(v,g)}return Nn(Bo,{...n,themes:l})}function A6(n){const l=$6(n),r=Lt(l.defaultTheme),h=Lt(l.themes),c=q(()=>{const S={};for(const[$,B]of Object.entries(h.value)){const P=S[$]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const F=P.colors[D];if(F)for(const X of["lighten","darken"]){const R=X==="lighten"?e6:n6;for(const H of gl(l.variations[X],1))P.colors[`${D}-${X}-${H}`]=Tp(R(Yn(F),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const F=`on-${D}`,X=Yn(P.colors[D]);P.colors[F]=_p(X)}}return S}),g=q(()=>c.value[r.value]),v=q(()=>{const S=[];g.value.dark&&ar(S,":root",["color-scheme: dark"]),ar(S,":root",Ad(g.value));for(const[D,F]of Object.entries(c.value))ar(S,`.v-theme--${D}`,[`color-scheme: ${F.dark?"dark":"normal"}`,...Ad(F)]);const $=[],B=[],P=new Set(Object.values(c.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?ar(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(ar($,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),ar(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),ar(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...$,...B),S.map((D,F)=>F===0?D:` ${D}`).join("")});function k(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function x(S){if(l.isDisabled)return;const $=S._context.provides.usehead;if($)if($.push){const B=$.push(k);ze&&_t(v,()=>{B.patch(k)})}else ze?($.addHeadObjs(q(k)),bn(()=>$.updateDOM())):$.addHeadObjs(k());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=ze?document.getElementById("vuetify-theme-stylesheet"):null;ze?_t(v,P,{immediate:!0}):P()}}const I=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:x,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:c,themeClasses:I,styles:v,global:{name:r,current:g}}}function ve(n){Ye("provideTheme");const l=de(is,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=q(()=>n.theme??(l==null?void 0:l.name.value)),h=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`),c={...l,name:r,themeClasses:h};return Se(is,c),c}function Gp(){Ye("useTheme");const n=de(is,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function ar(n,l,r){n.push(`${l} { `,...r.map(h=>` ${h}; `),`} diff --git a/addons/dashboard/dist/assets/md5-d27f8a54.js b/addons/dashboard/dist/assets/md5-15332791.js similarity index 99% rename from addons/dashboard/dist/assets/md5-d27f8a54.js rename to addons/dashboard/dist/assets/md5-15332791.js index 72e51450e..c1504f933 100644 --- a/addons/dashboard/dist/assets/md5-d27f8a54.js +++ b/addons/dashboard/dist/assets/md5-15332791.js @@ -1,4 +1,4 @@ -import{ap as K,aq as Y,ar as V}from"./index-800319b6.js";var C={exports:{}};const $={},k=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),z=K(k);/** +import{ap as K,aq as Y,ar as V}from"./index-ffe5e9b0.js";var C={exports:{}};const $={},k=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),z=K(k);/** * [js-md5]{@link https://github.com/emn178/js-md5} * * @namespace md5 diff --git a/addons/dashboard/dist/index.html b/addons/dashboard/dist/index.html index 142b05502..b3ff17376 100644 --- a/addons/dashboard/dist/index.html +++ b/addons/dashboard/dist/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" /> AstrBot - 仪表盘 - + diff --git a/addons/dashboard/helper.py b/addons/dashboard/helper.py index 320190bd0..f4d0e6e09 100644 --- a/addons/dashboard/helper.py +++ b/addons/dashboard/helper.py @@ -173,6 +173,14 @@ class DashBoardHelper(): value=config['gocq_qqchan_admin'], path="gocq_qqchan_admin", ), + DashBoardConfig( + config_type="item", + val_type="list", + name="通用管理员用户 ID(同上,此项支持多个管理员)", + description="", + value=config['other_admins'], + path="other_admins", + ), DashBoardConfig( config_type="item", val_type="bool", @@ -181,6 +189,14 @@ class DashBoardHelper(): value=config['uniqueSessionMode'], path="uniqueSessionMode", ), + DashBoardConfig( + config_type="item", + val_type="bool", + name="是否允许 QQ 频道私聊", + description="仅针对 QQ 频道 SDK,而非 GO-CQHTTP。如果启用,那么机器人会响应私聊消息。", + value=config['direct_message_mode'], + path="direct_message_mode", + ), ] ) @@ -245,6 +261,14 @@ class DashBoardHelper(): value=config['gocq_react_guild'], path="gocq_react_guild", ), + DashBoardConfig( + config_type="item", + val_type="int", + name="转发阈值(字符数)", + description="机器人回复的消息长度超出这个值后,会被折叠成转发卡片发出以减少刷屏。", + value=config['qq_forward_threshold'], + path="qq_forward_threshold", + ), ] ) @@ -367,6 +391,51 @@ class DashBoardHelper(): ), ] ) + + baidu_aip_group = DashBoardConfig( + config_type="group", + name="百度内容审核", + description="需要去申请", + body=[ + DashBoardConfig( + config_type="item", + val_type="bool", + name="启动百度内容审核服务", + description="", + value=config['baidu_aip']['enable'], + path="baidu_aip.enable" + ), + # "app_id": null, + # "api_key": null, + # "secret_key": null + DashBoardConfig( + config_type="item", + val_type="string", + name="APP ID", + description="", + value=config['baidu_aip']['app_id'], + path="baidu_aip.app_id" + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="API KEY", + description="", + value=config['baidu_aip']['api_key'], + path="baidu_aip.api_key" + ), + DashBoardConfig( + config_type="item", + val_type="string", + name="SECRET KEY", + description="", + value=config['baidu_aip']['secret_key'], + path="baidu_aip.secret_key" + ) + ] + ) + + other_group = DashBoardConfig( config_type="group", @@ -399,7 +468,8 @@ class DashBoardHelper(): gocq_platform_detail_group, proxy_group, llm_group, - other_group + other_group, + baidu_aip_group ] except Exception as e: @@ -411,10 +481,6 @@ class DashBoardHelper(): ''' 根据 path 解析并保存配置 ''' - # for config in dashboard_data.configs['data']: - # if config['config_type'] == "group": - # for item in config['body']: - # queue.append(item) queue = [] for config in post_config['data']: diff --git a/addons/dashboard/server.py b/addons/dashboard/server.py index 8a3a79c95..52f0afff0 100644 --- a/addons/dashboard/server.py +++ b/addons/dashboard/server.py @@ -83,12 +83,13 @@ class AstrBotDashBoard(): db_inst = dbConn() all_session = db_inst.get_all_stat_session() last_24_message = db_inst.get_last_24h_stat_message() - last_24_platform = db_inst.get_last_24h_stat_platform() + # last_24_platform = db_inst.get_last_24h_stat_platform() + platforms = db_inst.get_platform_cnt_total() self.dashboard_data.stats["session"] = [] self.dashboard_data.stats["session_total"] = db_inst.get_session_cnt_total() self.dashboard_data.stats["message"] = last_24_message self.dashboard_data.stats["message_total"] = db_inst.get_message_cnt_total() - self.dashboard_data.stats["platform"] = last_24_platform + self.dashboard_data.stats["platform"] = platforms return Response( status="success", diff --git a/addons/plugins/helloworld/helloworld.py b/addons/plugins/helloworld/helloworld.py index 5e8dccb98..76a5d9b17 100644 --- a/addons/plugins/helloworld/helloworld.py +++ b/addons/plugins/helloworld/helloworld.py @@ -5,81 +5,62 @@ from nakuru import ( ) from botpy.message import Message, DirectMessage from model.platform.qq import QQ -import time -import threading -from cores.qqbot.global_object import AstrMessageEvent +from cores.qqbot.global_object import ( + AstrMessageEvent, + CommandResult +) +''' +注意改插件名噢!格式:XXXPlugin 或 Main +小提示:把此模板仓库 fork 之后 clone 到机器人文件夹下的 addons/plugins/ 目录下,然后用 Pycharm/VSC 等工具打开可获更棒的编程体验(自动补全等) +''' class HelloWorldPlugin: """ 初始化函数, 可以选择直接pass """ def __init__(self) -> None: - self.myThread = None # 线程对象,如果要使用线程,需要在此处定义。在run处定义会被释放掉 - print("这是HelloWorld测试插件, 发送 helloworld 即可触发此插件。") + print("hello, world!") """ - 入口函数,机器人会调用此函数。 - 参数规范: message: 消息文本; role: 身份; platform: 消息平台; message_obj: 消息对象; qq_platform: QQ平台对象,可以通过调用qq_platform.send()直接发送消息。详见Helloworld插件示例 - 参数详情: role为admin或者member; platform为qqchan或者gocq; message_obj为nakuru的GroupMessage对象或者FriendMessage对象或者频道的Message, DirectMessage对象。 - 返回规范: bool: 是否hit到此插件(所有的消息均会调用每一个载入的插件, 如果没有hit到, 则应返回False) - Tuple: None或者长度为3的元组。当没有hit到时, 返回None. hit到时, 第1个参数为指令是否调用成功, 第2个参数为返回的消息文本或者gocq的消息链列表, 第3个参数为指令名称 - 例子:做一个名为"yuanshen"的插件;当接收到消息为“原神 可莉”, 如果不想要处理此消息,则返回False, None;如果想要处理,但是执行失败了,返回True, tuple([False, "请求失败啦~", "yuanshen"]) - ;执行成功了,返回True, tuple([True, "结果文本", "yuanshen"]) + 机器人程序会调用此函数。 + 返回规范: bool: 插件是否响应该消息 (所有的消息均会调用每一个载入的插件, 如果不响应, 则应返回 False) + Tuple: Non e或者长度为 3 的元组。如果不响应, 返回 None; 如果响应, 第 1 个参数为指令是否调用成功, 第 2 个参数为返回的消息链列表, 第 3 个参数为指令名称 + 例子:一个名为"yuanshen"的插件;当接收到消息为“原神 可莉”, 如果不想要处理此消息,则返回False, None;如果想要处理,但是执行失败了,返回True, tuple([False, "请求失败。", "yuanshen"]) ;执行成功了,返回True, tuple([True, "结果文本", "yuanshen"]) """ def run(self, ame: AstrMessageEvent): - - if ame.platform == "gocq": - """ - QQ平台指令处理逻辑 - """ - img_url = "https://gchat.qpic.cn/gchatpic_new/905617992/720871955-2246763964-C6EE1A52CC668EC982453065C4FA8747/0?term=2&is_origin=0" - if ame.message_str == "helloworld": - return True, tuple([True, [Plain("Hello World!!"), Image.fromURL(url=img_url)], "helloworld"]) - elif ame.message_str == "hiloop": - if self.myThread is None: - self.myThread = threading.Thread(target=self.helloworldThread, args=(ame.message_obj, ame.gocq_platform)) - self.myThread.start() - return True, tuple([True, [Plain("A lot of Helloworlds!!"), Image.fromURL(url=img_url)], "helloworld"]) - else: - return False, None - elif ame.platform == "qqchan": - """ - 频道处理逻辑(频道暂时只支持回复字符串类型的信息,返回的信息都会被转成字符串,如果不想处理某一个平台的信息,直接返回False, None就行) - """ - if ame.message_str == "helloworld": - return True, tuple([True, "Hello World!!", "helloworld"]) - else: - return False, None + if ame.message_str == "helloworld": + # return True, tuple([True, "Hello World!!", "helloworld"]) + return CommandResult( + hit=True, + success=True, + message_chain=[Plain("Hello World!!")], + command_name="helloworld" + ) else: - """ - 其他平台处理逻辑 - """ - return False, None + return CommandResult( + hit=False, + success=False, + message_chain=None, + command_name=None + ) """ - 帮助函数,当用户输入 plugin v 插件名称 时,会调用此函数,返回帮助信息 + 插件元信息。 + 当用户输入 plugin v 插件名称 时,会调用此函数,返回帮助信息。 返回参数要求(必填):dict{ "name": str, # 插件名称 "desc": str, # 插件简短描述 "help": str, # 插件帮助信息 "version": str, # 插件版本 "author": str, # 插件作者 + "repo": str, # 插件仓库地址 [ 可选 ] + "homepage": str, # 插件主页 [ 可选 ] } """ def info(self): return { "name": "helloworld", "desc": "测试插件", - "help": "测试插件, 回复helloworld即可触发", - "version": "v1.0.1 beta", + "help": "测试插件, 回复 helloworld 即可触发", + "version": "v1.2", "author": "Soulter" - } - - def helloworldThread(self, meseage_obj, qq_platform: QQ): - while True: - qq_platform.send(meseage_obj, [Plain("Hello World!!")]) # 第一个参数可以是message_obj, 也可以是qq群号 - time.sleep(3) # 睡眠3秒。 用while True一定要记得sleep,不然会卡死 - - - # 热知识:检测消息开头指令,使用以下方法 - # if message.startswith("原神"): - # pass \ No newline at end of file + } \ No newline at end of file diff --git a/cores/database/conn.py b/cores/database/conn.py index 54dd4712a..9e9f29790 100644 --- a/cores/database/conn.py +++ b/cores/database/conn.py @@ -270,6 +270,24 @@ class dbConn(): ) return c.fetchall() + def get_platform_cnt_total(self) -> int: + conn = self.conn + c = conn.cursor() + c.execute( + ''' + SELECT platform, SUM(cnt) FROM tb_stat_platform GROUP BY platform + ''' + ) + # return c.fetchall() + platforms = [] + ret = c.fetchall() + for i in ret: + # platforms[i[0]] = i[1] + platforms.append({ + "name": i[0], + "count": i[1] + }) + return platforms def close(self): self.conn.close() From 71f4998458994f9cd5fc358a51bf50c8e17310f0 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Tue, 26 Dec 2023 09:29:25 +0800 Subject: [PATCH 16/17] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20console?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...crumb.vue_vue_type_style_index_0_lang-89ca5198.js} | 2 +- ...lankLayout-ad940a6c.js => BlankLayout-7c60dfeb.js} | 2 +- .../{ColorPage-22c7f5ba.js => ColorPage-fe404e65.js} | 2 +- ...{ConfigPage-cbc9d918.js => ConfigPage-3d69363d.js} | 2 +- ...onsolePage-57b1b1f5.js => ConsolePage-ae9ea987.js} | 11 +++++++---- ...board-b70e2279.js => DefaultDashboard-f7afff9c.js} | 2 +- ...or404Page-1f0e3199.js => Error404Page-e144fe8e.js} | 2 +- ...sionPage-e262e5bf.js => ExtensionPage-fc6b100e.js} | 2 +- ...{FullLayout-297dfa95.js => FullLayout-b15267ed.js} | 2 +- .../{LoginPage-decfa242.js => LoginPage-7b049444.js} | 2 +- ...k.vue_vue_type_script_setup_true_lang-4faa128a.js} | 2 +- ...ialIcons-0da52fba.js => MaterialIcons-715117a5.js} | 2 +- ...isterPage-6fba9b67.js => RegisterPage-29cdbb0f.js} | 2 +- ...{ShadowPage-7b3e7ed6.js => ShadowPage-5a263e47.js} | 2 +- ...ablerIcons-03a8e23e.js => TablerIcons-d2cd165a.js} | 2 +- ...phyPage-db19a414.js => TypographyPage-1ff2ad6a.js} | 2 +- ...d.vue_vue_type_script_setup_true_lang-03a5c441.js} | 2 +- .../assets/{index-ffe5e9b0.js => index-7c8bc001.js} | 4 ++-- .../dist/assets/{md5-15332791.js => md5-c4ed0ff4.js} | 2 +- addons/dashboard/dist/index.html | 2 +- 20 files changed, 27 insertions(+), 24 deletions(-) rename addons/dashboard/dist/assets/{BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js => BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js} (93%) rename addons/dashboard/dist/assets/{BlankLayout-ad940a6c.js => BlankLayout-7c60dfeb.js} (70%) rename addons/dashboard/dist/assets/{ColorPage-22c7f5ba.js => ColorPage-fe404e65.js} (83%) rename addons/dashboard/dist/assets/{ConfigPage-cbc9d918.js => ConfigPage-3d69363d.js} (95%) rename addons/dashboard/dist/assets/{ConsolePage-57b1b1f5.js => ConsolePage-ae9ea987.js} (99%) rename addons/dashboard/dist/assets/{DefaultDashboard-b70e2279.js => DefaultDashboard-f7afff9c.js} (99%) rename addons/dashboard/dist/assets/{Error404Page-1f0e3199.js => Error404Page-e144fe8e.js} (94%) rename addons/dashboard/dist/assets/{ExtensionPage-e262e5bf.js => ExtensionPage-fc6b100e.js} (98%) rename addons/dashboard/dist/assets/{FullLayout-297dfa95.js => FullLayout-b15267ed.js} (97%) rename addons/dashboard/dist/assets/{LoginPage-decfa242.js => LoginPage-7b049444.js} (99%) rename addons/dashboard/dist/assets/{LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js => LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js} (94%) rename addons/dashboard/dist/assets/{MaterialIcons-0da52fba.js => MaterialIcons-715117a5.js} (70%) rename addons/dashboard/dist/assets/{RegisterPage-6fba9b67.js => RegisterPage-29cdbb0f.js} (96%) rename addons/dashboard/dist/assets/{ShadowPage-7b3e7ed6.js => ShadowPage-5a263e47.js} (81%) rename addons/dashboard/dist/assets/{TablerIcons-03a8e23e.js => TablerIcons-d2cd165a.js} (69%) rename addons/dashboard/dist/assets/{TypographyPage-db19a414.js => TypographyPage-1ff2ad6a.js} (94%) rename addons/dashboard/dist/assets/{UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js => UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js} (88%) rename addons/dashboard/dist/assets/{index-ffe5e9b0.js => index-7c8bc001.js} (99%) rename addons/dashboard/dist/assets/{md5-15332791.js => md5-c4ed0ff4.js} (99%) diff --git a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js similarity index 93% rename from addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js rename to addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js index cead73bbb..0e7b7895d 100644 --- a/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js +++ b/addons/dashboard/dist/assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js @@ -1 +1 @@ -import{x as i,o as l,c as _,w as s,a as e,f as a,J as m,V as r,b as t,t as u,ab as p,B as n,ac as o,j as f}from"./index-ffe5e9b0.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const c=d;return(x,B)=>(l(),_(r,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(r,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(c.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:c.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; +import{x as i,o as l,c as _,w as s,a as e,f as a,J as m,V as r,b as t,t as u,ab as p,B as n,ac as o,j as f}from"./index-7c8bc001.js";const b={class:"text-h3"},h={class:"d-flex align-center"},g={class:"d-flex align-center"},V=i({__name:"BaseBreadcrumb",props:{title:String,breadcrumbs:Array,icon:String},setup(d){const c=d;return(x,B)=>(l(),_(r,{class:"page-breadcrumb mb-1 mt-1"},{default:s(()=>[e(a,{cols:"12",md:"12"},{default:s(()=>[e(m,{variant:"outlined",elevation:"0",class:"px-4 py-3 withbg"},{default:s(()=>[e(r,{"no-gutters":"",class:"align-center"},{default:s(()=>[e(a,{md:"5"},{default:s(()=>[t("h3",b,u(c.title),1)]),_:1}),e(a,{md:"7",sm:"12",cols:"12"},{default:s(()=>[e(p,{items:c.breadcrumbs,class:"text-h5 justify-md-end pa-1"},{divider:s(()=>[t("div",h,[e(n(o),{size:"17"})])]),prepend:s(()=>[e(f,{size:"small",icon:"mdi-home",class:"text-secondary mr-2"}),t("div",g,[e(n(o),{size:"17"})])]),_:1},8,["items"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}))}});export{V as _}; diff --git a/addons/dashboard/dist/assets/BlankLayout-ad940a6c.js b/addons/dashboard/dist/assets/BlankLayout-7c60dfeb.js similarity index 70% rename from addons/dashboard/dist/assets/BlankLayout-ad940a6c.js rename to addons/dashboard/dist/assets/BlankLayout-7c60dfeb.js index 4fe8b4dab..6331fd692 100644 --- a/addons/dashboard/dist/assets/BlankLayout-ad940a6c.js +++ b/addons/dashboard/dist/assets/BlankLayout-7c60dfeb.js @@ -1 +1 @@ -import{x as e,o as a,c as t,w as o,a as s,B as n,X as r,T as c}from"./index-ffe5e9b0.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; +import{x as e,o as a,c as t,w as o,a as s,B as n,X as r,T as c}from"./index-7c8bc001.js";const f=e({__name:"BlankLayout",setup(p){return(u,_)=>(a(),t(c,null,{default:o(()=>[s(n(r))]),_:1}))}});export{f as default}; diff --git a/addons/dashboard/dist/assets/ColorPage-22c7f5ba.js b/addons/dashboard/dist/assets/ColorPage-fe404e65.js similarity index 83% rename from addons/dashboard/dist/assets/ColorPage-22c7f5ba.js rename to addons/dashboard/dist/assets/ColorPage-fe404e65.js index d7c868358..140f89e18 100644 --- a/addons/dashboard/dist/assets/ColorPage-22c7f5ba.js +++ b/addons/dashboard/dist/assets/ColorPage-fe404e65.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,_ as b,e as x,t as y}from"./index-ffe5e9b0.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js";import{_}from"./UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js";import{x as p,D as a,o as r,s,a as e,w as t,f as o,V as i,F as n,u as g,c as h,_ as b,e as x,t as y}from"./index-7c8bc001.js";const P=p({__name:"ColorPage",setup(C){const c=a({title:"Colors Page"}),d=a([{title:"Utilities",disabled:!1,href:"#"},{title:"Colors",disabled:!0,href:"#"}]),u=a(["primary","lightprimary","secondary","lightsecondary","info","success","accent","warning","error","darkText","lightText","borderLight","inputBorder","containerBg"]);return(V,k)=>(r(),s(n,null,[e(m,{title:c.value.title,breadcrumbs:d.value},null,8,["title","breadcrumbs"]),e(i,null,{default:t(()=>[e(o,{cols:"12",md:"12"},{default:t(()=>[e(_,{title:"Color Palette"},{default:t(()=>[e(i,null,{default:t(()=>[(r(!0),s(n,null,g(u.value,(l,f)=>(r(),h(o,{md:"3",cols:"12",key:f},{default:t(()=>[e(b,{rounded:"md",class:"align-center justify-center d-flex",height:"100",width:"100%",color:l},{default:t(()=>[x("class: "+y(l),1)]),_:2},1032,["color"])]),_:2},1024))),128))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{P as default}; diff --git a/addons/dashboard/dist/assets/ConfigPage-cbc9d918.js b/addons/dashboard/dist/assets/ConfigPage-3d69363d.js similarity index 95% rename from addons/dashboard/dist/assets/ConfigPage-cbc9d918.js rename to addons/dashboard/dist/assets/ConfigPage-3d69363d.js index 7b0f2df05..c094e52af 100644 --- a/addons/dashboard/dist/assets/ConfigPage-cbc9d918.js +++ b/addons/dashboard/dist/assets/ConfigPage-3d69363d.js @@ -1 +1 @@ -import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as g,V as C,d as U,e as x,t as c,a8 as B,R as _,c as r,a9 as w,O as v,b as V,aa as N,i as F,q as P,k as f,A as S}from"./index-ffe5e9b0.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){_.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){_.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},$=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,g(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,g(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":O=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{$ as default}; +import{_ as h}from"./UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js";import{o as a,s as t,a as n,w as i,f as b,F as d,u as g,V as C,d as U,e as x,t as c,a8 as B,R as _,c as r,a9 as w,O as v,b as V,aa as N,i as F,q as P,k as f,A as S}from"./index-7c8bc001.js";const D={name:"ConfigPage",components:{UiParentCard:h},data(){return{config_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:""}},mounted(){this.getConfig()},methods:{getConfig(){_.get("/api/configs").then(o=>{this.config_data=o.data.data,console.log(this.config_data)})},updateConfig(){_.post("/api/configs",this.config_data).then(o=>{console.log(this.config_data),o.data.status==="success"?(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="success"):(this.save_message=o.data.message,this.save_message_snack=!0,this.save_message_success="error")})}}},$=Object.assign(D,{setup(o){return(s,m)=>(a(),t(d,null,[n(C,null,{default:i(()=>[n(b,{cols:"12",md:"12"},{default:i(()=>[(a(!0),t(d,null,g(s.config_data.data,u=>(a(),r(h,{key:u.name,title:u.name,style:{"margin-bottom":"16px"}},{default:i(()=>[(a(!0),t(d,null,g(u.body,e=>(a(),t(d,null,[e.config_type==="item"?(a(),t(d,{key:0},[e.val_type==="bool"?(a(),r(w,{key:0,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,color:"primary",inset:""},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="string"?(a(),r(v,{key:1,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="int"?(a(),r(v,{key:2,modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,label:e.name,hint:e.description,style:{"margin-bottom":"8px"},variant:"outlined"},null,8,["modelValue","onUpdate:modelValue","label","hint"])):e.val_type==="list"?(a(),t(d,{key:3},[V("span",null,c(e.name),1),n(N,{modelValue:e.value,"onUpdate:modelValue":l=>e.value=l,chips:"",clearable:"",label:"请添加",multiple:"","prepend-icon":"mdi-tag-multiple-outline"},{selection:i(({attrs:l,item:p,select:k,selected:y})=>[n(F,P(l,{"model-value":y,closable:"",onClick:k,"onClick:close":O=>s.remove(p)}),{default:i(()=>[V("strong",null,c(p),1)]),_:2},1040,["model-value","onClick","onClick:close"])]),_:2},1032,["modelValue","onUpdate:modelValue"])],64)):f("",!0)],64)):e.config_type==="divider"?(a(),r(S,{key:1,style:{"margin-top":"8px","margin-bottom":"8px"}})):f("",!0)],64))),256))]),_:2},1032,["title"]))),128))]),_:1})]),_:1}),n(U,{icon:"mdi-content-save",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary",onClick:s.updateConfig},null,8,["onClick"]),n(B,{timeout:2e3,elevation:"24",color:s.save_message_success,modelValue:s.save_message_snack,"onUpdate:modelValue":m[0]||(m[0]=u=>s.save_message_snack=u)},{default:i(()=>[x(c(s.save_message),1)]),_:1},8,["color","modelValue"])],64))}});export{$ as default}; diff --git a/addons/dashboard/dist/assets/ConsolePage-57b1b1f5.js b/addons/dashboard/dist/assets/ConsolePage-ae9ea987.js similarity index 99% rename from addons/dashboard/dist/assets/ConsolePage-57b1b1f5.js rename to addons/dashboard/dist/assets/ConsolePage-ae9ea987.js index 3f47e23e6..3e9b43928 100644 --- a/addons/dashboard/dist/assets/ConsolePage-57b1b1f5.js +++ b/addons/dashboard/dist/assets/ConsolePage-ae9ea987.js @@ -1,9 +1,12 @@ -import{o as me,s as Se,b as Ce}from"./index-ffe5e9b0.js";var fe={exports:{}};(function(ee,ge){(function(ae,ne){ee.exports=ne()})(self,()=>(()=>{var ae={4567:function(I,r,a){var l=this&&this.__decorate||function(i,o,c,v){var m,h=arguments.length,g=h<3?o:v===null?v=Object.getOwnPropertyDescriptor(o,c):v;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(i,o,c,v);else for(var b=i.length-1;b>=0;b--)(m=i[b])&&(g=(h<3?m(g):h>3?m(o,c,g):m(o,c))||g);return h>3&&g&&Object.defineProperty(o,c,g),g},u=this&&this.__param||function(i,o){return function(c,v){o(c,v,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.AccessibilityManager=void 0;const n=a(9042),d=a(6114),f=a(9924),p=a(844),_=a(5596),e=a(4725),s=a(3656);let t=r.AccessibilityManager=class extends p.Disposable{constructor(i,o){super(),this._terminal=i,this._renderService=o,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce="",this._accessibilityContainer=document.createElement("div"),this._accessibilityContainer.classList.add("xterm-accessibility"),this._rowContainer=document.createElement("div"),this._rowContainer.setAttribute("role","list"),this._rowContainer.classList.add("xterm-accessibility-tree"),this._rowElements=[];for(let c=0;cthis._handleBoundaryFocus(c,0),this._bottomBoundaryFocusListener=c=>this._handleBoundaryFocus(c,1),this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions(),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=document.createElement("div"),this._liveRegion.classList.add("live-region"),this._liveRegion.setAttribute("aria-live","assertive"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this.register(new f.TimeBasedDebouncer(this._renderRows.bind(this))),!this._terminal.element)throw new Error("Cannot enable accessibility before Terminal.open");this._terminal.element.insertAdjacentElement("afterbegin",this._accessibilityContainer),this.register(this._terminal.onResize(c=>this._handleResize(c.rows))),this.register(this._terminal.onRender(c=>this._refreshRows(c.start,c.end))),this.register(this._terminal.onScroll(()=>this._refreshRows())),this.register(this._terminal.onA11yChar(c=>this._handleChar(c))),this.register(this._terminal.onLineFeed(()=>this._handleChar(` +import{o as me,s as Se,b as Ce}from"./index-7c8bc001.js";var fe={exports:{}};(function(_e,ge){(function(oe,re){_e.exports=re()})(self,()=>(()=>{var oe={4567:function(I,r,a){var l=this&&this.__decorate||function(i,o,c,v){var m,h=arguments.length,g=h<3?o:v===null?v=Object.getOwnPropertyDescriptor(o,c):v;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(i,o,c,v);else for(var b=i.length-1;b>=0;b--)(m=i[b])&&(g=(h<3?m(g):h>3?m(o,c,g):m(o,c))||g);return h>3&&g&&Object.defineProperty(o,c,g),g},u=this&&this.__param||function(i,o){return function(c,v){o(c,v,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.AccessibilityManager=void 0;const n=a(9042),d=a(6114),f=a(9924),p=a(844),_=a(5596),e=a(4725),s=a(3656);let t=r.AccessibilityManager=class extends p.Disposable{constructor(i,o){super(),this._terminal=i,this._renderService=o,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce="",this._accessibilityContainer=document.createElement("div"),this._accessibilityContainer.classList.add("xterm-accessibility"),this._rowContainer=document.createElement("div"),this._rowContainer.setAttribute("role","list"),this._rowContainer.classList.add("xterm-accessibility-tree"),this._rowElements=[];for(let c=0;cthis._handleBoundaryFocus(c,0),this._bottomBoundaryFocusListener=c=>this._handleBoundaryFocus(c,1),this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions(),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=document.createElement("div"),this._liveRegion.classList.add("live-region"),this._liveRegion.setAttribute("aria-live","assertive"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this.register(new f.TimeBasedDebouncer(this._renderRows.bind(this))),!this._terminal.element)throw new Error("Cannot enable accessibility before Terminal.open");this._terminal.element.insertAdjacentElement("afterbegin",this._accessibilityContainer),this.register(this._terminal.onResize(c=>this._handleResize(c.rows))),this.register(this._terminal.onRender(c=>this._refreshRows(c.start,c.end))),this.register(this._terminal.onScroll(()=>this._refreshRows())),this.register(this._terminal.onA11yChar(c=>this._handleChar(c))),this.register(this._terminal.onLineFeed(()=>this._handleChar(` `))),this.register(this._terminal.onA11yTab(c=>this._handleTab(c))),this.register(this._terminal.onKey(c=>this._handleKey(c.key))),this.register(this._terminal.onBlur(()=>this._clearLiveRegion())),this.register(this._renderService.onDimensionsChange(()=>this._refreshRowsDimensions())),this._screenDprMonitor=new _.ScreenDprMonitor(window),this.register(this._screenDprMonitor),this._screenDprMonitor.setListener(()=>this._refreshRowsDimensions()),this.register((0,s.addDisposableDomListener)(window,"resize",()=>this._refreshRowsDimensions())),this._refreshRows(),this.register((0,p.toDisposable)(()=>{this._accessibilityContainer.remove(),this._rowElements.length=0}))}_handleTab(i){for(let o=0;o0?this._charsToConsume.shift()!==i&&(this._charsToAnnounce+=i):this._charsToAnnounce+=i,i===` `&&(this._liveRegionLineCount++,this._liveRegionLineCount===21&&(this._liveRegion.textContent+=n.tooMuchOutput)),d.isMac&&this._liveRegion.textContent&&this._liveRegion.textContent.length>0&&!this._liveRegion.parentNode&&setTimeout(()=>{this._accessibilityContainer.appendChild(this._liveRegion)},0))}_clearLiveRegion(){this._liveRegion.textContent="",this._liveRegionLineCount=0,d.isMac&&this._liveRegion.remove()}_handleKey(i){this._clearLiveRegion(),/\p{Control}/u.test(i)||this._charsToConsume.push(i)}_refreshRows(i,o){this._liveRegionDebouncer.refresh(i,o,this._terminal.rows)}_renderRows(i,o){const c=this._terminal.buffer,v=c.lines.length.toString();for(let m=i;m<=o;m++){const h=c.translateBufferLineToString(c.ydisp+m,!0),g=(c.ydisp+m+1).toString(),b=this._rowElements[m];b&&(h.length===0?b.innerText=" ":b.textContent=h,b.setAttribute("aria-posinset",g),b.setAttribute("aria-setsize",v))}this._announceCharacters()}_announceCharacters(){this._charsToAnnounce.length!==0&&(this._liveRegion.textContent+=this._charsToAnnounce,this._charsToAnnounce="")}_handleBoundaryFocus(i,o){const c=i.target,v=this._rowElements[o===0?1:this._rowElements.length-2];if(c.getAttribute("aria-posinset")===(o===0?"1":`${this._terminal.buffer.lines.length}`)||i.relatedTarget!==v)return;let m,h;if(o===0?(m=c,h=this._rowElements.pop(),this._rowContainer.removeChild(h)):(m=this._rowElements.shift(),h=c,this._rowContainer.removeChild(m)),m.removeEventListener("focus",this._topBoundaryFocusListener),h.removeEventListener("focus",this._bottomBoundaryFocusListener),o===0){const g=this._createAccessibilityTreeNode();this._rowElements.unshift(g),this._rowContainer.insertAdjacentElement("afterbegin",g)}else{const g=this._createAccessibilityTreeNode();this._rowElements.push(g),this._rowContainer.appendChild(g)}this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._terminal.scrollLines(o===0?-1:1),this._rowElements[o===0?1:this._rowElements.length-2].focus(),i.preventDefault(),i.stopImmediatePropagation()}_handleResize(i){this._rowElements[this._rowElements.length-1].removeEventListener("focus",this._bottomBoundaryFocusListener);for(let o=this._rowContainer.children.length;oi;)this._rowContainer.removeChild(this._rowElements.pop());this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions()}_createAccessibilityTreeNode(){const i=document.createElement("div");return i.setAttribute("role","listitem"),i.tabIndex=-1,this._refreshRowDimensions(i),i}_refreshRowsDimensions(){if(this._renderService.dimensions.css.cell.height){this._accessibilityContainer.style.width=`${this._renderService.dimensions.css.canvas.width}px`,this._rowElements.length!==this._terminal.rows&&this._handleResize(this._terminal.rows);for(let i=0;i{function a(d){return d.replace(/\r?\n/g,"\r")}function l(d,f){return f?"\x1B[200~"+d+"\x1B[201~":d}function u(d,f,p,_){d=l(d=a(d),p.decPrivateModes.bracketedPasteMode&&_.rawOptions.ignoreBracketedPasteMode!==!0),p.triggerDataEvent(d,!0),f.value=""}function n(d,f,p){const _=p.getBoundingClientRect(),e=d.clientX-_.left-10,s=d.clientY-_.top-10;f.style.width="20px",f.style.height="20px",f.style.left=`${e}px`,f.style.top=`${s}px`,f.style.zIndex="1000",f.focus()}Object.defineProperty(r,"__esModule",{value:!0}),r.rightClickHandler=r.moveTextAreaUnderMouseCursor=r.paste=r.handlePasteEvent=r.copyHandler=r.bracketTextForPaste=r.prepareTextForTerminal=void 0,r.prepareTextForTerminal=a,r.bracketTextForPaste=l,r.copyHandler=function(d,f){d.clipboardData&&d.clipboardData.setData("text/plain",f.selectionText),d.preventDefault()},r.handlePasteEvent=function(d,f,p,_){d.stopPropagation(),d.clipboardData&&u(d.clipboardData.getData("text/plain"),f,p,_)},r.paste=u,r.moveTextAreaUnderMouseCursor=n,r.rightClickHandler=function(d,f,p,_,e){n(d,f,p),e&&_.rightClickSelect(d),f.value=_.selectionText,f.select()}},7239:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ColorContrastCache=void 0;const l=a(1505);r.ColorContrastCache=class{constructor(){this._color=new l.TwoKeyMap,this._css=new l.TwoKeyMap}setCss(u,n,d){this._css.set(u,n,d)}getCss(u,n){return this._css.get(u,n)}setColor(u,n,d){this._color.set(u,n,d)}getColor(u,n){return this._color.get(u,n)}clear(){this._color.clear(),this._css.clear()}}},3656:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.addDisposableDomListener=void 0,r.addDisposableDomListener=function(a,l,u,n){a.addEventListener(l,u,n);let d=!1;return{dispose:()=>{d||(d=!0,a.removeEventListener(l,u,n))}}}},6465:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.Linkifier2=void 0;const n=a(3656),d=a(8460),f=a(844),p=a(2585);let _=r.Linkifier2=class extends f.Disposable{get currentLink(){return this._currentLink}constructor(e){super(),this._bufferService=e,this._linkProviders=[],this._linkCacheDisposables=[],this._isMouseOut=!0,this._wasResized=!1,this._activeLine=-1,this._onShowLinkUnderline=this.register(new d.EventEmitter),this.onShowLinkUnderline=this._onShowLinkUnderline.event,this._onHideLinkUnderline=this.register(new d.EventEmitter),this.onHideLinkUnderline=this._onHideLinkUnderline.event,this.register((0,f.getDisposeArrayDisposable)(this._linkCacheDisposables)),this.register((0,f.toDisposable)(()=>{this._lastMouseEvent=void 0})),this.register(this._bufferService.onResize(()=>{this._clearCurrentLink(),this._wasResized=!0}))}registerLinkProvider(e){return this._linkProviders.push(e),{dispose:()=>{const s=this._linkProviders.indexOf(e);s!==-1&&this._linkProviders.splice(s,1)}}}attachToDom(e,s,t){this._element=e,this._mouseService=s,this._renderService=t,this.register((0,n.addDisposableDomListener)(this._element,"mouseleave",()=>{this._isMouseOut=!0,this._clearCurrentLink()})),this.register((0,n.addDisposableDomListener)(this._element,"mousemove",this._handleMouseMove.bind(this))),this.register((0,n.addDisposableDomListener)(this._element,"mousedown",this._handleMouseDown.bind(this))),this.register((0,n.addDisposableDomListener)(this._element,"mouseup",this._handleMouseUp.bind(this)))}_handleMouseMove(e){if(this._lastMouseEvent=e,!this._element||!this._mouseService)return;const s=this._positionFromMouseEvent(e,this._element,this._mouseService);if(!s)return;this._isMouseOut=!1;const t=e.composedPath();for(let i=0;i{c==null||c.forEach(v=>{v.link.dispose&&v.link.dispose()})}),this._activeProviderReplies=new Map,this._activeLine=e.y);let o=!1;for(const[c,v]of this._linkProviders.entries())s?!((i=this._activeProviderReplies)===null||i===void 0)&&i.get(c)&&(o=this._checkLinkProviderResult(c,e,o)):v.provideLinks(e.y,m=>{var h,g;if(this._isMouseOut)return;const b=m==null?void 0:m.map(L=>({link:L}));(h=this._activeProviderReplies)===null||h===void 0||h.set(c,b),o=this._checkLinkProviderResult(c,e,o),((g=this._activeProviderReplies)===null||g===void 0?void 0:g.size)===this._linkProviders.length&&this._removeIntersectingLinks(e.y,this._activeProviderReplies)})}_removeIntersectingLinks(e,s){const t=new Set;for(let i=0;ie?this._bufferService.cols:v.link.range.end.x;for(let g=m;g<=h;g++){if(t.has(g)){o.splice(c--,1);break}t.add(g)}}}}_checkLinkProviderResult(e,s,t){var i;if(!this._activeProviderReplies)return t;const o=this._activeProviderReplies.get(e);let c=!1;for(let v=0;vthis._linkAtPosition(m.link,s));v&&(t=!0,this._handleNewLink(v))}if(this._activeProviderReplies.size===this._linkProviders.length&&!t)for(let v=0;vthis._linkAtPosition(h.link,s));if(m){t=!0,this._handleNewLink(m);break}}return t}_handleMouseDown(){this._mouseDownLink=this._currentLink}_handleMouseUp(e){if(!this._element||!this._mouseService||!this._currentLink)return;const s=this._positionFromMouseEvent(e,this._element,this._mouseService);s&&this._mouseDownLink===this._currentLink&&this._linkAtPosition(this._currentLink.link,s)&&this._currentLink.link.activate(e,this._currentLink.link.text)}_clearCurrentLink(e,s){this._element&&this._currentLink&&this._lastMouseEvent&&(!e||!s||this._currentLink.link.range.start.y>=e&&this._currentLink.link.range.end.y<=s)&&(this._linkLeave(this._element,this._currentLink.link,this._lastMouseEvent),this._currentLink=void 0,(0,f.disposeArray)(this._linkCacheDisposables))}_handleNewLink(e){if(!this._element||!this._lastMouseEvent||!this._mouseService)return;const s=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);s&&this._linkAtPosition(e.link,s)&&(this._currentLink=e,this._currentLink.state={decorations:{underline:e.link.decorations===void 0||e.link.decorations.underline,pointerCursor:e.link.decorations===void 0||e.link.decorations.pointerCursor},isHovered:!0},this._linkHover(this._element,e.link,this._lastMouseEvent),e.link.decorations={},Object.defineProperties(e.link.decorations,{pointerCursor:{get:()=>{var t,i;return(i=(t=this._currentLink)===null||t===void 0?void 0:t.state)===null||i===void 0?void 0:i.decorations.pointerCursor},set:t=>{var i,o;!((i=this._currentLink)===null||i===void 0)&&i.state&&this._currentLink.state.decorations.pointerCursor!==t&&(this._currentLink.state.decorations.pointerCursor=t,this._currentLink.state.isHovered&&((o=this._element)===null||o===void 0||o.classList.toggle("xterm-cursor-pointer",t)))}},underline:{get:()=>{var t,i;return(i=(t=this._currentLink)===null||t===void 0?void 0:t.state)===null||i===void 0?void 0:i.decorations.underline},set:t=>{var i,o,c;!((i=this._currentLink)===null||i===void 0)&&i.state&&((c=(o=this._currentLink)===null||o===void 0?void 0:o.state)===null||c===void 0?void 0:c.decorations.underline)!==t&&(this._currentLink.state.decorations.underline=t,this._currentLink.state.isHovered&&this._fireUnderlineEvent(e.link,t))}}}),this._renderService&&this._linkCacheDisposables.push(this._renderService.onRenderedViewportChange(t=>{if(!this._currentLink)return;const i=t.start===0?0:t.start+1+this._bufferService.buffer.ydisp,o=this._bufferService.buffer.ydisp+1+t.end;if(this._currentLink.link.range.start.y>=i&&this._currentLink.link.range.end.y<=o&&(this._clearCurrentLink(i,o),this._lastMouseEvent&&this._element)){const c=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);c&&this._askForLink(c,!1)}})))}_linkHover(e,s,t){var i;!((i=this._currentLink)===null||i===void 0)&&i.state&&(this._currentLink.state.isHovered=!0,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(s,!0),this._currentLink.state.decorations.pointerCursor&&e.classList.add("xterm-cursor-pointer")),s.hover&&s.hover(t,s.text)}_fireUnderlineEvent(e,s){const t=e.range,i=this._bufferService.buffer.ydisp,o=this._createLinkUnderlineEvent(t.start.x-1,t.start.y-i-1,t.end.x,t.end.y-i-1,void 0);(s?this._onShowLinkUnderline:this._onHideLinkUnderline).fire(o)}_linkLeave(e,s,t){var i;!((i=this._currentLink)===null||i===void 0)&&i.state&&(this._currentLink.state.isHovered=!1,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(s,!1),this._currentLink.state.decorations.pointerCursor&&e.classList.remove("xterm-cursor-pointer")),s.leave&&s.leave(t,s.text)}_linkAtPosition(e,s){const t=e.range.start.y*this._bufferService.cols+e.range.start.x,i=e.range.end.y*this._bufferService.cols+e.range.end.x,o=s.y*this._bufferService.cols+s.x;return t<=o&&o<=i}_positionFromMouseEvent(e,s,t){const i=t.getCoords(e,s,this._bufferService.cols,this._bufferService.rows);if(i)return{x:i[0],y:i[1]+this._bufferService.buffer.ydisp}}_createLinkUnderlineEvent(e,s,t,i,o){return{x1:e,y1:s,x2:t,y2:i,cols:this._bufferService.cols,fg:o}}};r.Linkifier2=_=l([u(0,p.IBufferService)],_)},9042:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.tooMuchOutput=r.promptLabel=void 0,r.promptLabel="Terminal input",r.tooMuchOutput="Too much output to announce, navigate to rows manually to read"},3730:function(I,r,a){var l=this&&this.__decorate||function(_,e,s,t){var i,o=arguments.length,c=o<3?e:t===null?t=Object.getOwnPropertyDescriptor(e,s):t;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(_,e,s,t);else for(var v=_.length-1;v>=0;v--)(i=_[v])&&(c=(o<3?i(c):o>3?i(e,s,c):i(e,s))||c);return o>3&&c&&Object.defineProperty(e,s,c),c},u=this&&this.__param||function(_,e){return function(s,t){e(s,t,_)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OscLinkProvider=void 0;const n=a(511),d=a(2585);let f=r.OscLinkProvider=class{constructor(_,e,s){this._bufferService=_,this._optionsService=e,this._oscLinkService=s}provideLinks(_,e){var s;const t=this._bufferService.buffer.lines.get(_-1);if(!t)return void e(void 0);const i=[],o=this._optionsService.rawOptions.linkHandler,c=new n.CellData,v=t.getTrimmedLength();let m=-1,h=-1,g=!1;for(let b=0;bo?o.activate(x,T,y):p(0,T),hover:(x,T)=>{var O;return(O=o==null?void 0:o.hover)===null||O===void 0?void 0:O.call(o,x,T,y)},leave:(x,T)=>{var O;return(O=o==null?void 0:o.leave)===null||O===void 0?void 0:O.call(o,x,T,y)}})}g=!1,c.hasExtendedAttrs()&&c.extended.urlId?(h=b,m=c.extended.urlId):(h=-1,m=-1)}}e(i)}};function p(_,e){if(confirm(`Do you want to navigate to ${e}? -WARNING: This link could potentially be dangerous`)){const s=window.open();if(s){try{s.opener=null}catch{}s.location.href=e}else console.warn("Opening link blocked as opener could not be cleared")}}r.OscLinkProvider=f=l([u(0,d.IBufferService),u(1,d.IOptionsService),u(2,d.IOscLinkService)],f)},6193:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.RenderDebouncer=void 0,r.RenderDebouncer=class{constructor(a,l){this._parentWindow=a,this._renderCallback=l,this._refreshCallbacks=[]}dispose(){this._animationFrame&&(this._parentWindow.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}addRefreshCallback(a){return this._refreshCallbacks.push(a),this._animationFrame||(this._animationFrame=this._parentWindow.requestAnimationFrame(()=>this._innerRefresh())),this._animationFrame}refresh(a,l,u){this._rowCount=u,a=a!==void 0?a:0,l=l!==void 0?l:this._rowCount-1,this._rowStart=this._rowStart!==void 0?Math.min(this._rowStart,a):a,this._rowEnd=this._rowEnd!==void 0?Math.max(this._rowEnd,l):l,this._animationFrame||(this._animationFrame=this._parentWindow.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._animationFrame=void 0,this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return void this._runRefreshCallbacks();const a=Math.max(this._rowStart,0),l=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(a,l),this._runRefreshCallbacks()}_runRefreshCallbacks(){for(const a of this._refreshCallbacks)a(0);this._refreshCallbacks=[]}}},5596:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ScreenDprMonitor=void 0;const l=a(844);class u extends l.Disposable{constructor(d){super(),this._parentWindow=d,this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this.register((0,l.toDisposable)(()=>{this.clearListener()}))}setListener(d){this._listener&&this.clearListener(),this._listener=d,this._outerListener=()=>{this._listener&&(this._listener(this._parentWindow.devicePixelRatio,this._currentDevicePixelRatio),this._updateDpr())},this._updateDpr()}_updateDpr(){var d;this._outerListener&&((d=this._resolutionMediaMatchList)===null||d===void 0||d.removeListener(this._outerListener),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._resolutionMediaMatchList=this._parentWindow.matchMedia(`screen and (resolution: ${this._parentWindow.devicePixelRatio}dppx)`),this._resolutionMediaMatchList.addListener(this._outerListener))}clearListener(){this._resolutionMediaMatchList&&this._listener&&this._outerListener&&(this._resolutionMediaMatchList.removeListener(this._outerListener),this._resolutionMediaMatchList=void 0,this._listener=void 0,this._outerListener=void 0)}}r.ScreenDprMonitor=u},3236:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Terminal=void 0;const l=a(3614),u=a(3656),n=a(6465),d=a(9042),f=a(3730),p=a(1680),_=a(3107),e=a(5744),s=a(2950),t=a(1296),i=a(428),o=a(4269),c=a(5114),v=a(8934),m=a(3230),h=a(9312),g=a(4725),b=a(6731),L=a(8055),y=a(8969),k=a(8460),x=a(844),T=a(6114),O=a(8437),M=a(2584),C=a(7399),w=a(5941),E=a(9074),D=a(2585),P=a(5435),H=a(4567),U=typeof window<"u"?window.document:null;class W extends y.CoreTerminal{get onFocus(){return this._onFocus.event}get onBlur(){return this._onBlur.event}get onA11yChar(){return this._onA11yCharEmitter.event}get onA11yTab(){return this._onA11yTabEmitter.event}get onWillOpen(){return this._onWillOpen.event}constructor(S={}){super(S),this.browser=T,this._keyDownHandled=!1,this._keyDownSeen=!1,this._keyPressHandled=!1,this._unprocessedDeadKey=!1,this._accessibilityManager=this.register(new x.MutableDisposable),this._onCursorMove=this.register(new k.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onKey=this.register(new k.EventEmitter),this.onKey=this._onKey.event,this._onRender=this.register(new k.EventEmitter),this.onRender=this._onRender.event,this._onSelectionChange=this.register(new k.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onTitleChange=this.register(new k.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onBell=this.register(new k.EventEmitter),this.onBell=this._onBell.event,this._onFocus=this.register(new k.EventEmitter),this._onBlur=this.register(new k.EventEmitter),this._onA11yCharEmitter=this.register(new k.EventEmitter),this._onA11yTabEmitter=this.register(new k.EventEmitter),this._onWillOpen=this.register(new k.EventEmitter),this._setup(),this.linkifier2=this.register(this._instantiationService.createInstance(n.Linkifier2)),this.linkifier2.registerLinkProvider(this._instantiationService.createInstance(f.OscLinkProvider)),this._decorationService=this._instantiationService.createInstance(E.DecorationService),this._instantiationService.setService(D.IDecorationService,this._decorationService),this.register(this._inputHandler.onRequestBell(()=>this._onBell.fire())),this.register(this._inputHandler.onRequestRefreshRows((R,B)=>this.refresh(R,B))),this.register(this._inputHandler.onRequestSendFocus(()=>this._reportFocus())),this.register(this._inputHandler.onRequestReset(()=>this.reset())),this.register(this._inputHandler.onRequestWindowsOptionsReport(R=>this._reportWindowsOptions(R))),this.register(this._inputHandler.onColor(R=>this._handleColorEvent(R))),this.register((0,k.forwardEvent)(this._inputHandler.onCursorMove,this._onCursorMove)),this.register((0,k.forwardEvent)(this._inputHandler.onTitleChange,this._onTitleChange)),this.register((0,k.forwardEvent)(this._inputHandler.onA11yChar,this._onA11yCharEmitter)),this.register((0,k.forwardEvent)(this._inputHandler.onA11yTab,this._onA11yTabEmitter)),this.register(this._bufferService.onResize(R=>this._afterResize(R.cols,R.rows))),this.register((0,x.toDisposable)(()=>{var R,B;this._customKeyEventHandler=void 0,(B=(R=this.element)===null||R===void 0?void 0:R.parentNode)===null||B===void 0||B.removeChild(this.element)}))}_handleColorEvent(S){if(this._themeService)for(const R of S){let B,A="";switch(R.index){case 256:B="foreground",A="10";break;case 257:B="background",A="11";break;case 258:B="cursor",A="12";break;default:B="ansi",A="4;"+R.index}switch(R.type){case 0:const N=L.color.toColorRGB(B==="ansi"?this._themeService.colors.ansi[R.index]:this._themeService.colors[B]);this.coreService.triggerDataEvent(`${M.C0.ESC}]${A};${(0,w.toRgbString)(N)}${M.C1_ESCAPED.ST}`);break;case 1:if(B==="ansi")this._themeService.modifyColors(F=>F.ansi[R.index]=L.rgba.toColor(...R.color));else{const F=B;this._themeService.modifyColors(j=>j[F]=L.rgba.toColor(...R.color))}break;case 2:this._themeService.restoreColor(R.index)}}}_setup(){super._setup(),this._customKeyEventHandler=void 0}get buffer(){return this.buffers.active}focus(){this.textarea&&this.textarea.focus({preventScroll:!0})}_handleScreenReaderModeOptionChange(S){S?!this._accessibilityManager.value&&this._renderService&&(this._accessibilityManager.value=this._instantiationService.createInstance(H.AccessibilityManager,this)):this._accessibilityManager.clear()}_handleTextAreaFocus(S){this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(M.C0.ESC+"[I"),this.updateCursorStyle(S),this.element.classList.add("focus"),this._showCursor(),this._onFocus.fire()}blur(){var S;return(S=this.textarea)===null||S===void 0?void 0:S.blur()}_handleTextAreaBlur(){this.textarea.value="",this.refresh(this.buffer.y,this.buffer.y),this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(M.C0.ESC+"[O"),this.element.classList.remove("focus"),this._onBlur.fire()}_syncTextArea(){if(!this.textarea||!this.buffer.isCursorInViewport||this._compositionHelper.isComposing||!this._renderService)return;const S=this.buffer.ybase+this.buffer.y,R=this.buffer.lines.get(S);if(!R)return;const B=Math.min(this.buffer.x,this.cols-1),A=this._renderService.dimensions.css.cell.height,N=R.getWidth(B),F=this._renderService.dimensions.css.cell.width*N,j=this.buffer.y*this._renderService.dimensions.css.cell.height,q=B*this._renderService.dimensions.css.cell.width;this.textarea.style.left=q+"px",this.textarea.style.top=j+"px",this.textarea.style.width=F+"px",this.textarea.style.height=A+"px",this.textarea.style.lineHeight=A+"px",this.textarea.style.zIndex="-5"}_initGlobal(){this._bindKeys(),this.register((0,u.addDisposableDomListener)(this.element,"copy",R=>{this.hasSelection()&&(0,l.copyHandler)(R,this._selectionService)}));const S=R=>(0,l.handlePasteEvent)(R,this.textarea,this.coreService,this.optionsService);this.register((0,u.addDisposableDomListener)(this.textarea,"paste",S)),this.register((0,u.addDisposableDomListener)(this.element,"paste",S)),T.isFirefox?this.register((0,u.addDisposableDomListener)(this.element,"mousedown",R=>{R.button===2&&(0,l.rightClickHandler)(R,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})):this.register((0,u.addDisposableDomListener)(this.element,"contextmenu",R=>{(0,l.rightClickHandler)(R,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})),T.isLinux&&this.register((0,u.addDisposableDomListener)(this.element,"auxclick",R=>{R.button===1&&(0,l.moveTextAreaUnderMouseCursor)(R,this.textarea,this.screenElement)}))}_bindKeys(){this.register((0,u.addDisposableDomListener)(this.textarea,"keyup",S=>this._keyUp(S),!0)),this.register((0,u.addDisposableDomListener)(this.textarea,"keydown",S=>this._keyDown(S),!0)),this.register((0,u.addDisposableDomListener)(this.textarea,"keypress",S=>this._keyPress(S),!0)),this.register((0,u.addDisposableDomListener)(this.textarea,"compositionstart",()=>this._compositionHelper.compositionstart())),this.register((0,u.addDisposableDomListener)(this.textarea,"compositionupdate",S=>this._compositionHelper.compositionupdate(S))),this.register((0,u.addDisposableDomListener)(this.textarea,"compositionend",()=>this._compositionHelper.compositionend())),this.register((0,u.addDisposableDomListener)(this.textarea,"input",S=>this._inputEvent(S),!0)),this.register(this.onRender(()=>this._compositionHelper.updateCompositionElements()))}open(S){var R;if(!S)throw new Error("Terminal requires a parent element.");S.isConnected||this._logService.debug("Terminal.open was called on an element that was not attached to the DOM"),this._document=S.ownerDocument,this.element=this._document.createElement("div"),this.element.dir="ltr",this.element.classList.add("terminal"),this.element.classList.add("xterm"),S.appendChild(this.element);const B=U.createDocumentFragment();this._viewportElement=U.createElement("div"),this._viewportElement.classList.add("xterm-viewport"),B.appendChild(this._viewportElement),this._viewportScrollArea=U.createElement("div"),this._viewportScrollArea.classList.add("xterm-scroll-area"),this._viewportElement.appendChild(this._viewportScrollArea),this.screenElement=U.createElement("div"),this.screenElement.classList.add("xterm-screen"),this._helperContainer=U.createElement("div"),this._helperContainer.classList.add("xterm-helpers"),this.screenElement.appendChild(this._helperContainer),B.appendChild(this.screenElement),this.textarea=U.createElement("textarea"),this.textarea.classList.add("xterm-helper-textarea"),this.textarea.setAttribute("aria-label",d.promptLabel),T.isChromeOS||this.textarea.setAttribute("aria-multiline","false"),this.textarea.setAttribute("autocorrect","off"),this.textarea.setAttribute("autocapitalize","off"),this.textarea.setAttribute("spellcheck","false"),this.textarea.tabIndex=0,this._coreBrowserService=this._instantiationService.createInstance(c.CoreBrowserService,this.textarea,(R=this._document.defaultView)!==null&&R!==void 0?R:window),this._instantiationService.setService(g.ICoreBrowserService,this._coreBrowserService),this.register((0,u.addDisposableDomListener)(this.textarea,"focus",A=>this._handleTextAreaFocus(A))),this.register((0,u.addDisposableDomListener)(this.textarea,"blur",()=>this._handleTextAreaBlur())),this._helperContainer.appendChild(this.textarea),this._charSizeService=this._instantiationService.createInstance(i.CharSizeService,this._document,this._helperContainer),this._instantiationService.setService(g.ICharSizeService,this._charSizeService),this._themeService=this._instantiationService.createInstance(b.ThemeService),this._instantiationService.setService(g.IThemeService,this._themeService),this._characterJoinerService=this._instantiationService.createInstance(o.CharacterJoinerService),this._instantiationService.setService(g.ICharacterJoinerService,this._characterJoinerService),this._renderService=this.register(this._instantiationService.createInstance(m.RenderService,this.rows,this.screenElement)),this._instantiationService.setService(g.IRenderService,this._renderService),this.register(this._renderService.onRenderedViewportChange(A=>this._onRender.fire(A))),this.onResize(A=>this._renderService.resize(A.cols,A.rows)),this._compositionView=U.createElement("div"),this._compositionView.classList.add("composition-view"),this._compositionHelper=this._instantiationService.createInstance(s.CompositionHelper,this.textarea,this._compositionView),this._helperContainer.appendChild(this._compositionView),this.element.appendChild(B);try{this._onWillOpen.fire(this.element)}catch{}this._renderService.hasRenderer()||this._renderService.setRenderer(this._createRenderer()),this._mouseService=this._instantiationService.createInstance(v.MouseService),this._instantiationService.setService(g.IMouseService,this._mouseService),this.viewport=this._instantiationService.createInstance(p.Viewport,this._viewportElement,this._viewportScrollArea),this.viewport.onRequestScrollLines(A=>this.scrollLines(A.amount,A.suppressScrollEvent,1)),this.register(this._inputHandler.onRequestSyncScrollBar(()=>this.viewport.syncScrollArea())),this.register(this.viewport),this.register(this.onCursorMove(()=>{this._renderService.handleCursorMove(),this._syncTextArea()})),this.register(this.onResize(()=>this._renderService.handleResize(this.cols,this.rows))),this.register(this.onBlur(()=>this._renderService.handleBlur())),this.register(this.onFocus(()=>this._renderService.handleFocus())),this.register(this._renderService.onDimensionsChange(()=>this.viewport.syncScrollArea())),this._selectionService=this.register(this._instantiationService.createInstance(h.SelectionService,this.element,this.screenElement,this.linkifier2)),this._instantiationService.setService(g.ISelectionService,this._selectionService),this.register(this._selectionService.onRequestScrollLines(A=>this.scrollLines(A.amount,A.suppressScrollEvent))),this.register(this._selectionService.onSelectionChange(()=>this._onSelectionChange.fire())),this.register(this._selectionService.onRequestRedraw(A=>this._renderService.handleSelectionChanged(A.start,A.end,A.columnSelectMode))),this.register(this._selectionService.onLinuxMouseSelection(A=>{this.textarea.value=A,this.textarea.focus(),this.textarea.select()})),this.register(this._onScroll.event(A=>{this.viewport.syncScrollArea(),this._selectionService.refresh()})),this.register((0,u.addDisposableDomListener)(this._viewportElement,"scroll",()=>this._selectionService.refresh())),this.linkifier2.attachToDom(this.screenElement,this._mouseService,this._renderService),this.register(this._instantiationService.createInstance(_.BufferDecorationRenderer,this.screenElement)),this.register((0,u.addDisposableDomListener)(this.element,"mousedown",A=>this._selectionService.handleMouseDown(A))),this.coreMouseService.areMouseEventsActive?(this._selectionService.disable(),this.element.classList.add("enable-mouse-events")):this._selectionService.enable(),this.options.screenReaderMode&&(this._accessibilityManager.value=this._instantiationService.createInstance(H.AccessibilityManager,this)),this.register(this.optionsService.onSpecificOptionChange("screenReaderMode",A=>this._handleScreenReaderModeOptionChange(A))),this.options.overviewRulerWidth&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(e.OverviewRulerRenderer,this._viewportElement,this.screenElement))),this.optionsService.onSpecificOptionChange("overviewRulerWidth",A=>{!this._overviewRulerRenderer&&A&&this._viewportElement&&this.screenElement&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(e.OverviewRulerRenderer,this._viewportElement,this.screenElement)))}),this._charSizeService.measure(),this.refresh(0,this.rows-1),this._initGlobal(),this.bindMouse()}_createRenderer(){return this._instantiationService.createInstance(t.DomRenderer,this.element,this.screenElement,this._viewportElement,this.linkifier2)}bindMouse(){const S=this,R=this.element;function B(F){const j=S._mouseService.getMouseReportCoords(F,S.screenElement);if(!j)return!1;let q,V;switch(F.overrideType||F.type){case"mousemove":V=32,F.buttons===void 0?(q=3,F.button!==void 0&&(q=F.button<3?F.button:3)):q=1&F.buttons?0:4&F.buttons?1:2&F.buttons?2:3;break;case"mouseup":V=0,q=F.button<3?F.button:3;break;case"mousedown":V=1,q=F.button<3?F.button:3;break;case"wheel":if(S.viewport.getLinesScrolled(F)===0)return!1;V=F.deltaY<0?0:1,q=4;break;default:return!1}return!(V===void 0||q===void 0||q>4)&&S.coreMouseService.triggerMouseEvent({col:j.col,row:j.row,x:j.x,y:j.y,button:q,action:V,ctrl:F.ctrlKey,alt:F.altKey,shift:F.shiftKey})}const A={mouseup:null,wheel:null,mousedrag:null,mousemove:null},N={mouseup:F=>(B(F),F.buttons||(this._document.removeEventListener("mouseup",A.mouseup),A.mousedrag&&this._document.removeEventListener("mousemove",A.mousedrag)),this.cancel(F)),wheel:F=>(B(F),this.cancel(F,!0)),mousedrag:F=>{F.buttons&&B(F)},mousemove:F=>{F.buttons||B(F)}};this.register(this.coreMouseService.onProtocolChange(F=>{F?(this.optionsService.rawOptions.logLevel==="debug"&&this._logService.debug("Binding to mouse events:",this.coreMouseService.explainEvents(F)),this.element.classList.add("enable-mouse-events"),this._selectionService.disable()):(this._logService.debug("Unbinding from mouse events."),this.element.classList.remove("enable-mouse-events"),this._selectionService.enable()),8&F?A.mousemove||(R.addEventListener("mousemove",N.mousemove),A.mousemove=N.mousemove):(R.removeEventListener("mousemove",A.mousemove),A.mousemove=null),16&F?A.wheel||(R.addEventListener("wheel",N.wheel,{passive:!1}),A.wheel=N.wheel):(R.removeEventListener("wheel",A.wheel),A.wheel=null),2&F?A.mouseup||(R.addEventListener("mouseup",N.mouseup),A.mouseup=N.mouseup):(this._document.removeEventListener("mouseup",A.mouseup),R.removeEventListener("mouseup",A.mouseup),A.mouseup=null),4&F?A.mousedrag||(A.mousedrag=N.mousedrag):(this._document.removeEventListener("mousemove",A.mousedrag),A.mousedrag=null)})),this.coreMouseService.activeProtocol=this.coreMouseService.activeProtocol,this.register((0,u.addDisposableDomListener)(R,"mousedown",F=>{if(F.preventDefault(),this.focus(),this.coreMouseService.areMouseEventsActive&&!this._selectionService.shouldForceSelection(F))return B(F),A.mouseup&&this._document.addEventListener("mouseup",A.mouseup),A.mousedrag&&this._document.addEventListener("mousemove",A.mousedrag),this.cancel(F)})),this.register((0,u.addDisposableDomListener)(R,"wheel",F=>{if(!A.wheel){if(!this.buffer.hasScrollback){const j=this.viewport.getLinesScrolled(F);if(j===0)return;const q=M.C0.ESC+(this.coreService.decPrivateModes.applicationCursorKeys?"O":"[")+(F.deltaY<0?"A":"B");let V="";for(let Q=0;Q{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchStart(F),this.cancel(F)},{passive:!0})),this.register((0,u.addDisposableDomListener)(R,"touchmove",F=>{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchMove(F)?void 0:this.cancel(F)},{passive:!1}))}refresh(S,R){var B;(B=this._renderService)===null||B===void 0||B.refreshRows(S,R)}updateCursorStyle(S){var R;!((R=this._selectionService)===null||R===void 0)&&R.shouldColumnSelect(S)?this.element.classList.add("column-select"):this.element.classList.remove("column-select")}_showCursor(){this.coreService.isCursorInitialized||(this.coreService.isCursorInitialized=!0,this.refresh(this.buffer.y,this.buffer.y))}scrollLines(S,R,B=0){var A;B===1?(super.scrollLines(S,R,B),this.refresh(0,this.rows-1)):(A=this.viewport)===null||A===void 0||A.scrollLines(S)}paste(S){(0,l.paste)(S,this.textarea,this.coreService,this.optionsService)}attachCustomKeyEventHandler(S){this._customKeyEventHandler=S}registerLinkProvider(S){return this.linkifier2.registerLinkProvider(S)}registerCharacterJoiner(S){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");const R=this._characterJoinerService.register(S);return this.refresh(0,this.rows-1),R}deregisterCharacterJoiner(S){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");this._characterJoinerService.deregister(S)&&this.refresh(0,this.rows-1)}get markers(){return this.buffer.markers}registerMarker(S){return this.buffer.addMarker(this.buffer.ybase+this.buffer.y+S)}registerDecoration(S){return this._decorationService.registerDecoration(S)}hasSelection(){return!!this._selectionService&&this._selectionService.hasSelection}select(S,R,B){this._selectionService.setSelection(S,R,B)}getSelection(){return this._selectionService?this._selectionService.selectionText:""}getSelectionPosition(){if(this._selectionService&&this._selectionService.hasSelection)return{start:{x:this._selectionService.selectionStart[0],y:this._selectionService.selectionStart[1]},end:{x:this._selectionService.selectionEnd[0],y:this._selectionService.selectionEnd[1]}}}clearSelection(){var S;(S=this._selectionService)===null||S===void 0||S.clearSelection()}selectAll(){var S;(S=this._selectionService)===null||S===void 0||S.selectAll()}selectLines(S,R){var B;(B=this._selectionService)===null||B===void 0||B.selectLines(S,R)}_keyDown(S){if(this._keyDownHandled=!1,this._keyDownSeen=!0,this._customKeyEventHandler&&this._customKeyEventHandler(S)===!1)return!1;const R=this.browser.isMac&&this.options.macOptionIsMeta&&S.altKey;if(!R&&!this._compositionHelper.keydown(S))return this.options.scrollOnUserInput&&this.buffer.ybase!==this.buffer.ydisp&&this.scrollToBottom(),!1;R||S.key!=="Dead"&&S.key!=="AltGraph"||(this._unprocessedDeadKey=!0);const B=(0,C.evaluateKeyboardEvent)(S,this.coreService.decPrivateModes.applicationCursorKeys,this.browser.isMac,this.options.macOptionIsMeta);if(this.updateCursorStyle(S),B.type===3||B.type===2){const A=this.rows-1;return this.scrollLines(B.type===2?-A:A),this.cancel(S,!0)}return B.type===1&&this.selectAll(),!!this._isThirdLevelShift(this.browser,S)||(B.cancel&&this.cancel(S,!0),!B.key||!!(S.key&&!S.ctrlKey&&!S.altKey&&!S.metaKey&&S.key.length===1&&S.key.charCodeAt(0)>=65&&S.key.charCodeAt(0)<=90)||(this._unprocessedDeadKey?(this._unprocessedDeadKey=!1,!0):(B.key!==M.C0.ETX&&B.key!==M.C0.CR||(this.textarea.value=""),this._onKey.fire({key:B.key,domEvent:S}),this._showCursor(),this.coreService.triggerDataEvent(B.key,!0),!this.optionsService.rawOptions.screenReaderMode||S.altKey||S.ctrlKey?this.cancel(S,!0):void(this._keyDownHandled=!0))))}_isThirdLevelShift(S,R){const B=S.isMac&&!this.options.macOptionIsMeta&&R.altKey&&!R.ctrlKey&&!R.metaKey||S.isWindows&&R.altKey&&R.ctrlKey&&!R.metaKey||S.isWindows&&R.getModifierState("AltGraph");return R.type==="keypress"?B:B&&(!R.keyCode||R.keyCode>47)}_keyUp(S){this._keyDownSeen=!1,this._customKeyEventHandler&&this._customKeyEventHandler(S)===!1||(function(R){return R.keyCode===16||R.keyCode===17||R.keyCode===18}(S)||this.focus(),this.updateCursorStyle(S),this._keyPressHandled=!1)}_keyPress(S){let R;if(this._keyPressHandled=!1,this._keyDownHandled||this._customKeyEventHandler&&this._customKeyEventHandler(S)===!1)return!1;if(this.cancel(S),S.charCode)R=S.charCode;else if(S.which===null||S.which===void 0)R=S.keyCode;else{if(S.which===0||S.charCode===0)return!1;R=S.which}return!(!R||(S.altKey||S.ctrlKey||S.metaKey)&&!this._isThirdLevelShift(this.browser,S)||(R=String.fromCharCode(R),this._onKey.fire({key:R,domEvent:S}),this._showCursor(),this.coreService.triggerDataEvent(R,!0),this._keyPressHandled=!0,this._unprocessedDeadKey=!1,0))}_inputEvent(S){if(S.data&&S.inputType==="insertText"&&(!S.composed||!this._keyDownSeen)&&!this.optionsService.rawOptions.screenReaderMode){if(this._keyPressHandled)return!1;this._unprocessedDeadKey=!1;const R=S.data;return this.coreService.triggerDataEvent(R,!0),this.cancel(S),!0}return!1}resize(S,R){S!==this.cols||R!==this.rows?super.resize(S,R):this._charSizeService&&!this._charSizeService.hasValidSize&&this._charSizeService.measure()}_afterResize(S,R){var B,A;(B=this._charSizeService)===null||B===void 0||B.measure(),(A=this.viewport)===null||A===void 0||A.syncScrollArea(!0)}clear(){var S;if(this.buffer.ybase!==0||this.buffer.y!==0){this.buffer.clearAllMarkers(),this.buffer.lines.set(0,this.buffer.lines.get(this.buffer.ybase+this.buffer.y)),this.buffer.lines.length=1,this.buffer.ydisp=0,this.buffer.ybase=0,this.buffer.y=0;for(let R=1;R{Object.defineProperty(r,"__esModule",{value:!0}),r.TimeBasedDebouncer=void 0,r.TimeBasedDebouncer=class{constructor(a,l=1e3){this._renderCallback=a,this._debounceThresholdMS=l,this._lastRefreshMs=0,this._additionalRefreshRequested=!1}dispose(){this._refreshTimeoutID&&clearTimeout(this._refreshTimeoutID)}refresh(a,l,u){this._rowCount=u,a=a!==void 0?a:0,l=l!==void 0?l:this._rowCount-1,this._rowStart=this._rowStart!==void 0?Math.min(this._rowStart,a):a,this._rowEnd=this._rowEnd!==void 0?Math.max(this._rowEnd,l):l;const n=Date.now();if(n-this._lastRefreshMs>=this._debounceThresholdMS)this._lastRefreshMs=n,this._innerRefresh();else if(!this._additionalRefreshRequested){const d=n-this._lastRefreshMs,f=this._debounceThresholdMS-d;this._additionalRefreshRequested=!0,this._refreshTimeoutID=window.setTimeout(()=>{this._lastRefreshMs=Date.now(),this._innerRefresh(),this._additionalRefreshRequested=!1,this._refreshTimeoutID=void 0},f)}}_innerRefresh(){if(this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return;const a=Math.max(this._rowStart,0),l=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(a,l)}}},1680:function(I,r,a){var l=this&&this.__decorate||function(s,t,i,o){var c,v=arguments.length,m=v<3?t:o===null?o=Object.getOwnPropertyDescriptor(t,i):o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")m=Reflect.decorate(s,t,i,o);else for(var h=s.length-1;h>=0;h--)(c=s[h])&&(m=(v<3?c(m):v>3?c(t,i,m):c(t,i))||m);return v>3&&m&&Object.defineProperty(t,i,m),m},u=this&&this.__param||function(s,t){return function(i,o){t(i,o,s)}};Object.defineProperty(r,"__esModule",{value:!0}),r.Viewport=void 0;const n=a(3656),d=a(4725),f=a(8460),p=a(844),_=a(2585);let e=r.Viewport=class extends p.Disposable{constructor(s,t,i,o,c,v,m,h){super(),this._viewportElement=s,this._scrollArea=t,this._bufferService=i,this._optionsService=o,this._charSizeService=c,this._renderService=v,this._coreBrowserService=m,this.scrollBarWidth=0,this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._wheelPartialScroll=0,this._refreshAnimationFrame=null,this._ignoreNextScrollEvent=!1,this._smoothScrollState={startTime:0,origin:-1,target:-1},this._onRequestScrollLines=this.register(new f.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this.scrollBarWidth=this._viewportElement.offsetWidth-this._scrollArea.offsetWidth||15,this.register((0,n.addDisposableDomListener)(this._viewportElement,"scroll",this._handleScroll.bind(this))),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate(g=>this._activeBuffer=g.activeBuffer)),this._renderDimensions=this._renderService.dimensions,this.register(this._renderService.onDimensionsChange(g=>this._renderDimensions=g)),this._handleThemeChange(h.colors),this.register(h.onChangeColors(g=>this._handleThemeChange(g))),this.register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.syncScrollArea())),setTimeout(()=>this.syncScrollArea())}_handleThemeChange(s){this._viewportElement.style.backgroundColor=s.background.css}reset(){this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._coreBrowserService.window.requestAnimationFrame(()=>this.syncScrollArea())}_refresh(s){if(s)return this._innerRefresh(),void(this._refreshAnimationFrame!==null&&this._coreBrowserService.window.cancelAnimationFrame(this._refreshAnimationFrame));this._refreshAnimationFrame===null&&(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._charSizeService.height>0){this._currentRowHeight=this._renderService.dimensions.device.cell.height/this._coreBrowserService.dpr,this._currentDeviceCellHeight=this._renderService.dimensions.device.cell.height,this._lastRecordedViewportHeight=this._viewportElement.offsetHeight;const t=Math.round(this._currentRowHeight*this._lastRecordedBufferLength)+(this._lastRecordedViewportHeight-this._renderService.dimensions.css.canvas.height);this._lastRecordedBufferHeight!==t&&(this._lastRecordedBufferHeight=t,this._scrollArea.style.height=this._lastRecordedBufferHeight+"px")}const s=this._bufferService.buffer.ydisp*this._currentRowHeight;this._viewportElement.scrollTop!==s&&(this._ignoreNextScrollEvent=!0,this._viewportElement.scrollTop=s),this._refreshAnimationFrame=null}syncScrollArea(s=!1){if(this._lastRecordedBufferLength!==this._bufferService.buffer.lines.length)return this._lastRecordedBufferLength=this._bufferService.buffer.lines.length,void this._refresh(s);this._lastRecordedViewportHeight===this._renderService.dimensions.css.canvas.height&&this._lastScrollTop===this._activeBuffer.ydisp*this._currentRowHeight&&this._renderDimensions.device.cell.height===this._currentDeviceCellHeight||this._refresh(s)}_handleScroll(s){if(this._lastScrollTop=this._viewportElement.scrollTop,!this._viewportElement.offsetParent)return;if(this._ignoreNextScrollEvent)return this._ignoreNextScrollEvent=!1,void this._onRequestScrollLines.fire({amount:0,suppressScrollEvent:!0});const t=Math.round(this._lastScrollTop/this._currentRowHeight)-this._bufferService.buffer.ydisp;this._onRequestScrollLines.fire({amount:t,suppressScrollEvent:!0})}_smoothScroll(){if(this._isDisposed||this._smoothScrollState.origin===-1||this._smoothScrollState.target===-1)return;const s=this._smoothScrollPercent();this._viewportElement.scrollTop=this._smoothScrollState.origin+Math.round(s*(this._smoothScrollState.target-this._smoothScrollState.origin)),s<1?this._coreBrowserService.window.requestAnimationFrame(()=>this._smoothScroll()):this._clearSmoothScrollState()}_smoothScrollPercent(){return this._optionsService.rawOptions.smoothScrollDuration&&this._smoothScrollState.startTime?Math.max(Math.min((Date.now()-this._smoothScrollState.startTime)/this._optionsService.rawOptions.smoothScrollDuration,1),0):1}_clearSmoothScrollState(){this._smoothScrollState.startTime=0,this._smoothScrollState.origin=-1,this._smoothScrollState.target=-1}_bubbleScroll(s,t){const i=this._viewportElement.scrollTop+this._lastRecordedViewportHeight;return!(t<0&&this._viewportElement.scrollTop!==0||t>0&&i0&&(o=y),c=""}}return{bufferElements:v,cursorElement:o}}getLinesScrolled(s){if(s.deltaY===0||s.shiftKey)return 0;let t=this._applyScrollModifier(s.deltaY,s);return s.deltaMode===WheelEvent.DOM_DELTA_PIXEL?(t/=this._currentRowHeight+0,this._wheelPartialScroll+=t,t=Math.floor(Math.abs(this._wheelPartialScroll))*(this._wheelPartialScroll>0?1:-1),this._wheelPartialScroll%=1):s.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(t*=this._bufferService.rows),t}_applyScrollModifier(s,t){const i=this._optionsService.rawOptions.fastScrollModifier;return i==="alt"&&t.altKey||i==="ctrl"&&t.ctrlKey||i==="shift"&&t.shiftKey?s*this._optionsService.rawOptions.fastScrollSensitivity*this._optionsService.rawOptions.scrollSensitivity:s*this._optionsService.rawOptions.scrollSensitivity}handleTouchStart(s){this._lastTouchY=s.touches[0].pageY}handleTouchMove(s){const t=this._lastTouchY-s.touches[0].pageY;return this._lastTouchY=s.touches[0].pageY,t!==0&&(this._viewportElement.scrollTop+=t,this._bubbleScroll(s,t))}};r.Viewport=e=l([u(2,_.IBufferService),u(3,_.IOptionsService),u(4,d.ICharSizeService),u(5,d.IRenderService),u(6,d.ICoreBrowserService),u(7,d.IThemeService)],e)},3107:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.BufferDecorationRenderer=void 0;const n=a(3656),d=a(4725),f=a(844),p=a(2585);let _=r.BufferDecorationRenderer=class extends f.Disposable{constructor(e,s,t,i){super(),this._screenElement=e,this._bufferService=s,this._decorationService=t,this._renderService=i,this._decorationElements=new Map,this._altBufferIsActive=!1,this._dimensionsChanged=!1,this._container=document.createElement("div"),this._container.classList.add("xterm-decoration-container"),this._screenElement.appendChild(this._container),this.register(this._renderService.onRenderedViewportChange(()=>this._doRefreshDecorations())),this.register(this._renderService.onDimensionsChange(()=>{this._dimensionsChanged=!0,this._queueRefresh()})),this.register((0,n.addDisposableDomListener)(window,"resize",()=>this._queueRefresh())),this.register(this._bufferService.buffers.onBufferActivate(()=>{this._altBufferIsActive=this._bufferService.buffer===this._bufferService.buffers.alt})),this.register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh())),this.register(this._decorationService.onDecorationRemoved(o=>this._removeDecoration(o))),this.register((0,f.toDisposable)(()=>{this._container.remove(),this._decorationElements.clear()}))}_queueRefresh(){this._animationFrame===void 0&&(this._animationFrame=this._renderService.addRefreshCallback(()=>{this._doRefreshDecorations(),this._animationFrame=void 0}))}_doRefreshDecorations(){for(const e of this._decorationService.decorations)this._renderDecoration(e);this._dimensionsChanged=!1}_renderDecoration(e){this._refreshStyle(e),this._dimensionsChanged&&this._refreshXPosition(e)}_createElement(e){var s,t;const i=document.createElement("div");i.classList.add("xterm-decoration"),i.classList.toggle("xterm-decoration-top-layer",((s=e==null?void 0:e.options)===null||s===void 0?void 0:s.layer)==="top"),i.style.width=`${Math.round((e.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,i.style.height=(e.options.height||1)*this._renderService.dimensions.css.cell.height+"px",i.style.top=(e.marker.line-this._bufferService.buffers.active.ydisp)*this._renderService.dimensions.css.cell.height+"px",i.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`;const o=(t=e.options.x)!==null&&t!==void 0?t:0;return o&&o>this._bufferService.cols&&(i.style.display="none"),this._refreshXPosition(e,i),i}_refreshStyle(e){const s=e.marker.line-this._bufferService.buffers.active.ydisp;if(s<0||s>=this._bufferService.rows)e.element&&(e.element.style.display="none",e.onRenderEmitter.fire(e.element));else{let t=this._decorationElements.get(e);t||(t=this._createElement(e),e.element=t,this._decorationElements.set(e,t),this._container.appendChild(t),e.onDispose(()=>{this._decorationElements.delete(e),t.remove()})),t.style.top=s*this._renderService.dimensions.css.cell.height+"px",t.style.display=this._altBufferIsActive?"none":"block",e.onRenderEmitter.fire(t)}}_refreshXPosition(e,s=e.element){var t;if(!s)return;const i=(t=e.options.x)!==null&&t!==void 0?t:0;(e.options.anchor||"left")==="right"?s.style.right=i?i*this._renderService.dimensions.css.cell.width+"px":"":s.style.left=i?i*this._renderService.dimensions.css.cell.width+"px":""}_removeDecoration(e){var s;(s=this._decorationElements.get(e))===null||s===void 0||s.remove(),this._decorationElements.delete(e),e.dispose()}};r.BufferDecorationRenderer=_=l([u(1,p.IBufferService),u(2,p.IDecorationService),u(3,d.IRenderService)],_)},5871:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ColorZoneStore=void 0,r.ColorZoneStore=class{constructor(){this._zones=[],this._zonePool=[],this._zonePoolIndex=0,this._linePadding={full:0,left:0,center:0,right:0}}get zones(){return this._zonePool.length=Math.min(this._zonePool.length,this._zones.length),this._zones}clear(){this._zones.length=0,this._zonePoolIndex=0}addDecoration(a){if(a.options.overviewRulerOptions){for(const l of this._zones)if(l.color===a.options.overviewRulerOptions.color&&l.position===a.options.overviewRulerOptions.position){if(this._lineIntersectsZone(l,a.marker.line))return;if(this._lineAdjacentToZone(l,a.marker.line,a.options.overviewRulerOptions.position))return void this._addLineToZone(l,a.marker.line)}if(this._zonePoolIndex=a.startBufferLine&&l<=a.endBufferLine}_lineAdjacentToZone(a,l,u){return l>=a.startBufferLine-this._linePadding[u||"full"]&&l<=a.endBufferLine+this._linePadding[u||"full"]}_addLineToZone(a,l){a.startBufferLine=Math.min(a.startBufferLine,l),a.endBufferLine=Math.max(a.endBufferLine,l)}}},5744:function(I,r,a){var l=this&&this.__decorate||function(o,c,v,m){var h,g=arguments.length,b=g<3?c:m===null?m=Object.getOwnPropertyDescriptor(c,v):m;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")b=Reflect.decorate(o,c,v,m);else for(var L=o.length-1;L>=0;L--)(h=o[L])&&(b=(g<3?h(b):g>3?h(c,v,b):h(c,v))||b);return g>3&&b&&Object.defineProperty(c,v,b),b},u=this&&this.__param||function(o,c){return function(v,m){c(v,m,o)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OverviewRulerRenderer=void 0;const n=a(5871),d=a(3656),f=a(4725),p=a(844),_=a(2585),e={full:0,left:0,center:0,right:0},s={full:0,left:0,center:0,right:0},t={full:0,left:0,center:0,right:0};let i=r.OverviewRulerRenderer=class extends p.Disposable{get _width(){return this._optionsService.options.overviewRulerWidth||0}constructor(o,c,v,m,h,g,b){var L;super(),this._viewportElement=o,this._screenElement=c,this._bufferService=v,this._decorationService=m,this._renderService=h,this._optionsService=g,this._coreBrowseService=b,this._colorZoneStore=new n.ColorZoneStore,this._shouldUpdateDimensions=!0,this._shouldUpdateAnchor=!0,this._lastKnownBufferLength=0,this._canvas=document.createElement("canvas"),this._canvas.classList.add("xterm-decoration-overview-ruler"),this._refreshCanvasDimensions(),(L=this._viewportElement.parentElement)===null||L===void 0||L.insertBefore(this._canvas,this._viewportElement);const y=this._canvas.getContext("2d");if(!y)throw new Error("Ctx cannot be null");this._ctx=y,this._registerDecorationListeners(),this._registerBufferChangeListeners(),this._registerDimensionChangeListeners(),this.register((0,p.toDisposable)(()=>{var k;(k=this._canvas)===null||k===void 0||k.remove()}))}_registerDecorationListeners(){this.register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh(void 0,!0))),this.register(this._decorationService.onDecorationRemoved(()=>this._queueRefresh(void 0,!0)))}_registerBufferChangeListeners(){this.register(this._renderService.onRenderedViewportChange(()=>this._queueRefresh())),this.register(this._bufferService.buffers.onBufferActivate(()=>{this._canvas.style.display=this._bufferService.buffer===this._bufferService.buffers.alt?"none":"block"})),this.register(this._bufferService.onScroll(()=>{this._lastKnownBufferLength!==this._bufferService.buffers.normal.lines.length&&(this._refreshDrawHeightConstants(),this._refreshColorZonePadding())}))}_registerDimensionChangeListeners(){this.register(this._renderService.onRender(()=>{this._containerHeight&&this._containerHeight===this._screenElement.clientHeight||(this._queueRefresh(!0),this._containerHeight=this._screenElement.clientHeight)})),this.register(this._optionsService.onSpecificOptionChange("overviewRulerWidth",()=>this._queueRefresh(!0))),this.register((0,d.addDisposableDomListener)(this._coreBrowseService.window,"resize",()=>this._queueRefresh(!0))),this._queueRefresh(!0)}_refreshDrawConstants(){const o=Math.floor(this._canvas.width/3),c=Math.ceil(this._canvas.width/3);s.full=this._canvas.width,s.left=o,s.center=c,s.right=o,this._refreshDrawHeightConstants(),t.full=0,t.left=0,t.center=s.left,t.right=s.left+s.center}_refreshDrawHeightConstants(){e.full=Math.round(2*this._coreBrowseService.dpr);const o=this._canvas.height/this._bufferService.buffer.lines.length,c=Math.round(Math.max(Math.min(o,12),6)*this._coreBrowseService.dpr);e.left=c,e.center=c,e.right=c}_refreshColorZonePadding(){this._colorZoneStore.setPadding({full:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.full),left:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.left),center:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.center),right:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.right)}),this._lastKnownBufferLength=this._bufferService.buffers.normal.lines.length}_refreshCanvasDimensions(){this._canvas.style.width=`${this._width}px`,this._canvas.width=Math.round(this._width*this._coreBrowseService.dpr),this._canvas.style.height=`${this._screenElement.clientHeight}px`,this._canvas.height=Math.round(this._screenElement.clientHeight*this._coreBrowseService.dpr),this._refreshDrawConstants(),this._refreshColorZonePadding()}_refreshDecorations(){this._shouldUpdateDimensions&&this._refreshCanvasDimensions(),this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height),this._colorZoneStore.clear();for(const c of this._decorationService.decorations)this._colorZoneStore.addDecoration(c);this._ctx.lineWidth=1;const o=this._colorZoneStore.zones;for(const c of o)c.position!=="full"&&this._renderColorZone(c);for(const c of o)c.position==="full"&&this._renderColorZone(c);this._shouldUpdateDimensions=!1,this._shouldUpdateAnchor=!1}_renderColorZone(o){this._ctx.fillStyle=o.color,this._ctx.fillRect(t[o.position||"full"],Math.round((this._canvas.height-1)*(o.startBufferLine/this._bufferService.buffers.active.lines.length)-e[o.position||"full"]/2),s[o.position||"full"],Math.round((this._canvas.height-1)*((o.endBufferLine-o.startBufferLine)/this._bufferService.buffers.active.lines.length)+e[o.position||"full"]))}_queueRefresh(o,c){this._shouldUpdateDimensions=o||this._shouldUpdateDimensions,this._shouldUpdateAnchor=c||this._shouldUpdateAnchor,this._animationFrame===void 0&&(this._animationFrame=this._coreBrowseService.window.requestAnimationFrame(()=>{this._refreshDecorations(),this._animationFrame=void 0}))}};r.OverviewRulerRenderer=i=l([u(2,_.IBufferService),u(3,_.IDecorationService),u(4,f.IRenderService),u(5,_.IOptionsService),u(6,f.ICoreBrowserService)],i)},2950:function(I,r,a){var l=this&&this.__decorate||function(_,e,s,t){var i,o=arguments.length,c=o<3?e:t===null?t=Object.getOwnPropertyDescriptor(e,s):t;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(_,e,s,t);else for(var v=_.length-1;v>=0;v--)(i=_[v])&&(c=(o<3?i(c):o>3?i(e,s,c):i(e,s))||c);return o>3&&c&&Object.defineProperty(e,s,c),c},u=this&&this.__param||function(_,e){return function(s,t){e(s,t,_)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CompositionHelper=void 0;const n=a(4725),d=a(2585),f=a(2584);let p=r.CompositionHelper=class{get isComposing(){return this._isComposing}constructor(_,e,s,t,i,o){this._textarea=_,this._compositionView=e,this._bufferService=s,this._optionsService=t,this._coreService=i,this._renderService=o,this._isComposing=!1,this._isSendingComposition=!1,this._compositionPosition={start:0,end:0},this._dataAlreadySent=""}compositionstart(){this._isComposing=!0,this._compositionPosition.start=this._textarea.value.length,this._compositionView.textContent="",this._dataAlreadySent="",this._compositionView.classList.add("active")}compositionupdate(_){this._compositionView.textContent=_.data,this.updateCompositionElements(),setTimeout(()=>{this._compositionPosition.end=this._textarea.value.length},0)}compositionend(){this._finalizeComposition(!0)}keydown(_){if(this._isComposing||this._isSendingComposition){if(_.keyCode===229||_.keyCode===16||_.keyCode===17||_.keyCode===18)return!1;this._finalizeComposition(!1)}return _.keyCode!==229||(this._handleAnyTextareaChanges(),!1)}_finalizeComposition(_){if(this._compositionView.classList.remove("active"),this._isComposing=!1,_){const e={start:this._compositionPosition.start,end:this._compositionPosition.end};this._isSendingComposition=!0,setTimeout(()=>{if(this._isSendingComposition){let s;this._isSendingComposition=!1,e.start+=this._dataAlreadySent.length,s=this._isComposing?this._textarea.value.substring(e.start,e.end):this._textarea.value.substring(e.start),s.length>0&&this._coreService.triggerDataEvent(s,!0)}},0)}else{this._isSendingComposition=!1;const e=this._textarea.value.substring(this._compositionPosition.start,this._compositionPosition.end);this._coreService.triggerDataEvent(e,!0)}}_handleAnyTextareaChanges(){const _=this._textarea.value;setTimeout(()=>{if(!this._isComposing){const e=this._textarea.value,s=e.replace(_,"");this._dataAlreadySent=s,e.length>_.length?this._coreService.triggerDataEvent(s,!0):e.length<_.length?this._coreService.triggerDataEvent(`${f.C0.DEL}`,!0):e.length===_.length&&e!==_&&this._coreService.triggerDataEvent(e,!0)}},0)}updateCompositionElements(_){if(this._isComposing){if(this._bufferService.buffer.isCursorInViewport){const e=Math.min(this._bufferService.buffer.x,this._bufferService.cols-1),s=this._renderService.dimensions.css.cell.height,t=this._bufferService.buffer.y*this._renderService.dimensions.css.cell.height,i=e*this._renderService.dimensions.css.cell.width;this._compositionView.style.left=i+"px",this._compositionView.style.top=t+"px",this._compositionView.style.height=s+"px",this._compositionView.style.lineHeight=s+"px",this._compositionView.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._compositionView.style.fontSize=this._optionsService.rawOptions.fontSize+"px";const o=this._compositionView.getBoundingClientRect();this._textarea.style.left=i+"px",this._textarea.style.top=t+"px",this._textarea.style.width=Math.max(o.width,1)+"px",this._textarea.style.height=Math.max(o.height,1)+"px",this._textarea.style.lineHeight=o.height+"px"}_||setTimeout(()=>this.updateCompositionElements(!0),0)}}};r.CompositionHelper=p=l([u(2,d.IBufferService),u(3,d.IOptionsService),u(4,d.ICoreService),u(5,n.IRenderService)],p)},9806:(I,r)=>{function a(l,u,n){const d=n.getBoundingClientRect(),f=l.getComputedStyle(n),p=parseInt(f.getPropertyValue("padding-left")),_=parseInt(f.getPropertyValue("padding-top"));return[u.clientX-d.left-p,u.clientY-d.top-_]}Object.defineProperty(r,"__esModule",{value:!0}),r.getCoords=r.getCoordsRelativeToElement=void 0,r.getCoordsRelativeToElement=a,r.getCoords=function(l,u,n,d,f,p,_,e,s){if(!p)return;const t=a(l,u,n);return t?(t[0]=Math.ceil((t[0]+(s?_/2:0))/_),t[1]=Math.ceil(t[1]/e),t[0]=Math.min(Math.max(t[0],1),d+(s?1:0)),t[1]=Math.min(Math.max(t[1],1),f),t):void 0}},9504:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.moveToCellSequence=void 0;const l=a(2584);function u(e,s,t,i){const o=e-n(e,t),c=s-n(s,t),v=Math.abs(o-c)-function(m,h,g){let b=0;const L=m-n(m,g),y=h-n(h,g);for(let k=0;k=0&&es?"A":"B"}function f(e,s,t,i,o,c){let v=e,m=s,h="";for(;v!==t||m!==i;)v+=o?1:-1,o&&v>c.cols-1?(h+=c.buffer.translateBufferLineToString(m,!1,e,v),v=0,e=0,m++):!o&&v<0&&(h+=c.buffer.translateBufferLineToString(m,!1,0,e+1),v=c.cols-1,e=v,m--);return h+c.buffer.translateBufferLineToString(m,!1,e,v)}function p(e,s){const t=s?"O":"[";return l.C0.ESC+t+e}function _(e,s){e=Math.floor(e);let t="";for(let i=0;i0?L-n(L,y):g;const T=L,O=function(M,C,w,E,D,P){let H;return H=u(w,E,D,P).length>0?E-n(E,D):C,M=w&&He?"D":"C",_(Math.abs(o-e),p(v,i));v=c>s?"D":"C";const m=Math.abs(c-s);return _(function(h,g){return g.cols-h}(c>s?e:o,t)+(m-1)*t.cols+1+((c>s?o:e)-1),p(v,i))}},1296:function(I,r,a){var l=this&&this.__decorate||function(y,k,x,T){var O,M=arguments.length,C=M<3?k:T===null?T=Object.getOwnPropertyDescriptor(k,x):T;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")C=Reflect.decorate(y,k,x,T);else for(var w=y.length-1;w>=0;w--)(O=y[w])&&(C=(M<3?O(C):M>3?O(k,x,C):O(k,x))||C);return M>3&&C&&Object.defineProperty(k,x,C),C},u=this&&this.__param||function(y,k){return function(x,T){k(x,T,y)}};Object.defineProperty(r,"__esModule",{value:!0}),r.DomRenderer=void 0;const n=a(3787),d=a(2550),f=a(2223),p=a(6171),_=a(4725),e=a(8055),s=a(8460),t=a(844),i=a(2585),o="xterm-dom-renderer-owner-",c="xterm-rows",v="xterm-fg-",m="xterm-bg-",h="xterm-focus",g="xterm-selection";let b=1,L=r.DomRenderer=class extends t.Disposable{constructor(y,k,x,T,O,M,C,w,E,D){super(),this._element=y,this._screenElement=k,this._viewportElement=x,this._linkifier2=T,this._charSizeService=M,this._optionsService=C,this._bufferService=w,this._coreBrowserService=E,this._themeService=D,this._terminalClass=b++,this._rowElements=[],this.onRequestRedraw=this.register(new s.EventEmitter).event,this._rowContainer=document.createElement("div"),this._rowContainer.classList.add(c),this._rowContainer.style.lineHeight="normal",this._rowContainer.setAttribute("aria-hidden","true"),this._refreshRowElements(this._bufferService.cols,this._bufferService.rows),this._selectionContainer=document.createElement("div"),this._selectionContainer.classList.add(g),this._selectionContainer.setAttribute("aria-hidden","true"),this.dimensions=(0,p.createRenderDimensions)(),this._updateDimensions(),this.register(this._optionsService.onOptionChange(()=>this._handleOptionsChanged())),this.register(this._themeService.onChangeColors(P=>this._injectCss(P))),this._injectCss(this._themeService.colors),this._rowFactory=O.createInstance(n.DomRendererRowFactory,document),this._element.classList.add(o+this._terminalClass),this._screenElement.appendChild(this._rowContainer),this._screenElement.appendChild(this._selectionContainer),this.register(this._linkifier2.onShowLinkUnderline(P=>this._handleLinkHover(P))),this.register(this._linkifier2.onHideLinkUnderline(P=>this._handleLinkLeave(P))),this.register((0,t.toDisposable)(()=>{this._element.classList.remove(o+this._terminalClass),this._rowContainer.remove(),this._selectionContainer.remove(),this._widthCache.dispose(),this._themeStyleElement.remove(),this._dimensionsStyleElement.remove()})),this._widthCache=new d.WidthCache(document),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}_updateDimensions(){const y=this._coreBrowserService.dpr;this.dimensions.device.char.width=this._charSizeService.width*y,this.dimensions.device.char.height=Math.ceil(this._charSizeService.height*y),this.dimensions.device.cell.width=this.dimensions.device.char.width+Math.round(this._optionsService.rawOptions.letterSpacing),this.dimensions.device.cell.height=Math.floor(this.dimensions.device.char.height*this._optionsService.rawOptions.lineHeight),this.dimensions.device.char.left=0,this.dimensions.device.char.top=0,this.dimensions.device.canvas.width=this.dimensions.device.cell.width*this._bufferService.cols,this.dimensions.device.canvas.height=this.dimensions.device.cell.height*this._bufferService.rows,this.dimensions.css.canvas.width=Math.round(this.dimensions.device.canvas.width/y),this.dimensions.css.canvas.height=Math.round(this.dimensions.device.canvas.height/y),this.dimensions.css.cell.width=this.dimensions.css.canvas.width/this._bufferService.cols,this.dimensions.css.cell.height=this.dimensions.css.canvas.height/this._bufferService.rows;for(const x of this._rowElements)x.style.width=`${this.dimensions.css.canvas.width}px`,x.style.height=`${this.dimensions.css.cell.height}px`,x.style.lineHeight=`${this.dimensions.css.cell.height}px`,x.style.overflow="hidden";this._dimensionsStyleElement||(this._dimensionsStyleElement=document.createElement("style"),this._screenElement.appendChild(this._dimensionsStyleElement));const k=`${this._terminalSelector} .${c} span { display: inline-block; height: 100%; vertical-align: top;}`;this._dimensionsStyleElement.textContent=k,this._selectionContainer.style.height=this._viewportElement.style.height,this._screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._screenElement.style.height=`${this.dimensions.css.canvas.height}px`}_injectCss(y){this._themeStyleElement||(this._themeStyleElement=document.createElement("style"),this._screenElement.appendChild(this._themeStyleElement));let k=`${this._terminalSelector} .${c} { color: ${y.foreground.css}; font-family: ${this._optionsService.rawOptions.fontFamily}; font-size: ${this._optionsService.rawOptions.fontSize}px; font-kerning: none; white-space: pre}`;k+=`${this._terminalSelector} .${c} .xterm-dim { color: ${e.color.multiplyOpacity(y.foreground,.5).css};}`,k+=`${this._terminalSelector} span:not(.xterm-bold) { font-weight: ${this._optionsService.rawOptions.fontWeight};}${this._terminalSelector} span.xterm-bold { font-weight: ${this._optionsService.rawOptions.fontWeightBold};}${this._terminalSelector} span.xterm-italic { font-style: italic;}`,k+="@keyframes blink_box_shadow_"+this._terminalClass+" { 50% { border-bottom-style: hidden; }}",k+="@keyframes blink_block_"+this._terminalClass+` { 0% { background-color: ${y.cursor.css}; color: ${y.cursorAccent.css}; } 50% { background-color: inherit; color: ${y.cursor.css}; }}`,k+=`${this._terminalSelector} .${c}.${h} .xterm-cursor.xterm-cursor-blink:not(.xterm-cursor-block) { animation: blink_box_shadow_`+this._terminalClass+` 1s step-end infinite;}${this._terminalSelector} .${c}.${h} .xterm-cursor.xterm-cursor-blink.xterm-cursor-block { animation: blink_block_`+this._terminalClass+` 1s step-end infinite;}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-block { background-color: ${y.cursor.css}; color: ${y.cursorAccent.css};}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-outline { outline: 1px solid ${y.cursor.css}; outline-offset: -1px;}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-bar { box-shadow: ${this._optionsService.rawOptions.cursorWidth}px 0 0 ${y.cursor.css} inset;}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-underline { border-bottom: 1px ${y.cursor.css}; border-bottom-style: solid; height: calc(100% - 1px);}`,k+=`${this._terminalSelector} .${g} { position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none;}${this._terminalSelector}.focus .${g} div { position: absolute; background-color: ${y.selectionBackgroundOpaque.css};}${this._terminalSelector} .${g} div { position: absolute; background-color: ${y.selectionInactiveBackgroundOpaque.css};}`;for(const[x,T]of y.ansi.entries())k+=`${this._terminalSelector} .${v}${x} { color: ${T.css}; }${this._terminalSelector} .${v}${x}.xterm-dim { color: ${e.color.multiplyOpacity(T,.5).css}; }${this._terminalSelector} .${m}${x} { background-color: ${T.css}; }`;k+=`${this._terminalSelector} .${v}${f.INVERTED_DEFAULT_COLOR} { color: ${e.color.opaque(y.background).css}; }${this._terminalSelector} .${v}${f.INVERTED_DEFAULT_COLOR}.xterm-dim { color: ${e.color.multiplyOpacity(e.color.opaque(y.background),.5).css}; }${this._terminalSelector} .${m}${f.INVERTED_DEFAULT_COLOR} { background-color: ${y.foreground.css}; }`,this._themeStyleElement.textContent=k}_setDefaultSpacing(){const y=this.dimensions.css.cell.width-this._widthCache.get("W",!1,!1);this._rowContainer.style.letterSpacing=`${y}px`,this._rowFactory.defaultSpacing=y}handleDevicePixelRatioChange(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}_refreshRowElements(y,k){for(let x=this._rowElements.length;x<=k;x++){const T=document.createElement("div");this._rowContainer.appendChild(T),this._rowElements.push(T)}for(;this._rowElements.length>k;)this._rowContainer.removeChild(this._rowElements.pop())}handleResize(y,k){this._refreshRowElements(y,k),this._updateDimensions()}handleCharSizeChanged(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}handleBlur(){this._rowContainer.classList.remove(h)}handleFocus(){this._rowContainer.classList.add(h),this.renderRows(this._bufferService.buffer.y,this._bufferService.buffer.y)}handleSelectionChanged(y,k,x){if(this._selectionContainer.replaceChildren(),this._rowFactory.handleSelectionChanged(y,k,x),this.renderRows(0,this._bufferService.rows-1),!y||!k)return;const T=y[1]-this._bufferService.buffer.ydisp,O=k[1]-this._bufferService.buffer.ydisp,M=Math.max(T,0),C=Math.min(O,this._bufferService.rows-1);if(M>=this._bufferService.rows||C<0)return;const w=document.createDocumentFragment();if(x){const E=y[0]>k[0];w.appendChild(this._createSelectionElement(M,E?k[0]:y[0],E?y[0]:k[0],C-M+1))}else{const E=T===M?y[0]:0,D=M===O?k[0]:this._bufferService.cols;w.appendChild(this._createSelectionElement(M,E,D));const P=C-M-1;if(w.appendChild(this._createSelectionElement(M+1,0,this._bufferService.cols,P)),M!==C){const H=O===C?k[0]:this._bufferService.cols;w.appendChild(this._createSelectionElement(C,0,H))}}this._selectionContainer.appendChild(w)}_createSelectionElement(y,k,x,T=1){const O=document.createElement("div");return O.style.height=T*this.dimensions.css.cell.height+"px",O.style.top=y*this.dimensions.css.cell.height+"px",O.style.left=k*this.dimensions.css.cell.width+"px",O.style.width=this.dimensions.css.cell.width*(x-k)+"px",O}handleCursorMove(){}_handleOptionsChanged(){this._updateDimensions(),this._injectCss(this._themeService.colors),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}clear(){for(const y of this._rowElements)y.replaceChildren()}renderRows(y,k){const x=this._bufferService.buffer,T=x.ybase+x.y,O=Math.min(x.x,this._bufferService.cols-1),M=this._optionsService.rawOptions.cursorBlink,C=this._optionsService.rawOptions.cursorStyle,w=this._optionsService.rawOptions.cursorInactiveStyle;for(let E=y;E<=k;E++){const D=E+x.ydisp,P=this._rowElements[E],H=x.lines.get(D);if(!P||!H)break;P.replaceChildren(...this._rowFactory.createRow(H,D,D===T,C,w,O,M,this.dimensions.css.cell.width,this._widthCache,-1,-1))}}get _terminalSelector(){return`.${o}${this._terminalClass}`}_handleLinkHover(y){this._setCellUnderline(y.x1,y.x2,y.y1,y.y2,y.cols,!0)}_handleLinkLeave(y){this._setCellUnderline(y.x1,y.x2,y.y1,y.y2,y.cols,!1)}_setCellUnderline(y,k,x,T,O,M){x<0&&(y=0),T<0&&(k=0);const C=this._bufferService.rows-1;x=Math.max(Math.min(x,C),0),T=Math.max(Math.min(T,C),0),O=Math.min(O,this._bufferService.cols);const w=this._bufferService.buffer,E=w.ybase+w.y,D=Math.min(w.x,O-1),P=this._optionsService.rawOptions.cursorBlink,H=this._optionsService.rawOptions.cursorStyle,U=this._optionsService.rawOptions.cursorInactiveStyle;for(let W=x;W<=T;++W){const z=W+w.ydisp,S=this._rowElements[W],R=w.lines.get(z);if(!S||!R)break;S.replaceChildren(...this._rowFactory.createRow(R,z,z===E,H,U,D,P,this.dimensions.css.cell.width,this._widthCache,M?W===x?y:0:-1,M?(W===T?k:O)-1:-1))}}};r.DomRenderer=L=l([u(4,i.IInstantiationService),u(5,_.ICharSizeService),u(6,i.IOptionsService),u(7,i.IBufferService),u(8,_.ICoreBrowserService),u(9,_.IThemeService)],L)},3787:function(I,r,a){var l=this&&this.__decorate||function(v,m,h,g){var b,L=arguments.length,y=L<3?m:g===null?g=Object.getOwnPropertyDescriptor(m,h):g;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")y=Reflect.decorate(v,m,h,g);else for(var k=v.length-1;k>=0;k--)(b=v[k])&&(y=(L<3?b(y):L>3?b(m,h,y):b(m,h))||y);return L>3&&y&&Object.defineProperty(m,h,y),y},u=this&&this.__param||function(v,m){return function(h,g){m(h,g,v)}};Object.defineProperty(r,"__esModule",{value:!0}),r.DomRendererRowFactory=void 0;const n=a(2223),d=a(643),f=a(511),p=a(2585),_=a(8055),e=a(4725),s=a(4269),t=a(6171),i=a(3734);let o=r.DomRendererRowFactory=class{constructor(v,m,h,g,b,L,y){this._document=v,this._characterJoinerService=m,this._optionsService=h,this._coreBrowserService=g,this._coreService=b,this._decorationService=L,this._themeService=y,this._workCell=new f.CellData,this._columnSelectMode=!1,this.defaultSpacing=0}handleSelectionChanged(v,m,h){this._selectionStart=v,this._selectionEnd=m,this._columnSelectMode=h}createRow(v,m,h,g,b,L,y,k,x,T,O){const M=[],C=this._characterJoinerService.getJoinedCharacters(m),w=this._themeService.colors;let E,D=v.getNoBgTrimmedLength();h&&D0&&j===C[0][0]){V=!0;const K=C.shift();$=new s.JoinedCellData(this._workCell,v.translateToString(!0,K[0],K[1]),K[1]-K[0]),Q=K[1]-1,q=$.getWidth()}const te=this._isCellInSelection(j,m),he=h&&j===L,ce=F&&j>=T&&j<=O;let le=!1;this._decorationService.forEachDecorationAtCell(j,m,void 0,K=>{le=!0});let oe=$.getChars()||d.WHITESPACE_CELL_CHAR;if(oe===" "&&($.isUnderline()||$.isOverline())&&(oe=" "),A=q*k-x.get(oe,$.isBold(),$.isItalic()),E){if(P&&(te&&B||!te&&!B&&$.bg===U)&&(te&&B&&w.selectionForeground||$.fg===W)&&$.extended.ext===z&&ce===S&&A===R&&!he&&!V&&!le){H+=oe,P++;continue}P&&(E.textContent=H),E=this._document.createElement("span"),P=0,H=""}else E=this._document.createElement("span");if(U=$.bg,W=$.fg,z=$.extended.ext,S=ce,R=A,B=te,V&&L>=j&&L<=Q&&(L=j),!this._coreService.isCursorHidden&&he){if(N.push("xterm-cursor"),this._coreBrowserService.isFocused)y&&N.push("xterm-cursor-blink"),N.push(g==="bar"?"xterm-cursor-bar":g==="underline"?"xterm-cursor-underline":"xterm-cursor-block");else if(b)switch(b){case"outline":N.push("xterm-cursor-outline");break;case"block":N.push("xterm-cursor-block");break;case"bar":N.push("xterm-cursor-bar");break;case"underline":N.push("xterm-cursor-underline")}}if($.isBold()&&N.push("xterm-bold"),$.isItalic()&&N.push("xterm-italic"),$.isDim()&&N.push("xterm-dim"),H=$.isInvisible()?d.WHITESPACE_CELL_CHAR:$.getChars()||d.WHITESPACE_CELL_CHAR,$.isUnderline()&&(N.push(`xterm-underline-${$.extended.underlineStyle}`),H===" "&&(H=" "),!$.isUnderlineColorDefault()))if($.isUnderlineColorRGB())E.style.textDecorationColor=`rgb(${i.AttributeData.toColorRGB($.getUnderlineColor()).join(",")})`;else{let K=$.getUnderlineColor();this._optionsService.rawOptions.drawBoldTextInBrightColors&&$.isBold()&&K<8&&(K+=8),E.style.textDecorationColor=w.ansi[K].css}$.isOverline()&&(N.push("xterm-overline"),H===" "&&(H=" ")),$.isStrikethrough()&&N.push("xterm-strikethrough"),ce&&(E.style.textDecoration="underline");let G=$.getFgColor(),ie=$.getFgColorMode(),X=$.getBgColor(),se=$.getBgColorMode();const de=!!$.isInverse();if(de){const K=G;G=X,X=K;const pe=ie;ie=se,se=pe}let Y,_e,Z,re=!1;switch(this._decorationService.forEachDecorationAtCell(j,m,void 0,K=>{K.options.layer!=="top"&&re||(K.backgroundColorRGB&&(se=50331648,X=K.backgroundColorRGB.rgba>>8&16777215,Y=K.backgroundColorRGB),K.foregroundColorRGB&&(ie=50331648,G=K.foregroundColorRGB.rgba>>8&16777215,_e=K.foregroundColorRGB),re=K.options.layer==="top")}),!re&&te&&(Y=this._coreBrowserService.isFocused?w.selectionBackgroundOpaque:w.selectionInactiveBackgroundOpaque,X=Y.rgba>>8&16777215,se=50331648,re=!0,w.selectionForeground&&(ie=50331648,G=w.selectionForeground.rgba>>8&16777215,_e=w.selectionForeground)),re&&N.push("xterm-decoration-top"),se){case 16777216:case 33554432:Z=w.ansi[X],N.push(`xterm-bg-${X}`);break;case 50331648:Z=_.rgba.toColor(X>>16,X>>8&255,255&X),this._addStyle(E,`background-color:#${c((X>>>0).toString(16),"0",6)}`);break;default:de?(Z=w.foreground,N.push(`xterm-bg-${n.INVERTED_DEFAULT_COLOR}`)):Z=w.background}switch(Y||$.isDim()&&(Y=_.color.multiplyOpacity(Z,.5)),ie){case 16777216:case 33554432:$.isBold()&&G<8&&this._optionsService.rawOptions.drawBoldTextInBrightColors&&(G+=8),this._applyMinimumContrast(E,Z,w.ansi[G],$,Y,void 0)||N.push(`xterm-fg-${G}`);break;case 50331648:const K=_.rgba.toColor(G>>16&255,G>>8&255,255&G);this._applyMinimumContrast(E,Z,K,$,Y,_e)||this._addStyle(E,`color:#${c(G.toString(16),"0",6)}`);break;default:this._applyMinimumContrast(E,Z,w.foreground,$,Y,void 0)||de&&N.push(`xterm-fg-${n.INVERTED_DEFAULT_COLOR}`)}N.length&&(E.className=N.join(" "),N.length=0),he||V||le?E.textContent=H:P++,A!==this.defaultSpacing&&(E.style.letterSpacing=`${A}px`),M.push(E),j=Q}return E&&P&&(E.textContent=H),M}_applyMinimumContrast(v,m,h,g,b,L){if(this._optionsService.rawOptions.minimumContrastRatio===1||(0,t.excludeFromContrastRatioDemands)(g.getCode()))return!1;const y=this._getContrastCache(g);let k;if(b||L||(k=y.getColor(m.rgba,h.rgba)),k===void 0){const x=this._optionsService.rawOptions.minimumContrastRatio/(g.isDim()?2:1);k=_.color.ensureContrastRatio(b||m,L||h,x),y.setColor((b||m).rgba,(L||h).rgba,k??null)}return!!k&&(this._addStyle(v,`color:${k.css}`),!0)}_getContrastCache(v){return v.isDim()?this._themeService.colors.halfContrastCache:this._themeService.colors.contrastCache}_addStyle(v,m){v.setAttribute("style",`${v.getAttribute("style")||""}${m};`)}_isCellInSelection(v,m){const h=this._selectionStart,g=this._selectionEnd;return!(!h||!g)&&(this._columnSelectMode?h[0]<=g[0]?v>=h[0]&&m>=h[1]&&v=h[1]&&v>=g[0]&&m<=g[1]:m>h[1]&&m=h[0]&&v=h[0])}};function c(v,m,h){for(;v.length{Object.defineProperty(r,"__esModule",{value:!0}),r.WidthCache=void 0,r.WidthCache=class{constructor(a){this._flat=new Float32Array(256),this._font="",this._fontSize=0,this._weight="normal",this._weightBold="bold",this._measureElements=[],this._container=a.createElement("div"),this._container.style.position="absolute",this._container.style.top="-50000px",this._container.style.width="50000px",this._container.style.whiteSpace="pre",this._container.style.fontKerning="none";const l=a.createElement("span"),u=a.createElement("span");u.style.fontWeight="bold";const n=a.createElement("span");n.style.fontStyle="italic";const d=a.createElement("span");d.style.fontWeight="bold",d.style.fontStyle="italic",this._measureElements=[l,u,n,d],this._container.appendChild(l),this._container.appendChild(u),this._container.appendChild(n),this._container.appendChild(d),a.body.appendChild(this._container),this.clear()}dispose(){this._container.remove(),this._measureElements.length=0,this._holey=void 0}clear(){this._flat.fill(-9999),this._holey=new Map}setFont(a,l,u,n){a===this._font&&l===this._fontSize&&u===this._weight&&n===this._weightBold||(this._font=a,this._fontSize=l,this._weight=u,this._weightBold=n,this._container.style.fontFamily=this._font,this._container.style.fontSize=`${this._fontSize}px`,this._measureElements[0].style.fontWeight=`${u}`,this._measureElements[1].style.fontWeight=`${n}`,this._measureElements[2].style.fontWeight=`${u}`,this._measureElements[3].style.fontWeight=`${n}`,this.clear())}get(a,l,u){let n=0;if(!l&&!u&&a.length===1&&(n=a.charCodeAt(0))<256)return this._flat[n]!==-9999?this._flat[n]:this._flat[n]=this._measure(a,0);let d=a;l&&(d+="B"),u&&(d+="I");let f=this._holey.get(d);if(f===void 0){let p=0;l&&(p|=1),u&&(p|=2),f=this._measure(a,p),this._holey.set(d,f)}return f}_measure(a,l){const u=this._measureElements[l];return u.textContent=a.repeat(32),u.offsetWidth/32}}},2223:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.TEXT_BASELINE=r.DIM_OPACITY=r.INVERTED_DEFAULT_COLOR=void 0;const l=a(6114);r.INVERTED_DEFAULT_COLOR=257,r.DIM_OPACITY=.5,r.TEXT_BASELINE=l.isFirefox||l.isLegacyEdge?"bottom":"ideographic"},6171:(I,r)=>{function a(l){return 57508<=l&&l<=57558}Object.defineProperty(r,"__esModule",{value:!0}),r.createRenderDimensions=r.excludeFromContrastRatioDemands=r.isRestrictedPowerlineGlyph=r.isPowerlineGlyph=r.throwIfFalsy=void 0,r.throwIfFalsy=function(l){if(!l)throw new Error("value must not be falsy");return l},r.isPowerlineGlyph=a,r.isRestrictedPowerlineGlyph=function(l){return 57520<=l&&l<=57527},r.excludeFromContrastRatioDemands=function(l){return a(l)||function(u){return 9472<=u&&u<=9631}(l)},r.createRenderDimensions=function(){return{css:{canvas:{width:0,height:0},cell:{width:0,height:0}},device:{canvas:{width:0,height:0},cell:{width:0,height:0},char:{width:0,height:0,left:0,top:0}}}}},456:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.SelectionModel=void 0,r.SelectionModel=class{constructor(a){this._bufferService=a,this.isSelectAllActive=!1,this.selectionStartLength=0}clearSelection(){this.selectionStart=void 0,this.selectionEnd=void 0,this.isSelectAllActive=!1,this.selectionStartLength=0}get finalSelectionStart(){return this.isSelectAllActive?[0,0]:this.selectionEnd&&this.selectionStart&&this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart}get finalSelectionEnd(){if(this.isSelectAllActive)return[this._bufferService.cols,this._bufferService.buffer.ybase+this._bufferService.rows-1];if(this.selectionStart){if(!this.selectionEnd||this.areSelectionValuesReversed()){const a=this.selectionStart[0]+this.selectionStartLength;return a>this._bufferService.cols?a%this._bufferService.cols==0?[this._bufferService.cols,this.selectionStart[1]+Math.floor(a/this._bufferService.cols)-1]:[a%this._bufferService.cols,this.selectionStart[1]+Math.floor(a/this._bufferService.cols)]:[a,this.selectionStart[1]]}if(this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]){const a=this.selectionStart[0]+this.selectionStartLength;return a>this._bufferService.cols?[a%this._bufferService.cols,this.selectionStart[1]+Math.floor(a/this._bufferService.cols)]:[Math.max(a,this.selectionEnd[0]),this.selectionEnd[1]]}return this.selectionEnd}}areSelectionValuesReversed(){const a=this.selectionStart,l=this.selectionEnd;return!(!a||!l)&&(a[1]>l[1]||a[1]===l[1]&&a[0]>l[0])}handleTrim(a){return this.selectionStart&&(this.selectionStart[1]-=a),this.selectionEnd&&(this.selectionEnd[1]-=a),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)}}},428:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CharSizeService=void 0;const n=a(2585),d=a(8460),f=a(844);let p=r.CharSizeService=class extends f.Disposable{get hasValidSize(){return this.width>0&&this.height>0}constructor(e,s,t){super(),this._optionsService=t,this.width=0,this.height=0,this._onCharSizeChange=this.register(new d.EventEmitter),this.onCharSizeChange=this._onCharSizeChange.event,this._measureStrategy=new _(e,s,this._optionsService),this.register(this._optionsService.onMultipleOptionChange(["fontFamily","fontSize"],()=>this.measure()))}measure(){const e=this._measureStrategy.measure();e.width===this.width&&e.height===this.height||(this.width=e.width,this.height=e.height,this._onCharSizeChange.fire())}};r.CharSizeService=p=l([u(2,n.IOptionsService)],p);class _{constructor(s,t,i){this._document=s,this._parentElement=t,this._optionsService=i,this._result={width:0,height:0},this._measureElement=this._document.createElement("span"),this._measureElement.classList.add("xterm-char-measure-element"),this._measureElement.textContent="W".repeat(32),this._measureElement.setAttribute("aria-hidden","true"),this._measureElement.style.whiteSpace="pre",this._measureElement.style.fontKerning="none",this._parentElement.appendChild(this._measureElement)}measure(){this._measureElement.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._measureElement.style.fontSize=`${this._optionsService.rawOptions.fontSize}px`;const s={height:Number(this._measureElement.offsetHeight),width:Number(this._measureElement.offsetWidth)};return s.width!==0&&s.height!==0&&(this._result.width=s.width/32,this._result.height=Math.ceil(s.height)),this._result}}},4269:function(I,r,a){var l=this&&this.__decorate||function(s,t,i,o){var c,v=arguments.length,m=v<3?t:o===null?o=Object.getOwnPropertyDescriptor(t,i):o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")m=Reflect.decorate(s,t,i,o);else for(var h=s.length-1;h>=0;h--)(c=s[h])&&(m=(v<3?c(m):v>3?c(t,i,m):c(t,i))||m);return v>3&&m&&Object.defineProperty(t,i,m),m},u=this&&this.__param||function(s,t){return function(i,o){t(i,o,s)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CharacterJoinerService=r.JoinedCellData=void 0;const n=a(3734),d=a(643),f=a(511),p=a(2585);class _ extends n.AttributeData{constructor(t,i,o){super(),this.content=0,this.combinedData="",this.fg=t.fg,this.bg=t.bg,this.combinedData=i,this._width=o}isCombined(){return 2097152}getWidth(){return this._width}getChars(){return this.combinedData}getCode(){return 2097151}setFromCharData(t){throw new Error("not implemented")}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}r.JoinedCellData=_;let e=r.CharacterJoinerService=class ve{constructor(t){this._bufferService=t,this._characterJoiners=[],this._nextCharacterJoinerId=0,this._workCell=new f.CellData}register(t){const i={id:this._nextCharacterJoinerId++,handler:t};return this._characterJoiners.push(i),i.id}deregister(t){for(let i=0;i1){const y=this._getJoinedRanges(c,h,m,i,v);for(let k=0;k1){const L=this._getJoinedRanges(c,h,m,i,v);for(let y=0;y{Object.defineProperty(r,"__esModule",{value:!0}),r.CoreBrowserService=void 0,r.CoreBrowserService=class{constructor(a,l){this._textarea=a,this.window=l,this._isFocused=!1,this._cachedIsFocused=void 0,this._textarea.addEventListener("focus",()=>this._isFocused=!0),this._textarea.addEventListener("blur",()=>this._isFocused=!1)}get dpr(){return this.window.devicePixelRatio}get isFocused(){return this._cachedIsFocused===void 0&&(this._cachedIsFocused=this._isFocused&&this._textarea.ownerDocument.hasFocus(),queueMicrotask(()=>this._cachedIsFocused=void 0)),this._cachedIsFocused}}},8934:function(I,r,a){var l=this&&this.__decorate||function(p,_,e,s){var t,i=arguments.length,o=i<3?_:s===null?s=Object.getOwnPropertyDescriptor(_,e):s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(p,_,e,s);else for(var c=p.length-1;c>=0;c--)(t=p[c])&&(o=(i<3?t(o):i>3?t(_,e,o):t(_,e))||o);return i>3&&o&&Object.defineProperty(_,e,o),o},u=this&&this.__param||function(p,_){return function(e,s){_(e,s,p)}};Object.defineProperty(r,"__esModule",{value:!0}),r.MouseService=void 0;const n=a(4725),d=a(9806);let f=r.MouseService=class{constructor(p,_){this._renderService=p,this._charSizeService=_}getCoords(p,_,e,s,t){return(0,d.getCoords)(window,p,_,e,s,this._charSizeService.hasValidSize,this._renderService.dimensions.css.cell.width,this._renderService.dimensions.css.cell.height,t)}getMouseReportCoords(p,_){const e=(0,d.getCoordsRelativeToElement)(window,p,_);if(this._charSizeService.hasValidSize)return e[0]=Math.min(Math.max(e[0],0),this._renderService.dimensions.css.canvas.width-1),e[1]=Math.min(Math.max(e[1],0),this._renderService.dimensions.css.canvas.height-1),{col:Math.floor(e[0]/this._renderService.dimensions.css.cell.width),row:Math.floor(e[1]/this._renderService.dimensions.css.cell.height),x:Math.floor(e[0]),y:Math.floor(e[1])}}};r.MouseService=f=l([u(0,n.IRenderService),u(1,n.ICharSizeService)],f)},3230:function(I,r,a){var l=this&&this.__decorate||function(o,c,v,m){var h,g=arguments.length,b=g<3?c:m===null?m=Object.getOwnPropertyDescriptor(c,v):m;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")b=Reflect.decorate(o,c,v,m);else for(var L=o.length-1;L>=0;L--)(h=o[L])&&(b=(g<3?h(b):g>3?h(c,v,b):h(c,v))||b);return g>3&&b&&Object.defineProperty(c,v,b),b},u=this&&this.__param||function(o,c){return function(v,m){c(v,m,o)}};Object.defineProperty(r,"__esModule",{value:!0}),r.RenderService=void 0;const n=a(3656),d=a(6193),f=a(5596),p=a(4725),_=a(8460),e=a(844),s=a(7226),t=a(2585);let i=r.RenderService=class extends e.Disposable{get dimensions(){return this._renderer.value.dimensions}constructor(o,c,v,m,h,g,b,L){if(super(),this._rowCount=o,this._charSizeService=m,this._renderer=this.register(new e.MutableDisposable),this._pausedResizeTask=new s.DebouncedIdleTask,this._isPaused=!1,this._needsFullRefresh=!1,this._isNextRenderRedrawOnly=!0,this._needsSelectionRefresh=!1,this._canvasWidth=0,this._canvasHeight=0,this._selectionState={start:void 0,end:void 0,columnSelectMode:!1},this._onDimensionsChange=this.register(new _.EventEmitter),this.onDimensionsChange=this._onDimensionsChange.event,this._onRenderedViewportChange=this.register(new _.EventEmitter),this.onRenderedViewportChange=this._onRenderedViewportChange.event,this._onRender=this.register(new _.EventEmitter),this.onRender=this._onRender.event,this._onRefreshRequest=this.register(new _.EventEmitter),this.onRefreshRequest=this._onRefreshRequest.event,this._renderDebouncer=new d.RenderDebouncer(b.window,(y,k)=>this._renderRows(y,k)),this.register(this._renderDebouncer),this._screenDprMonitor=new f.ScreenDprMonitor(b.window),this._screenDprMonitor.setListener(()=>this.handleDevicePixelRatioChange()),this.register(this._screenDprMonitor),this.register(g.onResize(()=>this._fullRefresh())),this.register(g.buffers.onBufferActivate(()=>{var y;return(y=this._renderer.value)===null||y===void 0?void 0:y.clear()})),this.register(v.onOptionChange(()=>this._handleOptionsChanged())),this.register(this._charSizeService.onCharSizeChange(()=>this.handleCharSizeChanged())),this.register(h.onDecorationRegistered(()=>this._fullRefresh())),this.register(h.onDecorationRemoved(()=>this._fullRefresh())),this.register(v.onMultipleOptionChange(["customGlyphs","drawBoldTextInBrightColors","letterSpacing","lineHeight","fontFamily","fontSize","fontWeight","fontWeightBold","minimumContrastRatio"],()=>{this.clear(),this.handleResize(g.cols,g.rows),this._fullRefresh()})),this.register(v.onMultipleOptionChange(["cursorBlink","cursorStyle"],()=>this.refreshRows(g.buffer.y,g.buffer.y,!0))),this.register((0,n.addDisposableDomListener)(b.window,"resize",()=>this.handleDevicePixelRatioChange())),this.register(L.onChangeColors(()=>this._fullRefresh())),"IntersectionObserver"in b.window){const y=new b.window.IntersectionObserver(k=>this._handleIntersectionChange(k[k.length-1]),{threshold:0});y.observe(c),this.register({dispose:()=>y.disconnect()})}}_handleIntersectionChange(o){this._isPaused=o.isIntersecting===void 0?o.intersectionRatio===0:!o.isIntersecting,this._isPaused||this._charSizeService.hasValidSize||this._charSizeService.measure(),!this._isPaused&&this._needsFullRefresh&&(this._pausedResizeTask.flush(),this.refreshRows(0,this._rowCount-1),this._needsFullRefresh=!1)}refreshRows(o,c,v=!1){this._isPaused?this._needsFullRefresh=!0:(v||(this._isNextRenderRedrawOnly=!1),this._renderDebouncer.refresh(o,c,this._rowCount))}_renderRows(o,c){this._renderer.value&&(o=Math.min(o,this._rowCount-1),c=Math.min(c,this._rowCount-1),this._renderer.value.renderRows(o,c),this._needsSelectionRefresh&&(this._renderer.value.handleSelectionChanged(this._selectionState.start,this._selectionState.end,this._selectionState.columnSelectMode),this._needsSelectionRefresh=!1),this._isNextRenderRedrawOnly||this._onRenderedViewportChange.fire({start:o,end:c}),this._onRender.fire({start:o,end:c}),this._isNextRenderRedrawOnly=!0)}resize(o,c){this._rowCount=c,this._fireOnCanvasResize()}_handleOptionsChanged(){this._renderer.value&&(this.refreshRows(0,this._rowCount-1),this._fireOnCanvasResize())}_fireOnCanvasResize(){this._renderer.value&&(this._renderer.value.dimensions.css.canvas.width===this._canvasWidth&&this._renderer.value.dimensions.css.canvas.height===this._canvasHeight||this._onDimensionsChange.fire(this._renderer.value.dimensions))}hasRenderer(){return!!this._renderer.value}setRenderer(o){this._renderer.value=o,this._renderer.value.onRequestRedraw(c=>this.refreshRows(c.start,c.end,!0)),this._needsSelectionRefresh=!0,this._fullRefresh()}addRefreshCallback(o){return this._renderDebouncer.addRefreshCallback(o)}_fullRefresh(){this._isPaused?this._needsFullRefresh=!0:this.refreshRows(0,this._rowCount-1)}clearTextureAtlas(){var o,c;this._renderer.value&&((c=(o=this._renderer.value).clearTextureAtlas)===null||c===void 0||c.call(o),this._fullRefresh())}handleDevicePixelRatioChange(){this._charSizeService.measure(),this._renderer.value&&(this._renderer.value.handleDevicePixelRatioChange(),this.refreshRows(0,this._rowCount-1))}handleResize(o,c){this._renderer.value&&(this._isPaused?this._pausedResizeTask.set(()=>this._renderer.value.handleResize(o,c)):this._renderer.value.handleResize(o,c),this._fullRefresh())}handleCharSizeChanged(){var o;(o=this._renderer.value)===null||o===void 0||o.handleCharSizeChanged()}handleBlur(){var o;(o=this._renderer.value)===null||o===void 0||o.handleBlur()}handleFocus(){var o;(o=this._renderer.value)===null||o===void 0||o.handleFocus()}handleSelectionChanged(o,c,v){var m;this._selectionState.start=o,this._selectionState.end=c,this._selectionState.columnSelectMode=v,(m=this._renderer.value)===null||m===void 0||m.handleSelectionChanged(o,c,v)}handleCursorMove(){var o;(o=this._renderer.value)===null||o===void 0||o.handleCursorMove()}clear(){var o;(o=this._renderer.value)===null||o===void 0||o.clear()}};r.RenderService=i=l([u(2,t.IOptionsService),u(3,p.ICharSizeService),u(4,t.IDecorationService),u(5,t.IBufferService),u(6,p.ICoreBrowserService),u(7,p.IThemeService)],i)},9312:function(I,r,a){var l=this&&this.__decorate||function(h,g,b,L){var y,k=arguments.length,x=k<3?g:L===null?L=Object.getOwnPropertyDescriptor(g,b):L;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")x=Reflect.decorate(h,g,b,L);else for(var T=h.length-1;T>=0;T--)(y=h[T])&&(x=(k<3?y(x):k>3?y(g,b,x):y(g,b))||x);return k>3&&x&&Object.defineProperty(g,b,x),x},u=this&&this.__param||function(h,g){return function(b,L){g(b,L,h)}};Object.defineProperty(r,"__esModule",{value:!0}),r.SelectionService=void 0;const n=a(9806),d=a(9504),f=a(456),p=a(4725),_=a(8460),e=a(844),s=a(6114),t=a(4841),i=a(511),o=a(2585),c=String.fromCharCode(160),v=new RegExp(c,"g");let m=r.SelectionService=class extends e.Disposable{constructor(h,g,b,L,y,k,x,T,O){super(),this._element=h,this._screenElement=g,this._linkifier=b,this._bufferService=L,this._coreService=y,this._mouseService=k,this._optionsService=x,this._renderService=T,this._coreBrowserService=O,this._dragScrollAmount=0,this._enabled=!0,this._workCell=new i.CellData,this._mouseDownTimeStamp=0,this._oldHasSelection=!1,this._oldSelectionStart=void 0,this._oldSelectionEnd=void 0,this._onLinuxMouseSelection=this.register(new _.EventEmitter),this.onLinuxMouseSelection=this._onLinuxMouseSelection.event,this._onRedrawRequest=this.register(new _.EventEmitter),this.onRequestRedraw=this._onRedrawRequest.event,this._onSelectionChange=this.register(new _.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onRequestScrollLines=this.register(new _.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this._mouseMoveListener=M=>this._handleMouseMove(M),this._mouseUpListener=M=>this._handleMouseUp(M),this._coreService.onUserInput(()=>{this.hasSelection&&this.clearSelection()}),this._trimListener=this._bufferService.buffer.lines.onTrim(M=>this._handleTrim(M)),this.register(this._bufferService.buffers.onBufferActivate(M=>this._handleBufferActivate(M))),this.enable(),this._model=new f.SelectionModel(this._bufferService),this._activeSelectionMode=0,this.register((0,e.toDisposable)(()=>{this._removeMouseDownListeners()}))}reset(){this.clearSelection()}disable(){this.clearSelection(),this._enabled=!1}enable(){this._enabled=!0}get selectionStart(){return this._model.finalSelectionStart}get selectionEnd(){return this._model.finalSelectionEnd}get hasSelection(){const h=this._model.finalSelectionStart,g=this._model.finalSelectionEnd;return!(!h||!g||h[0]===g[0]&&h[1]===g[1])}get selectionText(){const h=this._model.finalSelectionStart,g=this._model.finalSelectionEnd;if(!h||!g)return"";const b=this._bufferService.buffer,L=[];if(this._activeSelectionMode===3){if(h[0]===g[0])return"";const y=h[0]y.replace(v," ")).join(s.isWindows?`\r +WARNING: This link could potentially be dangerous`)){const s=window.open();if(s){try{s.opener=null}catch{}s.location.href=e}else console.warn("Opening link blocked as opener could not be cleared")}}r.OscLinkProvider=f=l([u(0,d.IBufferService),u(1,d.IOptionsService),u(2,d.IOscLinkService)],f)},6193:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.RenderDebouncer=void 0,r.RenderDebouncer=class{constructor(a,l){this._parentWindow=a,this._renderCallback=l,this._refreshCallbacks=[]}dispose(){this._animationFrame&&(this._parentWindow.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}addRefreshCallback(a){return this._refreshCallbacks.push(a),this._animationFrame||(this._animationFrame=this._parentWindow.requestAnimationFrame(()=>this._innerRefresh())),this._animationFrame}refresh(a,l,u){this._rowCount=u,a=a!==void 0?a:0,l=l!==void 0?l:this._rowCount-1,this._rowStart=this._rowStart!==void 0?Math.min(this._rowStart,a):a,this._rowEnd=this._rowEnd!==void 0?Math.max(this._rowEnd,l):l,this._animationFrame||(this._animationFrame=this._parentWindow.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._animationFrame=void 0,this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return void this._runRefreshCallbacks();const a=Math.max(this._rowStart,0),l=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(a,l),this._runRefreshCallbacks()}_runRefreshCallbacks(){for(const a of this._refreshCallbacks)a(0);this._refreshCallbacks=[]}}},5596:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ScreenDprMonitor=void 0;const l=a(844);class u extends l.Disposable{constructor(d){super(),this._parentWindow=d,this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this.register((0,l.toDisposable)(()=>{this.clearListener()}))}setListener(d){this._listener&&this.clearListener(),this._listener=d,this._outerListener=()=>{this._listener&&(this._listener(this._parentWindow.devicePixelRatio,this._currentDevicePixelRatio),this._updateDpr())},this._updateDpr()}_updateDpr(){var d;this._outerListener&&((d=this._resolutionMediaMatchList)===null||d===void 0||d.removeListener(this._outerListener),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._resolutionMediaMatchList=this._parentWindow.matchMedia(`screen and (resolution: ${this._parentWindow.devicePixelRatio}dppx)`),this._resolutionMediaMatchList.addListener(this._outerListener))}clearListener(){this._resolutionMediaMatchList&&this._listener&&this._outerListener&&(this._resolutionMediaMatchList.removeListener(this._outerListener),this._resolutionMediaMatchList=void 0,this._listener=void 0,this._outerListener=void 0)}}r.ScreenDprMonitor=u},3236:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Terminal=void 0;const l=a(3614),u=a(3656),n=a(6465),d=a(9042),f=a(3730),p=a(1680),_=a(3107),e=a(5744),s=a(2950),t=a(1296),i=a(428),o=a(4269),c=a(5114),v=a(8934),m=a(3230),h=a(9312),g=a(4725),b=a(6731),L=a(8055),y=a(8969),k=a(8460),x=a(844),T=a(6114),O=a(8437),M=a(2584),C=a(7399),w=a(5941),E=a(9074),D=a(2585),P=a(5435),H=a(4567),U=typeof window<"u"?window.document:null;class W extends y.CoreTerminal{get onFocus(){return this._onFocus.event}get onBlur(){return this._onBlur.event}get onA11yChar(){return this._onA11yCharEmitter.event}get onA11yTab(){return this._onA11yTabEmitter.event}get onWillOpen(){return this._onWillOpen.event}constructor(S={}){super(S),this.browser=T,this._keyDownHandled=!1,this._keyDownSeen=!1,this._keyPressHandled=!1,this._unprocessedDeadKey=!1,this._accessibilityManager=this.register(new x.MutableDisposable),this._onCursorMove=this.register(new k.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onKey=this.register(new k.EventEmitter),this.onKey=this._onKey.event,this._onRender=this.register(new k.EventEmitter),this.onRender=this._onRender.event,this._onSelectionChange=this.register(new k.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onTitleChange=this.register(new k.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onBell=this.register(new k.EventEmitter),this.onBell=this._onBell.event,this._onFocus=this.register(new k.EventEmitter),this._onBlur=this.register(new k.EventEmitter),this._onA11yCharEmitter=this.register(new k.EventEmitter),this._onA11yTabEmitter=this.register(new k.EventEmitter),this._onWillOpen=this.register(new k.EventEmitter),this._setup(),this.linkifier2=this.register(this._instantiationService.createInstance(n.Linkifier2)),this.linkifier2.registerLinkProvider(this._instantiationService.createInstance(f.OscLinkProvider)),this._decorationService=this._instantiationService.createInstance(E.DecorationService),this._instantiationService.setService(D.IDecorationService,this._decorationService),this.register(this._inputHandler.onRequestBell(()=>this._onBell.fire())),this.register(this._inputHandler.onRequestRefreshRows((R,B)=>this.refresh(R,B))),this.register(this._inputHandler.onRequestSendFocus(()=>this._reportFocus())),this.register(this._inputHandler.onRequestReset(()=>this.reset())),this.register(this._inputHandler.onRequestWindowsOptionsReport(R=>this._reportWindowsOptions(R))),this.register(this._inputHandler.onColor(R=>this._handleColorEvent(R))),this.register((0,k.forwardEvent)(this._inputHandler.onCursorMove,this._onCursorMove)),this.register((0,k.forwardEvent)(this._inputHandler.onTitleChange,this._onTitleChange)),this.register((0,k.forwardEvent)(this._inputHandler.onA11yChar,this._onA11yCharEmitter)),this.register((0,k.forwardEvent)(this._inputHandler.onA11yTab,this._onA11yTabEmitter)),this.register(this._bufferService.onResize(R=>this._afterResize(R.cols,R.rows))),this.register((0,x.toDisposable)(()=>{var R,B;this._customKeyEventHandler=void 0,(B=(R=this.element)===null||R===void 0?void 0:R.parentNode)===null||B===void 0||B.removeChild(this.element)}))}_handleColorEvent(S){if(this._themeService)for(const R of S){let B,A="";switch(R.index){case 256:B="foreground",A="10";break;case 257:B="background",A="11";break;case 258:B="cursor",A="12";break;default:B="ansi",A="4;"+R.index}switch(R.type){case 0:const N=L.color.toColorRGB(B==="ansi"?this._themeService.colors.ansi[R.index]:this._themeService.colors[B]);this.coreService.triggerDataEvent(`${M.C0.ESC}]${A};${(0,w.toRgbString)(N)}${M.C1_ESCAPED.ST}`);break;case 1:if(B==="ansi")this._themeService.modifyColors(F=>F.ansi[R.index]=L.rgba.toColor(...R.color));else{const F=B;this._themeService.modifyColors(j=>j[F]=L.rgba.toColor(...R.color))}break;case 2:this._themeService.restoreColor(R.index)}}}_setup(){super._setup(),this._customKeyEventHandler=void 0}get buffer(){return this.buffers.active}focus(){this.textarea&&this.textarea.focus({preventScroll:!0})}_handleScreenReaderModeOptionChange(S){S?!this._accessibilityManager.value&&this._renderService&&(this._accessibilityManager.value=this._instantiationService.createInstance(H.AccessibilityManager,this)):this._accessibilityManager.clear()}_handleTextAreaFocus(S){this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(M.C0.ESC+"[I"),this.updateCursorStyle(S),this.element.classList.add("focus"),this._showCursor(),this._onFocus.fire()}blur(){var S;return(S=this.textarea)===null||S===void 0?void 0:S.blur()}_handleTextAreaBlur(){this.textarea.value="",this.refresh(this.buffer.y,this.buffer.y),this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(M.C0.ESC+"[O"),this.element.classList.remove("focus"),this._onBlur.fire()}_syncTextArea(){if(!this.textarea||!this.buffer.isCursorInViewport||this._compositionHelper.isComposing||!this._renderService)return;const S=this.buffer.ybase+this.buffer.y,R=this.buffer.lines.get(S);if(!R)return;const B=Math.min(this.buffer.x,this.cols-1),A=this._renderService.dimensions.css.cell.height,N=R.getWidth(B),F=this._renderService.dimensions.css.cell.width*N,j=this.buffer.y*this._renderService.dimensions.css.cell.height,q=B*this._renderService.dimensions.css.cell.width;this.textarea.style.left=q+"px",this.textarea.style.top=j+"px",this.textarea.style.width=F+"px",this.textarea.style.height=A+"px",this.textarea.style.lineHeight=A+"px",this.textarea.style.zIndex="-5"}_initGlobal(){this._bindKeys(),this.register((0,u.addDisposableDomListener)(this.element,"copy",R=>{this.hasSelection()&&(0,l.copyHandler)(R,this._selectionService)}));const S=R=>(0,l.handlePasteEvent)(R,this.textarea,this.coreService,this.optionsService);this.register((0,u.addDisposableDomListener)(this.textarea,"paste",S)),this.register((0,u.addDisposableDomListener)(this.element,"paste",S)),T.isFirefox?this.register((0,u.addDisposableDomListener)(this.element,"mousedown",R=>{R.button===2&&(0,l.rightClickHandler)(R,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})):this.register((0,u.addDisposableDomListener)(this.element,"contextmenu",R=>{(0,l.rightClickHandler)(R,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})),T.isLinux&&this.register((0,u.addDisposableDomListener)(this.element,"auxclick",R=>{R.button===1&&(0,l.moveTextAreaUnderMouseCursor)(R,this.textarea,this.screenElement)}))}_bindKeys(){this.register((0,u.addDisposableDomListener)(this.textarea,"keyup",S=>this._keyUp(S),!0)),this.register((0,u.addDisposableDomListener)(this.textarea,"keydown",S=>this._keyDown(S),!0)),this.register((0,u.addDisposableDomListener)(this.textarea,"keypress",S=>this._keyPress(S),!0)),this.register((0,u.addDisposableDomListener)(this.textarea,"compositionstart",()=>this._compositionHelper.compositionstart())),this.register((0,u.addDisposableDomListener)(this.textarea,"compositionupdate",S=>this._compositionHelper.compositionupdate(S))),this.register((0,u.addDisposableDomListener)(this.textarea,"compositionend",()=>this._compositionHelper.compositionend())),this.register((0,u.addDisposableDomListener)(this.textarea,"input",S=>this._inputEvent(S),!0)),this.register(this.onRender(()=>this._compositionHelper.updateCompositionElements()))}open(S){var R;if(!S)throw new Error("Terminal requires a parent element.");S.isConnected||this._logService.debug("Terminal.open was called on an element that was not attached to the DOM"),this._document=S.ownerDocument,this.element=this._document.createElement("div"),this.element.dir="ltr",this.element.classList.add("terminal"),this.element.classList.add("xterm"),S.appendChild(this.element);const B=U.createDocumentFragment();this._viewportElement=U.createElement("div"),this._viewportElement.classList.add("xterm-viewport"),B.appendChild(this._viewportElement),this._viewportScrollArea=U.createElement("div"),this._viewportScrollArea.classList.add("xterm-scroll-area"),this._viewportElement.appendChild(this._viewportScrollArea),this.screenElement=U.createElement("div"),this.screenElement.classList.add("xterm-screen"),this._helperContainer=U.createElement("div"),this._helperContainer.classList.add("xterm-helpers"),this.screenElement.appendChild(this._helperContainer),B.appendChild(this.screenElement),this.textarea=U.createElement("textarea"),this.textarea.classList.add("xterm-helper-textarea"),this.textarea.setAttribute("aria-label",d.promptLabel),T.isChromeOS||this.textarea.setAttribute("aria-multiline","false"),this.textarea.setAttribute("autocorrect","off"),this.textarea.setAttribute("autocapitalize","off"),this.textarea.setAttribute("spellcheck","false"),this.textarea.tabIndex=0,this._coreBrowserService=this._instantiationService.createInstance(c.CoreBrowserService,this.textarea,(R=this._document.defaultView)!==null&&R!==void 0?R:window),this._instantiationService.setService(g.ICoreBrowserService,this._coreBrowserService),this.register((0,u.addDisposableDomListener)(this.textarea,"focus",A=>this._handleTextAreaFocus(A))),this.register((0,u.addDisposableDomListener)(this.textarea,"blur",()=>this._handleTextAreaBlur())),this._helperContainer.appendChild(this.textarea),this._charSizeService=this._instantiationService.createInstance(i.CharSizeService,this._document,this._helperContainer),this._instantiationService.setService(g.ICharSizeService,this._charSizeService),this._themeService=this._instantiationService.createInstance(b.ThemeService),this._instantiationService.setService(g.IThemeService,this._themeService),this._characterJoinerService=this._instantiationService.createInstance(o.CharacterJoinerService),this._instantiationService.setService(g.ICharacterJoinerService,this._characterJoinerService),this._renderService=this.register(this._instantiationService.createInstance(m.RenderService,this.rows,this.screenElement)),this._instantiationService.setService(g.IRenderService,this._renderService),this.register(this._renderService.onRenderedViewportChange(A=>this._onRender.fire(A))),this.onResize(A=>this._renderService.resize(A.cols,A.rows)),this._compositionView=U.createElement("div"),this._compositionView.classList.add("composition-view"),this._compositionHelper=this._instantiationService.createInstance(s.CompositionHelper,this.textarea,this._compositionView),this._helperContainer.appendChild(this._compositionView),this.element.appendChild(B);try{this._onWillOpen.fire(this.element)}catch{}this._renderService.hasRenderer()||this._renderService.setRenderer(this._createRenderer()),this._mouseService=this._instantiationService.createInstance(v.MouseService),this._instantiationService.setService(g.IMouseService,this._mouseService),this.viewport=this._instantiationService.createInstance(p.Viewport,this._viewportElement,this._viewportScrollArea),this.viewport.onRequestScrollLines(A=>this.scrollLines(A.amount,A.suppressScrollEvent,1)),this.register(this._inputHandler.onRequestSyncScrollBar(()=>this.viewport.syncScrollArea())),this.register(this.viewport),this.register(this.onCursorMove(()=>{this._renderService.handleCursorMove(),this._syncTextArea()})),this.register(this.onResize(()=>this._renderService.handleResize(this.cols,this.rows))),this.register(this.onBlur(()=>this._renderService.handleBlur())),this.register(this.onFocus(()=>this._renderService.handleFocus())),this.register(this._renderService.onDimensionsChange(()=>this.viewport.syncScrollArea())),this._selectionService=this.register(this._instantiationService.createInstance(h.SelectionService,this.element,this.screenElement,this.linkifier2)),this._instantiationService.setService(g.ISelectionService,this._selectionService),this.register(this._selectionService.onRequestScrollLines(A=>this.scrollLines(A.amount,A.suppressScrollEvent))),this.register(this._selectionService.onSelectionChange(()=>this._onSelectionChange.fire())),this.register(this._selectionService.onRequestRedraw(A=>this._renderService.handleSelectionChanged(A.start,A.end,A.columnSelectMode))),this.register(this._selectionService.onLinuxMouseSelection(A=>{this.textarea.value=A,this.textarea.focus(),this.textarea.select()})),this.register(this._onScroll.event(A=>{this.viewport.syncScrollArea(),this._selectionService.refresh()})),this.register((0,u.addDisposableDomListener)(this._viewportElement,"scroll",()=>this._selectionService.refresh())),this.linkifier2.attachToDom(this.screenElement,this._mouseService,this._renderService),this.register(this._instantiationService.createInstance(_.BufferDecorationRenderer,this.screenElement)),this.register((0,u.addDisposableDomListener)(this.element,"mousedown",A=>this._selectionService.handleMouseDown(A))),this.coreMouseService.areMouseEventsActive?(this._selectionService.disable(),this.element.classList.add("enable-mouse-events")):this._selectionService.enable(),this.options.screenReaderMode&&(this._accessibilityManager.value=this._instantiationService.createInstance(H.AccessibilityManager,this)),this.register(this.optionsService.onSpecificOptionChange("screenReaderMode",A=>this._handleScreenReaderModeOptionChange(A))),this.options.overviewRulerWidth&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(e.OverviewRulerRenderer,this._viewportElement,this.screenElement))),this.optionsService.onSpecificOptionChange("overviewRulerWidth",A=>{!this._overviewRulerRenderer&&A&&this._viewportElement&&this.screenElement&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(e.OverviewRulerRenderer,this._viewportElement,this.screenElement)))}),this._charSizeService.measure(),this.refresh(0,this.rows-1),this._initGlobal(),this.bindMouse()}_createRenderer(){return this._instantiationService.createInstance(t.DomRenderer,this.element,this.screenElement,this._viewportElement,this.linkifier2)}bindMouse(){const S=this,R=this.element;function B(F){const j=S._mouseService.getMouseReportCoords(F,S.screenElement);if(!j)return!1;let q,V;switch(F.overrideType||F.type){case"mousemove":V=32,F.buttons===void 0?(q=3,F.button!==void 0&&(q=F.button<3?F.button:3)):q=1&F.buttons?0:4&F.buttons?1:2&F.buttons?2:3;break;case"mouseup":V=0,q=F.button<3?F.button:3;break;case"mousedown":V=1,q=F.button<3?F.button:3;break;case"wheel":if(S.viewport.getLinesScrolled(F)===0)return!1;V=F.deltaY<0?0:1,q=4;break;default:return!1}return!(V===void 0||q===void 0||q>4)&&S.coreMouseService.triggerMouseEvent({col:j.col,row:j.row,x:j.x,y:j.y,button:q,action:V,ctrl:F.ctrlKey,alt:F.altKey,shift:F.shiftKey})}const A={mouseup:null,wheel:null,mousedrag:null,mousemove:null},N={mouseup:F=>(B(F),F.buttons||(this._document.removeEventListener("mouseup",A.mouseup),A.mousedrag&&this._document.removeEventListener("mousemove",A.mousedrag)),this.cancel(F)),wheel:F=>(B(F),this.cancel(F,!0)),mousedrag:F=>{F.buttons&&B(F)},mousemove:F=>{F.buttons||B(F)}};this.register(this.coreMouseService.onProtocolChange(F=>{F?(this.optionsService.rawOptions.logLevel==="debug"&&this._logService.debug("Binding to mouse events:",this.coreMouseService.explainEvents(F)),this.element.classList.add("enable-mouse-events"),this._selectionService.disable()):(this._logService.debug("Unbinding from mouse events."),this.element.classList.remove("enable-mouse-events"),this._selectionService.enable()),8&F?A.mousemove||(R.addEventListener("mousemove",N.mousemove),A.mousemove=N.mousemove):(R.removeEventListener("mousemove",A.mousemove),A.mousemove=null),16&F?A.wheel||(R.addEventListener("wheel",N.wheel,{passive:!1}),A.wheel=N.wheel):(R.removeEventListener("wheel",A.wheel),A.wheel=null),2&F?A.mouseup||(R.addEventListener("mouseup",N.mouseup),A.mouseup=N.mouseup):(this._document.removeEventListener("mouseup",A.mouseup),R.removeEventListener("mouseup",A.mouseup),A.mouseup=null),4&F?A.mousedrag||(A.mousedrag=N.mousedrag):(this._document.removeEventListener("mousemove",A.mousedrag),A.mousedrag=null)})),this.coreMouseService.activeProtocol=this.coreMouseService.activeProtocol,this.register((0,u.addDisposableDomListener)(R,"mousedown",F=>{if(F.preventDefault(),this.focus(),this.coreMouseService.areMouseEventsActive&&!this._selectionService.shouldForceSelection(F))return B(F),A.mouseup&&this._document.addEventListener("mouseup",A.mouseup),A.mousedrag&&this._document.addEventListener("mousemove",A.mousedrag),this.cancel(F)})),this.register((0,u.addDisposableDomListener)(R,"wheel",F=>{if(!A.wheel){if(!this.buffer.hasScrollback){const j=this.viewport.getLinesScrolled(F);if(j===0)return;const q=M.C0.ESC+(this.coreService.decPrivateModes.applicationCursorKeys?"O":"[")+(F.deltaY<0?"A":"B");let V="";for(let Q=0;Q{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchStart(F),this.cancel(F)},{passive:!0})),this.register((0,u.addDisposableDomListener)(R,"touchmove",F=>{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchMove(F)?void 0:this.cancel(F)},{passive:!1}))}refresh(S,R){var B;(B=this._renderService)===null||B===void 0||B.refreshRows(S,R)}updateCursorStyle(S){var R;!((R=this._selectionService)===null||R===void 0)&&R.shouldColumnSelect(S)?this.element.classList.add("column-select"):this.element.classList.remove("column-select")}_showCursor(){this.coreService.isCursorInitialized||(this.coreService.isCursorInitialized=!0,this.refresh(this.buffer.y,this.buffer.y))}scrollLines(S,R,B=0){var A;B===1?(super.scrollLines(S,R,B),this.refresh(0,this.rows-1)):(A=this.viewport)===null||A===void 0||A.scrollLines(S)}paste(S){(0,l.paste)(S,this.textarea,this.coreService,this.optionsService)}attachCustomKeyEventHandler(S){this._customKeyEventHandler=S}registerLinkProvider(S){return this.linkifier2.registerLinkProvider(S)}registerCharacterJoiner(S){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");const R=this._characterJoinerService.register(S);return this.refresh(0,this.rows-1),R}deregisterCharacterJoiner(S){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");this._characterJoinerService.deregister(S)&&this.refresh(0,this.rows-1)}get markers(){return this.buffer.markers}registerMarker(S){return this.buffer.addMarker(this.buffer.ybase+this.buffer.y+S)}registerDecoration(S){return this._decorationService.registerDecoration(S)}hasSelection(){return!!this._selectionService&&this._selectionService.hasSelection}select(S,R,B){this._selectionService.setSelection(S,R,B)}getSelection(){return this._selectionService?this._selectionService.selectionText:""}getSelectionPosition(){if(this._selectionService&&this._selectionService.hasSelection)return{start:{x:this._selectionService.selectionStart[0],y:this._selectionService.selectionStart[1]},end:{x:this._selectionService.selectionEnd[0],y:this._selectionService.selectionEnd[1]}}}clearSelection(){var S;(S=this._selectionService)===null||S===void 0||S.clearSelection()}selectAll(){var S;(S=this._selectionService)===null||S===void 0||S.selectAll()}selectLines(S,R){var B;(B=this._selectionService)===null||B===void 0||B.selectLines(S,R)}_keyDown(S){if(this._keyDownHandled=!1,this._keyDownSeen=!0,this._customKeyEventHandler&&this._customKeyEventHandler(S)===!1)return!1;const R=this.browser.isMac&&this.options.macOptionIsMeta&&S.altKey;if(!R&&!this._compositionHelper.keydown(S))return this.options.scrollOnUserInput&&this.buffer.ybase!==this.buffer.ydisp&&this.scrollToBottom(),!1;R||S.key!=="Dead"&&S.key!=="AltGraph"||(this._unprocessedDeadKey=!0);const B=(0,C.evaluateKeyboardEvent)(S,this.coreService.decPrivateModes.applicationCursorKeys,this.browser.isMac,this.options.macOptionIsMeta);if(this.updateCursorStyle(S),B.type===3||B.type===2){const A=this.rows-1;return this.scrollLines(B.type===2?-A:A),this.cancel(S,!0)}return B.type===1&&this.selectAll(),!!this._isThirdLevelShift(this.browser,S)||(B.cancel&&this.cancel(S,!0),!B.key||!!(S.key&&!S.ctrlKey&&!S.altKey&&!S.metaKey&&S.key.length===1&&S.key.charCodeAt(0)>=65&&S.key.charCodeAt(0)<=90)||(this._unprocessedDeadKey?(this._unprocessedDeadKey=!1,!0):(B.key!==M.C0.ETX&&B.key!==M.C0.CR||(this.textarea.value=""),this._onKey.fire({key:B.key,domEvent:S}),this._showCursor(),this.coreService.triggerDataEvent(B.key,!0),!this.optionsService.rawOptions.screenReaderMode||S.altKey||S.ctrlKey?this.cancel(S,!0):void(this._keyDownHandled=!0))))}_isThirdLevelShift(S,R){const B=S.isMac&&!this.options.macOptionIsMeta&&R.altKey&&!R.ctrlKey&&!R.metaKey||S.isWindows&&R.altKey&&R.ctrlKey&&!R.metaKey||S.isWindows&&R.getModifierState("AltGraph");return R.type==="keypress"?B:B&&(!R.keyCode||R.keyCode>47)}_keyUp(S){this._keyDownSeen=!1,this._customKeyEventHandler&&this._customKeyEventHandler(S)===!1||(function(R){return R.keyCode===16||R.keyCode===17||R.keyCode===18}(S)||this.focus(),this.updateCursorStyle(S),this._keyPressHandled=!1)}_keyPress(S){let R;if(this._keyPressHandled=!1,this._keyDownHandled||this._customKeyEventHandler&&this._customKeyEventHandler(S)===!1)return!1;if(this.cancel(S),S.charCode)R=S.charCode;else if(S.which===null||S.which===void 0)R=S.keyCode;else{if(S.which===0||S.charCode===0)return!1;R=S.which}return!(!R||(S.altKey||S.ctrlKey||S.metaKey)&&!this._isThirdLevelShift(this.browser,S)||(R=String.fromCharCode(R),this._onKey.fire({key:R,domEvent:S}),this._showCursor(),this.coreService.triggerDataEvent(R,!0),this._keyPressHandled=!0,this._unprocessedDeadKey=!1,0))}_inputEvent(S){if(S.data&&S.inputType==="insertText"&&(!S.composed||!this._keyDownSeen)&&!this.optionsService.rawOptions.screenReaderMode){if(this._keyPressHandled)return!1;this._unprocessedDeadKey=!1;const R=S.data;return this.coreService.triggerDataEvent(R,!0),this.cancel(S),!0}return!1}resize(S,R){S!==this.cols||R!==this.rows?super.resize(S,R):this._charSizeService&&!this._charSizeService.hasValidSize&&this._charSizeService.measure()}_afterResize(S,R){var B,A;(B=this._charSizeService)===null||B===void 0||B.measure(),(A=this.viewport)===null||A===void 0||A.syncScrollArea(!0)}clear(){var S;if(this.buffer.ybase!==0||this.buffer.y!==0){this.buffer.clearAllMarkers(),this.buffer.lines.set(0,this.buffer.lines.get(this.buffer.ybase+this.buffer.y)),this.buffer.lines.length=1,this.buffer.ydisp=0,this.buffer.ybase=0,this.buffer.y=0;for(let R=1;R{Object.defineProperty(r,"__esModule",{value:!0}),r.TimeBasedDebouncer=void 0,r.TimeBasedDebouncer=class{constructor(a,l=1e3){this._renderCallback=a,this._debounceThresholdMS=l,this._lastRefreshMs=0,this._additionalRefreshRequested=!1}dispose(){this._refreshTimeoutID&&clearTimeout(this._refreshTimeoutID)}refresh(a,l,u){this._rowCount=u,a=a!==void 0?a:0,l=l!==void 0?l:this._rowCount-1,this._rowStart=this._rowStart!==void 0?Math.min(this._rowStart,a):a,this._rowEnd=this._rowEnd!==void 0?Math.max(this._rowEnd,l):l;const n=Date.now();if(n-this._lastRefreshMs>=this._debounceThresholdMS)this._lastRefreshMs=n,this._innerRefresh();else if(!this._additionalRefreshRequested){const d=n-this._lastRefreshMs,f=this._debounceThresholdMS-d;this._additionalRefreshRequested=!0,this._refreshTimeoutID=window.setTimeout(()=>{this._lastRefreshMs=Date.now(),this._innerRefresh(),this._additionalRefreshRequested=!1,this._refreshTimeoutID=void 0},f)}}_innerRefresh(){if(this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return;const a=Math.max(this._rowStart,0),l=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(a,l)}}},1680:function(I,r,a){var l=this&&this.__decorate||function(s,t,i,o){var c,v=arguments.length,m=v<3?t:o===null?o=Object.getOwnPropertyDescriptor(t,i):o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")m=Reflect.decorate(s,t,i,o);else for(var h=s.length-1;h>=0;h--)(c=s[h])&&(m=(v<3?c(m):v>3?c(t,i,m):c(t,i))||m);return v>3&&m&&Object.defineProperty(t,i,m),m},u=this&&this.__param||function(s,t){return function(i,o){t(i,o,s)}};Object.defineProperty(r,"__esModule",{value:!0}),r.Viewport=void 0;const n=a(3656),d=a(4725),f=a(8460),p=a(844),_=a(2585);let e=r.Viewport=class extends p.Disposable{constructor(s,t,i,o,c,v,m,h){super(),this._viewportElement=s,this._scrollArea=t,this._bufferService=i,this._optionsService=o,this._charSizeService=c,this._renderService=v,this._coreBrowserService=m,this.scrollBarWidth=0,this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._wheelPartialScroll=0,this._refreshAnimationFrame=null,this._ignoreNextScrollEvent=!1,this._smoothScrollState={startTime:0,origin:-1,target:-1},this._onRequestScrollLines=this.register(new f.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this.scrollBarWidth=this._viewportElement.offsetWidth-this._scrollArea.offsetWidth||15,this.register((0,n.addDisposableDomListener)(this._viewportElement,"scroll",this._handleScroll.bind(this))),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate(g=>this._activeBuffer=g.activeBuffer)),this._renderDimensions=this._renderService.dimensions,this.register(this._renderService.onDimensionsChange(g=>this._renderDimensions=g)),this._handleThemeChange(h.colors),this.register(h.onChangeColors(g=>this._handleThemeChange(g))),this.register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.syncScrollArea())),setTimeout(()=>this.syncScrollArea())}_handleThemeChange(s){this._viewportElement.style.backgroundColor=s.background.css}reset(){this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._coreBrowserService.window.requestAnimationFrame(()=>this.syncScrollArea())}_refresh(s){if(s)return this._innerRefresh(),void(this._refreshAnimationFrame!==null&&this._coreBrowserService.window.cancelAnimationFrame(this._refreshAnimationFrame));this._refreshAnimationFrame===null&&(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._charSizeService.height>0){this._currentRowHeight=this._renderService.dimensions.device.cell.height/this._coreBrowserService.dpr,this._currentDeviceCellHeight=this._renderService.dimensions.device.cell.height,this._lastRecordedViewportHeight=this._viewportElement.offsetHeight;const t=Math.round(this._currentRowHeight*this._lastRecordedBufferLength)+(this._lastRecordedViewportHeight-this._renderService.dimensions.css.canvas.height);this._lastRecordedBufferHeight!==t&&(this._lastRecordedBufferHeight=t,this._scrollArea.style.height=this._lastRecordedBufferHeight+"px")}const s=this._bufferService.buffer.ydisp*this._currentRowHeight;this._viewportElement.scrollTop!==s&&(this._ignoreNextScrollEvent=!0,this._viewportElement.scrollTop=s),this._refreshAnimationFrame=null}syncScrollArea(s=!1){if(this._lastRecordedBufferLength!==this._bufferService.buffer.lines.length)return this._lastRecordedBufferLength=this._bufferService.buffer.lines.length,void this._refresh(s);this._lastRecordedViewportHeight===this._renderService.dimensions.css.canvas.height&&this._lastScrollTop===this._activeBuffer.ydisp*this._currentRowHeight&&this._renderDimensions.device.cell.height===this._currentDeviceCellHeight||this._refresh(s)}_handleScroll(s){if(this._lastScrollTop=this._viewportElement.scrollTop,!this._viewportElement.offsetParent)return;if(this._ignoreNextScrollEvent)return this._ignoreNextScrollEvent=!1,void this._onRequestScrollLines.fire({amount:0,suppressScrollEvent:!0});const t=Math.round(this._lastScrollTop/this._currentRowHeight)-this._bufferService.buffer.ydisp;this._onRequestScrollLines.fire({amount:t,suppressScrollEvent:!0})}_smoothScroll(){if(this._isDisposed||this._smoothScrollState.origin===-1||this._smoothScrollState.target===-1)return;const s=this._smoothScrollPercent();this._viewportElement.scrollTop=this._smoothScrollState.origin+Math.round(s*(this._smoothScrollState.target-this._smoothScrollState.origin)),s<1?this._coreBrowserService.window.requestAnimationFrame(()=>this._smoothScroll()):this._clearSmoothScrollState()}_smoothScrollPercent(){return this._optionsService.rawOptions.smoothScrollDuration&&this._smoothScrollState.startTime?Math.max(Math.min((Date.now()-this._smoothScrollState.startTime)/this._optionsService.rawOptions.smoothScrollDuration,1),0):1}_clearSmoothScrollState(){this._smoothScrollState.startTime=0,this._smoothScrollState.origin=-1,this._smoothScrollState.target=-1}_bubbleScroll(s,t){const i=this._viewportElement.scrollTop+this._lastRecordedViewportHeight;return!(t<0&&this._viewportElement.scrollTop!==0||t>0&&i0&&(o=y),c=""}}return{bufferElements:v,cursorElement:o}}getLinesScrolled(s){if(s.deltaY===0||s.shiftKey)return 0;let t=this._applyScrollModifier(s.deltaY,s);return s.deltaMode===WheelEvent.DOM_DELTA_PIXEL?(t/=this._currentRowHeight+0,this._wheelPartialScroll+=t,t=Math.floor(Math.abs(this._wheelPartialScroll))*(this._wheelPartialScroll>0?1:-1),this._wheelPartialScroll%=1):s.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(t*=this._bufferService.rows),t}_applyScrollModifier(s,t){const i=this._optionsService.rawOptions.fastScrollModifier;return i==="alt"&&t.altKey||i==="ctrl"&&t.ctrlKey||i==="shift"&&t.shiftKey?s*this._optionsService.rawOptions.fastScrollSensitivity*this._optionsService.rawOptions.scrollSensitivity:s*this._optionsService.rawOptions.scrollSensitivity}handleTouchStart(s){this._lastTouchY=s.touches[0].pageY}handleTouchMove(s){const t=this._lastTouchY-s.touches[0].pageY;return this._lastTouchY=s.touches[0].pageY,t!==0&&(this._viewportElement.scrollTop+=t,this._bubbleScroll(s,t))}};r.Viewport=e=l([u(2,_.IBufferService),u(3,_.IOptionsService),u(4,d.ICharSizeService),u(5,d.IRenderService),u(6,d.ICoreBrowserService),u(7,d.IThemeService)],e)},3107:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.BufferDecorationRenderer=void 0;const n=a(3656),d=a(4725),f=a(844),p=a(2585);let _=r.BufferDecorationRenderer=class extends f.Disposable{constructor(e,s,t,i){super(),this._screenElement=e,this._bufferService=s,this._decorationService=t,this._renderService=i,this._decorationElements=new Map,this._altBufferIsActive=!1,this._dimensionsChanged=!1,this._container=document.createElement("div"),this._container.classList.add("xterm-decoration-container"),this._screenElement.appendChild(this._container),this.register(this._renderService.onRenderedViewportChange(()=>this._doRefreshDecorations())),this.register(this._renderService.onDimensionsChange(()=>{this._dimensionsChanged=!0,this._queueRefresh()})),this.register((0,n.addDisposableDomListener)(window,"resize",()=>this._queueRefresh())),this.register(this._bufferService.buffers.onBufferActivate(()=>{this._altBufferIsActive=this._bufferService.buffer===this._bufferService.buffers.alt})),this.register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh())),this.register(this._decorationService.onDecorationRemoved(o=>this._removeDecoration(o))),this.register((0,f.toDisposable)(()=>{this._container.remove(),this._decorationElements.clear()}))}_queueRefresh(){this._animationFrame===void 0&&(this._animationFrame=this._renderService.addRefreshCallback(()=>{this._doRefreshDecorations(),this._animationFrame=void 0}))}_doRefreshDecorations(){for(const e of this._decorationService.decorations)this._renderDecoration(e);this._dimensionsChanged=!1}_renderDecoration(e){this._refreshStyle(e),this._dimensionsChanged&&this._refreshXPosition(e)}_createElement(e){var s,t;const i=document.createElement("div");i.classList.add("xterm-decoration"),i.classList.toggle("xterm-decoration-top-layer",((s=e==null?void 0:e.options)===null||s===void 0?void 0:s.layer)==="top"),i.style.width=`${Math.round((e.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,i.style.height=(e.options.height||1)*this._renderService.dimensions.css.cell.height+"px",i.style.top=(e.marker.line-this._bufferService.buffers.active.ydisp)*this._renderService.dimensions.css.cell.height+"px",i.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`;const o=(t=e.options.x)!==null&&t!==void 0?t:0;return o&&o>this._bufferService.cols&&(i.style.display="none"),this._refreshXPosition(e,i),i}_refreshStyle(e){const s=e.marker.line-this._bufferService.buffers.active.ydisp;if(s<0||s>=this._bufferService.rows)e.element&&(e.element.style.display="none",e.onRenderEmitter.fire(e.element));else{let t=this._decorationElements.get(e);t||(t=this._createElement(e),e.element=t,this._decorationElements.set(e,t),this._container.appendChild(t),e.onDispose(()=>{this._decorationElements.delete(e),t.remove()})),t.style.top=s*this._renderService.dimensions.css.cell.height+"px",t.style.display=this._altBufferIsActive?"none":"block",e.onRenderEmitter.fire(t)}}_refreshXPosition(e,s=e.element){var t;if(!s)return;const i=(t=e.options.x)!==null&&t!==void 0?t:0;(e.options.anchor||"left")==="right"?s.style.right=i?i*this._renderService.dimensions.css.cell.width+"px":"":s.style.left=i?i*this._renderService.dimensions.css.cell.width+"px":""}_removeDecoration(e){var s;(s=this._decorationElements.get(e))===null||s===void 0||s.remove(),this._decorationElements.delete(e),e.dispose()}};r.BufferDecorationRenderer=_=l([u(1,p.IBufferService),u(2,p.IDecorationService),u(3,d.IRenderService)],_)},5871:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ColorZoneStore=void 0,r.ColorZoneStore=class{constructor(){this._zones=[],this._zonePool=[],this._zonePoolIndex=0,this._linePadding={full:0,left:0,center:0,right:0}}get zones(){return this._zonePool.length=Math.min(this._zonePool.length,this._zones.length),this._zones}clear(){this._zones.length=0,this._zonePoolIndex=0}addDecoration(a){if(a.options.overviewRulerOptions){for(const l of this._zones)if(l.color===a.options.overviewRulerOptions.color&&l.position===a.options.overviewRulerOptions.position){if(this._lineIntersectsZone(l,a.marker.line))return;if(this._lineAdjacentToZone(l,a.marker.line,a.options.overviewRulerOptions.position))return void this._addLineToZone(l,a.marker.line)}if(this._zonePoolIndex=a.startBufferLine&&l<=a.endBufferLine}_lineAdjacentToZone(a,l,u){return l>=a.startBufferLine-this._linePadding[u||"full"]&&l<=a.endBufferLine+this._linePadding[u||"full"]}_addLineToZone(a,l){a.startBufferLine=Math.min(a.startBufferLine,l),a.endBufferLine=Math.max(a.endBufferLine,l)}}},5744:function(I,r,a){var l=this&&this.__decorate||function(o,c,v,m){var h,g=arguments.length,b=g<3?c:m===null?m=Object.getOwnPropertyDescriptor(c,v):m;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")b=Reflect.decorate(o,c,v,m);else for(var L=o.length-1;L>=0;L--)(h=o[L])&&(b=(g<3?h(b):g>3?h(c,v,b):h(c,v))||b);return g>3&&b&&Object.defineProperty(c,v,b),b},u=this&&this.__param||function(o,c){return function(v,m){c(v,m,o)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OverviewRulerRenderer=void 0;const n=a(5871),d=a(3656),f=a(4725),p=a(844),_=a(2585),e={full:0,left:0,center:0,right:0},s={full:0,left:0,center:0,right:0},t={full:0,left:0,center:0,right:0};let i=r.OverviewRulerRenderer=class extends p.Disposable{get _width(){return this._optionsService.options.overviewRulerWidth||0}constructor(o,c,v,m,h,g,b){var L;super(),this._viewportElement=o,this._screenElement=c,this._bufferService=v,this._decorationService=m,this._renderService=h,this._optionsService=g,this._coreBrowseService=b,this._colorZoneStore=new n.ColorZoneStore,this._shouldUpdateDimensions=!0,this._shouldUpdateAnchor=!0,this._lastKnownBufferLength=0,this._canvas=document.createElement("canvas"),this._canvas.classList.add("xterm-decoration-overview-ruler"),this._refreshCanvasDimensions(),(L=this._viewportElement.parentElement)===null||L===void 0||L.insertBefore(this._canvas,this._viewportElement);const y=this._canvas.getContext("2d");if(!y)throw new Error("Ctx cannot be null");this._ctx=y,this._registerDecorationListeners(),this._registerBufferChangeListeners(),this._registerDimensionChangeListeners(),this.register((0,p.toDisposable)(()=>{var k;(k=this._canvas)===null||k===void 0||k.remove()}))}_registerDecorationListeners(){this.register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh(void 0,!0))),this.register(this._decorationService.onDecorationRemoved(()=>this._queueRefresh(void 0,!0)))}_registerBufferChangeListeners(){this.register(this._renderService.onRenderedViewportChange(()=>this._queueRefresh())),this.register(this._bufferService.buffers.onBufferActivate(()=>{this._canvas.style.display=this._bufferService.buffer===this._bufferService.buffers.alt?"none":"block"})),this.register(this._bufferService.onScroll(()=>{this._lastKnownBufferLength!==this._bufferService.buffers.normal.lines.length&&(this._refreshDrawHeightConstants(),this._refreshColorZonePadding())}))}_registerDimensionChangeListeners(){this.register(this._renderService.onRender(()=>{this._containerHeight&&this._containerHeight===this._screenElement.clientHeight||(this._queueRefresh(!0),this._containerHeight=this._screenElement.clientHeight)})),this.register(this._optionsService.onSpecificOptionChange("overviewRulerWidth",()=>this._queueRefresh(!0))),this.register((0,d.addDisposableDomListener)(this._coreBrowseService.window,"resize",()=>this._queueRefresh(!0))),this._queueRefresh(!0)}_refreshDrawConstants(){const o=Math.floor(this._canvas.width/3),c=Math.ceil(this._canvas.width/3);s.full=this._canvas.width,s.left=o,s.center=c,s.right=o,this._refreshDrawHeightConstants(),t.full=0,t.left=0,t.center=s.left,t.right=s.left+s.center}_refreshDrawHeightConstants(){e.full=Math.round(2*this._coreBrowseService.dpr);const o=this._canvas.height/this._bufferService.buffer.lines.length,c=Math.round(Math.max(Math.min(o,12),6)*this._coreBrowseService.dpr);e.left=c,e.center=c,e.right=c}_refreshColorZonePadding(){this._colorZoneStore.setPadding({full:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.full),left:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.left),center:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.center),right:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*e.right)}),this._lastKnownBufferLength=this._bufferService.buffers.normal.lines.length}_refreshCanvasDimensions(){this._canvas.style.width=`${this._width}px`,this._canvas.width=Math.round(this._width*this._coreBrowseService.dpr),this._canvas.style.height=`${this._screenElement.clientHeight}px`,this._canvas.height=Math.round(this._screenElement.clientHeight*this._coreBrowseService.dpr),this._refreshDrawConstants(),this._refreshColorZonePadding()}_refreshDecorations(){this._shouldUpdateDimensions&&this._refreshCanvasDimensions(),this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height),this._colorZoneStore.clear();for(const c of this._decorationService.decorations)this._colorZoneStore.addDecoration(c);this._ctx.lineWidth=1;const o=this._colorZoneStore.zones;for(const c of o)c.position!=="full"&&this._renderColorZone(c);for(const c of o)c.position==="full"&&this._renderColorZone(c);this._shouldUpdateDimensions=!1,this._shouldUpdateAnchor=!1}_renderColorZone(o){this._ctx.fillStyle=o.color,this._ctx.fillRect(t[o.position||"full"],Math.round((this._canvas.height-1)*(o.startBufferLine/this._bufferService.buffers.active.lines.length)-e[o.position||"full"]/2),s[o.position||"full"],Math.round((this._canvas.height-1)*((o.endBufferLine-o.startBufferLine)/this._bufferService.buffers.active.lines.length)+e[o.position||"full"]))}_queueRefresh(o,c){this._shouldUpdateDimensions=o||this._shouldUpdateDimensions,this._shouldUpdateAnchor=c||this._shouldUpdateAnchor,this._animationFrame===void 0&&(this._animationFrame=this._coreBrowseService.window.requestAnimationFrame(()=>{this._refreshDecorations(),this._animationFrame=void 0}))}};r.OverviewRulerRenderer=i=l([u(2,_.IBufferService),u(3,_.IDecorationService),u(4,f.IRenderService),u(5,_.IOptionsService),u(6,f.ICoreBrowserService)],i)},2950:function(I,r,a){var l=this&&this.__decorate||function(_,e,s,t){var i,o=arguments.length,c=o<3?e:t===null?t=Object.getOwnPropertyDescriptor(e,s):t;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(_,e,s,t);else for(var v=_.length-1;v>=0;v--)(i=_[v])&&(c=(o<3?i(c):o>3?i(e,s,c):i(e,s))||c);return o>3&&c&&Object.defineProperty(e,s,c),c},u=this&&this.__param||function(_,e){return function(s,t){e(s,t,_)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CompositionHelper=void 0;const n=a(4725),d=a(2585),f=a(2584);let p=r.CompositionHelper=class{get isComposing(){return this._isComposing}constructor(_,e,s,t,i,o){this._textarea=_,this._compositionView=e,this._bufferService=s,this._optionsService=t,this._coreService=i,this._renderService=o,this._isComposing=!1,this._isSendingComposition=!1,this._compositionPosition={start:0,end:0},this._dataAlreadySent=""}compositionstart(){this._isComposing=!0,this._compositionPosition.start=this._textarea.value.length,this._compositionView.textContent="",this._dataAlreadySent="",this._compositionView.classList.add("active")}compositionupdate(_){this._compositionView.textContent=_.data,this.updateCompositionElements(),setTimeout(()=>{this._compositionPosition.end=this._textarea.value.length},0)}compositionend(){this._finalizeComposition(!0)}keydown(_){if(this._isComposing||this._isSendingComposition){if(_.keyCode===229||_.keyCode===16||_.keyCode===17||_.keyCode===18)return!1;this._finalizeComposition(!1)}return _.keyCode!==229||(this._handleAnyTextareaChanges(),!1)}_finalizeComposition(_){if(this._compositionView.classList.remove("active"),this._isComposing=!1,_){const e={start:this._compositionPosition.start,end:this._compositionPosition.end};this._isSendingComposition=!0,setTimeout(()=>{if(this._isSendingComposition){let s;this._isSendingComposition=!1,e.start+=this._dataAlreadySent.length,s=this._isComposing?this._textarea.value.substring(e.start,e.end):this._textarea.value.substring(e.start),s.length>0&&this._coreService.triggerDataEvent(s,!0)}},0)}else{this._isSendingComposition=!1;const e=this._textarea.value.substring(this._compositionPosition.start,this._compositionPosition.end);this._coreService.triggerDataEvent(e,!0)}}_handleAnyTextareaChanges(){const _=this._textarea.value;setTimeout(()=>{if(!this._isComposing){const e=this._textarea.value,s=e.replace(_,"");this._dataAlreadySent=s,e.length>_.length?this._coreService.triggerDataEvent(s,!0):e.length<_.length?this._coreService.triggerDataEvent(`${f.C0.DEL}`,!0):e.length===_.length&&e!==_&&this._coreService.triggerDataEvent(e,!0)}},0)}updateCompositionElements(_){if(this._isComposing){if(this._bufferService.buffer.isCursorInViewport){const e=Math.min(this._bufferService.buffer.x,this._bufferService.cols-1),s=this._renderService.dimensions.css.cell.height,t=this._bufferService.buffer.y*this._renderService.dimensions.css.cell.height,i=e*this._renderService.dimensions.css.cell.width;this._compositionView.style.left=i+"px",this._compositionView.style.top=t+"px",this._compositionView.style.height=s+"px",this._compositionView.style.lineHeight=s+"px",this._compositionView.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._compositionView.style.fontSize=this._optionsService.rawOptions.fontSize+"px";const o=this._compositionView.getBoundingClientRect();this._textarea.style.left=i+"px",this._textarea.style.top=t+"px",this._textarea.style.width=Math.max(o.width,1)+"px",this._textarea.style.height=Math.max(o.height,1)+"px",this._textarea.style.lineHeight=o.height+"px"}_||setTimeout(()=>this.updateCompositionElements(!0),0)}}};r.CompositionHelper=p=l([u(2,d.IBufferService),u(3,d.IOptionsService),u(4,d.ICoreService),u(5,n.IRenderService)],p)},9806:(I,r)=>{function a(l,u,n){const d=n.getBoundingClientRect(),f=l.getComputedStyle(n),p=parseInt(f.getPropertyValue("padding-left")),_=parseInt(f.getPropertyValue("padding-top"));return[u.clientX-d.left-p,u.clientY-d.top-_]}Object.defineProperty(r,"__esModule",{value:!0}),r.getCoords=r.getCoordsRelativeToElement=void 0,r.getCoordsRelativeToElement=a,r.getCoords=function(l,u,n,d,f,p,_,e,s){if(!p)return;const t=a(l,u,n);return t?(t[0]=Math.ceil((t[0]+(s?_/2:0))/_),t[1]=Math.ceil(t[1]/e),t[0]=Math.min(Math.max(t[0],1),d+(s?1:0)),t[1]=Math.min(Math.max(t[1],1),f),t):void 0}},9504:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.moveToCellSequence=void 0;const l=a(2584);function u(e,s,t,i){const o=e-n(e,t),c=s-n(s,t),v=Math.abs(o-c)-function(m,h,g){let b=0;const L=m-n(m,g),y=h-n(h,g);for(let k=0;k=0&&es?"A":"B"}function f(e,s,t,i,o,c){let v=e,m=s,h="";for(;v!==t||m!==i;)v+=o?1:-1,o&&v>c.cols-1?(h+=c.buffer.translateBufferLineToString(m,!1,e,v),v=0,e=0,m++):!o&&v<0&&(h+=c.buffer.translateBufferLineToString(m,!1,0,e+1),v=c.cols-1,e=v,m--);return h+c.buffer.translateBufferLineToString(m,!1,e,v)}function p(e,s){const t=s?"O":"[";return l.C0.ESC+t+e}function _(e,s){e=Math.floor(e);let t="";for(let i=0;i0?L-n(L,y):g;const T=L,O=function(M,C,w,E,D,P){let H;return H=u(w,E,D,P).length>0?E-n(E,D):C,M=w&&He?"D":"C",_(Math.abs(o-e),p(v,i));v=c>s?"D":"C";const m=Math.abs(c-s);return _(function(h,g){return g.cols-h}(c>s?e:o,t)+(m-1)*t.cols+1+((c>s?o:e)-1),p(v,i))}},1296:function(I,r,a){var l=this&&this.__decorate||function(y,k,x,T){var O,M=arguments.length,C=M<3?k:T===null?T=Object.getOwnPropertyDescriptor(k,x):T;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")C=Reflect.decorate(y,k,x,T);else for(var w=y.length-1;w>=0;w--)(O=y[w])&&(C=(M<3?O(C):M>3?O(k,x,C):O(k,x))||C);return M>3&&C&&Object.defineProperty(k,x,C),C},u=this&&this.__param||function(y,k){return function(x,T){k(x,T,y)}};Object.defineProperty(r,"__esModule",{value:!0}),r.DomRenderer=void 0;const n=a(3787),d=a(2550),f=a(2223),p=a(6171),_=a(4725),e=a(8055),s=a(8460),t=a(844),i=a(2585),o="xterm-dom-renderer-owner-",c="xterm-rows",v="xterm-fg-",m="xterm-bg-",h="xterm-focus",g="xterm-selection";let b=1,L=r.DomRenderer=class extends t.Disposable{constructor(y,k,x,T,O,M,C,w,E,D){super(),this._element=y,this._screenElement=k,this._viewportElement=x,this._linkifier2=T,this._charSizeService=M,this._optionsService=C,this._bufferService=w,this._coreBrowserService=E,this._themeService=D,this._terminalClass=b++,this._rowElements=[],this.onRequestRedraw=this.register(new s.EventEmitter).event,this._rowContainer=document.createElement("div"),this._rowContainer.classList.add(c),this._rowContainer.style.lineHeight="normal",this._rowContainer.setAttribute("aria-hidden","true"),this._refreshRowElements(this._bufferService.cols,this._bufferService.rows),this._selectionContainer=document.createElement("div"),this._selectionContainer.classList.add(g),this._selectionContainer.setAttribute("aria-hidden","true"),this.dimensions=(0,p.createRenderDimensions)(),this._updateDimensions(),this.register(this._optionsService.onOptionChange(()=>this._handleOptionsChanged())),this.register(this._themeService.onChangeColors(P=>this._injectCss(P))),this._injectCss(this._themeService.colors),this._rowFactory=O.createInstance(n.DomRendererRowFactory,document),this._element.classList.add(o+this._terminalClass),this._screenElement.appendChild(this._rowContainer),this._screenElement.appendChild(this._selectionContainer),this.register(this._linkifier2.onShowLinkUnderline(P=>this._handleLinkHover(P))),this.register(this._linkifier2.onHideLinkUnderline(P=>this._handleLinkLeave(P))),this.register((0,t.toDisposable)(()=>{this._element.classList.remove(o+this._terminalClass),this._rowContainer.remove(),this._selectionContainer.remove(),this._widthCache.dispose(),this._themeStyleElement.remove(),this._dimensionsStyleElement.remove()})),this._widthCache=new d.WidthCache(document),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}_updateDimensions(){const y=this._coreBrowserService.dpr;this.dimensions.device.char.width=this._charSizeService.width*y,this.dimensions.device.char.height=Math.ceil(this._charSizeService.height*y),this.dimensions.device.cell.width=this.dimensions.device.char.width+Math.round(this._optionsService.rawOptions.letterSpacing),this.dimensions.device.cell.height=Math.floor(this.dimensions.device.char.height*this._optionsService.rawOptions.lineHeight),this.dimensions.device.char.left=0,this.dimensions.device.char.top=0,this.dimensions.device.canvas.width=this.dimensions.device.cell.width*this._bufferService.cols,this.dimensions.device.canvas.height=this.dimensions.device.cell.height*this._bufferService.rows,this.dimensions.css.canvas.width=Math.round(this.dimensions.device.canvas.width/y),this.dimensions.css.canvas.height=Math.round(this.dimensions.device.canvas.height/y),this.dimensions.css.cell.width=this.dimensions.css.canvas.width/this._bufferService.cols,this.dimensions.css.cell.height=this.dimensions.css.canvas.height/this._bufferService.rows;for(const x of this._rowElements)x.style.width=`${this.dimensions.css.canvas.width}px`,x.style.height=`${this.dimensions.css.cell.height}px`,x.style.lineHeight=`${this.dimensions.css.cell.height}px`,x.style.overflow="hidden";this._dimensionsStyleElement||(this._dimensionsStyleElement=document.createElement("style"),this._screenElement.appendChild(this._dimensionsStyleElement));const k=`${this._terminalSelector} .${c} span { display: inline-block; height: 100%; vertical-align: top;}`;this._dimensionsStyleElement.textContent=k,this._selectionContainer.style.height=this._viewportElement.style.height,this._screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._screenElement.style.height=`${this.dimensions.css.canvas.height}px`}_injectCss(y){this._themeStyleElement||(this._themeStyleElement=document.createElement("style"),this._screenElement.appendChild(this._themeStyleElement));let k=`${this._terminalSelector} .${c} { color: ${y.foreground.css}; font-family: ${this._optionsService.rawOptions.fontFamily}; font-size: ${this._optionsService.rawOptions.fontSize}px; font-kerning: none; white-space: pre}`;k+=`${this._terminalSelector} .${c} .xterm-dim { color: ${e.color.multiplyOpacity(y.foreground,.5).css};}`,k+=`${this._terminalSelector} span:not(.xterm-bold) { font-weight: ${this._optionsService.rawOptions.fontWeight};}${this._terminalSelector} span.xterm-bold { font-weight: ${this._optionsService.rawOptions.fontWeightBold};}${this._terminalSelector} span.xterm-italic { font-style: italic;}`,k+="@keyframes blink_box_shadow_"+this._terminalClass+" { 50% { border-bottom-style: hidden; }}",k+="@keyframes blink_block_"+this._terminalClass+` { 0% { background-color: ${y.cursor.css}; color: ${y.cursorAccent.css}; } 50% { background-color: inherit; color: ${y.cursor.css}; }}`,k+=`${this._terminalSelector} .${c}.${h} .xterm-cursor.xterm-cursor-blink:not(.xterm-cursor-block) { animation: blink_box_shadow_`+this._terminalClass+` 1s step-end infinite;}${this._terminalSelector} .${c}.${h} .xterm-cursor.xterm-cursor-blink.xterm-cursor-block { animation: blink_block_`+this._terminalClass+` 1s step-end infinite;}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-block { background-color: ${y.cursor.css}; color: ${y.cursorAccent.css};}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-outline { outline: 1px solid ${y.cursor.css}; outline-offset: -1px;}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-bar { box-shadow: ${this._optionsService.rawOptions.cursorWidth}px 0 0 ${y.cursor.css} inset;}${this._terminalSelector} .${c} .xterm-cursor.xterm-cursor-underline { border-bottom: 1px ${y.cursor.css}; border-bottom-style: solid; height: calc(100% - 1px);}`,k+=`${this._terminalSelector} .${g} { position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none;}${this._terminalSelector}.focus .${g} div { position: absolute; background-color: ${y.selectionBackgroundOpaque.css};}${this._terminalSelector} .${g} div { position: absolute; background-color: ${y.selectionInactiveBackgroundOpaque.css};}`;for(const[x,T]of y.ansi.entries())k+=`${this._terminalSelector} .${v}${x} { color: ${T.css}; }${this._terminalSelector} .${v}${x}.xterm-dim { color: ${e.color.multiplyOpacity(T,.5).css}; }${this._terminalSelector} .${m}${x} { background-color: ${T.css}; }`;k+=`${this._terminalSelector} .${v}${f.INVERTED_DEFAULT_COLOR} { color: ${e.color.opaque(y.background).css}; }${this._terminalSelector} .${v}${f.INVERTED_DEFAULT_COLOR}.xterm-dim { color: ${e.color.multiplyOpacity(e.color.opaque(y.background),.5).css}; }${this._terminalSelector} .${m}${f.INVERTED_DEFAULT_COLOR} { background-color: ${y.foreground.css}; }`,this._themeStyleElement.textContent=k}_setDefaultSpacing(){const y=this.dimensions.css.cell.width-this._widthCache.get("W",!1,!1);this._rowContainer.style.letterSpacing=`${y}px`,this._rowFactory.defaultSpacing=y}handleDevicePixelRatioChange(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}_refreshRowElements(y,k){for(let x=this._rowElements.length;x<=k;x++){const T=document.createElement("div");this._rowContainer.appendChild(T),this._rowElements.push(T)}for(;this._rowElements.length>k;)this._rowContainer.removeChild(this._rowElements.pop())}handleResize(y,k){this._refreshRowElements(y,k),this._updateDimensions()}handleCharSizeChanged(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}handleBlur(){this._rowContainer.classList.remove(h)}handleFocus(){this._rowContainer.classList.add(h),this.renderRows(this._bufferService.buffer.y,this._bufferService.buffer.y)}handleSelectionChanged(y,k,x){if(this._selectionContainer.replaceChildren(),this._rowFactory.handleSelectionChanged(y,k,x),this.renderRows(0,this._bufferService.rows-1),!y||!k)return;const T=y[1]-this._bufferService.buffer.ydisp,O=k[1]-this._bufferService.buffer.ydisp,M=Math.max(T,0),C=Math.min(O,this._bufferService.rows-1);if(M>=this._bufferService.rows||C<0)return;const w=document.createDocumentFragment();if(x){const E=y[0]>k[0];w.appendChild(this._createSelectionElement(M,E?k[0]:y[0],E?y[0]:k[0],C-M+1))}else{const E=T===M?y[0]:0,D=M===O?k[0]:this._bufferService.cols;w.appendChild(this._createSelectionElement(M,E,D));const P=C-M-1;if(w.appendChild(this._createSelectionElement(M+1,0,this._bufferService.cols,P)),M!==C){const H=O===C?k[0]:this._bufferService.cols;w.appendChild(this._createSelectionElement(C,0,H))}}this._selectionContainer.appendChild(w)}_createSelectionElement(y,k,x,T=1){const O=document.createElement("div");return O.style.height=T*this.dimensions.css.cell.height+"px",O.style.top=y*this.dimensions.css.cell.height+"px",O.style.left=k*this.dimensions.css.cell.width+"px",O.style.width=this.dimensions.css.cell.width*(x-k)+"px",O}handleCursorMove(){}_handleOptionsChanged(){this._updateDimensions(),this._injectCss(this._themeService.colors),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}clear(){for(const y of this._rowElements)y.replaceChildren()}renderRows(y,k){const x=this._bufferService.buffer,T=x.ybase+x.y,O=Math.min(x.x,this._bufferService.cols-1),M=this._optionsService.rawOptions.cursorBlink,C=this._optionsService.rawOptions.cursorStyle,w=this._optionsService.rawOptions.cursorInactiveStyle;for(let E=y;E<=k;E++){const D=E+x.ydisp,P=this._rowElements[E],H=x.lines.get(D);if(!P||!H)break;P.replaceChildren(...this._rowFactory.createRow(H,D,D===T,C,w,O,M,this.dimensions.css.cell.width,this._widthCache,-1,-1))}}get _terminalSelector(){return`.${o}${this._terminalClass}`}_handleLinkHover(y){this._setCellUnderline(y.x1,y.x2,y.y1,y.y2,y.cols,!0)}_handleLinkLeave(y){this._setCellUnderline(y.x1,y.x2,y.y1,y.y2,y.cols,!1)}_setCellUnderline(y,k,x,T,O,M){x<0&&(y=0),T<0&&(k=0);const C=this._bufferService.rows-1;x=Math.max(Math.min(x,C),0),T=Math.max(Math.min(T,C),0),O=Math.min(O,this._bufferService.cols);const w=this._bufferService.buffer,E=w.ybase+w.y,D=Math.min(w.x,O-1),P=this._optionsService.rawOptions.cursorBlink,H=this._optionsService.rawOptions.cursorStyle,U=this._optionsService.rawOptions.cursorInactiveStyle;for(let W=x;W<=T;++W){const z=W+w.ydisp,S=this._rowElements[W],R=w.lines.get(z);if(!S||!R)break;S.replaceChildren(...this._rowFactory.createRow(R,z,z===E,H,U,D,P,this.dimensions.css.cell.width,this._widthCache,M?W===x?y:0:-1,M?(W===T?k:O)-1:-1))}}};r.DomRenderer=L=l([u(4,i.IInstantiationService),u(5,_.ICharSizeService),u(6,i.IOptionsService),u(7,i.IBufferService),u(8,_.ICoreBrowserService),u(9,_.IThemeService)],L)},3787:function(I,r,a){var l=this&&this.__decorate||function(v,m,h,g){var b,L=arguments.length,y=L<3?m:g===null?g=Object.getOwnPropertyDescriptor(m,h):g;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")y=Reflect.decorate(v,m,h,g);else for(var k=v.length-1;k>=0;k--)(b=v[k])&&(y=(L<3?b(y):L>3?b(m,h,y):b(m,h))||y);return L>3&&y&&Object.defineProperty(m,h,y),y},u=this&&this.__param||function(v,m){return function(h,g){m(h,g,v)}};Object.defineProperty(r,"__esModule",{value:!0}),r.DomRendererRowFactory=void 0;const n=a(2223),d=a(643),f=a(511),p=a(2585),_=a(8055),e=a(4725),s=a(4269),t=a(6171),i=a(3734);let o=r.DomRendererRowFactory=class{constructor(v,m,h,g,b,L,y){this._document=v,this._characterJoinerService=m,this._optionsService=h,this._coreBrowserService=g,this._coreService=b,this._decorationService=L,this._themeService=y,this._workCell=new f.CellData,this._columnSelectMode=!1,this.defaultSpacing=0}handleSelectionChanged(v,m,h){this._selectionStart=v,this._selectionEnd=m,this._columnSelectMode=h}createRow(v,m,h,g,b,L,y,k,x,T,O){const M=[],C=this._characterJoinerService.getJoinedCharacters(m),w=this._themeService.colors;let E,D=v.getNoBgTrimmedLength();h&&D0&&j===C[0][0]){V=!0;const K=C.shift();$=new s.JoinedCellData(this._workCell,v.translateToString(!0,K[0],K[1]),K[1]-K[0]),Q=K[1]-1,q=$.getWidth()}const ee=this._isCellInSelection(j,m),ae=h&&j===L,he=F&&j>=T&&j<=O;let ce=!1;this._decorationService.forEachDecorationAtCell(j,m,void 0,K=>{ce=!0});let ne=$.getChars()||d.WHITESPACE_CELL_CHAR;if(ne===" "&&($.isUnderline()||$.isOverline())&&(ne=" "),A=q*k-x.get(ne,$.isBold(),$.isItalic()),E){if(P&&(ee&&B||!ee&&!B&&$.bg===U)&&(ee&&B&&w.selectionForeground||$.fg===W)&&$.extended.ext===z&&he===S&&A===R&&!ae&&!V&&!ce){H+=ne,P++;continue}P&&(E.textContent=H),E=this._document.createElement("span"),P=0,H=""}else E=this._document.createElement("span");if(U=$.bg,W=$.fg,z=$.extended.ext,S=he,R=A,B=ee,V&&L>=j&&L<=Q&&(L=j),!this._coreService.isCursorHidden&&ae){if(N.push("xterm-cursor"),this._coreBrowserService.isFocused)y&&N.push("xterm-cursor-blink"),N.push(g==="bar"?"xterm-cursor-bar":g==="underline"?"xterm-cursor-underline":"xterm-cursor-block");else if(b)switch(b){case"outline":N.push("xterm-cursor-outline");break;case"block":N.push("xterm-cursor-block");break;case"bar":N.push("xterm-cursor-bar");break;case"underline":N.push("xterm-cursor-underline")}}if($.isBold()&&N.push("xterm-bold"),$.isItalic()&&N.push("xterm-italic"),$.isDim()&&N.push("xterm-dim"),H=$.isInvisible()?d.WHITESPACE_CELL_CHAR:$.getChars()||d.WHITESPACE_CELL_CHAR,$.isUnderline()&&(N.push(`xterm-underline-${$.extended.underlineStyle}`),H===" "&&(H=" "),!$.isUnderlineColorDefault()))if($.isUnderlineColorRGB())E.style.textDecorationColor=`rgb(${i.AttributeData.toColorRGB($.getUnderlineColor()).join(",")})`;else{let K=$.getUnderlineColor();this._optionsService.rawOptions.drawBoldTextInBrightColors&&$.isBold()&&K<8&&(K+=8),E.style.textDecorationColor=w.ansi[K].css}$.isOverline()&&(N.push("xterm-overline"),H===" "&&(H=" ")),$.isStrikethrough()&&N.push("xterm-strikethrough"),he&&(E.style.textDecoration="underline");let G=$.getFgColor(),te=$.getFgColorMode(),X=$.getBgColor(),ie=$.getBgColorMode();const le=!!$.isInverse();if(le){const K=G;G=X,X=K;const pe=te;te=ie,ie=pe}let Y,de,Z,se=!1;switch(this._decorationService.forEachDecorationAtCell(j,m,void 0,K=>{K.options.layer!=="top"&&se||(K.backgroundColorRGB&&(ie=50331648,X=K.backgroundColorRGB.rgba>>8&16777215,Y=K.backgroundColorRGB),K.foregroundColorRGB&&(te=50331648,G=K.foregroundColorRGB.rgba>>8&16777215,de=K.foregroundColorRGB),se=K.options.layer==="top")}),!se&&ee&&(Y=this._coreBrowserService.isFocused?w.selectionBackgroundOpaque:w.selectionInactiveBackgroundOpaque,X=Y.rgba>>8&16777215,ie=50331648,se=!0,w.selectionForeground&&(te=50331648,G=w.selectionForeground.rgba>>8&16777215,de=w.selectionForeground)),se&&N.push("xterm-decoration-top"),ie){case 16777216:case 33554432:Z=w.ansi[X],N.push(`xterm-bg-${X}`);break;case 50331648:Z=_.rgba.toColor(X>>16,X>>8&255,255&X),this._addStyle(E,`background-color:#${c((X>>>0).toString(16),"0",6)}`);break;default:le?(Z=w.foreground,N.push(`xterm-bg-${n.INVERTED_DEFAULT_COLOR}`)):Z=w.background}switch(Y||$.isDim()&&(Y=_.color.multiplyOpacity(Z,.5)),te){case 16777216:case 33554432:$.isBold()&&G<8&&this._optionsService.rawOptions.drawBoldTextInBrightColors&&(G+=8),this._applyMinimumContrast(E,Z,w.ansi[G],$,Y,void 0)||N.push(`xterm-fg-${G}`);break;case 50331648:const K=_.rgba.toColor(G>>16&255,G>>8&255,255&G);this._applyMinimumContrast(E,Z,K,$,Y,de)||this._addStyle(E,`color:#${c(G.toString(16),"0",6)}`);break;default:this._applyMinimumContrast(E,Z,w.foreground,$,Y,void 0)||le&&N.push(`xterm-fg-${n.INVERTED_DEFAULT_COLOR}`)}N.length&&(E.className=N.join(" "),N.length=0),ae||V||ce?E.textContent=H:P++,A!==this.defaultSpacing&&(E.style.letterSpacing=`${A}px`),M.push(E),j=Q}return E&&P&&(E.textContent=H),M}_applyMinimumContrast(v,m,h,g,b,L){if(this._optionsService.rawOptions.minimumContrastRatio===1||(0,t.excludeFromContrastRatioDemands)(g.getCode()))return!1;const y=this._getContrastCache(g);let k;if(b||L||(k=y.getColor(m.rgba,h.rgba)),k===void 0){const x=this._optionsService.rawOptions.minimumContrastRatio/(g.isDim()?2:1);k=_.color.ensureContrastRatio(b||m,L||h,x),y.setColor((b||m).rgba,(L||h).rgba,k??null)}return!!k&&(this._addStyle(v,`color:${k.css}`),!0)}_getContrastCache(v){return v.isDim()?this._themeService.colors.halfContrastCache:this._themeService.colors.contrastCache}_addStyle(v,m){v.setAttribute("style",`${v.getAttribute("style")||""}${m};`)}_isCellInSelection(v,m){const h=this._selectionStart,g=this._selectionEnd;return!(!h||!g)&&(this._columnSelectMode?h[0]<=g[0]?v>=h[0]&&m>=h[1]&&v=h[1]&&v>=g[0]&&m<=g[1]:m>h[1]&&m=h[0]&&v=h[0])}};function c(v,m,h){for(;v.length{Object.defineProperty(r,"__esModule",{value:!0}),r.WidthCache=void 0,r.WidthCache=class{constructor(a){this._flat=new Float32Array(256),this._font="",this._fontSize=0,this._weight="normal",this._weightBold="bold",this._measureElements=[],this._container=a.createElement("div"),this._container.style.position="absolute",this._container.style.top="-50000px",this._container.style.width="50000px",this._container.style.whiteSpace="pre",this._container.style.fontKerning="none";const l=a.createElement("span"),u=a.createElement("span");u.style.fontWeight="bold";const n=a.createElement("span");n.style.fontStyle="italic";const d=a.createElement("span");d.style.fontWeight="bold",d.style.fontStyle="italic",this._measureElements=[l,u,n,d],this._container.appendChild(l),this._container.appendChild(u),this._container.appendChild(n),this._container.appendChild(d),a.body.appendChild(this._container),this.clear()}dispose(){this._container.remove(),this._measureElements.length=0,this._holey=void 0}clear(){this._flat.fill(-9999),this._holey=new Map}setFont(a,l,u,n){a===this._font&&l===this._fontSize&&u===this._weight&&n===this._weightBold||(this._font=a,this._fontSize=l,this._weight=u,this._weightBold=n,this._container.style.fontFamily=this._font,this._container.style.fontSize=`${this._fontSize}px`,this._measureElements[0].style.fontWeight=`${u}`,this._measureElements[1].style.fontWeight=`${n}`,this._measureElements[2].style.fontWeight=`${u}`,this._measureElements[3].style.fontWeight=`${n}`,this.clear())}get(a,l,u){let n=0;if(!l&&!u&&a.length===1&&(n=a.charCodeAt(0))<256)return this._flat[n]!==-9999?this._flat[n]:this._flat[n]=this._measure(a,0);let d=a;l&&(d+="B"),u&&(d+="I");let f=this._holey.get(d);if(f===void 0){let p=0;l&&(p|=1),u&&(p|=2),f=this._measure(a,p),this._holey.set(d,f)}return f}_measure(a,l){const u=this._measureElements[l];return u.textContent=a.repeat(32),u.offsetWidth/32}}},2223:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.TEXT_BASELINE=r.DIM_OPACITY=r.INVERTED_DEFAULT_COLOR=void 0;const l=a(6114);r.INVERTED_DEFAULT_COLOR=257,r.DIM_OPACITY=.5,r.TEXT_BASELINE=l.isFirefox||l.isLegacyEdge?"bottom":"ideographic"},6171:(I,r)=>{function a(l){return 57508<=l&&l<=57558}Object.defineProperty(r,"__esModule",{value:!0}),r.createRenderDimensions=r.excludeFromContrastRatioDemands=r.isRestrictedPowerlineGlyph=r.isPowerlineGlyph=r.throwIfFalsy=void 0,r.throwIfFalsy=function(l){if(!l)throw new Error("value must not be falsy");return l},r.isPowerlineGlyph=a,r.isRestrictedPowerlineGlyph=function(l){return 57520<=l&&l<=57527},r.excludeFromContrastRatioDemands=function(l){return a(l)||function(u){return 9472<=u&&u<=9631}(l)},r.createRenderDimensions=function(){return{css:{canvas:{width:0,height:0},cell:{width:0,height:0}},device:{canvas:{width:0,height:0},cell:{width:0,height:0},char:{width:0,height:0,left:0,top:0}}}}},456:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.SelectionModel=void 0,r.SelectionModel=class{constructor(a){this._bufferService=a,this.isSelectAllActive=!1,this.selectionStartLength=0}clearSelection(){this.selectionStart=void 0,this.selectionEnd=void 0,this.isSelectAllActive=!1,this.selectionStartLength=0}get finalSelectionStart(){return this.isSelectAllActive?[0,0]:this.selectionEnd&&this.selectionStart&&this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart}get finalSelectionEnd(){if(this.isSelectAllActive)return[this._bufferService.cols,this._bufferService.buffer.ybase+this._bufferService.rows-1];if(this.selectionStart){if(!this.selectionEnd||this.areSelectionValuesReversed()){const a=this.selectionStart[0]+this.selectionStartLength;return a>this._bufferService.cols?a%this._bufferService.cols==0?[this._bufferService.cols,this.selectionStart[1]+Math.floor(a/this._bufferService.cols)-1]:[a%this._bufferService.cols,this.selectionStart[1]+Math.floor(a/this._bufferService.cols)]:[a,this.selectionStart[1]]}if(this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]){const a=this.selectionStart[0]+this.selectionStartLength;return a>this._bufferService.cols?[a%this._bufferService.cols,this.selectionStart[1]+Math.floor(a/this._bufferService.cols)]:[Math.max(a,this.selectionEnd[0]),this.selectionEnd[1]]}return this.selectionEnd}}areSelectionValuesReversed(){const a=this.selectionStart,l=this.selectionEnd;return!(!a||!l)&&(a[1]>l[1]||a[1]===l[1]&&a[0]>l[0])}handleTrim(a){return this.selectionStart&&(this.selectionStart[1]-=a),this.selectionEnd&&(this.selectionEnd[1]-=a),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)}}},428:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CharSizeService=void 0;const n=a(2585),d=a(8460),f=a(844);let p=r.CharSizeService=class extends f.Disposable{get hasValidSize(){return this.width>0&&this.height>0}constructor(e,s,t){super(),this._optionsService=t,this.width=0,this.height=0,this._onCharSizeChange=this.register(new d.EventEmitter),this.onCharSizeChange=this._onCharSizeChange.event,this._measureStrategy=new _(e,s,this._optionsService),this.register(this._optionsService.onMultipleOptionChange(["fontFamily","fontSize"],()=>this.measure()))}measure(){const e=this._measureStrategy.measure();e.width===this.width&&e.height===this.height||(this.width=e.width,this.height=e.height,this._onCharSizeChange.fire())}};r.CharSizeService=p=l([u(2,n.IOptionsService)],p);class _{constructor(s,t,i){this._document=s,this._parentElement=t,this._optionsService=i,this._result={width:0,height:0},this._measureElement=this._document.createElement("span"),this._measureElement.classList.add("xterm-char-measure-element"),this._measureElement.textContent="W".repeat(32),this._measureElement.setAttribute("aria-hidden","true"),this._measureElement.style.whiteSpace="pre",this._measureElement.style.fontKerning="none",this._parentElement.appendChild(this._measureElement)}measure(){this._measureElement.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._measureElement.style.fontSize=`${this._optionsService.rawOptions.fontSize}px`;const s={height:Number(this._measureElement.offsetHeight),width:Number(this._measureElement.offsetWidth)};return s.width!==0&&s.height!==0&&(this._result.width=s.width/32,this._result.height=Math.ceil(s.height)),this._result}}},4269:function(I,r,a){var l=this&&this.__decorate||function(s,t,i,o){var c,v=arguments.length,m=v<3?t:o===null?o=Object.getOwnPropertyDescriptor(t,i):o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")m=Reflect.decorate(s,t,i,o);else for(var h=s.length-1;h>=0;h--)(c=s[h])&&(m=(v<3?c(m):v>3?c(t,i,m):c(t,i))||m);return v>3&&m&&Object.defineProperty(t,i,m),m},u=this&&this.__param||function(s,t){return function(i,o){t(i,o,s)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CharacterJoinerService=r.JoinedCellData=void 0;const n=a(3734),d=a(643),f=a(511),p=a(2585);class _ extends n.AttributeData{constructor(t,i,o){super(),this.content=0,this.combinedData="",this.fg=t.fg,this.bg=t.bg,this.combinedData=i,this._width=o}isCombined(){return 2097152}getWidth(){return this._width}getChars(){return this.combinedData}getCode(){return 2097151}setFromCharData(t){throw new Error("not implemented")}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}r.JoinedCellData=_;let e=r.CharacterJoinerService=class ve{constructor(t){this._bufferService=t,this._characterJoiners=[],this._nextCharacterJoinerId=0,this._workCell=new f.CellData}register(t){const i={id:this._nextCharacterJoinerId++,handler:t};return this._characterJoiners.push(i),i.id}deregister(t){for(let i=0;i1){const y=this._getJoinedRanges(c,h,m,i,v);for(let k=0;k1){const L=this._getJoinedRanges(c,h,m,i,v);for(let y=0;y{Object.defineProperty(r,"__esModule",{value:!0}),r.CoreBrowserService=void 0,r.CoreBrowserService=class{constructor(a,l){this._textarea=a,this.window=l,this._isFocused=!1,this._cachedIsFocused=void 0,this._textarea.addEventListener("focus",()=>this._isFocused=!0),this._textarea.addEventListener("blur",()=>this._isFocused=!1)}get dpr(){return this.window.devicePixelRatio}get isFocused(){return this._cachedIsFocused===void 0&&(this._cachedIsFocused=this._isFocused&&this._textarea.ownerDocument.hasFocus(),queueMicrotask(()=>this._cachedIsFocused=void 0)),this._cachedIsFocused}}},8934:function(I,r,a){var l=this&&this.__decorate||function(p,_,e,s){var t,i=arguments.length,o=i<3?_:s===null?s=Object.getOwnPropertyDescriptor(_,e):s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(p,_,e,s);else for(var c=p.length-1;c>=0;c--)(t=p[c])&&(o=(i<3?t(o):i>3?t(_,e,o):t(_,e))||o);return i>3&&o&&Object.defineProperty(_,e,o),o},u=this&&this.__param||function(p,_){return function(e,s){_(e,s,p)}};Object.defineProperty(r,"__esModule",{value:!0}),r.MouseService=void 0;const n=a(4725),d=a(9806);let f=r.MouseService=class{constructor(p,_){this._renderService=p,this._charSizeService=_}getCoords(p,_,e,s,t){return(0,d.getCoords)(window,p,_,e,s,this._charSizeService.hasValidSize,this._renderService.dimensions.css.cell.width,this._renderService.dimensions.css.cell.height,t)}getMouseReportCoords(p,_){const e=(0,d.getCoordsRelativeToElement)(window,p,_);if(this._charSizeService.hasValidSize)return e[0]=Math.min(Math.max(e[0],0),this._renderService.dimensions.css.canvas.width-1),e[1]=Math.min(Math.max(e[1],0),this._renderService.dimensions.css.canvas.height-1),{col:Math.floor(e[0]/this._renderService.dimensions.css.cell.width),row:Math.floor(e[1]/this._renderService.dimensions.css.cell.height),x:Math.floor(e[0]),y:Math.floor(e[1])}}};r.MouseService=f=l([u(0,n.IRenderService),u(1,n.ICharSizeService)],f)},3230:function(I,r,a){var l=this&&this.__decorate||function(o,c,v,m){var h,g=arguments.length,b=g<3?c:m===null?m=Object.getOwnPropertyDescriptor(c,v):m;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")b=Reflect.decorate(o,c,v,m);else for(var L=o.length-1;L>=0;L--)(h=o[L])&&(b=(g<3?h(b):g>3?h(c,v,b):h(c,v))||b);return g>3&&b&&Object.defineProperty(c,v,b),b},u=this&&this.__param||function(o,c){return function(v,m){c(v,m,o)}};Object.defineProperty(r,"__esModule",{value:!0}),r.RenderService=void 0;const n=a(3656),d=a(6193),f=a(5596),p=a(4725),_=a(8460),e=a(844),s=a(7226),t=a(2585);let i=r.RenderService=class extends e.Disposable{get dimensions(){return this._renderer.value.dimensions}constructor(o,c,v,m,h,g,b,L){if(super(),this._rowCount=o,this._charSizeService=m,this._renderer=this.register(new e.MutableDisposable),this._pausedResizeTask=new s.DebouncedIdleTask,this._isPaused=!1,this._needsFullRefresh=!1,this._isNextRenderRedrawOnly=!0,this._needsSelectionRefresh=!1,this._canvasWidth=0,this._canvasHeight=0,this._selectionState={start:void 0,end:void 0,columnSelectMode:!1},this._onDimensionsChange=this.register(new _.EventEmitter),this.onDimensionsChange=this._onDimensionsChange.event,this._onRenderedViewportChange=this.register(new _.EventEmitter),this.onRenderedViewportChange=this._onRenderedViewportChange.event,this._onRender=this.register(new _.EventEmitter),this.onRender=this._onRender.event,this._onRefreshRequest=this.register(new _.EventEmitter),this.onRefreshRequest=this._onRefreshRequest.event,this._renderDebouncer=new d.RenderDebouncer(b.window,(y,k)=>this._renderRows(y,k)),this.register(this._renderDebouncer),this._screenDprMonitor=new f.ScreenDprMonitor(b.window),this._screenDprMonitor.setListener(()=>this.handleDevicePixelRatioChange()),this.register(this._screenDprMonitor),this.register(g.onResize(()=>this._fullRefresh())),this.register(g.buffers.onBufferActivate(()=>{var y;return(y=this._renderer.value)===null||y===void 0?void 0:y.clear()})),this.register(v.onOptionChange(()=>this._handleOptionsChanged())),this.register(this._charSizeService.onCharSizeChange(()=>this.handleCharSizeChanged())),this.register(h.onDecorationRegistered(()=>this._fullRefresh())),this.register(h.onDecorationRemoved(()=>this._fullRefresh())),this.register(v.onMultipleOptionChange(["customGlyphs","drawBoldTextInBrightColors","letterSpacing","lineHeight","fontFamily","fontSize","fontWeight","fontWeightBold","minimumContrastRatio"],()=>{this.clear(),this.handleResize(g.cols,g.rows),this._fullRefresh()})),this.register(v.onMultipleOptionChange(["cursorBlink","cursorStyle"],()=>this.refreshRows(g.buffer.y,g.buffer.y,!0))),this.register((0,n.addDisposableDomListener)(b.window,"resize",()=>this.handleDevicePixelRatioChange())),this.register(L.onChangeColors(()=>this._fullRefresh())),"IntersectionObserver"in b.window){const y=new b.window.IntersectionObserver(k=>this._handleIntersectionChange(k[k.length-1]),{threshold:0});y.observe(c),this.register({dispose:()=>y.disconnect()})}}_handleIntersectionChange(o){this._isPaused=o.isIntersecting===void 0?o.intersectionRatio===0:!o.isIntersecting,this._isPaused||this._charSizeService.hasValidSize||this._charSizeService.measure(),!this._isPaused&&this._needsFullRefresh&&(this._pausedResizeTask.flush(),this.refreshRows(0,this._rowCount-1),this._needsFullRefresh=!1)}refreshRows(o,c,v=!1){this._isPaused?this._needsFullRefresh=!0:(v||(this._isNextRenderRedrawOnly=!1),this._renderDebouncer.refresh(o,c,this._rowCount))}_renderRows(o,c){this._renderer.value&&(o=Math.min(o,this._rowCount-1),c=Math.min(c,this._rowCount-1),this._renderer.value.renderRows(o,c),this._needsSelectionRefresh&&(this._renderer.value.handleSelectionChanged(this._selectionState.start,this._selectionState.end,this._selectionState.columnSelectMode),this._needsSelectionRefresh=!1),this._isNextRenderRedrawOnly||this._onRenderedViewportChange.fire({start:o,end:c}),this._onRender.fire({start:o,end:c}),this._isNextRenderRedrawOnly=!0)}resize(o,c){this._rowCount=c,this._fireOnCanvasResize()}_handleOptionsChanged(){this._renderer.value&&(this.refreshRows(0,this._rowCount-1),this._fireOnCanvasResize())}_fireOnCanvasResize(){this._renderer.value&&(this._renderer.value.dimensions.css.canvas.width===this._canvasWidth&&this._renderer.value.dimensions.css.canvas.height===this._canvasHeight||this._onDimensionsChange.fire(this._renderer.value.dimensions))}hasRenderer(){return!!this._renderer.value}setRenderer(o){this._renderer.value=o,this._renderer.value.onRequestRedraw(c=>this.refreshRows(c.start,c.end,!0)),this._needsSelectionRefresh=!0,this._fullRefresh()}addRefreshCallback(o){return this._renderDebouncer.addRefreshCallback(o)}_fullRefresh(){this._isPaused?this._needsFullRefresh=!0:this.refreshRows(0,this._rowCount-1)}clearTextureAtlas(){var o,c;this._renderer.value&&((c=(o=this._renderer.value).clearTextureAtlas)===null||c===void 0||c.call(o),this._fullRefresh())}handleDevicePixelRatioChange(){this._charSizeService.measure(),this._renderer.value&&(this._renderer.value.handleDevicePixelRatioChange(),this.refreshRows(0,this._rowCount-1))}handleResize(o,c){this._renderer.value&&(this._isPaused?this._pausedResizeTask.set(()=>this._renderer.value.handleResize(o,c)):this._renderer.value.handleResize(o,c),this._fullRefresh())}handleCharSizeChanged(){var o;(o=this._renderer.value)===null||o===void 0||o.handleCharSizeChanged()}handleBlur(){var o;(o=this._renderer.value)===null||o===void 0||o.handleBlur()}handleFocus(){var o;(o=this._renderer.value)===null||o===void 0||o.handleFocus()}handleSelectionChanged(o,c,v){var m;this._selectionState.start=o,this._selectionState.end=c,this._selectionState.columnSelectMode=v,(m=this._renderer.value)===null||m===void 0||m.handleSelectionChanged(o,c,v)}handleCursorMove(){var o;(o=this._renderer.value)===null||o===void 0||o.handleCursorMove()}clear(){var o;(o=this._renderer.value)===null||o===void 0||o.clear()}};r.RenderService=i=l([u(2,t.IOptionsService),u(3,p.ICharSizeService),u(4,t.IDecorationService),u(5,t.IBufferService),u(6,p.ICoreBrowserService),u(7,p.IThemeService)],i)},9312:function(I,r,a){var l=this&&this.__decorate||function(h,g,b,L){var y,k=arguments.length,x=k<3?g:L===null?L=Object.getOwnPropertyDescriptor(g,b):L;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")x=Reflect.decorate(h,g,b,L);else for(var T=h.length-1;T>=0;T--)(y=h[T])&&(x=(k<3?y(x):k>3?y(g,b,x):y(g,b))||x);return k>3&&x&&Object.defineProperty(g,b,x),x},u=this&&this.__param||function(h,g){return function(b,L){g(b,L,h)}};Object.defineProperty(r,"__esModule",{value:!0}),r.SelectionService=void 0;const n=a(9806),d=a(9504),f=a(456),p=a(4725),_=a(8460),e=a(844),s=a(6114),t=a(4841),i=a(511),o=a(2585),c=String.fromCharCode(160),v=new RegExp(c,"g");let m=r.SelectionService=class extends e.Disposable{constructor(h,g,b,L,y,k,x,T,O){super(),this._element=h,this._screenElement=g,this._linkifier=b,this._bufferService=L,this._coreService=y,this._mouseService=k,this._optionsService=x,this._renderService=T,this._coreBrowserService=O,this._dragScrollAmount=0,this._enabled=!0,this._workCell=new i.CellData,this._mouseDownTimeStamp=0,this._oldHasSelection=!1,this._oldSelectionStart=void 0,this._oldSelectionEnd=void 0,this._onLinuxMouseSelection=this.register(new _.EventEmitter),this.onLinuxMouseSelection=this._onLinuxMouseSelection.event,this._onRedrawRequest=this.register(new _.EventEmitter),this.onRequestRedraw=this._onRedrawRequest.event,this._onSelectionChange=this.register(new _.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onRequestScrollLines=this.register(new _.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this._mouseMoveListener=M=>this._handleMouseMove(M),this._mouseUpListener=M=>this._handleMouseUp(M),this._coreService.onUserInput(()=>{this.hasSelection&&this.clearSelection()}),this._trimListener=this._bufferService.buffer.lines.onTrim(M=>this._handleTrim(M)),this.register(this._bufferService.buffers.onBufferActivate(M=>this._handleBufferActivate(M))),this.enable(),this._model=new f.SelectionModel(this._bufferService),this._activeSelectionMode=0,this.register((0,e.toDisposable)(()=>{this._removeMouseDownListeners()}))}reset(){this.clearSelection()}disable(){this.clearSelection(),this._enabled=!1}enable(){this._enabled=!0}get selectionStart(){return this._model.finalSelectionStart}get selectionEnd(){return this._model.finalSelectionEnd}get hasSelection(){const h=this._model.finalSelectionStart,g=this._model.finalSelectionEnd;return!(!h||!g||h[0]===g[0]&&h[1]===g[1])}get selectionText(){const h=this._model.finalSelectionStart,g=this._model.finalSelectionEnd;if(!h||!g)return"";const b=this._bufferService.buffer,L=[];if(this._activeSelectionMode===3){if(h[0]===g[0])return"";const y=h[0]y.replace(v," ")).join(s.isWindows?`\r `:` `)}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(h){this._refreshAnimationFrame||(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._refresh())),s.isLinux&&h&&this.selectionText.length&&this._onLinuxMouseSelection.fire(this.selectionText)}_refresh(){this._refreshAnimationFrame=void 0,this._onRedrawRequest.fire({start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd,columnSelectMode:this._activeSelectionMode===3})}_isClickInSelection(h){const g=this._getMouseBufferCoords(h),b=this._model.finalSelectionStart,L=this._model.finalSelectionEnd;return!!(b&&L&&g)&&this._areCoordsInSelection(g,b,L)}isCellInSelection(h,g){const b=this._model.finalSelectionStart,L=this._model.finalSelectionEnd;return!(!b||!L)&&this._areCoordsInSelection([h,g],b,L)}_areCoordsInSelection(h,g,b){return h[1]>g[1]&&h[1]=g[0]&&h[0]=g[0]}_selectWordAtCursor(h,g){var b,L;const y=(L=(b=this._linkifier.currentLink)===null||b===void 0?void 0:b.link)===null||L===void 0?void 0:L.range;if(y)return this._model.selectionStart=[y.start.x-1,y.start.y-1],this._model.selectionStartLength=(0,t.getRangeLength)(y,this._bufferService.cols),this._model.selectionEnd=void 0,!0;const k=this._getMouseBufferCoords(h);return!!k&&(this._selectWordAt(k,g),this._model.selectionEnd=void 0,!0)}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(h,g){this._model.clearSelection(),h=Math.max(h,0),g=Math.min(g,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,h],this._model.selectionEnd=[this._bufferService.cols,g],this.refresh(),this._onSelectionChange.fire()}_handleTrim(h){this._model.handleTrim(h)&&this.refresh()}_getMouseBufferCoords(h){const g=this._mouseService.getCoords(h,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(g)return g[0]--,g[1]--,g[1]+=this._bufferService.buffer.ydisp,g}_getMouseEventScrollAmount(h){let g=(0,n.getCoordsRelativeToElement)(this._coreBrowserService.window,h,this._screenElement)[1];const b=this._renderService.dimensions.css.canvas.height;return g>=0&&g<=b?0:(g>b&&(g-=b),g=Math.min(Math.max(g,-50),50),g/=50,g/Math.abs(g)+Math.round(14*g))}shouldForceSelection(h){return s.isMac?h.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:h.shiftKey}handleMouseDown(h){if(this._mouseDownTimeStamp=h.timeStamp,(h.button!==2||!this.hasSelection)&&h.button===0){if(!this._enabled){if(!this.shouldForceSelection(h))return;h.stopPropagation()}h.preventDefault(),this._dragScrollAmount=0,this._enabled&&h.shiftKey?this._handleIncrementalClick(h):h.detail===1?this._handleSingleClick(h):h.detail===2?this._handleDoubleClick(h):h.detail===3&&this._handleTripleClick(h),this._addMouseDownListeners(),this.refresh(!0)}}_addMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.addEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.addEventListener("mouseup",this._mouseUpListener)),this._dragScrollIntervalTimer=this._coreBrowserService.window.setInterval(()=>this._dragScroll(),50)}_removeMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.removeEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.removeEventListener("mouseup",this._mouseUpListener)),this._coreBrowserService.window.clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=void 0}_handleIncrementalClick(h){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(h))}_handleSingleClick(h){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(h)?3:0,this._model.selectionStart=this._getMouseBufferCoords(h),!this._model.selectionStart)return;this._model.selectionEnd=void 0;const g=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);g&&g.length!==this._model.selectionStart[0]&&g.hasWidth(this._model.selectionStart[0])===0&&this._model.selectionStart[0]++}_handleDoubleClick(h){this._selectWordAtCursor(h,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(h){const g=this._getMouseBufferCoords(h);g&&(this._activeSelectionMode=2,this._selectLineAt(g[1]))}shouldColumnSelect(h){return h.altKey&&!(s.isMac&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(h){if(h.stopImmediatePropagation(),!this._model.selectionStart)return;const g=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(h),!this._model.selectionEnd)return void this.refresh(!0);this._activeSelectionMode===2?this._model.selectionEnd[1]0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));const b=this._bufferService.buffer;if(this._model.selectionEnd[1]0?(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(h.ydisp+this._bufferService.rows,h.lines.length-1)):(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=h.ydisp),this.refresh()}}_handleMouseUp(h){const g=h.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&g<500&&h.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){const b=this._mouseService.getCoords(h,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(b&&b[0]!==void 0&&b[1]!==void 0){const L=(0,d.moveToCellSequence)(b[0]-1,b[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(L,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){const h=this._model.finalSelectionStart,g=this._model.finalSelectionEnd,b=!(!h||!g||h[0]===g[0]&&h[1]===g[1]);b?h&&g&&(this._oldSelectionStart&&this._oldSelectionEnd&&h[0]===this._oldSelectionStart[0]&&h[1]===this._oldSelectionStart[1]&&g[0]===this._oldSelectionEnd[0]&&g[1]===this._oldSelectionEnd[1]||this._fireOnSelectionChange(h,g,b)):this._oldHasSelection&&this._fireOnSelectionChange(h,g,b)}_fireOnSelectionChange(h,g,b){this._oldSelectionStart=h,this._oldSelectionEnd=g,this._oldHasSelection=b,this._onSelectionChange.fire()}_handleBufferActivate(h){this.clearSelection(),this._trimListener.dispose(),this._trimListener=h.activeBuffer.lines.onTrim(g=>this._handleTrim(g))}_convertViewportColToCharacterIndex(h,g){let b=g;for(let L=0;g>=L;L++){const y=h.loadCell(L,this._workCell).getChars().length;this._workCell.getWidth()===0?b--:y>1&&g!==L&&(b+=y-1)}return b}setSelection(h,g,b){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[h,g],this._model.selectionStartLength=b,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(h){this._isClickInSelection(h)||(this._selectWordAtCursor(h,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(h,g,b=!0,L=!0){if(h[0]>=this._bufferService.cols)return;const y=this._bufferService.buffer,k=y.lines.get(h[1]);if(!k)return;const x=y.translateBufferLineToString(h[1],!1);let T=this._convertViewportColToCharacterIndex(k,h[0]),O=T;const M=h[0]-T;let C=0,w=0,E=0,D=0;if(x.charAt(T)===" "){for(;T>0&&x.charAt(T-1)===" ";)T--;for(;O1&&(D+=z-1,O+=z-1);U>0&&T>0&&!this._isCharWordSeparator(k.loadCell(U-1,this._workCell));){k.loadCell(U-1,this._workCell);const S=this._workCell.getChars().length;this._workCell.getWidth()===0?(C++,U--):S>1&&(E+=S-1,T-=S-1),T--,U--}for(;W1&&(D+=S-1,O+=S-1),O++,W++}}O++;let P=T+M-C+E,H=Math.min(this._bufferService.cols,O-T+C+w-E-D);if(g||x.slice(T,O).trim()!==""){if(b&&P===0&&k.getCodePoint(0)!==32){const U=y.lines.get(h[1]-1);if(U&&k.isWrapped&&U.getCodePoint(this._bufferService.cols-1)!==32){const W=this._getWordAt([this._bufferService.cols-1,h[1]-1],!1,!0,!1);if(W){const z=this._bufferService.cols-W.start;P-=z,H+=z}}}if(L&&P+H===this._bufferService.cols&&k.getCodePoint(this._bufferService.cols-1)!==32){const U=y.lines.get(h[1]+1);if(U!=null&&U.isWrapped&&U.getCodePoint(0)!==32){const W=this._getWordAt([0,h[1]+1],!1,!1,!0);W&&(H+=W.length)}}return{start:P,length:H}}}_selectWordAt(h,g){const b=this._getWordAt(h,g);if(b){for(;b.start<0;)b.start+=this._bufferService.cols,h[1]--;this._model.selectionStart=[b.start,h[1]],this._model.selectionStartLength=b.length}}_selectToWordAt(h){const g=this._getWordAt(h,!0);if(g){let b=h[1];for(;g.start<0;)g.start+=this._bufferService.cols,b--;if(!this._model.areSelectionValuesReversed())for(;g.start+g.length>this._bufferService.cols;)g.length-=this._bufferService.cols,b++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?g.start:g.start+g.length,b]}}_isCharWordSeparator(h){return h.getWidth()!==0&&this._optionsService.rawOptions.wordSeparator.indexOf(h.getChars())>=0}_selectLineAt(h){const g=this._bufferService.buffer.getWrappedRangeForLine(h),b={start:{x:0,y:g.first},end:{x:this._bufferService.cols-1,y:g.last}};this._model.selectionStart=[0,g.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=(0,t.getRangeLength)(b,this._bufferService.cols)}};r.SelectionService=m=l([u(3,o.IBufferService),u(4,o.ICoreService),u(5,p.IMouseService),u(6,o.IOptionsService),u(7,p.IRenderService),u(8,p.ICoreBrowserService)],m)},4725:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.IThemeService=r.ICharacterJoinerService=r.ISelectionService=r.IRenderService=r.IMouseService=r.ICoreBrowserService=r.ICharSizeService=void 0;const l=a(8343);r.ICharSizeService=(0,l.createDecorator)("CharSizeService"),r.ICoreBrowserService=(0,l.createDecorator)("CoreBrowserService"),r.IMouseService=(0,l.createDecorator)("MouseService"),r.IRenderService=(0,l.createDecorator)("RenderService"),r.ISelectionService=(0,l.createDecorator)("SelectionService"),r.ICharacterJoinerService=(0,l.createDecorator)("CharacterJoinerService"),r.IThemeService=(0,l.createDecorator)("ThemeService")},6731:function(I,r,a){var l=this&&this.__decorate||function(m,h,g,b){var L,y=arguments.length,k=y<3?h:b===null?b=Object.getOwnPropertyDescriptor(h,g):b;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")k=Reflect.decorate(m,h,g,b);else for(var x=m.length-1;x>=0;x--)(L=m[x])&&(k=(y<3?L(k):y>3?L(h,g,k):L(h,g))||k);return y>3&&k&&Object.defineProperty(h,g,k),k},u=this&&this.__param||function(m,h){return function(g,b){h(g,b,m)}};Object.defineProperty(r,"__esModule",{value:!0}),r.ThemeService=r.DEFAULT_ANSI_COLORS=void 0;const n=a(7239),d=a(8055),f=a(8460),p=a(844),_=a(2585),e=d.css.toColor("#ffffff"),s=d.css.toColor("#000000"),t=d.css.toColor("#ffffff"),i=d.css.toColor("#000000"),o={css:"rgba(255, 255, 255, 0.3)",rgba:4294967117};r.DEFAULT_ANSI_COLORS=Object.freeze((()=>{const m=[d.css.toColor("#2e3436"),d.css.toColor("#cc0000"),d.css.toColor("#4e9a06"),d.css.toColor("#c4a000"),d.css.toColor("#3465a4"),d.css.toColor("#75507b"),d.css.toColor("#06989a"),d.css.toColor("#d3d7cf"),d.css.toColor("#555753"),d.css.toColor("#ef2929"),d.css.toColor("#8ae234"),d.css.toColor("#fce94f"),d.css.toColor("#729fcf"),d.css.toColor("#ad7fa8"),d.css.toColor("#34e2e2"),d.css.toColor("#eeeeec")],h=[0,95,135,175,215,255];for(let g=0;g<216;g++){const b=h[g/36%6|0],L=h[g/6%6|0],y=h[g%6];m.push({css:d.channels.toCss(b,L,y),rgba:d.channels.toRgba(b,L,y)})}for(let g=0;g<24;g++){const b=8+10*g;m.push({css:d.channels.toCss(b,b,b),rgba:d.channels.toRgba(b,b,b)})}return m})());let c=r.ThemeService=class extends p.Disposable{get colors(){return this._colors}constructor(m){super(),this._optionsService=m,this._contrastCache=new n.ColorContrastCache,this._halfContrastCache=new n.ColorContrastCache,this._onChangeColors=this.register(new f.EventEmitter),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:e,background:s,cursor:t,cursorAccent:i,selectionForeground:void 0,selectionBackgroundTransparent:o,selectionBackgroundOpaque:d.color.blend(s,o),selectionInactiveBackgroundTransparent:o,selectionInactiveBackgroundOpaque:d.color.blend(s,o),ansi:r.DEFAULT_ANSI_COLORS.slice(),contrastCache:this._contrastCache,halfContrastCache:this._halfContrastCache},this._updateRestoreColors(),this._setTheme(this._optionsService.rawOptions.theme),this.register(this._optionsService.onSpecificOptionChange("minimumContrastRatio",()=>this._contrastCache.clear())),this.register(this._optionsService.onSpecificOptionChange("theme",()=>this._setTheme(this._optionsService.rawOptions.theme)))}_setTheme(m={}){const h=this._colors;if(h.foreground=v(m.foreground,e),h.background=v(m.background,s),h.cursor=v(m.cursor,t),h.cursorAccent=v(m.cursorAccent,i),h.selectionBackgroundTransparent=v(m.selectionBackground,o),h.selectionBackgroundOpaque=d.color.blend(h.background,h.selectionBackgroundTransparent),h.selectionInactiveBackgroundTransparent=v(m.selectionInactiveBackground,h.selectionBackgroundTransparent),h.selectionInactiveBackgroundOpaque=d.color.blend(h.background,h.selectionInactiveBackgroundTransparent),h.selectionForeground=m.selectionForeground?v(m.selectionForeground,d.NULL_COLOR):void 0,h.selectionForeground===d.NULL_COLOR&&(h.selectionForeground=void 0),d.color.isOpaque(h.selectionBackgroundTransparent)&&(h.selectionBackgroundTransparent=d.color.opacity(h.selectionBackgroundTransparent,.3)),d.color.isOpaque(h.selectionInactiveBackgroundTransparent)&&(h.selectionInactiveBackgroundTransparent=d.color.opacity(h.selectionInactiveBackgroundTransparent,.3)),h.ansi=r.DEFAULT_ANSI_COLORS.slice(),h.ansi[0]=v(m.black,r.DEFAULT_ANSI_COLORS[0]),h.ansi[1]=v(m.red,r.DEFAULT_ANSI_COLORS[1]),h.ansi[2]=v(m.green,r.DEFAULT_ANSI_COLORS[2]),h.ansi[3]=v(m.yellow,r.DEFAULT_ANSI_COLORS[3]),h.ansi[4]=v(m.blue,r.DEFAULT_ANSI_COLORS[4]),h.ansi[5]=v(m.magenta,r.DEFAULT_ANSI_COLORS[5]),h.ansi[6]=v(m.cyan,r.DEFAULT_ANSI_COLORS[6]),h.ansi[7]=v(m.white,r.DEFAULT_ANSI_COLORS[7]),h.ansi[8]=v(m.brightBlack,r.DEFAULT_ANSI_COLORS[8]),h.ansi[9]=v(m.brightRed,r.DEFAULT_ANSI_COLORS[9]),h.ansi[10]=v(m.brightGreen,r.DEFAULT_ANSI_COLORS[10]),h.ansi[11]=v(m.brightYellow,r.DEFAULT_ANSI_COLORS[11]),h.ansi[12]=v(m.brightBlue,r.DEFAULT_ANSI_COLORS[12]),h.ansi[13]=v(m.brightMagenta,r.DEFAULT_ANSI_COLORS[13]),h.ansi[14]=v(m.brightCyan,r.DEFAULT_ANSI_COLORS[14]),h.ansi[15]=v(m.brightWhite,r.DEFAULT_ANSI_COLORS[15]),m.extendedAnsi){const g=Math.min(h.ansi.length-16,m.extendedAnsi.length);for(let b=0;b{Object.defineProperty(r,"__esModule",{value:!0}),r.CircularList=void 0;const l=a(8460),u=a(844);class n extends u.Disposable{constructor(f){super(),this._maxLength=f,this.onDeleteEmitter=this.register(new l.EventEmitter),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this.register(new l.EventEmitter),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this.register(new l.EventEmitter),this.onTrim=this.onTrimEmitter.event,this._array=new Array(this._maxLength),this._startIndex=0,this._length=0}get maxLength(){return this._maxLength}set maxLength(f){if(this._maxLength===f)return;const p=new Array(f);for(let _=0;_this._length)for(let p=this._length;p=f;e--)this._array[this._getCyclicIndex(e+_.length)]=this._array[this._getCyclicIndex(e)];for(let e=0;e<_.length;e++)this._array[this._getCyclicIndex(f+e)]=_[e];if(_.length&&this.onInsertEmitter.fire({index:f,amount:_.length}),this._length+_.length>this._maxLength){const e=this._length+_.length-this._maxLength;this._startIndex+=e,this._length=this._maxLength,this.onTrimEmitter.fire(e)}else this._length+=_.length}trimStart(f){f>this._length&&(f=this._length),this._startIndex+=f,this._length-=f,this.onTrimEmitter.fire(f)}shiftElements(f,p,_){if(!(p<=0)){if(f<0||f>=this._length)throw new Error("start argument out of range");if(f+_<0)throw new Error("Cannot shift elements in list beyond index 0");if(_>0){for(let s=p-1;s>=0;s--)this.set(f+s+_,this.get(f+s));const e=f+p+_-this._length;if(e>0)for(this._length+=e;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let e=0;e{Object.defineProperty(r,"__esModule",{value:!0}),r.clone=void 0,r.clone=function a(l,u=5){if(typeof l!="object")return l;const n=Array.isArray(l)?[]:{};for(const d in l)n[d]=u<=1?l[d]:l[d]&&a(l[d],u-1);return n}},8055:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.contrastRatio=r.toPaddedHex=r.rgba=r.rgb=r.css=r.color=r.channels=r.NULL_COLOR=void 0;const l=a(6114);let u=0,n=0,d=0,f=0;var p,_,e,s,t;function i(c){const v=c.toString(16);return v.length<2?"0"+v:v}function o(c,v){return c>>0}}(p||(r.channels=p={})),function(c){function v(m,h){return f=Math.round(255*h),[u,n,d]=t.toChannels(m.rgba),{css:p.toCss(u,n,d,f),rgba:p.toRgba(u,n,d,f)}}c.blend=function(m,h){if(f=(255&h.rgba)/255,f===1)return{css:h.css,rgba:h.rgba};const g=h.rgba>>24&255,b=h.rgba>>16&255,L=h.rgba>>8&255,y=m.rgba>>24&255,k=m.rgba>>16&255,x=m.rgba>>8&255;return u=y+Math.round((g-y)*f),n=k+Math.round((b-k)*f),d=x+Math.round((L-x)*f),{css:p.toCss(u,n,d),rgba:p.toRgba(u,n,d)}},c.isOpaque=function(m){return(255&m.rgba)==255},c.ensureContrastRatio=function(m,h,g){const b=t.ensureContrastRatio(m.rgba,h.rgba,g);if(b)return t.toColor(b>>24&255,b>>16&255,b>>8&255)},c.opaque=function(m){const h=(255|m.rgba)>>>0;return[u,n,d]=t.toChannels(h),{css:p.toCss(u,n,d),rgba:h}},c.opacity=v,c.multiplyOpacity=function(m,h){return f=255&m.rgba,v(m,f*h/255)},c.toColorRGB=function(m){return[m.rgba>>24&255,m.rgba>>16&255,m.rgba>>8&255]}}(_||(r.color=_={})),function(c){let v,m;if(!l.isNode){const h=document.createElement("canvas");h.width=1,h.height=1;const g=h.getContext("2d",{willReadFrequently:!0});g&&(v=g,v.globalCompositeOperation="copy",m=v.createLinearGradient(0,0,1,1))}c.toColor=function(h){if(h.match(/#[\da-f]{3,8}/i))switch(h.length){case 4:return u=parseInt(h.slice(1,2).repeat(2),16),n=parseInt(h.slice(2,3).repeat(2),16),d=parseInt(h.slice(3,4).repeat(2),16),t.toColor(u,n,d);case 5:return u=parseInt(h.slice(1,2).repeat(2),16),n=parseInt(h.slice(2,3).repeat(2),16),d=parseInt(h.slice(3,4).repeat(2),16),f=parseInt(h.slice(4,5).repeat(2),16),t.toColor(u,n,d,f);case 7:return{css:h,rgba:(parseInt(h.slice(1),16)<<8|255)>>>0};case 9:return{css:h,rgba:parseInt(h.slice(1),16)>>>0}}const g=h.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(g)return u=parseInt(g[1]),n=parseInt(g[2]),d=parseInt(g[3]),f=Math.round(255*(g[5]===void 0?1:parseFloat(g[5]))),t.toColor(u,n,d,f);if(!v||!m)throw new Error("css.toColor: Unsupported css format");if(v.fillStyle=m,v.fillStyle=h,typeof v.fillStyle!="string")throw new Error("css.toColor: Unsupported css format");if(v.fillRect(0,0,1,1),[u,n,d,f]=v.getImageData(0,0,1,1).data,f!==255)throw new Error("css.toColor: Unsupported css format");return{rgba:p.toRgba(u,n,d,f),css:h}}}(e||(r.css=e={})),function(c){function v(m,h,g){const b=m/255,L=h/255,y=g/255;return .2126*(b<=.03928?b/12.92:Math.pow((b+.055)/1.055,2.4))+.7152*(L<=.03928?L/12.92:Math.pow((L+.055)/1.055,2.4))+.0722*(y<=.03928?y/12.92:Math.pow((y+.055)/1.055,2.4))}c.relativeLuminance=function(m){return v(m>>16&255,m>>8&255,255&m)},c.relativeLuminance2=v}(s||(r.rgb=s={})),function(c){function v(h,g,b){const L=h>>24&255,y=h>>16&255,k=h>>8&255;let x=g>>24&255,T=g>>16&255,O=g>>8&255,M=o(s.relativeLuminance2(x,T,O),s.relativeLuminance2(L,y,k));for(;M0||T>0||O>0);)x-=Math.max(0,Math.ceil(.1*x)),T-=Math.max(0,Math.ceil(.1*T)),O-=Math.max(0,Math.ceil(.1*O)),M=o(s.relativeLuminance2(x,T,O),s.relativeLuminance2(L,y,k));return(x<<24|T<<16|O<<8|255)>>>0}function m(h,g,b){const L=h>>24&255,y=h>>16&255,k=h>>8&255;let x=g>>24&255,T=g>>16&255,O=g>>8&255,M=o(s.relativeLuminance2(x,T,O),s.relativeLuminance2(L,y,k));for(;M>>0}c.ensureContrastRatio=function(h,g,b){const L=s.relativeLuminance(h>>8),y=s.relativeLuminance(g>>8);if(o(L,y)>8));if(Oo(L,s.relativeLuminance(M>>8))?T:M}return T}const k=m(h,g,b),x=o(L,s.relativeLuminance(k>>8));if(xo(L,s.relativeLuminance(T>>8))?k:T}return k}},c.reduceLuminance=v,c.increaseLuminance=m,c.toChannels=function(h){return[h>>24&255,h>>16&255,h>>8&255,255&h]},c.toColor=function(h,g,b,L){return{css:p.toCss(h,g,b,L),rgba:p.toRgba(h,g,b,L)}}}(t||(r.rgba=t={})),r.toPaddedHex=i,r.contrastRatio=o},8969:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CoreTerminal=void 0;const l=a(844),u=a(2585),n=a(4348),d=a(7866),f=a(744),p=a(7302),_=a(6975),e=a(8460),s=a(1753),t=a(1480),i=a(7994),o=a(9282),c=a(5435),v=a(5981),m=a(2660);let h=!1;class g extends l.Disposable{get onScroll(){return this._onScrollApi||(this._onScrollApi=this.register(new e.EventEmitter),this._onScroll.event(L=>{var y;(y=this._onScrollApi)===null||y===void 0||y.fire(L.position)})),this._onScrollApi.event}get cols(){return this._bufferService.cols}get rows(){return this._bufferService.rows}get buffers(){return this._bufferService.buffers}get options(){return this.optionsService.options}set options(L){for(const y in L)this.optionsService.options[y]=L[y]}constructor(L){super(),this._windowsWrappingHeuristics=this.register(new l.MutableDisposable),this._onBinary=this.register(new e.EventEmitter),this.onBinary=this._onBinary.event,this._onData=this.register(new e.EventEmitter),this.onData=this._onData.event,this._onLineFeed=this.register(new e.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onResize=this.register(new e.EventEmitter),this.onResize=this._onResize.event,this._onWriteParsed=this.register(new e.EventEmitter),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this.register(new e.EventEmitter),this._instantiationService=new n.InstantiationService,this.optionsService=this.register(new p.OptionsService(L)),this._instantiationService.setService(u.IOptionsService,this.optionsService),this._bufferService=this.register(this._instantiationService.createInstance(f.BufferService)),this._instantiationService.setService(u.IBufferService,this._bufferService),this._logService=this.register(this._instantiationService.createInstance(d.LogService)),this._instantiationService.setService(u.ILogService,this._logService),this.coreService=this.register(this._instantiationService.createInstance(_.CoreService)),this._instantiationService.setService(u.ICoreService,this.coreService),this.coreMouseService=this.register(this._instantiationService.createInstance(s.CoreMouseService)),this._instantiationService.setService(u.ICoreMouseService,this.coreMouseService),this.unicodeService=this.register(this._instantiationService.createInstance(t.UnicodeService)),this._instantiationService.setService(u.IUnicodeService,this.unicodeService),this._charsetService=this._instantiationService.createInstance(i.CharsetService),this._instantiationService.setService(u.ICharsetService,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(m.OscLinkService),this._instantiationService.setService(u.IOscLinkService,this._oscLinkService),this._inputHandler=this.register(new c.InputHandler(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this.register((0,e.forwardEvent)(this._inputHandler.onLineFeed,this._onLineFeed)),this.register(this._inputHandler),this.register((0,e.forwardEvent)(this._bufferService.onResize,this._onResize)),this.register((0,e.forwardEvent)(this.coreService.onData,this._onData)),this.register((0,e.forwardEvent)(this.coreService.onBinary,this._onBinary)),this.register(this.coreService.onRequestScrollToBottom(()=>this.scrollToBottom())),this.register(this.coreService.onUserInput(()=>this._writeBuffer.handleUserInput())),this.register(this.optionsService.onMultipleOptionChange(["windowsMode","windowsPty"],()=>this._handleWindowsPtyOptionChange())),this.register(this._bufferService.onScroll(y=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this.register(this._inputHandler.onScroll(y=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this._writeBuffer=this.register(new v.WriteBuffer((y,k)=>this._inputHandler.parse(y,k))),this.register((0,e.forwardEvent)(this._writeBuffer.onWriteParsed,this._onWriteParsed))}write(L,y){this._writeBuffer.write(L,y)}writeSync(L,y){this._logService.logLevel<=u.LogLevelEnum.WARN&&!h&&(this._logService.warn("writeSync is unreliable and will be removed soon."),h=!0),this._writeBuffer.writeSync(L,y)}resize(L,y){isNaN(L)||isNaN(y)||(L=Math.max(L,f.MINIMUM_COLS),y=Math.max(y,f.MINIMUM_ROWS),this._bufferService.resize(L,y))}scroll(L,y=!1){this._bufferService.scroll(L,y)}scrollLines(L,y,k){this._bufferService.scrollLines(L,y,k)}scrollPages(L){this.scrollLines(L*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(L){const y=L-this._bufferService.buffer.ydisp;y!==0&&this.scrollLines(y)}registerEscHandler(L,y){return this._inputHandler.registerEscHandler(L,y)}registerDcsHandler(L,y){return this._inputHandler.registerDcsHandler(L,y)}registerCsiHandler(L,y){return this._inputHandler.registerCsiHandler(L,y)}registerOscHandler(L,y){return this._inputHandler.registerOscHandler(L,y)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let L=!1;const y=this.optionsService.rawOptions.windowsPty;y&&y.buildNumber!==void 0&&y.buildNumber!==void 0?L=y.backend==="conpty"&&y.buildNumber<21376:this.optionsService.rawOptions.windowsMode&&(L=!0),L?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){const L=[];L.push(this.onLineFeed(o.updateWindowsModeWrappedState.bind(null,this._bufferService))),L.push(this.registerCsiHandler({final:"H"},()=>((0,o.updateWindowsModeWrappedState)(this._bufferService),!1))),this._windowsWrappingHeuristics.value=(0,l.toDisposable)(()=>{for(const y of L)y.dispose()})}}}r.CoreTerminal=g},8460:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.forwardEvent=r.EventEmitter=void 0,r.EventEmitter=class{constructor(){this._listeners=[],this._disposed=!1}get event(){return this._event||(this._event=a=>(this._listeners.push(a),{dispose:()=>{if(!this._disposed){for(let l=0;ll.fire(u))}},5435:function(I,r,a){var l=this&&this.__decorate||function(M,C,w,E){var D,P=arguments.length,H=P<3?C:E===null?E=Object.getOwnPropertyDescriptor(C,w):E;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")H=Reflect.decorate(M,C,w,E);else for(var U=M.length-1;U>=0;U--)(D=M[U])&&(H=(P<3?D(H):P>3?D(C,w,H):D(C,w))||H);return P>3&&H&&Object.defineProperty(C,w,H),H},u=this&&this.__param||function(M,C){return function(w,E){C(w,E,M)}};Object.defineProperty(r,"__esModule",{value:!0}),r.InputHandler=r.WindowsOptionsReportType=void 0;const n=a(2584),d=a(7116),f=a(2015),p=a(844),_=a(482),e=a(8437),s=a(8460),t=a(643),i=a(511),o=a(3734),c=a(2585),v=a(6242),m=a(6351),h=a(5941),g={"(":0,")":1,"*":2,"+":3,"-":1,".":2},b=131072;function L(M,C){if(M>24)return C.setWinLines||!1;switch(M){case 1:return!!C.restoreWin;case 2:return!!C.minimizeWin;case 3:return!!C.setWinPosition;case 4:return!!C.setWinSizePixels;case 5:return!!C.raiseWin;case 6:return!!C.lowerWin;case 7:return!!C.refreshWin;case 8:return!!C.setWinSizeChars;case 9:return!!C.maximizeWin;case 10:return!!C.fullscreenWin;case 11:return!!C.getWinState;case 13:return!!C.getWinPosition;case 14:return!!C.getWinSizePixels;case 15:return!!C.getScreenSizePixels;case 16:return!!C.getCellSizePixels;case 18:return!!C.getWinSizeChars;case 19:return!!C.getScreenSizeChars;case 20:return!!C.getIconTitle;case 21:return!!C.getWinTitle;case 22:return!!C.pushTitle;case 23:return!!C.popTitle;case 24:return!!C.setWinLines}return!1}var y;(function(M){M[M.GET_WIN_SIZE_PIXELS=0]="GET_WIN_SIZE_PIXELS",M[M.GET_CELL_SIZE_PIXELS=1]="GET_CELL_SIZE_PIXELS"})(y||(r.WindowsOptionsReportType=y={}));let k=0;class x extends p.Disposable{getAttrData(){return this._curAttrData}constructor(C,w,E,D,P,H,U,W,z=new f.EscapeSequenceParser){super(),this._bufferService=C,this._charsetService=w,this._coreService=E,this._logService=D,this._optionsService=P,this._oscLinkService=H,this._coreMouseService=U,this._unicodeService=W,this._parser=z,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new _.StringToUtf32,this._utf8Decoder=new _.Utf8ToUtf32,this._workCell=new i.CellData,this._windowTitle="",this._iconName="",this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=e.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=e.DEFAULT_ATTR_DATA.clone(),this._onRequestBell=this.register(new s.EventEmitter),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this.register(new s.EventEmitter),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this.register(new s.EventEmitter),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this.register(new s.EventEmitter),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this.register(new s.EventEmitter),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this.register(new s.EventEmitter),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this.register(new s.EventEmitter),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this.register(new s.EventEmitter),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this.register(new s.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this.register(new s.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onScroll=this.register(new s.EventEmitter),this.onScroll=this._onScroll.event,this._onTitleChange=this.register(new s.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onColor=this.register(new s.EventEmitter),this.onColor=this._onColor.event,this._parseStack={paused:!1,cursorStartX:0,cursorStartY:0,decodedLength:0,position:0},this._specialColors=[256,257,258],this.register(this._parser),this._dirtyRowTracker=new T(this._bufferService),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate(S=>this._activeBuffer=S.activeBuffer)),this._parser.setCsiHandlerFallback((S,R)=>{this._logService.debug("Unknown CSI code: ",{identifier:this._parser.identToString(S),params:R.toArray()})}),this._parser.setEscHandlerFallback(S=>{this._logService.debug("Unknown ESC code: ",{identifier:this._parser.identToString(S)})}),this._parser.setExecuteHandlerFallback(S=>{this._logService.debug("Unknown EXECUTE code: ",{code:S})}),this._parser.setOscHandlerFallback((S,R,B)=>{this._logService.debug("Unknown OSC code: ",{identifier:S,action:R,data:B})}),this._parser.setDcsHandlerFallback((S,R,B)=>{R==="HOOK"&&(B=B.toArray()),this._logService.debug("Unknown DCS code: ",{identifier:this._parser.identToString(S),action:R,payload:B})}),this._parser.setPrintHandler((S,R,B)=>this.print(S,R,B)),this._parser.registerCsiHandler({final:"@"},S=>this.insertChars(S)),this._parser.registerCsiHandler({intermediates:" ",final:"@"},S=>this.scrollLeft(S)),this._parser.registerCsiHandler({final:"A"},S=>this.cursorUp(S)),this._parser.registerCsiHandler({intermediates:" ",final:"A"},S=>this.scrollRight(S)),this._parser.registerCsiHandler({final:"B"},S=>this.cursorDown(S)),this._parser.registerCsiHandler({final:"C"},S=>this.cursorForward(S)),this._parser.registerCsiHandler({final:"D"},S=>this.cursorBackward(S)),this._parser.registerCsiHandler({final:"E"},S=>this.cursorNextLine(S)),this._parser.registerCsiHandler({final:"F"},S=>this.cursorPrecedingLine(S)),this._parser.registerCsiHandler({final:"G"},S=>this.cursorCharAbsolute(S)),this._parser.registerCsiHandler({final:"H"},S=>this.cursorPosition(S)),this._parser.registerCsiHandler({final:"I"},S=>this.cursorForwardTab(S)),this._parser.registerCsiHandler({final:"J"},S=>this.eraseInDisplay(S,!1)),this._parser.registerCsiHandler({prefix:"?",final:"J"},S=>this.eraseInDisplay(S,!0)),this._parser.registerCsiHandler({final:"K"},S=>this.eraseInLine(S,!1)),this._parser.registerCsiHandler({prefix:"?",final:"K"},S=>this.eraseInLine(S,!0)),this._parser.registerCsiHandler({final:"L"},S=>this.insertLines(S)),this._parser.registerCsiHandler({final:"M"},S=>this.deleteLines(S)),this._parser.registerCsiHandler({final:"P"},S=>this.deleteChars(S)),this._parser.registerCsiHandler({final:"S"},S=>this.scrollUp(S)),this._parser.registerCsiHandler({final:"T"},S=>this.scrollDown(S)),this._parser.registerCsiHandler({final:"X"},S=>this.eraseChars(S)),this._parser.registerCsiHandler({final:"Z"},S=>this.cursorBackwardTab(S)),this._parser.registerCsiHandler({final:"`"},S=>this.charPosAbsolute(S)),this._parser.registerCsiHandler({final:"a"},S=>this.hPositionRelative(S)),this._parser.registerCsiHandler({final:"b"},S=>this.repeatPrecedingCharacter(S)),this._parser.registerCsiHandler({final:"c"},S=>this.sendDeviceAttributesPrimary(S)),this._parser.registerCsiHandler({prefix:">",final:"c"},S=>this.sendDeviceAttributesSecondary(S)),this._parser.registerCsiHandler({final:"d"},S=>this.linePosAbsolute(S)),this._parser.registerCsiHandler({final:"e"},S=>this.vPositionRelative(S)),this._parser.registerCsiHandler({final:"f"},S=>this.hVPosition(S)),this._parser.registerCsiHandler({final:"g"},S=>this.tabClear(S)),this._parser.registerCsiHandler({final:"h"},S=>this.setMode(S)),this._parser.registerCsiHandler({prefix:"?",final:"h"},S=>this.setModePrivate(S)),this._parser.registerCsiHandler({final:"l"},S=>this.resetMode(S)),this._parser.registerCsiHandler({prefix:"?",final:"l"},S=>this.resetModePrivate(S)),this._parser.registerCsiHandler({final:"m"},S=>this.charAttributes(S)),this._parser.registerCsiHandler({final:"n"},S=>this.deviceStatus(S)),this._parser.registerCsiHandler({prefix:"?",final:"n"},S=>this.deviceStatusPrivate(S)),this._parser.registerCsiHandler({intermediates:"!",final:"p"},S=>this.softReset(S)),this._parser.registerCsiHandler({intermediates:" ",final:"q"},S=>this.setCursorStyle(S)),this._parser.registerCsiHandler({final:"r"},S=>this.setScrollRegion(S)),this._parser.registerCsiHandler({final:"s"},S=>this.saveCursor(S)),this._parser.registerCsiHandler({final:"t"},S=>this.windowOptions(S)),this._parser.registerCsiHandler({final:"u"},S=>this.restoreCursor(S)),this._parser.registerCsiHandler({intermediates:"'",final:"}"},S=>this.insertColumns(S)),this._parser.registerCsiHandler({intermediates:"'",final:"~"},S=>this.deleteColumns(S)),this._parser.registerCsiHandler({intermediates:'"',final:"q"},S=>this.selectProtected(S)),this._parser.registerCsiHandler({intermediates:"$",final:"p"},S=>this.requestMode(S,!0)),this._parser.registerCsiHandler({prefix:"?",intermediates:"$",final:"p"},S=>this.requestMode(S,!1)),this._parser.setExecuteHandler(n.C0.BEL,()=>this.bell()),this._parser.setExecuteHandler(n.C0.LF,()=>this.lineFeed()),this._parser.setExecuteHandler(n.C0.VT,()=>this.lineFeed()),this._parser.setExecuteHandler(n.C0.FF,()=>this.lineFeed()),this._parser.setExecuteHandler(n.C0.CR,()=>this.carriageReturn()),this._parser.setExecuteHandler(n.C0.BS,()=>this.backspace()),this._parser.setExecuteHandler(n.C0.HT,()=>this.tab()),this._parser.setExecuteHandler(n.C0.SO,()=>this.shiftOut()),this._parser.setExecuteHandler(n.C0.SI,()=>this.shiftIn()),this._parser.setExecuteHandler(n.C1.IND,()=>this.index()),this._parser.setExecuteHandler(n.C1.NEL,()=>this.nextLine()),this._parser.setExecuteHandler(n.C1.HTS,()=>this.tabSet()),this._parser.registerOscHandler(0,new v.OscHandler(S=>(this.setTitle(S),this.setIconName(S),!0))),this._parser.registerOscHandler(1,new v.OscHandler(S=>this.setIconName(S))),this._parser.registerOscHandler(2,new v.OscHandler(S=>this.setTitle(S))),this._parser.registerOscHandler(4,new v.OscHandler(S=>this.setOrReportIndexedColor(S))),this._parser.registerOscHandler(8,new v.OscHandler(S=>this.setHyperlink(S))),this._parser.registerOscHandler(10,new v.OscHandler(S=>this.setOrReportFgColor(S))),this._parser.registerOscHandler(11,new v.OscHandler(S=>this.setOrReportBgColor(S))),this._parser.registerOscHandler(12,new v.OscHandler(S=>this.setOrReportCursorColor(S))),this._parser.registerOscHandler(104,new v.OscHandler(S=>this.restoreIndexedColor(S))),this._parser.registerOscHandler(110,new v.OscHandler(S=>this.restoreFgColor(S))),this._parser.registerOscHandler(111,new v.OscHandler(S=>this.restoreBgColor(S))),this._parser.registerOscHandler(112,new v.OscHandler(S=>this.restoreCursorColor(S))),this._parser.registerEscHandler({final:"7"},()=>this.saveCursor()),this._parser.registerEscHandler({final:"8"},()=>this.restoreCursor()),this._parser.registerEscHandler({final:"D"},()=>this.index()),this._parser.registerEscHandler({final:"E"},()=>this.nextLine()),this._parser.registerEscHandler({final:"H"},()=>this.tabSet()),this._parser.registerEscHandler({final:"M"},()=>this.reverseIndex()),this._parser.registerEscHandler({final:"="},()=>this.keypadApplicationMode()),this._parser.registerEscHandler({final:">"},()=>this.keypadNumericMode()),this._parser.registerEscHandler({final:"c"},()=>this.fullReset()),this._parser.registerEscHandler({final:"n"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"o"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"|"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"}"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"~"},()=>this.setgLevel(1)),this._parser.registerEscHandler({intermediates:"%",final:"@"},()=>this.selectDefaultCharset()),this._parser.registerEscHandler({intermediates:"%",final:"G"},()=>this.selectDefaultCharset());for(const S in d.CHARSETS)this._parser.registerEscHandler({intermediates:"(",final:S},()=>this.selectCharset("("+S)),this._parser.registerEscHandler({intermediates:")",final:S},()=>this.selectCharset(")"+S)),this._parser.registerEscHandler({intermediates:"*",final:S},()=>this.selectCharset("*"+S)),this._parser.registerEscHandler({intermediates:"+",final:S},()=>this.selectCharset("+"+S)),this._parser.registerEscHandler({intermediates:"-",final:S},()=>this.selectCharset("-"+S)),this._parser.registerEscHandler({intermediates:".",final:S},()=>this.selectCharset("."+S)),this._parser.registerEscHandler({intermediates:"/",final:S},()=>this.selectCharset("/"+S));this._parser.registerEscHandler({intermediates:"#",final:"8"},()=>this.screenAlignmentPattern()),this._parser.setErrorHandler(S=>(this._logService.error("Parsing error: ",S),S)),this._parser.registerDcsHandler({intermediates:"$",final:"q"},new m.DcsHandler((S,R)=>this.requestStatusString(S,R)))}_preserveStack(C,w,E,D){this._parseStack.paused=!0,this._parseStack.cursorStartX=C,this._parseStack.cursorStartY=w,this._parseStack.decodedLength=E,this._parseStack.position=D}_logSlowResolvingAsync(C){this._logService.logLevel<=c.LogLevelEnum.WARN&&Promise.race([C,new Promise((w,E)=>setTimeout(()=>E("#SLOW_TIMEOUT"),5e3))]).catch(w=>{if(w!=="#SLOW_TIMEOUT")throw w;console.warn("async parser handler taking longer than 5000 ms")})}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(C,w){let E,D=this._activeBuffer.x,P=this._activeBuffer.y,H=0;const U=this._parseStack.paused;if(U){if(E=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,w))return this._logSlowResolvingAsync(E),E;D=this._parseStack.cursorStartX,P=this._parseStack.cursorStartY,this._parseStack.paused=!1,C.length>b&&(H=this._parseStack.position+b)}if(this._logService.logLevel<=c.LogLevelEnum.DEBUG&&this._logService.debug("parsing data"+(typeof C=="string"?` "${C}"`:` "${Array.prototype.map.call(C,W=>String.fromCharCode(W)).join("")}"`),typeof C=="string"?C.split("").map(W=>W.charCodeAt(0)):C),this._parseBuffer.lengthb)for(let W=H;W0&&B.getWidth(this._activeBuffer.x-1)===2&&B.setCellFromCodePoint(this._activeBuffer.x-1,0,1,R.fg,R.bg,R.extended);for(let A=w;A=W){if(z){for(;this._activeBuffer.x=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!0),B=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y)}else if(this._activeBuffer.x=W-1,P===2)continue}if(S&&(B.insertCells(this._activeBuffer.x,P,this._activeBuffer.getNullCell(R),R),B.getWidth(W-1)===2&&B.setCellFromCodePoint(W-1,t.NULL_CELL_CODE,t.NULL_CELL_WIDTH,R.fg,R.bg,R.extended)),B.setCellFromCodePoint(this._activeBuffer.x++,D,P,R.fg,R.bg,R.extended),P>0)for(;--P;)B.setCellFromCodePoint(this._activeBuffer.x++,0,0,R.fg,R.bg,R.extended)}else B.getWidth(this._activeBuffer.x-1)?B.addCodepointToCell(this._activeBuffer.x-1,D):B.addCodepointToCell(this._activeBuffer.x-2,D)}E-w>0&&(B.loadCell(this._activeBuffer.x-1,this._workCell),this._workCell.getWidth()===2||this._workCell.getCode()>65535?this._parser.precedingCodepoint=0:this._workCell.isCombined()?this._parser.precedingCodepoint=this._workCell.getChars().charCodeAt(0):this._parser.precedingCodepoint=this._workCell.content),this._activeBuffer.x0&&B.getWidth(this._activeBuffer.x)===0&&!B.hasContent(this._activeBuffer.x)&&B.setCellFromCodePoint(this._activeBuffer.x,0,1,R.fg,R.bg,R.extended),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(C,w){return C.final!=="t"||C.prefix||C.intermediates?this._parser.registerCsiHandler(C,w):this._parser.registerCsiHandler(C,E=>!L(E.params[0],this._optionsService.rawOptions.windowOptions)||w(E))}registerDcsHandler(C,w){return this._parser.registerDcsHandler(C,new m.DcsHandler(w))}registerEscHandler(C,w){return this._parser.registerEscHandler(C,w)}registerOscHandler(C,w){return this._parser.registerOscHandler(C,new v.OscHandler(w))}bell(){return this._onRequestBell.fire(),!0}lineFeed(){return this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._optionsService.rawOptions.convertEol&&(this._activeBuffer.x=0),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows?this._activeBuffer.y=this._bufferService.rows-1:this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.x>=this._bufferService.cols&&this._activeBuffer.x--,this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._onLineFeed.fire(),!0}carriageReturn(){return this._activeBuffer.x=0,!0}backspace(){var C;if(!this._coreService.decPrivateModes.reverseWraparound)return this._restrictCursor(),this._activeBuffer.x>0&&this._activeBuffer.x--,!0;if(this._restrictCursor(this._bufferService.cols),this._activeBuffer.x>0)this._activeBuffer.x--;else if(this._activeBuffer.x===0&&this._activeBuffer.y>this._activeBuffer.scrollTop&&this._activeBuffer.y<=this._activeBuffer.scrollBottom&&(!((C=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y))===null||C===void 0)&&C.isWrapped)){this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.y--,this._activeBuffer.x=this._bufferService.cols-1;const w=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);w.hasWidth(this._activeBuffer.x)&&!w.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;const C=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-C),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(C=this._bufferService.cols-1){this._activeBuffer.x=Math.min(C,Math.max(0,this._activeBuffer.x)),this._activeBuffer.y=this._coreService.decPrivateModes.origin?Math.min(this._activeBuffer.scrollBottom,Math.max(this._activeBuffer.scrollTop,this._activeBuffer.y)):Math.min(this._bufferService.rows-1,Math.max(0,this._activeBuffer.y)),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_setCursor(C,w){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=C,this._activeBuffer.y=this._activeBuffer.scrollTop+w):(this._activeBuffer.x=C,this._activeBuffer.y=w),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(C,w){this._restrictCursor(),this._setCursor(this._activeBuffer.x+C,this._activeBuffer.y+w)}cursorUp(C){const w=this._activeBuffer.y-this._activeBuffer.scrollTop;return w>=0?this._moveCursor(0,-Math.min(w,C.params[0]||1)):this._moveCursor(0,-(C.params[0]||1)),!0}cursorDown(C){const w=this._activeBuffer.scrollBottom-this._activeBuffer.y;return w>=0?this._moveCursor(0,Math.min(w,C.params[0]||1)):this._moveCursor(0,C.params[0]||1),!0}cursorForward(C){return this._moveCursor(C.params[0]||1,0),!0}cursorBackward(C){return this._moveCursor(-(C.params[0]||1),0),!0}cursorNextLine(C){return this.cursorDown(C),this._activeBuffer.x=0,!0}cursorPrecedingLine(C){return this.cursorUp(C),this._activeBuffer.x=0,!0}cursorCharAbsolute(C){return this._setCursor((C.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(C){return this._setCursor(C.length>=2?(C.params[1]||1)-1:0,(C.params[0]||1)-1),!0}charPosAbsolute(C){return this._setCursor((C.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(C){return this._moveCursor(C.params[0]||1,0),!0}linePosAbsolute(C){return this._setCursor(this._activeBuffer.x,(C.params[0]||1)-1),!0}vPositionRelative(C){return this._moveCursor(0,C.params[0]||1),!0}hVPosition(C){return this.cursorPosition(C),!0}tabClear(C){const w=C.params[0];return w===0?delete this._activeBuffer.tabs[this._activeBuffer.x]:w===3&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(C){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let w=C.params[0]||1;for(;w--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(C){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let w=C.params[0]||1;for(;w--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(C){const w=C.params[0];return w===1&&(this._curAttrData.bg|=536870912),w!==2&&w!==0||(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(C,w,E,D=!1,P=!1){const H=this._activeBuffer.lines.get(this._activeBuffer.ybase+C);H.replaceCells(w,E,this._activeBuffer.getNullCell(this._eraseAttrData()),this._eraseAttrData(),P),D&&(H.isWrapped=!1)}_resetBufferLine(C,w=!1){const E=this._activeBuffer.lines.get(this._activeBuffer.ybase+C);E&&(E.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),w),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+C),E.isWrapped=!1)}eraseInDisplay(C,w=!1){let E;switch(this._restrictCursor(this._bufferService.cols),C.params[0]){case 0:for(E=this._activeBuffer.y,this._dirtyRowTracker.markDirty(E),this._eraseInBufferLine(E++,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,w);E=this._bufferService.cols&&(this._activeBuffer.lines.get(E+1).isWrapped=!1);E--;)this._resetBufferLine(E,w);this._dirtyRowTracker.markDirty(0);break;case 2:for(E=this._bufferService.rows,this._dirtyRowTracker.markDirty(E-1);E--;)this._resetBufferLine(E,w);this._dirtyRowTracker.markDirty(0);break;case 3:const D=this._activeBuffer.lines.length-this._bufferService.rows;D>0&&(this._activeBuffer.lines.trimStart(D),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-D,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-D,0),this._onScroll.fire(0))}return!0}eraseInLine(C,w=!1){switch(this._restrictCursor(this._bufferService.cols),C.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,w);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,w);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,w)}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(C){this._restrictCursor();let w=C.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.y0||(this._is("xterm")||this._is("rxvt-unicode")||this._is("screen")?this._coreService.triggerDataEvent(n.C0.ESC+"[?1;2c"):this._is("linux")&&this._coreService.triggerDataEvent(n.C0.ESC+"[?6c")),!0}sendDeviceAttributesSecondary(C){return C.params[0]>0||(this._is("xterm")?this._coreService.triggerDataEvent(n.C0.ESC+"[>0;276;0c"):this._is("rxvt-unicode")?this._coreService.triggerDataEvent(n.C0.ESC+"[>85;95;0c"):this._is("linux")?this._coreService.triggerDataEvent(C.params[0]+"c"):this._is("screen")&&this._coreService.triggerDataEvent(n.C0.ESC+"[>83;40003;0c")),!0}_is(C){return(this._optionsService.rawOptions.termName+"").indexOf(C)===0}setMode(C){for(let w=0;wj?1:2,A=C.params[0];return N=A,F=w?A===2?4:A===4?B(H.modes.insertMode):A===12?3:A===20?B(R.convertEol):0:A===1?B(E.applicationCursorKeys):A===3?R.windowOptions.setWinLines?W===80?2:W===132?1:0:0:A===6?B(E.origin):A===7?B(E.wraparound):A===8?3:A===9?B(D==="X10"):A===12?B(R.cursorBlink):A===25?B(!H.isCursorHidden):A===45?B(E.reverseWraparound):A===66?B(E.applicationKeypad):A===67?4:A===1e3?B(D==="VT200"):A===1002?B(D==="DRAG"):A===1003?B(D==="ANY"):A===1004?B(E.sendFocus):A===1005?4:A===1006?B(P==="SGR"):A===1015?4:A===1016?B(P==="SGR_PIXELS"):A===1048?1:A===47||A===1047||A===1049?B(z===S):A===2004?B(E.bracketedPasteMode):0,H.triggerDataEvent(`${n.C0.ESC}[${w?"":"?"}${N};${F}$y`),!0;var N,F}_updateAttrColor(C,w,E,D,P){return w===2?(C|=50331648,C&=-16777216,C|=o.AttributeData.fromColorRGB([E,D,P])):w===5&&(C&=-50331904,C|=33554432|255&E),C}_extractColor(C,w,E){const D=[0,0,-1,0,0,0];let P=0,H=0;do{if(D[H+P]=C.params[w+H],C.hasSubParams(w+H)){const U=C.getSubParams(w+H);let W=0;do D[1]===5&&(P=1),D[H+W+1+P]=U[W];while(++W=2||D[1]===2&&H+P>=5)break;D[1]&&(P=1)}while(++H+w5)&&(C=1),w.extended.underlineStyle=C,w.fg|=268435456,C===0&&(w.fg&=-268435457),w.updateExtended()}_processSGR0(C){C.fg=e.DEFAULT_ATTR_DATA.fg,C.bg=e.DEFAULT_ATTR_DATA.bg,C.extended=C.extended.clone(),C.extended.underlineStyle=0,C.extended.underlineColor&=-67108864,C.updateExtended()}charAttributes(C){if(C.length===1&&C.params[0]===0)return this._processSGR0(this._curAttrData),!0;const w=C.length;let E;const D=this._curAttrData;for(let P=0;P=30&&E<=37?(D.fg&=-50331904,D.fg|=16777216|E-30):E>=40&&E<=47?(D.bg&=-50331904,D.bg|=16777216|E-40):E>=90&&E<=97?(D.fg&=-50331904,D.fg|=16777224|E-90):E>=100&&E<=107?(D.bg&=-50331904,D.bg|=16777224|E-100):E===0?this._processSGR0(D):E===1?D.fg|=134217728:E===3?D.bg|=67108864:E===4?(D.fg|=268435456,this._processUnderline(C.hasSubParams(P)?C.getSubParams(P)[0]:1,D)):E===5?D.fg|=536870912:E===7?D.fg|=67108864:E===8?D.fg|=1073741824:E===9?D.fg|=2147483648:E===2?D.bg|=134217728:E===21?this._processUnderline(2,D):E===22?(D.fg&=-134217729,D.bg&=-134217729):E===23?D.bg&=-67108865:E===24?(D.fg&=-268435457,this._processUnderline(0,D)):E===25?D.fg&=-536870913:E===27?D.fg&=-67108865:E===28?D.fg&=-1073741825:E===29?D.fg&=2147483647:E===39?(D.fg&=-67108864,D.fg|=16777215&e.DEFAULT_ATTR_DATA.fg):E===49?(D.bg&=-67108864,D.bg|=16777215&e.DEFAULT_ATTR_DATA.bg):E===38||E===48||E===58?P+=this._extractColor(C,P,D):E===53?D.bg|=1073741824:E===55?D.bg&=-1073741825:E===59?(D.extended=D.extended.clone(),D.extended.underlineColor=-1,D.updateExtended()):E===100?(D.fg&=-67108864,D.fg|=16777215&e.DEFAULT_ATTR_DATA.fg,D.bg&=-67108864,D.bg|=16777215&e.DEFAULT_ATTR_DATA.bg):this._logService.debug("Unknown SGR attribute: %d.",E);return!0}deviceStatus(C){switch(C.params[0]){case 5:this._coreService.triggerDataEvent(`${n.C0.ESC}[0n`);break;case 6:const w=this._activeBuffer.y+1,E=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${n.C0.ESC}[${w};${E}R`)}return!0}deviceStatusPrivate(C){if(C.params[0]===6){const w=this._activeBuffer.y+1,E=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${n.C0.ESC}[?${w};${E}R`)}return!0}softReset(C){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=e.DEFAULT_ATTR_DATA.clone(),this._coreService.reset(),this._charsetService.reset(),this._activeBuffer.savedX=0,this._activeBuffer.savedY=this._activeBuffer.ybase,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,this._coreService.decPrivateModes.origin=!1,!0}setCursorStyle(C){const w=C.params[0]||1;switch(w){case 1:case 2:this._optionsService.options.cursorStyle="block";break;case 3:case 4:this._optionsService.options.cursorStyle="underline";break;case 5:case 6:this._optionsService.options.cursorStyle="bar"}const E=w%2==1;return this._optionsService.options.cursorBlink=E,!0}setScrollRegion(C){const w=C.params[0]||1;let E;return(C.length<2||(E=C.params[1])>this._bufferService.rows||E===0)&&(E=this._bufferService.rows),E>w&&(this._activeBuffer.scrollTop=w-1,this._activeBuffer.scrollBottom=E-1,this._setCursor(0,0)),!0}windowOptions(C){if(!L(C.params[0],this._optionsService.rawOptions.windowOptions))return!0;const w=C.length>1?C.params[1]:0;switch(C.params[0]){case 14:w!==2&&this._onRequestWindowsOptionsReport.fire(y.GET_WIN_SIZE_PIXELS);break;case 16:this._onRequestWindowsOptionsReport.fire(y.GET_CELL_SIZE_PIXELS);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${n.C0.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:w!==0&&w!==2||(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>10&&this._windowTitleStack.shift()),w!==0&&w!==1||(this._iconNameStack.push(this._iconName),this._iconNameStack.length>10&&this._iconNameStack.shift());break;case 23:w!==0&&w!==2||this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),w!==0&&w!==1||this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop())}return!0}saveCursor(C){return this._activeBuffer.savedX=this._activeBuffer.x,this._activeBuffer.savedY=this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,!0}restoreCursor(C){return this._activeBuffer.x=this._activeBuffer.savedX||0,this._activeBuffer.y=Math.max(this._activeBuffer.savedY-this._activeBuffer.ybase,0),this._curAttrData.fg=this._activeBuffer.savedCurAttrData.fg,this._curAttrData.bg=this._activeBuffer.savedCurAttrData.bg,this._charsetService.charset=this._savedCharset,this._activeBuffer.savedCharset&&(this._charsetService.charset=this._activeBuffer.savedCharset),this._restrictCursor(),!0}setTitle(C){return this._windowTitle=C,this._onTitleChange.fire(C),!0}setIconName(C){return this._iconName=C,!0}setOrReportIndexedColor(C){const w=[],E=C.split(";");for(;E.length>1;){const D=E.shift(),P=E.shift();if(/^\d+$/.exec(D)){const H=parseInt(D);if(O(H))if(P==="?")w.push({type:0,index:H});else{const U=(0,h.parseColor)(P);U&&w.push({type:1,index:H,color:U})}}}return w.length&&this._onColor.fire(w),!0}setHyperlink(C){const w=C.split(";");return!(w.length<2)&&(w[1]?this._createHyperlink(w[0],w[1]):!w[0]&&this._finishHyperlink())}_createHyperlink(C,w){this._getCurrentLinkId()&&this._finishHyperlink();const E=C.split(":");let D;const P=E.findIndex(H=>H.startsWith("id="));return P!==-1&&(D=E[P].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:D,uri:w}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(C,w){const E=C.split(";");for(let D=0;D=this._specialColors.length);++D,++w)if(E[D]==="?")this._onColor.fire([{type:0,index:this._specialColors[w]}]);else{const P=(0,h.parseColor)(E[D]);P&&this._onColor.fire([{type:1,index:this._specialColors[w],color:P}])}return!0}setOrReportFgColor(C){return this._setOrReportSpecialColor(C,0)}setOrReportBgColor(C){return this._setOrReportSpecialColor(C,1)}setOrReportCursorColor(C){return this._setOrReportSpecialColor(C,2)}restoreIndexedColor(C){if(!C)return this._onColor.fire([{type:2}]),!0;const w=[],E=C.split(";");for(let D=0;D=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._restrictCursor(),!0}tabSet(){return this._activeBuffer.tabs[this._activeBuffer.x]=!0,!0}reverseIndex(){if(this._restrictCursor(),this._activeBuffer.y===this._activeBuffer.scrollTop){const C=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,C,1),this._activeBuffer.lines.set(this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.getBlankLine(this._eraseAttrData())),this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom)}else this._activeBuffer.y--,this._restrictCursor();return!0}fullReset(){return this._parser.reset(),this._onRequestReset.fire(),!0}reset(){this._curAttrData=e.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=e.DEFAULT_ATTR_DATA.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=67108863&this._curAttrData.bg,this._eraseAttrDataInternal}setgLevel(C){return this._charsetService.setgLevel(C),!0}screenAlignmentPattern(){const C=new i.CellData;C.content=4194304|"E".charCodeAt(0),C.fg=this._curAttrData.fg,C.bg=this._curAttrData.bg,this._setCursor(0,0);for(let w=0;w(this._coreService.triggerDataEvent(`${n.C0.ESC}${P}${n.C0.ESC}\\`),!0))(C==='"q'?`P1$r${this._curAttrData.isProtected()?1:0}"q`:C==='"p'?'P1$r61;1"p':C==="r"?`P1$r${E.scrollTop+1};${E.scrollBottom+1}r`:C==="m"?"P1$r0m":C===" q"?`P1$r${{block:2,underline:4,bar:6}[D.cursorStyle]-(D.cursorBlink?1:0)} q`:"P0$r")}markRangeDirty(C,w){this._dirtyRowTracker.markRangeDirty(C,w)}}r.InputHandler=x;let T=class{constructor(M){this._bufferService=M,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(M){Mthis.end&&(this.end=M)}markRangeDirty(M,C){M>C&&(k=M,M=C,C=k),Mthis.end&&(this.end=C)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};function O(M){return 0<=M&&M<256}T=l([u(0,c.IBufferService)],T)},844:(I,r)=>{function a(l){for(const u of l)u.dispose();l.length=0}Object.defineProperty(r,"__esModule",{value:!0}),r.getDisposeArrayDisposable=r.disposeArray=r.toDisposable=r.MutableDisposable=r.Disposable=void 0,r.Disposable=class{constructor(){this._disposables=[],this._isDisposed=!1}dispose(){this._isDisposed=!0;for(const l of this._disposables)l.dispose();this._disposables.length=0}register(l){return this._disposables.push(l),l}unregister(l){const u=this._disposables.indexOf(l);u!==-1&&this._disposables.splice(u,1)}},r.MutableDisposable=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(l){var u;this._isDisposed||l===this._value||((u=this._value)===null||u===void 0||u.dispose(),this._value=l)}clear(){this.value=void 0}dispose(){var l;this._isDisposed=!0,(l=this._value)===null||l===void 0||l.dispose(),this._value=void 0}},r.toDisposable=function(l){return{dispose:l}},r.disposeArray=a,r.getDisposeArrayDisposable=function(l){return{dispose:()=>a(l)}}},1505:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.FourKeyMap=r.TwoKeyMap=void 0;class a{constructor(){this._data={}}set(u,n,d){this._data[u]||(this._data[u]={}),this._data[u][n]=d}get(u,n){return this._data[u]?this._data[u][n]:void 0}clear(){this._data={}}}r.TwoKeyMap=a,r.FourKeyMap=class{constructor(){this._data=new a}set(l,u,n,d,f){this._data.get(l,u)||this._data.set(l,u,new a),this._data.get(l,u).set(n,d,f)}get(l,u,n,d){var f;return(f=this._data.get(l,u))===null||f===void 0?void 0:f.get(n,d)}clear(){this._data.clear()}}},6114:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.isChromeOS=r.isLinux=r.isWindows=r.isIphone=r.isIpad=r.isMac=r.getSafariVersion=r.isSafari=r.isLegacyEdge=r.isFirefox=r.isNode=void 0,r.isNode=typeof navigator>"u";const a=r.isNode?"node":navigator.userAgent,l=r.isNode?"node":navigator.platform;r.isFirefox=a.includes("Firefox"),r.isLegacyEdge=a.includes("Edge"),r.isSafari=/^((?!chrome|android).)*safari/i.test(a),r.getSafariVersion=function(){if(!r.isSafari)return 0;const u=a.match(/Version\/(\d+)/);return u===null||u.length<2?0:parseInt(u[1])},r.isMac=["Macintosh","MacIntel","MacPPC","Mac68K"].includes(l),r.isIpad=l==="iPad",r.isIphone=l==="iPhone",r.isWindows=["Windows","Win16","Win32","WinCE"].includes(l),r.isLinux=l.indexOf("Linux")>=0,r.isChromeOS=/\bCrOS\b/.test(a)},6106:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.SortedList=void 0;let a=0;r.SortedList=class{constructor(l){this._getKey=l,this._array=[]}clear(){this._array.length=0}insert(l){this._array.length!==0?(a=this._search(this._getKey(l)),this._array.splice(a,0,l)):this._array.push(l)}delete(l){if(this._array.length===0)return!1;const u=this._getKey(l);if(u===void 0||(a=this._search(u),a===-1)||this._getKey(this._array[a])!==u)return!1;do if(this._array[a]===l)return this._array.splice(a,1),!0;while(++a=this._array.length)&&this._getKey(this._array[a])===l))do yield this._array[a];while(++a=this._array.length)&&this._getKey(this._array[a])===l))do u(this._array[a]);while(++a=u;){let d=u+n>>1;const f=this._getKey(this._array[d]);if(f>l)n=d-1;else{if(!(f0&&this._getKey(this._array[d-1])===l;)d--;return d}u=d+1}}return u}}},7226:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DebouncedIdleTask=r.IdleTaskQueue=r.PriorityTaskQueue=void 0;const l=a(6114);class u{constructor(){this._tasks=[],this._i=0}enqueue(f){this._tasks.push(f),this._start()}flush(){for(;this._is)return e-p<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(e-p))}ms`),void this._start();e=s}this.clear()}}class n extends u{_requestCallback(f){return setTimeout(()=>f(this._createDeadline(16)))}_cancelCallback(f){clearTimeout(f)}_createDeadline(f){const p=Date.now()+f;return{timeRemaining:()=>Math.max(0,p-Date.now())}}}r.PriorityTaskQueue=n,r.IdleTaskQueue=!l.isNode&&"requestIdleCallback"in window?class extends u{_requestCallback(d){return requestIdleCallback(d)}_cancelCallback(d){cancelIdleCallback(d)}}:n,r.DebouncedIdleTask=class{constructor(){this._queue=new r.IdleTaskQueue}set(d){this._queue.clear(),this._queue.enqueue(d)}flush(){this._queue.flush()}}},9282:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.updateWindowsModeWrappedState=void 0;const l=a(643);r.updateWindowsModeWrappedState=function(u){const n=u.buffer.lines.get(u.buffer.ybase+u.buffer.y-1),d=n==null?void 0:n.get(u.cols-1),f=u.buffer.lines.get(u.buffer.ybase+u.buffer.y);f&&d&&(f.isWrapped=d[l.CHAR_DATA_CODE_INDEX]!==l.NULL_CELL_CODE&&d[l.CHAR_DATA_CODE_INDEX]!==l.WHITESPACE_CELL_CODE)}},3734:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ExtendedAttrs=r.AttributeData=void 0;class a{constructor(){this.fg=0,this.bg=0,this.extended=new l}static toColorRGB(n){return[n>>>16&255,n>>>8&255,255&n]}static fromColorRGB(n){return(255&n[0])<<16|(255&n[1])<<8|255&n[2]}clone(){const n=new a;return n.fg=this.fg,n.bg=this.bg,n.extended=this.extended.clone(),n}isInverse(){return 67108864&this.fg}isBold(){return 134217728&this.fg}isUnderline(){return this.hasExtendedAttrs()&&this.extended.underlineStyle!==0?1:268435456&this.fg}isBlink(){return 536870912&this.fg}isInvisible(){return 1073741824&this.fg}isItalic(){return 67108864&this.bg}isDim(){return 134217728&this.bg}isStrikethrough(){return 2147483648&this.fg}isProtected(){return 536870912&this.bg}isOverline(){return 1073741824&this.bg}getFgColorMode(){return 50331648&this.fg}getBgColorMode(){return 50331648&this.bg}isFgRGB(){return(50331648&this.fg)==50331648}isBgRGB(){return(50331648&this.bg)==50331648}isFgPalette(){return(50331648&this.fg)==16777216||(50331648&this.fg)==33554432}isBgPalette(){return(50331648&this.bg)==16777216||(50331648&this.bg)==33554432}isFgDefault(){return(50331648&this.fg)==0}isBgDefault(){return(50331648&this.bg)==0}isAttributeDefault(){return this.fg===0&&this.bg===0}getFgColor(){switch(50331648&this.fg){case 16777216:case 33554432:return 255&this.fg;case 50331648:return 16777215&this.fg;default:return-1}}getBgColor(){switch(50331648&this.bg){case 16777216:case 33554432:return 255&this.bg;case 50331648:return 16777215&this.bg;default:return-1}}hasExtendedAttrs(){return 268435456&this.bg}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(268435456&this.bg&&~this.extended.underlineColor)switch(50331648&this.extended.underlineColor){case 16777216:case 33554432:return 255&this.extended.underlineColor;case 50331648:return 16777215&this.extended.underlineColor;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return 268435456&this.bg&&~this.extended.underlineColor?50331648&this.extended.underlineColor:this.getFgColorMode()}isUnderlineColorRGB(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==50331648:this.isFgRGB()}isUnderlineColorPalette(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==16777216||(50331648&this.extended.underlineColor)==33554432:this.isFgPalette()}isUnderlineColorDefault(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==0:this.isFgDefault()}getUnderlineStyle(){return 268435456&this.fg?268435456&this.bg?this.extended.underlineStyle:1:0}}r.AttributeData=a;class l{get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(n){this._ext=n}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(n){this._ext&=-469762049,this._ext|=n<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(n){this._ext&=-67108864,this._ext|=67108863&n}get urlId(){return this._urlId}set urlId(n){this._urlId=n}constructor(n=0,d=0){this._ext=0,this._urlId=0,this._ext=n,this._urlId=d}clone(){return new l(this._ext,this._urlId)}isEmpty(){return this.underlineStyle===0&&this._urlId===0}}r.ExtendedAttrs=l},9092:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Buffer=r.MAX_BUFFER_SIZE=void 0;const l=a(6349),u=a(7226),n=a(3734),d=a(8437),f=a(4634),p=a(511),_=a(643),e=a(4863),s=a(7116);r.MAX_BUFFER_SIZE=4294967295,r.Buffer=class{constructor(t,i,o){this._hasScrollback=t,this._optionsService=i,this._bufferService=o,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=d.DEFAULT_ATTR_DATA.clone(),this.savedCharset=s.DEFAULT_CHARSET,this.markers=[],this._nullCell=p.CellData.fromCharData([0,_.NULL_CELL_CHAR,_.NULL_CELL_WIDTH,_.NULL_CELL_CODE]),this._whitespaceCell=p.CellData.fromCharData([0,_.WHITESPACE_CELL_CHAR,_.WHITESPACE_CELL_WIDTH,_.WHITESPACE_CELL_CODE]),this._isClearing=!1,this._memoryCleanupQueue=new u.IdleTaskQueue,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new l.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(t){return t?(this._nullCell.fg=t.fg,this._nullCell.bg=t.bg,this._nullCell.extended=t.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new n.ExtendedAttrs),this._nullCell}getWhitespaceCell(t){return t?(this._whitespaceCell.fg=t.fg,this._whitespaceCell.bg=t.bg,this._whitespaceCell.extended=t.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new n.ExtendedAttrs),this._whitespaceCell}getBlankLine(t,i){return new d.BufferLine(this._bufferService.cols,this.getNullCell(t),i)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){const t=this.ybase+this.y-this.ydisp;return t>=0&&tr.MAX_BUFFER_SIZE?r.MAX_BUFFER_SIZE:i}fillViewportRows(t){if(this.lines.length===0){t===void 0&&(t=d.DEFAULT_ATTR_DATA);let i=this._rows;for(;i--;)this.lines.push(this.getBlankLine(t))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new l.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(t,i){const o=this.getNullCell(d.DEFAULT_ATTR_DATA);let c=0;const v=this._getCorrectBufferLength(i);if(v>this.lines.maxLength&&(this.lines.maxLength=v),this.lines.length>0){if(this._cols0&&this.lines.length<=this.ybase+this.y+m+1?(this.ybase--,m++,this.ydisp>0&&this.ydisp--):this.lines.push(new d.BufferLine(t,o)));else for(let h=this._rows;h>i;h--)this.lines.length>i+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(v0&&(this.lines.trimStart(h),this.ybase=Math.max(this.ybase-h,0),this.ydisp=Math.max(this.ydisp-h,0),this.savedY=Math.max(this.savedY-h,0)),this.lines.maxLength=v}this.x=Math.min(this.x,t-1),this.y=Math.min(this.y,i-1),m&&(this.y+=m),this.savedX=Math.min(this.savedX,t-1),this.scrollTop=0}if(this.scrollBottom=i-1,this._isReflowEnabled&&(this._reflow(t,i),this._cols>t))for(let m=0;m.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue(()=>this._batchedMemoryCleanup()))}_batchedMemoryCleanup(){let t=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,t=!1);let i=0;for(;this._memoryCleanupPosition100)return!0;return t}get _isReflowEnabled(){const t=this._optionsService.rawOptions.windowsPty;return t&&t.buildNumber?this._hasScrollback&&t.backend==="conpty"&&t.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(t,i){this._cols!==t&&(t>this._cols?this._reflowLarger(t,i):this._reflowSmaller(t,i))}_reflowLarger(t,i){const o=(0,f.reflowLargerGetLinesToRemove)(this.lines,this._cols,t,this.ybase+this.y,this.getNullCell(d.DEFAULT_ATTR_DATA));if(o.length>0){const c=(0,f.reflowLargerCreateNewLayout)(this.lines,o);(0,f.reflowLargerApplyNewLayout)(this.lines,c.layout),this._reflowLargerAdjustViewport(t,i,c.countRemoved)}}_reflowLargerAdjustViewport(t,i,o){const c=this.getNullCell(d.DEFAULT_ATTR_DATA);let v=o;for(;v-- >0;)this.ybase===0?(this.y>0&&this.y--,this.lines.length=0;m--){let h=this.lines.get(m);if(!h||!h.isWrapped&&h.getTrimmedLength()<=t)continue;const g=[h];for(;h.isWrapped&&m>0;)h=this.lines.get(--m),g.unshift(h);const b=this.ybase+this.y;if(b>=m&&b0&&(c.push({start:m+g.length+v,newLines:T}),v+=T.length),g.push(...T);let O=y.length-1,M=y[O];M===0&&(O--,M=y[O]);let C=g.length-k-1,w=L;for(;C>=0;){const D=Math.min(w,M);if(g[O]===void 0)break;if(g[O].copyCellsFrom(g[C],w-D,M-D,D,!0),M-=D,M===0&&(O--,M=y[O]),w-=D,w===0){C--;const P=Math.max(C,0);w=(0,f.getWrappedLineTrimmedLength)(g,P,this._cols)}}for(let D=0;D0;)this.ybase===0?this.y0){const m=[],h=[];for(let O=0;O=0;O--)if(y&&y.start>b+k){for(let M=y.newLines.length-1;M>=0;M--)this.lines.set(O--,y.newLines[M]);O++,m.push({index:b+1,amount:y.newLines.length}),k+=y.newLines.length,y=c[++L]}else this.lines.set(O,h[b--]);let x=0;for(let O=m.length-1;O>=0;O--)m[O].index+=x,this.lines.onInsertEmitter.fire(m[O]),x+=m[O].amount;const T=Math.max(0,g+v-this.lines.maxLength);T>0&&this.lines.onTrimEmitter.fire(T)}}translateBufferLineToString(t,i,o=0,c){const v=this.lines.get(t);return v?v.translateToString(i,o,c):""}getWrappedRangeForLine(t){let i=t,o=t;for(;i>0&&this.lines.get(i).isWrapped;)i--;for(;o+10;);return t>=this._cols?this._cols-1:t<0?0:t}nextStop(t){for(t==null&&(t=this.x);!this.tabs[++t]&&t=this._cols?this._cols-1:t<0?0:t}clearMarkers(t){this._isClearing=!0;for(let i=0;i{i.line-=o,i.line<0&&i.dispose()})),i.register(this.lines.onInsert(o=>{i.line>=o.index&&(i.line+=o.amount)})),i.register(this.lines.onDelete(o=>{i.line>=o.index&&i.lineo.index&&(i.line-=o.amount)})),i.register(i.onDispose(()=>this._removeMarker(i))),i}_removeMarker(t){this._isClearing||this.markers.splice(this.markers.indexOf(t),1)}}},8437:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferLine=r.DEFAULT_ATTR_DATA=void 0;const l=a(3734),u=a(511),n=a(643),d=a(482);r.DEFAULT_ATTR_DATA=Object.freeze(new l.AttributeData);let f=0;class p{constructor(e,s,t=!1){this.isWrapped=t,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(3*e);const i=s||u.CellData.fromCharData([0,n.NULL_CELL_CHAR,n.NULL_CELL_WIDTH,n.NULL_CELL_CODE]);for(let o=0;o>22,2097152&s?this._combined[e].charCodeAt(this._combined[e].length-1):t]}set(e,s){this._data[3*e+1]=s[n.CHAR_DATA_ATTR_INDEX],s[n.CHAR_DATA_CHAR_INDEX].length>1?(this._combined[e]=s[1],this._data[3*e+0]=2097152|e|s[n.CHAR_DATA_WIDTH_INDEX]<<22):this._data[3*e+0]=s[n.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|s[n.CHAR_DATA_WIDTH_INDEX]<<22}getWidth(e){return this._data[3*e+0]>>22}hasWidth(e){return 12582912&this._data[3*e+0]}getFg(e){return this._data[3*e+1]}getBg(e){return this._data[3*e+2]}hasContent(e){return 4194303&this._data[3*e+0]}getCodePoint(e){const s=this._data[3*e+0];return 2097152&s?this._combined[e].charCodeAt(this._combined[e].length-1):2097151&s}isCombined(e){return 2097152&this._data[3*e+0]}getString(e){const s=this._data[3*e+0];return 2097152&s?this._combined[e]:2097151&s?(0,d.stringFromCodePoint)(2097151&s):""}isProtected(e){return 536870912&this._data[3*e+2]}loadCell(e,s){return f=3*e,s.content=this._data[f+0],s.fg=this._data[f+1],s.bg=this._data[f+2],2097152&s.content&&(s.combinedData=this._combined[e]),268435456&s.bg&&(s.extended=this._extendedAttrs[e]),s}setCell(e,s){2097152&s.content&&(this._combined[e]=s.combinedData),268435456&s.bg&&(this._extendedAttrs[e]=s.extended),this._data[3*e+0]=s.content,this._data[3*e+1]=s.fg,this._data[3*e+2]=s.bg}setCellFromCodePoint(e,s,t,i,o,c){268435456&o&&(this._extendedAttrs[e]=c),this._data[3*e+0]=s|t<<22,this._data[3*e+1]=i,this._data[3*e+2]=o}addCodepointToCell(e,s){let t=this._data[3*e+0];2097152&t?this._combined[e]+=(0,d.stringFromCodePoint)(s):(2097151&t?(this._combined[e]=(0,d.stringFromCodePoint)(2097151&t)+(0,d.stringFromCodePoint)(s),t&=-2097152,t|=2097152):t=s|4194304,this._data[3*e+0]=t)}insertCells(e,s,t,i){if((e%=this.length)&&this.getWidth(e-1)===2&&this.setCellFromCodePoint(e-1,0,1,(i==null?void 0:i.fg)||0,(i==null?void 0:i.bg)||0,(i==null?void 0:i.extended)||new l.ExtendedAttrs),s=0;--c)this.setCell(e+s+c,this.loadCell(e+c,o));for(let c=0;cthis.length){if(this._data.buffer.byteLength>=4*t)this._data=new Uint32Array(this._data.buffer,0,t);else{const i=new Uint32Array(t);i.set(this._data),this._data=i}for(let i=this.length;i=e&&delete this._combined[v]}const o=Object.keys(this._extendedAttrs);for(let c=0;c=e&&delete this._extendedAttrs[v]}}return this.length=e,4*t*2=0;--e)if(4194303&this._data[3*e+0])return e+(this._data[3*e+0]>>22);return 0}getNoBgTrimmedLength(){for(let e=this.length-1;e>=0;--e)if(4194303&this._data[3*e+0]||50331648&this._data[3*e+2])return e+(this._data[3*e+0]>>22);return 0}copyCellsFrom(e,s,t,i,o){const c=e._data;if(o)for(let m=i-1;m>=0;m--){for(let h=0;h<3;h++)this._data[3*(t+m)+h]=c[3*(s+m)+h];268435456&c[3*(s+m)+2]&&(this._extendedAttrs[t+m]=e._extendedAttrs[s+m])}else for(let m=0;m=s&&(this._combined[h-s+t]=e._combined[h])}}translateToString(e=!1,s=0,t=this.length){e&&(t=Math.min(t,this.getTrimmedLength()));let i="";for(;s>22||1}return i}}r.BufferLine=p},4841:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.getRangeLength=void 0,r.getRangeLength=function(a,l){if(a.start.y>a.end.y)throw new Error(`Buffer range end (${a.end.x}, ${a.end.y}) cannot be before start (${a.start.x}, ${a.start.y})`);return l*(a.end.y-a.start.y)+(a.end.x-a.start.x+1)}},4634:(I,r)=>{function a(l,u,n){if(u===l.length-1)return l[u].getTrimmedLength();const d=!l[u].hasContent(n-1)&&l[u].getWidth(n-1)===1,f=l[u+1].getWidth(0)===2;return d&&f?n-1:n}Object.defineProperty(r,"__esModule",{value:!0}),r.getWrappedLineTrimmedLength=r.reflowSmallerGetNewLineLengths=r.reflowLargerApplyNewLayout=r.reflowLargerCreateNewLayout=r.reflowLargerGetLinesToRemove=void 0,r.reflowLargerGetLinesToRemove=function(l,u,n,d,f){const p=[];for(let _=0;_=_&&d0&&(h>i||t[h].getTrimmedLength()===0);h--)m++;m>0&&(p.push(_+t.length-m),p.push(m)),_+=t.length-1}return p},r.reflowLargerCreateNewLayout=function(l,u){const n=[];let d=0,f=u[d],p=0;for(let _=0;_a(l,t,u)).reduce((s,t)=>s+t);let p=0,_=0,e=0;for(;es&&(p-=s,_++);const t=l[_].getWidth(p-1)===2;t&&p--;const i=t?n-1:n;d.push(i),e+=i}return d},r.getWrappedLineTrimmedLength=a},5295:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferSet=void 0;const l=a(8460),u=a(844),n=a(9092);class d extends u.Disposable{constructor(p,_){super(),this._optionsService=p,this._bufferService=_,this._onBufferActivate=this.register(new l.EventEmitter),this.onBufferActivate=this._onBufferActivate.event,this.reset(),this.register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.resize(this._bufferService.cols,this._bufferService.rows))),this.register(this._optionsService.onSpecificOptionChange("tabStopWidth",()=>this.setupTabStops()))}reset(){this._normal=new n.Buffer(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new n.Buffer(!1,this._optionsService,this._bufferService),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}),this.setupTabStops()}get alt(){return this._alt}get active(){return this._activeBuffer}get normal(){return this._normal}activateNormalBuffer(){this._activeBuffer!==this._normal&&(this._normal.x=this._alt.x,this._normal.y=this._alt.y,this._alt.clearAllMarkers(),this._alt.clear(),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}))}activateAltBuffer(p){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(p),this._alt.x=this._normal.x,this._alt.y=this._normal.y,this._activeBuffer=this._alt,this._onBufferActivate.fire({activeBuffer:this._alt,inactiveBuffer:this._normal}))}resize(p,_){this._normal.resize(p,_),this._alt.resize(p,_),this.setupTabStops(p)}setupTabStops(p){this._normal.setupTabStops(p),this._alt.setupTabStops(p)}}r.BufferSet=d},511:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CellData=void 0;const l=a(482),u=a(643),n=a(3734);class d extends n.AttributeData{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new n.ExtendedAttrs,this.combinedData=""}static fromCharData(p){const _=new d;return _.setFromCharData(p),_}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?(0,l.stringFromCodePoint)(2097151&this.content):""}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(p){this.fg=p[u.CHAR_DATA_ATTR_INDEX],this.bg=0;let _=!1;if(p[u.CHAR_DATA_CHAR_INDEX].length>2)_=!0;else if(p[u.CHAR_DATA_CHAR_INDEX].length===2){const e=p[u.CHAR_DATA_CHAR_INDEX].charCodeAt(0);if(55296<=e&&e<=56319){const s=p[u.CHAR_DATA_CHAR_INDEX].charCodeAt(1);56320<=s&&s<=57343?this.content=1024*(e-55296)+s-56320+65536|p[u.CHAR_DATA_WIDTH_INDEX]<<22:_=!0}else _=!0}else this.content=p[u.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|p[u.CHAR_DATA_WIDTH_INDEX]<<22;_&&(this.combinedData=p[u.CHAR_DATA_CHAR_INDEX],this.content=2097152|p[u.CHAR_DATA_WIDTH_INDEX]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}r.CellData=d},643:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.WHITESPACE_CELL_CODE=r.WHITESPACE_CELL_WIDTH=r.WHITESPACE_CELL_CHAR=r.NULL_CELL_CODE=r.NULL_CELL_WIDTH=r.NULL_CELL_CHAR=r.CHAR_DATA_CODE_INDEX=r.CHAR_DATA_WIDTH_INDEX=r.CHAR_DATA_CHAR_INDEX=r.CHAR_DATA_ATTR_INDEX=r.DEFAULT_EXT=r.DEFAULT_ATTR=r.DEFAULT_COLOR=void 0,r.DEFAULT_COLOR=0,r.DEFAULT_ATTR=256|r.DEFAULT_COLOR<<9,r.DEFAULT_EXT=0,r.CHAR_DATA_ATTR_INDEX=0,r.CHAR_DATA_CHAR_INDEX=1,r.CHAR_DATA_WIDTH_INDEX=2,r.CHAR_DATA_CODE_INDEX=3,r.NULL_CELL_CHAR="",r.NULL_CELL_WIDTH=1,r.NULL_CELL_CODE=0,r.WHITESPACE_CELL_CHAR=" ",r.WHITESPACE_CELL_WIDTH=1,r.WHITESPACE_CELL_CODE=32},4863:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Marker=void 0;const l=a(8460),u=a(844);class n{get id(){return this._id}constructor(f){this.line=f,this.isDisposed=!1,this._disposables=[],this._id=n._nextId++,this._onDispose=this.register(new l.EventEmitter),this.onDispose=this._onDispose.event}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),(0,u.disposeArray)(this._disposables),this._disposables.length=0)}register(f){return this._disposables.push(f),f}}r.Marker=n,n._nextId=1},7116:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DEFAULT_CHARSET=r.CHARSETS=void 0,r.CHARSETS={},r.DEFAULT_CHARSET=r.CHARSETS.B,r.CHARSETS[0]={"`":"◆",a:"▒",b:"␉",c:"␌",d:"␍",e:"␊",f:"°",g:"±",h:"␤",i:"␋",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"},r.CHARSETS.A={"#":"£"},r.CHARSETS.B=void 0,r.CHARSETS[4]={"#":"£","@":"¾","[":"ij","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"},r.CHARSETS.C=r.CHARSETS[5]={"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},r.CHARSETS.R={"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"},r.CHARSETS.Q={"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"},r.CHARSETS.K={"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"},r.CHARSETS.Y={"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"},r.CHARSETS.E=r.CHARSETS[6]={"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"},r.CHARSETS.Z={"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"},r.CHARSETS.H=r.CHARSETS[7]={"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},r.CHARSETS["="]={"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}},2584:(I,r)=>{var a,l,u;Object.defineProperty(r,"__esModule",{value:!0}),r.C1_ESCAPED=r.C1=r.C0=void 0,function(n){n.NUL="\0",n.SOH="",n.STX="",n.ETX="",n.EOT="",n.ENQ="",n.ACK="",n.BEL="\x07",n.BS="\b",n.HT=" ",n.LF=` -`,n.VT="\v",n.FF="\f",n.CR="\r",n.SO="",n.SI="",n.DLE="",n.DC1="",n.DC2="",n.DC3="",n.DC4="",n.NAK="",n.SYN="",n.ETB="",n.CAN="",n.EM="",n.SUB="",n.ESC="\x1B",n.FS="",n.GS="",n.RS="",n.US="",n.SP=" ",n.DEL=""}(a||(r.C0=a={})),function(n){n.PAD="€",n.HOP="",n.BPH="‚",n.NBH="ƒ",n.IND="„",n.NEL="…",n.SSA="†",n.ESA="‡",n.HTS="ˆ",n.HTJ="‰",n.VTS="Š",n.PLD="‹",n.PLU="Œ",n.RI="",n.SS2="Ž",n.SS3="",n.DCS="",n.PU1="‘",n.PU2="’",n.STS="“",n.CCH="”",n.MW="•",n.SPA="–",n.EPA="—",n.SOS="˜",n.SGCI="™",n.SCI="š",n.CSI="›",n.ST="œ",n.OSC="",n.PM="ž",n.APC="Ÿ"}(l||(r.C1=l={})),function(n){n.ST=`${a.ESC}\\`}(u||(r.C1_ESCAPED=u={}))},7399:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.evaluateKeyboardEvent=void 0;const l=a(2584),u={48:["0",")"],49:["1","!"],50:["2","@"],51:["3","#"],52:["4","$"],53:["5","%"],54:["6","^"],55:["7","&"],56:["8","*"],57:["9","("],186:[";",":"],187:["=","+"],188:[",","<"],189:["-","_"],190:[".",">"],191:["/","?"],192:["`","~"],219:["[","{"],220:["\\","|"],221:["]","}"],222:["'",'"']};r.evaluateKeyboardEvent=function(n,d,f,p){const _={type:0,cancel:!1,key:void 0},e=(n.shiftKey?1:0)|(n.altKey?2:0)|(n.ctrlKey?4:0)|(n.metaKey?8:0);switch(n.keyCode){case 0:n.key==="UIKeyInputUpArrow"?_.key=d?l.C0.ESC+"OA":l.C0.ESC+"[A":n.key==="UIKeyInputLeftArrow"?_.key=d?l.C0.ESC+"OD":l.C0.ESC+"[D":n.key==="UIKeyInputRightArrow"?_.key=d?l.C0.ESC+"OC":l.C0.ESC+"[C":n.key==="UIKeyInputDownArrow"&&(_.key=d?l.C0.ESC+"OB":l.C0.ESC+"[B");break;case 8:if(n.altKey){_.key=l.C0.ESC+l.C0.DEL;break}_.key=l.C0.DEL;break;case 9:if(n.shiftKey){_.key=l.C0.ESC+"[Z";break}_.key=l.C0.HT,_.cancel=!0;break;case 13:_.key=n.altKey?l.C0.ESC+l.C0.CR:l.C0.CR,_.cancel=!0;break;case 27:_.key=l.C0.ESC,n.altKey&&(_.key=l.C0.ESC+l.C0.ESC),_.cancel=!0;break;case 37:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"D",_.key===l.C0.ESC+"[1;3D"&&(_.key=l.C0.ESC+(f?"b":"[1;5D"))):_.key=d?l.C0.ESC+"OD":l.C0.ESC+"[D";break;case 39:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"C",_.key===l.C0.ESC+"[1;3C"&&(_.key=l.C0.ESC+(f?"f":"[1;5C"))):_.key=d?l.C0.ESC+"OC":l.C0.ESC+"[C";break;case 38:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"A",f||_.key!==l.C0.ESC+"[1;3A"||(_.key=l.C0.ESC+"[1;5A")):_.key=d?l.C0.ESC+"OA":l.C0.ESC+"[A";break;case 40:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"B",f||_.key!==l.C0.ESC+"[1;3B"||(_.key=l.C0.ESC+"[1;5B")):_.key=d?l.C0.ESC+"OB":l.C0.ESC+"[B";break;case 45:n.shiftKey||n.ctrlKey||(_.key=l.C0.ESC+"[2~");break;case 46:_.key=e?l.C0.ESC+"[3;"+(e+1)+"~":l.C0.ESC+"[3~";break;case 36:_.key=e?l.C0.ESC+"[1;"+(e+1)+"H":d?l.C0.ESC+"OH":l.C0.ESC+"[H";break;case 35:_.key=e?l.C0.ESC+"[1;"+(e+1)+"F":d?l.C0.ESC+"OF":l.C0.ESC+"[F";break;case 33:n.shiftKey?_.type=2:n.ctrlKey?_.key=l.C0.ESC+"[5;"+(e+1)+"~":_.key=l.C0.ESC+"[5~";break;case 34:n.shiftKey?_.type=3:n.ctrlKey?_.key=l.C0.ESC+"[6;"+(e+1)+"~":_.key=l.C0.ESC+"[6~";break;case 112:_.key=e?l.C0.ESC+"[1;"+(e+1)+"P":l.C0.ESC+"OP";break;case 113:_.key=e?l.C0.ESC+"[1;"+(e+1)+"Q":l.C0.ESC+"OQ";break;case 114:_.key=e?l.C0.ESC+"[1;"+(e+1)+"R":l.C0.ESC+"OR";break;case 115:_.key=e?l.C0.ESC+"[1;"+(e+1)+"S":l.C0.ESC+"OS";break;case 116:_.key=e?l.C0.ESC+"[15;"+(e+1)+"~":l.C0.ESC+"[15~";break;case 117:_.key=e?l.C0.ESC+"[17;"+(e+1)+"~":l.C0.ESC+"[17~";break;case 118:_.key=e?l.C0.ESC+"[18;"+(e+1)+"~":l.C0.ESC+"[18~";break;case 119:_.key=e?l.C0.ESC+"[19;"+(e+1)+"~":l.C0.ESC+"[19~";break;case 120:_.key=e?l.C0.ESC+"[20;"+(e+1)+"~":l.C0.ESC+"[20~";break;case 121:_.key=e?l.C0.ESC+"[21;"+(e+1)+"~":l.C0.ESC+"[21~";break;case 122:_.key=e?l.C0.ESC+"[23;"+(e+1)+"~":l.C0.ESC+"[23~";break;case 123:_.key=e?l.C0.ESC+"[24;"+(e+1)+"~":l.C0.ESC+"[24~";break;default:if(!n.ctrlKey||n.shiftKey||n.altKey||n.metaKey)if(f&&!p||!n.altKey||n.metaKey)!f||n.altKey||n.ctrlKey||n.shiftKey||!n.metaKey?n.key&&!n.ctrlKey&&!n.altKey&&!n.metaKey&&n.keyCode>=48&&n.key.length===1?_.key=n.key:n.key&&n.ctrlKey&&(n.key==="_"&&(_.key=l.C0.US),n.key==="@"&&(_.key=l.C0.NUL)):n.keyCode===65&&(_.type=1);else{const s=u[n.keyCode],t=s==null?void 0:s[n.shiftKey?1:0];if(t)_.key=l.C0.ESC+t;else if(n.keyCode>=65&&n.keyCode<=90){const i=n.ctrlKey?n.keyCode-64:n.keyCode+32;let o=String.fromCharCode(i);n.shiftKey&&(o=o.toUpperCase()),_.key=l.C0.ESC+o}else if(n.keyCode===32)_.key=l.C0.ESC+(n.ctrlKey?l.C0.NUL:" ");else if(n.key==="Dead"&&n.code.startsWith("Key")){let i=n.code.slice(3,4);n.shiftKey||(i=i.toLowerCase()),_.key=l.C0.ESC+i,_.cancel=!0}}else n.keyCode>=65&&n.keyCode<=90?_.key=String.fromCharCode(n.keyCode-64):n.keyCode===32?_.key=l.C0.NUL:n.keyCode>=51&&n.keyCode<=55?_.key=String.fromCharCode(n.keyCode-51+27):n.keyCode===56?_.key=l.C0.DEL:n.keyCode===219?_.key=l.C0.ESC:n.keyCode===220?_.key=l.C0.FS:n.keyCode===221&&(_.key=l.C0.GS)}return _}},482:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Utf8ToUtf32=r.StringToUtf32=r.utf32ToString=r.stringFromCodePoint=void 0,r.stringFromCodePoint=function(a){return a>65535?(a-=65536,String.fromCharCode(55296+(a>>10))+String.fromCharCode(a%1024+56320)):String.fromCharCode(a)},r.utf32ToString=function(a,l=0,u=a.length){let n="";for(let d=l;d65535?(f-=65536,n+=String.fromCharCode(55296+(f>>10))+String.fromCharCode(f%1024+56320)):n+=String.fromCharCode(f)}return n},r.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(a,l){const u=a.length;if(!u)return 0;let n=0,d=0;if(this._interim){const f=a.charCodeAt(d++);56320<=f&&f<=57343?l[n++]=1024*(this._interim-55296)+f-56320+65536:(l[n++]=this._interim,l[n++]=f),this._interim=0}for(let f=d;f=u)return this._interim=p,n;const _=a.charCodeAt(f);56320<=_&&_<=57343?l[n++]=1024*(p-55296)+_-56320+65536:(l[n++]=p,l[n++]=_)}else p!==65279&&(l[n++]=p)}return n}},r.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(a,l){const u=a.length;if(!u)return 0;let n,d,f,p,_=0,e=0,s=0;if(this.interim[0]){let o=!1,c=this.interim[0];c&=(224&c)==192?31:(240&c)==224?15:7;let v,m=0;for(;(v=63&this.interim[++m])&&m<4;)c<<=6,c|=v;const h=(224&this.interim[0])==192?2:(240&this.interim[0])==224?3:4,g=h-m;for(;s=u)return 0;if(v=a[s++],(192&v)!=128){s--,o=!0;break}this.interim[m++]=v,c<<=6,c|=63&v}o||(h===2?c<128?s--:l[_++]=c:h===3?c<2048||c>=55296&&c<=57343||c===65279||(l[_++]=c):c<65536||c>1114111||(l[_++]=c)),this.interim.fill(0)}const t=u-4;let i=s;for(;i=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(e=(31&n)<<6|63&d,e<128){i--;continue}l[_++]=e}else if((240&n)==224){if(i>=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,_;if(f=a[i++],(192&f)!=128){i--;continue}if(e=(15&n)<<12|(63&d)<<6|63&f,e<2048||e>=55296&&e<=57343||e===65279)continue;l[_++]=e}else if((248&n)==240){if(i>=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,_;if(f=a[i++],(192&f)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,this.interim[2]=f,_;if(p=a[i++],(192&p)!=128){i--;continue}if(e=(7&n)<<18|(63&d)<<12|(63&f)<<6|63&p,e<65536||e>1114111)continue;l[_++]=e}}return _}}},225:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeV6=void 0;const a=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531]],l=[[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]];let u;r.UnicodeV6=class{constructor(){if(this.version="6",!u){u=new Uint8Array(65536),u.fill(1),u[0]=0,u.fill(0,1,32),u.fill(0,127,160),u.fill(2,4352,4448),u[9001]=2,u[9002]=2,u.fill(2,11904,42192),u[12351]=1,u.fill(2,44032,55204),u.fill(2,63744,64256),u.fill(2,65040,65050),u.fill(2,65072,65136),u.fill(2,65280,65377),u.fill(2,65504,65511);for(let n=0;nf[e][1])return!1;for(;e>=_;)if(p=_+e>>1,d>f[p][1])_=p+1;else{if(!(d=131072&&n<=196605||n>=196608&&n<=262141?2:1}}},5981:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.WriteBuffer=void 0;const l=a(8460),u=a(844);class n extends u.Disposable{constructor(f){super(),this._action=f,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this.register(new l.EventEmitter),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(f,p){if(p!==void 0&&this._syncCalls>p)return void(this._syncCalls=0);if(this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;let _;for(this._isSyncWriting=!0;_=this._writeBuffer.shift();){this._action(_);const e=this._callbacks.shift();e&&e()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(f,p){if(this._pendingData>5e7)throw new Error("write data discarded, use flow control to avoid losing data");if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput)return this._didUserInput=!1,this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(p),void this._innerWrite();setTimeout(()=>this._innerWrite())}this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(p)}_innerWrite(f=0,p=!0){const _=f||Date.now();for(;this._writeBuffer.length>this._bufferOffset;){const e=this._writeBuffer[this._bufferOffset],s=this._action(e,p);if(s){const i=o=>Date.now()-_>=12?setTimeout(()=>this._innerWrite(0,o)):this._innerWrite(_,o);return void s.catch(o=>(queueMicrotask(()=>{throw o}),Promise.resolve(!1))).then(i)}const t=this._callbacks[this._bufferOffset];if(t&&t(),this._bufferOffset++,this._pendingData-=e.length,Date.now()-_>=12)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>50&&(this._writeBuffer=this._writeBuffer.slice(this._bufferOffset),this._callbacks=this._callbacks.slice(this._bufferOffset),this._bufferOffset=0),setTimeout(()=>this._innerWrite())):(this._writeBuffer.length=0,this._callbacks.length=0,this._pendingData=0,this._bufferOffset=0),this._onWriteParsed.fire()}}r.WriteBuffer=n},5941:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.toRgbString=r.parseColor=void 0;const a=/^([\da-f])\/([\da-f])\/([\da-f])$|^([\da-f]{2})\/([\da-f]{2})\/([\da-f]{2})$|^([\da-f]{3})\/([\da-f]{3})\/([\da-f]{3})$|^([\da-f]{4})\/([\da-f]{4})\/([\da-f]{4})$/,l=/^[\da-f]+$/;function u(n,d){const f=n.toString(16),p=f.length<2?"0"+f:f;switch(d){case 4:return f[0];case 8:return p;case 12:return(p+p).slice(0,3);default:return p+p}}r.parseColor=function(n){if(!n)return;let d=n.toLowerCase();if(d.indexOf("rgb:")===0){d=d.slice(4);const f=a.exec(d);if(f){const p=f[1]?15:f[4]?255:f[7]?4095:65535;return[Math.round(parseInt(f[1]||f[4]||f[7]||f[10],16)/p*255),Math.round(parseInt(f[2]||f[5]||f[8]||f[11],16)/p*255),Math.round(parseInt(f[3]||f[6]||f[9]||f[12],16)/p*255)]}}else if(d.indexOf("#")===0&&(d=d.slice(1),l.exec(d)&&[3,6,9,12].includes(d.length))){const f=d.length/3,p=[0,0,0];for(let _=0;_<3;++_){const e=parseInt(d.slice(f*_,f*_+f),16);p[_]=f===1?e<<4:f===2?e:f===3?e>>4:e>>8}return p}},r.toRgbString=function(n,d=16){const[f,p,_]=n;return`rgb:${u(f,d)}/${u(p,d)}/${u(_,d)}`}},5770:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.PAYLOAD_LIMIT=void 0,r.PAYLOAD_LIMIT=1e7},6351:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DcsHandler=r.DcsParser=void 0;const l=a(482),u=a(8742),n=a(5770),d=[];r.DcsParser=class{constructor(){this._handlers=Object.create(null),this._active=d,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=d}registerHandler(p,_){this._handlers[p]===void 0&&(this._handlers[p]=[]);const e=this._handlers[p];return e.push(_),{dispose:()=>{const s=e.indexOf(_);s!==-1&&e.splice(s,1)}}}clearHandler(p){this._handlers[p]&&delete this._handlers[p]}setHandlerFallback(p){this._handlerFb=p}reset(){if(this._active.length)for(let p=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;p>=0;--p)this._active[p].unhook(!1);this._stack.paused=!1,this._active=d,this._ident=0}hook(p,_){if(this.reset(),this._ident=p,this._active=this._handlers[p]||d,this._active.length)for(let e=this._active.length-1;e>=0;e--)this._active[e].hook(_);else this._handlerFb(this._ident,"HOOK",_)}put(p,_,e){if(this._active.length)for(let s=this._active.length-1;s>=0;s--)this._active[s].put(p,_,e);else this._handlerFb(this._ident,"PUT",(0,l.utf32ToString)(p,_,e))}unhook(p,_=!0){if(this._active.length){let e=!1,s=this._active.length-1,t=!1;if(this._stack.paused&&(s=this._stack.loopPosition-1,e=_,t=this._stack.fallThrough,this._stack.paused=!1),!t&&e===!1){for(;s>=0&&(e=this._active[s].unhook(p),e!==!0);s--)if(e instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!1,e;s--}for(;s>=0;s--)if(e=this._active[s].unhook(!1),e instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!0,e}else this._handlerFb(this._ident,"UNHOOK",p);this._active=d,this._ident=0}};const f=new u.Params;f.addParam(0),r.DcsHandler=class{constructor(p){this._handler=p,this._data="",this._params=f,this._hitLimit=!1}hook(p){this._params=p.length>1||p.params[0]?p.clone():f,this._data="",this._hitLimit=!1}put(p,_,e){this._hitLimit||(this._data+=(0,l.utf32ToString)(p,_,e),this._data.length>n.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}unhook(p){let _=!1;if(this._hitLimit)_=!1;else if(p&&(_=this._handler(this._data,this._params),_ instanceof Promise))return _.then(e=>(this._params=f,this._data="",this._hitLimit=!1,e));return this._params=f,this._data="",this._hitLimit=!1,_}}},2015:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.EscapeSequenceParser=r.VT500_TRANSITION_TABLE=r.TransitionTable=void 0;const l=a(844),u=a(8742),n=a(6242),d=a(6351);class f{constructor(s){this.table=new Uint8Array(s)}setDefault(s,t){this.table.fill(s<<4|t)}add(s,t,i,o){this.table[t<<8|s]=i<<4|o}addMany(s,t,i,o){for(let c=0;ch),t=(m,h)=>s.slice(m,h),i=t(32,127),o=t(0,24);o.push(25),o.push.apply(o,t(28,32));const c=t(0,14);let v;for(v in e.setDefault(1,0),e.addMany(i,0,2,0),c)e.addMany([24,26,153,154],v,3,0),e.addMany(t(128,144),v,3,0),e.addMany(t(144,152),v,3,0),e.add(156,v,0,0),e.add(27,v,11,1),e.add(157,v,4,8),e.addMany([152,158,159],v,0,7),e.add(155,v,11,3),e.add(144,v,11,9);return e.addMany(o,0,3,0),e.addMany(o,1,3,1),e.add(127,1,0,1),e.addMany(o,8,0,8),e.addMany(o,3,3,3),e.add(127,3,0,3),e.addMany(o,4,3,4),e.add(127,4,0,4),e.addMany(o,6,3,6),e.addMany(o,5,3,5),e.add(127,5,0,5),e.addMany(o,2,3,2),e.add(127,2,0,2),e.add(93,1,4,8),e.addMany(i,8,5,8),e.add(127,8,5,8),e.addMany([156,27,24,26,7],8,6,0),e.addMany(t(28,32),8,0,8),e.addMany([88,94,95],1,0,7),e.addMany(i,7,0,7),e.addMany(o,7,0,7),e.add(156,7,0,0),e.add(127,7,0,7),e.add(91,1,11,3),e.addMany(t(64,127),3,7,0),e.addMany(t(48,60),3,8,4),e.addMany([60,61,62,63],3,9,4),e.addMany(t(48,60),4,8,4),e.addMany(t(64,127),4,7,0),e.addMany([60,61,62,63],4,0,6),e.addMany(t(32,64),6,0,6),e.add(127,6,0,6),e.addMany(t(64,127),6,0,0),e.addMany(t(32,48),3,9,5),e.addMany(t(32,48),5,9,5),e.addMany(t(48,64),5,0,6),e.addMany(t(64,127),5,7,0),e.addMany(t(32,48),4,9,5),e.addMany(t(32,48),1,9,2),e.addMany(t(32,48),2,9,2),e.addMany(t(48,127),2,10,0),e.addMany(t(48,80),1,10,0),e.addMany(t(81,88),1,10,0),e.addMany([89,90,92],1,10,0),e.addMany(t(96,127),1,10,0),e.add(80,1,11,9),e.addMany(o,9,0,9),e.add(127,9,0,9),e.addMany(t(28,32),9,0,9),e.addMany(t(32,48),9,9,12),e.addMany(t(48,60),9,8,10),e.addMany([60,61,62,63],9,9,10),e.addMany(o,11,0,11),e.addMany(t(32,128),11,0,11),e.addMany(t(28,32),11,0,11),e.addMany(o,10,0,10),e.add(127,10,0,10),e.addMany(t(28,32),10,0,10),e.addMany(t(48,60),10,8,10),e.addMany([60,61,62,63],10,0,11),e.addMany(t(32,48),10,9,12),e.addMany(o,12,0,12),e.add(127,12,0,12),e.addMany(t(28,32),12,0,12),e.addMany(t(32,48),12,9,12),e.addMany(t(48,64),12,0,11),e.addMany(t(64,127),12,12,13),e.addMany(t(64,127),10,12,13),e.addMany(t(64,127),9,12,13),e.addMany(o,13,13,13),e.addMany(i,13,13,13),e.add(127,13,0,13),e.addMany([27,156,24,26],13,14,0),e.add(p,0,2,0),e.add(p,8,5,8),e.add(p,6,0,6),e.add(p,11,0,11),e.add(p,13,13,13),e}();class _ extends l.Disposable{constructor(s=r.VT500_TRANSITION_TABLE){super(),this._transitions=s,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new u.Params,this._params.addParam(0),this._collect=0,this.precedingCodepoint=0,this._printHandlerFb=(t,i,o)=>{},this._executeHandlerFb=t=>{},this._csiHandlerFb=(t,i)=>{},this._escHandlerFb=t=>{},this._errorHandlerFb=t=>t,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this.register((0,l.toDisposable)(()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)})),this._oscParser=this.register(new n.OscParser),this._dcsParser=this.register(new d.DcsParser),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:"\\"},()=>!0)}_identifier(s,t=[64,126]){let i=0;if(s.prefix){if(s.prefix.length>1)throw new Error("only one byte as prefix supported");if(i=s.prefix.charCodeAt(0),i&&60>i||i>63)throw new Error("prefix must be in range 0x3c .. 0x3f")}if(s.intermediates){if(s.intermediates.length>2)throw new Error("only two bytes as intermediates are supported");for(let c=0;cv||v>47)throw new Error("intermediate must be in range 0x20 .. 0x2f");i<<=8,i|=v}}if(s.final.length!==1)throw new Error("final must be a single byte");const o=s.final.charCodeAt(0);if(t[0]>o||o>t[1])throw new Error(`final must be in range ${t[0]} .. ${t[1]}`);return i<<=8,i|=o,i}identToString(s){const t=[];for(;s;)t.push(String.fromCharCode(255&s)),s>>=8;return t.reverse().join("")}setPrintHandler(s){this._printHandler=s}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(s,t){const i=this._identifier(s,[48,126]);this._escHandlers[i]===void 0&&(this._escHandlers[i]=[]);const o=this._escHandlers[i];return o.push(t),{dispose:()=>{const c=o.indexOf(t);c!==-1&&o.splice(c,1)}}}clearEscHandler(s){this._escHandlers[this._identifier(s,[48,126])]&&delete this._escHandlers[this._identifier(s,[48,126])]}setEscHandlerFallback(s){this._escHandlerFb=s}setExecuteHandler(s,t){this._executeHandlers[s.charCodeAt(0)]=t}clearExecuteHandler(s){this._executeHandlers[s.charCodeAt(0)]&&delete this._executeHandlers[s.charCodeAt(0)]}setExecuteHandlerFallback(s){this._executeHandlerFb=s}registerCsiHandler(s,t){const i=this._identifier(s);this._csiHandlers[i]===void 0&&(this._csiHandlers[i]=[]);const o=this._csiHandlers[i];return o.push(t),{dispose:()=>{const c=o.indexOf(t);c!==-1&&o.splice(c,1)}}}clearCsiHandler(s){this._csiHandlers[this._identifier(s)]&&delete this._csiHandlers[this._identifier(s)]}setCsiHandlerFallback(s){this._csiHandlerFb=s}registerDcsHandler(s,t){return this._dcsParser.registerHandler(this._identifier(s),t)}clearDcsHandler(s){this._dcsParser.clearHandler(this._identifier(s))}setDcsHandlerFallback(s){this._dcsParser.setHandlerFallback(s)}registerOscHandler(s,t){return this._oscParser.registerHandler(s,t)}clearOscHandler(s){this._oscParser.clearHandler(s)}setOscHandlerFallback(s){this._oscParser.setHandlerFallback(s)}setErrorHandler(s){this._errorHandler=s}clearErrorHandler(){this._errorHandler=this._errorHandlerFb}reset(){this.currentState=this.initialState,this._oscParser.reset(),this._dcsParser.reset(),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingCodepoint=0,this._parseStack.state!==0&&(this._parseStack.state=2,this._parseStack.handlers=[])}_preserveStack(s,t,i,o,c){this._parseStack.state=s,this._parseStack.handlers=t,this._parseStack.handlerPos=i,this._parseStack.transition=o,this._parseStack.chunkPos=c}parse(s,t,i){let o,c=0,v=0,m=0;if(this._parseStack.state)if(this._parseStack.state===2)this._parseStack.state=0,m=this._parseStack.chunkPos+1;else{if(i===void 0||this._parseStack.state===1)throw this._parseStack.state=1,new Error("improper continuation due to previous async handler, giving up parsing");const h=this._parseStack.handlers;let g=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(i===!1&&g>-1){for(;g>=0&&(o=h[g](this._params),o!==!0);g--)if(o instanceof Promise)return this._parseStack.handlerPos=g,o}this._parseStack.handlers=[];break;case 4:if(i===!1&&g>-1){for(;g>=0&&(o=h[g](),o!==!0);g--)if(o instanceof Promise)return this._parseStack.handlerPos=g,o}this._parseStack.handlers=[];break;case 6:if(c=s[this._parseStack.chunkPos],o=this._dcsParser.unhook(c!==24&&c!==26,i),o)return o;c===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(c=s[this._parseStack.chunkPos],o=this._oscParser.end(c!==24&&c!==26,i),o)return o;c===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0}this._parseStack.state=0,m=this._parseStack.chunkPos+1,this.precedingCodepoint=0,this.currentState=15&this._parseStack.transition}for(let h=m;h>4){case 2:for(let k=h+1;;++k){if(k>=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=0&&(o=g[b](this._params),o!==!0);b--)if(o instanceof Promise)return this._preserveStack(3,g,b,v,h),o;b<0&&this._csiHandlerFb(this._collect<<8|c,this._params),this.precedingCodepoint=0;break;case 8:do switch(c){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(c-48)}while(++h47&&c<60);h--;break;case 9:this._collect<<=8,this._collect|=c;break;case 10:const L=this._escHandlers[this._collect<<8|c];let y=L?L.length-1:-1;for(;y>=0&&(o=L[y](),o!==!0);y--)if(o instanceof Promise)return this._preserveStack(4,L,y,v,h),o;y<0&&this._escHandlerFb(this._collect<<8|c),this.precedingCodepoint=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|c,this._params);break;case 13:for(let k=h+1;;++k)if(k>=t||(c=s[k])===24||c===26||c===27||c>127&&c=t||(c=s[k])<32||c>127&&c{Object.defineProperty(r,"__esModule",{value:!0}),r.OscHandler=r.OscParser=void 0;const l=a(5770),u=a(482),n=[];r.OscParser=class{constructor(){this._state=0,this._active=n,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(d,f){this._handlers[d]===void 0&&(this._handlers[d]=[]);const p=this._handlers[d];return p.push(f),{dispose:()=>{const _=p.indexOf(f);_!==-1&&p.splice(_,1)}}}clearHandler(d){this._handlers[d]&&delete this._handlers[d]}setHandlerFallback(d){this._handlerFb=d}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=n}reset(){if(this._state===2)for(let d=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;d>=0;--d)this._active[d].end(!1);this._stack.paused=!1,this._active=n,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||n,this._active.length)for(let d=this._active.length-1;d>=0;d--)this._active[d].start();else this._handlerFb(this._id,"START")}_put(d,f,p){if(this._active.length)for(let _=this._active.length-1;_>=0;_--)this._active[_].put(d,f,p);else this._handlerFb(this._id,"PUT",(0,u.utf32ToString)(d,f,p))}start(){this.reset(),this._state=1}put(d,f,p){if(this._state!==3){if(this._state===1)for(;f0&&this._put(d,f,p)}}end(d,f=!0){if(this._state!==0){if(this._state!==3)if(this._state===1&&this._start(),this._active.length){let p=!1,_=this._active.length-1,e=!1;if(this._stack.paused&&(_=this._stack.loopPosition-1,p=f,e=this._stack.fallThrough,this._stack.paused=!1),!e&&p===!1){for(;_>=0&&(p=this._active[_].end(d),p!==!0);_--)if(p instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=_,this._stack.fallThrough=!1,p;_--}for(;_>=0;_--)if(p=this._active[_].end(!1),p instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=_,this._stack.fallThrough=!0,p}else this._handlerFb(this._id,"END",d);this._active=n,this._id=-1,this._state=0}}},r.OscHandler=class{constructor(d){this._handler=d,this._data="",this._hitLimit=!1}start(){this._data="",this._hitLimit=!1}put(d,f,p){this._hitLimit||(this._data+=(0,u.utf32ToString)(d,f,p),this._data.length>l.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}end(d){let f=!1;if(this._hitLimit)f=!1;else if(d&&(f=this._handler(this._data),f instanceof Promise))return f.then(p=>(this._data="",this._hitLimit=!1,p));return this._data="",this._hitLimit=!1,f}}},8742:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Params=void 0;const a=2147483647;class l{static fromArray(n){const d=new l;if(!n.length)return d;for(let f=Array.isArray(n[0])?1:0;f256)throw new Error("maxSubParamsLength must not be greater than 256");this.params=new Int32Array(n),this.length=0,this._subParams=new Int32Array(d),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(n),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}clone(){const n=new l(this.maxLength,this.maxSubParamsLength);return n.params.set(this.params),n.length=this.length,n._subParams.set(this._subParams),n._subParamsLength=this._subParamsLength,n._subParamsIdx.set(this._subParamsIdx),n._rejectDigits=this._rejectDigits,n._rejectSubDigits=this._rejectSubDigits,n._digitIsSub=this._digitIsSub,n}toArray(){const n=[];for(let d=0;d>8,p=255&this._subParamsIdx[d];p-f>0&&n.push(Array.prototype.slice.call(this._subParams,f,p))}return n}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(n){if(this._digitIsSub=!1,this.length>=this.maxLength)this._rejectDigits=!0;else{if(n<-1)throw new Error("values lesser than -1 are not allowed");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=n>a?a:n}}addSubParam(n){if(this._digitIsSub=!0,this.length)if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength)this._rejectSubDigits=!0;else{if(n<-1)throw new Error("values lesser than -1 are not allowed");this._subParams[this._subParamsLength++]=n>a?a:n,this._subParamsIdx[this.length-1]++}}hasSubParams(n){return(255&this._subParamsIdx[n])-(this._subParamsIdx[n]>>8)>0}getSubParams(n){const d=this._subParamsIdx[n]>>8,f=255&this._subParamsIdx[n];return f-d>0?this._subParams.subarray(d,f):null}getSubParamsAll(){const n={};for(let d=0;d>8,p=255&this._subParamsIdx[d];p-f>0&&(n[d]=this._subParams.slice(f,p))}return n}addDigit(n){let d;if(this._rejectDigits||!(d=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;const f=this._digitIsSub?this._subParams:this.params,p=f[d-1];f[d-1]=~p?Math.min(10*p+n,a):n}}r.Params=l},5741:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.AddonManager=void 0,r.AddonManager=class{constructor(){this._addons=[]}dispose(){for(let a=this._addons.length-1;a>=0;a--)this._addons[a].instance.dispose()}loadAddon(a,l){const u={instance:l,dispose:l.dispose,isDisposed:!1};this._addons.push(u),l.dispose=()=>this._wrappedAddonDispose(u),l.activate(a)}_wrappedAddonDispose(a){if(a.isDisposed)return;let l=-1;for(let u=0;u{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferApiView=void 0;const l=a(3785),u=a(511);r.BufferApiView=class{constructor(n,d){this._buffer=n,this.type=d}init(n){return this._buffer=n,this}get cursorY(){return this._buffer.y}get cursorX(){return this._buffer.x}get viewportY(){return this._buffer.ydisp}get baseY(){return this._buffer.ybase}get length(){return this._buffer.lines.length}getLine(n){const d=this._buffer.lines.get(n);if(d)return new l.BufferLineApiView(d)}getNullCell(){return new u.CellData}}},3785:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferLineApiView=void 0;const l=a(511);r.BufferLineApiView=class{constructor(u){this._line=u}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(u,n){if(!(u<0||u>=this._line.length))return n?(this._line.loadCell(u,n),n):this._line.loadCell(u,new l.CellData)}translateToString(u,n,d){return this._line.translateToString(u,n,d)}}},8285:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferNamespaceApi=void 0;const l=a(8771),u=a(8460),n=a(844);class d extends n.Disposable{constructor(p){super(),this._core=p,this._onBufferChange=this.register(new u.EventEmitter),this.onBufferChange=this._onBufferChange.event,this._normal=new l.BufferApiView(this._core.buffers.normal,"normal"),this._alternate=new l.BufferApiView(this._core.buffers.alt,"alternate"),this._core.buffers.onBufferActivate(()=>this._onBufferChange.fire(this.active))}get active(){if(this._core.buffers.active===this._core.buffers.normal)return this.normal;if(this._core.buffers.active===this._core.buffers.alt)return this.alternate;throw new Error("Active buffer is neither normal nor alternate")}get normal(){return this._normal.init(this._core.buffers.normal)}get alternate(){return this._alternate.init(this._core.buffers.alt)}}r.BufferNamespaceApi=d},7975:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ParserApi=void 0,r.ParserApi=class{constructor(a){this._core=a}registerCsiHandler(a,l){return this._core.registerCsiHandler(a,u=>l(u.toArray()))}addCsiHandler(a,l){return this.registerCsiHandler(a,l)}registerDcsHandler(a,l){return this._core.registerDcsHandler(a,(u,n)=>l(u,n.toArray()))}addDcsHandler(a,l){return this.registerDcsHandler(a,l)}registerEscHandler(a,l){return this._core.registerEscHandler(a,l)}addEscHandler(a,l){return this.registerEscHandler(a,l)}registerOscHandler(a,l){return this._core.registerOscHandler(a,l)}addOscHandler(a,l){return this.registerOscHandler(a,l)}}},7090:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeApi=void 0,r.UnicodeApi=class{constructor(a){this._core=a}register(a){this._core.unicodeService.register(a)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(a){this._core.unicodeService.activeVersion=a}}},744:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.BufferService=r.MINIMUM_ROWS=r.MINIMUM_COLS=void 0;const n=a(8460),d=a(844),f=a(5295),p=a(2585);r.MINIMUM_COLS=2,r.MINIMUM_ROWS=1;let _=r.BufferService=class extends d.Disposable{get buffer(){return this.buffers.active}constructor(e){super(),this.isUserScrolling=!1,this._onResize=this.register(new n.EventEmitter),this.onResize=this._onResize.event,this._onScroll=this.register(new n.EventEmitter),this.onScroll=this._onScroll.event,this.cols=Math.max(e.rawOptions.cols||0,r.MINIMUM_COLS),this.rows=Math.max(e.rawOptions.rows||0,r.MINIMUM_ROWS),this.buffers=this.register(new f.BufferSet(e,this))}resize(e,s){this.cols=e,this.rows=s,this.buffers.resize(e,s),this._onResize.fire({cols:e,rows:s})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(e,s=!1){const t=this.buffer;let i;i=this._cachedBlankLine,i&&i.length===this.cols&&i.getFg(0)===e.fg&&i.getBg(0)===e.bg||(i=t.getBlankLine(e,s),this._cachedBlankLine=i),i.isWrapped=s;const o=t.ybase+t.scrollTop,c=t.ybase+t.scrollBottom;if(t.scrollTop===0){const v=t.lines.isFull;c===t.lines.length-1?v?t.lines.recycle().copyFrom(i):t.lines.push(i.clone()):t.lines.splice(c+1,0,i.clone()),v?this.isUserScrolling&&(t.ydisp=Math.max(t.ydisp-1,0)):(t.ybase++,this.isUserScrolling||t.ydisp++)}else{const v=c-o+1;t.lines.shiftElements(o+1,v-1,-1),t.lines.set(c,i.clone())}this.isUserScrolling||(t.ydisp=t.ybase),this._onScroll.fire(t.ydisp)}scrollLines(e,s,t){const i=this.buffer;if(e<0){if(i.ydisp===0)return;this.isUserScrolling=!0}else e+i.ydisp>=i.ybase&&(this.isUserScrolling=!1);const o=i.ydisp;i.ydisp=Math.max(Math.min(i.ydisp+e,i.ybase),0),o!==i.ydisp&&(s||this._onScroll.fire(i.ydisp))}};r.BufferService=_=l([u(0,p.IOptionsService)],_)},7994:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CharsetService=void 0,r.CharsetService=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(a){this.glevel=a,this.charset=this._charsets[a]}setgCharset(a,l){this._charsets[a]=l,this.glevel===a&&(this.charset=l)}}},1753:function(I,r,a){var l=this&&this.__decorate||function(i,o,c,v){var m,h=arguments.length,g=h<3?o:v===null?v=Object.getOwnPropertyDescriptor(o,c):v;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(i,o,c,v);else for(var b=i.length-1;b>=0;b--)(m=i[b])&&(g=(h<3?m(g):h>3?m(o,c,g):m(o,c))||g);return h>3&&g&&Object.defineProperty(o,c,g),g},u=this&&this.__param||function(i,o){return function(c,v){o(c,v,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreMouseService=void 0;const n=a(2585),d=a(8460),f=a(844),p={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:i=>i.button!==4&&i.action===1&&(i.ctrl=!1,i.alt=!1,i.shift=!1,!0)},VT200:{events:19,restrict:i=>i.action!==32},DRAG:{events:23,restrict:i=>i.action!==32||i.button!==3},ANY:{events:31,restrict:i=>!0}};function _(i,o){let c=(i.ctrl?16:0)|(i.shift?4:0)|(i.alt?8:0);return i.button===4?(c|=64,c|=i.action):(c|=3&i.button,4&i.button&&(c|=64),8&i.button&&(c|=128),i.action===32?c|=32:i.action!==0||o||(c|=3)),c}const e=String.fromCharCode,s={DEFAULT:i=>{const o=[_(i,!1)+32,i.col+32,i.row+32];return o[0]>255||o[1]>255||o[2]>255?"":`\x1B[M${e(o[0])}${e(o[1])}${e(o[2])}`},SGR:i=>{const o=i.action===0&&i.button!==4?"m":"M";return`\x1B[<${_(i,!0)};${i.col};${i.row}${o}`},SGR_PIXELS:i=>{const o=i.action===0&&i.button!==4?"m":"M";return`\x1B[<${_(i,!0)};${i.x};${i.y}${o}`}};let t=r.CoreMouseService=class extends f.Disposable{constructor(i,o){super(),this._bufferService=i,this._coreService=o,this._protocols={},this._encodings={},this._activeProtocol="",this._activeEncoding="",this._lastEvent=null,this._onProtocolChange=this.register(new d.EventEmitter),this.onProtocolChange=this._onProtocolChange.event;for(const c of Object.keys(p))this.addProtocol(c,p[c]);for(const c of Object.keys(s))this.addEncoding(c,s[c]);this.reset()}addProtocol(i,o){this._protocols[i]=o}addEncoding(i,o){this._encodings[i]=o}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return this._protocols[this._activeProtocol].events!==0}set activeProtocol(i){if(!this._protocols[i])throw new Error(`unknown protocol "${i}"`);this._activeProtocol=i,this._onProtocolChange.fire(this._protocols[i].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(i){if(!this._encodings[i])throw new Error(`unknown encoding "${i}"`);this._activeEncoding=i}reset(){this.activeProtocol="NONE",this.activeEncoding="DEFAULT",this._lastEvent=null}triggerMouseEvent(i){if(i.col<0||i.col>=this._bufferService.cols||i.row<0||i.row>=this._bufferService.rows||i.button===4&&i.action===32||i.button===3&&i.action!==32||i.button!==4&&(i.action===2||i.action===3)||(i.col++,i.row++,i.action===32&&this._lastEvent&&this._equalEvents(this._lastEvent,i,this._activeEncoding==="SGR_PIXELS"))||!this._protocols[this._activeProtocol].restrict(i))return!1;const o=this._encodings[this._activeEncoding](i);return o&&(this._activeEncoding==="DEFAULT"?this._coreService.triggerBinaryEvent(o):this._coreService.triggerDataEvent(o,!0)),this._lastEvent=i,!0}explainEvents(i){return{down:!!(1&i),up:!!(2&i),drag:!!(4&i),move:!!(8&i),wheel:!!(16&i)}}_equalEvents(i,o,c){if(c){if(i.x!==o.x||i.y!==o.y)return!1}else if(i.col!==o.col||i.row!==o.row)return!1;return i.button===o.button&&i.action===o.action&&i.ctrl===o.ctrl&&i.alt===o.alt&&i.shift===o.shift}};r.CoreMouseService=t=l([u(0,n.IBufferService),u(1,n.ICoreService)],t)},6975:function(I,r,a){var l=this&&this.__decorate||function(t,i,o,c){var v,m=arguments.length,h=m<3?i:c===null?c=Object.getOwnPropertyDescriptor(i,o):c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")h=Reflect.decorate(t,i,o,c);else for(var g=t.length-1;g>=0;g--)(v=t[g])&&(h=(m<3?v(h):m>3?v(i,o,h):v(i,o))||h);return m>3&&h&&Object.defineProperty(i,o,h),h},u=this&&this.__param||function(t,i){return function(o,c){i(o,c,t)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreService=void 0;const n=a(1439),d=a(8460),f=a(844),p=a(2585),_=Object.freeze({insertMode:!1}),e=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,origin:!1,reverseWraparound:!1,sendFocus:!1,wraparound:!0});let s=r.CoreService=class extends f.Disposable{constructor(t,i,o){super(),this._bufferService=t,this._logService=i,this._optionsService=o,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this.register(new d.EventEmitter),this.onData=this._onData.event,this._onUserInput=this.register(new d.EventEmitter),this.onUserInput=this._onUserInput.event,this._onBinary=this.register(new d.EventEmitter),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this.register(new d.EventEmitter),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=(0,n.clone)(_),this.decPrivateModes=(0,n.clone)(e)}reset(){this.modes=(0,n.clone)(_),this.decPrivateModes=(0,n.clone)(e)}triggerDataEvent(t,i=!1){if(this._optionsService.rawOptions.disableStdin)return;const o=this._bufferService.buffer;i&&this._optionsService.rawOptions.scrollOnUserInput&&o.ybase!==o.ydisp&&this._onRequestScrollToBottom.fire(),i&&this._onUserInput.fire(),this._logService.debug(`sending data "${t}"`,()=>t.split("").map(c=>c.charCodeAt(0))),this._onData.fire(t)}triggerBinaryEvent(t){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${t}"`,()=>t.split("").map(i=>i.charCodeAt(0))),this._onBinary.fire(t))}};r.CoreService=s=l([u(0,p.IBufferService),u(1,p.ILogService),u(2,p.IOptionsService)],s)},9074:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DecorationService=void 0;const l=a(8055),u=a(8460),n=a(844),d=a(6106);let f=0,p=0;class _ extends n.Disposable{get decorations(){return this._decorations.values()}constructor(){super(),this._decorations=new d.SortedList(t=>t==null?void 0:t.marker.line),this._onDecorationRegistered=this.register(new u.EventEmitter),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this.register(new u.EventEmitter),this.onDecorationRemoved=this._onDecorationRemoved.event,this.register((0,n.toDisposable)(()=>this.reset()))}registerDecoration(t){if(t.marker.isDisposed)return;const i=new e(t);if(i){const o=i.marker.onDispose(()=>i.dispose());i.onDispose(()=>{i&&(this._decorations.delete(i)&&this._onDecorationRemoved.fire(i),o.dispose())}),this._decorations.insert(i),this._onDecorationRegistered.fire(i)}return i}reset(){for(const t of this._decorations.values())t.dispose();this._decorations.clear()}*getDecorationsAtCell(t,i,o){var c,v,m;let h=0,g=0;for(const b of this._decorations.getKeyIterator(i))h=(c=b.options.x)!==null&&c!==void 0?c:0,g=h+((v=b.options.width)!==null&&v!==void 0?v:1),t>=h&&t{var m,h,g;f=(m=v.options.x)!==null&&m!==void 0?m:0,p=f+((h=v.options.width)!==null&&h!==void 0?h:1),t>=f&&t{Object.defineProperty(r,"__esModule",{value:!0}),r.InstantiationService=r.ServiceCollection=void 0;const l=a(2585),u=a(8343);class n{constructor(...f){this._entries=new Map;for(const[p,_]of f)this.set(p,_)}set(f,p){const _=this._entries.get(f);return this._entries.set(f,p),_}forEach(f){for(const[p,_]of this._entries.entries())f(p,_)}has(f){return this._entries.has(f)}get(f){return this._entries.get(f)}}r.ServiceCollection=n,r.InstantiationService=class{constructor(){this._services=new n,this._services.set(l.IInstantiationService,this)}setService(d,f){this._services.set(d,f)}getService(d){return this._services.get(d)}createInstance(d,...f){const p=(0,u.getServiceDependencies)(d).sort((s,t)=>s.index-t.index),_=[];for(const s of p){const t=this._services.get(s.id);if(!t)throw new Error(`[createInstance] ${d.name} depends on UNKNOWN service ${s.id}.`);_.push(t)}const e=p.length>0?p[0].index:f.length;if(f.length!==e)throw new Error(`[createInstance] First service dependency of ${d.name} at position ${e+1} conflicts with ${f.length} static arguments`);return new d(...f,..._)}}},7866:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.traceCall=r.setTraceLogger=r.LogService=void 0;const n=a(844),d=a(2585),f={trace:d.LogLevelEnum.TRACE,debug:d.LogLevelEnum.DEBUG,info:d.LogLevelEnum.INFO,warn:d.LogLevelEnum.WARN,error:d.LogLevelEnum.ERROR,off:d.LogLevelEnum.OFF};let p,_=r.LogService=class extends n.Disposable{get logLevel(){return this._logLevel}constructor(e){super(),this._optionsService=e,this._logLevel=d.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange("logLevel",()=>this._updateLogLevel())),p=this}_updateLogLevel(){this._logLevel=f[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let s=0;sJSON.stringify(v)).join(", ")})`);const c=i.apply(this,o);return p.trace(`GlyphRenderer#${i.name} return`,c),c}}},7302:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.OptionsService=r.DEFAULT_OPTIONS=void 0;const l=a(8460),u=a(844),n=a(6114);r.DEFAULT_OPTIONS={cols:80,rows:24,cursorBlink:!1,cursorStyle:"block",cursorWidth:1,cursorInactiveStyle:"outline",customGlyphs:!0,drawBoldTextInBrightColors:!0,fastScrollModifier:"alt",fastScrollSensitivity:5,fontFamily:"courier-new, courier, monospace",fontSize:15,fontWeight:"normal",fontWeightBold:"bold",ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:"info",logger:null,scrollback:1e3,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},rightClickSelectsWord:n.isMac,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:" ()[]{}',\"`",altClickMovesCursor:!0,convertEol:!1,termName:"xterm",cancelEvents:!1,overviewRulerWidth:0};const d=["normal","bold","100","200","300","400","500","600","700","800","900"];class f extends u.Disposable{constructor(_){super(),this._onOptionChange=this.register(new l.EventEmitter),this.onOptionChange=this._onOptionChange.event;const e=Object.assign({},r.DEFAULT_OPTIONS);for(const s in _)if(s in e)try{const t=_[s];e[s]=this._sanitizeAndValidateOption(s,t)}catch(t){console.error(t)}this.rawOptions=e,this.options=Object.assign({},e),this._setupOptions()}onSpecificOptionChange(_,e){return this.onOptionChange(s=>{s===_&&e(this.rawOptions[_])})}onMultipleOptionChange(_,e){return this.onOptionChange(s=>{_.indexOf(s)!==-1&&e()})}_setupOptions(){const _=s=>{if(!(s in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${s}"`);return this.rawOptions[s]},e=(s,t)=>{if(!(s in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${s}"`);t=this._sanitizeAndValidateOption(s,t),this.rawOptions[s]!==t&&(this.rawOptions[s]=t,this._onOptionChange.fire(s))};for(const s in this.rawOptions){const t={get:_.bind(this,s),set:e.bind(this,s)};Object.defineProperty(this.options,s,t)}}_sanitizeAndValidateOption(_,e){switch(_){case"cursorStyle":if(e||(e=r.DEFAULT_OPTIONS[_]),!function(s){return s==="block"||s==="underline"||s==="bar"}(e))throw new Error(`"${e}" is not a valid value for ${_}`);break;case"wordSeparator":e||(e=r.DEFAULT_OPTIONS[_]);break;case"fontWeight":case"fontWeightBold":if(typeof e=="number"&&1<=e&&e<=1e3)break;e=d.includes(e)?e:r.DEFAULT_OPTIONS[_];break;case"cursorWidth":e=Math.floor(e);case"lineHeight":case"tabStopWidth":if(e<1)throw new Error(`${_} cannot be less than 1, value: ${e}`);break;case"minimumContrastRatio":e=Math.max(1,Math.min(21,Math.round(10*e)/10));break;case"scrollback":if((e=Math.min(e,4294967295))<0)throw new Error(`${_} cannot be less than 0, value: ${e}`);break;case"fastScrollSensitivity":case"scrollSensitivity":if(e<=0)throw new Error(`${_} cannot be less than or equal to 0, value: ${e}`);break;case"rows":case"cols":if(!e&&e!==0)throw new Error(`${_} must be numeric, value: ${e}`);break;case"windowsPty":e=e??{}}return e}}r.OptionsService=f},2660:function(I,r,a){var l=this&&this.__decorate||function(f,p,_,e){var s,t=arguments.length,i=t<3?p:e===null?e=Object.getOwnPropertyDescriptor(p,_):e;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(f,p,_,e);else for(var o=f.length-1;o>=0;o--)(s=f[o])&&(i=(t<3?s(i):t>3?s(p,_,i):s(p,_))||i);return t>3&&i&&Object.defineProperty(p,_,i),i},u=this&&this.__param||function(f,p){return function(_,e){p(_,e,f)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OscLinkService=void 0;const n=a(2585);let d=r.OscLinkService=class{constructor(f){this._bufferService=f,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(f){const p=this._bufferService.buffer;if(f.id===void 0){const o=p.addMarker(p.ybase+p.y),c={data:f,id:this._nextId++,lines:[o]};return o.onDispose(()=>this._removeMarkerFromLink(c,o)),this._dataByLinkId.set(c.id,c),c.id}const _=f,e=this._getEntryIdKey(_),s=this._entriesWithId.get(e);if(s)return this.addLineToLink(s.id,p.ybase+p.y),s.id;const t=p.addMarker(p.ybase+p.y),i={id:this._nextId++,key:this._getEntryIdKey(_),data:_,lines:[t]};return t.onDispose(()=>this._removeMarkerFromLink(i,t)),this._entriesWithId.set(i.key,i),this._dataByLinkId.set(i.id,i),i.id}addLineToLink(f,p){const _=this._dataByLinkId.get(f);if(_&&_.lines.every(e=>e.line!==p)){const e=this._bufferService.buffer.addMarker(p);_.lines.push(e),e.onDispose(()=>this._removeMarkerFromLink(_,e))}}getLinkData(f){var p;return(p=this._dataByLinkId.get(f))===null||p===void 0?void 0:p.data}_getEntryIdKey(f){return`${f.id};;${f.uri}`}_removeMarkerFromLink(f,p){const _=f.lines.indexOf(p);_!==-1&&(f.lines.splice(_,1),f.lines.length===0&&(f.data.id!==void 0&&this._entriesWithId.delete(f.key),this._dataByLinkId.delete(f.id)))}};r.OscLinkService=d=l([u(0,n.IBufferService)],d)},8343:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.createDecorator=r.getServiceDependencies=r.serviceRegistry=void 0;const a="di$target",l="di$dependencies";r.serviceRegistry=new Map,r.getServiceDependencies=function(u){return u[l]||[]},r.createDecorator=function(u){if(r.serviceRegistry.has(u))return r.serviceRegistry.get(u);const n=function(d,f,p){if(arguments.length!==3)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");(function(_,e,s){e[a]===e?e[l].push({id:_,index:s}):(e[l]=[{id:_,index:s}],e[a]=e)})(n,d,p)};return n.toString=()=>u,r.serviceRegistry.set(u,n),n}},2585:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.IDecorationService=r.IUnicodeService=r.IOscLinkService=r.IOptionsService=r.ILogService=r.LogLevelEnum=r.IInstantiationService=r.ICharsetService=r.ICoreService=r.ICoreMouseService=r.IBufferService=void 0;const l=a(8343);var u;r.IBufferService=(0,l.createDecorator)("BufferService"),r.ICoreMouseService=(0,l.createDecorator)("CoreMouseService"),r.ICoreService=(0,l.createDecorator)("CoreService"),r.ICharsetService=(0,l.createDecorator)("CharsetService"),r.IInstantiationService=(0,l.createDecorator)("InstantiationService"),function(n){n[n.TRACE=0]="TRACE",n[n.DEBUG=1]="DEBUG",n[n.INFO=2]="INFO",n[n.WARN=3]="WARN",n[n.ERROR=4]="ERROR",n[n.OFF=5]="OFF"}(u||(r.LogLevelEnum=u={})),r.ILogService=(0,l.createDecorator)("LogService"),r.IOptionsService=(0,l.createDecorator)("OptionsService"),r.IOscLinkService=(0,l.createDecorator)("OscLinkService"),r.IUnicodeService=(0,l.createDecorator)("UnicodeService"),r.IDecorationService=(0,l.createDecorator)("DecorationService")},1480:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeService=void 0;const l=a(8460),u=a(225);r.UnicodeService=class{constructor(){this._providers=Object.create(null),this._active="",this._onChange=new l.EventEmitter,this.onChange=this._onChange.event;const n=new u.UnicodeV6;this.register(n),this._active=n.version,this._activeProvider=n}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(n){if(!this._providers[n])throw new Error(`unknown Unicode version "${n}"`);this._active=n,this._activeProvider=this._providers[n],this._onChange.fire(n)}register(n){this._providers[n.version]=n}wcwidth(n){return this._activeProvider.wcwidth(n)}getStringCellWidth(n){let d=0;const f=n.length;for(let p=0;p=f)return d+this.wcwidth(_);const e=n.charCodeAt(p);56320<=e&&e<=57343?_=1024*(_-55296)+e-56320+65536:d+=this.wcwidth(e)}d+=this.wcwidth(_)}return d}}}},ne={};function J(I){var r=ne[I];if(r!==void 0)return r.exports;var a=ne[I]={exports:{}};return ae[I].call(a.exports,a,a.exports,J),a.exports}var ue={};return(()=>{var I=ue;Object.defineProperty(I,"__esModule",{value:!0}),I.Terminal=void 0;const r=J(9042),a=J(3236),l=J(844),u=J(5741),n=J(8285),d=J(7975),f=J(7090),p=["cols","rows"];class _ extends l.Disposable{constructor(s){super(),this._core=this.register(new a.Terminal(s)),this._addonManager=this.register(new u.AddonManager),this._publicOptions=Object.assign({},this._core.options);const t=o=>this._core.options[o],i=(o,c)=>{this._checkReadonlyOptions(o),this._core.options[o]=c};for(const o in this._core.options){const c={get:t.bind(this,o),set:i.bind(this,o)};Object.defineProperty(this._publicOptions,o,c)}}_checkReadonlyOptions(s){if(p.includes(s))throw new Error(`Option "${s}" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw new Error("You must set the allowProposedApi option to true to use proposed API")}get onBell(){return this._core.onBell}get onBinary(){return this._core.onBinary}get onCursorMove(){return this._core.onCursorMove}get onData(){return this._core.onData}get onKey(){return this._core.onKey}get onLineFeed(){return this._core.onLineFeed}get onRender(){return this._core.onRender}get onResize(){return this._core.onResize}get onScroll(){return this._core.onScroll}get onSelectionChange(){return this._core.onSelectionChange}get onTitleChange(){return this._core.onTitleChange}get onWriteParsed(){return this._core.onWriteParsed}get element(){return this._core.element}get parser(){return this._parser||(this._parser=new d.ParserApi(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new f.UnicodeApi(this._core)}get textarea(){return this._core.textarea}get rows(){return this._core.rows}get cols(){return this._core.cols}get buffer(){return this._buffer||(this._buffer=this.register(new n.BufferNamespaceApi(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){const s=this._core.coreService.decPrivateModes;let t="none";switch(this._core.coreMouseService.activeProtocol){case"X10":t="x10";break;case"VT200":t="vt200";break;case"DRAG":t="drag";break;case"ANY":t="any"}return{applicationCursorKeysMode:s.applicationCursorKeys,applicationKeypadMode:s.applicationKeypad,bracketedPasteMode:s.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:t,originMode:s.origin,reverseWraparoundMode:s.reverseWraparound,sendFocusMode:s.sendFocus,wraparoundMode:s.wraparound}}get options(){return this._publicOptions}set options(s){for(const t in s)this._publicOptions[t]=s[t]}blur(){this._core.blur()}focus(){this._core.focus()}resize(s,t){this._verifyIntegers(s,t),this._core.resize(s,t)}open(s){this._core.open(s)}attachCustomKeyEventHandler(s){this._core.attachCustomKeyEventHandler(s)}registerLinkProvider(s){return this._core.registerLinkProvider(s)}registerCharacterJoiner(s){return this._checkProposedApi(),this._core.registerCharacterJoiner(s)}deregisterCharacterJoiner(s){this._checkProposedApi(),this._core.deregisterCharacterJoiner(s)}registerMarker(s=0){return this._verifyIntegers(s),this._core.registerMarker(s)}registerDecoration(s){var t,i,o;return this._checkProposedApi(),this._verifyPositiveIntegers((t=s.x)!==null&&t!==void 0?t:0,(i=s.width)!==null&&i!==void 0?i:0,(o=s.height)!==null&&o!==void 0?o:0),this._core.registerDecoration(s)}hasSelection(){return this._core.hasSelection()}select(s,t,i){this._verifyIntegers(s,t,i),this._core.select(s,t,i)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(s,t){this._verifyIntegers(s,t),this._core.selectLines(s,t)}dispose(){super.dispose()}scrollLines(s){this._verifyIntegers(s),this._core.scrollLines(s)}scrollPages(s){this._verifyIntegers(s),this._core.scrollPages(s)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(s){this._verifyIntegers(s),this._core.scrollToLine(s)}clear(){this._core.clear()}write(s,t){this._core.write(s,t)}writeln(s,t){this._core.write(s),this._core.write(`\r -`,t)}paste(s){this._core.paste(s)}refresh(s,t){this._verifyIntegers(s,t),this._core.refresh(s,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(s){this._addonManager.loadAddon(this,s)}static get strings(){return r}_verifyIntegers(...s){for(const t of s)if(t===1/0||isNaN(t)||t%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...s){for(const t of s)if(t&&(t===1/0||isNaN(t)||t%1!=0||t<0))throw new Error("This API only accepts positive integers")}}I.Terminal=_})(),ue})())})(fe);var be=fe.exports;const ye={style:{width:"100%",height:"100%","background-color":"#fff",padding:"16px","border-radius":"10px"}},we=Ce("div",{id:"terminal",style:{}},null,-1),Ee=[we],ke={name:"ConsolePage",components:{},data(){return{term:null}},mounted(){this.term=new be.Terminal({rows:35,cols:100,theme:{foreground:"#000",background:"#ffffff"}}),this.term.open(document.getElementById("terminal"));for(let ee=0;ee<200;ee++)this.term.write("AstrBot Console By xterm && Soulter")},methods:{}},De=Object.assign(ke,{setup(ee){return(ge,ae)=>(me(),Se("div",ye,Ee))}});export{De as default}; +`,n.VT="\v",n.FF="\f",n.CR="\r",n.SO="",n.SI="",n.DLE="",n.DC1="",n.DC2="",n.DC3="",n.DC4="",n.NAK="",n.SYN="",n.ETB="",n.CAN="",n.EM="",n.SUB="",n.ESC="\x1B",n.FS="",n.GS="",n.RS="",n.US="",n.SP=" ",n.DEL=""}(a||(r.C0=a={})),function(n){n.PAD="€",n.HOP="",n.BPH="‚",n.NBH="ƒ",n.IND="„",n.NEL="…",n.SSA="†",n.ESA="‡",n.HTS="ˆ",n.HTJ="‰",n.VTS="Š",n.PLD="‹",n.PLU="Œ",n.RI="",n.SS2="Ž",n.SS3="",n.DCS="",n.PU1="‘",n.PU2="’",n.STS="“",n.CCH="”",n.MW="•",n.SPA="–",n.EPA="—",n.SOS="˜",n.SGCI="™",n.SCI="š",n.CSI="›",n.ST="œ",n.OSC="",n.PM="ž",n.APC="Ÿ"}(l||(r.C1=l={})),function(n){n.ST=`${a.ESC}\\`}(u||(r.C1_ESCAPED=u={}))},7399:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.evaluateKeyboardEvent=void 0;const l=a(2584),u={48:["0",")"],49:["1","!"],50:["2","@"],51:["3","#"],52:["4","$"],53:["5","%"],54:["6","^"],55:["7","&"],56:["8","*"],57:["9","("],186:[";",":"],187:["=","+"],188:[",","<"],189:["-","_"],190:[".",">"],191:["/","?"],192:["`","~"],219:["[","{"],220:["\\","|"],221:["]","}"],222:["'",'"']};r.evaluateKeyboardEvent=function(n,d,f,p){const _={type:0,cancel:!1,key:void 0},e=(n.shiftKey?1:0)|(n.altKey?2:0)|(n.ctrlKey?4:0)|(n.metaKey?8:0);switch(n.keyCode){case 0:n.key==="UIKeyInputUpArrow"?_.key=d?l.C0.ESC+"OA":l.C0.ESC+"[A":n.key==="UIKeyInputLeftArrow"?_.key=d?l.C0.ESC+"OD":l.C0.ESC+"[D":n.key==="UIKeyInputRightArrow"?_.key=d?l.C0.ESC+"OC":l.C0.ESC+"[C":n.key==="UIKeyInputDownArrow"&&(_.key=d?l.C0.ESC+"OB":l.C0.ESC+"[B");break;case 8:if(n.altKey){_.key=l.C0.ESC+l.C0.DEL;break}_.key=l.C0.DEL;break;case 9:if(n.shiftKey){_.key=l.C0.ESC+"[Z";break}_.key=l.C0.HT,_.cancel=!0;break;case 13:_.key=n.altKey?l.C0.ESC+l.C0.CR:l.C0.CR,_.cancel=!0;break;case 27:_.key=l.C0.ESC,n.altKey&&(_.key=l.C0.ESC+l.C0.ESC),_.cancel=!0;break;case 37:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"D",_.key===l.C0.ESC+"[1;3D"&&(_.key=l.C0.ESC+(f?"b":"[1;5D"))):_.key=d?l.C0.ESC+"OD":l.C0.ESC+"[D";break;case 39:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"C",_.key===l.C0.ESC+"[1;3C"&&(_.key=l.C0.ESC+(f?"f":"[1;5C"))):_.key=d?l.C0.ESC+"OC":l.C0.ESC+"[C";break;case 38:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"A",f||_.key!==l.C0.ESC+"[1;3A"||(_.key=l.C0.ESC+"[1;5A")):_.key=d?l.C0.ESC+"OA":l.C0.ESC+"[A";break;case 40:if(n.metaKey)break;e?(_.key=l.C0.ESC+"[1;"+(e+1)+"B",f||_.key!==l.C0.ESC+"[1;3B"||(_.key=l.C0.ESC+"[1;5B")):_.key=d?l.C0.ESC+"OB":l.C0.ESC+"[B";break;case 45:n.shiftKey||n.ctrlKey||(_.key=l.C0.ESC+"[2~");break;case 46:_.key=e?l.C0.ESC+"[3;"+(e+1)+"~":l.C0.ESC+"[3~";break;case 36:_.key=e?l.C0.ESC+"[1;"+(e+1)+"H":d?l.C0.ESC+"OH":l.C0.ESC+"[H";break;case 35:_.key=e?l.C0.ESC+"[1;"+(e+1)+"F":d?l.C0.ESC+"OF":l.C0.ESC+"[F";break;case 33:n.shiftKey?_.type=2:n.ctrlKey?_.key=l.C0.ESC+"[5;"+(e+1)+"~":_.key=l.C0.ESC+"[5~";break;case 34:n.shiftKey?_.type=3:n.ctrlKey?_.key=l.C0.ESC+"[6;"+(e+1)+"~":_.key=l.C0.ESC+"[6~";break;case 112:_.key=e?l.C0.ESC+"[1;"+(e+1)+"P":l.C0.ESC+"OP";break;case 113:_.key=e?l.C0.ESC+"[1;"+(e+1)+"Q":l.C0.ESC+"OQ";break;case 114:_.key=e?l.C0.ESC+"[1;"+(e+1)+"R":l.C0.ESC+"OR";break;case 115:_.key=e?l.C0.ESC+"[1;"+(e+1)+"S":l.C0.ESC+"OS";break;case 116:_.key=e?l.C0.ESC+"[15;"+(e+1)+"~":l.C0.ESC+"[15~";break;case 117:_.key=e?l.C0.ESC+"[17;"+(e+1)+"~":l.C0.ESC+"[17~";break;case 118:_.key=e?l.C0.ESC+"[18;"+(e+1)+"~":l.C0.ESC+"[18~";break;case 119:_.key=e?l.C0.ESC+"[19;"+(e+1)+"~":l.C0.ESC+"[19~";break;case 120:_.key=e?l.C0.ESC+"[20;"+(e+1)+"~":l.C0.ESC+"[20~";break;case 121:_.key=e?l.C0.ESC+"[21;"+(e+1)+"~":l.C0.ESC+"[21~";break;case 122:_.key=e?l.C0.ESC+"[23;"+(e+1)+"~":l.C0.ESC+"[23~";break;case 123:_.key=e?l.C0.ESC+"[24;"+(e+1)+"~":l.C0.ESC+"[24~";break;default:if(!n.ctrlKey||n.shiftKey||n.altKey||n.metaKey)if(f&&!p||!n.altKey||n.metaKey)!f||n.altKey||n.ctrlKey||n.shiftKey||!n.metaKey?n.key&&!n.ctrlKey&&!n.altKey&&!n.metaKey&&n.keyCode>=48&&n.key.length===1?_.key=n.key:n.key&&n.ctrlKey&&(n.key==="_"&&(_.key=l.C0.US),n.key==="@"&&(_.key=l.C0.NUL)):n.keyCode===65&&(_.type=1);else{const s=u[n.keyCode],t=s==null?void 0:s[n.shiftKey?1:0];if(t)_.key=l.C0.ESC+t;else if(n.keyCode>=65&&n.keyCode<=90){const i=n.ctrlKey?n.keyCode-64:n.keyCode+32;let o=String.fromCharCode(i);n.shiftKey&&(o=o.toUpperCase()),_.key=l.C0.ESC+o}else if(n.keyCode===32)_.key=l.C0.ESC+(n.ctrlKey?l.C0.NUL:" ");else if(n.key==="Dead"&&n.code.startsWith("Key")){let i=n.code.slice(3,4);n.shiftKey||(i=i.toLowerCase()),_.key=l.C0.ESC+i,_.cancel=!0}}else n.keyCode>=65&&n.keyCode<=90?_.key=String.fromCharCode(n.keyCode-64):n.keyCode===32?_.key=l.C0.NUL:n.keyCode>=51&&n.keyCode<=55?_.key=String.fromCharCode(n.keyCode-51+27):n.keyCode===56?_.key=l.C0.DEL:n.keyCode===219?_.key=l.C0.ESC:n.keyCode===220?_.key=l.C0.FS:n.keyCode===221&&(_.key=l.C0.GS)}return _}},482:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Utf8ToUtf32=r.StringToUtf32=r.utf32ToString=r.stringFromCodePoint=void 0,r.stringFromCodePoint=function(a){return a>65535?(a-=65536,String.fromCharCode(55296+(a>>10))+String.fromCharCode(a%1024+56320)):String.fromCharCode(a)},r.utf32ToString=function(a,l=0,u=a.length){let n="";for(let d=l;d65535?(f-=65536,n+=String.fromCharCode(55296+(f>>10))+String.fromCharCode(f%1024+56320)):n+=String.fromCharCode(f)}return n},r.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(a,l){const u=a.length;if(!u)return 0;let n=0,d=0;if(this._interim){const f=a.charCodeAt(d++);56320<=f&&f<=57343?l[n++]=1024*(this._interim-55296)+f-56320+65536:(l[n++]=this._interim,l[n++]=f),this._interim=0}for(let f=d;f=u)return this._interim=p,n;const _=a.charCodeAt(f);56320<=_&&_<=57343?l[n++]=1024*(p-55296)+_-56320+65536:(l[n++]=p,l[n++]=_)}else p!==65279&&(l[n++]=p)}return n}},r.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(a,l){const u=a.length;if(!u)return 0;let n,d,f,p,_=0,e=0,s=0;if(this.interim[0]){let o=!1,c=this.interim[0];c&=(224&c)==192?31:(240&c)==224?15:7;let v,m=0;for(;(v=63&this.interim[++m])&&m<4;)c<<=6,c|=v;const h=(224&this.interim[0])==192?2:(240&this.interim[0])==224?3:4,g=h-m;for(;s=u)return 0;if(v=a[s++],(192&v)!=128){s--,o=!0;break}this.interim[m++]=v,c<<=6,c|=63&v}o||(h===2?c<128?s--:l[_++]=c:h===3?c<2048||c>=55296&&c<=57343||c===65279||(l[_++]=c):c<65536||c>1114111||(l[_++]=c)),this.interim.fill(0)}const t=u-4;let i=s;for(;i=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(e=(31&n)<<6|63&d,e<128){i--;continue}l[_++]=e}else if((240&n)==224){if(i>=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,_;if(f=a[i++],(192&f)!=128){i--;continue}if(e=(15&n)<<12|(63&d)<<6|63&f,e<2048||e>=55296&&e<=57343||e===65279)continue;l[_++]=e}else if((248&n)==240){if(i>=u)return this.interim[0]=n,_;if(d=a[i++],(192&d)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,_;if(f=a[i++],(192&f)!=128){i--;continue}if(i>=u)return this.interim[0]=n,this.interim[1]=d,this.interim[2]=f,_;if(p=a[i++],(192&p)!=128){i--;continue}if(e=(7&n)<<18|(63&d)<<12|(63&f)<<6|63&p,e<65536||e>1114111)continue;l[_++]=e}}return _}}},225:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeV6=void 0;const a=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531]],l=[[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]];let u;r.UnicodeV6=class{constructor(){if(this.version="6",!u){u=new Uint8Array(65536),u.fill(1),u[0]=0,u.fill(0,1,32),u.fill(0,127,160),u.fill(2,4352,4448),u[9001]=2,u[9002]=2,u.fill(2,11904,42192),u[12351]=1,u.fill(2,44032,55204),u.fill(2,63744,64256),u.fill(2,65040,65050),u.fill(2,65072,65136),u.fill(2,65280,65377),u.fill(2,65504,65511);for(let n=0;nf[e][1])return!1;for(;e>=_;)if(p=_+e>>1,d>f[p][1])_=p+1;else{if(!(d=131072&&n<=196605||n>=196608&&n<=262141?2:1}}},5981:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.WriteBuffer=void 0;const l=a(8460),u=a(844);class n extends u.Disposable{constructor(f){super(),this._action=f,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this.register(new l.EventEmitter),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(f,p){if(p!==void 0&&this._syncCalls>p)return void(this._syncCalls=0);if(this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;let _;for(this._isSyncWriting=!0;_=this._writeBuffer.shift();){this._action(_);const e=this._callbacks.shift();e&&e()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(f,p){if(this._pendingData>5e7)throw new Error("write data discarded, use flow control to avoid losing data");if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput)return this._didUserInput=!1,this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(p),void this._innerWrite();setTimeout(()=>this._innerWrite())}this._pendingData+=f.length,this._writeBuffer.push(f),this._callbacks.push(p)}_innerWrite(f=0,p=!0){const _=f||Date.now();for(;this._writeBuffer.length>this._bufferOffset;){const e=this._writeBuffer[this._bufferOffset],s=this._action(e,p);if(s){const i=o=>Date.now()-_>=12?setTimeout(()=>this._innerWrite(0,o)):this._innerWrite(_,o);return void s.catch(o=>(queueMicrotask(()=>{throw o}),Promise.resolve(!1))).then(i)}const t=this._callbacks[this._bufferOffset];if(t&&t(),this._bufferOffset++,this._pendingData-=e.length,Date.now()-_>=12)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>50&&(this._writeBuffer=this._writeBuffer.slice(this._bufferOffset),this._callbacks=this._callbacks.slice(this._bufferOffset),this._bufferOffset=0),setTimeout(()=>this._innerWrite())):(this._writeBuffer.length=0,this._callbacks.length=0,this._pendingData=0,this._bufferOffset=0),this._onWriteParsed.fire()}}r.WriteBuffer=n},5941:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.toRgbString=r.parseColor=void 0;const a=/^([\da-f])\/([\da-f])\/([\da-f])$|^([\da-f]{2})\/([\da-f]{2})\/([\da-f]{2})$|^([\da-f]{3})\/([\da-f]{3})\/([\da-f]{3})$|^([\da-f]{4})\/([\da-f]{4})\/([\da-f]{4})$/,l=/^[\da-f]+$/;function u(n,d){const f=n.toString(16),p=f.length<2?"0"+f:f;switch(d){case 4:return f[0];case 8:return p;case 12:return(p+p).slice(0,3);default:return p+p}}r.parseColor=function(n){if(!n)return;let d=n.toLowerCase();if(d.indexOf("rgb:")===0){d=d.slice(4);const f=a.exec(d);if(f){const p=f[1]?15:f[4]?255:f[7]?4095:65535;return[Math.round(parseInt(f[1]||f[4]||f[7]||f[10],16)/p*255),Math.round(parseInt(f[2]||f[5]||f[8]||f[11],16)/p*255),Math.round(parseInt(f[3]||f[6]||f[9]||f[12],16)/p*255)]}}else if(d.indexOf("#")===0&&(d=d.slice(1),l.exec(d)&&[3,6,9,12].includes(d.length))){const f=d.length/3,p=[0,0,0];for(let _=0;_<3;++_){const e=parseInt(d.slice(f*_,f*_+f),16);p[_]=f===1?e<<4:f===2?e:f===3?e>>4:e>>8}return p}},r.toRgbString=function(n,d=16){const[f,p,_]=n;return`rgb:${u(f,d)}/${u(p,d)}/${u(_,d)}`}},5770:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.PAYLOAD_LIMIT=void 0,r.PAYLOAD_LIMIT=1e7},6351:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DcsHandler=r.DcsParser=void 0;const l=a(482),u=a(8742),n=a(5770),d=[];r.DcsParser=class{constructor(){this._handlers=Object.create(null),this._active=d,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=d}registerHandler(p,_){this._handlers[p]===void 0&&(this._handlers[p]=[]);const e=this._handlers[p];return e.push(_),{dispose:()=>{const s=e.indexOf(_);s!==-1&&e.splice(s,1)}}}clearHandler(p){this._handlers[p]&&delete this._handlers[p]}setHandlerFallback(p){this._handlerFb=p}reset(){if(this._active.length)for(let p=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;p>=0;--p)this._active[p].unhook(!1);this._stack.paused=!1,this._active=d,this._ident=0}hook(p,_){if(this.reset(),this._ident=p,this._active=this._handlers[p]||d,this._active.length)for(let e=this._active.length-1;e>=0;e--)this._active[e].hook(_);else this._handlerFb(this._ident,"HOOK",_)}put(p,_,e){if(this._active.length)for(let s=this._active.length-1;s>=0;s--)this._active[s].put(p,_,e);else this._handlerFb(this._ident,"PUT",(0,l.utf32ToString)(p,_,e))}unhook(p,_=!0){if(this._active.length){let e=!1,s=this._active.length-1,t=!1;if(this._stack.paused&&(s=this._stack.loopPosition-1,e=_,t=this._stack.fallThrough,this._stack.paused=!1),!t&&e===!1){for(;s>=0&&(e=this._active[s].unhook(p),e!==!0);s--)if(e instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!1,e;s--}for(;s>=0;s--)if(e=this._active[s].unhook(!1),e instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!0,e}else this._handlerFb(this._ident,"UNHOOK",p);this._active=d,this._ident=0}};const f=new u.Params;f.addParam(0),r.DcsHandler=class{constructor(p){this._handler=p,this._data="",this._params=f,this._hitLimit=!1}hook(p){this._params=p.length>1||p.params[0]?p.clone():f,this._data="",this._hitLimit=!1}put(p,_,e){this._hitLimit||(this._data+=(0,l.utf32ToString)(p,_,e),this._data.length>n.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}unhook(p){let _=!1;if(this._hitLimit)_=!1;else if(p&&(_=this._handler(this._data,this._params),_ instanceof Promise))return _.then(e=>(this._params=f,this._data="",this._hitLimit=!1,e));return this._params=f,this._data="",this._hitLimit=!1,_}}},2015:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.EscapeSequenceParser=r.VT500_TRANSITION_TABLE=r.TransitionTable=void 0;const l=a(844),u=a(8742),n=a(6242),d=a(6351);class f{constructor(s){this.table=new Uint8Array(s)}setDefault(s,t){this.table.fill(s<<4|t)}add(s,t,i,o){this.table[t<<8|s]=i<<4|o}addMany(s,t,i,o){for(let c=0;ch),t=(m,h)=>s.slice(m,h),i=t(32,127),o=t(0,24);o.push(25),o.push.apply(o,t(28,32));const c=t(0,14);let v;for(v in e.setDefault(1,0),e.addMany(i,0,2,0),c)e.addMany([24,26,153,154],v,3,0),e.addMany(t(128,144),v,3,0),e.addMany(t(144,152),v,3,0),e.add(156,v,0,0),e.add(27,v,11,1),e.add(157,v,4,8),e.addMany([152,158,159],v,0,7),e.add(155,v,11,3),e.add(144,v,11,9);return e.addMany(o,0,3,0),e.addMany(o,1,3,1),e.add(127,1,0,1),e.addMany(o,8,0,8),e.addMany(o,3,3,3),e.add(127,3,0,3),e.addMany(o,4,3,4),e.add(127,4,0,4),e.addMany(o,6,3,6),e.addMany(o,5,3,5),e.add(127,5,0,5),e.addMany(o,2,3,2),e.add(127,2,0,2),e.add(93,1,4,8),e.addMany(i,8,5,8),e.add(127,8,5,8),e.addMany([156,27,24,26,7],8,6,0),e.addMany(t(28,32),8,0,8),e.addMany([88,94,95],1,0,7),e.addMany(i,7,0,7),e.addMany(o,7,0,7),e.add(156,7,0,0),e.add(127,7,0,7),e.add(91,1,11,3),e.addMany(t(64,127),3,7,0),e.addMany(t(48,60),3,8,4),e.addMany([60,61,62,63],3,9,4),e.addMany(t(48,60),4,8,4),e.addMany(t(64,127),4,7,0),e.addMany([60,61,62,63],4,0,6),e.addMany(t(32,64),6,0,6),e.add(127,6,0,6),e.addMany(t(64,127),6,0,0),e.addMany(t(32,48),3,9,5),e.addMany(t(32,48),5,9,5),e.addMany(t(48,64),5,0,6),e.addMany(t(64,127),5,7,0),e.addMany(t(32,48),4,9,5),e.addMany(t(32,48),1,9,2),e.addMany(t(32,48),2,9,2),e.addMany(t(48,127),2,10,0),e.addMany(t(48,80),1,10,0),e.addMany(t(81,88),1,10,0),e.addMany([89,90,92],1,10,0),e.addMany(t(96,127),1,10,0),e.add(80,1,11,9),e.addMany(o,9,0,9),e.add(127,9,0,9),e.addMany(t(28,32),9,0,9),e.addMany(t(32,48),9,9,12),e.addMany(t(48,60),9,8,10),e.addMany([60,61,62,63],9,9,10),e.addMany(o,11,0,11),e.addMany(t(32,128),11,0,11),e.addMany(t(28,32),11,0,11),e.addMany(o,10,0,10),e.add(127,10,0,10),e.addMany(t(28,32),10,0,10),e.addMany(t(48,60),10,8,10),e.addMany([60,61,62,63],10,0,11),e.addMany(t(32,48),10,9,12),e.addMany(o,12,0,12),e.add(127,12,0,12),e.addMany(t(28,32),12,0,12),e.addMany(t(32,48),12,9,12),e.addMany(t(48,64),12,0,11),e.addMany(t(64,127),12,12,13),e.addMany(t(64,127),10,12,13),e.addMany(t(64,127),9,12,13),e.addMany(o,13,13,13),e.addMany(i,13,13,13),e.add(127,13,0,13),e.addMany([27,156,24,26],13,14,0),e.add(p,0,2,0),e.add(p,8,5,8),e.add(p,6,0,6),e.add(p,11,0,11),e.add(p,13,13,13),e}();class _ extends l.Disposable{constructor(s=r.VT500_TRANSITION_TABLE){super(),this._transitions=s,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new u.Params,this._params.addParam(0),this._collect=0,this.precedingCodepoint=0,this._printHandlerFb=(t,i,o)=>{},this._executeHandlerFb=t=>{},this._csiHandlerFb=(t,i)=>{},this._escHandlerFb=t=>{},this._errorHandlerFb=t=>t,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this.register((0,l.toDisposable)(()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)})),this._oscParser=this.register(new n.OscParser),this._dcsParser=this.register(new d.DcsParser),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:"\\"},()=>!0)}_identifier(s,t=[64,126]){let i=0;if(s.prefix){if(s.prefix.length>1)throw new Error("only one byte as prefix supported");if(i=s.prefix.charCodeAt(0),i&&60>i||i>63)throw new Error("prefix must be in range 0x3c .. 0x3f")}if(s.intermediates){if(s.intermediates.length>2)throw new Error("only two bytes as intermediates are supported");for(let c=0;cv||v>47)throw new Error("intermediate must be in range 0x20 .. 0x2f");i<<=8,i|=v}}if(s.final.length!==1)throw new Error("final must be a single byte");const o=s.final.charCodeAt(0);if(t[0]>o||o>t[1])throw new Error(`final must be in range ${t[0]} .. ${t[1]}`);return i<<=8,i|=o,i}identToString(s){const t=[];for(;s;)t.push(String.fromCharCode(255&s)),s>>=8;return t.reverse().join("")}setPrintHandler(s){this._printHandler=s}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(s,t){const i=this._identifier(s,[48,126]);this._escHandlers[i]===void 0&&(this._escHandlers[i]=[]);const o=this._escHandlers[i];return o.push(t),{dispose:()=>{const c=o.indexOf(t);c!==-1&&o.splice(c,1)}}}clearEscHandler(s){this._escHandlers[this._identifier(s,[48,126])]&&delete this._escHandlers[this._identifier(s,[48,126])]}setEscHandlerFallback(s){this._escHandlerFb=s}setExecuteHandler(s,t){this._executeHandlers[s.charCodeAt(0)]=t}clearExecuteHandler(s){this._executeHandlers[s.charCodeAt(0)]&&delete this._executeHandlers[s.charCodeAt(0)]}setExecuteHandlerFallback(s){this._executeHandlerFb=s}registerCsiHandler(s,t){const i=this._identifier(s);this._csiHandlers[i]===void 0&&(this._csiHandlers[i]=[]);const o=this._csiHandlers[i];return o.push(t),{dispose:()=>{const c=o.indexOf(t);c!==-1&&o.splice(c,1)}}}clearCsiHandler(s){this._csiHandlers[this._identifier(s)]&&delete this._csiHandlers[this._identifier(s)]}setCsiHandlerFallback(s){this._csiHandlerFb=s}registerDcsHandler(s,t){return this._dcsParser.registerHandler(this._identifier(s),t)}clearDcsHandler(s){this._dcsParser.clearHandler(this._identifier(s))}setDcsHandlerFallback(s){this._dcsParser.setHandlerFallback(s)}registerOscHandler(s,t){return this._oscParser.registerHandler(s,t)}clearOscHandler(s){this._oscParser.clearHandler(s)}setOscHandlerFallback(s){this._oscParser.setHandlerFallback(s)}setErrorHandler(s){this._errorHandler=s}clearErrorHandler(){this._errorHandler=this._errorHandlerFb}reset(){this.currentState=this.initialState,this._oscParser.reset(),this._dcsParser.reset(),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingCodepoint=0,this._parseStack.state!==0&&(this._parseStack.state=2,this._parseStack.handlers=[])}_preserveStack(s,t,i,o,c){this._parseStack.state=s,this._parseStack.handlers=t,this._parseStack.handlerPos=i,this._parseStack.transition=o,this._parseStack.chunkPos=c}parse(s,t,i){let o,c=0,v=0,m=0;if(this._parseStack.state)if(this._parseStack.state===2)this._parseStack.state=0,m=this._parseStack.chunkPos+1;else{if(i===void 0||this._parseStack.state===1)throw this._parseStack.state=1,new Error("improper continuation due to previous async handler, giving up parsing");const h=this._parseStack.handlers;let g=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(i===!1&&g>-1){for(;g>=0&&(o=h[g](this._params),o!==!0);g--)if(o instanceof Promise)return this._parseStack.handlerPos=g,o}this._parseStack.handlers=[];break;case 4:if(i===!1&&g>-1){for(;g>=0&&(o=h[g](),o!==!0);g--)if(o instanceof Promise)return this._parseStack.handlerPos=g,o}this._parseStack.handlers=[];break;case 6:if(c=s[this._parseStack.chunkPos],o=this._dcsParser.unhook(c!==24&&c!==26,i),o)return o;c===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(c=s[this._parseStack.chunkPos],o=this._oscParser.end(c!==24&&c!==26,i),o)return o;c===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0}this._parseStack.state=0,m=this._parseStack.chunkPos+1,this.precedingCodepoint=0,this.currentState=15&this._parseStack.transition}for(let h=m;h>4){case 2:for(let k=h+1;;++k){if(k>=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=t||(c=s[k])<32||c>126&&c=0&&(o=g[b](this._params),o!==!0);b--)if(o instanceof Promise)return this._preserveStack(3,g,b,v,h),o;b<0&&this._csiHandlerFb(this._collect<<8|c,this._params),this.precedingCodepoint=0;break;case 8:do switch(c){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(c-48)}while(++h47&&c<60);h--;break;case 9:this._collect<<=8,this._collect|=c;break;case 10:const L=this._escHandlers[this._collect<<8|c];let y=L?L.length-1:-1;for(;y>=0&&(o=L[y](),o!==!0);y--)if(o instanceof Promise)return this._preserveStack(4,L,y,v,h),o;y<0&&this._escHandlerFb(this._collect<<8|c),this.precedingCodepoint=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|c,this._params);break;case 13:for(let k=h+1;;++k)if(k>=t||(c=s[k])===24||c===26||c===27||c>127&&c=t||(c=s[k])<32||c>127&&c{Object.defineProperty(r,"__esModule",{value:!0}),r.OscHandler=r.OscParser=void 0;const l=a(5770),u=a(482),n=[];r.OscParser=class{constructor(){this._state=0,this._active=n,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(d,f){this._handlers[d]===void 0&&(this._handlers[d]=[]);const p=this._handlers[d];return p.push(f),{dispose:()=>{const _=p.indexOf(f);_!==-1&&p.splice(_,1)}}}clearHandler(d){this._handlers[d]&&delete this._handlers[d]}setHandlerFallback(d){this._handlerFb=d}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=n}reset(){if(this._state===2)for(let d=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;d>=0;--d)this._active[d].end(!1);this._stack.paused=!1,this._active=n,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||n,this._active.length)for(let d=this._active.length-1;d>=0;d--)this._active[d].start();else this._handlerFb(this._id,"START")}_put(d,f,p){if(this._active.length)for(let _=this._active.length-1;_>=0;_--)this._active[_].put(d,f,p);else this._handlerFb(this._id,"PUT",(0,u.utf32ToString)(d,f,p))}start(){this.reset(),this._state=1}put(d,f,p){if(this._state!==3){if(this._state===1)for(;f0&&this._put(d,f,p)}}end(d,f=!0){if(this._state!==0){if(this._state!==3)if(this._state===1&&this._start(),this._active.length){let p=!1,_=this._active.length-1,e=!1;if(this._stack.paused&&(_=this._stack.loopPosition-1,p=f,e=this._stack.fallThrough,this._stack.paused=!1),!e&&p===!1){for(;_>=0&&(p=this._active[_].end(d),p!==!0);_--)if(p instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=_,this._stack.fallThrough=!1,p;_--}for(;_>=0;_--)if(p=this._active[_].end(!1),p instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=_,this._stack.fallThrough=!0,p}else this._handlerFb(this._id,"END",d);this._active=n,this._id=-1,this._state=0}}},r.OscHandler=class{constructor(d){this._handler=d,this._data="",this._hitLimit=!1}start(){this._data="",this._hitLimit=!1}put(d,f,p){this._hitLimit||(this._data+=(0,u.utf32ToString)(d,f,p),this._data.length>l.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}end(d){let f=!1;if(this._hitLimit)f=!1;else if(d&&(f=this._handler(this._data),f instanceof Promise))return f.then(p=>(this._data="",this._hitLimit=!1,p));return this._data="",this._hitLimit=!1,f}}},8742:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Params=void 0;const a=2147483647;class l{static fromArray(n){const d=new l;if(!n.length)return d;for(let f=Array.isArray(n[0])?1:0;f256)throw new Error("maxSubParamsLength must not be greater than 256");this.params=new Int32Array(n),this.length=0,this._subParams=new Int32Array(d),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(n),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}clone(){const n=new l(this.maxLength,this.maxSubParamsLength);return n.params.set(this.params),n.length=this.length,n._subParams.set(this._subParams),n._subParamsLength=this._subParamsLength,n._subParamsIdx.set(this._subParamsIdx),n._rejectDigits=this._rejectDigits,n._rejectSubDigits=this._rejectSubDigits,n._digitIsSub=this._digitIsSub,n}toArray(){const n=[];for(let d=0;d>8,p=255&this._subParamsIdx[d];p-f>0&&n.push(Array.prototype.slice.call(this._subParams,f,p))}return n}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(n){if(this._digitIsSub=!1,this.length>=this.maxLength)this._rejectDigits=!0;else{if(n<-1)throw new Error("values lesser than -1 are not allowed");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=n>a?a:n}}addSubParam(n){if(this._digitIsSub=!0,this.length)if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength)this._rejectSubDigits=!0;else{if(n<-1)throw new Error("values lesser than -1 are not allowed");this._subParams[this._subParamsLength++]=n>a?a:n,this._subParamsIdx[this.length-1]++}}hasSubParams(n){return(255&this._subParamsIdx[n])-(this._subParamsIdx[n]>>8)>0}getSubParams(n){const d=this._subParamsIdx[n]>>8,f=255&this._subParamsIdx[n];return f-d>0?this._subParams.subarray(d,f):null}getSubParamsAll(){const n={};for(let d=0;d>8,p=255&this._subParamsIdx[d];p-f>0&&(n[d]=this._subParams.slice(f,p))}return n}addDigit(n){let d;if(this._rejectDigits||!(d=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;const f=this._digitIsSub?this._subParams:this.params,p=f[d-1];f[d-1]=~p?Math.min(10*p+n,a):n}}r.Params=l},5741:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.AddonManager=void 0,r.AddonManager=class{constructor(){this._addons=[]}dispose(){for(let a=this._addons.length-1;a>=0;a--)this._addons[a].instance.dispose()}loadAddon(a,l){const u={instance:l,dispose:l.dispose,isDisposed:!1};this._addons.push(u),l.dispose=()=>this._wrappedAddonDispose(u),l.activate(a)}_wrappedAddonDispose(a){if(a.isDisposed)return;let l=-1;for(let u=0;u{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferApiView=void 0;const l=a(3785),u=a(511);r.BufferApiView=class{constructor(n,d){this._buffer=n,this.type=d}init(n){return this._buffer=n,this}get cursorY(){return this._buffer.y}get cursorX(){return this._buffer.x}get viewportY(){return this._buffer.ydisp}get baseY(){return this._buffer.ybase}get length(){return this._buffer.lines.length}getLine(n){const d=this._buffer.lines.get(n);if(d)return new l.BufferLineApiView(d)}getNullCell(){return new u.CellData}}},3785:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferLineApiView=void 0;const l=a(511);r.BufferLineApiView=class{constructor(u){this._line=u}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(u,n){if(!(u<0||u>=this._line.length))return n?(this._line.loadCell(u,n),n):this._line.loadCell(u,new l.CellData)}translateToString(u,n,d){return this._line.translateToString(u,n,d)}}},8285:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferNamespaceApi=void 0;const l=a(8771),u=a(8460),n=a(844);class d extends n.Disposable{constructor(p){super(),this._core=p,this._onBufferChange=this.register(new u.EventEmitter),this.onBufferChange=this._onBufferChange.event,this._normal=new l.BufferApiView(this._core.buffers.normal,"normal"),this._alternate=new l.BufferApiView(this._core.buffers.alt,"alternate"),this._core.buffers.onBufferActivate(()=>this._onBufferChange.fire(this.active))}get active(){if(this._core.buffers.active===this._core.buffers.normal)return this.normal;if(this._core.buffers.active===this._core.buffers.alt)return this.alternate;throw new Error("Active buffer is neither normal nor alternate")}get normal(){return this._normal.init(this._core.buffers.normal)}get alternate(){return this._alternate.init(this._core.buffers.alt)}}r.BufferNamespaceApi=d},7975:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ParserApi=void 0,r.ParserApi=class{constructor(a){this._core=a}registerCsiHandler(a,l){return this._core.registerCsiHandler(a,u=>l(u.toArray()))}addCsiHandler(a,l){return this.registerCsiHandler(a,l)}registerDcsHandler(a,l){return this._core.registerDcsHandler(a,(u,n)=>l(u,n.toArray()))}addDcsHandler(a,l){return this.registerDcsHandler(a,l)}registerEscHandler(a,l){return this._core.registerEscHandler(a,l)}addEscHandler(a,l){return this.registerEscHandler(a,l)}registerOscHandler(a,l){return this._core.registerOscHandler(a,l)}addOscHandler(a,l){return this.registerOscHandler(a,l)}}},7090:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeApi=void 0,r.UnicodeApi=class{constructor(a){this._core=a}register(a){this._core.unicodeService.register(a)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(a){this._core.unicodeService.activeVersion=a}}},744:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.BufferService=r.MINIMUM_ROWS=r.MINIMUM_COLS=void 0;const n=a(8460),d=a(844),f=a(5295),p=a(2585);r.MINIMUM_COLS=2,r.MINIMUM_ROWS=1;let _=r.BufferService=class extends d.Disposable{get buffer(){return this.buffers.active}constructor(e){super(),this.isUserScrolling=!1,this._onResize=this.register(new n.EventEmitter),this.onResize=this._onResize.event,this._onScroll=this.register(new n.EventEmitter),this.onScroll=this._onScroll.event,this.cols=Math.max(e.rawOptions.cols||0,r.MINIMUM_COLS),this.rows=Math.max(e.rawOptions.rows||0,r.MINIMUM_ROWS),this.buffers=this.register(new f.BufferSet(e,this))}resize(e,s){this.cols=e,this.rows=s,this.buffers.resize(e,s),this._onResize.fire({cols:e,rows:s})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(e,s=!1){const t=this.buffer;let i;i=this._cachedBlankLine,i&&i.length===this.cols&&i.getFg(0)===e.fg&&i.getBg(0)===e.bg||(i=t.getBlankLine(e,s),this._cachedBlankLine=i),i.isWrapped=s;const o=t.ybase+t.scrollTop,c=t.ybase+t.scrollBottom;if(t.scrollTop===0){const v=t.lines.isFull;c===t.lines.length-1?v?t.lines.recycle().copyFrom(i):t.lines.push(i.clone()):t.lines.splice(c+1,0,i.clone()),v?this.isUserScrolling&&(t.ydisp=Math.max(t.ydisp-1,0)):(t.ybase++,this.isUserScrolling||t.ydisp++)}else{const v=c-o+1;t.lines.shiftElements(o+1,v-1,-1),t.lines.set(c,i.clone())}this.isUserScrolling||(t.ydisp=t.ybase),this._onScroll.fire(t.ydisp)}scrollLines(e,s,t){const i=this.buffer;if(e<0){if(i.ydisp===0)return;this.isUserScrolling=!0}else e+i.ydisp>=i.ybase&&(this.isUserScrolling=!1);const o=i.ydisp;i.ydisp=Math.max(Math.min(i.ydisp+e,i.ybase),0),o!==i.ydisp&&(s||this._onScroll.fire(i.ydisp))}};r.BufferService=_=l([u(0,p.IOptionsService)],_)},7994:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CharsetService=void 0,r.CharsetService=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(a){this.glevel=a,this.charset=this._charsets[a]}setgCharset(a,l){this._charsets[a]=l,this.glevel===a&&(this.charset=l)}}},1753:function(I,r,a){var l=this&&this.__decorate||function(i,o,c,v){var m,h=arguments.length,g=h<3?o:v===null?v=Object.getOwnPropertyDescriptor(o,c):v;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(i,o,c,v);else for(var b=i.length-1;b>=0;b--)(m=i[b])&&(g=(h<3?m(g):h>3?m(o,c,g):m(o,c))||g);return h>3&&g&&Object.defineProperty(o,c,g),g},u=this&&this.__param||function(i,o){return function(c,v){o(c,v,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreMouseService=void 0;const n=a(2585),d=a(8460),f=a(844),p={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:i=>i.button!==4&&i.action===1&&(i.ctrl=!1,i.alt=!1,i.shift=!1,!0)},VT200:{events:19,restrict:i=>i.action!==32},DRAG:{events:23,restrict:i=>i.action!==32||i.button!==3},ANY:{events:31,restrict:i=>!0}};function _(i,o){let c=(i.ctrl?16:0)|(i.shift?4:0)|(i.alt?8:0);return i.button===4?(c|=64,c|=i.action):(c|=3&i.button,4&i.button&&(c|=64),8&i.button&&(c|=128),i.action===32?c|=32:i.action!==0||o||(c|=3)),c}const e=String.fromCharCode,s={DEFAULT:i=>{const o=[_(i,!1)+32,i.col+32,i.row+32];return o[0]>255||o[1]>255||o[2]>255?"":`\x1B[M${e(o[0])}${e(o[1])}${e(o[2])}`},SGR:i=>{const o=i.action===0&&i.button!==4?"m":"M";return`\x1B[<${_(i,!0)};${i.col};${i.row}${o}`},SGR_PIXELS:i=>{const o=i.action===0&&i.button!==4?"m":"M";return`\x1B[<${_(i,!0)};${i.x};${i.y}${o}`}};let t=r.CoreMouseService=class extends f.Disposable{constructor(i,o){super(),this._bufferService=i,this._coreService=o,this._protocols={},this._encodings={},this._activeProtocol="",this._activeEncoding="",this._lastEvent=null,this._onProtocolChange=this.register(new d.EventEmitter),this.onProtocolChange=this._onProtocolChange.event;for(const c of Object.keys(p))this.addProtocol(c,p[c]);for(const c of Object.keys(s))this.addEncoding(c,s[c]);this.reset()}addProtocol(i,o){this._protocols[i]=o}addEncoding(i,o){this._encodings[i]=o}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return this._protocols[this._activeProtocol].events!==0}set activeProtocol(i){if(!this._protocols[i])throw new Error(`unknown protocol "${i}"`);this._activeProtocol=i,this._onProtocolChange.fire(this._protocols[i].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(i){if(!this._encodings[i])throw new Error(`unknown encoding "${i}"`);this._activeEncoding=i}reset(){this.activeProtocol="NONE",this.activeEncoding="DEFAULT",this._lastEvent=null}triggerMouseEvent(i){if(i.col<0||i.col>=this._bufferService.cols||i.row<0||i.row>=this._bufferService.rows||i.button===4&&i.action===32||i.button===3&&i.action!==32||i.button!==4&&(i.action===2||i.action===3)||(i.col++,i.row++,i.action===32&&this._lastEvent&&this._equalEvents(this._lastEvent,i,this._activeEncoding==="SGR_PIXELS"))||!this._protocols[this._activeProtocol].restrict(i))return!1;const o=this._encodings[this._activeEncoding](i);return o&&(this._activeEncoding==="DEFAULT"?this._coreService.triggerBinaryEvent(o):this._coreService.triggerDataEvent(o,!0)),this._lastEvent=i,!0}explainEvents(i){return{down:!!(1&i),up:!!(2&i),drag:!!(4&i),move:!!(8&i),wheel:!!(16&i)}}_equalEvents(i,o,c){if(c){if(i.x!==o.x||i.y!==o.y)return!1}else if(i.col!==o.col||i.row!==o.row)return!1;return i.button===o.button&&i.action===o.action&&i.ctrl===o.ctrl&&i.alt===o.alt&&i.shift===o.shift}};r.CoreMouseService=t=l([u(0,n.IBufferService),u(1,n.ICoreService)],t)},6975:function(I,r,a){var l=this&&this.__decorate||function(t,i,o,c){var v,m=arguments.length,h=m<3?i:c===null?c=Object.getOwnPropertyDescriptor(i,o):c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")h=Reflect.decorate(t,i,o,c);else for(var g=t.length-1;g>=0;g--)(v=t[g])&&(h=(m<3?v(h):m>3?v(i,o,h):v(i,o))||h);return m>3&&h&&Object.defineProperty(i,o,h),h},u=this&&this.__param||function(t,i){return function(o,c){i(o,c,t)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreService=void 0;const n=a(1439),d=a(8460),f=a(844),p=a(2585),_=Object.freeze({insertMode:!1}),e=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,origin:!1,reverseWraparound:!1,sendFocus:!1,wraparound:!0});let s=r.CoreService=class extends f.Disposable{constructor(t,i,o){super(),this._bufferService=t,this._logService=i,this._optionsService=o,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this.register(new d.EventEmitter),this.onData=this._onData.event,this._onUserInput=this.register(new d.EventEmitter),this.onUserInput=this._onUserInput.event,this._onBinary=this.register(new d.EventEmitter),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this.register(new d.EventEmitter),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=(0,n.clone)(_),this.decPrivateModes=(0,n.clone)(e)}reset(){this.modes=(0,n.clone)(_),this.decPrivateModes=(0,n.clone)(e)}triggerDataEvent(t,i=!1){if(this._optionsService.rawOptions.disableStdin)return;const o=this._bufferService.buffer;i&&this._optionsService.rawOptions.scrollOnUserInput&&o.ybase!==o.ydisp&&this._onRequestScrollToBottom.fire(),i&&this._onUserInput.fire(),this._logService.debug(`sending data "${t}"`,()=>t.split("").map(c=>c.charCodeAt(0))),this._onData.fire(t)}triggerBinaryEvent(t){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${t}"`,()=>t.split("").map(i=>i.charCodeAt(0))),this._onBinary.fire(t))}};r.CoreService=s=l([u(0,p.IBufferService),u(1,p.ILogService),u(2,p.IOptionsService)],s)},9074:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DecorationService=void 0;const l=a(8055),u=a(8460),n=a(844),d=a(6106);let f=0,p=0;class _ extends n.Disposable{get decorations(){return this._decorations.values()}constructor(){super(),this._decorations=new d.SortedList(t=>t==null?void 0:t.marker.line),this._onDecorationRegistered=this.register(new u.EventEmitter),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this.register(new u.EventEmitter),this.onDecorationRemoved=this._onDecorationRemoved.event,this.register((0,n.toDisposable)(()=>this.reset()))}registerDecoration(t){if(t.marker.isDisposed)return;const i=new e(t);if(i){const o=i.marker.onDispose(()=>i.dispose());i.onDispose(()=>{i&&(this._decorations.delete(i)&&this._onDecorationRemoved.fire(i),o.dispose())}),this._decorations.insert(i),this._onDecorationRegistered.fire(i)}return i}reset(){for(const t of this._decorations.values())t.dispose();this._decorations.clear()}*getDecorationsAtCell(t,i,o){var c,v,m;let h=0,g=0;for(const b of this._decorations.getKeyIterator(i))h=(c=b.options.x)!==null&&c!==void 0?c:0,g=h+((v=b.options.width)!==null&&v!==void 0?v:1),t>=h&&t{var m,h,g;f=(m=v.options.x)!==null&&m!==void 0?m:0,p=f+((h=v.options.width)!==null&&h!==void 0?h:1),t>=f&&t{Object.defineProperty(r,"__esModule",{value:!0}),r.InstantiationService=r.ServiceCollection=void 0;const l=a(2585),u=a(8343);class n{constructor(...f){this._entries=new Map;for(const[p,_]of f)this.set(p,_)}set(f,p){const _=this._entries.get(f);return this._entries.set(f,p),_}forEach(f){for(const[p,_]of this._entries.entries())f(p,_)}has(f){return this._entries.has(f)}get(f){return this._entries.get(f)}}r.ServiceCollection=n,r.InstantiationService=class{constructor(){this._services=new n,this._services.set(l.IInstantiationService,this)}setService(d,f){this._services.set(d,f)}getService(d){return this._services.get(d)}createInstance(d,...f){const p=(0,u.getServiceDependencies)(d).sort((s,t)=>s.index-t.index),_=[];for(const s of p){const t=this._services.get(s.id);if(!t)throw new Error(`[createInstance] ${d.name} depends on UNKNOWN service ${s.id}.`);_.push(t)}const e=p.length>0?p[0].index:f.length;if(f.length!==e)throw new Error(`[createInstance] First service dependency of ${d.name} at position ${e+1} conflicts with ${f.length} static arguments`);return new d(...f,..._)}}},7866:function(I,r,a){var l=this&&this.__decorate||function(e,s,t,i){var o,c=arguments.length,v=c<3?s:i===null?i=Object.getOwnPropertyDescriptor(s,t):i;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")v=Reflect.decorate(e,s,t,i);else for(var m=e.length-1;m>=0;m--)(o=e[m])&&(v=(c<3?o(v):c>3?o(s,t,v):o(s,t))||v);return c>3&&v&&Object.defineProperty(s,t,v),v},u=this&&this.__param||function(e,s){return function(t,i){s(t,i,e)}};Object.defineProperty(r,"__esModule",{value:!0}),r.traceCall=r.setTraceLogger=r.LogService=void 0;const n=a(844),d=a(2585),f={trace:d.LogLevelEnum.TRACE,debug:d.LogLevelEnum.DEBUG,info:d.LogLevelEnum.INFO,warn:d.LogLevelEnum.WARN,error:d.LogLevelEnum.ERROR,off:d.LogLevelEnum.OFF};let p,_=r.LogService=class extends n.Disposable{get logLevel(){return this._logLevel}constructor(e){super(),this._optionsService=e,this._logLevel=d.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange("logLevel",()=>this._updateLogLevel())),p=this}_updateLogLevel(){this._logLevel=f[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let s=0;sJSON.stringify(v)).join(", ")})`);const c=i.apply(this,o);return p.trace(`GlyphRenderer#${i.name} return`,c),c}}},7302:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.OptionsService=r.DEFAULT_OPTIONS=void 0;const l=a(8460),u=a(844),n=a(6114);r.DEFAULT_OPTIONS={cols:80,rows:24,cursorBlink:!1,cursorStyle:"block",cursorWidth:1,cursorInactiveStyle:"outline",customGlyphs:!0,drawBoldTextInBrightColors:!0,fastScrollModifier:"alt",fastScrollSensitivity:5,fontFamily:"courier-new, courier, monospace",fontSize:15,fontWeight:"normal",fontWeightBold:"bold",ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:"info",logger:null,scrollback:1e3,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},rightClickSelectsWord:n.isMac,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:" ()[]{}',\"`",altClickMovesCursor:!0,convertEol:!1,termName:"xterm",cancelEvents:!1,overviewRulerWidth:0};const d=["normal","bold","100","200","300","400","500","600","700","800","900"];class f extends u.Disposable{constructor(_){super(),this._onOptionChange=this.register(new l.EventEmitter),this.onOptionChange=this._onOptionChange.event;const e=Object.assign({},r.DEFAULT_OPTIONS);for(const s in _)if(s in e)try{const t=_[s];e[s]=this._sanitizeAndValidateOption(s,t)}catch(t){console.error(t)}this.rawOptions=e,this.options=Object.assign({},e),this._setupOptions()}onSpecificOptionChange(_,e){return this.onOptionChange(s=>{s===_&&e(this.rawOptions[_])})}onMultipleOptionChange(_,e){return this.onOptionChange(s=>{_.indexOf(s)!==-1&&e()})}_setupOptions(){const _=s=>{if(!(s in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${s}"`);return this.rawOptions[s]},e=(s,t)=>{if(!(s in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${s}"`);t=this._sanitizeAndValidateOption(s,t),this.rawOptions[s]!==t&&(this.rawOptions[s]=t,this._onOptionChange.fire(s))};for(const s in this.rawOptions){const t={get:_.bind(this,s),set:e.bind(this,s)};Object.defineProperty(this.options,s,t)}}_sanitizeAndValidateOption(_,e){switch(_){case"cursorStyle":if(e||(e=r.DEFAULT_OPTIONS[_]),!function(s){return s==="block"||s==="underline"||s==="bar"}(e))throw new Error(`"${e}" is not a valid value for ${_}`);break;case"wordSeparator":e||(e=r.DEFAULT_OPTIONS[_]);break;case"fontWeight":case"fontWeightBold":if(typeof e=="number"&&1<=e&&e<=1e3)break;e=d.includes(e)?e:r.DEFAULT_OPTIONS[_];break;case"cursorWidth":e=Math.floor(e);case"lineHeight":case"tabStopWidth":if(e<1)throw new Error(`${_} cannot be less than 1, value: ${e}`);break;case"minimumContrastRatio":e=Math.max(1,Math.min(21,Math.round(10*e)/10));break;case"scrollback":if((e=Math.min(e,4294967295))<0)throw new Error(`${_} cannot be less than 0, value: ${e}`);break;case"fastScrollSensitivity":case"scrollSensitivity":if(e<=0)throw new Error(`${_} cannot be less than or equal to 0, value: ${e}`);break;case"rows":case"cols":if(!e&&e!==0)throw new Error(`${_} must be numeric, value: ${e}`);break;case"windowsPty":e=e??{}}return e}}r.OptionsService=f},2660:function(I,r,a){var l=this&&this.__decorate||function(f,p,_,e){var s,t=arguments.length,i=t<3?p:e===null?e=Object.getOwnPropertyDescriptor(p,_):e;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(f,p,_,e);else for(var o=f.length-1;o>=0;o--)(s=f[o])&&(i=(t<3?s(i):t>3?s(p,_,i):s(p,_))||i);return t>3&&i&&Object.defineProperty(p,_,i),i},u=this&&this.__param||function(f,p){return function(_,e){p(_,e,f)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OscLinkService=void 0;const n=a(2585);let d=r.OscLinkService=class{constructor(f){this._bufferService=f,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(f){const p=this._bufferService.buffer;if(f.id===void 0){const o=p.addMarker(p.ybase+p.y),c={data:f,id:this._nextId++,lines:[o]};return o.onDispose(()=>this._removeMarkerFromLink(c,o)),this._dataByLinkId.set(c.id,c),c.id}const _=f,e=this._getEntryIdKey(_),s=this._entriesWithId.get(e);if(s)return this.addLineToLink(s.id,p.ybase+p.y),s.id;const t=p.addMarker(p.ybase+p.y),i={id:this._nextId++,key:this._getEntryIdKey(_),data:_,lines:[t]};return t.onDispose(()=>this._removeMarkerFromLink(i,t)),this._entriesWithId.set(i.key,i),this._dataByLinkId.set(i.id,i),i.id}addLineToLink(f,p){const _=this._dataByLinkId.get(f);if(_&&_.lines.every(e=>e.line!==p)){const e=this._bufferService.buffer.addMarker(p);_.lines.push(e),e.onDispose(()=>this._removeMarkerFromLink(_,e))}}getLinkData(f){var p;return(p=this._dataByLinkId.get(f))===null||p===void 0?void 0:p.data}_getEntryIdKey(f){return`${f.id};;${f.uri}`}_removeMarkerFromLink(f,p){const _=f.lines.indexOf(p);_!==-1&&(f.lines.splice(_,1),f.lines.length===0&&(f.data.id!==void 0&&this._entriesWithId.delete(f.key),this._dataByLinkId.delete(f.id)))}};r.OscLinkService=d=l([u(0,n.IBufferService)],d)},8343:(I,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.createDecorator=r.getServiceDependencies=r.serviceRegistry=void 0;const a="di$target",l="di$dependencies";r.serviceRegistry=new Map,r.getServiceDependencies=function(u){return u[l]||[]},r.createDecorator=function(u){if(r.serviceRegistry.has(u))return r.serviceRegistry.get(u);const n=function(d,f,p){if(arguments.length!==3)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");(function(_,e,s){e[a]===e?e[l].push({id:_,index:s}):(e[l]=[{id:_,index:s}],e[a]=e)})(n,d,p)};return n.toString=()=>u,r.serviceRegistry.set(u,n),n}},2585:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.IDecorationService=r.IUnicodeService=r.IOscLinkService=r.IOptionsService=r.ILogService=r.LogLevelEnum=r.IInstantiationService=r.ICharsetService=r.ICoreService=r.ICoreMouseService=r.IBufferService=void 0;const l=a(8343);var u;r.IBufferService=(0,l.createDecorator)("BufferService"),r.ICoreMouseService=(0,l.createDecorator)("CoreMouseService"),r.ICoreService=(0,l.createDecorator)("CoreService"),r.ICharsetService=(0,l.createDecorator)("CharsetService"),r.IInstantiationService=(0,l.createDecorator)("InstantiationService"),function(n){n[n.TRACE=0]="TRACE",n[n.DEBUG=1]="DEBUG",n[n.INFO=2]="INFO",n[n.WARN=3]="WARN",n[n.ERROR=4]="ERROR",n[n.OFF=5]="OFF"}(u||(r.LogLevelEnum=u={})),r.ILogService=(0,l.createDecorator)("LogService"),r.IOptionsService=(0,l.createDecorator)("OptionsService"),r.IOscLinkService=(0,l.createDecorator)("OscLinkService"),r.IUnicodeService=(0,l.createDecorator)("UnicodeService"),r.IDecorationService=(0,l.createDecorator)("DecorationService")},1480:(I,r,a)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeService=void 0;const l=a(8460),u=a(225);r.UnicodeService=class{constructor(){this._providers=Object.create(null),this._active="",this._onChange=new l.EventEmitter,this.onChange=this._onChange.event;const n=new u.UnicodeV6;this.register(n),this._active=n.version,this._activeProvider=n}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(n){if(!this._providers[n])throw new Error(`unknown Unicode version "${n}"`);this._active=n,this._activeProvider=this._providers[n],this._onChange.fire(n)}register(n){this._providers[n.version]=n}wcwidth(n){return this._activeProvider.wcwidth(n)}getStringCellWidth(n){let d=0;const f=n.length;for(let p=0;p=f)return d+this.wcwidth(_);const e=n.charCodeAt(p);56320<=e&&e<=57343?_=1024*(_-55296)+e-56320+65536:d+=this.wcwidth(e)}d+=this.wcwidth(_)}return d}}}},re={};function J(I){var r=re[I];if(r!==void 0)return r.exports;var a=re[I]={exports:{}};return oe[I].call(a.exports,a,a.exports,J),a.exports}var ue={};return(()=>{var I=ue;Object.defineProperty(I,"__esModule",{value:!0}),I.Terminal=void 0;const r=J(9042),a=J(3236),l=J(844),u=J(5741),n=J(8285),d=J(7975),f=J(7090),p=["cols","rows"];class _ extends l.Disposable{constructor(s){super(),this._core=this.register(new a.Terminal(s)),this._addonManager=this.register(new u.AddonManager),this._publicOptions=Object.assign({},this._core.options);const t=o=>this._core.options[o],i=(o,c)=>{this._checkReadonlyOptions(o),this._core.options[o]=c};for(const o in this._core.options){const c={get:t.bind(this,o),set:i.bind(this,o)};Object.defineProperty(this._publicOptions,o,c)}}_checkReadonlyOptions(s){if(p.includes(s))throw new Error(`Option "${s}" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw new Error("You must set the allowProposedApi option to true to use proposed API")}get onBell(){return this._core.onBell}get onBinary(){return this._core.onBinary}get onCursorMove(){return this._core.onCursorMove}get onData(){return this._core.onData}get onKey(){return this._core.onKey}get onLineFeed(){return this._core.onLineFeed}get onRender(){return this._core.onRender}get onResize(){return this._core.onResize}get onScroll(){return this._core.onScroll}get onSelectionChange(){return this._core.onSelectionChange}get onTitleChange(){return this._core.onTitleChange}get onWriteParsed(){return this._core.onWriteParsed}get element(){return this._core.element}get parser(){return this._parser||(this._parser=new d.ParserApi(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new f.UnicodeApi(this._core)}get textarea(){return this._core.textarea}get rows(){return this._core.rows}get cols(){return this._core.cols}get buffer(){return this._buffer||(this._buffer=this.register(new n.BufferNamespaceApi(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){const s=this._core.coreService.decPrivateModes;let t="none";switch(this._core.coreMouseService.activeProtocol){case"X10":t="x10";break;case"VT200":t="vt200";break;case"DRAG":t="drag";break;case"ANY":t="any"}return{applicationCursorKeysMode:s.applicationCursorKeys,applicationKeypadMode:s.applicationKeypad,bracketedPasteMode:s.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:t,originMode:s.origin,reverseWraparoundMode:s.reverseWraparound,sendFocusMode:s.sendFocus,wraparoundMode:s.wraparound}}get options(){return this._publicOptions}set options(s){for(const t in s)this._publicOptions[t]=s[t]}blur(){this._core.blur()}focus(){this._core.focus()}resize(s,t){this._verifyIntegers(s,t),this._core.resize(s,t)}open(s){this._core.open(s)}attachCustomKeyEventHandler(s){this._core.attachCustomKeyEventHandler(s)}registerLinkProvider(s){return this._core.registerLinkProvider(s)}registerCharacterJoiner(s){return this._checkProposedApi(),this._core.registerCharacterJoiner(s)}deregisterCharacterJoiner(s){this._checkProposedApi(),this._core.deregisterCharacterJoiner(s)}registerMarker(s=0){return this._verifyIntegers(s),this._core.registerMarker(s)}registerDecoration(s){var t,i,o;return this._checkProposedApi(),this._verifyPositiveIntegers((t=s.x)!==null&&t!==void 0?t:0,(i=s.width)!==null&&i!==void 0?i:0,(o=s.height)!==null&&o!==void 0?o:0),this._core.registerDecoration(s)}hasSelection(){return this._core.hasSelection()}select(s,t,i){this._verifyIntegers(s,t,i),this._core.select(s,t,i)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(s,t){this._verifyIntegers(s,t),this._core.selectLines(s,t)}dispose(){super.dispose()}scrollLines(s){this._verifyIntegers(s),this._core.scrollLines(s)}scrollPages(s){this._verifyIntegers(s),this._core.scrollPages(s)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(s){this._verifyIntegers(s),this._core.scrollToLine(s)}clear(){this._core.clear()}write(s,t){this._core.write(s,t)}writeln(s,t){this._core.write(s),this._core.write(`\r +`,t)}paste(s){this._core.paste(s)}refresh(s,t){this._verifyIntegers(s,t),this._core.refresh(s,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(s){this._addonManager.loadAddon(this,s)}static get strings(){return r}_verifyIntegers(...s){for(const t of s)if(t===1/0||isNaN(t)||t%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...s){for(const t of s)if(t&&(t===1/0||isNaN(t)||t%1!=0||t<0))throw new Error("This API only accepts positive integers")}}I.Terminal=_})(),ue})())})(fe);var be=fe.exports;const ye={style:{width:"100%",height:"100%","background-color":"#fff",padding:"16px","border-radius":"10px"}},we=Ce("div",{id:"terminal",style:{}},null,-1),Ee=[we],ke={name:"ConsolePage",components:{},data(){return{term:null}},mounted(){this.term=new be.Terminal({rows:35,cols:100,theme:{foreground:"#000",background:"#ffffff"}}),this.term.open(document.getElementById("terminal")),this.term.write(`AstrBot Console By xterm && Soulter +`),this.term.write(`🚧 施工中 🚧 +`),this.term.write(`此 Console 暂时不可用。 +`)},methods:{}},De=Object.assign(ke,{setup(_e){return(ge,oe)=>(me(),Se("div",ye,Ee))}});export{De as default}; diff --git a/addons/dashboard/dist/assets/DefaultDashboard-b70e2279.js b/addons/dashboard/dist/assets/DefaultDashboard-f7afff9c.js similarity index 99% rename from addons/dashboard/dist/assets/DefaultDashboard-b70e2279.js rename to addons/dashboard/dist/assets/DefaultDashboard-f7afff9c.js index 7106c79fa..b0c1b32dc 100644 --- a/addons/dashboard/dist/assets/DefaultDashboard-b70e2279.js +++ b/addons/dashboard/dist/assets/DefaultDashboard-f7afff9c.js @@ -1 +1 @@ -import{y as P,p as u,o as _,c as f,w as e,a as t,L as w,b as a,d as p,j as $,Z as I,q as z,_ as F,z as S,s as M,F as D,u as j,n as x,r as N,l as V,e as y,t as h,J as b,$ as U,D as W,a0 as C,a1 as G,a2 as O,a3 as H,a4 as L,V as k,f as m,G as X,a5 as q,R as A}from"./index-ffe5e9b0.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";const E={class:"d-flex align-start mb-6"},J={class:"ml-auto z-1"},Y={class:"text-h1 font-weight-medium"},Z=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),K={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.message_total=s.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},Q=Object.assign(K,{setup(s){const o=P([{title:"移除",icon:U}]);return(d,c)=>{const l=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",E,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),a("div",J,[t(I,{"close-on-content-click":!1},{activator:e(({props:r})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},r),{default:e(()=>[t(l,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),M(D,null,j(o.value,(r,n)=>(_(),f(x,{key:n,value:n},{prepend:e(()=>[(_(),f(N(r.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(r.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),a("h2",Y,h(d.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.session_total=s.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(s){const o=W("1"),d=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},l=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),r={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(n,i)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",et,[t(G,{modelValue:o.value,"onUpdate:modelValue":i[0]||(i[0]=v=>o.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(O,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(O,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(H,{modelValue:o.value,"onUpdate:modelValue":i[1]||(i[1]=v=>o.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[a("h2",at,h(n.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:d.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[a("h2",ot,h(n.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:l.value,series:r.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.memory=s.sys_perf.memory,this.runtime_str=s.sys_start_time;let d=new Date().getTime(),c=new Date(s.sys_start_time*1e3).getTime(),l=d-c,r=Math.floor(l/(24*3600*1e3)),n=l%(24*3600*1e3),i=Math.floor(n/(3600*1e3)),g=n%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),R=Math.round(T/1e3);this.runtime_str=r+"天"+i+"小时"+v+"分"+R+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(s,o,d,c,l,r){return _(),M(D,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),a("div",null,[a("h4",ct,h(s.runtime_str),1),ut]),t(X),a("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[a("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",_t,h(s.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=B(rt,[["render",ft]]),bt=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(s,o){let d=[],c=[];for(let l=0;l{const c=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,a("h3",gt,h(o.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(q,{color:"primary",variant:"outlined","hide-details":"",modelValue:o.select,"onUpdate:modelValue":d[0]||(d[0]=l=>o.select=l),items:o.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),a("div",vt,[t(c,{type:"bar",height:"280",options:o.chartOptions1,series:o.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Mt={class:"text-center mt-3"},Dt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.platforms=s.platform},deep:!0}},data:()=>({platforms:[]}),mounted(){}},Ot=Object.assign(Dt,{setup(s){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(o,d)=>{const c=u("DotsIcon"),l=u("perfect-scrollbar"),r=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",xt,[$t,a("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:n})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},n),{default:e(()=>[t(c,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",kt,[t(l,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),M(D,null,j(o.platforms,(n,i)=>(_(),f(x,{key:i,value:n,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Tt,[a("div",null,[a("h6",St,h(n.name),1)]),a("div",Ct,h(n.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Mt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(r,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:Q,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Ot},data:()=>({stat:{}}),mounted(){A.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,o,d,c,l,r){const n=u("TotalMessage"),i=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(n,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(i,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const jt=B(Lt,[["render",It]]);export{jt as default}; +import{y as P,p as u,o as _,c as f,w as e,a as t,L as w,b as a,d as p,j as $,Z as I,q as z,_ as F,z as S,s as M,F as D,u as j,n as x,r as N,l as V,e as y,t as h,J as b,$ as U,D as W,a0 as C,a1 as G,a2 as O,a3 as H,a4 as L,V as k,f as m,G as X,a5 as q,R as A}from"./index-7c8bc001.js";import{_ as B}from"./_plugin-vue_export-helper-c27b6911.js";const E={class:"d-flex align-start mb-6"},J={class:"ml-auto z-1"},Y={class:"text-h1 font-weight-medium"},Z=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"消息总数",-1),K={name:"TotalMessage",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.message_total=s.message_total},deep:!0}},data:()=>({message_total:0}),mounted(){}},Q=Object.assign(K,{setup(s){const o=P([{title:"移除",icon:U}]);return(d,c)=>{const l=u("DotsIcon");return _(),f(b,{elevation:"0",class:"bg-secondary overflow-hidden bubble-shape bubble-secondary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",E,[t(p,{icon:"",rounded:"sm",color:"darksecondary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-message"})]),_:1}),a("div",J,[t(I,{"close-on-content-click":!1},{activator:e(({props:r})=>[t(p,z({icon:"",rounded:"sm",color:"secondary",variant:"flat",size:"small"},r),{default:e(()=>[t(l,{"stroke-width":"1.5",width:"20"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,{density:"compact"},{default:e(()=>[(_(!0),M(D,null,j(o.value,(r,n)=>(_(),f(x,{key:n,value:n},{prepend:e(()=>[(_(),f(N(r.icon),{"stroke-width":"1.5",size:"20"}))]),default:e(()=>[t(V,{class:"ml-2"},{default:e(()=>[y(h(r.title),1)]),_:2},1024)]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1})])]),a("h2",Y,h(d.message_total),1),Z]),_:1})]),_:1})}}}),tt={class:"d-flex align-start mb-3"},et={class:"ml-auto z-1"},at={class:"text-h1 font-weight-medium"},st=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),ot={class:"text-h1 font-weight-medium"},lt=a("span",{class:"text-subtitle-1 text-medium-emphasis text-white"},"会话总数",-1),nt={name:"TotalSession",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.session_total=s.session_total},deep:!0}},data:()=>({session_total:0}),mounted(){}},it=Object.assign(nt,{setup(s){const o=W("1"),d=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),c={series:[{name:"series1",data:[45,66,41,89,25,44,9,54]}]},l=C(()=>({chart:{type:"bar",height:90,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},dataLabels:{enabled:!1},colors:["#fff"],fill:{type:"solid",opacity:1},stroke:{curve:"smooth",width:3},yaxis:{min:0,max:100},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"会话总数"}},marker:{show:!1}}})),r={series:[{name:"series1",data:[35,44,9,54,45,66,41,69]}]};return(n,i)=>{const g=u("apexchart");return _(),f(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape bubble-primary-shape"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",tt,[t(p,{icon:"",rounded:"sm",color:"darkprimary",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-account-multiple-outline"})]),_:1}),a("div",et,[t(G,{modelValue:o.value,"onUpdate:modelValue":i[0]||(i[0]=v=>o.value=v),class:"theme-tab",density:"compact",end:""},{default:e(()=>[t(O,{value:"1","hide-slider":"",color:"transparent"},{default:e(()=>[y("按日")]),_:1}),t(O,{value:"2","hide-slider":"",color:"transparent"},{default:e(()=>[y("按月")]),_:1})]),_:1},8,["modelValue"])])]),t(H,{modelValue:o.value,"onUpdate:modelValue":i[1]||(i[1]=v=>o.value=v),class:"z-1"},{default:e(()=>[t(L,{value:"1"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[a("h2",at,h(n.session_total),1),st]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:d.value,series:c.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1}),t(L,{value:"2"},{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"6"},{default:e(()=>[a("h2",ot,h(n.session_total),1),lt]),_:1}),t(m,{cols:"6"},{default:e(()=>[t(g,{type:"line",height:"90",options:l.value,series:r.series},null,8,["options","series"])]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})}}}),rt={name:"OnlineTime",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.memory=s.sys_perf.memory,this.runtime_str=s.sys_start_time;let d=new Date().getTime(),c=new Date(s.sys_start_time*1e3).getTime(),l=d-c,r=Math.floor(l/(24*3600*1e3)),n=l%(24*3600*1e3),i=Math.floor(n/(3600*1e3)),g=n%(3600*1e3),v=Math.floor(g/(60*1e3)),T=g%(60*1e3),R=Math.round(T/1e3);this.runtime_str=r+"天"+i+"小时"+v+"分"+R+"秒"},deep:!0}},data:()=>({_stat:{},memory:"Loading",runtime_str:"Loading"}),mounted(){}},dt={class:"d-flex align-center gap-3"},ct={class:"text-h4 font-weight-medium"},ut=a("span",{class:"text-subtitle-2 text-medium-emphasis text-white"},"运行时间",-1),mt={class:"d-flex align-center gap-3"},_t={class:"text-h4 font-weight-medium"},ht=a("span",{class:"text-subtitle-2 text-disabled font-weight-medium"},"占用内存",-1);function ft(s,o,d,c,l,r){return _(),M(D,null,[t(b,{elevation:"0",class:"bg-primary overflow-hidden bubble-shape-sm bubble-primary mb-6"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[a("div",dt,[t(p,{color:"darkprimary",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-clock"})]),_:1}),a("div",null,[a("h4",ct,h(s.runtime_str),1),ut]),t(X),a("div",null,[t(p,{icon:"",rounded:"sm",variant:"plain"},{default:e(()=>[t($,{color:"black",icon:"mdi-stop",size:"32"})]),_:1})])])]),_:1})]),_:1}),t(b,{elevation:"0",class:"bubble-shape-sm overflow-hidden bubble-warning"},{default:e(()=>[t(w,{class:"pa-5"},{default:e(()=>[a("div",mt,[t(p,{color:"lightwarning",icon:"",rounded:"sm",variant:"flat"},{default:e(()=>[t($,{icon:"mdi-memory"})]),_:1}),a("div",null,[a("h4",_t,h(s.memory)+" MiB",1),ht])])]),_:1})]),_:1})],64)}const pt=B(rt,[["render",ft]]),bt=a("span",{class:"text-subtitle-2 text-disabled font-weight-bold"},"上行消息总趋势",-1),gt={class:"text-h3 mt-1"},vt={class:"mt-4"},yt={name:"MessageStat",components:{},props:["stat"],data:()=>({total_cnt:0,select:{state:"Today",abbr:"FL"},items:[{state:"过去 24 小时",abbr:"FL"},{state:"更多维度待开发喵!",abbr:"GA"}],chartOptions1:{chart:{type:"bar",height:400,fontFamily:"inherit",foreColor:"#a1aab2",stacked:!0},colors:["#1e88e5","#5e35b1","#ede7f6"],responsive:[{breakpoint:400,options:{legend:{position:"bottom",offsetX:-10,offsetY:0}}}],plotOptions:{bar:{horizontal:!1,columnWidth:"50%"}},xaxis:{type:"category",categories:[]},legend:{show:!0,fontFamily:"'Roboto', sans-serif",position:"bottom",offsetX:20,labels:{useSeriesColors:!1},markers:{width:16,height:16,radius:5},itemMargin:{horizontal:15,vertical:8}},fill:{type:"solid"},dataLabels:{enabled:!1},grid:{show:!0},tooltip:{theme:"dark"}},lineChart1:{series:[{name:"消息条数",data:[]}]}}),watch:{stat:{handler:function(s,o){let d=[],c=[];for(let l=0;l{const c=u("apexchart");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[t(k,null,{default:e(()=>[t(m,{cols:"12",sm:"9"},{default:e(()=>[bt,a("h3",gt,h(o.total_cnt),1)]),_:1}),t(m,{cols:"12",sm:"3"},{default:e(()=>[t(q,{color:"primary",variant:"outlined","hide-details":"",modelValue:o.select,"onUpdate:modelValue":d[0]||(d[0]=l=>o.select=l),items:o.items,"item-title":"state","item-value":"abbr",label:"Select","persistent-hint":"","return-object":"","single-line":""},null,8,["modelValue","items"])]),_:1})]),_:1}),a("div",vt,[t(c,{type:"bar",height:"280",options:o.chartOptions1,series:o.lineChart1.series,ref:"rtchart"},null,8,["options","series"])])]),_:1})]),_:1})]),_:1})}}}),xt={class:"d-flex align-center"},$t=a("h4",{class:"text-h4 mt-1"},"各平台上行消息数",-1),Vt={class:"ml-auto"},kt={class:"mt-4"},Tt={class:"d-inline-flex align-center justify-space-between w-100"},St={class:"text-subtitle-1 text-medium-emphasis font-weight-bold"},Ct={class:"ml-auto text-subtitle-1 text-medium-emphasis font-weight-bold"},Mt={class:"text-center mt-3"},Dt={name:"PlatformStat",components:{},props:["stat"],watch:{stat:{handler:function(s,o){this.platforms=s.platform},deep:!0}},data:()=>({platforms:[]}),mounted(){}},Ot=Object.assign(Dt,{setup(s){return C(()=>({chart:{type:"area",height:95,fontFamily:"inherit",foreColor:"#a1aab2",sparkline:{enabled:!0}},colors:["#5e35b1"],dataLabels:{enabled:!1},stroke:{curve:"smooth",width:1},tooltip:{theme:"dark",fixed:{enabled:!1},x:{show:!1},y:{title:{formatter:()=>"消息条数 "}},marker:{show:!1}}})),(o,d)=>{const c=u("DotsIcon"),l=u("perfect-scrollbar"),r=u("ChevronRightIcon");return _(),f(b,{elevation:"0"},{default:e(()=>[t(b,{variant:"outlined"},{default:e(()=>[t(w,null,{default:e(()=>[a("div",xt,[$t,a("div",Vt,[t(I,{transition:"slide-y-transition"},{activator:e(({props:n})=>[t(p,z({color:"primary",size:"small",icon:"",rounded:"sm",variant:"text"},n),{default:e(()=>[t(c,{"stroke-width":"1.5",width:"25"})]),_:2},1040)]),default:e(()=>[t(F,{rounded:"md",width:"150",class:"elevation-10"},{default:e(()=>[t(S,null,{default:e(()=>[t(x,{value:"1"},{default:e(()=>[t(V,null,{default:e(()=>[y("今天")]),_:1})]),_:1}),t(x,{value:"2"},{default:e(()=>[t(V,null,{default:e(()=>[y("今月")]),_:1})]),_:1}),t(x,{value:"3"},{default:e(()=>[t(V,null,{default:e(()=>[y("今年")]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),a("div",kt,[t(l,{style:{height:"270px"}},{default:e(()=>[t(S,{lines:"two",class:"py-0"},{default:e(()=>[(_(!0),M(D,null,j(o.platforms,(n,i)=>(_(),f(x,{key:i,value:n,color:"secondary",rounded:"sm"},{default:e(()=>[a("div",Tt,[a("div",null,[a("h6",St,h(n.name),1)]),a("div",Ct,h(n.count)+" 条",1)])]),_:2},1032,["value"]))),128))]),_:1})]),_:1}),a("div",Mt,[t(p,{color:"primary",variant:"text"},{append:e(()=>[t(r,{"stroke-width":"1.5",width:"20"})]),default:e(()=>[y("详情 ")]),_:1})])])]),_:1})]),_:1})]),_:1})}}}),Lt={name:"DefaultDashboard",components:{TotalMessage:Q,TotalSession:it,OnlineTime:pt,MessageStat:wt,PlatformStat:Ot},data:()=>({stat:{}}),mounted(){A.get("/api/stats").then(s=>{console.log("stat",s.data.data),this.stat=s.data.data})}};function It(s,o,d,c,l,r){const n=u("TotalMessage"),i=u("TotalSession"),g=u("OnlineTime"),v=u("MessageStat"),T=u("PlatformStat");return _(),f(k,null,{default:e(()=>[t(m,{cols:"12",md:"4"},{default:e(()=>[t(n,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(i,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",md:"4"},{default:e(()=>[t(g,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"8"},{default:e(()=>[t(v,{stat:s.stat},null,8,["stat"])]),_:1}),t(m,{cols:"12",lg:"4"},{default:e(()=>[t(T,{stat:s.stat},null,8,["stat"])]),_:1})]),_:1})}const jt=B(Lt,[["render",It]]);export{jt as default}; diff --git a/addons/dashboard/dist/assets/Error404Page-1f0e3199.js b/addons/dashboard/dist/assets/Error404Page-e144fe8e.js similarity index 94% rename from addons/dashboard/dist/assets/Error404Page-1f0e3199.js rename to addons/dashboard/dist/assets/Error404Page-e144fe8e.js index 9c3e44632..1fce4aa8f 100644 --- a/addons/dashboard/dist/assets/Error404Page-1f0e3199.js +++ b/addons/dashboard/dist/assets/Error404Page-e144fe8e.js @@ -1 +1 @@ -import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-ffe5e9b0.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; +import{_ as t}from"./_plugin-vue_export-helper-c27b6911.js";import{o,c,w as s,V as i,a as r,b as e,d as l,e as a,f as d}from"./index-7c8bc001.js";const n="/assets/img-error-bg-ab6474a0.svg",_="/assets/img-error-blue-2675a7a9.svg",m="/assets/img-error-text-a6aebfa0.svg",g="/assets/img-error-purple-edee3fbc.svg";const p={},u={class:"text-center"},f=e("div",{class:"CardMediaWrapper"},[e("img",{src:n,alt:"grid",class:"w-100"}),e("img",{src:_,alt:"grid",class:"CardMediaParts"}),e("img",{src:m,alt:"build",class:"CardMediaBuild"}),e("img",{src:g,alt:"build",class:"CardMediaBuild"})],-1),h=e("h1",{class:"text-h1"},"Something is wrong",-1),v=e("p",null,[e("small",null,[a("The page you are looking was moved, removed, "),e("br"),a("renamed, or might never exist! ")])],-1);function x(b,V){return o(),c(i,{"no-gutters":"",class:"h-100vh"},{default:s(()=>[r(d,{class:"d-flex align-center justify-center"},{default:s(()=>[e("div",u,[f,h,v,r(l,{variant:"flat",color:"primary",class:"mt-4",to:"/","prepend-icon":"mdi-home"},{default:s(()=>[a(" Home")]),_:1})])]),_:1})]),_:1})}const C=t(p,[["render",x]]);export{C as default}; diff --git a/addons/dashboard/dist/assets/ExtensionPage-e262e5bf.js b/addons/dashboard/dist/assets/ExtensionPage-fc6b100e.js similarity index 98% rename from addons/dashboard/dist/assets/ExtensionPage-e262e5bf.js rename to addons/dashboard/dist/assets/ExtensionPage-fc6b100e.js index de705be52..b647f9c74 100644 --- a/addons/dashboard/dist/assets/ExtensionPage-e262e5bf.js +++ b/addons/dashboard/dist/assets/ExtensionPage-fc6b100e.js @@ -1 +1 @@ -import{x as b,o as d,c as h,w as e,a,a6 as C,b as i,K as x,e as o,t as u,G as m,d as r,A as E,L as V,a7 as y,J as w,s as p,f as c,F as f,u as $,V as k,q as S,N as B,O as N,P as T,H as j,a8 as D,R as g,j as F}from"./index-ffe5e9b0.js";const G={class:"d-sm-flex align-center justify-space-between"},v=b({__name:"ExtensionCard",props:{title:String,link:String},setup(n){const s=n,l=t=>{window.open(t,"_blank")};return(t,_)=>(d(),h(w,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(C,{style:{padding:"10px 20px"}},{default:e(()=>[i("div",G,[a(x,null,{default:e(()=>[o(u(s.title),1)]),_:1}),a(m),a(r,{icon:"mdi-link",variant:"plain",onClick:_[0]||(_[0]=z=>l(s.link))})])]),_:1}),a(E),a(V,null,{default:e(()=>[y(t.$slots,"default")]),_:3})]),_:3}))}}),P=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 已安装的插件")],-1),U={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},q={class:"d-flex align-center gap-3"},A=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 插件市场 [待开发]")],-1),I=i("span",{class:"text-h5"},"从 Git 仓库链接安装插件",-1),L=i("small",null,"github, gitee, gitlab 等公开的仓库都行。",-1),O=i("br",null,null,-1),R={name:"ExtensionPage",components:{ExtensionCard:v},data(){return{extension_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:"",extension_url:"",status:"",dialog:!1,snack_message:"",snack_show:!1,snack_success:"success",install_loading:!1,uninstall_loading:!1}},mounted(){this.getExtensions()},methods:{getExtensions(){g.get("/api/extensions").then(n=>{this.extension_data.data=n.data.data,console.log(this.extension_data)})},newExtension(){this.install_loading=!0,console.log(this.install_loading),g.post("/api/extensions/install",{url:this.extension_url}).then(n=>{if(this.install_loading=!1,n.data.status==="error"){this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=n.data.data,console.log(this.extension_data),this.extension_url="",this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(n=>{this.install_loading=!1,this.snack_message=n,this.snack_show=!0,this.snack_success="error"})},uninstallExtension(n){this.uninstall_loading=!0,g.post("/api/extensions/uninstall",{name:n}).then(s=>{if(this.uninstall_loading=!1,s.data.status==="error"){this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=s.data.data,console.log(this.extension_data),this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(s=>{this.uninstall_loading=!1,this.snack_message=s,this.snack_show=!0,this.snack_success="error"})}}},J=Object.assign(R,{setup(n){return(s,l)=>(d(),p(f,null,[a(k,null,{default:e(()=>[a(c,{cols:"12",md:"12"},{default:e(()=>[P]),_:1}),(d(!0),p(f,null,$(s.extension_data.data,t=>(d(),h(c,{cols:"12",md:"6",lg:"4"},{default:e(()=>[(d(),h(v,{key:t.name,title:t.name,link:t.repo,style:{"margin-bottom":"16px"}},{default:e(()=>[i("p",U,u(t.desc),1),i("div",q,[a(F,null,{default:e(()=>[o("mdi-account")]),_:1}),i("span",null,u(t.author),1),a(m),a(r,{variant:"plain",onClick:_=>s.uninstallExtension(t.name),loading:s.uninstall_loading},{default:e(()=>[o("卸 载")]),_:2},1032,["onClick","loading"])])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),a(c,{cols:"12",md:"12"},{default:e(()=>[A]),_:1})]),_:1}),a(j,{modelValue:s.dialog,"onUpdate:modelValue":l[3]||(l[3]=t=>s.dialog=t),persistent:"",width:"700"},{activator:e(({props:t})=>[a(r,S(t,{icon:"mdi-plus",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary"}),null,16)]),default:e(()=>[a(w,null,{default:e(()=>[a(x,null,{default:e(()=>[I]),_:1}),a(V,null,{default:e(()=>[a(B,null,{default:e(()=>[a(k,null,{default:e(()=>[a(c,{cols:"12"},{default:e(()=>[a(N,{label:"Git 库链接",modelValue:s.extension_url,"onUpdate:modelValue":l[0]||(l[0]=t=>s.extension_url=t),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),L,O,i("small",null,u(s.status),1)]),_:1}),a(T,null,{default:e(()=>[a(m),a(r,{color:"blue-darken-1",variant:"text",onClick:l[1]||(l[1]=t=>s.dialog=!1)},{default:e(()=>[o(" 关闭 ")]),_:1}),a(r,{color:"blue-darken-1",variant:"text",loading:s.install_loading,onClick:l[2]||(l[2]=t=>s.newExtension(s.extension_url))},{default:e(()=>[o(" 安装 ")]),_:1},8,["loading"])]),_:1})]),_:1})]),_:1},8,["modelValue"]),a(D,{timeout:2e3,elevation:"24",color:s.snack_success,modelValue:s.snack_show,"onUpdate:modelValue":l[4]||(l[4]=t=>s.snack_show=t)},{default:e(()=>[o(u(s.snack_message),1)]),_:1},8,["color","modelValue"])],64))}});export{J as default}; +import{x as b,o as d,c as h,w as e,a,a6 as C,b as i,K as x,e as o,t as u,G as m,d as r,A as E,L as V,a7 as y,J as w,s as p,f as c,F as f,u as $,V as k,q as S,N as B,O as N,P as T,H as j,a8 as D,R as g,j as F}from"./index-7c8bc001.js";const G={class:"d-sm-flex align-center justify-space-between"},v=b({__name:"ExtensionCard",props:{title:String,link:String},setup(n){const s=n,l=t=>{window.open(t,"_blank")};return(t,_)=>(d(),h(w,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(C,{style:{padding:"10px 20px"}},{default:e(()=>[i("div",G,[a(x,null,{default:e(()=>[o(u(s.title),1)]),_:1}),a(m),a(r,{icon:"mdi-link",variant:"plain",onClick:_[0]||(_[0]=z=>l(s.link))})])]),_:1}),a(E),a(V,null,{default:e(()=>[y(t.$slots,"default")]),_:3})]),_:3}))}}),P=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 已安装的插件")],-1),U={style:{"min-height":"180px","max-height":"180px",overflow:"hidden"}},q={class:"d-flex align-center gap-3"},A=i("div",{style:{"background-color":"white",width:"100%",padding:"16px","border-radius":"10px"}},[i("h3",null,"🧩 插件市场 [待开发]")],-1),I=i("span",{class:"text-h5"},"从 Git 仓库链接安装插件",-1),L=i("small",null,"github, gitee, gitlab 等公开的仓库都行。",-1),O=i("br",null,null,-1),R={name:"ExtensionPage",components:{ExtensionCard:v},data(){return{extension_data:{data:[]},save_message_snack:!1,save_message:"",save_message_success:"",extension_url:"",status:"",dialog:!1,snack_message:"",snack_show:!1,snack_success:"success",install_loading:!1,uninstall_loading:!1}},mounted(){this.getExtensions()},methods:{getExtensions(){g.get("/api/extensions").then(n=>{this.extension_data.data=n.data.data,console.log(this.extension_data)})},newExtension(){this.install_loading=!0,console.log(this.install_loading),g.post("/api/extensions/install",{url:this.extension_url}).then(n=>{if(this.install_loading=!1,n.data.status==="error"){this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=n.data.data,console.log(this.extension_data),this.extension_url="",this.snack_message=n.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(n=>{this.install_loading=!1,this.snack_message=n,this.snack_show=!0,this.snack_success="error"})},uninstallExtension(n){this.uninstall_loading=!0,g.post("/api/extensions/uninstall",{name:n}).then(s=>{if(this.uninstall_loading=!1,s.data.status==="error"){this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="error";return}this.extension_data.data=s.data.data,console.log(this.extension_data),this.snack_message=s.data.message,this.snack_show=!0,this.snack_success="success",this.dialog=!1,this.getExtensions()}).catch(s=>{this.uninstall_loading=!1,this.snack_message=s,this.snack_show=!0,this.snack_success="error"})}}},J=Object.assign(R,{setup(n){return(s,l)=>(d(),p(f,null,[a(k,null,{default:e(()=>[a(c,{cols:"12",md:"12"},{default:e(()=>[P]),_:1}),(d(!0),p(f,null,$(s.extension_data.data,t=>(d(),h(c,{cols:"12",md:"6",lg:"4"},{default:e(()=>[(d(),h(v,{key:t.name,title:t.name,link:t.repo,style:{"margin-bottom":"16px"}},{default:e(()=>[i("p",U,u(t.desc),1),i("div",q,[a(F,null,{default:e(()=>[o("mdi-account")]),_:1}),i("span",null,u(t.author),1),a(m),a(r,{variant:"plain",onClick:_=>s.uninstallExtension(t.name),loading:s.uninstall_loading},{default:e(()=>[o("卸 载")]),_:2},1032,["onClick","loading"])])]),_:2},1032,["title","link"]))]),_:2},1024))),256)),a(c,{cols:"12",md:"12"},{default:e(()=>[A]),_:1})]),_:1}),a(j,{modelValue:s.dialog,"onUpdate:modelValue":l[3]||(l[3]=t=>s.dialog=t),persistent:"",width:"700"},{activator:e(({props:t})=>[a(r,S(t,{icon:"mdi-plus",size:"x-large",style:{position:"fixed",right:"52px",bottom:"52px"},color:"darkprimary"}),null,16)]),default:e(()=>[a(w,null,{default:e(()=>[a(x,null,{default:e(()=>[I]),_:1}),a(V,null,{default:e(()=>[a(B,null,{default:e(()=>[a(k,null,{default:e(()=>[a(c,{cols:"12"},{default:e(()=>[a(N,{label:"Git 库链接",modelValue:s.extension_url,"onUpdate:modelValue":l[0]||(l[0]=t=>s.extension_url=t),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),L,O,i("small",null,u(s.status),1)]),_:1}),a(T,null,{default:e(()=>[a(m),a(r,{color:"blue-darken-1",variant:"text",onClick:l[1]||(l[1]=t=>s.dialog=!1)},{default:e(()=>[o(" 关闭 ")]),_:1}),a(r,{color:"blue-darken-1",variant:"text",loading:s.install_loading,onClick:l[2]||(l[2]=t=>s.newExtension(s.extension_url))},{default:e(()=>[o(" 安装 ")]),_:1},8,["loading"])]),_:1})]),_:1})]),_:1},8,["modelValue"]),a(D,{timeout:2e3,elevation:"24",color:s.snack_success,modelValue:s.snack_show,"onUpdate:modelValue":l[4]||(l[4]=t=>s.snack_show=t)},{default:e(()=>[o(u(s.snack_message),1)]),_:1},8,["color","modelValue"])],64))}});export{J as default}; diff --git a/addons/dashboard/dist/assets/FullLayout-297dfa95.js b/addons/dashboard/dist/assets/FullLayout-b15267ed.js similarity index 97% rename from addons/dashboard/dist/assets/FullLayout-297dfa95.js rename to addons/dashboard/dist/assets/FullLayout-b15267ed.js index a32c468d6..a2f514e0d 100644 --- a/addons/dashboard/dist/assets/FullLayout-297dfa95.js +++ b/addons/dashboard/dist/assets/FullLayout-b15267ed.js @@ -1 +1 @@ -import{o as s,c as i,w as t,e as v,t as h,g as F,h as q,a as e,i as A,j as g,k as w,l as D,m as R,n as E,r as I,p as M,q as P,s as k,F as y,u as j,v as G,x as z,y as W,b as _,z as H,A as J,B as o,C as K,D as b,d as V,E as N,M as B,G as T,H as Q,I as C,J as X,K as Y,L as Z,N as O,V as ee,f as te,O as L,P as ae,Q as le,R as se,S as ie,T as ne,U as oe,W as re,X as ue,Y as de}from"./index-ffe5e9b0.js";import{_ as ce,u as S}from"./LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js";import{m as $}from"./md5-15332791.js";const me=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],fe={__name:"NavGroup",props:{item:Object},setup(a){const l=a;return(n,r)=>(s(),i(F,{color:"darkText",class:"smallCap"},{default:t(()=>[v(h(l.item.header),1)]),_:1}))}},U={__name:"NavItem",props:{item:Object,level:Number},setup(a){return(l,n)=>(s(),i(E,{to:a.item.type==="external"?"":a.item.to,href:a.item.type==="external"?a.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:a.item.disabled,target:a.item.type==="external"?"_blank":""},q({prepend:t(()=>[a.item.icon?(s(),i(g,{key:0,color:a.item.iconColor,size:a.item.iconSize,class:"hide-menu",icon:a.item.icon},null,8,["color","size","icon"])):w("",!0)]),default:t(()=>[e(D,null,{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},[a.item.chip?{name:"append",fn:t(()=>[e(A,{color:a.item.chipColor,class:"sidebarchip hide-menu",size:a.item.chipIcon?"small":"default",variant:a.item.chipVariant,"prepend-icon":a.item.chipIcon},{default:t(()=>[v(h(a.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},pe={__name:"IconSet",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>l.level>0?(s(),i(I(l.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(s(),i(I(l.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ve={__name:"NavCollapse",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>{const u=M("NavCollapse",!0);return s(),i(G,{"no-action":""},{activator:t(({props:f})=>[e(E,P(f,{value:a.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[e(pe,{item:a.item.icon,level:a.level},null,8,["item","level"])]),default:t(()=>[e(D,{class:"mr-auto"},{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},1040,["value"])]),default:t(()=>[(s(!0),k(y,null,j(a.item.children,(f,d)=>(s(),k(y,{key:d},[f.children?(s(),i(u,{key:0,item:f,level:l.level+1},null,8,["item","level"])):(s(),i(U,{key:1,item:f,level:l.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},he={__name:"LogoMain",setup(a){return(l,n)=>(s(),i(ce))}},_e={class:"pa-5"},Ve={class:"pa-4 text-center"},be=z({__name:"VerticalSidebar",setup(a){const l=S(),n=W(me);return(r,u)=>{const f=M("perfect-scrollbar");return s(),i(K,{left:"",modelValue:o(l).Sidebar_drawer,"onUpdate:modelValue":u[0]||(u[0]=d=>o(l).Sidebar_drawer=d),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:o(l).mini_sidebar,"expand-on-hover":""},{default:t(()=>[_("div",_e,[e(he)]),e(f,{class:"scrollnavbar"},{default:t(()=>[e(H,{class:"pa-4"},{default:t(()=>[(s(!0),k(y,null,j(n.value,(d,x)=>(s(),k(y,{key:x},[d.header?(s(),i(fe,{item:d,key:d.title},null,8,["item"])):d.divider?(s(),i(J,{key:1,class:"my-3"})):d.children?(s(),i(ve,{key:2,class:"leftPadding",item:d,level:0},null,8,["item"])):(s(),i(U,{key:3,item:d,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),_("div",Ve,[e(A,{color:"inputBorder",size:"small"},{default:t(()=>[v(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),Ce=_("span",{class:"text-h5"},"密码修改",-1),ke=_("small",null,"如果是第一次修改密码,原密码请留空。",-1),ye=_("br",null,null,-1),xe=z({__name:"VerticalHeader",setup(a){const l=S();b(!1);let n=b(!1),r=b(""),u=b(""),f=b("");const d=p=>{window.open(p,"_blank")};function x(){r.value!=""&&(r.value=$.md5(r.value)),u.value=$.md5(u.value),se.post("/api/change_password",{password:r.value,new_password:u.value}).then(p=>{if(p.data.status=="error"){f.value=p.data.message,r.value="",u.value="";return}n.value=!n.value,f.value=p.data.message,setTimeout(()=>{ie().logout()},1e3)}).catch(p=>{console.log(p),f.value=p,r.value="",u.value=""})}return(p,c)=>(s(),i(le,{elevation:"0",height:"80"},{default:t(()=>[e(V,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=N(m=>o(l).SET_MINI_SIDEBAR(!o(l).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1}),e(V,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:N(o(l).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),e(T),e(Q,{modelValue:o(n),"onUpdate:modelValue":c[4]||(c[4]=m=>C(n)?n.value=m:n=m),persistent:"",width:"700"},{activator:t(({props:m})=>[e(V,P({class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},m),{default:t(()=>[e(g,{icon:"mdi-account-edit",size:"25"})]),_:2},1040)]),default:t(()=>[e(X,null,{default:t(()=>[e(Y,null,{default:t(()=>[Ce]),_:1}),e(Z,null,{default:t(()=>[e(O,null,{default:t(()=>[e(ee,null,{default:t(()=>[e(te,{cols:"12"},{default:t(()=>[e(L,{label:"原密码*",type:"password",modelValue:o(r),"onUpdate:modelValue":c[1]||(c[1]=m=>C(r)?r.value=m:r=m),required:""},null,8,["modelValue"]),e(L,{label:"新密码*",type:"password",modelValue:o(u),"onUpdate:modelValue":c[2]||(c[2]=m=>C(u)?u.value=m:u=m),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),ke,ye,_("small",null,h(o(f)),1)]),_:1}),e(ae,null,{default:t(()=>[e(T),e(V,{color:"blue-darken-1",variant:"text",onClick:c[3]||(c[3]=m=>C(n)?n.value=!1:n=!1)},{default:t(()=>[v(" 关闭 ")]),_:1}),e(V,{color:"blue-darken-1",variant:"text",onClick:x},{default:t(()=>[v(" 提交 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(V,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",onClick:c[5]||(c[5]=m=>d("https://github.com/Soulter/AstrBot")),rounded:"pill"},{default:t(()=>[e(g,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),Se=z({__name:"FullLayout",setup(a){const l=S();return(n,r)=>(s(),i(de,null,{default:t(()=>[e(ne,{theme:"PurpleTheme",class:oe([o(l).fontTheme,o(l).mini_sidebar?"mini-sidebar":"",o(l).inputBg?"inputWithbg":""])},{default:t(()=>[e(be),e(xe),e(re,null,{default:t(()=>[e(O,{fluid:"",class:"page-wrapper"},{default:t(()=>[_("div",null,[e(o(ue))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{Se as default}; +import{o as s,c as i,w as t,e as v,t as h,g as F,h as q,a as e,i as A,j as g,k as w,l as D,m as R,n as E,r as I,p as M,q as P,s as k,F as y,u as j,v as G,x as z,y as W,b as _,z as H,A as J,B as o,C as K,D as b,d as V,E as N,M as B,G as T,H as Q,I as C,J as X,K as Y,L as Z,N as O,V as ee,f as te,O as L,P as ae,Q as le,R as se,S as ie,T as ne,U as oe,W as re,X as ue,Y as de}from"./index-7c8bc001.js";import{_ as ce,u as S}from"./LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js";import{m as $}from"./md5-c4ed0ff4.js";const me=[{title:"面板",icon:"mdi-view-dashboard",to:"/dashboard/default"},{title:"配置",icon:"mdi-cog",to:"/config"},{title:"插件",icon:"mdi-puzzle",to:"/extension"},{title:"控制台",icon:"mdi-console",to:"/console"}],fe={__name:"NavGroup",props:{item:Object},setup(a){const l=a;return(n,r)=>(s(),i(F,{color:"darkText",class:"smallCap"},{default:t(()=>[v(h(l.item.header),1)]),_:1}))}},U={__name:"NavItem",props:{item:Object,level:Number},setup(a){return(l,n)=>(s(),i(E,{to:a.item.type==="external"?"":a.item.to,href:a.item.type==="external"?a.item.to:"",rounded:"",class:"mb-1",color:"secondary",disabled:a.item.disabled,target:a.item.type==="external"?"_blank":""},q({prepend:t(()=>[a.item.icon?(s(),i(g,{key:0,color:a.item.iconColor,size:a.item.iconSize,class:"hide-menu",icon:a.item.icon},null,8,["color","size","icon"])):w("",!0)]),default:t(()=>[e(D,null,{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},[a.item.chip?{name:"append",fn:t(()=>[e(A,{color:a.item.chipColor,class:"sidebarchip hide-menu",size:a.item.chipIcon?"small":"default",variant:a.item.chipVariant,"prepend-icon":a.item.chipIcon},{default:t(()=>[v(h(a.item.chip),1)]),_:1},8,["color","size","variant","prepend-icon"])]),key:"0"}:void 0]),1032,["to","href","disabled","target"]))}},pe={__name:"IconSet",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>l.level>0?(s(),i(I(l.item),{key:0,size:"5",fill:"currentColor","stroke-width":"1.5",class:"iconClass"})):(s(),i(I(l.item),{key:1,size:"20","stroke-width":"1.5",class:"iconClass"}))}},ve={__name:"NavCollapse",props:{item:Object,level:Number},setup(a){const l=a;return(n,r)=>{const u=M("NavCollapse",!0);return s(),i(G,{"no-action":""},{activator:t(({props:f})=>[e(E,P(f,{value:a.item.title,rounded:"",class:"mb-1",color:"secondary"}),{prepend:t(()=>[e(pe,{item:a.item.icon,level:a.level},null,8,["item","level"])]),default:t(()=>[e(D,{class:"mr-auto"},{default:t(()=>[v(h(a.item.title),1)]),_:1}),a.item.subCaption?(s(),i(R,{key:0,class:"text-caption mt-n1 hide-menu"},{default:t(()=>[v(h(a.item.subCaption),1)]),_:1})):w("",!0)]),_:2},1040,["value"])]),default:t(()=>[(s(!0),k(y,null,j(a.item.children,(f,d)=>(s(),k(y,{key:d},[f.children?(s(),i(u,{key:0,item:f,level:l.level+1},null,8,["item","level"])):(s(),i(U,{key:1,item:f,level:l.level+1},null,8,["item","level"]))],64))),128))]),_:1})}}},he={__name:"LogoMain",setup(a){return(l,n)=>(s(),i(ce))}},_e={class:"pa-5"},Ve={class:"pa-4 text-center"},be=z({__name:"VerticalSidebar",setup(a){const l=S(),n=W(me);return(r,u)=>{const f=M("perfect-scrollbar");return s(),i(K,{left:"",modelValue:o(l).Sidebar_drawer,"onUpdate:modelValue":u[0]||(u[0]=d=>o(l).Sidebar_drawer=d),elevation:"0","rail-width":"105","mobile-breakpoint":"960",app:"",class:"leftSidebar",rail:o(l).mini_sidebar,"expand-on-hover":""},{default:t(()=>[_("div",_e,[e(he)]),e(f,{class:"scrollnavbar"},{default:t(()=>[e(H,{class:"pa-4"},{default:t(()=>[(s(!0),k(y,null,j(n.value,(d,x)=>(s(),k(y,{key:x},[d.header?(s(),i(fe,{item:d,key:d.title},null,8,["item"])):d.divider?(s(),i(J,{key:1,class:"my-3"})):d.children?(s(),i(ve,{key:2,class:"leftPadding",item:d,level:0},null,8,["item"])):(s(),i(U,{key:3,item:d,class:"leftPadding"},null,8,["item"]))],64))),128))]),_:1}),_("div",Ve,[e(A,{color:"inputBorder",size:"small"},{default:t(()=>[v(" v1.0.0 ")]),_:1})])]),_:1})]),_:1},8,["modelValue","rail"])}}}),Ce=_("span",{class:"text-h5"},"密码修改",-1),ke=_("small",null,"如果是第一次修改密码,原密码请留空。",-1),ye=_("br",null,null,-1),xe=z({__name:"VerticalHeader",setup(a){const l=S();b(!1);let n=b(!1),r=b(""),u=b(""),f=b("");const d=p=>{window.open(p,"_blank")};function x(){r.value!=""&&(r.value=$.md5(r.value)),u.value=$.md5(u.value),se.post("/api/change_password",{password:r.value,new_password:u.value}).then(p=>{if(p.data.status=="error"){f.value=p.data.message,r.value="",u.value="";return}n.value=!n.value,f.value=p.data.message,setTimeout(()=>{ie().logout()},1e3)}).catch(p=>{console.log(p),f.value=p,r.value="",u.value=""})}return(p,c)=>(s(),i(le,{elevation:"0",height:"80"},{default:t(()=>[e(V,{class:"hidden-md-and-down text-secondary",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:c[0]||(c[0]=N(m=>o(l).SET_MINI_SIDEBAR(!o(l).mini_sidebar),["stop"])),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1}),e(V,{class:"hidden-lg-and-up text-secondary ms-3",color:"lightsecondary",icon:"",rounded:"sm",variant:"flat",onClick:N(o(l).SET_SIDEBAR_DRAWER,["stop"]),size:"small"},{default:t(()=>[e(o(B),{size:"20","stroke-width":"1.5"})]),_:1},8,["onClick"]),e(T),e(Q,{modelValue:o(n),"onUpdate:modelValue":c[4]||(c[4]=m=>C(n)?n.value=m:n=m),persistent:"",width:"700"},{activator:t(({props:m})=>[e(V,P({class:"profileBtn text-primary",color:"lightprimary",variant:"flat",rounded:"pill"},m),{default:t(()=>[e(g,{icon:"mdi-account-edit",size:"25"})]),_:2},1040)]),default:t(()=>[e(X,null,{default:t(()=>[e(Y,null,{default:t(()=>[Ce]),_:1}),e(Z,null,{default:t(()=>[e(O,null,{default:t(()=>[e(ee,null,{default:t(()=>[e(te,{cols:"12"},{default:t(()=>[e(L,{label:"原密码*",type:"password",modelValue:o(r),"onUpdate:modelValue":c[1]||(c[1]=m=>C(r)?r.value=m:r=m),required:""},null,8,["modelValue"]),e(L,{label:"新密码*",type:"password",modelValue:o(u),"onUpdate:modelValue":c[2]||(c[2]=m=>C(u)?u.value=m:u=m),required:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),ke,ye,_("small",null,h(o(f)),1)]),_:1}),e(ae,null,{default:t(()=>[e(T),e(V,{color:"blue-darken-1",variant:"text",onClick:c[3]||(c[3]=m=>C(n)?n.value=!1:n=!1)},{default:t(()=>[v(" 关闭 ")]),_:1}),e(V,{color:"blue-darken-1",variant:"text",onClick:x},{default:t(()=>[v(" 提交 ")]),_:1})]),_:1})]),_:1})]),_:1},8,["modelValue"]),e(V,{class:"profileBtn text-primary",color:"lightprimary",variant:"flat",onClick:c[5]||(c[5]=m=>d("https://github.com/Soulter/AstrBot")),rounded:"pill"},{default:t(()=>[e(g,{icon:"mdi-github",size:"25"})]),_:1})]),_:1}))}}),Se=z({__name:"FullLayout",setup(a){const l=S();return(n,r)=>(s(),i(de,null,{default:t(()=>[e(ne,{theme:"PurpleTheme",class:oe([o(l).fontTheme,o(l).mini_sidebar?"mini-sidebar":"",o(l).inputBg?"inputWithbg":""])},{default:t(()=>[e(be),e(xe),e(re,null,{default:t(()=>[e(O,{fluid:"",class:"page-wrapper"},{default:t(()=>[_("div",null,[e(o(ue))])]),_:1})]),_:1})]),_:1},8,["class"])]),_:1}))}});export{Se as default}; diff --git a/addons/dashboard/dist/assets/LoginPage-decfa242.js b/addons/dashboard/dist/assets/LoginPage-7b049444.js similarity index 99% rename from addons/dashboard/dist/assets/LoginPage-decfa242.js rename to addons/dashboard/dist/assets/LoginPage-7b049444.js index 6d5149468..3cf0eac70 100644 --- a/addons/dashboard/dist/assets/LoginPage-decfa242.js +++ b/addons/dashboard/dist/assets/LoginPage-7b049444.js @@ -1,4 +1,4 @@ -import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js";import{x as ke,ad as we,r as Ot,ae as Vt,D as A,af as Ne,a0 as P,B as I,ag as Q,ah as St,I as Be,ai as Ie,aj as Et,ak as jt,al as At,am as G,y as wt,o as Re,c as tt,w as C,a as j,O as qe,b as ge,an as Ft,d as Pt,e as Ge,s as Ct,ao as Tt,t as Nt,k as Bt,S as It,f as Fe,N as Rt,V as Pe,J as Ye,L as kt}from"./index-ffe5e9b0.js";import{a as Mt}from"./md5-15332791.js";/** +import{_ as _t}from"./LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js";import{x as ke,ad as we,r as Ot,ae as Vt,D as A,af as Ne,a0 as P,B as I,ag as Q,ah as St,I as Be,ai as Ie,aj as Et,ak as jt,al as At,am as G,y as wt,o as Re,c as tt,w as C,a as j,O as qe,b as ge,an as Ft,d as Pt,e as Ge,s as Ct,ao as Tt,t as Nt,k as Bt,S as It,f as Fe,N as Rt,V as Pe,J as Ye,L as kt}from"./index-7c8bc001.js";import{a as Mt}from"./md5-c4ed0ff4.js";/** * vee-validate v4.11.3 * (c) 2023 Abdelrahman Awad * @license MIT diff --git a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js similarity index 94% rename from addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js rename to addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js index 64fc87340..8e7417a4b 100644 --- a/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js +++ b/addons/dashboard/dist/assets/LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js @@ -1 +1 @@ -import{at as _,x as d,D as n,o as c,s as m,a as f,w as p,au as r,b as a,av as o,B as t,aw as h}from"./index-ffe5e9b0.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[f(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:p(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; +import{at as _,x as d,D as n,o as c,s as m,a as f,w as p,au as r,b as a,av as o,B as t,aw as h}from"./index-7c8bc001.js";const s={Sidebar_drawer:!0,Customizer_drawer:!1,mini_sidebar:!1,fontTheme:"Roboto",inputBg:!1},l=_({id:"customizer",state:()=>({Sidebar_drawer:s.Sidebar_drawer,Customizer_drawer:s.Customizer_drawer,mini_sidebar:s.mini_sidebar,fontTheme:"Poppins",inputBg:s.inputBg}),getters:{},actions:{SET_SIDEBAR_DRAWER(){this.Sidebar_drawer=!this.Sidebar_drawer},SET_MINI_SIDEBAR(e){this.mini_sidebar=e},SET_FONT(e){this.fontTheme=e}}}),u={class:"logo",style:{display:"flex","align-items":"center"}},b={style:{"font-size":"24px","font-weight":"1000"}},w={style:{"font-size":"20px","font-weight":"1000"}},S={style:{"font-size":"20px"}},z=d({__name:"LogoDark",setup(e){n("rgb(var(--v-theme-primary))"),n("rgb(var(--v-theme-secondary))");const i=l();return(g,B)=>(c(),m("div",u,[f(t(h),{to:"/",style:{"text-decoration":"none",color:"black"}},{default:p(()=>[r(a("span",b,"AstrBot 仪表盘",512),[[o,!t(i).mini_sidebar]]),r(a("span",w,"Astr",512),[[o,t(i).mini_sidebar]]),r(a("span",S,"Bot",512),[[o,t(i).mini_sidebar]])]),_:1})]))}});export{z as _,l as u}; diff --git a/addons/dashboard/dist/assets/MaterialIcons-0da52fba.js b/addons/dashboard/dist/assets/MaterialIcons-715117a5.js similarity index 70% rename from addons/dashboard/dist/assets/MaterialIcons-0da52fba.js rename to addons/dashboard/dist/assets/MaterialIcons-715117a5.js index 09f9b7de2..246df5948 100644 --- a/addons/dashboard/dist/assets/MaterialIcons-0da52fba.js +++ b/addons/dashboard/dist/assets/MaterialIcons-715117a5.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-ffe5e9b0.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js";import{_ as i}from"./UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js";import{x as n,D as a,o as c,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-7c8bc001.js";const p=["innerHTML"],v=n({__name:"MaterialIcons",setup(b){const s=a({title:"Material Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Material Icons",disabled:!0,href:"#"}]);return(h,M)=>(c(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(i,{title:"Material Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,p)]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/RegisterPage-6fba9b67.js b/addons/dashboard/dist/assets/RegisterPage-29cdbb0f.js similarity index 96% rename from addons/dashboard/dist/assets/RegisterPage-6fba9b67.js rename to addons/dashboard/dist/assets/RegisterPage-29cdbb0f.js index 591f86591..36f3969bc 100644 --- a/addons/dashboard/dist/assets/RegisterPage-6fba9b67.js +++ b/addons/dashboard/dist/assets/RegisterPage-29cdbb0f.js @@ -1 +1 @@ -import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,O as m,an as A,as as E,F,c as T,N as q,J as V,L as P}from"./index-ffe5e9b0.js";const z="/assets/social-google-a359a253.svg",N=["src"],S=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(z),alt:"google"},null,8,N),S]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},J=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),Y=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),J,Y]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; +import{_ as B}from"./LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js";import{x as y,D as o,o as b,s as U,a as e,w as a,b as n,B as $,d as u,f as d,A as _,e as f,V as r,O as m,an as A,as as E,F,c as T,N as q,J as V,L as P}from"./index-7c8bc001.js";const z="/assets/social-google-a359a253.svg",N=["src"],S=n("span",{class:"ml-2"},"Sign up with Google",-1),D=n("h5",{class:"text-h5 text-center my-4 mb-8"},"Sign up with Email address",-1),G={class:"d-sm-inline-flex align-center mt-2 mb-7 mb-sm-0 font-weight-bold"},L=n("a",{href:"#",class:"ml-1 text-lightText"},"Terms and Condition",-1),O={class:"mt-5 text-right"},j=y({__name:"AuthRegister",setup(w){const c=o(!1),i=o(!1),p=o(""),v=o(""),g=o(),h=o(""),x=o(""),k=o([s=>!!s||"Password is required",s=>s&&s.length<=10||"Password must be less than 10 characters"]),C=o([s=>!!s||"E-mail is required",s=>/.+@.+\..+/.test(s)||"E-mail must be valid"]);function R(){g.value.validate()}return(s,l)=>(b(),U(F,null,[e(u,{block:"",color:"primary",variant:"outlined",class:"text-lightText googleBtn"},{default:a(()=>[n("img",{src:$(z),alt:"google"},null,8,N),S]),_:1}),e(r,null,{default:a(()=>[e(d,{class:"d-flex align-center"},{default:a(()=>[e(_,{class:"custom-devider"}),e(u,{variant:"outlined",class:"orbtn",rounded:"md",size:"small"},{default:a(()=>[f("OR")]),_:1}),e(_,{class:"custom-devider"})]),_:1})]),_:1}),D,e(E,{ref_key:"Regform",ref:g,"lazy-validation":"",action:"/dashboards/analytical",class:"mt-7 loginForm"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:h.value,"onUpdate:modelValue":l[0]||(l[0]=t=>h.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Firstname"},null,8,["modelValue"])]),_:1}),e(d,{cols:"12",sm:"6"},{default:a(()=>[e(m,{modelValue:x.value,"onUpdate:modelValue":l[1]||(l[1]=t=>x.value=t),density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary",label:"Lastname"},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{modelValue:v.value,"onUpdate:modelValue":l[2]||(l[2]=t=>v.value=t),rules:C.value,label:"Email Address / Username",class:"mt-4 mb-4",required:"",density:"comfortable","hide-details":"auto",variant:"outlined",color:"primary"},null,8,["modelValue","rules"]),e(m,{modelValue:p.value,"onUpdate:modelValue":l[3]||(l[3]=t=>p.value=t),rules:k.value,label:"Password",required:"",density:"comfortable",variant:"outlined",color:"primary","hide-details":"auto","append-icon":i.value?"mdi-eye":"mdi-eye-off",type:i.value?"text":"password","onClick:append":l[4]||(l[4]=t=>i.value=!i.value),class:"pwdInput"},null,8,["modelValue","rules","append-icon","type"]),n("div",G,[e(A,{modelValue:c.value,"onUpdate:modelValue":l[5]||(l[5]=t=>c.value=t),rules:[t=>!!t||"You must agree to continue!"],label:"Agree with?",required:"",color:"primary",class:"ms-n2","hide-details":""},null,8,["modelValue","rules"]),L]),e(u,{color:"secondary",block:"",class:"mt-2",variant:"flat",size:"large",onClick:l[6]||(l[6]=t=>R())},{default:a(()=>[f("Sign Up")]),_:1})]),_:1},512),n("div",O,[e(_),e(u,{variant:"plain",to:"/auth/login",class:"mt-2 text-capitalize mr-n2"},{default:a(()=>[f("Already have an account?")]),_:1})])],64))}});const I={class:"pa-7 pa-sm-12"},J=n("h2",{class:"text-secondary text-h2 mt-8"},"Sign up",-1),Y=n("h4",{class:"text-disabled text-h4 mt-3"},"Enter credentials to continue",-1),M=y({__name:"RegisterPage",setup(w){return(c,i)=>(b(),T(r,{class:"h-100vh","no-gutters":""},{default:a(()=>[e(d,{cols:"12",class:"d-flex align-center bg-lightprimary"},{default:a(()=>[e(q,null,{default:a(()=>[n("div",I,[e(r,{justify:"center"},{default:a(()=>[e(d,{cols:"12",lg:"10",xl:"6",md:"7"},{default:a(()=>[e(V,{elevation:"0",class:"loginBox"},{default:a(()=>[e(V,{variant:"outlined"},{default:a(()=>[e(P,{class:"pa-9"},{default:a(()=>[e(r,null,{default:a(()=>[e(d,{cols:"12",class:"text-center"},{default:a(()=>[e(B),J,Y]),_:1})]),_:1}),e(j)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])]),_:1})]),_:1})]),_:1}))}});export{M as default}; diff --git a/addons/dashboard/dist/assets/ShadowPage-7b3e7ed6.js b/addons/dashboard/dist/assets/ShadowPage-5a263e47.js similarity index 81% rename from addons/dashboard/dist/assets/ShadowPage-7b3e7ed6.js rename to addons/dashboard/dist/assets/ShadowPage-5a263e47.js index b2fd890c4..d00f40b51 100644 --- a/addons/dashboard/dist/assets/ShadowPage-7b3e7ed6.js +++ b/addons/dashboard/dist/assets/ShadowPage-5a263e47.js @@ -1 +1 @@ -import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,J as p,U as b,b as h,t as g}from"./index-ffe5e9b0.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(V,x)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; +import{_ as c}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js";import{_ as f}from"./UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js";import{x as m,D as s,o as l,s as r,a as e,w as a,f as i,V as o,F as d,u as _,J as p,U as b,b as h,t as g}from"./index-7c8bc001.js";const v=m({__name:"ShadowPage",setup(w){const n=s({title:"Shadow Page"}),u=s([{title:"Utilities",disabled:!1,href:"#"},{title:"Shadow",disabled:!0,href:"#"}]);return(V,x)=>(l(),r(d,null,[e(c,{title:n.value.title,breadcrumbs:u.value},null,8,["title","breadcrumbs"]),e(o,null,{default:a(()=>[e(i,{cols:"12",md:"12"},{default:a(()=>[e(f,{title:"Basic Shadow"},{default:a(()=>[e(o,{justify:"center"},{default:a(()=>[(l(),r(d,null,_(25,t=>e(i,{key:t,cols:"auto"},{default:a(()=>[e(p,{height:"100",width:"100",class:b(["mb-5",["d-flex justify-center align-center bg-primary",`elevation-${t}`]])},{default:a(()=>[h("div",null,g(t-1),1)]),_:2},1032,["class"])]),_:2},1024)),64))]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{v as default}; diff --git a/addons/dashboard/dist/assets/TablerIcons-03a8e23e.js b/addons/dashboard/dist/assets/TablerIcons-d2cd165a.js similarity index 69% rename from addons/dashboard/dist/assets/TablerIcons-03a8e23e.js rename to addons/dashboard/dist/assets/TablerIcons-d2cd165a.js index 4793e9e07..ec091af38 100644 --- a/addons/dashboard/dist/assets/TablerIcons-03a8e23e.js +++ b/addons/dashboard/dist/assets/TablerIcons-d2cd165a.js @@ -1 +1 @@ -import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-ffe5e9b0.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; +import{_ as o}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js";import{_ as n}from"./UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js";import{x as c,D as a,o as i,s as m,a as e,w as t,f as d,b as f,V as _,F as u}from"./index-7c8bc001.js";const b=["innerHTML"],w=c({__name:"TablerIcons",setup(p){const s=a({title:"Tabler Icons"}),r=a(''),l=a([{title:"Icons",disabled:!1,href:"#"},{title:"Tabler Icons",disabled:!0,href:"#"}]);return(h,T)=>(i(),m(u,null,[e(o,{title:s.value.title,breadcrumbs:l.value},null,8,["title","breadcrumbs"]),e(_,null,{default:t(()=>[e(d,{cols:"12",md:"12"},{default:t(()=>[e(n,{title:"Tabler Icons"},{default:t(()=>[f("div",{innerHTML:r.value},null,8,b)]),_:1})]),_:1})]),_:1})],64))}});export{w as default}; diff --git a/addons/dashboard/dist/assets/TypographyPage-db19a414.js b/addons/dashboard/dist/assets/TypographyPage-1ff2ad6a.js similarity index 94% rename from addons/dashboard/dist/assets/TypographyPage-db19a414.js rename to addons/dashboard/dist/assets/TypographyPage-1ff2ad6a.js index 0ba3e3687..47912498c 100644 --- a/addons/dashboard/dist/assets/TypographyPage-db19a414.js +++ b/addons/dashboard/dist/assets/TypographyPage-1ff2ad6a.js @@ -1 +1 @@ -import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js";import{x as f,o as i,c as g,w as e,a,a6 as y,K as b,e as w,t as d,A as C,L as V,a7 as L,J as _,D as o,s as h,f as k,b as t,F as x,u as B,U as H,V as T}from"./index-ffe5e9b0.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),D={class:"d-flex flex-column gap-1"},S={class:"text-caption pa-2 bg-lightprimary"},z=t("div",{class:"text-grey"},"Class",-1),N={class:"font-weight-medium"},U=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),$=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(O,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",D,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",S,[z,t("div",N,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[U]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[$]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; +import{_ as m}from"./BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js";import{_ as v}from"./UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js";import{x as f,o as i,c as g,w as e,a,a6 as y,K as b,e as w,t as d,A as C,L as V,a7 as L,J as _,D as o,s as h,f as k,b as t,F as x,u as B,U as H,V as T}from"./index-7c8bc001.js";const s=f({__name:"UiChildCard",props:{title:String},setup(r){const l=r;return(n,c)=>(i(),g(_,{variant:"outlined"},{default:e(()=>[a(y,{class:"py-3"},{default:e(()=>[a(b,{class:"text-h5"},{default:e(()=>[w(d(l.title),1)]),_:1})]),_:1}),a(C),a(V,null,{default:e(()=>[L(n.$slots,"default")]),_:3})]),_:3}))}}),D={class:"d-flex flex-column gap-1"},S={class:"text-caption pa-2 bg-lightprimary"},z=t("div",{class:"text-grey"},"Class",-1),N={class:"font-weight-medium"},U=t("div",null,[t("p",{class:"text-left"},"Left aligned on all viewport sizes."),t("p",{class:"text-center"},"Center aligned on all viewport sizes."),t("p",{class:"text-right"},"Right aligned on all viewport sizes."),t("p",{class:"text-sm-left"},"Left aligned on viewports SM (small) or wider."),t("p",{class:"text-right text-md-left"},"Left aligned on viewports MD (medium) or wider."),t("p",{class:"text-right text-lg-left"},"Left aligned on viewports LG (large) or wider."),t("p",{class:"text-right text-xl-left"},"Left aligned on viewports XL (extra-large) or wider.")],-1),$=t("div",{class:"d-flex justify-space-between flex-row"},[t("a",{href:"#",class:"text-decoration-none"},"Non-underlined link"),t("div",{class:"text-decoration-line-through"},"Line-through text"),t("div",{class:"text-decoration-overline"},"Overline text"),t("div",{class:"text-decoration-underline"},"Underline text")],-1),M=t("div",null,[t("p",{class:"text-high-emphasis"},"High-emphasis has an opacity of 87% in light theme and 100% in dark."),t("p",{class:"text-medium-emphasis"},"Medium-emphasis text and hint text have opacities of 60% in light theme and 70% in dark."),t("p",{class:"text-disabled"},"Disabled text has an opacity of 38% in light theme and 50% in dark.")],-1),A=f({__name:"TypographyPage",setup(r){const l=o({title:"Typography Page"}),n=o([["Heading 1","text-h1"],["Heading 2","text-h2"],["Heading 3","text-h3"],["Heading 4","text-h4"],["Heading 5","text-h5"],["Heading 6","text-h6"],["Subtitle 1","text-subtitle-1"],["Subtitle 2","text-subtitle-2"],["Body 1","text-body-1"],["Body 2","text-body-2"],["Button","text-button"],["Caption","text-caption"],["Overline","text-overline"]]),c=o([{title:"Utilities",disabled:!1,href:"#"},{title:"Typography",disabled:!0,href:"#"}]);return(O,F)=>(i(),h(x,null,[a(m,{title:l.value.title,breadcrumbs:c.value},null,8,["title","breadcrumbs"]),a(T,null,{default:e(()=>[a(k,{cols:"12",md:"12"},{default:e(()=>[a(v,{title:"Basic Typography"},{default:e(()=>[a(s,{title:"Heading"},{default:e(()=>[t("div",D,[(i(!0),h(x,null,B(n.value,([p,u])=>(i(),g(_,{variant:"outlined",key:p,class:"my-4"},{default:e(()=>[t("div",{class:H([u,"pa-2"])},d(p),3),t("div",S,[z,t("div",N,d(u),1)])]),_:2},1024))),128))])]),_:1}),a(s,{title:"Text-alignment",class:"mt-8"},{default:e(()=>[U]),_:1}),a(s,{title:"Decoration",class:"mt-8"},{default:e(()=>[$]),_:1}),a(s,{title:"Opacity",class:"mt-8"},{default:e(()=>[M]),_:1})]),_:1})]),_:1})]),_:1})],64))}});export{A as default}; diff --git a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js similarity index 88% rename from addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js rename to addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js index e9df2e5da..beeddf839 100644 --- a/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js +++ b/addons/dashboard/dist/assets/UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js @@ -1 +1 @@ -import{x as n,o,c as i,w as e,a,a6 as d,b as c,K as u,e as p,t as _,a7 as s,A as f,L as V,J as m}from"./index-ffe5e9b0.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; +import{x as n,o,c as i,w as e,a,a6 as d,b as c,K as u,e as p,t as _,a7 as s,A as f,L as V,J as m}from"./index-7c8bc001.js";const C={class:"d-sm-flex align-center justify-space-between"},h=n({__name:"UiParentCard",props:{title:String},setup(l){const r=l;return(t,x)=>(o(),i(m,{variant:"outlined",elevation:"0",class:"withbg"},{default:e(()=>[a(d,null,{default:e(()=>[c("div",C,[a(u,null,{default:e(()=>[p(_(r.title),1)]),_:1}),s(t.$slots,"action")])]),_:3}),a(f),a(V,null,{default:e(()=>[s(t.$slots,"default")]),_:3})]),_:3}))}});export{h as _}; diff --git a/addons/dashboard/dist/assets/index-ffe5e9b0.js b/addons/dashboard/dist/assets/index-7c8bc001.js similarity index 99% rename from addons/dashboard/dist/assets/index-ffe5e9b0.js rename to addons/dashboard/dist/assets/index-7c8bc001.js index 891b5753a..88c72c740 100644 --- a/addons/dashboard/dist/assets/index-ffe5e9b0.js +++ b/addons/dashboard/dist/assets/index-7c8bc001.js @@ -6,11 +6,11 @@ * vue-router v4.2.4 * (c) 2023 Eduardo San Martin Morote * @license MIT - */const Wr=typeof window<"u";function t5(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const fe=Object.assign;function Li(n,l){const r={};for(const h in l){const c=l[h];r[h]=Kn(c)?c.map(n):n(c)}return r}const Wo=()=>{},Kn=Array.isArray,e5=/\/$/,n5=n=>n.replace(e5,"");function Di(n,l,r="/"){let h,c={},g="",v="";const k=l.indexOf("#");let x=l.indexOf("?");return k=0&&(x=-1),x>-1&&(h=l.slice(0,x),g=l.slice(x+1,k>-1?k:l.length),c=n(g)),k>-1&&(h=h||l.slice(0,k),v=l.slice(k,l.length)),h=s5(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:c,hash:v}}function l5(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function A1(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function r5(n,l,r){const h=l.matched.length-1,c=r.matched.length-1;return h>-1&&h===c&&eo(l.matched[h],r.matched[c])&&qu(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function eo(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function qu(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!o5(n[r],l[r]))return!1;return!0}function o5(n,l){return Kn(n)?B1(n,l):Kn(l)?B1(l,n):n===l}function B1(n,l){return Kn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function s5(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),c=h[h.length-1];(c===".."||c===".")&&h.push("");let g=r.length-1,v,k;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var rs;(function(n){n.pop="pop",n.push="push"})(rs||(rs={}));var Xo;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Xo||(Xo={}));function a5(n){if(!n)if(Wr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),n5(n)}const i5=/^[^#]+#/;function h5(n,l){return n.replace(i5,"#")+l}function d5(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Ga=()=>({left:window.pageXOffset,top:window.pageYOffset});function c5(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),c=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!c)return;l=d5(c,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function H1(n,l){return(history.state?history.state.position-l:-1)+n}const x0=new Map;function u5(n,l){x0.set(n,l)}function p5(n){const l=x0.get(n);return x0.delete(n),l}let g5=()=>location.protocol+"//"+location.host;function Yu(n,l){const{pathname:r,search:h,hash:c}=l,g=n.indexOf("#");if(g>-1){let k=c.includes(n.slice(g))?n.slice(g).length:1,x=c.slice(k);return x[0]!=="/"&&(x="/"+x),A1(x,"")}return A1(r,n)+h+c}function w5(n,l,r,h){let c=[],g=[],v=null;const k=({state:B})=>{const P=Yu(n,location),D=r.value,F=l.value;let X=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}X=F?B.position-F.position:0}else h(P);c.forEach(R=>{R(r.value,D,{delta:X,type:rs.pop,direction:X?X>0?Xo.forward:Xo.back:Xo.unknown})})};function x(){v=r.value}function I(B){c.push(B);const P=()=>{const D=c.indexOf(B);D>-1&&c.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(fe({},B.state,{scroll:Ga()}),"")}function $(){for(const B of g)B();g=[],window.removeEventListener("popstate",k),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",k),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:x,listen:I,destroy:$}}function N1(n,l,r,h=!1,c=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:c?Ga():null}}function v5(n){const{history:l,location:r}=window,h={value:Yu(n,r)},c={value:l.state};c.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(x,I,S){const $=n.indexOf("#"),B=$>-1?(r.host&&document.querySelector("base")?n:n.slice($))+x:g5()+n+x;try{l[S?"replaceState":"pushState"](I,"",B),c.value=I}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(x,I){const S=fe({},l.state,N1(c.value.back,x,c.value.forward,!0),I,{position:c.value.position});g(x,S,!0),h.value=x}function k(x,I){const S=fe({},c.value,l.state,{forward:x,scroll:Ga()});g(S.current,S,!0);const $=fe({},N1(h.value,x,null),{position:S.position+1},I);g(x,$,!1),h.value=x}return{location:h,state:c,push:k,replace:v}}function f5(n){n=a5(n);const l=v5(n),r=w5(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const c=fe({location:"",base:n,go:h,createHref:h5.bind(null,n)},l,r);return Object.defineProperty(c,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(c,"state",{enumerable:!0,get:()=>l.state.value}),c}function m5(n){return typeof n=="string"||n&&typeof n=="object"}function Uu(n){return typeof n=="string"||typeof n=="symbol"}const Pl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Gu=Symbol("");var j1;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(j1||(j1={}));function no(n,l){return fe(new Error,{type:n,[Gu]:!0},l)}function dl(n,l){return n instanceof Error&&Gu in n&&(l==null||!!(n.type&l))}const P1="[^/]+?",k5={sensitive:!1,strict:!1,start:!0,end:!0},b5=/[.+*?^${}()[\]/\\]/g;function M5(n,l){const r=fe({},k5,l),h=[];let c=r.start?"^":"";const g=[];for(const I of n){const S=I.length?[]:[90];r.strict&&!I.length&&(c+="/");for(let $=0;$l.length?l.length===1&&l[0]===40+40?1:-1:0}function z5(n,l){let r=0;const h=n.score,c=l.score;for(;r0&&l[l.length-1]<0}const I5={type:0,value:""},y5=/[a-zA-Z0-9_]/;function C5(n){if(!n)return[[]];if(n==="/")return[[I5]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${I}": ${P}`)}let r=0,h=r;const c=[];let g;function v(){g&&c.push(g),g=[]}let k=0,x,I="",S="";function $(){I&&(r===0?g.push({type:0,value:I}):r===1||r===2||r===3?(g.length>1&&(x==="*"||x==="+")&&l(`A repeatable param (${I}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:I,regexp:S,repeatable:x==="*"||x==="+",optional:x==="*"||x==="?"})):l("Invalid state to consume buffer"),I="")}function B(){I+=x}for(;k{v(H)}:Wo}function v(S){if(Uu(S)){const $=h.get(S);$&&(h.delete(S),r.splice(r.indexOf($),1),$.children.forEach(v),$.alias.forEach(v))}else{const $=r.indexOf(S);$>-1&&(r.splice($,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function k(){return r}function x(S){let $=0;for(;$=0&&(S.record.path!==r[$].record.path||!Zu(S,r[$]));)$++;r.splice($,0,S),S.record.name&&!O1(S)&&h.set(S.record.name,S)}function I(S,$){let B,P={},D,F;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw no(1,{location:S});F=B.record.name,P=fe(D1($.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&D1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),F=B.record.name);else{if(B=$.name?h.get($.name):r.find(H=>H.re.test($.path)),!B)throw no(1,{location:S,currentLocation:$});F=B.record.name,P=fe({},$.params,S.params),D=B.stringify(P)}const X=[];let R=B;for(;R;)X.unshift(R.record),R=R.parent;return{name:F,path:D,params:P,matched:X,meta:H5(X)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:I,removeRoute:v,getRoutes:k,getRecordMatcher:c}}function D1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function A5(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:B5(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function B5(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function O1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function H5(n){return n.reduce((l,r)=>fe(l,r.meta),{})}function F1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function Zu(n,l){return l.children.some(r=>r===n||Zu(n,r))}const Ku=/#/g,N5=/&/g,j5=/\//g,P5=/=/g,L5=/\?/g,Qu=/\+/g,D5=/%5B/g,O5=/%5D/g,Ju=/%5E/g,F5=/%60/g,tp=/%7B/g,R5=/%7C/g,ep=/%7D/g,T5=/%20/g;function Xh(n){return encodeURI(""+n).replace(R5,"|").replace(D5,"[").replace(O5,"]")}function E5(n){return Xh(n).replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function z0(n){return Xh(n).replace(Qu,"%2B").replace(T5,"+").replace(Ku,"%23").replace(N5,"%26").replace(F5,"`").replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function V5(n){return z0(n).replace(P5,"%3D")}function _5(n){return Xh(n).replace(Ku,"%23").replace(L5,"%3F")}function W5(n){return n==null?"":_5(n).replace(j5,"%2F")}function wa(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function X5(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let c=0;cg&&z0(g)):[h&&z0(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function q5(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Kn(h)?h.map(c=>c==null?null:""+c):h==null?h:""+h)}return l}const Y5=Symbol(""),T1=Symbol(""),qh=Symbol(""),np=Symbol(""),I0=Symbol("");function $o(){let n=[];function l(h){return n.push(h),()=>{const c=n.indexOf(h);c>-1&&n.splice(c,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Rl(n,l,r,h,c){const g=h&&(h.enterCallbacks[c]=h.enterCallbacks[c]||[]);return()=>new Promise((v,k)=>{const x=$=>{$===!1?k(no(4,{from:r,to:l})):$ instanceof Error?k($):m5($)?k(no(2,{from:l,to:$})):(g&&h.enterCallbacks[c]===g&&typeof $=="function"&&g.push($),v())},I=n.call(h&&h.instances[c],l,r,x);let S=Promise.resolve(I);n.length<3&&(S=S.then(x)),S.catch($=>k($))})}function Oi(n,l,r,h){const c=[];for(const g of n)for(const v in g.components){let k=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(U5(k)){const I=(k.__vccOpts||k)[l];I&&c.push(Rl(I,r,h,g,v))}else{let x=k();c.push(()=>x.then(I=>{if(!I)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=t5(I)?I.default:I;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Rl(B,r,h,g,v)()}))}}return c}function U5(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function E1(n){const l=de(qh),r=de(np),h=q(()=>l.resolve(je(n.to))),c=q(()=>{const{matched:x}=h.value,{length:I}=x,S=x[I-1],$=r.matched;if(!S||!$.length)return-1;const B=$.findIndex(eo.bind(null,S));if(B>-1)return B;const P=V1(x[I-2]);return I>1&&V1(S)===P&&$[$.length-1].path!==P?$.findIndex(eo.bind(null,x[I-2])):B}),g=q(()=>c.value>-1&&Q5(r.params,h.value.params)),v=q(()=>c.value>-1&&c.value===r.matched.length-1&&qu(r.params,h.value.params));function k(x={}){return K5(x)?l[je(n.replace)?"replace":"push"](je(n.to)).catch(Wo):Promise.resolve()}return{route:h,href:q(()=>h.value.href),isActive:g,isExactActive:v,navigate:k}}const G5=Cr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:E1,setup(n,{slots:l}){const r=Ze(E1(n)),{options:h}=de(qh),c=q(()=>({[_1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[_1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Ln("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:c.value},g)}}}),Z5=G5;function K5(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Q5(n,l){for(const r in l){const h=l[r],c=n[r];if(typeof h=="string"){if(h!==c)return!1}else if(!Kn(c)||c.length!==h.length||h.some((g,v)=>g!==c[v]))return!1}return!0}function V1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const _1=(n,l,r)=>n??l??r,J5=Cr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=de(I0),c=q(()=>n.route||h.value),g=de(T1,0),v=q(()=>{let I=je(g);const{matched:S}=c.value;let $;for(;($=S[I])&&!$.components;)I++;return I}),k=q(()=>c.value.matched[v.value]);Se(T1,q(()=>v.value+1)),Se(Y5,k),Se(I0,c);const x=Lt();return _t(()=>[x.value,k.value,n.name],([I,S,$],[B,P,D])=>{S&&(S.instances[$]=I,P&&P!==S&&I&&I===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),I&&S&&(!P||!eo(S,P)||!B)&&(S.enterCallbacks[$]||[]).forEach(F=>F(I))},{flush:"post"}),()=>{const I=c.value,S=n.name,$=k.value,B=$&&$.components[S];if(!B)return W1(r.default,{Component:B,route:I});const P=$.props[S],D=P?P===!0?I.params:typeof P=="function"?P(I):P:null,X=Ln(B,fe({},D,l,{onVnodeUnmounted:R=>{R.component.isUnmounted&&($.instances[S]=null)},ref:x}));return W1(r.default,{Component:X,route:I})||X}}});function W1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const lp=J5;function tm(n){const l=$5(n.routes,n),r=n.parseQuery||X5,h=n.stringifyQuery||R1,c=n.history,g=$o(),v=$o(),k=$o(),x=Wt(Pl);let I=Pl;Wr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=Li.bind(null,pt=>""+pt),$=Li.bind(null,W5),B=Li.bind(null,wa);function P(pt,Nt){let jt,bt;return Uu(pt)?(jt=l.getRecordMatcher(pt),bt=Nt):bt=pt,l.addRoute(bt,jt)}function D(pt){const Nt=l.getRecordMatcher(pt);Nt&&l.removeRoute(Nt)}function F(){return l.getRoutes().map(pt=>pt.record)}function X(pt){return!!l.getRecordMatcher(pt)}function R(pt,Nt){if(Nt=fe({},Nt||x.value),typeof pt=="string"){const at=Di(r,pt,Nt.path),ct=l.resolve({path:at.path},Nt),kt=c.createHref(at.fullPath);return fe(at,ct,{params:B(ct.params),hash:wa(at.hash),redirectedFrom:void 0,href:kt})}let jt;if("path"in pt)jt=fe({},pt,{path:Di(r,pt.path,Nt.path).path});else{const at=fe({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];jt=fe({},pt,{params:$(at)}),Nt.params=$(Nt.params)}const bt=l.resolve(jt,Nt),ft=pt.hash||"";bt.params=S(B(bt.params));const J=l5(h,fe({},pt,{hash:E5(ft),path:bt.path})),lt=c.createHref(J);return fe({fullPath:J,hash:ft,query:h===R1?q5(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?Di(r,pt,x.value.path):fe({},pt)}function U(pt,Nt){if(I!==pt)return no(8,{from:Nt,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(fe(H(pt),{replace:!0}))}function tt(pt){const Nt=pt.matched[pt.matched.length-1];if(Nt&&Nt.redirect){const{redirect:jt}=Nt;let bt=typeof jt=="function"?jt(pt):jt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),fe({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Nt){const jt=I=R(pt),bt=x.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(jt);if(at)return nt(fe(H(at),{state:typeof at=="object"?fe({},ft,at.state):ft,force:J,replace:lt}),Nt||jt);const ct=jt;ct.redirectedFrom=Nt;let kt;return!J&&r5(h,bt,jt)&&(kt=no(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>dl(yt)?dl(yt,2)?yt:At(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(dl(yt,2))return nt(fe({replace:lt},H(yt.to),{state:typeof yt.to=="object"?fe({},ft,yt.to.state):ft,force:J}),Nt||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function Y(pt,Nt){const jt=U(pt,Nt);return jt?Promise.reject(jt):Promise.resolve()}function G(pt){const Nt=Jt.values().next().value;return Nt&&typeof Nt.runWithContext=="function"?Nt.runWithContext(pt):pt()}function et(pt,Nt){let jt;const[bt,ft,J]=em(pt,Nt);jt=Oi(bt.reverse(),"beforeRouteLeave",pt,Nt);for(const at of bt)at.leaveGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});const lt=Y.bind(null,pt,Nt);return jt.push(lt),ut(jt).then(()=>{jt=[];for(const at of g.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>{jt=Oi(ft,"beforeRouteUpdate",pt,Nt);for(const at of ft)at.updateGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});return jt.push(lt),ut(jt)}).then(()=>{jt=[];for(const at of J)if(at.beforeEnter)if(Kn(at.beforeEnter))for(const ct of at.beforeEnter)jt.push(Rl(ct,pt,Nt));else jt.push(Rl(at.beforeEnter,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),jt=Oi(J,"beforeRouteEnter",pt,Nt),jt.push(lt),ut(jt))).then(()=>{jt=[];for(const at of v.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).catch(at=>dl(at,8)?at:Promise.reject(at))}function st(pt,Nt,jt){k.list().forEach(bt=>G(()=>bt(pt,Nt,jt)))}function rt(pt,Nt,jt,bt,ft){const J=U(pt,Nt);if(J)return J;const lt=Nt===Pl,at=Wr?history.state:{};jt&&(bt||lt?c.replace(pt.fullPath,fe({scroll:lt&&at&&at.scroll},ft)):c.push(pt.fullPath,ft)),x.value=pt,Tt(pt,Nt,jt,lt),At()}let ht;function dt(){ht||(ht=c.listen((pt,Nt,jt)=>{if(!Et.listening)return;const bt=R(pt),ft=tt(bt);if(ft){nt(fe(ft,{replace:!0}),bt).catch(Wo);return}I=bt;const J=x.value;Wr&&u5(H1(J.fullPath,jt.delta),Ga()),et(bt,J).catch(lt=>dl(lt,12)?lt:dl(lt,2)?(nt(lt.to,bt).then(at=>{dl(at,20)&&!jt.delta&&jt.type===rs.pop&&c.go(-1,!1)}).catch(Wo),Promise.reject()):(jt.delta&&c.go(-jt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(jt.delta&&!dl(lt,8)?c.go(-jt.delta,!1):jt.type===rs.pop&&dl(lt,20)&&c.go(-1,!1)),st(bt,J,lt)}).catch(Wo)}))}let Ct=$o(),xt=$o(),wt;function gt(pt,Nt,jt){At(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Nt,jt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&x.value!==Pl?Promise.resolve():new Promise((pt,Nt)=>{Ct.add([pt,Nt])})}function At(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Nt,jt])=>pt?jt(pt):Nt()),Ct.reset()),pt}function Tt(pt,Nt,jt,bt){const{scrollBehavior:ft}=n;if(!Wr||!ft)return Promise.resolve();const J=!jt&&p5(H1(pt.fullPath,0))||(bt||!jt)&&history.state&&history.state.scroll||null;return we().then(()=>ft(pt,Nt,J)).then(lt=>lt&&c5(lt)).catch(lt=>gt(lt,pt,Nt))}const Ft=pt=>c.go(pt);let Qt;const Jt=new Set,Et={currentRoute:x,listening:!0,addRoute:P,removeRoute:D,hasRoute:X,getRoutes:F,resolve:R,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:k.add,onError:xt.add,isReady:It,install(pt){const Nt=this;pt.component("RouterLink",Z5),pt.component("RouterView",lp),pt.config.globalProperties.$router=Nt,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>je(x)}),Wr&&!Qt&&x.value===Pl&&(Qt=!0,W(c.location).catch(ft=>{}));const jt={};for(const ft in Pl)Object.defineProperty(jt,ft,{get:()=>x.value[ft],enumerable:!0});pt.provide(qh,Nt),pt.provide(np,fh(jt)),pt.provide(I0,x);const bt=pt.unmount;Jt.add(pt),pt.unmount=function(){Jt.delete(pt),Jt.size<1&&(I=Pl,ht&&ht(),ht=null,x.value=Pl,Qt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Nt,jt)=>Nt.then(()=>G(jt)),Promise.resolve())}return Et}function em(n,l){const r=[],h=[],c=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;veo(I,k))?h.push(k):r.push(k));const x=n.matched[v];x&&(l.matched.find(I=>eo(I,x))||c.push(x))}return[r,h,c]}const nm=Cr({__name:"App",setup(n){return(l,r)=>(xs(),_a(je(lp)))}}),lm="modulepreload",rm=function(n){return"/"+n},X1={},en=function(l,r,h){if(!r||r.length===0)return l();const c=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=rm(g),g in X1)return;X1[g]=!0;const v=g.endsWith(".css"),k=v?'[rel="stylesheet"]':"";if(!!h)for(let S=c.length-1;S>=0;S--){const $=c[S];if($.href===g&&(!v||$.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${k}`))return;const I=document.createElement("link");if(I.rel=v?"stylesheet":lm,v||(I.as="script",I.crossOrigin=""),I.href=g,document.head.appendChild(I),v)return new Promise((S,$)=>{I.addEventListener("load",S),I.addEventListener("error",()=>$(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},om={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>en(()=>import("./FullLayout-297dfa95.js"),["assets/FullLayout-297dfa95.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js","assets/md5-15332791.js"]),children:[{name:"Dashboard",path:"/",component:()=>en(()=>import("./DefaultDashboard-b70e2279.js"),["assets/DefaultDashboard-b70e2279.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Extensions",path:"/extension",component:()=>en(()=>import("./ExtensionPage-e262e5bf.js"),[])},{name:"Configs",path:"/config",component:()=>en(()=>import("./ConfigPage-cbc9d918.js"),["assets/ConfigPage-cbc9d918.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Default",path:"/dashboard/default",component:()=>en(()=>import("./DefaultDashboard-b70e2279.js"),["assets/DefaultDashboard-b70e2279.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Console",path:"/console",component:()=>en(()=>import("./ConsolePage-57b1b1f5.js"),["assets/ConsolePage-57b1b1f5.js","assets/ConsolePage-e3b0c442.css"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>en(()=>import("./TablerIcons-03a8e23e.js"),["assets/TablerIcons-03a8e23e.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Material Icons",path:"/icons/material",component:()=>en(()=>import("./MaterialIcons-0da52fba.js"),["assets/MaterialIcons-0da52fba.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Typography",path:"/utils/typography",component:()=>en(()=>import("./TypographyPage-db19a414.js"),["assets/TypographyPage-db19a414.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>en(()=>import("./ShadowPage-7b3e7ed6.js"),["assets/ShadowPage-7b3e7ed6.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])},{name:"Colors",path:"/utils/colors",component:()=>en(()=>import("./ColorPage-22c7f5ba.js"),["assets/ColorPage-22c7f5ba.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-455328a2.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-41ddeb15.js"])}]},sm={path:"/auth",component:()=>en(()=>import("./BlankLayout-ad940a6c.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>en(()=>import("./LoginPage-decfa242.js"),["assets/LoginPage-decfa242.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js","assets/md5-15332791.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>en(()=>import("./RegisterPage-6fba9b67.js"),["assets/RegisterPage-6fba9b67.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-93ad8543.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>en(()=>import("./Error404Page-1f0e3199.js"),["assets/Error404Page-1f0e3199.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]};function rp(n,l){return function(){return n.apply(l,arguments)}}const{toString:am}=Object.prototype,{getPrototypeOf:Yh}=Object,Za=(n=>l=>{const r=am.call(l);return n[r]||(n[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),il=n=>(n=n.toLowerCase(),l=>Za(l)===n),Ka=n=>l=>typeof l===n,{isArray:po}=Array,os=Ka("undefined");function im(n){return n!==null&&!os(n)&&n.constructor!==null&&!os(n.constructor)&&jn(n.constructor.isBuffer)&&n.constructor.isBuffer(n)}const op=il("ArrayBuffer");function hm(n){let l;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?l=ArrayBuffer.isView(n):l=n&&n.buffer&&op(n.buffer),l}const dm=Ka("string"),jn=Ka("function"),sp=Ka("number"),Qa=n=>n!==null&&typeof n=="object",cm=n=>n===!0||n===!1,ra=n=>{if(Za(n)!=="object")return!1;const l=Yh(n);return(l===null||l===Object.prototype||Object.getPrototypeOf(l)===null)&&!(Symbol.toStringTag in n)&&!(Symbol.iterator in n)},um=il("Date"),pm=il("File"),gm=il("Blob"),wm=il("FileList"),vm=n=>Qa(n)&&jn(n.pipe),fm=n=>{let l;return n&&(typeof FormData=="function"&&n instanceof FormData||jn(n.append)&&((l=Za(n))==="formdata"||l==="object"&&jn(n.toString)&&n.toString()==="[object FormData]"))},mm=il("URLSearchParams"),km=n=>n.trim?n.trim():n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ys(n,l,{allOwnKeys:r=!1}={}){if(n===null||typeof n>"u")return;let h,c;if(typeof n!="object"&&(n=[n]),po(n))for(h=0,c=n.length;h0;)if(c=r[h],l===c.toLowerCase())return c;return null}const ip=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),hp=n=>!os(n)&&n!==ip;function y0(){const{caseless:n}=hp(this)&&this||{},l={},r=(h,c)=>{const g=n&&ap(l,c)||c;ra(l[g])&&ra(h)?l[g]=y0(l[g],h):ra(h)?l[g]=y0({},h):po(h)?l[g]=h.slice():l[g]=h};for(let h=0,c=arguments.length;h(ys(l,(c,g)=>{r&&jn(c)?n[g]=rp(c,r):n[g]=c},{allOwnKeys:h}),n),Mm=n=>(n.charCodeAt(0)===65279&&(n=n.slice(1)),n),xm=(n,l,r,h)=>{n.prototype=Object.create(l.prototype,h),n.prototype.constructor=n,Object.defineProperty(n,"super",{value:l.prototype}),r&&Object.assign(n.prototype,r)},zm=(n,l,r,h)=>{let c,g,v;const k={};if(l=l||{},n==null)return l;do{for(c=Object.getOwnPropertyNames(n),g=c.length;g-- >0;)v=c[g],(!h||h(v,n,l))&&!k[v]&&(l[v]=n[v],k[v]=!0);n=r!==!1&&Yh(n)}while(n&&(!r||r(n,l))&&n!==Object.prototype);return l},Im=(n,l,r)=>{n=String(n),(r===void 0||r>n.length)&&(r=n.length),r-=l.length;const h=n.indexOf(l,r);return h!==-1&&h===r},ym=n=>{if(!n)return null;if(po(n))return n;let l=n.length;if(!sp(l))return null;const r=new Array(l);for(;l-- >0;)r[l]=n[l];return r},Cm=(n=>l=>n&&l instanceof n)(typeof Uint8Array<"u"&&Yh(Uint8Array)),Sm=(n,l)=>{const h=(n&&n[Symbol.iterator]).call(n);let c;for(;(c=h.next())&&!c.done;){const g=c.value;l.call(n,g[0],g[1])}},$m=(n,l)=>{let r;const h=[];for(;(r=n.exec(l))!==null;)h.push(r);return h},Am=il("HTMLFormElement"),Bm=n=>n.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,h,c){return h.toUpperCase()+c}),q1=(({hasOwnProperty:n})=>(l,r)=>n.call(l,r))(Object.prototype),Hm=il("RegExp"),dp=(n,l)=>{const r=Object.getOwnPropertyDescriptors(n),h={};ys(r,(c,g)=>{let v;(v=l(c,g,n))!==!1&&(h[g]=v||c)}),Object.defineProperties(n,h)},Nm=n=>{dp(n,(l,r)=>{if(jn(n)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const h=n[r];if(jn(h)){if(l.enumerable=!1,"writable"in l){l.writable=!1;return}l.set||(l.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},jm=(n,l)=>{const r={},h=c=>{c.forEach(g=>{r[g]=!0})};return po(n)?h(n):h(String(n).split(l)),r},Pm=()=>{},Lm=(n,l)=>(n=+n,Number.isFinite(n)?n:l),Fi="abcdefghijklmnopqrstuvwxyz",Y1="0123456789",cp={DIGIT:Y1,ALPHA:Fi,ALPHA_DIGIT:Fi+Fi.toUpperCase()+Y1},Dm=(n=16,l=cp.ALPHA_DIGIT)=>{let r="";const{length:h}=l;for(;n--;)r+=l[Math.random()*h|0];return r};function Om(n){return!!(n&&jn(n.append)&&n[Symbol.toStringTag]==="FormData"&&n[Symbol.iterator])}const Fm=n=>{const l=new Array(10),r=(h,c)=>{if(Qa(h)){if(l.indexOf(h)>=0)return;if(!("toJSON"in h)){l[c]=h;const g=po(h)?[]:{};return ys(h,(v,k)=>{const x=r(v,c+1);!os(x)&&(g[k]=x)}),l[c]=void 0,g}}return h};return r(n,0)},Rm=il("AsyncFunction"),Tm=n=>n&&(Qa(n)||jn(n))&&jn(n.then)&&jn(n.catch),St={isArray:po,isArrayBuffer:op,isBuffer:im,isFormData:fm,isArrayBufferView:hm,isString:dm,isNumber:sp,isBoolean:cm,isObject:Qa,isPlainObject:ra,isUndefined:os,isDate:um,isFile:pm,isBlob:gm,isRegExp:Hm,isFunction:jn,isStream:vm,isURLSearchParams:mm,isTypedArray:Cm,isFileList:wm,forEach:ys,merge:y0,extend:bm,trim:km,stripBOM:Mm,inherits:xm,toFlatObject:zm,kindOf:Za,kindOfTest:il,endsWith:Im,toArray:ym,forEachEntry:Sm,matchAll:$m,isHTMLForm:Am,hasOwnProperty:q1,hasOwnProp:q1,reduceDescriptors:dp,freezeMethods:Nm,toObjectSet:jm,toCamelCase:Bm,noop:Pm,toFiniteNumber:Lm,findKey:ap,global:ip,isContextDefined:hp,ALPHABET:cp,generateString:Dm,isSpecCompliantForm:Om,toJSONObject:Fm,isAsyncFn:Rm,isThenable:Tm};function pe(n,l,r,h,c){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=n,this.name="AxiosError",l&&(this.code=l),r&&(this.config=r),h&&(this.request=h),c&&(this.response=c)}St.inherits(pe,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:St.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const up=pe.prototype,pp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(n=>{pp[n]={value:n}});Object.defineProperties(pe,pp);Object.defineProperty(up,"isAxiosError",{value:!0});pe.from=(n,l,r,h,c,g)=>{const v=Object.create(up);return St.toFlatObject(n,v,function(x){return x!==Error.prototype},k=>k!=="isAxiosError"),pe.call(v,n.message,l,r,h,c),v.cause=n,v.name=n.name,g&&Object.assign(v,g),v};const Em=null;function C0(n){return St.isPlainObject(n)||St.isArray(n)}function gp(n){return St.endsWith(n,"[]")?n.slice(0,-2):n}function U1(n,l,r){return n?n.concat(l).map(function(c,g){return c=gp(c),!r&&g?"["+c+"]":c}).join(r?".":""):l}function Vm(n){return St.isArray(n)&&!n.some(C0)}const _m=St.toFlatObject(St,{},null,function(l){return/^is[A-Z]/.test(l)});function Ja(n,l,r){if(!St.isObject(n))throw new TypeError("target must be an object");l=l||new FormData,r=St.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(F,X){return!St.isUndefined(X[F])});const h=r.metaTokens,c=r.visitor||S,g=r.dots,v=r.indexes,x=(r.Blob||typeof Blob<"u"&&Blob)&&St.isSpecCompliantForm(l);if(!St.isFunction(c))throw new TypeError("visitor must be a function");function I(D){if(D===null)return"";if(St.isDate(D))return D.toISOString();if(!x&&St.isBlob(D))throw new pe("Blob is not supported. Use a Buffer instead.");return St.isArrayBuffer(D)||St.isTypedArray(D)?x&&typeof Blob=="function"?new Blob([D]):Buffer.from(D):D}function S(D,F,X){let R=D;if(D&&!X&&typeof D=="object"){if(St.endsWith(F,"{}"))F=h?F:F.slice(0,-2),D=JSON.stringify(D);else if(St.isArray(D)&&Vm(D)||(St.isFileList(D)||St.endsWith(F,"[]"))&&(R=St.toArray(D)))return F=gp(F),R.forEach(function(U,W){!(St.isUndefined(U)||U===null)&&l.append(v===!0?U1([F],W,g):v===null?F:F+"[]",I(U))}),!1}return C0(D)?!0:(l.append(U1(X,F,g),I(D)),!1)}const $=[],B=Object.assign(_m,{defaultVisitor:S,convertValue:I,isVisitable:C0});function P(D,F){if(!St.isUndefined(D)){if($.indexOf(D)!==-1)throw Error("Circular reference detected in "+F.join("."));$.push(D),St.forEach(D,function(R,H){(!(St.isUndefined(R)||R===null)&&c.call(l,R,St.isString(H)?H.trim():H,F,B))===!0&&P(R,F?F.concat(H):[H])}),$.pop()}}if(!St.isObject(n))throw new TypeError("data must be an object");return P(n),l}function G1(n){const l={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(n).replace(/[!'()~]|%20|%00/g,function(h){return l[h]})}function Uh(n,l){this._pairs=[],n&&Ja(n,this,l)}const wp=Uh.prototype;wp.append=function(l,r){this._pairs.push([l,r])};wp.toString=function(l){const r=l?function(h){return l.call(this,h,G1)}:G1;return this._pairs.map(function(c){return r(c[0])+"="+r(c[1])},"").join("&")};function Wm(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function vp(n,l,r){if(!l)return n;const h=r&&r.encode||Wm,c=r&&r.serialize;let g;if(c?g=c(l,r):g=St.isURLSearchParams(l)?l.toString():new Uh(l,r).toString(h),g){const v=n.indexOf("#");v!==-1&&(n=n.slice(0,v)),n+=(n.indexOf("?")===-1?"?":"&")+g}return n}class Xm{constructor(){this.handlers=[]}use(l,r,h){return this.handlers.push({fulfilled:l,rejected:r,synchronous:h?h.synchronous:!1,runWhen:h?h.runWhen:null}),this.handlers.length-1}eject(l){this.handlers[l]&&(this.handlers[l]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(l){St.forEach(this.handlers,function(h){h!==null&&l(h)})}}const Z1=Xm,fp={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},qm=typeof URLSearchParams<"u"?URLSearchParams:Uh,Ym=typeof FormData<"u"?FormData:null,Um=typeof Blob<"u"?Blob:null,Gm={isBrowser:!0,classes:{URLSearchParams:qm,FormData:Ym,Blob:Um},protocols:["http","https","file","blob","url","data"]},mp=typeof window<"u"&&typeof document<"u",Zm=(n=>mp&&["ReactNative","NativeScript","NS"].indexOf(n)<0)(typeof navigator<"u"&&navigator.product),Km=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Qm=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:mp,hasStandardBrowserEnv:Zm,hasStandardBrowserWebWorkerEnv:Km},Symbol.toStringTag,{value:"Module"})),nl={...Qm,...Gm};function Jm(n,l){return Ja(n,new nl.classes.URLSearchParams,Object.assign({visitor:function(r,h,c,g){return nl.isNode&&St.isBuffer(r)?(this.append(h,r.toString("base64")),!1):g.defaultVisitor.apply(this,arguments)}},l))}function tk(n){return St.matchAll(/\w+|\[(\w*)]/g,n).map(l=>l[0]==="[]"?"":l[1]||l[0])}function ek(n){const l={},r=Object.keys(n);let h;const c=r.length;let g;for(h=0;h=r.length;return v=!v&&St.isArray(c)?c.length:v,x?(St.hasOwnProp(c,v)?c[v]=[c[v],h]:c[v]=h,!k):((!c[v]||!St.isObject(c[v]))&&(c[v]=[]),l(r,h,c[v],g)&&St.isArray(c[v])&&(c[v]=ek(c[v])),!k)}if(St.isFormData(n)&&St.isFunction(n.entries)){const r={};return St.forEachEntry(n,(h,c)=>{l(tk(h),c,r,0)}),r}return null}function nk(n,l,r){if(St.isString(n))try{return(l||JSON.parse)(n),St.trim(n)}catch(h){if(h.name!=="SyntaxError")throw h}return(r||JSON.stringify)(n)}const Gh={transitional:fp,adapter:["xhr","http"],transformRequest:[function(l,r){const h=r.getContentType()||"",c=h.indexOf("application/json")>-1,g=St.isObject(l);if(g&&St.isHTMLForm(l)&&(l=new FormData(l)),St.isFormData(l))return c&&c?JSON.stringify(kp(l)):l;if(St.isArrayBuffer(l)||St.isBuffer(l)||St.isStream(l)||St.isFile(l)||St.isBlob(l))return l;if(St.isArrayBufferView(l))return l.buffer;if(St.isURLSearchParams(l))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),l.toString();let k;if(g){if(h.indexOf("application/x-www-form-urlencoded")>-1)return Jm(l,this.formSerializer).toString();if((k=St.isFileList(l))||h.indexOf("multipart/form-data")>-1){const x=this.env&&this.env.FormData;return Ja(k?{"files[]":l}:l,x&&new x,this.formSerializer)}}return g||c?(r.setContentType("application/json",!1),nk(l)):l}],transformResponse:[function(l){const r=this.transitional||Gh.transitional,h=r&&r.forcedJSONParsing,c=this.responseType==="json";if(l&&St.isString(l)&&(h&&!this.responseType||c)){const v=!(r&&r.silentJSONParsing)&&c;try{return JSON.parse(l)}catch(k){if(v)throw k.name==="SyntaxError"?pe.from(k,pe.ERR_BAD_RESPONSE,this,null,this.response):k}}return l}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:nl.classes.FormData,Blob:nl.classes.Blob},validateStatus:function(l){return l>=200&&l<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};St.forEach(["delete","get","head","post","put","patch"],n=>{Gh.headers[n]={}});const Zh=Gh,lk=St.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),rk=n=>{const l={};let r,h,c;return n&&n.split(` + */const Wr=typeof window<"u";function t5(n){return n.__esModule||n[Symbol.toStringTag]==="Module"}const fe=Object.assign;function Li(n,l){const r={};for(const h in l){const c=l[h];r[h]=Kn(c)?c.map(n):n(c)}return r}const Wo=()=>{},Kn=Array.isArray,e5=/\/$/,n5=n=>n.replace(e5,"");function Di(n,l,r="/"){let h,c={},g="",v="";const k=l.indexOf("#");let x=l.indexOf("?");return k=0&&(x=-1),x>-1&&(h=l.slice(0,x),g=l.slice(x+1,k>-1?k:l.length),c=n(g)),k>-1&&(h=h||l.slice(0,k),v=l.slice(k,l.length)),h=s5(h??l,r),{fullPath:h+(g&&"?")+g+v,path:h,query:c,hash:v}}function l5(n,l){const r=l.query?n(l.query):"";return l.path+(r&&"?")+r+(l.hash||"")}function A1(n,l){return!l||!n.toLowerCase().startsWith(l.toLowerCase())?n:n.slice(l.length)||"/"}function r5(n,l,r){const h=l.matched.length-1,c=r.matched.length-1;return h>-1&&h===c&&eo(l.matched[h],r.matched[c])&&qu(l.params,r.params)&&n(l.query)===n(r.query)&&l.hash===r.hash}function eo(n,l){return(n.aliasOf||n)===(l.aliasOf||l)}function qu(n,l){if(Object.keys(n).length!==Object.keys(l).length)return!1;for(const r in n)if(!o5(n[r],l[r]))return!1;return!0}function o5(n,l){return Kn(n)?B1(n,l):Kn(l)?B1(l,n):n===l}function B1(n,l){return Kn(l)?n.length===l.length&&n.every((r,h)=>r===l[h]):n.length===1&&n[0]===l}function s5(n,l){if(n.startsWith("/"))return n;if(!n)return l;const r=l.split("/"),h=n.split("/"),c=h[h.length-1];(c===".."||c===".")&&h.push("");let g=r.length-1,v,k;for(v=0;v1&&g--;else break;return r.slice(0,g).join("/")+"/"+h.slice(v-(v===h.length?1:0)).join("/")}var rs;(function(n){n.pop="pop",n.push="push"})(rs||(rs={}));var Xo;(function(n){n.back="back",n.forward="forward",n.unknown=""})(Xo||(Xo={}));function a5(n){if(!n)if(Wr){const l=document.querySelector("base");n=l&&l.getAttribute("href")||"/",n=n.replace(/^\w+:\/\/[^\/]+/,"")}else n="/";return n[0]!=="/"&&n[0]!=="#"&&(n="/"+n),n5(n)}const i5=/^[^#]+#/;function h5(n,l){return n.replace(i5,"#")+l}function d5(n,l){const r=document.documentElement.getBoundingClientRect(),h=n.getBoundingClientRect();return{behavior:l.behavior,left:h.left-r.left-(l.left||0),top:h.top-r.top-(l.top||0)}}const Ga=()=>({left:window.pageXOffset,top:window.pageYOffset});function c5(n){let l;if("el"in n){const r=n.el,h=typeof r=="string"&&r.startsWith("#"),c=typeof r=="string"?h?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!c)return;l=d5(c,n)}else l=n;"scrollBehavior"in document.documentElement.style?window.scrollTo(l):window.scrollTo(l.left!=null?l.left:window.pageXOffset,l.top!=null?l.top:window.pageYOffset)}function H1(n,l){return(history.state?history.state.position-l:-1)+n}const x0=new Map;function u5(n,l){x0.set(n,l)}function p5(n){const l=x0.get(n);return x0.delete(n),l}let g5=()=>location.protocol+"//"+location.host;function Yu(n,l){const{pathname:r,search:h,hash:c}=l,g=n.indexOf("#");if(g>-1){let k=c.includes(n.slice(g))?n.slice(g).length:1,x=c.slice(k);return x[0]!=="/"&&(x="/"+x),A1(x,"")}return A1(r,n)+h+c}function w5(n,l,r,h){let c=[],g=[],v=null;const k=({state:B})=>{const P=Yu(n,location),D=r.value,F=l.value;let X=0;if(B){if(r.value=P,l.value=B,v&&v===D){v=null;return}X=F?B.position-F.position:0}else h(P);c.forEach(R=>{R(r.value,D,{delta:X,type:rs.pop,direction:X?X>0?Xo.forward:Xo.back:Xo.unknown})})};function x(){v=r.value}function I(B){c.push(B);const P=()=>{const D=c.indexOf(B);D>-1&&c.splice(D,1)};return g.push(P),P}function S(){const{history:B}=window;B.state&&B.replaceState(fe({},B.state,{scroll:Ga()}),"")}function $(){for(const B of g)B();g=[],window.removeEventListener("popstate",k),window.removeEventListener("beforeunload",S)}return window.addEventListener("popstate",k),window.addEventListener("beforeunload",S,{passive:!0}),{pauseListeners:x,listen:I,destroy:$}}function N1(n,l,r,h=!1,c=!1){return{back:n,current:l,forward:r,replaced:h,position:window.history.length,scroll:c?Ga():null}}function v5(n){const{history:l,location:r}=window,h={value:Yu(n,r)},c={value:l.state};c.value||g(h.value,{back:null,current:h.value,forward:null,position:l.length-1,replaced:!0,scroll:null},!0);function g(x,I,S){const $=n.indexOf("#"),B=$>-1?(r.host&&document.querySelector("base")?n:n.slice($))+x:g5()+n+x;try{l[S?"replaceState":"pushState"](I,"",B),c.value=I}catch(P){console.error(P),r[S?"replace":"assign"](B)}}function v(x,I){const S=fe({},l.state,N1(c.value.back,x,c.value.forward,!0),I,{position:c.value.position});g(x,S,!0),h.value=x}function k(x,I){const S=fe({},c.value,l.state,{forward:x,scroll:Ga()});g(S.current,S,!0);const $=fe({},N1(h.value,x,null),{position:S.position+1},I);g(x,$,!1),h.value=x}return{location:h,state:c,push:k,replace:v}}function f5(n){n=a5(n);const l=v5(n),r=w5(n,l.state,l.location,l.replace);function h(g,v=!0){v||r.pauseListeners(),history.go(g)}const c=fe({location:"",base:n,go:h,createHref:h5.bind(null,n)},l,r);return Object.defineProperty(c,"location",{enumerable:!0,get:()=>l.location.value}),Object.defineProperty(c,"state",{enumerable:!0,get:()=>l.state.value}),c}function m5(n){return typeof n=="string"||n&&typeof n=="object"}function Uu(n){return typeof n=="string"||typeof n=="symbol"}const Pl={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Gu=Symbol("");var j1;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(j1||(j1={}));function no(n,l){return fe(new Error,{type:n,[Gu]:!0},l)}function dl(n,l){return n instanceof Error&&Gu in n&&(l==null||!!(n.type&l))}const P1="[^/]+?",k5={sensitive:!1,strict:!1,start:!0,end:!0},b5=/[.+*?^${}()[\]/\\]/g;function M5(n,l){const r=fe({},k5,l),h=[];let c=r.start?"^":"";const g=[];for(const I of n){const S=I.length?[]:[90];r.strict&&!I.length&&(c+="/");for(let $=0;$l.length?l.length===1&&l[0]===40+40?1:-1:0}function z5(n,l){let r=0;const h=n.score,c=l.score;for(;r0&&l[l.length-1]<0}const I5={type:0,value:""},y5=/[a-zA-Z0-9_]/;function C5(n){if(!n)return[[]];if(n==="/")return[[I5]];if(!n.startsWith("/"))throw new Error(`Invalid path "${n}"`);function l(P){throw new Error(`ERR (${r})/"${I}": ${P}`)}let r=0,h=r;const c=[];let g;function v(){g&&c.push(g),g=[]}let k=0,x,I="",S="";function $(){I&&(r===0?g.push({type:0,value:I}):r===1||r===2||r===3?(g.length>1&&(x==="*"||x==="+")&&l(`A repeatable param (${I}) must be alone in its segment. eg: '/:ids+.`),g.push({type:1,value:I,regexp:S,repeatable:x==="*"||x==="+",optional:x==="*"||x==="?"})):l("Invalid state to consume buffer"),I="")}function B(){I+=x}for(;k{v(H)}:Wo}function v(S){if(Uu(S)){const $=h.get(S);$&&(h.delete(S),r.splice(r.indexOf($),1),$.children.forEach(v),$.alias.forEach(v))}else{const $=r.indexOf(S);$>-1&&(r.splice($,1),S.record.name&&h.delete(S.record.name),S.children.forEach(v),S.alias.forEach(v))}}function k(){return r}function x(S){let $=0;for(;$=0&&(S.record.path!==r[$].record.path||!Zu(S,r[$]));)$++;r.splice($,0,S),S.record.name&&!O1(S)&&h.set(S.record.name,S)}function I(S,$){let B,P={},D,F;if("name"in S&&S.name){if(B=h.get(S.name),!B)throw no(1,{location:S});F=B.record.name,P=fe(D1($.params,B.keys.filter(H=>!H.optional).map(H=>H.name)),S.params&&D1(S.params,B.keys.map(H=>H.name))),D=B.stringify(P)}else if("path"in S)D=S.path,B=r.find(H=>H.re.test(D)),B&&(P=B.parse(D),F=B.record.name);else{if(B=$.name?h.get($.name):r.find(H=>H.re.test($.path)),!B)throw no(1,{location:S,currentLocation:$});F=B.record.name,P=fe({},$.params,S.params),D=B.stringify(P)}const X=[];let R=B;for(;R;)X.unshift(R.record),R=R.parent;return{name:F,path:D,params:P,matched:X,meta:H5(X)}}return n.forEach(S=>g(S)),{addRoute:g,resolve:I,removeRoute:v,getRoutes:k,getRecordMatcher:c}}function D1(n,l){const r={};for(const h of l)h in n&&(r[h]=n[h]);return r}function A5(n){return{path:n.path,redirect:n.redirect,name:n.name,meta:n.meta||{},aliasOf:void 0,beforeEnter:n.beforeEnter,props:B5(n),children:n.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in n?n.components||null:n.component&&{default:n.component}}}function B5(n){const l={},r=n.props||!1;if("component"in n)l.default=r;else for(const h in n.components)l[h]=typeof r=="object"?r[h]:r;return l}function O1(n){for(;n;){if(n.record.aliasOf)return!0;n=n.parent}return!1}function H5(n){return n.reduce((l,r)=>fe(l,r.meta),{})}function F1(n,l){const r={};for(const h in n)r[h]=h in l?l[h]:n[h];return r}function Zu(n,l){return l.children.some(r=>r===n||Zu(n,r))}const Ku=/#/g,N5=/&/g,j5=/\//g,P5=/=/g,L5=/\?/g,Qu=/\+/g,D5=/%5B/g,O5=/%5D/g,Ju=/%5E/g,F5=/%60/g,tp=/%7B/g,R5=/%7C/g,ep=/%7D/g,T5=/%20/g;function Xh(n){return encodeURI(""+n).replace(R5,"|").replace(D5,"[").replace(O5,"]")}function E5(n){return Xh(n).replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function z0(n){return Xh(n).replace(Qu,"%2B").replace(T5,"+").replace(Ku,"%23").replace(N5,"%26").replace(F5,"`").replace(tp,"{").replace(ep,"}").replace(Ju,"^")}function V5(n){return z0(n).replace(P5,"%3D")}function _5(n){return Xh(n).replace(Ku,"%23").replace(L5,"%3F")}function W5(n){return n==null?"":_5(n).replace(j5,"%2F")}function wa(n){try{return decodeURIComponent(""+n)}catch{}return""+n}function X5(n){const l={};if(n===""||n==="?")return l;const h=(n[0]==="?"?n.slice(1):n).split("&");for(let c=0;cg&&z0(g)):[h&&z0(h)]).forEach(g=>{g!==void 0&&(l+=(l.length?"&":"")+r,g!=null&&(l+="="+g))})}return l}function q5(n){const l={};for(const r in n){const h=n[r];h!==void 0&&(l[r]=Kn(h)?h.map(c=>c==null?null:""+c):h==null?h:""+h)}return l}const Y5=Symbol(""),T1=Symbol(""),qh=Symbol(""),np=Symbol(""),I0=Symbol("");function $o(){let n=[];function l(h){return n.push(h),()=>{const c=n.indexOf(h);c>-1&&n.splice(c,1)}}function r(){n=[]}return{add:l,list:()=>n.slice(),reset:r}}function Rl(n,l,r,h,c){const g=h&&(h.enterCallbacks[c]=h.enterCallbacks[c]||[]);return()=>new Promise((v,k)=>{const x=$=>{$===!1?k(no(4,{from:r,to:l})):$ instanceof Error?k($):m5($)?k(no(2,{from:l,to:$})):(g&&h.enterCallbacks[c]===g&&typeof $=="function"&&g.push($),v())},I=n.call(h&&h.instances[c],l,r,x);let S=Promise.resolve(I);n.length<3&&(S=S.then(x)),S.catch($=>k($))})}function Oi(n,l,r,h){const c=[];for(const g of n)for(const v in g.components){let k=g.components[v];if(!(l!=="beforeRouteEnter"&&!g.instances[v]))if(U5(k)){const I=(k.__vccOpts||k)[l];I&&c.push(Rl(I,r,h,g,v))}else{let x=k();c.push(()=>x.then(I=>{if(!I)return Promise.reject(new Error(`Couldn't resolve component "${v}" at "${g.path}"`));const S=t5(I)?I.default:I;g.components[v]=S;const B=(S.__vccOpts||S)[l];return B&&Rl(B,r,h,g,v)()}))}}return c}function U5(n){return typeof n=="object"||"displayName"in n||"props"in n||"__vccOpts"in n}function E1(n){const l=de(qh),r=de(np),h=q(()=>l.resolve(je(n.to))),c=q(()=>{const{matched:x}=h.value,{length:I}=x,S=x[I-1],$=r.matched;if(!S||!$.length)return-1;const B=$.findIndex(eo.bind(null,S));if(B>-1)return B;const P=V1(x[I-2]);return I>1&&V1(S)===P&&$[$.length-1].path!==P?$.findIndex(eo.bind(null,x[I-2])):B}),g=q(()=>c.value>-1&&Q5(r.params,h.value.params)),v=q(()=>c.value>-1&&c.value===r.matched.length-1&&qu(r.params,h.value.params));function k(x={}){return K5(x)?l[je(n.replace)?"replace":"push"](je(n.to)).catch(Wo):Promise.resolve()}return{route:h,href:q(()=>h.value.href),isActive:g,isExactActive:v,navigate:k}}const G5=Cr({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:E1,setup(n,{slots:l}){const r=Ze(E1(n)),{options:h}=de(qh),c=q(()=>({[_1(n.activeClass,h.linkActiveClass,"router-link-active")]:r.isActive,[_1(n.exactActiveClass,h.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const g=l.default&&l.default(r);return n.custom?g:Ln("a",{"aria-current":r.isExactActive?n.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:c.value},g)}}}),Z5=G5;function K5(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const l=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(l))return}return n.preventDefault&&n.preventDefault(),!0}}function Q5(n,l){for(const r in l){const h=l[r],c=n[r];if(typeof h=="string"){if(h!==c)return!1}else if(!Kn(c)||c.length!==h.length||h.some((g,v)=>g!==c[v]))return!1}return!0}function V1(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const _1=(n,l,r)=>n??l??r,J5=Cr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(n,{attrs:l,slots:r}){const h=de(I0),c=q(()=>n.route||h.value),g=de(T1,0),v=q(()=>{let I=je(g);const{matched:S}=c.value;let $;for(;($=S[I])&&!$.components;)I++;return I}),k=q(()=>c.value.matched[v.value]);Se(T1,q(()=>v.value+1)),Se(Y5,k),Se(I0,c);const x=Lt();return _t(()=>[x.value,k.value,n.name],([I,S,$],[B,P,D])=>{S&&(S.instances[$]=I,P&&P!==S&&I&&I===B&&(S.leaveGuards.size||(S.leaveGuards=P.leaveGuards),S.updateGuards.size||(S.updateGuards=P.updateGuards))),I&&S&&(!P||!eo(S,P)||!B)&&(S.enterCallbacks[$]||[]).forEach(F=>F(I))},{flush:"post"}),()=>{const I=c.value,S=n.name,$=k.value,B=$&&$.components[S];if(!B)return W1(r.default,{Component:B,route:I});const P=$.props[S],D=P?P===!0?I.params:typeof P=="function"?P(I):P:null,X=Ln(B,fe({},D,l,{onVnodeUnmounted:R=>{R.component.isUnmounted&&($.instances[S]=null)},ref:x}));return W1(r.default,{Component:X,route:I})||X}}});function W1(n,l){if(!n)return null;const r=n(l);return r.length===1?r[0]:r}const lp=J5;function tm(n){const l=$5(n.routes,n),r=n.parseQuery||X5,h=n.stringifyQuery||R1,c=n.history,g=$o(),v=$o(),k=$o(),x=Wt(Pl);let I=Pl;Wr&&n.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const S=Li.bind(null,pt=>""+pt),$=Li.bind(null,W5),B=Li.bind(null,wa);function P(pt,Nt){let jt,bt;return Uu(pt)?(jt=l.getRecordMatcher(pt),bt=Nt):bt=pt,l.addRoute(bt,jt)}function D(pt){const Nt=l.getRecordMatcher(pt);Nt&&l.removeRoute(Nt)}function F(){return l.getRoutes().map(pt=>pt.record)}function X(pt){return!!l.getRecordMatcher(pt)}function R(pt,Nt){if(Nt=fe({},Nt||x.value),typeof pt=="string"){const at=Di(r,pt,Nt.path),ct=l.resolve({path:at.path},Nt),kt=c.createHref(at.fullPath);return fe(at,ct,{params:B(ct.params),hash:wa(at.hash),redirectedFrom:void 0,href:kt})}let jt;if("path"in pt)jt=fe({},pt,{path:Di(r,pt.path,Nt.path).path});else{const at=fe({},pt.params);for(const ct in at)at[ct]==null&&delete at[ct];jt=fe({},pt,{params:$(at)}),Nt.params=$(Nt.params)}const bt=l.resolve(jt,Nt),ft=pt.hash||"";bt.params=S(B(bt.params));const J=l5(h,fe({},pt,{hash:E5(ft),path:bt.path})),lt=c.createHref(J);return fe({fullPath:J,hash:ft,query:h===R1?q5(pt.query):pt.query||{}},bt,{redirectedFrom:void 0,href:lt})}function H(pt){return typeof pt=="string"?Di(r,pt,x.value.path):fe({},pt)}function U(pt,Nt){if(I!==pt)return no(8,{from:Nt,to:pt})}function W(pt){return nt(pt)}function _(pt){return W(fe(H(pt),{replace:!0}))}function tt(pt){const Nt=pt.matched[pt.matched.length-1];if(Nt&&Nt.redirect){const{redirect:jt}=Nt;let bt=typeof jt=="function"?jt(pt):jt;return typeof bt=="string"&&(bt=bt.includes("?")||bt.includes("#")?bt=H(bt):{path:bt},bt.params={}),fe({query:pt.query,hash:pt.hash,params:"path"in bt?{}:pt.params},bt)}}function nt(pt,Nt){const jt=I=R(pt),bt=x.value,ft=pt.state,J=pt.force,lt=pt.replace===!0,at=tt(jt);if(at)return nt(fe(H(at),{state:typeof at=="object"?fe({},ft,at.state):ft,force:J,replace:lt}),Nt||jt);const ct=jt;ct.redirectedFrom=Nt;let kt;return!J&&r5(h,bt,jt)&&(kt=no(16,{to:ct,from:bt}),Tt(bt,bt,!0,!1)),(kt?Promise.resolve(kt):et(ct,bt)).catch(yt=>dl(yt)?dl(yt,2)?yt:At(yt):gt(yt,ct,bt)).then(yt=>{if(yt){if(dl(yt,2))return nt(fe({replace:lt},H(yt.to),{state:typeof yt.to=="object"?fe({},ft,yt.to.state):ft,force:J}),Nt||ct)}else yt=rt(ct,bt,!0,lt,ft);return st(ct,bt,yt),yt})}function Y(pt,Nt){const jt=U(pt,Nt);return jt?Promise.reject(jt):Promise.resolve()}function G(pt){const Nt=Jt.values().next().value;return Nt&&typeof Nt.runWithContext=="function"?Nt.runWithContext(pt):pt()}function et(pt,Nt){let jt;const[bt,ft,J]=em(pt,Nt);jt=Oi(bt.reverse(),"beforeRouteLeave",pt,Nt);for(const at of bt)at.leaveGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});const lt=Y.bind(null,pt,Nt);return jt.push(lt),ut(jt).then(()=>{jt=[];for(const at of g.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>{jt=Oi(ft,"beforeRouteUpdate",pt,Nt);for(const at of ft)at.updateGuards.forEach(ct=>{jt.push(Rl(ct,pt,Nt))});return jt.push(lt),ut(jt)}).then(()=>{jt=[];for(const at of J)if(at.beforeEnter)if(Kn(at.beforeEnter))for(const ct of at.beforeEnter)jt.push(Rl(ct,pt,Nt));else jt.push(Rl(at.beforeEnter,pt,Nt));return jt.push(lt),ut(jt)}).then(()=>(pt.matched.forEach(at=>at.enterCallbacks={}),jt=Oi(J,"beforeRouteEnter",pt,Nt),jt.push(lt),ut(jt))).then(()=>{jt=[];for(const at of v.list())jt.push(Rl(at,pt,Nt));return jt.push(lt),ut(jt)}).catch(at=>dl(at,8)?at:Promise.reject(at))}function st(pt,Nt,jt){k.list().forEach(bt=>G(()=>bt(pt,Nt,jt)))}function rt(pt,Nt,jt,bt,ft){const J=U(pt,Nt);if(J)return J;const lt=Nt===Pl,at=Wr?history.state:{};jt&&(bt||lt?c.replace(pt.fullPath,fe({scroll:lt&&at&&at.scroll},ft)):c.push(pt.fullPath,ft)),x.value=pt,Tt(pt,Nt,jt,lt),At()}let ht;function dt(){ht||(ht=c.listen((pt,Nt,jt)=>{if(!Et.listening)return;const bt=R(pt),ft=tt(bt);if(ft){nt(fe(ft,{replace:!0}),bt).catch(Wo);return}I=bt;const J=x.value;Wr&&u5(H1(J.fullPath,jt.delta),Ga()),et(bt,J).catch(lt=>dl(lt,12)?lt:dl(lt,2)?(nt(lt.to,bt).then(at=>{dl(at,20)&&!jt.delta&&jt.type===rs.pop&&c.go(-1,!1)}).catch(Wo),Promise.reject()):(jt.delta&&c.go(-jt.delta,!1),gt(lt,bt,J))).then(lt=>{lt=lt||rt(bt,J,!1),lt&&(jt.delta&&!dl(lt,8)?c.go(-jt.delta,!1):jt.type===rs.pop&&dl(lt,20)&&c.go(-1,!1)),st(bt,J,lt)}).catch(Wo)}))}let Ct=$o(),xt=$o(),wt;function gt(pt,Nt,jt){At(pt);const bt=xt.list();return bt.length?bt.forEach(ft=>ft(pt,Nt,jt)):console.error(pt),Promise.reject(pt)}function It(){return wt&&x.value!==Pl?Promise.resolve():new Promise((pt,Nt)=>{Ct.add([pt,Nt])})}function At(pt){return wt||(wt=!pt,dt(),Ct.list().forEach(([Nt,jt])=>pt?jt(pt):Nt()),Ct.reset()),pt}function Tt(pt,Nt,jt,bt){const{scrollBehavior:ft}=n;if(!Wr||!ft)return Promise.resolve();const J=!jt&&p5(H1(pt.fullPath,0))||(bt||!jt)&&history.state&&history.state.scroll||null;return we().then(()=>ft(pt,Nt,J)).then(lt=>lt&&c5(lt)).catch(lt=>gt(lt,pt,Nt))}const Ft=pt=>c.go(pt);let Qt;const Jt=new Set,Et={currentRoute:x,listening:!0,addRoute:P,removeRoute:D,hasRoute:X,getRoutes:F,resolve:R,options:n,push:W,replace:_,go:Ft,back:()=>Ft(-1),forward:()=>Ft(1),beforeEach:g.add,beforeResolve:v.add,afterEach:k.add,onError:xt.add,isReady:It,install(pt){const Nt=this;pt.component("RouterLink",Z5),pt.component("RouterView",lp),pt.config.globalProperties.$router=Nt,Object.defineProperty(pt.config.globalProperties,"$route",{enumerable:!0,get:()=>je(x)}),Wr&&!Qt&&x.value===Pl&&(Qt=!0,W(c.location).catch(ft=>{}));const jt={};for(const ft in Pl)Object.defineProperty(jt,ft,{get:()=>x.value[ft],enumerable:!0});pt.provide(qh,Nt),pt.provide(np,fh(jt)),pt.provide(I0,x);const bt=pt.unmount;Jt.add(pt),pt.unmount=function(){Jt.delete(pt),Jt.size<1&&(I=Pl,ht&&ht(),ht=null,x.value=Pl,Qt=!1,wt=!1),bt()}}};function ut(pt){return pt.reduce((Nt,jt)=>Nt.then(()=>G(jt)),Promise.resolve())}return Et}function em(n,l){const r=[],h=[],c=[],g=Math.max(l.matched.length,n.matched.length);for(let v=0;veo(I,k))?h.push(k):r.push(k));const x=n.matched[v];x&&(l.matched.find(I=>eo(I,x))||c.push(x))}return[r,h,c]}const nm=Cr({__name:"App",setup(n){return(l,r)=>(xs(),_a(je(lp)))}}),lm="modulepreload",rm=function(n){return"/"+n},X1={},en=function(l,r,h){if(!r||r.length===0)return l();const c=document.getElementsByTagName("link");return Promise.all(r.map(g=>{if(g=rm(g),g in X1)return;X1[g]=!0;const v=g.endsWith(".css"),k=v?'[rel="stylesheet"]':"";if(!!h)for(let S=c.length-1;S>=0;S--){const $=c[S];if($.href===g&&(!v||$.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${k}`))return;const I=document.createElement("link");if(I.rel=v?"stylesheet":lm,v||(I.as="script",I.crossOrigin=""),I.href=g,document.head.appendChild(I),v)return new Promise((S,$)=>{I.addEventListener("load",S),I.addEventListener("error",()=>$(new Error(`Unable to preload CSS for ${g}`)))})})).then(()=>l()).catch(g=>{const v=new Event("vite:preloadError",{cancelable:!0});if(v.payload=g,window.dispatchEvent(v),!v.defaultPrevented)throw g})},om={path:"/main",meta:{requiresAuth:!0},redirect:"/main/dashboard/default",component:()=>en(()=>import("./FullLayout-b15267ed.js"),["assets/FullLayout-b15267ed.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js","assets/md5-c4ed0ff4.js"]),children:[{name:"Dashboard",path:"/",component:()=>en(()=>import("./DefaultDashboard-f7afff9c.js"),["assets/DefaultDashboard-f7afff9c.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Extensions",path:"/extension",component:()=>en(()=>import("./ExtensionPage-fc6b100e.js"),[])},{name:"Configs",path:"/config",component:()=>en(()=>import("./ConfigPage-3d69363d.js"),["assets/ConfigPage-3d69363d.js","assets/UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js"])},{name:"Default",path:"/dashboard/default",component:()=>en(()=>import("./DefaultDashboard-f7afff9c.js"),["assets/DefaultDashboard-f7afff9c.js","assets/_plugin-vue_export-helper-c27b6911.js"])},{name:"Console",path:"/console",component:()=>en(()=>import("./ConsolePage-ae9ea987.js"),["assets/ConsolePage-ae9ea987.js","assets/ConsolePage-e3b0c442.css"])},{name:"Tabler Icons",path:"/icons/tabler",component:()=>en(()=>import("./TablerIcons-d2cd165a.js"),["assets/TablerIcons-d2cd165a.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js"])},{name:"Material Icons",path:"/icons/material",component:()=>en(()=>import("./MaterialIcons-715117a5.js"),["assets/MaterialIcons-715117a5.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js"])},{name:"Typography",path:"/utils/typography",component:()=>en(()=>import("./TypographyPage-1ff2ad6a.js"),["assets/TypographyPage-1ff2ad6a.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js"])},{name:"Shadows",path:"/utils/shadows",component:()=>en(()=>import("./ShadowPage-5a263e47.js"),["assets/ShadowPage-5a263e47.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js"])},{name:"Colors",path:"/utils/colors",component:()=>en(()=>import("./ColorPage-fe404e65.js"),["assets/ColorPage-fe404e65.js","assets/BaseBreadcrumb.vue_vue_type_style_index_0_lang-89ca5198.js","assets/BaseBreadcrumb-4d676ba5.css","assets/UiParentCard.vue_vue_type_script_setup_true_lang-03a5c441.js"])}]},sm={path:"/auth",component:()=>en(()=>import("./BlankLayout-7c60dfeb.js"),[]),meta:{requiresAuth:!1},children:[{name:"Login",path:"/auth/login",component:()=>en(()=>import("./LoginPage-7b049444.js"),["assets/LoginPage-7b049444.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js","assets/md5-c4ed0ff4.js","assets/LoginPage-74e85ca7.css"])},{name:"Register",path:"/auth/register",component:()=>en(()=>import("./RegisterPage-29cdbb0f.js"),["assets/RegisterPage-29cdbb0f.js","assets/LogoDark.vue_vue_type_script_setup_true_lang-4faa128a.js","assets/RegisterPage-799ed804.css"])},{name:"Error 404",path:"/pages/error",component:()=>en(()=>import("./Error404Page-e144fe8e.js"),["assets/Error404Page-e144fe8e.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])}]};function rp(n,l){return function(){return n.apply(l,arguments)}}const{toString:am}=Object.prototype,{getPrototypeOf:Yh}=Object,Za=(n=>l=>{const r=am.call(l);return n[r]||(n[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),il=n=>(n=n.toLowerCase(),l=>Za(l)===n),Ka=n=>l=>typeof l===n,{isArray:po}=Array,os=Ka("undefined");function im(n){return n!==null&&!os(n)&&n.constructor!==null&&!os(n.constructor)&&jn(n.constructor.isBuffer)&&n.constructor.isBuffer(n)}const op=il("ArrayBuffer");function hm(n){let l;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?l=ArrayBuffer.isView(n):l=n&&n.buffer&&op(n.buffer),l}const dm=Ka("string"),jn=Ka("function"),sp=Ka("number"),Qa=n=>n!==null&&typeof n=="object",cm=n=>n===!0||n===!1,ra=n=>{if(Za(n)!=="object")return!1;const l=Yh(n);return(l===null||l===Object.prototype||Object.getPrototypeOf(l)===null)&&!(Symbol.toStringTag in n)&&!(Symbol.iterator in n)},um=il("Date"),pm=il("File"),gm=il("Blob"),wm=il("FileList"),vm=n=>Qa(n)&&jn(n.pipe),fm=n=>{let l;return n&&(typeof FormData=="function"&&n instanceof FormData||jn(n.append)&&((l=Za(n))==="formdata"||l==="object"&&jn(n.toString)&&n.toString()==="[object FormData]"))},mm=il("URLSearchParams"),km=n=>n.trim?n.trim():n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ys(n,l,{allOwnKeys:r=!1}={}){if(n===null||typeof n>"u")return;let h,c;if(typeof n!="object"&&(n=[n]),po(n))for(h=0,c=n.length;h0;)if(c=r[h],l===c.toLowerCase())return c;return null}const ip=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),hp=n=>!os(n)&&n!==ip;function y0(){const{caseless:n}=hp(this)&&this||{},l={},r=(h,c)=>{const g=n&&ap(l,c)||c;ra(l[g])&&ra(h)?l[g]=y0(l[g],h):ra(h)?l[g]=y0({},h):po(h)?l[g]=h.slice():l[g]=h};for(let h=0,c=arguments.length;h(ys(l,(c,g)=>{r&&jn(c)?n[g]=rp(c,r):n[g]=c},{allOwnKeys:h}),n),Mm=n=>(n.charCodeAt(0)===65279&&(n=n.slice(1)),n),xm=(n,l,r,h)=>{n.prototype=Object.create(l.prototype,h),n.prototype.constructor=n,Object.defineProperty(n,"super",{value:l.prototype}),r&&Object.assign(n.prototype,r)},zm=(n,l,r,h)=>{let c,g,v;const k={};if(l=l||{},n==null)return l;do{for(c=Object.getOwnPropertyNames(n),g=c.length;g-- >0;)v=c[g],(!h||h(v,n,l))&&!k[v]&&(l[v]=n[v],k[v]=!0);n=r!==!1&&Yh(n)}while(n&&(!r||r(n,l))&&n!==Object.prototype);return l},Im=(n,l,r)=>{n=String(n),(r===void 0||r>n.length)&&(r=n.length),r-=l.length;const h=n.indexOf(l,r);return h!==-1&&h===r},ym=n=>{if(!n)return null;if(po(n))return n;let l=n.length;if(!sp(l))return null;const r=new Array(l);for(;l-- >0;)r[l]=n[l];return r},Cm=(n=>l=>n&&l instanceof n)(typeof Uint8Array<"u"&&Yh(Uint8Array)),Sm=(n,l)=>{const h=(n&&n[Symbol.iterator]).call(n);let c;for(;(c=h.next())&&!c.done;){const g=c.value;l.call(n,g[0],g[1])}},$m=(n,l)=>{let r;const h=[];for(;(r=n.exec(l))!==null;)h.push(r);return h},Am=il("HTMLFormElement"),Bm=n=>n.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,h,c){return h.toUpperCase()+c}),q1=(({hasOwnProperty:n})=>(l,r)=>n.call(l,r))(Object.prototype),Hm=il("RegExp"),dp=(n,l)=>{const r=Object.getOwnPropertyDescriptors(n),h={};ys(r,(c,g)=>{let v;(v=l(c,g,n))!==!1&&(h[g]=v||c)}),Object.defineProperties(n,h)},Nm=n=>{dp(n,(l,r)=>{if(jn(n)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;const h=n[r];if(jn(h)){if(l.enumerable=!1,"writable"in l){l.writable=!1;return}l.set||(l.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},jm=(n,l)=>{const r={},h=c=>{c.forEach(g=>{r[g]=!0})};return po(n)?h(n):h(String(n).split(l)),r},Pm=()=>{},Lm=(n,l)=>(n=+n,Number.isFinite(n)?n:l),Fi="abcdefghijklmnopqrstuvwxyz",Y1="0123456789",cp={DIGIT:Y1,ALPHA:Fi,ALPHA_DIGIT:Fi+Fi.toUpperCase()+Y1},Dm=(n=16,l=cp.ALPHA_DIGIT)=>{let r="";const{length:h}=l;for(;n--;)r+=l[Math.random()*h|0];return r};function Om(n){return!!(n&&jn(n.append)&&n[Symbol.toStringTag]==="FormData"&&n[Symbol.iterator])}const Fm=n=>{const l=new Array(10),r=(h,c)=>{if(Qa(h)){if(l.indexOf(h)>=0)return;if(!("toJSON"in h)){l[c]=h;const g=po(h)?[]:{};return ys(h,(v,k)=>{const x=r(v,c+1);!os(x)&&(g[k]=x)}),l[c]=void 0,g}}return h};return r(n,0)},Rm=il("AsyncFunction"),Tm=n=>n&&(Qa(n)||jn(n))&&jn(n.then)&&jn(n.catch),St={isArray:po,isArrayBuffer:op,isBuffer:im,isFormData:fm,isArrayBufferView:hm,isString:dm,isNumber:sp,isBoolean:cm,isObject:Qa,isPlainObject:ra,isUndefined:os,isDate:um,isFile:pm,isBlob:gm,isRegExp:Hm,isFunction:jn,isStream:vm,isURLSearchParams:mm,isTypedArray:Cm,isFileList:wm,forEach:ys,merge:y0,extend:bm,trim:km,stripBOM:Mm,inherits:xm,toFlatObject:zm,kindOf:Za,kindOfTest:il,endsWith:Im,toArray:ym,forEachEntry:Sm,matchAll:$m,isHTMLForm:Am,hasOwnProperty:q1,hasOwnProp:q1,reduceDescriptors:dp,freezeMethods:Nm,toObjectSet:jm,toCamelCase:Bm,noop:Pm,toFiniteNumber:Lm,findKey:ap,global:ip,isContextDefined:hp,ALPHABET:cp,generateString:Dm,isSpecCompliantForm:Om,toJSONObject:Fm,isAsyncFn:Rm,isThenable:Tm};function pe(n,l,r,h,c){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=n,this.name="AxiosError",l&&(this.code=l),r&&(this.config=r),h&&(this.request=h),c&&(this.response=c)}St.inherits(pe,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:St.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const up=pe.prototype,pp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(n=>{pp[n]={value:n}});Object.defineProperties(pe,pp);Object.defineProperty(up,"isAxiosError",{value:!0});pe.from=(n,l,r,h,c,g)=>{const v=Object.create(up);return St.toFlatObject(n,v,function(x){return x!==Error.prototype},k=>k!=="isAxiosError"),pe.call(v,n.message,l,r,h,c),v.cause=n,v.name=n.name,g&&Object.assign(v,g),v};const Em=null;function C0(n){return St.isPlainObject(n)||St.isArray(n)}function gp(n){return St.endsWith(n,"[]")?n.slice(0,-2):n}function U1(n,l,r){return n?n.concat(l).map(function(c,g){return c=gp(c),!r&&g?"["+c+"]":c}).join(r?".":""):l}function Vm(n){return St.isArray(n)&&!n.some(C0)}const _m=St.toFlatObject(St,{},null,function(l){return/^is[A-Z]/.test(l)});function Ja(n,l,r){if(!St.isObject(n))throw new TypeError("target must be an object");l=l||new FormData,r=St.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(F,X){return!St.isUndefined(X[F])});const h=r.metaTokens,c=r.visitor||S,g=r.dots,v=r.indexes,x=(r.Blob||typeof Blob<"u"&&Blob)&&St.isSpecCompliantForm(l);if(!St.isFunction(c))throw new TypeError("visitor must be a function");function I(D){if(D===null)return"";if(St.isDate(D))return D.toISOString();if(!x&&St.isBlob(D))throw new pe("Blob is not supported. Use a Buffer instead.");return St.isArrayBuffer(D)||St.isTypedArray(D)?x&&typeof Blob=="function"?new Blob([D]):Buffer.from(D):D}function S(D,F,X){let R=D;if(D&&!X&&typeof D=="object"){if(St.endsWith(F,"{}"))F=h?F:F.slice(0,-2),D=JSON.stringify(D);else if(St.isArray(D)&&Vm(D)||(St.isFileList(D)||St.endsWith(F,"[]"))&&(R=St.toArray(D)))return F=gp(F),R.forEach(function(U,W){!(St.isUndefined(U)||U===null)&&l.append(v===!0?U1([F],W,g):v===null?F:F+"[]",I(U))}),!1}return C0(D)?!0:(l.append(U1(X,F,g),I(D)),!1)}const $=[],B=Object.assign(_m,{defaultVisitor:S,convertValue:I,isVisitable:C0});function P(D,F){if(!St.isUndefined(D)){if($.indexOf(D)!==-1)throw Error("Circular reference detected in "+F.join("."));$.push(D),St.forEach(D,function(R,H){(!(St.isUndefined(R)||R===null)&&c.call(l,R,St.isString(H)?H.trim():H,F,B))===!0&&P(R,F?F.concat(H):[H])}),$.pop()}}if(!St.isObject(n))throw new TypeError("data must be an object");return P(n),l}function G1(n){const l={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(n).replace(/[!'()~]|%20|%00/g,function(h){return l[h]})}function Uh(n,l){this._pairs=[],n&&Ja(n,this,l)}const wp=Uh.prototype;wp.append=function(l,r){this._pairs.push([l,r])};wp.toString=function(l){const r=l?function(h){return l.call(this,h,G1)}:G1;return this._pairs.map(function(c){return r(c[0])+"="+r(c[1])},"").join("&")};function Wm(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function vp(n,l,r){if(!l)return n;const h=r&&r.encode||Wm,c=r&&r.serialize;let g;if(c?g=c(l,r):g=St.isURLSearchParams(l)?l.toString():new Uh(l,r).toString(h),g){const v=n.indexOf("#");v!==-1&&(n=n.slice(0,v)),n+=(n.indexOf("?")===-1?"?":"&")+g}return n}class Xm{constructor(){this.handlers=[]}use(l,r,h){return this.handlers.push({fulfilled:l,rejected:r,synchronous:h?h.synchronous:!1,runWhen:h?h.runWhen:null}),this.handlers.length-1}eject(l){this.handlers[l]&&(this.handlers[l]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(l){St.forEach(this.handlers,function(h){h!==null&&l(h)})}}const Z1=Xm,fp={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},qm=typeof URLSearchParams<"u"?URLSearchParams:Uh,Ym=typeof FormData<"u"?FormData:null,Um=typeof Blob<"u"?Blob:null,Gm={isBrowser:!0,classes:{URLSearchParams:qm,FormData:Ym,Blob:Um},protocols:["http","https","file","blob","url","data"]},mp=typeof window<"u"&&typeof document<"u",Zm=(n=>mp&&["ReactNative","NativeScript","NS"].indexOf(n)<0)(typeof navigator<"u"&&navigator.product),Km=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Qm=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:mp,hasStandardBrowserEnv:Zm,hasStandardBrowserWebWorkerEnv:Km},Symbol.toStringTag,{value:"Module"})),nl={...Qm,...Gm};function Jm(n,l){return Ja(n,new nl.classes.URLSearchParams,Object.assign({visitor:function(r,h,c,g){return nl.isNode&&St.isBuffer(r)?(this.append(h,r.toString("base64")),!1):g.defaultVisitor.apply(this,arguments)}},l))}function tk(n){return St.matchAll(/\w+|\[(\w*)]/g,n).map(l=>l[0]==="[]"?"":l[1]||l[0])}function ek(n){const l={},r=Object.keys(n);let h;const c=r.length;let g;for(h=0;h=r.length;return v=!v&&St.isArray(c)?c.length:v,x?(St.hasOwnProp(c,v)?c[v]=[c[v],h]:c[v]=h,!k):((!c[v]||!St.isObject(c[v]))&&(c[v]=[]),l(r,h,c[v],g)&&St.isArray(c[v])&&(c[v]=ek(c[v])),!k)}if(St.isFormData(n)&&St.isFunction(n.entries)){const r={};return St.forEachEntry(n,(h,c)=>{l(tk(h),c,r,0)}),r}return null}function nk(n,l,r){if(St.isString(n))try{return(l||JSON.parse)(n),St.trim(n)}catch(h){if(h.name!=="SyntaxError")throw h}return(r||JSON.stringify)(n)}const Gh={transitional:fp,adapter:["xhr","http"],transformRequest:[function(l,r){const h=r.getContentType()||"",c=h.indexOf("application/json")>-1,g=St.isObject(l);if(g&&St.isHTMLForm(l)&&(l=new FormData(l)),St.isFormData(l))return c&&c?JSON.stringify(kp(l)):l;if(St.isArrayBuffer(l)||St.isBuffer(l)||St.isStream(l)||St.isFile(l)||St.isBlob(l))return l;if(St.isArrayBufferView(l))return l.buffer;if(St.isURLSearchParams(l))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),l.toString();let k;if(g){if(h.indexOf("application/x-www-form-urlencoded")>-1)return Jm(l,this.formSerializer).toString();if((k=St.isFileList(l))||h.indexOf("multipart/form-data")>-1){const x=this.env&&this.env.FormData;return Ja(k?{"files[]":l}:l,x&&new x,this.formSerializer)}}return g||c?(r.setContentType("application/json",!1),nk(l)):l}],transformResponse:[function(l){const r=this.transitional||Gh.transitional,h=r&&r.forcedJSONParsing,c=this.responseType==="json";if(l&&St.isString(l)&&(h&&!this.responseType||c)){const v=!(r&&r.silentJSONParsing)&&c;try{return JSON.parse(l)}catch(k){if(v)throw k.name==="SyntaxError"?pe.from(k,pe.ERR_BAD_RESPONSE,this,null,this.response):k}}return l}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:nl.classes.FormData,Blob:nl.classes.Blob},validateStatus:function(l){return l>=200&&l<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};St.forEach(["delete","get","head","post","put","patch"],n=>{Gh.headers[n]={}});const Zh=Gh,lk=St.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),rk=n=>{const l={};let r,h,c;return n&&n.split(` `).forEach(function(v){c=v.indexOf(":"),r=v.substring(0,c).trim().toLowerCase(),h=v.substring(c+1).trim(),!(!r||l[r]&&lk[r])&&(r==="set-cookie"?l[r]?l[r].push(h):l[r]=[h]:l[r]=l[r]?l[r]+", "+h:h)}),l},K1=Symbol("internals");function Ao(n){return n&&String(n).trim().toLowerCase()}function oa(n){return n===!1||n==null?n:St.isArray(n)?n.map(oa):String(n)}function ok(n){const l=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let h;for(;h=r.exec(n);)l[h[1]]=h[2];return l}const sk=n=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(n.trim());function Ri(n,l,r,h,c){if(St.isFunction(h))return h.call(this,l,r);if(c&&(l=r),!!St.isString(l)){if(St.isString(h))return l.indexOf(h)!==-1;if(St.isRegExp(h))return h.test(l)}}function ak(n){return n.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(l,r,h)=>r.toUpperCase()+h)}function ik(n,l){const r=St.toCamelCase(" "+l);["get","set","has"].forEach(h=>{Object.defineProperty(n,h+r,{value:function(c,g,v){return this[h].call(this,l,c,g,v)},configurable:!0})})}class ti{constructor(l){l&&this.set(l)}set(l,r,h){const c=this;function g(k,x,I){const S=Ao(x);if(!S)throw new Error("header name must be a non-empty string");const $=St.findKey(c,S);(!$||c[$]===void 0||I===!0||I===void 0&&c[$]!==!1)&&(c[$||x]=oa(k))}const v=(k,x)=>St.forEach(k,(I,S)=>g(I,S,x));return St.isPlainObject(l)||l instanceof this.constructor?v(l,r):St.isString(l)&&(l=l.trim())&&!sk(l)?v(rk(l),r):l!=null&&g(r,l,h),this}get(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);if(h){const c=this[h];if(!r)return c;if(r===!0)return ok(c);if(St.isFunction(r))return r.call(this,c,h);if(St.isRegExp(r))return r.exec(c);throw new TypeError("parser must be boolean|regexp|function")}}}has(l,r){if(l=Ao(l),l){const h=St.findKey(this,l);return!!(h&&this[h]!==void 0&&(!r||Ri(this,this[h],h,r)))}return!1}delete(l,r){const h=this;let c=!1;function g(v){if(v=Ao(v),v){const k=St.findKey(h,v);k&&(!r||Ri(h,h[k],k,r))&&(delete h[k],c=!0)}}return St.isArray(l)?l.forEach(g):g(l),c}clear(l){const r=Object.keys(this);let h=r.length,c=!1;for(;h--;){const g=r[h];(!l||Ri(this,this[g],g,l,!0))&&(delete this[g],c=!0)}return c}normalize(l){const r=this,h={};return St.forEach(this,(c,g)=>{const v=St.findKey(h,g);if(v){r[v]=oa(c),delete r[g];return}const k=l?ak(g):String(g).trim();k!==g&&delete r[g],r[k]=oa(c),h[k]=!0}),this}concat(...l){return this.constructor.concat(this,...l)}toJSON(l){const r=Object.create(null);return St.forEach(this,(h,c)=>{h!=null&&h!==!1&&(r[c]=l&&St.isArray(h)?h.join(", "):h)}),r}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([l,r])=>l+": "+r).join(` `)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(l){return l instanceof this?l:new this(l)}static concat(l,...r){const h=new this(l);return r.forEach(c=>h.set(c)),h}static accessor(l){const h=(this[K1]=this[K1]={accessors:{}}).accessors,c=this.prototype;function g(v){const k=Ao(v);h[k]||(ik(c,v),h[k]=!0)}return St.isArray(l)?l.forEach(g):g(l),this}}ti.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);St.reduceDescriptors(ti.prototype,({value:n},l)=>{let r=l[0].toUpperCase()+l.slice(1);return{get:()=>n,set(h){this[r]=h}}});St.freezeMethods(ti);const ml=ti;function Ti(n,l){const r=this||Zh,h=l||r,c=ml.from(h.headers);let g=h.data;return St.forEach(n,function(k){g=k.call(r,g,c.normalize(),l?l.status:void 0)}),c.normalize(),g}function bp(n){return!!(n&&n.__CANCEL__)}function Cs(n,l,r){pe.call(this,n??"canceled",pe.ERR_CANCELED,l,r),this.name="CanceledError"}St.inherits(Cs,pe,{__CANCEL__:!0});function hk(n,l,r){const h=r.config.validateStatus;!r.status||!h||h(r.status)?n(r):l(new pe("Request failed with status code "+r.status,[pe.ERR_BAD_REQUEST,pe.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r))}const dk=nl.hasStandardBrowserEnv?{write(n,l,r,h,c,g){const v=[n+"="+encodeURIComponent(l)];St.isNumber(r)&&v.push("expires="+new Date(r).toGMTString()),St.isString(h)&&v.push("path="+h),St.isString(c)&&v.push("domain="+c),g===!0&&v.push("secure"),document.cookie=v.join("; ")},read(n){const l=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return l?decodeURIComponent(l[3]):null},remove(n){this.write(n,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function ck(n){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(n)}function uk(n,l){return l?n.replace(/\/+$/,"")+"/"+l.replace(/^\/+/,""):n}function Mp(n,l){return n&&!ck(l)?uk(n,l):l}const pk=nl.hasStandardBrowserEnv?function(){const l=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");let h;function c(g){let v=g;return l&&(r.setAttribute("href",v),v=r.href),r.setAttribute("href",v),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:r.pathname.charAt(0)==="/"?r.pathname:"/"+r.pathname}}return h=c(window.location.href),function(v){const k=St.isString(v)?c(v):v;return k.protocol===h.protocol&&k.host===h.host}}():function(){return function(){return!0}}();function gk(n){const l=/^([-+\w]{1,25})(:?\/\/|:)/.exec(n);return l&&l[1]||""}function wk(n,l){n=n||10;const r=new Array(n),h=new Array(n);let c=0,g=0,v;return l=l!==void 0?l:1e3,function(x){const I=Date.now(),S=h[g];v||(v=I),r[c]=x,h[c]=I;let $=g,B=0;for(;$!==c;)B+=r[$++],$=$%n;if(c=(c+1)%n,c===g&&(g=(g+1)%n),I-v{const g=c.loaded,v=c.lengthComputable?c.total:void 0,k=g-r,x=h(k),I=g<=v;r=g;const S={loaded:g,total:v,progress:v?g/v:void 0,bytes:k,rate:x||void 0,estimated:x&&v&&I?(v-g)/x:void 0,event:c};S[l?"download":"upload"]=!0,n(S)}}const vk=typeof XMLHttpRequest<"u",fk=vk&&function(n){return new Promise(function(r,h){let c=n.data;const g=ml.from(n.headers).normalize();let{responseType:v,withXSRFToken:k}=n,x;function I(){n.cancelToken&&n.cancelToken.unsubscribe(x),n.signal&&n.signal.removeEventListener("abort",x)}let S;if(St.isFormData(c)){if(nl.hasStandardBrowserEnv||nl.hasStandardBrowserWebWorkerEnv)g.setContentType(!1);else if((S=g.getContentType())!==!1){const[F,...X]=S?S.split(";").map(R=>R.trim()).filter(Boolean):[];g.setContentType([F||"multipart/form-data",...X].join("; "))}}let $=new XMLHttpRequest;if(n.auth){const F=n.auth.username||"",X=n.auth.password?unescape(encodeURIComponent(n.auth.password)):"";g.set("Authorization","Basic "+btoa(F+":"+X))}const B=Mp(n.baseURL,n.url);$.open(n.method.toUpperCase(),vp(B,n.params,n.paramsSerializer),!0),$.timeout=n.timeout;function P(){if(!$)return;const F=ml.from("getAllResponseHeaders"in $&&$.getAllResponseHeaders()),R={data:!v||v==="text"||v==="json"?$.responseText:$.response,status:$.status,statusText:$.statusText,headers:F,config:n,request:$};hk(function(U){r(U),I()},function(U){h(U),I()},R),$=null}if("onloadend"in $?$.onloadend=P:$.onreadystatechange=function(){!$||$.readyState!==4||$.status===0&&!($.responseURL&&$.responseURL.indexOf("file:")===0)||setTimeout(P)},$.onabort=function(){$&&(h(new pe("Request aborted",pe.ECONNABORTED,n,$)),$=null)},$.onerror=function(){h(new pe("Network Error",pe.ERR_NETWORK,n,$)),$=null},$.ontimeout=function(){let X=n.timeout?"timeout of "+n.timeout+"ms exceeded":"timeout exceeded";const R=n.transitional||fp;n.timeoutErrorMessage&&(X=n.timeoutErrorMessage),h(new pe(X,R.clarifyTimeoutError?pe.ETIMEDOUT:pe.ECONNABORTED,n,$)),$=null},nl.hasStandardBrowserEnv&&(k&&St.isFunction(k)&&(k=k(n)),k||k!==!1&&pk(B))){const F=n.xsrfHeaderName&&n.xsrfCookieName&&dk.read(n.xsrfCookieName);F&&g.set(n.xsrfHeaderName,F)}c===void 0&&g.setContentType(null),"setRequestHeader"in $&&St.forEach(g.toJSON(),function(X,R){$.setRequestHeader(R,X)}),St.isUndefined(n.withCredentials)||($.withCredentials=!!n.withCredentials),v&&v!=="json"&&($.responseType=n.responseType),typeof n.onDownloadProgress=="function"&&$.addEventListener("progress",Q1(n.onDownloadProgress,!0)),typeof n.onUploadProgress=="function"&&$.upload&&$.upload.addEventListener("progress",Q1(n.onUploadProgress)),(n.cancelToken||n.signal)&&(x=F=>{$&&(h(!F||F.type?new Cs(null,n,$):F),$.abort(),$=null)},n.cancelToken&&n.cancelToken.subscribe(x),n.signal&&(n.signal.aborted?x():n.signal.addEventListener("abort",x)));const D=gk(B);if(D&&nl.protocols.indexOf(D)===-1){h(new pe("Unsupported protocol "+D+":",pe.ERR_BAD_REQUEST,n));return}$.send(c||null)})},S0={http:Em,xhr:fk};St.forEach(S0,(n,l)=>{if(n){try{Object.defineProperty(n,"name",{value:l})}catch{}Object.defineProperty(n,"adapterName",{value:l})}});const J1=n=>`- ${n}`,mk=n=>St.isFunction(n)||n===null||n===!1,xp={getAdapter:n=>{n=St.isArray(n)?n:[n];const{length:l}=n;let r,h;const c={};for(let g=0;g`adapter ${k} `+(x===!1?"is not supported by the environment":"is not available in the build"));let v=l?g.length>1?`since : `+g.map(J1).join(` -`):" "+J1(g[0]):"as no adapter specified";throw new pe("There is no suitable adapter to dispatch the request "+v,"ERR_NOT_SUPPORT")}return h},adapters:S0};function Ei(n){if(n.cancelToken&&n.cancelToken.throwIfRequested(),n.signal&&n.signal.aborted)throw new Cs(null,n)}function td(n){return Ei(n),n.headers=ml.from(n.headers),n.data=Ti.call(n,n.transformRequest),["post","put","patch"].indexOf(n.method)!==-1&&n.headers.setContentType("application/x-www-form-urlencoded",!1),xp.getAdapter(n.adapter||Zh.adapter)(n).then(function(h){return Ei(n),h.data=Ti.call(n,n.transformResponse,h),h.headers=ml.from(h.headers),h},function(h){return bp(h)||(Ei(n),h&&h.response&&(h.response.data=Ti.call(n,n.transformResponse,h.response),h.response.headers=ml.from(h.response.headers))),Promise.reject(h)})}const ed=n=>n instanceof ml?n.toJSON():n;function lo(n,l){l=l||{};const r={};function h(I,S,$){return St.isPlainObject(I)&&St.isPlainObject(S)?St.merge.call({caseless:$},I,S):St.isPlainObject(S)?St.merge({},S):St.isArray(S)?S.slice():S}function c(I,S,$){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I,$)}else return h(I,S,$)}function g(I,S){if(!St.isUndefined(S))return h(void 0,S)}function v(I,S){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I)}else return h(void 0,S)}function k(I,S,$){if($ in l)return h(I,S);if($ in n)return h(void 0,I)}const x={url:g,method:g,data:g,baseURL:v,transformRequest:v,transformResponse:v,paramsSerializer:v,timeout:v,timeoutMessage:v,withCredentials:v,withXSRFToken:v,adapter:v,responseType:v,xsrfCookieName:v,xsrfHeaderName:v,onUploadProgress:v,onDownloadProgress:v,decompress:v,maxContentLength:v,maxBodyLength:v,beforeRedirect:v,transport:v,httpAgent:v,httpsAgent:v,cancelToken:v,socketPath:v,responseEncoding:v,validateStatus:k,headers:(I,S)=>c(ed(I),ed(S),!0)};return St.forEach(Object.keys(Object.assign({},n,l)),function(S){const $=x[S]||c,B=$(n[S],l[S],S);St.isUndefined(B)&&$!==k||(r[S]=B)}),r}const zp="1.6.2",Kh={};["object","boolean","number","function","string","symbol"].forEach((n,l)=>{Kh[n]=function(h){return typeof h===n||"a"+(l<1?"n ":" ")+n}});const nd={};Kh.transitional=function(l,r,h){function c(g,v){return"[Axios v"+zp+"] Transitional option '"+g+"'"+v+(h?". "+h:"")}return(g,v,k)=>{if(l===!1)throw new pe(c(v," has been removed"+(r?" in "+r:"")),pe.ERR_DEPRECATED);return r&&!nd[v]&&(nd[v]=!0,console.warn(c(v," has been deprecated since v"+r+" and will be removed in the near future"))),l?l(g,v,k):!0}};function kk(n,l,r){if(typeof n!="object")throw new pe("options must be an object",pe.ERR_BAD_OPTION_VALUE);const h=Object.keys(n);let c=h.length;for(;c-- >0;){const g=h[c],v=l[g];if(v){const k=n[g],x=k===void 0||v(k,g,n);if(x!==!0)throw new pe("option "+g+" must be "+x,pe.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new pe("Unknown option "+g,pe.ERR_BAD_OPTION)}}const $0={assertOptions:kk,validators:Kh},Ll=$0.validators;class va{constructor(l){this.defaults=l,this.interceptors={request:new Z1,response:new Z1}}request(l,r){typeof l=="string"?(r=r||{},r.url=l):r=l||{},r=lo(this.defaults,r);const{transitional:h,paramsSerializer:c,headers:g}=r;h!==void 0&&$0.assertOptions(h,{silentJSONParsing:Ll.transitional(Ll.boolean),forcedJSONParsing:Ll.transitional(Ll.boolean),clarifyTimeoutError:Ll.transitional(Ll.boolean)},!1),c!=null&&(St.isFunction(c)?r.paramsSerializer={serialize:c}:$0.assertOptions(c,{encode:Ll.function,serialize:Ll.function},!0)),r.method=(r.method||this.defaults.method||"get").toLowerCase();let v=g&&St.merge(g.common,g[r.method]);g&&St.forEach(["delete","get","head","post","put","patch","common"],D=>{delete g[D]}),r.headers=ml.concat(v,g);const k=[];let x=!0;this.interceptors.request.forEach(function(F){typeof F.runWhen=="function"&&F.runWhen(r)===!1||(x=x&&F.synchronous,k.unshift(F.fulfilled,F.rejected))});const I=[];this.interceptors.response.forEach(function(F){I.push(F.fulfilled,F.rejected)});let S,$=0,B;if(!x){const D=[td.bind(this),void 0];for(D.unshift.apply(D,k),D.push.apply(D,I),B=D.length,S=Promise.resolve(r);${if(!h._listeners)return;let g=h._listeners.length;for(;g-- >0;)h._listeners[g](c);h._listeners=null}),this.promise.then=c=>{let g;const v=new Promise(k=>{h.subscribe(k),g=k}).then(c);return v.cancel=function(){h.unsubscribe(g)},v},l(function(g,v,k){h.reason||(h.reason=new Cs(g,v,k),r(h.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(l){if(this.reason){l(this.reason);return}this._listeners?this._listeners.push(l):this._listeners=[l]}unsubscribe(l){if(!this._listeners)return;const r=this._listeners.indexOf(l);r!==-1&&this._listeners.splice(r,1)}static source(){let l;return{token:new Qh(function(c){l=c}),cancel:l}}}const bk=Qh;function Mk(n){return function(r){return n.apply(null,r)}}function xk(n){return St.isObject(n)&&n.isAxiosError===!0}const A0={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(A0).forEach(([n,l])=>{A0[l]=n});const zk=A0;function Ip(n){const l=new sa(n),r=rp(sa.prototype.request,l);return St.extend(r,sa.prototype,l,{allOwnKeys:!0}),St.extend(r,l,null,{allOwnKeys:!0}),r.create=function(c){return Ip(lo(n,c))},r}const Re=Ip(Zh);Re.Axios=sa;Re.CanceledError=Cs;Re.CancelToken=bk;Re.isCancel=bp;Re.VERSION=zp;Re.toFormData=Ja;Re.AxiosError=pe;Re.Cancel=Re.CanceledError;Re.all=function(l){return Promise.all(l)};Re.spread=Mk;Re.isAxiosError=xk;Re.mergeConfig=lo;Re.AxiosHeaders=ml;Re.formToJSON=n=>kp(St.isHTMLForm(n)?new FormData(n):n);Re.getAdapter=xp.getAdapter;Re.HttpStatusCode=zk;Re.default=Re;const Ik=Re,yk=Jf({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){Ik.post("/api/authenticate",{username:n,password:l}).then(r=>{console.log("auth",r),this.user=r.data.data,localStorage.setItem("user",JSON.stringify(this.user)),fa.push(this.returnUrl||"/dashboard/default")})},logout(){this.user=null,localStorage.removeItem("user"),fa.push("/auth/login")}}}),fa=tm({history:f5("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>en(()=>import("./Error404Page-1f0e3199.js"),["assets/Error404Page-1f0e3199.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},om,sm]});fa.beforeEach(async(n,l,r)=>{const c=!["/auth/login"].includes(n.path),g=yk();if(n.matched.some(v=>v.meta.requiresAuth)){if(c&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const ze=typeof window<"u",Jh=ze&&"IntersectionObserver"in window,Ck=ze&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function ld(n,l,r){Sk(n,l),l.set(n,r)}function Sk(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function $k(n,l,r){var h=yp(n,l,"set");return Ak(n,h,r),r}function Ak(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function sr(n,l){var r=yp(n,l,"get");return Bk(n,r)}function yp(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function Bk(n,l){return l.get?l.get.call(n):l.value}function Cp(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let c=0;cSr(n[h],l[h]))}function B0(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),Cp(n,l.split("."),r))}function ln(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const c=l(n,r);return typeof c>"u"?r:c}if(typeof l=="string")return B0(n,l,r);if(Array.isArray(l))return Cp(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function gl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function qt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function H0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function N0(n){return n&&"$el"in n?n.$el:n}const rd=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),j0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function Sp(n){return Object.keys(n)}function cr(n,l){return l.every(r=>n.hasOwnProperty(r))}function Mr(n,l,r){const h=Object.create(null),c=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:c[g]=n[g];return[h,c]}function On(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const $p=/^on[^a-z]/,t2=n=>$p.test(n),Hk=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function $r(n){const[l,r]=Mr(n,[$p]),h=On(l,Hk),[c,g]=Mr(r,["class","style","id",/^data-/]);return Object.assign(c,l),Object.assign(g,h),[c,g]}function Pn(n){return n==null?[]:Array.isArray(n)?n:[n]}function rn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function od(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function sd(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function Nk(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const c in n)h[c]=n[c];for(const c in l){const g=n[c],v=l[c];if(H0(g)&&H0(v)){h[c]=Nn(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[c]=r(g,v);continue}h[c]=v}return h}function Ap(n){return n.map(l=>l.type===Kt?Ap(l.children):l).flat()}function vr(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(vr.cache.has(n))return vr.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return vr.cache.set(n,l),l}vr.cache=new Map;function qo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>qo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>qo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return qo(n,l.component.subTree).flat(1)}return[]}var Us=new WeakMap,Fr=new WeakMap;class jk{constructor(l){ld(this,Us,{writable:!0,value:[]}),ld(this,Fr,{writable:!0,value:0}),this.size=l}push(l){sr(this,Us)[sr(this,Fr)]=l,$k(this,Fr,(sr(this,Fr)+1)%this.size)}values(){return sr(this,Us).slice(sr(this,Fr)).concat(sr(this,Us).slice(0,sr(this,Fr)))}}function Pk(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function e2(n){const l=Ze({}),r=q(n);return bn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),vs(l)}function ma(n,l){return n.includes(l)}function Bp(n){return n[2].toLowerCase()+n.slice(3)}const ol=()=>[Function,Array];function id(n,l){return l="on"+Il(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function n2(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function Hp(n,l,r){let h,c=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do c+=g,h=n[c];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&c=0);return h}function ka(n,l){var h,c,g,v;const r=ss(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(c=r[0])==null||c.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const k=Hp(r,l);k?k.focus():ka(n,l==="next"?"first":"last")}}function Np(){}function ro(n,l){if(!(ze&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const jp=["top","bottom"],Lk=["start","end","left","right"];function P0(n,l){let[r,h]=n.split(" ");return h||(h=ma(jp,r)?"start":ma(Lk,r)?"top":"center"),{side:L0(r,l),align:L0(h,l)}}function L0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function Vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function _i(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function hd(n){return{side:n.align,align:n.side}}function dd(n){return ma(jp,n.side)?"y":"x"}class Kr{constructor(l){let{x:r,y:h,width:c,height:g}=l;this.x=r,this.y=h,this.width=c,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function cd(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function l2(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let c,g,v,k,x;if(h.startsWith("matrix3d("))c=h.slice(9,-1).split(/, /),g=+c[0],v=+c[5],k=+c[12],x=+c[13];else if(h.startsWith("matrix("))c=h.slice(7,-1).split(/, /),g=+c[0],v=+c[3],k=+c[4],x=+c[5];else return new Kr(l);const I=r.transformOrigin,S=l.x-k-(1-g)*parseFloat(I),$=l.y-x-(1-v)*parseFloat(I.slice(I.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new Kr({x:S,y:$,width:B,height:P})}else return new Kr(l)}function ur(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(c=>{h.onfinish=()=>{c(h)}})),h}const aa=new WeakMap;function Dk(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);if(l[r]==null)c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))});else if(!c||![...c].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=c||new Set;g.add([h,l[r]]),aa.has(n)||aa.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function Ok(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))})}else n.removeAttribute(r)})}const Rr=2.4,ud=.2126729,pd=.7151522,gd=.072175,Fk=.55,Rk=.58,Tk=.57,Ek=.62,Gs=.03,wd=1.45,Vk=5e-4,_k=1.25,Wk=1.25,vd=.078,fd=12.82051282051282,Zs=.06,md=.001;function kd(n,l){const r=(n.r/255)**Rr,h=(n.g/255)**Rr,c=(n.b/255)**Rr,g=(l.r/255)**Rr,v=(l.g/255)**Rr,k=(l.b/255)**Rr;let x=r*ud+h*pd+c*gd,I=g*ud+v*pd+k*gd;if(x<=Gs&&(x+=(Gs-x)**wd),I<=Gs&&(I+=(Gs-I)**wd),Math.abs(I-x)x){const $=(I**Fk-x**Rk)*_k;S=$-md?0:$>-vd?$-$*fd*Zs:$+Zs}return S*100}function Xk(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const ba=.20689655172413793,qk=n=>n>ba**3?Math.cbrt(n):n/(3*ba**2)+4/29,Yk=n=>n>ba?n**3:3*ba**2*(n-4/29);function Pp(n){const l=qk,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Lp(n){const l=Yk,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const Uk=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],Gk=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,Zk=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],Kk=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function Dp(n){const l=Array(3),r=Gk,h=Uk;for(let c=0;c<3;++c)l[c]=Math.round(rn(r(h[c][0]*n[0]+h[c][1]*n[1]+h[c][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function r2(n){let{r:l,g:r,b:h}=n;const c=[0,0,0],g=Kk,v=Zk;l=g(l/255),r=g(r/255),h=g(h/255);for(let k=0;k<3;++k)c[k]=v[k][0]*l+v[k][1]*r+v[k][2]*h;return c}function bd(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const Md=/^(?(?:rgb|hsl)a?)\((?.+)\)/,Qk={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h})};function Yn(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&Md.test(n)){const{groups:l}=n.match(Md),{fn:r,values:h}=l,c=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return Qk[r](...c)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Ep(l)}else if(typeof n=="object"){if(cr(n,["r","g","b"]))return n;if(cr(n,["h","s","l"]))return bl(o2(n));if(cr(n,["h","s","v"]))return bl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} +`):" "+J1(g[0]):"as no adapter specified";throw new pe("There is no suitable adapter to dispatch the request "+v,"ERR_NOT_SUPPORT")}return h},adapters:S0};function Ei(n){if(n.cancelToken&&n.cancelToken.throwIfRequested(),n.signal&&n.signal.aborted)throw new Cs(null,n)}function td(n){return Ei(n),n.headers=ml.from(n.headers),n.data=Ti.call(n,n.transformRequest),["post","put","patch"].indexOf(n.method)!==-1&&n.headers.setContentType("application/x-www-form-urlencoded",!1),xp.getAdapter(n.adapter||Zh.adapter)(n).then(function(h){return Ei(n),h.data=Ti.call(n,n.transformResponse,h),h.headers=ml.from(h.headers),h},function(h){return bp(h)||(Ei(n),h&&h.response&&(h.response.data=Ti.call(n,n.transformResponse,h.response),h.response.headers=ml.from(h.response.headers))),Promise.reject(h)})}const ed=n=>n instanceof ml?n.toJSON():n;function lo(n,l){l=l||{};const r={};function h(I,S,$){return St.isPlainObject(I)&&St.isPlainObject(S)?St.merge.call({caseless:$},I,S):St.isPlainObject(S)?St.merge({},S):St.isArray(S)?S.slice():S}function c(I,S,$){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I,$)}else return h(I,S,$)}function g(I,S){if(!St.isUndefined(S))return h(void 0,S)}function v(I,S){if(St.isUndefined(S)){if(!St.isUndefined(I))return h(void 0,I)}else return h(void 0,S)}function k(I,S,$){if($ in l)return h(I,S);if($ in n)return h(void 0,I)}const x={url:g,method:g,data:g,baseURL:v,transformRequest:v,transformResponse:v,paramsSerializer:v,timeout:v,timeoutMessage:v,withCredentials:v,withXSRFToken:v,adapter:v,responseType:v,xsrfCookieName:v,xsrfHeaderName:v,onUploadProgress:v,onDownloadProgress:v,decompress:v,maxContentLength:v,maxBodyLength:v,beforeRedirect:v,transport:v,httpAgent:v,httpsAgent:v,cancelToken:v,socketPath:v,responseEncoding:v,validateStatus:k,headers:(I,S)=>c(ed(I),ed(S),!0)};return St.forEach(Object.keys(Object.assign({},n,l)),function(S){const $=x[S]||c,B=$(n[S],l[S],S);St.isUndefined(B)&&$!==k||(r[S]=B)}),r}const zp="1.6.2",Kh={};["object","boolean","number","function","string","symbol"].forEach((n,l)=>{Kh[n]=function(h){return typeof h===n||"a"+(l<1?"n ":" ")+n}});const nd={};Kh.transitional=function(l,r,h){function c(g,v){return"[Axios v"+zp+"] Transitional option '"+g+"'"+v+(h?". "+h:"")}return(g,v,k)=>{if(l===!1)throw new pe(c(v," has been removed"+(r?" in "+r:"")),pe.ERR_DEPRECATED);return r&&!nd[v]&&(nd[v]=!0,console.warn(c(v," has been deprecated since v"+r+" and will be removed in the near future"))),l?l(g,v,k):!0}};function kk(n,l,r){if(typeof n!="object")throw new pe("options must be an object",pe.ERR_BAD_OPTION_VALUE);const h=Object.keys(n);let c=h.length;for(;c-- >0;){const g=h[c],v=l[g];if(v){const k=n[g],x=k===void 0||v(k,g,n);if(x!==!0)throw new pe("option "+g+" must be "+x,pe.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new pe("Unknown option "+g,pe.ERR_BAD_OPTION)}}const $0={assertOptions:kk,validators:Kh},Ll=$0.validators;class va{constructor(l){this.defaults=l,this.interceptors={request:new Z1,response:new Z1}}request(l,r){typeof l=="string"?(r=r||{},r.url=l):r=l||{},r=lo(this.defaults,r);const{transitional:h,paramsSerializer:c,headers:g}=r;h!==void 0&&$0.assertOptions(h,{silentJSONParsing:Ll.transitional(Ll.boolean),forcedJSONParsing:Ll.transitional(Ll.boolean),clarifyTimeoutError:Ll.transitional(Ll.boolean)},!1),c!=null&&(St.isFunction(c)?r.paramsSerializer={serialize:c}:$0.assertOptions(c,{encode:Ll.function,serialize:Ll.function},!0)),r.method=(r.method||this.defaults.method||"get").toLowerCase();let v=g&&St.merge(g.common,g[r.method]);g&&St.forEach(["delete","get","head","post","put","patch","common"],D=>{delete g[D]}),r.headers=ml.concat(v,g);const k=[];let x=!0;this.interceptors.request.forEach(function(F){typeof F.runWhen=="function"&&F.runWhen(r)===!1||(x=x&&F.synchronous,k.unshift(F.fulfilled,F.rejected))});const I=[];this.interceptors.response.forEach(function(F){I.push(F.fulfilled,F.rejected)});let S,$=0,B;if(!x){const D=[td.bind(this),void 0];for(D.unshift.apply(D,k),D.push.apply(D,I),B=D.length,S=Promise.resolve(r);${if(!h._listeners)return;let g=h._listeners.length;for(;g-- >0;)h._listeners[g](c);h._listeners=null}),this.promise.then=c=>{let g;const v=new Promise(k=>{h.subscribe(k),g=k}).then(c);return v.cancel=function(){h.unsubscribe(g)},v},l(function(g,v,k){h.reason||(h.reason=new Cs(g,v,k),r(h.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(l){if(this.reason){l(this.reason);return}this._listeners?this._listeners.push(l):this._listeners=[l]}unsubscribe(l){if(!this._listeners)return;const r=this._listeners.indexOf(l);r!==-1&&this._listeners.splice(r,1)}static source(){let l;return{token:new Qh(function(c){l=c}),cancel:l}}}const bk=Qh;function Mk(n){return function(r){return n.apply(null,r)}}function xk(n){return St.isObject(n)&&n.isAxiosError===!0}const A0={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(A0).forEach(([n,l])=>{A0[l]=n});const zk=A0;function Ip(n){const l=new sa(n),r=rp(sa.prototype.request,l);return St.extend(r,sa.prototype,l,{allOwnKeys:!0}),St.extend(r,l,null,{allOwnKeys:!0}),r.create=function(c){return Ip(lo(n,c))},r}const Re=Ip(Zh);Re.Axios=sa;Re.CanceledError=Cs;Re.CancelToken=bk;Re.isCancel=bp;Re.VERSION=zp;Re.toFormData=Ja;Re.AxiosError=pe;Re.Cancel=Re.CanceledError;Re.all=function(l){return Promise.all(l)};Re.spread=Mk;Re.isAxiosError=xk;Re.mergeConfig=lo;Re.AxiosHeaders=ml;Re.formToJSON=n=>kp(St.isHTMLForm(n)?new FormData(n):n);Re.getAdapter=xp.getAdapter;Re.HttpStatusCode=zk;Re.default=Re;const Ik=Re,yk=Jf({id:"auth",state:()=>({user:JSON.parse(localStorage.getItem("user")),returnUrl:null}),actions:{async login(n,l){Ik.post("/api/authenticate",{username:n,password:l}).then(r=>{console.log("auth",r),this.user=r.data.data,localStorage.setItem("user",JSON.stringify(this.user)),fa.push(this.returnUrl||"/dashboard/default")})},logout(){this.user=null,localStorage.removeItem("user"),fa.push("/auth/login")}}}),fa=tm({history:f5("/"),routes:[{path:"/:pathMatch(.*)*",component:()=>en(()=>import("./Error404Page-e144fe8e.js"),["assets/Error404Page-e144fe8e.js","assets/_plugin-vue_export-helper-c27b6911.js","assets/Error404Page-11cf087a.css"])},om,sm]});fa.beforeEach(async(n,l,r)=>{const c=!["/auth/login"].includes(n.path),g=yk();if(n.matched.some(v=>v.meta.requiresAuth)){if(c&&!g.user)return g.returnUrl=n.fullPath,r("/auth/login");r()}else r()});const ze=typeof window<"u",Jh=ze&&"IntersectionObserver"in window,Ck=ze&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function ld(n,l,r){Sk(n,l),l.set(n,r)}function Sk(n,l){if(l.has(n))throw new TypeError("Cannot initialize the same private elements twice on an object")}function $k(n,l,r){var h=yp(n,l,"set");return Ak(n,h,r),r}function Ak(n,l,r){if(l.set)l.set.call(n,r);else{if(!l.writable)throw new TypeError("attempted to set read only private field");l.value=r}}function sr(n,l){var r=yp(n,l,"get");return Bk(n,r)}function yp(n,l,r){if(!l.has(n))throw new TypeError("attempted to "+r+" private field on non-instance");return l.get(n)}function Bk(n,l){return l.get?l.get.call(n):l.value}function Cp(n,l,r){const h=l.length-1;if(h<0)return n===void 0?r:n;for(let c=0;cSr(n[h],l[h]))}function B0(n,l,r){return n==null||!l||typeof l!="string"?r:n[l]!==void 0?n[l]:(l=l.replace(/\[(\w+)\]/g,".$1"),l=l.replace(/^\./,""),Cp(n,l.split("."),r))}function ln(n,l,r){if(l==null)return n===void 0?r:n;if(n!==Object(n)){if(typeof l!="function")return r;const c=l(n,r);return typeof c>"u"?r:c}if(typeof l=="string")return B0(n,l,r);if(Array.isArray(l))return Cp(n,l,r);if(typeof l!="function")return r;const h=l(n,r);return typeof h>"u"?r:h}function gl(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:n},(r,h)=>l+h)}function qt(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(!(n==null||n===""))return isNaN(+n)?String(n):isFinite(+n)?`${Number(n)}${l}`:void 0}function H0(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function N0(n){return n&&"$el"in n?n.$el:n}const rd=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),j0=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function Sp(n){return Object.keys(n)}function cr(n,l){return l.every(r=>n.hasOwnProperty(r))}function Mr(n,l,r){const h=Object.create(null),c=Object.create(null);for(const g in n)l.some(v=>v instanceof RegExp?v.test(g):v===g)&&!(r!=null&&r.some(v=>v===g))?h[g]=n[g]:c[g]=n[g];return[h,c]}function On(n,l){const r={...n};return l.forEach(h=>delete r[h]),r}const $p=/^on[^a-z]/,t2=n=>$p.test(n),Hk=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"];function $r(n){const[l,r]=Mr(n,[$p]),h=On(l,Hk),[c,g]=Mr(r,["class","style","id",/^data-/]);return Object.assign(c,l),Object.assign(g,h),[c,g]}function Pn(n){return n==null?[]:Array.isArray(n)?n:[n]}function rn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(l,Math.min(r,n))}function od(n){const l=n.toString().trim();return l.includes(".")?l.length-l.indexOf(".")-1:0}function sd(n,l){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return n+r.repeat(Math.max(0,l-n.length))}function Nk(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const r=[];let h=0;for(;h1&&arguments[1]!==void 0?arguments[1]:1e3;if(n=l&&h0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;const h={};for(const c in n)h[c]=n[c];for(const c in l){const g=n[c],v=l[c];if(H0(g)&&H0(v)){h[c]=Nn(g,v,r);continue}if(Array.isArray(g)&&Array.isArray(v)&&r){h[c]=r(g,v);continue}h[c]=v}return h}function Ap(n){return n.map(l=>l.type===Kt?Ap(l.children):l).flat()}function vr(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(vr.cache.has(n))return vr.cache.get(n);const l=n.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return vr.cache.set(n,l),l}vr.cache=new Map;function qo(n,l){if(!l||typeof l!="object")return[];if(Array.isArray(l))return l.map(r=>qo(n,r)).flat(1);if(Array.isArray(l.children))return l.children.map(r=>qo(n,r)).flat(1);if(l.component){if(Object.getOwnPropertySymbols(l.component.provides).includes(n))return[l.component];if(l.component.subTree)return qo(n,l.component.subTree).flat(1)}return[]}var Us=new WeakMap,Fr=new WeakMap;class jk{constructor(l){ld(this,Us,{writable:!0,value:[]}),ld(this,Fr,{writable:!0,value:0}),this.size=l}push(l){sr(this,Us)[sr(this,Fr)]=l,$k(this,Fr,(sr(this,Fr)+1)%this.size)}values(){return sr(this,Us).slice(sr(this,Fr)).concat(sr(this,Us).slice(0,sr(this,Fr)))}}function Pk(n){return"touches"in n?{clientX:n.touches[0].clientX,clientY:n.touches[0].clientY}:{clientX:n.clientX,clientY:n.clientY}}function e2(n){const l=Ze({}),r=q(n);return bn(()=>{for(const h in r.value)l[h]=r.value[h]},{flush:"sync"}),vs(l)}function ma(n,l){return n.includes(l)}function Bp(n){return n[2].toLowerCase()+n.slice(3)}const ol=()=>[Function,Array];function id(n,l){return l="on"+Il(l),!!(n[l]||n[`${l}Once`]||n[`${l}Capture`]||n[`${l}OnceCapture`]||n[`${l}CaptureOnce`])}function n2(n){for(var l=arguments.length,r=new Array(l>1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:!0;const r=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(h=>`${h}${l?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...n.querySelectorAll(r)]}function Hp(n,l,r){let h,c=n.indexOf(document.activeElement);const g=l==="next"?1:-1;do c+=g,h=n[c];while((!h||h.offsetParent==null||!((r==null?void 0:r(h))??!0))&&c=0);return h}function ka(n,l){var h,c,g,v;const r=ss(n);if(!l)(n===document.activeElement||!n.contains(document.activeElement))&&((h=r[0])==null||h.focus());else if(l==="first")(c=r[0])==null||c.focus();else if(l==="last")(g=r.at(-1))==null||g.focus();else if(typeof l=="number")(v=r[l])==null||v.focus();else{const k=Hp(r,l);k?k.focus():ka(n,l==="next"?"first":"last")}}function Np(){}function ro(n,l){if(!(ze&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${l})`)))return null;try{return!!n&&n.matches(l)}catch{return null}}const jp=["top","bottom"],Lk=["start","end","left","right"];function P0(n,l){let[r,h]=n.split(" ");return h||(h=ma(jp,r)?"start":ma(Lk,r)?"top":"center"),{side:L0(r,l),align:L0(h,l)}}function L0(n,l){return n==="start"?l?"right":"left":n==="end"?l?"left":"right":n}function Vi(n){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.side],align:n.align}}function _i(n){return{side:n.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[n.align]}}function hd(n){return{side:n.align,align:n.side}}function dd(n){return ma(jp,n.side)?"y":"x"}class Kr{constructor(l){let{x:r,y:h,width:c,height:g}=l;this.x=r,this.y=h,this.width=c,this.height=g}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function cd(n,l){return{x:{before:Math.max(0,l.left-n.left),after:Math.max(0,n.right-l.right)},y:{before:Math.max(0,l.top-n.top),after:Math.max(0,n.bottom-l.bottom)}}}function l2(n){const l=n.getBoundingClientRect(),r=getComputedStyle(n),h=r.transform;if(h){let c,g,v,k,x;if(h.startsWith("matrix3d("))c=h.slice(9,-1).split(/, /),g=+c[0],v=+c[5],k=+c[12],x=+c[13];else if(h.startsWith("matrix("))c=h.slice(7,-1).split(/, /),g=+c[0],v=+c[3],k=+c[4],x=+c[5];else return new Kr(l);const I=r.transformOrigin,S=l.x-k-(1-g)*parseFloat(I),$=l.y-x-(1-v)*parseFloat(I.slice(I.indexOf(" ")+1)),B=g?l.width/g:n.offsetWidth+1,P=v?l.height/v:n.offsetHeight+1;return new Kr({x:S,y:$,width:B,height:P})}else return new Kr(l)}function ur(n,l,r){if(typeof n.animate>"u")return{finished:Promise.resolve()};let h;try{h=n.animate(l,r)}catch{return{finished:Promise.resolve()}}return typeof h.finished>"u"&&(h.finished=new Promise(c=>{h.onfinish=()=>{c(h)}})),h}const aa=new WeakMap;function Dk(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);if(l[r]==null)c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))});else if(!c||![...c].some(g=>g[0]===h&&g[1]===l[r])){n.addEventListener(h,l[r]);const g=c||new Set;g.add([h,l[r]]),aa.has(n)||aa.set(n,g)}}else l[r]==null?n.removeAttribute(r):n.setAttribute(r,l[r])})}function Ok(n,l){Object.keys(l).forEach(r=>{if(t2(r)){const h=Bp(r),c=aa.get(n);c==null||c.forEach(g=>{const[v,k]=g;v===h&&(n.removeEventListener(h,k),c.delete(g))})}else n.removeAttribute(r)})}const Rr=2.4,ud=.2126729,pd=.7151522,gd=.072175,Fk=.55,Rk=.58,Tk=.57,Ek=.62,Gs=.03,wd=1.45,Vk=5e-4,_k=1.25,Wk=1.25,vd=.078,fd=12.82051282051282,Zs=.06,md=.001;function kd(n,l){const r=(n.r/255)**Rr,h=(n.g/255)**Rr,c=(n.b/255)**Rr,g=(l.r/255)**Rr,v=(l.g/255)**Rr,k=(l.b/255)**Rr;let x=r*ud+h*pd+c*gd,I=g*ud+v*pd+k*gd;if(x<=Gs&&(x+=(Gs-x)**wd),I<=Gs&&(I+=(Gs-I)**wd),Math.abs(I-x)x){const $=(I**Fk-x**Rk)*_k;S=$-md?0:$>-vd?$-$*fd*Zs:$+Zs}return S*100}function Xk(n,l){l=Array.isArray(l)?l.slice(0,-1).map(r=>`'${r}'`).join(", ")+` or '${l.at(-1)}'`:`'${l}'`}const ba=.20689655172413793,qk=n=>n>ba**3?Math.cbrt(n):n/(3*ba**2)+4/29,Yk=n=>n>ba?n**3:3*ba**2*(n-4/29);function Pp(n){const l=qk,r=l(n[1]);return[116*r-16,500*(l(n[0]/.95047)-r),200*(r-l(n[2]/1.08883))]}function Lp(n){const l=Yk,r=(n[0]+16)/116;return[l(r+n[1]/500)*.95047,l(r),l(r-n[2]/200)*1.08883]}const Uk=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],Gk=n=>n<=.0031308?n*12.92:1.055*n**(1/2.4)-.055,Zk=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],Kk=n=>n<=.04045?n/12.92:((n+.055)/1.055)**2.4;function Dp(n){const l=Array(3),r=Gk,h=Uk;for(let c=0;c<3;++c)l[c]=Math.round(rn(r(h[c][0]*n[0]+h[c][1]*n[1]+h[c][2]*n[2]))*255);return{r:l[0],g:l[1],b:l[2]}}function r2(n){let{r:l,g:r,b:h}=n;const c=[0,0,0],g=Kk,v=Zk;l=g(l/255),r=g(r/255),h=g(h/255);for(let k=0;k<3;++k)c[k]=v[k][0]*l+v[k][1]*r+v[k][2]*h;return c}function bd(n){return!!n&&/^(#|var\(--|(rgb|hsl)a?\()/.test(n)}const Md=/^(?(?:rgb|hsl)a?)\((?.+)\)/,Qk={rgb:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),rgba:(n,l,r,h)=>({r:n,g:l,b:r,a:h}),hsl:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsla:(n,l,r,h)=>xd({h:n,s:l,l:r,a:h}),hsv:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h}),hsva:(n,l,r,h)=>bl({h:n,s:l,v:r,a:h})};function Yn(n){if(typeof n=="number")return{r:(n&16711680)>>16,g:(n&65280)>>8,b:n&255};if(typeof n=="string"&&Md.test(n)){const{groups:l}=n.match(Md),{fn:r,values:h}=l,c=h.split(/,\s*/).map(g=>g.endsWith("%")&&["hsl","hsla","hsv","hsva"].includes(r)?parseFloat(g)/100:parseFloat(g));return Qk[r](...c)}else if(typeof n=="string"){let l=n.startsWith("#")?n.slice(1):n;return[3,4].includes(l.length)?l=l.split("").map(r=>r+r).join(""):[6,8].includes(l.length),Ep(l)}else if(typeof n=="object"){if(cr(n,["r","g","b"]))return n;if(cr(n,["h","s","l"]))return bl(o2(n));if(cr(n,["h","s","v"]))return bl(n)}throw new TypeError(`Invalid color: ${n==null?n:String(n)||n.constructor.name} Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function bl(n){const{h:l,s:r,v:h,a:c}=n,g=k=>{const x=(k+l/60)%6;return h-h*r*Math.max(Math.min(x,4-x,1),0)},v=[g(5),g(3),g(1)].map(k=>Math.round(k*255));return{r:v[0],g:v[1],b:v[2],a:c}}function xd(n){return bl(o2(n))}function ei(n){if(!n)return{h:0,s:1,v:1,a:1};const l=n.r/255,r=n.g/255,h=n.b/255,c=Math.max(l,r,h),g=Math.min(l,r,h);let v=0;c!==g&&(c===l?v=60*(0+(r-h)/(c-g)):c===r?v=60*(2+(h-l)/(c-g)):c===h&&(v=60*(4+(l-r)/(c-g)))),v<0&&(v=v+360);const k=c===0?0:(c-g)/c,x=[v,k,c];return{h:x[0],s:x[1],v:x[2],a:n.a}}function Op(n){const{h:l,s:r,v:h,a:c}=n,g=h-h*r/2,v=g===1||g===0?0:(h-g)/Math.min(g,1-g);return{h:l,s:v,l:g,a:c}}function o2(n){const{h:l,s:r,l:h,a:c}=n,g=h+r*Math.min(h,1-h),v=g===0?0:2-2*h/g;return{h:l,s:v,v:g,a:c}}function Fp(n){let{r:l,g:r,b:h,a:c}=n;return c===void 0?`rgb(${l}, ${r}, ${h})`:`rgba(${l}, ${r}, ${h}, ${c})`}function Rp(n){return Fp(bl(n))}function Ks(n){const l=Math.round(n).toString(16);return("00".substr(0,2-l.length)+l).toUpperCase()}function Tp(n){let{r:l,g:r,b:h,a:c}=n;return`#${[Ks(l),Ks(r),Ks(h),c!==void 0?Ks(Math.round(c*255)):""].join("")}`}function Ep(n){n=t6(n);let[l,r,h,c]=Nk(n,2).map(g=>parseInt(g,16));return c=c===void 0?c:c/255,{r:l,g:r,b:h,a:c}}function Jk(n){const l=Ep(n);return ei(l)}function Vp(n){return Tp(bl(n))}function t6(n){return n.startsWith("#")&&(n=n.slice(1)),n=n.replace(/([^0-9a-f])/gi,"F"),(n.length===3||n.length===4)&&(n=n.split("").map(l=>l+l).join("")),n.length!==6&&(n=sd(sd(n,6),8,"F")),n}function e6(n,l){const r=Pp(r2(n));return r[0]=r[0]+l*10,Dp(Lp(r))}function n6(n,l){const r=Pp(r2(n));return r[0]=r[0]-l*10,Dp(Lp(r))}function D0(n){const l=Yn(n);return r2(l)[1]}function l6(n,l){const r=D0(n),h=D0(l),c=Math.max(r,h),g=Math.min(r,h);return(c+.05)/(g+.05)}function _p(n){const l=Math.abs(kd(Yn(0),Yn(n)));return Math.abs(kd(Yn(16777215),Yn(n)))>Math.min(l,50)?"#fff":"#000"}function mt(n,l){return r=>Object.keys(n).reduce((h,c)=>{const v=typeof n[c]=="object"&&n[c]!=null&&!Array.isArray(n[c])?n[c]:{type:n[c]};return r&&c in r?h[c]={...v,default:r[c]}:h[c]=v,l&&!h[c].source&&(h[c].source=l),h},{})}const Xt=mt({class:[String,Array],style:{type:[String,Array,Object],default:null}},"component");function Fn(n){if(n._setup=n._setup??n.setup,!n.name)return n;if(n._setup){n.props=mt(n.props??{},n.name)();const l=Object.keys(n.props);n.filterProps=function(h){return Mr(h,l,["class","style"])},n.props._as=String,n.setup=function(h,c){const g=i2();if(!g.value)return n._setup(h,c);const{props:v,provideSubDefaults:k}=c6(h,h._as??n.name,g),x=n._setup(v,c);return k(),x}}return n}function Bt(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return l=>(n?Fn:Cr)(l)}function Qn(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"div",r=arguments.length>2?arguments[2]:void 0;return Bt()({name:r??Il(Sn(n.replace(/__/g,"-"))),props:{tag:{type:String,default:l},...Xt()},setup(h,c){let{slots:g}=c;return()=>{var v;return Ln(h.tag,{class:[n,h.class],style:h.style},(v=g.default)==null?void 0:v.call(g))}}})}function Wp(n){if(typeof n.getRootNode!="function"){for(;n.parentNode;)n=n.parentNode;return n!==document?null:document}const l=n.getRootNode();return l!==document&&l.getRootNode({composed:!0})!==document?null:l}const as="cubic-bezier(0.4, 0, 0.2, 1)",r6="cubic-bezier(0.0, 0, 0.2, 1)",o6="cubic-bezier(0.4, 0, 1, 1)";function Ye(n,l){const r=al();if(!r)throw new Error(`[Vuetify] ${n} ${l||"must be called from inside a setup function"}`);return r}function Cl(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const l=Ye(n).type;return vr((l==null?void 0:l.aliasName)||(l==null?void 0:l.name))}let Xp=0,ia=new WeakMap;function hn(){const n=Ye("getUid");if(ia.has(n))return ia.get(n);{const l=Xp++;return ia.set(n,l),l}}hn.reset=()=>{Xp=0,ia=new WeakMap};function s2(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(;n;){if(l?s6(n):a2(n))return n;n=n.parentElement}return document.scrollingElement}function Ma(n,l){const r=[];if(l&&n&&!l.contains(n))return r;for(;n&&(a2(n)&&r.push(n),n!==l);)n=n.parentElement;return r}function a2(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return l.overflowY==="scroll"||l.overflowY==="auto"&&n.scrollHeight>n.clientHeight}function s6(n){if(!n||n.nodeType!==Node.ELEMENT_NODE)return!1;const l=window.getComputedStyle(n);return["scroll","auto"].includes(l.overflowY)}function a6(n){let l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Ye("injectSelf");const{provides:r}=l;if(r&&n in r)return r[n]}function i6(n){for(;n;){if(window.getComputedStyle(n).position==="fixed")return!0;n=n.offsetParent}return!1}function Dt(n){const l=Ye("useRender");l.render=n}const oo=Symbol.for("vuetify:defaults");function h6(n){return Lt(n)}function i2(){const n=de(oo);if(!n)throw new Error("[Vuetify] Could not find defaults instance");return n}function Te(n,l){const r=i2(),h=Lt(n),c=q(()=>{if(je(l==null?void 0:l.disabled))return r.value;const v=je(l==null?void 0:l.scoped),k=je(l==null?void 0:l.reset),x=je(l==null?void 0:l.root);if(h.value==null&&!(v||k||x))return r.value;let I=Nn(h.value,{prev:r.value});if(v)return I;if(k||x){const S=Number(k||1/0);for(let $=0;$<=S&&!(!I||!("prev"in I));$++)I=I.prev;return I&&typeof x=="string"&&x in I&&(I=Nn(Nn(I,{prev:I}),I[x])),I}return I.prev?Nn(I.prev,I):I});return Se(oo,c),c}function d6(n,l){var r,h;return typeof((r=n.props)==null?void 0:r[l])<"u"||typeof((h=n.props)==null?void 0:h[vr(l)])<"u"}function c6(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:i2();const h=Ye("useDefaults");if(l=l??h.type.name??h.type.__name,!l)throw new Error("[Vuetify] Could not determine component name");const c=q(()=>{var x;return(x=r.value)==null?void 0:x[n._as??l]}),g=new Proxy(n,{get(x,I){var $,B,P,D;const S=Reflect.get(x,I);return I==="class"||I==="style"?[($=c.value)==null?void 0:$[I],S].filter(F=>F!=null):typeof I=="string"&&!d6(h.vnode,I)?((B=c.value)==null?void 0:B[I])??((D=(P=r.value)==null?void 0:P.global)==null?void 0:D[I])??S:S}}),v=Wt();bn(()=>{if(c.value){const x=Object.entries(c.value).filter(I=>{let[S]=I;return S.startsWith(S[0].toUpperCase())});v.value=x.length?Object.fromEntries(x):void 0}else v.value=void 0});function k(){const x=a6(oo,h);Se(oo,q(()=>v.value?Nn((x==null?void 0:x.value)??{},v.value):x==null?void 0:x.value))}return{props:g,provideSubDefaults:k}}const ni=["sm","md","lg","xl","xxl"],O0=Symbol.for("vuetify:display"),zd={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},u6=function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:zd;return Nn(zd,n)};function Id(n){return ze&&!n?window.innerWidth:typeof n=="object"&&n.clientWidth||0}function yd(n){return ze&&!n?window.innerHeight:typeof n=="object"&&n.clientHeight||0}function Cd(n){const l=ze&&!n?window.navigator.userAgent:"ssr";function r(D){return!!l.match(D)}const h=r(/android/i),c=r(/iphone|ipad|ipod/i),g=r(/cordova/i),v=r(/electron/i),k=r(/chrome/i),x=r(/edge/i),I=r(/firefox/i),S=r(/opera/i),$=r(/win/i),B=r(/mac/i),P=r(/linux/i);return{android:h,ios:c,cordova:g,electron:v,chrome:k,edge:x,firefox:I,opera:S,win:$,mac:B,linux:P,touch:Ck,ssr:l==="ssr"}}function p6(n,l){const{thresholds:r,mobileBreakpoint:h}=u6(n),c=Wt(yd(l)),g=Wt(Cd(l)),v=Ze({}),k=Wt(Id(l));function x(){c.value=yd(),k.value=Id()}function I(){x(),g.value=Cd()}return bn(()=>{const S=k.value=r.xxl,X=S?"xs":$?"sm":B?"md":P?"lg":D?"xl":"xxl",R=typeof h=="number"?h:r[h],H=k.valueLn(d2,{...n,class:"mdi"})},ee=[String,Function,Object,Array],F0=Symbol.for("vuetify:icons"),li=mt({icon:{type:ee},tag:{type:String,required:!0}},"icon"),R0=Bt()({name:"VComponentIcon",props:li(),setup(n,l){let{slots:r}=l;return()=>{const h=n.icon;return t(n.tag,null,{default:()=>{var c;return[n.icon?t(h,null,null):(c=r.default)==null?void 0:c.call(r)]}})}}}),h2=Fn({name:"VSvgIcon",inheritAttrs:!1,props:li(),setup(n,l){let{attrs:r}=l;return()=>t(n.tag,o(r,{style:null}),{default:()=>[t("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(n.icon)?n.icon.map(h=>Array.isArray(h)?t("path",{d:h[0],"fill-opacity":h[1]},null):t("path",{d:h},null)):t("path",{d:n.icon},null)])]})}}),v6=Fn({name:"VLigatureIcon",props:li(),setup(n){return()=>t(n.tag,null,{default:()=>[n.icon]})}}),d2=Fn({name:"VClassIcon",props:li(),setup(n){return()=>t(n.tag,{class:n.icon},null)}}),f6={svg:{component:h2},class:{component:d2}};function m6(n){return Nn({defaultSet:"mdi",sets:{...f6,mdi:w6},aliases:{...g6,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z"}},n)}const k6=n=>{const l=de(F0);if(!l)throw new Error("Missing Vuetify Icons provide!");return{iconData:q(()=>{var x;const h=je(n);if(!h)return{component:R0};let c=h;if(typeof c=="string"&&(c=c.trim(),c.startsWith("$")&&(c=(x=l.aliases)==null?void 0:x[c.slice(1)])),!c)throw new Error(`Could not find aliased icon "${h}"`);if(Array.isArray(c))return{component:h2,icon:c};if(typeof c!="string")return{component:R0,icon:c};const g=Object.keys(l.sets).find(I=>typeof c=="string"&&c.startsWith(`${I}:`)),v=g?c.slice(g.length+1):c;return{component:l.sets[g??l.defaultSet].component,icon:v}})}},b6={badge:"Badge",open:"Open",close:"Close",dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{ok:"OK",cancel:"Cancel",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},timePicker:{am:"AM",pm:"PM"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"}},M6={af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1};function Zl(n,l){let r;function h(){r=io(),r.run(()=>l.length?l(()=>{r==null||r.stop(),h()}):l())}_t(n,c=>{c&&!r?h():c||(r==null||r.stop(),r=void 0)},{immediate:!0}),sn(()=>{r==null||r.stop()})}function ne(n,l,r){let h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:$=>$,c=arguments.length>4&&arguments[4]!==void 0?arguments[4]:$=>$;const g=Ye("useProxiedModel"),v=Lt(n[l]!==void 0?n[l]:r),k=vr(l),I=q(k!==l?()=>{var $,B,P,D;return n[l],!!((($=g.vnode.props)!=null&&$.hasOwnProperty(l)||(B=g.vnode.props)!=null&&B.hasOwnProperty(k))&&((P=g.vnode.props)!=null&&P.hasOwnProperty(`onUpdate:${l}`)||(D=g.vnode.props)!=null&&D.hasOwnProperty(`onUpdate:${k}`)))}:()=>{var $,B;return n[l],!!(($=g.vnode.props)!=null&&$.hasOwnProperty(l)&&((B=g.vnode.props)!=null&&B.hasOwnProperty(`onUpdate:${l}`)))});Zl(()=>!I.value,()=>{_t(()=>n[l],$=>{v.value=$})});const S=q({get(){const $=n[l];return h(I.value?$:v.value)},set($){const B=c($),P=le(I.value?n[l]:v.value);P===B||h(P)===$||(v.value=B,g==null||g.emit(`update:${l}`,B))}});return Object.defineProperty(S,"externalValue",{get:()=>I.value?n[l]:v.value}),S}const Sd="$vuetify.",$d=(n,l)=>n.replace(/\{(\d+)\}/g,(r,h)=>String(l[+h])),qp=(n,l,r)=>function(h){for(var c=arguments.length,g=new Array(c>1?c-1:0),v=1;vnew Intl.NumberFormat([n.value,l.value],h).format(r)}function Wi(n,l,r){const h=ne(n,l,n[l]??r.value);return h.value=n[l]??r.value,_t(r,c=>{n[l]==null&&(h.value=r.value)}),h}function Up(n){return l=>{const r=Wi(l,"locale",n.current),h=Wi(l,"fallback",n.fallback),c=Wi(l,"messages",n.messages);return{name:"vuetify",current:r,fallback:h,messages:c,t:qp(r,h,c),n:Yp(r,h),provide:Up({current:r,fallback:h,messages:c})}}}function x6(n){const l=Wt((n==null?void 0:n.locale)??"en"),r=Wt((n==null?void 0:n.fallback)??"en"),h=Lt({en:b6,...n==null?void 0:n.messages});return{name:"vuetify",current:l,fallback:r,messages:h,t:qp(l,r,h),n:Yp(l,r),provide:Up({current:l,fallback:r,messages:h})}}const so=Symbol.for("vuetify:locale");function z6(n){return n.name!=null}function I6(n){const l=n!=null&&n.adapter&&z6(n==null?void 0:n.adapter)?n==null?void 0:n.adapter:x6(n),r=C6(l,n);return{...l,...r}}function Rn(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected locale instance");return n}function y6(n){const l=de(so);if(!l)throw new Error("[Vuetify] Could not find injected locale instance");const r=l.provide(n),h=S6(r,l.rtl,n),c={...r,...h};return Se(so,c),c}function C6(n,l){const r=Lt((l==null?void 0:l.rtl)??M6),h=q(()=>r.value[n.current.value]??!1);return{isRtl:h,rtl:r,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function S6(n,l,r){const h=q(()=>r.rtl??l.value[n.current.value]??!1);return{isRtl:h,rtl:l,rtlClasses:q(()=>`v-locale--is-${h.value?"rtl":"ltr"}`)}}function Ue(){const n=de(so);if(!n)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:n.isRtl,rtlClasses:n.rtlClasses}}const is=Symbol.for("vuetify:theme"),ue=mt({theme:String},"theme"),Bo={defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#6200EE","primary-darken-1":"#3700B3",secondary:"#03DAC6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-variant":"#BDBDBD","on-surface-variant":"#424242",primary:"#BB86FC","primary-darken-1":"#3700B3",secondary:"#03DAC5","secondary-darken-1":"#03DAC5",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}}};function $6(){var r,h;let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Bo;if(!n)return{...Bo,isDisabled:!0};const l={};for(const[c,g]of Object.entries(n.themes??{})){const v=g.dark||c==="dark"?(r=Bo.themes)==null?void 0:r.dark:(h=Bo.themes)==null?void 0:h.light;l[c]=Nn(v,g)}return Nn(Bo,{...n,themes:l})}function A6(n){const l=$6(n),r=Lt(l.defaultTheme),h=Lt(l.themes),c=q(()=>{const S={};for(const[$,B]of Object.entries(h.value)){const P=S[$]={...B,colors:{...B.colors}};if(l.variations)for(const D of l.variations.colors){const F=P.colors[D];if(F)for(const X of["lighten","darken"]){const R=X==="lighten"?e6:n6;for(const H of gl(l.variations[X],1))P.colors[`${D}-${X}-${H}`]=Tp(R(Yn(F),H))}}for(const D of Object.keys(P.colors)){if(/^on-[a-z]/.test(D)||P.colors[`on-${D}`])continue;const F=`on-${D}`,X=Yn(P.colors[D]);P.colors[F]=_p(X)}}return S}),g=q(()=>c.value[r.value]),v=q(()=>{const S=[];g.value.dark&&ar(S,":root",["color-scheme: dark"]),ar(S,":root",Ad(g.value));for(const[D,F]of Object.entries(c.value))ar(S,`.v-theme--${D}`,[`color-scheme: ${F.dark?"dark":"normal"}`,...Ad(F)]);const $=[],B=[],P=new Set(Object.values(c.value).flatMap(D=>Object.keys(D.colors)));for(const D of P)/^on-[a-z]/.test(D)?ar(B,`.${D}`,[`color: rgb(var(--v-theme-${D})) !important`]):(ar($,`.bg-${D}`,[`--v-theme-overlay-multiplier: var(--v-theme-${D}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${D})) !important`,`color: rgb(var(--v-theme-on-${D})) !important`]),ar(B,`.text-${D}`,[`color: rgb(var(--v-theme-${D})) !important`]),ar(B,`.border-${D}`,[`--v-border-color: var(--v-theme-${D})`]));return S.push(...$,...B),S.map((D,F)=>F===0?D:` ${D}`).join("")});function k(){return{style:[{children:v.value,id:"vuetify-theme-stylesheet",nonce:l.cspNonce||!1}]}}function x(S){if(l.isDisabled)return;const $=S._context.provides.usehead;if($)if($.push){const B=$.push(k);ze&&_t(v,()=>{B.patch(k)})}else ze?($.addHeadObjs(q(k)),bn(()=>$.updateDOM())):$.addHeadObjs(k());else{let P=function(){if(typeof document<"u"&&!B){const D=document.createElement("style");D.type="text/css",D.id="vuetify-theme-stylesheet",l.cspNonce&&D.setAttribute("nonce",l.cspNonce),B=D,document.head.appendChild(B)}B&&(B.innerHTML=v.value)},B=ze?document.getElementById("vuetify-theme-stylesheet"):null;ze?_t(v,P,{immediate:!0}):P()}}const I=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`);return{install:x,isDisabled:l.isDisabled,name:r,themes:h,current:g,computedThemes:c,themeClasses:I,styles:v,global:{name:r,current:g}}}function ve(n){Ye("provideTheme");const l=de(is,null);if(!l)throw new Error("Could not find Vuetify theme injection");const r=q(()=>n.theme??(l==null?void 0:l.name.value)),h=q(()=>l.isDisabled?void 0:`v-theme--${r.value}`),c={...l,name:r,themeClasses:h};return Se(is,c),c}function Gp(){Ye("useTheme");const n=de(is,null);if(!n)throw new Error("Could not find Vuetify theme injection");return n}function ar(n,l,r){n.push(`${l} { `,...r.map(h=>` ${h}; `),`} diff --git a/addons/dashboard/dist/assets/md5-15332791.js b/addons/dashboard/dist/assets/md5-c4ed0ff4.js similarity index 99% rename from addons/dashboard/dist/assets/md5-15332791.js rename to addons/dashboard/dist/assets/md5-c4ed0ff4.js index c1504f933..926ea5688 100644 --- a/addons/dashboard/dist/assets/md5-15332791.js +++ b/addons/dashboard/dist/assets/md5-c4ed0ff4.js @@ -1,4 +1,4 @@ -import{ap as K,aq as Y,ar as V}from"./index-ffe5e9b0.js";var C={exports:{}};const $={},k=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),z=K(k);/** +import{ap as K,aq as Y,ar as V}from"./index-7c8bc001.js";var C={exports:{}};const $={},k=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),z=K(k);/** * [js-md5]{@link https://github.com/emn178/js-md5} * * @namespace md5 diff --git a/addons/dashboard/dist/index.html b/addons/dashboard/dist/index.html index b3ff17376..75e4b9417 100644 --- a/addons/dashboard/dist/index.html +++ b/addons/dashboard/dist/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" /> AstrBot - 仪表盘 - + From bac4c069d7f897a40e5b1a0306ef7d83cdfb2190 Mon Sep 17 00:00:00 2001 From: Soulter <37870767+Soulter@users.noreply.github.com> Date: Thu, 28 Dec 2023 12:57:53 +0800 Subject: [PATCH 17/17] Update Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index baba35c6c..98cff5389 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,5 @@ WORKDIR /AstrBot COPY . /AstrBot/ RUN python -m pip install -r requirements.txt -RUN python -m pip install -CMD [ "python", "main.py" ] \ No newline at end of file +CMD [ "python", "main.py" ]
  • mB)TM=Lt5dRk0gzr_U=CYKvpM2vnRK-I%y9@>)9t!;}y(2#SORPag zn>!Pa_`l$f#4*dSO2sc7Jo?n(4*lftv`#;XhkAHNd=xH(u@MVlUA8+BSBS9_`=8D% zAGC!Gw?iPc8yU&mFiSeafcTsW#TWXv`G$&=e!X7Y=$#R8O^>lI5FN}{&?lhOvXw%8 ztt+_X#-fLw^1N7~WBn%DeF$q(SX2SNgguJ0xd49@|39z@l3IaN6tWN8BQ1@bByhJv zli?o-&O}ygej&BM!w_jl<1%c*Zuhu+4wqzgd2Go1u}Mz97Oo~S2C_qrq$5aJlpGGX zOI2NNheN_kyorx6Ldj}aL$ysy!~t#9DnVgmJ*&;-2?W(@#23#7(`kTeM?z_j%Uhc9 zdt|$XMdI;@uG{QR6pFLkbe&!^i(U5kXG&0L(}`@rl}-n>fn~u;e@?c%FZ%Y=nL7%sI=@JkH#9QfV8RO1!n_$tVsK(ms3|=BKrfaHpF%dhsPone1ClFTKwn5Q~9RjTfP#xSB?z53{>*HlrfESqrqDn57eV5N7t z`U$4}0O){e&Rn-!s5?MDB%Rx@gzlLyQ~qEG{2eHOKxVKuI@x4YKeFNA_xG}eD{|IEA+@i`r5=9M$vw9oOz(&>m2=>N@Hem=%7`@*4A zFl-B52>1Uv6m+?hXO=(hkJwvEKI_svXD+?LY4@F|SdlHJK9WRBB6w@`V zX2tjHVrjD8blHMuT>hvX88a5<%4^IUttvLw|ISg@p}*k6TOE!RDshQ@XR^0J6!#9QpUQ`${j1S%KB#3M zfG-_sPoW30n*AOzT0zmNU3&0ccOay#u4IJ8#&8W8K*bLm8_}&}jdNFV)dw+q?!_?YSdLjF&^SOUa03fYUx3=SnN@08=j@=7Y zo6ZzLyBl_!6h~h&Xs30~gAf1{2ttjXjLMDN!G!q9yXj zg9TLNJ?j5$V#P}RI3#O9-^i2%F;i^i-UMqGsV{+&U;WacA0?w_pG&NGoaoQtfb8;* z%t?vQ7Vnawn+v|@hon4_V2zL+dl&j7Ha1*?b)Fs@X`yUAZQuFDj=o*(zx-|KbOGm2 zH0yTN?Xu(wCd;$h&uGl)wFCZ?Om5ZVsf5jKce|`|(keN8Hp%<#YfN%jNH!$S4zQ7i!lF zIH`GV%k>GEL=geGsq4jbiCo^L^hMTP$Eq#>zz|}ms6*Fnzaw3)meUuB-w8S?R@Mng z7Ne796k*Z|*>l!HTen05TY;!W?|%*^*Sso4;MbZ*$!LMRFzg+^Atw z_-!sWD|DCxUWTM#j_gUh7%#=)|2>;zV{s+madrVK%lt|l=e*60%m6DMR#14>YO%AP zWV^)VT)L=t+7yt1hf+Exu}e1TKUkSnk|VM8^;krP%>jdtKf|6XL6ZP_0U#t`In^L^ z0N|3c(gp*Y1{;ZJrqfUuL=b6X0eKX*0{DKa)>lYb+>UP5<$=^bw}cofvx1xIOso2G z#r_16WPtTjIDlji-R(m5k~7=^glN#Ia{KSokMFk>C8>5w_r{)3DN{!14;y^Wwth0R@rFK7}NDQ8iX8$uDj1QN>eSLFi0Dp3avY>HhPaiS@c z7u;&1^fTF$&bYJYv4)}xcV}HOm;d6D)A`zbl&Qjf_Q_JhufPF#zoVG+Ka)M-a?Q8{ z(wEXsr~e?n{+fJ#icmjjzCMR_G;>;OuG3NDnJ+YEFn}q#01a3}o-tf4Q-BpH82f-Kj+=`}^sOnz^ zyQI=Uwg~ExkzWVlO*E7eH_X1pc1B%c?5KJv{OZG{;zIwQEf%+azH%&h{-kpHRjP8X zoH%~^SR7YK%#-Q(Elyod%KHA3{)Ml(!|v)cQ~8s&m-KVxSSqfS^GHrJ*ZQwv>;%dq zPIpmVGG#P&7KG_-+|8;(VYOfG#W`^Bj2r{x$ApGS9Z2e6Fq%MH zf%T!3o2;Lq@a{8Hd3;?9_`JnTFr+J?b&KQd!r~(0mVw}oSX)D$AUX?}tpl*<9V1WR z?v$Ezl8=o$-?)f@CB~C^AzHK+OM8%9Tbm(*BUPo^xU-ncl>6J2Om235f7O9_%smK? zSySF(HUuV7Tn{QOthPi;31;VODzd8zR?&muSg-T3K0;Bs5RWmgGCcC;xEfghW20|} z=q|qCW5~gkD_|&Kz0Eo{H3VuS6Az%di>%k4)*A=rJm^C$ugBU2Oi3nVObHlBsa z>vynjHkuCjwP+xvzbR5pLlp_cRn57HSxEZ=p)Acp5LTZ`c5+@!(PZHgpAd_D_ow5t zQYxQMWaonF!D=>|)v|s~9?a1?cGNtiq*D_(j*K~?wPL0U3XI>|nWUTcm9I7*0?WH3Sy=EW&I){mEMDe>!U-Y6 zZbRA_jxOvWaAFy!C*~Aku@pQ>D}sH!|4{NSzt~K&H`M<-uNR7JQHdqLG>t;{Uy$o> znrR#;9M!5+0*`$rc~?AUY$scYd1bF+`Ok}sQ+EV|q5VICU*xBfUpO!w4=H+x&y(PP zL}vx32coa`pc8>|rew~Kca3~ML@v*z;}mN$9do-;tj^@)=`8%kp%2E0>KUm~Xf&Pz z;deH$!6KF23IAVbQcFtQHB$gezds)M;2#P4XHpC9hP5>vFX}Eg@kz?pxyIfLKAD8} zJIhh$VKXg-^m1rn7p6Wy5a2AHNcOfnq|bZYyO_L4U$2Lv}tYl_acz zmcF5UxO3L#Qb#+$b1Ch*P2j z(nTm-ymV0PGZ5#HJp1?-B1KWejocuEQZ2(;83I|S!=p)i+_OUDklZZJBP%R;S+apq z)eYc!z;C1BT&Db3iVd$cVV}pSKnoMWoGG@p0dzj#f%i5^?DRNS#RCjpDg-E?pmw`G zyp6zWe#f$KGQe6!Ce19hEp%2oV@Ojf!jb{GrF7FK;lT$thGPrFwF;=7*kHRhz80IE zjS*?Rj=Hh2wigxGy0f!gz1!<;7`|GJ#ec)Pu;bL509sk4Nr??e5Q2rLLXLe}1}**s zel(Z>*oC*Ad`rEeKJnHQZ>cKxCJ*jAc>ezww z{q9z4o;~tB?HSuM!_bXACT5uU5s%h32G3v~0hvJHX1w8*9xtrJ&mjR{rb7suKu7|) zO~Ma0kel7WuP0>pw+RWG$Ij&5JcxnKvhw|(?^CIzp6+>Yd#2S=NviLBuk)S9|D3Z^ z&+LpGiDV9ITJ2NM9C~wnZXxkV?U}>RL{H)E%&T@9naJVDj?CfMtVYdp{o#MIZ?X46 ziX$5?wZVaySaG~M?as?(X<}9Kg#; z)m_iW)t&ZE|M*)wlbt)<|4g6B?N#qqb9cvLllaJJAd(;V<0EQ3&*>0rf%Zj&VyNlU9$#G zNODC}WS)%|bQ9SXrP)OZX04`@h)9zXw$1{?ZY-fWwr}4)t$AlQduQ{fyO)2eJeP=0 zA31SkI+~a(|5V*xIIz3wOU@K5Yhu@%Qp;bn%jF}}-UA1`(`>SKZ*T3Oh&Knfd*DYhJI{fB2_cG={<-K(Si9jzJlW1iP1f9KwN3iYbrB!O6$pBI60H z5?EARwxbnB$^r3im4B8vIs00~ihn6LlPyo90{Md5>vb<6C05>8NL5k^|E@~XGSeB= zhy+p0$f(3T3Bi)?376B^nH=-&s=)E%^?NCR2UV7f-jS(Lcp^2HR(0Eot3D-JOP+8d z`5ASDU4T!cfWK%TqzSc>48ODmXjkI2p{>vaoG3qTSXoG5yQcNg3CwKr$>8fkQJD37 zC==Np->Yl$dl&3%*&NSXqe^ZpB_TnFyG;HQ(blKA|HKtXLx_d}Y>a9u!K{anSJ*9q zcsupDS@PD$M`bOT`QVPh7p(oPlrul};b3^R|D=E44(6c@nT!%iAW9cp91^tX3N}s2 ziQdLj9Oe{h9aYe4Q9!! z*M8wu;Rr=DGS|p#TEF+eMegQcf6walz8|8%##(E`E(#%wo= z>%V!S^$FI#1dzcRelPL;gMnXVcfjjH+2<&W(Xg+tEYlP?2co;kI zEqWM$TO+KeD(D>g6%4KggHCtQr;Rah!9G@mD(BR${{gQ-01Q5pY18QiY??VT zHWeqOeQ+G`rm+l|@pE216lI8R4jIwCBfEl$Fmnfg!zL@;0&91_9Ynl$q)-jU&46Jb zy@@ffPlAM)jPp|qo<0br=rsuv{0d$-8`myTnSo2^-dz9qC8Kre?Z9SJy#f?u;DMpb zwdz!lZ_vJ@EKu}aGOvK+mtbM1^BIRY*eJoBBA?2yV<-8=h6Fb&gnS-ctXRgO!7XYRn_=hqJfQ zAzWTvo{OmHyBe8WZbRN9*E!r7))f$qRaJ=7Xki4Yh{8FY0$50aOpP)v}}qXnud*8!+;F;%e8~FaCzQ-rpt;wT$ZpWKi1K;g{YhVS( z;o1V;72BTdkR&w^Gl}(u#*(e6Exk_JCBjs_1WAe@awtlD{d34j5vfIDb;u}r1lKxz zi1N)-We#vlI;XtYyxhc%7DV8ZOd1xg2&RwjACtypuh&M(`IYL_=%IKWKde)^W3=H3 z!H(T}D0b%r+~}}T7_ClErXfG92`QY{YZT}lucAX2Ahie&sFEfTC`Nc>$+~L}H7?pl zl+jdm1vV*L@w!3A{?X}E4R6seDG_5Nb8U2D?ml#vsDTH6;?CGZNN>;zc^ad4RO;jR zOizSzVM{i16aM`d(yyLDbQ9`f);iAotis-FLSNW+6dZ{soihfoCEV@^^cvpW{{z+OQwyG=UshlaO;i8x-`67r zjgQ~u48TGa12A#V)I=~BNqUUjq;jA)0I#?Ng&S+313Rxx_8usygHb)#O_vGl4*}#k zI35lga8n)IqFTWMqDU(8z#4N+IB*g;3nM?`BzvF~3(f+-^hm z`k9>dFeHw`J2?qyk4!h5{BFOLlcfmun~=esxq8&~hTEPkq<;Vhqk7t4R<}Gba6i%k zNQ2Jw>qh4KiH@*1x-LsM8!0yvBNdZgMIdoxO72`YPFt^y-^AcVm}hwOB=@G#lW71k zdT!>6r8F%S6Jv-`6Z?tsjFDe^8_v@2G;-gG-uItuvC$qA35=UVf410ny+U@vG9ey8 z7Pkv*>_b8j9KG$?y&=Jy=WPoHbsi!XDnc#v{)nF3GQ(PftD*njQEU1#2=On9JKbii z5!47oiP9U_K^`vcMW5RoQOQ*bVbAz%g!;Qs}5+-Sr}}w>r%TNCBKOyjM6t0oF62?iu^!-;g9nQGLGXSP^t zZ-?!DBorEnCe3)7#bW8i&{)lgoUjClypDy66K|$OD5T*tZ#xn<4_@yCU^oK%M?i54 zs<+3@|tlp;?LzGa}$vi;z~F1;yJQz-{z_#!DX1J%_F$Q7KIE^3^YNZ=$ka^?B+@ zHs}wa&tAvCT(`UqVFHIW9P&J(ey&$)+&uGlj%NYiVljTh$pDU2;26*0J^5p- zNl42MJ=c$&!=VQDra|pfZgNm~%bWBaLqrdrm3Q1=zXBW#H2^84DDIVT3zLkjq$I2X zv_Om=C;I|`XIm`Q$y(kMjC%4xDWdwMU=3+neM;|Ii1n^T+`cVV?{mStHyZTj#(X|^ zM5zTOpBj;HO$~YTHM-`jg(P1zJT&$*t_QYV$=k11tbkkY;%0ua)%iQNMGt*jjKmg8 zoeSdEE$YwmvGC+;%FtMNqFanbpXXG_XT9C2BLgc-C@Kzc1PD-MZ_6 z^TxDkdTnERdSrHsIeW!r&z1l_fRQY3Pa9?^1lukWrp%52Q#Ghp&A3{GnYbb6-ioi> zjO<&P9R$IsybmVt&vXerxkc%yyMBZIalrT>%pkLIm6SO9sv!K!@-7o;axXAL1bJeH@pdnFoGHB{HQ zjPe@MX!H|2Aat$w=HcB%F~dS_7?rh4K8KGFTr=_kwd5k2>|Cr_6f zW+RtFITKBp@!}JL2mU$xE%tHP$_SzA0{oi0GLZ<88tw5ncK^iW1IG}I@&}X0CZ0c* zQ@^|CbEhXBV0TVVo<0_D#E(rJo5hU$dl4c}@rUe6P5fmK?b);Yu_bttN8a+5B7o28}Mk;@~qBN-mylo@HGhH)%}mdKI|@h3Z} zOcGi6lWnbWuLs}Hq8$_7v^wWDLw9$wp`q1&JHk(o~@>u4ZEF^hJM>8;1TlLWbPVW6$IKk4Satn>AO zHgxjm(^SLa52@`&tpJt#Ct-Q(c3SIkM7eL-&dcl@?3Z9Ge?4-*Rx3?pS|O#C{*ga` z$JxOxfVQ#ZsCE(sL3kDV0A;c$QR#RDXF%C4(G`3JPHe($!Y+qzaXlE|ALvMA{C@;+ zUfJ>*@$9Is1Y%?PxZ%wpC?L$N5@NIBb35nalAS05$mEq!#A_t0)y=6=BCEM2Pc|Xx zX?I*R^Ff5i_~KE3tpgQrD3CLv@t`-R7t)DDdM1|fAHC<*2YlJs3|XjQ;`3?D6Hg@K zl9qd;7ireq#YI#bLWT@4a|dRM?i@-TBx_Mq8A(b^%cWJfJF+jBEBXwzZUPq#j_Z2m z|7Cy9-otq>`77Z$Z<-CoYcTM>MiXof?oleZLLpAVYS}mB@QlCJMrO_%X8HCD=YBDu zd@LA|+HO4@^nNTFQOVvS>h+++@n}91xUJ+97)Hy2V%Yu`$c?%$0L@6#hsQAagPR^eiWt8 zpBXwa5qQYFqBie_r%$*5`oI~g0^2pQw18xia7ZEM}epoJWtVn zBa`I}90e#K(5YW(M?4dqXfTRT*WltNFCZIu{)#IaJVxI<=8xJq*$Hu@s$m-&fI8aK zb+(l`wve*7kgWTAi~I$cMIpglug1n5_KE=`=K)X!#7m%2z#-t1yb(hf#P16Z_zMo4 zfCGW8k}DvbC09Upa>Ety+m5%Oy1&9zJ>DOJ6=#K%M)gnh09xF`5n|6hYNSgaf8A6`)l{I&C(Uh(Jj9xobIVkpd2 z*NvJ%6}nKQ*1!`30tNl4w_E4*6(s)amaMf48MC8G1`cp>zWm^d4;@wg9%> zxbRWJ_56LoJ% zGK^)EXehB2l=+UNG~Xkr=2s#1T%odlJ}nh7u^UUhO$#IXLz7c_hy zI{9f-br|`F@AwOpZ5WQV;oGjE;CH9JN;k*P#{I=w0S=1JV49$&?wlS#Y8wjN{QZV` zOV{Z3SBcc|95Zsr3KZ@BFlw67ub{~eijmmp6@O>EOqaXgkD9zy(oLN{5lVhjk32#J z-rSq+-)APC%w0UQsXyPz;p%hCbmPJM+9c@?j}*>#NEy8Yk-7w=DTF|{&o(AO!hOC% z#Iiute9Z0~#hE)eC)dzA-t_Tqe$eh5v*AG=Y*)h^ZEBZ*1lP??_wwbHO+8twT@sVB zaX+eWS`sr-zR7GLQ8%k?Ga2i(7q^*;p*2dr+`%PU^6)_#9Jcel#hUB>6O9n){VIlH zaEP!9X#T|@4UdgQ-s0gofiaZU8nKD%$LJSC-PP+>@Rb(5AqHz>tb$lcn2a*+g!Rks zdb1S_af;t+ZQF69_ZPMsyN$M~mh5$Xqr4+nU8LC{2k54~`KgVPZMpcSh48(B_s)nV zF|fv*er_0O_OY9+4Yt&5=A8c@+orQWa6W)fZrkM^zqpFC#pi0djv+rYtr-y=WJ0Ea zx0N3AECZtY?pE-;S+H2g-P$B?BvieU0?BY5=pi1R3GPg}1cisUmqhT59>`n1w1?@k z+c4a+&OGUW&&@nFkH_avdn8?wO~y>*ZWix&){t-Tk0W92BO=_%Nj13Y&bqxpx$KrT zPtX&S-DL^&5HfE3_XZ?fjs?6P4VUGhPs+OMNIO%{@6SrMsEEPkxvT7d@P2FP_gPna zpywL_vE*>Z#M2ni0Rs`1yPPScn|#g-0NI)}6zF&ZrYhcjJP?G6WZ&y@7;YYrUe3ao zJYHE*(Eo(QBy2#&5|SsaD6-d6lVo>11u+xDLT?z}RNO5~Ydp*0AN%ExQkKK8ssz&? zfzuoEt}{fv%!VCL8dY|JQiZuCO^@LbL*;f$XiQEAFjkVA#dHmi6(qGzOERMA2T~zQ zy5?D+m@*`A#E;OGukdlB{7j;*3oMlVfaf@LFIaRTELFuaf~^@DVvF7~wlR-2$KPwB zWNPab7tfG?NjOkjtB9h7L4tmqn6B=>(%j+y8r+#civJ;0(I+5+qS#vxXN0ro8f+pY z7Zo6vyF54&2=L`#R|I~g3JyZ&G@TiccuP&Q#MaOGA`u@zm-zD^*49?gO%(Pb+;!Nu zY-nv!dUgch^U}9)ghpGw&SsiM;`}64V5}IG5 z)}OFy*5q|0EY+9$By=u!I#a~!!GA>#Wt_V3yYimTp>UMYz=eLik1gRSg1XO2NT~*G z7wOt4vl}V)>pYbk;8g+N6U3AF{fHM>Fe*`q*Dy18HMW&+ULWCDh!lM5aFo^-_pv` z(xv6)-k3s{qF81RXNCBbl;F(uqnJb63(Z)zkBsR zLmBv=Rg^VIFLeJhs{8Y4re1Y)uPf{fs0;9%uP)+a&_^hi12N-34L4D&Kw;}wFSpL0 zZygy`52|Aa>vGZpk7B|0`Sb1X)az?+x%Xb8aYN^#isiuGt2j{L^KhUktkGz^_#%GS zkFBFC6TyA#2|%@h_|mial0g>8t=f1J%Ki;~+?j+g<20MV~ODuz@a+nss5hhAHzy zZ&-sJbPcCU0MX~sz8$m#dU_*MXyzezHLzH#b8rJ;$ySjX#8fb5Ris&Kt*zm=yVQZQ zNk7J=e>y%=TpKwa{C)gBkLS>)=_6}MY6BGHTE}SBpTb)~ytQ(C#J2Gq!+~F}!#s=n z6t749y~kXSyPk5LcfG~+)2?S-@4-yzz)&ER2#jw57FiA|WYpTI&yek)?Osm z0Cckdu5)eU4!U7haVBj31%CXxYwTFX8&Af)l?vdczHlq-6E;fz)W8*#xu6Gny6Me; z_pkW~(E|Zd`#-Qd1?mA$I_z)p@2-(0r`7T!6_k(P5f8e!685k0Ch%t36KENv+Sl=) zKe;^olE>U(9uyMTlB(>x&}7UBN5 z3!26q5kbk>sdxqRJ*yA3+iSMBpF~>*JO|?xBi?HbM=}JC4MVkXlgOK|Vpa7TUk5km zC4a5E7tH*kneM+vT~1EJx_Fz)0$*G(?M0J?Hm-DV&~DLphH7`{J5T#XGElR>yPeVK zHQ&7=#!28gb@7MWMtk$@MT}^#|GgHG-gmJ3C76W4KQQ4# zS4pMr6X5he<~Elw1nK^3-g_csb)&zw`D%;-o7=cjCsAW)PH5#(#OL*M0@bn?`9K1V zc7s{rJ`;=r5rdsWOpHbY&z(8Z5yuXR3ZFoYbT|w6NAW;2vJE}GF(L!3;3$I065N`+ zOfn=OdJbWZ^Akcu^jFDXMPU%cY2j3HEH+Tbf*Er| zkctDQ%|{E!eLq`_h93UrADl93RrzX-9Ti*bN1~45-kL#OK=dz#ee~r4$_r5@OKo2> zLZq^FL`R{(T^kb$+D{T) zdNVhAD1oEaxO|WGVCQsTC#2L|6wz!H#iHeKj*?#X$`8P6--mI!1JU$9>AK+hfa}B9 zm$P}`j$x;aNJtS@oRTJG4u>ZViNcZ=rF{}|9YiE0CnN5!IVq#|(j3H^IZq=Z=+%?y6lyaCtu)G5 z(e+F?jeodF+Da&NAzKA=#VP>+`U0+0Q+9yruYXMRM105ru34#y@)x-h_UB0>8}dQQmM5&=PpZ zr|3at55q-dqS+~8Py(0}I{V%RO^Rw?iMWK_z!x46XiY@9IWgNkeU)Zo0ihQVu(%-w zNq*)`*x-vxVmhVnP+(4ktSWPM(G8b2yrg}WmXne96-8?Bp$1D^ z)3stU98MN%)0R1ok|KwwUxy;a>iEcq7jj5iqjwO}l5 zSM*<%G6w%lC=pS^qO1fopN2ev@n`^97F8vHek-AbUw>oRiUoWa?x3=l1>(t{jb;sG zl*kscMko-C_@&4vj7nCMV>vSvNfqOYmyaGAMJ|wW%L|iSruu({jI0(^?n6eqxGMX7 z36S}U%k4)3QRK^#Fi|q|dh%orj2IDwZX#^LBm0zs??Nz^Oc`28Dk?#^jFYk82{dl! zPzcG$Mg1O1;p`=ES$}_3;Jc>tog>C?u&=PKz}KpX!}P$JPT}8TD;2ibMp`PHp-d;K zXg-r=t?tV#_`CSQ-|IKfr(gZtsS_toJvX?0ob|H~9h_<@C0xBIg}z0e&IO_EQ?ddw zm~%agmWDW7`bJ1P$Fxf*m}F^dmjTV;)h|{crEB4Ev4`%5NYw4%=$ZkskU%cAYDNuS zIAK>Ks0IELO=JUknf(`b5vSN5SbSY^FPzo_oCe*!N^l*zLbd^*7YM+^VR+&-f@^R^ zd`^KOynx?JhVglSJQX-?97Bj)%$xIibH2OH)5hZXc5l2Pm&>t9dN^+^8lUs0WBvz> zyL~xD;WzLdGaoR<7xm9?`NkLVJ^Y|A@Cjpo5{?EZAgoCe9kJ149K`Ajis1h4=5lD968zMOytOi zIM?$H3T^rtxy`R!fenNsZ>+|J7caoSvn*x}iZte~@8fQhHVUK#us^~?!&Vm`f86=c zCY)!u)UyG8nd|Z!{vJn($0<&$3Hd6)r|7&Vu|jC=v7e+0(wf;3Ri!tn>ySNG@$1Mw z-@zKD+Ch_)J*+$n??(k}8~lu0`uk!tWqhiVP6fA|=~y(lORmYVUSS>JG2oDtt=LPk z((d1Ytkc1ArP$6tet5T4yn9vJuUWk)atMtWuPh3vt{}Zvy1qsq8?ihOx01zsXikM( zMsZYx$KYBQOcW$B59UIFwgU_jw@7D^i3%A6NaaD25bQW;U0h6mg%>DZ8)=qnnVH=) znV$5;G;)bTb|ymj12TA1Rsafecj#H}T&X*ZHCHBWzAc^yH1M3v|?OHAR9bTeK z2n#0IJnl{X{0?NTRh-ki;LCA&3S40#ED|pfD)s=0sk9e{|3YNLKWH?Rc>`%gdoRKK z0AIuf_H?(K8`GaLymIBcuyh6A{wd_*34ZE%dj9-bJb#_rjbwAS?ehkHQcYfMT^+`aqo#3=ldAF5-AufGmcE4rmB| zk-y5amMT$HIzvhj--y4ShI-%qA?fv+I$FHL?FKlFFlwFddgr2LEmxxUcs>|NQU=$T zt=LE0`Z5qbNPgl%G3{mibjb3Gvlx8v8t5du`n+?plsVEDiN;7P(yQh$AecG6XrdQ6 zuePFh#R1X+LMyPr-4774!R&l|kM91;2C-{^&88DQSn%%>9N57Iv$sKoG7`&xB5kG{ z>jr%G3af+PmLQ?K;#6H6`=F}8-b@E_Us}bQ1c9V86*fN81oVPi9qDle=uV<%c^L#+ z-7n$rB?}wSFUaw}KqgWA!sS9{gWjLs)!yE?)T85;sOW6l@^+0;S9yP1Xou+`CJu09=TGk*ZQO&b&s_QC>xIi3l~rOOv>3#1@3es;Gq@C}!OO6>;K-+OjEBQOzd1`_m25S=G2-c@Hgu~t zxU{1wy2xut0G%w3G#qGPP;{v8g^Do0P=({nFp=DgCogF9YeZotN^D)!#iF%HS&Hz0 z#0d%0Omr{PBU@ghL#-5GRau((O5;$cS zYa(YfcbfGbcoj0BaY*!~oT}!m#R6is=I{Hd`{#@mfR;KPR?KVRe8S|{=I(10_C9?H zcNb?A`Fz4yQ6-EyPl3k~r7)w!u?G>TNDxMzqLdD>91=F|wsHGiGmZ2okn^!)U#u-n z?kPDIUr=8wCy=(sdIeQ`f31-yScTHb>9a0t;iCivk?RCy-!Y`9lj(KLdyW)s! zj_gEIAsmsUl;dPXVj(22)mf+0SkP&U@X}ZJ$ zHr_}w74rlTkZ!FS@o*pz26W7kU5Eyv_f@jN{EVAz=(;K zb_0dMTn5{-GiP2h;nIZ6%lY6k_oq~8-IPhVH7OYYdHrF)b*!@} zpE+k1`hqxA6YzS}RRH87H|~xGuLh&;aqi=JmvsKB-MwN9Gwk2N2}15{P3usyp3W-w zD22Lb&Iy~SE>a8s|Dna?9MrryE&ux_w6uG)i1m97>sRL1Y^tu#Yv_?&M5Z>9`$*uY zbDRrC2q@!vwnAzytrR3bf>nl`d=ND$@`bk63j9ecc=Fr9Y$B1>z1noKI9)uf9$r4I z(gSN#P9r3Zqn%g>r=#7dS-%iuiHxpiP-1|-kgQHmSF1BKLJwVM%iwn^cD)OeBMh;< zlSHQ1*i(R3albC*s3{Thh0=P~f%**HqP=YwH6o2wx4nXUVLSNz7`>XM~}DQJ70s6y)$R{K{-K zD~E%50~K$wNVn<*8OUqyk9xD7NHMO4Jz72#9SO(WZeK7T^h;6A7xuW*Io0in`K@?e z*1|c}kI}9Le8Ff!O4|Gl94|TZ}QK(o_D>7T@1z4 z8EBH*`y-91>5sIy&X2?Xa6?@qM%*9p-9tl8Q%kAr=Qd9?pZ1}d9*PgE60@Y0(f6M) zSF|?~Mm!V<^=87Ws0N>jU|5k=)h#E&UU_3W!v1&+MQX%^7!f&|=ue4Z;M16rJ`7D;+OR?9c5N2T{fn=L}FA$Zb`todcx7 z0Lv#Gi*RnwLS_-sX*H^g9S3)V)`zVOrEe=8%0tIBCLN(z&iq2C2Sb}m95-e8_cv51 zW^f5+30I&dlCu50I}lzb`23){x7HIG^vnIjS6~9KVO%yM*-Dhhfv9ub9GjIjPubYx9O90^cUuR<;?1 zchY&XZRam6FSi_d{V#5}U2*(w)9!EL&f7Li>cWrTt~hG9Y4__lYIn8YE^NlPJb{oLxRW=wd3=ZA^j{cp2H38mm)7=Ry6EvD_hUk-I5Z!(wuD0+tnZXC_FCL&T zXy;M=Y0jAh=5-^`gU$qg$XDS*D?%8i{nwboL4?u;1Hr=V%zX5qeGKO5b=sM4jomqp z$mi0XhCWqU?R4I%N*{(lqE`z1$$YwceAgRjILVMo8QaFntp{ej>BBG(oCt4S2<6MW)NLLYJ91 zZ7@D`&iq&K`WIkNOK`u|BGy)w8>48}D05;SBG)8faQy5c3CoMg#2KIkWX#Pn*V}&-v+{*#+&bBL{7Ju8J#XG6fBOn-HG`O9~P!X{i0 zg8u(LbXLJLck{gfR}w}L7CZRZ>)s^#gLYX2O*{=Lh(#2SPX2-KED?9 z7a~SA^z*i~^p0pRKAjfDHti7ax}^-ME3 z+92{)n%F}GSYwZP3yI9gNG4J6P66>5;90nyZgNNlF3{jE+1n`jATn-g0lj5t|z}RM?*AR+;+lRIkEg;%yEn?C^bz#TmV@`E^x3$ zjy0tHDssMUAU&X!lZy;8Hw2%7;n%UiNaPVZI;KMA5|CIy;KVuuY}4SXr$EnkfWBN= z;jqq?HJT1U|2vdFmlREBp&*PFQM7nqh~8gXCldR7glde790LYvoT7FER_cX}={R?|WJv*E3 zu|51;B%SLjyNWvWS=W;5LD!?8Vv~V{Fj<7(HmEc`Vs-|OliLV*@{oy^I7R=-MKZ1M z^vF+ntA+n)Uxg-7fXO9r+wo7`@8gt7Bd4O=J8hQ8B160vA+)0h6K9S|%Io~0mD`Jl z(&?7z_(C7#MzYo#Y`n|Zx0C}zU}nJ+QFn}UH{x(IMyk&ddpb|T%WG;4jccKAf+96W zgzD7ntGs*y+Wnz0GyTXhLGf{7F8+r*O<=1z;~1L+g(#HJ?>0}=l77@Lq8z)C)MBNjvXq-7LPQq{9x%8x5&B8dZ`-lbTqfn-DVjc-_OHlBCW zmf5@4t;i+dFiNuGJ_<0J9#M9} z+dcV!_BGZ2*oVlqHx2Y14&80K&LsmBu7d3rAlwQh1Q>R>bO3A3HUk2GF&_^I&=e^G zsjCEA5m$9lLFn7v2h!UQPgpzqcN0igf52z^DyjMCL^wPVWs8WGNko&{s|(?6$1LyV zpPfrp@zp>P33MLvZw#T1mAGjHJ)yIIJ7LA%v}1=a2m5iQQpoJn5OCv52L79U{g8?~ z)boKt6`wS6z8yQH%xp>VKSVwQw1(}QQC^*e4Lj1l| z+I=WX26whREoAq$u+RsCsE!20gLSFZy+Y^(k*`;@VL<+{aYoMLxGw0MPV0&c3@+jy zpd~O}`csA=c^uAgsadfWskN7u5!H2t9%}Tk+OA(QEcv64?%*3J zE=T5ZJ>ZrQ$l+>epa#nv91Zo$m)GD~IEMf(WvNDPgepw>h7S6Hjlg;nF+IR0A!d+d z0v_}18M;Rs@nraqtRTG`t(3 z-JrzvdbP2Gy+8MOwI=K8{Y$Mq^~y=M+hf^)=Z;7LC0R$v(o^{-swhm6kjb7>IeE8i zC(lHDBPWyqYu4c|pgvOk*ed2w<#IM6AoUWm8=+~A_B2aChyWb`9Sm+tj$GhdNCz>5 z#XyhwuYyOUQ&>kDkLGJ;*V(2aFo}|VMDA(t z>MXCtB9@wyY|RSBampKdJeiE+4<*LHkB~QsP9bmZCPXp$O}8hg;SjD0TmyQw(J6Tm zNLDOUAW^@y6@7i`z2rA`I<>ZjoMtO4qlehsb#xk{1B;-&wb8BR?rPwU`zIdTzyGm` z`|ogkpx;72{NPFkkoB&zQpMqmW( z(spevt!~rKGaUTQ`4QUqrJMK5*_zm<+w|*oy?9H6TuyA$>IXKWG6|MA&_}8%kfm{@ zs2dtk!V?NiA%Y^Ev4&Ix*DYHcJ3WR0y_yf_=-=e?6S>c3-gyQ?{rZdPU(KC18?1tl zU|i?v1Nlg9;`zy3x0`oMeKo=bl>ce(*&Nw0m1FQmAyal+-I5~0wf73WDDMrjJF zC&^5>yto2Fx;0!%kjQ{BD8l^9F@L?Fr0=3~rTS%mF!D>9g#?WXDp=NQf3|n#;pL!G z9`ozMbRFwiumQFUW3m@@n|-&tNRh08An6ZYSGWcR!VW4@ogW_X~Fd z46-3}QyakH47O258*;ym2AUae<(Z%RaE-Sz`n2_Lc{>_F;b`Zf^`jS2wnVfu_Pcjl z2rdw9t+Q|AOr>lb)gF(7zY$={DkM=vrgF)iHV>jh8zn^g((pBBGP6;Shp`pLJo4!> zqO$`qYjt1RC5H`G*mcr3G0i&ZnUjr)1-sR<7bcAR>yRg97m=hEnjY!OI%DqsN6ESg*OZb))zZ{IcC6NOgcP@jeURZ z4E5KsBTx-91Ky>bt`>F7*9{c{17P1V#rlh$6V7>Wj0)pRKi zWB4e2%jPC-U;Z`za#~|MElmj@pX=0&R0dyiyXTH$BU#-x@OTlP8)7s4`&@@_hkl&u zBwQnL#BKM&CoOZ29lYYV*A?AZ5oq4c-Jx|(HXXtfWX3wzA4S~mJRMls+IZseM!n%X?(jT`v-Q|t^;7RRGA({UZ} zPGPh}^Vm+j@wONcg9xxLQ}#km1KG2B)7bC3DfP(!Hf#yWAczuY|NRlhAP6}O_(+`2 zIIwVpKy|#OvH0|ch&lO3+ll&cFa_e}TX z2X}@6u-J2qGMF55KLkTk`2D(Dx7UuP_PT$R_1m#axpAO;gJ!-Qkav3N1BdH}>CeyB z-%H=RkdVvpw{v58zPrhtFM zd{wh*g~Pk>b}a$q1U?$X+JcOP)9;(GVNmqx9M$xK1Pk;C5`pWe1P2yC%giyqH>(7B zAhZebLV8jKQlaFX0`du$j%7~8tYo|s52JwflbP?st{sg;j-2w_N%`cwBu9|gSvxio zL`0Gk{69kWt)I%AHh@v5yoggoXr#ov`ujabdvQH^CHQC%B(fN4-AH0%AkY3UOd z^P>1#U9ZnA&*}BDnT;fy_s^E{@m=N2r_oy>s|a}_Lb@cK^gN~&redXZTN9)B!^H2spsOs2w{d;brqCIjfjW;sZ!Ou+W+h3pA`8`r%HslD(A`G+E=DWii zNuJvX1PWRV7*sm>pzFZ{ChDo5;|-P;jl*BE7xKx^Ym=|a*CxhBi>BeOvT7=0hO=Ze zYL6VvjNb(U4(+lR?D56V10p(_+ci_)zc{JIs-usMRIQ#|_9A#)lu)QxRHaG!I~QWnNFX?qFBEevsumLujXdtQ zd;wW%xks}xpXQN`_<^_~do}nlP3>Z)`vBWhM7~v|L{EfFE0ZXPPX>6Yn4z^22G2uJ zgso*Bs$7%F4aYl0@(N>LOvR$FxYFg|gC7Dp&j*4$LnHHzSOIv?A|L-CwNupuu!F|TIhka5;+H%QNQYws?hLAs{hEB|PTD;+4;7xC;*J!PN@Z%A9@B-G(P{8f`=ogu%1)12=U~#Ve;hXMyaA?jb zM;v9F+L{i8(96SwY)Qn)cIYm4#i8Ol5-vU-zK0#!pka6%GL&axoAz-kB8>ai2jl*5 zbJuT--E2fohni>W*NqCveS%L=bUa039TRj>#$PUmA`={Jn2xO(IU%SJ1zb;*V#%!L zpy0zg4-@=?SlG%8B5bk4rhqTRUoRiJUsnD0#Oz^HRRe~)sLhtLiG}Vzgux%pp93ya zx^U8-`a&v+sxVSCS+YkI+3iErqh`btfyj*F^V8^ld_;9mADT6bI}1Udy*HUD&1#L0 z#NoJJP{YVDd{UbFNa}D=a)+X_$8V+PEtugIe>7emnK5c$f^@c1Uw@HXhKrC4MZ^(S z0reL63UGEpKN6=PCJBAJVm9d%Kn@#k6L2i3MF{gHuEvjYN{zgLpkLHCP!j!m?nm-+ z$OnvetXY&TTeBDTW$c%fkr5?P@n+{Vw{N!+$N7+*PpSC@+xLZcSou5NS^)mr7Yf(M z%hcDyBhismw2)FJQ1lEX&klH_Q6$*KZlCjkhnlf3yh9C` zMp?CzJ`^FxdM8_kIP)miJJqx5b84vWX30s$ieP3F1((U62A+)roLpjiXjV^eLS4&`|CCj!XW3XFVUY5`=J@NQ|pPy92UPRfYR*hP#7yQ_< z?VV?L!D_nuCnAKNRWL>TEERJ^v8~8!CU^pY{)D*O_j*CaBEvLXI0Q7nKkP2S9ba@O z1KQDr*}FW8zlSz=hL^N8Egohb#U06oFUdg5V(?$|OMH8p%EQS->_Kj+?a_HDs{Wfe1-$)Daoi7M_dgknD)W-8{lKp7^bFF0V!mNB9geIF-Q{08VGEdBN~Tk`$k4tC?d0fEM-T} z?l0Q|1llQ|M-HT3$5P{WhE>hnp!DSX?kZ-AmZk5WJUheOcAs2(d{22sI-AOQlmH_C zU?YMAa)q^U!T{rmy(9P{QUlN!dIf6)e^h$!faXo_FxQe{*MmVXipi!*OS)ad^N^&g zsh=NwQR1HpC?STA0Xt9&pc*1x_*DMX6O!<>Gw^)isgQ>S?m_}Lr1}MfJ;T||<`fZ* z$YJ;N0M5`0Mg;O-r+T=+(Qwl_Yq#v~=LFckZE4rYgLQ4C-Mx10T73mSY^esF8DUIU zXv0%H6HABve`@JIC5WhxG~B)1Yn3l9?q|`^^D=fFteij$aVreDMIf$5;Py)Jy7z!* znUI;mF%XJPxgQ|ll~73>ha=ROx*bF`(>i}#NgVZu4yRYf4#ki9a+();7;NR<*j*EF zfFp>%lc%^U@whfxg6N;nW=Fp=TEw%Zb;$VD=}te`pJZ&|_X`3yN%*D#&r%Z%jAxh- z4}`kns;Sb40qP3;#0c7iZ-5KFtml4e?Vd)2AiyRaUr@@H@_8rgp%gRLV%8&`(SyP- z)ov`u{RkdJIqQI;?JiA?NKOvLeAM^xF=%6t#N+k5AjNQ=A!wCdV^ryZGH3o6G{Vi+ zxjB7HwUr->wh+*Gz~T*g)qV^jhg@$LZcgryQ|{C)Q!Z@H6h9o~mXd+l@1d~(_n{>@ zxCDUjz=Ttv5?L6rX`N|@*%B#;66QfEsqxuYf>LRm>8VGamqVY#wiT03ai5viQvgi)0t_Nzxo9z-LBzJ?kd?5tK{@+44M2 z!~xu`)t=%bpj@T7Y8iuCZ9op=f*C|`9VYHHY%r32g;C}}u#`7HS@s7ZJn1p($+t(N ztfJZh1mncj3G+C6INg0JQlN7Cx?yM~y$uzr&q3w6u4^INsyM zL~jT5X22Dvv6r!9;sX?4M-+KWhe@BSk`JcZbow?(_Q?VIF1w#B2LgilYtd-u@K;5j zhUsR*RPG+=z^;|!hx^%47$0l$2VvBkCD>KvYweZxN{7`~yX#`zu5*8p2fahpn>l#Y z;{fo*OV>_RPMp9;+utu7D=-&Q)G-m;DtMX=$r*Mco(zvv8%hJj6A=(Z$%G&+^kbkT zsIVm>6zFK!%@(*T3dtG>mH~4Y)M)4rbB0%$fts_VS%}Mt22QF~IEGX4leux6Z*XJ) z&1-8WLz019t(Jq_X|sCvod}ALCYcQxDqmhjEgM35~$$ZY^fr}(&y-i9M43@9$ zt}#=~m$IYM!t_jO)=oy?6R+e5m*?c4_$kgWz- zI=}O*!>%UpozmheK9gX9SO`hPC1&U1s=2o?b?+q6fj$x)GIpQfRX1<{+G^`YO>_Qq z({_R5_{)C(F|x3{E2KQ$LjRBQ6usm!&P}}eMwAS4Bi6bxNdt3I<#K6n90)511&=3l zo@;_gWXEC(W}_iy1Hx9{d(YE3yA!(1bLb$y4w=s@<=m079SzW|{EnD8*5R}S-IyaGecmEn;GT_}(!5$*J2%g;p&18d7LtR(nrL& ziqC=HIiD<);)vMleR^Ma;#YcKd1d%JL0HILaYWgYn;#V&VGL>V(328SwopW=-ItMp z%%l7|J^GGY9}7qFh8li{hA?}uhpfk=YMzJPZajYB*#{I$HS)f@PS)$)HNhYLko^GX zBI)#m>+PZOVKfHHsYwNwIq+R}99GymaL`z>-tMjp&$Q0$OGpS2LKV4w&T9xOG{3KKY_m+>ZzRJ+5@;bP!4OF@3`QK#M1L2!mk{pRw~??g7}k-pAZ3n) zd;p=cMBMKV%P`eP^jtiS1cIKh-#x;73X>4mNtxMD8bH<}ekpwaa0m;dp+fQE!AVpMZE#V{RZZZ2Nb{06Ak+#u|U)x zj3FbOTe5JccDthAJ=q+iwS(2zvm~S{Y$RvX=KQc`L-Kdt3hpLo-SX)948n7bD?LY@AKHr1_nukpoi93b%#lEy#(%Z=3 z<5#7tY4(X<#({}rvYsoT5{k;Qwc0P*BY74IN_jI{n*9f_|6ICUNu5*ue*n{mZGT-v z7MFL)$W-YKAoo%FTDtqd|6)lkSISlyvrtC>XR0nuO_g@3!8}e=&9rBK!S79%8X+x?(7ycYKQ4}vE4)R7$@^@i~BLAQGnhqthgIBg}M#bY9b^$4~j zEF_dNGYQp!p@tmzsO{?(VNWrPlU*Fn@}Z6DXX{|KvN# z0dvsLNkE%B?*7pGTk8Mu;GS-NQcxE17XIyAe#a4_1?wNo>C0IEDk#COMy^G2z)*xd zZ7$u@bH6m9#`8JH$ueuOHRKezZyuGzP^h81I(i5txQy=Qu>aihIe+*X5`oO!KcB!X z`Sh`aWB3o@1FA`#T-AioAFKv{heNJ7U%KYQ%JV z$2_=4L>b+qkAxz%#BlElywBaA*}9X$ZbKN05WM7MLD?mG%G2=)I|L#*m5S1f%Yq4I z0e(5s3i`b_5j9|-{AUazrm^;9y9J|EMv(IQLH$v4@S|XdRrX{$8)75PD0}-Tj zNF*+*{LkG#{NcT_-;>QUk6*H1=vS0@`s~iX(KW>z)ia~nRNNnkrLv=$2z}G}UsIp* zz_}J+9?vPPDe9NlQz5M6I4oiZHoU}G!ej?UtwcCzC`%s9cw|Txfo}_>5Fma5rske| zfN)L7x!>zpKMOP8di%y<48C*co^Dv4xhwLT---9TmOzIiYJ|l?Veb=%=J#SK?8oQ# zt0h}>(H9WJ)AroA^G>`yzNhOq)hAL&*A}M^>QS#Z62=;q{^}6focGQ@u0~$XyD5D^ zj2P{o!M;Xe38Q(0Ze@08>kK;9~kd_wbdbSu@pY)V3C9ECMJ?m2cYcHxu$%#oiSshzAv)AA^L zXRSufKjHVEKZcs17k5oxXD^gh1_?6)If&sQEy3SCiSN*dDJ+ma46^!kQSFUm4qXkM zSSG^YNPDI3mwEt?IpDlZ1xeqW>m2?#KrG%jXrWMA=^n9(q^t$(Ht-|uY^ju;49+g5 zWGy6U@g|GKq}S5!aMyO!+;?bJW<(HQ_Xd&0pv^OF+4xRtHaM9rX;vxge5KbLLR9ka z53UnIb)aep#Y?jWOQWq{fe)r%NHE&UMeSj z9#1ZRGFFe`%QC{0;yCAb`4y=1huQRWahDp(MP+w1Y0rivN3HMa`B|U0hr=OXgNXaW zdPN+{Zp;*Nfa`N6N9mRX%o5xe9qyp!3J*hApRJjBd2P0&7a(m{OG~S*7EstIx+s-q zb>!G4B|_kQgbtzNj3t?w7j;2c3pQZ^zlb%VqC1cu)(iVm5OyFdAy9@ z6@<$&DqGpPgj5J5K)32#-}2DngDtTQ`t!i3aStWXvs1#tNkSfAwcG))mmeHhatjX5 zr~r8o4$DUWFzIt7w#WLQwcN{|h7@Y#1R(!|rHLGB^!Od%qY%yZjEH7Kme3Dce~VBC zI3WR{>p!V4gsPL(&_eG|UBt7U6Y+Oqtr5m`6+0*l3m?Y6T%CiP7|V<^4473g4NU<2 zgq5hoT8})Uhy2K=I`zTyho662y8ERtUWL}a@~FN9F6pmKJ&^wJzk6#sNH55kLOfdJ zsg;39Cqy`53tg~pHAq3wkwc$Gg+LP;#)`Z(dzq6UwX^c7a${tEjkm}fViW}c1M8J5 zYx{rdz#lA8qur15rkC233{~(bvhU`}8&pOx9%(LB?i<0THYtvp`@Xpi2M0G+8i>J3 z$6S#}{!qG}fJ5HS%*JA~8Th5M=`7gK3XgSZwesn3W-&8ftX2v3lSm}-(fUNVxO;ZP z9`MQ!xqX>DQa5d%4uc!DTfe-0lM&MTslOC+bF2M@ChEW_Z`AG|0TAg_W7?jAfb$XH zCo$I>V=p`v+m3uM!Vxhe{J;?YU_itTECy#b8f?qi(2ZQ(w(7o7U){3ndVJJsAtU}z zai-wiYHkA3SjnzYA=R3lD`ZElT@p*amCshIN3)nOp2Hhw+BU1@1~g*|Z-ds+%ePMF zE^gS_nByONTsLODc{{XT-dF{bw@&p_+-f1>yD-Guwm`OM$|;fRp)GqL08BbWi2k5A zq3A*Q9N48mn1S_!B@s>$%VjP-ZXs)~&`yA}@hw`@YIz5|2hP3k^=kKrX?E5ZkSL;B;DOt) zWfK}0QkxeBF@!k5IA+3L4U`F;ga~@UxPt?$5RxlH`!FbMWS=2RnQS);IlbG_wRePJ z5{raCX1&kX<_7N{3TxTJWI6k0VP{E(LH*=iK3LT(<$-7Qc8ktU44$KFQ~nF02{^V} zqzU`%rnJ;oZ$byc-+DB>@)xji-{!as?xUO1@@oUuyPHt;`hiF*K4(IA&~b)<$-@d$ zg2|&dbJ#90Ndeg?W(??E%pfH%Sj6&TUpl5-vCf+RhTAn?Z`L$@6cXLP&}_xeR`u?G z*=_stipQ^&k5!)CX)baT=Z>UxGC4|Cn*EqCD|&XVz9;6%yET<$9Pl5=IV48~u?Jj( zc2ziQv47`eq%Ah*;&Y8bqpDYrj0U>R55%kHm6kqaQvHqkVRNc`?e*q)#58eTi7@MJ z>@v$`lPx69ZL}~qG*O8Jo)xl(P(VHMmh+~DR_GGhY;%@wcLSrJacjQM_|QGyucN5S zPoQmQeNsAr6*=(nDKibZ^f57|R-g?ZJBYZvH zpC6&MSexmu#q;Lt^Y87gM%y?nR^!nZM%L=}Qg0>FIVgOZAxM(0jT)YC0V(9~1MGdk z@G_sa?ew526hEO4*@0#{_LQeEk;d^xdcJZkPp^D#_79epq-A8TNy9a6Mu08qagO6>#PjpkCP+)tgM;Msl zn_Rgu9WakIH{D@ZW?|?afA*;M;G>)A*gUpKeSi)PPW2^qdFVFX?__2kd;87qLu+Oe zJr{=WbJaeBn+&cOq`@7UXJX7KTrfnUY7Nu0d7h|W!#5ee0}(=d+SyCQbCKI03B4UxY8)z(uzy2BK-La)u*qD!Bniro z;O~Zcv(v&h(|ayeyvaH}oE2=BZ+o({bI0bk3O8(PhPQ=9zhz^Guoa`*GY*B^#(+lIEAt832+yVoDFe}Rph^0lYPXRuAicGQzE za0@c`0ru?Ml<5KvxX+5DxjB75vbR%u_B^tZQQY;?NQTuiBk{$N+Tm!U;Y&=UES}?Y zBa=ITN!`v;hwQ$!Y-zf3EUf{>lKIzM?&?Sjo(6cO>popzO~bs>DYM;GZbls6#jdX?(| ztgQwj#2knS%=j>OVj{^7S;eHrks1u?M0wRkZg|xpCIO`a54b*@QgopKhd7+#3;3`z zvutfi1p2=}ASbMH+8fq)*yV@U*WYh?B*U8u10NyP6gOOQk}jDhJ-SmqzuP0#B)NB4 zdIZ*FB#Ha#!$@>UAQbceqwY=M9J|gsQ5|hp+m&>6b??=_FIBp=t5oXl>P5DDvAf%L z+P2DToX%o9>4GH0IAn1^c1-dHhY5jK6%z7-A2Wa{5f~r|5GGKNnf!Q!{2&9>WM-Hd z!^{A$JG?v|3Cs@|_4|M4+^eOQZrknr-tSenq^m3GobP;R`_8xgzl67_rK=tz0i2xw ztRprFI5s|K27or1K)_jXI~BTFbp|DO+T(IU-Rr6_my-%fspP@PW00TWHmH*0e#b>< z_J>Zru*$(U)2f#hj8%lxf)xM+gOLi!F3WYaoV36M$SKkD3GyugkD3NR(@0IsG1Hdt zjBEqOQoJrQEiA44wJY#Z?(gF0s)^NaB5xNGj^t9Yxo!41HCiD~I6ZE^kMqK97@QZ1 zTOv+)<&;-4omm}R-l(Rvf>d5rgD{bOwc_#z(@vKs4M0{f z!VQLSw4Xo*SvfOK=w2%PrmHA;i=kniqx(4LQVcJ*pW!S|>aWp5DOOtsdtV}wFtvy= zMXyFgn>HeeWwtiB^7Ls#(M%(pm@*>9bRq&s(MV!(u+@1Q(k{uVl(T6Q>j(C7J6jX? zKY`uX&ekNsOG%6$81BTH0)Q5B3+01wg=_yY_Gld92|hh>($>*n#3ZIrIkE@TSg&dz zqf;!7#ZOPhDuD)Nbb4#V4W;nWS!X64)SR;(7t%<2TfwB?DY@1V&E^Y-n_jQWbV;+$ z@sGXkmBjO@)LK1)WklmipVsn46f~RjJA+VCc(JaX!|?Toj=zLG2A zig>FY>70wvr!Ei9?0kK&dGR)$f8bz#jDgY_(2O-<=7$rPq;o8Y8?XjSzFmBQ0+~!G z-1=jsq$5l7{_J|Q-&e^jD}*?wEGO&Uf=?|4@!lJJrQDM|F89McX?bw&Edse_7eC*9 z$Xn1dF#2aRTGoH)kV^||nS!di-7pUyz*|ilXRKeAB0ud#FP~mYH=>wqh?N7cY0ck8 zUdK&%P;?z{!CZfBMi`7^MvIh^@HxUBh(!+jEF?K?6G%h%&S#wSkgBLANXd2bIoFBF&1=VJ#d8|$>>i(N2z z&(_vftJCV*zL{b_Kzeg1yvgwZGKf{K%Mn1iu%D7*0`6&0D`+r=IJDR&jgpVKi(>CE7qqF#6+g$H< ziEO?$iZY3A1Cr(h-QyJ?Ik%N&3%UV8ePML=KLWAGI{Ax6bh}%l8bz*BD`6?k0U@vX zfpSnl>lpk&S}Ebcl+Rh0QF2*k?HZ!V6^Ndk5`*6)Bx+NQ9R#jqKy8f-4ZJ6;e58G*gey zXEeVz=!=H57rcRYl$uAK!OXm~8%Ne`c(9zg=eAg|k#J`!rF`e`!%>yozvalF2V9Br z@tC}j)f#yv5zEDtHyxf=!_0pqP)bfIzoQka!Te7w#tU(u6tLSW=4=eHhi&*GJ%F|% zoEn}~qsGGiGioB-bxCqUBZ1beLu5zyqoGI_G!NTNbCEaSAQ2LFT}lswFy}>_#@cbI znSQ{-W=ck?nrv{S)|Oy0F{q4d#Qd^uwlQphXr zb;5tn?e%Nv`TBd84l!7KAB-obPR2sh2{#;_Po?wZSAHxeFJ`<6i6uQjZ%|1&)A@i0 z_>n&5&o1QTAoBM`kTN_OQ=|8`>oaWyJW70iNvlA`g0=qI6$|IJ<2dQK9c!lT#SNHy zF|_F@L*h!9cO{*}y@XQ@&`Retsbo#3!=&gr#6Q+7XV2+v6WpOInQogbK5MQkST( z;U~PXE4|(tSwzJ?^FJ`Ik6=vSfzt!wW)SQVz`n@-?v>~*Utw^dpmmSNGJX(lQ=57NceogvO8wOFeZmy+2#a#t%s-@=8kwEmP z-PSX&Ra>FezNr!W=lz>%-#T|tptg}M__ggvoL1`?uNbj6IV-4=hvP2&*#m&bA8a)=Fj+^^PQR3 ze&u8&_vsunFDd}dNoZ4DzdFyfe#a5 zss>=0Aha-?uRSoG)Qc+Nfk}Dz7vWF^7sLp{U`{ystFtZMvTe%Bic|TsUb%PweTF}v zBNOHHOguh=$1Qk6H(J)K*3j9bp-zkL;jzWPG&9rXUkd0Q>lJk2P+^_#V~DoOA-4Gz zAgbR9UTQgD@8Y-wXLt%-<*0m+8*y^L@d*xvl+A~n{zo$&iyW3YxGwv$MN4Hgf^v}6YW5y3cv+8Y5P_T|FxW46&aT)M}7 zCf7s~?qoA}#(hueaASBi{EWu!h#pX9C{nAfw6&|-SGF~F+n0|1UxP1x>FC&Zf;jIG zOBFB`stL2Pd8M(*Hg@`h9#9r~yUVLeE~(rG-o(zOKRz~($Mz1p?+11UKmP+`WtK75 zp<1Vnc=(SJpg>q2|Az^|;r9u8-}>L!b7x!A^-ibXH_f%R?d@Jqr*G=L-uCtyr22lp z)1d^OTu!piF5D}=ZD*fSDK`dG{D@zMiUsjfViARf6JrP?3FAqm$Y>xxMi}Z}$qkf_ zE^P|JgIcpvQ6WQy7Xh}{9N~c5Df2WLs2m=jVA0swiSnK0Xx_n&gR}Aw8wqG`9y@CW zMQ8w(g9bAvgY9sIT%VqM$V)1cX7pHh3u_ftE8w(KRt_lV90b7j&;bA6S40JQvE7IgAZ5KwVzxJIza^5{4RFQ5cy??|u%bc> z8VCKMa9gQ~D0cKe<{i6=en+B|9-vmx$#}lpp~T!<9m;==4V7%}rs)3U*N~od=rjM9 z>=#f^!7+`qI=UKLq@iPZ!5P+MP?%A4SV{7rSFlM*;>232ZFeIcx5rQtbJ5>YJqfM% zlVQdbnFRxbZ^;413{?|Za{C=wjTVbY4XylKcq;#>UkNGRk4k!2Nxoa>+1zQ^L2rOo zZja@*!YW94ZWK7piU;egUqxKg_BM8FW^Qjc23MIT9`^4=jFHHV#l6psrovIo+F%mQ zk#MWQ?z!DXwwSBP!)5}&Z2!8En?|AhI+S~}h|cY@^$kST0~iI5E>+st#-9V85k&Xp zF}m&Sb^>Q@o=`Y=X($CVS6LLoZ_9|fY1qUUKcL$1*}SgRKn{$gPP z&krpunDqbQ1%B}oURZPiR6z6HHP`s`?O_Vzs?oqjpQbbR@qOqTQ6i|}S;MG4lObym z5`oemo|$7!l)r&CudiPQ$5EW#+msS%d$3NC zV(8St29y+jhScZ?L&D9Dd3kNEVI@pQ*7P;L{?Ihh5`K^poHS%C@qs(k`YoQ8xL9*}aYh8oTze=g*xx z_taVXGtZqPk_BHjvCr9g*&M8>6k)jMW4DYkh|D(VEl`3^LKo56O!0FZ$Byh?duS7F zCR!%x8Egw;wzkADyt2JLBxIjCB*t;EJQj7y>dt(Dphj>ExS-0B&U1Rt} zq=V+aAsi4amzDvGnZxhWFZs_=g}n!o&l5+gA%_bntND&!*6`yxO;qM+ zxdYP_8KpLQYX}%da4t}u)_QpP*xK5<#>IiIwvADMd{lH$!fK2cGGAF^fbvUG>pTS^sDQfiCZ*E`AIxJ~UTp{DHv1X79g(ds^BXl?Y?WZ=8S_%<@CFOQQV z&t`EzjnvIAzfLSTla-?9?OONn8?6Jsco)-fvU_>0LCqny^M2-w>ttV(r;gp%lO@j38| zZ}Di9;BY${BQ%{R<}~c`<70%ja6ZOHBZPiG8Xr`^cz=p9HX0k_1q?@qC}K1&cp;N? zkRQ6n=^u`Z@uDV11r;|rCPaZehT2-^#C#pC55yY{ExYk(KA*E zh<@=9<3f~%XTD#I${URjyTI`=BIf+q7}-r83be+`c#)&=GAwj*%+&W8Gy4=hHg-nE z)0MryfVUPKa51*W)J4?kL~oAwC~@O@`^_br-<^Zk7IY{64jxk`^plhOj@>7kHJV3M z95l8Lreid|gkWwFGBL(RV|p@}_ywCC<$BX94h&W*8oJFK(U=-73lv6GcTZ)?>$YNNG}2queZJlRZCx~rx8 zS8Hl^z5P)KTdl>4zF&LAc(eQW;5P4S_cn&vXoL-0&U@Xa0d3#YdUUznep|*~gM__6 zSh-_6>3&QYj`|_@0m&rv5F>GGIOvBY4e!`w{i;10xHKfhFTo>mZE>k@%SIzQX|PzMBR4gFX!)=tNqa<%#`0)CI=I$J&Opa8 z+WUsxw%;5YRXl9>#M~7!5r9%?LAJL;&Dw(PCg03l8Y5sdn?`LPt(!L_fv=+zYu789 zPveA)^J4E<9Z4exG2}ZquZCpqKeI;X>@^z?XhNdBKE;!x=(U?)lSB`>JDg$Ab6neT zQtoV_VI(OC&_s1t5g9sKTqDKpO_o%^%$3ITS6Nolxzxke{N~K5z&8i$u#q>`hDZ-w ze==4sN!WYJg}22-c~{{*F)FJMQG)a^@P+vM>(V#w*)UPwpN%0ajFA58ek& z32A#Ey^-$HScYdXtZsrA*q-gl*DANJ!Yur2Km0&c`@jx^MH%v`780{Xqzcj{* zUA1Uq+_Q8@A4fm+U3ELd+6s0o=4;d|qzD z=hcT6`R(t<*VOswLkgb)Vh#Hf=CpDWkMV8j zLP*>pa~Or;5cDTZ5>U;-7FydD@klR-IHHS`9L*aX{9e%O0)&Or zz$q|n7*Wj_e3Ud3^r!c^Z8K-s1`WgYZtmgu|1auL>SZBg{>Y&9WhI8q1uEekvs1%UOit1K<-na{B>%M?57T^DFx>{YSR@o|SXUAba z6D()XosDFT#aObk7z|VvqmLm#E_W7)xv^wNl<4;#SmIbcCY8NX)u`y>Gn9;yg5~fh z_FEC3a3A=$OUEpsGst|!T}kUaa|$`!lEWpx356*%cX+I{@zkbg5+dOnfGLRIBJd8q z2}M1(pHXT|QT2b>Q*#9V840Xp_1K04|0vb)w? z3^y%|YN37I(W5FXUM|(`b0OV^>@!_Hx9aj1qET3({j%niy*l03y|Pma1vG2@pmw^j z!aj(W?vuzE-8xD6t7^WmON=%7XZ>RhalZWa3u6Kl+M}{Mqb6xDj|b>uANH`{!rK4a zd<~#HV3c+7c0$?)emMDYa2O_t0DN-r2na%rvX7_21!NfaiMi6Y&k7!HLdJ%~U4=+% zZ$by(MT{}X-a&{)Ig4%CG_&QoyFZBDM<1KGlI)SUf-=8Nj=)Ag^ z0)`jxOw%y3+j8JG>>iY>9Mc>zM(9h34`>0548XAm?!Ax=cKZEW7XQ;CzHS-wGZn!FW}2KQsFCa(qFXjsc3O#w!dPj~Va(hy~V`9F3C%LZR_36#ububhT` zA&p5hOqSTh@Xm+vfZ!#7 zhx!W0@?A~Gi_$Mk#kh6(JqabGN`-i;R!iw6Pf0I!=~u9*o8r}a=~F3<&i?HtKjzo8 z-Q*4WD%*Se)=jq+644}^tYR>!WIaFQ>8=kzr;GP*?-86$XkUuD?8=(;VY8KqTRah#g zG$SbM`NARz*kT-gWo#Z{SA8wl3jj`G!+q5}2_H$6?o8e^7Y1MKpd7@pKwjkd3VkcH z-pfJV=HQN$;gvSj33x}{n^pG%;4T25yE2Cj4Q6xfOgTl{7l1ntH&_Db_CGp2=n{RD zKZ)prwZHl*=)?MaL%PiV4Qa~pLo(6xUo3h^+xg1r8DB?lNY^;b-VG_dZ~TCbv5d1B zc=uP}T>x@Jlg2R+IootTtpV_YAoplFyDrAM#(o*1pRFW``Z!HWMtEw|v|6Ga)0S@=bf=}?J?Hi$9lcN_&*5pqb5 z-2j(d(5zWuK*M??*78QNjaGR6cp`CZKJt8Z5i`Uo`I3?SI1HN9{Lv}Tp+lajqd$*> z-D(-SdU-!SujPmHdJ|l}7knP_5~n?Q;|TTwD*HH;D>gvA7QZgeJwIEIOL?gSG3)om zxQ{)^C%<+OU_H=I_Qkjl$>l7(;e_VPUJs~U=U&TpVU>8L?Me1uRa5@SfjWWBci zGrqdK()N663}g0Hwe0!H1;}21Hu?H<*WUH#pyg*YC=m-9frl5Z2Ye|&v@o4bgd%9y z()1^8AD=h&_!{O=2!w)OBQc(Fp^%JEE?BoYdD?}^912d4*OSS9@k-m+ zip(ENB#zIAUt!CphD#^!Kj@3TkF|xyl2OzG`hb!|@x750iOdm@9+mJvE?xpBPo88e zqxW=s3HOLUqq7HTKoh_*D4_iPN~Myk;v|I{6uBP?^+OdrLVZ~|efo6n^yxD!a^?(O zoW`DJf5^YnIK#hyPw4f`8LkKV3-%}Mt z^bcc-vZ;xG^<`}TmZv&a4aE0IWfBQmbj1?og}MKD;n_U9&FhWC63IfYT3ju8y#85# zB6QEO5@ix%?w<(psA#1l-B1EQ z^?LHhi`85qnTSQ6m!UE$C!f##=$$U<{>O5U@R*V;Fm9 z_~^4+hCm|AbTs!_<->r3;ZxiU~5 zhV6BSmG@k~$sb~c(&Ah@GkdNz1=q!>HZPhkyGAV!x!pf`P~$O{Fm@=ugksAG_YNiq z70NqdEjmHTMiB9aWFr8IzXWl*V_q7pUAlCMk%9@TxlRYZWeoy?p>a7ZOR~$d3n2AT zQ{&}PS!|t(5#?EhQ8{Ku6J?Q2>k9nNH#rvFBFS#7Op7x4`Qn_%1vAnYl59bqk$}7+ ziw+KgltB9S7bnA$K_)w!ZmLeL7Ksg$I)QNvPPUy+vDQeCg>kY{zC zJL;Zt%_B3XD;Lf#9!~tTFQ%*R*9G4r#~-YD{&{vW>#aIVMlBXeC7aFUd#gS(@X=%n zmruy?2dW;*Fm;dXLRxpaT=~S|#ccS0`RQufAAFtrc_S)aNVQQyBvvy@&Z@WJzvB-7 zFJ54#_BOgYtH*p7QoOH5=NH1T1nwHvX~3HR_yt{6ZmFcE$8 zID=DYgr)zq@jm|w^OMec6j9U0s=0?>t`-?|5K+@cSiq2X#~@;H(|l_YFJwUAOTr|j zV2aXPX=zGoXDv!lAy{Sb_o6!u_R$HESd91$T}f^f3LB|t?{Xs*)yc`f0b=o=mLr;f zJ2;bW;wpj}SfTS1IU8WQ;{^LSO8@y`ce-h9>apH7n1?9k58}h0 z9TM`u27Ho{p7|2roRVAzHmXx_27Bc0dg~fCKg3_qXc}>ZID_*k;>f5o?WLFVXObi& zbVa0*;0&S`6zuOQ#Q1V1P15%zV#i=>$Q^JD+%o%Q_O}^De4_lU9d2=6q=;x>v{IZS zjN^m?v?45XV3iP!5oJ^_Nwrp4r0as258BEh_r4a0D#51$(P*GDSIxloJ@`E9=}9BH zlZ?fZo9xOqbn2~YwWkEn(pT|>Y@d0Ygvl^o*uK>nlH*Ep4e(cmZDD(~^$SE}j_=X? zQwa6KYf9p}547JLZ<6!?t3J0a865BmRwphbw>y6-^^%H`yqr`teVgz2 zA&)N*byhxmPd2yuP71QpFnusCm84U8v{PNFFi$)ji|D1(_u?DhLsgT`KY zKPts=1f(`uWy)OQCoHRpGMm7gTxQ43jujQk$!PK zfY0P$=L0C;eCxFFEUNe;^RVrc!(}*~%fb{n=3o?02m@dpdK|o9fr{${{ls<#YcRf= z+t|6x%VzR9sLLo~5gW(a8g8u-U?0{MULIjZD2SpWk8OLE7=ln$$-x#D{++ zBAZ!H^tp_FfcL@R9~zxok2l(lP~FJr<-yOW1(4{;I-sx=sQ zDtf!Wu+SfD>2XmbpL4@@P$U}HPK%lVOFg;A)@V&J#&?xtB!v^;B5k{NBcB>>u-VgS z;?rZBY(voUpGTYP*A!~4y}yzyfNd6Sr?aTdU(=EUYz~aKeE$uuR&NOuhzZIrVrRS6 z6|xAj_qMoUZEhBEEGM=#J#JIQ_qDGD-M=%~=28Il4bk^)>}zktDUUMv)g2ugfk1J_ zirQMK!|E)qA(ytq8(>c0GYxNCO9o=Rf%bs+cto%hwiLn?V^5_r@zT*stv20Gr|IhA zvGUZRWHvEdn!aUu`IdV9e8cB;P9M8v**x1?^tdGxLc%}y6g*l*nNsNWF0CB%6utew z3lzRxV1>fq|8Pr;RKZTKn;k9`3KVyTGf;=iSPr#qD6o5#u@PS-gh%+ZAajs5*r26| zuMd2lJ%U#97)fM{gwqX(#|943s||Pxojmq--{Uax{YIlcKlRYme7(__Y1AIA;khw4 zg*#Jo_MJ7F?b{}yG?LcE9soclO3I{d%1c8}-`e1F1PFwhZSHqvkABX!VV4puQ|58?n1%s zMI;x;yc2t{h^?2gvXY;mD3^=b5P^meeHaPw-%yIY?5Eb<-k!uFD0i@K?!X@o#jlN* zy}h$@P0SmCkt5daIqoxQ0}Y^bv54;hiX9hchPVVT34by1{2_K;&1BTUXYu^&T)^OI zS?&^_UYywOpS8ZH(r?BvS^MH!7z4B~+IX-M`2z~SET!lgr-WfGMSM2~@D5h<(kj-w z(kg<~w}AbDyIt!JZqu-`7<%6XESyWz=s%&}{K&Yc_lYb;yL+}uQ(R^ZZ*V-SAG z|M&}{A?c6WjCS_f`}t_1ekWK){L?T4MCJg}P(gzO?1EN#ClE-)Gtqcy_0(!P9?irP zS5OLje<+m8PL~=v7 z2;|c?uiOjU>_m;&GFD5SLZQ5rHp&$vz4XibRJ`)~`O4tmF2VPxF*ny(01*3CiwLov z{2^%YK*z~3=b<8jFkD|G)tjIMXznB^vp;-nHCZ};BGyV7ajUsyNh-7-dkkCm`D4p> zR8omydo{gyxMHmVqI^tMkrNu2X1qC2XzWuHu+T+CgKwpbN-C}gRAX0_&{(O6xtX~>$^*(CQX!!b&blc->5}9TfKuD zgPJ%NT^|#n>CZSXoSbAXKd8 zW07c7!Py^~)LV)cjk-y_^O3_QzNg3EaB-=u&wn5s`O{oNi2-COSx?pTlDkzc=&Hw> zzchA9pG#+co?D%;OK3jS_Zi2-lgTi0fs)U#KE`X`nm+bmUI@ZTG!j`4Mk0DN`VOOK zFyNP5Hve&QKGCrLktn{QM>oZb-h*lt{m$2`_v2)M#RfTk%flH9{TcBl>@-M;gUu6* z2h!0}eMC3|Ejwl(pRfZx^VRbrx^Wo7R zL^4hgQd1c_v7-uE5^8+N<}fUA&cU4&bDARyw!=hbxz z=63Y>+}-f^*?PZx%R?db(D|9X8D1_MDHaM#nmK!G&^ve6yS;NY1JRVTx7Lbn)j4

    O&fx{%4Xj|TtMh|aoq7tkRP2UysoU4ca&MsP>SUhCGwSX- z_kd+z{0(O;S@I=wv3NXRNE^9qapnZn_0N?8@mMZ-OTJLd=8Sap3(1(Xq^RX&PMJ?t z5ysFiA5Y|RcbT^zJ^}sw7fOlcc_o)DOXu>-$IQEOxy11@^!5Dk3#@O-#{|@-wkGih zP$XJNO@RlwTr-WZg>YmiB$5W}-iiDrwftQE!|%z@7OJ>-#P&f#88()Tqm98x_%Vq1 z;F*C4SEx(pVv+8hPOO71U}kbi#~8s}0Xz%x#I39*(y#7 z24)j!#c(`FB9*ufVPkE}=lg!ie`_J+m%iWU8~hPm^8*EGE+0+YuNa9B{&=tVw71R0!5kWb|@j}@R)|?CfbG4+5R3F?P5GMFnL7 z$p~Wx%a!)jQyW`Q!STdU|8ARO4Xp#0i4MD+rwTohFp5z81~{{F&z4c0+rS4>xiuU! zl{yH}fE=BtrML*Aty#6{py&jyQtxijLdwzit~oaNfq>}P>i5^lseXXND18jnqwb}S zMF--4*SK*3dbwd+6=*>ZBZti0@X&app0}WSQ8eNxYs3&V%W!q z7h?6nift?D+k5ZWA5F4X23u=|Z_yJa7AiC1_2736?cZqz=K}*CsTe?b{s91u#*D}# zcu|a~8rAfiroU0kY54Dt#`TP@zfsS{@ottr$?7ILk%B>lZo8Gb`@y?Y{0U6Q|Bc)s zO*@q1o%s!+#b4}^6sAJ<`}x6jXX&d>3+ znLIj9InKh5?;*zyWNimf#c7UZngA z-V)R*g7^4%ai7m$pjf?peoMT(d!!*4OWb-yd>C-cvKv6hejmbCWhY&@5B%iYA|y~e zqgbwWz*A#n`sj!cTW<0VNTBRlzt1mcaIt>iCm6fjX^HQT#6$9nX*)W|LvRmyzN^Do zYY(e7jmwdu3L;dFjfSH=E=R-B9(?WLg%=_Rmh*O*$I{>pZ0Mwx?1^pbs)%uU5_7WA zdZ1Z4Qu+lvUMPU8GX+FO62Rj{@zslBy*MY{ok-RyOVRM-;pkE&Rt$M+hd*+-#vEcB zA2h#AWdEaN{yk4mK@$jnZh(Z$PegKrd7BSJZ4@$P+@rLtNKg^Frp(1O}g5ENlbIe5lYG$&XQ zVUR;@3IxMFO_%I3Gi>^G7AN*SnVe+<)AB_k+W z`7ZIUWvwIK#I3ctyXNq}TFxiUVD8>|WVwWiasJ+1SL`i-7pJlFtoQ|VRm7}g6Yri7 zH4!!-Z1CHVp+t|x#h{Ky$M#nn4^#AlXc_Ib4(RKlxg=dCX)whr8Rn=Rz%qmg3GoSt++cc( z$L-RWJlugECs|?(uy5@(3P7&(M||af{N1~Y4V*J{4Sk`ieSV8+YFJm})WBmii!{@8 z%s~9EZ^D*{UPX!+>axBw_+JMNmRiNl0)|>Pk;vi&N9=+>8is<%T2roK9p1nxEr)T{ zg0xPE&-I|`2?qB!I>)?=x4+(|g)t(>zCmwq@WAtc%G8X6Ga^*Z8^ zB?2OEG(u7=?D3)I2HeF0-hwx<-MoJV2<1~J8!PuWugukQOZS<88P9(7mc?A{W2PsY zn+DVrlEQ=o-hfP}B$5@7`6uI(7l29bF+KBV*Urx4b@kCt^Y8yU;gJ8eD1{0{+i-qD z4-xjT3pV#DTdr?M7+L$cmY_E8B+0V90@oHul*6uoc7Kjf zvsahi^hUqDO%u10gvJJ4)|bx0&{xtmIq-V{pZpQO|0D8~Vs8KF!w>JGBZLz$`AFex zQ6FyV*o_clfx$4M1X*Fh#iG%S*PC^a(h&s)Ukn@W6(;*1f4!tjuYcSxqaAU1@WXR2 zTzJn>5M!;@{h0h^r`saN=RF^C&2H&eAF|KlS9zYXBIgJkwSXoHXDz`3yyYhii!t@K zibO^@oKtp%t8C^AM?00=qQwR^UH5thS8VQh-kbhbJA`y=vVK+i^cNm(=1&nX{%5-G z6s(cnn;z`6-8v%afx>C&1&EdyPKr(J`{XZ1^WMTkXdCTny*W$|hqvTahS>KpdYkE| zUBreJH@>I4rFweszsn~$G z@pv$zD~|Iu#axZi^$Nz7AdQq?7|+)qTNZJq82JZ|FVb01?A18W(5uv8P!69!2+qrz zdw*u_-;w&sD!7 zlqAeCm9O9{M`n$5+L$F#g$qB8YPBQWrNr80*$Rnm{GYfb#KpnizM`-HZikGZP-^w?Fuzjx-suge$K~=z zT>%zAszeuRK|*DCOt}3KcL3=g#Vxn1U^xc8vaf%o3-o7F$I)ZGTWDc9viII?b_=BY zEVO`F-K*Sxfm~WgS?z_o<`{!(8JCtI_(3*=j)ps6=&gAlZ+$n;MWRHUown#nW>WIw21)0 zPs!f-#2qv9?vSTmBiBGqJ^%4bMgd;2|KtiMeQauybiO7DKfNenW~p^9!Xis5xnzK1 z74bqEvST{AHT^1$!wWTNhyNOG@h=(xh*~~uB!dsKRD-K=Qi91V4_*cWZp=X_SyF%%NqX5*T$+ze5g%0;g7Bo5PzgI zAJIbNWBz51k1@mPbw|k$TUqKLfj|Xu;8^+5F~cS3f*;HTT^Z0tlI`x1D;5_%R;Bj- zyqciy@|cA4cavSnIW|Gz_gO)rMA~O2MmA?2Xv8SK%at~G9#JAGVI=DD@*G@QUj zen$60=N;$1i4-dU`%)c7B@J;hf^u#!98!%Fj78}L{g@i8OU6W9zn|zP+aVb*K=gN6 zq#hd*{~KFd+rprT^s$^~ZZ@f23Yl!i{c`fLro$$ns=$)W)NV_p|H8_y& zz0Cfa@I1HR!xJXlY1D z6A!Zgkx;^wIpW&-gmi2?hdf>vNy(#;9|+8ZWipcCEY^Z@3qPaG7L<_&e_d#s2y2U! zPU5f80IVLZhx{&58qqf{L+!RPAg49{y$1gYu6sb>RkXHb$O2BcTGP}Tp9Q5v$M|*{t1L}RO~M43NMRRz~LQ^l*niTnsJ+&Z5}s{|E61? z)m=gSwBDO}_K&E6eZJ_yXvo`4jOgFKABBS^(=%uFUl|rr5MtL+A zXe5aCiM+l-_c+-;Xq8^;_8}CBGlSUi%G=2m7nJPjm9=#n>JI$Jx=uRem)J{OSGTu6 zzXR=^T#a67zZ$b7^b4W>6}S2;_Ahg@@H!D~A7KU3emv6gKS(wZT5Gu5GYwyiL&`(M z1BF^hAte&`l;NJFdrLh7^%pMh40gphIc`a%Axl(*!!6Mq|3&K3_5B4yT%&j z`NAjm`S3E%WKnoLke3MAOEK+WgNB0$NStFs2NqS}C=Wjye$da&`eyNebx!*F*QL2E zwhkDazA?P9iq9x-5pMP?88cJiPd#CAL9$r!9ydGU7N-mP4)VE)AZBO^F(VFI+xaF8 z&XetYsAYlBJAS`D{Ge~wR9O-f{nPM9Mibneq zMR`-n?i3+Es5WA#;eqOGOGaI4BgC4&7=KChv-Y9FkaLn}y4 zZ&4$SgI4r5r9xx(jUCIur)N9*81cA)!zjIsU3LQF-a{Y{`b%;Kf)AJ%QMx7a;Hx&J zIx>P%& zt$nJQ%FJgn^M@8PnFa63=$;zq(hG+c()_7@cRiDXUUE3ThV8PrI1$!hwX4TF3vNB* z%@Ryw-Q5kd`)IOl`<1?5+xAqot7&^{-KTMUj9^|qGnDWgq=y)JYhe&#RVOKq9ux4t ze`y^pG1Q(@CY=p=yOVOG*` z+Lc70#xYjhxO8lm=_ZYntLw+U#3MmSH-Vhg_oCE4`u_Pde^)+I#{ceh$|e|Cq&D5B z?5ieCt?gY!5B>yY|J>fP3CnB~y3{asCF}x>3I%j`yX?ZT7sn1^2sj2Kyn_aW;GM;0@iCel#R{28Mo4=)SKbhJMu z9(b7%vU_d9)eMJHPSbuQ4R)qZO>LFK8za){XE|+qNn65KcXA(@BoOlhf6y27;K_wi zq(z+d6HbI~dn3*=T(F=Gh`4YES|xynQBVo#rujeUZ=f@#WCCsS5@SC=f(2ydl_c5c^n3jwN%bi~pWEe%2eeqg>vyY# zc&@A(YSe3ZRkzFQO#rLh&{#7&Qz}Q*U_R#Zdznj5Gg&JIs&}Sh+NoTmC?`TL*$b$2 zx6>UC%KnHq6^kZ9nPBU%l8T1oerKTQbV-Ug5n9Cg1@Z!|FSL%@wz5->yMW3M$9XLn?*&VnG2qjM-i-a^()DArchZmBqPZ{1BUR>v+A0{INH2mcTnJ;V& zKetbOcOXQfQG4R$pG~~8KHK-^f3VCTa>#$jn1!TX3k1JUh+N~(o$)u~dY@Y~bl}s9 zaYH;L6oQdg;KPo$IKJEQZpRN`w7)W2iOUunVO84Y0xa#hGyKkVK6(WPm+nMcttML{ zsrBx9H(#cWCMSB$Kk;(M#5?P=eQ(m*YsF^-#I7jNi6nwoLYfSMfvdM^Hvpy*`;);V znWx|SROz|ryvM)$!UgSg>uAb6`ibvKG#{-5+0SO4_C2w2_uZ-EmlhWvIqqIeJ^m5- zQN#4p9%;u`ZNlFpfnK)c7bJsk6HEfxQLy4;UqR$4`TXGYKoJuE>0Ey19XW=eZBk`- zVQwVf^J|WCxtX^Eo`CNimW?_FX%<$g{YoxN$YWfjZEH^j$`dC~KEc+$d^R`prakox zE(27~@dx~~U2V|!tqF!qq^_N4!4t@Gyo>y8Y#_vUp|>NtX;_T+gr9E zc@s5E@*K?Crv|vxfGeCY(B@6h{Z1aeHHYW?-0lW^JvVaE*wY8qeQR=AZLumN4a}|z ztv3DroT!tYch@T#H;%b$ojV9yB@fw!Bdfqb(ORVK55{JCCMQy!d<4P1*n8?#ST&aF z++rCwnk)D&886?iClKM#zwf^ECZXTA8jTjcj*a^uov7hpz;PAnd^?WJ{B-HbPaHk^ ziId9W9o}^w3%K!w{E?5yM{ij;&4u2M=uhxg$j|Vhnk=i?8ZX1#8vfqPV=rj_ecSr& zZaUBxT$6yl8872AW7_v&X-CIyf+XI)e`Noa%k;`5O*q`4?#$hVy(2bESzHqm>Z`r4fQMDQViRcG)X6 zYrhx?`ZXlk(EPzjs?n5NotE5eyeAbvKw~#kF&}>4dmlj*WurriHw@`=7K=6Sd)_DS zf;IwrK*Y?GQj?=^kfnvtHw>t!;jaUQJnZgGk_fr$h6(3W(A4Tz7YT9$*c-KlMq_rm z{>TTBvK8sS0oMiZ6zEz24WQ{ddsoWU&@@eTHnN$!Go;D~wGi-=F;hw63L*12Ctkb8 zZMf@@LFVD{M3O9YuJFi^=n2MudcbuB=h7k`f)+siK&-{7_j)664^U=4m0P_3qF zih{4#QtPQ2nS%HQlGGekGv=mG*2tM-)6A%!q>FVD{4fphO!JiUc@5SQ#D$W_gdj2u zi!Z3IA=eTo4{PDx_N{Z^N7cBTU~@5SzoeX0$OZ!D{?9q$@Eo#$%*@1#L9o0-XRLK{ zd?2rj^%xm%?fq^Yd)+Kzm29q}vQdS^RKZY0Bnk2aPY+__28RwIRUlyb@G|)CvVY4j z>svb0W&hwZkEq}Qx}0}=ILC7t5%2b689#5)9=&FrOXGy9z;J>hEkz6XTpruS4Ipp4 zd+C6=y-jZOjFAgMz;7V#K)e*9I(ax;gMi? z!8?h#M0No3?EoCg{_ntbs_Z#I#Rt(vcsKZ$;h5IdRT(h}+M32+^{y5RGfM|;;-yO$!!c8pFRrfxYGim}ji;;NjS4F&us&>j8eyEEUW9KEsc-1~2A3|5*{2~8 z)VjxiK=zBaj-Eb2TRrf}FtYXX5;GCs3H*xms~8I+h;^4s37^74i<^y~(AGBIXg^4eu-X=(od+g(Gozu4l`K zrkntYKyE#+FaFil=xTB`om&n?^A&F(IF%?b1$-`kyhl>ASRfSeFraN~MSm!4Tnu^r z{!c}uUotzV1B>~oLxmDR>15TF{&1q6TupYIg-rEq#N~`9m&zW0FdT$Dh5vdzg5$I& z8FIN|N?i43grGRxaC8fWJ{9ynZ(>KwRDz+|%+w*bs=1>4!lCAW%HDDhm`pjJ6RQock^tyEFt88?`eoM zs6)#Kb)O~?;9j#02x^*-D=mO)aJ+3~@3T-8;GWN8kOkIetxmB#I{O2|Jk7+s?;@SL=trOgjXF7EaR#ynW2?K$)Mp_uel2j%TAE%pzzI}7Q{bf_5-S>D-dg)Lw4$uQ^(7NphQRFW|g1?e_rG2J4-sue^fxU(&pu4llst z4Hkkyus{PF3tervrhNlrlKe*x)0&Rcj84kWGLnB%hEgsUQp5{nSq*ZS)seyk!n?Vs zk;gRqE0=pJ4X5#0ME1Bc1y?|l0`8Bw+0}JeM9nQ>afCVm){oO}CLQwxFado>Q!bxp z+ao#O?+&)1L5FRg4D3f=1Npm^&~MV+!G@Ar1sI)k@gsq3y&@WI&$_Xv*zaGKg^!#5hU5KAt&KvjYxX z0bhP*%D~_3bH?nfVQdELbM;`wub%KleL+c1hJ3#BiA;4>W{zYmphx415|8Quv>;wd zq^w}%Baygk28HMbikO=<^cTp~n@}rmx0FOKSWm<^6PhkLESZbi>Ve*+1^=&e$Ykmu zEf?Cb)D&t1v8N)+?Ktz4>KrFb==rgs=A6iJi!(vpOG^rYY5|aggVT_e1bI)f1q+;r zk_0V7y@t>vm`xBICw+>VIeRZ->RPLGJmHqXh~|Sw{r(htdq{R89;3CUI+aL3@*jP$ z2^N7nUJvmMDX{{s} zzVs5;9Via65FNtk;N1%IhcxHJs?%OlHK~q?*rYy3kCSf+axX#bqrm}oEMvHJA`DF$C>h0P@9Ju0ffM; zy#%LKlH%aKAvI}ckx#jYz^fqG;Vq}Kjc&90lq091i`lxI&C20y_FauwB%dumRmecG z`ToU!SX*P8n=?}NXfWdU{X}DPi|{42AoT3$HrD083Co_jKwfLid25-uaBX$)xhuVB zJRHW9a2?)mbOk1B0+`AJ14X?sECO5T+o> zO-)r?NApdWl&fC~KvIkPYl&dY+BAOS5C6~wBau5EhP@}{SLH*`ym{%=>k_BlrYObe znMaR$g29rSP`)ZQL?L&G@ka6M&|t9fMYB}1I*L|%zEsq)k7K^HX#YlxEQVr^v2#91 z)ION6kSx0k#Iis%9F7L$eCwLy*qqrbXLHe5WA+$p`N9yz@jvW?AoXHik0z1bSc%7y zQ9a+;*?}>4wxQ(%vpxjzj?0ro+aZjh8&hW=e|FQzqhleV984=mA{{5U0nm;94QTF@ z?w~(L_dEsr_IK0XK<0!S($05J%xs*FNm|<7f&(dk3X(LmL4c|rr~dkcLvMs%bthRq zT6>7!4a`{DM{h75Ca8YZ+_&5CYC6Gc%Yj{C>DaF#o+}F-#S+dEkPdL3tWnUC(B7;< zgdry`aX9v1vlJRH&7f~#Qs$l1HgpPUzy1}HO1v!;dYiK}UoI!6)!QGqU7b#p%Y%QB zCa}QhPCF>I7iDGf`DieW_b^u*Ik!7!6iUgnNd!#K*Z9Q?(coG9Ab2X`asiCO?T(~^ z(Z}cx?E|2aX!e8VCdSVlSV3%J0Kh`@^QfyEGyrJj0wWhzu(2j|Y!cr|ZSjV@2R4Q| zvSjFo{zNopdr0g$TIF;e+$wQwF644myH&Qn^eQmklBAbaA&^Pr3c?qBq7S<-$HvFP z2(_%%eyMV-?t-_;38YJ(I&^62bDyi7sMStT*LuT#7`4hE% zC#7_RUl8osWXtz)`xHlnES42)ln|6eB&yECpqAP#rAFdk5k3#_o>pMvhKl4k*$k0K zv(bn{Wn%(Q7zUH2iXP9*6$%B`faRo;QH{!yYFwlni20}Qq0O+tnB}D)V|nd)e1bdL z;Lk!!Wiv7>;l0@7ZQ7=RyK@(vZHKfOi!BHzLJ0!76)NPGO%b-k@?uF^q-T=bEc!K) zWRF=8Q?xAO6&G>wc-+8TaIf3_S$`uCAXu!C!r(IhfmQz8jGi;0Glf~_#6 z^@O0hXdQ$q9f^Zti9`%AGX!=+m!|An^T~xyt8l6C80bvKuEdh0m!b!MgPZ{&f2Y;z zZ1X=$W+qyMe~yJfLcX!0jN6d?jIaZc9FufbI>UZ4+>bc^ve+c>M%6m0p$Svq0{Vr>8d|8 zq5;I!Jyc&T=>JxW zRtwcr`I7}=b>pL^Xu!q&=>89%-ftEcn%w-la3Gw=g@7_?|99qFbh5^`C@UGe!& zCp;V4%0hGG9#F%y1s<#m!*gR@YOx)hLaOCRCX0g!2jB@#hxj>e@Pg0}vBU^qy0gBG zgHUKXXaNb$zuf78*3mvJXysX?s$z9|h17!gq;h#>ByRwf z<`oeA<{th)HfEQ7c5ym*)IUz8#5^pjHza$f*JF+w@%1A9Zoo{UW3sOaaR@PX*C)f) z5t4PVjmM1{hKT*Hc`%!PTJ$ZDf_r0p31KfPU|$~&IOw}49NZvlAhCzU9QM${D<3Q0 zO8^INntjjgr5sz|7nABM{6lL0s2}Y5hQk+Zm;iFa5epIH#%o+(6%fZllTRmXv7ZYP zkPog59m93&)2`RNJ#DLw7jKMLJP%m{%JtWawiDvB` zi|wI*DOx8DM+sU7oLZzsXmww0vv?fVq|SB;ax>+>eZ=ur$2;gO1M!{qRilPA$+DhR zhss>K$<^4{28Q1xeKpSHq!$`Sb6{^9-h`#sDs${6i5B1-B1NIct|TAN87?HlxkY%o$SEI{)O(=^>*mAz^j8Je}a z_*UA>b={%#gW_|j=+ey!!?!b#WsM{+L$_J z(6J<4-4wkp897y6S@bVn6{Azj8TlpuLQ7WB|0H_|j0`VM%M@J?A8qofREo&*h-IDh zzzEZTN)%7wwLeVh>cmNO1NAi50aKr~jP(x@0~U zE99&B&<)ZoSHW2M#G^94BsIDJj?<>NbAoE6Uw{>|A$ z3WYsYh|;=(`AojHe(b4L?C_SrOnwcc2n=$}Bob=pvA+i}((h5JU(@@_ih) zT|go9$QJ{d2(1VViV1RMr`8XPZ|0ItOK;(9D`}3 zI7!DC0fT>Yt5^U1M|JP5m(U}ZSmUi@6zz(8={FKFxCICgjGe*+ZL~N38T)hgQ#eiB z>3AdPTA_>!HF8(S(uQYPNh$F&ohO0kE^?uf1rg`nGQ5Uy`W`-!wXt>rst@w+#y6pq zf@_m#3{*md_J)GkAH!sOWuyxn`uOpPAt6Xt^8EL2uQ)??a)3{-v3;0%?_TooUdaY4{(E$JNu5hQAPB<7_q>s>DLLOX$9gD2e6k|?NJCur% zPMHd6T}cf~$c>DmDd<1`C>z88Mnbl|h8VRDOw=8LWBTve*Ma*+7$Q0A+y?EgTIY5X z3A?rz=$+6N!CX*>%?X+sV`T}bH-IH3rP3;ty#zTzXo^5>(whII=_$97!{ynel^;ZM{Z5 zXYIAu-g`a%Yb}%)P9*Tl#f8@2#3Qj7zTaNU!iGcs$Aw(`FW?lkk_4oc_-mpOOZrV$BZ{0){;^=YAUZ8wC%z6)79!<$iIEyT(k@9?{LQvB~n=xL$b)9BBQd{gb_fge|OGI>U_`a0F0T zE96sA*JY+*i@-MWo#o{ZF5~A+p;|52_T%}y#s3oQw$;0hv{za6hQj*_Ckuyc`tBR@ zdDHze$OIobtu3dj$uxGfS;YTUsuydaHw{5!I>G-=wl3P2RJeL#8UTkZN0q0auHHHk zHY{wZBUCjS?TS%=I}!;}L8N#z7fl3G7o-Od9eVxLsT+e*U}y{*DtWr`H&0*GBR>(* z5VlkNK@G*C={%s^D)OTlILYRD1rRqdVPRJ>xaSnjEzrc+r8bYvg<_0INu$OHNbRD+ zN}XOSY}q9$n((Jl5j7E29l{fh0!ZKchrVcS|Jkz>ds|`@?-Qi$=Tvd}ex^Hy^Z>>% zedytksl;Bf>u9ZZ#DD0WVn|%}FYw&_5TqX(pwq?xTQd$YT7yW-6O9ZO*H*Ntku%WK zaZbjO5x&}5Y%OD2X#I$5#0mS~K&ljnUGZI?_V^)jAv8s(x|jM2dox|@ILovsiJLBG z)78X0e+~Xm87CLV@s=E)q)|h9GKm>Hlt2W5GEktrBWdISvl61<`hTLdmwB$)Zk%6-)2Jm zASV;&o2meB(m->xc!>sp1`NE9h3IDS_%YQV-2Y*83BxcD0)=alvNc5R#xbR}e?N5w zsPfTtWkSIz0PTZ|5*ni5CL8WNz>4e}Bn*odZh+x*Zn?4ykyt*a^xUfD@JYysfpd%$R6UEhq0BPDwKZWl;nqJJrek_${Y^^%~jqt z6rITMOX5188{aoRoGze#)?j=*UngZ~QsgTK!*oBIcU5kp}sNGA)nfU5?$6&fQT*30`p zbjA=KI`If3ncHWN&N>^jMU=u!Ly#NDQ|^nwONzSC(S|~XuzdLJ;3WYs)Ej}&pkxo{ znXN@lzwdTUYxw*|9xv}hPoG4@4ERn5wT3rf(r35hv!B-|CUpG!hoEf-H6-#Hv2^ID z&$kP~7KB$$%V|Vx;_1+RosW*nDHA9M{=ann9$Vx8Q(!JGU@bp}J)82=se0&cjDmy= z=Nyu|khTL0lLLNg4eE+p!}5W`16($Jh*6N7kw~HT9@biEgg}c1_^yD<%96m{(0?C2T=G*%Y*AE^$7K{tqNA+w&QI zG#WuyhjUqt7zt_~^ksB-36x)2$LTMD_c*$%H-OJYUc2CCvI(?;FcVp2@ApjVGcouy-#iQy*}*p^hqFEv|K-kIKNd64h{A{?6vg{d zEO++^&P$5TQ{TS2(=)9;2P1;^M$wX$>zFlCD`~Cq>T4c;A2 zzC_12^9@u6e81++>*ipp{eH#Qyp1Y%f=Q3Vg}-Rubkk`B!O#fm!?{@Ke$)V8Nu(*d zmq-nodj3gSIek_fQ_%2FC+=|GbY+-wLb|k5{rT&r-r@N*jDdE%*6(8=uLZb<1_I+T zkw%}yfp_}U(+>;Lu=zloH+;J$IiZ*|jfLa{7&&ORB(Q)&()MA^P^5m6sS$}LqvGjd_^PmuV;<;lV_x8_4u8dS_us5P>$fzLZ(f`7srTG>11>;kWjsvoR4Jy`cD=x@|>a{ zL$ZVKa3bQ&-753~WP0ET!rTo)1K1~V;!&_QFrbSoIuJ*57}wE!3QUPr?>goWRD<~hF(m}Y+h(SK8Ohb`+ zA*u5*gc9yCImVI~jlhXUs#R@*5o;^vYgNVni_1S&Kh$b*Mrh!LSO;C7Ocx>2$2SAd zDc{>^e@EPK zzw3Ny&BhPPFoAg3=v}Wdyj=J(_#;>fdlY;n-8F^SJ0ZoecK{z&QK(|PS>s+_czS_t z7aAVBe3Q@b&)k+Nyf2m;eaj$HvBr0mNA-w0p(MiLMCip-G#t!k2hZL3=-iuSg#{z| z!Hk|Z6uuYp+wq5sY{Bz#+YM>>Ww_;+h^uIuC(iU?cQ@l)S2zFmFyJQ0PPOo5o)A zkUa{Qcmu{5B?H1CXMxe(M}X^Z1ilbmTF3AD1$H2A1Gorep|Dd*RSd6RAEXP z34}*OnjKQd1FG#;M=|U|WPXT6k?A3`8_hX++FX;E?3Jax#X)+EYK_h2XSJblWT_b&&*U3bE0(Vq_N|H6u7%B@j8R7b8mF`U68k!QS5zIj3{T@N zkYu=$;bl}I$M^$B1Tn2L52>D~f;5n<20m9B_!`&>mo~U*;`^Pi;!F58aya54v+&A- z5%LG4!DuLUA{H76$d4#V?X~`J$eMqZBELzKrSQMtYm;_96nK-O+~xE6Goh&X>c_Pt zs_&qd&L7-aKXz>Hcx`FWj0A(jx7&X!Wz&nJ!}*~Xe6K2%f>9G+xT#RN*EcrO9OK_u zO=l%(C_fB@zbiY-@VQV8Yn&*Ab;Aw;&SQTg7y*`bixRwH4Wb(5MS6`wPNbtzEiI~V z==4-&>LBI`=xkW3BCrl&Q+dJ%f^~#qMCBfcC6WhV+c`#Fr}_?i_uQOi;os9P#zfC} zdH5Ze{`|@5Xryrek?I>crZsj}Jh4ak|FGsvH+5yQx;q}`h=WOQbl+HMOgcC@tp6o- z%SPX9{^-uFpnb;am*;`KEXd!1dMZ$brh-U)fVzSFl#UJ69m&%)4E+22RwL1a6Gu}h zeYCs!Sa2*C9GhA{s#U=VE8iW}4Y8;*s@Pr{)#yao>&@uR{A_G+rnP=}>*j_kZ<5{J zGdiA{eiakbI~;cY3TCB;{@oWYT+x&`xqV_zCgCffetd*Ry)w#oo)jdl7SSwfo^3yx z?PuoudU~8Kji=eh5nlQ9Jek(V$Dy`h{a|c_38or)bgFxJ{)NoT+!+*i^Z@4BATBaE;)U^}zb5ffD zf8;(GSh1uZ(ETpp_y?Thjie5cwMIP`kW8MN*)x+{&X!su|Bc9Spd`(Upp92E;13ko z$6xqZvbLQqpe?wcLb!?a8{t?UN2E=XhjU< zGZ7|;{wE^M*gzA-&>gzg1jK-LFyV{11RYY~a6?qXkVV^}f{fjw+G*g6ltDnR ztJUQndLH=bDk5o|jMdgf`*QpIcOI<5eN9{<-HF>L0<#dpeu^3gyatrGRKuza)f*O? zTUdxJAOK)-T*BQJT~QC^_x{im{QgHif{6cWEl==+yDhqMB)|JR!SAyZ->xz^;c9uz zH0`}ayALrD(Y=BytRhXBZKmBVXGyLdS81hZ2C{pG^QX4G!vEezLp_4setF~I+UM{a zdl6O0QGgq=N4D7a_!;2kJ~OIQcO#4A>{HaZb5zpEaW?WobmEEPDrH6oWF6ZmTRC&a z9v;gcG|Zvgfq@}(f|t!*so~s^X&lThR3%l7xBtK4(c!Vdd-7~``SR(f+uzXiFe}9U zs_Kuo{}kF(FpO7`gvnGNYlPdE0@`;eZE7?V;IT>3z4f zxGXkAW-KCR9UaW#JDnF)h@5^+(<>ia~sygh7a{j7T3oq8Q4;W;Fq9h#lpVB=n< z&kiBAPmGJM>BZScwO}X?y5Y(lEs?Ig4kzVaolMbgky?UCExUKXC5d?KPe@6|?hdF2 z{o(pMY|-u;DK~_icg`Ey2iO|Ig)t*+OhiMfj3}BUtD)!wK8X3lnHX}5 z)nFu%8kickum|9GF)Mc@r-v1<>Q_T+emRm*@gDIF}p_ZH`mZj?P2i2vdgwZkW2KVjfURZj>6{c<|r3t{2xW ziqnr8=uljGQ`lH_;<}6H&$rTXicOdwOG|pT{g<@h+s`XW z@QB9Zp1Fe*rPeD>kev#S1MRf&b~+M0jK)W8wt!exuoRzIf7Ac-wbp*N4EV$kJ!r{^ zCe-csZn*hNFVVQ@zSRHlG&Hy*&?ue~8LRM=5r_h+l^e!#0qC%{VU}Bz5Ra{x+d@LYxm@d5R0SlexBKCHgjaf%M?|6NMB>3j!Z>{D z)ZxRYm{(0%@&-Dw__m;vPCA5jVXs~xjSCNCG7r4c{FUyz9GLd`VN$0Guq$zN^^mq{oVDD zM-&UzpH8uPB;}Kz+sS$|DsXobgCUFX{*u8j*b3Q&H3iuvK*fCHHwRPsq3lR;7Dz_B z`ctyDn2yh@R*I#wd#uawO{WfLpR7w{E70bpvO5Rk#_R}cH+|4PUVa-(q=Q=fm$SR8 z=VwRKcJOfacd5^}B>REqB05DqZmKnT2zxcgUo#X@9gZk~h0V(p@kkrISO^ay;6rGx zNd{<(2oKlbUFZ=AV9$;mfger@-9mC9Kfp=I-g~yJsfvsI~t@NE6aNYj^lR`APpB zHM}JGC0+9p`$P60p`FKJ=RmGH4eT23R#2%^RxdJ_$jm$Ht1L$%ff zj+%a5~M!n#1zHnd%XeG0Ow$o%3 z(_u5hn87WyR|2FIV<78{lKv1h2E|3xvlGTx81;qzh2F>mN9{vNwt(^sx68@UFZl~| zw>6uOPZ$fwZ}@(4-}+(P;+4EGf3!gTnJPrcr@SW^!fF!ftjnY)JG_RhknJ1;YAr`Q zKDJzvRu~k}(5b{OXtPkn0LMK9+C{cMdOVu6hKlw*c5%o`Mvp&PXch{G8pfQ_c)$>0 zy-y!crjof>G8xO^#qlSPTGb>fcL zLIGzLe+WtEkk+k+tYY0m_ZuA^Ok1%?@H0{Kz^PLQ%;;x=k(iYp93DOT$Ri8+()?TM z<@{5EG_6oTVXA1D@?`bcXA%ni4<+%Lm`+)=;pm^^e^fH1Ql|1ULF!Ye-AMeR^HLP1ipiKg8tMK$3K}#^3eQ(fgwN^RZ!goOT@$$UsAwJWflQ;Uqb)8)c zs5z!h3h2zm1m`@#hn3wCR{wSGJ_KJ>3U`T$U6K;FY5hVg{qLbDSax%^7RJrMwG-KAMy2YTST2Ywzc*WpIINRSWWPQJ z*7e*YC?pqqGZ9azsGD!YkX!|akWu?+f#0b5P|uy%u5(o>g)n&mH~WG8l@0f6|NP4S zW$Pv9p56JU`p8>IKpe554N?%lco9~ApLsgR(9S`OM_ilo`{>#fcA~k7`ga+D@Uv-i;bbpJ(Vni+>M!HVQe;!SH z7F+1?!f(8JEuA~F1aSl(ZFJ$lJkc2<^aTU{s3Ghv)XAMZC>RxQd5mXdxirXAg{Uud zBy?XU`Ke`35MRx@oe0;m?SE^gM%Ug0Eh-#iK#omh)NMH{vP478rxpKstjfmz3wdSvHYoXhA%21oX(~QuTlKNa%g3)RNf* zL}95Tq>tLiH^}Mp)}k?SMp`_{*M=*n+wCfX?eQA;zHZ0*c2nGIYfg9l0B$@LmZxr% zpdA=0aN(%Cgo!kY*ipE$WT0qL^M{^hvjy?NZc2eXgs#t5m!!ZgDA->PAilB2mPygD z4dSKH14w4+ti9E9C#1)<$2;b%1yyn%G%uK;^gtS+dIPm~ASYC9_C^UhxHwF3n!yIe zDU7oOIWIWfD$EwZgolye4TQq$;x|qr5*JnyL4@AwT4c`0^fD?4`hq_1w3+wktRi6T znW2%{duK<6G6Th2c}&T$*nq~)ic3t2e$^|}mNyiVy@5nfLpQ;M7A<L?Wt%{F>$uX_>*o_zhlfVdz%UFEGkg_$X-1)OU^aIm&j#=sT(F$hQ}a=)6GY z#fDEhzrv2V<*#65l4k-)qMoNWu6yVFj;;TW^UiU5w1oG=c|sjto*sE6pVDyQgWY1x z-4W~VAbunRz4{TtInT#*wPPc{!{+(yj;k|Eoz#!cC!H6av2$NJ$hb>P(65Up=biKP z^Www46Vrb}C|=ZuM&PeHIj|Ks8MgDn+VqLO=@U1_bNy}C`U!{g6&xq@+r+x3^^>(h z4vBPb^ul+rj9rf`PMjT$S*oE1SUcCw0Bol)4ZFO$SR8;d!8qOlS+I^z7dgdWZT~67B=YS?vqKS>ClhHiW}h_+-8bzG^tjcrRwhA!8vov=4tj+tZ%<_Vt{$@hkVYCpNR3^T@py zbYSZH?A{ByXg}Wf-t5a8W})|PsZH}CY~@pkqm2QXd@C#-WOcf63SeD$41;ANUo z5atjujii+n!3#2s@Q2JerHE?Bv-9w8kR4k8d^EYJ1Y(+>O86=)9*D^PSU4TiWF|`z zA`OwKpvgCuC zR0|kMh=me>UH4iINSWsq zN8<4#uXsB8!4F2+$lnzLfdV_$ep|HJjPf~fbp{l{CzL!TiINd0EJAV>zyfo6MKCnr z8@2R8DrZ@_R6(~!4}|LV=+r*T+Bd~kMh}dY=c?1iVm4bWPFLs3`1YkjVb7Rv_bvsB zV6VPQ8E6#e;N_9%xK?L`y(hBcTsmM6;tx@Q#*e^05GQNlNFKl0JHzIFH!ST9Sg_Q*%t-(m5O;N|&_zD<7qL7d{E0uWr47LPDMuU5fJ zo|fyTkHYGLPRhf`w7rOuWym)rE!-%6@3yyCwb;uW`=%Nzjlz*fprg{h1-*aK7M3P| zy99tXYb_p(&+Q+>7c&EwTV#f|=$EY)Ry==;|B7@}G7N=|{tX_FplB1Pv(%3+cr!sV zLX8M`Vh~Wk1cZA7on+p0DLZ}ZS*w;fC8*9HJ<3hu4xuZ(v|V00&>#D%j34?o|WDWIGT*F}J< z|33DHw|XA)yvOq)&&NHV@cg>x^Rynw#e|hkBL^&}`;sHxuph#T;NDf>;P^Z82_o&^ z{l(S&59dGQLLJqh^8yEmQ0Zj%1tY8-44d1h%H3p@u*2pgUITME;-MDB+xG| zZu?sVLhyAYd6WC(5%I*RG8f*qza*aD-S3I57R*>ih4e+$Od+EJg`ZY4G2|48k9%Gx z(#}_|{F|6LaRJ~OLy7R`gmXtc{uVwEA8&Z%_?X{^4{yzprD+EvL$&wo*i+!^vKm~z zG1Yz3nP6&A(ZDh)CJb4dIDfhNP<|r+1gZ->oJgY(pl=+-^-;ds!=J{H>2zEAU6%^& ziv?jb{BMD2MzhxDVBYC6gjop%TB~4bz$CT@R$Iu7kEc(ct_qVyJUZ)__NOkA)uUrs z@T{5!^2f;dDiaV3m^xmtfE(I-fljMajagbjRE7fDK)f|yhZlVC!0uxFQPC!Y@C()I z8ZsxVxH+nftz=?fi5K@A$YTzXP>+;)lw82m3fzfeFCkjU(x=LNb*vf#S)Z^jff?$# zJ-@F=-~@GOw(3wq)X*#t1aWb{H{_5(v1wF7&&H7o#wj9_mRo3g-aem5xuk$XP^bA` zfFFuTLmhG2;y7KDE7Ro>kiJ*TBbm%|P)3Aq$15O=ny9(5Bg4=lw~4>&>2vu;l`OBC zZ@m=m$Um3N9hrDxJ)PfRFJ31fu`P>K=t^T-KJM@7JG3J=PxrPjCpi>!ULQYuDBYQ# z>&V@atKaCQmwd{9i(XZqfPMk{gPG7P;e$tml7@v>qz8i(-ux6g9CbRaurGx|3(qZt zN3?P?-(1WuOf2O06c)naGP;?T@$o{Q74Wp@S+ql~;49DYuPo#j!o`sIPIv(xM&2Lt zGWvL*^ZX0*upBD`taAg~&mLfJVsC{Wjxfvo+>|s|Y|JA$xLik4ZoN^ba}6KOA;67% zt~xyz@f#IQ8S2zsML|*`aJwi^Ld8s_VWUz;+f7Q4Edy$tRPY`pk_jL^Or?_fUTY;0 zS{^_R6TDXp-uWSk>Z~0e5tx z1V}b~KeKhqoNv_Useu7L!OMmJxjf|%{P~5<+my0ykiUB2OA8^}9phQ+E z@C*Pi(R9#`g&D~sIRs~dGD#6VbY`p|tB1c_peyjO_h>|2lj;pXIB!;g@lA-wU(p3D0*Bg@JFdm|4Te0cNl9a;Nwz@bh zn9kLG3A|$rH)lFt$+&?JmzQvTDJ1E*K|HSbeo|H>KiZpWK7U}~a2_^JCj5ALOjiKa zkEr{7+E-*h;8r28GB5c88bJK0fQ2?1ict;z6lDcP0w2&r5e>uf1-*q7Y6Qs7jMQ{h zGlq5n`Q?>!pYR1$Z!jo-jA;R%R||Uoq{{$KBIkiZtW&@vhX+#FOEmT}!KX+DW3bd5 z9$+jmxpbdkupfwg76pS9DcoUj_xcWxH(wu@L#6x;6Np5zpQr)BnalvTLx@`~mb_gXa{(FE2oC z!efHU3Otfkbd?*9a$GsZF>R+vYvygWpA#zIy=d^zA~aiXB8!ObUd9OwKW@*x1h#Vf zyXl0H!C6a&58LXlPeB*BSiQ9My{R-y6`Bd%-u0QR!Xl>nJ|e4E44HY|@VDzdf$sz+ zh!|~?Ev$)Q{zbM-MSDiGln_nB1)7F(Q}7pIdGvr{<705obYc&yuoy!;UjEU*-^SmIotja#Du_D4h>6XK?33rV?;wKTW3*PV$W8=Idj=vKn&b*Uh@6xm- zMPmMM<$XCtVXZCc;)3w@iLMWd&(S}y??V15=3PTaJr6c;?&0G&4#mY=Qc(=r;N69w zlW9jF1fbgpndAT`+L^k*U<$2ZF)c*X3kXVg;>X)*Kc;-@=2>Ma% zZ>Od4dlU9O=gvK$Hy^YY;t#l_H#aYlzlV{pe-Sx04{ll_9h#m8?tx;h6+)T7*V0*- zDkPx0FcD=kfb`%i4hg&L2it$vUCI+)Q2YeS={SouZ3Y4Z z?rL4N?LX;R(-X)DBA^MyzQkNtA)PlNe}i%p;ibd_1hs}IWGZhVujQSl{p$ysUjLB? zp7W}3 z1Wa7w(M0ex*}EZjyFi7s-p`F6h8r&gaxg(Cq~3t$%zzY7O6H2`nfs>oFn^*t!B@POwCYy@)1x?{txh{0f1NZG}x z@SYr=m7Ru${hqe5PVw7GJpcqynTVgiEt!n(9uDM<19u$2@NT;~)#AUPp`&jvA7|my zu%_)#KHeQ0Lv)!rBa?E&+IC~RjA-`~UvpI7^D$UqKhm+m4nU>!>lhor57#=hHPqc} zc5@7W)ML}RCkOckPIcd_p0{@{EnV~2+Lr-nYySJq8{cqH4eeUT_Gu#TnkNpmrNudL z33cw=dBZvIqgrni4!Y){{m%V+(!;l3>)4*ZznL07imj5L2~>xW;ww4ebmp;J9;H5n z6aj=z!1FVpfl1ggfvBczHflccDBy=++cDn5iRdey(1cwi=;Nu((27+L{Tdq~dFvV_*us25AJy!Vn z0SG4o;?VHPqhuzT$I9$8b{8tnUYeKvT)sySRK10q6$#JZwt08`;`kHef0Z0Jya8{{ zx9r=eg`I<k{T;|6=XY2EP( z-o@b#lmv-ohsHW%x??E0Hy$nBoH7nnqVc_kw^Y7up60zgI-HFS4$dzx&kw%7iOV{N zq?JVB0DrJEoS>0M5taoM#0{B}KQqmbP*iC7W`4dppMSkOu2qc74_WpQ>!Gf}%Y^VB zJU$x^bvh{tsRR^$Cl?9Dd3#iYC`6v}lep6Gd#@K1eropj(Q^jgK9r8{Pg!DY z`GMm2tQZ+TB#ofHG|v;C*Iv&lJ(*7jEHtR=J>)S}`+a55Q;ul?luyK z)-a4iOcg(WI@1qFf#RjK5jwpp^%)@8aextyU6es757)B$Wh~8+n^Mhe`&ZM$hb2s> zP;#ODTC<~XADY^YFW5uL@bK&?YOKd2wDOO_AGALhAdNl}Zf1WFQEy2^-|NhzG#g_> z!wLNED^*tT2Nra76atRZh?cxq!cS+|}8gxN)+L_I^Ev37-?v zAzV2lq~woC&LC;ny06PH`C}eHyLOqQC}ETPFTcTU6S61o>F%~0cM?&=)!A*yfZlSe z)fpDG?6c(88`OfS0hD@9r_u9`)*NBOe$?{|#i-&sKCgX0 zd7lewgM0B>XZb?cGYQwU>-%{Op0Yjg9NdN3CMP7!X^T`^oFNvh>dglT{62m3zb!nL zmkU`lGcqIZE?75>NX1u=xzin0B7sn3^QrODCLiXw6i^fLbVA9*Rcj#}Wl}Mixv4wX zgb-o#n-7fk|Lo)46t=+Hy8Vd!CeWaqT?w8bM+v%W&k5>8@cvJ5gSl_y1}BeQ z`406#6zl;e!S$i&L!r=+P8;vl_)rLufFDPH5_=ZuPbWx!Dv>R-K}i6PW1S`iC848A z_0^wHdyu+yl)1+Nh%!s%xrjJ{C_RpOpe041*gCp@Jf@(#vsmRuGUW5eopru>_EBWs zQVQnu^vLYe^mK7Hl2QiEWtL9*99?0^x73|^FU%xoo%gW=+TYI@mKHV#3)9nu*&FBq zjijv*Dl~yLYS(Qx)qRQFtSYlpT$9VvPzvnBf_QhZdQkNcvMT zJG4%n%t~nS0EhCnmpE7Pp~ZjC2_=oMK4$^G1~)TX8QvXFCb@Qw*-+%C-ItTc4yrN! zhCD00z5VKNPU@ja(^%CZ9rS+~08LIk++V>0d@D^stMF@uTv~O(N5NAW(Qom}rHov5 zVl3__WK3`B*27hJb(e!Po1O0n}Nf5YCm#K#T5vQVN34dy?P00I|GNIrt_&6+&Efvj`pLHXZw z!m!Vac0uinD;Hwg!@+1QP?|)Qx;jdqQ`HE>E$Fa8wcxn4|5EfwFc#O21Y!j;U<f4&=Y^6ik$_lFj?#UafR6rW$ zG5D|+iB3Eajg{q|Y_~V|uAq@y3?XLl4!( z>gk8Y^J(DI>Jf?^DPq6OmMr~BNK$<*RgHnDCHw!{L=^2~6hmA_jdrTg?m@AsPP~x% zfeZjbMT-cPQAn5C7#sWnB^NzMFm&QfzzBgwPi=|-UdS9eh-khjk@i@`RPE-4&5=G= zPp6*O1E_<9+;wPhgd*6ODO4%$WvC`A_s0%grpW){EP{`Y+KVpB(m4%;9f5$g%t0j;nJrG^$1EsTboNLt<1+1Ru-Pm%UtTan zAUp@TYxV1K!XS@Oh|pA>%ml`qXe*r4Og{bTXON zdljCqI){~M1mDeAkDgYZ`mC3gq=1&g1#+llD~))4aU(9tBa)`&aK9XWDUC>S+z5y0 zvO3>G1Z&Ul_SgMxz=LMHS0vWw1P9@pa0k|9@RRTRhA3Cdw3o$6!q1XIB5sp+sv zYz4lOGc`pYf~o!hfP%!OGaD< z6SaWE`HV8}BeDcG`@Hzjk8lb2j9->e2}DdD?avZqQ=C)=&e*o_DF;t2(#R&>E2L5Znk0sczDl{kT{&fqjV-R*gERA$2H|hXXGq1{! zJ#@H^g8m#?vvT%_o>9W72^h_&fVWYtx<@ndMEw?iuq7@SXV03uMspUvM~B*q18Ngz zDA7YRNmwW7pF|IQkM5Mtp+bzf{3HRk1G{nM=CpnV+sa6dvqZ)d^G)^n-ktxGigPY z554p~>+>&u8CilCn!aXw_-Ov!=aK{W&nVKwS~J7;EHB$@=codySkJ4xhAq$Rl~Lt% zhzgfL$E1wj5=?~>R8i{hZLlvy+wWle?`fVmnV-$EUunMsX(ul}aQfNiNVIu!;-M3E zbSBq+`9GgKS4HEq)6YH%kmLG$IOExTj|P?`auMD8l-eI=`|q>wb?)ctDAqsUXDku0nn$ITa0^t$Cev9yBS2{7Q)0-G8gvtdOwp`%w1Wzi}Cuj~_&0SIy_ zdk1Dz^ucBetdJQr2Or;CP6l2$Zavb5mwh3Bfr zmzY zOnA*EXm#c9paA%zrX7HRQZHyvQK?&|Qe!K|Mve`auY z0ezG0(SxHng|mkmP5cZT%(Buu1HnXE&ZEt0vl&lGQz!z(P7D@nr{+FrKQMM+3`J88 z&C|CpHKq<`+rRSDG77E*@^RqVbaQcivV*t0KF(jd zZJm6s{q94_X7KOzxf%Z)5H8MZk^k=nw+mF^Plwje8SPYpWJ7eW4`Z)YP%aI(qO?VR zyYJ<@(C+r%u_gE_%0ojITQiz1-1HwgI$WH+C;~nZunI$?7W@zJjJan%)i~hwF4t8a z=;#!Vy@c6^7ZhFw)?0nx&!rb=-I75$aBxrY-0JFTZvlddK-jg4o=X(>{F#mI{tWTB zdv6mn2o9GpriO5|^pvicgM*_74{tH+h1J#GniIGoySGR0XkIvT<_+sgP_Xdwa{F?x z_CfdlefC3~yMyRmcpCS{VPD}mA`)ioVOV4ou_hljRl`NPQn5mrPuNd;?3XeYDa;sH zFgOfpH-{1q3kHwWF$5h-I#vwxsOsRsEZRv7&KGjCiNtKKFh7_|Cb58jU@#>U^!u34 zmYL5V%%H1>u4hYxSb=Z(uib$ERx2~`(z=t$*NgAzVY$g&pq4vK7CF)xBQbDlTAe!;2- z7@W2yQi))j;PfTkXe)Lh#|!6emh;T4Sh7-MEUN%{PXASN3Vx}Xdh&n zxoROlG%%XpjfNsy@v~T{wm*AqEamHajmLCE{yxrV>`XT0{i^tg!(r$=7}IlOG;!K6=xI^!{HQ9olpp82vK&0!I@DJAR2>G5YzU3ne3m>Umj|{I#%^B~V=k5=` z?|tF#UZaTijMW70@+9mroIHq}y5ptxZFQ6#x$c$yH}@Vk?u@CjJM;t7<-_-mT-PS} zkN&-{m3gO5SOJQzOJbewS6c zKA-j9dYG^5t^;*o;ykqa7;oyxxG{ z2berJ4xkJa>=dKQ03QEy|V0A z3tBW43MPkM^O~Wg779f*iGe>tPo?^@X~c7F%Cag!h4WJWR7IrG0e+N+ssSeh?}khn zYcNeb!a68bWh{6H33jxyc z>k`Tu0(;};8a3P(KTO?C_ij8u@B$KlrN$Y}V z#!wGk_5*ew%Gl9U;-;aSCs3xKhra5A)lC$>{T>=e#PA)s$oF)L(Vv6At4cjOu^SAd zSzZO}5PA9yq+OY{5_DHyR{_c$)&Ig_Z=u(iCBB9of`5%Pg<OklJw{Nx76&*{r<9TB#~B@#m|(i#en#Tqh$NR zhlh$ut+{vR7qZ!0m5ST~TtND{OZON>Ww)Yxz5-auHItnlKKPbYDiu9>nG5c|A~DR+5(}PejHVlKIOT9&#*NqDs(17vXQbUdd7g?w0}{v7_b??uE5{O zRV#|3(Q8bFfXDA+GQP>Pac`sqfjsq{!TU0VZXVxJ5DKi!OiGBr!43ge@Rl-n=`G;W zDp%}yJ^|k``CXlx@rVQNwU4N*lnEd}HV!qopb~GxbRC#Clw!b>D98jbVdJxJ2MoQM zKzkaX7pBL9+Qd{uQ)K2%R1!u&@dd);W=J#rT1Zd&yjDa;Dbc9q^;t$V#ike7=AwOWuGlVBtT!-Dd`5KVG0T99rbuhwsWVs=lX!3Q8Ef z)*nl1`e*`u4ufh;_lKFJ$AaP5a3T<~qJj8uEUZOz7E#e#L-P4^EU6_5x|T!$!^_a` zN0;@0rc0?9%9v_uSk3`h9!mxMT09Um$0CMW8Z3v2q8p5tIilTQ^>W%7QP}fDA zW>Ie4!w(gK$jsxQ16YT$G@^ksh%@qU$afa}*QvGB?5_jvlHV{1} zPcO>zApQ)0j|fv!7B!_Pp_UK!QeFWe3Ednz?TrWuJ37n4$XWYr1X~QeEX&dHOjt+N znQ5PSn;cEaPY#ZwGJJJ-?y_hKv2P{$h;7g8o@~O|gA$R62#UXir|ly~(q~4;2PZ#X zt-cYxGCO)A(Hi2pZ(VB1Z!KR3#b?g2>Qzylx3#OFo8uKljq01pYV34@;QB4sYdM~a zPHOMYmJ>1Z6Vg+Y=jq>jf4XT zViJDJKsI^+Zsk!k7=l|l6g2S~AKG?qW?%`pIXD`s_F3`&_=I|0J zj9IjlpbtVxIg8}TP@XDd;&0V#Ho5=iuMx-nIIrGtn2!?!qO9#=MbL_u{f5%%g~1Uy z8yGOpUHqIO*l)#9+2x?W8ZXPBy;6;@A5r_u&fw!&BM|J4y;OK8%Z^d+lt(kL3tCM8 z6{@C>Yq1;0WeGN(&*BVpMqjx(`B1j~w)u2idNe#ch!NA$>FQvF$I4+X^|XOTR}X{$ zFja`3I7nl{<8Y4F>n)gXgeykhKl+4R!&E#k-Tu1MAc5>_q2Ey-Fdm0v4%&2UXkmlr~_pph@A{ z1ffGyMR60$@lX@U3R}x^9YvO5@ghD#zHPcq8n=*MprN!8|AP?X2m80fw;jg<2onkk zZXOE(llu%M>>!YP@3GTZN&*ti`i%uKkHx-2p)nHF*%=GvKJPRZfoASA76LB!8OtzS zrq!P7?>G+U2K~mdj9c^_2f}(B27Tpo;v$_l&j|-L_ZdhH{*a#Q?>G(zO5JZ929eu$ zAj@d7-{lVRJpIB69L+^R@?}mDo}H?@B|Rzc%FI8bF@Ci>fs2>%T)a5&Rxxu z0iZo6%NeM$f%@oh?_&D2uhcB_DkQsJbuyC3l$+U7;AEtSrY!svNpPQs({^;PHIjc&N*>fnpC-{7%ZSU!t?k=;hbPj3#aF4y4@m?-MO1yy2rjGLyao zb*&pnBL$ypa1|a#q}EFf*ocVa6fHpbL%;kx=&=i3GFOcmqKc#csX zBeWZSEQkWJJ=j#NrRy7bi$wf!Z;%h4#6FbN9=(R4vt_Xcy2sM5Nz!MoVemqqAQ`2e zG$W8twd;-UED{vRtU)WH!kNrMf-rmPvp`a~`-%VksKjtAhdK<#c+&URpWWL#EAR4s z*?xT7pY!6EDAhoFTKAr5AY(?khuT?~BBl)ohqHOeom+AWTFd;l#5lj4=i9}D?tL$U z2m`P`u}!?oC+B~ic=ToW&hG*lz2{q&=Vx^GQa763*|yO7%t><){=$v<|0w17G2#Ic zqZt|zv+{*kpagQRG&vHC#e!#%EucigE=3OkeCg;7^$^;DY8p^!W}PP#M3Gex@8OG+ zkI`L!eW>I5`jE+R%`hQ6TyX@tIIG z8Y*<>jr^7lDh~8@bgIo~5zIDTF`si0;Yu=OXXlw=M$=#I3Qs%=BW$gtCz6!;zju5F zY5M4Qf3{%fQ8}Wk*}YT7_l9@nl1@hd_)suLN&OvpBD!({@s87IW}QIMDcC)ZwjgXi zsB^k#LgP{AG+Nw5nGwslQ~FMsJtmlTx*ugiFQm1V;oZhMyxKIIC>&Dnr?9Q9_Eip` zlG1$8^<5nrt7xONkTET`u||bx_v6q4!Z;_;6C4Hyt=D0sg}@}Y;JfC=LW6za11;ru=i%7@)xShI z2VQ;R>|XYv4}9<}%#L{bJI{TTKIe@^;05owc1&0w4OOHCSisk)G?WsWwv)kH0s2Hm z3qxuiz&w6+?D&)dRsD5)>3l?|b$DNnQaAZ0ojxPSr{w8XV;}D|Lce?hy+&OAiTR#XsJ1aN4zXbpZQ^R#y%JcpM zp64WN-+q=gfkP-Xtm0o+9TR$W`%)(#d!@a~&juhOg^kT4r&vG&^FjA3x5!$QS>vL%$kMJaUv`lmR2sH>OIX{B=clL7w}DS__6l0J!j8yz#yq=7`Z`nI zBYwl&W1Mxg6yJCcsaEbom$?ZS=l*~Zh_6^s!Pf75lg1>!?>CWVU5@2KaheRI~imYFSzY!oxlRS>Ht2A^X z+5iN@3bO06qR2s$eyXO~+Q#V^)b58@F5JE(%4n{MC;TV2Y$$S7Mv?DDV|j6P{RD3i z0cl@lDwGtpG)?jJIir^c)Z^ZQA8W+(kmq6WfShBX6r6x~65Jb2bnzaIcggiStk5s5 z;#{T3rx-^|@3dRIl>L>M+V!{G9mk{l@ZCB|4EICoGo{K(9ACG&igmO;FOS`_CYPeCxHW z68LQ0#1jXF%ab3_SZBwz{?F;|&)2&z(^s$_Zs1?f&?A3vo-)qaA=ZKhDYzBufTOfr zDr?=d3N0uJY=ejE^1A<53qPiKSmDp&?N4m85c+xFf7ZPST?#+WB}3aThD~nx9=l}* zC?LWGT>ain%mSbVkJc5;<6mPIW@n${k5@2vH)S%J*;zc`aov2;UVX%K{8}jPw^utj zZTM=SpYAA)>-XsP_i7|qe>O{kbp>PU-Jk2u*l2_pU+-Dk#94GL^Fg3fD4m3P1^9_t ze)PQEd2H?f6&svV!U-i7Qxf6d>3wqrV;hVXrqo1OjYidQLhXIS^|bCed$;E`*D|_( zb64RVPCA1`#me3>?>yr5v-vlwIz{7GqcKJQxS~u=sbO6~Of_)@!|$Eis*=E!9A>D! zZ-mYv;$KDROb0wv%MM!$icXV{ahT#@{eoW@*QV`pSM! zs(_D?dL)!1QZy)xGh`s*MdVY8J2gXU zb+pqmh~%9~5kN#HJLUW*6_HX(xfdOZ(uivn_k0!ow%Monq*x_(pB=PXWq8v&{${Mw&sp75NXcH zJ`}tm`|v7x16`ji7nDn1>B@Is9#Ptr-7Df-@QM3PXkX~kM!ce`R#(ZZUhj<~>s#~e z!`zkQiu*Qv>-cquKFSljHr}mI-QJ#ezuc2iwIc_s8*{4!jn~LSs5Bjq%Z@z!a*z9E zXHNF>#Ryp(4uVsF?;a;<%Uu?Wa*fNRv3{~~ z2w>;cQG%BX=!#h4cX9D(l3Y@3R`67u2PB#6S4}UC{mz4}=3daa;au2i@&%onPKb5W z-$Sc7E5Ot4D!Rh6Lhd62+numOeWYO9bGA1r68wd)47RkWxfkaiVe*v;U$)9&-Che7 zhbk7;2(6QcTXu0T&rk2YxqjbRdFE{MmFJHh9bS4HBI@p;Y&+Z$2w$LtRfGW>l+Riw@GTC0N_9YD zE60$al%u$D>+DQTqBf)iqMtY^qjX{pi38Aqu7f_^L$YnXlIssnB>ybJ72TC^K^s5 zrT?2s@%7BsQ=Lg_x?EaxfG5{DUzDPQx*$8UXCLq)&Fxu(32h2LGxZE6o?Oj*QF}9x z;?{uNk)XS24(ioHy}lz=wu_e{JT&d^L>tANC!88@y=%-u-Y&}iIZLZ&(mF@~CWuS# zG@9r!7j)NKrGj}>RYUt`A81MMynY}W7HbdF8Z?d3A?ZjzjLF71rr6sRtOTC-xbqah zmduj$_S}3G*(0dR>%$dlO zjfE=T)AIxR$Br84=VLQ-Q=Gk5#$J)5%{?&m;}7KOrmoCv5pD0?(^5b(VM*^yIVunc zJ!lKW!aC9`6H|ipOgi`;LHZ9i!WVi8KOQH-)#0;(aAOM)gCmpfnME~=rm42%I_fEX zpP!+CBRlMGlq~{!_d^V34cM#JWwkQyqCzAhlA<& z_KVen-=NWzm0_Nvc?GKod*#k6dTe$3)r_NqpJDEvNIC~qS_E%))H!-hn{|BJLh&G@ zrI$H<6pxl`*pLkVJ=Z-b(oa67o_!7zxP|i3Afy2zAB~>Sbqz7(E~A1n@M<5~uxro; z{V-~@uMcJ;p6qT5(dfEeL2S@kZ&({4Wtzq=-Qw&c6yO!iW!J!IbV=Pxar#s@zC5}8 z>;|1MG?{Lqe$yIwN|lu&z|jnXuc$kK%-LC#WFtkE4n44t3d%s;#9Qi!-U&H-pvw+_ zo0M6u*!^UaYnf-bs=MljpN$98=?9?G!lRt|=;+AY;Ly5n+$Obq8;(HNWFIWTrzAaCw{)hCQp?&O~? zJyiPFjmOWbnh)lpH)T)1_sH1z_}K1{G(0!=u6T2cqo+%s!1e(r(4RiC)wVw=Z_V@) zXj(+z!N$JQr#6!K_qk$bGmVRbtsQC1@%?lQ4uV3Ix7mTnsa_fd6UPqTzOZ|6^qGxh zKHZ1NS|t;ly?aMGb?)chNGDa_xf=2^jj7yDR7Er6$F?AcV}pe3C3w|e6x|fU)-Y7> z3>Uv0$oW?`VOZIvKU?}8!}#AMc#(}vVz!X5Z)Z`lYaSB!KenRA1FtQ9xV}L43-!Id z1#!ehf%~YV`5V=Fb03Q{V3#OPP9Gwfd!|!Xpdlgy!{ttppwqv%^9jL!8gOT!K6Ox$ z>7Sv=3W|8m-Shf;YRH51dE4JWVtz))4<1l!TfCF-gu1HtiZY<@pxytn5mqEKEPHMI ztDSn?sT!($8Ja3dO;N@3toX10DBhi+>Z$2uRlGCoi>(%6Kb*1q;YYs*sE;$KK>Op^ zgI(jSfvmlV(;9(#r^3JQJncb_vUrD7K9mFKJ|MY|rjagzHhM^vc48)~i9m_~FV2-a zm76-Ao<%{~KB)#?fFW}VGLQ{C$Toja{Ue32j=x%1pE;yT@f7$Imn3CxH3~*WLgTkj zJT2H{3Em;-W83c)AKj`MsC>rRgg*01z~+xAYpVndNvi0ml@JalLwV(v*&s5A^?29} z+WR#viy{vRuUxssVd@dV)Gu-e6WPDiKe5FtJW#jUlY|*4O=C~O!sq{lob(Ejcq9jC9yz_#1 zw2l5--d^!NEUe2i5~2Z-m84!_n!D$9_spRSZ*Hb0{<|wl;@ug#Mpi#4+AIp&jCx3( zLPq|w=PjPMfdd<)0T7@bao{^P!kZ>a(Tj5VaH(!3U8p99B4JeZieFPrBC(n)G6H~; zG&_(Yiq;c*ARp+PHhW0*#_>|mB$%WuR3jicsu@uXSa6Ai%9K^FV)F;p@AYELj6uQ- zGwVlrjUx`%#CZRP2dOS6B0)VosNOOY4CC{7$j~4r!8l17gi!({MB@DGBW2J?Ff|(f zzjm7G0a^EoE0c&~v46seZaKOobb+p1J>mITa24TT+H|%SCe%Ad&oc^Ag5%ITYqQ<$ zsS~>Fytuxq$7@?ipP~dZ=vo(u`l5Ht7;X`jn&9Ptkic(VL+#_=@p}79D#{=GF}Xqi z#BM`K=%QHv%Ywa+Ty^i=ke7uk-vO^88_WxVs$R;5Lagah!7W&Dsp*BJiA_ zt%VxlZY1F1it45vkzJohr@n>w(~QXI$S4ODapKShyKx1W2E_lgn52|oAB$gu2WabM z67J1&9M(pg|uq5q$?HvyCDs?J4w*KkhFRi~=XIW=|7LwB8?Th%3XYbeXsU`w7PS9!z{!WdhP z2?S(tVnSi21Z80AhFk(sZUThv+$0Qk2-tB0A(zCwkU&~Ma>@1MyFj82;ojs6$xGfV zzklt0P7U4FvW$^>s%h`F*Is+=H81$WsVW`mET_P^?gBnh+z*=fpm>QAbv=c*Cre(1 zstflcZ;Hq>UY@eMz4f4P%M_vuBg(%9>dVBlcRenu% zx2N@XRpFuP?+)pZ6rceGc)%EJ%B@vF4x3yw5*qM!0nLDXhA&Xea0O@Lm~&!7PdLc z$25UYiV!4(g5Tq8Zr~owkKAJFfS{#8G8$BQd7?bzgy)qXcxn*j5~R&rcVsUv$l5Fh z;u@j_gEGE)1)(8}%V6TM^n%AOsj4g+h-N3JL-K-V;mRlX(0AgL8cd#@Ou zPz0MM@I<{RT-;9}G-4?Jxj9W$3X~-RhXFrqSTT?5rF?a=?NVsdTPV%xc2ys{?$mW- zW7mySniz`n#J5D;6H59&H=@=v;VGSW4e6=rj@=~%B|f(Rm|C@&dB+3_D@q^O)wM{scW1nRJ?S88n@QT14K zfvP6xQP|jxwFawpF0pDlkJO03%Pyy8QmL7})2Y<7d|hY{l8gkZqB;^D(hJeYc=6L# z)d&Re{(Smlsp-AuCn`5rk{JY4k>81AW$Mk52ev4R64nJoQve!VJK&0D^$BjT#9^oM z6G+4p(nqAblc4lo6GPOYz})fhopNq0C*K*4NA>4MP{RvfDEP3Wdm$~3wlETlMdIPd z)Y^BD9s(m6UP@! z>4;r;ITRf4e=Vwp{!;alzIf%@7P2z z9HMvy<)abqS9u2b0d$kRY2}&ZyUvs7A+M#se;QB>9Lq+hM`1vp(hw zUEH?(?@8{Rch#QRX3dce)c^f$p>#+8j?yUe~ zXYU_*EzVPyEf(l>)J^h4H%eI4cE7UJG;@+8Z2?Y6!jisF7uGc{QtdErl=|uUak2Uj zWp4}}xWLz<&fGc$(=%DoRG1W`D*qw79JX|!^UZ+I#>Z7xqGiV~qb?Wi?pu?a&iE0l)3<_5PC@QfxnDt!qjG|8QJSE9E!ghyes zC7Xbyx7|K+4@o~j1k_*Pq+CGFvBCR`8*4d<)#|_zi9e`7YazdG{n54a zI7Tq{9|mMjY2NL(+ouN2wUal^*zNq5Xp6gI&`|cjqEu@GExJylD8`#4$se)Jxlx{R z&|JG`_H<3E*y$GY+g~Owvq2k}gKBnQ7`JocF{2L$Bm>h&!GGR z3krx0#UY1qCySK2#6>w4lu==2Ral9rbZ#}3T}Z`uvBL&rzeig5wxFt^et@S?LI9N% zUCZF+=?1X08S)MF1+d$Kad&>QDiAr;3{dqT1xWMw-AxRJAAUOF0h4c0ExI=N7HMy9 z7-_?|O~8`?M;-t=c2|M1tFt)uME5HOe{Bjz({{rnygLG~Xm&Eq0hfL5WkO5$9 z2EK%!@bpW(u_QG?(uuxEbkQl;2W>jLPkgC7Im||!EHiMk*Wd^9Cr`{Df@oa6DftG0 z(JHFDJI8Gc;t@MkP7Zg3?3pZsnX%X4&~~0ko+x9GL-RK!|59)P7x>(`^VQ;kxckI< z=OBw6M5gDf!L2Ij3uE~pNgM0e&EPXar+R*!^?o4ug;tMLNc;qg?%|-X5ft>2U6i+{ zv%}GWBu7gp(}N|TdD z_|}ky!RR)$mq!^M=}OxwyB?mlKiJ?^0>MgLk<=Rxxt z*RFTx6Wgo5P#lvus}k>eg^0Miio=Hg1szQ!sA-*wi@(OZ+122%Z8y*XL#sA4x z3sxJxB?PvR6CyW9UURf^Md(GPURXeNc*+Ro5v$POP!=0ed8%%fctH7nlJC+i)`(Gk z(hq3AM?qVRWs;qfpQ%8buXxyq`*}5EWBXLI&I* zSAyE{p$6f`b&gUpl%)GQnN7K~HY~&=-@5)$v^~H|-XnCp&Q}Ebq-q3Y^e zjE4@hhR2&M1*igA0L|WASd5pQDp%2D;oW{$gQw_1+iNt?RnX-J8VC!W??3c`53EyV zPda~>QA_=IOZj5o*`r~QW z398b#;d$aiw?WAe^5H+RKj3=oUf5b2s3>tGtabXsasKdD(-Hx|oD&{0Yc2y4#0U2lu)Z$Mr~_iz}~62J`ou z9|#p&rPf#1_ccq+MJhy2sO)_H!!6{koAF)GqVG13V(hPtrO%_;z4@({VdJS|QJ_jy zw73HcKtBt_P~*EvS#Y1^5f=t!Qj!_0#s7T`$#gk0QUW$L9)GipiY;a0-ynF?Fk{U_ zztu8&wpY}7=?e2j^v++FzhE0arO$Er#E<+--S`aRaTFi0jQsIauufcIW?qKr#X0mx zZ2yfmU;sVb*7akR+C<6gK5Tv#R+txFYO}ZgEF$IZz0&$k%)iKLo5N5L)v#m#&GwT( zg2z62;z!=G7aUe8=WU{cY6^TJc1Go6mYHZR;j2OUcl`kzS%dEOS}eOF3B$1a7Xh)i+bwG zMWU{VFPH4B$}WaXu~sY3W1FpUL*Vx#5n1PEV9_a8pV#d@&Y(bahfO+}h) zxBlx&mowPL-pxLk%!$@Qi^&^)bYh*k^E6Rs69oj{4V(!Z&$H}3+~!R&+nhfzFi&ut z3`1^jjth2F+hH2awSs;NxM$3o6Th{1Tj;^X>e5|>(M~I_5XX7_Qg!JOG}yAcA7Fbp zTVl17q0{OK*NKP2r_8zz51w?NID~$X;qmCZyS!o$7V7kzBl|zWQYQ~JzRlUG`UM0{ z6EdrK!qQT8@xjn-iy!MjaFDgMD2L1{oxpMcL_Hlknd^aYc^&oi2((_^1iF)mZwb6; z$l1%m_xDqM(DX1v7Q}wkyf_|ats;<56X3*lUej9;d+^5yG3u`Qd~gw~?HDmG`)=Jlo=c9z16wxZ3csD2T2jB_Pqnk|!ls9szG*$_xxFi)0_j61{;Q5(Z9 zRfF$AXsL7y4qJz-^S|TD>K8uIBZ9~JYY%r%*8+e&@Wt`ozW&3uBE*9*g?WYUJffMq zC(N0viz8Jl(19}#+jg+54d{H5O;tNT57<`w_F@n=>#&_S09^IC-C+}F-@+Hs6X)SW z&c3sE@Nn)(Jz^F_ePA$Kk0Z^mcMm|{2H)0YM$6#mz4-%}n`)Qm;3G0KYz{DZ+Hh&8 zluy!QLx=DXx)J~Y`}i7^mo;1*YwQhRL5IK-zayC7gV?uMiJG>TPWc@AIvWS~@qr6f z1p`!pm9NkR1_Ok7r`Q0G$Gj=$ReN_Q1kUShnj z)E*-pB$#~dK4bsZlPq{zIgvf#xc(PYb-R63L2oncMli|dPP$H*cfhyM&+gZ82Z*d4 z(Yqad7cGx@rx5C6T83Uhjlc^kO2a~lBFZIXu-{%fjq5Df`5h(xnD$DyJ*s&3rr6Ev zkFoaWs;@W(7#aYM)lMjcIO6c0dpKnYDp^Y~+o7sOv8`)7{2Cj`D9k^lh&-BjS24v8T*9 z2bFW0B2}fg_LRfHO(A3`F>yy7b|?sf5;MD}jd(6j85J$>yj9@s4y#=(JJ}~|cua&9XVrrx+=Zn_@qH|}PKoNGj-(Uu50nwpO%t^ccBqf24hu^KYlAPh z`f3%QF(pzzHuRu?NEPr^*V~ZLi5+uZ^ml#dkTe&ni!xL;?&D0(Zd2awCia~|i@NAu zVDW>o*n#O_trqC+VecrKv_*XC&!xS4rLq0lEJ7}}!6oPm@S1R$*Y;5Q+6mY$)b-ap z;Tld`lYM}ZPDK7I((#b_$++PH*4<&224dKo#CdlbG*qzaWzr<_gNj}U=1i`4i8;i* z&^1_GVH#7N+ifPH)KR&$p6R4J7x6t>56;H!`XuSB{k(2BE6plry2JF>Zm=}rP|V5s z+3s^%I_&e!Yc78H)TTab&Q5a^-@2Oh4zQ}-*87z{{yAjT-hQSDy6(+?m22;3m&0H% z*M2211O`e2kdVD~gVV9-2!{KAu;W;t#mtIL-_ib;pO4;qtYjGG>11E(@{nPBzm0E*c{zW5ewx4X z+~%(DKE2rUU>^h`r`)QsdWhSeUwA!V?rNamm^mckAru6T2kX)E*HZ2Li=4uZIeDdp(dEA@28rkEqTa+9<6G7dEoasn9-mWmBRVf}3hqSXc$oDLmRq zgWm`qbP5j$FuN7L2>(BwOZdZ{ji+#7<(CSz%GA`aYZT_tpl*=Gr5r*~eNw>biYvuA z!ygKSz5d)%Q3UvD@o-_T8II?C`1CTq&qlAk=~|C2VjXoyZf-QYkntvbDoWVT6}&-U zBbOVU%dsU9;`pg>e6HAyU8PuU4RY{d*qUFCy6hv7Iyy4LR7Sn2snIiaZAMjNJx>ec z)ui+s_N>BRtn=ths-t6}fubD>LhhGUlDdOQYAnj4*Fw$-_^YjCFq$kTlKyDaA1f5TXtR55jl3X~&u7^`NtC5GhE3a8-#Y?qGN>KTXB-|kIy<}lZe}ZmV~Ap^ruXa_o$0K_!<>FNP^ZTM%H|fS$n|oCo};KhV1eFBp-RB4+!r23D5Bs| zkO~F*GjFMkuzb1V_v8v*-^__IPsoMfaZgyyClqhW>F`V8KAAJO=e85)%c#>~;L*;d-yIeV{%I8cN`%=SGekVx22GoTT%54wOJXQYz`s+8dec77J)QlFl|r zY`Xqo{}0qoCmbgOMCYFGRI6{@P;fBbHad~M5r98)UeBy)=r)9&G{FX)PqIsi`TdBo zBMZcss1J*{6+l1@?CG2h00N(94hJ;{_bhDg5o#Hs5;)Ih2^wRr5PGT$(IoqAvQ9w0 zv#CGuKm5M;uh`BZGP{^1ux>TV#kpw{w(p}iPf&?#YZ?7~XLHpNa9jd}@Zo?Oh<~`C z$x+2iE9g%*!##P;8k6yJZ*v7AA(#pR9Kd0)2J$^4ihqh(LF%t6EFN7f6h_sEK6i9Z zkEo-C_Tt%ni!)kfdg|tTZl0PN(`FX;oi&5jjRM|`PlSuUibe&4Viiv@wEy4toqgTe zWKq9~K5+9(Zq$oOJh2bplHciHILtw4E!O~MkSK*)$nf4%o_K}!Hj2U}=CcdXJc-B& zW}sBZ$+!OGh8Ar1>)n7tP2~NBIos)}o2PK+>^r-7XeOKg<>bT!2R)lr`I=n$c-V0< z_3mgAA93gB3U0?|@QJZXwg&icS7lR^i^mr^>{AO<+3Yc~G=Dtr2*)p`_}wM^AQ9kv z8d-xQPS~3uXcHGEc1Cq5^^ycOHU*0qx^m$Xf_oT`kyg1-(kczr`_Z9pf^1#+0h<}H5MRmL9-;|1fmusRSwu?36YTVbKt$=i!8%+B%W|( zm_7B|Kb7`4k&NP!T{d6Li5Bii&vfFk)1LaNkKt&=e*gW)?^5n6;f;35ZgYElvXePb z%faRVmqo-ey{&UMduQzZUc8S;oaFEC@q8bu&@{qu%+0Pd^D2xI;9;;!)WFR|@B}&8 z8Ct^9U8lA0O7E}kPv6z1tMB-wOKipGMh}vWI-alB@j`tAvVhySxgzve(s5RC+7pN^ zUf_{dBPAXUM3Hq1$b`Z)wQlfK1p!$6c!~Q4*Awv})W`rsRq;(K<^eV@McJcrR;ALl zYE}lTTt_c^O;Nl`-tUX}s>RghRB^?hf9uLhyFLHfRPj@8Bcd1UrC0=vX*Q&X@bz}D z=d#D=^Qda7h!1$Y8%EXGET&Xt9ylUi)q|b#HTEO!{v^)V6`%)%6nKKt=!gOywi100 zco+Et%9VKpMiquH#0J z_}#wkZGcQu#q?Q#WAgcRX7GMkIG_=tElz3#j2SY75=f5kwe<&$;nu8$LLL6u%4i>d{e1EUUi4 zPmAcn=SEPW6)5hbHHxR7LQL*K;MuxQfovgKqX%XWDq=cdd$>X^$jo<{kX;bbkbd!t z&027(y1u%xs@r`gtWStH;H)(ZQ(*`dx?wkslj(U{CPbT@iP&=Q*>NIMM&aaVH>qp}0c{=odzJCdYwZ2VT1c-b;D~ zS=LOsW}X-gDXsWP${Dd?haSsO}K?w}Tkrn3<2 zC66!cnIdHnM%{+nB{`vm1Yl9Ihk`zb-4pYB61tz`T)?eD+B-rW=_sArg1istfy7S$ ztIq>;GL&H}c8QM-W!c>NByBjl1C zRZ?60UY8Qsi)3lMGk;K}<=E%MN;;c`r6XingGKpSPeAwB9loF&0sStA*X3|Zc89|m z@CNjN=bhxV>)kVCOQ4FvWUNr?ygl!p@>OgDG#Vw2bB+W4u`8jTy7{(YMqwjLT%a4k z0Noy$(Cv3P+`8YJ)cpPSM?ZYQHC`Ed5UQN4(i8l$(QGbln7reWHcdu7a)e=KWQsqod`xG z%@k)J?TTUfnq~?bJ8rst%RbMh?g;x*&{sS@!#G+zn$qg&6(#EN*<;8Oz#B*-XnX*T zIvo(V-0gGfvQo?%t#fv_FZw?6OOV)X$y|gxb2oX2zJlGXr{>|rr+~YI z>;UYl{M=N^PWUm)$fuR1JWne)^>$( zl&i#`;@R2x6yjF7%?jCLk<|Qb7Wp9?Zb=E`+)f9xOI~C@+nLQS;XHe_Wcq9t{~BRW z!{ZD#JmCgC{6%*@5R&o@)$6b$NgNgqr!(ZT+vwh-bN(!Fei4y%6^gDv?hFEwDnW+$ z2^cKvIvn6ZTScB`M4vDf)lnDl*N@#O@9F+EwwSKh(~FLB+0p%L zJiXpb*EjaxtX!APUZ>o=zx&suZ%-_?$G3lSa)0-)3+eS%dap@qR1?7s=+dN3m-LEE zP-K`B$`wU`=o-r3%^kAi&pJKA-?j>SEc5W|GY`CTVd0&fhU7ewUz8nAS(bc~^A1^l zqwMhFF+F;n6#ddWjvs%=-M%-y$@idrabkdSpKt51aayfF;Ud zA>FgjVjlJHvA%jL=!~wFSbQcJ&<|*!HK%6 zLte}uaY|nHMp?dt1Lt^aRC=BGOJ-Su@NRilFhpB_DeuhDD`@xIdxt0dxE=NZUcz;5?{hqgw{o)>+v{^mPKO=;a6FtoFH+PSvg_nYmyC=PejdLLIqf&Ws}GOd08i+M z6GZ^v{}KcMqp_-41W>Q#v0hrTju3bXw*+UFg$bE99!$DYqt?{23W-Mtd$CeI*(Trb zkl*euJR?<^;$EY%{Xj7p8^5a6GTW2Ci&rUd) z?*1d%_5zGG1DkCNa}xL`V>F%%IJG^6aXEwD0f&P&XC|Fi(mq!>5)PqxsP|MOTNpPo zEM{ZAy}yae3&V*sh5K(AHaJ?KKg;~ z@bDdv02jE_VTQ>8CCG+DPh}XDSTH-ASY$BeK~ZT}Tgnl9q<7EiuyWl(xGs^+kc3OP zp1B#1?kO1Q$wxv@bB6=>lF$pLyl;9|hQ991Ragz)@lYV9sPLYsN-PknL0BFu=$XRI zZD((rDP;7**uJxO^9n!dq^`#^3ypdV z=zfzGPJu1DTBWFwbqJoq3W%aHtbu0?;~ZF?_*ZSOBR`C*kodWdy&B;qki=)c&ud*l z!^Bv47k$AUCj5Y8+inAX(w6h^NtpdUbILrFE`(cmO~LhC4I-;)h=ZY?`;6dn;oc<% z^}e(AgtyfAh~zxyl-iv(Yu7|yp|NDieS4sEdmx-BZ#eGkY$cNAMoG=0)R`mOZf=Qw zMHkD7aNu@#_I7tE3Aqp4O4!}oxKl%@%S2rys9!4Y+9)j3$Z$X>R zwp0zmn}w#%Uy7R2B5s}LA-Yq5nKZ>KBVavOp&c@<_P`D335^O6CWk*tVnUcX%;lcp zn0VaqD{pXp*Y^@PpW~BRY12;x%c;f$};9C8wg? z6Py}Q;8myTE`{ojYESDl`-yIGoQC>A)~rl-HfAEp+Z+<(-C|QIx^MJIuf}Q82=O=>)H@AbtA~j^s?U)MLqa$&+$BmN0VMl?nhODu`?WY~Hepa7 zF94jGq;$9OLA62EjZn&`H!-i_#8$uqmsQ!3El;c3#?~lG7u|Yf?75L%!5&evX@p?h zfG>ddD~K~jbgS|&flHR}*ZUK}FYhA+Bd z()cH&9^Jp<$3Vp&PfprYaVpj}a4LxlbiVUr;DTs@V$Rz90105eU<^#_SwlTibGz ztQ-S67a>pu!LwkV47BPLCj+q6&F~~i?N(kwPyp)8L4eR?t3C_kJN*AS-H)W%m4UENEziu9 z%hS_kNDO%Iw!27ViKKDUQ@s%I`0iZ<`qeDzh1p45N!Eoq3}$f~J!`0tu1vQ4%>%}x zZs+gp0W|z*NUY+)dPMoC-5w6hhQ(Oj1tzG%!o+1au=P6Sg>@)h9t?ZX?v z2^*e(m3NHc_sRf-96%URAT5HK_k6=dy7VoqQ{+1pq+nPOvRC8CNcO-m7JNp`Otpxv-yd|q6PTngF0 z9mq{bI10ePcWjRTz@BgH0-otx7qT45qDjyv;(|&7KJw;szQT{S1uMjF+&WP2C<0R8 zbWY<{qQH|`!-?JPvKtOwo1ne4W51u4{rmvcOro?ot{=Y9I7^nkKy;}i0)Sg=Ns18M zk5{}hr6z7xAJ!|6Q{snS2H;$_oDozyYd@Uc*x4S>Xl?>5dDJ=G**bzUmcv@&bz>4p z&Lj(R3@4kqzEbsff@$75($JB)khxm}znaSy_5h}T?H*?M>wg&ZtnC17Qx4LeA}E3% zVNJbZC}bR0IJII=g*WR;G9@&Lp%SIBK17<_AY%!5usObjwF?=$fVG=4BMu;h>)s7* zVS-!zRT3K!@MHMDz;A>L-DNk|4U!w%Hb{_FaSPB=x43zR??1&|wxK~qfo+OAhf*r! z_5>yfJ!E4SCyJBZf5YsXG?m)E)R-Vy(o(CRkbhhlS{GJ;)AwsR#G|nSj zZ6f3NX)FGS<`lY`3K@h;ucpk5Td>gM<3e79%seav`G<~*W4T(n>^!E+6|H)kCG%b$DzVahI2okB)&%cecYT?)5PZ5+ zFgX9%LNo&!GFk%VD{Y0Pd&M@vnM$wGdV2Bz$tYBbH%$?8+oeQ{2E}Qt)%z!JLz~%7 zj5vc|c8Oe=j}Ou#-JYtZS`g5hMIA7q3kx35)!zp7VEgcrUPHCu#*kuNL)75T<2ws+ z5l;RmKPysK2ZoHqaRPH~S8Sv1cm4WrZFmK(wh<1NHMIZC#D@esn^tf zw^y_h{9N=jxC&YsNXFy`YCEm4{(kDiNaplF=8m8nF@I0C?a__U0HIw86!os>irh=Q zB)YkS#A@lYAQrBr@^gN&FPo{4c)B{k*ZV;s`uPs~7jAE(2v)!#v}4ZEAhi%FO)-?w zfPI|@T2V}HSAONQZZssvOGmHGbk?8Dxq*qpu_QM(1XD16;fvJbtV0ev{R^GTg)<*W z9}be$Vl1W4b6y9V13yOs4vMfN%Sj1QS0g19jT&~H?FNtL*Ia<+M}n(EE5<>3GVEcI z9YAflbRU4KqRcfNsYt9b3@i@U2CuI#>=x#I#$adE;eqRk`2z`7pb-^$oNLR1>4SZ> zxH*iiG@Iu-m)9||?C3m;=jnDKJ*PJZY1?L2e+0A0q}0sg4}4RhFLBXOgg*BR;&;Oo z!Xb~Z!GP8x&uAEt%0x zqZ&s45B6m-5q}W#_Gq6X{IJCG4))Na{T={4j`{ci<+r*Z45Ryh=mWvL&&Ar4pnAxh zobJ1NM)z*#B0Q@5p%xp(qwADHA?%34Oh=(#oF|Zu5t&V4W7jTeYWPvrW z#csb+pav>NDjdbVpC3=oMR1|ivNJQ;jOO?1YN9ZAp}%dZpbc@SNnFaK+}>%5MI>xd zA63f&Ghg4vPSq=e+&0io^;Uk-J?hvnF8QR7bw#0_aQ{_8Lr^(H1jk!9wxT+z#uu&x z_P{-_gRhJb52eU(%GSQpI&ikyDcNvk1s>g06(`Tmv=dc{S(} z_zKZ~5OSE6nYhGe%N4tBQ1}iP(x9M|zZusy3?;_Nj1tA~Mn6|90 zEK}dy?h<}uhg`oQYAUZ(v$9<~r?J+u#`+dCtE zDLX0?F4TBb_x~N9OXd_&#A?K^1hr7q=SPvBkQP)vgFFM(xZCAIo^2K67}XD$m8`Ib z;CjRZ1&r{auong+SE;TZ!iU${^Fz1H6|SDnA>&lQJ`Rf&sr?mGM}U7fhzu_iUwRG> zI8hbU4#E@vvD-T1F_4w!+wSjtH`zcihmGA)eTYJ3zF6&apredYy=d<`xtm^0Ev$AB=g9UiQVw4`tA^cKiJh?DE|8OfUC!&S7;_zflEtG z;IImL^T&l15g0w$^Xg$W`lQjT*!}HtvUR54+;^tUBTZ3I=(z|IKoEqy>zU5^^l#Cb z=59zNzXtX!+`!K5IM36f@Tj z0}w~Lcdq@Aq{&)AQE{kw!rizBfGi|PL6pRuQfP40fQhu#^AAHZWNotxO?b1ta{hdy z-CpNlAzvp2*|p&p$3akgk`QE8uR($IpLI_yK!kM?pylimmfIb@0ln zMXb@6S5|t%Yu4Zfz*YMuU^Q!ae!j>@@@C|vDu6vp5?b#zgrmfSyx%*rAr{d7l)ruc z{FD8TkuB9+#n`6;uRnj+pkGALAk9T<5j7BSwG2#G!17Rk3$bKy)_0vU>@7*ZiM6)v zF+%-A@PK^Hnt3A`uyrT4W3d;{pF(qqpR=Y13H10f*&QLmKog@tXQfhigCENk6@?_r zoxcvp$CB)qJAd+IJA2-fEP;S0#*>|ov;Cm6^B9NLAmXXr(D%$bEQp>W5dr}%1!D8~ zFYBCY^?C^{OGmD|)o4FyJbM28ua;K+ujCjFT26M}%WSN9D_(oDZFtXrgI*dZ07}Uk zvvoQ`#@b+i$36^;6P<<`lJ+CGZF7(YU@EOdsC+V+B~UN}#{%aU8BOFMLEfJ5Zpu~Haw*wv8EC0cZM;+D#{(rK3*wBCy-!%`xkVRZDgc50CsaRxMllx(E)K4H zQa}cIB6Gd)o|R;&$-z_E$mZJGCLroug2fXMnoy~jzR972C9Bav0!0(B06HUUK_h%` z-{QG;0eE7{;B|A{GT$X889_FMh?=$``bbs}+A34F3gTiwh~Rkeq$3y!F-SUo)yfri zN}JH^9(&5ZcIU*M6X&L`FF0MNmKN`xLW}FucQ@wJrRjH#OI0~_qcol#bvDv-jj8hY zR711dlXlPPyC&~Miy^6g+tlJ|*^sY&U~%@;9;Y;(9hHn5XRnzq{XB*!PrY_@T&_wu z-lSt*W&}Uk5=NohRz)`3)q#uHM+$;O*dbG|4%BS4aa%5TTO)csTe)gD^QY^s8*h^9 zr(xFR@r34?psIqP%K_NlggS8mA`@71aFgg@09Y>*_*@}B;9fu5_}fXpOF6${$PpA`~-;G zRfid7yXz8WJdpzTr>`M#s%=2hnqJy_k19!QJb0{mED*qt{h7%OzG}#1jQD)0u|Z*X zNKN^r{K5HPFi0-T(#%W=E=#;`g5DGHao!-{O2E_1{i{3R;%5}O^a$p=I@naTv-TRB z>#BeYxX*7g2ip}u>{X8sl4linp~(8?xgE$0*1<;*b0-oNDF>B(qjOKHq3Q_SDjrVk zN5p>ho_#-q6!T9gRWJKks*yNMX%xD;^vE5?2ku6~`p@k91a96QpA6tup(w2#Gf^BQ ze+mEE?f!W?TL1(vyXZ{_ZA8Qwol7^?O7ysjGcpY> zvLDfz$5DIZPTs?;P~KCYC(95yq$~5_)~K}6>-xFFMKq$q+E zHPqj!qg7xX(et|nsa5W@+Yv+>joXjIQo*Q}0`hGZgA(e(r~G@|?L*#3dit#?|0(}3 zO44!Et32cjr>Cb6g{ITtzupqYkG}3i1>ljLWpRb9_R7?|8ve zSsb63_+5H$Fji2s7UDC{t2yt%{C z@uKka7x7lVM}+9diV0kWCQGqiOCt^B;x|X`19tWxh>Oxxrfi6(qQo#F7pl-gp=e#o z8cHvS1=r^}O+m+?179wn83u~oAbkMA!Ne0lF4{ahV?SXdwCz(h%Q4!dG zSn|DuQ&#x$4zkJmQz`#4C#+Wlbt$XO%oOKZGc$#`KupSLf9i`dpU38^zhr@vqnxd( z%J_tawtyh5KsZ*|PB+HH`1k}-)prxB?)7UKG9S+EqaVe%ru%$amT*OU5oDK%EUF(Jhql z1p(U|^@ihHiE_DCDzPP$W2lwO2`!@JGadz%&og-?qRAd*CRxova>`YcGm7Wq;%#43 z(Yw=TyB*yszd#?u2>j=Y%N6v?GLn{DHZ_)WLd_{WHNUOp~2yHqSR2YlHJquG3%O ztbbDYI-z3V8ipUZ4%H9jj32o0>Xd7RA2nI!C1zBVm_h5)WA`0BdfzeiNajA{W$7b# z-gzYbGUL9?k?JUF%uF5F&pv@y@gDVz^@91%Gxr*Eg~ zMqULWfGRvBu>%ZLB}Ift;hgnDq)VU`mxR9ZpN7G;ayibde`yWcNn z`NuZs9v9)`{HOSHokyJuw;Tf1*$BOda`~)(;u*Y46eGk>0uOQ@r#k~$Ymy>v%m%+A zdlovPjARXvIydry9r08GWMP2wP?|7a=831~9bS$_V|(%K9=mtUeP*^=oX}Or_4i%x zQ1yvol^NNEMlGAI!Rp;`h9vw$CaTXTy~XD(guHQYET50zR|w^@OxPfkQEfF98V|*J zVXsL&q;I~vR+SF&E+B%#lJyC#q-N6Tq3l;p=5o*pzmVH$By}wYE|*wFV}KTPbzo<4Fd%Y5?nm{xI~&P zO-D4f6TB;crO#^Yqjv+EWFL4NgOD+{JUrH{-2?6x+>Z$YPI3{=QBOnCyO*)M6qO>h z?@{j65Hxr#sA@kP6z?P#O~nVn}zPuhoWXFx14P(%;PnE}oSJ z66?1>s45=dMO;D~sFrDL;wh@EV(JaZCPQ9~SW|F>JYk4SMVh0MQ%dk%f8vOK)c*$k zkw1VO4%abjefNld8IB5D+sMHRzf~+7-N3q7c_tdF- zPMvyH8|nJXy&+Hik5l+EU-t`(_kARU?-QLQ+UY@H7;RyVenE%Uk4CLjW4oNIHf zCH`>|^!SG<%c(nA9}MQaK-4eDYBF*^3vUjrCJ<8TXqx7VU4ee=LifX(S-~ph?lK8w`w-ndnlr zaYJ_uqHBW3r0Xsk28jC>qGv$UCGWjs7cYVY1(A2hB05*G5B+rB9k5Gj2PbgI`UoE6 zPiW$MDQF%XL(r^6c?-lk`GMO;`6e9C0uY>a+9eJuA4||b;2EI*-bfqWZ89Mkgs{6` z7l?z2F#rMw#e$1A3{&seBf?GpMt1jWmG%qg!W_ps8aSXVyKRRCwht)o!;iUNbWS+w z5icalw+I)r_d_L)47N{zWQ`@x4dB7KF$b`Y4o2NhFvJx5=&8Hs#47*~Nlq3x#HRR( zifR}|0AsOY5Oc$%C2PM-c=&lFIRt%yd68byZN$3x(2eceMMT5dCnqTDOqk~jf)n&P z;v+=Z@G%H|j<$>F*qWO)cEUGy(Hd(5X9Mu$_&5c)7|c=)^PVgvybUnrPe-}YSGMohgi2tR_i4`PSz zPfTlKW{fro7npU!^gd5GA>Q7P6X*gxY-DI(tgB4ixr76nleU3wG9rJzF=F{;^A<4| zZ(cFxnV~gfKFIO(8Ee6XMvtHOxcmss0>pnFelDxttB8!7M2-MeCpj>3-3aA{pQhY2 z*a!#~8R(?ULH^B)Evj(h6zKM=^!(R#vJld9rM};gO1VcFT7)$KezOf!jif?=R8Yf( zmTC~O+Qz-8z+in*eLFnWSr@-HG{evC#XAwCjL)dzGxRwz5dK)PK8i8&Bmg4EmDCYl zj+ug;`9E%V{3rG`^bT=ysZ@vklPr*AL4p*9_>nS9JXC^+|17~CB$u%-u>Zh?hH?ou zdcw(H7jGBueMe$6CsqF-UYd|{FE?C?e5CWsh7`#o&A$(@effmTkUF2?Z}@^#9ZQV< zW@4-=uirZOq{h>`cB)oCsN`){5$6&!#=&=41%kd=rTSYxFEzhY;Q9Y@i005?^bz z&h|kBO^x=NR7A{JQr7xTHN=39~8bz{3UuZPO`AjV?GTz!3E0{ zum2SDAqwr_2Vbzevb{azS)S7alz^w*Y-(p1}}=%xDz%X;x9k5mdvB zO8~poT8A33iRZcfT8!Cdj{@ICs$9vShSGo290GlxLS|%`4q?W&EQzAbF1JdNF_9u= zV$oD6$_oNVL#b#iT9|`rFr!WD{O5FGjy;OD^P|;#HH|2Gly6Dn&(ZXqF!7CsWA1>S z$xds!CjjH$^lWyn06(38jrbVl`x9T$3(zRkf{c>MI`BESz?O`!7`Id#E!Ju^v=&gh z*=(*ZudiupcU7jZ+7|@2CAe59mdtLZ}>#L|AK;;9l%IR_% zUy(**_*ivwEUKpBgguNx|HW7(jMaILkA<3TE#scPq0BX{a=cK!G_8p=t(=p#pHl-X z&b)DYvDre-{04I8+pK}As~g%{<6IvsmQG8yRM-OwY8Q?<9o31+^RQ5-0tY$xiQAv9rc&aIt1@wufjYno-O~TZVn(I?*bq zM&w=KtkhwKgpyr@;c=R4STd^X=rXU7@gKP`_CB0zMx6@>f8nt`cZ@AK?bEf#{vjTP zGwvf={QiTE;(hnG#%@X%9dCW#Sj(cT$8g?7>^JI56v+KLAE7{O_`c^OteQ+GS1vVL zQfc+9|G^M|QLNzW=%Rm)1bw8&y(} z8HgJ>R_Zb*QPY=Az7_F#$}+)jB3OkeqD$rCs>ZezW{y!?@2KH^ZS zI0BalToud_aFXtJ8E0V?+1}zl<=j{WcSS9@1t??S$hfvCI+ZjtdV$zAVf^`?V~_jX zXvf@wVPg%34%Dggl4;yq6~9`$J=(oSRoRhCoEOiJjU~~XJ$f7lfkE?l}wNY}# z8}qs&e#GXxWcktOdCc|=MI>Ykm!D%)pmLYT%m|N$qfz`Qp|~BsLJp!;x|5S3;ty*|T_zQZSTaV1wx-?HTI}1DR0pdM$Xa>K9LO|{>-1U;mZE7_tSj06d znJy)&2SG+tZp4Khw`$Pz$v|do$t0zvv8&uC@mfDAp%dR~bTw`c*#Xyvp~nXLwz6jh8!DIeDmk z&v=F+we$E(fz>w=PM5aP<(+}B+Y|SAB7Wq|gOu*_M?84!4hN7YfXAKRf1WpdEzS$F z3z?VqAZdud`OmoIb8p`?w=Z`HyEaCf_Ltk}_LhjC>qwankxMSWz{kWpcFGYZzbCH( zF5P)%q|&KXaC?oHA>vGQOVl9}a?JN|U%O#XE`VM{pdW>%LS==Wlu`gygb45&IwDGf z{UPe$$L)62_~rIwd$Rie&evHBlBg&YxcXIxBY|{ly!zPWW8>=k8@i!~;|bLAQ&1Mr z@`3$5=5%0A(My`uZV|m@tTYEkp|Y=WvUgpkSJAw8)v$QhE5KhhcX!` z5bJ>YWblbh!HH|;IViDJYKWksVDMN~=Mh5< z5iwK@2Imjve+d#Wy%*;2%i*|}oiR3MN+QDOf(Szb&PZ;sV2{8DyMF-o`VhFLVM*j& zoUgDR3wF;A2%nZ-!CGn58{fVd6ZFP55G%pUulIX@RY{1YB$Ufaf|f%2jk^u^*d?Yx zh9IA36|($()I}9FFRkca5E!cI2#-0xpb5dfXNc#5Wt6*4(e8Viggk1;6<4-|=JFo# z>x($3ir;@P_J?Xxh+ii~q##rICh;FtQ3*}_)abp#zN~XbcY_bsCdi2cKC}qkvs`nB ztAzB}eur67lHMapYik-DB@pCIHyYwrI^QApm|Ja=E(bITpSYNVdT!#mfmsG>=|EV- zJSZqa%^Aq&**|4pRoJ)iX|)dn0z|p>&yIqyytN5_pu`wJXjcIZ*dT40jo&X%W4(N} z)UiOMq>y4qVgoNQ1_;Q7#By)rvThq9FEpq_h~PKWp6lvYpjge8;TD2?+8Z}U^5Bqh zVRTdGwIL&`+S)zt>Fs07@91pC_VU4dV_y+w3SB_{^dQXWeTo(a+hE@R0%6`cGKcy1 zw~x(XzNru9XMkrXMOQdsD+D`){Skr~ZfsJTtoXDtd--B4e`EX^pc9G(AzSgjEoX1w z$#fog{}tiJ?EH~0RP61c7@MN~#Ml&NO*JTX8U0W0S<}?s@QN7zMrOQ2?i-)VhM9Xw z^h&jchV3O4p`)n%ZOGnS+m7j@B+QHbqw%OW;IQ#b+SoQCNAi~j#^e}AuhhOVHDuQf z8`FdlWAgiQJ27uI=xFSO7f&`CgD?Z>yVEn2ykRp4*mulf!Y?Kfc=-y)^A*-0!&r!b zTcV$B`2I>}60sQcm6_VU5=Ulg%6hrGr!-fLDkkl|o?T|+>v_@|aNB%*RocLWg6FMb zJ|PVtrxu;5aK{#qx~jt#h+u52i+lL-5T>d( zJif`yd_3Z-lZBFHBN>n6u4ZGNY(y;wRW<00dbQ>OBN=e85pOitZli67sh1NBq9zHC zScTbs+q5#t_H~Mo9RLs8N){Vt^v|Ekt0|jNy=4HxHG(O)6O3=``H96??6!VrJ!TS% z&<#ls4?;7Xf>v@0F`N$oOB_Wy>|Y42h5-z1Zn{_^K8$=F@R$nc0KAl%mM1q7LC8eMucM!;#PGvW{ zDDWi8CFpw40yzrGrEEAuDDc`wSuv6%0u@+z*^5}FsRy+9IikFQ-WttQG;~dTzxBV( z@pBX}+S8F-sfoIqDGf!fy~u$nB|Tnfu=XSfeBd+@^_Hngr8Yj>AJZd(a=8 zp2iP&eV}ewGVK<(*OFcVdqGaU!l)h8rr0_1^5!NwdGrQfgEF{f%ChV1*WfFeM?~Ds zB+F840ycVzLDMV4LV~KtkVAx)Wnr800$@(z>BgcvAz8qP|05(8t_u;DK|6yAOulT| z;c&&gsLdO5IUMOMbSsgs;p;q+O&H}y*+^u^$5Pq-+0@uK5H?BjJ}-~oaNAsVrvq&q zTn=}Gx6eXg5~7k&D74*3s9~?$?G3Am##l^NUHGTUu^*_#xjER7`THzdB6&sF;mMkd zn}BSNc39BK#z=-C>V!g9*9MQ?yUf-)TkX7(^oKfYA%9YVg_@nK!gShbL<9OLH6R?- zd3YD`E^&q^UqRH2f)oe7PNxMqkw~sV`9fzw$0StCgDyq()XzP}M?Zi@b@tAGF_`lG zUn_<6RX%&^XU$1$2dP2bd3a)eEtalyzK_5yQ&-!SgQdZz4 zjCWLO0{E&CSSpGsRQ0H#+H{(^3g7AF1{%`9JF#4?cpb5r!&|vITk&||t{O2~t!k^a zibKom`hv1IFh9|Ng*RjnVDs@^!2~8i!!d~0$!o*&P4F8wL;OQ*CpR17PxCjTTx=xK5#Q|N zo_yec_@!jY<6ZN5z7g_tzKTXJpY!BD z7mY_E@#sNK(Gsen(zodc5b#iRVihtB{ z2!vMN-6i1!;N^ZoLK8zsK zasz1VJhQg;am7x~72{HMWhD_B9*9~qz*iauiXS(d886+TP{iTe*fQbD;|`tSx!cbJ z7hpo`4Gs@DC!nhknC!1gQ$;I07JwzgohL2@>|grFPN%xLnL2v!+S=OFVf)%Hz@gR< z0XCsuG8)v>mvoX%-q$udsQYo-0N2x^I#HC)7N}CXa!HA+>ZSJmOY!_k%BEv&ejB+y z*|{_uX~dzz693_Lu65X06i5w}kvu^$!4%IWqG_NQ*LAAAQV)QnA+zcw8C{p*bPd=b zP#~eR``1>lj_~MwycT==ooWL8C!BGW#mbIk^6gs_Q_6?(hi2nO_Q1_mB^&csBgL6+p3FLKJhGxjAXOO1 zw}M;|xk^AQmgS3ln!?QpzvkA}!n`JOL6QhdH-TsCR|EQ6MDhn3Gg&Jp@j~che}g-K z@+-%%7Fg;?MTSR!Ordn~imp+1>tUgUi>E%1Jmk8*flBWAH2TfBed+wzbr1Sokc8Us z(HQ9(r2UBl<PEGC?53McncaecYHRKnGynkr z=@6!=jiS^K;sO-m7x{7*Olqw_xoqT39}bq@=5S%NM~kUesyI6PndbvgB{va!9X^q* z`RC{TXh1MKx?utgyxI9#B^}ZY3Yg`RfPl0HfgM^X?>o4f;bePPdrfNHZ3 zf2Xb+yITrN2v!OEq*ApcaWEi0ZbRVMbqN$4N=d%3R6KjOD24mr(csGhH41~>j$NdS z5OenfQ>Y2l0!Tu*h2I(*8Qff(R-y?_;50%b>WLTMA(k<0pZ{&1VDoh$HPOhCy2|}< z+@JgR?3?TZI7!F|q9_{r#;G^&s8w$oEjcoYw3kiw{(LL`%mnd@xAQf6Hbj3CJrkc2 zCUqDic<3{DhzF3AGzzcKAhI50Y#%a8J^rBA6NuQE z!-no#?x;ilaL;=E3L8@6T{fo|J=I-4Rn2KZ=0mNTfYYODHk;k<_D{xBiBu#Oc(>i| zjRx#aC;F0w{qB%A67+e)PFJaiiK7me-{G=3TpnknraP6ysfq(Fi5$$POsh&Q=?KU^ zMIE)H$gHBmH48okY*U;aMN&{E_y|KvomDV|`aal^FJKorE`qUkeduhZuVX`)S`w^K z-=-z>UZofyo?g`}DneyUsOkr*pNV(iZJU&VbrgaO@yni`OLfjjFXJIeR+By6f^o`L|fkYn0y^rxj(!sn!J!D&!oZXCJSDCVWKKA&c@hRIk5} zFxr3r_urD;d^zNh!>oYnNmT7_59}Ib@Itn7y{sdGN2cbsvL;@$-YK51qvjWXCmZ2m zLEI%W)g#PB@O`+1ivCm}7@dkPOF^G6i29ZM*FAxhKZIuw1jFHA>~lyh3+7Jc-e&&( zEqXG>mV17dYVY`L2uD*%qLHo-@WDf-`MqY!B2TS9Da@a+^LP35auNK(Y_7}2EsZ|z&F?)a6=MaGjE2j=?C#Pg+ z4lppnJ&GqO=Y&%?F4(*d5)$v>t=|t#AW`@DzWq-Dk=aZ%77PbME+ETsi^oIj(j!VJ zp3DMAC7ndbb1|dZ{b?p?&CS zzi(nc`L-4&Guh&JE{MV6Ati!=0s)Wb76)*NX7cz%6v_D`zMunf!MA|nM0J<^Kv)WS zW0O=CVDZ47O!=;xr@j(WI5hDX=i>sG3VHWRDoz8gMp)EqhybaBeNq4;nS%;B#GF|j z*-t~sPL6T!Kf2?MJXY+sWdFcvDA>u*iq7o4m?~?ID7UU-Ttp-x6O~NbxZ!H3L^REC zK*_L!ASEg?%$}lwPIsHYUpwAl`*|2b*{Glz*hiA5KhW(2Up#pD@Cxj`d z#GZQj5BNvz4FGj5|MUBQReHG?u|ehr4OZ@$A<9>p_yME|YbVmrEJ`6M_ z?4%-5qeDIvs}kVHFI{5hcmn)Q!lk%(*I|FtxV6FZVFO-E7Un}DOokg9Ae!c&EF!B= zT`$fd2^EdRq2h(n(z1z81SW(In%9x2i)iX88?kpOZ9|*|SRwBBr`e|a zbsS|Aj*$1VH{_V$ngD5r$X2|Zy_{ulyhC;+$HLXos#``+``hgICo-P&7&?##SVP?2 zoxg}H_lGkf=PMtPbFNJIT|p&doTIe?2C}PB?g_y_eN1_u^b!Ra&?H?c0qUCofn+#v zKO}kLWuXGWDr|-iB5aogJG#UPxB|3V#83a1YkmcQ8Q#4IVrp)GtWb#k0YLu!xa@Yz zW54i`bDfFGbc< zUcm^tSasN!sFN6sI|u2$6giwQOw22U$0ZxA2GEnyW(41x)infswpD&JbuRN@{;2~n zULTku^HY^7$kV^Iwbs;4Q}`l-SBu@|IyT*EO&@c0@JR3mD=wa@Q(1bflMEEx;KVD> zQcw>VS^;+otp0TVD2-(vUof!qq6jNM8a3pr6z7yA^_W|dZAoX)^B%W*REqc_sYYD! zyBXs4kYd^tf#_?$7cVGDo4iE*>5@*b{Cko+CwWrQ5DW{XPR7G+>~&98cJb_s7Xc+z zHGUzGRw+OAg@D^`TC_?2Dp5~)n&(7ExE0Z2U2ymb9wwMMamqTPweThp)2VhX3ha)t zX6qaoTBZXLR5Dr%$H8?{{?Cq{9sRAfQnHG&TSC5hBeSb`Lo*z|BWT1lve;-b<2}u0 zb7P~kp~1$Gs0xY2!YQ4f94L^id7!$k@LfZEHUe(RVnCq=;>1vP3LWw8;iBY|O#+M= zE!5`Kqbnl1iW8qP!9i>EO-Qur#v01 zwqx4u5Sb~+j*!F&4s_4Y2j}-~#0@?3-ou1|K$S8&S_~OblKH{BA(c>7Dx# z1l=rQP4oP`qfjh&LMe8jJA&`cDk6ER%Q)V`6|%8Rll=d*y$hHlXL%;tzb;j(DwV2A zrK*xzcc~?{q`pkITCKT{X58bkXKat{vDzNrm;g3-+KwH-+(L{nB*cu#+J+uNATV*V zancP-_GCl$JPDy8oIM1R&4u)kh4busa}I$_C%f5`Cn3q^$mjk3Us7Mkm_2*?qD!e% z_5HW+|E}-1ilZ=IV*`S44vk0ra~mV=FYoKyK1-Nyu(rIq?X%Kw>ORam8ebktLWph- zZ0pDww;H=GjaP*A8i*Z;yrSyC&b9W%i=CVc882rlNX6$#`8nM%^b57x3adS%aPwgA zDv?ZG!21EUy#_S^DXWU}y%OD#{z`a(RuaPNJEkI9A`dY$oX$aF*RF+M`?K4Lsc?_RY1 zo@v|i-FVZ1(v{mkepNgjczxl%dl%yI!pB068F~<3b`AP+$Tj(wT|@rG#BtAzHtE|g z;0`f&`)wKvH*Ks0}VbPL<=2qy;~$|gA~6KBTjmvqU1XHu4VE(bRLLO?VXIOm zr)_Ham;|4+oNxmEfG@x_Rgq9YTs16{F)b1ZNmvOH73MZn=M9Df z;egEizF;886vI?4pQV@)6}GlOn7MWsRjNah7Kz2ePRNPGY7r%`8n5z|at*8MIE2gANVSTPkR?5GjH&(acdT(wXwJ75H@prYtnNH@Z^ z8}gyluxy9rV9*!vOA#5Tz-$lbQ8CY zL{-Tz`2sbS*B}p=Qa}!(%=rxhyNJsgG>O2EkD$8ny_iA7sxWL2#mROJp%!ZmAsOVO z;DS++oBuaYg3nq=0uAdZD?$J1D@{lb6dO3EJ60!FrEkR1G%Xy`G_`K)nr+>GzZugF zyRK@ErfPaf3oBP4Gh9`|z27-;!j7BwnsMfI%X8&!=W2)5Bcl;DtcNW(7QC+(i6aty zOgnm5FU8{E=0@$lU@W}ll-@sK-2lLpp+Nk^#DwmciG=C&{<_A6El6Jd^#h+6)e6=S z|AlNW%6~+40Aw#mXl}wE2Jkc}cHXSZM%HHUnV-LBcFEqqKkE4=ib2^2eEcy7<=|Hr zy9Xb=B@(&i(SzNudWPwxPB!Hb?p%g%TgY^S`*@_45#E42h5MieH{A}Ymbf#p$uPOG zQJ_Y3S&sNv|Bh>GYn7AL<>l(hM0Edt+wYg0G1rf~2a6NF_2G>d7kjH(`<|&sPMmmT z>Yn!dUCZzS8uQ01^;l3r0NP1vvygdKvDcG!b8zGaj;F@Qb-=1HW_}X3HW6~lhwC9ZN%lNG`DNG=_xs$nGD78 z%u_-V_#_^he37igV(MPl_Qd@fUu3_)z69SO(JxbU%wGg% za--!R$4kMJQM={$LCZKStRpQD1I-(3iv$4TT3A(3zqzs|;}s~R$AO?bTu*~_HFzf0 zhgnH549)h`ZPTrLW32#_LWziJXgN28y4*1{Daj!>>&Jf`DL32xouH|;%#&4Y@JrLT zO&y*6km@R7H4yY`Pl0LL3ES|Y0vXG?NY@E0tGp zz6iTlzl~(KE9})Suy1mOWU+BKFe1o?rUrna5SzYkOL>ctW}ii)@GnbAGnR(*;pR|Q zBa#4OYoHaow}nQKt-gBFY-xyY+}2n$p4D-Wu$%Q6Xc}7elm_OHq$XGW(Ckt4ANpac z@+<_U=F8N)E262Q*-O;y;aIMsog~|Bn^}7|7z61Eeh7gX*=v=-=w0Vo_>h|InR9PA zH)yGmh2DH>Z(=NTdG;?kSf1lsp)>~*4(WnchBpj;0LoY9V zp4#;J%Y0aQ`#xW4m+(hCf$WfL;Dh~kvONcrPu0z(B@5a~h9RNmdZUS*1A>qE)M1zS zhz1Y}2~&hDyE#ApdE>KT-k=?gOaUS;NrUOITeeTq&x?jHx!EhC9lU*F+FllIy+rN) z9XOMdr3>^@*!0)n|NIg%{0M7+VrHhOS}V8dL+$4&NU)B=Zd`0;nHWCDhJ20%?8>G7 z0k8kejiwWUsoNg7-96g-x9(}j={CVc&dfR?+tQ=K-uIheA7|#lP{@ipDa+r&wB0v; z%}Hby6=zhhn_wsNV702fo^x&_g@#?c`KrIr2?D$hgGp;bhI zYJ#(6;fmPC^1S)}C$Jxn#TUls7Gv#TRJZI<#{3BE$e#sW^UHm%_nyGZc-1V8W%7si zy{N}9Q|vR3A-eNE_Bo>Fa`W+T(X-%xUwV(l3PgM!-A8(zpi@Vm0()b7f0C2r2t%Jz zze0@gqvkD4e)IrjTyBNt{R=scveZbHLkIJgY<~unJgoI|VRZN%iGzQFB@9Dv{E~J2 z;fg#8@Y+2%MKPZScZkexnOHOub4GLxBQaGuXo81)*|}%Zi9eekXOEX7(cK*5eC`Yw zMRE3%G>v|$_CZ=iKUS;I6L0$$`J8fKA9+Bu-66?!ll9G$qiD$XuG0g;8V^^<_Awm1 z7tf*xeqtLV9AAi!{mPIH{#La4wrVhC@7xdql`UOB%#ym{soYksn9q!veV%yFZ+S^} zz8ZD6ZVYQttMc2_XtB&*s(+H+e6T(vR@Y!2h}e=MVIl63;lMLO0R96zIy_;R1B8-< z%>k}1%@*_FqRMoB%gdc<7M}!YYGj5?kwG9)a2Y8E?_XNusz25Qn zE*3I}dcS`tQ&?YPi#O#nhYn@n#i90aeXomGRJ(ozz^bwzMHY&c63qJWMtBuDi;^?H ztbI-U>H81+{>aCUWeSX*6c1TUwYfF%XTLfWD z0n0ORmD8V$JXW|~5lT^MaV&nc*(;J86)|{_*WpVbQAz~TA~JyM9?(Aq0icjx8%Ryj z5~gb@fq-R{OtWNIA;qe>PB_o}7w-p_`;dlBG zfqvOEuRd$8PG*X&loL^nXPe>3kz$AA#@XgrxZ_U6g$<}MI z<=_W>jIhXlDk|l$_Aq*cgmV>x2#Y21%W%pnKDas{JMktOVSLU;=v2@Lr&^yr6;&f# zMDbHj^&rX?9E|KZ@CnNEEkviHa%mGeRUQUwp0sD+f&yFxhWavr6wy1LMaotVy#5!< z&}cpi1*iNsSu0o%j@9em%ck){hF^%Hln$=1!ykVe9kS?zbS8_lp?_YUpZ~iozI|%` z!aR1~5ujS^MI+Vbn5Vk#<7aKQB8nOuCI0lEVnG3Zej(JeW+)MZ9<$ zG3nLLd!5?F*n8g_yI6DH+gTFFI#qs#I4Dl&aGg-hEhyla!ozE0ia5vu!NoRWZ24kr zgMWL&L0{5-A-@+6yl#CY_`W5y%eFP%8y zyMVKm8Ju=kgP(6@CqjU&f-M8%CHx6Gm*=6*AZeQ>GlK6BHc>{^7Ag~(WrJt&y273W zUhzaOcX#jm8K&5^NID(S)9HV!XEOShe>OrVO=P3|G;ML)hr0e&{w19fN=Szib0tg)3fr0Qsf9Z!#uDXl{u!1j2_R^#PdHD4MXb)3=B zQofoiBM>r{8pb(_`xDMp|Na(k34c%jE^BnVWjU{ z;0I7=hXP(C7fs~OAU9vQmVX*<=IE1G__f6N(Vk;tz4h_ZOMI)R03FO7wq+9Fu{gM<1*%*1l$fF}~Tm>U$)3E6{!_f$qbH6m}teNPt_Ab6_39(DUD6+#OyJ&Jtu67pa^YLtul+^nirG zP2KXv6(gH4Ras*Z)r!HWs%UN^7PbsY)jdnI4AqF`EW=41)NzubT3)sq4I}x=2k}M9 zs+y&TFc~N*O2k&c+Qlw}l%UC6d^a4Ft>{?T@+_Yh3adfC!nB}LOHUyo@AA~LW&k3zWE%4?}U0r|PP ztBm`{z-&o7fE9X>8#q4~EJH^;iiIqb6bf}56OXO=B^FK;!=}66{z5EZne+y+h)3OT zxxMFM?EeBx|95>`8MT#fD@mK3^aWYCmG-J`#)#Bh2bc;VZs zoy6((=x~i*#@swixvj8_fU{BNFZNGZ?kETd77)b#QivqV`fWLeLyaJpnPKLg$NnIk z^!+z%fn0z_$&@f_h&!(@d(yEI&9&NTvy4EOvU$3FmHYHv?9zAvpFWjt z0RCLr%GB!_t6aYZv%cGI695RO0sTlgqelCtUL?)+xnoW2>~e+)ANz*rUk!0Bwd!FKtT#fkK1k(Ev(?bsp8{ zRZQ}do8yh*rQCcrJKv^Ak{7W(up z5Ne4>iuk)Sk06@y=vRj6MgW;q`l9S6dDug}AS6ljIXQ&a3-hbVIpjX$#uqk8(=y4k z>|Ay}H+drX^u(cmq_Y~x#0}kg;j>#PGosn#+2grp?$E^hgE#conxKbz2j11-G!w=2 z_msKGnYe2!@U?1fv=5P6Pi zX+;hBFQSB>(wsPiR!rUyY-$rn>-8+jXxKCQV;zUi*c>@Aat7lqg2~{p*lY?EmMLN) zgEr9kJ07(Zdkaksmy%k9L6cG{Gz6}=Z2UJ|U}Vv3KzZW9{K)Y( zO|b58T8I{*yk4XDbD}jtS&e7ZWw}2^*vRIzS)-;MMGE%_V)h0ygvfanIEF&&pj<zE`s8^xC8cNTpNGo01xHHs}X3%G~SRw zu*wH`oC8g9P>bOd%>n9-BM97~5IoA&rI@{~O#?$A!vH#}S)|Gf^vuuepG!HubPO_E zlP&XRP)aC~NJ|-6u?Y@ z%>(V}vLAl8zC5hDN; z4D%tPqaL>b$O?E?*f;C(D2~@uOBq{6`al=SxFG3Ns>_K5U~4>+t_qCSdi^$7GeAB0 z_c!%(5fhmo$Y=zeLl9=vjnrwpGkL8QL@%LtDT0dT6lP?TWHU0r_;D6n?-m{|pc}d? zT?z?9-ZXyJSL$B1TlGW-GN((xbp%VcZoav-vdGJ_^m8|btwJ7J4!Fev z_ikWc!^q>s4*KXleNL1RG&K4EKNy)6jGv&X2G~{nzz%>C6Syx(tFLtXv~;`3n#Sog zEr}2H<$ao${W^36W%gPrxc=Q=?bdynWFRw7VFw*Z$pACrb}}@L*dT4)n@1Y673zn2g^S;trOBYk<#6K$?B-G+Qt}A?3K{D1Rc%SPKlr6R5e=S=`|7bmmQdlx{G+Y z4q07L+`<2d^a^qkpqC!UYNuMZW8mGC^9+{;$6BjEZxOORQpFMdM&Y`pe#kRA4f-n| zJO0cbv**ePfoS}n0UdP>tyjjkqY+SynKokO+;F_tFeLaKDT ze*|NUXlozRj|)=>u|CSYA)PS0A?hB|9Vi<{=Ho*E)vICd(;>cSxieB3}UMX)uo*g-wEj0lfJV ztS9UXhXAKI8#M|_4nZBy!ZCMixMnFzMj12T^|46r%IW!9>0lxnpVbuAXlV)cS$O4s zBN~aTV`jrtl^cK7NI$)By05QN4#i-ngd~h*i2p(DO$Rt8OUQv>ZtvRWKkFbE6nj12 z59(ZgCA-gMWTik^3qpqCwJ1b-5@ZB;sjx}GzJuU+tY_MefJ257>U`S=`kp_PujEhU zZq6=oJ8RV6&&@g*wM}pQ@$Tf!px7p)Xrm^25RGfV*mNIjI#_w zA548@?Ax=g|7uErpi!Ns zJHgE%gTi1|qG?`{{e2!@mN5@u?INdB0R^dQn9Lm@*qnk|jw$$c!~!M}W(NEjmyVs9 zy$WomdOA@m`e?rIxHgs(s+?cv+RJq9^&QtHi+G#WcU>EM;+AVuZF5M*JFY%p@E$iz zQ6u2eBNZ7wXb6*K6s+EINBBn&3>(dr>&fib<-o_rlle^0k-}PT8x3_~-&i#IcZZfTUN7 zBO}0E9!ZAxTaRyaX>;v(cHNG5@d~9m<9H2tEffOa(TA%wCokQ5uatLctKtZd=QfYg zPzgTM#u}8#qic&uAs-Fd77{kF+teV^*KDM`@??GoqDD8Cm(QP<^Re#seO<&+V^h6; zZZ8iEAz@@QnT;ArN3N5rJGw3Au3rW7I{CM~uZ!5e$F_y|_2%@83Te?%f=1J*PCnr*aC1T5xWO$2Ml##Rf4-Me_J5q}$`pM7^y zf1jDZ0gjDZu%$C+#eKURRKC*r%-F$vBb1qn+ZdrPy0Ifi5dtG*A(GSJ3^{`p?qJ6j z`8IhTM$HqbVEZVOXUaqHy#s={LbRV)q)=+x`V>^H9k{4Ii5+}eD-)o ziDUlNmr?{X!p~mE8FV@sGcZIn7Mu0}ftN-$seOW0Bv+GqO)CR7MPU(`D+jp}4hW|q zcgF!T29S2n);brOXD%R_VKc;{pD;H!h_t9xrfcUbHC?%O@!~Z_zY6iJBV_Mo5kk@D zpEMUmbsVe_fu#=q$!`Pws*hJOK&H3|yEV_-qf90ErFhm9OjVc{6r+HnXzQkaufZ-y zwrXhoq*3>qhZ-;>`T|ZXf*l_AP+m-#n^AEPI|-`F0Muc*jbyC$Uq%xQ+hhDsy6}JC z&@y&dic>&qAal3tq#G3zm>?Z24j!7o^&v!Lvd=@07>DKWAo8Vd2L*g1qGXt%#Wp{D z1yeU6XqDjt&Ld=9#Oq)MiWh!}&amDhfz^e(ojkPkl00>%DM6X1E3=Vd*7E7Z2e0LN zR|x?ONz4C$z#Zi9L}F9>rec=6|KNVNWI1ieij>MFB-vP~BhW>PA->LoxK{yE3OxdI4Ua3# zy>Ou~t6gPp2VFcb4mn%U+_)5qUH};r1s-F8w=F@l0c?)GPbmv`}$#cpX0h8OG$CL-cuZJ=K2DoR>05dzCch3 zB?5lO2aH0W;}0aPAbbb@fUGBEIyfzI!airEPwndSSNyExQ?wLLPx(WdZ_FRC9LpCR z^J!WNS5M(X-;>JOi$>`Sg z-P}K(@^GSodaX4?&me||+iKU?Z}PcK2=qCOE~jD#lY{KQeOBbRVxI*oz3a}92Ua?F z7qLstN#LBs51aBjzc>9d#Qp%ji-y#$O{K45sFZPRrq`=^hv`zdiiqC${ z%_;$W*9|CH7lud}C3hX^&|pnu|4x`Y3*w6nahbL_sPsR>CXTE3KLhF_*=4C8DQ9~W zTxkMc*P|mB(39^Rd3xm8k)Iv;CFre#_EQNh&K8D@c95fNbb|`5Pj`aQz7BS*%`waPbr~%Egw=+#g)0-z5sw`V}AS#DgzrS1J9%L859W#P9@hCnavpzm~(u>+| zsuJ})z`bmJErxXcT5~p+S$ERU_9u^)S zQ{wj&&4;y*NJ4Ze53KPaN&?*sxd8S)k(OKOhoIp!gR%9@4Y6ozK9^chuFjE0iS{7bH9?gAtKq9;w_LUa+8*hBTto1&){@9dw2P! z{bn*hHaVA^cY$0_vLFatV_k5tp%t3}Z4SUcP_j1vp;9hEqK6se;^HFtU0~Gi_BLD? zfar%V1D^ulL$+RvY%Jt{ff7eSx@1InZ>iuWG9c*9)G-g?ESxsx|h`>GkHha zH~a3Hw?2c9Sl~z%#W9_{R(<^O+L77!w`bov^X}Pw!#*H91_OI?hT;P;PEa-wTugU? zqU)zMBJKyfoyRf6*-k3GZ#>=1;-o*z zWr;GJlI#7^_`Y=NSTmcyr4%UKqQo=hJ`Lnc@Zq%rxg4H&=0_3E7AbHD!1tjl&MI5n zs8-=8KU}FKs#WT;`u+D`tlxe2f&2O1hwlg+!M^=s8-^f+HKYu4h5GbeYv-vKQ6*ZkvnA&#?W7G}1;<8o%7zAkPS;hKo{N+54I1iSiWVUJ{2ql zbA*x&Sz@UBzo17iPspXinqhsSc6qh8ytufwDSE#nY{rnYZpjDMYHjP|*J%7-c^NTP zbU%_H#tFG(yPt5d_j$0n&`ldKM}Y~G(vJ+e21Q2_AOQF<3E>_QBhY_A6wXYj zecGo;K4w*sK@XaTHpV5cwG-VVAPupie2eHmHiP}WIR+OZ#2#$sL@?{Zc2kEJ^-28C z_dcVfqR~|JuOM_#ddtKqwzS5f7$}GQ@@G`8H!9-k7m4EtJNGxxXH=irAxt+?rwm^c z3>BKrPU+d;_^Qwf!#@>_@7L?Z{mI5NiM(t)1hNg{f)`DeUxgl zO*jGN*YE+C>BL^FL4u-|ZMR48_%V`U$RGv-1rOg7#)zdQ7$d;gzAeQxvcG9D>D%qA zi6{<%iw=zuY8a-7unNI;Xox_cLO;O0K9BgiI`F*O;Gkq=A+|}K$^#(LzQK;%k9q9p zRwKp+69Zh9#OYy8xNbCY6>(Ep$5%tIlFyfWcn&Ai-nU z5tOvNT)A_3arw?}Wx4TV)rB{0fa$EScj3BNzv;y#2OWVm)0Zz37_BCdD8Pkf==<=h z6{I51zG(JySjrUvzXpwk+p@~sWcQAt7{Bj#ho0}J0V*kZB#RD@8U(zHu+fp zDfI9q@H46~2n+mfz(aB$@|<35-2Q=Z&;Ak!hpBROJW~rv=^`N<`kWwJzXr%V7fGFy zAON1xz}*&dyhAw4s$>M3VL(aN;Vt!9Gn4F;@Nn|J9?+3Ne8{oADcOxQh9A0{*CDUB(RZ|hOTz7W$F*#-R?cY|mEc*@`PBG}p*<=7cY@BY@PZ=CFX=>8 zHK-+h3LK#x=K*|wfL~`3^4uI|`i+?DFr1T>p@_LFJQu{Yz2a6@j#?7%tAm#Xm6a^eB7o5(~2`S=kzMgYBxnI7YDVnC}>b>a-W>zI#Y2I(TnaQkU<&KtGV`Ht-1!3+Q>~n;h;s=i{ zVBL^k-OHHrz` zE-PI_^+2fn_*C#7>_vlnlU)2NceaQmDn;V#dDnKg-9|BzJ?}`j8`y8I;eJ%N1tM*U z`(z+=fm0)9$|dLIJYtH$v3LexxitfADT}aj8XZbXtrYQ5aR!mpG=4D4H(CP&nnRZ4 z+4%;ItAn%H>lKp7(#rUJt7=#gTlEJN)#^gMXQ~~sjB0DXCWq*QS|n%c4uCgZ$z=g% z2Ld`qRF`bLu{4NYmic$177tR+jaqE(wpqpkk|L{NGwQgM8KfYMgw5VI_lyt6b;+mc z^>olz3WQ=F%y8LJTP^v5=@iS#F-hpn%Aj z#Flu9Cq3MObeOhd6u<#tB|+sY83)M&Bns^EJkbr~;6VecSU4l$hb+SUDE7QBVjir) z4iZN`5ak%aM-0a&BKKY^DFCUZ8t|;PPII3g?z9XS6j6YMB;i()goA9U2LTBISsX); zFOv>Dr9;Yu1Scq?JxI_+(c&q{XS@3b0bs!awXpDE>Vjl&5JW##I3KA4qYK#`%R{oF z>+8K$LF`&o5LHCixdTGk8ln3QDT8mf)+ZTjS0l;>y$D)`ynt8>8atcp%ezJo6jDIs z^$6P>LF?+(CDa3>aVu;c%N>K*Ws89O<%2gM1nyiK$F1`SsLi`5fvmMU!wWW&}`I_50uDLyE-8QZeVy`oR)Q0PhmwS;nXU7=9 zO0uhGa5wTeZ0Q{ujNKiCzNgYoJNg=&de;@<-U2HW+Zu@vKtn{4pUuI395Ee5%}T~J zN0J;Zmb5fr4s2Vk-@=}ikGK_B=|akA)s4WO&)c%ORx#hMKQ?=kuzR$g27Qq zstZcOh3l+Rq9_;f1VzblfK|xmHm1 zuv!RrL(8*5(->vr3QFO4S2fP@`4-;icz zr0sX#F;}1~UVpCaNy6^AvZ(7ZP@-=end?jzP7yHf(I2Wx{ZS?V=T4rE-DX#RY@08z zo>8_W6h`9cWM`*T)V*iST7M>kz;;YE(O=<$di^O=;$)2{sq6Uq!i?ei-;kg0wHp(! z@a;*{wh6P;pDBFoP)UG~-Ht)Sj5*t1<3xk#tN|Yi7XRHW0OfvR_J6oNOwdFb`XlYHS@g6Y*5m zsU#%7e3D=hQ;|&3t(I)7PTt=<6dY#9+T)cSk-DB#9Cnqu!_@jVbUQXoKQS+$BqhBD5 zuXQ{1v(d=lgv=y@^u*fSU{^*C5kfvOZTf{Og-1l;Q&&=AF7M!$N1cx8$0cJf9naz= z<|fG)n;Oe1V}3=8B}!A3M5;N_${1lka4yxb8VRY39W?~FN65b+6v9zfNCJ&9e z(}(+Zp}HiSx~=J&D@P_;x#`kWEWpBk*eCk9acr96f!N z)e#F2hu(plaR*`dJjx7n8RlNuqqG~giX7mT%hgX>vR?}xE=v=r^0>IFM@-!FploUq zAbV}AyMfCIJ04v#0=rECSH&fvA#qbJCRGrsXbCMN8#tV3+>p%HS1xx~KVZ4F)L8Fw zojoG!Z`GX{y)mP|r*OIJ%vUoTGjh%@?OR^XgoD<&<%{^IpTs6I;1lG-?|Vy-9|e+; zIfi=%$>4=a%7ba}+__q7o~fN_*4X7tre4nFYRz1(UdC%oV@ReE z8Iom^^pet!tD=jBcZAmOQ3fPh$u@S}qxV;X+vm=l$<@1;w%mwr`h89UMyFF3@{$-I z%JG>doRt!-2aZe2SB58Jx{Jb84Tq=s<8#!JhGs~5ex*zZwea46Yf0>uNG3TN)(e$< z)QzR=x?{Vhp=ZW&6KSm&F6K~`DVy`6;b1hj5792ju{YdsFKtK5MOZ=IQPb@%T4CEH zHc}sTffO6iB+2hn0^ztds)Y~gh8&O>ihK0OafvgKJ&ODJ=9NeIR7+!L_NvX9X*8 z^Xg>+qLROgh&5Ry+V@@D|eA@Tj#e}x-}BHb?IPt z9j1$?3WcY(^%Z5tU#B${ToX)9++cX|wPgg7;%^z3r^Fz4+da^X$@9lm_4xV8N36nA zWV(5Z`;|A?m$4oRO}AVTn`*?5i314*3MauKxrFr0KG}L`ek^C`K3{tJU^<&@-K^Nj z(85%6-(mw6vhuBkTm`ic3%O6c(>V)Z42?RUHNrH#%i()+rr;J(rx z*M?rP`|6ce-n-5nKB_ZAclWvt`l>s)(}0J)jCS~8VNDPw0wKZ3ML;@39mb&J9uDob z*mhc&*U-RFPlqkuKj!+r44?I)%(&pVC0$<4+*_1U0RD5};XrP6hr-iqUV+2@YsaHEfgnHlzogyut3 zaC9}4UP348N;x;?E_HbGdf$1d9WUG}#_5$Wa$f;q)=}Kgi~YNyXhoE9?mty5RL_LUg6*v zaOf_|k+Z4J(xx92G+}&q&@_ga(?P%QO;rgAZ4{IAnkhTZs(SCg$*+aJH@4TdQAlI8 zhCZV?K~c@OkDTvQNB)0@8y^S#Ri=62{eO#uJM0* zfBlE<60v?oJ$YKeS*z^YUxBxvo%0 zdi7VQAw1Kr?;xX32i1u2!-nXMl*zBlXG4s~@erE?mn6v;ttLa#UV*B7reAiiQePNx zFE^iay503%ajNK%zt7cN^vD@4H{WUQ6`#?9t=ylh~6Q$&8t)O z?o^*FHy%JIee^nXt>$Y3${h64o}_K=jbcxsYDa>uy>}I&58LM6`wE}?f4aJBW5F!$ zLRBGKg~-pL*nNuZq$-$cs#;Wm8@ONU54;`Q3c+rCrN%7B`Qv5lp5zM{hIl9W2Vjx# zwfx1Q`qE|VXOb`6gKqC60pQQaTwGh@mSdh%ZKE&6Hjljt$s`nw1iXw25`roXbh?8Y ze@-LWiK8O+3(4MDYj~(Z`Ab@=$iQT_@&kISWw!0n6f`YbGKlB%9 z53Mtb4IYeXdNALwvm>MLNNqyPNbq>IK4iy8N^0-fk@Nv~Z}Iz6yzmcme+at+o&QzF zkUhC2hIlV3-n=!0n8uajhY6d_6H(zUY&>XcqdAmI$`Xp9=OHJ+ZoT`TNM=ghv3sko`x{!f>%_Ec zyXb--vC^(H<#iY9-O;4lIg@O}!vE)P(!@RmzYvYrK(gwuHkypsru%$=_UR$s3k%fm+@46db z*VVmm*={2air<#sSH!IZu7tD$LFtfvi{NzF|K&_N0X2}6uRcBb^kmJu8>l?>l&sdepCRC$^*YB0 z!i4>>JL&rUDY^Up$)_ix9wGbOos#`CeRv;WsPI#VdpFsRXjc)Lj8yw`lO{~>9W*si zMRSv?Jg8-k?@^*f%E%nksMdYdw=|@NEv?oKiHLaA=XAU)cyc^_y*K|6`I68)b7*uGW5mG{`sNlB2yeU@nNHW^?tfQ;0t}L^s7+k zahtU`llo5hAt**w#ymqD8mxPmOlgR^rY;VYE@U7J8rSK68bqJaiYmgbp;pRjz&};Z zB~c!FIVi)nqG}*Ntc10Y6uhh%v1ESyd@_1|{`R}$v8i&(O&MAib(*Hn)nKp>$~oAX zdq0{Hv@0Tft>B*bUf*`v>E};JCbm046PzvQv>GsgQh#RNq) z;KiTYpVDH%b7SW&pFdTk|D!@eN?Sv9V$-zuA5Y$7KiQLI70Uv9R zkx7`ZUE-mi$Ikxa$VqwzYnNPkJoajsMURDpu%v!ykR&@Ux&-?XB7}ISISn3yfaJJg zmtrVzjm=IaEYZzwrO&8d9fG?0eal}G#*;*bD}R|{I_KGji>3zSekm`(3S~s|uGjD6 zaz^xvYXp7iOqBPwy`{5brayw{F45h=sIBOm9qyO(7z#WZepyF8DS92HDJAN4_IxBg zbKw1&9h9bmtEP+Pr{|*vZY|~2z}C)}JTdStL&zTn;VWB)!1IAY@F7sNpu9N-K0`N> z0j6LOkky)X{TPDYSD#PppGmWQCY!QoJU0Eq6p=*s0ulousuLq4{x%P3aF`YcR|xtT zT+D@Ki;ci?=h?Y<%JWk3obBN)79{fHqob3NTyid%i%c?@rf+LjX9~q+vRIg@&Ye9u zUZZoy5?2!rCNn0QgJ>VY(?#5oh`8j4DBM$wv7?w(5>TP5Zy}8X`h%D>Rum}X!J`9# zi4m4UDOs;4OL$RT*iPv}H949yCuS$i+-On|&B*XrJ3iBD%^a`M%khP3d9JpvNR$`% z)#l2$$cm=he%o>Iplh_5;IBWYNrno-Pb0E&WwQRtBGMMA&6M*&rXC8Fpc-2Ud;<&w zFF-}ykp01(>CB-guA)p%E;-6{7itR7OohA?M#+kFT{qqBzVOwbfT92a2-bDAmx?ki)lK=W|D9puF}>FblV zChqL|UYufYjk-}H@Zkr*yB>HLI4SeM4F`dT-zg|NAV~NLMPE7YS04oAtspVr`*(U& zXSd!f=G-e>Z>PFW2S6F;nJAXQ9l8SCmb-1acuy;PP|^av^a?7PG;ksXn#Xq6*!}dE zX!D}*z?j=x`KxF+(#=scZO&9rQ+-`L5T zfjSb5i5(HDiKzceVZmiTwC&y0U0HisYv#sMgTSaSK^VDh(=shS!T&AGRhAr%ca;TS#jbe6Iftw-n}26Y##x!l8d( z^b|F!DDj23qC{22D=K(6NeBDSN(X1Ju4V!2ySfUD(u+xGK1xzN)+8mBqWAR3#}+(f z4fK&UoNL#Z@`z|emk>+lJ%!z~N!|;aoEC`Tqt+#&&+Gn#7Xn05L@%LE?)th3m&L8| zL7teCP^JmbJnhduTZf3)hCd@ip@+=_j+0FyAYJwETaV6_ z;x;SfpZ+h0QTw`2Mfi!ewLju_{v4v+ot#`a@HSREd_l3Er5Mkv(M0THHo@XPa=hFHzn>+_Zo+sDqfN3I{2iJ&@bWSzKCi#fMsPJb-M?#7Bs)eM+Lv@G%E$c zQXA}vdyDt6@m}|Z12MMm&+aR({6g%&3;q2~=p8C7(Ibc^Y5)KTCQf8UHZe)CztNTl zd5t6vq@_?9C1zyqubUUl`o9<(J6pI2Y#R46k z1p+n9_Ce;2TL_;W_+iNgKFALzuX#h5fr`*QAaH}R21x~>cp78}60q4JW)m-4LN-dR z-9v`0m0++a1AS+$jk@&h4MH(xONl6{6^JP&C0e`zl+MV?z(>3Nz8K2aa_1Hlcd}bv z|L$um>#uTulnAPUf=#(|5qoqB`W@viaf>(deZVAz?d#B>`Xw?WNsa(h=Yl3-nL5}P zw<0>Rc5cpGxWPDe&q))~0{+fMZ<+v9%E8_rlGRHKONYisCkzNhzK?8XQ?4G)CM!Q* zZA_PWLT6#FK4l$T3(S<*dLL1PIkavGE#CyafPKM0VF6uQAik-_xj z${g|!g~%jh9+C$`q6Ac|)vdDuaTz#Bp_#z=8wb=MZD>!!wTcPh{i%q9dk5tcoH%j9 z*M2M-{;AC=5j|qwn)}An(S#k3+x;B|vUD}m{IZCE>%hdU#ZDveY;|*HJTx{swZzx- zmNp#%b_O!rUR!(oz?vl^44MvsifrCcTena0*V3$KYgcQT!rDF2@WDx+@x!zWZU$g2 zz0p84UR_fQnfk8QiT1t1^U?=A>qpSOfsl{c&NG6sfcq~t;mauE5ll=d+E)6Tzvoqc*awyH;Q*R$O@{HD<4x8Ghs))%!H9R zoG>ObKzc}+ii&e%3@gS=Dv?w~!E=c*x`0Pn@ZPU@1rL9}BHn$Et`t#j57>Gt&jP8a zi&AtbM(0LT0hUkcb^tdHh4Rx;)8{jz)A>*c2lyQR5A0ju2b3{8hp4dEjl6l}$IwyO zW6|O=3<`jSAo&NQ$=lSz8iSn$SODk)Vh&}w#m23~D6$RH@f*L7(Ed;+>=fL{FJY~XCA7@nRuhU3X`rowre({L3Z!NyVr_mq zo+$VH`-u70{&X(^=-fisOw-Wm?IC!7DQ#*6XvmJP>4OZ zUBMfR{Sx@qXS=CX_pA}}1tVd;As{=<=XjNzBH_5m;(G`tNOs};sZ-~frbMFwn((xB zpp1rN8K=%)5dH%S7He;%i})3Sdx=2_x;R+`c!MlMsBk}kBA*dD{P5`L!|!}}G~`CF zLr*Nsj?K>>J2r0wQJCm@v|QNUM?8V+7?8bQwU2Dlk(vm-6Mf|Qkobo5ISyW!_N9&S zEYycVAH93nN0I>>WN^?&x)gFWXGj;kUerm0vAY0&7st03eFVCI^$W5FeMBj|+j?mi zO}>B;IP%cw=tJ**Xw)C@jT(E?lu>-5n}Sk6R(BI5<`cJ1cTw>#gZ=_OBw~*dR)9@g zn7v8l+63U_4*ikk_WB{yj<=mfhkQ!_q{yoU& zJ4VtJ+0%Dl7}fMJLB;)Lw*Bg>fbFNd2HD7t>%Zl~OLe+6MA(7MeHAjd1SteEH;2^} z@ziW&z0GRvmz!srth=_l+U;Ckr0p@PhQ^x@#6tq}N+ zAqyZ8u)vP+9^tN91QluvTQTu_za7XZp$T`)O@^6| z&TtZW7{_(Zh&o18@(27C2nj9J8N^XjVL3vm84aON4{LKro~j(b@QTG#Ly^p|BD2Qu!eEqPqv+>UbVNy&rh} z8`xMhW4o#k=3X25g|e(EVIvwgRDTeKZ*0%a#M6fDPsq&Z1Fr*6zt)F@2UfOM(>-o;*~@A1El{ z;^PE;nT+1Le?0BpkUky(tXUnHX4y#uYi`n=h9*eJSg<`Cko$P_JfvyZOrX0{2`bp2 z(2$Z~@j$U6Qn4RE+NRxbXb)v5M#TSmDQywQ}+{=QF z>}oWuOfD$+(!?P&60Pnx{#~NA4}oTCuA3g;MmrWFgPkD^JHR25T3guTWo%8n@a`v~eok@{QC6|>%0r84Gai|oqWJ#W5ejz9EPeUc#u z{m!(Df|OxN^10Ivyh?`T8$Wsb$#HfXUl3nio4hmY6(4-_gGDcU=j2@f0(cG^SWNy@ zim8~VKGfTlgJ9}Va>h@77^mLb{~G2LWb=OeLeL>xaLp->qe|WZA=}B&8oP8aAKZKA7Y7H$df{#BV&uy3 zAf3g$gRYH7GfDF4zHiv=5Lw-L^upr~F# zQ`>De!pD;jPjA}*ADqb)`1lnvGY9!VZ`61&!~YQ+z|912tk3bG6yr0uZFKkFAD@jK zFYz%PFCCA~#_!+HN1VrRY?-4}8HBQR4nW6x6?AiO0|=ZlwrfbK9&$6VQ3uK2Qwe%d z7Nr(4O+6&Zac=`B9Jk(_Vt?Y5Vp%H_2xKIQeJ@t>a#rsKyNoCHm{+!kA9ea)#l)>| z&hdg*no( z5=XJUVp9XUa|67b^eEwa!V8!n5$#k#%`>!(7zj8$Pr34Aw;~Og3)~!$fNj8d((5cT z9}6tr%Y0E53cURx=6mxyBfkwW?Wn3G62V|j)Mq^l@k z6-vpSx}5r`8j)(g(95-$%YyqR-ZQb!whLqTj}>gY_x(^ZznD*km>%(xCz4(Si6&&P z`$x3xGJJA3^4Upqu!Zi2*oFZC@(pS17$*QA2yK`Yc7P~2MT`_Np}ye^RcD|-lP!(l z_=idv>lU-9vm5n~k4wgAW^^=J&v(OLm&pDCy#0j*InVk@WL%Kp z@t>5}KEm=s&mTZvkd1_*yav95#CI=VB$Jk~36rDX>f%tQp|~!Rx(H3(D($)wu)KH# z*OsgO@zN4QoEFl@wqCLeNh!Fc{*Vd&P^FlA9`ys|6nHbl`vA5to?;%+&6D2p9L%W< zT=_g<6e{!D*7`ykJH1Ic-4X^m2R#ww#haReHnim#t3y=9}w3TJP*% ztY!AYhKXFZn==&dq{<04K)b5Y^B2GUSBE*fDM_&kFhZ56gbfn}NCk!H|Z z8mQM;Y+87hktt0ROn9?wlr-iw~U}RRb&*9FY-tN*`T$^2zpv zdVQ_i2Eu)vKb~o~pG1Tq8=-e+@cE_s%lvT-QRN+EIrIJFKLB%P715^cku#8P;OWK= zLXTM_J4=A`ZU8+p%VM-P0QcSUX7M=9@BsYpB5)+9v5JaAxmqqV%A+DFhb;jBOO;0h zK=lrKo)2K&qd~-z$Tc5QzeA%E4v53?0B~~rK1bN<-t`@}TFAgy-|AZPbc@sl7@HJ#}6B zuUpIK@~bt6w+CoZ>`RzYgk;HMmqiv)-@41ULuyxrWDLP-x8{A5GaM`g%)~)NH7qWy zOM4#`MgTD6ABd-W5J#t?Y`_Yt2jEqBw*1TG*)}q|5jJ}j1_1$`g-17%2vulvb-93C z2_+(H4I8mjjovb{5NL1e+bBq;Xn@|6RC${8G6!p|S%eG(r#$&OOYnUY)9)+E*bsR5 z0^cj>IIVNJMW<5|I~EPkm1v{-XSW{nU=OUZTO8OILSX-jWJgRWzgEJ0!gbrRSlsn& z_cDH#VZ1n5tDThcF(gRN11L(mpTHOIm%^}4xRI}uc=HFk_mKNmS;{%GjPvEfDtvLg zE#w=axPmNfjZKcj4gLokGWkKExMM*QxJe6d`##eQBRfnJ;vdO;WfJ@`P-XUt6|^>U_uDq`1j#^~X*cORdbIuN`e#UAwh zVKt0uE?G}={!sGqehB%$dD%vDGm}kt+}iP~df>s3KR3}$hV6ajNiU})r0HBcKOLOW z>Iq3dk?LKH!`?1=)hGH{apDV zlRv^0DTajr!tfR&OYIb0KuCxgT&^&Bd?71x+g!v%&Ce8J6 z$Zr(oi=ZU53OX6EaEj%H!Zz#`Y(^x)L8sj8HcGSSYTUd%V76ETuuMQyAs0cP zYkgS?q-?9U-_3gElg?{Xu%Jxu4MEgIRR|Vk7tq@xXQGgbF|Fd4Rhxkjq`6l-*A^n zY9Mxn=>1g)4XunD%GCL1jq`K=FKzDvCdXBt3D4w36%F~p^0>gN72bmstgV6+NHib`vOeT!?Da#}o}!n#cTn{VWV1f1 zs^(?5mU(v)*nv}-QV&3&*!Rg_Og7G2QOO(eRzFT16N*oTAcxFHV)!da zJY(OtaRCQ4O>7m&J&9cp8t(DkkX^ZGR zH-aArvD>}*$L0t`QR=u|6pgLHorOni7jIq@UmmAHKT*7<05Pt1!WT7mGRXg`xpO=6 zA9ZBjI4cJ!8gzc#?%u{Jfx#;3!jPr~>9|*o6ocM-qOh>&6d;OUk`y2-khH)i^#nK7 z?=OrF>M_1Yj)mRM_oUBnq<;$%KWvWyiQD1>gEHSxZK1!VFMnHY0tB0^JI2$sx7Bl_M8t3rsF8erp^?k13f(#f&jLwQ=!2;`6QhLD19(0)3IY|MxNcOY ztGEXYD-}P(R!G@*Cxv3|#243~K<* z$9qfhrxT?>=bPu%S@nFf9Qb~qG&X7v=*lAk4qOK{W)F#Qc8fXVCP$JR2!l5IQqLlc}&o? zFao;dk)?3#UGeZITFc9?h%8#u_?#oZ3VE|Cgn7A5#KqPQjb9i`5WiIG1#J^*KWqb9 zZ3E%4a9Pde^K-vV3Qzlf0dsm_HJzQziB z*Jb#5NT;AWmt#C4VTYB`jzR|ZenGq!_tK*ZFm{{{#=)+-8?1V9i_SrToXqwSaaM$_ zfcT}TobKftz0RH)jfaIHuq&OY=Qz# z8c@^>VckbCxo`k9N`U!?4*)(y*|hvySBmqfB)@;TISp|cACRSg(lO&m-F22bT4qxamY!O!DlG|E23dDGt0 z4Z7}$c<{d{!JXwjibM;PQpc-xQ03=89e`$n8&6Ur#_#giQE_VU%jSTS?VYe*D0hG= zsUu3XVZfvguO5~S$eS=aZ7I5Sa~e=EwdI>+5And>=kloyBeGoexz^lX0&1s z-%VL&v7fRMBCVT+XmBs;2LHvPPSExz;MEaWnczi(X|)9V5umPMKPpiY6{f}*JAj}s zD00Yaz?zGv7a~PthMb^KyEz))piK4{)29o6MFZM5Y2Yk(+#$I_p}NBbcn)SCWo*>W zY*n~o>Yti{W&tg9Ta1xJ0p(cpBv zq_g%T&Xmepij|z84ogZ+TFwZ zvGT$zG)8RX@z;WnN1*rqpPMaOGS3puc`l6o*mcj8oon28T49b##eVuJPocc8((v+b!0c+Uh66XQQ*g$80$c|*s(sm z+U0}RaMD}1uOGYn_+!qEtE?WcfdyBd8@pEy0F~_E(QBO?do3G$|N9>Fr;CtnrUwo| z&!H4uN~x;nu^Xo;vTPck2&5L+qNK{}R96^TM)*g1Rs$w9nX0kT86gF+VW-Ctj4Mv5 z<=VvN(6nf-yH*HUC8~Lka$iurb4P3nrfWHjW!OBlvAnl$U!a@nfv)VY+Y10 z9gaANvj(y%sF)3Q1Y{VKep096=uoK4utd^Ee^gn@G*)IO7G`fzr}X=W$*$7^=qwVY zAo6!oaeO(nIIUibDltg-Kv^QlnH4U>iup(J1Ui=yOW-1c|F9uzkmZ0iWckpL16joe zEh2o7c2Z}?lbsEmEqrvh-y7IaYOX%B z*S&4eBZKxWyY8KqUK;pS`<>>^X?*`3Yh?%aAo4H|gLaIZ^-m;y!f67mN-UFgG8_{E zr=4p!>^BN|{NpeAnEEwUD`d+P#TPGLTqnHB!~3DJ#MrsQ)(;i2Naf4ff|h-uyVgN2 z+TU}vhL7pLaymSC-m8Q*SHxiTW>JqKxqKy>*i)IYu?!6h{!d+%vX9|1>*DSfb%kBz z@wHdvK?=`4bSZk)F@>1Do`(=#mf6?d*J&NUlw_Y@{GXMz(n`4S&|>F?pG|gO$Bx2+ zev#KAvUD=C3Gg)>YbFIsIcmp&lWOto z9Rm;GdF_uFNm9&6Ki@>e2N!MH zS>^zpo|FZofnE6>2sB}yCjm*8jH`_qexOqf0{AS>az^88l*ldpN+#kTbwnh|<va?;VorWzIXihxq4vjm7JxuWyr}msM6iaPsn(ef5P()nR$cKJ3Ytgv-EI6 z_p#J-8)S^^_dBw0epQM}Uv(Ah58YfpzR{Wf%ydUs8hNre8&{O>xBY>f zp7!gL0p|La*L$Bg9Hk%xyjWu-)_)(57RFu=J3J)MFy%p%jWW3ikncf3LzCDQ!sH?_ z5Dz7Mg0-m^GNYUX+bvS(`9xv%jStm}t~YlQH%uS5Ej@E2Y6ut6b*zxN9@PAaFW{1I zVc+WhT%r(3>$!mc7dwgWKX{L?UvIOBqCH#GNQ+{>o*@l~iP$@pL#yx*WuR@8;l?3g z{Dy`Dx`6!QjefgscpI|@3WL+>p`rBj;Puu)A)l+I)3w}T@s{86&kk=LvK5Dnt^cKg zf~Lxd>cTM-$EyxG@KK=Qn{S;h-gZ~Fj<@qUj@^G6Ycu%FH8X;SDFgojnhs_2^56!F zY#?w9^b7suY;O?b5pdqe`d=KZ9p_y-;Bi+^R#Z;$aE*BqmGo5ZF!j+fl9)yJ^0wFK z4d%Kwri*J1vp449s6|Kq{ea#1QQcAD)OH_F3qc2_ppXZkAIfm$us>RtgYvp0iMRE0kDWWG zz5o61e=8mQ5uKMp_@%eQ3+K}5b8o`pb%GxWKfIWyDq?KOV?ZtN@{x+7mQD z0Hz|r@)j*5qss_B03U(R*f1_%)2bd=5Ogf0uRV9}dx?ko4nfPTE2`elGnnx|)B))rhB+zJ4xUtY`~&EI8t(UE_H?$3aNSRAmLc;ZL$e z8!R{jym}4PG*HvnVBcQH!?W&mD(iN|zOFd`|95}vLm&Fk+uyy+>Udb5bA=sCj4e6B zKX_vNw(05VTb@|QWTNLo@WPL0HVcnX@0pe4ai*2YugCL*Xtl*N+du>*@kBhU>rRJj z@xICr69*m;jXLl8K;q!L>%Tlb{Gkt-kLh!=>OAz7!_`Fh8;Jub76lSqt9VfVV%$Cb zg_=6eeWBtxr8P_VS)gL>$bst%kwA(%Enf=^q1vbt2k_VaoVWd3tJYY3InwynzQ}Uj zI_S@FLm|K3`n5Sfq3aX#-Bt04zRrg0%QvNRerFRI4}Ye#`XK=6Wz}lan%*6Rc^9@;x(f1t;t|x zXZJ-Y$04g}J?|OVUGM`{0hEoom^hTtU-tfgEWjN7kdp8I;WKzh>tc{ z?QAt%xMN6vmp1Gkx&ucy{HVK$0NhIRuiiEJ(mX-PQ7b($5?sKS5*DK>$9G@&@9X7}K`N_gozf0xxPINndsQ50Z zj0tu^*9YS^n+<3>2~6|qc&&m;!48MIJTZnNhw2&Gzcu%1Uh0?!5YZ`%#R|qZ!B2RY zEu72bLL|3rP_xN5oIFMC-6`h4NZ3P zN@28okZ=M4m28=QhW`e|Gm@DW|6$JL+vOBx4j?m&ikV>U_QLWSR%T(qhP@QQoR9@| zqkO=|px-ct)Y^dE845&gZlE1@|G^)L`2WiJEqIpLAj&skc>I1zk^!PA1K7`Rw>w~? zb%-}RKmdH$y*xp$Y?u6gTXtzC**tgAx!y?IVG435F*b`<)nv81}nc25ui{54>mK{WK1URRgnU zc8x(pF8|*j0LLG6IzDw9>!-l^U--YsdB6Wst5uL}&ZfomziYKV^?#h>mOiqEeL+-r z5g9~0g2@hSDh>KSGG1ybN(Oq`=NNyX{D?uJO^AAel<+~% z6fduZodPQ(whu&y4b-Mm6Mp0bOOnImpGZyB>h;V7wrGHIDDp(6&f2owZFdYCrRAY$ z1&6ZiaNF{k(%GS83AM5?X-TKEavwCv{J`hs_@IL&#OE~XT!%tL7=Ta^ghkkRaMf@; zQRLKd-#@-YOp93w-0#g55Iq9OInM)1Am}cR6_a>E&nYl+iAb3*2NFt}1l?+JNeQZ+ zC3g@Z1;9!5cmo0NOpsVWGMhz{3Mu+9MG^t}m6q0Ce2!J)93{@FFyJ5-EuxbG#AtN| zk+^;*6ynCVLg(`vnMAd8V8~v`QI+$jzIG0@CPA}17*HPY1Ow~43!Gz#L5;q!;&SP- zVayQG9stQ^^qHW0iEt5@JiHHEy0XZF8X$j34!>kwYatp9R*$EfO$|v$NJZN0)2+?x z8Hr1n!cM%ijqdV=O{8S4G6V+W&z>W55ZSviPrkupoOI-(A&7$lt8!B!&<>f4;L7L+Lf;!ki<;SW#|lq4 zZqL*;P6!N&e3}jr6)z2JtYouj56>d(L8NDj3Vj+Xq`&}8$yF4|iYHmMlbnP@%4&vP zcjTIpiJ`O!ONAYSfd-`o-wgsCGWfMSOWxSF+s6%T(ItxdJ(MfTE6CWln z!UaNE$B5rQ+-MB**SDfvso$9hJDpA=D@C+uD4zFse{Zj|%&S>{g};U5=yVt2p(r+; ztbsodBRjGC{9b4KbPqSI8AYl~=`2fQHqtBX2p}+KN)3}_0<^02v1u`#7iWBbR+H>0~H>P6Ag` z_CUbpwEK(bAyIZ?DLFUdQwokiq_x-g1S9rw&Y%x}#aB>IO7hc@NGz1fxt%r^3&}CT zomxrpjqFbqlD^8IiPtv$&DjML5s~XO z=mp86LD)~nOmE#Oj27fA$$(7C)7hY(lMF@xf#mhDk)#%2Q^@4!5}4jY%7)4>`qevw z2V9&v0eowpf{Bw2X_2o-(iN{gh$tP&8vXBh=*>J{!OsQC*Eq}?I(mQ4_(DNKEOJ#Wx&`JtQt0|^gFt+ zvQhD09Ff2?!-Y# zKwa|4*_i`wgw$LYu=zhFl+o{KiDGM=os^ioA7QfY($t9LS>~5dC`I2*quG`8$yN{yWW}JH5?9{AVsiE;_V*sHYVOq zi8p3`X?`@ntO_FsHgx=50l2v0-TY|2y)>}bSsFUp!-Q>B!MXw+%2@_`xoAN!7GxpQ;P(ypZ*z!G?Ej6QuSnANwc3!40rz&TfpzM zS~D6$tbEon1wdNN7AsHEdwHeZ0j`+ z+AP}c{@QFHqBZqLzh0%*tJ=xnNXaM>db4Q$CT81biw0&|t>~kSDwlWvvHJZ^@bG7% zwEkdTk?c-*DmkpEqkN|AfvRH1gtD@yky>v}HaI~vcpxBwljw#a5(>k&bzaq5%X&~$ zJP_Ed&&Tl`}wuSmrn{FTH?#pYxb?8CvBTX>imgQWh}1 z!J(-}%}?ehEPG^-n#f}bG|?DIr!!HukUPyoc-Vjm|5yqkxjO^u3Q8pb<^6gi_8rD< zdIZRkKif(AN~0dlf;)6LfUM2;hv&)xBx`EX6tuc{d|4y-$XkvilPES}LMUpU0I`zh z(H7l=nrBV+E6@$l4>F-qqBd2eL|`DGr6_+D`2`luKeGqT8#bGTlxSnN2oOw(d>}a5 zY*!#UAPdk$l%;+W;AM2HZXbpnvMuJ;`$GA-oLNQJl5OeUl#2%>v0e8TwFLIKeHcY^pSA7L zfY)*NhHp+ZLC??+*o#;rX-zV)dtx<0DGzKZX(rjNNs5{r@W&So2s+~gG7MRVoa!k& z;|R;c6NbVS2gp)F1`|j=jWX2`Vs{2}eqS!<^L+=Mrtrt>PPts{RQI2QE-CB|%HgmQ z_DCqgQp?UcfLdmAc~zGh4voo*%Xjkn;Rh=rng4w@$CgBlDw`{#29^r_Y*ro&(gxm`=Ao@ zK2b0bFxhr@3Rtv2YUUA|%>ThiNeMb55qEniCHLr-Jz;-JyN|U+KfC|oZ=;;L`P+^J zcTyJ&cog;rpb5P1TRRL9>B;t3IS8DEa)fCMB%}ojpxL!x`~cA$tqM12AsuS>O3~Wf z++0SY9*}^{SWjVNBTpDd_~bkx2MERJV8w>qD^?818*~PtCoRDG} zim*B%1ZF0c*EL)JO_|JyO+8B0lkkANv<^9j;sS@^kDbF>bO>D+4VaKyqEYk;GK{(G zKu`mM1bWOhHHu+JP7L%nRJ*TDI!MKE@A?=eWH^d%L zl=ryP%KxKAwR9}%jcS>~fA*vhI7V|+v}4C!Hb4*#jjJ{WQzY};ho8VzTYSjFPQU%q zrO)lz?0XcxkG=@~^A1?j$-~Eyb|7kTL5UU?Q(}VQ#0ZnWo_-N=(^%_tAnJV7^;j}W zi`rc1PS?;QXM&SKX)ZWl9*UGVs^H{LgmrO0;*OGI9G&4du4NOMGC(R{?D zG{q;-%T1y4FmR}0!nC^NYE;`17 zyZf?{A*wU^g<gg$n_LMv5Dv zcLW>-%m-oxgx*b09~MEx^B1NNwjcMTQa7HxF_j8Lu)x{kcly$5e3=cjrwWKCUOK|2Ji24*9yCsb(~4+bCN>%P_-y0{qyk0IXYh|h=j;xC*s#l<_*))+ zOI(Wj0P-UaeNpedU_sdUh&t;|FhSr`&YV{x$o7<1399!+xd4=AN})}!49 zyfEN~byvl^X`2&tiS_vEl*t;V7F?DjU+od1aV07<`8U7)&3StH+^eHEdn;9@qL=m# z%K01t9|;#AisyBJufT9rL&+dMa!3<_4KOHUtuRXLcb4zii4gF+r}mww&Y$1M?n>_s z6YxX#ZMCEKVKuhq2kGE>JZV785^@g@yCMydv>P64#+%08OvYJ?<*C#800T*gj$XG1 z3#sY1*V6^RofJcRFrS)!$24?g`j|TL+b7Q4eD1^#PVD>qzVq`4=JYxhMe;bkN_SK7 z@=tj2Dy*V-yWcg8e=v;OZ*#lvgOP(|Lb=p(-gwMZkkW~gzCZoDS2{~p~ zjxWwS@xjX4#s=l$K$t=Ep%|?V=o|T3vV^8UHbdCfz+y$r99p5^ zpmJfKhVyab=;*lHR~VvEc+<_NCIDcw1o^<>{!%e8lFjNqT`nrsIQgk!vA-BSYK*&q z`QTo1`KBgL-TWr{v!Q~|Jy;9^joGV2(@;JP=upiF2R`yw>`i@_M(`rRr0b+8Xr5Vk2`I459oFICMQmFTDrfTwE@iw z2HG32ho_=yPsutoh-c|A)wa)pVBEA#!`*@=m4M)!FPEuNox zJga-X0FeW#+yn%AAxC_JT{6eu8on>Sx>2xSwHL2uFm`wAm5l|fU9FGeIoM>&*dw_{ z57nJOL`XxX`X}_Bhs%;w`Z)$e2ex`x&#-(80}P~Tg7d{*!;jb+nIya1Fj=Y4Fv|!Q1Bcf@Vt^@l_(cud<=MT|ohdi0bTmn(# zOU2CRCGlX{v~_}WatUz*S@cvRu(#a3$~lhpJ=<&H{0*Nj++iefQT zZ%O56J=ZO__PfKugg>ZwJW9|X3#jf<-*gV&QgbA$Y+yZF8}Lxv5oAP2hsJ^pSczBl z)C0qFedhJIk2-JKY<@r0D*|Y+Z;<~ zty-lrUd>L2WI4Q=zrdIQ5-R=B7B_*K6UB{H_ zM2`x-M-U^297TL%zTPHiFap>DMcAb%i=tK4SDTf!W~;Ia3{`y9=JAc4{&&O=5XN=0 zHCG)Uug>8zv4?*Te0yZT5Bji&1AGnJ1WZM=Pe9cdHhNTZgX6Rc(+VYk@G2bG@hIHj z($H*RF^y7DR$YM%LOx@m&A7U@wh=L4RstV42)`d!1)#sLVDriXW=|tyV=%GNdS7@t z^#Y_@Q#R~i4BeoHOT^9`A~>Vk4vFBUa+D@YoPUw@w)Ps>FkypD^n zH&CCl`&;mXi@sFp%6h3!H_*VzDPXa}PFA9afY&3?IPxu3qcSG;!9k6sM&u*dp?iu_ z8CZ|XFlLwQ8?X{33x%WyHM>*!j>wguk_p3H#hoLKv37&Hz~<9a?h_~6Q`bx?ml5)J zS(%dA(6uK`7`&HI0GC%6!pr)F@mTS7^lZ~Q_H#(AP~qW)r{nGc;v7vS4Bw#XQVYd`=jVnv@^TVaV@G$iS ziU!v7Z(?pZV1XsHq%o|Vivq(w3?*jJfJxgq-9RkvOaonTg7?_WV0(ao<(w|n2|cC` zVc#ghG(65=j~&C{kR!JQNmwqMUcSg5O-|}FpB#1-yO$WV`PAj2%=S5LQqXm_;O_nr zB5v(2Tk&k@lW}**JvliXJ9ubH4NWXA)>QTDqwP@@-aOii?>KTq9v_-Gk;PqXwuma9 zhH-ci|c^bp2s7+|p7Q=BhG+rUmD zTV4aKkiu6cprptw*ugIX5TB4-Zkwm-f>tI~(-IQ1P_WM*blH37oQf)?JxqDBUOj(V z`1_a%F-VI4WirvwZ@abM2C)g*Uje_(lR{#doUXcDPQMH1Tz;GzbOt@nRK+3RS_iln z9P=hX@6K2mir|LsKwUvk0SHGL1A(nK$i9U2QfQq7odg32f9hzdz0XZ1)- zy{^<0-BjJo;dRr1>3L@)Jf2gWEP_5o7snod(ysI{pOb<9PeUe(xnT4~_THDvz zLEcy3!8firdNi*=K2IazIv@%Nqo4WvJ^nxhgXB%qAcX2tBz+J>oz%(kUdMD7&w-&oWo*C=1h8!4K6(5g~`|W zWjP}SeW{RNk)3KJCB4CIc$E=v%;R-=I#|v;;kv-Wcp7rTe_rqfJsx+?>sOPm+nln~ zqs-c3;dI(_+)95Pu)@MN_9hVGZm#c;OSTTdZpR@Vu>vso9!uh$$OEj+obGL^*KS}<8>%2+xH{FJr&rUFGCO9BLe3GGP_0O)#&;FM`$3N zhRoP6ybOUK7VsJz(BaElqzaw)A{!y^S`qpH)g`Px^UQ@at!k@{EtEQg{3!lC9&TJA zZ*F~Uet$RgbNoHLX?Ui}7xAYTE`Oap)BF40_fU^&GXMU`{_ih}zYmkHV$@%n|Ks!@ z&$AYPySPOIZv$Rpu&K`2_KPe!`87pwQ7&udHPt=uL&=IpLlbTFE;09;zs7!3f`m;m zHQ)+@O^`)1g*+L!*(wpf^w{`94l39u7wa zT|Weh^vT%CtXr1&UvSy=f3WX@)*9q%)Vamp&J&eMXvI?3n4yG&299`OCy(@k1c)tB zCzl6g033z63Wkg(&NDN=3E~j`^pE2Vl>vP*gks4y6o*Kh(KNKuwM35Wg5ifK5P=?Or)p)ZIZ=d2sT~00g?_!@MERKsD zi=%`Qf_W5X+#U)C>=>pu*eH?d6neIX!1V1v9DhD@c52`4@4Rge8@Zk5rHuT0J)I<&NtpIzz%DwnkcWio#q$=9T=F*2Uj^!WB!#Tqxbrv{s*L_XPoXA(qLW zSo^q;Q-T;_@+mOZQ}SETrp;r-!YACD{D-zb&R*8jctqa{rPn|tfLvsBEKN|_@48QDgHRi=>Zz

    Wn?Nu|>7pSiVsX2=#(uPt}VX_iaObrG@S&m}%yOeo4tj?WZgvy&mW)AL zQA$nzRQ3DAvWtS2DwTBiR}%Xvf+_6HCH^u|bll|mNZy~CoQ)lS$$I|CHmD%Kr9jVL zm={tdOBP`WVd(LTID;_xaj*~Y&)n>0i62#cxrKRGc`;e2Hnj_FO+}c{dsiyWm`dlj^K%zzHxlP@alH#gQ=48p!U3`L4k}kLCZpzItTV7nmGJl4II#ce$_&bx*Cd z0Z7gr=$I}Ym43hIHfYfEH3Q|l& z8M+0=#tZu{G$vtyC;BN*Z5cBv0~^o@TGOF0(61Hk4c!X*6-)sx`XM~3g zS`I^ART-CZ)p-sUR<35^D%LT2*=S19@P(Vp(H>`-Xf4JI4ru)c4txwHgq(*Ej1ojizra~x&nM{nt+%<5;8ec)* z)T^LQ@QEn9GFhFKHfXv!K^3q}11%=6uv=4ng9_~st1^T6T}%ghz9}$;{4#Zf*untS zAVnSD=1JZFAOKuX5(D-a;%ks2hJ5+hayE-X@jlchgN-W-;62$1JPX!@8(-vYK~H;W zAR7on(RBfu3i5}Kgblw3_DqG(7n2@4rw19aMPTjKcTpva)NiYjF6FF_m zh*Jx|Q&Ys=K~4kmv+j5=avnCgIc2)kBD2fc_4?DD!uE0-7NulqD z$)we0R7{a3B7x449HqwKQ==pY+7CoKF7j~i*blID@&~kUUqHrk`$D==ZKN-6wGvui zXILG?=Fmn=%~m_eu*9t5{So;aROucqQ62^U!7+zy3EC-SF80y^DbloclzDR7r*9rz zJU@E+v)@e5&!nTH>7|i0u$j`?^yu~TzI1AiGS@zJdUSCf7yb05^n5*S+?_r;ii>W= z@943)Ksr6o_b1Ultwjlnwjv6I{Ym6;)PaZucOlg*;g|wu_>Xu4I2Q4nQ?$HTsUG$Q zI#2u{T8W%2LE>1(@)U;YUJq8w)hba0*u-ZK+jZY^^oh^I%6k$qgt3r_JqX5ZT)p8k zx8OZxvC^IiiLuzwunLpf3h9T04Jh3}Z7P-RU`m*`BOWIxs;%3r&(e=!tKU12;OP=)x!VqKTdFC+XgvJWV=@kZb$tx&m3- z_=B`cu0Fwju?JcGY+B%QEreFcxUYm^@7*Ei5{+UE1*+;4kDH(oBksXlgn=~262l2e zcM5O|){y3DI5E}bI=r!%TpA+rF2q&M<*;WRP8!-TxNTXd~*TH8JCR)+ToaWsZP87ervcf&I>o_$45SPxcej06^LFj))u{pzbd|J zdMS3kZ{%MM-P}Ced{v}h>P-nw{|oGUn5#b~{nq>-5%pE^{XD_nnkvz&>ct=QO|_nW zLHOSpc;#TJdpZ5W&UFvM>}k}=S49%1Se)pX3Za;>k2OOByvH8u#nXe6&@Mb$Fqof$ zRzNxd-lmG|fne}TN(FO35rJCb7?ik1lF^^$O2{QrNuJJ6UAQkO^=x3ISNO5I<|qfF z--VyA8E{OAFmi~%hK6OV&U1e7LC1=Vg-+NXw?$gA(?f@-U>!XBhbxSw$*s?Q`!4wQ zyA*Hf^f>dt1hN7y-N!(j9cB|YY&!W-%ijDO{Grw!j~C8;jY2OG@96cru6Ox)?4{f5 zQA%Zxm8-Ch`4xj6LlOzx={52`9}c3?y(|#W2y_6y z_xD|jz_h*}1gc$Rl?@)A#BEEaZ6?I!B&xv#oJ_ud!8nehRkZ`K&DP2WZ4I<@qJ9?6 z!mW+MRc2KyzH_w$s8f~I7DgRQOO8?X^nZ_skBmB!wtz#U3Rbr?mD#(p;V&mjYKJzl zc0HWdU!+=9*Pg!peDc~wDRCiux)IJcD~@adUv9U1367CpgJjp;PWCz}e4wpL5m~!E z=*>PaOS8FNsjR~3?BVNHZzFci7^=fvz*W1c(Cc7uebU|P?ra%`eky|nyk`_c* z4kbRljGqc|#%5UK8uEN98-k$G`uVO2ch7css(>`%ipS%wC)TSMmoEv!CLC7c01hk5 z1WIyZb)DNkO`)z5wZ;+Bk9rC)$I6r*B7_lJvY@JkMzN9ny7~!s z*$ur&RShnK6zi&r(3^zw>kogzhBomr9?6-yI?ZuHHsdoq%uUho16Z~V5zJ_}KIV%g z2WxoQK&(wZ<#l%yZz?}@-CbU#rNFHSS9X=Hpo(Cr8JQ%pds1%}aA~(qz0=l&r&H`d z0$Y{Zp2ThmREIEkS|jSj3U4HMy#)Y(qpTCRO7zG>?g`J}>bYq*kN^*Il#ZLoxz^}- zK#vz5`Q%`_mC7e4e_=`5z5uJsBCe3Lx z`qN^{E*?P=DqkgeXKg#JcX3iX>{wRGV*GgePB(o_8;f1SqQrKW^uP{JU(>Ysr=hKs_H3p3LbTQ9+A2G zX?H;&7{^FxVXX9^mmTrKCZ&3B_Me#Ik!3tu41A{fVad#cu=a07qe33Gv@{*Qjc&gC@2iNLO-!tAwHG3i|HsXOl*@Yx;`P}?CJ_1cOtIB!jNF=d-gdfGEoGzYnN+4SNk{*hc>PFYvXV(=iLt#0G1KDD{q_$c;vxZBVvyU-B}-Ug7R% z8l@`_Zly1O4J8!8{=Rz~m;-cgk*9p6yNhJyz3$JmmDOH;wAp~ri(iIzco@liwTpIm z3J^!Si*)pdL~v8*rh8wN_TJrh(Qe&;C+TJb^nCoG>GMl+t$qhr%#3jnegSQpcVcJe z_-1n%!4&Ao&g5~|OtzZU>h-Lp*Ne8IBD3zw8RS=PPIPeZ26-O``{1k%n-48Fl`|?PAO_@wi^e*6TY5yhf8? zSv+`R?WML}ZoJKQOlRA+<^;3WsjZJvtJ@mnEK5^!ZM6F;o)^(QaBkQ0V)1Ur^TL^j z2CTKb&2_OdMal2MK|-AGq1+(sm6DI9P!o_UjLfhB$Ct=X&2bk7hf2-jWrV`xfAfsH zm^(GwlWLH|J1-yZas zbCKeyNF=-}MZ}R`WiLyTSGr}xA@50)wdb}WNe@Ez9)M#5Zm<5895C{h7l~9;fKwpu zzDA&!7kjK3yOx&^M)F;C-ht^nm0#;|WNfU%VeHmJvA4`O!H4Z_!Zt>-`;HdtIcHC5 zHZ$yT(|ZyW>d{H>UfN%+!X3oh*zy$C9eTaS1^; z$}?j&ve0mZG_p=XaMQohn?^e0;+paOv$88O6sn{uZW(IO8N17_+Zj;Z%<=t0UExwx zDn2@NHdsu^E?gQaCtdPcJFY}<{1#17M8@w$6MxQL0YzGO_2)eQ_2mf~Otm-SmA$DE z^!yEcW{<%BKs@U0L6nOlz);B)QIilz+so<9_p(rBHsHC$eX}sa#}lPo0D0sW*+wje z0>$}6)m?BQ4KkcsT)Z!oNED7LyNI*ahet5;%Vc-O4u@jEVuk4OiwEZ6TwlT{66qlKl0=Mnmg&;d z$JT6NtU7`nY9KKg_8wa`6GtcTBa%liogYkF9Q&Xn915Oa>dz5vZ%eHN>w4?>BiL6` zh#Q;(_jc2V@E?^zQV^GdG3}>oN17{(N!~sxWk+}OgO&Y{+cW;QMPi{xbkzWQpBUW_ zIy&9WL$%}M`EYz2jgR+}FX+VzA~0uZ=YbEBnI0z|k3pU$E8U?NiwYZ)u?^n!a!}VZ zhVdEk_H)@UXSZXKE*lxTU_-p&YqII~+NJ7lRMC4^%VcRo`lGek!NAWAAvm$Ebq=Un z5%>NwZf-WSodm*G{R@b<% zv_wbmoK+S^M;DaYWU_Yz=so;lB79Lq+c)v251cA3EtO9B=H~sUOH0Q}r~LDC52qH~ z)v9|TH9OloqN#;79`i}Wykv1?G1VYn459x)E9a3JW-UQ>iPxGQ$pk5M4SIMA|3B!+ z%mAntb*vXgDvl3|lk^=570hI|wE-n>tBpDgSlc8N9vwuvc|2B#ED~mO2ZBLQF|kUv z!A^ezR;#Ockm*ZY0n9eEEGR=`ynoAhLr;M}ytazO$(611I-PIS$~fP_Y3@V$7WemQ zu)ZzuY_I_*4-XdkFFb(}In4papc?XkAcSCZDFxy#qMT@vh0B5T#(M1I9L0~=+uGpS^up_*Q0DJk;+oPKM zEYV$aTdgBX(Cp6@I?+Hp(iw-xBps0*2yvzUfFS;}M>n28;%=wAsz)sH(JSiFdUu`o z24jIe3K zQcCJ}<0Zc@;2)3Xr;2T#8v#sV-R)zVL>Gi`#pPlm?Da$p$O1*0H}G9{*yFU)TNpot z^NFx&3dlh#d2Ev@1dPLXgI_~uox!=obAuG_BI^;KUr`D429-SML>rbGjIO3CStU3+ zgt{Ame$S?(I-q8TMuRx3nrr=YXxh(XPPqLJ>k9dQ;Ev}=0;D;@O@I%OG*G1wP7KQB zg-ZixANNK)?npLbWS6QB)w5Yw(UqOhoSv`3eWC{N5>T@N1d94JchEUnt#;~~R_|o9 zO|9BFco1&rCYNdcnmxxp1fCBP8c>mhaNL_WR7BAd-f|h^V3AZKn%F(l0e*Xx+UkBj z%|4udmbtS2v`Nvma`h9n1vJs@9Q>tp_dV%nv->mtEjlpNPzhf8EB4Qjfrk-?O;!F* zBP$VUr^QJm;^|0Ak_q>>%megM3y4n6AW4bFgWSjXM-_=FZHXdtsRSTJN+BzMrdX3B zl;O;sEE<*+PYUyy;BZr(mx1)f$#B7p1 z>`){-ipAJf)KK=ix6K1;*ger%TSIdHg9>U??u($99LiW~exEB4p9+RY zgNVMAoW&bsL8o3*CAaK&2a_Uh+3j+wPJk>cs@oH?yW!$Kr;n8Em)mWd+Q{LJJT*c; z=wOya26Es@&#sI029|ZmojZ3v%bGh}Y-*1+H&^zyyPa;;r8S+(OznRETwz3 z=rp5-wc?(JZQp9FUK9>!#ogxBj@TzZy(yHa${+R1&aUwN?{Y0?5lu7NUldqb+8GYOR)<__5uwOAL^Y}&$ z_9N~oMRm#T9ogiRvuY@&YlU%}eu;+TN9_|!D81nU&$EP)npMY%Jg&ptZL_%=#c+xv zXk=GcVL7AciF`qiK$gu>w*6j|Q3x|9VM;G*jh$3tvrjQe>!&RVO3o?4?nYbRq7jo> z@6lE#+EDZZ@r`x$tE;V*9+78|(who~fpXGM+Z6Yn?7_7@+EAOKHzUNJ4e=6*Gkv3P z64vf+h+!AZTW@bMZ5v_#v%A?xm(38iMzXyLp3%IWq^c=F`hpB#L!pzZ} zq>>}q7yAgqsE%;L1iv=n(;4L`mn6^8vV`>k$QF3VjtQr_X5bZ`9FoqkdGXaFhp!tF zYN#QAgknUdORd{K;G4>)#$0D(>fmk1r>BqKHmJtVI;76+YOK2)dvjR7YwSrV#DHq9 z{F6jcs-@XUk%Yw#!g z5W7?+d^HA98`+S+<;0u=!W^G(CI+Akqy(gG(aMzfHf82 zaCTpVWr;I_N!c`K4!HEfc|%c%B1IvRvKnpYjZ`}MLB*qLcm@(0iZ%_4f=#mSa&ejN zZ-8NSalnJIBw1>p2w54XO6W5ZDuPfQb{XImbs})4XJ9c*i%WzJq^7Sub?DHkYp36% z>5bdV<=Y#&M!8>zG7I{AbwJi&_%BdQ(um+UhI!C@BOBMJ9$;~w_}_@n6ZE~VR;g1 z81RWxZXiyiZTvi~35dKGmmtJI9E36R@Bym?MTJ|DDYP=e|HAV%O|2HgIEkpuaoeOZ zS)N2iT-FN4*jQMz>BBewQ~PtF%(3*oS!HCh=rp49K|S^s>+6Vh@J^IZJjIcCb+5aM z6~^a^p6*^=rk};g{cmeOcJt@n_I&%FZe|0zI>r*Y=sR2NpV|ntnT;A!VRA&7w?$Pf z7gh6X^R4?Y?3WU!xQoU_dvkkF|0f-oZ(4W_cV#VpTLzJa+b%Zntgi8xE)f?zfEr=j z?UdYDsMb^j#`9|D>}P!le^=viuCr6w@PUn0=rir*WqcJ^yB+>rNA2E=8lv>|<;{!a z-sWr72G(h6FN-n4vTQ|nU|~?F`w-bUJ|z2yPh?AN0z%BAbSU}>FWXzWlOiaAx9L?( zoyWRAEdEsB8YTda#>JOoV_SQryq&fIYhS<>@9t}mZn?@|uGF;ZB}6{NX90`P+uhhA z1bww+3{g*)tXO30*&BsP1XyE1fdvqcK7yC~%%FXi#Mm|3{JeHe#eC~8rQ1cRaLX|H z$N6F&{|_HF--#BqPj(SMY*fc!7vU>0ua8G+0GIy(3=U%mtP~i1KL7C~Y`v4snzm5_ z6ysMRB8a}PtwV2dOGz!9mfV*qc2w8twY$1?EY2`qX+y7U(pJk~R^!EDT=jXfQGL+k z3qo)}1x5nI>hv9U_y>9sdfhYZC9FpVVhYaUiAS8Th=Kv&8w4}_(qIC$Mdl7=!s|q& zc)kql8#ewy()4AZ5tRs>po~`}@Y5zUjY$CIpFZF%z>*LbL_i~O#sIoEWP7$cH;&bH zd=7Yb2yc~tb%b5v0jQ;ADVw>flp)*Lq7=8W4ZDYA-hCAU4{uxU0sGG)kE zuM?7=;?*misS|#g)?gXRG<=*g5Pa;8q8;TuQz*3nJCD8SuwzLM*_;IjQMgC&1f@{hBC7@iwf{ipLAoBJ|MgJbKMLFM$ud^VqX? zGfNR1hJAAzb2SO5a4-<0S3HrN7C`+aE7q3kG0WK91mYlNi~!M}gH6=5s;y3C5^I!` zp<=pIkOH?B!nKU-chn|hs}u~ewua2%*4kQ7%W5tchx1>nR*|lTyd79rJ7sSe9Sxum zLAfI^#Qp+4$qwWr@&#-~M$_)fTi-&`!h#C|5E@XYETw*8C=Hv_@ZZqt+XVq@)Fvkd z@m?q@uvQIfTCloG=kQD6w!*$j%Yl$Q zU)pPG)uz_+H5LDRH(AeSE7@#2n|&eMcQao1PTW+%yxoA^l^x{fJL=;Aaew1kmdi6A(xxk1X;YFep|6*a;%EFoj_ z^JDytT?2iq5*dqNx5bvK(GlJ|I9$=#r);!F+2kYRYZFIg>%+v__>p(d#xnov^&Z1^ z*Leef|K=>q{NZdg)0oYevM*tcTIiJn7&@9i_!T>k<@>W!t|b0BK`2|%Fi24UEc1h? zF2j)R)owFPG0J@0sy5TbI9ED&zV~cTY*5%b9n(y>vheuHQvKc^F`B!(Cw6Dm-4!!9wX*Higsx)wc1US6uQM#*s)aD z(#hWd0x(r%Fx9@jb-~|+U$ddc@n3G3MR{1IvW*DNXI#+zLtKc*7ot_G(p~GPMCdl# z#y4!@Ay9ZM$r%>o!+dlppeA2$_lDORM00=#@F=0{dyFnGTWXFk#dwe>m&cYDOW2r5 zVCCV{d^Sz@a3_0yWb!1kZ%2z~7HT*7hNrHbVgu!U-M{gom{chApm_U0?1|XZNymXR z3lr{xm5FQjm5XmysTP&`D|8j+V*Ck|HxXg?IYjiUR1!Eh)GBCl-Pv9kVw&T zEB9i(U}h@sqHHdpzcc_hVMaM{_5jQ`U4-%z1*_sMwwuyp!I6dP$bkbRmF&o)K9%Tx zquDJ^wIzR%?n3JnI>G|BTEh-$RsU!Lp_$XVmoR}qyDOA`!CCU72nMeNhgT-;uW!89BIJ`t5@ce*?QP0zS= zV<@T^3hey>uNDXeJh4HK%bqOR)5shcYPYA)PUHXN>AJL%sjI$-J)3dmqQ!6kRu?Iw z2Yk`M(Ed67_oG`mP%CrkWa%UMyhEeE zRR+z!b<=(M-{QVDO>qzVT=>pw%OF1j=@}Dro3Qt#fvvPC^xu-VX^#()??r&yS_&oY z=|&MYgBmnPl3$Tm#M&^Qz^@B^uIZTXuET_&X>b8zNEp_Kby_u7wC21zej~xo!bAj1 z=2km?tPg{b>$l&OlG}wcOIs#2i)g<7J5#EyXtdL8ZuH$62yCLsmG!38pUYfk;r(fd zggI!%uvk!@h6eWvvU=gtL5_O^R*^Ol+(NSWHTLFubGg+dU#3QF^E)rEgkoQsZ)&X; z`iTCFA!V<>9kW01!u8*j01tNd2cSNEcfZ`Cb~`9dOC8#}dwE-bXdio#{TcKjsvyd9 zQJ~EuospUwHsNve}re6Pd?Z2pi`l^J`;Y4gdf zO5Z-jT8b(^(V3)rjD`1q&b9JIk58()l=pv54k=1V{v6-SMB5=)$FP@CCX8skF=@76 zBqfZWB>{bErVKH@Bm>R5T;oKXyAl3pNjmsuiM>aXyBpN>TWqeDtoqrVPTQxeH-Co{ z^1#D4;b20T+3CdwA zC#mlP4lHxd!k1-N15V(exuzE~Nk=dsIrJKT+fNk+haB#o%+5v9i3elt;*IgBPfsKd zv9Pn5c)zO<4xN#iN0o1xr#ERS#hj`%oGQueBNClBkV@a-a>_xM>Tu63r1$gV(|7T= z`-yK@C)P11gb(T* zcY8S5lZnW9c05uUTXZ-U$AT?<3}Pt+!mljOE{p{o+l9b0j^NlLt}Trx=Efrn_!Oe+ zL*AQvClf?E)bl?2MgF~@{u=0`*YP^9JNiI|B|8@Qo+G#cechtHk#Fc_9n;TR`mNrg z4o7)+l-ddpmq0Yd;9OWlE|jvsCmPKv2l3JBWHvx&D_QrBPErh8_cD*h;4dR~Pj(D{ zo6D+`*+31SRMF`J)=589NOS#NXAeM!3}C)fJhCw1?0A2Aaq)0z-{Oh2Lx+yg`&0N_ z-oJQ)op0a!Q24F)KCHg&!u!H^UFd|(ckx_`*lF5BP@$7Av*fl%!DiIsgxUH(&7Bz@ zz0iE!Jqh+phngD)H;env4t3T}-IM6P?hn`JHu*km-6PE7@%i&-rY>kmY=v}+=dO;x z=?35%u)y$V=$_X#J4X0zbN{Ovn0{;Yq4dFxW~EK@|DIE8AaVcSb$;15-HAqjke*vV zS-s&r4L#&U?(18}kpgar>Wc6yQZ^LO0fA4NEAy%c2zSM~Iy=_*RIByInGUjhRxh-h z&BteE&VN>)%#EfVIC?|!(d6qs{$C(D1FIh>q*XFkVujjj!-KV(+Q^Ajlt9vQ2$AEM z4j6>GRyR;+fq;q(Oe#%=;7P606%FHZvjg4z*yGje%?Ab%i}Z~H8VJzRjk)+GP*ELM zwdy*m@~sBP14I7gO`{?IISTv6m=;K zi}{*{Y8qn4tWkb5q#07_VXw00Hv8Yay$PHnS9vemrL82DN>WLxDs3&PwRTtaGSh0c zX6czJ+p~B)9*@Vi+BP<3V(>P?*EldH7>5W$7Ge@&oNiwT31bo<>4rey!Q~|+>1!bG zfs+e_bUzaE$b_4hWjZ(c-NoE@-^-QX|2wBjOK%?Y%kT9}OKPc9^_{QI`OdfgKV+t- zlva17MbE+_vg{XEOS3DpB`#qJ!5W4WSqk(-C@>T*Y;&p1aLJwfOg@D)Z0Q2{!Z2DH zHVC{u5U+sv0dgnFS^f(NKZC*oeAKMuUGy4?$amqG&W9GSJMwt$cM`(kdiNhDg2s&# z!3q3&^R0d2Q>B}K)qCLmiSFj;3-(7eHwty_y5#8S^;DIt}Rv}gogZ8doo2@7z)AQ(b9 zk$G$cVbUNey9%wmb1rNXaG=A(*jYj~Z6K5@LOq+CFzPek%;f^3EFoReEhk*9>IkRU2(|VVH}|khSm*Xgv}FzlIi}kL!!FlFc1YBqPy>b z?a>YFO7c|rJ&U6#W%s~md*Ep$`O})lAyJe!RyMM#YCJMvVf(w@s|2EFl z?Gr@`1|>|Eq4gQ)d5)*KZb-38CN5zgKtC9m={wV0r_crtYpyRciV+p>&G9Wy$q*NblerZgRQNm(MgGm;~8t4%doey-MW1 zna^KL2U>y4J5AqCA^Dahqqh45qjVKA1JaH}!ZvDWvD|EXmwF9q{VEWWTOf(>n;Z}d zx2-r+kV6=OC+pNfQ_PCy!Bca0d8|SvgI{Z9MOdoeJ$K}diTOz+bIm8-cx3MGI_3ob z{8ofn$@g>>vCd`aL6nb7b!gnc*m6;E(3M16n+~NNn_N>^gAZ)r`V_BYjf=-m{N&2Y z16C$e!0$RP3{sB1G0`AW8i_aFIey~&@d-fXoEYCUkypeHv&T=l9+Z&|0{gz}L1zZg z8{x5M881ksU>hef0x-IUsiMhYc?A#e(DG2>Vle zh&Uzb6_GKyoi;iS%4;h2f|}2(;SlJIXZ@k)KqRMelkv#TGlA}`!<{Zd2t%E~G)B%c z@|Bui*o-^q&udE3r7QoIaQfIQ;XQ=jw>GFkFKJ5meMr2C!JDMp)nZ54%RP*iKkNZN= z1G!`ljd`x0g?oAeuh6KH^yDX-_Iu4I-m6Y3&D3Qm+~fINlG{L37?_ukXZYEFK*Mv6rdbSbkw2dN2uex=#*Y+C#R9S^ zpDiXM@zB0dLdoshH)g*~jx8jMakTw7>>EpD%k5BL!8fL6Dsg?H8cBqvLy5N|;XX2| z24i8tO2wX42_^`L!OzB0Dug+<&hFntM7QPVfAUe3}H^!yoD z&{SCQ$C_a-ppC4@=NibFArkf1&{`{#2%#{6?t@>n_|uZd?(w&ec837BJ$}ID^05C0 z##3kl`&}_SF;U0`Jd>4NLQ!xJ&{d~0=?UZt6WxCZx#fV*7m(edf)g{c`Z+NlO8zb23y>Rxx?*qS+^UuMUqxp)R1n&GdNy z+nzIptv?x`|5v{lo6Tq{%V47{Hq}ZM&*p{7z@ZM%TqcHQr)EO;|Cg(XqJtXlr&>l- zhNIq59jZ-`0{VLYR1}3F>A*g8-6R^lax_}4VH0jN1ipI9UKuHtUzn^Tf6aVO!5D!!!D3?XfIa5yVe4B zIoC! zNW6#Z0EMrCcbvpux)%P~BtCh~Jp3!+uZMU@QyXeF=}^}`-@Yl zWQW-2p_=~=)=Uk4EFggN6w{JOvFTYI+ZYTA7xWDgdn41{maxr&HMYTl5u+V#l%{nccPI>&(ZLSW#2Oj zBed_ce>U(n6tYH1cq|=6F|QunM)9eGf%@^Rctd$%dTwE|noa=T-j#%+l1j&8VLn=+ z<+|;!-gI!X3MFJzHhvk(Ug$?TWq*oH~ACc`|#aTU*b7nV~~b7QbGQ^ z3*AKpLZz!Y8X3v~ZLks3j=VX!X#gFG!<<0R0KJ|N=?={!yM@X&bf55%uq!!PpUS%Q z>85@|?l~v|lllBJZNbPyQvi*jIzCoAx13I8DxJzbraK%7dOdH+6wG8?nbPXh8Fq$I zbU?OXEaJZg-<^_1ssOJdBzS)%6%~G(I(2qJvPY2akn4GM%!kB(vQMtEzATheV(;^S zt!N_FgZR#T6OWK7EChrw0i=wIfCiT}i2l$EXkh4#jKiwJI}fLdH>a*B(XmFO5!cOG zsTwq7qfyCav$@K=Ax{J=(tgw2FI9T)yK-*Us;`)wRO0!g`Fv9rOGzAAm1dLqedSyx zlPmAbC+S=ha`Nc#N3ODC=aRisfsM65wJ{Y?|0>kd5iEj*w!&0DXj|ojc9Af5x}3}6 z@(nY@=z&{+QDM%3tZc4)`j;E?^Np8b?VywbDHvqz{P)RMqZz|7@66Ls|Cf~VY&=V) zQlqhFm6XcUyh(P@efbV*2ws3!>N>0-uJ#wJ5biouRf^n0rJX_VSEOYkOU~AnvBn#< zW)Aja5g#&X5J4hL1A!Ka+v4v{rt6B1qA(X~q9Z}qP4Ox7_KfNeiXM*~os!j~rQCj5 z3u^%-G&^oqi^3&%7huMB|0tihPDSqskBlTIU&u9g+`Leby#XH@yuvK9QdwhEFRDOz zSKf3w^4mOTfn$|8v5$WLap*=(tZW_0Vzkc3@S6PF7>-y${EW;=tTq~QTjz6t*T>%W z5y((0OXalG!U7VM<~z-m?KClbp30awRzm_TQcDSpt^^6KyLYFI3X6z7JGu9)|DDD= z{mOga|Hb$Ezqm7zCMt7KSiQEsLgJk=h_PI^QcGja5e|_~ z3KHQ?vpuBV-~oT;OloT>1sO@BzHWs2f5FfYTYSkd0_-Q2zow{NsOVB z>%j^Av9b?ZutPpa%pT+|7ezFV7BwBo8i>Nv*7tPb&P2#BYKTkDjWHBhhT47j9#-Yf zAiLv7m9vFQN@=cMd`?#Hs=0mD*TI_le@+IJq!RZKR&NeKynX<$0^M}~xy^ol+JoiP zWP3Gm`gGum9t)h$oj>nGnjB(&jt`tXPJA>svR!1)5qWvlEX#x30g!de=)!{V^w?eT zaKH=eF2o|0rBS#|PmCY#{=b!sGV0GwqYE;ySe$ZxhSqv1ldRWMzYK51ld&G+W*7PmsMTNyF$WHr9;ctYGj*KBo zX$~5Th55wrcK~FK)sFNNXXoHpJP2Ok4R`=?lPUO&gcZO=Ad*We0jk29K2+o-Dyh&y zNib^lQgmiYEhZ}I87UWvE=V~kgukEb{z~SNNG#hN7sY`5@Ch`XJ_!F@JbBkY=8lhQ zY2nw@sp)93UPJ#TIbDet)kzs&J*-Kv4rML2NtbG&^uIuc?oVrvw>z9uWnN-7i>#d=fx zaw)VN>R#qpLyg-;bB7-P`dSFxs}$Lu9fW90mJ;tGge&vo_{_x{i8^l*Gy9n=S z8l7yhW3vuCtaQk!oc0b<1qgdWSqB##%9t8ESLKvF!-0-u{v_;o=u~xmd2LyDhiqEE z$PXwmT7?!Tj6c5Lp*-Yf-_fZ)4%B~$fBZF0J@-X_2Xc(Cvkc6O5d^HD0h9AUg@y|6 z0WXr`&0|R90@%>$>xnI)v_AFd^3+#0(oxh~I*I!it&I)gkUFV)0w|LC(|1q4dvbir zbWa<}Ow@y>)%-ZYG=E$*HMcwK4nB!vY&mmPAbKb&m4j@hn)Q)7`Gu%}cZ`xr;DRPM z0(K*82X&+^q7I@_0)K7D8zl18#Py4G83H&6YEpOOQ8!3>bYl4{aS)aPSs>2+r=aWI z{Ge3qagX=MyBqHBnj7P8GnQ;-0rO|7?%-#MGTdXVmG2Ap+51xp(H8O=qrSJ)@FL@- z!sDW>4r@UDTw7XNqS_SU@d&|nj%WJHB$`hl0o%A}nisTD2AmnbZq&+8K~*fUIsNyn z7B$AQenwE3#C+o9nm_7-j?oJXK$JquTdy>#(B_Mc12dYa1kRGm^Bquo(L)^N|zo#BEr~5HNN)23JNcJJQMde`r#;IwpYQFyt5~;?^VB z2_gdAVMtI{NhA2heWniV^OSDRWMWcSs1(O;9>f1)B_hQ`2M>-KUNi^{mJ=u6c4GL$ zH2Y@Movhb9xyFqpzbD~#Cp>;6R=CXs`!U_(Gv-824hNEw;JfZE$NTTc+3}LQP@Omi z-+6uxIKg%-h_Tm*C4p&;2zvVp&3sjm!?S*9kt?cxYj6dw&sJNn?Z{h z5LtSKaO0eviHY!7w+BaG(Y;9PPX-0(RezJ|6o~81y&e#3lt~2gF z(*5Rd4WDR#Z9Tt#nzJrm{UB{6*qc|~|OD1!p6GbBjHIsP8=()t`*$0bx4~k$_+Uwlb z85;8LQAa0K9>k+2$3cA&3iG`@=WEv=|E&`QMQ_e82b986Qg4ODX-WCl0l%`6>vg9*aze z;QyR0XWjCxhH1HyMPw>&-ZM&UCv{*%!3N{l6H&~F+wWg8rr?omAtKBx+?f)woxJL>q z;W6nZIlkW;{*0PUL@&f5hveY@+#iVD;Pz%?e$j_+VkzbR@OVV>ZpgYHdaf9P1!$nW z>-&EFd8LL58tFtRe!DoK1hWYx?a6wB#bEyJcSQiNB`WA0`6N{$-E)6994b8IVJApa z3WlA7@dMbs+&(*sEWlew?ndS9(5Rt#!MufffRR(DY_j0R-oWb+OUQ&69xc8?whAPe zBb?ydnAa)$9k&xU0yx%Vgz#Yu_n;u&0d7d)c=#qcB3)+8@F9SR<{>rV%sDJwNj;L2y0njoe9m;WkAZx;15ipGVa3o{2?KZ# zzNw@5*q4@pIO8%9WJ*&Bwyx8oC+!b-ye`A#w%>L=$a~QI0NoBZ3=~0{?ua|$d-9}Z z{ah|`&$*!c`nslgTxD0#@5*9~S=1PmJudX7^tdW6)PQHaZdXPMxXW--aFN9jR=thCi z_KN*;5%rm8{z*4bz8Kt;VIQ6i$bw>gu8C zS(Jp$o`{b|0lVT7y#8qANNM&jgJ!zbYJJFspAWUtX7C)_udXoP26crRCmlP^(0SMc zZYLZDWU_PQbI36rYHggf+6HP;z?2$N*OV0gm-j=sD_^Fp>BZDTi)*cxbrHX)-2;SA zD)z(}87ZmQRfKhv6kHhHmkYqBO^0nZPq?4;HSuI8Lbmc` zJ0;thGDr&J$sf8Xr``+er#@oQ-bPLn8@-nzx^QOagvxxgh}*=nVG<&<(U`l-S5o27 z_Vx-)pg{_k=Ay@`WeuDTu1^V_>P+`|}97EU@t-lnpmno@@l%i^DMgw`>e`*S@0&pv4~bQ_w6g_ z6-Cb+GrrM($!MnjBg?Sb6R>=W;5SI5vO8|&>8<`hipbjc;5620&rnGSI1FgxOg9TGYRzge&#Xys4~^ELu!zrGmK) zISA(ju2>RuPw10m#jX-kNP7uUBD=4O>OfF+fbw={ySrjhFATe}3a#^X;fJq2E;68T zG5CJ4p0^f^|5%Sf4?O>0nVhu2#XGDXhYwd-c+#^+9)1rP}Wk8tu|oNLkEHOlUqeJ#Q<0P9L_K2XJzH$@Ff$P(*u3o=BhJJT61oOEJ>Bp4i^!S<4G%9Mri>vmR7;G5n6=c zz!%)s(a{>9I#0R|#~fkNSy*BA(%x}oo2#qcC3dNyVfC-GZAflg=UZk~NK^&YmmXUO zgI28~Ti#d+n6iSox@}a;Pe?3(g7z*ZNCw8GUbz1lb} zlPdEa;Rs1RQ-nah&@5EN(Ljx+)e6t+JVHOh-|B*(yImSUq6qiM@Cu%wpW_~B z8V8TU`vN}j0;$~#yW|mWg>*m9E6H7c(;M}LR9;_RRwSR-K|IQOy;+Zs!$bLkzU^-d z+z1gaP|5jE25~0AGn$_$*QpGh%ei&I;lo`c_x&qy!aY>8t~2){_*La)>pwa>RHwlG zLBZd0d&64dAztDBqjBV(UKzaGl^Yv{g4HjDXZp{Y@F~m>ZqpYq=OB%1_HVog3$VWj z3m}ryy2b3TWg)DHhF^H6&kZ~PLzLYmPuIKo;Qk4Dc4m1!g_E5*i9tpSl-)C9;+2GNE2yl9cE`YbZ0~ z)mIvXVJu06XWWPe&q&b-9sn%T-vfyr!hPP>IS5(cK=W8hJKXci1o(vg8rv$Q z_|D@Evy>!j*FmFJhmPR$pT`I}kH;v^vgg&=xZxLhH4@L@Q5%E|U!K&%Ub4x-R65Gw2%qxZuD;XHbb)cdIswaL8)WM?y za|)DE@f%A{ZBm%0EI^vUJQXMv>Y_*eCWpBRph| z131Oe~)2iGhsSNTlYf%B@{+B@Uw-0 zjn3jCI`#}*gWLS&9k}FV;*t777h}t4@Is%QTA0HBwdG}`P%IB$>k_0FK7E8fS*Gof zSIIRCefw|Bj*Gf_ZmjrhRt z&@j8-bk2tp507svCAc8hIS6Bmbk8`;ra)~2VdTIE-`n*_j_~4H28?Er+eRfgO{-xw z@LvF)y&gB?$qIr5$g;3H^loDf9SY3Ahd=C}94*bV+(N3md$(O{LA3*f>qj^}x1lbK z_F*b3;>h`=`|-a@RVKuobx6h>&0ZuS?)Y5e9()@GW$+K-H%E~@>~_t&+{o=1jb$=1 z;Z{6$zX!(@#WI+CgelfYisa#{&qJ&uY9+J`YK~HIq3=$GUKs-Uut;K(Zr8mEkxdak z=eLE_4uZg72>;G2@H>S0%z40d{r+m51TWq|c?Xp7^P`OqHt99+k1#-&UUk4P@64(Q z&0uR_pfune2W#!ku=N$D2lAR%iFJ}fJpthjAqs?Fpbf!8*+6+Tm?8ZBw?6%}b$!wT z@&m% z;lMvkt7wzoagH>LZ{e7>eT>vUiq;zP7r4EJ6LK6)d+jXuj*kp~gT4hmV_LP?cY9yt zSHq>)_5K9kFM(baINXE3XvB%cufbn{Y9Xvf|K~zzL(X2Aq3?b6*TYLc7k=_l`ND0= zgu41`^0V)epLkfl=d2935XJ=gc||ahZ$R0i$mBsBm_>S_ArX>xjc2H0<{%_T$y4w~ zu*})Rs5HQ#$TEXBN4P%~Z_~WLe3|r|&TQ$5mJbEvF$J&CJTE_Ac)MGCcWG95>gHnV z@B^166-%surGp~Kf+iyoMAU(_0!MtK5RJ~3Q9Wioz~}=bHf{Q-Q_E|mk1G1FnYx!( zUyZQa$m`7IKA)RzWMk#A>i`W6_o!y8kWi$EQ#ybpsGAYYLek6$#e>2Y=$cHK8F-H; zLI~~sg$Kz3%@&F?v!zcIzMpyEOW@kX*y}S-%Yi8qV88DvoJH@Ya5-0g z+JADk(A~^DP-qk?hr_SW{H-79WcL;FNaqsEzL`9vD!<3%gEZmEouLk;P(*N(rv*5` zfGR>IpH=EN#xtVF-!EUL zIna)$PBX{l1vE}UMn=C@x?tUpWPz6pt6cq*JqFexDBv1b?tNX3K#$V=0_s>%||DMI0jp33TD5 zQPY*zUV4c(kSoOS?hnhe!kHID_hEb4Fn;npa1Ut1EC4?n=nlj@m3-?X%CI5uI%?c} zMjI01XPecUj}S0~4sPEitjWndyJMQq=N|)=pab3He4)wJ-*SsDbiXiL7J@{@6{6>* zm$bag9DRxC?EVmkigLt#hAkS33#|i#aTVT+ICM2yGZcTs++*$?s;LJN$SHvNh?POC z1T-4~I}!J4I(rXPqiY|Pe7i9(zmOHDfVNZszg{X7?#i5y7s|NkPi9^O$>t+vF%qC^f|XGa73{_mpIgJu_{^Y2fb1 z2bT}s_$3m?{6+`1&Vla?tQw-VJ#epgnGM}f53L@u;R)BFkL%ThWIBefc&8xmvB6V6 zB=C)8mq3I=N;W0w@koW^>KweLuZ*lAsb#TWPrb^p z_3X$TvZ_#>W*3(rOpZB?zLsz&;FofcX&A!KN5lElks`xJe&nvYmgr!&?sPVAW#Kw3 z{)Eo(j_Y?d#*UdIC@Yt$@hnB$_qAFmP+eOGwNXMe2L@wLGG#%+}Lv4g< zT@!mqUFmcdv5xL~gdsE+kEHV9Xr3h?um>n5phoQont5O9$XMep;K~4hMo&N(EVG;g zq$-S`_$?xPuxO(2W0Yw|973pf+C{L4&T7FPPT6b-FhFDL zl`7C|yzle-ZkYm)?7650<>w4z@;#I1vhILeolF3|)%@1y7rgVg@5fPWq2$wf&&lPV zGM}FGqfCKH86fxuX%SHeL+E<2M@U8hbK4;WiEjg3qKtUGG3|mV93qP>m`-P%U?tCo z``ntkWncO5*vcSwK}>(k2!HfDz7AZeZ^a7y(Ct?ct3`L(@)^V$sY@HjNd&El@&p@QOE>jhqR|u7Qb| zDf%*#Kf8Q#m%s_1m;Bz-7*1UK2=)#((WKa62;qP%@gaP9Yw(Fi@N#u zv1>4Da11rf-JAH@8e%`vO$Mh76*oecYtZ_O?>!JKIztL_aaFxul{GmK?$0CKA1UI+ zG<$a2aMaGbTufAz^Qf>;ocRQ-ewQ2)J`VW(T}Cvx253Cj5fU@Y?cxiT-bEWFg^3WwshgxP_MZH}@3&$sqOzw}yqY*7iQ|lXZH--n+ z#b`NLm|tEl6c1z*`e?eGL^F%AU=$6V$i3b3opK$_0JS^qet`1a@h-qd*oE*x5k3L# zdvs0GhqzxY$x`ym+lMeH&}XW_^5_8j0j3bRu;WPjYonL5O!>y;T(~Eg8M-5_))VsaDQBpNO5isj6px;OR%pd^Pa~BX(9ehj36S#^b*q02Uq%zMHvh1dfjOk0LrW>S~G;63cw9yF{#>a0Mf2IRaGg6thYf`I*aRFd#ZQ+dhe?ns_ zZquVW%f0nTbd(q-;|$9=sFr$p!Vu@Shrv-2I1QxGlkO0=m3v`LQ&F4Ew9i1;9o(kb ztuy`fjpOa{@n82ly1YwGY|-vCXbasdM7TZAxoji-vbw8e8`dw;^P0ric9z)6<>E!U zPrE6WXqREnXNvJ~Ib{-_R&NgNvd(MHor1Hd5;@~`^4w-?u=Pxj)1+GgG^>R##v*W7Lq|&W3NdD z4bXH=vgl)+v_WCLn>=zzWc>Oo`ySHX2yf{w{2H_k8zS2asZgv${va~8;7G)b+QTwj zOQisZP|BErvR{))7(~&Ic2~=AF$Di6oUi`b=ci@0;e4$WSV7znap>>XOg)Q@PZ~MAO*WhH_ zRpaXXUnyeiN>_OGmuJ=5MxANvBfsex;|?LCxR72KxSlRwN(f@B7F zRA)!ndBbRSI)yg$v5vhb?C5zA_}&S5LbeX~A9LT>KKMCbMfyP`*P9Jgm&{UhhK1db zc7%)o#kPSxU>anU}boTAj3O+qDTh{WvWO%l;Zy!yv%d<$G>3Q+; zrAb%C`n_eTfMT1xCQG`SF3mmzXw8tWrQq}3w{M7c(u)rD?6kg>Mk?bD+GWkhJd%5k zqQ~or*;{3wBu9eTA+-`LBt-&P~(tlW&1_b(m zDLXvr{X&DokzFws7mb_0nE9l1pD~dH5&{?%9xY2^M9wQ{E^hrS1Pb)Q!I{_S6zb}JUZa6QucfN~z89<%@&(!5HC73ii&W`+kgkiS^ z4|q&g02~_@8`hbiy8D`zkPE+3cnBx{M5sKzefZdqG{yfQ7LjmL_j%nWg_6$Qs-3! zZtw;6P)gk-d_42pcS|YnPyN~Z0+QPo3kQSwNy(QucS=CMyW$eW^OzzuN3g!Bk68#c z8&$HbnsAWuAQIxB1jdhO2d9`&(^za2?n~8;Km{8GMVx?y2DKtvMnRMFstqVC6CE2m z_Vd=ifpN97|B9s8E7zsX^x@PdGyKs2Lxn$qCC7kErCJDT_4&XI_o9 zV8*LDrKD0Wov^eJ(Tln1NG^i@Gs(!pl*=?-Qw#c?=1k2nT$3G?JGamj0SPC9nTg;~ zk7qhpjATqH2&C?yWR4@hVEhKzPk&I}&JrxzAzGaX-I;5mwFx7PlC@YY9QCg~(kUI6 zVqw=nx=%|Zl6-1bh^L$}V9(fl2ueIMTUsO}ibcOi39#X?BpWESG#-){JZF&ep7|tx z6wbr2ye6i@$h}sETSN45exLkT;`W~8?!f5Py~y5!$-`rC=J$_2yRVJOxVhKN<-s}N z%;{^P@0w=x9^~%8WUR40$lim?j!Yw*Sn{m}sUM#JkOp*$S9GeejhAYG+Y#0c^n_no zG?nt3jQHaTIL4?61^xcbTlc>*(!}(4_(6S%d*|{Z4^Y7`tJk&9wdQ#&@sRlGvm7GRw|vBUNVJ6q59y10)qFebVy&vCYxg%u}4HmDy%0hb{+(ldHW>F#Nn@M z$PexH1wb1-l2QpD>iB_VLWr$Eg~1!ZHh~8c#bUxAyCnaIM9G~C_++1dl^z3s@*(YO zGSWtn|M@ZAud@3!QL7%;8@GQn|JB1`e&1b}e8HfYPKyAGzjWTR zc<)C3_=bjdyrTPWzdb*FdoZ2}+dt5z3bC13++K!>30 zqF()9Z#?AMg;uv^Ozi8zYKO}8H4T}9stUl&4?~T?NPdDp$tbb?4_gLv+JiJBwUSxN zR8(zpQsXbL4vxd>{MeR}oSrRXQqcYRp6~& z0E2zELD;=$)7a~V*lDwz%64lFBVIGw03vNKwpxp;T>tvL6DY#RPoZ(5x`OhIP@uKa znaotHnaPK$H=5>+)i?FAv3MQ_?f*2d{fJ0Uv*-%|^QiZB6K>~e7w#!DD3It3%fk&s z6ar*Gbqm7MWRH09OXzB-%0d-b9Vun=&83!LwXU{IWB#t$gZIDf{)0#&SxJ?Q`;1a5 zrsb;VYomHhuyT{r4^B_!q)firspc~h@|RnHsYY01y(K84%9@f>@P7?21z{xM6GdOZ z<@LF}UXRZ^E{XV&o&`>%_l`Tf0Z}Af7xR+x#6!5ZgwercAxe+4O0AdbfwUy97m9VI z1kJzyM~6E4wmJnHttJMTh$E;vKmj&?p>{Xhl(+-yyS)UqrxJ<#c&nTi&}CY^mym}J zJ%j*Av{27L#2DG-YUs&=o2(8{ht)&cD#b||b|JlRgQsHy^8qbM0mIOn53A_9(k?eE z8&X2rsAMShvitd9$dqMd2{D-3b{k#V`Rowdm5g}ry&|o-?s}W1M;n5_Vuk{mMt{*` zcXMscO4Vv9>&1KTeQ|B=N+LyL#8AkNqnhJY%#{6Pcw8b`aKhWe#crJ76?AQpSRj?hB0qxNXi0u7ep^(;Vow>o93diva)Vr0a^mmq+_WmaT+u|jcWMZq&Sm` z5#=pP=xe>`n;w1eplPm|gb8d?oQ3m}#}lYOAo5{rCBlY;l8qZ&Z=l;Ysi-AY{Dr@b zuL%;{KUbcPLnV%{qk_-4dhz1bHg+s?3YJh$pIpVvCkzAR-cTm6a}GKYKd&j!m6{Zd zr}Hz}Ev%wlE0D`fW6fCm!23gQlV2xW&$K)3Gx8_oGwa4WUFAFMijY3tH3VZQ$VX!! zpHh27LR~xH&MGhsSeOcn35eX>BX)a2NLZf9-uC=kqzLfWhrGI?w@YH2c8 z$d3PxXN_NN6Ipez0tqw@9((jAQ&ABt`elDi4v3nlD>D4CDEARu9DCa&+D?JGLHmjK z<+y%?Y!a+$B%DB=&@W52rVLVcFB>%JV8LOXV{?b_ug3>)Ug6LI?ra0_i;gBh?d@B! zRB1M){Bu1Jd_*-@i|OOD??3>u)%x~XzxS{h^qd7gsei%a`8luOkLFQAOQVIMAwgS7 z)%|*?h^^I=Dp_dwg4ZrO1>pqnNW z=;vwqTy$c+)uF1u?zYDd#In7IWPHt3+p8$&!|Iy71=uYZ*R_m_OfR)V*^m}SrM2(S5btV#ApzNkVJAk49 z=pkKf?9V1$twS@C^l-o*xNt7h{h+)3nN~U5{WC#8bT||bh2Haa>0!aO&+u5PWxZqK zfUuNFdIFt8hjcOYSV%nN@ifk5h2OZi*vXa+`a(SP6K|ghiFMae!&R<zu;&XW47} z?}V>m3^91nic|%S-c)S&7zOkn$9Sci0bfoNf{fHL5J?gh4ZM;X)QJPrn(sCf&~m)im@-eEJIB^H?*9hXH^>#qr$kkN=TY7)U@nddnQ|ju+l6HaB(?I3MUY8f7)0gym?C$2#8C)fIw!ZE1i^r9@>nHGGdUX5MF?L*U z8G4c%S;Ih<1-jlC*%(}2*?PPqu`p(&B)>AUiG7)E&Z(MRPuDSl8UWBX_OQl^=}2bV z=aw9tAkzOyVt}2cL7W0A`yl@kUHuCCw)F*m0a5{sjSZE+`Z_4lvl`!UE`w_cEqm|z zbFAx+U`-TQ-2;?&41p!(V~ay= ztmCD5Zz1H_S3Lj9h<8*$A4Xlth({kYU)OSt9|%i1R71#s`;~-GW|xpNJ5`L!#eMGc zm!m3Bm{q0lD`xA!c)Tc&%BWO0#Ok^D{`JpTw*}}W2dU1$E?Xi=&#GPE#>X7X3$sw4 zA^N8U+R{)QPR&JFeg(OW`wRNe{Ra=;e<oWBC4va3&|6)eN5@CmDeUi~&Y2)QTP*4|0mJp>;QC#(e&D zGX|q|hA0m&@vGk>gGxOyGd|0ZmFUp-&X|DZl+)+T)US9cK;WSf=Em2`&n6cywzJ)P=1>L?&8~g1Q~jzl zc0R9ykPKN`ndDQ(G}Y@(9d3F!JE1CakuW=t#$bGE*C^*7+5R-47F~@qhW6YaoGG~8 zR>0X;R-llZ8^+Vcm!OcRw7}rocZ8`$e23wPARL})F}Lx~DF|37_%e2a zw2KS_ZqWcNi@~3nEoyj6NU1S~A+i=r*@n@2xlzORa-nA)FuK1d{3onQ1^ZM9wG^a@ zgG2-mi57|?HZa8<^#;Z&=*8<<4+CrMLs{LsTd;Uy{;c?;qt=&uHci znIp-CQu4drKrj;eCBt~PM~}o(q4yyylo4*77rj~<0xmNj`^A_qJl>#0OlQs!#-@|` zg-+{$>}N|EVudb8=GdTh!e;g#5|4i#&j zDLe_d*02WXFQz?{NzD;xXbxdb0*3|{Q~+XjSQg`jSkxyY1|@aZ z*$!vUN%~?3FmMPe+bql-YZeKRKG z`XW#WxD4g@S7zOvQHMZs1Y(h738GV#>Rgll1ZSJ{w{J$kB2h~;3lN;6Tg|1(xvErH zKQecw`(iw0c>>J{+Ca+IxOsnlX1yS#KNcGmZ;swHNn+*P+>t_|Q@!a!g~f5pkG7SU zS{^I)=l7>Og~CkzW3EKFTtT4@*L}$E6M~EbNVdHzA>xD`2! z$NmVPuTtVATcfPLql2qKa~Y$21O^&HCgH$-ROj6;1xXT?ffW)Nt7g*9-Xla=uY+_( z^Z*+qk&rHvWTeeTwYwZRJRhQ;Sr>OC}0RQtnS16ABji$E7VzDyzl zw2#8F%g@e9Drh{JW|wOvjj#%64`HOck%W>;pQU1#{jTNiGQTX>oi>CIVAji!{kSSJ zkeXkL;Lyf!=t*Kl=o79b3p zYan9kb%}aB_UfcOd~YlkM=^>cUzdd^F=J)I&7=BrlxD%wBx!_vEbsvLJR%57mX%37 zdl5fx^`WE1x0bN&0uz7p`A5vED<}p-o-=$+zJmVebWg|ND?)A91R{fU7u|h_CbMQ) zLs=-S^@f*rSiHbXgqI;^m}3?St$;WLzl)|n5K|ASF+}-9X;u;?tNXGalFpQcBGnn2 zwDSt7cubYUVOfpEH#fu7VmgdEKU4v#RvT_Rg!F-rWzo1@Z2zbANxh#(0B%k)4&D?9 zxMOa&vwaF5?HmpIpHqtamFN6|)XBpM9!n~U@C0-WyuZJQ_XEc|^WFcO-cBiWZd&_4 zz z;OzKB_`o+NWOUcbWaFmY5nnP-Hxg*x7$nYwxvSn0jxUycbGLyOu#PDvG7Big~LOO?KxCQ zi^(>|9*O+1hOkK|eudpv*wBKt>F^RhX@-TwcuC*adwG2{k~+)j-{Fj24614WQpe4m zUT?W-cXM$O0nzp%@Zz_>8m6fOTb~!}I*)X_oqKNKo|ksKSIoA?eRrPGb+R{uSbT>e zXKdjBDI@eVI3GtkG#?=shj=+SqJdjMv^g=7Hg*@{9HHA>k2657!A}lcF}6%eM;V?A z^KkOpg{CZOS(C#Nb+#R zD*XD3z~IKB?9Z22inpnHZk|lQ|8@Q*o**>~2y5$yyB!k~_rZZ$-AFHizM zA*a9h0{#FMy{@?f{A*D}L^jYNt=gx2kq04vfk#!}&tt6rKJa^p4a0A#E<+5FJAaUP zlJ;BvV~SWRWrgLj+iVKr!RpOB6S5b(HzLn4 zy|&)TovtFR6&`rvfr8l|``{$p94(bbcf4SKOoE0nktb>EmONaki(G_OJuYfMGfj(ruf$vF>6srNRJ@`aB9PrlhTxR7cg zsi;NU1msj9i1a-GFpQXH_DyWUsg%d1m~VO$R*grmQiiz-@xE< z#bU0%=L`;z>wBBP)^X$+)*&(yxA3qA;Yj%l^h~?oz->q*w6R zAY}+3JW_#=q(p&X=o7Z}uWJ!N0VAn_S{rL{BqIch!D1aC_zwL_Sd|0!w{F|FKNL9Q zmqVVwjDF+POfXcb1?0t>E~!rxIvRUAb0!elzwfrz{gm`rtH}PD=^OQ#fF~sX$tCTH zGaakIo@o4zUAqc-Hx8YzIbwmfVvYKuOas>gp#2~avX9JM#FRi8V?qVm2oh*no-Lwi zoYX$0OA{s0FV0Neq|KlOt0enDFrx?#^zN4mZhtx~jMt2GQ8gLG%k1%jjJV*9lQZ6s zw^kunI~y(g@)f<1HoE`f4yOZO=hXKH!FfwLHdISDfGr0QbPNQZ9@sw2{=wpg^8`Ev zH)%--Z4UqS3CY8JJ6fz#FXlSylHCVudoW8u@~^V7e3fw>~5MxyNy|0*G6DNc( zWDrM5Q2n1{iyNk>s&zO15Vq?F<^27W1!b8UVFEKF^>hA}?#2gTyH<3h4AH0deW7dm zm?p-sl3)ajJ&4TyeQL19eL63H@Q`u%4=IP*vBW>;H&>t4D>(B91Y?C0!|ZSkY9t#M z;W53+xY)1&%!BdS;PP9?^iy#O+<&sF#)A;7>_ zcsg{Na;ob^+DRC|GWGKSHcJ35Ny-X6PFpgQey;*YmRN7! z^M5Hw5`drB<7W$6K`o?W4LDLQY@oK(;76j;mL>##FPu4Z0nuuNtUDLjz583?`P1E3l6>_^*Ng9-l{mhAJ=6 zd`x7o^%7pP6cZA@Jb!zq=UNq`&=Hiy;Hono9E&pn&x1c7g}r^*r-(-*KEL;nFCi+v z3BM<{-zTVfZIj#q7drIVS)#|KOZ2#!@C8ENcPN$;_lxq)ht7+#B0d;7?+Yp7rHDT* zp@*~2X8~0|aL5-wDvE|4o%1Q(buBMP!|K5AxRmy}E-6}DRbsLjI$dA%DYE$HNDEKC zr_5l`&892upM8E@kFLjW*_9&*#Zb`(taWm|Qfy+UXFI%T2UUCAL1z9Da&DvHz_qf; z^A1r$Tg_Es%-cDWIKwW`JDXZQFc$W=%!A@Z#;u5$&5d6x$CfU+d}(PM5p#9mH?KVw zO1u{!PSu7l@F?e8MD(9a70g}u$L0HveVi2NF<=({cnjt)F6w?304q?LX@a zxwB{tf41NW`2Q>Vx&4|ueEsU`gjWl%(ow4n2bt4FexM{_H=&XODiBgMF`MB=g%4&F zcM>%sN{Q@Z$j`u)BsuPXo#HF61tlqX z!8PMn{KEC@`X;*FuwXuuUD*HrBV-rH31Is!*kdC?+Yv>|zo?eHD9fR+c!eZ=vl9(w zq*Uy8MAWh;<5EtH!qGVr@BU>R*~}+zF6j#o3LUu!ee8$ighfrf_-r^_mQ-!snmJoc zSr5{_&-KIq2tM%6FBOW#uvQmfKhFw*e;2(FSPn>)r-0D))fy*581V#tQ<8oYX&`Z* zw*yLkGvMi%?=s$Hc2FHA+`}nZ^4uqe)8*@J0|@2;+!#)@fGtJvM`y?u@CCvix@k!`yP@~DyRGqho_>%1}oO>OwZ zf`K<#A55Hw#^h%DLeB?9*(BTwp%D&`PJ~ZL!K@=c109E5s-2Glls$gWNv9+qD9yVvR=|Mj$}k_GOVhsStHJaVabX3&LYwKXT0*ZD zKK|&VPlethXw)$PX{$?IW3@6q)j)vts{nfipUL0y3Xdm8S?&(iE!~8x6dO2hyS(^~S>f z3~KQ7%tCifIh6ecgxHjY$kJqJ47oDlkmb4BR>Cl>e7Y>kKTAnhrDu(GpGWnGo~lSs z-Ip^*CIw?OaVYzrV<~wd^vPfC4U3roN0x4;{Tp{)lQ=|ntNjVN`w1zVo>kle*fcH8 z3<+-tgaB9D0h<9>XCjT2?mH#j0M(g2K^;Mbfyq-^*=Km5&rHg6g?F-J;0IC)ogra$ z{QorurO8(DHI4x;z-t^sca0AMDSYfcP+Tts?*+}ZyGMR}u!A6B zgGa9T-b&FA+TopD9$LCELJrSZPqcM6mewP|dy%<-&M}n$TEaXbMY+yR6E_v>DDKIt z5h*%P?GAYJnE7Y`ePg0Q?vHWk%2Tc6)*Xb!#^GP2pefv-V{tw=pnUWi$n=6;vnWjM zZ!2h0k9;2nM(EupSg3^0~5zJXe9oZ7*x-QCa9JP$@hl5c?IunS_6T+}0 z5y|sWiTR^nxr#oPG-pfj=pJL;G*~tsa-eu79>V4*lSDk3ryX%@NkplrlAf};P=8?O zOX)OcX+lyZ0z=qeH_qjA>7&OjJ(oZCbA{COEr=!Sh2o+6-+KQcYJVM%=d?3gE{-nQ zMLsuv2>OMkLT)sfN~522;X-bL#iyqy&D{Jko`QAVvC^SZdODU%rE;<9H2yI86l%3Q zkSl#ZJLN$tSc}scX}BJIUGUL~MX|(ihnN~q=qGi;aszL@w61CG_bPm9$Ty{Qg%NDOxtnv9>gk;J zi|5YmKZr8e$-Gt$J{hQJsP^dofT!;KH~#d;p+^E9EhH>mjEvrdZ+)ENM{7V6(-R3D zPZz1Qf)yX&amh>sWk-*ooExG$$|4xlUwV*oPL0mVM^|l@;R_iDJ`aon+dHiHZDZ*V z;-8X_O5TM0_?MnNJJ)*D4S!_Ve==B}tOPIl#!wni>3-Y<7@eI!^$+mpMS;QZ4CYBQ zA%!fQ?RirW-2MRUlY~wKgNw_&Q1*=-r7|r>2IPPLmY8*GQO|vuD@;4yjv$QXYX? zD5pmIAH1&djN9X#^0@r&YypLS$jpBht)fS!%AdgE@9_u-{jBz*f~0?Mz^%E&!@A4w zUGw-|@AOHwFX&G}FX0eSoR@V6CC7u7fV^qesKE+%4i0ZpV+{~5e3S4&gPx50Pbc3! z*+q@Xz@CJj8OE=pakkr?@dTcne2?)oMnZh$)IkY07{7R(8}W=aq zYRhWvFhy7452u;1+Q0PBRKeQd{&~7K#nxeAY~O1UyMgg6LVl7rj{2}r=mRyV12fbz z(XB*f$s*ma3Py*9HaJ5~xb69+!RXCShbgX(?{5{}V*|SkMP2}j2uB*zxOiYdYYud} z9lYyQa6|@{&`N~HWqCZ5$RzYgL{DVejumIKgzkNJK!Fw%v_w z5(5ij;F5hoaTSZRv&(IVX=krBx|W3d&et04*ANO2L8z6m%i~yIPE17F&7m~+n2xd# z3bw57$m&(hIn%nh8;4=TVxG~p$$p)KhZVawDxRQS@XZ~Z#Mo{_`mMR_q=8w))es+iTu&HZ8ARxs;z5q~Tf?g5uX6c`<&WVD zUWG2CaXpB|>`BX^)W;?>FPJrf8NoEt?ZTp3i<5l%NQ3~Z$8+lSx#x7I`}|NaGSG{A zq`os2_(peQDxG2&)sgFS7KgA|H>2s5K?xF1k|-UTt3g|GptClXC*7|>u5rz6XcY@; z3t^o0x_xyB=ey1K+S3)8z7{qT0Uit5;Fhd`j0ePiNjIe3zDOOm0TH9Za$-+h z2?Rhz6N(BlqK9;^F-LI`Rs*i71Luz3ch=F_TFjba7C-NAL!WW@y`B~;I)u`|!ia69gGV^BO)u%`* zxqYED)+iVP4+fP2v#JHE0)WUP6x2HEkw5}2@uiR}7OEtTh~ZKsMLs3Eyt(U(=X{DW zS$D^zcsfxC9Ct;a^ZDBVz(;#1&|OM(f9HKrMk0nMAfJ@d{)JZhfsFFl(^L44UlxDo zOj=?&xnktlnKOLOU4_4ia=CL@n^eP~HmMf|1NKGCfy^8p_f^OMuJ-B%!EM$vgTkts z&}#o~B*c4e&4x3hsn|M35qklRa~MBwR^mdCr3c6J$aJcC7=lthB{N?uc|1UMqRz4kdR9G6b)Y$e&;+B&lnmlXAC+R_rnGD-6>5 zqfm;8eeG2KdZ%-ZB!WH`s9?A{5kx>owt6e!t=;0QtTpD_!+y%mLV-M!)c4Bqdm`U7 z4qp{(>VVaTJ!)P6t_94rrVd4gW&sn6qRgf3nv5D)3x6r-iJ6dl1^ zy+lV;0zp>8|KF@dTwww6fn#o!&zRr35dAS(22hb_UbBpsWW^OdQnXS(d66a;7R9;r z(X?An%dbDGTCF4Qg#3o{>BSprnEv+K-9*YAVQEMh3zjB)XeC;rYlLCjS`|isiV7VZ zTUn1jemu`Gw2vqK45AR58v7nnZAo=z-$j&|{=)aU9^&wh_TFvxf%>&MUcc?GV>soQ z3ESWBh=bUINxO6GzQObJJjQKTVf_PX7shX$_F?;X=!)HcA_0h+9L#Y14Bt7J&rCkz zVFY&zKP+dM^O3s7*n2%$KTKTP*Pv9Z%D|ovJwp>QW;zDy8eNYrh9{~U=#SGROK6>{ zCpUmSVp3gs|3f;E>fJb&!1v&jrwULL^6bdSIrJQ*tPF%pC{p3Ts8O0Q6U=0Skc=+X zNuJfJ$Dm%3{62ybaC}5ofQmLdfMLU@tmFo%Fsz5-Q5}4#a(` zU-OX7>{hg}Aa@Pfqsn5y-8Q0n{pD3CayCNgRC<@|)wW{K}e9SYx9OpAod zMnArE>ArBxxG$_mf)72E3QFPEze!SJlKa91Ij%@;ZvY3WFg!*})d#Iq@#Y+E0sQE= z4>bOgJ^GV`mgkI~Q%@OEKN1^;1}$cyp9s01_heq<&=-eB`^%J8(_sUC)gk|9K1!-p zzAF4Z{OFWHbr_zo(7^t{k(+K{b}t(nV@%j&wBvRh<5+-k4n&RsA_xeAc7T8)D#!{RD2R$u z5Jm6=Y`sts@nYWhf#Lso-fz;T$HwsQuUnHe`R4mR@AE$I^FH@Owe;X1!@5IsP!z+o z5>eCk*^7u*lClOVKqB0q#Tli3q3mhUEzvk1y&!JmYuO`uPQD+~9Y+j)uiA5{uUn;Xs{? zaG|WYWEVI=2DN@mC|B)q>=c)ei#D^=z>$u%9#`9NY^~eXaLQKU4hGyOfh0oScR~pr z5l4461hS1vOfRyUq4!izyIHr?3geX|)NC&B2bVb)npeA9xF9XYZ8Kzkr@Yg#b20 z*ya(y#}7e2aqJSRGDE&5!bpXF$nR`6{1nB&X%A}Z8$^cZUMUCszoOQpQFeiHn5IZ* zl4=}b6)N+JNkU;K86t`VO23|yWRj!+<@2!EhXXKk*kogq3Q$tsJvMplG(;0F%%+m9 zMvYqOw2~cd5YUKJjNi@1MSB?&>uNUd1rwAsYI1te)r&UK{-6YEROMKl8v${7i}2hN z0NcZUc|9~7Y@=c3#Ea3oSm3>8bG+W{i9Hhkcx}e|udX?KFS9OljQyD`w4wj;x?j5+ z?w$XSCBG|^nZ4fj+^5!i!(L|oU#vGN(Eo#VPVWA%mKd|GtnXiDtndF~e^)n3{~xdO z302M2QR(OZW5rLaYQH`>ZL6ETZsTQY?f;j1y(+Tse?SA5VBWQ zC2bQ!^j(~z6dUD*v|rXRa+OF**f)@MX_|!(F^Y5g(ZPxCGZUtZHA;se=re#6rVaES za7cPzSo@p1p%{E3~2f-1EnWpZ20T5Z(N#)vDifU=2)NCo@2j*)3FXoGY82*Sq7-3P~qP;P{RCTM)pX@^avmrgsj9(pYja-m;DZ5t7^6C<1(tfTO5 z*>`C5B8G(u0>FI>VPfInq|fskjSaUXUxECXk$(3pZolkCj-)P|&PWDjk7Vo_&f6kj0Ip=lg5ui4l% zY}lz%qsa;&Nm-Fq3+S_((l#S%lj?7nESgB#Ho>(jm{}`^OR{b0idF1|V-VTk@Xix} z+Z7Pm`qtpFk)oq8Fa98SSxr)0wEXu#hgF2eSQTu%E;a(r~0 zox}FPGz_n@oR*)<7U(EWC1O&>ghGiH-Xgi*>7q{rb1B&%@n5-6E<$o;6Diw1b5$yK zx9^tMpxn?pyY25f!G(eos#Ic1zv`H&4J*y(3i>l zJe!bB&;=FTnMukzI@zZI@fc|^C|D1NQY~uvyll_%wk9vg+f%p3G#-7PC_G$@MC(SH zdK(*im(oLMMc|Mm3$tLjZvHyQG@9>kNt>QXtELmZ`|HMPY#z3y8s=l6X)fa+qsPHz zo50umu>**CgSx5M1srFHN9-Sf!DaVG$Lo_x9yIy|mo#_tKdZH_rLpkyC#Xq9!a_!}FmF$>F z0~6vwvQ#w!Co8O&WJp)!V6sEXh&dYO4xgh5O)w#2?6zPkzN~S6W6MHM>w>Z$q)Aw&R3~R3LN``GD)=Ou&aCVEGkn9_Re( zYl97_z?jMQ*P`|ONr8}hflP+^3J(?{zfznpVJyYiA}-SnA4B5x?r_-C z658F~=S@faewIgIB>tfZM^zs*I=TIOk;Dt{R>qG42mp=Vgk`z`j@ypRS}HZybzTfrs2TzkV?q&36dO(< z5F{t9v|T%2OXkNi8B=qvB2$n|lZFLjIrec)$ha)29)NM$XcX^9yfeh|Tt^z3yD9L3 zy+I*|<*4~6yzFqIA?KwZl_lHuKzhj+`q~--Np~ZQJ6Z;OgLUq(t2XMsU_*GrxN+9( z$~VjpzA2bID0$Ekv4src&}%h$#JIx!oKH8$BP|2|fk>>*A4`VAVFX)^;C=FGjW1X* zHa4<$DnFfMPO`a^t+?WaPJ=eVX($Jsekm`V0*foJtDn($f@&^NW*QsL=ZDEWj1bQ} z+m+9kw$m0Ze^>(%EuYVaVaGA44aRG-9R5QjCKgUt_uT?I_WoZEg?x5*~kjFdC?j-E(16uZ59MEr3SPn~+x?JmDr_7&`5Lz9+lct3HJ>oi=5IMKmKsM{Tw2z-Z- zVr;o(nx z4`k`PP9u+vhJ%X&?T(&?_K4-sQ8zQbWk)@lp5SXc=_>;rwkzfpXDk?ug^cV)ykZod z0mQaUHl83pM=ql3=n6`_Yb9RYUl*=pciDABZ+w!rN!ec<@M&3^7%SMNNDFp!2krQV z;FGfWiquH%x8<^_F(If;jY=V6E#W?5D|1EIbO_K`W#spau?+4Qm>iu3!F#2N^7tFH z94|<~XG1_vhyYuYF>=1G!vx{Kr?{SW5LpjL`)rN`kpQ`rqExgRG-LmwwjDgIEHBf` z+u{p5!YmBV_6jxeD->>Y_AT#qu~_TkWVmBty!0ZI9Y20DhU_+SyW}a1w>)P%E|ltH z(e9z~K%U6FAY<0Xdyle(6^%k}l?y`ps)i-S9 zX1EM90}j73GV)4+aBXbxyaqhd-osR7h-wWWvUh5Fxk*_11N}AtDT+S>3Ml%6bUAzM zAsYbz=BR73WjLO_i@{~KJ%9fBG~dix!UF(WR@!635-z;*${1R$lNY<K|qQfhAx`$)aVpjt*$nMlA3Dg0Z1wj-YX%_BT-)1=uTe{@v9%U`ue007q zk(&SRE|t-Zhp4VZla){O<$F5VNJixj?^&{0XY~Q6F6ljNp{2T#O{%qb)%?_@_)Bm$u=EQG zPaKu^-gx6(N#vj)-X`JZ>)eYs%^wB6#CY#c@S$@p0*!YHx6Oa_t*7}p6$aCfmAA6y`_T*8B#ch zs>Vr~IvI3U+Pr8|r?5L^N8v`p;8+rxHpxQO00@X`BgW2vObT;4-iykI^SXR>^>G|4 zv9UdD+yG=hjIe?YSkXQlM**F$7uC<55Zz~hSsI6f*XE~HI7!WkmARmrhM6fKPJuaO zAIPysE&Jpq$F*@p@sYE!WYz`T0jjAveXv%kIp9H1#SBaZv1EJ3Vi6#!zRuUd{F8{f z8D}trjOn-0G;28J@2L*ldv z11ghrHIoCgTguCnPRxha9=o6T1WP!R$t+cagM*#8X%Ue|=7;_Oc8w1`7U)T5lRnoA zrQ(JSD1MKqRN@Huk6(D9!6xv(hAImhcqu|bn|LqkAZ|zdQ4JL6IVp@91%grE4lp1G z8-g!5b4y1EZ;}Ywk1o3gK%|!sv{B3@o)INWf-Heb1DV{mUGi+&&~p;21G70?8? z%l|$DIC-h*2LO(nIlyn7g|%w~D}I-A#!HznTb22IAnX4!E){%i6#q4@`{|&3LpUBmUfzD;*T7D6{UUpDFZf;c zU*Z=z^+wbtBjxMi`LAT!?oM>$|Gd{jcvrV=2B*s_cz+Rc)&HKx`z=hMTpA$vhVaj# zmDxae+pnc?o4FecJ!WNiBy_GX8+kEM_C&5G{#=fvGa513KVe+T&W!DfjJVvbtThnBS5RpiPq9GkCX|RXXD(_jQ+z~dig2bTW$gELssA9a(XwYD-cbjpQ`h_o$W6Pm&5HGVe>Yl!tc|gsMO-Lv?Y-_@9;h)-P&c# z)OKE`2d4n^B&yB{R*xZII7|&hmCmK@v&s~O!MnX=K!ch>u>{EL2Y{`xfx<9givAv+ z(P&^1eYy1ARK&NiEuDy>B_f9McE-I*Io)7Dowac)*}1v&{D{-- zaEX`ym}_^s&TjQOED!8wVYhqKiD}7sQVDHsu#`#AoYX%qhyD(zK^jeLPA~x+&{kIa zY_uYPt%}*h;+)M^18F03UK#92s21G~VLE0m!{}KNp*?j|z-b4%NNW3UwCMwmA-Fg_ zP?;+sVMI6P+#*;vB9i5eLK_X!YCyL^(V&?~H`;7D~Vs3RRNAsiU{JF#a*_j8F#V+d@s z_p}YyMiUwF#wck&)@J`ff1NdX|NhQw@9Xhfisi#vnDg56k!o~I(rp%cCq;nLSyZw4;Q)o-#~3l~ z92?mG(kZfln3|!mdnCMp7Xsd77)NL6Ojhj3{y59#lYNaktrP+c39mO{%A%v9WhRq{ zJC*bWd;cC%-o0dnET`Yw&t!WsuZ#!In7(IRV!IV98Pv9map7PVRbSCdD2x2%q!xH= zjzpwVa%cHXuk%GpmNoCah)QRuX5kpyO(oBEkB|dxgk4Uq!-vsb*{NQk_g@*O_fa|q z)?&Qpbxb(C0H0{6V!yHLegbE-Hsr@66_&I#RDvc8T)53-(%Rl`blw;m z8iu&>i{O&Bkk6qqUcbZTb~`*7p3YQEyhB5=0GW1&J@H6wR9kK*I=fo6LATQxeZL7c zF8gW7zaB)cBXwjkt2hH93bsZf1hv51U%*PYvEftJtcmRpd=#|(TFsg@-`P8y#s*+= zGM$rk4Qf(`-dc=n1BJ3lP=f+Osue@~uRsGDfT1HWngowPZQ27<1LU;fY`&0(Ne4Vg z8G52TPl`*hdo{J#Iz2F%y1MR|~NVgwAN424RX%rUsagZ#I#2-4xdpW%s$ip7c*;^DEN0kx4u=uFLk94_~ih8&`#2R6Y)FP-vKu-q6W#H8z!;$ytp`ky$skLG0Heh26 zIpqc$Q6A2w4{5E>Z^IDN#wc4;b2P<%?6)ckp!#B%Hd*2glg^C{7w&Xm95XNQ3&>iC zUDswbWBw1@WDtyU9?cFtR~Zm={MwkY(@?*cDB`9u)466vfpJzJidCt$w9l?@1qU)b z=y-&{3%>xwvFJ*+kep&+gm~oo@CcDTP1Ov@G-j~TxwdoE#)jt^kV=}d2$!*dgujcU zFcrMQBFtrdJr4`n0EGcwFeIEcXnJ$LofQq_jp8;2d7Njj5iG@>aNP)m{yN;eUC2N< zz^!)fb~oa_jrfqab1M+`+U+ci&Dx$bMar*>G;^%y`5XwrK>}81Xb~FmS9Tv{AUx3E4IawPbY2Y($K}~o&f6wex zvrQ@QBWIX79N2X*P`3>fnTYdRo0xCS9)Xaf;aBVEzL@7`j6YO}Gar~*a3r&5r~t1a z4T{g47NVzV4`E*RJZ&%AoD^;LDRIx)yR?A(m+3on2*=aZeQi%iD`sS@X_NjHGpX{z z)3nI`RAe>SkL8^?=C~7UnH`4FX^eJa)dFD}dHW2cGnw-J$ZiGEADQY4zsufhyAVi(GlFHemx>vZ2JnzEWqWs_5&Q(s9^!44 zF{z6ydQy<79_QB_quP!vIwI_m$)_EKuZe|+hsUOmZuk)mUo@xEcxG4i_*lXKK>!Q> z9=i@Q!C~wDRKuapM8$!Z+b%3{Rr?r(iGwC9w?CV22%h}K_@>gY8iMmi;&)??HHE@G zCkGq;8s7xE9EtzXtXuh>($xZ$7OTwsp zP`@c&`sfkcFU>rQzp~3R9iu2>c6i5+&rl&Z*O90wq)_fd~kCf>#co>~5?JZ5Nw2&=?ik?f?Z$J61v0SYsHE zNw6X6rUb(rMkjZ;nFy%c5PJdg%!P6cmd?Tnt~}&_zXkRI+NU4D0{+TN}@XB z6pct}%2YuJd;s1dP(GUMU<8U0phMG%Q*;-oeEWUaJ-`%Z7=a80FE~wP>b}BwBOyP% z&iM&#bd8>|Ol!RqXV?-=95oV>@33KSX~{=}?}Egzx=AkA+tvf+R>=X*cweQl;H85EwV zrpeBh3~L%1D6u%6b+$W@8;&p?e+OniQ!*TGXn>2UsosU)pQImzI31>#Z7-p9g==}P z(Me1-f^3CTh0(Pb8)Ibnl{p}|Sds{9D7ZA92X$t%8)krzgg2gqSK6C}T@aCo&Zzz@ zou#xV_dx^5qL?%>&p`vsQ&oC)CMhg8*5aN-5B^UZlVn4p2jE~|vSHQGa}qggsTzC^ zdjHkT@qb)(u3~TPjqa`a=uBeD4$d{>$cp;<<@0?52q2wt%x+eT7OBo<$>g%~n%m>q zJc%TTeV@08X@+TbB{I(Er2c1X2L^oem)F;?m}3K+Orv(v_!WAy`IEiAl(V|GJwCS# z0r7jrS@Succ$I1?f5o53_)Yta4Ex=DCsiM9<+QTpU0@xrP zS1P|LTTDhgo@k_@y)U_7K>@$X=7`rF4aeG`XHJ8U=y;x~PeHqR`lbbpB#$bi?oz#$ zDYzhbS3^BAoFO2wg$c^e)`?vV6+aMsWrNo~2{1@}z`$87qP$!|+%|OAH0Z9Y2E0NC z6URE&k9B;EQZTUk8fTK!JrX{DWM~@Bisa)1N8)^kC)opS;QOPr3s>;I1lo^r79K%7N+v%%ynX3mj*)Qp zp-Wm?mK=J7{WQMx&Cb&O>~QDSD~@;Iy72haXLO0pFF@yXUWO1AWUN`K4yd1yy~uV2 z!v*DOEJPTa2@_k2Xn13+gA0wMGN7-GJy)OFvZ8;Jx2tars5-rPsW0+c4Mmi?Rvxhu zfv4l-@qVaLuH3R>fpb-6!J5VC)WQDl71{2UE4z_E(1N^iq8qX&k0W2V00|bMsO9?L z#(GAwI#t0i!W$M0m3~khieHZryS$tFS8Peu2dwt_kZX1U;rR^8g|AtVS>^0qzGbCs z3`U#VmL?GUS3O2MW?Pdp=0!9JrEs(9BT@M;oRg435nM>)4M)10ujjMI%wUqPX13Cd z`&f8IH#C>&V`pfd+s*K1j+B%9x^pyTxAro}0!k|l%{4`uxjjdF3^T_$@i;X*8w0t$ zj%Uvgt9d=2dt5U;1QUA~*~6FTNHn$Yb&Mj6JlqcrXckVfjuW8iIi}c}N3cYhR&2fe z4XmR*-oDrIGK{B=lE+H zcJFgUOO<>TudD|b>N2|RT)Tw0cyzC(&KmjFsvW9TYCg=Jd*(284%7y#_KbEnrSctf z+B!*ww0Sty`5B~2oO9AQj={?IwF&%<0O<>uJq?=Q$@U9c*+5$ydqCQ8vePZJ#Mdf& z9yx4#ffslr`{!Or}xFb-b!Azn5_*_k7SEeo_~v zxJrtKUxCV_sAt%RXa+d-?b8G&SoPVJu0$H9$s!1?W9n#uz4W2G;vFm%mkSc{Zg-+H zyM6l6*1hhelWsWaBuV)V$yjSFgUYk6p+agP#hSD6nCM!OElxk|GIae7Cl!%8;||1P zfg~#3W}%5x=qZNt4{@ofg(e7r9R1}JkP2P)Q?*n*MU~0FVz|wjTsa%50qXvPS-PuyOebp{(g_2xx^aI1&ziHl*%xB?N;s0AV;+Rp$JlG& zT~Wj;95Dw)A{o#y4~Q0N#8Z%+uF5!$ipZvRKz|gWAs`N_w+Qn%9?{n#j7lt1Ch{77 zK^2n`iB}!K}+u z#f+q{bM1zdaBI;dWs}fuk&+@{xvij(DUNa;jS@z5?c#VlXj$%nXtwjS3~kvsXh+ou zxGHAtN`r%$jOu@nkZ`!d&o1EqQ_QG%neVyh{Z|;O$SNc&gzcJQ6meW7jDfDf7)dxc zVyEHh)n%TkP%E47slB#B0^MdEu&+RV1-*rAJINud>HTss7SG5~`uNNIP z;PLy*Wu6E8F4SiA;lcFuwD~o`)MT_Q$hcF|AplYuaX>~g#L)sv<-TCM?%Ha|B6W^n zlElUCZnkYEjQQ*oe9RRKHJcM9yH7aFvOD?wW>Z&%CzvqFIRy~Y0;h`BjiBr$i#l*n zzIQu$A!bo7-FxPFk|U*l_Bd6i$sFTNo+M^ibB_H8`p8v?g@^sXqJCUJFr}X&iY*7- zkW>LvsG8lg=x4oa`#S|^M-Ux%dn+tBjoHk8AXGPe{-D3)TtK#E4l{JQM=s}WS?3_Sq|U#xK+5^ zMT5*9e+r)!Fz8H~rsJ)_yx)M1mzz6YV6bn06uAR25}MK-iA*{3G>ps(K7;IO>T zK+t9R>O3x21I*kuE`Nf!9nvXGf0a3KN$Xb5C7)(jg>M2D)44>^BGL$^TULh}8s?Bi z7gU>8VdkucCk21#-sorsYkvd4Rg0ke2j!Fux^Wh?HFOqL(Ev%!`%3}vR^%q_#mLLV zh6KZV-L-#v!%&AGNu@AZJKCMuIF-cQ$I4&RFqHDca_w=|Cjh?Lr#~s{$@|);aDq;S zBG0)`Kh|T%MUz2zj@{ZtA=b9B7}8(WxNl(3?i+@xJ-bg>CU@=u(?KGb%4-)iHjAml zsLTo5QZUjOzmsja0eft-BM7eRUAr*t-MBD6)Y-GBlOkLw1S+|*yJexbYjGADOLy4t z$^|QqSRt3RrWa>X)gF+f8XfuWX1c)cM?!wi%K=FxV{LlI#0rvAtz4TRPn2ylqJtS7 zhR|A_6yO=ZmGrXe_o*Zhs~Or&5m5nV9!tB~aA`MMj+XzSuy^I#;yjZAI(N2!AnTI};Fp|*&5WkD z9D(p~K(j|TEL@J(2HDOvhj(_?&1?3!FUWQQ_SIQbFZq4;7rtaHn}1uT{osyD_k)J6 z`sS!NsxIW+T>z9FM=cVvBTcDf*J8qUB}Sio@g8V{XQSPmVsDTX$`|0O%;FOasCbwK6nw)NzsQP^Ya45lkN~ie zOqJ&Orf$2Peq*t*vH1RCBX@IeUz7Any)8T1C+Edwq@SDDE) z7B@aRqj8Myd2dJ9BETC)y(kq79loR4N;L_mn`W`@$bmW9$Uw=MKA%{5Whw}V9z1C; zNiah80L6iUJ7E&k5B7B?Q!|NvB^=G+rs3Y@+hXyPmvYms){AnWy5*jkGfCQrS8f$b zIMUrK2M1SLt|u`wW!0rnHhOe#Gl5)bY;hGDTlHVkSO+XFFt*qe-e2mft!q5-!t&(y zm#`Y#1Iz5`nKQwT;dL1P1m9`OWD5oQ1FRg*Yg`|u*(ZW3$V8#x4Zu3!ADy%2FFXGd z>F6d{6$J(;=(45e~SB?tQ} zX#Tmzqou^P{;)$US?`g`8TYvG1$UK=jeL}i&`tAzn$i-d3gc50YFJceg49tIttS}K ztfD*v`kVey4FhxLjzTN|G*f^VDegA&gQk`)1UgtlgY;#oJxA?970LALj}EDOO5dB2Cr|#j?=Prkuk^;!o-{7+@c@@NXArM-yEty zGf)dKsgWCaRt__yC}E0ct}Mx(OeWmcmjSDDAQoDCGA=8rU47@6+744)SCQ)6M}@@$ zUYBy$x)5{cbu>DCsLvjzE9s1zym*SwQ19U0noYnh0I{PL!DC>Ssp2vQr*?!DmBp~3 zTMGZ&zPU}_EyF1Mf|fNXY~-}LO?%Gmb9mjs7H>l!k9^QP0XznVGu?zS7Knw3Pktci zVRp6gY^xH|<3h}B2FC-fNPcfyb&`itee^{pc9RrqQ(yrlJwP9bj-@y*%q7sDwwXPZ zy+y|E!dw{%$c)+#9%Of)U)xdaSW6Qb?l`7%cr0vB)#~pSmT^0pdfV2nO@sp-#EF|@pL$U^7TPTO^ zcLbtsY!5s?yZ9~l1f$<#HOSU2qR0tVUEaBqf($cxpUO7YW)YHgI`%A8qEE2X&nJFP ze6TVeNjj;?5l!r&K{8U>TQ#DLfL%K2$wv>*DGhlQ>a-$1u&5KNFmj97v0Ht3`*t&; zEe01)=X^_{v^)5P4vV~d5cDwKkI>`uL!eXYw`k%-Q-}tQBEu1}d3b@RsBY#62cxoH z6p{+tDgul9bL^#~c65XX63vn3(zkaU)iDrV2#w%`x+g-c)~V8)(n|HI;ooff&7z}r zr0BYE;%z&QLIU4FA`z*pdpyKed+3i(pa9J6iR}jB93h9e%|NW@?L$MQf?Ibei zP16d}_IZp>cjcVT$uvxw0^erbZO#N=r~!Ms8AJUf+!6S zSvttGc{`YQxBX<{+R7Rcj8vbF^3tauv^mc#I4A4S%?V!?P>oH(_|)FPGayZYI0taF zo;Lod216LIA$NN+qjlQo#9vHBs=dH05GDDwS+KO*D4h;67zV2upM|O|WvtEso0^VR z=zO$XXNI~^gHy~xTv?<Qb_Ka1=7YjK|koVIk5TLy#YTqF=6sH zruL29w`6G*UCsiovU5Td3tMrzPC7PW3d!wd_n6$45xe(WxeJ_iYvR_uZy_xAV3~~U zrPzkciTBucq%qjx1S*CE!Ra)r#6XUq*naRB;xf2RuTlaC=3rj`oyLu zmg}JE)jExnm1qewwdDY+deVwJA@*M*qrkM*^0Cky$383U%x;*t4>9c>LVOf$X{g$c z*@VzRsZZbFJwkLyhq#y3%s${NW7@EL;hCC*J_k+-_Bm?`&xdx^T{L4Fx76KIS3Q+U zS+W3Kw+WRbs5eR))^Wr3;IT62D79R+Wr;c^rZRJg1pCt{k-0F}!Ja+DVJ+1zd5CnP z8<~{XSPqBN;kd9|?4;+=p5HqI+_&Zs>C#Ir$01TKlW1#}ri+jYUIW7!{!dWR4rd^? z)T#KS%t-ZJ$WpKXHSkgI$mn@>=!rWWOioha6m(PDhD0(0DB_q&0yYJb0P%Vo!naQW zZdn|Vzgh+vtAd>RK(ZqfZ~ncrRy@$z*wPe;xtj_$%<0Lg2xjKO()J{>c0&D#%M}dA z^GcWdo^(-5Tgi9F^ zC;Lqn#ffn6B0Ya(3u=m&s7>iuCR;>JC3C(SIzfKV>)zk8<%&7(&qffTv$p}rH~O0C zHD!1HtD)daA43g&QvV?XS2evb!MIcl>F4qIk|p>p_oBAR9^K7Y=JV$LCGi($wEfGX z@KKq^Ot2A9f*aVX$N5ZoYY2El(hk}R;nA*l6zv5H2X#1Sd%Mel$vBZ$0y5gw_jIXl z)pYi%UKBmbm?}o^ZfZj9Bi-6`+@iiCm$|xYk6Ai@QzTPpIr!if{IYd@`T3~=DkC+b z*b&u7YDMXzd~tj0yn*gR7v$E@PiOM$Tj^?Se*k43_S8`SFXRPc?d;B;{cKMO)lVR= z!+$h{A6&=nYq3TqYZZ!)-QFF`J^3|=TL?ffhDZ$?*brrRM$k=^ZZvGl#O5d1kSVX4 zG55_Ptpdd;QCz0X=SFdVvR);T{Xn&#kvR`nG^`6STahpa#T8|mq8L-R-RzHwP)J1m zclhhMr!kvt^zeHB9e30|@<{C+Xb9&!=Nw;Moo^j1nCpCXnc)nIuvYl#C|iX%$#$|? zrJxQ~?oBKNYA3Zhq+!#bjb_#cy$G$XOeu@j4z@7p8y@xrbxWu()S?^UFR@>q+^5{! zbC!p@z2*_D*nR3e3_dRyi3IcY^?5u$hF#sH^qurj*;h2@7RX5ROn$uqz_f0!OdTyh zZ2&-J;{g(Eun@Y+Bou-4$HEMHUYGK98UeJIK`rH-LQ zSJ^yei@-S__7jSJu$p+pZ#hH8s@KyHX`R<@ta?imt3Q(%-);8O(xqWl7v#pMr(1o- zqW5CrfJYMJ8QN|5ojE>8)v6j>SH^~sCSn43sG`~c>y5^o+fOxE2K|CB zgViCS0%J#^XoS;jteDRiQ3ffqo8m9g{}4Z5a`_^K>%%#S@?bD1;?Sh#MaVnB1$Y+) zlCZaoU59kVHc%ub22^HjYNPrnbOUu<+rrVD&AC{A!WZ^cY^Er}nMk*+PTm-gFI@^O zUYhDjBxKoIy2KUIzWS~m#gmsVjnU^-x@pqbvTIU6<*X6YIGc><3nMO)S*eWdJVrxaT|=bSqjp zu|nZ~A2*nRZ)OyUA7qsn+j*Tq!;&QoH35uu31a`&^J(r&@LT4CMhDsjT!+c?pRzHG zB(uqzLy<-iE=(93o4&VX$?cUP$ZSv;FW>K9l_B6n%9M8RDPRETSil_lBq&Fk^i)JO zgldtD7g>P>h%myt+G-i%snTr<^hI^Q(`|JT0WSr(+VyNvS87=cyS%AAf!fyZ?^=XK zZ&{YA4e>;KdwzTzT?sRb60CJuTWd3Kk9$L_7iHR(wX&7XJmihHmmV7(8yh7MOrpdL zIN*2OZ%9Iv+VJ||jG*S}en7-}x88G488^RW_fNwOA}t1>Aw_coRE7_>IM~(u5zg1v zgySgMzpx`@g3d)Uq3C=EExYH&^=H5zQx)N0b{ zR7C+o>ABqe_Vz7pTkt~vlc_Fa*^ zl4y}6A-bI*0Jqs}?!xnP)k=Dj8e3F~U>*1v*XUxKn* zjSUng$Tnp3p#FiWIsz-Xu{e{90;UbB1er@C`u~b~SIql#97*u=!j?n4P^92o(*?UU zQ5-7Z!z;dJ$SoU|>^b@<5TlYHrHPTD-Q_(>HMr|cTo6PAoQ&X+ZDCRg=mcEJTD3_Y z!Kl>4jYMhckW3EnFmkl&+z`h7@eSKIXp3u?TRZZ8&r_)I=4mVLafQ5asSd~dI}gt1 z5B?j=NvGTA4_uvZqVPes&J(bE303ymF06gh)B#UGvnRD94TTvJGXUui_i3Cgu(1QM z{t$&c<852tBTF&*WQ6+zZF`&^z!LWZD);&o>|VaE@f?(9D7FzuPkH>A(J|)JA(w$@ zr$0vUeSO6V3_mBVL+PDNCg3T3mcVPuEN0jn;H}^T(`()$SDg(ccodxn^#D0qaNeQM z1=J0cYlA{)3W0}ny%89$S8`hc4EJtECEK2(mmt;1YFq!zly+xzsjSsR%H2>!_bX(q zg@^SnIrRV(!QH&1=kOe>QXlW2GP%o)_IToy0!TQd*t}ifi#=pTfe{=3BG9@_{54$V zXy`lj559fWFs6tN*dr2{2P7VyPvWOlK#y(eTGJJ+qdzM@?2jh7@B z`or{5i`3yL;<1|s!%tK$rRUN_I2{k*%FOb{`Pq%jnjw~e&L?5apkiDec&q{`FbBj& zLBQrm8PVum5VO0g2gU0u=(8r8*>@7lbj}2wonQ5}(lGr|J&_M1Y`L>FftH`MCSmv# z>>EU@m{Lv$Y((3SfpmZ-1g-)_Vr$hHC^1NXjSdZskGqp>clAf5e{U`Qo8HKW!^2dS zU}_Ai_*{b%E|8`jAGVP-HKNGTIINgVB9>vK`kr__Kw~kyTl#nS6Qzl~{c+XMrH9Mo z(Yo0FT#B{mB)&L%U7#q!n}vfLQbixqpkYR(e__g#gvxf8efz4%xN_Y2aIh~P3FpaL zPQOUKngjF6WIPyxG+!5W{OJ`4(0jlajWNl#?UUSTdxpA*OId(}ipmlUGl_>>Zcy(K zI0e93P+S2#0bDAscC$<*Tm_r`a=9b$unkxlxNtleU_JLc{#1RbO&-aE8-k?gW%n3G z&(QLJi?a~PKLgSI!&w*^Mf-uY5{z(EpLb52!M|nxO;HZE8ahxBQPt&Ox>^qD$lwfY z-GCO4SEImw9gdVHcDDqm=0bTv2{u)}vWl>9`JWv3m!1opir}Up;Ht*Bk(C#qgfc%*C9+y8tB$VS*D3qyXs*X29~`M~yQ;u3`nxhdhU_Vr-QS`SNOZ za18M#e1Ga^Ha~!`B{QU(G#t!hRU83FcNI^gIW40;ux36!PV|;3Ox}XY(laP3{NfLXf_hggd^Fk@8r^Rt1CPnShDA5`)5gu z?x0*Yo7D{v?D$2YgJ~O)>aqy<1GL@8)yOY-8a}z`)-Pp#3npOxC_m((dO{q(Ov^?o zQE`XcyEM26s&sw+*6K?~5U{l;du8_(-w{X~p>jZBFiQJ;rgN_z{sW3!vun74zEQ6V zJaY!&3lgkWvfjb|L8|@(@IY5BJ_tT30A6OL=U0!LOl|;#-8Y9h0x}57%^}QUdG=OA zOe4wUt(mu%o=cdoRH3-^L4f)N*zRm#R|R1wqJq_+8FN;fGlXyoB+oiU016r3ZH^zn z)r}B&7!HSR9x-mlr}L%UL3$33 zZ}@C9fYrn?g9Ly93bCWgaC3035g3L?aN-!4z#ghmSmvO~6|CpMFtbW|KrviEO*)_h zA$Vn7i~4IdBJ=G)+CkVKWJG{~1*s~mk^M%ZC#<&v>6D4U$-$ILNzIXF9?>T11yZ2d zR~@+!xEt)MYy=Ij+)aV^2AbSx;KVIwuyuE9&}p&KZcd$lL(#5I8Rc+T6grw>!JU^4G_jy4~*XrdT~9Fi>dL>9o)Z7ddlH@l?FU=WD@JQ@zve zs&&_Dr&Hs}Z`?Km<^8>3WW`z#fj@+<*A(4RG-?9IEDz;5tNmKP;RpFEB;MOqbgty zWp!+)8QC_C@&q2gXDn0LgLq~9FTJ>RY<*9Z9b8T>#R-?mkB^OI3xxrMJmZ?r?9O!k z-Oed}gg(r}(pupScC4yhJrEgy6*D7}{t*6a1CoPdiCmJb*t+zB?H{!X$a)`Tcbt70^RT`N>}vJ^=1DMuyUTM?yU zMw{|-mc}OqX4-@HJ+*D2NR{uBo_Tk`&T7iHJFjYpAo)*+$~Syz+AyQc;D_WmTSl<0 zeS>!00h7ncDo}r{^YD#S31p-F^wtXCSNSL3qmN22PJ&+EFNAlhz~6=aQh|Ni2mu5# zuiy)NI9j8i`&MNRz0(J*U%6)Gf>>;U{ZyIHFK3MYT>a!FbR|gE(Dg8j5H(hOa1}q> z4{Zx087Fa_v7;18stvWEi`@i@?w1PmbsIlagWvdCEzu%E!1W$n^1;#jDZIuJIW1Nmk#0~I5hMg{W-{gjg)l&4ZFY$}b%}=TKlo2QJ0O!EQbpm?F(L-aCZ<&#q(Jm#3AZ68AL02k z=&q&fxUNVfBvIlu6p2*-vDxYK%DOt~^*JLfU;W2S68&sLL(0?Mndxlzq^4fR{LWZY zrYYw1r;oU->UCvZi8oTuP;43M)&V0EB191ik?w%iw0fWSTe%kUUC?pZF&=2}tY7bG zX!CeI-X|#*hN8-VTHm_T?sc`gj}7-}RugOY9(=I3J?6zv!M3Q|QF2?lQEQ@ke7qT1 zi#B~tuulPwW=IgT;D8ccz23PffdFrR4n8X^{4`h^9(THJVBEmha8~z?j?RSS!3$N$ zV`pEWe$2+v(YOryn+t_ze~@fJwoF6&yHb6vpK>XQ@1cMk6?g)ASLiHV1$bUAfbceCFgiq3bs zT73~e_lNvsf-O!sonB0azM7dpH2v=3Qc+qSuVZPdxm&y1Bk5IM&t)zjuBYZu#8Yj4 z=YnnwizO`3Fnl8pp28lgncsBQ^l5)OllI?Q8wfb|#haK1SJd807r*oM*weIqLs|XM z9B1qs(=ot+M)*Mlb)8BNE~I?|Eo0XH@I)6aTLir0fBD5i61)cKVdg&gDzw>9e9b`z zG}4R40}fgv=bhQzedhbR&zv{!%!-co9Qc`lkFpsY4LM~Y@=ReBVLyhCnlxOBkfr)` zw%r^Rb)bHu79K?j89N*~=jU^im=GSBn7GJ&)j`@3Sv^!0n|t-KSMjSq-iM<7?l)=Y z$4h_0c|1g`qDUfwITx(e7;n35SV{L*h5I)kL0>Ysi6h2=UA` zKI~VPrTjgu!m1C<^Lpn6q9?R^0|>rX$)s{=XTY1E^Jbl%B?*7nGj%)vvG}f<kiJobjghC&@^Ml1UkK*u28&d#x#zbd)$`V>RHsTz&B^3q|4)-H{*6T?=$+H zMsy%$b)gbg8qQc4PvDV-3;=sNnn_37P%=1#KiF-j9F`vGKf7yWBz@S(@W^4=w!>cD z+ozk77e0(W6R=hvqa|EaHA-x3up^ zJgMwwgo+ALXr>g;Nc#xW-hwHx!tNT_GV&{;g4SsD{YwzvOB1u;1r}#&9>lK!FEQ=# zbf|9z?}+3hk(rQBz#e970M)R2u|h4x5v%VeaN1W(KQsemZkW4npJNW@##Cv%O5G_> zWa?a|h!~`VTTsp>6*Y740A*zPLyg<2G{O{y8;)Qa;i+Uj^b157M25o1s?J!d?@Tpd z(4`xO%}I=;CKCwB#V|P{M&Fa6`$8$1x^reKIS|Ja3!Gm_t^sNrFbeV_62R@M>9Zbnx@WI9 zn5a<%z)fL2q7;uPNm+_K!DtWKVe*_h!0iSG(F`1)R8#T;3f0YO{mamr3~jjmUZ&la z2)JrnxZqs65qaxZ5+BwzdOg$W<{0hw;=9}NAqqCQa3nXPb312FL}Xfm3(bXV3FJ19 z<>DcylTb57Uk*sLCdZf|MabymntCcwt#lP3z!5V{W!7mH;Lb8#i(daRPG<;}Up$>lTml9)4%182 z$#{Ldvk|g}%gpfcxv1D)AN#!X!27avCLO=A=~WYYe!pi`y%QGi|Aead3a!Ud(&OIX zdhC5OVeR&JRhS(*XLeonhI<2x!}hi%%liCnh?(#cFG!KO&e*fjnzasxJ-B2Gb|^U= zS8(z=k~y65+Rnko-lj-8;qUKgE5dO-xGtK>CE$W7_cmIg>fu zxjC1}WytB6T4n4kHh=p*#?1h;YcTS_3dqG|NvDw^X&~svFb9gVhn)~4j(}_cLs6Jh zz(8H9sQGBJz6@oiI%y!3Lh&tb9}QcuAm(8`gmyo)+27IcPjn(Tq;atG4|bMAc(cr` zq5@U~eSOsJY|g5~^INpy78-gvhPP)f=E&%!iDE{b%jN2_!NInXj6vUX0rtrg8V1bD zc|2yHz}VNe&BVSIs_WF%mGgY+OXWkn{9QV|@qHUtKWDdtC#<79Jqt1cajJ5UF7mn~ z1{5(ah;(U&2My^^D-fqgnFYXNFKi7__&1{zVW#J!>>BC7q)Ooh=~1SoYKyEz=H-EL zr>d1L+0Fe+69?owk8C(>@tSBhR4?7i;cKp?o?X#kHo9i*5HRf074d%CNG1&ZrG#ER#J_&zkH?%|QU3q|w5s1Z9 z*qowWAjE1+YdHex2oab&{-yCiv`fANqzfSA2G5Z`#2i7$q7w)z8wD&(HNJ0)c>|G1 z%$Jy#_)WYyrc}n=JTI{f#WPNwhZl*2Qs`7YfR_uKeajLFZ`*TpE>X7nP=3I+B(WVa zPbThb?n$hSC1T3&h#ZUCEywqtz-U zE*L$ofc&>|*CJSF%Zeswfx7*=zrq;1xgoaa`IQ$GayeqUuF<=hhnChlfwpR%BM#oRZOo2ae_JGRB><>K` ze;{WRUNEldOo9zFr;HsB4YO}5g@XdNeEAiVN^$kNu*FcZ@>1LgqmTG7d}vvw*acSp{a;NbyLS4Mnr=&Q{yxGjcwP zmk)RNlikg3SA7#zma)$<8>TQ|N+L&$tYx-|0!BzG&493+=s;SKD;~=TirOn|Bp{4< zthbL8+`d3D%bi;`ES5&2b=e`bCd|5KLRq2lA}nbxV>71w zbRmaLg)jbf667d=`!l!l{=VjLre! z`YNEVtU&ts?dJp{XAFyf&VurWD$o|OVFPZ{>J3fN=JX5Oh=`*4&_*^vA~)P7SWk+O!c%B)K3m2Ha(L<>>$ELOpjQw50cHm5 zM>QVp#yxd#SAw7AqOi_a++b|H8RhRitfQy4He)+|G7zT5A!J0Nbv+HJMN-$3en!9u zPn8yB9Q|cX6-F>SD`s(YE<($m2sQ381scmm7~>W@%pZxMJKKY`ed(UMs9OftXIq-f z{v&8kBauvQSuWgzW(c01MCnuI8jJ{xlgz~}PQ@9aNVu3pkDs6mWfj{zG8cS@JQYnNH6%|(7?mx*VM(KvHV)%b#M7KWldljYY|O@#H7U#pr9wx;~rRWr=CmtVW_ z{@5YMpSSIt(~dtqxn|qBr=4+|zcPne6RZ zQ2E@xpSj(-ZD(#f2jiTSJmIa$b9bK7ciwp?Cr>_S#~H~3cbs|Nw$o4Fkv!|19ox5^ zcwWz`=bd-flKJybF2CP%;*K+F4yif5<~-EBJg4R~ygD6wehvOQ7k`~nb0+>;54-9P zygIk$FuZ?C&H1?IcwD{z-`oEyhYcJwHjS9XdiH<=&HR2fd{fY^!*|a#-?!&;625-| z?377Bz7ufwVV37%FDCJO4(@*jUL9!0q1m5~e>?EbS?06tc;`f1-BWX_`PNyG+2-RP z?c_7@PUZR@gPSvKogcJmc(tL@X%CHOK}{75#Y~xEnmL%0xzIk?!@R5(IVye@U_lmQ zbqwMSQuyjw1B5c$-1a_BkN}KpjFIg3s^7fWBqI) z8(@Q|zPN}jW=oKZwhZDVNz{3SBdul!ur+KgJCLno2eI|+V77t1i52`b(=dg3xdF*_)lU=|rWN&2`vA3~{*(K~!b{Xm`UCypxSF*RWtJpi()$AJfPIfK3 zj$O~*#cp6XvUjta*v;%c?7eJ+?P9mETiI>wee8C22fLHKpM8Mc#XiXHW*=f7W*=eq zuzT4@*?nv`DjD3*9$+71A7`InpJWfRPq9z4huFjHGwc!eS@t>hdG;v#0{bF+4F3Gb z*%Rzb>`8Q_{tA1FeU&}Uo?%~OUuWN7-(=rn-)7IU=h*Y?JB;e5eHT5Szt4Wae#l;6 zKVm;-RL}6I>?Krkc$xj2{et}x_3nPnC{pP+?6>T9?Dy;s?2qhE?9c2k?62%^?ChkJP~_i;ZD@E{NII zKbN1!&*wY&1^hz(R(=tG8^4%e!Y}2Q@gl#RU%{{BZ|7I>ckrwEHT<3YT7DhBp1+IV zz;ER5<~Q-1`Fr?#`3T>|Z{fG{+xYwV?fedYCx1Wx0KbcWkl)Qe#6QeG!tdet@{jWS z_-;PR@8=KjkMWQ5Pw-Fj2l=P?r};ztVg4EZ2>&eq9RECjlz)MLkw3=A_~ZNu{w4k- z|1$pye~N#VKh2-vU*lir-{9Zm-{Rlq&+_N^^ZYw}oKNuY^6&BQ^B?dZ@)!7z_>cKd z_>26f{3ZS~{xbhL{{{ag{}ul=e}(Vizu~{-zvI8>f8c-Qf8u}Uf8l@Sf8&4W|KR`R z|Kk7Vuk!!!5`Rt92(+#fLP%i=B{ceBIE72Ng-3Wrt?&uI2#BBvi8>KR2aKqw7Y!mN z;-XPBiG*ktNrWr3iZ;pvZ|uVzF2v zmWpL!xmY1qio94QR*M6~8nIR!DAtLC#CmbC*dX2{4iSfnjbf8{vp7s_7Ke)=F)X%- zBgB#7C~>qnMjR`S6K@e)#qr_Cr)rFgrzO1wi{Ev^yo6xWLD#P#A`;s$Y} zc(=Go+$`QB-YZ7LE^&*vRoo`tCvF#ah&#pm#RtS);)CLD@gebH@ey&4xL15s+$VO6 zQE|U`KzvMmTzo=&QamU=B|a@45)X^dh)2X{#plH5#iQa2;)~)jF(w`tPlzvxC&ib= zSHx4|tKw<#jQE=Py7-3prudflws=-NC!QDI5#wS)d{=x=d|&)P{7}3gek6V@ej;8J zKNT;DpNW^n&&4mqFU7CKuf;23kNA!Ft@xezz4(Lpqxh5fv-pentN5GvyZDFrr}&rn zw|G_jN0h{CvIe3RN3|#^EvY2>WTS9^3uai4^vYTkU-Qd=49bwKlVKT=QCTk=WDGJ{ zqim81*({T?MYhT|*)CJEL#Ab??2;LomECBQ-XrJB1+rK6$$q&|4#+{7lZ)hHxkN5S z*@5M9gy50Go*T6v&cCl8YA<-u};d=p9-94a@;P4dn1Fu7SCE{Ei>+#-*V zN6Mq*(efC1tUOM>MQ)YH%M;{@@+7%Uo-9w1r^?ghc3F_8%QNJea)&%io-NOj=gRZs z`EsYcKwc={Dld|6lNZZNX zz9fGpUzR_YzmUI_zmmU}ugE>}H}bdgck=i05Au)lPx8<5FY>SQZ}RW*AM&5_U-IAb zRrw!TlCN1c7K24kSP~9KWod}mPRoVTt$M2gLU`P2 zw3@7h)odlL7OT~2v)Zkc)nTQrPOHnxSXryvnrHP`^Q{F|uhnPuTMMlLYtYJBi>$@g z5^Jfo%vx@(uvS`mYn8RyI>1_Et+fuc)>#LkXZyj{2J21MA=aVRMr)JxX6rC(vvs&N zWDQ$etRt)=t)r}?tz)cXt>dh>SX-^*trM&ht&^;6*2&f>)~VKM)^@94oo=0BooVf` z&a%$7&auw5&a=+9c3Kx$7g}$%F0$TcU2I)qU20us6|KvyE37N6w_8_P@35}6uCd-} zU29!uU2nb1y1}~9dbf3xb+h#z>%G>9wadE2y4AYPdY^T>b%%AQ^?vIE)?L;It-Gxc zSs%7OV%=liYkkzZ&)RK`TK8KISRb=KZhgY~r1hZnDeKeLL)OFAXRJr8&sv|eK5sp0 zeZl&o^_VqgJ#IZ=eaU*#`m*&E>nZE2*3;HA*4M1BTi>w0X?@H3w)L#_ob|l*9c$d0 zu)b@3&-%Xg1M7#@3)YXUA6q}MUbKE{y=48&dfEE9^$Y8l)~~EzTd!DqtlwC_wSH&) z-ui>}N9#}4pRK=Gf3^N*{oVS9^-t?x*1xS+t^Zgh>orxQnBqz(sVt>nk8+@3n+slJ zkMgQoIU?yg=#H>A4daJrfy-i)LE>V}N%T!TauC7p5 zs<*4F)H~GG>KgScdMJ!&FVesy=p}5Qn#pE)otp1>UMR9x>LPh zeL&r%KB(?iA5tGyA5r(Hd(}tPeQLKFRrjk0)W_7v)hE;^)r0C&>eK2W^|1PkdPIFz zeNKH|J*vK-zNj8kW9o7Bg!+Us4Y zHLfPqch&dQ_tg*757i6mN9xDwC+bD@Q}vSinR;3MT>V1*QvFK(TD_w7sNbmHs^6*K zt3Rkesz0eetG}qfs=ukftAD6}s(-0}t5?;3R7t(2Yc$hb3l!P2VE)!9FX+@R?baUc z)wSBE{W_q7I;87#SVy4R*Xsry({bI1M1X{D)=Ax>TXmam*D2kh)4Ef4=?oIKy7fHW zqvz`dx>xtX+rCf_=s}&+i}Yf>L@(9L^m4sIuhedW;N`bzzF zeU*NPzFJ?S->I+F*Xir^yYvnEM*VJmlfGHMN55B(=w132eXG7rzfa$;@6dPZ_v;Vn zyYvV3-TFiN!}=ro9(}L=sJ>6{)}#7<{eb?M{#yji^jG!M`WgK-{dN5f{Z0KX{cZiMeojBHzoWLH|hqSpP)7sDG+o(m&HL>!0gi=wIqz>0j$t^d9{i{agJz{d@ff z{YU*L{b&6b{a5`r{dfHj{ZIWb{cruM{*Nx{*Bmtt=HL$aFHr?ZIkbby0J$9KAn))x zY8^g@-w|*G9U;g6qw6RGoVc2lvvv2~;93a99a^lo)8dj#_U^*vl8{aAIA}`?EmWXL z-GvI&9qNTbTcqwqDoEXp`ZsSSm%H}+k=>bjZu4g5&D%(rj47CkX_$@~n2A|f2y210 z#9Cpku{Ky+tR2=K>j2*o>V$R1PR6=mU9m9M4Lb$vj`hHLV!g25SRbq})(`8C4ZsFs zgRsHa5Ns%RDs~z+3>%J(z(!)Du+y>8*cfaqHVzw)O~58%ld#Fy6l^Ls4V#Y5z|O$V z#Aaf%u-VugY%Vqrn~yEP7GjIA2v&|ou^47!6<8%!g~hSOST&ZwYOo}h!qV6hEQ2{% z7RzC^SRJ+$tH+jM%dxYtv$1oq71+7hdDu#96?Q&$0k#@jgI$PSgk6kXg002YVV7d- zu?^TpY!h}Fb~$zhb|rQdb~Sblb}e=tc0G0jb|ZEZb~APhb}P0SyA8V?y92uu+k$Py z?!xZI?!oTG?!)fK9>5;N9>N~R9>E^P9>ca_+p)*7C$J~6r?987XRv3n=dc~vPV9MX z7q%OF0eca93EPA1#r9$Qv6rz|uvf9yu-CCSus5-{u(z>yuy?Wdu=lYKumjjZ>=1Ss z`w;sG`xyHKJAxg>j$y~KPqELi&#^DCFR`z%ud#2iZ?W&N@39}SAF-dXpRr%CU$GO| zZ`kkHAK0JRU)bN+KX^0zB)mCZ1ebVA@KU@C$8b1)#z~yQX`I1XoWprsz(ribWn95k zT*GzTz)jr3LwF0kCEf~ejkm$u;_dMEcn7>A-U;sve{lR=pMX!qC*hOv zDfm=;8a^GL0iV@56Q7CC!e`@i@VWRrd_KMaUx+WlBX~I;#bdY)o_&>g6&}YId#3BDFzhhK`X$2Z^`@lE(;_~rN&_?7ro_|^C|__g?T`1SY=_>K5Y_|5n&_^tS6 z{5Je{{0{t1d<(u6zYD(`zX!h;zYo73e*k|Fe+YjVe*}LNe+=J-Z^s|UpTM8QpTeKU zpTVESpTl?HJMri7UHESN1^h+)C43LQ7vG2P$6v-@!C%E+!(YeWz~98*!r#WBXEKsNP;40f+1Lf zBX~j}L_#8DLLpQ_BXq(bOu`~UL<^!N(TZqIv?1CO?TGe72cjdCgL*Ua^ec&O5!TwYT_E=TH-q5dg2D+ zM&c&oX5tp&R$?=88*w{v2XQB{h1g2mMchr?L)=T;N8C?5Ks-o1L_AD9LOe=5Mr?8IQFB7j2uM)2juM=+& zZxU}2Zxinj?-K73?-L&o2Z)2jA>uIcA@LFMG4Tm;gg8nZBaRcF5}y&D6JHQt5?>Kt z6WB0Ik|9}=BY9FFMfkp%Oe&;GYNSpY@ZnX943RC!mSiikHQ9!2OSU81lO4#8 zWGAvSc{16B>`I2oZsaLscd`fBlk7$ICi{?m$$n&iasWAy97GN#hmb?bQ_0iFVdQXf z1UZr%MV?NMCdZIt$#LX(asoM#oJ3A0r;t<0Y2v8uCK&BJyJL5^^oMj=YpyPi`PLlAFlO$jiwq$ScXK z$g9a~$ZN^#$m_`)$Q#L<$eYPq$Xm(Hu zCsEC*BC41wp-QPT3Zrm}ph${>8wCu-QXIv@*Ox^~qGU>;R7#_C%AicjqC!*)swLHm zYE8AF+EVSP_EZO|Bh`uOOr1=1p}JCGsvC6*)t%}=^`v@Hy{SG_U#cI~pBg|7qy|xg zsUg%*>Qw49Y8W+~8bOVuMp36zqp2~}SZW+Ko|-^Sq$W|5sVUS{Y8o}2nn9gGok`84 zW>K@LIn-Qg9yOm@KrN&eQ4y+~ic&GkrYfjPs)~wJi>YcVLDf)6Dg_@dTS8?hhsshp zs+OvwmQwZ9GHN+>7Iijt4z+?hmpYGHNv)#Jr!JsYQ){RTsf(zKsY|G})H>=?YCW}q z+DL7pE~74|uAr`@uA;7{uA#1_uA{D}ZlG?YZlZ3cZlP|aHdD7zw^MgecT!uZt<+uA z-PAqQz0`fw{nP{0gVaOR!_*_xqts*6HflTdIQ0beB=r>aH1!PiEcG0J{o$>NVJ92m>MiPR>K*D`>OJax>I3Qkb&xtl9i~2{ zKB7LRKB10KN2z1faq3g*GwO5d3+hYiE9z_N8|qu?JL-Gt2kJ-aC+cVF7wT8)1oa#B zJM{!XVGWV=g=$YbLsQwmGmn5eEI@5j`WE_DdNX|+ zeLH;zeJ8zz-b&v^-%Z~`-%H;|-%me4KS)1BKTJPDKT1DFZ=<)kJF#hpV6PwU(jFDU(sLF-_YOE-_hUGKhQtY zKhZzaztF$ZC+Oek-|0W-Kk2{dzv+LNX3R-UbEb$XW=fb+ri{TDoFU-uCdJSU!>|m; z@QlESjKs){!l;bK=#0UbjKzeQ7EDW~71Nq&!?b1EG3}WSOh={@)0sJ$>B4kn!b~^j z6s9}VgXziiVtO-un7&Lurav=)8ORJ`1~WsLq0FhwY0NNYI5UD7$&6x7XGSw)n6b<_ zW;`>2naE6HCNoo*smwHHIx~YggE^C#$;@JAGjo`^%sgg3vw&I1EMg)|ITK}KjLlRq zl}r^AXBIQnOoFLll1z$8GfS8Z<1kq!$J8=)%u=SFS;j19&SK7H&S6$C=Q8IpE16Zy z`OF2(YGw^{A#)LPF>?vCmRZMK%B*KLFdLao%w^2w%oWU)%vH?Q%r(rl%yrE5%ni(q z%uUSA%q`5V%x2~`=62=|=1yh{vz57vxtqC%xtF<*xu1D}d60RCd6;>Gd6apK*~V;V z9%r6lo@Ab4o@Sn5o@Jh6b}&1c=b2s1ZsrB%Mdl@D53`rq$LwcbW?o@lWnN=mXWn4m zWZq)lX5L}mW!_`nXFgyKFbA1K%wgt3<|F1~<`d=!bCfy89A`ddK4U&-zF@v&zGA*+ zzG1#)zGJ>;eqerNeqw%ReqnxPPB6bQzcYU@e=>hDe>4BE&DfLJ=4=sL%$BgFY#EEO zI7_f3OR+S|uq?~5JS(swE5XP46jnw5t;HIw$y#iPZNau=Td}R#Hf&qA9owGmz;